From 485165b261558cd016858f810031c371df57ac1a Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 10:46:15 -0600
Subject: [PATCH 01/19] added goes4
---
pvlib/iotools/goes4.py | 389 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 389 insertions(+)
create mode 100644 pvlib/iotools/goes4.py
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/goes4.py
new file mode 100644
index 0000000000..bab11f3d04
--- /dev/null
+++ b/pvlib/iotools/goes4.py
@@ -0,0 +1,389 @@
+"""
+Get NSRDB GOES V4.0.0
+see https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-aggregated-v4-0-0-download/
+"""
+
+import io
+import requests
+import pandas as pd
+from json import JSONDecodeError
+import warnings
+from pvlib._deprecation import pvlibDeprecationWarning
+
+NSRDB_API_BASE = "https://developer.nrel.gov"
+GOES_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-aggregated-v4-0-0-download.csv"
+TMY_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-tmy-v4-0-0-download.csv"
+GOESCONUS_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-conus-v4-0-0-download.csv"
+
+ATTRIBUTES = (
+ 'air_temperature', 'dew_point', 'dhi', 'dni', 'ghi', 'surface_albedo',
+ 'surface_pressure', 'wind_direction', 'wind_speed')
+PVLIB_PYTHON = 'pvlib python'
+
+# Dictionary mapping GOES4 response names to pvlib names
+VARIABLE_MAP = {
+ 'GHI': 'ghi',
+ 'DHI': 'dhi',
+ 'DNI': 'dni',
+ 'Clearsky GHI': 'ghi_clear',
+ 'Clearsky DHI': 'dhi_clear',
+ 'Clearsky DNI': 'dni_clear',
+ 'Solar Zenith Angle': 'solar_zenith',
+ 'Temperature': 'temp_air',
+ 'Dew Point': 'temp_dew',
+ 'Relative Humidity': 'relative_humidity',
+ 'Pressure': 'pressure',
+ 'Wind Speed': 'wind_speed',
+ 'Wind Direction': 'wind_direction',
+ 'Surface Albedo': 'albedo',
+ 'Precipitable Water': 'precipitable_water',
+ 'AOD': 'aod',
+ 'Alpha': 'alpha',
+ 'Asymmetry': 'asymmetry',
+}
+
+# Dictionary mapping pvlib names to GOES4 request names
+# Note, GOES4 uses different names for the same variables in the
+# response and the request
+REQUEST_VARIABLE_MAP = {
+ 'ghi': 'ghi',
+ 'dhi': 'dhi',
+ 'dni': 'dni',
+ 'ghi_clear': 'clearsky_ghi',
+ 'dhi_clear': 'clearsky_dhi',
+ 'dni_clear': 'clearsky_dni',
+ 'zenith': 'solar_zenith_angle',
+ 'temp_air': 'air_temperature',
+ 'temp_dew': 'dew_point',
+ 'relative_humidity': 'relative_humidity',
+ 'pressure': 'surface_pressure',
+ 'wind_speed': 'wind_speed',
+ 'wind_direction': 'wind_direction',
+ 'albedo': 'surface_albedo',
+ 'precipitable_water': 'total_precipitable_water',
+ 'aod': 'aod',
+ 'alpha': 'alpha',
+ 'asymmetry': 'asymmetry',
+}
+
+
+def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
+ attributes=ATTRIBUTES, leap_day=True, full_name=PVLIB_PYTHON,
+ affiliation=PVLIB_PYTHON, map_variables=True, url=None,
+ timeout=30):
+ """
+ Retrieve NSRDB GOES4 timeseries weather data from the GOES4 API. The NSRDB
+ is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and [4]_.
+
+ Parameters
+ ----------
+ latitude : float or int
+ in decimal degrees, between -90 and 90, north is positive
+ longitude : float or int
+ in decimal degrees, between -180 and 180, east is positive
+ api_key : str
+ NREL Developer Network API key
+ email : str
+ NREL API uses this to automatically communicate messages back
+ to the user only if necessary
+ names : str, default 'tmy'
+ GOES4 API parameter specifing year (e.g. ``2020``) or TMY variant
+ to download (e.g. ``'tmy'`` or ``'tgy-2022'``). The allowed values
+ update periodically, so consult the NSRDB references below for the
+ current set of options.
+ interval : int, {60, 5, 15, 30}
+ interval size in minutes, must be 5, 15, 30 or 60. Must be 60 for
+ typical year requests (i.e., tmy/tgy/tdy).
+ attributes : list of str, optional
+ meteorological fields to fetch. If not specified, defaults to
+ ``pvlib.iotools.goes4.ATTRIBUTES``. See references [2]_, [3]_, and [4]_
+ for lists of available fields. Alternatively, pvlib names may also be
+ used (e.g. 'ghi' rather than 'GHI'); see :const:`REQUEST_VARIABLE_MAP`.
+ To retrieve all available fields, set ``attributes=[]``.
+ leap_day : bool, default : True
+ include leap day in the results. Only used for single-year requests
+ (i.e., it is ignored for tmy/tgy/tdy requests).
+ full_name : str, default 'pvlib python'
+ optional
+ affiliation : str, default 'pvlib python'
+ optional
+ map_variables : bool, default True
+ When true, renames columns of the Dataframe to pvlib variable names
+ where applicable. See variable :const:`VARIABLE_MAP`.
+ url : str, optional
+ API endpoint URL. If not specified, the endpoint is determined from
+ the ``names`` and ``interval`` parameters.
+ timeout : int, default 30
+ time in seconds to wait for server response before timeout
+
+ Returns
+ -------
+ data : pandas.DataFrame
+ timeseries data from NREL GOES4
+ metadata : dict
+ metadata from NREL GOES4 about the record, see
+ :func:`pvlib.iotools.parse_goes4` for fields
+
+ Raises
+ ------
+ requests.HTTPError
+ if the request response status is not ok, then the ``'errors'`` field
+ from the JSON response or any error message in the content will be
+ raised as an exception, for example if the `api_key` was rejected or if
+ the coordinates were not found in the NSRDB
+
+ Notes
+ -----
+ The required NREL developer key, `api_key`, is available for free by
+ registering at the `NREL Developer Network `_.
+
+ .. warning:: The "DEMO_KEY" `api_key` is severely rate limited and may
+ result in rejected requests.
+
+ .. warning:: GOES4 is limited to data found in the NSRDB, please consult the
+ references below for locations with available data. Additionally,
+ querying data with < 30-minute resolution uses a different API endpoint
+ with fewer available fields (see [4]_).
+
+ See Also
+ --------
+ pvlib.iotools.read_goes4, pvlib.iotools.parse_goes4
+
+ References
+ ----------
+
+ .. [1] `NREL National Solar Radiation Database (NSRDB)
+ `_
+ .. [2] `NSRDB GOES Aggregated V4.0.0
+ `_
+ .. [3] `NSRDB GOES Tmy V4.0.0
+ `_
+ .. [4] `NSRDB GOES Conus V4.0.0
+ `_
+ """
+ # The well know text (WKT) representation of geometry notation is strict.
+ # A POINT object is a string with longitude first, then the latitude, with
+ # four decimals each, and exactly one space between them.
+ longitude = ('%9.4f' % longitude).strip()
+ latitude = ('%8.4f' % latitude).strip()
+ # TODO: make format_WKT(object_type, *args) in tools.py
+
+ # convert to string to accomodate integer years being passed in
+ names = str(names)
+
+ # convert pvlib names in attributes to psm3 convention
+ attributes = [REQUEST_VARIABLE_MAP.get(a, a) for a in attributes]
+
+ # required query-string parameters for request to PSM3 API
+ params = {
+ 'api_key': api_key,
+ 'full_name': full_name,
+ 'email': email,
+ 'affiliation': affiliation,
+ 'reason': PVLIB_PYTHON,
+ 'mailing_list': 'false',
+ 'wkt': 'POINT(%s %s)' % (longitude, latitude),
+ 'names': names,
+ 'attributes': ','.join(attributes),
+ 'leap_day': str(leap_day).lower(),
+ 'utc': 'false',
+ 'interval': interval
+ }
+ # request CSV download from NREL PSM3
+ if url is None:
+ # determine the endpoint that suits the user inputs
+ if any(prefix in names for prefix in ('tmy', 'tgy', 'tdy')):
+ url = TMY_URL
+ elif interval in (5, 15):
+ url = GOESCONUS_URL
+ else:
+ url = GOES_URL
+
+ response = requests.get(url, params=params, timeout=timeout)
+ if not response.ok:
+ # if the API key is rejected, then the response status will be 403
+ # Forbidden, and then the error is in the content and there is no JSON
+ try:
+ errors = response.json()['errors']
+ except JSONDecodeError:
+ errors = response.content.decode('utf-8')
+ raise requests.HTTPError(errors, response=response)
+ # the CSV is in the response content as a UTF-8 bytestring
+ # to use pandas we need to create a file buffer from the response
+ fbuf = io.StringIO(response.content.decode('utf-8'))
+ return parse_goes4(fbuf, map_variables)
+
+
+def parse_goes4(fbuf, map_variables=True):
+ """
+ Parse an NSRDB GOES4 weather file (formatted as SAM CSV). The NSRDB
+ is described in [1]_ and the SAM CSV format is described in [2]_.
+
+ Parameters
+ ----------
+ fbuf: file-like object
+ File-like object containing data to read.
+ map_variables: bool, default True
+ When true, renames columns of the Dataframe to pvlib variable names
+ where applicable. See variable :const:`VARIABLE_MAP`.
+
+ Returns
+ -------
+ data : pandas.DataFrame
+ timeseries data from NREL GOES4
+ metadata : dict
+ metadata from NREL GOES4 about the record, see notes for fields
+
+ Notes
+ -----
+ The return is a tuple with two items. The first item is a dataframe with
+ the GOES4 timeseries data.
+
+ The second item is a dictionary with metadata from NREL GOES4 about the
+ record containing the following fields:
+
+ * Source
+ * Location ID
+ * City
+ * State
+ * Country
+ * Latitude
+ * Longitude
+ * Time Zone
+ * Elevation
+ * Local Time Zone
+ * Clearsky DHI Units
+ * Clearsky DNI Units
+ * Clearsky GHI Units
+ * Dew Point Units
+ * DHI Units
+ * DNI Units
+ * GHI Units
+ * Solar Zenith Angle Units
+ * Temperature Units
+ * Pressure Units
+ * Relative Humidity Units
+ * Precipitable Water Units
+ * Wind Direction Units
+ * Wind Speed Units
+ * Cloud Type -15
+ * Cloud Type 0
+ * Cloud Type 1
+ * Cloud Type 2
+ * Cloud Type 3
+ * Cloud Type 4
+ * Cloud Type 5
+ * Cloud Type 6
+ * Cloud Type 7
+ * Cloud Type 8
+ * Cloud Type 9
+ * Cloud Type 10
+ * Cloud Type 11
+ * Cloud Type 12
+ * Fill Flag 0
+ * Fill Flag 1
+ * Fill Flag 2
+ * Fill Flag 3
+ * Fill Flag 4
+ * Fill Flag 5
+ * Surface Albedo Units
+ * Version
+
+ Examples
+ --------
+ >>> # Read a local GOES4 file:
+ >>> with open(filename, 'r') as f: # doctest: +SKIP
+ ... df, metadata = iotools.parse_goes4(f) # doctest: +SKIP
+
+ See Also
+ --------
+ pvlib.iotools.read_goes4, pvlib.iotools.get_goes4
+
+ References
+ ----------
+ .. [1] `NREL National Solar Radiation Database (NSRDB)
+ `_
+ .. [2] `Standard Time Series Data File Format
+ `_
+ """
+ # The first 2 lines of the response are headers with metadata
+ metadata_fields = fbuf.readline().split(',')
+ metadata_fields[-1] = metadata_fields[-1].strip() # strip trailing newline
+ metadata_values = fbuf.readline().split(',')
+ metadata_values[-1] = metadata_values[-1].strip() # strip trailing newline
+ metadata = dict(zip(metadata_fields, metadata_values))
+ # the response is all strings, so set some metadata types to numbers
+ metadata['Local Time Zone'] = int(metadata['Local Time Zone'])
+ metadata['Time Zone'] = int(metadata['Time Zone'])
+ metadata['Latitude'] = float(metadata['Latitude'])
+ metadata['Longitude'] = float(metadata['Longitude'])
+ metadata['Elevation'] = int(metadata['Elevation'])
+ # get the column names so we can set the dtypes
+ columns = fbuf.readline().split(',')
+ columns[-1] = columns[-1].strip() # strip trailing newline
+ # Since the header has so many columns, excel saves blank cols in the
+ # data below the header lines.
+ columns = [col for col in columns if col != '']
+ dtypes = dict.fromkeys(columns, float) # all floats except datevec
+ dtypes.update(Year=int, Month=int, Day=int, Hour=int, Minute=int)
+ dtypes['Cloud Type'] = int
+ dtypes['Fill Flag'] = int
+ data = pd.read_csv(
+ fbuf, header=None, names=columns, usecols=columns, dtype=dtypes,
+ delimiter=',', lineterminator='\n') # skip carriage returns \r
+ # the response 1st 5 columns are a date vector, convert to datetime
+ dtidx = pd.to_datetime(
+ data[['Year', 'Month', 'Day', 'Hour', 'Minute']])
+ # in USA all timezones are integers
+ tz = 'Etc/GMT%+d' % -metadata['Time Zone']
+ data.index = pd.DatetimeIndex(dtidx).tz_localize(tz)
+
+ if map_variables:
+ data = data.rename(columns=VARIABLE_MAP)
+ metadata['latitude'] = metadata.pop('Latitude')
+ metadata['longitude'] = metadata.pop('Longitude')
+ metadata['altitude'] = metadata.pop('Elevation')
+
+ return data, metadata
+
+
+def read_goes4(filename, map_variables=True):
+ """
+ Read an NSRDB GOES4 weather file (formatted as SAM CSV). The NSRDB
+ is described in [1]_ and the SAM CSV format is described in [2]_.
+
+ .. versionchanged:: 0.9.0
+ The function now returns a tuple where the first element is a dataframe
+ and the second element is a dictionary containing metadata. Previous
+ versions of this function had the return values switched.
+
+ Parameters
+ ----------
+ filename: str
+ Filename of a file containing data to read.
+ map_variables: bool, default True
+ When true, renames columns of the Dataframe to pvlib variable names
+ where applicable. See variable :const:`VARIABLE_MAP`.
+
+ Returns
+ -------
+ data : pandas.DataFrame
+ timeseries data from NREL GOES4
+ metadata : dict
+ metadata from NREL GOES4 about the record, see
+ :func:`pvlib.iotools.parse_goes4` for fields
+
+ See Also
+ --------
+ pvlib.iotools.parse_goes4, pvlib.iotools.get_goes4
+
+ References
+ ----------
+ .. [1] `NREL National Solar Radiation Database (NSRDB)
+ `_
+ .. [2] `Standard Time Series Data File Format
+ `_
+ """
+ with open(str(filename), 'r') as fbuf:
+ content = parse_goes4(fbuf, map_variables)
+ return content
From 856abc789e9617000ec5aabfda1eb37da2e100cb Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 10:59:18 -0600
Subject: [PATCH 02/19] added goes4 to iotools __init__.py
---
pvlib/iotools/__init__.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pvlib/iotools/__init__.py b/pvlib/iotools/__init__.py
index ad12ed89c1..c4d864f0a9 100644
--- a/pvlib/iotools/__init__.py
+++ b/pvlib/iotools/__init__.py
@@ -34,3 +34,6 @@
from pvlib.iotools.solcast import get_solcast_historic # noqa: F401
from pvlib.iotools.solcast import get_solcast_tmy # noqa: F401
from pvlib.iotools.solargis import get_solargis # noqa: F401
+from pvlib.iotools.goes4 import get_goes4 # noqa: F401
+from pvlib.iotools.goes4 import read_goes4 # noqa: F401
+from pvlib.iotools.goes4 import parse_goes4 # noqa: F401
From 026738e2f3129791604cda29b0ee84c27dc226e8 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 12:48:41 -0600
Subject: [PATCH 03/19] change zenith to solar_zenith
---
pvlib/iotools/goes4.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/goes4.py
index bab11f3d04..c737612f55 100644
--- a/pvlib/iotools/goes4.py
+++ b/pvlib/iotools/goes4.py
@@ -52,7 +52,7 @@
'ghi_clear': 'clearsky_ghi',
'dhi_clear': 'clearsky_dhi',
'dni_clear': 'clearsky_dni',
- 'zenith': 'solar_zenith_angle',
+ 'solar_zenith': 'solar_zenith_angle',
'temp_air': 'air_temperature',
'temp_dew': 'dew_point',
'relative_humidity': 'relative_humidity',
From ee9d526987c9c990fa87b94b933dbc9c95573041 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 12:51:13 -0600
Subject: [PATCH 04/19] fixed references to psm3
---
pvlib/iotools/goes4.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/goes4.py
index c737612f55..44f99ae9a5 100644
--- a/pvlib/iotools/goes4.py
+++ b/pvlib/iotools/goes4.py
@@ -171,10 +171,10 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
# convert to string to accomodate integer years being passed in
names = str(names)
- # convert pvlib names in attributes to psm3 convention
+ # convert pvlib names in attributes to psm3/goes4 convention
attributes = [REQUEST_VARIABLE_MAP.get(a, a) for a in attributes]
- # required query-string parameters for request to PSM3 API
+ # required query-string parameters for request to GOES4 API
params = {
'api_key': api_key,
'full_name': full_name,
@@ -189,7 +189,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
'utc': 'false',
'interval': interval
}
- # request CSV download from NREL PSM3
+ # request CSV download from NREL GOES4
if url is None:
# determine the endpoint that suits the user inputs
if any(prefix in names for prefix in ('tmy', 'tgy', 'tdy')):
From 4af81a76b4d8bb86b992b5a87ca81dbec6ecb8d5 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 12:59:41 -0600
Subject: [PATCH 05/19] fixed some linter issues
---
pvlib/iotools/goes4.py | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/goes4.py
index 44f99ae9a5..d093198333 100644
--- a/pvlib/iotools/goes4.py
+++ b/pvlib/iotools/goes4.py
@@ -1,6 +1,7 @@
"""
Get NSRDB GOES V4.0.0
-see https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-aggregated-v4-0-0-download/
+see
+https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-conus-v4-0-0-download/
"""
import io
@@ -68,12 +69,13 @@
def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
- attributes=ATTRIBUTES, leap_day=True, full_name=PVLIB_PYTHON,
- affiliation=PVLIB_PYTHON, map_variables=True, url=None,
- timeout=30):
+ attributes=ATTRIBUTES, leap_day=True, full_name=PVLIB_PYTHON,
+ affiliation=PVLIB_PYTHON, map_variables=True, url=None,
+ timeout=30):
"""
Retrieve NSRDB GOES4 timeseries weather data from the GOES4 API. The NSRDB
- is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and [4]_.
+ is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and
+ [4]_.
Parameters
----------
@@ -140,8 +142,8 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
.. warning:: The "DEMO_KEY" `api_key` is severely rate limited and may
result in rejected requests.
- .. warning:: GOES4 is limited to data found in the NSRDB, please consult the
- references below for locations with available data. Additionally,
+ .. warning:: GOES4 is limited to data found in the NSRDB, please consult
+ the references below for locations with available data. Additionally,
querying data with < 30-minute resolution uses a different API endpoint
with fewer available fields (see [4]_).
From 547bf02681f0b68cfd4fbc6d11d3dce06cf1fd84 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 15:33:50 -0600
Subject: [PATCH 06/19] uppdated whatsnew
---
docs/sphinx/source/whatsnew/v0.11.3.rst | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst
index 5a847c01de..e146ac8009 100644
--- a/docs/sphinx/source/whatsnew/v0.11.3.rst
+++ b/docs/sphinx/source/whatsnew/v0.11.3.rst
@@ -12,6 +12,7 @@ Enhancements
~~~~~~~~~~~~
* Fix a bug in :py:func:`pvlib.bifacial.get_irradiance_poa` which may have yielded non-zero
ground irradiance when the sun was below the horizon. (:issue:`2245`, :pull:`2359`)
+* Added NREL NSRDB GOES v4 to `pvlib.iotools` (:issue:`2326`, :pull:`2378`)
Documentation
~~~~~~~~~~~~~
@@ -40,3 +41,4 @@ Contributors
* Mark Campanelli (:ghuser:`markcampanelli`)
* Jason Lun Leung (:ghuser:`jason-rpkt`)
* Manoj K S (:ghuser:`manojks1999`)
+* Will Hobbs (:ghuser:`williamhobbs`)
From fee3743dbe3061c602589d938ceab0ca69093d7b Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 16:14:11 -0600
Subject: [PATCH 07/19] fixed more formating issues
---
pvlib/iotools/goes4.py | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/goes4.py
index d093198333..95e32d2db5 100644
--- a/pvlib/iotools/goes4.py
+++ b/pvlib/iotools/goes4.py
@@ -8,13 +8,15 @@
import requests
import pandas as pd
from json import JSONDecodeError
-import warnings
-from pvlib._deprecation import pvlibDeprecationWarning
NSRDB_API_BASE = "https://developer.nrel.gov"
-GOES_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-aggregated-v4-0-0-download.csv"
-TMY_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-tmy-v4-0-0-download.csv"
-GOESCONUS_URL = NSRDB_API_BASE + "/api/nsrdb/v2/solar/nsrdb-GOES-conus-v4-0-0-download.csv"
+API_STUB = "/api/nsrdb/v2/solar/"
+GOES_ENDPOINT = "nsrdb-GOES-aggregated-v4-0-0-download.csv"
+TMY_ENDPOINT = "nsrdb-GOES-tmy-v4-0-0-download.csv"
+GOESCONUS_ENDPOINT = "nsrdb-GOES-conus-v4-0-0-download.csv"
+GOES_URL = NSRDB_API_BASE + API_STUB + GOES_ENDPOINT
+TMY_URL = NSRDB_API_BASE + API_STUB + TMY_ENDPOINT
+GOESCONUS_URL = NSRDB_API_BASE + API_STUB + GOESCONUS_ENDPOINT
ATTRIBUTES = (
'air_temperature', 'dew_point', 'dhi', 'dni', 'ghi', 'surface_albedo',
@@ -74,7 +76,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
timeout=30):
"""
Retrieve NSRDB GOES4 timeseries weather data from the GOES4 API. The NSRDB
- is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and
+ is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and
[4]_.
Parameters
From 2664d03195546196d768b1f54bf0d5f58501859e Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 18:00:57 -0600
Subject: [PATCH 08/19] added tests and test data
---
pvlib/data/test_goes4_2023.csv | 17521 +++++++++++++++++++++++++
pvlib/data/test_goes4_2023_5min.csv | 289 +
pvlib/data/test_goes4_tmy-2023.csv | 8761 +++++++++++++
pvlib/data/test_read_goes4.csv | 17523 ++++++++++++++++++++++++++
pvlib/tests/iotools/test_goes4.py | 198 +
5 files changed, 44292 insertions(+)
create mode 100644 pvlib/data/test_goes4_2023.csv
create mode 100644 pvlib/data/test_goes4_2023_5min.csv
create mode 100644 pvlib/data/test_goes4_tmy-2023.csv
create mode 100644 pvlib/data/test_read_goes4.csv
create mode 100644 pvlib/tests/iotools/test_goes4.py
diff --git a/pvlib/data/test_goes4_2023.csv b/pvlib/data/test_goes4_2023.csv
new file mode 100644
index 0000000000..359558b5b2
--- /dev/null
+++ b/pvlib/data/test_goes4_2023.csv
@@ -0,0 +1,17521 @@
+,Year,Month,Day,Hour,Minute,Temperature,Alpha,AOD,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed
+0,2023,1,1,0,0,-1.2,1.2,0.025,0.63,0,0,0,0,7,-1.2,0,0,0,0,0.278,100,162.09,0.96,0.65,780,1.1,196,3
+1,2023,1,1,0,30,-1.1,1.2,0.025,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.279,100,162.28,0.96,0.65,780,1.1,195,3.1
+2,2023,1,1,1,0,-1.1,1.18,0.026,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.28,100,160.32,0.96,0.65,780,1.1,195,3.1
+3,2023,1,1,1,30,-1,1.18,0.026,0.63,0,0,0,0,6,-1,0,0,0,0,0.281,100,156.77,0.96,0.65,779,1.1,192,3.2
+4,2023,1,1,2,0,-1,1.18,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.281,100,152.23,0.96,0.65,779,1.1,189,3.2
+5,2023,1,1,2,30,-0.9,1.18,0.027,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.282,100,147.14,0.96,0.65,779,1.1,187,3.3
+6,2023,1,1,3,0,-0.9,1.2,0.025,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.283,100,141.73,0.95,0.65,779,1.1,186,3.3
+7,2023,1,1,3,30,-0.9,1.2,0.025,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.284,100,136.15,0.95,0.65,779,1.1,184,3.4
+8,2023,1,1,4,0,-1,1.2,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.285,100,130.49,0.95,0.65,779,1.1,183,3.5
+9,2023,1,1,4,30,-1,1.2,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.287,100,124.79,0.95,0.65,779,1.1,183,3.6
+10,2023,1,1,5,0,-1,1.21,0.032,0.63,0,0,0,0,6,-1,0,0,0,0,0.289,100,119.11,0.95,0.65,779,1.1,183,3.7
+11,2023,1,1,5,30,-0.9,1.21,0.032,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.29,100,113.47,0.95,0.65,779,1.1,183,3.7
+12,2023,1,1,6,0,-0.9,1.22,0.031,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,107.93,0.95,0.65,779,1,184,3.8
+13,2023,1,1,6,30,-0.9,1.22,0.031,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.293,100,102.49,0.95,0.65,780,1,183,3.7
+14,2023,1,1,7,0,-0.9,1.22,0.028,0.63,0,0,0,0,9,-0.9,0,0,0,0,0.294,100,97.21,0.95,0.65,780,1,183,3.7
+15,2023,1,1,7,30,-0.7,1.22,0.028,0.63,0,0,0,1,6,-0.7,0,0,14,0,0.294,99.87,92.11,0.95,0.65,780,1,184,3.8
+16,2023,1,1,8,0,-0.5,1.23,0.027,0.63,20,332,37,7,6,-0.5,13,0,100,13,0.295,99.67,87.05,0.95,0.65,780,1,184,4
+17,2023,1,1,8,30,-0.1,1.23,0.027,0.63,33,592,110,4,6,-0.5,33,0,57,33,0.295,96.82,82.56,0.95,0.65,780,1,186,4.2
+18,2023,1,1,9,0,0.4,1.24,0.025,0.63,41,725,188,0,6,-0.2,29,0,0,29,0.295,95.85,78.33,0.95,0.65,780,1,187,4.4
+19,2023,1,1,9,30,0.8,1.24,0.025,0.63,47,806,263,0,6,-0.2,44,0,0,44,0.294,93.12,74.49,0.95,0.65,780,1,188,4.5
+20,2023,1,1,10,0,1.2,1.25,0.023,0.63,52,860,331,0,6,0.1,97,5,0,99,0.293,92.66,71.1,0.94,0.65,780,1,189,4.5
+21,2023,1,1,10,30,1.5,1.25,0.023,0.63,56,896,388,0,7,0.1,129,11,0,133,0.292,90.69,68.25,0.94,0.65,780,1,190,4.6
+22,2023,1,1,11,0,1.9,1.26,0.021,0.63,58,921,432,0,7,0.4,166,20,0,174,0.291,89.8,66.02,0.94,0.65,779,1,190,4.6
+23,2023,1,1,11,30,2.2,1.26,0.021,0.63,60,935,463,0,7,0.4,169,16,0,176,0.29,87.9,64.46,0.94,0.65,779,1,190,4.6
+24,2023,1,1,12,0,2.5,1.27,0.021,0.63,60,943,479,0,7,0.6,153,9,4,157,0.289,87.42,63.62,0.95,0.65,779,1,190,4.5
+25,2023,1,1,12,30,2.6,1.27,0.021,0.63,61,944,481,0,7,0.6,130,7,0,133,0.288,86.69,63.55,0.95,0.65,778,1,188,4.1
+26,2023,1,1,13,0,2.7,1.26,0.02,0.63,59,939,467,0,7,0.8,140,7,0,143,0.288,87.08,64.24,0.95,0.65,778,1,186,3.7
+27,2023,1,1,13,30,2.6,1.26,0.02,0.63,58,924,439,0,7,0.7,198,31,0,211,0.287,87.58,65.67,0.95,0.65,777,1.1,178,3.2
+28,2023,1,1,14,0,2.5,1.23,0.022,0.63,56,900,396,0,6,0.9,187,29,0,198,0.286,89.2,67.78,0.95,0.65,777,1.1,171,2.8
+29,2023,1,1,14,30,1.7,1.23,0.022,0.63,53,865,341,0,7,0.9,192,91,0,222,0.286,94.42,70.52,0.95,0.65,777,1.1,155,2.2
+30,2023,1,1,15,0,1,1.2,0.024,0.63,48,814,275,0,7,0.8,162,66,0,180,0.286,98.46,73.81,0.96,0.65,777,1.1,139,1.7
+31,2023,1,1,15,30,0.5,1.2,0.024,0.63,42,739,201,0,6,0.5,80,9,0,82,0.287,100,77.57,0.96,0.65,777,1.2,130,1.8
+32,2023,1,1,16,0,0,1.18,0.024,0.63,34,620,123,4,6,0,33,0,57,33,0.288,100,81.73,0.96,0.65,777,1.2,121,1.9
+33,2023,1,1,16,30,-0.1,1.18,0.024,0.63,23,416,51,7,6,-0.1,18,0,100,18,0.29,100,86.19,0.96,0.65,777,1.2,123,2.1
+34,2023,1,1,17,0,-0.2,1.19,0.025,0.63,4,38,3,3,6,-0.2,1,0,43,1,0.292,100,91.17,0.96,0.69,777,1.1,125,2.2
+35,2023,1,1,17,30,-0.3,1.19,0.025,0.63,0,0,0,0,6,-0.3,0,0,0,0,0.293,100,96.23,0.96,0.69,777,1.1,127,2
+36,2023,1,1,18,0,-0.4,1.2,0.023,0.63,0,0,0,0,6,-0.4,0,0,0,0,0.294,100,101.48,0.96,0.69,777,1.1,129,1.7
+37,2023,1,1,18,30,-0.5,1.2,0.023,0.63,0,0,0,0,6,-0.5,0,0,0,0,0.295,100,106.89,0.96,0.69,777,1.1,125,1.5
+38,2023,1,1,19,0,-0.7,1.2,0.021,0.63,0,0,0,0,6,-0.7,0,0,0,0,0.296,100,112.41,0.96,0.69,777,1.1,120,1.2
+39,2023,1,1,19,30,-0.8,1.2,0.021,0.63,0,0,0,0,6,-0.8,0,0,0,0,0.296,100,118.03,0.96,0.69,777,1.1,113,1.1
+40,2023,1,1,20,0,-0.9,1.18,0.027,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.297,100,123.71,0.96,0.69,777,1.1,106,1
+41,2023,1,1,20,30,-1,1.18,0.027,0.63,0,0,0,0,6,-1,0,0,0,0,0.297,100,129.4,0.96,0.69,777,1.1,103,0.9
+42,2023,1,1,21,0,-1,1.17,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.297,100,135.08,0.96,0.69,776,1.1,101,0.8
+43,2023,1,1,21,30,-1.1,1.17,0.028,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.296,100,140.67,0.95,0.69,776,1.1,98,0.7
+44,2023,1,1,22,0,-1.2,1.18,0.024,0.63,0,0,0,0,9,-1.2,0,0,0,0,0.296,100,146.12,0.95,0.69,776,1.1,95,0.6
+45,2023,1,1,22,30,-1.3,1.18,0.024,0.63,0,0,0,0,9,-1.3,0,0,0,0,0.296,100,151.28,0.95,0.69,776,1.1,88,0.5
+46,2023,1,1,23,0,-1.4,1.19,0.027,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.295,100,155.93,0.95,0.69,776,1,81,0.4
+47,2023,1,1,23,30,-1.5,1.19,0.027,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.296,100,159.7,0.95,0.69,776,1,75,0.4
+48,2023,1,2,0,0,-1.6,1.2,0.025,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.296,100,161.99,0.95,0.69,776,1,69,0.3
+49,2023,1,2,0,30,-1.7,1.2,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.298,100,162.21,0.95,0.69,777,1,71,0.3
+50,2023,1,2,1,0,-1.8,1.18,0.023,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.299,100,160.29,0.94,0.69,777,1,72,0.3
+51,2023,1,2,1,30,-1.8,1.18,0.023,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.302,100,156.76,0.95,0.69,777,1,88,0.4
+52,2023,1,2,2,0,-1.9,1.14,0.023,0.63,0,0,0,0,8,-1.9,0,0,0,0,0.304,100,152.25,0.95,0.69,777,1,105,0.4
+53,2023,1,2,2,30,-2.1,1.14,0.023,0.63,0,0,0,0,4,-2.1,0,0,0,0,0.308,100,147.17,0.94,0.69,777,0.9,111,0.5
+54,2023,1,2,3,0,-2.3,1.11,0.022,0.63,0,0,0,0,4,-2.3,0,0,0,0,0.312,100,141.77,0.94,0.69,777,0.9,118,0.6
+55,2023,1,2,3,30,-2.7,1.11,0.022,0.63,0,0,0,0,7,-2.7,0,0,0,0,0.316,100,136.19,0.94,0.69,776,0.9,123,0.7
+56,2023,1,2,4,0,-3.2,1.08,0.02,0.63,0,0,0,0,6,-3.2,0,0,0,0,0.32,100,130.53,0.94,0.69,776,0.8,128,0.8
+57,2023,1,2,4,30,-3.6,1.08,0.02,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.323,100,124.83,0.94,0.69,776,0.8,126,0.8
+58,2023,1,2,5,0,-4,1.05,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.327,100,119.15,0.94,0.69,776,0.7,125,0.8
+59,2023,1,2,5,30,-4.4,1.05,0.022,0.63,0,0,0,0,6,-4.4,0,0,0,0,0.331,100,113.51,0.94,0.69,776,0.7,118,0.7
+60,2023,1,2,6,0,-4.8,1.01,0.022,0.63,0,0,0,0,9,-4.8,0,0,0,0,0.334,100,107.96,0.94,0.69,777,0.7,110,0.7
+61,2023,1,2,6,30,-5.2,1.01,0.022,0.63,0,0,0,0,9,-5.2,0,0,0,0,0.337,100,102.52,0.93,0.69,777,0.7,106,0.8
+62,2023,1,2,7,0,-5.6,0.96,0.022,0.63,0,0,0,0,9,-5.6,0,0,0,0,0.34,100,97.23,0.93,0.69,777,0.6,101,0.8
+63,2023,1,2,7,30,-5.4,0.96,0.022,0.63,0,0,0,1,9,-5.4,0,0,14,0,0.342,100,92.13,0.93,0.69,777,0.6,107,0.9
+64,2023,1,2,8,0,-5.3,0.92,0.024,0.63,20,350,38,7,9,-5.5,13,0,100,13,0.344,98.41,87.06,0.93,0.69,777,0.6,113,1
+65,2023,1,2,8,30,-4.2,0.92,0.024,0.63,33,611,112,4,9,-5.5,19,0,57,19,0.344,90.58,82.56,0.94,0.69,777,0.6,139,1.1
+66,2023,1,2,9,0,-3.1,0.9,0.027,0.63,43,738,192,0,6,-4.4,7,0,0,7,0.345,90.93,78.32,0.94,0.69,777,0.6,164,1.3
+67,2023,1,2,9,30,-2.2,0.9,0.027,0.63,50,818,269,0,6,-4.4,12,0,0,12,0.345,85.06,74.47,0.94,0.69,777,0.6,179,1.9
+68,2023,1,2,10,0,-1.2,0.89,0.028,0.63,56,870,338,0,6,-3.7,23,0,0,23,0.345,83.16,71.07,0.94,0.69,777,0.6,193,2.5
+69,2023,1,2,10,30,-0.9,0.89,0.028,0.63,60,904,396,0,7,-3.7,28,0,0,28,0.343,81.36,68.21,0.94,0.69,777,0.6,200,2.8
+70,2023,1,2,11,0,-0.6,0.91,0.029,0.63,63,927,441,0,6,-3.6,25,0,0,25,0.342,80.18,65.96,0.94,0.69,776,0.6,206,3.1
+71,2023,1,2,11,30,-0.4,0.91,0.029,0.63,66,941,473,0,6,-3.6,23,0,0,23,0.34,79.02,64.39,0.94,0.69,776,0.6,213,3.1
+72,2023,1,2,12,0,-0.3,0.93,0.031,0.63,68,947,490,0,6,-3.6,36,0,0,36,0.337,78.51,63.54,0.94,0.69,776,0.6,220,3.1
+73,2023,1,2,12,30,-0.3,0.93,0.031,0.63,68,947,491,0,7,-3.6,74,0,0,74,0.335,78.41,63.46,0.94,0.69,775,0.6,228,3.1
+74,2023,1,2,13,0,-0.2,0.94,0.032,0.63,68,940,478,0,7,-3.6,101,0,0,101,0.333,78,64.14,0.94,0.69,775,0.6,237,3
+75,2023,1,2,13,30,-0.3,0.94,0.032,0.63,66,926,449,0,7,-3.6,70,0,0,70,0.331,78.57,65.55,0.94,0.69,775,0.6,245,2.7
+76,2023,1,2,14,0,-0.4,0.96,0.034,0.63,64,902,407,0,6,-3.6,45,0,0,45,0.329,78.95,67.66,0.95,0.69,775,0.6,254,2.5
+77,2023,1,2,14,30,-0.8,0.96,0.034,0.63,60,868,351,0,7,-3.6,31,0,0,31,0.328,81.39,70.39,0.95,0.69,776,0.6,262,2.2
+78,2023,1,2,15,0,-1.2,0.99,0.036,0.63,55,816,284,0,7,-3.7,29,0,0,29,0.327,83.22,73.68,0.95,0.69,776,0.6,269,1.8
+79,2023,1,2,15,30,-2.3,0.99,0.036,0.63,47,739,208,0,7,-3.7,34,0,0,34,0.325,90.23,77.44,0.95,0.69,776,0.6,278,1.4
+80,2023,1,2,16,0,-3.3,1.02,0.037,0.63,38,617,128,4,7,-4.9,26,0,50,26,0.324,88.78,81.59,0.95,0.69,777,0.6,287,1
+81,2023,1,2,16,30,-4.1,1.02,0.037,0.63,25,401,53,7,7,-4.9,19,0,100,19,0.322,94.26,86.05,0.95,0.69,777,0.6,289,1
+82,2023,1,2,17,0,-4.9,1.05,0.04,0.63,4,35,3,3,7,-6.3,1,0,43,1,0.321,89.8,91.03,0.95,0.8,778,0.6,292,1
+83,2023,1,2,17,30,-5.2,1.05,0.04,0.63,0,0,0,0,7,-6.3,0,0,0,0,0.32,91.86,96.09,0.96,0.8,778,0.6,292,1
+84,2023,1,2,18,0,-5.5,1.08,0.043,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.319,90.61,101.34,0.96,0.8,778,0.7,292,1
+85,2023,1,2,18,30,-5.8,1.08,0.043,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.319,92.71,106.75,0.96,0.8,778,0.7,289,0.9
+86,2023,1,2,19,0,-6,1.1,0.046,0.63,0,0,0,0,7,-7,0,0,0,0,0.319,92.45,112.27,0.96,0.8,779,0.7,286,0.9
+87,2023,1,2,19,30,-6.2,1.1,0.046,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,93.87,117.89,0.96,0.8,779,0.7,283,1
+88,2023,1,2,20,0,-6.4,1.12,0.049,0.63,0,0,0,0,4,-7.3,0,0,0,0,0.321,93.31,123.57,0.96,0.8,779,0.7,280,1.1
+89,2023,1,2,20,30,-6.5,1.12,0.049,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.321,94.02,129.26,0.96,0.8,779,0.7,274,1.1
+90,2023,1,2,21,0,-6.7,1.14,0.052,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.322,94.08,134.94,0.96,0.8,779,0.6,268,1.2
+91,2023,1,2,21,30,-6.8,1.14,0.052,0.63,0,0,0,0,4,-7.5,0,0,0,0,0.322,94.8,140.53,0.96,0.8,779,0.6,263,1.3
+92,2023,1,2,22,0,-6.9,1.16,0.054,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.322,94.19,145.98,0.96,0.8,779,0.6,258,1.3
+93,2023,1,2,22,30,-7.1,1.16,0.054,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.322,95.65,151.14,0.97,0.8,779,0.6,255,1.4
+94,2023,1,2,23,0,-7.2,1.18,0.059,0.63,0,0,0,0,4,-8,0,0,0,0,0.322,94.32,155.79,0.97,0.8,779,0.6,253,1.5
+95,2023,1,2,23,30,-7.4,1.18,0.059,0.63,0,0,0,0,8,-8,0,0,0,0,0.322,95.79,159.57,0.97,0.8,779,0.6,252,1.6
+96,2023,1,3,0,0,-7.5,1.21,0.062,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.321,93.92,161.88,0.97,0.8,779,0.6,251,1.6
+97,2023,1,3,0,30,-7.7,1.21,0.062,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.32,95.51,162.13,0.97,0.8,780,0.6,249,1.7
+98,2023,1,3,1,0,-7.8,1.21,0.065,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.319,93.73,160.25,0.97,0.8,780,0.6,247,1.7
+99,2023,1,3,1,30,-7.9,1.21,0.065,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.318,94.46,156.75,0.97,0.8,780,0.6,245,1.7
+100,2023,1,3,2,0,-8,1.22,0.068,0.63,0,0,0,0,4,-9,0,0,0,0,0.318,92.82,152.26,0.97,0.8,780,0.6,242,1.7
+101,2023,1,3,2,30,-8.1,1.22,0.068,0.63,0,0,0,0,4,-9,0,0,0,0,0.318,93.55,147.19,0.97,0.8,780,0.6,240,1.8
+102,2023,1,3,3,0,-8.3,1.22,0.07,0.63,0,0,0,0,4,-9.3,0,0,0,0,0.318,92.73,141.8,0.97,0.8,780,0.6,237,1.8
+103,2023,1,3,3,30,-8.4,1.22,0.07,0.63,0,0,0,0,4,-9.3,0,0,0,0,0.318,93.46,136.22,0.97,0.8,780,0.6,236,1.9
+104,2023,1,3,4,0,-8.5,1.23,0.068,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.319,91.84,130.56,0.97,0.8,780,0.6,234,1.9
+105,2023,1,3,4,30,-8.6,1.23,0.068,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.319,92.56,124.86,0.97,0.8,780,0.6,234,2
+106,2023,1,3,5,0,-8.7,1.23,0.067,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.32,90.93,119.18,0.97,0.8,781,0.6,234,2
+107,2023,1,3,5,30,-8.9,1.23,0.067,0.63,0,0,0,0,8,-9.9,0,0,0,0,0.319,92.36,113.54,0.97,0.8,781,0.6,234,2
+108,2023,1,3,6,0,-9,1.24,0.065,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.319,90.45,107.99,0.97,0.8,781,0.6,234,2
+109,2023,1,3,6,30,-9.2,1.24,0.065,0.63,0,0,0,0,5,-10.3,0,0,0,0,0.319,91.88,102.54,0.97,0.8,781,0.5,232,2
+110,2023,1,3,7,0,-9.4,1.23,0.062,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.318,90.58,97.25,0.97,0.8,781,0.5,231,2
+111,2023,1,3,7,30,-9.2,1.23,0.062,0.63,0,0,0,1,5,-10.7,0,0,14,0,0.316,89.17,92.14,0.97,0.8,781,0.5,230,2
+112,2023,1,3,8,0,-9,1.22,0.061,0.63,23,270,37,7,5,-10.5,18,0,100,18,0.315,89.16,87.06,0.97,0.8,782,0.5,228,2
+113,2023,1,3,8,30,-8.1,1.22,0.061,0.63,41,536,110,4,4,-10.5,44,0,57,44,0.314,83.12,82.55,0.97,0.8,782,0.5,232,2.2
+114,2023,1,3,9,0,-7.3,1.22,0.057,0.63,53,683,191,0,4,-9.1,42,0,0,42,0.312,86.69,78.31,0.97,0.8,782,0.5,236,2.4
+115,2023,1,3,9,30,-6.5,1.22,0.057,0.63,62,777,270,0,4,-9.1,44,0,0,44,0.311,81.52,74.44,0.96,0.8,782,0.5,241,2.6
+116,2023,1,3,10,0,-5.8,1.22,0.049,0.63,66,842,340,0,4,-8.4,52,0,0,52,0.309,81.91,71.04,0.96,0.8,783,0.5,245,2.8
+117,2023,1,3,10,30,-5.4,1.22,0.049,0.63,71,884,400,0,4,-8.4,80,0,0,80,0.308,79.45,68.16,0.96,0.8,783,0.5,247,2.8
+118,2023,1,3,11,0,-4.9,1.23,0.043,0.63,73,916,447,0,4,-7.9,102,0,0,102,0.306,79.44,65.9,0.96,0.8,783,0.5,248,2.8
+119,2023,1,3,11,30,-4.7,1.23,0.043,0.63,74,936,480,0,4,-7.9,110,0,0,110,0.304,78.15,64.31,0.95,0.8,782,0.5,249,2.8
+120,2023,1,3,12,0,-4.4,1.25,0.035,0.63,73,951,498,0,4,-7.7,106,0,0,106,0.303,77.6,63.45,0.95,0.8,782,0.5,249,2.8
+121,2023,1,3,12,30,-4.3,1.25,0.035,0.63,71,956,500,0,4,-7.7,126,0,0,126,0.301,77.01,63.36,0.94,0.8,782,0.5,248,2.8
+122,2023,1,3,13,0,-4.2,1.25,0.029,0.63,68,956,487,0,4,-7.7,109,0,0,109,0.3,76.63,64.03,0.94,0.8,782,0.5,246,2.8
+123,2023,1,3,13,30,-4.2,1.25,0.029,0.63,66,944,459,0,4,-7.7,81,0,0,81,0.299,76.63,65.43,0.94,0.8,782,0.5,245,2.8
+124,2023,1,3,14,0,-4.1,1.24,0.028,0.63,62,925,416,0,5,-7.7,89,0,0,89,0.298,76.25,67.53,0.94,0.8,782,0.5,244,2.7
+125,2023,1,3,14,30,-4.3,1.24,0.028,0.63,58,894,360,0,5,-7.6,96,0,0,96,0.298,77.5,70.26,0.94,0.8,783,0.5,244,2.5
+126,2023,1,3,15,0,-4.5,1.23,0.027,0.63,53,847,293,0,5,-7.3,78,0,0,78,0.298,80.52,73.54,0.94,0.8,783,0.5,243,2.2
+127,2023,1,3,15,30,-5.3,1.23,0.027,0.63,45,776,216,0,5,-7.3,70,5,0,71,0.299,85.54,77.3,0.94,0.8,783,0.5,241,1.9
+128,2023,1,3,16,0,-6.1,1.21,0.027,0.63,37,662,135,3,5,-8.7,56,3,43,56,0.3,81.82,81.45,0.94,0.8,783,0.5,239,1.6
+129,2023,1,3,16,30,-7,1.21,0.027,0.63,25,460,58,7,5,-8.7,27,0,100,27,0.301,87.77,85.91,0.95,0.8,784,0.5,237,1.6
+130,2023,1,3,17,0,-8,1.2,0.027,0.63,7,80,6,3,5,-10.6,2,0,43,2,0.303,81.33,90.88,0.95,0.8,784,0.5,236,1.6
+131,2023,1,3,17,30,-8.4,1.2,0.027,0.63,0,0,0,0,8,-10.6,0,0,0,0,0.304,83.9,95.94,0.95,0.8,784,0.5,238,1.6
+132,2023,1,3,18,0,-8.9,1.2,0.027,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.306,81.54,101.19,0.95,0.8,785,0.5,240,1.7
+133,2023,1,3,18,30,-9.3,1.2,0.027,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.308,84.13,106.6,0.94,0.8,785,0.5,243,1.7
+134,2023,1,3,19,0,-9.6,1.2,0.025,0.63,0,0,0,0,4,-12,0,0,0,0,0.31,82.63,112.13,0.94,0.8,785,0.5,246,1.7
+135,2023,1,3,19,30,-10,1.2,0.025,0.63,0,0,0,0,5,-12,0,0,0,0,0.313,85.28,117.75,0.94,0.8,785,0.5,250,1.7
+136,2023,1,3,20,0,-10.3,1.21,0.025,0.63,0,0,0,0,8,-12.4,0,0,0,0,0.315,84.63,123.42,0.94,0.8,785,0.5,255,1.7
+137,2023,1,3,20,30,-10.6,1.21,0.025,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.318,86.67,129.12,0.94,0.8,785,0.4,259,1.7
+138,2023,1,3,21,0,-11,1.21,0.024,0.63,0,0,0,0,7,-12.7,0,0,0,0,0.32,86.93,134.79,0.94,0.8,786,0.4,264,1.7
+139,2023,1,3,21,30,-11.2,1.21,0.024,0.63,0,0,0,0,7,-12.7,0,0,0,0,0.322,88.33,140.39,0.94,0.8,786,0.4,268,1.7
+140,2023,1,3,22,0,-11.5,1.22,0.022,0.63,0,0,0,0,7,-13,0,0,0,0,0.324,88.45,145.83,0.94,0.8,786,0.4,271,1.7
+141,2023,1,3,22,30,-11.8,1.22,0.022,0.63,0,0,0,0,7,-13,0,0,0,0,0.326,90.6,150.99,0.93,0.8,786,0.4,274,1.6
+142,2023,1,3,23,0,-12.1,1.24,0.019,0.63,0,0,0,0,7,-13.4,0,0,0,0,0.328,90.24,155.65,0.93,0.8,786,0.4,277,1.5
+143,2023,1,3,23,30,-12.6,1.24,0.019,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.329,93.95,159.43,0.92,0.8,786,0.3,279,1.5
+144,2023,1,4,0,0,-13.1,1.23,0.016,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.33,92.54,161.76,0.92,0.8,786,0.3,281,1.5
+145,2023,1,4,0,30,-13.7,1.23,0.016,0.63,0,0,0,0,0,-14,0,0,0,0,0.33,97.29,162.05,0.92,0.8,787,0.3,282,1.5
+146,2023,1,4,1,0,-14.2,1.21,0.014,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.331,94.88,160.2,0.91,0.8,787,0.3,283,1.5
+147,2023,1,4,1,30,-14.5,1.21,0.014,0.63,0,0,0,0,4,-14.8,0,0,0,0,0.331,97.25,156.73,0.91,0.8,787,0.3,282,1.4
+148,2023,1,4,2,0,-14.8,1.19,0.013,0.63,0,0,0,0,4,-15.4,0,0,0,0,0.331,95.39,152.26,0.91,0.8,788,0.3,282,1.4
+149,2023,1,4,2,30,-15,1.19,0.013,0.63,0,0,0,0,4,-15.4,0,0,0,0,0.332,96.98,147.2,0.91,0.8,788,0.3,278,1.3
+150,2023,1,4,3,0,-15.1,1.18,0.013,0.63,0,0,0,0,4,-15.7,0,0,0,0,0.332,95,141.82,0.91,0.8,788,0.3,275,1.2
+151,2023,1,4,3,30,-15.3,1.18,0.013,0.63,0,0,0,0,4,-15.7,0,0,0,0,0.332,96.71,136.25,0.91,0.8,789,0.3,265,1.1
+152,2023,1,4,4,0,-15.6,1.19,0.012,0.63,0,0,0,0,4,-16.2,0,0,0,0,0.332,95.5,130.59,0.91,0.8,789,0.3,255,1
+153,2023,1,4,4,30,-15.8,1.19,0.012,0.63,0,0,0,0,4,-16.2,0,0,0,0,0.332,97.1,124.89,0.91,0.8,789,0.3,243,1.1
+154,2023,1,4,5,0,-16.1,1.21,0.012,0.63,0,0,0,0,8,-16.6,0,0,0,0,0.332,95.88,119.21,0.91,0.8,790,0.3,232,1.1
+155,2023,1,4,5,30,-16.3,1.21,0.012,0.63,0,0,0,0,7,-16.6,0,0,0,0,0.332,97.49,113.57,0.91,0.8,790,0.3,226,1.2
+156,2023,1,4,6,0,-16.5,1.23,0.012,0.63,0,0,0,0,7,-17,0,0,0,0,0.333,95.94,108.01,0.91,0.8,790,0.3,221,1.3
+157,2023,1,4,6,30,-16.6,1.23,0.012,0.63,0,0,0,0,4,-17,0,0,0,0,0.334,96.74,102.56,0.91,0.8,790,0.3,217,1.3
+158,2023,1,4,7,0,-16.7,1.25,0.012,0.63,0,0,0,0,0,-17.3,0,0,0,0,0.335,95.37,97.26,0.91,0.8,790,0.3,213,1.3
+159,2023,1,4,7,30,-16.3,1.25,0.012,0.63,0,0,0,1,0,-17.3,0,0,11,0,0.336,92.35,92.14,0.91,0.8,791,0.3,213,1.4
+160,2023,1,4,8,0,-15.9,1.27,0.012,0.63,19,428,41,2,0,-17.2,20,284,36,35,0.337,89.59,87.05,0.91,0.8,791,0.3,214,1.4
+161,2023,1,4,8,30,-14.5,1.27,0.012,0.63,29,692,119,1,0,-17.2,32,620,11,112,0.339,79.8,82.54,0.91,0.8,791,0.3,217,1.5
+162,2023,1,4,9,0,-13.1,1.3,0.011,0.63,36,814,201,0,0,-15.5,36,814,0,201,0.34,82.01,78.28,0.91,0.8,791,0.3,220,1.5
+163,2023,1,4,9,30,-11.2,1.3,0.011,0.63,41,888,280,0,0,-15.5,51,834,0,275,0.34,70.47,74.41,0.91,0.8,792,0.3,223,2
+164,2023,1,4,10,0,-9.4,1.32,0.011,0.63,45,936,350,0,0,-13,45,936,0,350,0.34,75.16,70.99,0.91,0.8,792,0.3,227,2.5
+165,2023,1,4,10,30,-8.2,1.32,0.011,0.63,48,969,409,0,0,-13,48,969,0,409,0.338,68.43,68.1,0.9,0.8,792,0.3,229,2.8
+166,2023,1,4,11,0,-6.9,1.32,0.01,0.63,51,990,456,0,0,-11.6,51,990,0,456,0.337,68.91,65.83,0.9,0.8,792,0.3,232,3.2
+167,2023,1,4,11,30,-6.1,1.32,0.01,0.63,52,1004,488,0,0,-11.6,52,1004,0,488,0.335,64.82,64.23,0.9,0.8,792,0.3,233,3.5
+168,2023,1,4,12,0,-5.2,1.32,0.01,0.63,53,1010,506,0,0,-10.8,53,1010,0,506,0.334,64.95,63.36,0.9,0.8,792,0.3,234,3.9
+169,2023,1,4,12,30,-4.9,1.32,0.01,0.63,53,1011,508,0,0,-10.8,53,1011,0,508,0.332,63.5,63.25,0.91,0.8,792,0.3,237,4
+170,2023,1,4,13,0,-4.5,1.32,0.01,0.63,53,1006,495,0,0,-10,53,1006,0,495,0.329,65.48,63.91,0.91,0.8,792,0.3,240,4.1
+171,2023,1,4,13,30,-4.5,1.32,0.01,0.63,51,995,467,0,0,-10,51,995,0,467,0.326,65.48,65.3,0.91,0.8,792,0.3,238,3.7
+172,2023,1,4,14,0,-4.4,1.31,0.011,0.63,50,975,425,0,0,-9.3,50,975,0,425,0.322,68.82,67.4,0.92,0.8,792,0.3,237,3.3
+173,2023,1,4,14,30,-4.7,1.31,0.011,0.63,48,944,369,0,0,-9.3,48,944,0,369,0.319,70.39,70.12,0.93,0.8,792,0.3,232,2.7
+174,2023,1,4,15,0,-5.1,1.3,0.014,0.63,46,898,303,0,0,-8.6,46,898,0,303,0.317,76.51,73.4,0.94,0.8,791,0.3,227,2.2
+175,2023,1,4,15,30,-6.4,1.3,0.014,0.63,41,829,225,0,0,-8.6,41,829,0,225,0.314,84.57,77.15,0.94,0.8,792,0.3,220,1.8
+176,2023,1,4,16,0,-7.8,1.3,0.018,0.63,35,717,143,0,0,-10.8,35,717,0,143,0.312,79.34,81.3,0.95,0.8,792,0.3,213,1.4
+177,2023,1,4,16,30,-9,1.3,0.018,0.63,25,520,63,0,0,-10.8,25,520,0,63,0.31,87.11,85.76,0.95,0.8,792,0.3,207,1.5
+178,2023,1,4,17,0,-10.2,1.31,0.023,0.63,7,96,7,1,0,-12.8,7,96,11,7,0.308,81.48,90.23,0.96,0.8,792,0.3,201,1.5
+179,2023,1,4,17,30,-10.8,1.31,0.023,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.306,85.45,95.79,0.96,0.8,792,0.4,196,1.6
+180,2023,1,4,18,0,-11.3,1.32,0.025,0.63,0,0,0,0,7,-13.2,0,0,0,0,0.304,85.73,101.05,0.96,0.8,792,0.4,192,1.6
+181,2023,1,4,18,30,-11.7,1.32,0.025,0.63,0,0,0,0,0,-13.2,0,0,0,0,0.303,88.52,106.45,0.96,0.8,792,0.4,188,1.7
+182,2023,1,4,19,0,-12.1,1.32,0.026,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.302,88.76,111.99,0.96,0.8,792,0.4,185,1.7
+183,2023,1,4,19,30,-12.6,1.32,0.026,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.302,92.53,117.6,0.96,0.8,793,0.4,183,1.8
+184,2023,1,4,20,0,-13,1.32,0.027,0.63,0,0,0,0,0,-14,0,0,0,0,0.301,92.55,123.28,0.96,0.8,793,0.4,182,1.9
+185,2023,1,4,20,30,-13.2,1.32,0.027,0.63,0,0,0,0,0,-14,0,0,0,0,0.3,94.06,128.97,0.96,0.8,793,0.4,182,2
+186,2023,1,4,21,0,-13.5,1.31,0.028,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.3,94.1,134.65,0.97,0.8,793,0.5,181,2.1
+187,2023,1,4,21,30,-13.6,1.31,0.028,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.299,94.87,140.24,0.96,0.8,793,0.5,183,2.2
+188,2023,1,4,22,0,-13.7,1.31,0.026,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,93.69,145.68,0.96,0.8,792,0.5,185,2.2
+189,2023,1,4,22,30,-13.7,1.31,0.026,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,93.81,150.84,0.96,0.8,793,0.6,186,2.2
+190,2023,1,4,23,0,-13.8,1.32,0.025,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.297,94.06,155.5,0.96,0.8,793,0.6,188,2.2
+191,2023,1,4,23,30,-13.8,1.32,0.025,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,94.06,159.29,0.96,0.8,793,0.6,189,2.1
+192,2023,1,5,0,0,-13.9,1.32,0.025,0.63,0,0,0,0,0,-14.6,0,0,0,0,0.298,94.12,161.63,0.96,0.8,793,0.7,190,2.1
+193,2023,1,5,0,30,-13.9,1.32,0.025,0.63,0,0,0,0,0,-14.6,0,0,0,0,0.299,94.12,161.95,0.96,0.8,793,0.7,189,2.1
+194,2023,1,5,1,0,-14,1.33,0.027,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.3,94.14,160.14,0.96,0.8,793,0.8,187,2.1
+195,2023,1,5,1,30,-14,1.33,0.027,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.3,94.02,156.71,0.96,0.8,792,0.8,181,2.1
+196,2023,1,5,2,0,-14,1.33,0.03,0.63,0,0,0,0,0,-14.9,0,0,0,0,0.301,92.88,152.25,0.96,0.8,792,0.8,176,2.1
+197,2023,1,5,2,30,-14,1.33,0.03,0.63,0,0,0,0,4,-14.9,0,0,0,0,0.3,92.88,147.21,0.96,0.8,792,0.9,172,2.1
+198,2023,1,5,3,0,-13.9,1.31,0.035,0.63,0,0,0,0,4,-15,0,0,0,0,0.3,91.66,141.84,0.97,0.8,792,0.9,168,2.2
+199,2023,1,5,3,30,-13.7,1.31,0.035,0.63,0,0,0,0,4,-15,0,0,0,0,0.3,90.17,136.27,0.97,0.8,792,0.9,168,2.2
+200,2023,1,5,4,0,-13.5,1.28,0.039,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.3,89.64,130.61,0.97,0.8,792,0.9,168,2.2
+201,2023,1,5,4,30,-13.1,1.28,0.039,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.299,86.77,124.92,0.97,0.8,792,0.8,169,2.1
+202,2023,1,5,5,0,-12.8,1.26,0.041,0.63,0,0,0,0,6,-14.4,0,0,0,0,0.299,87.78,119.23,0.97,0.8,792,0.8,171,2.1
+203,2023,1,5,5,30,-12.4,1.26,0.041,0.63,0,0,0,0,7,-14.4,0,0,0,0,0.299,84.99,113.59,0.97,0.8,792,0.8,174,2.1
+204,2023,1,5,6,0,-12,1.25,0.041,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.299,86.39,108.02,0.97,0.8,792,0.7,176,2
+205,2023,1,5,6,30,-11.6,1.25,0.041,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.299,83.66,102.57,0.97,0.8,792,0.7,180,2
+206,2023,1,5,7,0,-11.2,1.26,0.038,0.63,0,0,0,0,7,-13.1,0,0,0,0,0.299,85.67,97.27,0.97,0.8,791,0.7,184,2
+207,2023,1,5,7,30,-10.6,1.26,0.038,0.63,0,0,0,1,7,-13.1,0,0,18,0,0.299,81.78,92.14,0.97,0.8,792,0.7,188,2
+208,2023,1,5,8,0,-9.9,1.27,0.036,0.63,22,324,39,7,7,-11.8,24,1,100,24,0.299,86.09,87.04,0.96,0.8,792,0.6,193,2.1
+209,2023,1,5,8,30,-8.8,1.27,0.036,0.63,36,590,113,4,7,-11.8,64,7,57,65,0.3,78.96,82.52,0.96,0.8,792,0.6,195,2.3
+210,2023,1,5,9,0,-7.7,1.29,0.034,0.63,46,727,194,0,7,-9.7,89,8,0,91,0.301,85.82,78.26,0.96,0.8,792,0.6,198,2.5
+211,2023,1,5,9,30,-6.6,1.29,0.034,0.63,53,811,272,0,7,-9.7,97,5,0,98,0.301,78.85,74.37,0.96,0.8,792,0.6,199,2.8
+212,2023,1,5,10,0,-5.6,1.29,0.032,0.63,60,867,343,0,7,-7.6,123,16,0,128,0.302,86.06,70.94,0.96,0.8,792,0.6,199,3
+213,2023,1,5,10,30,-4.4,1.29,0.032,0.63,65,901,402,0,6,-7.6,90,1,0,90,0.302,78.6,68.04,0.96,0.8,792,0.6,202,3.7
+214,2023,1,5,11,0,-3.3,1.26,0.035,0.63,69,922,448,0,6,-5.3,108,3,0,109,0.302,86.13,65.75,0.96,0.8,791,0.6,204,4.4
+215,2023,1,5,11,30,-2.8,1.26,0.035,0.63,71,938,480,0,7,-5.3,99,2,7,100,0.302,82.99,64.14,0.96,0.8,791,0.6,205,4.6
+216,2023,1,5,12,0,-2.2,1.26,0.031,0.63,71,948,498,2,7,-4.1,100,4,25,102,0.303,86.95,63.26,0.96,0.8,790,0.6,206,4.8
+217,2023,1,5,12,30,-2,1.26,0.031,0.63,69,953,500,0,7,-4.1,155,33,0,170,0.303,85.67,63.13,0.95,0.8,790,0.6,207,4.8
+218,2023,1,5,13,0,-1.7,1.28,0.025,0.63,67,954,488,0,7,-3.5,212,78,0,246,0.303,87.7,63.78,0.95,0.8,790,0.6,208,4.9
+219,2023,1,5,13,30,-1.6,1.28,0.025,0.63,64,945,461,0,6,-3.5,164,14,0,170,0.302,86.95,65.17,0.95,0.8,789,0.6,208,4.7
+220,2023,1,5,14,0,-1.5,1.29,0.023,0.63,60,926,418,0,6,-3.2,110,1,0,110,0.302,88.06,67.26,0.95,0.8,789,0.6,207,4.6
+221,2023,1,5,14,30,-1.6,1.29,0.023,0.63,56,893,362,0,7,-3.2,113,84,0,142,0.303,88.71,69.97,0.95,0.8,789,0.6,207,4
+222,2023,1,5,15,0,-1.8,1.27,0.024,0.63,52,844,295,0,7,-3.1,161,90,0,187,0.304,90.89,73.25,0.95,0.8,789,0.7,207,3.4
+223,2023,1,5,15,30,-2.5,1.27,0.024,0.63,45,775,219,0,7,-3.1,135,50,0,146,0.305,95.7,77,0.95,0.8,789,0.7,205,2.5
+224,2023,1,5,16,0,-3.3,1.28,0.025,0.63,37,664,139,3,7,-3.8,80,50,43,88,0.307,96.39,81.15,0.95,0.8,789,0.7,203,1.7
+225,2023,1,5,16,30,-4.3,1.28,0.025,0.63,24,479,61,7,7,-4.3,32,1,100,32,0.309,100,85.62,0.94,0.8,789,0.7,201,1.6
+226,2023,1,5,17,0,-5.3,1.32,0.022,0.63,7,91,7,3,6,-5.5,3,0,43,3,0.311,98.48,90.11,0.94,0.78,789,0.6,199,1.6
+227,2023,1,5,17,30,-6.1,1.32,0.022,0.63,0,0,0,0,7,-6.1,0,0,0,0,0.312,100,95.64,0.94,0.78,789,0.6,196,1.7
+228,2023,1,5,18,0,-6.9,1.31,0.022,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.313,100,100.89,0.94,0.78,789,0.7,193,1.8
+229,2023,1,5,18,30,-7.1,1.31,0.022,0.63,0,0,0,0,6,-7.1,0,0,0,0,0.314,100,106.3,0.94,0.78,789,0.7,192,2
+230,2023,1,5,19,0,-7.3,1.29,0.021,0.63,0,0,0,0,6,-7.3,0,0,0,0,0.316,100,111.84,0.94,0.78,789,0.7,190,2.2
+231,2023,1,5,19,30,-7.2,1.29,0.021,0.63,0,0,0,0,9,-7.3,0,0,0,0,0.316,99.33,117.45,0.94,0.78,788,0.7,189,2.2
+232,2023,1,5,20,0,-7.2,1.28,0.02,0.63,0,0,0,0,9,-7.4,0,0,0,0,0.317,98.38,123.13,0.95,0.78,788,0.7,188,2.2
+233,2023,1,5,20,30,-7.2,1.28,0.02,0.63,0,0,0,0,6,-7.4,0,0,0,0,0.318,98.38,128.82,0.95,0.78,788,0.8,188,2.2
+234,2023,1,5,21,0,-7.3,1.22,0.023,0.63,0,0,0,0,6,-7.6,0,0,0,0,0.319,97.43,134.5,0.96,0.78,788,0.8,189,2.1
+235,2023,1,5,21,30,-7.2,1.22,0.023,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.32,96.68,140.09,0.96,0.78,788,0.8,189,2
+236,2023,1,5,22,0,-7.1,1.18,0.026,0.63,0,0,0,0,6,-7.6,0,0,0,0,0.322,95.88,145.53,0.96,0.78,788,0.8,189,2
+237,2023,1,5,22,30,-7.1,1.18,0.026,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.323,95.76,150.69,0.96,0.78,787,0.8,188,1.9
+238,2023,1,5,23,0,-7,1.16,0.029,0.63,0,0,0,0,6,-7.6,0,0,0,0,0.324,95.62,155.35,0.96,0.78,787,0.8,188,1.8
+239,2023,1,5,23,30,-7,1.16,0.029,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.326,95.62,159.14,0.96,0.78,787,0.8,187,1.7
+240,2023,1,6,0,0,-7.1,1.17,0.028,0.63,0,0,0,0,6,-7.6,0,0,0,0,0.327,95.96,161.5,0.96,0.78,787,0.8,185,1.6
+241,2023,1,6,0,30,-7.3,1.17,0.028,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.327,97.32,161.85,0.96,0.78,786,0.8,185,1.6
+242,2023,1,6,1,0,-7.6,1.16,0.026,0.63,0,0,0,0,6,-8,0,0,0,0,0.327,97.08,160.08,0.96,0.78,786,0.8,185,1.6
+243,2023,1,6,1,30,-7.6,1.16,0.026,0.63,0,0,0,0,7,-8,0,0,0,0,0.327,97.08,156.67,0.96,0.78,786,0.8,188,1.7
+244,2023,1,6,2,0,-7.6,1.14,0.032,0.63,0,0,0,0,6,-8,0,0,0,0,0.327,97.2,152.24,0.96,0.78,786,0.8,192,1.7
+245,2023,1,6,2,30,-7.3,1.14,0.032,0.63,0,0,0,0,7,-8,0,0,0,0,0.326,94.97,147.21,0.96,0.78,786,0.8,195,1.7
+246,2023,1,6,3,0,-7,1.14,0.035,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.326,96.86,141.85,0.96,0.78,786,0.8,199,1.7
+247,2023,1,6,3,30,-6.7,1.14,0.035,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.327,94.65,136.29,0.96,0.78,786,0.8,201,1.8
+248,2023,1,6,4,0,-6.5,1.14,0.032,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.327,96.61,130.63,0.96,0.78,786,0.8,204,1.8
+249,2023,1,6,4,30,-6.4,1.14,0.032,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.328,95.87,124.93,0.96,0.78,786,0.8,207,1.8
+250,2023,1,6,5,0,-6.3,1.17,0.031,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.329,95.73,119.25,0.96,0.78,786,0.8,209,1.8
+251,2023,1,6,5,30,-6.5,1.17,0.031,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.329,97.2,113.6,0.96,0.78,786,0.8,213,1.9
+252,2023,1,6,6,0,-6.6,1.19,0.029,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.33,95.89,108.04,0.95,0.78,786,0.7,217,1.9
+253,2023,1,6,6,30,-6.8,1.19,0.029,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.329,97.37,102.58,0.95,0.78,786,0.7,221,1.9
+254,2023,1,6,7,0,-7,1.2,0.028,0.63,0,0,0,0,8,-7.5,0,0,0,0,0.329,96.09,97.27,0.95,0.78,787,0.7,225,1.9
+255,2023,1,6,7,30,-6.6,1.2,0.028,0.63,0,0,0,1,5,-7.5,0,0,14,0,0.328,93.18,92.14,0.95,0.78,787,0.7,228,2
+256,2023,1,6,8,0,-6.3,1.2,0.031,0.63,21,334,38,7,4,-6.9,12,0,100,12,0.327,95.32,87.03,0.96,0.78,787,0.7,231,2.1
+257,2023,1,6,8,30,-5.3,1.2,0.031,0.63,34,594,112,5,8,-6.9,31,0,71,31,0.327,88.33,82.5,0.96,0.78,787,0.7,233,2.5
+258,2023,1,6,9,0,-4.3,1.22,0.031,0.63,45,726,193,2,8,-4.9,67,1,21,67,0.326,95.38,78.23,0.96,0.78,788,0.7,235,2.9
+259,2023,1,6,9,30,-3.4,1.22,0.031,0.63,52,810,271,1,7,-4.9,69,3,11,70,0.325,89.17,74.33,0.95,0.78,788,0.7,236,3.1
+260,2023,1,6,10,0,-2.6,1.25,0.028,0.63,57,866,341,0,7,-3.6,152,61,0,172,0.324,92.55,70.88,0.95,0.78,788,0.7,237,3.3
+261,2023,1,6,10,30,-2,1.25,0.028,0.63,61,904,400,0,7,-3.6,199,321,0,319,0.324,88.54,67.97,0.95,0.78,788,0.7,239,3.3
+262,2023,1,6,11,0,-1.3,1.26,0.025,0.63,63,930,446,0,7,-2.8,230,79,0,263,0.323,89.66,65.67,0.94,0.78,788,0.7,241,3.3
+263,2023,1,6,11,30,-1,1.26,0.025,0.63,64,947,479,0,7,-2.8,273,67,0,302,0.322,87.72,64.04,0.94,0.78,788,0.7,242,3.3
+264,2023,1,6,12,0,-0.7,1.27,0.022,0.63,65,957,497,0,7,-2.4,261,43,0,280,0.321,88.06,63.14,0.94,0.78,788,0.7,243,3.2
+265,2023,1,6,12,30,-0.5,1.27,0.022,0.63,63,960,499,0,7,-2.4,278,53,0,302,0.32,86.78,63.01,0.93,0.78,788,0.7,242,3.1
+266,2023,1,6,13,0,-0.3,1.25,0.02,0.63,63,956,487,0,7,-2.2,289,75,0,322,0.32,87.32,63.65,0.93,0.78,789,0.7,241,3
+267,2023,1,6,13,30,-0.3,1.25,0.02,0.63,60,944,459,0,7,-2.2,244,30,0,257,0.319,87.32,65.03,0.94,0.78,789,0.7,239,2.9
+268,2023,1,6,14,0,-0.3,1.22,0.021,0.63,59,923,418,0,7,-2,209,22,0,218,0.319,88.56,67.11,0.94,0.78,789,0.7,237,2.8
+269,2023,1,6,14,30,-0.5,1.22,0.021,0.63,55,892,363,0,7,-2,180,20,0,187,0.319,89.85,69.82,0.94,0.78,789,0.7,232,2.4
+270,2023,1,6,15,0,-0.7,1.2,0.022,0.63,50,845,296,0,7,-1.7,149,17,0,154,0.318,92.66,73.09,0.94,0.78,790,0.7,227,2
+271,2023,1,6,15,30,-1.5,1.2,0.022,0.63,45,775,221,0,7,-1.7,125,16,0,129,0.318,98.24,76.85,0.94,0.78,790,0.7,223,1.7
+272,2023,1,6,16,0,-2.4,1.18,0.023,0.63,36,666,140,3,7,-2.8,65,5,43,66,0.318,96.82,81,0.94,0.78,790,0.7,219,1.3
+273,2023,1,6,16,30,-3.1,1.18,0.023,0.63,25,479,63,7,7,-3.1,21,0,100,21,0.319,100,85.46,0.94,0.78,791,0.7,220,1.4
+274,2023,1,6,17,0,-3.7,1.16,0.023,0.63,7,90,7,4,7,-4.1,3,0,57,3,0.319,96.71,89.98,0.94,0.8,791,0.7,220,1.4
+275,2023,1,6,17,30,-3.9,1.16,0.023,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.319,98.17,95.49,0.94,0.8,791,0.7,224,1.4
+276,2023,1,6,18,0,-4.1,1.15,0.022,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.319,97.13,100.74,0.94,0.8,792,0.7,228,1.4
+277,2023,1,6,18,30,-4.3,1.15,0.022,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.319,98.6,106.15,0.94,0.8,792,0.8,232,1.4
+278,2023,1,6,19,0,-4.4,1.15,0.021,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.32,97.98,111.68,0.93,0.8,793,0.8,237,1.4
+279,2023,1,6,19,30,-4.6,1.15,0.021,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.32,99.46,117.3,0.93,0.8,793,0.8,242,1.4
+280,2023,1,6,20,0,-4.8,1.17,0.019,0.63,0,0,0,0,7,-5,0,0,0,0,0.32,98.34,122.98,0.93,0.8,793,0.8,247,1.4
+281,2023,1,6,20,30,-5.1,1.17,0.019,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.32,100,128.67,0.93,0.8,793,0.7,252,1.4
+282,2023,1,6,21,0,-5.3,1.21,0.017,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.319,98.21,134.34,0.92,0.8,793,0.7,256,1.3
+283,2023,1,6,21,30,-5.7,1.21,0.017,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.319,100,139.94,0.92,0.8,793,0.7,261,1.2
+284,2023,1,6,22,0,-6.1,1.26,0.015,0.63,0,0,0,0,7,-6.3,0,0,0,0,0.319,98.47,145.38,0.91,0.8,794,0.7,265,1.2
+285,2023,1,6,22,30,-6.6,1.26,0.015,0.63,0,0,0,0,7,-6.6,0,0,0,0,0.318,100,150.53,0.91,0.8,794,0.7,275,1.1
+286,2023,1,6,23,0,-7.1,1.28,0.014,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.317,99.15,155.19,0.9,0.8,794,0.7,285,1.1
+287,2023,1,6,23,30,-7.3,1.28,0.014,0.63,0,0,0,0,4,-7.3,0,0,0,0,0.316,100,158.98,0.9,0.8,794,0.7,292,1
+288,2023,1,7,0,0,-7.6,1.3,0.013,0.63,0,0,0,0,4,-7.6,0,0,0,0,0.315,100,161.36,0.9,0.8,794,0.7,299,1
+289,2023,1,7,0,30,-7.7,1.3,0.013,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.314,100,161.74,0.91,0.8,794,0.7,309,0.8
+290,2023,1,7,1,0,-7.8,1.31,0.012,0.63,0,0,0,0,4,-7.8,0,0,0,0,0.313,100,160,0.91,0.8,794,0.7,319,0.7
+291,2023,1,7,1,30,-8,1.31,0.012,0.63,0,0,0,0,4,-8,0,0,0,0,0.312,100,156.63,0.91,0.8,794,0.7,335,0.6
+292,2023,1,7,2,0,-8.2,1.3,0.013,0.63,0,0,0,0,4,-8.2,0,0,0,0,0.311,100,152.22,0.91,0.8,794,0.7,352,0.5
+293,2023,1,7,2,30,-8.5,1.3,0.013,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.311,100,147.21,0.91,0.8,794,0.6,176,0.4
+294,2023,1,7,3,0,-8.9,1.31,0.012,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.311,100,141.85,0.91,0.8,794,0.6,0,0.3
+295,2023,1,7,3,30,-9.2,1.31,0.012,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.31,100,136.3,0.91,0.8,795,0.6,145,0.3
+296,2023,1,7,4,0,-9.5,1.31,0.012,0.63,0,0,0,0,4,-9.5,0,0,29,0,0.31,100,130.64,0.91,0.8,795,0.6,291,0.2
+297,2023,1,7,4,30,-9.8,1.31,0.012,0.63,0,0,0,0,4,-9.8,0,0,0,0,0.31,100,124.95,0.91,0.8,795,0.6,259,0.3
+298,2023,1,7,5,0,-10.2,1.31,0.012,0.63,0,0,0,0,4,-10.2,0,0,0,0,0.31,100,119.26,0.91,0.8,795,0.6,226,0.3
+299,2023,1,7,5,30,-10.4,1.31,0.012,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.309,100,113.61,0.91,0.8,795,0.6,213,0.3
+300,2023,1,7,6,0,-10.6,1.31,0.012,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.308,100,108.04,0.91,0.8,796,0.6,200,0.3
+301,2023,1,7,6,30,-10.8,1.31,0.012,0.63,0,0,0,0,4,-10.8,0,0,0,0,0.307,100,102.58,0.91,0.8,796,0.5,194,0.4
+302,2023,1,7,7,0,-10.9,1.3,0.011,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.306,100,97.26,0.91,0.8,796,0.5,189,0.4
+303,2023,1,7,7,30,-10.6,1.3,0.011,0.63,0,0,0,2,4,-10.7,0,0,29,0,0.305,99,92.12,0.91,0.8,796,0.5,179,0.5
+304,2023,1,7,8,0,-10.4,1.3,0.011,0.63,20,411,41,7,4,-10.6,20,0,100,20,0.304,98.51,87.01,0.91,0.8,796,0.5,169,0.6
+305,2023,1,7,8,30,-9.1,1.3,0.011,0.63,29,672,117,4,4,-10.6,61,159,57,82,0.303,89.03,82.47,0.91,0.8,797,0.5,167,0.8
+306,2023,1,7,9,0,-7.8,1.31,0.011,0.63,36,797,199,0,0,-8.5,50,694,0,192,0.303,95,78.18,0.91,0.8,797,0.5,165,1
+307,2023,1,7,9,30,-6.4,1.31,0.011,0.63,42,875,279,0,0,-8.5,42,875,0,279,0.302,85.29,74.27,0.91,0.8,797,0.4,170,1.4
+308,2023,1,7,10,0,-5,1.32,0.011,0.63,46,926,350,0,0,-6,46,926,0,350,0.301,92.89,70.82,0.91,0.8,797,0.4,175,1.8
+309,2023,1,7,10,30,-3.9,1.32,0.011,0.63,49,958,410,0,0,-6,49,958,0,410,0.301,85.51,67.89,0.92,0.8,797,0.4,183,2
+310,2023,1,7,11,0,-2.9,1.25,0.012,0.63,54,978,458,0,0,-4.4,54,978,0,458,0.3,89.39,65.58,0.92,0.8,796,0.4,191,2.2
+311,2023,1,7,11,30,-2.2,1.25,0.012,0.63,55,992,491,0,0,-4.4,55,992,0,491,0.3,84.87,63.93,0.92,0.8,796,0.4,199,2.4
+312,2023,1,7,12,0,-1.5,1.24,0.012,0.63,57,999,510,0,7,-3.6,165,660,0,464,0.299,85.79,63.03,0.93,0.8,796,0.4,207,2.7
+313,2023,1,7,12,30,-1.3,1.24,0.012,0.63,56,1000,512,0,0,-3.6,105,846,0,491,0.3,84.54,62.88,0.92,0.8,796,0.4,213,2.8
+314,2023,1,7,13,0,-1.1,1.23,0.012,0.63,56,995,500,0,0,-3.4,56,995,0,500,0.3,84.61,63.51,0.92,0.8,795,0.4,219,2.9
+315,2023,1,7,13,30,-1.1,1.23,0.012,0.63,54,984,472,0,0,-3.4,61,964,18,470,0.3,84.61,64.88,0.92,0.8,795,0.4,221,2.9
+316,2023,1,7,14,0,-1.1,1.23,0.012,0.63,52,966,430,0,0,-3.4,82,859,14,418,0.3,84.3,66.96,0.92,0.8,795,0.4,224,2.8
+317,2023,1,7,14,30,-1.4,1.23,0.012,0.63,48,938,374,0,7,-3.4,134,599,14,342,0.3,86.17,69.67,0.92,0.8,795,0.4,225,2.4
+318,2023,1,7,15,0,-1.8,1.22,0.012,0.63,44,896,307,0,0,-3.5,56,841,14,303,0.299,88.35,72.93,0.92,0.8,795,0.4,225,1.9
+319,2023,1,7,15,30,-3.2,1.22,0.012,0.63,39,833,231,0,0,-3.5,39,833,0,231,0.299,98,76.68,0.92,0.8,795,0.4,224,1.5
+320,2023,1,7,16,0,-4.5,1.21,0.013,0.63,32,732,149,0,0,-5.9,32,732,0,149,0.298,89.95,80.84,0.92,0.8,795,0.4,222,1.2
+321,2023,1,7,16,30,-5.7,1.21,0.013,0.63,23,556,69,0,0,-5.9,23,556,0,69,0.298,98.5,85.3,0.92,0.8,795,0.4,218,1.3
+322,2023,1,7,17,0,-6.8,1.19,0.014,0.63,8,113,8,0,0,-7.8,8,113,0,8,0.297,92.42,89.83,0.92,0.8,795,0.4,214,1.3
+323,2023,1,7,17,30,-7.4,1.19,0.014,0.63,0,0,0,0,7,-7.8,0,0,0,0,0.297,96.79,95.33,0.92,0.8,795,0.4,209,1.4
+324,2023,1,7,18,0,-8,1.17,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.297,96.68,100.58,0.93,0.8,795,0.4,204,1.4
+325,2023,1,7,18,30,-8.6,1.17,0.015,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.296,100,105.99,0.93,0.8,795,0.4,203,1.4
+326,2023,1,7,19,0,-9.2,1.15,0.016,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.296,100,111.53,0.93,0.8,795,0.4,202,1.5
+327,2023,1,7,19,30,-9.8,1.15,0.016,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.295,100,117.15,0.93,0.8,795,0.4,201,1.5
+328,2023,1,7,20,0,-10.3,1.13,0.016,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.295,100,122.82,0.93,0.8,795,0.4,200,1.5
+329,2023,1,7,20,30,-10.7,1.13,0.016,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.295,100,128.52,0.93,0.8,795,0.4,197,1.6
+330,2023,1,7,21,0,-11.1,1.11,0.018,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.294,100,134.19,0.93,0.8,795,0.4,193,1.6
+331,2023,1,7,21,30,-11.2,1.11,0.018,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.294,100,139.78,0.93,0.8,795,0.4,190,1.8
+332,2023,1,7,22,0,-11.2,1.11,0.02,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.294,100,145.22,0.93,0.8,795,0.4,187,1.9
+333,2023,1,7,22,30,-11.1,1.11,0.02,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.293,100,150.37,0.93,0.8,795,0.4,186,1.9
+334,2023,1,7,23,0,-10.9,1.12,0.022,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.291,98.58,155.03,0.94,0.8,795,0.4,185,1.9
+335,2023,1,7,23,30,-10.7,1.12,0.022,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.29,97.03,158.82,0.94,0.8,795,0.4,188,1.9
+336,2023,1,8,0,0,-10.5,1.14,0.024,0.63,0,0,0,0,7,-11,0,0,0,0,0.288,95.95,161.21,0.94,0.8,794,0.4,190,1.8
+337,2023,1,8,0,30,-10.3,1.14,0.024,0.63,0,0,0,0,7,-11,0,0,0,0,0.286,94.44,161.62,0.94,0.8,794,0.5,192,1.8
+338,2023,1,8,1,0,-10.1,1.14,0.027,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.285,94.54,159.92,0.95,0.8,794,0.5,194,1.8
+339,2023,1,8,1,30,-9.7,1.14,0.027,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.284,91.6,156.58,0.95,0.8,794,0.5,195,1.8
+340,2023,1,8,2,0,-9.3,1.15,0.03,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.283,92.43,152.19,0.95,0.8,794,0.6,195,1.7
+341,2023,1,8,2,30,-9,1.15,0.03,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.283,90.28,147.2,0.95,0.8,794,0.6,194,1.7
+342,2023,1,8,3,0,-8.7,1.17,0.03,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.283,91.14,141.85,0.95,0.8,794,0.6,194,1.8
+343,2023,1,8,3,30,-8.7,1.17,0.03,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.282,91.14,136.3,0.95,0.8,794,0.6,195,1.8
+344,2023,1,8,4,0,-8.7,1.2,0.028,0.63,0,0,0,0,6,-10.1,0,0,0,0,0.282,89.84,130.65,0.94,0.8,793,0.7,196,1.8
+345,2023,1,8,4,30,-8.9,1.2,0.028,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.281,91.26,124.95,0.94,0.8,793,0.6,198,1.8
+346,2023,1,8,5,0,-9.2,1.21,0.027,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.281,88.9,119.26,0.94,0.8,793,0.6,200,1.9
+347,2023,1,8,5,30,-9.3,1.21,0.027,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.281,89.6,113.61,0.94,0.8,793,0.6,201,1.9
+348,2023,1,8,6,0,-9.5,1.23,0.025,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.281,86.79,108.04,0.94,0.8,793,0.6,203,1.9
+349,2023,1,8,6,30,-9.5,1.23,0.025,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.282,86.79,102.57,0.94,0.8,793,0.6,203,1.9
+350,2023,1,8,7,0,-9.6,1.26,0.022,0.63,0,0,0,0,6,-11.8,0,0,0,0,0.282,84.16,97.25,0.94,0.8,793,0.6,204,2
+351,2023,1,8,7,30,-9.1,1.26,0.022,0.63,0,0,0,2,6,-11.8,0,0,29,0,0.282,80.92,92.1,0.93,0.8,793,0.6,204,2.1
+352,2023,1,8,8,0,-8.7,1.29,0.02,0.63,21,381,41,7,6,-11.5,16,0,100,16,0.282,80.09,86.98,0.93,0.8,792,0.6,205,2.2
+353,2023,1,8,8,30,-7.2,1.29,0.02,0.63,32,644,117,4,6,-11.5,37,0,57,37,0.282,71.39,82.43,0.93,0.8,793,0.6,208,2.3
+354,2023,1,8,9,0,-5.7,1.32,0.019,0.63,41,769,199,0,6,-9,51,0,0,51,0.282,77.8,78.14,0.93,0.8,793,0.6,212,2.5
+355,2023,1,8,9,30,-4.5,1.32,0.019,0.63,47,844,277,0,6,-9,87,3,0,88,0.282,71.05,74.22,0.93,0.8,793,0.6,217,2.9
+356,2023,1,8,10,0,-3.2,1.32,0.02,0.63,54,893,348,0,7,-7,160,206,0,228,0.283,75.13,70.75,0.93,0.8,793,0.6,222,3.4
+357,2023,1,8,10,30,-2.4,1.32,0.02,0.63,58,926,408,0,7,-7,200,383,7,345,0.283,70.71,67.81,0.93,0.8,792,0.6,224,3.9
+358,2023,1,8,11,0,-1.7,1.32,0.021,0.63,62,948,455,0,7,-5.4,139,667,14,416,0.283,75.6,65.48,0.93,0.8,792,0.6,226,4.4
+359,2023,1,8,11,30,-1.3,1.32,0.021,0.63,64,961,488,0,7,-5.4,150,695,7,457,0.282,73.41,63.82,0.93,0.8,792,0.6,226,4.7
+360,2023,1,8,12,0,-0.9,1.31,0.023,0.63,65,967,506,0,7,-4.7,139,729,7,471,0.281,75.34,62.9,0.93,0.8,792,0.6,225,4.9
+361,2023,1,8,12,30,-0.8,1.31,0.023,0.63,67,968,510,0,7,-4.7,209,515,4,445,0.281,74.69,62.75,0.93,0.8,791,0.6,224,4.9
+362,2023,1,8,13,0,-0.6,1.32,0.023,0.63,65,963,497,0,7,-4.5,105,830,14,477,0.281,75.19,63.36,0.93,0.8,791,0.6,222,4.9
+363,2023,1,8,13,30,-0.6,1.32,0.023,0.63,63,953,470,0,7,-4.5,86,849,18,448,0.282,75.19,64.73,0.93,0.8,791,0.6,220,4.7
+364,2023,1,8,14,0,-0.5,1.35,0.021,0.63,60,935,428,0,7,-4.2,133,660,21,393,0.282,76.12,66.8,0.93,0.8,791,0.6,218,4.4
+365,2023,1,8,14,30,-0.8,1.35,0.021,0.63,56,906,373,0,7,-4.2,159,113,4,199,0.284,77.8,69.5,0.93,0.8,791,0.6,216,3.7
+366,2023,1,8,15,0,-1,1.35,0.022,0.63,51,862,306,0,0,-3.9,92,559,0,258,0.287,80.95,72.77,0.93,0.8,791,0.6,214,3
+367,2023,1,8,15,30,-2.5,1.35,0.022,0.63,45,794,230,0,0,-3.9,51,764,14,229,0.289,90.39,76.52,0.93,0.8,791,0.6,213,2.4
+368,2023,1,8,16,0,-3.9,1.32,0.024,0.63,38,687,149,2,7,-5.9,72,160,36,98,0.292,85.73,80.67,0.94,0.8,791,0.6,212,1.9
+369,2023,1,8,16,30,-5.3,1.32,0.024,0.63,26,505,69,7,7,-5.9,25,0,100,25,0.295,95.27,85.14,0.94,0.8,791,0.6,213,1.9
+370,2023,1,8,17,0,-6.8,1.26,0.025,0.63,10,133,11,4,7,-8.8,6,0,57,6,0.298,85.55,89.69,0.94,0.8,791,0.6,215,1.9
+371,2023,1,8,17,30,-7,1.26,0.025,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.3,86.88,95.16,0.95,0.8,791,0.7,215,2.1
+372,2023,1,8,18,0,-7.2,1.21,0.024,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.302,85.65,100.42,0.95,0.8,792,0.7,216,2.2
+373,2023,1,8,18,30,-6.8,1.21,0.024,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.303,83.05,105.83,0.95,0.8,792,0.7,215,2.2
+374,2023,1,8,19,0,-6.4,1.19,0.023,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.303,86.21,111.37,0.95,0.8,792,0.8,215,2.3
+375,2023,1,8,19,30,-6.2,1.19,0.023,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.303,84.91,116.99,0.95,0.8,792,0.7,214,2.3
+376,2023,1,8,20,0,-6,1.2,0.022,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.303,88.17,122.67,0.94,0.8,792,0.7,214,2.3
+377,2023,1,8,20,30,-6.3,1.2,0.022,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.302,90.22,128.36,0.94,0.8,792,0.7,213,2.2
+378,2023,1,8,21,0,-6.5,1.23,0.019,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.3,89.98,134.03,0.93,0.8,793,0.6,212,2.1
+379,2023,1,8,21,30,-7.2,1.23,0.019,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.301,94.96,139.62,0.93,0.8,793,0.6,212,2
+380,2023,1,8,22,0,-7.8,1.26,0.016,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.301,92.63,145.06,0.92,0.8,793,0.5,212,1.9
+381,2023,1,8,22,30,-8.5,1.26,0.016,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.301,97.81,150.21,0.92,0.8,793,0.5,211,1.9
+382,2023,1,8,23,0,-9.2,1.27,0.014,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.302,95.39,154.86,0.91,0.8,793,0.5,210,1.9
+383,2023,1,8,23,30,-9.7,1.27,0.014,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.302,99.21,158.66,0.91,0.8,793,0.4,208,1.9
+384,2023,1,9,0,0,-10.2,1.27,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.301,97.4,161.06,0.91,0.8,793,0.4,206,1.8
+385,2023,1,9,0,30,-10.6,1.27,0.014,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.3,100,161.49,0.91,0.8,792,0.4,205,1.8
+386,2023,1,9,1,0,-10.9,1.28,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.3,99.62,159.83,0.91,0.8,792,0.4,203,1.8
+387,2023,1,9,1,30,-11,1.28,0.014,0.63,0,0,0,0,0,-11,0,0,0,0,0.299,100,156.52,0.91,0.8,792,0.4,200,1.7
+388,2023,1,9,2,0,-11.2,1.29,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.297,100,152.16,0.91,0.8,792,0.4,197,1.7
+389,2023,1,9,2,30,-11.1,1.29,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.296,99.55,147.18,0.91,0.8,792,0.4,194,1.6
+390,2023,1,9,3,0,-11.1,1.3,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.294,99.57,141.84,0.91,0.8,792,0.5,192,1.6
+391,2023,1,9,3,30,-11,1.3,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.292,98.66,136.3,0.92,0.8,791,0.5,193,1.5
+392,2023,1,9,4,0,-11,1.32,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.289,97.97,130.65,0.92,0.8,791,0.5,193,1.5
+393,2023,1,9,4,30,-10.8,1.32,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.287,96.42,124.95,0.92,0.8,791,0.5,193,1.5
+394,2023,1,9,5,0,-10.7,1.33,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.285,95.46,119.26,0.92,0.8,791,0.6,194,1.4
+395,2023,1,9,5,30,-10.6,1.33,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.285,94.7,113.61,0.92,0.8,791,0.6,191,1.5
+396,2023,1,9,6,0,-10.6,1.34,0.015,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.284,94.26,108.03,0.92,0.8,791,0.6,189,1.6
+397,2023,1,9,6,30,-10.5,1.34,0.015,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.284,93.52,102.56,0.92,0.8,791,0.6,190,1.6
+398,2023,1,9,7,0,-10.4,1.32,0.017,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.284,91.92,97.23,0.93,0.8,791,0.6,192,1.7
+399,2023,1,9,7,30,-9.5,1.32,0.017,0.63,0,0,0,2,7,-11.5,0,0,29,0,0.284,85.62,92.08,0.93,0.8,791,0.6,193,2
+400,2023,1,9,8,0,-8.6,1.3,0.02,0.63,21,380,41,7,7,-10.5,23,1,100,23,0.284,85.81,86.95,0.93,0.8,791,0.6,194,2.2
+401,2023,1,9,8,30,-7,1.3,0.02,0.63,33,635,117,3,7,-10.5,71,11,46,72,0.285,75.81,82.39,0.94,0.8,791,0.7,194,2.4
+402,2023,1,9,9,0,-5.4,1.3,0.021,0.63,42,755,198,0,7,-7.9,128,39,0,136,0.285,82.3,78.08,0.94,0.8,791,0.7,194,2.6
+403,2023,1,9,9,30,-4,1.3,0.021,0.63,50,829,276,0,7,-7.9,172,149,0,213,0.285,74.05,74.15,0.94,0.8,791,0.8,197,3
+404,2023,1,9,10,0,-2.6,1.27,0.024,0.63,56,873,345,0,7,-5.6,167,90,0,197,0.285,79.97,70.67,0.95,0.8,791,0.8,201,3.5
+405,2023,1,9,10,30,-2,1.27,0.024,0.63,60,908,404,0,6,-5.6,142,3,0,143,0.285,76.51,67.72,0.95,0.8,791,0.8,205,3.6
+406,2023,1,9,11,0,-1.4,1.25,0.022,0.63,62,930,450,0,6,-4.1,148,2,0,149,0.285,81.74,65.37,0.94,0.8,791,0.9,209,3.7
+407,2023,1,9,11,30,-1.1,1.25,0.022,0.63,64,944,482,0,6,-4.1,177,5,0,179,0.285,79.86,63.7,0.95,0.8,790,0.9,208,4
+408,2023,1,9,12,0,-0.9,1.24,0.021,0.63,65,952,501,0,6,-3.4,238,26,0,250,0.285,82.89,62.77,0.95,0.8,790,0.9,207,4.2
+409,2023,1,9,12,30,-0.7,1.24,0.021,0.63,65,951,503,0,6,-3.5,197,6,0,200,0.286,81.59,62.6,0.95,0.8,789,0.9,207,4.5
+410,2023,1,9,13,0,-0.5,1.21,0.023,0.63,66,944,491,0,6,-2.9,172,3,0,173,0.286,83.76,63.21,0.95,0.8,789,1,207,4.9
+411,2023,1,9,13,30,-0.3,1.21,0.023,0.63,64,931,464,0,6,-2.9,160,3,0,161,0.287,82.55,64.57,0.95,0.8,789,1,206,5
+412,2023,1,9,14,0,-0.1,1.2,0.024,0.63,62,911,423,0,6,-2.4,190,23,0,199,0.287,84.38,66.63,0.95,0.8,789,1,206,5.1
+413,2023,1,9,14,30,-0.1,1.2,0.024,0.63,57,883,369,0,7,-2.4,209,38,0,222,0.288,84.27,69.33,0.95,0.8,788,0.9,204,4.8
+414,2023,1,9,15,0,-0.1,1.2,0.023,0.63,52,841,303,0,7,-2.2,168,33,0,178,0.288,85.68,72.6,0.95,0.8,788,0.9,203,4.5
+415,2023,1,9,15,30,-0.6,1.2,0.023,0.63,46,777,229,0,7,-2.2,99,23,0,104,0.287,88.85,76.35,0.95,0.8,788,0.9,203,4.2
+416,2023,1,9,16,0,-1.1,1.21,0.022,0.63,37,675,148,2,6,-2.7,48,3,29,48,0.286,88.66,80.51,0.95,0.8,788,0.9,204,3.9
+417,2023,1,9,16,30,-1.7,1.21,0.022,0.63,26,500,70,7,7,-2.7,22,0,100,22,0.287,92.65,84.98,0.95,0.8,788,0.9,206,3.8
+418,2023,1,9,17,0,-2.3,1.21,0.022,0.63,10,136,11,4,6,-3.9,4,0,57,4,0.287,88.75,89.55,0.95,0.68,788,0.9,207,3.7
+419,2023,1,9,17,30,-2.6,1.21,0.022,0.63,0,0,0,0,6,-3.9,0,0,0,0,0.288,90.74,95,0.95,0.68,788,1,207,3.9
+420,2023,1,9,18,0,-2.9,1.21,0.021,0.63,0,0,0,0,6,-4.6,0,0,0,0,0.288,88.18,100.26,0.95,0.68,788,1,208,4.1
+421,2023,1,9,18,30,-3,1.21,0.021,0.63,0,0,0,0,6,-4.6,0,0,0,0,0.289,88.83,105.67,0.95,0.68,788,1,208,4.1
+422,2023,1,9,19,0,-3.2,1.19,0.022,0.63,0,0,0,0,6,-4.8,0,0,0,0,0.29,88.6,111.21,0.95,0.68,788,1,208,4.2
+423,2023,1,9,19,30,-3.1,1.19,0.022,0.63,0,0,0,0,6,-4.8,0,0,0,0,0.291,87.95,116.83,0.95,0.68,788,1,208,4.3
+424,2023,1,9,20,0,-3.1,1.16,0.023,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.293,90.27,122.51,0.95,0.68,788,1.1,208,4.4
+425,2023,1,9,20,30,-3,1.16,0.023,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.294,89.6,128.2,0.96,0.68,788,1.1,207,4.4
+426,2023,1,9,21,0,-3,1.12,0.024,0.63,0,0,0,0,7,-3.8,0,0,0,0,0.295,93.88,133.87,0.96,0.68,788,1.1,205,4.3
+427,2023,1,9,21,30,-3,1.12,0.024,0.63,0,0,0,0,7,-3.8,0,0,0,0,0.296,93.88,139.46,0.96,0.68,788,1.1,204,4.1
+428,2023,1,9,22,0,-3.1,1.09,0.023,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.297,97.04,144.89,0.96,0.68,788,1.1,203,3.8
+429,2023,1,9,22,30,-3.1,1.09,0.023,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.298,96.92,150.04,0.96,0.68,787,1.1,200,3.7
+430,2023,1,9,23,0,-3.1,1.1,0.024,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.299,97.54,154.69,0.96,0.68,787,1.1,197,3.6
+431,2023,1,9,23,30,-3.1,1.1,0.024,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.299,97.54,158.49,0.96,0.68,787,1.1,195,3.6
+432,2023,1,10,0,0,-3.1,1.11,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.299,97.59,160.9,0.96,0.68,786,1.1,192,3.7
+433,2023,1,10,0,30,-3.2,1.11,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.298,98.32,161.36,0.96,0.68,786,1.1,192,3.8
+434,2023,1,10,1,0,-3.2,1.09,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.298,98.23,159.73,0.96,0.68,786,1.1,191,4
+435,2023,1,10,1,30,-3.1,1.09,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.298,97.5,156.46,0.96,0.68,786,1.1,193,4.1
+436,2023,1,10,2,0,-3,1.11,0.029,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.298,97.12,152.12,0.96,0.68,786,1.1,194,4.2
+437,2023,1,10,2,30,-3,1.11,0.029,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.298,97.12,147.15,0.96,0.68,786,1.1,194,4.1
+438,2023,1,10,3,0,-3,1.12,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.299,96.83,141.82,0.96,0.68,785,1.1,194,4.1
+439,2023,1,10,3,30,-3,1.12,0.025,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.299,96.83,136.29,0.96,0.68,785,1.1,193,4
+440,2023,1,10,4,0,-3,1.09,0.021,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.299,95.98,130.64,0.96,0.68,785,1.1,192,4
+441,2023,1,10,4,30,-2.9,1.09,0.021,0.63,0,0,0,0,6,-3.6,0,0,0,0,0.3,95.15,124.95,0.96,0.68,784,1.1,191,4.2
+442,2023,1,10,5,0,-2.9,1.06,0.021,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.3,95.8,119.25,0.96,0.68,784,1.1,190,4.4
+443,2023,1,10,5,30,-2.8,1.06,0.021,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.301,95.09,113.6,0.96,0.68,784,1.1,191,4.6
+444,2023,1,10,6,0,-2.7,1.03,0.024,0.63,0,0,0,0,6,-3.3,0,0,0,0,0.302,95.89,108.02,0.96,0.68,784,1.1,192,4.8
+445,2023,1,10,6,30,-2.7,1.03,0.024,0.63,0,0,0,0,6,-3.3,0,0,0,0,0.304,95.89,102.54,0.96,0.68,784,1,196,5.2
+446,2023,1,10,7,0,-2.6,1.03,0.028,0.63,0,0,0,0,6,-3.1,0,0,0,0,0.305,96.56,97.2,0.96,0.68,785,1,200,5.5
+447,2023,1,10,7,30,-2.4,1.03,0.028,0.63,0,0,0,2,8,-3.1,0,0,29,0,0.307,95.14,92.05,0.96,0.68,785,0.9,201,5.6
+448,2023,1,10,8,0,-2.3,1.07,0.029,0.63,21,335,39,7,7,-2.8,20,0,100,20,0.31,96.01,86.92,0.96,0.68,785,0.8,202,5.6
+449,2023,1,10,8,30,-1.8,1.07,0.029,0.63,34,606,115,3,7,-2.8,57,5,43,58,0.31,92.54,82.34,0.95,0.68,785,0.8,204,6
+450,2023,1,10,9,0,-1.2,1.11,0.023,0.63,43,748,198,0,7,-2.1,102,15,0,105,0.311,93.82,78.02,0.95,0.68,785,0.7,207,6.3
+451,2023,1,10,9,30,-0.7,1.11,0.023,0.63,48,832,276,0,7,-2,125,43,0,137,0.311,90.57,74.08,0.94,0.68,786,0.7,209,6.3
+452,2023,1,10,10,0,-0.1,1.1,0.019,0.63,52,891,348,0,4,-1.2,116,13,0,120,0.311,92.32,70.58,0.94,0.68,786,0.6,211,6.3
+453,2023,1,10,10,30,0.2,1.1,0.019,0.63,56,928,409,0,4,-1.2,157,386,0,304,0.311,90.33,67.62,0.94,0.68,786,0.6,211,6.1
+454,2023,1,10,11,0,0.5,1.13,0.019,0.63,59,952,457,0,0,-0.9,107,787,0,436,0.311,90.51,65.26,0.94,0.68,786,0.6,211,5.9
+455,2023,1,10,11,30,0.8,1.13,0.019,0.63,60,967,490,0,0,-0.9,60,967,0,490,0.311,88.58,63.58,0.94,0.68,786,0.6,211,5.7
+456,2023,1,10,12,0,1.1,1.17,0.018,0.63,61,973,508,0,0,-0.7,171,619,7,456,0.31,87.68,62.63,0.94,0.68,785,0.6,211,5.6
+457,2023,1,10,12,30,1.3,1.17,0.018,0.63,60,973,510,0,0,-0.7,124,771,7,481,0.31,86.43,62.45,0.93,0.68,785,0.7,210,5.4
+458,2023,1,10,13,0,1.5,1.2,0.017,0.63,59,967,497,0,0,-0.6,62,955,11,495,0.31,85.7,63.05,0.93,0.68,785,0.7,210,5.2
+459,2023,1,10,13,30,1.6,1.2,0.017,0.63,57,955,470,0,7,-0.6,105,784,43,444,0.31,85.09,64.4,0.93,0.68,785,0.7,209,4.8
+460,2023,1,10,14,0,1.6,1.22,0.017,0.63,55,932,427,0,7,-0.6,154,589,25,389,0.311,85.35,66.46,0.93,0.68,785,0.8,209,4.5
+461,2023,1,10,14,30,1.5,1.22,0.017,0.63,53,899,373,0,7,-0.6,133,529,11,321,0.311,85.85,69.16,0.93,0.68,784,0.8,207,4
+462,2023,1,10,15,0,1.4,1.22,0.021,0.63,50,851,307,0,7,-0.6,121,337,4,223,0.312,86.82,72.43,0.93,0.68,784,0.9,206,3.5
+463,2023,1,10,15,30,0.8,1.22,0.021,0.63,45,780,231,0,7,-0.6,92,489,0,209,0.313,90.64,76.18,0.94,0.68,784,0.9,202,3.1
+464,2023,1,10,16,0,0.2,1.2,0.026,0.63,37,670,150,2,7,-0.9,95,111,29,114,0.313,92.18,80.33,0.94,0.68,784,0.9,199,2.7
+465,2023,1,10,16,30,0,1.2,0.026,0.63,28,491,72,7,7,-0.9,42,4,100,42,0.315,93.52,84.81,0.94,0.68,784,0.9,195,2.8
+466,2023,1,10,17,0,-0.3,1.21,0.029,0.63,10,130,11,4,6,-1.2,6,0,57,6,0.316,93.78,89.4,0.95,0.67,784,0.9,192,2.8
+467,2023,1,10,17,30,-0.1,1.21,0.029,0.63,0,0,0,0,6,-1.2,0,0,0,0,0.317,92.43,94.83,0.95,0.67,784,0.9,189,3
+468,2023,1,10,18,0,0,1.21,0.029,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.318,93.92,100.09,0.95,0.67,783,0.9,186,3.1
+469,2023,1,10,18,30,-0.1,1.21,0.029,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.321,94.6,105.51,0.95,0.67,783,0.9,183,3.1
+470,2023,1,10,19,0,-0.2,1.21,0.028,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.324,95.18,111.04,0.95,0.67,783,0.9,179,3.1
+471,2023,1,10,19,30,-0.4,1.21,0.028,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.327,96.45,116.67,0.94,0.67,782,0.9,175,3
+472,2023,1,10,20,0,-0.5,1.23,0.025,0.63,0,0,0,0,9,-1.1,0,0,0,0,0.331,95.37,122.34,0.94,0.67,782,0.9,172,3
+473,2023,1,10,20,30,-0.7,1.23,0.025,0.63,0,0,0,0,9,-1.2,0,0,0,0,0.334,96.65,128.04,0.94,0.67,781,0.9,171,3
+474,2023,1,10,21,0,-0.8,1.26,0.021,0.63,0,0,0,0,9,-1.5,0,0,0,0,0.336,94.81,133.71,0.93,0.67,781,0.8,170,3
+475,2023,1,10,21,30,-0.9,1.26,0.021,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.338,95.5,139.3,0.93,0.67,781,0.8,171,3.2
+476,2023,1,10,22,0,-1,1.31,0.018,0.63,0,0,0,0,6,-1.9,0,0,0,0,0.339,93.36,144.72,0.92,0.67,780,0.8,171,3.4
+477,2023,1,10,22,30,-0.8,1.31,0.018,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.34,92.01,149.87,0.93,0.67,780,0.8,170,3.8
+478,2023,1,10,23,0,-0.6,1.27,0.023,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.341,92.91,154.51,0.93,0.67,779,0.9,170,4.2
+479,2023,1,10,23,30,-0.4,1.27,0.023,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.342,91.57,158.31,0.94,0.67,779,0.9,169,4.7
+480,2023,1,11,0,0,-0.3,1.13,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.344,95.28,160.73,0.94,0.67,778,0.9,169,5.2
+481,2023,1,11,0,30,-0.2,1.13,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.345,94.59,161.21,0.94,0.67,778,0.9,177,5.9
+482,2023,1,11,1,0,-0.2,1.05,0.026,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.346,95.21,159.62,0.93,0.67,778,0.9,186,6.7
+483,2023,1,11,1,30,-0.4,1.05,0.026,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.349,96.6,156.38,0.94,0.67,778,0.8,196,6.8
+484,2023,1,11,2,0,-0.7,1.07,0.028,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.352,96.87,152.07,0.94,0.67,778,0.8,206,6.9
+485,2023,1,11,2,30,-1.1,1.07,0.028,0.63,0,0,0,0,9,-1.1,0,0,0,0,0.355,99.74,147.12,0.94,0.67,778,0.8,215,6.2
+486,2023,1,11,3,0,-1.6,1.12,0.024,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.359,98.82,141.8,0.94,0.67,779,0.7,224,5.4
+487,2023,1,11,3,30,-2.3,1.12,0.024,0.63,0,0,0,0,6,-2.3,0,0,0,0,0.362,100,136.27,0.93,0.67,779,0.7,236,4.8
+488,2023,1,11,4,0,-3,1.15,0.02,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.365,97.03,130.63,0.93,0.67,780,0.7,247,4.2
+489,2023,1,11,4,30,-3.6,1.15,0.02,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.367,100,124.93,0.93,0.67,780,0.6,263,3.9
+490,2023,1,11,5,0,-4.2,1.12,0.018,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.369,89.9,119.24,0.93,0.67,781,0.6,278,3.7
+491,2023,1,11,5,30,-4.5,1.12,0.018,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.371,92.07,113.58,0.92,0.67,782,0.6,284,3.5
+492,2023,1,11,6,0,-4.8,1.11,0.015,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.373,85.17,108,0.92,0.67,782,0.5,290,3.3
+493,2023,1,11,6,30,-5,1.11,0.015,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.375,86.57,102.52,0.92,0.67,783,0.5,288,3.1
+494,2023,1,11,7,0,-5.2,1.11,0.013,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.376,83.52,97.17,0.92,0.67,783,0.5,286,2.9
+495,2023,1,11,7,30,-4.9,1.11,0.013,0.63,0,0,0,2,7,-7.5,0,0,29,0,0.377,81.75,92.01,0.92,0.67,784,0.5,283,2.9
+496,2023,1,11,8,0,-4.7,1.14,0.011,0.63,19,416,42,7,7,-7.3,17,0,100,17,0.378,82.25,86.87,0.92,0.67,784,0.5,279,3
+497,2023,1,11,8,30,-3.7,1.14,0.011,0.63,27,675,118,3,7,-7.3,51,3,43,51,0.378,76.3,82.28,0.91,0.67,784,0.5,276,3.3
+498,2023,1,11,9,0,-2.8,1.16,0.011,0.63,34,796,200,0,7,-5.8,102,11,0,104,0.377,79.65,77.96,0.91,0.67,785,0.5,272,3.6
+499,2023,1,11,9,30,-2.1,1.16,0.011,0.63,39,869,279,0,7,-5.8,140,18,0,145,0.376,75.63,74,0.91,0.67,785,0.5,270,3.9
+500,2023,1,11,10,0,-1.4,1.16,0.011,0.63,44,916,350,0,7,-5,191,34,0,202,0.374,76.58,70.49,0.91,0.67,786,0.5,268,4.2
+501,2023,1,11,10,30,-1,1.16,0.011,0.63,49,945,410,0,7,-5,241,130,0,291,0.372,74.37,67.51,0.91,0.67,786,0.5,270,4.3
+502,2023,1,11,11,0,-0.6,1.18,0.012,0.63,52,964,457,0,7,-4.5,233,275,0,349,0.369,74.71,65.14,0.92,0.67,786,0.6,272,4.3
+503,2023,1,11,11,30,-0.4,1.18,0.012,0.63,52,979,490,0,8,-4.5,207,442,0,405,0.367,73.63,63.44,0.91,0.67,786,0.6,277,4.4
+504,2023,1,11,12,0,-0.2,1.2,0.011,0.63,53,987,509,0,4,-4.3,251,408,0,440,0.365,73.82,62.48,0.91,0.67,786,0.6,282,4.5
+505,2023,1,11,12,30,0,1.2,0.011,0.63,53,989,513,0,5,-4.3,193,605,14,474,0.363,72.85,62.3,0.91,0.67,787,0.6,288,4.6
+506,2023,1,11,13,0,0.1,1.19,0.011,0.63,52,985,501,0,5,-4.2,266,325,7,414,0.361,72.73,62.89,0.9,0.67,787,0.6,293,4.7
+507,2023,1,11,13,30,0.1,1.19,0.011,0.63,52,974,475,0,0,-4.2,145,674,0,438,0.358,72.73,64.23,0.91,0.67,787,0.6,295,4.7
+508,2023,1,11,14,0,0,1.19,0.012,0.63,50,955,434,0,0,-4.2,50,955,0,434,0.356,73.55,66.28,0.91,0.67,788,0.6,297,4.7
+509,2023,1,11,14,30,-0.2,1.19,0.012,0.63,47,928,380,0,0,-4.1,77,763,7,351,0.353,74.72,68.98,0.91,0.67,789,0.6,297,4.4
+510,2023,1,11,15,0,-0.5,1.19,0.012,0.63,43,888,314,0,5,-4.3,121,203,7,183,0.349,75.75,72.24,0.91,0.67,789,0.6,297,4
+511,2023,1,11,15,30,-1.6,1.19,0.012,0.63,38,829,239,0,5,-4.2,80,320,29,157,0.345,82.2,76,0.91,0.67,790,0.5,298,3.4
+512,2023,1,11,16,0,-2.6,1.2,0.012,0.63,32,736,158,2,8,-5.4,57,368,57,120,0.342,81.14,80.15,0.9,0.67,790,0.5,298,2.7
+513,2023,1,11,16,30,-3.9,1.2,0.012,0.63,24,579,78,6,5,-5.4,26,66,89,32,0.339,89.5,84.64,0.9,0.67,791,0.5,300,2.4
+514,2023,1,11,17,0,-5.2,1.21,0.011,0.63,11,176,13,5,5,-7.6,4,0,71,4,0.336,83.1,89.24,0.9,0.8,792,0.5,302,2.2
+515,2023,1,11,17,30,-5.8,1.21,0.011,0.63,0,0,0,0,4,-7.6,0,0,0,0,0.334,86.98,94.66,0.9,0.8,792,0.5,303,2
+516,2023,1,11,18,0,-6.5,1.21,0.011,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.331,83.37,99.92,0.9,0.8,792,0.5,304,1.9
+517,2023,1,11,18,30,-7,1.21,0.011,0.63,0,0,0,0,4,-8.8,0,0,0,0,0.329,86.74,105.34,0.9,0.8,793,0.5,300,1.8
+518,2023,1,11,19,0,-7.4,1.22,0.01,0.63,0,0,0,0,4,-9.6,0,0,0,0,0.326,84.45,110.88,0.9,0.8,793,0.5,296,1.7
+519,2023,1,11,19,30,-7.7,1.22,0.01,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.324,86.43,116.5,0.89,0.8,793,0.4,289,1.6
+520,2023,1,11,20,0,-8,1.23,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.322,86.13,122.18,0.89,0.8,794,0.4,283,1.5
+521,2023,1,11,20,30,-8.3,1.23,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.32,88.16,127.87,0.89,0.8,794,0.4,277,1.3
+522,2023,1,11,21,0,-8.6,1.24,0.01,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.318,88.58,133.54,0.89,0.8,794,0.4,271,1.2
+523,2023,1,11,21,30,-8.8,1.24,0.01,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.317,89.97,139.13,0.89,0.8,794,0.4,267,1
+524,2023,1,11,22,0,-9,1.25,0.01,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.315,91.06,144.55,0.89,0.8,795,0.4,263,0.9
+525,2023,1,11,22,30,-9.4,1.25,0.01,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.315,93.96,149.69,0.89,0.8,795,0.4,257,0.8
+526,2023,1,11,23,0,-9.8,1.25,0.01,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.314,94.35,154.33,0.9,0.8,795,0.3,252,0.8
+527,2023,1,11,23,30,-10.2,1.25,0.01,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.313,97.37,158.13,0.9,0.8,795,0.3,252,0.7
+528,2023,1,12,0,0,-10.6,1.26,0.01,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.312,97.57,160.55,0.9,0.8,796,0.3,253,0.7
+529,2023,1,12,0,30,-10.9,1.26,0.01,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.311,99.93,161.06,0.9,0.8,796,0.3,223,0.6
+530,2023,1,12,1,0,-11.2,1.26,0.01,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.31,99.72,159.51,0.91,0.8,796,0.3,194,0.5
+531,2023,1,12,1,30,-11.4,1.26,0.01,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.308,100,156.3,0.91,0.8,796,0.4,181,0.5
+532,2023,1,12,2,0,-11.7,1.26,0.01,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.307,100,152.01,0.91,0.8,797,0.4,169,0.4
+533,2023,1,12,2,30,-11.7,1.26,0.01,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.306,100,147.08,0.91,0.8,797,0.4,99,0.3
+534,2023,1,12,3,0,-11.8,1.25,0.01,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.304,100,141.77,0.91,0.8,797,0.4,29,0.3
+535,2023,1,12,3,30,-12,1.25,0.01,0.63,0,0,0,0,0,-12,0,0,0,0,0.303,100,136.25,0.91,0.8,798,0.4,35,0.4
+536,2023,1,12,4,0,-12.1,1.24,0.01,0.63,0,0,0,0,0,-12.1,0,0,0,0,0.302,100,130.61,0.91,0.8,798,0.4,41,0.5
+537,2023,1,12,4,30,-12.2,1.24,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.301,100,124.92,0.92,0.8,798,0.4,45,0.6
+538,2023,1,12,5,0,-12.2,1.22,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.3,99.77,119.22,0.92,0.8,798,0.4,48,0.6
+539,2023,1,12,5,30,-12.2,1.22,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.299,99.89,113.56,0.92,0.8,799,0.4,62,0.7
+540,2023,1,12,6,0,-12.2,1.2,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.299,97.88,107.97,0.93,0.8,799,0.4,75,0.8
+541,2023,1,12,6,30,-12.1,1.2,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.298,97.09,102.49,0.93,0.8,799,0.5,87,0.8
+542,2023,1,12,7,0,-12,1.19,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.298,95.72,97.14,0.93,0.8,799,0.5,99,0.9
+543,2023,1,12,7,30,-11.7,1.19,0.011,0.63,0,0,0,2,7,-12.5,0,0,29,0,0.297,93.44,91.96,0.93,0.8,799,0.5,119,0.8
+544,2023,1,12,8,0,-11.3,1.2,0.01,0.63,19,425,43,7,7,-12.5,23,1,100,23,0.297,91.1,86.81,0.93,0.8,799,0.5,140,0.8
+545,2023,1,12,8,30,-10.1,1.2,0.01,0.63,29,683,121,3,7,-12.5,80,52,43,87,0.297,82.81,82.22,0.92,0.8,799,0.5,162,0.9
+546,2023,1,12,9,0,-8.9,1.22,0.01,0.63,36,801,204,0,7,-10.7,122,228,0,170,0.297,86.55,77.88,0.92,0.8,800,0.5,185,1
+547,2023,1,12,9,30,-7.3,1.22,0.01,0.63,42,874,284,0,0,-10.7,79,697,7,272,0.297,76.44,73.91,0.92,0.8,800,0.5,194,1.1
+548,2023,1,12,10,0,-5.7,1.22,0.01,0.63,46,921,355,0,0,-8.1,57,883,7,353,0.298,83.02,70.39,0.92,0.8,800,0.5,203,1.3
+549,2023,1,12,10,30,-4.4,1.22,0.01,0.63,53,945,416,0,0,-8.1,53,945,0,416,0.297,75.24,67.39,0.93,0.8,800,0.6,206,1.7
+550,2023,1,12,11,0,-3,1.35,0.017,0.63,60,957,464,0,0,-6.5,60,957,0,464,0.297,76.73,65.01,0.94,0.8,800,0.6,209,2.1
+551,2023,1,12,11,30,-2.1,1.35,0.017,0.63,61,970,497,0,0,-6.5,61,970,0,497,0.297,71.78,63.3,0.94,0.8,800,0.6,215,2.5
+552,2023,1,12,12,0,-1.1,1.32,0.017,0.63,63,978,517,0,0,-6.5,63,978,0,517,0.297,66.87,62.33,0.94,0.8,799,0.6,220,3
+553,2023,1,12,12,30,-0.9,1.32,0.017,0.63,62,980,520,0,0,-6.5,62,980,0,520,0.296,65.9,62.13,0.94,0.8,799,0.6,222,3
+554,2023,1,12,13,0,-0.7,1.31,0.016,0.63,61,975,508,0,0,-6.4,61,975,0,508,0.295,65.28,62.71,0.94,0.8,799,0.6,224,3.1
+555,2023,1,12,13,30,-0.7,1.31,0.016,0.63,59,963,480,0,0,-6.4,59,963,0,480,0.294,65.28,64.05,0.94,0.8,799,0.7,223,2.9
+556,2023,1,12,14,0,-0.7,1.29,0.016,0.63,56,942,438,0,0,-6.3,56,942,0,438,0.293,66.01,66.1,0.94,0.8,799,0.7,222,2.7
+557,2023,1,12,14,30,-1,1.29,0.016,0.63,53,915,384,0,0,-6.3,53,915,0,384,0.292,67.47,68.8,0.94,0.8,799,0.7,220,2.3
+558,2023,1,12,15,0,-1.3,1.28,0.015,0.63,48,875,318,0,0,-5.7,65,808,21,314,0.291,71.79,72.06,0.94,0.8,799,0.7,218,2
+559,2023,1,12,15,30,-2.6,1.28,0.015,0.63,42,816,242,0,7,-5.7,88,550,21,223,0.29,79,75.81,0.94,0.8,799,0.7,215,1.6
+560,2023,1,12,16,0,-3.9,1.3,0.014,0.63,35,724,161,1,7,-7.4,86,277,14,134,0.289,76.38,79.97,0.94,0.8,799,0.7,211,1.2
+561,2023,1,12,16,30,-5,1.3,0.014,0.63,25,565,80,7,7,-7.4,45,6,100,46,0.288,83.08,84.46,0.93,0.8,800,0.7,209,1.3
+562,2023,1,12,17,0,-6.2,1.31,0.013,0.63,11,172,14,5,7,-10,8,1,71,8,0.287,74.26,89.07,0.93,0.8,800,0.8,207,1.3
+563,2023,1,12,17,30,-6.7,1.31,0.013,0.63,0,0,0,0,7,-10,0,0,0,0,0.287,77.15,94.48,0.93,0.8,800,0.8,206,1.4
+564,2023,1,12,18,0,-7.3,1.34,0.012,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.286,76.4,99.75,0.92,0.8,800,0.8,206,1.4
+565,2023,1,12,18,30,-7.7,1.34,0.012,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.285,78.8,105.17,0.92,0.8,800,0.8,203,1.4
+566,2023,1,12,19,0,-8.1,1.34,0.011,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.284,79.22,110.71,0.92,0.8,800,0.8,201,1.3
+567,2023,1,12,19,30,-8.4,1.34,0.011,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.283,81.09,116.33,0.92,0.8,800,0.8,196,1.3
+568,2023,1,12,20,0,-8.7,1.33,0.012,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.283,82.36,122.01,0.92,0.8,800,0.8,192,1.3
+569,2023,1,12,20,30,-8.8,1.33,0.012,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.283,83,127.7,0.93,0.8,800,0.8,189,1.2
+570,2023,1,12,21,0,-9,1.32,0.012,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.283,85.05,133.37,0.93,0.8,800,0.8,185,1.2
+571,2023,1,12,21,30,-9.1,1.32,0.012,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.283,85.72,138.96,0.93,0.8,800,0.8,186,1.2
+572,2023,1,12,22,0,-9.2,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.283,87.04,144.38,0.92,0.8,800,0.8,186,1.1
+573,2023,1,12,22,30,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.282,87.61,149.51,0.93,0.8,799,0.8,189,1.1
+574,2023,1,12,23,0,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.281,87.48,154.15,0.93,0.8,799,0.8,192,1
+575,2023,1,12,23,30,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.28,87.48,157.94,0.93,0.8,799,0.8,193,1
+576,2023,1,13,0,0,-9.3,1.29,0.014,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.279,86.81,160.37,0.93,0.8,799,0.8,194,0.9
+577,2023,1,13,0,30,-9.3,1.29,0.014,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.279,86.81,160.9,0.93,0.8,799,0.8,193,0.9
+578,2023,1,13,1,0,-9.2,1.3,0.013,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.278,85.08,159.38,0.93,0.8,799,0.8,192,0.9
+579,2023,1,13,1,30,-9.3,1.3,0.013,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.278,85.64,156.21,0.93,0.8,798,0.8,188,0.9
+580,2023,1,13,2,0,-9.3,1.31,0.013,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.277,83.99,151.95,0.93,0.8,798,0.8,184,0.9
+581,2023,1,13,2,30,-9.3,1.31,0.013,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.277,83.99,147.03,0.93,0.8,798,0.8,185,1
+582,2023,1,13,3,0,-9.4,1.34,0.012,0.63,0,0,0,0,6,-11.9,0,0,0,0,0.276,82.24,141.74,0.92,0.8,798,0.8,187,1
+583,2023,1,13,3,30,-9.5,1.34,0.012,0.63,0,0,0,0,6,-11.9,0,0,0,0,0.276,82.88,136.22,0.92,0.8,798,0.8,193,1
+584,2023,1,13,4,0,-9.6,1.35,0.012,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.275,80.82,130.58,0.93,0.8,798,0.8,199,1
+585,2023,1,13,4,30,-9.6,1.35,0.012,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.275,80.82,124.89,0.93,0.8,798,0.8,203,1.1
+586,2023,1,13,5,0,-9.7,1.35,0.013,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.275,79.47,119.2,0.93,0.8,798,0.8,206,1.1
+587,2023,1,13,5,30,-9.7,1.35,0.013,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.275,79.47,113.54,0.93,0.8,798,0.8,206,1.1
+588,2023,1,13,6,0,-9.8,1.33,0.014,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.276,78.67,107.94,0.93,0.8,798,0.8,205,1.1
+589,2023,1,13,6,30,-9.8,1.33,0.014,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.276,78.67,102.45,0.93,0.8,798,0.8,204,1.1
+590,2023,1,13,7,0,-9.9,1.31,0.014,0.63,0,0,0,0,7,-13,0,0,0,0,0.277,77.96,97.09,0.93,0.8,798,0.7,203,1.2
+591,2023,1,13,7,30,-9.1,1.31,0.014,0.63,0,0,0,2,7,-13,0,0,29,0,0.278,73.21,91.91,0.93,0.8,798,0.7,204,1.2
+592,2023,1,13,8,0,-8.3,1.32,0.014,0.63,20,402,43,7,7,-12.2,22,1,100,22,0.279,73.36,86.75,0.93,0.8,798,0.7,204,1.3
+593,2023,1,13,8,30,-6.7,1.32,0.014,0.63,31,659,121,3,7,-12.2,71,18,43,73,0.279,64.83,82.15,0.93,0.8,798,0.7,199,1.4
+594,2023,1,13,9,0,-5.1,1.33,0.013,0.63,38,780,203,0,7,-9.8,133,114,0,157,0.28,69.34,77.8,0.93,0.8,798,0.7,194,1.5
+595,2023,1,13,9,30,-3.6,1.33,0.013,0.63,44,854,282,0,7,-9.8,153,302,0,237,0.28,61.94,73.82,0.93,0.8,798,0.7,195,1.6
+596,2023,1,13,10,0,-2.2,1.34,0.013,0.63,49,903,354,0,7,-7.6,162,454,0,315,0.28,66.74,70.28,0.93,0.8,797,0.7,197,1.8
+597,2023,1,13,10,30,-1.1,1.34,0.013,0.63,52,936,414,0,7,-7.6,188,466,0,368,0.28,61.56,67.27,0.93,0.8,797,0.7,205,2.1
+598,2023,1,13,11,0,0,1.32,0.013,0.63,56,957,462,0,7,-5.5,116,786,39,450,0.28,66.71,64.87,0.93,0.8,797,0.7,213,2.3
+599,2023,1,13,11,30,0.4,1.32,0.013,0.63,57,971,496,0,7,-5.5,170,643,14,460,0.28,64.73,63.15,0.93,0.8,796,0.7,218,2.5
+600,2023,1,13,12,0,0.9,1.3,0.014,0.63,59,978,516,0,7,-4.3,270,353,0,435,0.28,68.28,62.17,0.93,0.8,796,0.7,222,2.6
+601,2023,1,13,12,30,1.1,1.3,0.014,0.63,59,980,520,0,7,-4.3,252,421,0,450,0.28,67.23,61.96,0.93,0.8,795,0.7,223,2.6
+602,2023,1,13,13,0,1.3,1.3,0.014,0.63,59,976,509,0,7,-3.8,189,594,21,463,0.28,68.82,62.53,0.93,0.8,795,0.7,224,2.7
+603,2023,1,13,13,30,1.3,1.3,0.014,0.63,57,965,482,0,7,-3.8,167,628,14,444,0.281,68.82,63.87,0.93,0.8,795,0.7,223,2.6
+604,2023,1,13,14,0,1.3,1.28,0.014,0.63,55,947,442,0,7,-3.5,130,710,36,420,0.282,70.12,65.91,0.93,0.8,794,0.7,223,2.6
+605,2023,1,13,14,30,1,1.28,0.014,0.63,51,923,388,0,7,-3.5,144,570,14,352,0.282,71.65,68.61,0.93,0.8,794,0.7,222,2.1
+606,2023,1,13,15,0,0.6,1.28,0.014,0.63,48,885,323,0,7,-2.9,181,266,0,264,0.283,77.23,71.87,0.93,0.8,794,0.7,222,1.7
+607,2023,1,13,15,30,-0.5,1.28,0.014,0.63,42,828,248,0,7,-2.9,153,176,0,197,0.283,83.63,75.62,0.93,0.8,794,0.6,221,1.4
+608,2023,1,13,16,0,-1.6,1.28,0.015,0.63,36,736,166,1,7,-4.2,110,42,14,117,0.283,82.24,79.79,0.93,0.8,794,0.6,221,1.1
+609,2023,1,13,16,30,-2.5,1.28,0.015,0.63,26,578,84,7,6,-4.2,47,4,100,47,0.284,87.77,84.28,0.93,0.8,793,0.6,219,1.2
+610,2023,1,13,17,0,-3.4,1.28,0.015,0.63,13,218,17,5,7,-6.2,9,0,71,9,0.285,80.85,88.91,0.93,0.73,793,0.6,216,1.2
+611,2023,1,13,17,30,-3.9,1.28,0.015,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.285,83.93,94.3,0.94,0.73,793,0.6,210,1.2
+612,2023,1,13,18,0,-4.3,1.28,0.016,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.285,82.85,99.57,0.94,0.73,793,0.6,204,1.2
+613,2023,1,13,18,30,-4.6,1.28,0.016,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.286,84.75,104.99,0.94,0.73,793,0.6,200,1.3
+614,2023,1,13,19,0,-4.9,1.28,0.017,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.286,85.68,110.53,0.94,0.73,793,0.6,195,1.4
+615,2023,1,13,19,30,-5.1,1.28,0.017,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.287,86.88,116.16,0.94,0.73,792,0.6,194,1.5
+616,2023,1,13,20,0,-5.4,1.28,0.018,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.289,87.69,121.84,0.94,0.73,792,0.6,192,1.7
+617,2023,1,13,20,30,-5.4,1.28,0.018,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.29,87.69,127.53,0.94,0.73,792,0.6,193,1.8
+618,2023,1,13,21,0,-5.4,1.29,0.018,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.291,87.26,133.2,0.94,0.73,792,0.6,193,1.9
+619,2023,1,13,21,30,-5.4,1.29,0.018,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.291,87.26,138.78,0.94,0.73,792,0.6,195,1.9
+620,2023,1,13,22,0,-5.4,1.3,0.017,0.63,0,0,0,0,6,-7.3,0,0,0,0,0.292,86.57,144.2,0.93,0.73,791,0.7,197,2
+621,2023,1,13,22,30,-5.5,1.3,0.017,0.63,0,0,0,0,6,-7.3,0,0,0,0,0.292,87.23,149.33,0.93,0.73,791,0.7,198,2
+622,2023,1,13,23,0,-5.6,1.31,0.018,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.292,86.48,153.96,0.93,0.73,791,0.7,199,2
+623,2023,1,13,23,30,-5.7,1.31,0.018,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.293,87.03,157.75,0.94,0.73,790,0.7,200,2.1
+624,2023,1,14,0,0,-5.8,1.29,0.02,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.294,86.67,160.18,0.94,0.73,790,0.7,200,2.1
+625,2023,1,14,0,30,-5.8,1.29,0.02,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.296,86.67,160.74,0.94,0.73,790,0.7,202,2.1
+626,2023,1,14,1,0,-5.7,1.28,0.022,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.298,86.45,159.25,0.94,0.73,789,0.7,203,2.2
+627,2023,1,14,1,30,-5.6,1.28,0.022,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.302,85.79,156.11,0.93,0.73,789,0.7,204,2.1
+628,2023,1,14,2,0,-5.4,1.31,0.021,0.63,0,0,0,0,6,-7.4,0,0,0,0,0.306,85.83,151.87,0.93,0.73,789,0.7,204,2.1
+629,2023,1,14,2,30,-5.6,1.31,0.021,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.309,87.14,146.98,0.93,0.73,789,0.7,203,2.1
+630,2023,1,14,3,0,-5.8,1.35,0.019,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.312,86.56,141.69,0.92,0.73,789,0.7,202,2.1
+631,2023,1,14,3,30,-6,1.35,0.019,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.315,87.89,136.18,0.92,0.73,789,0.6,201,2.1
+632,2023,1,14,4,0,-6.3,1.36,0.019,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.317,85.86,130.55,0.92,0.73,788,0.6,199,2.1
+633,2023,1,14,4,30,-6.5,1.36,0.019,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.319,87.19,124.86,0.92,0.73,788,0.6,199,2.1
+634,2023,1,14,5,0,-6.7,1.36,0.02,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.321,84.61,119.17,0.92,0.73,788,0.6,198,2.2
+635,2023,1,14,5,30,-6.7,1.36,0.02,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.323,84.61,113.5,0.92,0.73,788,0.6,198,2.1
+636,2023,1,14,6,0,-6.6,1.33,0.022,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.324,81.47,107.91,0.92,0.73,788,0.6,198,2.1
+637,2023,1,14,6,30,-6.4,1.33,0.022,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.323,80.23,102.41,0.92,0.73,788,0.6,198,2
+638,2023,1,14,7,0,-6.1,1.33,0.021,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.323,78.11,97.04,0.92,0.73,787,0.6,197,2
+639,2023,1,14,7,30,-5.2,1.33,0.021,0.63,1,10,1,2,7,-9.3,0,0,29,0,0.322,72.94,91.85,0.92,0.73,787,0.6,198,2
+640,2023,1,14,8,0,-4.2,1.33,0.021,0.63,22,404,45,6,7,-8.1,26,63,89,30,0.321,74.14,86.7,0.92,0.73,787,0.6,198,2
+641,2023,1,14,8,30,-2.7,1.33,0.021,0.63,33,655,123,0,0,-8.1,47,494,7,115,0.32,66.29,82.07,0.92,0.73,787,0.5,201,2.4
+642,2023,1,14,9,0,-1.2,1.33,0.021,0.63,42,777,207,0,0,-5.9,44,762,0,206,0.319,70.23,77.71,0.92,0.73,787,0.5,203,2.8
+643,2023,1,14,9,30,-0.3,1.33,0.021,0.63,48,852,287,0,7,-5.9,116,487,7,253,0.318,65.77,73.72,0.92,0.73,787,0.5,205,2.9
+644,2023,1,14,10,0,0.5,1.31,0.023,0.63,55,900,360,0,6,-4.4,193,61,0,214,0.318,69.55,70.17,0.92,0.73,786,0.5,207,3
+645,2023,1,14,10,30,0.9,1.31,0.023,0.63,60,930,421,0,7,-4.4,204,380,0,352,0.318,67.57,67.15,0.93,0.73,786,0.6,210,3.3
+646,2023,1,14,11,0,1.4,1.28,0.026,0.63,64,949,469,0,7,-3.8,180,575,0,425,0.318,68.12,64.73,0.93,0.73,785,0.6,212,3.6
+647,2023,1,14,11,30,1.6,1.28,0.026,0.63,67,959,502,0,7,-3.9,172,629,7,458,0.318,67.07,63,0.93,0.73,784,0.6,214,3.9
+648,2023,1,14,12,0,1.7,1.26,0.029,0.63,68,964,521,0,7,-3.5,228,487,7,457,0.317,68.6,62,0.93,0.73,784,0.6,216,4.2
+649,2023,1,14,12,30,1.7,1.26,0.029,0.63,69,966,526,0,7,-3.5,240,449,0,452,0.315,68.51,61.78,0.93,0.73,783,0.6,216,4.3
+650,2023,1,14,13,0,1.7,1.25,0.029,0.63,69,961,515,0,7,-3,302,212,0,400,0.313,70.79,62.35,0.94,0.73,783,0.6,216,4.3
+651,2023,1,14,13,30,1.6,1.25,0.029,0.63,66,949,487,0,7,-3,264,111,0,313,0.312,71.3,63.68,0.94,0.73,783,0.7,216,4.1
+652,2023,1,14,14,0,1.5,1.26,0.027,0.63,63,929,445,0,7,-2.6,253,106,0,297,0.311,74.06,65.72,0.93,0.73,783,0.7,215,3.8
+653,2023,1,14,14,30,1.2,1.26,0.027,0.63,59,900,390,0,7,-2.6,231,82,0,261,0.311,75.57,68.41,0.93,0.73,782,0.7,213,3.4
+654,2023,1,14,15,0,1,1.28,0.027,0.63,54,859,324,0,7,-2.4,189,147,0,235,0.311,77.85,71.67,0.93,0.73,782,0.7,211,3.1
+655,2023,1,14,15,30,0.1,1.28,0.027,0.63,48,800,249,0,7,-2.4,135,19,0,140,0.312,83.07,75.43,0.93,0.73,782,0.7,210,2.8
+656,2023,1,14,16,0,-0.7,1.31,0.025,0.63,39,707,167,1,7,-3.2,64,4,14,65,0.312,83.33,79.6,0.93,0.73,782,0.7,210,2.4
+657,2023,1,14,16,30,-1.6,1.31,0.025,0.63,29,546,85,7,7,-3.2,21,0,100,21,0.312,89,84.09,0.93,0.73,782,0.7,210,2.4
+658,2023,1,14,17,0,-2.6,1.3,0.025,0.63,14,200,18,5,4,-4.5,6,0,71,6,0.312,86.56,88.75,0.93,0.7,782,0.7,210,2.3
+659,2023,1,14,17,30,-2.9,1.3,0.025,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.311,88.51,94.12,0.93,0.7,782,0.7,210,2.3
+660,2023,1,14,18,0,-3.2,1.29,0.027,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.311,86.88,99.39,0.94,0.7,782,0.8,209,2.3
+661,2023,1,14,18,30,-3.5,1.29,0.027,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.31,88.85,104.82,0.94,0.7,782,0.8,209,2.4
+662,2023,1,14,19,0,-3.8,1.3,0.027,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.31,87.92,110.36,0.94,0.7,782,0.8,209,2.6
+663,2023,1,14,19,30,-4.1,1.3,0.027,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.31,89.91,115.99,0.94,0.7,782,0.8,208,2.5
+664,2023,1,14,20,0,-4.3,1.3,0.027,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.309,89.96,121.67,0.94,0.7,782,0.8,207,2.4
+665,2023,1,14,20,30,-4.5,1.3,0.027,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.31,91.32,127.36,0.94,0.7,782,0.8,203,2.3
+666,2023,1,14,21,0,-4.7,1.29,0.03,0.63,0,0,0,0,4,-5.7,0,0,0,0,0.311,92.7,133.03,0.94,0.7,781,0.8,200,2.2
+667,2023,1,14,21,30,-4.7,1.29,0.03,0.63,0,0,0,0,4,-5.7,0,0,0,0,0.312,92.7,138.61,0.95,0.7,781,0.9,195,2.2
+668,2023,1,14,22,0,-4.8,1.25,0.033,0.63,0,0,0,0,5,-5.5,0,0,0,0,0.314,95.16,144.02,0.95,0.7,781,0.9,191,2.2
+669,2023,1,14,22,30,-4.6,1.25,0.033,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.314,93.61,149.14,0.95,0.7,780,0.9,187,2.2
+670,2023,1,14,23,0,-4.3,1.22,0.037,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.315,96.24,153.76,0.96,0.7,780,0.9,183,2.3
+671,2023,1,14,23,30,-4.1,1.22,0.037,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.315,94.68,157.55,0.96,0.7,779,0.9,181,2.3
+672,2023,1,15,0,0,-3.8,1.23,0.04,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.315,97.67,159.99,0.96,0.7,779,0.9,180,2.3
+673,2023,1,15,0,30,-3.6,1.23,0.04,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.316,96.09,160.57,0.96,0.7,778,0.9,178,2.3
+674,2023,1,15,1,0,-3.5,1.23,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.316,98.42,159.11,0.96,0.7,778,0.9,177,2.3
+675,2023,1,15,1,30,-3.5,1.23,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.317,98.29,156,0.96,0.7,777,0.9,176,2.2
+676,2023,1,15,2,0,-3.5,1.23,0.045,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.318,98.95,151.8,0.96,0.7,777,0.9,176,2.2
+677,2023,1,15,2,30,-3.6,1.23,0.045,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,99.56,146.92,0.96,0.7,776,0.9,175,2.2
+678,2023,1,15,3,0,-3.7,1.22,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,99.66,141.64,0.96,0.7,776,0.9,175,2.2
+679,2023,1,15,3,30,-3.6,1.22,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,98.91,136.14,0.96,0.7,776,0.9,175,2.2
+680,2023,1,15,4,0,-3.5,1.22,0.035,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.32,98.67,130.51,0.95,0.7,775,0.9,175,2.3
+681,2023,1,15,4,30,-3.5,1.22,0.035,0.63,0,0,0,0,6,-3.7,0,0,0,0,0.321,98.67,124.83,0.95,0.7,775,0.9,175,2.2
+682,2023,1,15,5,0,-3.4,1.22,0.033,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.322,99.12,119.13,0.95,0.7,775,0.9,174,2.1
+683,2023,1,15,5,30,-3.6,1.22,0.033,0.63,0,0,0,0,6,-3.6,0,0,0,0,0.324,100,113.46,0.95,0.7,775,0.9,175,2.1
+684,2023,1,15,6,0,-3.9,1.24,0.033,0.63,0,0,0,0,6,-3.9,0,0,0,0,0.325,100,107.86,0.95,0.7,774,0.9,177,2
+685,2023,1,15,6,30,-4.1,1.24,0.033,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.325,100,102.36,0.95,0.7,774,0.8,178,2
+686,2023,1,15,7,0,-4.2,1.24,0.03,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.325,100,96.99,0.94,0.7,774,0.8,179,1.9
+687,2023,1,15,7,30,-3.6,1.24,0.03,0.63,3,31,2,2,9,-4.1,0,0,29,0,0.325,96.11,91.79,0.94,0.7,774,0.8,180,2.1
+688,2023,1,15,8,0,-3.1,1.25,0.031,0.63,23,380,45,7,9,-3.5,13,0,100,13,0.325,97.03,86.63,0.94,0.7,774,0.8,181,2.3
+689,2023,1,15,8,30,-2.3,1.25,0.031,0.63,36,604,120,3,9,-3.5,43,2,43,43,0.327,91.44,81.99,0.94,0.7,774,0.8,183,2.7
+690,2023,1,15,9,0,-1.5,1.24,0.034,0.63,45,730,202,0,9,-2.3,60,1,0,60,0.329,94.33,77.62,0.94,0.7,774,0.8,185,3.1
+691,2023,1,15,9,30,-0.9,1.24,0.034,0.63,53,810,282,0,7,-2.3,126,22,0,132,0.331,90.28,73.61,0.94,0.7,774,0.8,195,3.9
+692,2023,1,15,10,0,-0.3,1.24,0.033,0.63,59,863,353,0,7,-1.7,156,31,0,167,0.334,90,70.05,0.93,0.7,773,0.8,204,4.7
+693,2023,1,15,10,30,0,1.24,0.033,0.63,64,897,414,2,8,-1.7,97,253,43,196,0.336,88.07,67.01,0.93,0.7,773,0.8,210,5.1
+694,2023,1,15,11,0,0.3,1.23,0.036,0.63,69,919,463,0,7,-1.7,177,318,21,314,0.338,86.39,64.58,0.94,0.7,773,0.8,216,5.5
+695,2023,1,15,11,30,0.5,1.23,0.036,0.63,70,935,497,0,6,-1.7,191,10,0,196,0.34,85.05,62.84,0.94,0.7,772,0.8,217,5.6
+696,2023,1,15,12,0,0.6,1.22,0.035,0.63,71,944,517,0,7,-1.8,201,30,0,215,0.342,84.05,61.83,0.94,0.7,772,0.8,218,5.7
+697,2023,1,15,12,30,0.7,1.22,0.035,0.63,71,949,522,0,8,-1.8,153,12,0,159,0.344,83.45,61.6,0.94,0.7,772,0.8,218,5.7
+698,2023,1,15,13,0,0.8,1.21,0.032,0.63,69,948,512,0,8,-2,148,26,0,160,0.345,81.61,62.16,0.94,0.7,771,0.8,219,5.8
+699,2023,1,15,13,30,0.7,1.21,0.032,0.63,69,937,487,0,7,-2,257,78,0,292,0.347,82.3,63.48,0.94,0.7,772,0.7,220,5.6
+700,2023,1,15,14,0,0.6,1.2,0.034,0.63,66,917,446,0,7,-2.2,239,48,0,259,0.349,81.62,65.52,0.95,0.7,772,0.7,222,5.5
+701,2023,1,15,14,30,0.4,1.2,0.034,0.63,63,887,392,0,7,-2.2,220,73,0,247,0.35,82.81,68.21,0.95,0.7,772,0.7,223,5
+702,2023,1,15,15,0,0.2,1.21,0.038,0.63,59,841,326,0,7,-2.3,186,146,0,232,0.351,83.5,71.48,0.95,0.7,772,0.7,224,4.5
+703,2023,1,15,15,30,-0.7,1.21,0.038,0.63,52,776,250,0,7,-2.2,142,127,0,174,0.351,89.25,75.23,0.95,0.7,773,0.7,224,3.7
+704,2023,1,15,16,0,-1.5,1.22,0.04,0.63,44,675,168,0,0,-2.9,59,489,11,149,0.351,90.03,79.41,0.95,0.7,773,0.7,224,3
+705,2023,1,15,16,30,-2.4,1.22,0.04,0.63,32,508,86,6,7,-2.9,43,67,89,50,0.352,96.2,83.91,0.95,0.7,773,0.7,225,2.7
+706,2023,1,15,17,0,-3.2,1.22,0.041,0.63,15,175,19,5,7,-3.9,10,0,71,10,0.352,94.59,88.58,0.95,0.8,774,0.7,227,2.5
+707,2023,1,15,17,30,-3.4,1.22,0.041,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.352,96.02,93.94,0.95,0.8,774,0.7,228,2.5
+708,2023,1,15,18,0,-3.5,1.23,0.038,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.352,95.24,99.21,0.95,0.8,775,0.7,230,2.6
+709,2023,1,15,18,30,-3.7,1.23,0.038,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.351,96.68,104.64,0.94,0.8,775,0.7,234,2.6
+710,2023,1,15,19,0,-3.9,1.23,0.029,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.351,96.35,110.18,0.94,0.8,776,0.7,237,2.6
+711,2023,1,15,19,30,-4.2,1.23,0.029,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.35,98.54,115.81,0.93,0.8,776,0.7,236,2.5
+712,2023,1,15,20,0,-4.5,1.23,0.022,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.348,97.24,121.49,0.93,0.8,776,0.6,235,2.3
+713,2023,1,15,20,30,-5,1.23,0.022,0.63,0,0,0,0,7,-5,0,0,0,0,0.347,100,127.19,0.92,0.8,776,0.6,231,2.3
+714,2023,1,15,21,0,-5.4,1.23,0.017,0.63,0,0,0,0,8,-5.6,0,0,0,0,0.347,98.83,132.85,0.92,0.8,777,0.6,226,2.2
+715,2023,1,15,21,30,-5.9,1.23,0.017,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.346,100,138.43,0.92,0.8,777,0.6,221,2.2
+716,2023,1,15,22,0,-6.5,1.23,0.014,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.346,100,143.84,0.92,0.8,777,0.6,217,2.2
+717,2023,1,15,22,30,-6.9,1.23,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.346,100,148.95,0.92,0.8,777,0.6,213,2.3
+718,2023,1,15,23,0,-7.4,1.23,0.014,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.346,100,153.57,0.92,0.8,777,0.6,209,2.4
+719,2023,1,15,23,30,-7.7,1.23,0.014,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.346,100,157.35,0.92,0.8,777,0.5,207,2.4
+720,2023,1,16,0,0,-8.1,1.23,0.014,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.346,100,159.79,0.92,0.8,777,0.5,205,2.4
+721,2023,1,16,0,30,-8.4,1.23,0.014,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.344,100,160.38,0.92,0.8,778,0.5,203,2.3
+722,2023,1,16,1,0,-8.7,1.22,0.014,0.63,0,0,0,0,0,-8.7,0,0,0,0,0.343,100,158.96,0.92,0.8,778,0.5,200,2.3
+723,2023,1,16,1,30,-8.9,1.22,0.014,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.342,100,155.89,0.93,0.8,778,0.5,200,2.2
+724,2023,1,16,2,0,-9.2,1.21,0.014,0.63,0,0,0,0,0,-9.2,0,0,0,0,0.34,100,151.71,0.93,0.8,778,0.5,199,2.1
+725,2023,1,16,2,30,-9.4,1.21,0.014,0.63,0,0,0,0,0,-9.4,0,0,0,0,0.339,100,146.85,0.93,0.8,778,0.5,201,1.9
+726,2023,1,16,3,0,-9.5,1.2,0.014,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.338,99.58,141.59,0.93,0.8,778,0.5,202,1.8
+727,2023,1,16,3,30,-9.7,1.2,0.014,0.63,0,0,0,0,0,-9.7,0,0,0,0,0.338,100,136.09,0.93,0.8,778,0.5,204,1.7
+728,2023,1,16,4,0,-9.8,1.18,0.015,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.338,99.31,130.47,0.93,0.8,778,0.5,206,1.7
+729,2023,1,16,4,30,-9.9,1.18,0.015,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.338,100,124.78,0.93,0.8,778,0.5,206,1.5
+730,2023,1,16,5,0,-10,1.16,0.016,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.337,98.87,119.09,0.93,0.8,778,0.5,207,1.4
+731,2023,1,16,5,30,-10.1,1.16,0.016,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.336,99.78,113.42,0.94,0.8,779,0.5,206,1.2
+732,2023,1,16,6,0,-10.2,1.15,0.018,0.63,0,0,0,0,5,-10.4,0,0,0,0,0.336,98.78,107.81,0.94,0.8,779,0.6,204,1
+733,2023,1,16,6,30,-10.3,1.15,0.018,0.63,0,0,0,0,5,-10.4,0,0,0,0,0.334,99.57,102.3,0.94,0.8,779,0.6,206,1
+734,2023,1,16,7,0,-10.4,1.14,0.02,0.63,0,0,0,0,4,-10.6,0,0,0,0,0.333,98.48,96.93,0.94,0.8,779,0.6,208,1
+735,2023,1,16,7,30,-9.8,1.14,0.02,0.63,3,37,2,2,4,-10.6,1,0,29,1,0.333,93.91,91.72,0.95,0.8,779,0.6,206,1.2
+736,2023,1,16,8,0,-9.2,1.12,0.024,0.63,23,420,48,7,7,-10.1,29,2,100,29,0.333,93.38,86.55,0.95,0.8,779,0.6,205,1.5
+737,2023,1,16,8,30,-7.8,1.12,0.024,0.63,35,640,125,3,7,-10.1,74,11,43,76,0.334,83.83,81.9,0.96,0.8,780,0.6,208,1.7
+738,2023,1,16,9,0,-6.4,1.13,0.027,0.63,45,760,209,0,7,-8,134,130,0,162,0.335,88.48,77.52,0.96,0.8,780,0.6,211,1.9
+739,2023,1,16,9,30,-4.9,1.13,0.027,0.63,52,838,290,0,7,-8,183,122,0,218,0.336,78.95,73.5,0.96,0.8,780,0.6,217,2.7
+740,2023,1,16,10,0,-3.3,1.15,0.026,0.63,58,889,363,0,7,-5.7,230,150,0,281,0.338,83.59,69.92,0.96,0.8,780,0.6,223,3.4
+741,2023,1,16,10,30,-2.5,1.15,0.026,0.63,62,924,425,0,7,-5.7,267,152,0,327,0.339,78.76,66.87,0.95,0.8,780,0.6,223,3.9
+742,2023,1,16,11,0,-1.6,1.16,0.026,0.63,65,947,474,0,7,-4.8,265,301,0,395,0.341,78.89,64.43,0.95,0.8,779,0.6,223,4.4
+743,2023,1,16,11,30,-1.3,1.16,0.026,0.63,68,962,510,0,7,-4.8,202,565,0,461,0.341,77.17,62.67,0.95,0.8,779,0.6,221,4.5
+744,2023,1,16,12,0,-1,1.16,0.026,0.63,70,969,530,0,7,-4.6,254,358,0,424,0.341,76.6,61.65,0.96,0.8,779,0.6,219,4.6
+745,2023,1,16,12,30,-1,1.16,0.026,0.63,70,970,534,0,7,-4.6,243,365,7,418,0.341,76.5,61.41,0.95,0.8,778,0.6,216,4.5
+746,2023,1,16,13,0,-0.9,1.14,0.026,0.63,69,965,523,0,7,-4.5,251,374,0,427,0.34,76.41,61.96,0.95,0.8,778,0.7,213,4.3
+747,2023,1,16,13,30,-0.9,1.14,0.026,0.63,67,956,497,0,7,-4.5,223,443,0,422,0.34,76.41,63.27,0.95,0.8,778,0.6,208,4
+748,2023,1,16,14,0,-0.9,1.13,0.026,0.63,64,939,456,0,0,-4.5,102,814,0,442,0.339,76.79,65.31,0.95,0.8,777,0.6,204,3.7
+749,2023,1,16,14,30,-1,1.13,0.026,0.63,60,913,402,0,4,-4.5,244,63,0,268,0.339,77.35,68,0.95,0.8,777,0.6,199,3.4
+750,2023,1,16,15,0,-1.2,1.13,0.024,0.63,54,875,335,0,4,-4.4,196,69,0,218,0.339,78.93,71.27,0.94,0.8,777,0.6,195,3.2
+751,2023,1,16,15,30,-2,1.13,0.024,0.63,47,819,259,0,7,-4.4,159,120,0,190,0.338,83.7,75.03,0.94,0.8,777,0.6,195,2.7
+752,2023,1,16,16,0,-2.9,1.12,0.022,0.63,39,730,176,0,7,-5,118,72,0,131,0.337,85.52,79.21,0.94,0.8,778,0.6,195,2.1
+753,2023,1,16,16,30,-3.7,1.12,0.022,0.63,29,580,93,6,7,-5,51,4,86,51,0.336,90.77,83.71,0.94,0.8,778,0.6,189,1.7
+754,2023,1,16,17,0,-4.5,1.12,0.019,0.63,15,226,21,6,7,-5.7,12,0,86,12,0.336,91,88.4,0.94,0.75,778,0.7,183,1.3
+755,2023,1,16,17,30,-4.5,1.12,0.019,0.63,0,0,0,0,7,-5.8,0,0,0,0,0.336,90.88,93.75,0.94,0.75,777,0.7,167,1.3
+756,2023,1,16,18,0,-4.5,1.11,0.02,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.337,92.93,99.03,0.94,0.75,777,0.7,150,1.3
+757,2023,1,16,18,30,-4.6,1.11,0.02,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.339,93.64,104.46,0.95,0.75,777,0.7,145,1.6
+758,2023,1,16,19,0,-4.6,1.11,0.023,0.63,0,0,0,0,7,-5.3,0,0,0,0,0.341,94.85,110.01,0.95,0.75,777,0.7,139,1.8
+759,2023,1,16,19,30,-4.6,1.11,0.023,0.63,0,0,0,0,4,-5.3,0,0,0,0,0.344,94.85,115.64,0.95,0.75,777,0.7,147,2.1
+760,2023,1,16,20,0,-4.6,1.12,0.027,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.346,95.51,121.32,0.95,0.75,777,0.7,155,2.3
+761,2023,1,16,20,30,-4.6,1.12,0.027,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.347,95.51,127.01,0.95,0.75,777,0.7,161,2.4
+762,2023,1,16,21,0,-4.6,1.12,0.028,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.349,96.54,132.67,0.95,0.75,777,0.7,168,2.6
+763,2023,1,16,21,30,-4.5,1.12,0.028,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.349,95.82,138.25,0.94,0.75,777,0.7,178,3
+764,2023,1,16,22,0,-4.3,1.12,0.023,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.35,97.72,143.65,0.93,0.75,777,0.7,187,3.3
+765,2023,1,16,22,30,-4.4,1.12,0.023,0.63,0,0,0,0,6,-4.6,0,0,0,0,0.35,98.46,148.76,0.93,0.75,777,0.6,191,3.4
+766,2023,1,16,23,0,-4.5,1.11,0.02,0.63,0,0,0,0,9,-4.5,0,0,0,0,0.35,100,153.37,0.93,0.75,777,0.6,195,3.5
+767,2023,1,16,23,30,-4.6,1.11,0.02,0.63,0,0,0,0,6,-4.6,0,0,0,0,0.35,100,157.14,0.92,0.75,777,0.6,195,3.5
+768,2023,1,17,0,0,-4.7,1.06,0.019,0.63,0,0,0,0,6,-4.7,0,0,0,0,0.35,100,159.59,0.92,0.75,777,0.7,196,3.5
+769,2023,1,17,0,30,-4.4,1.06,0.019,0.63,0,0,0,0,6,-4.4,0,0,0,0,0.349,100,160.2,0.92,0.75,777,0.7,197,3.7
+770,2023,1,17,1,0,-4.1,1,0.02,0.63,0,0,0,0,4,-4.1,0,0,0,0,0.349,99.96,158.81,0.92,0.75,777,0.7,199,4
+771,2023,1,17,1,30,-3.9,1,0.02,0.63,0,0,0,0,4,-4.1,0,0,0,0,0.348,98.47,155.77,0.93,0.75,777,0.7,201,4
+772,2023,1,17,2,0,-3.6,0.96,0.024,0.63,0,0,0,0,4,-3.8,0,0,0,0,0.348,98.87,151.61,0.93,0.75,777,0.7,202,4
+773,2023,1,17,2,30,-4,0.96,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.349,100,146.77,0.93,0.75,777,0.6,202,3.5
+774,2023,1,17,3,0,-4.4,0.94,0.026,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.349,100,141.53,0.93,0.75,777,0.6,202,3
+775,2023,1,17,3,30,-5.1,0.94,0.026,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.35,100,136.04,0.93,0.75,777,0.6,199,2.5
+776,2023,1,17,4,0,-5.9,0.91,0.026,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.351,100,130.42,0.93,0.75,777,0.6,197,2
+777,2023,1,17,4,30,-6.4,0.91,0.026,0.63,0,0,0,0,4,-6.4,0,0,0,0,0.352,100,124.74,0.93,0.75,777,0.6,195,1.8
+778,2023,1,17,5,0,-6.8,0.91,0.026,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.353,100,119.04,0.93,0.75,777,0.5,194,1.5
+779,2023,1,17,5,30,-7,0.91,0.026,0.63,0,0,0,0,4,-7,0,0,0,0,0.354,100,113.37,0.93,0.75,777,0.5,192,1.3
+780,2023,1,17,6,0,-7.2,0.92,0.026,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.354,100,107.76,0.93,0.75,777,0.5,190,1.2
+781,2023,1,17,6,30,-7.4,0.92,0.026,0.63,0,0,0,0,4,-7.4,0,0,0,0,0.355,100,102.24,0.93,0.75,777,0.5,184,1
+782,2023,1,17,7,0,-7.5,0.93,0.025,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.355,100,96.86,0.93,0.75,777,0.5,178,0.9
+783,2023,1,17,7,30,-7.2,0.93,0.025,0.63,3,35,2,0,0,-7.2,3,27,4,2,0.356,100,91.65,0.93,0.75,777,0.5,160,1.1
+784,2023,1,17,8,0,-6.8,0.95,0.027,0.63,23,416,49,4,7,-7.1,26,114,64,33,0.356,97.91,86.47,0.93,0.75,777,0.5,143,1.2
+785,2023,1,17,8,30,-5.8,0.95,0.027,0.63,36,640,127,3,7,-7.1,64,281,43,104,0.356,90.7,81.81,0.93,0.75,777,0.5,123,1.4
+786,2023,1,17,9,0,-4.8,0.97,0.029,0.63,46,763,212,0,7,-5.8,98,239,0,150,0.357,92.71,77.41,0.94,0.75,777,0.5,104,1.5
+787,2023,1,17,9,30,-3.4,0.97,0.029,0.63,53,839,293,0,7,-5.8,139,21,0,145,0.358,83.47,73.38,0.94,0.75,777,0.5,96,1.3
+788,2023,1,17,10,0,-2,0.97,0.03,0.63,60,889,367,0,6,-4.3,142,10,0,145,0.358,84.08,69.79,0.93,0.75,777,0.5,89,1.1
+789,2023,1,17,10,30,-1.4,0.97,0.03,0.63,65,921,429,0,7,-4.3,214,52,0,235,0.359,80.46,66.72,0.94,0.75,777,0.5,73,1.2
+790,2023,1,17,11,0,-0.7,0.98,0.035,0.63,71,938,478,0,6,-4.3,174,8,0,177,0.359,76.44,64.27,0.94,0.75,777,0.5,57,1.3
+791,2023,1,17,11,30,-0.5,0.98,0.035,0.63,74,946,511,0,9,-4.3,174,3,0,175,0.358,75.24,62.49,0.95,0.75,776,0.6,52,1.7
+792,2023,1,17,12,0,-0.3,0.97,0.042,0.63,78,946,530,0,6,-4.5,202,5,0,204,0.357,73.54,61.46,0.95,0.75,776,0.6,47,2
+793,2023,1,17,12,30,-0.4,0.97,0.042,0.63,79,945,534,0,6,-4.5,220,20,0,230,0.357,74.08,61.21,0.95,0.75,776,0.6,42,2.4
+794,2023,1,17,13,0,-0.5,0.94,0.046,0.63,79,937,523,0,6,-4.4,204,5,0,206,0.356,74.76,61.75,0.96,0.75,775,0.6,37,2.8
+795,2023,1,17,13,30,-0.6,0.94,0.046,0.63,78,926,497,0,6,-4.4,192,5,0,194,0.356,75.3,63.07,0.96,0.75,775,0.6,29,3.1
+796,2023,1,17,14,0,-0.8,0.93,0.046,0.63,75,906,456,0,6,-4.3,173,4,0,175,0.355,76.89,65.1,0.96,0.75,775,0.6,21,3.3
+797,2023,1,17,14,30,-1.1,0.93,0.046,0.63,71,876,402,0,6,-4.3,139,2,0,140,0.355,78.6,67.79,0.96,0.75,775,0.6,18,3.2
+798,2023,1,17,15,0,-1.4,0.93,0.047,0.63,65,832,335,0,6,-4.4,105,1,0,105,0.355,79.76,71.06,0.96,0.75,775,0.6,15,3.1
+799,2023,1,17,15,30,-2,0.93,0.047,0.63,58,763,258,0,7,-4.4,138,16,0,142,0.356,83.35,74.83,0.96,0.75,775,0.6,16,2.7
+800,2023,1,17,16,0,-2.7,0.96,0.052,0.63,49,658,174,0,7,-4.9,110,15,0,113,0.356,84.73,79.01,0.96,0.75,776,0.6,17,2.4
+801,2023,1,17,16,30,-3.1,0.96,0.052,0.63,36,484,91,6,7,-4.9,42,2,86,42,0.358,87.29,83.52,0.96,0.75,776,0.6,17,2.6
+802,2023,1,17,17,0,-3.6,1,0.06,0.63,17,172,22,6,7,-5.5,9,0,86,9,0.361,86.72,88.22,0.96,0.79,776,0.6,17,2.8
+803,2023,1,17,17,30,-3.8,1,0.06,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.364,88.02,93.56,0.96,0.79,776,0.6,15,3.2
+804,2023,1,17,18,0,-4,1.04,0.064,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.367,88.18,98.84,0.97,0.79,776,0.6,13,3.6
+805,2023,1,17,18,30,-4.2,1.04,0.064,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.37,89.52,104.27,0.96,0.79,776,0.6,11,4
+806,2023,1,17,19,0,-4.3,1.05,0.063,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.374,88.79,109.82,0.96,0.79,776,0.6,8,4.3
+807,2023,1,17,19,30,-4.6,1.05,0.063,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.377,90.81,115.46,0.96,0.79,776,0.6,5,4.5
+808,2023,1,17,20,0,-4.8,1.05,0.063,0.63,0,0,0,0,6,-6.2,0,0,0,0,0.38,89.71,121.14,0.96,0.79,776,0.6,3,4.7
+809,2023,1,17,20,30,-5,1.05,0.063,0.63,0,0,0,0,6,-6.2,0,0,0,0,0.383,91.08,126.83,0.96,0.79,776,0.6,181,4.7
+810,2023,1,17,21,0,-5.3,1.06,0.064,0.63,0,0,0,0,6,-6.6,0,0,0,0,0.385,90.54,132.49,0.96,0.79,777,0.6,359,4.7
+811,2023,1,17,21,30,-5.5,1.06,0.064,0.63,0,0,0,0,6,-6.6,0,0,0,0,0.387,91.92,138.06,0.97,0.79,777,0.6,359,4.7
+812,2023,1,17,22,0,-5.6,1.07,0.064,0.63,0,0,0,0,6,-6.9,0,0,0,0,0.389,90.24,143.46,0.97,0.79,777,0.6,358,4.8
+813,2023,1,17,22,30,-5.8,1.07,0.064,0.63,0,0,0,0,6,-6.9,0,0,0,0,0.39,91.62,148.56,0.97,0.79,777,0.6,356,4.7
+814,2023,1,17,23,0,-6,1.09,0.066,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.391,90.57,153.16,0.97,0.79,777,0.6,354,4.7
+815,2023,1,17,23,30,-6.2,1.09,0.066,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.391,91.96,156.93,0.97,0.79,777,0.6,351,4.8
+816,2023,1,18,0,0,-6.3,1.13,0.062,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.392,90.06,159.37,0.97,0.79,777,0.6,348,4.8
+817,2023,1,18,0,30,-6.5,1.13,0.062,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.391,91.45,160,0.96,0.79,777,0.6,347,4.9
+818,2023,1,18,1,0,-6.7,1.14,0.053,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.389,89.82,158.65,0.96,0.79,777,0.6,346,4.9
+819,2023,1,18,1,30,-6.9,1.14,0.053,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.386,91.33,155.64,0.96,0.79,778,0.6,346,4.7
+820,2023,1,18,2,0,-7,1.12,0.052,0.63,0,0,0,0,6,-8.5,0,0,0,0,0.383,88.91,151.51,0.96,0.79,778,0.6,346,4.6
+821,2023,1,18,2,30,-7.2,1.12,0.052,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.38,90.29,146.69,0.96,0.79,778,0.5,344,4.6
+822,2023,1,18,3,0,-7.3,1.12,0.049,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.376,88.36,141.46,0.96,0.79,778,0.5,343,4.7
+823,2023,1,18,3,30,-7.4,1.12,0.049,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.373,89.16,135.98,0.96,0.79,779,0.5,341,4.8
+824,2023,1,18,4,0,-7.5,1.11,0.044,0.63,0,0,0,0,6,-9.3,0,0,0,0,0.37,87.1,130.36,0.96,0.79,779,0.5,340,4.8
+825,2023,1,18,4,30,-7.7,1.11,0.044,0.63,0,0,0,0,6,-9.3,0,0,0,0,0.367,88.46,124.68,0.95,0.79,779,0.5,340,4.7
+826,2023,1,18,5,0,-7.9,1.1,0.04,0.63,0,0,0,0,6,-9.7,0,0,0,0,0.364,86.68,118.98,0.95,0.79,780,0.5,340,4.6
+827,2023,1,18,5,30,-8.2,1.1,0.04,0.63,0,0,0,0,6,-9.7,0,0,0,0,0.362,88.72,113.31,0.95,0.79,780,0.5,339,4.3
+828,2023,1,18,6,0,-8.5,1.09,0.036,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.36,86.57,107.69,0.95,0.79,780,0.5,337,4.1
+829,2023,1,18,6,30,-8.8,1.09,0.036,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.358,88.73,102.18,0.95,0.79,781,0.5,336,3.9
+830,2023,1,18,7,0,-9.1,1.09,0.034,0.63,0,0,0,0,6,-11,0,0,0,0,0.356,86.17,96.79,0.95,0.79,781,0.5,335,3.7
+831,2023,1,18,7,30,-8.8,1.09,0.034,0.63,4,35,3,2,6,-11,1,0,29,1,0.355,84.28,91.56,0.94,0.79,782,0.5,333,3.7
+832,2023,1,18,8,0,-8.5,1.09,0.032,0.63,24,409,50,7,6,-10.9,19,0,100,19,0.355,83.03,86.38,0.94,0.79,782,0.5,332,3.6
+833,2023,1,18,8,30,-7.5,1.09,0.032,0.63,37,636,129,3,7,-10.9,47,2,43,47,0.355,76.83,81.71,0.94,0.79,782,0.5,334,3.9
+834,2023,1,18,9,0,-6.4,1.1,0.03,0.63,47,765,215,0,7,-9.5,79,4,0,80,0.356,78.57,77.29,0.94,0.79,783,0.5,336,4.1
+835,2023,1,18,9,30,-5.3,1.1,0.03,0.63,54,843,297,0,7,-9.5,104,5,0,105,0.357,72.25,73.25,0.94,0.79,783,0.5,341,4.4
+836,2023,1,18,10,0,-4.2,1.11,0.029,0.63,60,895,371,0,7,-8.2,157,19,0,164,0.358,73.61,69.64,0.94,0.79,783,0.5,346,4.8
+837,2023,1,18,10,30,-3.5,1.11,0.029,0.63,64,933,435,0,7,-8.2,250,214,0,335,0.359,69.85,66.57,0.94,0.79,783,0.5,344,4.7
+838,2023,1,18,11,0,-2.8,1.11,0.027,0.63,67,958,485,0,7,-7.8,242,384,0,410,0.359,68.53,64.1,0.94,0.79,783,0.5,342,4.6
+839,2023,1,18,11,30,-2.5,1.11,0.027,0.63,69,973,521,0,7,-7.8,211,541,0,462,0.361,67.02,62.31,0.94,0.79,783,0.5,336,4.5
+840,2023,1,18,12,0,-2.2,1.12,0.026,0.63,69,983,542,0,7,-7.9,201,608,0,493,0.362,65.11,61.26,0.94,0.79,783,0.5,330,4.4
+841,2023,1,18,12,30,-2,1.12,0.026,0.63,69,988,548,0,7,-7.9,172,657,0,490,0.363,64.16,61.01,0.93,0.79,783,0.4,325,4.2
+842,2023,1,18,13,0,-1.8,1.14,0.023,0.63,68,989,539,0,0,-8,156,700,0,490,0.365,62.52,61.54,0.93,0.79,783,0.4,319,4.1
+843,2023,1,18,13,30,-1.8,1.14,0.023,0.63,64,981,512,0,7,-8,204,531,0,446,0.366,62.52,62.85,0.92,0.79,783,0.4,316,4
+844,2023,1,18,14,0,-1.7,1.16,0.02,0.63,61,967,471,0,0,-8.1,81,899,0,462,0.367,61.63,64.89,0.92,0.79,783,0.4,313,3.8
+845,2023,1,18,14,30,-2.1,1.16,0.02,0.63,55,946,416,0,0,-8.1,58,936,0,415,0.367,63.55,67.58,0.91,0.79,784,0.4,312,3.4
+846,2023,1,18,15,0,-2.4,1.18,0.015,0.63,49,915,349,0,0,-8.1,49,915,0,349,0.367,64.87,70.85,0.91,0.79,784,0.4,311,3.1
+847,2023,1,18,15,30,-3.7,1.18,0.015,0.63,43,871,274,0,0,-8.1,43,871,0,274,0.366,71.45,74.62,0.9,0.79,784,0.3,310,2.4
+848,2023,1,18,16,0,-4.9,1.21,0.012,0.63,35,798,190,0,0,-9.6,35,798,0,190,0.365,69.61,78.8,0.89,0.79,784,0.3,309,1.8
+849,2023,1,18,16,30,-6.3,1.21,0.012,0.63,26,664,103,0,0,-9.6,26,664,0,103,0.362,77.52,83.32,0.88,0.79,785,0.3,305,1.7
+850,2023,1,18,17,0,-7.8,1.25,0.01,0.63,16,337,28,0,0,-12,16,337,0,28,0.36,71.56,88.03,0.87,0.8,785,0.3,302,1.5
+851,2023,1,18,17,30,-8.4,1.25,0.01,0.63,0,0,0,0,0,-12,0,0,0,0,0.356,74.97,93.37,0.87,0.8,785,0.3,299,1.5
+852,2023,1,18,18,0,-9.1,1.27,0.01,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.353,74.59,98.65,0.87,0.8,786,0.3,296,1.5
+853,2023,1,18,18,30,-9.7,1.27,0.01,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.35,78.18,104.09,0.87,0.8,786,0.3,294,1.5
+854,2023,1,18,19,0,-10.2,1.26,0.01,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.347,79.41,109.64,0.87,0.8,786,0.3,292,1.5
+855,2023,1,18,19,30,-10.7,1.26,0.01,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.345,82.62,115.28,0.87,0.8,786,0.3,290,1.5
+856,2023,1,18,20,0,-11.2,1.24,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.344,84.65,120.96,0.87,0.8,786,0.3,289,1.5
+857,2023,1,18,20,30,-11.6,1.24,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.344,87.4,126.65,0.87,0.8,786,0.3,289,1.4
+858,2023,1,18,21,0,-11.9,1.21,0.014,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.344,88.57,132.31,0.88,0.8,786,0.3,288,1.4
+859,2023,1,18,21,30,-12.2,1.21,0.014,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.346,90.85,137.88,0.88,0.8,787,0.3,287,1.3
+860,2023,1,18,22,0,-12.4,1.2,0.015,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.348,91.17,143.27,0.88,0.8,787,0.3,285,1.2
+861,2023,1,18,22,30,-12.7,1.2,0.015,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.351,93.41,148.36,0.88,0.8,787,0.3,280,1.1
+862,2023,1,18,23,0,-12.9,1.2,0.016,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.354,93.65,152.95,0.88,0.8,787,0.3,275,1
+863,2023,1,18,23,30,-13.2,1.2,0.016,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.355,95.95,156.71,0.88,0.8,787,0.3,265,0.9
+864,2023,1,19,0,0,-13.5,1.2,0.017,0.63,0,0,0,0,0,-14,0,0,0,0,0.357,96.29,159.16,0.88,0.8,787,0.3,254,0.8
+865,2023,1,19,0,30,-13.9,1.2,0.017,0.63,0,0,0,0,0,-14,0,0,0,0,0.358,99.48,159.8,0.88,0.8,787,0.3,240,0.8
+866,2023,1,19,1,0,-14.3,1.21,0.018,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.358,99.08,158.47,0.89,0.8,787,0.3,225,0.8
+867,2023,1,19,1,30,-14.7,1.21,0.018,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.358,100,155.5,0.89,0.8,787,0.3,212,0.9
+868,2023,1,19,2,0,-15,1.23,0.018,0.63,0,0,0,0,0,-15,0,0,0,0,0.359,100,151.4,0.89,0.8,787,0.3,198,1
+869,2023,1,19,2,30,-15.2,1.23,0.018,0.63,0,0,0,0,0,-15.2,0,0,0,0,0.359,100,146.6,0.89,0.8,787,0.3,189,1.1
+870,2023,1,19,3,0,-15.4,1.24,0.019,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.359,99.68,141.38,0.89,0.8,787,0.3,180,1.2
+871,2023,1,19,3,30,-15.6,1.24,0.019,0.63,0,0,0,0,0,-15.6,0,0,0,0,0.358,100,135.91,0.89,0.8,787,0.3,175,1.5
+872,2023,1,19,4,0,-15.7,1.26,0.019,0.63,0,0,0,0,0,-16,0,0,0,0,0.357,97.33,130.3,0.9,0.8,787,0.3,169,1.7
+873,2023,1,19,4,30,-15.8,1.26,0.019,0.63,0,0,0,0,0,-16,0,0,0,0,0.357,98.14,124.62,0.9,0.8,787,0.3,167,1.8
+874,2023,1,19,5,0,-15.8,1.27,0.022,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.356,94.52,118.92,0.91,0.8,788,0.3,165,2
+875,2023,1,19,5,30,-15.8,1.27,0.022,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.355,94.52,113.24,0.92,0.8,788,0.3,165,2
+876,2023,1,19,6,0,-15.8,1.25,0.026,0.63,0,0,0,0,0,-16.7,0,0,0,0,0.355,92.54,107.63,0.93,0.8,788,0.3,166,2
+877,2023,1,19,6,30,-15.8,1.25,0.026,0.63,0,0,0,0,0,-16.7,0,0,0,0,0.354,92.54,102.1,0.93,0.8,788,0.3,166,2
+878,2023,1,19,7,0,-15.7,1.23,0.03,0.63,0,0,0,0,7,-17,0,0,0,0,0.353,90,96.71,0.93,0.8,788,0.3,167,1.9
+879,2023,1,19,7,30,-15.1,1.23,0.03,0.63,4,39,3,2,7,-17,1,0,29,1,0.352,85.63,91.47,0.93,0.8,788,0.4,170,1.9
+880,2023,1,19,8,0,-14.4,1.23,0.032,0.63,25,436,53,4,7,-16.6,28,214,57,42,0.351,83.49,86.28,0.94,0.8,788,0.4,172,1.9
+881,2023,1,19,8,30,-12.9,1.23,0.032,0.63,37,655,133,2,7,-16.6,73,240,21,108,0.351,73.88,81.6,0.94,0.8,788,0.4,178,1.9
+882,2023,1,19,9,0,-11.4,1.25,0.032,0.63,48,775,220,0,7,-14.3,141,161,0,177,0.351,78.81,77.17,0.94,0.8,788,0.4,184,1.9
+883,2023,1,19,9,30,-9.7,1.25,0.032,0.63,55,851,302,0,7,-14.3,188,175,0,239,0.352,68.86,73.11,0.94,0.8,788,0.4,193,2.2
+884,2023,1,19,10,0,-8,1.25,0.031,0.63,61,902,377,0,7,-11.7,218,266,0,311,0.353,74.92,69.5,0.94,0.8,788,0.4,203,2.5
+885,2023,1,19,10,30,-6.6,1.25,0.031,0.63,66,936,441,0,7,-11.7,275,161,0,339,0.353,67.25,66.4,0.94,0.8,788,0.4,208,2.8
+886,2023,1,19,11,0,-5.3,1.24,0.032,0.63,70,958,491,0,7,-10.3,295,222,0,393,0.354,68.16,63.92,0.94,0.8,787,0.4,213,3
+887,2023,1,19,11,30,-4.7,1.24,0.032,0.63,72,973,527,0,7,-10.3,310,262,0,433,0.353,65.14,62.12,0.94,0.8,787,0.4,212,3
+888,2023,1,19,12,0,-4,1.23,0.032,0.63,74,980,548,0,7,-9.7,320,281,0,456,0.353,64.38,61.06,0.94,0.8,787,0.4,212,2.9
+889,2023,1,19,12,30,-3.7,1.23,0.032,0.63,74,984,554,0,7,-9.7,312,321,0,469,0.352,62.87,60.79,0.94,0.8,786,0.4,210,2.8
+890,2023,1,19,13,0,-3.3,1.24,0.03,0.63,72,981,543,0,7,-9.4,291,355,0,461,0.352,62.74,61.32,0.94,0.8,786,0.4,208,2.7
+891,2023,1,19,13,30,-3.2,1.24,0.03,0.63,70,972,517,0,7,-9.4,261,397,0,444,0.352,62.27,62.63,0.94,0.8,786,0.4,208,2.6
+892,2023,1,19,14,0,-3,1.25,0.029,0.63,66,957,476,0,7,-9.1,161,634,7,432,0.352,62.72,64.66,0.94,0.8,786,0.4,208,2.5
+893,2023,1,19,14,30,-3.2,1.25,0.029,0.63,64,928,421,0,7,-9.1,130,694,14,397,0.352,63.66,67.36,0.94,0.8,786,0.4,209,2.2
+894,2023,1,19,15,0,-3.4,1.22,0.031,0.63,58,888,353,0,7,-8.3,122,623,14,329,0.352,68.89,70.63,0.94,0.8,786,0.4,210,1.9
+895,2023,1,19,15,30,-4.2,1.22,0.031,0.63,54,827,276,0,7,-8.3,113,518,21,252,0.352,73.14,74.4,0.94,0.8,786,0.4,212,1.5
+896,2023,1,19,16,0,-4.9,1.2,0.034,0.63,45,734,190,0,7,-8.9,99,336,0,165,0.351,73.51,78.59,0.95,0.8,786,0.4,215,1.1
+897,2023,1,19,16,30,-5.5,1.2,0.034,0.63,34,582,104,6,7,-8.9,66,30,86,70,0.352,77.03,83.12,0.95,0.8,787,0.4,220,0.9
+898,2023,1,19,17,0,-6,1.18,0.036,0.63,18,262,28,6,7,-10,18,1,86,18,0.352,73.18,87.84,0.95,0.8,787,0.4,225,0.8
+899,2023,1,19,17,30,-6.1,1.18,0.036,0.63,0,0,0,0,7,-10,0,0,0,0,0.352,73.74,93.17,0.95,0.8,787,0.5,231,0.7
+900,2023,1,19,18,0,-6.2,1.18,0.038,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.352,72.74,98.46,0.95,0.8,787,0.5,236,0.5
+901,2023,1,19,18,30,-6.4,1.18,0.038,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.353,73.86,103.9,0.95,0.8,787,0.5,260,0.3
+902,2023,1,19,19,0,-6.5,1.17,0.04,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.354,74.1,109.46,0.95,0.8,788,0.5,283,0.2
+903,2023,1,19,19,30,-6.7,1.17,0.04,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.355,75.25,115.09,0.95,0.8,788,0.5,155,0.3
+904,2023,1,19,20,0,-6.9,1.16,0.04,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.356,76.43,120.78,0.95,0.8,788,0.5,27,0.4
+905,2023,1,19,20,30,-7.2,1.16,0.04,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.358,78.22,126.47,0.96,0.8,788,0.5,33,0.6
+906,2023,1,19,21,0,-7.4,1.16,0.041,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.359,79.67,132.13,0.96,0.8,788,0.5,40,0.7
+907,2023,1,19,21,30,-7.8,1.16,0.041,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.36,82.17,137.69,0.96,0.8,788,0.5,42,0.9
+908,2023,1,19,22,0,-8.1,1.16,0.041,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.362,83.18,143.08,0.96,0.8,788,0.5,45,1
+909,2023,1,19,22,30,-8.4,1.16,0.041,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.363,85.14,148.16,0.96,0.8,788,0.5,46,1.3
+910,2023,1,19,23,0,-8.6,1.16,0.041,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.364,84.87,152.74,0.96,0.8,787,0.5,47,1.5
+911,2023,1,19,23,30,-8.9,1.16,0.041,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.366,86.88,156.49,0.96,0.8,787,0.5,48,1.6
+912,2023,1,20,0,0,-9.1,1.16,0.041,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.367,87.28,158.93,0.96,0.8,787,0.5,49,1.8
+913,2023,1,20,0,30,-9.3,1.16,0.041,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.368,88.66,159.59,0.96,0.8,787,0.5,48,1.8
+914,2023,1,20,1,0,-9.4,1.16,0.041,0.63,0,0,0,0,7,-11,0,0,0,0,0.369,88.32,158.29,0.96,0.8,787,0.5,48,1.9
+915,2023,1,20,1,30,-9.6,1.16,0.041,0.63,0,0,0,0,7,-11,0,0,0,0,0.37,89.72,155.35,0.96,0.8,787,0.5,47,1.9
+916,2023,1,20,2,0,-9.7,1.17,0.041,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.371,88.89,151.28,0.96,0.8,787,0.5,47,1.9
+917,2023,1,20,2,30,-9.8,1.17,0.041,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.372,89.59,146.5,0.95,0.8,787,0.5,45,1.9
+918,2023,1,20,3,0,-9.9,1.18,0.041,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.372,88.2,141.3,0.95,0.8,787,0.5,43,1.9
+919,2023,1,20,3,30,-10.2,1.18,0.041,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.373,90.31,135.84,0.95,0.8,787,0.5,40,1.9
+920,2023,1,20,4,0,-10.5,1.2,0.039,0.63,0,0,0,0,7,-12,0,0,0,0,0.373,89.06,130.23,0.95,0.8,787,0.5,37,1.9
+921,2023,1,20,4,30,-10.8,1.2,0.039,0.63,0,0,0,0,7,-12,0,0,0,0,0.373,91.2,124.55,0.95,0.8,787,0.4,35,2
+922,2023,1,20,5,0,-11.1,1.21,0.038,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,89.21,118.85,0.95,0.8,787,0.4,32,2.1
+923,2023,1,20,5,30,-11.3,1.21,0.038,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,90.64,113.17,0.95,0.8,787,0.4,30,2.2
+924,2023,1,20,6,0,-11.5,1.21,0.038,0.63,0,0,0,0,7,-13,0,0,0,0,0.374,88.69,107.55,0.95,0.8,787,0.4,28,2.4
+925,2023,1,20,6,30,-11.5,1.21,0.038,0.63,0,0,0,0,7,-13,0,0,0,0,0.373,88.69,102.02,0.95,0.8,787,0.4,26,2.7
+926,2023,1,20,7,0,-11.5,1.2,0.04,0.63,0,0,0,0,7,-13.2,0,0,0,0,0.373,87.14,96.62,0.95,0.8,787,0.4,25,3
+927,2023,1,20,7,30,-10.8,1.2,0.04,0.63,4,34,3,2,7,-13.2,2,0,29,2,0.372,82.51,91.38,0.95,0.8,788,0.4,23,3.3
+928,2023,1,20,8,0,-10.1,1.18,0.042,0.63,26,400,53,7,7,-12.3,33,2,100,33,0.372,83.94,86.18,0.95,0.8,788,0.4,22,3.7
+929,2023,1,20,8,30,-9.1,1.18,0.042,0.63,41,623,133,2,7,-12.3,85,12,29,87,0.373,77.59,81.48,0.95,0.8,788,0.4,21,4.1
+930,2023,1,20,9,0,-8,1.18,0.043,0.63,52,749,220,0,7,-11,144,33,0,151,0.373,79.08,77.05,0.95,0.8,788,0.4,20,4.6
+931,2023,1,20,9,30,-7.2,1.18,0.043,0.63,60,829,303,0,7,-11,198,77,0,221,0.374,74.34,72.97,0.95,0.8,788,0.4,20,4.8
+932,2023,1,20,10,0,-6.5,1.18,0.042,0.63,66,883,378,0,7,-10.2,248,111,0,287,0.375,74.87,69.34,0.95,0.8,788,0.4,20,5
+933,2023,1,20,10,30,-5.7,1.18,0.042,0.63,72,918,442,0,7,-10.2,266,235,0,361,0.376,70.43,66.23,0.95,0.8,788,0.4,18,5.1
+934,2023,1,20,11,0,-5,1.18,0.042,0.63,75,942,492,0,7,-9.4,201,554,0,446,0.377,71.44,63.74,0.95,0.8,788,0.4,17,5.2
+935,2023,1,20,11,30,-4.4,1.18,0.042,0.63,79,957,529,0,7,-9.4,154,731,0,498,0.377,68.19,61.92,0.95,0.8,787,0.4,16,5.2
+936,2023,1,20,12,0,-3.9,1.18,0.042,0.63,80,965,550,0,7,-8.8,267,456,0,489,0.378,69.01,60.86,0.95,0.8,787,0.4,14,5.2
+937,2023,1,20,12,30,-3.5,1.18,0.042,0.63,80,965,554,0,7,-8.8,320,305,0,470,0.379,66.97,60.58,0.95,0.8,787,0.4,14,5.2
+938,2023,1,20,13,0,-3.2,1.18,0.043,0.63,80,958,543,0,7,-8.4,339,212,0,441,0.379,67.33,61.1,0.95,0.8,787,0.5,13,5.2
+939,2023,1,20,13,30,-3.1,1.18,0.043,0.63,78,948,517,0,7,-8.4,323,189,0,411,0.379,66.83,62.4,0.95,0.8,787,0.5,13,5.1
+940,2023,1,20,14,0,-3,1.2,0.042,0.63,74,931,476,0,7,-8.2,301,178,0,378,0.379,67.41,64.44,0.95,0.8,787,0.5,12,5.1
+941,2023,1,20,14,30,-3.2,1.2,0.042,0.63,69,902,420,0,7,-8.2,266,180,0,336,0.378,68.42,67.13,0.95,0.8,787,0.5,12,4.8
+942,2023,1,20,15,0,-3.5,1.2,0.043,0.63,65,859,353,0,7,-8.1,220,198,0,286,0.378,70.23,70.41,0.95,0.8,787,0.5,12,4.5
+943,2023,1,20,15,30,-4.2,1.2,0.043,0.63,58,796,275,0,7,-8.1,165,238,0,230,0.377,74.01,74.19,0.95,0.8,787,0.5,10,3.9
+944,2023,1,20,16,0,-5,1.19,0.047,0.63,49,698,190,0,7,-8.5,124,143,0,153,0.376,76.2,78.38,0.95,0.8,787,0.5,9,3.3
+945,2023,1,20,16,30,-5.8,1.19,0.047,0.63,37,544,104,5,7,-8.5,59,6,71,60,0.375,81.07,82.91,0.95,0.8,788,0.5,6,3.1
+946,2023,1,20,17,0,-6.7,1.19,0.048,0.63,19,239,29,7,7,-9.5,20,1,100,20,0.374,80.23,87.65,0.95,0.8,788,0.5,2,2.9
+947,2023,1,20,17,30,-7.1,1.19,0.048,0.63,0,0,0,1,7,-9.5,0,0,14,0,0.373,82.74,92.97,0.95,0.8,788,0.5,181,3.1
+948,2023,1,20,18,0,-7.5,1.21,0.047,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.372,82.76,98.27,0.95,0.8,789,0.5,360,3.2
+949,2023,1,20,18,30,-8,1.21,0.047,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.372,86.02,103.71,0.95,0.8,789,0.5,359,3.2
+950,2023,1,20,19,0,-8.5,1.26,0.043,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.372,85.83,109.27,0.94,0.8,789,0.5,358,3.2
+951,2023,1,20,19,30,-9.3,1.26,0.043,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.372,91.38,114.91,0.94,0.8,789,0.5,358,3.1
+952,2023,1,20,20,0,-10.1,1.32,0.037,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.372,89.64,120.59,0.94,0.8,789,0.5,357,3
+953,2023,1,20,20,30,-10.9,1.32,0.037,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.373,95.63,126.29,0.94,0.8,790,0.5,357,2.9
+954,2023,1,20,21,0,-11.6,1.33,0.036,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,93.01,131.94,0.94,0.8,790,0.5,357,2.9
+955,2023,1,20,21,30,-12,1.33,0.036,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.375,96.05,137.5,0.94,0.8,790,0.4,356,2.8
+956,2023,1,20,22,0,-12.5,1.31,0.039,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.375,95.43,142.88,0.94,0.8,790,0.4,355,2.7
+957,2023,1,20,22,30,-12.7,1.31,0.039,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.375,96.98,147.96,0.94,0.8,790,0.4,356,2.5
+958,2023,1,20,23,0,-12.9,1.29,0.043,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.375,96.28,152.53,0.95,0.8,790,0.4,357,2.4
+959,2023,1,20,23,30,-13,1.29,0.043,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.374,97.07,156.26,0.95,0.8,790,0.4,179,2.3
+960,2023,1,21,0,0,-13.1,1.27,0.044,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.373,96.25,158.71,0.95,0.8,790,0.4,1,2.1
+961,2023,1,21,0,30,-13.2,1.27,0.044,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.371,97.03,159.38,0.95,0.8,790,0.4,5,2
+962,2023,1,21,1,0,-13.4,1.26,0.043,0.63,0,0,0,0,7,-13.9,0,0,0,0,0.37,96.4,158.11,0.95,0.8,790,0.5,8,2
+963,2023,1,21,1,30,-13.5,1.26,0.043,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.368,97.19,155.2,0.95,0.8,790,0.5,10,2
+964,2023,1,21,2,0,-13.6,1.24,0.042,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.366,95.55,151.16,0.95,0.8,790,0.5,12,2
+965,2023,1,21,2,30,-13.7,1.24,0.042,0.63,0,0,0,0,7,-14.1,0,0,0,0,0.364,96.45,146.4,0.95,0.8,791,0.5,13,1.9
+966,2023,1,21,3,0,-13.9,1.22,0.039,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.363,95.2,141.2,0.95,0.8,791,0.5,14,1.9
+967,2023,1,21,3,30,-14.1,1.22,0.039,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.361,96.77,135.75,0.95,0.8,791,0.5,15,1.9
+968,2023,1,21,4,0,-14.3,1.22,0.036,0.63,0,0,0,0,0,-14.9,0,0,29,0,0.36,94.89,130.15,0.94,0.8,791,0.5,16,1.9
+969,2023,1,21,4,30,-14.5,1.22,0.036,0.63,0,0,0,0,7,-14.9,0,0,14,0,0.358,96.46,124.48,0.94,0.8,791,0.5,17,1.9
+970,2023,1,21,5,0,-14.6,1.21,0.036,0.63,0,0,0,0,7,-15.3,0,0,0,0,0.356,94.54,118.78,0.94,0.8,791,0.5,18,1.9
+971,2023,1,21,5,30,-14.6,1.21,0.036,0.63,0,0,0,0,7,-15.3,0,0,0,0,0.354,94.54,113.1,0.95,0.8,791,0.5,15,1.9
+972,2023,1,21,6,0,-14.6,1.21,0.037,0.63,0,0,0,0,7,-15.4,0,0,0,0,0.352,93.79,107.47,0.95,0.8,791,0.5,13,1.9
+973,2023,1,21,6,30,-14.6,1.21,0.037,0.63,0,0,0,0,8,-15.4,0,0,0,0,0.35,93.79,101.94,0.95,0.8,791,0.5,11,1.9
+974,2023,1,21,7,0,-14.5,1.22,0.037,0.63,0,0,0,0,0,-15.5,0,0,0,0,0.348,92.18,96.53,0.95,0.8,791,0.5,8,1.9
+975,2023,1,21,7,30,-13.9,1.22,0.037,0.63,4,36,3,0,0,-15.5,4,36,0,3,0.347,87.87,91.28,0.95,0.8,792,0.5,9,1.7
+976,2023,1,21,8,0,-13.2,1.24,0.037,0.63,26,412,54,0,0,-14.9,26,383,7,52,0.346,87.28,86.07,0.95,0.8,792,0.5,9,1.6
+977,2023,1,21,8,30,-11.7,1.24,0.037,0.63,39,630,134,0,0,-14.9,39,630,0,134,0.346,77.33,81.36,0.95,0.8,792,0.5,6,1.7
+978,2023,1,21,9,0,-10.3,1.25,0.037,0.63,50,754,221,0,0,-12.9,50,754,0,221,0.346,80.99,76.91,0.95,0.8,792,0.5,3,1.7
+979,2023,1,21,9,30,-9.2,1.25,0.037,0.63,58,834,304,0,0,-12.9,58,834,0,304,0.347,74.27,72.82,0.95,0.8,792,0.5,177,1.6
+980,2023,1,21,10,0,-8.2,1.25,0.034,0.63,63,888,379,0,0,-11.5,63,888,0,379,0.347,77.23,69.18,0.95,0.8,792,0.5,351,1.4
+981,2023,1,21,10,30,-7.3,1.25,0.034,0.63,68,924,443,0,0,-11.5,68,924,0,443,0.348,72.03,66.06,0.95,0.8,792,0.5,334,1.5
+982,2023,1,21,11,0,-6.4,1.26,0.032,0.63,71,950,494,0,0,-10.4,71,950,0,494,0.348,73.1,63.55,0.95,0.8,792,0.5,317,1.5
+983,2023,1,21,11,30,-5.7,1.26,0.032,0.63,72,968,531,0,0,-10.4,72,968,0,531,0.348,69.3,61.72,0.95,0.8,792,0.5,312,1.9
+984,2023,1,21,12,0,-4.9,1.26,0.027,0.63,72,980,552,0,0,-9.9,72,980,0,552,0.347,67.77,60.64,0.94,0.8,791,0.5,308,2.2
+985,2023,1,21,12,30,-4.5,1.26,0.027,0.63,70,986,558,0,0,-9.9,70,986,0,558,0.347,65.76,60.36,0.94,0.8,791,0.5,308,2.4
+986,2023,1,21,13,0,-4.1,1.25,0.02,0.63,67,988,548,0,0,-9.8,67,988,0,548,0.346,64.64,60.87,0.93,0.8,791,0.5,309,2.5
+987,2023,1,21,13,30,-3.8,1.25,0.02,0.63,64,982,522,0,0,-9.8,64,982,0,522,0.345,63.21,62.17,0.93,0.8,791,0.5,311,2.6
+988,2023,1,21,14,0,-3.6,1.24,0.016,0.63,59,970,481,0,0,-9.8,59,970,0,481,0.344,62.35,64.21,0.92,0.8,791,0.5,313,2.6
+989,2023,1,21,14,30,-3.7,1.24,0.016,0.63,54,948,426,0,0,-9.8,54,948,0,426,0.343,62.74,66.9,0.92,0.8,790,0.5,316,2.4
+990,2023,1,21,15,0,-3.7,1.23,0.013,0.63,49,915,359,0,0,-9.3,49,915,0,359,0.341,64.89,70.19,0.91,0.8,790,0.5,318,2.2
+991,2023,1,21,15,30,-4.6,1.23,0.013,0.63,43,865,282,0,0,-9.3,43,865,0,282,0.34,69.43,73.97,0.91,0.8,790,0.5,318,1.7
+992,2023,1,21,16,0,-5.4,1.22,0.012,0.63,36,788,198,0,0,-10.2,36,788,0,198,0.338,68.98,78.17,0.91,0.8,790,0.5,319,1.2
+993,2023,1,21,16,30,-6.6,1.22,0.012,0.63,28,659,112,0,0,-10.2,28,659,0,112,0.338,75.59,82.7,0.91,0.8,790,0.5,310,1
+994,2023,1,21,17,0,-7.9,1.22,0.011,0.63,18,341,33,0,0,-11.9,18,341,0,33,0.337,72.69,87.45,0.91,0.8,790,0.5,302,0.7
+995,2023,1,21,17,30,-8.6,1.22,0.011,0.63,0,0,0,0,0,-11.9,0,0,0,0,0.336,76.76,92.77,0.91,0.8,790,0.5,294,0.7
+996,2023,1,21,18,0,-9.3,1.24,0.011,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.335,76.55,98.07,0.9,0.8,791,0.5,286,0.8
+997,2023,1,21,18,30,-9.9,1.24,0.011,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.335,80.15,103.52,0.91,0.8,790,0.5,279,0.8
+998,2023,1,21,19,0,-10.4,1.27,0.011,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.334,80.43,109.08,0.91,0.8,790,0.5,272,0.8
+999,2023,1,21,19,30,-10.8,1.27,0.011,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.333,83.02,114.72,0.91,0.8,790,0.5,263,0.8
+1000,2023,1,21,20,0,-11.2,1.29,0.012,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.333,83.43,120.41,0.9,0.8,790,0.5,254,0.8
+1001,2023,1,21,20,30,-11.4,1.29,0.012,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.333,84.78,126.1,0.9,0.8,790,0.5,246,0.8
+1002,2023,1,21,21,0,-11.7,1.3,0.012,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.332,84.99,131.75,0.9,0.8,790,0.5,237,0.8
+1003,2023,1,21,21,30,-12,1.3,0.012,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.332,87.06,137.31,0.9,0.8,790,0.5,224,0.8
+1004,2023,1,21,22,0,-12.2,1.31,0.012,0.63,0,0,0,0,0,-14,0,0,0,0,0.331,86.57,142.68,0.9,0.8,789,0.5,212,0.8
+1005,2023,1,21,22,30,-12.5,1.31,0.012,0.63,0,0,0,0,0,-14,0,0,0,0,0.33,88.69,147.75,0.9,0.8,789,0.5,199,0.9
+1006,2023,1,21,23,0,-12.7,1.33,0.012,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.33,88.37,152.31,0.9,0.8,789,0.5,187,1
+1007,2023,1,21,23,30,-13,1.33,0.012,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.329,90.54,156.03,0.9,0.8,789,0.5,182,1.2
+1008,2023,1,22,0,0,-13.4,1.34,0.013,0.63,0,0,0,0,0,-14.6,0,0,0,0,0.329,90.72,158.47,0.9,0.8,788,0.5,177,1.4
+1009,2023,1,22,0,30,-13.7,1.34,0.013,0.63,0,0,0,0,0,-14.6,0,0,0,0,0.328,92.97,159.16,0.9,0.8,788,0.5,176,1.6
+1010,2023,1,22,1,0,-14,1.34,0.012,0.63,0,0,0,0,0,-15,0,0,0,0,0.328,92.2,157.91,0.9,0.8,788,0.5,174,1.7
+1011,2023,1,22,1,30,-14.2,1.34,0.012,0.63,0,0,0,0,0,-15,0,0,0,0,0.327,93.72,155.04,0.9,0.8,788,0.5,174,1.8
+1012,2023,1,22,2,0,-14.4,1.34,0.012,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.325,92.3,151.02,0.9,0.8,787,0.5,173,1.9
+1013,2023,1,22,2,30,-14.6,1.34,0.012,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.323,93.82,146.28,0.9,0.8,787,0.5,175,2
+1014,2023,1,22,3,0,-14.8,1.34,0.013,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.321,92.08,141.11,0.91,0.8,787,0.5,177,2.1
+1015,2023,1,22,3,30,-15,1.34,0.013,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.321,93.49,135.66,0.91,0.8,786,0.5,178,2.1
+1016,2023,1,22,4,0,-15.2,1.32,0.014,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.32,91.14,130.07,0.92,0.8,786,0.5,179,2.2
+1017,2023,1,22,4,30,-15.3,1.32,0.014,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.321,91.9,124.4,0.92,0.8,786,0.5,181,2.2
+1018,2023,1,22,5,0,-15.4,1.3,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.323,88.84,118.7,0.93,0.8,786,0.4,183,2.2
+1019,2023,1,22,5,30,-15.5,1.3,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.325,89.58,113.01,0.93,0.8,786,0.4,186,2.1
+1020,2023,1,22,6,0,-15.5,1.28,0.019,0.63,0,0,0,0,0,-17.1,0,0,0,0,0.327,87.18,107.38,0.93,0.8,785,0.4,189,2
+1021,2023,1,22,6,30,-15.4,1.28,0.019,0.63,0,0,0,0,7,-17.1,0,0,0,0,0.329,86.46,101.84,0.93,0.8,785,0.4,188,1.9
+1022,2023,1,22,7,0,-15.3,1.26,0.019,0.63,0,0,0,0,7,-17.2,0,0,0,0,0.331,85.7,96.43,0.93,0.8,785,0.4,186,1.8
+1023,2023,1,22,7,30,-14.6,1.26,0.019,0.63,4,49,3,2,7,-17.2,4,37,21,3,0.332,80.89,91.17,0.94,0.8,785,0.4,183,1.8
+1024,2023,1,22,8,0,-13.8,1.26,0.02,0.63,24,494,59,0,0,-16.2,25,460,7,57,0.333,81.74,85.95,0.94,0.8,785,0.4,180,1.8
+1025,2023,1,22,8,30,-12.5,1.26,0.02,0.63,35,695,141,0,0,-16.2,37,674,4,140,0.334,73.56,81.23,0.94,0.8,785,0.4,178,1.6
+1026,2023,1,22,9,0,-11.1,1.25,0.022,0.63,44,807,229,0,0,-14.2,44,807,0,229,0.334,77.91,76.77,0.94,0.8,785,0.4,175,1.4
+1027,2023,1,22,9,30,-9.8,1.25,0.022,0.63,52,877,313,0,0,-14.2,52,877,0,313,0.334,70.28,72.67,0.94,0.8,785,0.4,184,1.2
+1028,2023,1,22,10,0,-8.6,1.23,0.024,0.63,58,922,388,0,0,-12.1,113,716,0,369,0.333,75.63,69.01,0.94,0.8,785,0.4,192,1.1
+1029,2023,1,22,10,30,-7.3,1.23,0.024,0.63,63,954,453,0,7,-12.1,225,396,0,387,0.333,68.29,65.88,0.94,0.8,784,0.4,207,1.1
+1030,2023,1,22,11,0,-6,1.23,0.024,0.63,66,976,504,0,7,-10.7,201,567,0,455,0.332,69.31,63.35,0.94,0.8,784,0.4,222,1.2
+1031,2023,1,22,11,30,-5.1,1.23,0.024,0.63,69,990,541,0,0,-10.7,69,990,0,541,0.332,64.64,61.51,0.94,0.8,783,0.4,229,1
+1032,2023,1,22,12,0,-4.2,1.24,0.025,0.63,70,997,562,0,0,-10.2,70,997,0,562,0.332,63.07,60.42,0.94,0.8,783,0.4,236,0.8
+1033,2023,1,22,12,30,-3.8,1.24,0.025,0.63,70,999,568,0,0,-10.2,85,940,0,553,0.331,61.13,60.13,0.94,0.8,782,0.4,138,0.6
+1034,2023,1,22,13,0,-3.4,1.25,0.025,0.63,70,995,558,0,7,-10,312,299,0,459,0.331,60.34,60.64,0.94,0.8,782,0.4,41,0.4
+1035,2023,1,22,13,30,-3.2,1.25,0.025,0.63,69,985,532,0,7,-10,206,565,14,472,0.33,59.45,61.94,0.94,0.8,782,0.4,44,0.9
+1036,2023,1,22,14,0,-3.1,1.25,0.026,0.63,67,965,490,0,7,-9.8,242,388,7,412,0.33,59.93,63.97,0.95,0.8,781,0.4,46,1.4
+1037,2023,1,22,14,30,-3.2,1.25,0.026,0.63,63,937,434,0,7,-9.8,198,469,14,384,0.329,60.37,66.67,0.95,0.8,781,0.5,43,1.7
+1038,2023,1,22,15,0,-3.4,1.25,0.027,0.63,58,896,365,0,7,-8.8,135,583,32,335,0.328,66.36,69.96,0.95,0.8,781,0.5,39,1.9
+1039,2023,1,22,15,30,-4.2,1.25,0.027,0.63,52,841,287,0,7,-8.8,81,691,46,274,0.327,70.54,73.74,0.95,0.8,782,0.5,34,1.9
+1040,2023,1,22,16,0,-5,1.25,0.028,0.63,44,756,202,0,7,-9.2,108,222,7,154,0.326,72.5,77.95,0.95,0.8,782,0.5,29,1.8
+1041,2023,1,22,16,30,-6.1,1.25,0.028,0.63,34,619,115,2,7,-9.2,50,366,32,98,0.326,78.82,82.49,0.95,0.8,782,0.5,26,1.9
+1042,2023,1,22,17,0,-7.2,1.24,0.028,0.63,21,342,37,6,7,-10.7,21,43,79,23,0.325,76.08,87.26,0.95,0.8,782,0.5,22,2
+1043,2023,1,22,17,30,-7.5,1.24,0.028,0.63,0,0,0,0,7,-10.7,0,0,7,0,0.324,77.86,92.57,0.95,0.8,782,0.5,20,2.3
+1044,2023,1,22,18,0,-7.9,1.23,0.028,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.324,75.65,97.87,0.95,0.8,783,0.5,18,2.7
+1045,2023,1,22,18,30,-8.1,1.23,0.028,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.323,76.83,103.33,0.95,0.8,783,0.5,15,2.9
+1046,2023,1,22,19,0,-8.3,1.22,0.028,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.323,76.95,108.89,0.95,0.8,783,0.5,12,3.2
+1047,2023,1,22,19,30,-8.4,1.22,0.028,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.323,77.55,114.54,0.95,0.8,783,0.5,10,3.4
+1048,2023,1,22,20,0,-8.6,1.22,0.03,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.323,79.24,120.22,0.95,0.8,783,0.5,8,3.5
+1049,2023,1,22,20,30,-8.7,1.22,0.03,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.322,79.86,125.91,0.96,0.8,783,0.6,7,3.7
+1050,2023,1,22,21,0,-8.8,1.21,0.035,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.322,81.57,131.56,0.96,0.8,783,0.6,7,3.8
+1051,2023,1,22,21,30,-8.8,1.21,0.035,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.322,81.68,137.11,0.96,0.8,784,0.6,8,3.9
+1052,2023,1,22,22,0,-8.9,1.21,0.041,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.321,84.3,142.48,0.96,0.8,784,0.6,9,3.9
+1053,2023,1,22,22,30,-8.8,1.21,0.041,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.32,83.64,147.54,0.96,0.8,784,0.6,10,4
+1054,2023,1,22,23,0,-8.8,1.2,0.049,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.32,86.04,152.08,0.97,0.8,784,0.6,12,4.1
+1055,2023,1,22,23,30,-8.8,1.2,0.049,0.63,0,0,0,0,6,-10.7,0,0,0,0,0.319,86.04,155.8,0.97,0.8,784,0.6,13,4.2
+1056,2023,1,23,0,0,-8.7,1.21,0.056,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,87.35,158.23,0.97,0.8,784,0.6,15,4.4
+1057,2023,1,23,0,30,-8.7,1.21,0.056,0.63,0,0,0,0,6,-10.4,0,0,0,0,0.317,87.35,158.93,0.97,0.8,784,0.6,17,4.6
+1058,2023,1,23,1,0,-8.7,1.23,0.057,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.317,88.08,157.71,0.97,0.8,784,0.6,18,4.8
+1059,2023,1,23,1,30,-8.7,1.23,0.057,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.317,88.08,154.87,0.96,0.8,784,0.6,17,4.9
+1060,2023,1,23,2,0,-8.7,1.24,0.057,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,87.68,150.88,0.96,0.8,784,0.6,17,4.9
+1061,2023,1,23,2,30,-8.8,1.24,0.057,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,88.36,146.16,0.96,0.8,784,0.6,16,4.9
+1062,2023,1,23,3,0,-8.8,1.25,0.057,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.319,87.66,141,0.96,0.8,785,0.6,15,4.8
+1063,2023,1,23,3,30,-8.9,1.25,0.057,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.319,88.34,135.57,0.96,0.8,785,0.6,16,4.8
+1064,2023,1,23,4,0,-8.9,1.24,0.055,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.32,87.28,129.98,0.96,0.8,785,0.6,16,4.7
+1065,2023,1,23,4,30,-9,1.24,0.055,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.321,87.97,124.31,0.96,0.8,785,0.6,18,4.6
+1066,2023,1,23,5,0,-9.1,1.25,0.052,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.322,87.52,118.61,0.96,0.8,786,0.6,19,4.6
+1067,2023,1,23,5,30,-9.3,1.25,0.052,0.63,0,0,0,0,8,-10.8,0,0,0,0,0.323,88.9,112.92,0.96,0.8,786,0.6,20,4.5
+1068,2023,1,23,6,0,-9.5,1.28,0.047,0.63,0,0,0,0,8,-11.1,0,0,0,0,0.325,88.35,107.29,0.95,0.8,786,0.6,22,4.5
+1069,2023,1,23,6,30,-9.8,1.28,0.047,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.326,90.57,101.75,0.95,0.8,787,0.6,25,4.3
+1070,2023,1,23,7,0,-10,1.31,0.038,0.63,0,0,0,0,4,-11.5,0,0,0,0,0.328,88.71,96.32,0.95,0.8,787,0.5,28,4.2
+1071,2023,1,23,7,30,-9.5,1.31,0.038,0.63,5,50,4,3,8,-11.5,2,0,43,2,0.33,85.29,91.06,0.94,0.8,787,0.5,31,4.4
+1072,2023,1,23,8,0,-8.9,1.34,0.032,0.63,25,449,58,5,8,-10.9,31,157,71,42,0.333,85.38,85.84,0.94,0.8,787,0.5,33,4.6
+1073,2023,1,23,8,30,-7.8,1.34,0.032,0.63,39,661,141,0,0,-10.9,41,568,4,129,0.335,78.48,81.1,0.94,0.8,788,0.5,36,4.9
+1074,2023,1,23,9,0,-6.7,1.36,0.029,0.63,47,783,228,0,0,-9.6,49,644,0,198,0.337,79.75,76.63,0.94,0.8,788,0.5,38,5.2
+1075,2023,1,23,9,30,-5.8,1.36,0.029,0.63,54,858,312,0,0,-9.6,51,674,0,254,0.338,74.45,72.51,0.93,0.8,788,0.5,39,5
+1076,2023,1,23,10,0,-4.9,1.36,0.026,0.63,59,909,387,0,0,-8.6,61,813,0,354,0.34,75.14,68.84,0.93,0.8,788,0.5,39,4.8
+1077,2023,1,23,10,30,-4.1,1.36,0.026,0.63,64,943,452,0,0,-8.6,64,943,0,452,0.34,70.75,65.69,0.93,0.8,788,0.5,35,4.4
+1078,2023,1,23,11,0,-3.4,1.36,0.025,0.63,66,969,504,0,0,-7.7,66,969,0,504,0.34,72.07,63.15,0.93,0.8,788,0.5,31,4
+1079,2023,1,23,11,30,-2.9,1.36,0.025,0.63,69,985,542,0,0,-7.7,69,985,0,542,0.339,69.35,61.29,0.93,0.8,787,0.5,23,3.7
+1080,2023,1,23,12,0,-2.3,1.36,0.025,0.63,69,993,563,0,0,-7.3,69,993,0,563,0.338,68.59,60.19,0.93,0.8,787,0.5,15,3.5
+1081,2023,1,23,12,30,-2.1,1.36,0.025,0.63,70,995,569,0,0,-7.3,70,995,0,569,0.337,67.58,59.89,0.93,0.8,787,0.5,8,3.5
+1082,2023,1,23,13,0,-1.8,1.36,0.025,0.63,71,991,560,0,0,-7,71,991,0,560,0.336,67.75,60.4,0.93,0.8,787,0.5,2,3.6
+1083,2023,1,23,13,30,-1.8,1.36,0.025,0.63,68,982,534,0,0,-7,68,982,0,534,0.334,67.75,61.69,0.93,0.8,787,0.5,179,3.6
+1084,2023,1,23,14,0,-1.8,1.35,0.025,0.63,65,966,493,0,0,-6.9,65,966,0,493,0.332,68.37,63.73,0.93,0.8,787,0.5,356,3.5
+1085,2023,1,23,14,30,-2,1.35,0.025,0.63,62,942,439,0,0,-6.9,62,942,0,439,0.331,69.38,66.43,0.94,0.8,787,0.5,355,3.3
+1086,2023,1,23,15,0,-2.3,1.35,0.025,0.63,58,906,372,0,0,-6.8,58,906,0,372,0.329,71.34,69.72,0.94,0.8,787,0.5,354,3.1
+1087,2023,1,23,15,30,-3.4,1.35,0.025,0.63,52,854,294,0,0,-6.8,52,854,0,294,0.328,77.41,73.52,0.94,0.8,787,0.5,354,2.6
+1088,2023,1,23,16,0,-4.6,1.35,0.025,0.63,44,774,208,0,0,-8,44,774,0,208,0.327,77.41,77.73,0.94,0.8,788,0.5,354,2.1
+1089,2023,1,23,16,30,-6.1,1.35,0.025,0.63,34,646,121,0,0,-8,34,646,0,121,0.327,86.74,82.28,0.94,0.8,788,0.4,357,1.8
+1090,2023,1,23,17,0,-7.7,1.36,0.024,0.63,21,377,40,0,0,-9.9,22,349,7,40,0.327,84.08,87.05,0.94,0.8,788,0.4,360,1.4
+1091,2023,1,23,17,30,-8.2,1.36,0.024,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.327,87.4,92.37,0.94,0.8,788,0.4,183,1.3
+1092,2023,1,23,18,0,-8.8,1.36,0.023,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.328,86.66,97.68,0.94,0.8,788,0.4,6,1.3
+1093,2023,1,23,18,30,-9.2,1.36,0.023,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.327,89.53,103.13,0.94,0.8,789,0.4,6,1.2
+1094,2023,1,23,19,0,-9.7,1.36,0.022,0.63,0,0,0,0,0,-11,0,0,0,0,0.327,90.33,108.7,0.94,0.8,789,0.4,6,1.1
+1095,2023,1,23,19,30,-10,1.36,0.022,0.63,0,0,0,0,0,-11,0,0,0,0,0.326,92.49,114.35,0.94,0.8,789,0.4,6,1
+1096,2023,1,23,20,0,-10.4,1.36,0.021,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.325,93.59,120.03,0.93,0.8,789,0.4,5,0.9
+1097,2023,1,23,20,30,-10.6,1.36,0.021,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.324,95.09,125.72,0.93,0.8,789,0.4,8,0.8
+1098,2023,1,23,21,0,-10.9,1.35,0.02,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.323,96.21,131.37,0.93,0.8,789,0.4,11,0.7
+1099,2023,1,23,21,30,-11.1,1.35,0.02,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.323,97.76,136.92,0.93,0.8,789,0.4,21,0.5
+1100,2023,1,23,22,0,-11.4,1.34,0.018,0.63,0,0,0,0,0,-11.6,0,0,0,0,0.323,98.61,142.28,0.92,0.8,789,0.4,31,0.4
+1101,2023,1,23,22,30,-11.7,1.34,0.018,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.323,100,147.32,0.92,0.8,789,0.4,55,0.3
+1102,2023,1,23,23,0,-12,1.32,0.018,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,100,151.86,0.92,0.8,789,0.4,79,0.2
+1103,2023,1,23,23,30,-12.3,1.32,0.018,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.322,100,155.56,0.93,0.8,789,0.4,76,0.2
+1104,2023,1,24,0,0,-12.5,1.29,0.019,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.322,100,157.99,0.93,0.8,789,0.4,72,0.2
+1105,2023,1,24,0,30,-12.6,1.29,0.019,0.63,0,0,0,0,0,-12.6,0,0,0,0,0.32,100,158.69,0.93,0.8,789,0.4,41,0.2
+1106,2023,1,24,1,0,-12.6,1.27,0.019,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.319,97.95,157.5,0.93,0.8,789,0.4,10,0.2
+1107,2023,1,24,1,30,-12.3,1.27,0.019,0.63,0,0,0,0,7,-12.9,0,0,0,0,0.318,95.61,154.69,0.94,0.8,789,0.4,183,0.3
+1108,2023,1,24,2,0,-11.9,1.26,0.023,0.63,0,0,0,0,7,-12.7,0,0,0,0,0.318,93.44,150.73,0.94,0.8,790,0.4,357,0.5
+1109,2023,1,24,2,30,-11.6,1.26,0.023,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.318,91.1,146.04,0.95,0.8,789,0.5,189,0.5
+1110,2023,1,24,3,0,-11.3,1.25,0.027,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.318,90.33,140.89,0.95,0.8,789,0.5,21,0.5
+1111,2023,1,24,3,30,-11.1,1.25,0.027,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.317,88.9,135.47,0.95,0.8,789,0.5,34,0.5
+1112,2023,1,24,4,0,-10.9,1.25,0.029,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.317,88.28,129.88,0.95,0.8,789,0.5,47,0.5
+1113,2023,1,24,4,30,-10.9,1.25,0.029,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.317,88.39,124.21,0.95,0.8,790,0.5,46,0.5
+1114,2023,1,24,5,0,-10.8,1.26,0.03,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.317,87.3,118.52,0.95,0.8,790,0.5,45,0.5
+1115,2023,1,24,5,30,-10.9,1.26,0.03,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.318,88,112.83,0.94,0.8,790,0.5,38,0.5
+1116,2023,1,24,6,0,-10.9,1.27,0.029,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.319,86.07,107.19,0.94,0.8,790,0.5,30,0.6
+1117,2023,1,24,6,30,-11.1,1.27,0.029,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.321,87.46,101.64,0.94,0.8,790,0.5,22,0.7
+1118,2023,1,24,7,0,-11.2,1.27,0.028,0.63,0,0,0,0,4,-13,0,0,0,0,0.323,86.29,96.21,0.94,0.8,791,0.4,14,0.9
+1119,2023,1,24,7,30,-10.7,1.27,0.028,0.63,7,81,6,3,8,-13,3,0,43,3,0.327,82.92,90.94,0.94,0.8,791,0.4,186,1.3
+1120,2023,1,24,8,0,-10.3,1.27,0.03,0.63,26,469,61,6,8,-12.9,33,63,89,38,0.33,81.04,85.71,0.95,0.8,791,0.4,359,1.7
+1121,2023,1,24,8,30,-9.1,1.27,0.03,0.63,39,673,145,1,7,-12.9,74,286,14,119,0.334,73.73,80.96,0.95,0.8,791,0.4,355,2.5
+1122,2023,1,24,9,0,-7.9,1.25,0.031,0.63,48,789,233,0,7,-11.7,125,314,0,198,0.337,74.02,76.47,0.95,0.8,792,0.4,351,3.2
+1123,2023,1,24,9,30,-7.2,1.25,0.031,0.63,56,864,318,0,7,-11.7,143,454,0,281,0.34,70.12,72.35,0.95,0.8,792,0.4,349,3.6
+1124,2023,1,24,10,0,-6.4,1.25,0.029,0.63,62,914,395,0,0,-11,70,884,0,392,0.343,69.62,68.66,0.95,0.8,792,0.4,347,4
+1125,2023,1,24,10,30,-5.8,1.25,0.029,0.63,66,947,459,0,0,-11,66,947,0,459,0.345,66.51,65.49,0.95,0.8,792,0.4,345,4.1
+1126,2023,1,24,11,0,-5.2,1.24,0.029,0.63,70,969,511,0,0,-10.4,70,969,0,511,0.348,66.8,62.94,0.95,0.8,791,0.4,343,4.2
+1127,2023,1,24,11,30,-4.7,1.24,0.029,0.63,71,987,548,0,0,-10.4,95,913,0,537,0.349,64.33,61.07,0.94,0.8,791,0.4,341,4.3
+1128,2023,1,24,12,0,-4.2,1.26,0.024,0.63,70,999,570,0,0,-10.1,70,999,0,570,0.351,63.41,59.96,0.94,0.8,791,0.4,339,4.4
+1129,2023,1,24,12,30,-3.9,1.26,0.024,0.63,69,1008,578,0,0,-10.1,69,1008,0,578,0.353,62,59.65,0.93,0.8,791,0.4,338,4.6
+1130,2023,1,24,13,0,-3.6,1.26,0.018,0.63,65,1017,571,0,0,-10.5,65,1017,0,571,0.355,58.84,60.15,0.93,0.8,790,0.3,336,4.8
+1131,2023,1,24,13,30,-3.5,1.26,0.018,0.63,61,1012,545,0,0,-10.5,61,1012,0,545,0.356,58.4,61.45,0.91,0.8,790,0.3,336,4.8
+1132,2023,1,24,14,0,-3.4,1.26,0.013,0.63,56,1001,503,0,0,-11,56,1001,0,503,0.358,55.5,63.48,0.9,0.8,790,0.3,336,4.7
+1133,2023,1,24,14,30,-3.6,1.26,0.013,0.63,52,980,448,0,0,-11,52,980,0,448,0.358,56.33,66.19,0.9,0.8,790,0.3,335,4.6
+1134,2023,1,24,15,0,-3.9,1.26,0.01,0.63,46,951,379,0,0,-11.3,46,951,0,379,0.359,56.66,69.49,0.89,0.8,790,0.3,335,4.4
+1135,2023,1,24,15,30,-4.9,1.26,0.01,0.63,41,903,301,0,0,-11.3,41,903,0,301,0.359,61.09,73.29,0.89,0.8,790,0.3,334,3.9
+1136,2023,1,24,16,0,-5.9,1.26,0.01,0.63,36,829,215,0,0,-12.1,36,829,0,215,0.359,61.55,77.51,0.89,0.8,790,0.3,333,3.5
+1137,2023,1,24,16,30,-7.6,1.26,0.01,0.63,31,698,127,0,0,-12.1,31,698,0,127,0.359,70.21,82.07,0.91,0.8,791,0.3,330,3.1
+1138,2023,1,24,17,0,-9.3,1.22,0.018,0.63,21,415,44,0,0,-13.8,21,415,0,44,0.359,70.01,86.85,0.93,0.8,791,0.3,328,2.8
+1139,2023,1,24,17,30,-9.9,1.22,0.018,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.359,73.4,92.16,0.94,0.8,791,0.3,325,2.9
+1140,2023,1,24,18,0,-10.5,1.16,0.023,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.359,74.9,97.48,0.94,0.8,791,0.3,323,3
+1141,2023,1,24,18,30,-10.6,1.16,0.023,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.36,75.5,102.94,0.94,0.8,791,0.3,321,3
+1142,2023,1,24,19,0,-10.7,1.16,0.023,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.362,77.67,108.51,0.94,0.8,791,0.3,320,3
+1143,2023,1,24,19,30,-11,1.16,0.023,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.364,79.54,114.16,0.94,0.8,791,0.4,320,2.9
+1144,2023,1,24,20,0,-11.2,1.18,0.021,0.63,0,0,0,0,7,-14,0,0,0,0,0.366,79.69,119.84,0.93,0.8,791,0.4,321,2.8
+1145,2023,1,24,20,30,-11.5,1.18,0.021,0.63,0,0,0,0,0,-14,0,0,0,0,0.369,81.62,125.53,0.93,0.8,791,0.4,322,2.7
+1146,2023,1,24,21,0,-11.8,1.19,0.02,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.371,81.69,131.18,0.93,0.8,791,0.4,323,2.6
+1147,2023,1,24,21,30,-11.8,1.19,0.02,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.373,81.69,136.72,0.93,0.8,791,0.4,324,2.4
+1148,2023,1,24,22,0,-11.8,1.17,0.02,0.63,0,0,0,0,7,-14.1,0,0,0,0,0.375,83.08,142.07,0.93,0.8,791,0.4,324,2.2
+1149,2023,1,24,22,30,-11.6,1.17,0.02,0.63,0,0,0,0,7,-14.1,0,0,0,0,0.376,81.76,147.11,0.93,0.8,791,0.4,325,2.1
+1150,2023,1,24,23,0,-11.5,1.15,0.021,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.377,84.24,151.63,0.94,0.8,791,0.4,326,2
+1151,2023,1,24,23,30,-11.3,1.15,0.021,0.63,0,0,0,0,7,-13.6,0,0,0,0,0.377,82.9,155.32,0.94,0.8,791,0.4,328,2
+1152,2023,1,25,0,0,-11.2,1.15,0.024,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.377,84.21,157.74,0.94,0.8,791,0.4,329,2
+1153,2023,1,25,0,30,-11.2,1.15,0.024,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.376,84.21,158.45,0.94,0.8,791,0.4,332,2
+1154,2023,1,25,1,0,-11.1,1.15,0.025,0.63,0,0,0,0,7,-13.1,0,0,0,0,0.375,84.83,157.29,0.94,0.8,791,0.4,334,2.1
+1155,2023,1,25,1,30,-11.2,1.15,0.025,0.63,0,0,0,0,7,-13.1,0,0,0,0,0.374,85.51,154.51,0.94,0.8,791,0.4,334,2.2
+1156,2023,1,25,2,0,-11.3,1.16,0.026,0.63,0,0,0,0,7,-13.2,0,0,0,0,0.372,85.87,150.57,0.94,0.8,791,0.4,334,2.3
+1157,2023,1,25,2,30,-11.4,1.16,0.026,0.63,0,0,0,0,7,-13.2,0,0,0,0,0.37,86.56,145.9,0.94,0.8,791,0.4,335,2.5
+1158,2023,1,25,3,0,-11.5,1.19,0.026,0.63,0,0,0,0,6,-13.4,0,0,0,0,0.368,85.55,140.77,0.94,0.8,791,0.4,336,2.7
+1159,2023,1,25,3,30,-11.8,1.19,0.026,0.63,0,0,0,0,7,-13.4,0,0,0,0,0.366,87.63,135.36,0.94,0.8,791,0.4,337,2.6
+1160,2023,1,25,4,0,-12.1,1.23,0.022,0.63,0,0,0,0,7,-14,0,0,0,0,0.364,85.75,129.78,0.94,0.8,791,0.3,338,2.6
+1161,2023,1,25,4,30,-12.6,1.23,0.022,0.63,0,0,0,0,7,-14,0,0,0,0,0.362,89.27,124.11,0.93,0.8,791,0.3,337,2.4
+1162,2023,1,25,5,0,-13.1,1.29,0.019,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.36,86.7,118.42,0.92,0.8,792,0.3,337,2.1
+1163,2023,1,25,5,30,-13.5,1.29,0.019,0.63,0,0,0,0,4,-14.8,0,0,0,0,0.358,89.56,112.73,0.92,0.8,792,0.3,335,2
+1164,2023,1,25,6,0,-13.9,1.33,0.017,0.63,0,0,0,0,5,-15.4,0,0,0,0,0.356,88.26,107.09,0.92,0.8,792,0.3,333,1.8
+1165,2023,1,25,6,30,-14,1.33,0.017,0.63,0,0,0,0,5,-15.4,0,0,0,0,0.355,88.99,101.53,0.92,0.8,792,0.3,331,1.7
+1166,2023,1,25,7,0,-14.1,1.36,0.018,0.63,0,0,0,0,5,-15.7,0,0,0,0,0.353,88.02,96.09,0.92,0.8,793,0.3,329,1.7
+1167,2023,1,25,7,30,-13.3,1.36,0.018,0.63,7,98,7,2,0,-15.7,5,51,29,5,0.353,82.45,90.29,0.92,0.8,793,0.3,329,1.8
+1168,2023,1,25,8,0,-12.5,1.37,0.021,0.63,25,522,65,1,0,-15.1,27,440,18,61,0.353,80.66,85.58,0.92,0.8,793,0.3,329,2
+1169,2023,1,25,8,30,-10.8,1.37,0.021,0.63,37,716,151,0,0,-15.1,37,716,0,151,0.354,70.48,80.81,0.92,0.8,794,0.3,335,2.4
+1170,2023,1,25,9,0,-9.1,1.38,0.022,0.63,46,825,241,0,0,-13.1,75,596,0,216,0.356,72.57,76.31,0.92,0.8,794,0.3,341,2.9
+1171,2023,1,25,9,30,-8,1.38,0.022,0.63,52,895,326,0,7,-13.1,142,448,0,279,0.357,66.6,72.17,0.92,0.8,794,0.3,348,3
+1172,2023,1,25,10,0,-6.9,1.38,0.02,0.63,57,943,403,0,7,-11.9,159,550,0,361,0.358,67.67,68.47,0.92,0.8,794,0.3,354,3.1
+1173,2023,1,25,10,30,-6.4,1.38,0.02,0.63,61,973,468,0,7,-11.9,229,425,0,407,0.359,65.12,65.29,0.93,0.8,794,0.3,357,2.9
+1174,2023,1,25,11,0,-6,1.35,0.021,0.63,64,994,520,0,0,-11.7,119,839,0,504,0.361,64.17,62.72,0.93,0.8,794,0.3,359,2.6
+1175,2023,1,25,11,30,-6,1.35,0.021,0.63,68,1006,558,0,0,-11.7,68,1006,0,558,0.362,64.17,60.84,0.94,0.8,794,0.3,354,2.4
+1176,2023,1,25,12,0,-5.9,1.29,0.023,0.63,70,1012,580,0,0,-11.8,129,778,7,521,0.363,62.9,59.72,0.94,0.8,794,0.3,350,2.1
+1177,2023,1,25,12,30,-5.9,1.29,0.023,0.63,72,1012,587,0,7,-11.8,206,634,0,529,0.365,62.9,59.4,0.94,0.8,794,0.3,342,2
+1178,2023,1,25,13,0,-6,1.25,0.025,0.63,71,1006,576,0,8,-11.9,245,381,0,436,0.367,62.84,59.9,0.94,0.8,794,0.3,334,2
+1179,2023,1,25,13,30,-6.1,1.25,0.025,0.63,69,996,549,0,8,-11.9,261,37,0,279,0.368,63.32,61.2,0.94,0.8,794,0.3,330,2.1
+1180,2023,1,25,14,0,-6.1,1.23,0.025,0.63,67,980,508,0,7,-11.9,234,318,0,377,0.37,63.39,63.23,0.94,0.8,794,0.3,325,2.1
+1181,2023,1,25,14,30,-6.2,1.23,0.025,0.63,63,960,454,0,8,-11.9,180,135,0,235,0.371,63.88,65.94,0.94,0.8,794,0.3,326,2.1
+1182,2023,1,25,15,0,-6.2,1.23,0.022,0.63,57,930,386,0,0,-11.6,87,596,4,298,0.372,65.64,69.25,0.94,0.8,794,0.3,327,2
+1183,2023,1,25,15,30,-6.6,1.23,0.022,0.63,49,884,307,0,0,-11.6,49,884,0,307,0.372,67.68,73.05,0.94,0.8,794,0.3,330,1.8
+1184,2023,1,25,16,0,-7.1,1.26,0.017,0.63,42,815,221,0,0,-12.4,42,815,0,221,0.372,66.11,77.28,0.93,0.8,794,0.3,332,1.6
+1185,2023,1,25,16,30,-8,1.26,0.017,0.63,32,699,131,0,0,-12.4,32,699,0,131,0.372,70.87,81.85,0.92,0.8,794,0.3,336,1.3
+1186,2023,1,25,17,0,-8.9,1.3,0.014,0.63,21,440,47,0,0,-13.5,21,440,0,47,0.373,69.13,86.64,0.92,0.8,794,0.3,340,1
+1187,2023,1,25,17,30,-9.5,1.3,0.014,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.372,72.45,91.96,0.91,0.8,794,0.3,339,1
+1188,2023,1,25,18,0,-10.1,1.31,0.012,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.372,69.2,97.27,0.91,0.8,794,0.3,338,1
+1189,2023,1,25,18,30,-10.7,1.31,0.012,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.371,72.66,102.74,0.91,0.8,795,0.3,336,1.1
+1190,2023,1,25,19,0,-11.2,1.32,0.011,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.371,71.2,108.32,0.91,0.8,795,0.3,334,1.3
+1191,2023,1,25,19,30,-11.7,1.32,0.011,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.37,74.11,113.96,0.91,0.8,795,0.3,337,1.3
+1192,2023,1,25,20,0,-12.3,1.31,0.011,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.37,75.57,119.65,0.91,0.8,795,0.3,340,1.4
+1193,2023,1,25,20,30,-12.7,1.31,0.011,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.371,78.05,125.34,0.91,0.8,795,0.3,346,1.5
+1194,2023,1,25,21,0,-13.2,1.31,0.011,0.63,0,0,0,0,7,-15.8,0,0,0,0,0.371,80.8,130.98,0.91,0.8,795,0.3,351,1.5
+1195,2023,1,25,21,30,-13.5,1.31,0.011,0.63,0,0,0,0,8,-15.8,0,0,0,0,0.372,82.9,136.52,0.91,0.8,796,0.3,176,1.4
+1196,2023,1,25,22,0,-13.8,1.3,0.011,0.63,0,0,0,0,7,-15.7,0,0,0,0,0.372,85.47,141.86,0.91,0.8,796,0.3,0,1.4
+1197,2023,1,25,22,30,-14.2,1.3,0.011,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.372,88.32,146.89,0.91,0.8,796,0.3,4,1.3
+1198,2023,1,25,23,0,-14.5,1.29,0.011,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.372,89.89,151.4,0.91,0.8,796,0.3,7,1.3
+1199,2023,1,25,23,30,-14.9,1.29,0.011,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.37,92.9,155.07,0.91,0.8,796,0.3,11,1.3
+1200,2023,1,26,0,0,-15.2,1.28,0.012,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.369,92.82,157.49,0.91,0.8,796,0.3,14,1.3
+1201,2023,1,26,0,30,-15.5,1.28,0.012,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.367,95.16,158.2,0.91,0.8,796,0.3,18,1.3
+1202,2023,1,26,1,0,-15.8,1.27,0.012,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.365,94.77,157.06,0.91,0.8,797,0.3,21,1.2
+1203,2023,1,26,1,30,-15.8,1.27,0.012,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.362,94.77,154.31,0.92,0.8,797,0.3,20,1.2
+1204,2023,1,26,2,0,-15.9,1.27,0.013,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.36,94.13,150.41,0.92,0.8,797,0.3,20,1.2
+1205,2023,1,26,2,30,-15.9,1.27,0.013,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.357,94.13,145.76,0.92,0.8,797,0.3,15,1.1
+1206,2023,1,26,3,0,-15.8,1.29,0.014,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.354,93.5,140.64,0.92,0.8,797,0.3,9,1
+1207,2023,1,26,3,30,-15.9,1.29,0.014,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.352,94.28,135.24,0.92,0.8,797,0.3,5,0.9
+1208,2023,1,26,4,0,-15.9,1.32,0.015,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.349,94,129.67,0.92,0.8,797,0.3,1,0.8
+1209,2023,1,26,4,30,-16,1.32,0.015,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.346,94.78,124.01,0.92,0.8,797,0.3,178,0.8
+1210,2023,1,26,5,0,-16.2,1.32,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.344,95.26,118.31,0.92,0.8,797,0.3,355,0.7
+1211,2023,1,26,5,30,-16.2,1.32,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.344,95.26,112.62,0.92,0.8,797,0.3,347,0.6
+1212,2023,1,26,6,0,-16.2,1.33,0.017,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.343,94.48,106.98,0.92,0.8,797,0.3,339,0.5
+1213,2023,1,26,6,30,-16.2,1.33,0.017,0.63,0,0,0,0,7,-16.9,0,0,0,0,0.342,94.48,101.41,0.92,0.8,797,0.3,298,0.4
+1214,2023,1,26,7,0,-16.1,1.33,0.018,0.63,0,0,0,0,0,-17,0,0,0,0,0.342,93.14,95.97,0.92,0.8,797,0.3,256,0.4
+1215,2023,1,26,7,30,-15.4,1.33,0.018,0.63,7,105,7,0,0,-17,7,105,0,7,0.341,87.88,90.17,0.92,0.8,797,0.3,234,0.7
+1216,2023,1,26,8,0,-14.6,1.35,0.018,0.63,25,540,68,0,0,-16.6,24,521,4,66,0.341,84.51,85.43,0.92,0.8,797,0.3,211,1
+1217,2023,1,26,8,30,-13,1.35,0.018,0.63,36,724,153,0,0,-16.6,41,669,0,150,0.34,74.16,80.66,0.91,0.8,797,0.4,209,1.3
+1218,2023,1,26,9,0,-11.3,1.36,0.017,0.63,43,826,241,0,0,-14.5,43,826,0,241,0.338,77.25,76.15,0.91,0.8,797,0.4,207,1.7
+1219,2023,1,26,9,30,-9.6,1.36,0.017,0.63,50,894,326,0,0,-14.5,50,894,0,326,0.336,67.51,71.99,0.91,0.8,797,0.4,222,2.1
+1220,2023,1,26,10,0,-7.9,1.36,0.017,0.63,55,937,402,0,0,-12.1,55,937,0,402,0.333,71.84,68.28,0.91,0.8,797,0.4,237,2.6
+1221,2023,1,26,10,30,-6.6,1.36,0.017,0.63,62,955,464,0,0,-12.1,62,955,0,464,0.331,64.99,65.08,0.92,0.8,797,0.5,246,2.9
+1222,2023,1,26,11,0,-5.3,1.17,0.027,0.63,69,966,515,0,0,-10.3,69,966,0,515,0.328,67.68,62.5,0.94,0.8,796,0.5,255,3.3
+1223,2023,1,26,11,30,-4.5,1.17,0.027,0.63,72,978,552,0,0,-10.3,72,978,0,552,0.327,63.71,60.61,0.94,0.8,796,0.5,258,3.4
+1224,2023,1,26,12,0,-3.8,1.16,0.027,0.63,73,981,571,0,0,-9.3,200,615,0,512,0.325,65.86,59.48,0.94,0.8,795,0.6,261,3.6
+1225,2023,1,26,12,30,-3.3,1.16,0.027,0.63,72,984,577,0,7,-9.3,310,148,0,386,0.324,63.44,59.15,0.94,0.8,795,0.6,263,3.7
+1226,2023,1,26,13,0,-2.9,1.17,0.024,0.63,71,983,568,0,7,-8.5,294,324,0,458,0.322,65.46,59.65,0.94,0.8,794,0.6,265,3.9
+1227,2023,1,26,13,30,-2.8,1.17,0.024,0.63,68,975,542,0,7,-8.5,277,378,0,461,0.32,64.98,60.94,0.94,0.8,794,0.6,264,3.9
+1228,2023,1,26,14,0,-2.6,1.2,0.023,0.63,66,960,502,0,7,-7.9,294,230,0,398,0.317,66.96,62.98,0.94,0.8,794,0.6,262,3.9
+1229,2023,1,26,14,30,-2.7,1.2,0.023,0.63,62,936,447,0,7,-7.9,233,338,0,372,0.315,67.46,65.7,0.94,0.8,794,0.6,259,3.6
+1230,2023,1,26,15,0,-2.8,1.22,0.022,0.63,56,903,380,0,6,-7.5,146,56,0,166,0.314,70.28,69,0.94,0.8,793,0.6,256,3.4
+1231,2023,1,26,15,30,-3.6,1.22,0.022,0.63,52,851,303,0,6,-7.5,86,1,0,86,0.313,74.6,72.82,0.94,0.8,793,0.7,250,2.8
+1232,2023,1,26,16,0,-4.3,1.22,0.022,0.63,45,774,218,0,6,-7.7,59,0,0,59,0.313,77.04,77.05,0.94,0.8,793,0.7,244,2.2
+1233,2023,1,26,16,30,-5.5,1.22,0.022,0.63,35,648,129,4,7,-7.7,44,2,57,44,0.314,84.35,81.63,0.94,0.8,793,0.7,241,1.9
+1234,2023,1,26,17,0,-6.7,1.23,0.024,0.63,23,420,49,7,7,-9.3,19,0,100,19,0.315,81.54,86.44,0.94,0.8,793,0.7,237,1.7
+1235,2023,1,26,17,30,-7.1,1.23,0.024,0.63,3,36,2,2,7,-9.3,1,0,29,1,0.315,84.08,91.75,0.95,0.8,793,0.7,234,1.7
+1236,2023,1,26,18,0,-7.6,1.23,0.028,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.316,83.72,97.07,0.95,0.8,794,0.7,232,1.8
+1237,2023,1,26,18,30,-7.6,1.23,0.028,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.315,83.72,102.54,0.95,0.8,794,0.7,229,1.9
+1238,2023,1,26,19,0,-7.6,1.21,0.03,0.63,0,0,0,0,4,-9.6,0,0,0,0,0.315,85.29,108.12,0.95,0.8,793,0.7,225,2.1
+1239,2023,1,26,19,30,-7.6,1.21,0.03,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.315,85.29,113.77,0.95,0.8,793,0.7,221,2.2
+1240,2023,1,26,20,0,-7.6,1.2,0.026,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.314,88.58,119.46,0.95,0.8,794,0.7,216,2.4
+1241,2023,1,26,20,30,-7.6,1.2,0.026,0.63,0,0,0,0,6,-9.2,0,0,0,0,0.313,88.47,125.15,0.95,0.8,793,0.7,212,2.5
+1242,2023,1,26,21,0,-7.6,1.2,0.022,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.313,90.6,130.79,0.95,0.8,793,0.7,208,2.6
+1243,2023,1,26,21,30,-7.7,1.2,0.022,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.313,91.3,136.32,0.95,0.8,793,0.7,205,2.7
+1244,2023,1,26,22,0,-7.8,1.21,0.021,0.63,0,0,0,0,6,-8.8,0,0,0,0,0.313,92.69,141.66,0.95,0.8,793,0.7,201,2.8
+1245,2023,1,26,22,30,-7.9,1.21,0.021,0.63,0,0,0,0,6,-8.8,0,0,0,0,0.314,93.41,146.67,0.95,0.8,793,0.7,198,2.9
+1246,2023,1,26,23,0,-8,1.23,0.02,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.314,93.54,151.16,0.95,0.8,793,0.7,195,3
+1247,2023,1,26,23,30,-8.1,1.23,0.02,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.315,94.27,154.82,0.95,0.8,793,0.7,194,3.1
+1248,2023,1,27,0,0,-8.3,1.23,0.02,0.63,0,0,0,0,6,-9.2,0,0,0,0,0.316,93.56,157.23,0.95,0.8,792,0.7,192,3.1
+1249,2023,1,27,0,30,-8.5,1.23,0.02,0.63,0,0,0,0,6,-9.2,0,0,0,0,0.317,95.02,157.95,0.95,0.8,792,0.7,193,3.1
+1250,2023,1,27,1,0,-8.7,1.23,0.02,0.63,0,0,0,0,6,-9.6,0,0,0,0,0.318,93.11,156.83,0.95,0.8,792,0.7,193,3.1
+1251,2023,1,27,1,30,-8.8,1.23,0.02,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.318,93.84,154.11,0.95,0.8,792,0.7,192,3.1
+1252,2023,1,27,2,0,-8.9,1.23,0.021,0.63,0,0,0,0,7,-10,0,0,0,0,0.318,91.86,150.24,0.95,0.8,792,0.7,192,3
+1253,2023,1,27,2,30,-8.9,1.23,0.021,0.63,0,0,0,0,7,-10,0,0,0,0,0.317,91.74,145.61,0.95,0.8,791,0.7,191,2.9
+1254,2023,1,27,3,0,-9,1.21,0.022,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.317,90.64,140.51,0.95,0.8,791,0.7,189,2.8
+1255,2023,1,27,3,30,-9,1.21,0.022,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.316,90.64,135.12,0.95,0.8,791,0.7,188,2.8
+1256,2023,1,27,4,0,-9.1,1.19,0.023,0.63,0,0,0,0,6,-10.5,0,0,0,0,0.314,89.9,129.55,0.95,0.8,791,0.7,186,2.8
+1257,2023,1,27,4,30,-9.1,1.19,0.023,0.63,0,0,0,0,6,-10.5,0,0,0,0,0.313,89.78,123.89,0.96,0.8,790,0.7,184,3
+1258,2023,1,27,5,0,-9.1,1.18,0.024,0.63,0,0,0,0,6,-10.6,0,0,0,0,0.312,88.87,118.2,0.96,0.8,790,0.7,183,3.1
+1259,2023,1,27,5,30,-9.1,1.18,0.024,0.63,0,0,0,0,6,-10.6,0,0,0,0,0.31,88.87,112.5,0.96,0.8,790,0.7,183,3.3
+1260,2023,1,27,6,0,-9.1,1.17,0.025,0.63,0,0,0,0,6,-10.7,0,0,0,0,0.309,87.84,106.86,0.96,0.8,789,0.7,184,3.4
+1261,2023,1,27,6,30,-9.1,1.17,0.025,0.63,0,0,0,0,6,-10.7,0,0,0,0,0.307,87.84,101.29,0.96,0.8,789,0.7,186,3.4
+1262,2023,1,27,7,0,-9.1,1.16,0.028,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.305,87.33,95.84,0.96,0.8,789,0.7,188,3.4
+1263,2023,1,27,7,30,-8.9,1.16,0.028,0.63,7,80,7,3,6,-10.8,3,0,43,3,0.304,85.97,90.06,0.96,0.8,789,0.7,190,3.7
+1264,2023,1,27,8,0,-8.6,1.15,0.033,0.63,28,457,65,7,6,-10.5,24,0,100,24,0.303,86.47,85.3,0.96,0.8,789,0.7,192,3.9
+1265,2023,1,27,8,30,-8.2,1.15,0.033,0.63,42,651,149,1,6,-10.5,44,0,14,44,0.304,83.82,80.51,0.96,0.8,789,0.7,193,4.3
+1266,2023,1,27,9,0,-7.8,1.15,0.038,0.63,52,759,236,0,6,-9.7,75,1,0,75,0.304,86.16,75.98,0.96,0.8,788,0.7,195,4.6
+1267,2023,1,27,9,30,-7.2,1.15,0.038,0.63,61,831,320,0,6,-9.7,135,12,0,139,0.305,82.26,71.81,0.96,0.8,788,0.7,197,5.1
+1268,2023,1,27,10,0,-6.6,1.15,0.041,0.63,68,878,396,0,7,-8.6,201,33,0,213,0.305,85.68,68.08,0.96,0.8,788,0.7,200,5.5
+1269,2023,1,27,10,30,-5.9,1.15,0.041,0.63,72,913,460,0,7,-8.6,278,73,0,309,0.306,81.11,64.87,0.96,0.8,787,0.7,202,5.8
+1270,2023,1,27,11,0,-5.3,1.17,0.039,0.63,76,937,512,0,7,-7.5,296,49,0,319,0.306,84.42,62.27,0.96,0.8,786,0.7,204,6.1
+1271,2023,1,27,11,30,-4.7,1.17,0.039,0.63,77,956,550,0,6,-7.5,250,19,0,259,0.306,80.68,60.37,0.96,0.8,786,0.7,205,6.4
+1272,2023,1,27,12,0,-4.1,1.2,0.032,0.63,77,970,573,0,6,-6.6,241,7,0,245,0.306,82.84,59.23,0.96,0.8,785,0.7,207,6.7
+1273,2023,1,27,12,30,-3.6,1.2,0.032,0.63,75,976,579,0,6,-6.6,257,14,0,264,0.306,79.69,58.9,0.96,0.8,784,0.7,209,6.8
+1274,2023,1,27,13,0,-3,1.21,0.026,0.63,73,977,570,0,7,-5.7,277,337,0,449,0.306,81.34,59.39,0.96,0.8,783,0.7,212,6.9
+1275,2023,1,27,13,30,-2.5,1.21,0.026,0.63,71,967,545,0,4,-5.7,289,160,7,367,0.305,78.38,60.68,0.96,0.8,783,0.7,215,6.7
+1276,2023,1,27,14,0,-2.1,1.22,0.028,0.63,70,950,505,0,7,-4.9,285,120,0,340,0.305,81.04,62.72,0.96,0.8,783,0.7,218,6.6
+1277,2023,1,27,14,30,-1.8,1.22,0.028,0.63,66,926,451,0,7,-4.9,251,174,0,323,0.305,79.27,65.44,0.96,0.8,783,0.7,218,6.4
+1278,2023,1,27,15,0,-1.5,1.24,0.029,0.63,61,891,384,0,7,-4.2,212,57,0,233,0.304,81.72,68.76,0.96,0.8,782,0.7,217,6.1
+1279,2023,1,27,15,30,-1.7,1.24,0.029,0.63,54,841,306,0,7,-4.2,170,39,0,182,0.304,82.93,72.58,0.96,0.8,782,0.7,218,5.8
+1280,2023,1,27,16,0,-1.9,1.23,0.027,0.63,46,766,221,0,7,-4,99,11,7,102,0.303,85.7,76.82,0.96,0.8,782,0.7,219,5.5
+1281,2023,1,27,16,30,-2.4,1.23,0.027,0.63,37,641,133,5,8,-4,29,0,71,29,0.304,88.92,81.41,0.96,0.8,782,0.7,222,5.3
+1282,2023,1,27,17,0,-2.8,1.22,0.029,0.63,25,418,52,7,7,-4.2,19,0,100,19,0.304,89.9,86.23,0.96,0.8,782,0.7,225,5.1
+1283,2023,1,27,17,30,-3.3,1.22,0.029,0.63,4,36,3,2,7,-4.2,1,0,29,1,0.306,93.3,91.54,0.95,0.8,782,0.7,228,4.7
+1284,2023,1,27,18,0,-3.7,1.24,0.023,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.307,93.15,96.87,0.95,0.8,783,0.6,230,4.4
+1285,2023,1,27,18,30,-4.2,1.24,0.023,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.308,96.7,102.34,0.94,0.8,783,0.6,231,4.1
+1286,2023,1,27,19,0,-4.7,1.28,0.016,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.31,94.96,107.92,0.93,0.8,783,0.6,232,3.7
+1287,2023,1,27,19,30,-5.4,1.28,0.016,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.31,100,113.58,0.92,0.8,783,0.6,232,3.4
+1288,2023,1,27,20,0,-6.1,1.32,0.014,0.63,0,0,0,0,8,-6.4,0,0,0,0,0.311,97.83,119.27,0.92,0.8,783,0.5,232,3
+1289,2023,1,27,20,30,-6.8,1.32,0.014,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.312,100,124.95,0.92,0.8,783,0.5,232,2.7
+1290,2023,1,27,21,0,-7.5,1.34,0.013,0.63,0,0,0,0,4,-7.5,0,0,0,0,0.312,100,130.59,0.92,0.8,783,0.5,232,2.5
+1291,2023,1,27,21,30,-8,1.34,0.013,0.63,0,0,0,0,4,-8,0,0,0,0,0.313,100,136.12,0.92,0.8,783,0.5,233,2.3
+1292,2023,1,27,22,0,-8.5,1.35,0.012,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.314,100,141.44,0.92,0.8,783,0.5,233,2.1
+1293,2023,1,27,22,30,-8.9,1.35,0.012,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.315,100,146.45,0.92,0.8,783,0.5,232,2
+1294,2023,1,27,23,0,-9.2,1.32,0.013,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.315,100,150.92,0.92,0.8,783,0.5,231,1.9
+1295,2023,1,27,23,30,-9.5,1.32,0.013,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.316,100,154.57,0.92,0.8,783,0.5,228,1.9
+1296,2023,1,28,0,0,-9.7,1.31,0.014,0.63,0,0,0,0,4,-9.7,0,0,0,0,0.317,100,156.96,0.92,0.8,783,0.5,225,1.9
+1297,2023,1,28,0,30,-9.9,1.31,0.014,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.318,100,157.69,0.93,0.8,783,0.5,220,1.8
+1298,2023,1,28,1,0,-10,1.29,0.015,0.63,0,0,0,0,4,-10,0,0,0,0,0.32,100,156.6,0.93,0.8,783,0.5,215,1.8
+1299,2023,1,28,1,30,-10.1,1.29,0.015,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.321,100,153.91,0.93,0.8,783,0.5,210,1.9
+1300,2023,1,28,2,0,-10.2,1.27,0.018,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.322,98.94,150.06,0.94,0.8,783,0.5,205,1.9
+1301,2023,1,28,2,30,-10.2,1.27,0.018,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.323,98.81,145.45,0.94,0.8,782,0.5,205,2.1
+1302,2023,1,28,3,0,-10.3,1.25,0.02,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.324,96.92,140.37,0.94,0.8,782,0.5,205,2.2
+1303,2023,1,28,3,30,-10.2,1.25,0.02,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.325,96.15,134.99,0.94,0.8,782,0.5,205,2.4
+1304,2023,1,28,4,0,-10.1,1.24,0.021,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.326,94.14,129.43,0.94,0.8,782,0.5,205,2.5
+1305,2023,1,28,4,30,-10,1.24,0.021,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.326,93.4,123.77,0.95,0.8,782,0.5,203,2.6
+1306,2023,1,28,5,0,-9.8,1.22,0.024,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.325,92.39,118.08,0.95,0.8,782,0.5,202,2.7
+1307,2023,1,28,5,30,-9.7,1.22,0.024,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.323,91.66,112.38,0.95,0.8,782,0.5,202,2.8
+1308,2023,1,28,6,0,-9.7,1.23,0.024,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.322,92.36,106.73,0.95,0.8,782,0.5,202,2.9
+1309,2023,1,28,6,30,-9.6,1.23,0.024,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.318,91.63,101.16,0.94,0.8,782,0.5,203,2.9
+1310,2023,1,28,7,0,-9.6,1.25,0.02,0.63,0,0,0,0,4,-10.7,0,0,0,0,0.315,91.91,95.7,0.94,0.8,782,0.5,204,2.9
+1311,2023,1,28,7,30,-9,1.25,0.02,0.63,8,104,8,4,7,-10.7,3,0,57,3,0.313,87.68,89.94,0.94,0.8,782,0.5,208,3.1
+1312,2023,1,28,8,0,-8.4,1.28,0.018,0.63,26,533,71,7,7,-9.8,30,1,100,30,0.31,89.62,85.15,0.93,0.8,782,0.5,212,3.4
+1313,2023,1,28,8,30,-7.3,1.28,0.018,0.63,37,723,158,1,5,-9.8,63,1,14,63,0.309,82.3,80.34,0.93,0.8,782,0.5,219,3.8
+1314,2023,1,28,9,0,-6.2,1.32,0.017,0.63,43,834,248,1,8,-8.2,122,18,18,126,0.308,85.63,75.8,0.92,0.8,782,0.4,225,4.3
+1315,2023,1,28,9,30,-5,1.32,0.017,0.63,49,903,334,2,7,-8.2,106,434,32,243,0.307,78.17,71.62,0.91,0.8,782,0.4,231,4.6
+1316,2023,1,28,10,0,-3.8,1.37,0.016,0.63,55,949,412,0,0,-7,115,721,0,387,0.307,78.66,67.87,0.91,0.8,782,0.4,237,5
+1317,2023,1,28,10,30,-3,1.37,0.016,0.63,58,979,477,0,0,-7,95,858,0,462,0.308,74.1,64.65,0.9,0.8,782,0.4,244,5.1
+1318,2023,1,28,11,0,-2.1,1.39,0.015,0.63,60,1000,529,0,0,-6.8,60,1000,0,529,0.308,69.96,62.04,0.9,0.8,782,0.4,250,5.2
+1319,2023,1,28,11,30,-1.8,1.39,0.015,0.63,62,1013,567,0,0,-6.8,79,972,0,563,0.309,68.43,60.12,0.9,0.8,782,0.4,254,5.3
+1320,2023,1,28,12,0,-1.4,1.38,0.015,0.63,63,1020,589,0,0,-7.5,63,1020,0,589,0.309,63.29,58.97,0.9,0.8,782,0.4,259,5.3
+1321,2023,1,28,12,30,-1.4,1.38,0.015,0.63,64,1022,596,0,0,-7.5,64,1022,0,596,0.31,63.29,58.63,0.9,0.8,782,0.4,260,5.1
+1322,2023,1,28,13,0,-1.4,1.34,0.016,0.63,63,1019,586,0,0,-7.9,63,1019,0,586,0.31,61.36,59.12,0.91,0.8,782,0.4,262,5
+1323,2023,1,28,13,30,-1.4,1.34,0.016,0.63,62,1010,561,0,0,-7.9,62,1010,0,561,0.311,61.36,60.41,0.91,0.8,782,0.4,261,4.8
+1324,2023,1,28,14,0,-1.5,1.29,0.017,0.63,61,993,520,0,0,-7.8,61,993,0,520,0.312,62.06,62.46,0.92,0.8,782,0.4,261,4.6
+1325,2023,1,28,14,30,-1.7,1.29,0.017,0.63,58,969,465,0,0,-7.8,92,860,0,453,0.312,62.98,65.19,0.92,0.8,782,0.4,260,4.2
+1326,2023,1,28,15,0,-1.9,1.27,0.018,0.63,55,934,397,0,7,-7.6,112,693,14,366,0.313,65.28,68.51,0.92,0.8,782,0.5,258,3.8
+1327,2023,1,28,15,30,-2.6,1.27,0.018,0.63,49,886,318,0,7,-7.6,134,504,14,287,0.313,68.75,72.34,0.93,0.8,782,0.5,256,3.1
+1328,2023,1,28,16,0,-3.2,1.28,0.018,0.63,42,813,231,0,7,-7.6,95,506,7,212,0.314,71.4,76.59,0.93,0.8,782,0.5,253,2.4
+1329,2023,1,28,16,30,-4.3,1.28,0.018,0.63,34,695,141,3,7,-7.6,67,276,57,109,0.315,77.52,81.18,0.93,0.8,782,0.5,248,2
+1330,2023,1,28,17,0,-5.3,1.28,0.019,0.63,23,484,57,7,7,-8.7,29,1,100,29,0.316,76.78,86.02,0.93,0.8,783,0.5,244,1.6
+1331,2023,1,28,17,30,-5.7,1.28,0.019,0.63,4,47,3,2,7,-8.7,2,0,29,2,0.318,79.14,91.33,0.93,0.8,783,0.5,241,1.6
+1332,2023,1,28,18,0,-6.2,1.28,0.019,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.32,78.19,96.66,0.93,0.8,783,0.5,238,1.6
+1333,2023,1,28,18,30,-6.3,1.28,0.019,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.321,78.79,102.14,0.93,0.8,783,0.5,236,1.5
+1334,2023,1,28,19,0,-6.4,1.28,0.02,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.323,79.23,107.73,0.93,0.8,783,0.5,235,1.5
+1335,2023,1,28,19,30,-6.5,1.28,0.02,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.324,79.84,113.38,0.93,0.8,783,0.5,232,1.4
+1336,2023,1,28,20,0,-6.6,1.27,0.021,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.325,80.58,119.07,0.93,0.8,783,0.5,229,1.4
+1337,2023,1,28,20,30,-6.8,1.27,0.021,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.325,81.83,124.76,0.93,0.8,783,0.5,224,1.4
+1338,2023,1,28,21,0,-7,1.27,0.022,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.326,83.05,130.39,0.94,0.8,783,0.5,218,1.4
+1339,2023,1,28,21,30,-7.3,1.27,0.022,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.326,84.88,135.91,0.94,0.8,782,0.5,213,1.5
+1340,2023,1,28,22,0,-7.6,1.26,0.024,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.326,85.92,141.23,0.94,0.8,782,0.5,209,1.6
+1341,2023,1,28,22,30,-7.9,1.26,0.024,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.326,87.94,146.22,0.95,0.8,782,0.5,208,1.9
+1342,2023,1,28,23,0,-8.1,1.26,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.325,87.9,150.68,0.95,0.8,782,0.5,208,2.1
+1343,2023,1,28,23,30,-8.3,1.26,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.326,89.28,154.31,0.95,0.8,782,0.5,207,2.4
+1344,2023,1,29,0,0,-8.4,1.28,0.028,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.326,89.65,156.7,0.95,0.8,782,0.5,206,2.6
+1345,2023,1,29,0,30,-8.6,1.28,0.028,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.327,91.06,157.43,0.95,0.8,782,0.5,201,2.7
+1346,2023,1,29,1,0,-8.7,1.29,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.328,91.59,156.35,0.95,0.8,781,0.5,197,2.8
+1347,2023,1,29,1,30,-8.8,1.29,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,92.31,153.69,0.95,0.8,781,0.5,195,2.8
+1348,2023,1,29,2,0,-8.9,1.27,0.027,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.33,92.56,149.87,0.95,0.8,781,0.5,193,2.8
+1349,2023,1,29,2,30,-8.9,1.27,0.027,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.56,145.29,0.95,0.8,781,0.5,190,2.8
+1350,2023,1,29,3,0,-9,1.24,0.026,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.95,140.22,0.95,0.8,781,0.5,188,2.8
+1351,2023,1,29,3,30,-9,1.24,0.026,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.95,134.85,0.95,0.8,781,0.5,184,2.8
+1352,2023,1,29,4,0,-9.1,1.19,0.029,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.332,92.59,129.3,0.95,0.8,780,0.5,181,2.8
+1353,2023,1,29,4,30,-9.1,1.19,0.029,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.332,92.59,123.65,0.96,0.8,780,0.5,178,2.9
+1354,2023,1,29,5,0,-9.2,1.14,0.034,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.333,92.55,117.95,0.96,0.8,780,0.5,175,3
+1355,2023,1,29,5,30,-9.1,1.14,0.034,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.333,91.83,112.26,0.96,0.8,780,0.5,175,3.1
+1356,2023,1,29,6,0,-9,1.09,0.04,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.334,91.31,106.6,0.96,0.8,780,0.5,176,3.3
+1357,2023,1,29,6,30,-9,1.09,0.04,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.334,91.31,101.03,0.96,0.8,780,0.5,177,3.4
+1358,2023,1,29,7,0,-8.9,1.04,0.046,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.335,91.1,95.56,0.97,0.8,780,0.5,178,3.4
+1359,2023,1,29,7,30,-8.5,1.04,0.046,0.63,8,68,8,4,7,-10.1,5,0,57,5,0.335,88.3,89.82,0.97,0.8,780,0.6,181,3.5
+1360,2023,1,29,8,0,-8.1,1.02,0.054,0.63,33,417,69,7,7,-9.5,46,4,100,46,0.335,89.61,84.99,0.97,0.8,780,0.6,185,3.5
+1361,2023,1,29,8,30,-7.3,1.02,0.054,0.63,47,620,153,3,7,-9.5,90,13,39,92,0.335,84.34,80.17,0.97,0.8,781,0.6,192,3.8
+1362,2023,1,29,9,0,-6.6,1.02,0.056,0.63,59,735,242,6,7,-8.4,94,7,79,96,0.335,87.12,75.62,0.97,0.8,781,0.6,200,4.1
+1363,2023,1,29,9,30,-5.9,1.02,0.056,0.63,69,813,328,2,7,-8.4,148,55,25,166,0.334,82.59,71.42,0.97,0.8,781,0.6,207,4.4
+1364,2023,1,29,10,0,-5.1,1.02,0.053,0.63,75,868,405,0,7,-7.3,256,68,0,282,0.334,84.8,67.66,0.97,0.8,781,0.6,214,4.7
+1365,2023,1,29,10,30,-4.5,1.02,0.053,0.63,81,902,470,0,7,-7.3,291,63,0,318,0.333,81.05,64.43,0.97,0.8,781,0.6,219,4.8
+1366,2023,1,29,11,0,-3.9,1.03,0.054,0.63,86,925,523,0,7,-6.4,331,92,0,374,0.333,82.98,61.8,0.97,0.8,781,0.6,224,4.9
+1367,2023,1,29,11,30,-3.5,1.03,0.054,0.63,89,938,560,0,7,-6.4,358,96,0,406,0.332,80.53,59.87,0.97,0.8,781,0.6,228,4.7
+1368,2023,1,29,12,0,-3.1,1.02,0.056,0.63,91,945,582,0,7,-5.8,375,114,0,434,0.332,81.43,58.71,0.97,0.8,780,0.6,232,4.5
+1369,2023,1,29,12,30,-3,1.02,0.056,0.63,92,945,588,0,7,-5.8,370,96,0,420,0.332,80.83,58.37,0.97,0.8,780,0.6,238,4
+1370,2023,1,29,13,0,-2.8,1.01,0.06,0.63,93,939,579,0,7,-5.6,364,85,0,408,0.332,81.03,58.85,0.97,0.8,780,0.6,244,3.6
+1371,2023,1,29,13,30,-3.1,1.01,0.06,0.63,94,921,553,0,7,-5.6,356,112,0,412,0.332,82.85,60.14,0.97,0.8,780,0.6,256,3
+1372,2023,1,29,14,0,-3.3,1,0.074,0.63,95,892,511,0,7,-5.8,331,127,0,390,0.332,82.58,62.19,0.97,0.8,780,0.6,268,2.4
+1373,2023,1,29,14,30,-4.1,1,0.074,0.63,92,856,455,0,7,-5.8,298,117,0,348,0.333,87.67,64.93,0.98,0.8,780,0.6,300,2.2
+1374,2023,1,29,15,0,-4.8,0.99,0.088,0.63,89,805,387,0,7,-6.8,236,32,0,248,0.333,86.06,68.26,0.98,0.8,780,0.6,333,1.9
+1375,2023,1,29,15,30,-6.1,0.99,0.088,0.63,80,741,308,0,7,-6.8,191,26,0,199,0.334,95.11,72.09,0.98,0.8,781,0.6,176,2.7
+1376,2023,1,29,16,0,-7.4,0.98,0.095,0.63,70,646,222,0,7,-8.7,133,12,0,136,0.334,90.19,76.35,0.98,0.8,781,0.6,20,3.4
+1377,2023,1,29,16,30,-9,0.98,0.095,0.63,56,489,133,3,7,-9,84,5,43,85,0.336,100,80.96,0.98,0.8,782,0.5,26,4.3
+1378,2023,1,29,17,0,-10.6,1,0.119,0.63,34,239,52,7,7,-11.9,35,1,100,35,0.337,90.38,85.8,0.98,0.8,782,0.5,32,5.2
+1379,2023,1,29,17,30,-11.9,1,0.119,0.63,3,14,3,3,7,-11.9,1,0,43,1,0.338,100,91.11,0.98,0.8,783,0.5,34,5.7
+1380,2023,1,29,18,0,-13.1,1.02,0.128,0.63,0,0,0,0,7,-15,0,0,0,0,0.339,85.39,96.45,0.98,0.8,783,0.5,35,6.3
+1381,2023,1,29,18,30,-14,1.02,0.128,0.63,0,0,0,0,7,-15,0,0,0,0,0.34,91.89,101.94,0.98,0.8,783,0.5,36,6.4
+1382,2023,1,29,19,0,-15,1.02,0.118,0.63,0,0,0,0,7,-17.7,0,0,0,0,0.341,79.68,107.53,0.98,0.8,783,0.5,37,6.5
+1383,2023,1,29,19,30,-15.4,1.02,0.118,0.63,0,0,0,0,7,-17.7,0,0,0,0,0.342,82.46,113.19,0.98,0.8,784,0.5,38,6.3
+1384,2023,1,29,20,0,-15.9,1.04,0.126,0.63,0,0,0,0,7,-19.3,0,0,0,0,0.343,75.14,118.88,0.98,0.8,784,0.5,38,6.1
+1385,2023,1,29,20,30,-16.2,1.04,0.126,0.63,0,0,0,0,7,-19.3,0,0,0,0,0.344,77.04,124.56,0.98,0.8,784,0.5,37,5.9
+1386,2023,1,29,21,0,-16.4,1.06,0.129,0.63,0,0,0,0,7,-19.9,0,0,0,0,0.345,74.13,130.19,0.98,0.8,784,0.5,35,5.6
+1387,2023,1,29,21,30,-16.6,1.06,0.129,0.63,0,0,0,0,7,-19.9,0,0,0,0,0.346,75.38,135.7,0.98,0.8,784,0.5,34,5.3
+1388,2023,1,29,22,0,-16.7,1.06,0.122,0.63,0,0,0,0,7,-20.3,0,0,0,0,0.347,73.49,141.01,0.98,0.8,784,0.5,32,5
+1389,2023,1,29,22,30,-16.8,1.06,0.122,0.63,0,0,0,0,7,-20.3,0,0,0,0,0.347,74.11,145.99,0.98,0.8,784,0.5,31,4.7
+1390,2023,1,29,23,0,-16.8,1.07,0.125,0.63,0,0,0,0,7,-20.5,0,0,0,0,0.348,73.1,150.43,0.98,0.8,784,0.5,30,4.4
+1391,2023,1,29,23,30,-16.8,1.07,0.125,0.63,0,0,0,0,7,-20.5,0,0,0,0,0.348,73.1,154.05,0.98,0.8,784,0.5,28,4.1
+1392,2023,1,30,0,0,-16.8,1.08,0.129,0.63,0,0,0,0,7,-20.4,0,0,0,0,0.349,73.78,156.42,0.98,0.8,784,0.5,27,3.8
+1393,2023,1,30,0,30,-16.7,1.08,0.129,0.63,0,0,0,0,7,-20.4,0,0,0,0,0.349,73.16,157.16,0.98,0.8,784,0.5,26,3.4
+1394,2023,1,30,1,0,-16.7,1.08,0.123,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.349,74.64,156.1,0.98,0.8,784,0.5,25,3.1
+1395,2023,1,30,1,30,-16.6,1.08,0.123,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.349,74.02,153.47,0.98,0.8,784,0.5,24,2.9
+1396,2023,1,30,2,0,-16.5,1.1,0.121,0.63,0,0,0,0,7,-20,0,0,0,0,0.349,74.65,149.68,0.98,0.8,784,0.5,24,2.7
+1397,2023,1,30,2,30,-16.6,1.1,0.121,0.63,0,0,0,0,7,-19.9,0,0,0,0,0.349,75.27,145.12,0.98,0.8,784,0.4,24,2.6
+1398,2023,1,30,3,0,-16.7,1.13,0.114,0.63,0,0,0,0,8,-20.1,0,0,0,0,0.349,75.09,140.07,0.98,0.8,784,0.4,24,2.5
+1399,2023,1,30,3,30,-17,1.13,0.114,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.349,77,134.71,0.98,0.8,784,0.4,25,2.4
+1400,2023,1,30,4,0,-17.3,1.15,0.103,0.63,0,0,0,0,7,-20.8,0,0,0,0,0.349,74.39,129.16,0.98,0.8,784,0.4,25,2.4
+1401,2023,1,30,4,30,-17.7,1.15,0.103,0.63,0,0,0,0,7,-20.8,0,0,0,0,0.349,76.94,123.52,0.98,0.8,784,0.4,27,2.4
+1402,2023,1,30,5,0,-18.2,1.15,0.1,0.63,0,0,0,0,7,-21.6,0,0,0,0,0.349,74.9,117.82,0.98,0.8,784,0.4,28,2.4
+1403,2023,1,30,5,30,-18.4,1.15,0.1,0.63,0,0,0,0,4,-21.5,0,0,0,0,0.35,76.28,112.12,0.98,0.8,785,0.4,28,2.4
+1404,2023,1,30,6,0,-18.7,1.15,0.098,0.63,0,0,0,0,4,-22,0,0,0,0,0.351,74.99,106.47,0.98,0.8,785,0.4,29,2.4
+1405,2023,1,30,6,30,-18.7,1.15,0.098,0.63,0,0,0,0,4,-22,0,0,0,0,0.351,74.99,100.88,0.98,0.8,785,0.4,29,2.4
+1406,2023,1,30,7,0,-18.8,1.14,0.094,0.63,0,0,0,0,4,-22.1,0,0,0,0,0.351,74.99,95.41,0.98,0.8,786,0.4,30,2.4
+1407,2023,1,30,7,30,-18,1.14,0.094,0.63,10,71,10,4,4,-22.1,4,0,57,4,0.352,70.06,89.66,0.98,0.8,786,0.4,31,2.6
+1408,2023,1,30,8,0,-17.2,1.14,0.088,0.63,37,370,70,7,4,-20.8,40,0,100,40,0.352,73.44,84.82,0.97,0.8,786,0.4,31,2.8
+1409,2023,1,30,8,30,-16.3,1.14,0.088,0.63,55,587,157,1,4,-20.8,78,1,14,78,0.353,68.18,79.99,0.97,0.8,787,0.4,31,3.1
+1410,2023,1,30,9,0,-15.3,1.14,0.08,0.63,68,723,250,0,4,-19.4,76,4,0,77,0.354,70.73,75.43,0.97,0.8,787,0.3,32,3.5
+1411,2023,1,30,9,30,-14.6,1.14,0.08,0.63,78,809,338,0,4,-19.4,95,0,0,95,0.354,66.77,71.22,0.97,0.8,787,0.3,30,3.5
+1412,2023,1,30,10,0,-13.9,1.16,0.071,0.63,83,870,417,0,4,-18.4,192,20,0,200,0.355,68.96,67.44,0.97,0.8,787,0.3,29,3.5
+1413,2023,1,30,10,30,-13.1,1.16,0.071,0.63,87,913,485,0,4,-18.4,289,27,0,301,0.355,64.61,64.19,0.97,0.8,787,0.3,26,3.4
+1414,2023,1,30,11,0,-12.4,1.2,0.061,0.63,88,946,539,0,4,-17.5,331,37,0,349,0.356,65.87,61.55,0.97,0.8,787,0.3,24,3.4
+1415,2023,1,30,11,30,-11.6,1.2,0.061,0.63,89,968,579,0,4,-17.5,353,207,7,458,0.356,61.77,59.61,0.96,0.8,787,0.3,20,3.3
+1416,2023,1,30,12,0,-10.9,1.26,0.049,0.63,87,985,603,0,5,-17,251,557,29,543,0.356,60.84,58.44,0.96,0.8,787,0.3,16,3.1
+1417,2023,1,30,12,30,-10.3,1.26,0.049,0.63,85,997,612,0,4,-17,349,300,11,508,0.356,58.01,58.09,0.95,0.8,787,0.3,14,3
+1418,2023,1,30,13,0,-9.7,1.3,0.039,0.63,81,1012,609,0,4,-16.9,338,350,4,521,0.356,55.79,58.57,0.95,0.8,786,0.2,11,2.8
+1419,2023,1,30,13,30,-9.4,1.3,0.039,0.63,78,1009,584,0,7,-16.9,224,606,14,528,0.357,54.49,59.87,0.94,0.8,786,0.2,8,2.6
+1420,2023,1,30,14,0,-9.1,1.31,0.031,0.63,72,1001,543,0,0,-17.1,143,801,0,520,0.357,52.33,61.92,0.94,0.8,786,0.2,5,2.4
+1421,2023,1,30,14,30,-9.1,1.31,0.031,0.63,67,982,487,0,0,-17.1,101,885,7,480,0.358,52.33,64.66,0.93,0.8,786,0.2,4,2.2
+1422,2023,1,30,15,0,-9,1.32,0.026,0.63,60,955,418,0,0,-16.7,85,867,21,410,0.358,53.59,68,0.93,0.8,787,0.2,3,1.9
+1423,2023,1,30,15,30,-9.8,1.32,0.026,0.63,54,912,338,0,7,-16.7,81,762,7,318,0.36,57.06,71.85,0.92,0.8,787,0.2,6,1.7
+1424,2023,1,30,16,0,-10.5,1.31,0.021,0.63,46,848,249,0,0,-17.9,46,840,0,248,0.361,54.78,76.12,0.92,0.8,787,0.2,10,1.5
+1425,2023,1,30,16,30,-11.9,1.31,0.021,0.63,35,742,155,1,0,-17.9,41,660,11,147,0.362,61.26,80.73,0.91,0.8,787,0.2,23,1.4
+1426,2023,1,30,17,0,-13.3,1.32,0.018,0.63,24,551,66,2,0,-20,28,378,32,57,0.364,57.13,85.59,0.91,0.8,787,0.2,35,1.3
+1427,2023,1,30,17,30,-14.4,1.32,0.018,0.63,9,105,7,1,0,-20,6,67,11,5,0.365,62.58,90.9,0.9,0.8,788,0.2,41,1.4
+1428,2023,1,30,18,0,-15.4,1.32,0.016,0.63,0,0,0,0,0,-21.6,0,0,0,0,0.366,58.81,96.25,0.9,0.8,788,0.2,47,1.5
+1429,2023,1,30,18,30,-16.1,1.32,0.016,0.63,0,0,0,0,0,-21.6,0,0,0,0,0.367,62.33,101.74,0.9,0.8,788,0.2,49,1.5
+1430,2023,1,30,19,0,-16.9,1.33,0.015,0.63,0,0,0,0,0,-22.6,0,0,0,0,0.368,61.18,107.33,0.9,0.8,788,0.2,52,1.5
+1431,2023,1,30,19,30,-17.3,1.33,0.015,0.63,0,0,0,0,0,-22.6,0,0,0,0,0.369,63.36,112.99,0.9,0.8,789,0.2,52,1.4
+1432,2023,1,30,20,0,-17.8,1.34,0.014,0.63,0,0,0,0,0,-23,0,0,0,0,0.37,63.54,118.68,0.9,0.8,789,0.2,53,1.4
+1433,2023,1,30,20,30,-18.1,1.34,0.014,0.63,0,0,0,0,0,-23,0,0,0,0,0.371,65.18,124.36,0.9,0.8,789,0.2,52,1.3
+1434,2023,1,30,21,0,-18.4,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,66.28,129.99,0.9,0.8,789,0.2,52,1.2
+1435,2023,1,30,21,30,-18.6,1.33,0.014,0.63,0,0,0,0,8,-23.1,0,0,0,0,0.371,67.42,135.5,0.9,0.8,789,0.1,48,1.2
+1436,2023,1,30,22,0,-18.7,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.372,68.52,140.8,0.9,0.8,790,0.1,44,1.1
+1437,2023,1,30,22,30,-18.9,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,69.7,145.76,0.9,0.8,790,0.1,37,1.1
+1438,2023,1,30,23,0,-19,1.32,0.013,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,70.14,150.19,0.89,0.8,790,0.1,30,1
+1439,2023,1,30,23,30,-19.2,1.32,0.013,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.37,71.35,153.78,0.89,0.8,790,0.1,27,1
+1440,2023,1,31,0,0,-19.3,1.32,0.012,0.63,0,0,0,0,0,-23.2,0,0,0,0,0.37,71.3,156.15,0.89,0.8,790,0.1,24,1
+1441,2023,1,31,0,30,-19.5,1.32,0.012,0.63,0,0,0,0,0,-23.2,0,0,0,0,0.367,72.54,156.88,0.88,0.8,790,0.1,26,1
+1442,2023,1,31,1,0,-19.7,1.31,0.011,0.63,0,0,0,0,0,-23.4,0,0,0,0,0.365,72.2,155.85,0.88,0.8,790,0.1,28,0.9
+1443,2023,1,31,1,30,-19.9,1.31,0.011,0.63,0,0,0,0,0,-23.4,0,0,0,0,0.362,73.46,153.24,0.88,0.8,790,0.1,33,0.9
+1444,2023,1,31,2,0,-20.1,1.31,0.01,0.63,0,0,0,0,0,-23.8,0,0,0,0,0.358,72.5,149.48,0.87,0.8,790,0.1,39,1
+1445,2023,1,31,2,30,-20.5,1.31,0.01,0.63,0,0,0,0,0,-23.8,0,0,0,0,0.354,75.06,144.94,0.87,0.8,790,0.1,45,1
+1446,2023,1,31,3,0,-20.8,1.3,0.01,0.63,0,0,0,0,0,-24.2,0,0,0,0,0.35,74.04,139.9,0.87,0.8,790,0.1,52,1.1
+1447,2023,1,31,3,30,-21.1,1.3,0.01,0.63,0,0,0,0,0,-24.2,0,0,0,0,0.347,76,134.56,0.87,0.8,790,0.1,58,1.1
+1448,2023,1,31,4,0,-21.4,1.28,0.01,0.63,0,0,0,0,0,-24.6,0,0,0,0,0.344,75.42,129.02,0.87,0.8,790,0.1,64,1.2
+1449,2023,1,31,4,30,-21.7,1.28,0.01,0.63,0,0,0,0,0,-24.6,0,0,0,0,0.342,77.43,123.38,0.87,0.8,790,0.1,69,1.2
+1450,2023,1,31,5,0,-21.9,1.26,0.01,0.63,0,0,0,0,0,-24.9,0,0,0,0,0.34,76.41,117.68,0.88,0.8,791,0.1,73,1.2
+1451,2023,1,31,5,30,-22,1.26,0.01,0.63,0,0,0,0,0,-24.9,0,0,0,0,0.338,77.08,111.99,0.88,0.8,791,0.1,75,1.2
+1452,2023,1,31,6,0,-22.2,1.26,0.012,0.63,0,0,0,0,0,-25.2,0,0,0,0,0.336,76.35,106.32,0.89,0.8,791,0.1,78,1.2
+1453,2023,1,31,6,30,-22.1,1.26,0.012,0.63,0,0,0,0,0,-25.2,0,0,0,0,0.334,75.68,100.74,0.89,0.8,791,0.1,84,1.3
+1454,2023,1,31,7,0,-22.1,1.27,0.013,0.63,0,0,0,0,0,-25.5,0,0,0,0,0.332,73.85,95.26,0.89,0.8,792,0.1,90,1.3
+1455,2023,1,31,7,30,-21.1,1.27,0.013,0.63,11,191,13,0,0,-25.5,11,154,7,12,0.329,67.65,89.51,0.9,0.8,792,0.1,98,1.4
+1456,2023,1,31,8,0,-20.2,1.29,0.015,0.63,26,628,85,2,0,-25.3,31,503,21,78,0.327,63.69,84.65,0.9,0.8,792,0.1,106,1.5
+1457,2023,1,31,8,30,-18.1,1.29,0.015,0.63,36,782,174,0,0,-25.3,62,515,0,153,0.325,53.2,79.81,0.9,0.8,792,0.2,110,1.4
+1458,2023,1,31,9,0,-16.1,1.31,0.016,0.63,44,878,268,0,0,-23.3,72,715,0,254,0.323,53.73,75.23,0.9,0.8,792,0.2,114,1.2
+1459,2023,1,31,9,30,-14.5,1.31,0.016,0.63,50,939,356,0,0,-23.3,64,881,0,351,0.321,47.06,71.01,0.9,0.8,792,0.2,128,1
+1460,2023,1,31,10,0,-13,1.33,0.017,0.63,56,979,435,0,0,-21.9,56,979,0,435,0.319,47.41,67.22,0.91,0.8,793,0.2,142,0.8
+1461,2023,1,31,10,30,-12,1.33,0.017,0.63,59,1008,502,0,0,-21.9,59,1008,0,502,0.317,43.68,63.95,0.9,0.8,792,0.2,176,0.8
+1462,2023,1,31,11,0,-11,1.36,0.017,0.63,62,1028,556,0,0,-20.3,62,1028,0,556,0.315,46.19,61.3,0.9,0.8,792,0.2,209,0.8
+1463,2023,1,31,11,30,-10.2,1.36,0.017,0.63,65,1039,595,0,0,-20.3,65,1039,0,595,0.314,43.35,59.35,0.9,0.8,792,0.2,221,1
+1464,2023,1,31,12,0,-9.5,1.37,0.016,0.63,66,1042,616,0,0,-19,66,1042,0,616,0.313,45.83,58.17,0.9,0.8,792,0.2,232,1.3
+1465,2023,1,31,12,30,-8.9,1.37,0.016,0.63,65,1039,619,0,0,-19,65,1039,0,619,0.312,43.72,57.81,0.9,0.8,792,0.3,234,1.5
+1466,2023,1,31,13,0,-8.3,1.38,0.016,0.63,65,1033,608,0,0,-17.9,65,1033,0,608,0.311,46.09,58.29,0.9,0.8,791,0.3,237,1.7
+1467,2023,1,31,13,30,-8,1.38,0.016,0.63,63,1026,582,0,0,-17.9,63,1026,0,582,0.31,45.03,59.59,0.9,0.8,791,0.3,233,1.7
+1468,2023,1,31,14,0,-7.6,1.4,0.015,0.63,60,1013,541,0,0,-17,60,1013,0,541,0.309,46.78,61.65,0.9,0.8,791,0.3,229,1.7
+1469,2023,1,31,14,30,-7.5,1.4,0.015,0.63,57,993,486,0,0,-17,57,993,0,486,0.307,46.42,64.39,0.9,0.8,791,0.3,221,1.6
+1470,2023,1,31,15,0,-7.5,1.4,0.014,0.63,53,964,418,0,0,-16,53,964,0,418,0.306,50.59,67.74,0.9,0.8,791,0.3,212,1.5
+1471,2023,1,31,15,30,-8.2,1.4,0.014,0.63,47,921,338,0,0,-16,47,921,0,338,0.305,53.41,71.6,0.9,0.8,791,0.3,200,1.5
+1472,2023,1,31,16,0,-8.9,1.4,0.014,0.63,41,856,250,0,0,-16.1,41,856,0,250,0.304,56.12,75.88,0.9,0.8,791,0.3,189,1.4
+1473,2023,1,31,16,30,-10.6,1.4,0.014,0.63,34,750,158,1,0,-16.1,39,675,11,150,0.305,64.16,80.5,0.9,0.8,791,0.3,184,1.5
+1474,2023,1,31,17,0,-12.3,1.4,0.014,0.62,24,561,69,2,0,-18.2,26,442,21,62,0.305,61.4,85.37,0.9,0.8,792,0.3,178,1.5
+1475,2023,1,31,17,30,-13.3,1.4,0.014,0.62,7,111,7,1,0,-18.2,6,83,11,6,0.306,66.58,90.18,0.9,0.8,792,0.3,179,1.6
+1476,2023,1,31,18,0,-14.2,1.39,0.016,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.307,62.33,96.04,0.91,0.8,792,0.3,180,1.7
+1477,2023,1,31,18,30,-14.6,1.39,0.016,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.307,64.41,101.53,0.91,0.8,792,0.3,183,1.6
+1478,2023,1,31,19,0,-14.9,1.38,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.308,62.98,107.13,0.91,0.8,792,0.3,187,1.6
+1479,2023,1,31,19,30,-15,1.38,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.308,63.5,112.79,0.91,0.8,792,0.3,194,1.4
+1480,2023,1,31,20,0,-15,1.38,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.309,63.49,118.48,0.91,0.8,792,0.3,202,1.2
+1481,2023,1,31,20,30,-15,1.38,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.308,63.57,124.17,0.91,0.8,793,0.4,210,1.1
+1482,2023,1,31,21,0,-15.1,1.35,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.307,64.19,129.79,0.91,0.8,793,0.4,217,0.9
+1483,2023,1,31,21,30,-15.3,1.35,0.018,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.306,65.26,135.29,0.92,0.8,793,0.4,219,0.9
+1484,2023,1,31,22,0,-15.5,1.29,0.019,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.305,65.84,140.58,0.92,0.8,793,0.4,222,0.8
+1485,2023,1,31,22,30,-15.7,1.29,0.019,0.62,0,0,0,0,0,-20.4,0,0,0,0,0.304,66.94,145.53,0.92,0.8,793,0.4,221,0.8
+1486,2023,1,31,23,0,-16,1.24,0.019,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.303,68.05,149.94,0.92,0.8,793,0.4,221,0.8
+1487,2023,1,31,23,30,-16.1,1.24,0.019,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.302,68.62,153.51,0.92,0.8,793,0.4,224,0.7
+1488,2023,2,1,0,0,-16.3,1.21,0.02,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.301,70.3,155.86,0.92,0.8,793,0.4,226,0.7
+1489,2023,2,1,0,30,-16.4,1.21,0.02,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.301,70.89,156.6,0.92,0.8,793,0.4,227,0.7
+1490,2023,2,1,1,0,-16.5,1.2,0.02,0.62,0,0,0,0,0,-20.3,0,0,0,0,0.3,72.48,155.58,0.92,0.8,793,0.4,228,0.7
+1491,2023,2,1,1,30,-16.5,1.2,0.02,0.62,0,0,0,0,0,-20.3,0,0,0,0,0.3,72.39,153.01,0.92,0.8,792,0.4,222,0.7
+1492,2023,2,1,2,0,-16.5,1.21,0.02,0.62,0,0,0,0,0,-20.2,0,0,0,0,0.3,72.9,149.27,0.92,0.8,792,0.4,215,0.7
+1493,2023,2,1,2,30,-16.4,1.21,0.02,0.62,0,0,0,0,0,-20.2,0,0,0,0,0.3,72.29,144.75,0.92,0.8,792,0.4,212,0.7
+1494,2023,2,1,3,0,-16.3,1.24,0.019,0.62,0,0,0,0,0,-20.2,0,0,0,0,0.3,72.06,139.73,0.92,0.8,792,0.4,210,0.8
+1495,2023,2,1,3,30,-16.2,1.24,0.019,0.62,0,0,0,0,0,-20.2,0,0,0,0,0.3,71.46,134.4,0.92,0.8,792,0.4,211,0.8
+1496,2023,2,1,4,0,-16,1.27,0.018,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.3,70.41,128.87,0.92,0.8,792,0.4,213,0.8
+1497,2023,2,1,4,30,-15.8,1.27,0.018,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.3,69.34,123.23,0.92,0.8,793,0.4,215,0.8
+1498,2023,2,1,5,0,-15.7,1.29,0.017,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.299,68.92,117.54,0.92,0.8,793,0.4,218,0.7
+1499,2023,2,1,5,30,-15.5,1.29,0.017,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.299,67.79,111.84,0.92,0.8,793,0.4,218,0.7
+1500,2023,2,1,6,0,-15.4,1.31,0.016,0.62,0,0,0,0,7,-20.1,0,0,0,0,0.299,67.19,106.18,0.92,0.8,793,0.4,217,0.7
+1501,2023,2,1,6,30,-15.2,1.31,0.016,0.62,0,0,0,0,7,-20.1,0,0,0,0,0.298,66.09,100.58,0.92,0.8,793,0.4,216,0.7
+1502,2023,2,1,7,0,-14.9,1.33,0.015,0.62,0,0,0,0,0,-19.9,0,0,0,0,0.298,65.74,95.1,0.91,0.8,793,0.4,214,0.6
+1503,2023,2,1,7,30,-13.9,1.33,0.015,0.62,11,174,13,0,0,-19.9,10,141,7,12,0.298,60.56,89.37,0.91,0.8,793,0.4,223,0.7
+1504,2023,2,1,8,0,-12.9,1.35,0.015,0.62,26,589,83,3,0,-19,33,337,39,65,0.298,60.05,84.48,0.91,0.8,793,0.4,231,0.8
+1505,2023,2,1,8,30,-11.4,1.35,0.015,0.62,36,758,173,0,0,-19,42,713,0,170,0.298,53.22,79.62,0.91,0.8,793,0.4,241,0.8
+1506,2023,2,1,9,0,-9.8,1.37,0.014,0.62,43,856,264,0,0,-16.3,43,856,0,264,0.298,59.19,75.03,0.91,0.8,793,0.4,251,0.9
+1507,2023,2,1,9,30,-8.2,1.37,0.014,0.62,49,917,351,0,0,-16.3,49,917,0,351,0.298,52.29,70.79,0.91,0.8,794,0.4,251,1.2
+1508,2023,2,1,10,0,-6.6,1.37,0.014,0.62,54,958,428,0,0,-14.3,54,958,0,428,0.298,54.5,66.99,0.91,0.8,794,0.4,252,1.6
+1509,2023,2,1,10,30,-5.5,1.37,0.014,0.62,58,987,495,0,0,-14.3,58,987,0,495,0.298,50.11,63.71,0.91,0.8,794,0.4,255,1.8
+1510,2023,2,1,11,0,-4.4,1.38,0.014,0.62,60,1006,547,0,0,-12.3,60,1006,0,547,0.298,54.24,61.05,0.91,0.8,793,0.4,258,2
+1511,2023,2,1,11,30,-3.7,1.38,0.014,0.62,63,1018,586,0,0,-12.3,63,1018,0,586,0.299,51.47,59.08,0.91,0.8,793,0.4,257,2
+1512,2023,2,1,12,0,-3.1,1.38,0.014,0.62,63,1023,607,0,0,-10.7,63,1023,0,607,0.299,55.59,57.89,0.91,0.8,793,0.4,257,1.9
+1513,2023,2,1,12,30,-2.6,1.38,0.014,0.62,64,1022,613,0,0,-10.7,64,1022,0,613,0.299,53.56,57.53,0.91,0.8,793,0.5,254,1.9
+1514,2023,2,1,13,0,-2.1,1.37,0.015,0.62,64,1016,602,0,0,-9.6,64,1016,0,602,0.299,56.3,58.01,0.91,0.8,792,0.5,251,1.9
+1515,2023,2,1,13,30,-1.9,1.37,0.015,0.62,63,1007,577,0,0,-9.6,63,1007,0,577,0.298,55.48,59.31,0.91,0.8,792,0.5,249,1.8
+1516,2023,2,1,14,0,-1.7,1.35,0.015,0.62,60,994,536,0,0,-9.1,60,994,0,536,0.298,57.21,61.37,0.92,0.8,792,0.5,247,1.7
+1517,2023,2,1,14,30,-1.7,1.35,0.015,0.62,57,973,482,0,0,-9.1,57,973,0,482,0.297,57.21,64.12,0.92,0.8,792,0.5,244,1.5
+1518,2023,2,1,15,0,-1.7,1.33,0.014,0.62,54,943,415,0,0,-8,54,943,0,415,0.296,62.02,67.48,0.92,0.8,792,0.5,242,1.3
+1519,2023,2,1,15,30,-2.5,1.33,0.014,0.62,48,900,336,0,0,-8,48,900,0,336,0.295,65.79,71.35,0.92,0.8,792,0.5,226,1.1
+1520,2023,2,1,16,0,-3.3,1.31,0.014,0.62,42,835,249,0,0,-8,42,835,0,249,0.295,70.07,75.64,0.92,0.8,792,0.5,211,0.9
+1521,2023,2,1,16,30,-4.8,1.31,0.014,0.62,34,731,158,0,0,-8,40,665,7,152,0.295,78.51,80.27,0.92,0.8,793,0.5,202,1.1
+1522,2023,2,1,17,0,-6.3,1.29,0.014,0.62,24,547,70,2,0,-11.2,31,366,36,62,0.295,68.34,85.15,0.92,0.8,793,0.5,194,1.3
+1523,2023,2,1,17,30,-7.3,1.29,0.014,0.62,8,109,8,2,0,-11.2,6,55,21,6,0.294,73.79,90,0.92,0.8,793,0.5,194,1.3
+1524,2023,2,1,18,0,-8.2,1.27,0.014,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.294,71.15,95.83,0.92,0.8,793,0.5,195,1.4
+1525,2023,2,1,18,30,-8.8,1.27,0.014,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.294,74.56,101.33,0.92,0.8,793,0.5,200,1.3
+1526,2023,2,1,19,0,-9.4,1.24,0.016,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.294,73.77,106.93,0.93,0.8,793,0.5,204,1.3
+1527,2023,2,1,19,30,-9.8,1.24,0.016,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.294,76.13,112.59,0.93,0.8,793,0.5,210,1.3
+1528,2023,2,1,20,0,-10.2,1.21,0.018,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.293,76.47,118.29,0.93,0.8,794,0.5,216,1.2
+1529,2023,2,1,20,30,-10.4,1.21,0.018,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.293,77.69,123.97,0.93,0.8,794,0.5,221,1.2
+1530,2023,2,1,21,0,-10.6,1.18,0.019,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.293,78.46,129.58,0.93,0.8,794,0.5,226,1.1
+1531,2023,2,1,21,30,-10.7,1.18,0.019,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.294,79.09,135.08,0.93,0.8,794,0.5,228,1.1
+1532,2023,2,1,22,0,-10.8,1.15,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.294,80.23,140.36,0.93,0.8,794,0.6,231,1
+1533,2023,2,1,22,30,-10.9,1.15,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.295,80.97,145.29,0.93,0.8,795,0.6,231,0.9
+1534,2023,2,1,23,0,-11,1.16,0.023,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.295,82.48,149.68,0.93,0.8,795,0.6,232,0.9
+1535,2023,2,1,23,30,-11.2,1.16,0.023,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.296,83.8,153.24,0.93,0.8,795,0.6,232,0.8
+1536,2023,2,2,0,0,-11.3,1.18,0.024,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.297,84.89,155.58,0.93,0.8,795,0.6,231,0.7
+1537,2023,2,2,0,30,-11.5,1.18,0.024,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.298,86.26,156.32,0.93,0.8,795,0.6,230,0.6
+1538,2023,2,2,1,0,-11.6,1.22,0.025,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.299,87.22,155.32,0.93,0.8,795,0.6,229,0.5
+1539,2023,2,2,1,30,-11.7,1.22,0.025,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.3,87.92,152.76,0.93,0.8,795,0.6,220,0.4
+1540,2023,2,2,2,0,-11.9,1.23,0.027,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.3,89.03,149.05,0.93,0.8,795,0.6,212,0.3
+1541,2023,2,2,2,30,-12,1.23,0.027,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.301,89.75,144.56,0.93,0.8,795,0.6,189,0.3
+1542,2023,2,2,3,0,-12.1,1.24,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.301,90.07,139.56,0.93,0.8,795,0.6,166,0.3
+1543,2023,2,2,3,30,-12.2,1.24,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.301,90.92,134.24,0.94,0.8,796,0.5,157,0.3
+1544,2023,2,2,4,0,-12.2,1.25,0.031,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.301,90.22,128.72,0.94,0.8,796,0.5,147,0.3
+1545,2023,2,2,4,30,-12.4,1.25,0.031,0.62,0,0,0,0,7,-13.5,0,0,0,0,0.302,91.69,123.08,0.93,0.8,796,0.5,155,0.3
+1546,2023,2,2,5,0,-12.5,1.27,0.027,0.62,0,0,0,0,7,-13.7,0,0,0,0,0.302,90.89,117.39,0.93,0.8,796,0.5,163,0.3
+1547,2023,2,2,5,30,-12.7,1.27,0.027,0.62,0,0,0,0,7,-13.7,0,0,0,0,0.303,92.37,111.69,0.92,0.8,796,0.4,177,0.4
+1548,2023,2,2,6,0,-12.9,1.28,0.022,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.304,91.99,106.02,0.92,0.8,797,0.4,190,0.4
+1549,2023,2,2,6,30,-13,1.28,0.022,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.304,92.74,100.42,0.91,0.8,797,0.4,190,0.4
+1550,2023,2,2,7,0,-13,1.28,0.017,0.62,0,0,0,0,7,-14,0,0,0,0,0.304,91.97,94.93,0.91,0.8,797,0.3,191,0.4
+1551,2023,2,2,7,30,-12,1.28,0.017,0.62,11,184,14,5,7,-14,8,17,68,8,0.304,84.94,89.22,0.91,0.8,798,0.3,181,0.5
+1552,2023,2,2,8,0,-11,1.28,0.015,0.62,27,609,87,1,0,-13.4,30,508,18,80,0.304,82.5,84.3,0.9,0.8,798,0.3,172,0.6
+1553,2023,2,2,8,30,-9.3,1.28,0.015,0.62,36,776,178,0,0,-13.4,36,776,0,178,0.304,72.12,79.43,0.9,0.8,798,0.3,173,0.7
+1554,2023,2,2,9,0,-7.6,1.29,0.013,0.62,42,874,271,0,0,-11.3,42,874,0,271,0.304,75.06,74.83,0.9,0.8,798,0.3,175,0.8
+1555,2023,2,2,9,30,-6.1,1.29,0.013,0.62,47,934,358,0,0,-11.2,47,934,0,358,0.304,66.98,70.57,0.9,0.8,799,0.3,185,1
+1556,2023,2,2,10,0,-4.6,1.3,0.012,0.62,51,976,436,0,0,-9.5,51,976,0,436,0.304,68.51,66.76,0.9,0.8,799,0.3,195,1.3
+1557,2023,2,2,10,30,-3.4,1.3,0.012,0.62,55,1003,503,0,0,-9.5,55,1003,0,503,0.304,62.62,63.46,0.9,0.8,799,0.3,208,1.7
+1558,2023,2,2,11,0,-2.2,1.25,0.012,0.62,58,1022,557,0,0,-8.6,58,1022,0,557,0.304,61.41,60.78,0.9,0.8,799,0.3,221,2
+1559,2023,2,2,11,30,-1.4,1.25,0.012,0.62,60,1034,595,0,0,-8.6,60,1034,0,595,0.303,57.83,58.81,0.9,0.8,798,0.3,226,2.2
+1560,2023,2,2,12,0,-0.7,1.28,0.011,0.62,60,1041,618,0,0,-7.9,60,1041,0,618,0.303,58.37,57.61,0.9,0.8,798,0.3,230,2.4
+1561,2023,2,2,12,30,-0.3,1.28,0.011,0.62,60,1044,625,0,0,-7.9,60,1044,0,625,0.303,56.7,57.24,0.9,0.8,798,0.3,231,2.4
+1562,2023,2,2,13,0,0.1,1.29,0.011,0.62,60,1041,616,0,0,-7.5,60,1041,0,616,0.304,56.53,57.72,0.9,0.8,798,0.3,231,2.5
+1563,2023,2,2,13,30,0.3,1.29,0.011,0.62,59,1034,591,0,0,-7.5,59,1034,0,591,0.304,55.72,59.02,0.9,0.8,798,0.3,231,2.6
+1564,2023,2,2,14,0,0.4,1.24,0.011,0.62,56,1021,550,0,0,-7.2,56,1021,0,550,0.305,56.59,61.09,0.9,0.8,798,0.3,230,2.6
+1565,2023,2,2,14,30,0.3,1.24,0.011,0.62,54,1001,495,0,0,-7.2,54,1001,0,495,0.304,57,63.85,0.9,0.8,798,0.3,230,2.5
+1566,2023,2,2,15,0,0.1,1.23,0.011,0.62,49,973,426,0,0,-6.6,49,973,0,426,0.304,60.76,67.22,0.9,0.8,798,0.3,230,2.3
+1567,2023,2,2,15,30,-0.9,1.23,0.011,0.62,45,931,347,0,0,-6.6,45,931,0,347,0.303,65.34,71.09,0.9,0.8,798,0.3,227,1.8
+1568,2023,2,2,16,0,-2,1.21,0.011,0.62,40,869,259,0,0,-6.7,40,869,0,259,0.301,69.97,75.4,0.9,0.8,798,0.3,225,1.3
+1569,2023,2,2,16,30,-3.5,1.21,0.011,0.62,33,770,166,0,0,-6.7,35,745,4,164,0.301,78.2,80.04,0.9,0.8,798,0.3,220,1.3
+1570,2023,2,2,17,0,-5,1.18,0.01,0.62,23,595,76,0,0,-10.3,24,575,4,75,0.3,66.56,84.93,0.9,0.8,799,0.3,216,1.3
+1571,2023,2,2,17,30,-5.7,1.18,0.01,0.62,9,124,9,0,0,-10.3,9,124,0,9,0.301,70.19,89.82,0.9,0.8,799,0.3,212,1.4
+1572,2023,2,2,18,0,-6.4,1.15,0.01,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.301,68.39,95.62,0.9,0.8,799,0.3,208,1.4
+1573,2023,2,2,18,30,-7,1.15,0.01,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.301,71.62,101.12,0.9,0.8,799,0.3,206,1.4
+1574,2023,2,2,19,0,-7.6,1.11,0.011,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.301,72.84,106.73,0.9,0.8,799,0.3,204,1.4
+1575,2023,2,2,19,30,-8.1,1.11,0.011,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.301,75.82,112.39,0.9,0.8,800,0.3,204,1.4
+1576,2023,2,2,20,0,-8.7,1.08,0.011,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.301,77.61,118.09,0.9,0.8,800,0.3,205,1.3
+1577,2023,2,2,20,30,-9.1,1.08,0.011,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.301,80.07,123.77,0.9,0.8,800,0.3,205,1.3
+1578,2023,2,2,21,0,-9.6,1.06,0.011,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.302,81.8,129.38,0.9,0.8,800,0.3,205,1.3
+1579,2023,2,2,21,30,-10,1.06,0.011,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.302,84.42,134.86,0.9,0.8,800,0.3,205,1.4
+1580,2023,2,2,22,0,-10.3,1.04,0.012,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.302,85.4,140.13,0.9,0.8,800,0.3,205,1.4
+1581,2023,2,2,22,30,-10.7,1.04,0.012,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.302,88.16,145.05,0.9,0.8,800,0.3,206,1.4
+1582,2023,2,2,23,0,-11,1.03,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.301,89.68,149.43,0.9,0.8,800,0.3,207,1.4
+1583,2023,2,2,23,30,-11.3,1.03,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.3,91.85,152.97,0.9,0.8,800,0.3,208,1.5
+1584,2023,2,3,0,0,-11.6,1.01,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.299,93.68,155.29,0.9,0.8,799,0.3,208,1.5
+1585,2023,2,3,0,30,-11.8,1.01,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.298,95.19,156.03,0.9,0.8,799,0.3,207,1.5
+1586,2023,2,3,1,0,-12,1,0.012,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.297,96.4,155.04,0.9,0.8,799,0.3,205,1.5
+1587,2023,2,3,1,30,-12.3,1,0.012,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.296,98.75,152.52,0.9,0.8,799,0.3,202,1.5
+1588,2023,2,3,2,0,-12.5,0.98,0.013,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.295,99.62,148.83,0.9,0.8,799,0.3,199,1.5
+1589,2023,2,3,2,30,-12.7,0.98,0.013,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.293,100,144.36,0.9,0.8,799,0.3,199,1.6
+1590,2023,2,3,3,0,-13,0.96,0.013,0.62,0,0,0,0,0,-13,0,0,0,0,0.291,100,139.38,0.9,0.8,799,0.3,199,1.6
+1591,2023,2,3,3,30,-13.2,0.96,0.013,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.29,100,134.07,0.9,0.8,799,0.2,201,1.7
+1592,2023,2,3,4,0,-13.5,0.96,0.013,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.288,100,128.55,0.91,0.8,799,0.2,203,1.8
+1593,2023,2,3,4,30,-13.6,0.96,0.013,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.287,100,122.92,0.91,0.8,799,0.2,201,1.8
+1594,2023,2,3,5,0,-13.7,0.97,0.014,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.286,100,117.23,0.91,0.8,799,0.2,198,1.8
+1595,2023,2,3,5,30,-13.7,0.97,0.014,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.285,100,111.53,0.91,0.8,799,0.2,193,1.8
+1596,2023,2,3,6,0,-13.7,0.99,0.015,0.62,0,0,0,0,8,-13.7,0,0,0,0,0.285,100,105.86,0.92,0.8,799,0.2,187,1.8
+1597,2023,2,3,6,30,-13.4,0.99,0.015,0.62,0,0,0,0,8,-13.5,0,0,0,0,0.285,99.51,100.26,0.92,0.8,799,0.2,186,1.8
+1598,2023,2,3,7,0,-13.2,1.01,0.015,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.285,97.08,94.76,0.92,0.8,799,0.2,184,1.8
+1599,2023,2,3,7,30,-11.7,1.01,0.015,0.62,13,191,16,0,0,-13.6,11,155,7,14,0.285,86.02,89.06,0.92,0.8,799,0.2,189,2
+1600,2023,2,3,8,0,-10.3,1.06,0.016,0.62,29,627,93,1,0,-12.4,34,474,18,83,0.285,84.84,84.11,0.92,0.8,799,0.2,194,2.3
+1601,2023,2,3,8,30,-8.6,1.06,0.016,0.62,39,791,187,0,0,-12.4,75,478,0,164,0.285,74.23,79.23,0.93,0.8,799,0.2,202,2.4
+1602,2023,2,3,9,0,-7,1.1,0.017,0.62,47,884,282,0,7,-10.2,157,277,0,231,0.286,78.12,74.61,0.93,0.8,799,0.2,209,2.5
+1603,2023,2,3,9,30,-5.5,1.1,0.017,0.62,54,943,371,0,7,-10.2,191,371,0,316,0.286,69.66,70.35,0.93,0.8,799,0.2,214,2.8
+1604,2023,2,3,10,0,-4.1,1.13,0.019,0.62,60,982,451,0,7,-8.7,211,466,0,397,0.287,70.37,66.52,0.93,0.8,799,0.2,219,3.1
+1605,2023,2,3,10,30,-3,1.13,0.019,0.62,64,1009,519,0,7,-8.7,245,475,0,459,0.287,64.74,63.21,0.93,0.8,798,0.2,221,3.4
+1606,2023,2,3,11,0,-1.9,1.16,0.02,0.62,68,1027,573,0,7,-7.6,280,458,0,505,0.288,65.25,60.52,0.93,0.8,798,0.2,223,3.7
+1607,2023,2,3,11,30,-1.1,1.16,0.02,0.62,70,1040,613,0,7,-7.6,276,521,0,548,0.288,61.53,58.53,0.93,0.8,798,0.2,224,3.9
+1608,2023,2,3,12,0,-0.3,1.2,0.019,0.62,70,1044,634,0,0,-7.1,115,939,7,622,0.289,59.98,57.32,0.92,0.8,797,0.2,225,4.1
+1609,2023,2,3,12,30,0.1,1.2,0.019,0.62,70,1037,636,0,0,-7.1,70,1037,0,636,0.289,58.26,56.95,0.92,0.8,797,0.3,226,4.2
+1610,2023,2,3,13,0,0.5,1.23,0.018,0.62,68,1034,625,0,0,-6.9,68,1034,0,625,0.29,57.71,57.42,0.92,0.8,796,0.3,228,4.3
+1611,2023,2,3,13,30,0.6,1.23,0.018,0.62,68,1025,600,0,0,-6.9,75,1010,14,599,0.291,57.3,58.73,0.92,0.8,796,0.3,230,4.3
+1612,2023,2,3,14,0,0.7,1.25,0.02,0.62,66,1010,559,0,0,-6.7,73,995,0,558,0.293,57.9,60.8,0.92,0.8,796,0.3,233,4.3
+1613,2023,2,3,14,30,0.5,1.25,0.02,0.62,64,986,503,0,0,-6.7,64,986,0,503,0.295,58.74,63.58,0.92,0.8,796,0.3,234,4.1
+1614,2023,2,3,15,0,0.3,1.28,0.022,0.62,60,948,431,0,0,-6.4,75,896,7,426,0.297,60.52,66.95,0.92,0.8,796,0.4,234,3.9
+1615,2023,2,3,15,30,-0.8,1.28,0.022,0.62,56,897,350,0,0,-6.4,60,875,14,347,0.298,65.56,70.84,0.93,0.8,796,0.4,232,3
+1616,2023,2,3,16,0,-1.9,1.27,0.026,0.62,49,826,261,0,7,-6.6,105,464,18,224,0.3,70.46,75.15,0.93,0.8,796,0.4,229,2.1
+1617,2023,2,3,16,30,-3.4,1.27,0.026,0.62,42,714,168,2,7,-6.6,89,106,29,108,0.3,78.74,79.8,0.94,0.8,796,0.4,222,1.8
+1618,2023,2,3,17,0,-4.9,1.23,0.032,0.62,29,516,77,7,7,-8.8,35,1,100,35,0.301,73.99,84.71,0.94,0.78,796,0.4,214,1.5
+1619,2023,2,3,17,30,-5.4,1.23,0.032,0.62,10,134,11,4,7,-8.8,6,0,57,6,0.302,76.75,89.63,0.94,0.78,795,0.4,207,1.6
+1620,2023,2,3,18,0,-5.8,1.22,0.034,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.302,74.91,95.41,0.94,0.78,795,0.4,199,1.6
+1621,2023,2,3,18,30,-6.1,1.22,0.034,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.303,76.64,100.92,0.94,0.78,795,0.4,195,1.7
+1622,2023,2,3,19,0,-6.5,1.22,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.304,76.97,106.52,0.94,0.78,795,0.4,191,1.8
+1623,2023,2,3,19,30,-6.7,1.22,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.305,78.16,112.19,0.94,0.78,795,0.4,190,1.9
+1624,2023,2,3,20,0,-6.8,1.19,0.037,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.305,78.44,117.89,0.95,0.78,794,0.4,188,1.9
+1625,2023,2,3,20,30,-6.8,1.19,0.037,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.307,78.44,123.56,0.95,0.78,794,0.5,190,1.9
+1626,2023,2,3,21,0,-6.7,1.18,0.039,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.309,78.65,129.17,0.95,0.78,794,0.5,191,2
+1627,2023,2,3,21,30,-6.7,1.18,0.039,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.31,78.65,134.65,0.95,0.78,794,0.5,195,1.9
+1628,2023,2,3,22,0,-6.6,1.2,0.038,0.62,0,0,0,0,7,-9.7,0,0,0,0,0.312,78.37,139.91,0.95,0.78,794,0.5,199,1.8
+1629,2023,2,3,22,30,-7,1.2,0.038,0.62,0,0,0,0,7,-9.7,0,0,0,0,0.315,80.81,144.81,0.94,0.78,794,0.5,203,1.8
+1630,2023,2,3,23,0,-7.3,1.23,0.031,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.317,79.32,149.17,0.94,0.78,794,0.5,207,1.7
+1631,2023,2,3,23,30,-7.6,1.23,0.031,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.319,81.18,152.69,0.94,0.78,794,0.5,209,1.7
+1632,2023,2,4,0,0,-8,1.23,0.028,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.322,80.4,154.99,0.94,0.78,794,0.5,210,1.7
+1633,2023,2,4,0,30,-8.2,1.23,0.028,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.325,81.66,155.73,0.94,0.78,794,0.5,211,1.7
+1634,2023,2,4,1,0,-8.4,1.22,0.028,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.328,81.04,154.76,0.94,0.78,793,0.5,212,1.7
+1635,2023,2,4,1,30,-8.5,1.22,0.028,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.33,81.67,152.26,0.94,0.78,793,0.5,213,1.6
+1636,2023,2,4,2,0,-8.7,1.22,0.029,0.62,0,0,0,0,7,-11.2,0,0,0,0,0.332,81.9,148.6,0.94,0.78,793,0.5,214,1.6
+1637,2023,2,4,2,30,-8.7,1.22,0.029,0.62,0,0,0,0,7,-11.2,0,0,0,0,0.331,81.9,144.15,0.94,0.78,793,0.5,217,1.5
+1638,2023,2,4,3,0,-8.8,1.21,0.03,0.62,0,0,0,0,7,-11.2,0,0,0,0,0.331,82.5,139.19,0.94,0.78,793,0.5,219,1.5
+1639,2023,2,4,3,30,-8.7,1.21,0.03,0.62,0,0,0,0,7,-11.2,0,0,0,0,0.33,81.86,133.89,0.94,0.78,793,0.5,220,1.4
+1640,2023,2,4,4,0,-8.5,1.22,0.028,0.62,0,0,0,0,7,-11,0,0,29,0,0.33,82.42,128.38,0.94,0.78,793,0.5,222,1.4
+1641,2023,2,4,4,30,-8.8,1.22,0.028,0.62,0,0,0,0,7,-11,0,0,14,0,0.329,84.37,122.76,0.93,0.78,793,0.5,223,1.3
+1642,2023,2,4,5,0,-9.1,1.27,0.022,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.328,85.71,117.07,0.92,0.78,793,0.5,225,1.3
+1643,2023,2,4,5,30,-9.6,1.27,0.022,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.328,89.14,111.37,0.91,0.78,793,0.5,227,1.4
+1644,2023,2,4,6,0,-10,1.29,0.018,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.329,88.64,105.7,0.9,0.78,793,0.4,230,1.4
+1645,2023,2,4,6,30,-10.1,1.29,0.018,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.326,89.34,100.09,0.9,0.78,793,0.4,231,1.4
+1646,2023,2,4,7,0,-10.2,1.3,0.018,0.62,0,0,0,0,0,-11.7,0,0,0,0,0.323,88.61,94.58,0.9,0.78,793,0.4,232,1.4
+1647,2023,2,4,7,30,-8.8,1.3,0.018,0.62,14,219,18,0,0,-11.7,14,219,4,18,0.321,79.38,88.9,0.9,0.78,793,0.4,231,1.7
+1648,2023,2,4,8,0,-7.4,1.32,0.022,0.62,29,588,91,0,0,-10.4,29,588,0,91,0.319,78.88,83.92,0.9,0.78,794,0.4,230,2
+1649,2023,2,4,8,30,-5.7,1.32,0.022,0.62,40,749,183,0,0,-10.4,40,749,0,183,0.317,69.24,79.03,0.91,0.78,794,0.4,227,2.2
+1650,2023,2,4,9,0,-4,1.33,0.025,0.62,50,841,276,0,0,-8.4,50,841,29,276,0.316,71.69,74.4,0.91,0.78,794,0.4,224,2.4
+1651,2023,2,4,9,30,-2.6,1.33,0.025,0.62,57,901,363,0,0,-8.4,57,901,0,363,0.314,64.59,70.12,0.91,0.78,794,0.4,226,2.6
+1652,2023,2,4,10,0,-1.2,1.34,0.027,0.62,63,940,441,0,0,-7.3,63,940,0,441,0.312,63.24,66.27,0.91,0.78,794,0.4,229,2.9
+1653,2023,2,4,10,30,-0.1,1.34,0.027,0.62,68,966,507,0,0,-7.3,68,966,0,507,0.311,58.37,62.95,0.91,0.78,794,0.5,232,3
+1654,2023,2,4,11,0,0.9,1.34,0.028,0.62,72,985,561,0,0,-6.5,72,985,0,561,0.31,57.55,60.24,0.91,0.78,794,0.5,235,3.1
+1655,2023,2,4,11,30,1.5,1.34,0.028,0.62,75,996,599,0,0,-6.6,75,996,0,599,0.311,55.06,58.24,0.91,0.78,793,0.5,235,3
+1656,2023,2,4,12,0,2.1,1.34,0.029,0.62,76,1002,621,0,0,-6,76,1002,0,621,0.312,54.92,57.03,0.91,0.78,793,0.5,235,2.9
+1657,2023,2,4,12,30,2.4,1.34,0.029,0.62,77,1001,627,0,0,-6,91,964,0,621,0.312,53.76,56.65,0.91,0.78,793,0.5,234,3.1
+1658,2023,2,4,13,0,2.7,1.37,0.031,0.62,77,997,618,0,0,-6,91,960,0,612,0.312,52.94,57.12,0.91,0.78,793,0.5,234,3.2
+1659,2023,2,4,13,30,2.7,1.37,0.031,0.62,76,987,593,0,0,-6,76,987,0,593,0.31,52.94,58.43,0.92,0.78,793,0.5,233,3.3
+1660,2023,2,4,14,0,2.8,1.39,0.034,0.62,75,970,552,0,0,-5.9,75,970,0,552,0.308,52.66,60.52,0.92,0.78,793,0.5,232,3.3
+1661,2023,2,4,14,30,2.6,1.39,0.034,0.62,73,944,497,0,0,-5.9,73,944,0,497,0.307,53.41,63.3,0.92,0.78,793,0.5,230,3.1
+1662,2023,2,4,15,0,2.4,1.36,0.041,0.62,69,907,428,0,0,-5.5,69,907,4,428,0.306,56,66.68,0.93,0.78,793,0.5,228,2.9
+1663,2023,2,4,15,30,1.2,1.36,0.041,0.62,64,853,348,0,0,-5.5,64,853,4,348,0.304,61.01,70.58,0.94,0.78,793,0.5,226,2.2
+1664,2023,2,4,16,0,0,1.31,0.049,0.62,57,774,259,0,0,-5,57,774,0,259,0.303,69.29,74.91,0.94,0.78,793,0.5,223,1.6
+1665,2023,2,4,16,30,-1.3,1.31,0.049,0.62,46,666,167,1,0,-5,54,582,18,159,0.302,76.18,79.57,0.94,0.78,793,0.5,218,1.5
+1666,2023,2,4,17,0,-2.6,1.31,0.045,0.62,32,481,78,6,7,-7.5,41,46,89,45,0.301,69.04,84.49,0.94,0.71,793,0.5,213,1.5
+1667,2023,2,4,17,30,-3.1,1.31,0.045,0.62,11,121,12,3,0,-7.5,8,21,43,8,0.3,71.65,89.44,0.94,0.71,793,0.5,208,1.5
+1668,2023,2,4,18,0,-3.6,1.32,0.038,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.299,70.17,95.19,0.94,0.71,793,0.5,204,1.4
+1669,2023,2,4,18,30,-4,1.32,0.038,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.299,72.3,100.71,0.94,0.71,793,0.5,200,1.4
+1670,2023,2,4,19,0,-4.3,1.32,0.034,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.298,72.5,106.32,0.93,0.71,793,0.5,196,1.4
+1671,2023,2,4,19,30,-4.7,1.32,0.034,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.297,74.71,111.99,0.94,0.71,793,0.5,194,1.5
+1672,2023,2,4,20,0,-5.1,1.32,0.032,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.296,76.3,117.69,0.94,0.71,793,0.5,192,1.5
+1673,2023,2,4,20,30,-5.4,1.32,0.032,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.295,78.05,123.36,0.94,0.71,793,0.5,193,1.6
+1674,2023,2,4,21,0,-5.6,1.3,0.032,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.294,79.78,128.96,0.94,0.71,793,0.5,194,1.7
+1675,2023,2,4,21,30,-5.7,1.3,0.032,0.62,0,0,0,0,6,-8.5,0,0,0,0,0.293,80.39,134.43,0.94,0.71,793,0.5,195,1.7
+1676,2023,2,4,22,0,-5.8,1.29,0.034,0.62,0,0,0,0,6,-8.4,0,0,0,0,0.292,81.92,139.68,0.94,0.71,793,0.5,197,1.8
+1677,2023,2,4,22,30,-5.7,1.29,0.034,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.291,81.2,144.57,0.94,0.71,792,0.5,197,1.9
+1678,2023,2,4,23,0,-5.7,1.28,0.035,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.29,82.33,148.91,0.94,0.71,792,0.5,197,1.9
+1679,2023,2,4,23,30,-5.7,1.28,0.035,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.29,82.33,152.4,0.94,0.71,792,0.5,197,2
+1680,2023,2,5,0,0,-5.7,1.28,0.036,0.62,0,0,0,0,7,-8,0,0,0,0,0.29,83.51,154.7,0.94,0.71,792,0.5,196,2
+1681,2023,2,5,0,30,-5.6,1.28,0.036,0.62,0,0,0,0,7,-8,0,0,0,0,0.29,82.88,155.43,0.94,0.71,792,0.5,195,2
+1682,2023,2,5,1,0,-5.6,1.29,0.036,0.62,0,0,0,0,6,-7.8,0,0,0,0,0.29,84.18,154.47,0.94,0.71,792,0.6,193,2.1
+1683,2023,2,5,1,30,-5.7,1.29,0.036,0.62,0,0,0,0,6,-7.8,0,0,0,0,0.29,84.83,152,0.94,0.71,792,0.6,191,2.1
+1684,2023,2,5,2,0,-5.8,1.32,0.032,0.62,0,0,0,0,6,-7.8,0,0,0,0,0.29,85.74,148.37,0.94,0.71,791,0.6,189,2.1
+1685,2023,2,5,2,30,-6.1,1.32,0.032,0.62,0,0,0,0,6,-7.8,0,0,0,0,0.29,87.72,143.94,0.93,0.71,791,0.6,187,2.1
+1686,2023,2,5,3,0,-6.3,1.34,0.029,0.62,0,0,0,0,6,-8,0,0,0,0,0.29,87.95,138.99,0.93,0.71,791,0.6,184,2.2
+1687,2023,2,5,3,30,-6.5,1.34,0.029,0.62,0,0,0,0,6,-8,0,0,0,0,0.29,89.31,133.71,0.93,0.71,791,0.6,183,2.2
+1688,2023,2,5,4,0,-6.7,1.37,0.027,0.62,0,0,0,0,6,-8.3,0,0,0,0,0.29,88.53,128.21,0.93,0.71,790,0.6,181,2.3
+1689,2023,2,5,4,30,-6.8,1.37,0.027,0.62,0,0,0,0,6,-8.3,0,0,0,0,0.29,89.21,122.59,0.93,0.71,790,0.6,180,2.3
+1690,2023,2,5,5,0,-7,1.41,0.025,0.62,0,0,0,0,6,-8.7,0,0,0,0,0.29,88,116.9,0.92,0.71,790,0.6,179,2.3
+1691,2023,2,5,5,30,-7.1,1.41,0.025,0.62,0,0,0,0,6,-8.7,0,0,0,0,0.289,88.56,111.2,0.92,0.71,789,0.6,179,2.4
+1692,2023,2,5,6,0,-7.2,1.43,0.025,0.62,0,0,0,0,6,-9.2,0,0,0,0,0.288,85.91,105.53,0.92,0.71,789,0.6,178,2.4
+1693,2023,2,5,6,30,-7.1,1.43,0.025,0.62,0,0,0,0,6,-9.2,0,0,0,0,0.286,85.25,99.91,0.92,0.71,789,0.6,178,2.4
+1694,2023,2,5,7,0,-6.9,1.44,0.026,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.285,81.55,94.4,0.92,0.71,789,0.5,178,2.5
+1695,2023,2,5,7,30,-5.5,1.44,0.026,0.62,14,210,19,4,7,-9.5,14,94,50,16,0.283,73.27,88.73,0.92,0.71,789,0.6,180,2.7
+1696,2023,2,5,8,0,-4,1.45,0.026,0.62,31,572,93,0,0,-8.5,34,468,7,85,0.282,71.02,83.73,0.92,0.71,789,0.6,181,3
+1697,2023,2,5,8,30,-2.6,1.45,0.026,0.62,42,734,184,0,0,-8.5,48,683,0,180,0.282,63.9,78.82,0.92,0.71,788,0.6,184,3.3
+1698,2023,2,5,9,0,-1.1,1.45,0.027,0.62,50,830,276,0,0,-6.9,63,757,0,269,0.282,64.51,74.17,0.92,0.71,788,0.6,188,3.5
+1699,2023,2,5,9,30,0.2,1.45,0.027,0.62,57,893,364,0,0,-6.9,105,653,7,330,0.283,58.69,69.88,0.91,0.71,788,0.5,192,4
+1700,2023,2,5,10,0,1.5,1.44,0.027,0.62,61,937,442,0,0,-5.5,112,738,0,412,0.283,59.45,66.02,0.91,0.71,788,0.5,197,4.5
+1701,2023,2,5,10,30,2.4,1.44,0.027,0.62,67,966,510,0,0,-5.6,72,947,0,507,0.284,55.69,62.68,0.91,0.71,787,0.5,201,5.3
+1702,2023,2,5,11,0,3.4,1.3,0.028,0.62,70,985,563,1,7,-5.2,189,590,18,484,0.286,53.52,59.96,0.91,0.71,787,0.5,205,6.1
+1703,2023,2,5,11,30,3.9,1.3,0.028,0.62,72,998,602,0,0,-5.2,162,766,7,568,0.286,51.61,57.95,0.91,0.71,786,0.5,207,6.5
+1704,2023,2,5,12,0,4.5,1.28,0.028,0.62,74,1004,625,0,0,-5.1,74,1004,0,625,0.287,49.66,56.73,0.91,0.71,785,0.5,209,6.9
+1705,2023,2,5,12,30,4.8,1.28,0.028,0.62,75,1003,631,0,0,-5.1,127,864,0,606,0.289,48.57,56.35,0.91,0.71,784,0.5,211,7.2
+1706,2023,2,5,13,0,5.1,1.27,0.03,0.62,74,998,620,0,0,-5.2,74,998,0,620,0.29,47.27,56.82,0.91,0.71,784,0.6,213,7.5
+1707,2023,2,5,13,30,5,1.27,0.03,0.62,76,982,594,0,0,-5.2,76,982,0,594,0.291,47.6,58.13,0.92,0.71,784,0.6,217,7.6
+1708,2023,2,5,14,0,4.9,1.09,0.038,0.62,75,960,552,0,0,-5.3,75,960,0,552,0.293,47.71,60.23,0.92,0.71,783,0.6,220,7.7
+1709,2023,2,5,14,30,4.5,1.09,0.038,0.62,74,932,497,0,0,-5.3,74,932,0,497,0.295,49.06,63.02,0.93,0.71,783,0.6,224,7.3
+1710,2023,2,5,15,0,4,1.09,0.047,0.62,71,891,428,0,0,-5,71,891,0,428,0.297,52.09,66.41,0.93,0.71,783,0.6,228,6.8
+1711,2023,2,5,15,30,2.9,1.09,0.047,0.62,67,830,347,0,0,-5,67,830,0,347,0.299,56.28,70.32,0.94,0.71,783,0.7,231,5.5
+1712,2023,2,5,16,0,1.8,1.07,0.06,0.62,61,740,257,0,0,-4.1,61,740,0,257,0.301,65.01,74.66,0.95,0.71,783,0.7,234,4.2
+1713,2023,2,5,16,30,0.5,1.07,0.06,0.62,53,599,164,1,0,-4.1,67,448,21,150,0.303,71.46,79.34,0.96,0.71,784,0.7,242,3.2
+1714,2023,2,5,17,0,-0.9,1.04,0.088,0.62,39,365,75,7,8,-3.8,35,1,100,35,0.305,80.89,84.27,0.97,0.73,784,0.8,249,2.2
+1715,2023,2,5,17,30,-1.3,1.04,0.088,0.62,11,75,12,4,8,-3.8,5,0,57,5,0.307,83.29,89.25,0.97,0.73,784,0.8,268,2.1
+1716,2023,2,5,18,0,-1.7,1.03,0.103,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.308,89.07,94.98,0.97,0.73,784,0.8,288,1.9
+1717,2023,2,5,18,30,-2,1.03,0.103,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.309,91.06,100.5,0.97,0.73,784,0.8,303,2.2
+1718,2023,2,5,19,0,-2.3,1.05,0.088,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.311,91.51,106.12,0.97,0.73,784,0.7,319,2.5
+1719,2023,2,5,19,30,-2.6,1.05,0.088,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.312,93.57,111.79,0.97,0.73,784,0.7,322,2.4
+1720,2023,2,5,20,0,-3,1.07,0.074,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.314,90.22,117.49,0.97,0.73,784,0.7,326,2.3
+1721,2023,2,5,20,30,-3.2,1.07,0.074,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.316,91.69,123.16,0.97,0.73,785,0.6,324,2
+1722,2023,2,5,21,0,-3.4,1.09,0.058,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.319,87.15,128.76,0.96,0.73,785,0.6,322,1.8
+1723,2023,2,5,21,30,-3.6,1.09,0.058,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.321,88.46,134.22,0.96,0.73,785,0.5,323,1.6
+1724,2023,2,5,22,0,-3.8,1.09,0.048,0.62,0,0,0,0,6,-5.9,0,0,0,0,0.323,85.12,139.45,0.96,0.73,785,0.5,325,1.4
+1725,2023,2,5,22,30,-3.9,1.09,0.048,0.62,0,0,0,0,6,-6,0,0,0,0,0.324,85.65,144.32,0.96,0.73,784,0.5,326,1.4
+1726,2023,2,5,23,0,-4.1,1.09,0.045,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.325,83.58,148.64,0.95,0.73,784,0.5,328,1.3
+1727,2023,2,5,23,30,-4.2,1.09,0.045,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.327,84.21,152.12,0.95,0.73,784,0.5,325,1.5
+1728,2023,2,6,0,0,-4.2,1.1,0.044,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.329,81.46,154.4,0.95,0.73,784,0.5,322,1.7
+1729,2023,2,6,0,30,-4.2,1.1,0.044,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.332,81.46,155.13,0.95,0.73,784,0.4,322,2.1
+1730,2023,2,6,1,0,-4.2,1.1,0.041,0.62,0,0,0,0,6,-7.1,0,0,0,0,0.335,79.99,154.18,0.95,0.73,785,0.4,322,2.4
+1731,2023,2,6,1,30,-4.2,1.1,0.041,0.62,0,0,0,0,6,-7.1,0,0,0,0,0.338,79.99,151.73,0.95,0.73,785,0.4,322,2.6
+1732,2023,2,6,2,0,-4.3,1.11,0.035,0.62,0,0,0,0,6,-7.3,0,0,0,0,0.34,79.87,148.13,0.94,0.73,785,0.4,321,2.7
+1733,2023,2,6,2,30,-4.5,1.11,0.035,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.341,81.08,143.72,0.94,0.73,785,0.4,320,2.8
+1734,2023,2,6,3,0,-4.6,1.13,0.029,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.342,79.55,138.79,0.94,0.73,785,0.4,318,2.8
+1735,2023,2,6,3,30,-5,1.13,0.029,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.343,81.99,133.52,0.93,0.73,785,0.4,316,2.6
+1736,2023,2,6,4,0,-5.4,1.15,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.343,81.06,128.03,0.93,0.73,785,0.4,313,2.3
+1737,2023,2,6,4,30,-5.9,1.15,0.023,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.344,84.2,122.41,0.92,0.73,785,0.4,310,2.2
+1738,2023,2,6,5,0,-6.5,1.19,0.018,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.344,83.17,116.73,0.92,0.73,785,0.4,307,2
+1739,2023,2,6,5,30,-7,1.19,0.018,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.345,86.54,111.03,0.92,0.73,786,0.4,304,1.9
+1740,2023,2,6,6,0,-7.5,1.24,0.015,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.345,84.66,105.35,0.91,0.73,786,0.4,302,1.8
+1741,2023,2,6,6,30,-7.5,1.24,0.015,0.62,0,0,0,0,4,-9.6,0,0,0,0,0.345,84.66,99.73,0.91,0.73,786,0.4,299,1.8
+1742,2023,2,6,7,0,-7.6,1.29,0.014,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.345,83.25,94.21,0.91,0.73,786,0.4,296,1.9
+1743,2023,2,6,7,30,-6.3,1.29,0.014,0.62,15,251,21,4,7,-9.9,9,0,64,9,0.346,75.33,88.55,0.9,0.73,786,0.4,296,2.5
+1744,2023,2,6,8,0,-5.1,1.32,0.014,0.62,27,630,98,5,8,-9,45,119,82,58,0.346,73.9,83.53,0.9,0.73,787,0.4,296,3.2
+1745,2023,2,6,8,30,-3.9,1.32,0.014,0.62,36,782,191,0,7,-9,56,573,25,169,0.347,67.52,78.6,0.9,0.73,787,0.4,304,4.1
+1746,2023,2,6,9,0,-2.7,1.35,0.014,0.62,43,870,284,0,7,-7.7,137,293,4,218,0.348,68.41,73.94,0.9,0.73,787,0.4,311,5.1
+1747,2023,2,6,9,30,-2.2,1.35,0.014,0.62,49,927,372,0,7,-7.7,209,42,0,224,0.349,65.93,69.64,0.9,0.73,787,0.4,316,5.4
+1748,2023,2,6,10,0,-1.7,1.36,0.015,0.62,53,966,450,0,7,-7.7,265,154,0,328,0.35,63.59,65.76,0.9,0.73,787,0.4,320,5.7
+1749,2023,2,6,10,30,-1.5,1.36,0.015,0.62,58,992,517,0,7,-7.7,191,589,0,464,0.35,62.66,62.41,0.9,0.73,787,0.4,322,5.5
+1750,2023,2,6,11,0,-1.4,1.37,0.016,0.62,61,1010,571,0,7,-8.1,230,485,0,475,0.35,60.26,59.68,0.9,0.73,787,0.4,324,5.4
+1751,2023,2,6,11,30,-1.4,1.37,0.016,0.62,64,1021,610,1,8,-8.1,319,92,18,368,0.349,60.26,57.66,0.9,0.73,787,0.4,325,5.1
+1752,2023,2,6,12,0,-1.3,1.36,0.017,0.62,67,1026,634,0,4,-8.4,380,51,0,408,0.348,58.52,56.43,0.91,0.73,787,0.4,325,4.8
+1753,2023,2,6,12,30,-1.2,1.36,0.017,0.62,67,1028,641,0,5,-8.4,382,124,0,451,0.347,58.1,56.04,0.91,0.73,787,0.4,326,4.6
+1754,2023,2,6,13,0,-1,1.34,0.017,0.62,66,1023,630,0,8,-8.4,365,215,0,484,0.346,57.01,56.52,0.91,0.73,787,0.4,326,4.4
+1755,2023,2,6,13,30,-0.9,1.34,0.017,0.62,65,1013,604,0,8,-8.4,184,691,21,552,0.345,56.66,57.83,0.91,0.73,788,0.5,328,4.2
+1756,2023,2,6,14,0,-0.8,1.33,0.016,0.62,62,997,562,0,0,-8.2,85,935,18,553,0.344,57.23,59.93,0.91,0.73,788,0.5,330,4
+1757,2023,2,6,14,30,-0.9,1.33,0.016,0.62,59,977,507,0,0,-8.2,110,750,14,454,0.344,57.65,62.73,0.92,0.73,788,0.5,333,3.8
+1758,2023,2,6,15,0,-0.9,1.33,0.017,0.62,56,947,439,0,5,-7.7,228,262,7,334,0.344,60.15,66.14,0.92,0.73,788,0.5,336,3.5
+1759,2023,2,6,15,30,-1.3,1.33,0.017,0.62,51,906,360,0,0,-7.6,102,697,7,340,0.344,62.01,70.06,0.92,0.73,789,0.5,339,2.8
+1760,2023,2,6,16,0,-1.7,1.35,0.018,0.62,45,844,272,0,0,-6.8,75,640,21,247,0.345,68,74.41,0.92,0.73,789,0.5,341,2.2
+1761,2023,2,6,16,30,-2.5,1.35,0.018,0.62,37,749,179,0,0,-6.8,54,581,0,164,0.345,72.23,79.1,0.92,0.73,790,0.5,343,1.6
+1762,2023,2,6,17,0,-3.3,1.37,0.016,0.62,27,587,88,4,5,-7.3,29,256,61,56,0.345,73.83,84.04,0.92,0.8,790,0.5,345,1
+1763,2023,2,6,17,30,-3.6,1.37,0.016,0.62,12,176,15,5,7,-7.3,6,0,71,6,0.345,75.5,89.04,0.91,0.8,790,0.5,345,1
+1764,2023,2,6,18,0,-4,1.32,0.016,0.62,0,0,0,0,5,-7.9,0,0,0,0,0.344,74.51,94.77,0.91,0.8,791,0.5,344,1
+1765,2023,2,6,18,30,-4.4,1.32,0.016,0.62,0,0,0,0,5,-7.9,0,0,0,0,0.344,76.78,100.29,0.91,0.8,791,0.5,341,1
+1766,2023,2,6,19,0,-4.8,1.24,0.015,0.62,0,0,0,0,5,-8.2,0,0,0,0,0.343,77.34,105.91,0.91,0.8,791,0.5,339,1
+1767,2023,2,6,19,30,-5.3,1.24,0.015,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.343,80.42,111.59,0.91,0.8,792,0.5,337,1
+1768,2023,2,6,20,0,-5.7,1.18,0.015,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.344,81.62,117.28,0.91,0.8,792,0.5,335,1.1
+1769,2023,2,6,20,30,-6.2,1.18,0.015,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.344,84.79,122.95,0.91,0.8,792,0.5,337,1.2
+1770,2023,2,6,21,0,-6.7,1.16,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.344,87.22,128.55,0.91,0.8,792,0.4,339,1.2
+1771,2023,2,6,21,30,-7.1,1.16,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.344,89.94,134,0.91,0.8,792,0.4,341,1.3
+1772,2023,2,6,22,0,-7.5,1.15,0.015,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.344,93.03,139.22,0.9,0.8,792,0.4,344,1.4
+1773,2023,2,6,22,30,-7.9,1.15,0.015,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.342,96.08,144.08,0.9,0.8,793,0.4,347,1.4
+1774,2023,2,6,23,0,-8.3,1.14,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.341,98.11,148.37,0.9,0.8,793,0.4,350,1.4
+1775,2023,2,6,23,30,-8.7,1.14,0.015,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.339,100,151.83,0.9,0.8,793,0.4,354,1.4
+1776,2023,2,7,0,0,-9.1,1.12,0.016,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.337,100,154.09,0.91,0.8,793,0.4,358,1.4
+1777,2023,2,7,0,30,-9.3,1.12,0.016,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.335,100,154.82,0.91,0.8,793,0.4,182,1.4
+1778,2023,2,7,1,0,-9.5,1.09,0.016,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.333,100,153.89,0.91,0.8,793,0.4,5,1.4
+1779,2023,2,7,1,30,-9.7,1.09,0.016,0.62,0,0,0,0,0,-9.7,0,0,0,0,0.331,100,151.46,0.91,0.8,793,0.4,4,1.5
+1780,2023,2,7,2,0,-9.9,1.08,0.017,0.62,0,0,0,0,0,-10,0,0,0,0,0.329,99.25,147.88,0.91,0.8,793,0.4,2,1.6
+1781,2023,2,7,2,30,-10.1,1.08,0.017,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.328,100,143.5,0.91,0.8,794,0.3,181,1.6
+1782,2023,2,7,3,0,-10.4,1.06,0.017,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.328,100,138.58,0.91,0.8,794,0.3,359,1.5
+1783,2023,2,7,3,30,-10.6,1.06,0.017,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.327,100,133.32,0.91,0.8,794,0.3,359,1.5
+1784,2023,2,7,4,0,-10.8,1.05,0.017,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.326,100,127.84,0.91,0.8,794,0.3,359,1.5
+1785,2023,2,7,4,30,-10.9,1.05,0.017,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.326,100,122.23,0.91,0.8,794,0.3,359,1.5
+1786,2023,2,7,5,0,-11.1,1.05,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.325,100,116.55,0.91,0.8,794,0.3,360,1.4
+1787,2023,2,7,5,30,-11.2,1.05,0.017,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.324,100,110.85,0.91,0.8,794,0.3,182,1.3
+1788,2023,2,7,6,0,-11.3,1.06,0.017,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.323,100,105.17,0.91,0.8,795,0.3,4,1.2
+1789,2023,2,7,6,30,-11.1,1.06,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.322,100,99.54,0.91,0.8,795,0.3,8,1.1
+1790,2023,2,7,7,0,-10.9,1.08,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.321,98.66,94.02,0.91,0.8,795,0.3,13,1
+1791,2023,2,7,7,30,-9.8,1.08,0.017,0.62,16,247,23,0,0,-11.1,16,247,0,23,0.321,90.54,88.35,0.91,0.8,796,0.4,27,1
+1792,2023,2,7,8,0,-8.7,1.1,0.017,0.62,29,623,102,0,0,-10.2,29,623,0,102,0.32,88.58,83.31,0.92,0.8,796,0.4,40,0.9
+1793,2023,2,7,8,30,-7.2,1.1,0.017,0.62,40,775,196,0,0,-10.2,76,456,0,168,0.32,78.85,78.38,0.92,0.8,796,0.4,29,0.9
+1794,2023,2,7,9,0,-5.8,1.13,0.018,0.62,48,864,290,0,0,-8.8,79,711,0,278,0.32,79.09,73.71,0.92,0.8,796,0.4,18,0.9
+1795,2023,2,7,9,30,-4.3,1.13,0.018,0.62,55,919,378,0,0,-8.8,67,854,0,368,0.319,70.6,69.39,0.92,0.8,796,0.4,183,1.1
+1796,2023,2,7,10,0,-2.8,1.15,0.019,0.62,60,955,456,0,0,-7.7,60,955,0,456,0.319,68.84,65.5,0.92,0.8,796,0.5,348,1.4
+1797,2023,2,7,10,30,-1.7,1.15,0.019,0.62,65,975,521,0,0,-7.7,65,975,0,521,0.318,63.47,62.14,0.92,0.8,796,0.5,342,1.4
+1798,2023,2,7,11,0,-0.6,1.14,0.023,0.62,71,990,575,0,0,-7,71,990,0,575,0.317,61.79,59.39,0.93,0.8,796,0.5,337,1.5
+1799,2023,2,7,11,30,0.1,1.14,0.023,0.62,74,1002,614,0,0,-7,74,1002,0,614,0.316,58.73,57.36,0.93,0.8,796,0.5,329,1.3
+1800,2023,2,7,12,0,0.7,1.14,0.025,0.62,76,1008,638,0,0,-6.3,76,1008,0,638,0.315,59.4,56.12,0.93,0.8,795,0.5,322,1.2
+1801,2023,2,7,12,30,1.1,1.14,0.025,0.62,76,1010,645,0,0,-6.3,76,1010,0,645,0.314,57.72,55.73,0.93,0.8,795,0.5,312,1.1
+1802,2023,2,7,13,0,1.5,1.15,0.025,0.62,75,1008,636,0,0,-6.1,75,1008,0,636,0.313,57.11,56.2,0.93,0.8,795,0.5,303,1.1
+1803,2023,2,7,13,30,1.7,1.15,0.025,0.62,76,997,611,0,0,-6.1,76,997,0,611,0.312,56.3,57.53,0.94,0.8,795,0.5,299,1
+1804,2023,2,7,14,0,1.8,1.13,0.029,0.62,74,979,569,0,0,-6,74,979,0,569,0.311,56.1,59.63,0.94,0.8,794,0.5,296,0.8
+1805,2023,2,7,14,30,1.8,1.13,0.029,0.62,70,958,513,0,0,-6,70,958,0,513,0.309,56.1,62.44,0.94,0.8,794,0.6,285,0.6
+1806,2023,2,7,15,0,1.8,1.15,0.028,0.62,65,929,445,0,0,-5.9,65,929,0,445,0.308,56.45,65.87,0.94,0.8,794,0.6,275,0.4
+1807,2023,2,7,15,30,1.1,1.15,0.028,0.62,59,886,365,0,0,-5.9,59,886,0,365,0.305,59.35,69.8,0.94,0.8,794,0.6,229,0.5
+1808,2023,2,7,16,0,0.5,1.16,0.027,0.62,52,822,276,0,0,-4.5,52,822,0,276,0.303,69.04,74.16,0.94,0.8,794,0.6,184,0.5
+1809,2023,2,7,16,30,-1,1.16,0.027,0.62,43,722,182,0,0,-4.5,43,722,0,182,0.301,76.98,78.86,0.94,0.8,794,0.6,184,0.7
+1810,2023,2,7,17,0,-2.4,1.18,0.027,0.62,30,553,90,0,0,-6.4,30,553,0,90,0.299,73.79,83.81,0.94,0.75,794,0.6,184,0.9
+1811,2023,2,7,17,30,-3,1.18,0.027,0.62,14,195,18,0,0,-6.4,14,195,0,18,0.297,77.24,88.84,0.93,0.75,795,0.6,188,0.9
+1812,2023,2,7,18,0,-3.6,1.18,0.027,0.62,0,0,0,0,0,-7,0,0,0,0,0.295,77.52,94.55,0.93,0.75,795,0.6,192,0.9
+1813,2023,2,7,18,30,-3.9,1.18,0.027,0.62,0,0,0,0,0,-7,0,0,0,0,0.293,79.28,100.09,0.93,0.75,795,0.6,196,0.9
+1814,2023,2,7,19,0,-4.2,1.19,0.026,0.62,0,0,0,0,0,-7.1,0,0,0,0,0.292,79.99,105.71,0.93,0.75,795,0.6,201,0.8
+1815,2023,2,7,19,30,-4.5,1.19,0.026,0.62,0,0,0,0,0,-7.1,0,0,0,0,0.291,81.81,111.39,0.93,0.75,795,0.6,202,0.8
+1816,2023,2,7,20,0,-4.7,1.2,0.025,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.291,82.26,117.08,0.93,0.75,795,0.6,204,0.8
+1817,2023,2,7,20,30,-5,1.2,0.025,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.29,84.15,122.75,0.93,0.75,795,0.6,207,0.8
+1818,2023,2,7,21,0,-5.3,1.21,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.29,85.45,128.34,0.92,0.75,795,0.6,211,0.8
+1819,2023,2,7,21,30,-5.5,1.21,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.29,86.75,133.78,0.92,0.75,795,0.6,210,0.8
+1820,2023,2,7,22,0,-5.8,1.22,0.022,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.29,87.7,138.99,0.92,0.75,795,0.6,210,0.9
+1821,2023,2,7,22,30,-6,1.22,0.022,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.29,88.93,143.83,0.92,0.75,794,0.6,210,0.9
+1822,2023,2,7,23,0,-6.3,1.22,0.022,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.29,89.33,148.1,0.92,0.75,794,0.6,210,0.9
+1823,2023,2,7,23,30,-6.6,1.22,0.022,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.29,91.41,151.54,0.92,0.75,794,0.6,210,0.9
+1824,2023,2,8,0,0,-6.9,1.24,0.022,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,91.97,153.78,0.92,0.75,794,0.6,211,0.9
+1825,2023,2,8,0,30,-7.1,1.24,0.022,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,93.39,154.51,0.92,0.75,794,0.6,212,0.9
+1826,2023,2,8,1,0,-7.4,1.26,0.022,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.291,93.59,153.58,0.92,0.75,794,0.6,212,0.8
+1827,2023,2,8,1,30,-7.6,1.26,0.022,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.291,95.05,151.18,0.92,0.75,794,0.6,213,0.8
+1828,2023,2,8,2,0,-7.8,1.3,0.025,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.291,94.15,147.62,0.92,0.75,793,0.6,213,0.8
+1829,2023,2,8,2,30,-8,1.3,0.025,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.292,95.62,143.26,0.93,0.75,793,0.6,211,0.8
+1830,2023,2,8,3,0,-8.2,1.33,0.03,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.292,94.67,138.37,0.93,0.75,793,0.6,209,0.8
+1831,2023,2,8,3,30,-8.4,1.33,0.03,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.293,96.15,133.12,0.93,0.75,793,0.6,208,0.7
+1832,2023,2,8,4,0,-8.5,1.33,0.037,0.62,0,0,0,0,0,-9.2,0,0,0,0,0.294,94.51,127.65,0.94,0.75,793,0.7,207,0.7
+1833,2023,2,8,4,30,-8.7,1.33,0.037,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.295,96,122.04,0.94,0.75,793,0.6,215,0.7
+1834,2023,2,8,5,0,-8.8,1.28,0.043,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.296,94.63,116.36,0.94,0.75,793,0.6,222,0.7
+1835,2023,2,8,5,30,-8.7,1.28,0.043,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.297,93.89,110.66,0.94,0.75,793,0.6,234,0.7
+1836,2023,2,8,6,0,-8.6,1.24,0.041,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.298,93.52,104.98,0.94,0.75,793,0.5,246,0.6
+1837,2023,2,8,6,30,-8.4,1.24,0.041,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.3,92.07,99.35,0.94,0.75,793,0.5,248,0.7
+1838,2023,2,8,7,0,-8.1,1.24,0.032,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.301,91.37,93.82,0.94,0.75,793,0.5,250,0.7
+1839,2023,2,8,7,30,-7.1,1.24,0.032,0.62,18,270,27,6,7,-9.3,9,0,86,9,0.303,84.58,88.16,0.93,0.75,793,0.4,246,1
+1840,2023,2,8,8,0,-6.1,1.25,0.024,0.62,32,614,106,5,7,-8.6,54,126,68,69,0.304,82.74,83.1,0.93,0.75,793,0.4,243,1.3
+1841,2023,2,8,8,30,-4.5,1.25,0.024,0.62,42,772,200,0,0,-8.6,45,752,0,199,0.305,73.29,78.16,0.92,0.75,793,0.4,245,1.6
+1842,2023,2,8,9,0,-2.9,1.24,0.019,0.62,48,868,295,0,0,-7.5,53,845,0,293,0.306,70.56,73.47,0.91,0.75,793,0.4,247,1.9
+1843,2023,2,8,9,30,-1.4,1.24,0.019,0.62,53,927,383,0,4,-7.5,151,554,11,348,0.307,63.16,69.14,0.91,0.75,793,0.4,251,2.4
+1844,2023,2,8,10,0,0.2,1.24,0.016,0.62,56,968,462,0,4,-6.8,263,290,0,385,0.309,59.37,65.23,0.91,0.75,793,0.4,255,2.9
+1845,2023,2,8,10,30,1.1,1.24,0.016,0.62,61,995,530,0,0,-6.8,163,713,7,499,0.31,55.57,61.86,0.91,0.75,792,0.4,254,3.3
+1846,2023,2,8,11,0,1.9,1.23,0.015,0.62,62,1014,583,0,0,-6.7,62,1014,0,583,0.311,52.93,59.1,0.91,0.75,792,0.4,252,3.7
+1847,2023,2,8,11,30,2.2,1.23,0.015,0.62,64,1026,622,0,0,-6.7,64,1026,0,622,0.311,51.81,57.05,0.91,0.75,792,0.4,250,4.1
+1848,2023,2,8,12,0,2.5,1.19,0.016,0.62,66,1032,646,0,0,-7.2,155,831,14,622,0.31,48.96,55.81,0.91,0.75,791,0.4,248,4.5
+1849,2023,2,8,12,30,2.7,1.19,0.016,0.62,68,1033,654,0,4,-7.2,422,124,0,492,0.311,48.21,55.41,0.91,0.75,790,0.4,248,4.7
+1850,2023,2,8,13,0,2.8,1.14,0.018,0.62,69,1028,645,0,4,-7.5,365,20,0,376,0.312,46.82,55.89,0.92,0.75,790,0.4,249,5
+1851,2023,2,8,13,30,2.7,1.14,0.018,0.62,67,1017,618,0,4,-7.5,365,43,0,388,0.313,47.1,57.22,0.92,0.75,789,0.4,253,5.3
+1852,2023,2,8,14,0,2.6,1.14,0.02,0.62,67,1000,577,0,4,-7.4,306,260,0,439,0.315,47.79,59.33,0.93,0.75,789,0.5,257,5.5
+1853,2023,2,8,14,30,2.2,1.14,0.02,0.62,64,976,520,0,4,-7.4,202,384,7,381,0.316,49.17,62.16,0.93,0.75,789,0.5,266,5.8
+1854,2023,2,8,15,0,1.7,1.13,0.023,0.62,61,943,451,0,4,-7.1,192,25,0,202,0.316,51.91,65.59,0.93,0.75,789,0.5,275,6
+1855,2023,2,8,15,30,0.7,1.13,0.023,0.62,57,902,372,0,6,-7.1,139,14,0,144,0.318,55.78,69.54,0.93,0.75,789,0.5,286,5.9
+1856,2023,2,8,16,0,-0.3,1.12,0.024,0.62,50,841,283,0,6,-7.3,123,30,0,131,0.319,59.29,73.91,0.93,0.75,789,0.5,298,5.8
+1857,2023,2,8,16,30,-1.5,1.12,0.024,0.62,42,751,190,0,6,-7.3,75,4,0,76,0.321,64.72,78.62,0.92,0.75,789,0.4,308,5.9
+1858,2023,2,8,17,0,-2.8,1.13,0.025,0.62,31,586,96,6,6,-8.5,32,0,86,32,0.324,64.85,83.59,0.92,0.8,790,0.4,317,6.1
+1859,2023,2,8,17,30,-3.7,1.13,0.025,0.62,15,217,20,5,6,-8.5,9,0,71,9,0.326,69.44,88.64,0.92,0.8,791,0.4,322,6.5
+1860,2023,2,8,18,0,-4.7,1.17,0.021,0.62,0,0,0,0,7,-10.6,0,0,0,0,0.329,63.22,94.34,0.92,0.8,791,0.3,327,6.9
+1861,2023,2,8,18,30,-5.6,1.17,0.021,0.62,0,0,0,0,7,-10.6,0,0,0,0,0.33,67.76,99.88,0.92,0.8,792,0.3,329,6.6
+1862,2023,2,8,19,0,-6.4,1.18,0.017,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.331,62.03,105.5,0.91,0.8,792,0.2,331,6.2
+1863,2023,2,8,19,30,-7,1.18,0.017,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.332,64.95,111.18,0.91,0.8,792,0.2,330,5.8
+1864,2023,2,8,20,0,-7.6,1.18,0.016,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.333,64.29,116.88,0.92,0.8,792,0.2,330,5.3
+1865,2023,2,8,20,30,-7.9,1.18,0.016,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.333,65.8,122.54,0.92,0.8,792,0.2,329,5.2
+1866,2023,2,8,21,0,-8.2,1.15,0.02,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.334,67.16,128.12,0.93,0.8,793,0.3,328,5.2
+1867,2023,2,8,21,30,-8.2,1.15,0.02,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.334,67.16,133.56,0.94,0.8,793,0.3,329,5.4
+1868,2023,2,8,22,0,-8.3,1.09,0.026,0.62,0,0,0,0,9,-13,0,0,0,0,0.334,68.76,138.75,0.95,0.8,793,0.3,331,5.6
+1869,2023,2,8,22,30,-8.2,1.09,0.026,0.62,0,0,0,0,6,-13,0,0,0,0,0.334,68.23,143.58,0.95,0.8,793,0.3,332,5.8
+1870,2023,2,8,23,0,-8.2,1.05,0.03,0.62,0,0,0,0,6,-12.7,0,0,0,0,0.334,69.95,147.83,0.95,0.8,793,0.3,333,6
+1871,2023,2,8,23,30,-8.2,1.05,0.03,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.334,69.95,151.24,0.95,0.8,793,0.4,335,6.1
+1872,2023,2,9,0,0,-8.3,1.05,0.031,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.8,153.47,0.95,0.8,794,0.4,337,6.3
+1873,2023,2,9,0,30,-8.3,1.05,0.031,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.8,154.19,0.95,0.8,794,0.4,342,6.3
+1874,2023,2,9,1,0,-8.3,1.15,0.027,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.74,153.28,0.95,0.8,794,0.3,347,6.3
+1875,2023,2,9,1,30,-8.6,1.15,0.027,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.334,73.52,150.89,0.94,0.8,795,0.3,351,6
+1876,2023,2,9,2,0,-8.9,1.24,0.02,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.334,73.8,147.36,0.93,0.8,795,0.3,355,5.6
+1877,2023,2,9,2,30,-9.3,1.24,0.02,0.62,0,0,0,0,5,-12.7,0,0,0,0,0.335,76.15,143.02,0.92,0.8,795,0.3,356,5.1
+1878,2023,2,9,3,0,-9.6,1.24,0.018,0.62,0,0,0,0,5,-12.9,0,0,0,0,0.335,76.97,138.15,0.92,0.8,795,0.3,358,4.6
+1879,2023,2,9,3,30,-10,1.24,0.018,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,79.54,132.91,0.92,0.8,796,0.3,358,4
+1880,2023,2,9,4,0,-10.4,1.23,0.019,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,81.85,127.45,0.92,0.8,796,0.3,358,3.4
+1881,2023,2,9,4,30,-10.9,1.23,0.019,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,85.16,121.85,0.92,0.8,796,0.3,355,2.9
+1882,2023,2,9,5,0,-11.3,1.23,0.022,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.335,86.74,116.17,0.93,0.8,797,0.3,351,2.3
+1883,2023,2,9,5,30,-11.6,1.23,0.022,0.62,0,0,0,0,5,-13.1,0,0,0,0,0.335,88.84,110.47,0.93,0.8,797,0.3,349,2.2
+1884,2023,2,9,6,0,-11.8,1.22,0.023,0.62,0,0,0,0,4,-13.3,0,0,0,0,0.335,88.42,104.78,0.93,0.8,798,0.3,346,2
+1885,2023,2,9,6,30,-11.6,1.22,0.023,0.62,0,0,0,0,5,-13.3,0,0,0,0,0.334,87.01,99.15,0.93,0.8,798,0.3,347,2.1
+1886,2023,2,9,7,0,-11.3,1.2,0.023,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.334,85.05,93.62,0.93,0.8,798,0.3,347,2.2
+1887,2023,2,9,7,30,-10.1,1.2,0.023,0.62,18,302,29,6,7,-13.3,15,39,79,16,0.333,77.41,87.96,0.93,0.8,799,0.3,353,2.8
+1888,2023,2,9,8,0,-8.9,1.19,0.021,0.62,33,641,112,0,0,-12.5,34,603,7,109,0.333,75.2,82.88,0.92,0.8,799,0.3,359,3.4
+1889,2023,2,9,8,30,-7.8,1.19,0.021,0.62,42,791,208,0,0,-12.5,42,791,0,208,0.333,69.03,77.92,0.92,0.8,799,0.3,192,3.8
+1890,2023,2,9,9,0,-6.7,1.19,0.019,0.62,50,881,304,0,0,-11.9,50,881,0,304,0.333,66.47,73.23,0.92,0.8,799,0.3,25,4.2
+1891,2023,2,9,9,30,-6.2,1.19,0.019,0.62,55,937,393,0,0,-11.9,55,937,0,393,0.333,63.98,68.88,0.92,0.8,799,0.3,31,4
+1892,2023,2,9,10,0,-5.7,1.2,0.018,0.62,60,976,473,0,0,-12.9,60,976,0,473,0.333,57.07,64.96,0.92,0.8,799,0.3,38,3.8
+1893,2023,2,9,10,30,-5.3,1.2,0.018,0.62,64,1002,541,0,0,-12.9,64,1002,0,541,0.333,55.37,61.57,0.92,0.8,799,0.3,37,3.3
+1894,2023,2,9,11,0,-4.8,1.19,0.019,0.62,68,1019,596,0,0,-13.2,68,1019,0,596,0.333,51.79,58.8,0.92,0.8,799,0.3,37,2.8
+1895,2023,2,9,11,30,-4.5,1.19,0.019,0.62,71,1031,636,0,0,-13.2,71,1031,0,636,0.332,50.63,56.74,0.92,0.8,799,0.3,29,2.2
+1896,2023,2,9,12,0,-4.1,1.18,0.019,0.62,72,1038,660,0,0,-13.4,72,1038,0,660,0.332,48.48,55.49,0.92,0.8,799,0.3,21,1.7
+1897,2023,2,9,12,30,-3.8,1.18,0.019,0.62,71,1041,667,0,0,-13.4,71,1041,0,667,0.332,47.4,55.09,0.92,0.8,799,0.3,182,1.4
+1898,2023,2,9,13,0,-3.5,1.17,0.018,0.62,71,1039,658,0,0,-13.6,71,1039,0,658,0.332,45.39,55.57,0.92,0.8,799,0.3,343,1.2
+1899,2023,2,9,13,30,-3.2,1.17,0.018,0.62,68,1033,632,0,0,-13.6,68,1033,0,632,0.332,44.33,56.9,0.92,0.8,798,0.3,339,1.2
+1900,2023,2,9,14,0,-3,1.16,0.016,0.62,65,1022,591,0,0,-13.9,65,1022,0,591,0.332,42.63,59.03,0.92,0.8,798,0.3,335,1.2
+1901,2023,2,9,14,30,-3,1.16,0.016,0.62,61,1004,535,0,0,-13.9,61,1004,0,535,0.331,42.63,61.86,0.91,0.8,798,0.3,346,1.3
+1902,2023,2,9,15,0,-3,1.17,0.015,0.62,56,978,465,0,0,-14.2,56,978,0,465,0.33,41.65,65.31,0.91,0.8,798,0.3,358,1.4
+1903,2023,2,9,15,30,-3.4,1.17,0.015,0.62,51,940,384,0,0,-14.2,51,940,0,384,0.329,42.91,69.27,0.91,0.8,798,0.3,191,1.3
+1904,2023,2,9,16,0,-3.7,1.18,0.015,0.62,46,883,294,0,0,-14.4,46,883,0,294,0.328,43.18,73.66,0.91,0.8,798,0.3,23,1.2
+1905,2023,2,9,16,30,-4.8,1.18,0.015,0.62,38,798,199,0,0,-14.4,38,798,0,199,0.327,46.9,78.38,0.91,0.8,798,0.3,51,0.9
+1906,2023,2,9,17,0,-5.8,1.21,0.015,0.62,29,648,104,1,0,-12.2,35,546,18,98,0.327,60.71,83.36,0.91,0.8,798,0.3,78,0.7
+1907,2023,2,9,17,30,-6.5,1.21,0.015,0.62,16,262,23,2,7,-12.2,15,147,32,19,0.327,64.04,88.43,0.91,0.8,798,0.3,94,0.8
+1908,2023,2,9,18,0,-7.2,1.23,0.015,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.328,63,94.12,0.91,0.8,798,0.3,110,0.9
+1909,2023,2,9,18,30,-7.8,1.23,0.015,0.62,0,0,0,0,0,-13,0,0,0,0,0.328,65.99,99.67,0.91,0.8,798,0.3,119,1
+1910,2023,2,9,19,0,-8.4,1.24,0.015,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.328,65.37,105.3,0.91,0.8,799,0.3,127,1.1
+1911,2023,2,9,19,30,-8.9,1.24,0.015,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.327,67.97,110.98,0.91,0.8,799,0.3,137,1.1
+1912,2023,2,9,20,0,-9.5,1.26,0.014,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.327,69.41,116.67,0.91,0.8,799,0.3,147,1.2
+1913,2023,2,9,20,30,-10,1.26,0.014,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.327,72.2,122.33,0.91,0.8,799,0.3,158,1.2
+1914,2023,2,9,21,0,-10.6,1.27,0.013,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.326,75.03,127.91,0.9,0.8,799,0.3,168,1.2
+1915,2023,2,9,21,30,-11,1.27,0.013,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.326,77.46,133.34,0.9,0.8,799,0.3,174,1.3
+1916,2023,2,9,22,0,-11.5,1.27,0.012,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.326,80.05,138.52,0.9,0.8,799,0.3,181,1.3
+1917,2023,2,9,22,30,-11.9,1.27,0.012,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.326,82.66,143.32,0.9,0.8,799,0.3,183,1.4
+1918,2023,2,9,23,0,-12.3,1.27,0.013,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.326,84.61,147.56,0.9,0.8,799,0.3,186,1.4
+1919,2023,2,9,23,30,-12.6,1.27,0.013,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.325,86.68,150.95,0.9,0.8,799,0.3,184,1.4
+1920,2023,2,10,0,0,-12.9,1.26,0.013,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.325,87.84,153.15,0.9,0.8,799,0.3,182,1.4
+1921,2023,2,10,0,30,-13.2,1.26,0.013,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.325,90.01,153.87,0.9,0.8,799,0.3,179,1.4
+1922,2023,2,10,1,0,-13.5,1.26,0.014,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.324,90.31,152.96,0.9,0.8,799,0.3,176,1.5
+1923,2023,2,10,1,30,-13.7,1.26,0.014,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.323,91.8,150.6,0.9,0.8,799,0.3,173,1.5
+1924,2023,2,10,2,0,-13.9,1.26,0.015,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.322,90.3,147.09,0.9,0.8,798,0.3,170,1.5
+1925,2023,2,10,2,30,-14,1.26,0.015,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.321,91.05,142.78,0.9,0.8,798,0.3,169,1.5
+1926,2023,2,10,3,0,-14.1,1.26,0.015,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.32,87.67,137.92,0.9,0.8,798,0.3,168,1.5
+1927,2023,2,10,3,30,-14.2,1.26,0.015,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.319,88.39,132.7,0.9,0.8,798,0.3,169,1.5
+1928,2023,2,10,4,0,-14.3,1.25,0.016,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.317,85.05,127.24,0.9,0.8,798,0.3,170,1.5
+1929,2023,2,10,4,30,-14.3,1.25,0.016,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.316,85.05,121.65,0.9,0.8,798,0.3,172,1.5
+1930,2023,2,10,5,0,-14.4,1.24,0.016,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.314,82.5,115.97,0.91,0.8,798,0.3,175,1.4
+1931,2023,2,10,5,30,-14.4,1.24,0.016,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.312,82.5,110.27,0.91,0.8,798,0.3,177,1.4
+1932,2023,2,10,6,0,-14.4,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.311,80.03,104.59,0.91,0.8,798,0.3,180,1.3
+1933,2023,2,10,6,30,-14.1,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.309,78.08,98.95,0.91,0.8,798,0.4,183,1.4
+1934,2023,2,10,7,0,-13.7,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.306,75.52,93.41,0.91,0.8,798,0.4,186,1.4
+1935,2023,2,10,7,30,-12.4,1.23,0.017,0.62,19,319,31,0,0,-17.1,19,319,0,31,0.305,68.05,87.76,0.91,0.8,799,0.4,190,1.7
+1936,2023,2,10,8,0,-11.1,1.24,0.017,0.62,32,651,115,0,0,-16.4,33,634,0,114,0.303,65.19,82.66,0.91,0.8,799,0.4,194,2
+1937,2023,2,10,8,30,-9.3,1.24,0.017,0.62,41,794,210,0,0,-16.4,41,794,0,210,0.302,56.54,77.69,0.91,0.8,799,0.4,201,2.3
+1938,2023,2,10,9,0,-7.6,1.25,0.017,0.62,48,878,305,0,0,-14.5,48,878,0,305,0.3,57.79,72.98,0.91,0.8,799,0.4,207,2.6
+1939,2023,2,10,9,30,-6,1.25,0.017,0.62,54,933,394,0,0,-14.5,54,933,0,394,0.299,51.11,68.62,0.91,0.8,799,0.4,213,3
+1940,2023,2,10,10,0,-4.4,1.26,0.017,0.62,59,970,474,0,0,-13.3,59,970,0,474,0.299,49.75,64.68,0.9,0.8,799,0.4,219,3.4
+1941,2023,2,10,10,30,-3.4,1.26,0.017,0.62,63,996,542,0,0,-13.4,63,996,0,542,0.298,46.1,61.28,0.9,0.8,798,0.4,219,3.5
+1942,2023,2,10,11,0,-2.4,1.27,0.017,0.62,66,1014,596,0,0,-12.4,66,1014,0,596,0.297,46.38,58.49,0.9,0.8,798,0.4,219,3.6
+1943,2023,2,10,11,30,-1.6,1.27,0.017,0.62,68,1026,635,0,0,-12.4,68,1026,0,635,0.297,43.73,56.43,0.9,0.8,798,0.4,217,3.6
+1944,2023,2,10,12,0,-0.8,1.27,0.017,0.62,69,1033,659,0,0,-11.5,69,1033,0,659,0.296,44.21,55.17,0.9,0.8,797,0.4,216,3.7
+1945,2023,2,10,12,30,-0.3,1.27,0.017,0.62,68,1036,666,0,0,-11.5,68,1036,0,666,0.295,42.63,54.77,0.9,0.8,797,0.4,215,3.7
+1946,2023,2,10,13,0,0.2,1.27,0.016,0.62,68,1034,657,0,0,-10.8,68,1034,0,657,0.295,43.44,55.25,0.9,0.8,797,0.4,214,3.8
+1947,2023,2,10,13,30,0.4,1.27,0.016,0.62,67,1027,632,0,0,-10.8,67,1027,0,632,0.295,42.82,56.59,0.9,0.8,797,0.4,213,3.8
+1948,2023,2,10,14,0,0.6,1.28,0.015,0.62,64,1015,591,0,0,-10.4,64,1015,0,591,0.295,43.67,58.72,0.89,0.8,796,0.4,213,3.8
+1949,2023,2,10,14,30,0.5,1.28,0.015,0.62,60,998,535,0,0,-10.4,60,998,0,535,0.295,43.98,61.57,0.89,0.8,796,0.4,212,3.7
+1950,2023,2,10,15,0,0.4,1.28,0.015,0.62,56,972,466,0,0,-10,56,972,0,466,0.296,45.42,65.03,0.89,0.8,796,0.4,211,3.7
+1951,2023,2,10,15,30,-0.2,1.28,0.015,0.62,51,934,386,0,0,-10,51,934,0,386,0.297,47.44,69.01,0.89,0.8,796,0.4,208,3.2
+1952,2023,2,10,16,0,-0.9,1.28,0.014,0.62,45,878,296,0,0,-9.2,45,878,0,296,0.297,53.21,73.4,0.89,0.8,796,0.4,205,2.7
+1953,2023,2,10,16,30,-2.6,1.28,0.014,0.62,37,791,200,0,0,-9.2,37,791,0,200,0.298,60.3,78.14,0.89,0.8,796,0.4,199,2.1
+1954,2023,2,10,17,0,-4.3,1.28,0.014,0.62,29,645,106,0,0,-9.1,29,645,0,106,0.298,69.18,83.13,0.89,0.79,796,0.4,193,1.5
+1955,2023,2,10,17,30,-5,1.28,0.014,0.62,16,264,24,1,0,-9.1,17,202,14,23,0.297,72.93,88.22,0.9,0.79,796,0.4,191,1.6
+1956,2023,2,10,18,0,-5.7,1.26,0.014,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.297,73.04,93.91,0.9,0.79,796,0.4,189,1.7
+1957,2023,2,10,18,30,-6.1,1.26,0.014,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.295,75.3,99.46,0.9,0.79,796,0.4,188,1.8
+1958,2023,2,10,19,0,-6.6,1.23,0.015,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.294,76.03,105.09,0.9,0.79,796,0.3,188,1.9
+1959,2023,2,10,19,30,-7,1.23,0.015,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.293,78.4,110.78,0.9,0.79,796,0.3,186,1.9
+1960,2023,2,10,20,0,-7.5,1.22,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,80.4,116.47,0.9,0.79,796,0.3,185,2
+1961,2023,2,10,20,30,-7.8,1.22,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,82.29,122.13,0.9,0.79,796,0.3,183,2
+1962,2023,2,10,21,0,-8.1,1.21,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,83.94,127.7,0.9,0.79,796,0.3,181,2
+1963,2023,2,10,21,30,-8.4,1.21,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.291,85.82,133.11,0.9,0.79,795,0.3,180,2
+1964,2023,2,10,22,0,-8.7,1.2,0.015,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.291,87.3,138.28,0.9,0.79,795,0.3,178,2
+1965,2023,2,10,22,30,-9,1.2,0.015,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.291,89.37,143.07,0.9,0.79,795,0.3,179,2
+1966,2023,2,10,23,0,-9.2,1.2,0.016,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.29,89.53,147.28,0.9,0.79,795,0.3,179,2
+1967,2023,2,10,23,30,-9.4,1.2,0.016,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.289,90.95,150.64,0.9,0.79,795,0.3,181,2
+1968,2023,2,11,0,0,-9.6,1.19,0.016,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.288,90.29,152.83,0.9,0.79,794,0.3,183,1.9
+1969,2023,2,11,0,30,-9.8,1.19,0.016,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.288,91.72,153.54,0.9,0.79,794,0.3,186,1.9
+1970,2023,2,11,1,0,-9.9,1.18,0.016,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.287,90.02,152.65,0.9,0.79,794,0.3,188,1.8
+1971,2023,2,11,1,30,-10.1,1.18,0.016,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.288,91.45,150.3,0.9,0.79,794,0.3,192,1.7
+1972,2023,2,11,2,0,-10.2,1.17,0.016,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.289,89.5,146.82,0.9,0.79,794,0.3,196,1.7
+1973,2023,2,11,2,30,-10.3,1.17,0.016,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.29,90.1,142.53,0.9,0.79,793,0.3,200,1.6
+1974,2023,2,11,3,0,-10.4,1.15,0.017,0.62,0,0,0,0,7,-12,0,0,0,0,0.291,88.01,137.68,0.9,0.79,793,0.2,204,1.5
+1975,2023,2,11,3,30,-10.4,1.15,0.017,0.62,0,0,0,0,7,-12,0,0,0,0,0.293,88.01,132.48,0.9,0.79,793,0.2,207,1.5
+1976,2023,2,11,4,0,-10.4,1.16,0.017,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.295,85.3,127.03,0.91,0.79,793,0.2,209,1.4
+1977,2023,2,11,4,30,-10.3,1.16,0.017,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.295,84.63,121.44,0.91,0.79,793,0.2,211,1.3
+1978,2023,2,11,5,0,-10.3,1.16,0.017,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.296,81.68,115.77,0.91,0.79,793,0.2,213,1.2
+1979,2023,2,11,5,30,-10.2,1.16,0.017,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.296,81.04,110.07,0.9,0.79,793,0.2,216,1.2
+1980,2023,2,11,6,0,-10.1,1.16,0.016,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.295,77.34,104.38,0.9,0.79,793,0.2,218,1.1
+1981,2023,2,11,6,30,-9.8,1.16,0.016,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.295,75.53,98.74,0.9,0.79,793,0.2,220,1
+1982,2023,2,11,7,0,-9.4,1.16,0.017,0.62,0,0,0,0,7,-13.4,0,0,7,0,0.294,72.86,93.2,0.9,0.79,793,0.2,222,1
+1983,2023,2,11,7,30,-7.9,1.16,0.017,0.62,20,346,35,6,7,-13.4,19,1,93,19,0.293,64.82,87.55,0.91,0.79,793,0.2,221,1
+1984,2023,2,11,8,0,-6.4,1.15,0.019,0.62,33,685,123,4,7,-11.9,76,18,57,78,0.293,64.96,82.43,0.92,0.79,793,0.2,220,1
+1985,2023,2,11,8,30,-5.2,1.15,0.019,0.62,44,816,221,0,7,-11.9,143,85,0,161,0.293,59.29,77.45,0.92,0.79,793,0.3,219,0.9
+1986,2023,2,11,9,0,-3.9,1.15,0.022,0.62,52,889,316,0,7,-11.5,186,222,0,252,0.293,55.41,72.73,0.92,0.79,793,0.3,218,0.9
+1987,2023,2,11,9,30,-2.4,1.15,0.022,0.62,59,939,405,0,7,-11.5,181,482,0,359,0.294,49.56,68.35,0.92,0.79,793,0.3,223,1.2
+1988,2023,2,11,10,0,-1,1.16,0.023,0.62,64,976,486,0,7,-10.5,162,713,7,470,0.294,48.61,64.4,0.92,0.79,792,0.3,227,1.4
+1989,2023,2,11,10,30,0.2,1.16,0.023,0.62,69,1002,555,0,7,-10.5,165,778,25,542,0.293,44.55,60.98,0.93,0.79,792,0.3,226,1.9
+1990,2023,2,11,11,0,1.4,1.18,0.023,0.62,72,1020,610,0,7,-10,199,728,11,583,0.293,42.53,58.19,0.93,0.79,792,0.3,225,2.3
+1991,2023,2,11,11,30,2.1,1.18,0.023,0.62,75,1031,650,0,7,-10,292,524,0,584,0.293,40.4,56.11,0.93,0.79,791,0.3,226,2.6
+1992,2023,2,11,12,0,2.7,1.2,0.024,0.62,77,1037,674,0,7,-9.6,343,420,0,585,0.292,39.98,54.84,0.93,0.79,791,0.3,226,2.8
+1993,2023,2,11,12,30,3,1.2,0.024,0.62,77,1038,681,0,7,-9.6,279,576,0,614,0.293,39.14,54.44,0.93,0.79,791,0.3,226,3
+1994,2023,2,11,13,0,3.2,1.2,0.025,0.62,77,1035,672,0,7,-9.3,183,800,29,643,0.293,39.36,54.92,0.94,0.79,790,0.3,227,3.1
+1995,2023,2,11,13,30,3.2,1.2,0.025,0.62,77,1027,647,0,7,-9.3,266,584,14,590,0.294,39.36,56.27,0.94,0.79,790,0.3,229,3
+1996,2023,2,11,14,0,3.1,1.19,0.027,0.62,75,1013,605,0,7,-8.9,272,509,14,539,0.294,40.85,58.42,0.94,0.79,790,0.3,232,2.9
+1997,2023,2,11,14,30,2.6,1.19,0.027,0.62,71,994,549,0,7,-8.9,258,459,7,479,0.296,42.32,61.28,0.94,0.79,790,0.3,237,2.3
+1998,2023,2,11,15,0,2.2,1.19,0.027,0.62,67,967,479,0,7,-6.7,279,140,0,339,0.297,51.81,64.75,0.94,0.79,789,0.3,243,1.7
+1999,2023,2,11,15,30,1.4,1.19,0.027,0.62,61,927,397,0,7,-6.7,212,73,0,238,0.299,54.85,68.74,0.94,0.79,789,0.3,252,1.3
+2000,2023,2,11,16,0,0.7,1.18,0.026,0.62,54,870,306,0,6,-6,104,4,0,105,0.3,61.02,73.15,0.95,0.79,789,0.3,261,0.9
+2001,2023,2,11,16,30,0.2,1.18,0.026,0.62,44,781,208,0,7,-6,128,35,0,135,0.302,63.27,77.9,0.95,0.79,789,0.3,269,0.9
+2002,2023,2,11,17,0,-0.3,1.18,0.025,0.62,33,630,111,5,7,-7.8,60,9,75,61,0.303,57.15,82.9,0.95,0.66,789,0.3,277,0.9
+2003,2023,2,11,17,30,-0.4,1.18,0.025,0.62,18,290,28,6,7,-7.8,16,1,86,16,0.305,57.57,88.02,0.95,0.66,789,0.3,279,0.8
+2004,2023,2,11,18,0,-0.5,1.19,0.025,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.306,54.37,93.69,0.95,0.66,789,0.4,281,0.8
+2005,2023,2,11,18,30,-0.7,1.19,0.025,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.308,55.17,99.25,0.95,0.66,789,0.4,277,0.8
+2006,2023,2,11,19,0,-0.9,1.21,0.027,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.31,54.47,104.89,0.95,0.66,789,0.4,274,0.8
+2007,2023,2,11,19,30,-1.1,1.21,0.027,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.31,55.27,110.57,0.95,0.66,789,0.4,265,0.8
+2008,2023,2,11,20,0,-1.4,1.22,0.03,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.311,55.12,116.26,0.95,0.66,789,0.5,257,0.9
+2009,2023,2,11,20,30,-1.8,1.22,0.03,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.312,56.76,121.92,0.95,0.66,789,0.5,249,0.9
+2010,2023,2,11,21,0,-2.1,1.23,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.312,58.03,127.48,0.95,0.66,789,0.5,242,1
+2011,2023,2,11,21,30,-2.4,1.23,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.313,59.33,132.89,0.95,0.66,789,0.5,239,1
+2012,2023,2,11,22,0,-2.7,1.22,0.039,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.313,60.24,138.04,0.95,0.66,790,0.6,235,1
+2013,2023,2,11,22,30,-2.8,1.22,0.039,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.314,60.69,142.81,0.96,0.66,790,0.6,234,1
+2014,2023,2,11,23,0,-2.9,1.2,0.043,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,61.15,147,0.96,0.66,790,0.6,232,1
+2015,2023,2,11,23,30,-3,1.2,0.043,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.315,61.6,150.34,0.96,0.66,790,0.6,229,1
+2016,2023,2,12,0,0,-3,1.19,0.046,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,61.86,152.51,0.96,0.66,790,0.6,225,0.9
+2017,2023,2,12,0,30,-3.2,1.19,0.046,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,62.79,153.21,0.96,0.66,790,0.6,218,0.9
+2018,2023,2,12,1,0,-3.3,1.18,0.048,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,64.65,152.33,0.96,0.66,790,0.6,211,1
+2019,2023,2,12,1,30,-3.4,1.18,0.048,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,65.13,150,0.96,0.66,790,0.7,204,1
+2020,2023,2,12,2,0,-3.6,1.19,0.047,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.316,68.28,146.54,0.96,0.66,790,0.7,198,1.1
+2021,2023,2,12,2,30,-3.9,1.19,0.047,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.316,69.83,142.27,0.95,0.66,790,0.7,196,1.1
+2022,2023,2,12,3,0,-4.2,1.24,0.039,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.317,70.82,137.45,0.95,0.66,789,0.7,195,1.2
+2023,2023,2,12,3,30,-4.6,1.24,0.039,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.317,72.98,132.25,0.95,0.66,789,0.7,200,1.2
+2024,2023,2,12,4,0,-5,1.27,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.318,71.88,126.82,0.94,0.66,789,0.7,206,1.2
+2025,2023,2,12,4,30,-5.3,1.27,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.318,73.53,121.23,0.94,0.66,789,0.6,212,1.2
+2026,2023,2,12,5,0,-5.5,1.28,0.033,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.318,73.76,115.56,0.94,0.66,789,0.6,219,1.2
+2027,2023,2,12,5,30,-5.6,1.28,0.033,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.319,74.32,109.86,0.94,0.66,789,0.6,224,1.2
+2028,2023,2,12,6,0,-5.7,1.28,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.319,75.52,104.17,0.95,0.66,789,0.6,229,1.1
+2029,2023,2,12,6,30,-5.6,1.28,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.319,75.05,98.53,0.95,0.66,790,0.6,235,1
+2030,2023,2,12,7,0,-5.4,1.27,0.036,0.62,0,0,0,1,7,-8.9,0,0,14,0,0.318,76.56,92.98,0.95,0.66,790,0.6,240,0.9
+2031,2023,2,12,7,30,-4.3,1.27,0.036,0.62,20,276,33,7,7,-8.9,14,0,100,14,0.318,70.45,87.34,0.95,0.66,790,0.6,244,0.9
+2032,2023,2,12,8,0,-3.2,1.26,0.037,0.62,37,592,117,4,7,-7.3,54,239,57,86,0.318,73.16,82.2,0.95,0.66,790,0.6,248,0.9
+2033,2023,2,12,8,30,-2,1.26,0.037,0.62,48,738,212,0,0,-7.3,48,738,0,212,0.317,67.02,77.2,0.95,0.66,791,0.6,258,1.1
+2034,2023,2,12,9,0,-0.9,1.25,0.037,0.62,57,828,306,0,0,-8,66,765,0,296,0.317,58.74,72.47,0.95,0.66,791,0.6,268,1.4
+2035,2023,2,12,9,30,0.2,1.25,0.037,0.62,64,890,396,0,7,-8,114,674,14,366,0.317,54.22,68.08,0.95,0.66,791,0.6,277,1.5
+2036,2023,2,12,10,0,1.3,1.25,0.035,0.62,68,936,477,0,0,-8.5,88,876,0,470,0.316,48,64.12,0.95,0.66,791,0.5,287,1.7
+2037,2023,2,12,10,30,2.1,1.25,0.035,0.62,73,966,546,0,0,-8.5,73,966,0,546,0.316,45.34,60.68,0.95,0.66,791,0.5,296,1.6
+2038,2023,2,12,11,0,2.8,1.28,0.032,0.62,75,988,600,0,0,-8.7,75,988,0,600,0.315,42.63,57.87,0.94,0.66,791,0.5,305,1.6
+2039,2023,2,12,11,30,3.5,1.28,0.032,0.62,75,1004,639,0,0,-8.7,75,1004,0,639,0.315,40.58,55.79,0.94,0.66,791,0.5,313,1.4
+2040,2023,2,12,12,0,4.1,1.33,0.026,0.62,74,1016,664,0,0,-9.1,74,1016,0,664,0.314,37.65,54.51,0.93,0.66,790,0.5,320,1.3
+2041,2023,2,12,12,30,4.5,1.33,0.026,0.62,74,1024,674,0,0,-9.1,74,1024,0,674,0.314,36.61,54.11,0.93,0.66,790,0.5,326,1.1
+2042,2023,2,12,13,0,4.9,1.36,0.023,0.62,71,1028,667,0,0,-9.6,71,1028,0,667,0.314,34.32,54.6,0.92,0.66,790,0.4,331,0.8
+2043,2023,2,12,13,30,5,1.36,0.023,0.62,70,1021,642,0,0,-9.6,70,1021,0,642,0.314,34.08,55.95,0.92,0.66,790,0.4,301,0.6
+2044,2023,2,12,14,0,5.2,1.28,0.023,0.62,68,1008,601,0,0,-9.8,68,1008,0,601,0.315,33.04,58.11,0.92,0.66,789,0.4,271,0.3
+2045,2023,2,12,14,30,5,1.28,0.023,0.62,64,991,545,0,0,-9.8,64,991,0,545,0.315,33.5,60.98,0.92,0.66,789,0.4,237,0.6
+2046,2023,2,12,15,0,4.9,1.28,0.021,0.62,60,965,476,0,0,-8.9,60,965,0,476,0.316,36.08,64.47,0.92,0.66,789,0.4,204,0.9
+2047,2023,2,12,15,30,3.8,1.28,0.021,0.62,54,928,395,0,0,-8.9,54,928,0,395,0.317,38.96,68.47,0.91,0.66,789,0.4,198,0.9
+2048,2023,2,12,16,0,2.8,1.29,0.02,0.62,48,873,305,0,0,-5.2,48,873,0,305,0.318,55.62,72.89,0.91,0.66,789,0.4,193,0.9
+2049,2023,2,12,16,30,1.4,1.29,0.02,0.62,41,792,210,0,0,-5.2,41,792,7,210,0.319,61.45,77.66,0.91,0.66,789,0.4,192,1.1
+2050,2023,2,12,17,0,0.1,1.29,0.019,0.62,31,657,115,2,0,-8.5,41,532,29,109,0.32,52.43,82.67,0.91,0.67,789,0.3,191,1.3
+2051,2023,2,12,17,30,-0.5,1.29,0.019,0.62,19,321,31,2,0,-8.5,19,234,21,28,0.321,54.76,87.81,0.91,0.67,789,0.3,191,1.3
+2052,2023,2,12,18,0,-1.1,1.28,0.018,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.321,56.01,93.48,0.9,0.67,789,0.3,190,1.3
+2053,2023,2,12,18,30,-1.4,1.28,0.018,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.321,57.26,99.04,0.9,0.67,789,0.3,191,1.2
+2054,2023,2,12,19,0,-1.8,1.27,0.018,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.322,60.91,104.68,0.9,0.67,789,0.3,191,1.2
+2055,2023,2,12,19,30,-2,1.27,0.018,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.322,61.81,110.37,0.9,0.67,789,0.3,190,1.1
+2056,2023,2,12,20,0,-2.2,1.25,0.018,0.62,0,0,0,0,8,-8,0,0,0,0,0.322,64.26,116.06,0.9,0.67,789,0.3,189,1
+2057,2023,2,12,20,30,-2.4,1.25,0.018,0.62,0,0,0,0,8,-8,0,0,0,0,0.322,65.22,121.71,0.9,0.67,789,0.3,187,0.9
+2058,2023,2,12,21,0,-2.5,1.24,0.018,0.62,0,0,0,0,8,-7.8,0,0,0,0,0.322,67.05,127.26,0.9,0.67,789,0.3,184,0.8
+2059,2023,2,12,21,30,-2.7,1.24,0.018,0.62,0,0,0,0,8,-7.8,0,0,0,0,0.323,68.05,132.66,0.9,0.67,789,0.3,179,0.7
+2060,2023,2,12,22,0,-2.8,1.23,0.018,0.62,0,0,0,0,8,-7.7,0,0,0,0,0.323,69.1,137.8,0.89,0.67,789,0.3,175,0.7
+2061,2023,2,12,22,30,-3,1.23,0.018,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,70.14,142.55,0.89,0.67,789,0.3,169,0.6
+2062,2023,2,12,23,0,-3.2,1.22,0.018,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.324,71.19,146.72,0.89,0.67,789,0.3,164,0.6
+2063,2023,2,12,23,30,-3.5,1.22,0.018,0.62,0,0,0,0,0,-7.7,0,0,14,0,0.324,72.8,150.03,0.89,0.67,789,0.3,160,0.6
+2064,2023,2,13,0,0,-3.7,1.22,0.018,0.62,0,0,0,0,0,-7.7,0,0,14,0,0.324,73.61,152.18,0.89,0.67,789,0.3,156,0.6
+2065,2023,2,13,0,30,-3.9,1.22,0.018,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.325,74.72,152.88,0.89,0.67,789,0.3,153,0.5
+2066,2023,2,13,1,0,-4.1,1.22,0.018,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.325,74.97,152,0.9,0.67,789,0.3,149,0.5
+2067,2023,2,13,1,30,-4.3,1.22,0.018,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.326,76.01,149.69,0.9,0.67,788,0.3,150,0.5
+2068,2023,2,13,2,0,-4.5,1.23,0.018,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.327,75.99,146.26,0.9,0.67,788,0.3,151,0.5
+2069,2023,2,13,2,30,-4.7,1.23,0.018,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.327,77.15,142.01,0.9,0.67,788,0.3,156,0.5
+2070,2023,2,13,3,0,-4.9,1.24,0.018,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.328,77.1,137.2,0.9,0.67,788,0.3,161,0.5
+2071,2023,2,13,3,30,-5.1,1.24,0.018,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.328,78.17,132.02,0.9,0.67,787,0.3,167,0.5
+2072,2023,2,13,4,0,-5.3,1.25,0.018,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.329,78.15,126.6,0.9,0.67,787,0.3,172,0.5
+2073,2023,2,13,4,30,-5.5,1.25,0.018,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.33,79.34,121.02,0.9,0.67,787,0.3,177,0.6
+2074,2023,2,13,5,0,-5.7,1.25,0.018,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.33,78.85,115.35,0.9,0.67,787,0.3,182,0.7
+2075,2023,2,13,5,30,-6,1.25,0.018,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.33,80.57,109.65,0.9,0.67,786,0.3,185,0.8
+2076,2023,2,13,6,0,-6.3,1.26,0.018,0.62,0,0,0,0,0,-9.2,0,0,0,0,0.331,80.11,103.96,0.9,0.67,786,0.3,189,0.8
+2077,2023,2,13,6,30,-6.3,1.26,0.018,0.62,0,0,0,0,0,-9.2,0,0,0,0,0.331,80.11,98.31,0.9,0.67,786,0.3,191,0.9
+2078,2023,2,13,7,0,-6.2,1.27,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.331,78.41,92.75,0.9,0.67,786,0.3,193,1
+2079,2023,2,13,7,30,-5,1.27,0.019,0.62,21,398,41,1,0,-9.4,19,306,18,34,0.331,71.49,87.12,0.9,0.67,785,0.3,193,1.3
+2080,2023,2,13,8,0,-3.8,1.28,0.019,0.62,32,684,128,2,0,-9.1,45,480,25,112,0.332,66.74,81.96,0.9,0.67,785,0.3,194,1.6
+2081,2023,2,13,8,30,-2.5,1.28,0.019,0.62,42,807,224,0,0,-9.1,45,785,0,222,0.332,60.58,76.95,0.9,0.67,785,0.4,200,1.8
+2082,2023,2,13,9,0,-1.2,1.31,0.02,0.62,49,883,319,0,0,-8.3,49,883,0,319,0.331,58.7,72.21,0.9,0.67,785,0.4,206,1.9
+2083,2023,2,13,9,30,0.6,1.31,0.02,0.62,56,934,409,0,0,-8.3,56,934,0,409,0.331,51.44,67.8,0.91,0.67,784,0.4,211,2.6
+2084,2023,2,13,10,0,2.4,1.35,0.022,0.62,62,967,488,0,0,-8.1,62,967,0,488,0.331,45.87,63.83,0.91,0.67,784,0.4,216,3.3
+2085,2023,2,13,10,30,3.3,1.35,0.022,0.62,66,984,552,0,0,-8.1,66,984,0,552,0.331,42.99,60.38,0.92,0.67,783,0.5,218,3.8
+2086,2023,2,13,11,0,4.2,1.39,0.025,0.62,70,1000,606,0,0,-7.8,70,1000,0,606,0.331,41.17,57.56,0.92,0.67,783,0.5,220,4.2
+2087,2023,2,13,11,30,4.7,1.39,0.025,0.62,72,1010,645,0,0,-7.9,72,1010,0,645,0.33,39.71,55.46,0.92,0.67,782,0.5,222,4.5
+2088,2023,2,13,12,0,5.1,1.41,0.028,0.62,74,1011,666,0,0,-7.5,74,1011,0,666,0.33,39.77,54.18,0.92,0.67,781,0.6,224,4.7
+2089,2023,2,13,12,30,5.2,1.41,0.028,0.62,76,1008,672,0,0,-7.5,76,1008,0,672,0.33,39.49,53.77,0.93,0.67,781,0.6,224,4.8
+2090,2023,2,13,13,0,5.4,1.41,0.032,0.62,77,1002,662,0,0,-6.8,77,1002,0,662,0.329,41.02,54.26,0.93,0.67,780,0.6,224,4.9
+2091,2023,2,13,13,30,5.3,1.41,0.032,0.62,78,991,637,0,0,-6.8,78,991,7,637,0.329,41.25,55.63,0.93,0.67,779,0.6,222,4.8
+2092,2023,2,13,14,0,5.1,1.36,0.04,0.62,78,972,596,0,7,-6.1,127,850,36,580,0.329,44.09,57.79,0.94,0.67,779,0.6,219,4.8
+2093,2023,2,13,14,30,4.6,1.36,0.04,0.62,77,945,540,0,7,-6.2,294,317,0,449,0.329,45.6,60.68,0.94,0.67,778,0.6,217,4.5
+2094,2023,2,13,15,0,4.1,1.28,0.051,0.62,75,906,470,0,7,-5.3,269,230,0,369,0.329,50.55,64.18,0.95,0.67,778,0.6,215,4.2
+2095,2023,2,13,15,30,2.8,1.28,0.051,0.62,70,860,389,0,6,-5.3,146,17,0,152,0.329,55.39,68.2,0.95,0.67,778,0.6,213,3.4
+2096,2023,2,13,16,0,1.5,1.25,0.056,0.62,63,792,299,0,6,-4.2,96,4,0,97,0.328,65.65,72.64,0.95,0.67,777,0.6,211,2.6
+2097,2023,2,13,16,30,0.3,1.25,0.056,0.62,53,695,204,0,7,-4.2,80,5,0,81,0.328,71.57,77.41,0.95,0.67,777,0.6,210,2.4
+2098,2023,2,13,17,0,-0.8,1.25,0.057,0.62,40,535,110,5,7,-4.2,49,2,71,49,0.328,77.86,82.44,0.95,0.75,777,0.6,209,2.3
+2099,2023,2,13,17,30,-1.2,1.25,0.057,0.62,20,227,30,6,7,-4.2,15,0,86,15,0.327,80.17,87.6,0.95,0.75,777,0.6,209,2.3
+2100,2023,2,13,18,0,-1.6,1.27,0.053,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.327,84.57,93.26,0.95,0.75,776,0.6,208,2.4
+2101,2023,2,13,18,30,-2,1.27,0.053,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.325,87.1,98.83,0.95,0.75,776,0.6,208,2.5
+2102,2023,2,13,19,0,-2.4,1.32,0.046,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.324,91.87,104.47,0.95,0.75,775,0.6,209,2.6
+2103,2023,2,13,19,30,-2.8,1.32,0.046,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.323,94.63,110.16,0.95,0.75,775,0.6,210,2.7
+2104,2023,2,13,20,0,-3.1,1.34,0.042,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.322,97.52,115.85,0.94,0.75,775,0.5,212,2.8
+2105,2023,2,13,20,30,-3.4,1.34,0.042,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.32,99.6,121.5,0.94,0.75,774,0.5,215,2.9
+2106,2023,2,13,21,0,-3.7,1.34,0.04,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.318,100,127.05,0.94,0.75,774,0.5,217,3
+2107,2023,2,13,21,30,-3.9,1.34,0.04,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.315,100,132.43,0.94,0.75,774,0.5,217,3.2
+2108,2023,2,13,22,0,-4.2,1.35,0.037,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.312,100,137.56,0.93,0.75,773,0.5,216,3.4
+2109,2023,2,13,22,30,-4.3,1.35,0.037,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.309,100,142.29,0.93,0.75,773,0.5,213,3.6
+2110,2023,2,13,23,0,-4.4,1.32,0.035,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.307,100,146.43,0.93,0.75,773,0.5,210,3.8
+2111,2023,2,13,23,30,-4.5,1.32,0.035,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.307,100,149.72,0.93,0.75,773,0.5,207,4
+2112,2023,2,14,0,0,-4.6,1.26,0.034,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.307,99.48,151.85,0.93,0.75,773,0.5,203,4.1
+2113,2023,2,14,0,30,-4.7,1.26,0.034,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.31,100,152.54,0.93,0.75,772,0.5,204,4.1
+2114,2023,2,14,1,0,-4.8,1.18,0.033,0.62,0,0,0,0,7,-5,0,0,0,0,0.314,98.26,151.67,0.93,0.75,772,0.5,204,4.1
+2115,2023,2,14,1,30,-5,1.18,0.033,0.62,0,0,0,0,7,-5,0,0,0,0,0.318,99.75,149.38,0.94,0.75,772,0.5,208,3.9
+2116,2023,2,14,2,0,-5.1,1.11,0.034,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.323,98.38,145.97,0.94,0.75,772,0.5,212,3.7
+2117,2023,2,14,2,30,-5.2,1.11,0.034,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.326,99.13,141.74,0.94,0.75,772,0.5,219,3.4
+2118,2023,2,14,3,0,-5.4,1.07,0.033,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.328,98.87,136.95,0.95,0.75,771,0.5,226,3.1
+2119,2023,2,14,3,30,-5.5,1.07,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.328,99.75,131.78,0.95,0.75,772,0.5,238,2.9
+2120,2023,2,14,4,0,-5.6,1.08,0.031,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.328,98.25,126.37,0.94,0.75,772,0.4,251,2.6
+2121,2023,2,14,4,30,-5.8,1.08,0.031,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.329,99.76,120.8,0.94,0.75,772,0.4,268,2.5
+2122,2023,2,14,5,0,-6.1,1.11,0.03,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.331,95.39,115.13,0.94,0.75,773,0.4,284,2.5
+2123,2023,2,14,5,30,-6.4,1.11,0.03,0.62,0,0,0,0,5,-6.7,0,0,0,0,0.334,97.6,109.43,0.93,0.75,773,0.3,297,2.6
+2124,2023,2,14,6,0,-6.7,1.09,0.025,0.62,0,0,0,0,4,-8.7,0,0,0,0,0.338,85.97,103.74,0.93,0.75,774,0.3,311,2.7
+2125,2023,2,14,6,30,-6.7,1.09,0.025,0.62,0,0,0,0,5,-8.7,0,0,0,0,0.34,85.97,98.09,0.93,0.75,774,0.3,314,3
+2126,2023,2,14,7,0,-6.8,1.07,0.02,0.62,0,0,0,1,7,-11.1,0,0,14,0,0.342,71.46,92.53,0.93,0.75,774,0.3,317,3.3
+2127,2023,2,14,7,30,-6.4,1.07,0.02,0.62,22,412,44,7,7,-11.1,20,0,100,20,0.344,69.39,86.89,0.93,0.75,775,0.3,315,3.4
+2128,2023,2,14,8,0,-6.1,1.06,0.02,0.62,34,706,136,3,5,-13,48,2,43,48,0.345,58.17,81.72,0.93,0.75,775,0.2,313,3.5
+2129,2023,2,14,8,30,-5.7,1.06,0.02,0.62,43,837,236,0,7,-13,96,21,0,101,0.349,56.42,76.7,0.93,0.75,775,0.2,306,3.3
+2130,2023,2,14,9,0,-5.3,1.07,0.019,0.62,51,916,335,0,7,-14.3,159,67,0,180,0.352,49.14,71.94,0.93,0.75,775,0.2,298,3.1
+2131,2023,2,14,9,30,-4.8,1.07,0.019,0.62,56,968,426,0,7,-14.3,241,105,0,281,0.355,47.31,67.52,0.93,0.75,775,0.2,289,3.1
+2132,2023,2,14,10,0,-4.3,1.07,0.018,0.62,60,1004,508,0,7,-15.2,273,339,0,424,0.359,42.35,63.53,0.93,0.75,775,0.2,281,3.1
+2133,2023,2,14,10,30,-3.7,1.07,0.018,0.62,64,1029,577,0,6,-15.2,327,142,0,398,0.362,40.49,60.07,0.92,0.75,775,0.2,277,3.2
+2134,2023,2,14,11,0,-3.2,1.08,0.017,0.62,65,1047,632,0,6,-15.8,315,50,0,342,0.366,37.05,57.23,0.92,0.75,775,0.2,274,3.2
+2135,2023,2,14,11,30,-2.8,1.08,0.017,0.62,69,1056,673,0,6,-15.8,335,76,0,378,0.369,35.92,55.13,0.93,0.75,774,0.2,281,3
+2136,2023,2,14,12,0,-2.4,1.12,0.02,0.62,73,1060,698,0,7,-16.4,348,438,0,606,0.372,33.24,53.84,0.93,0.75,774,0.2,287,2.8
+2137,2023,2,14,12,30,-2.3,1.12,0.02,0.62,81,1046,704,0,7,-16.4,273,639,0,654,0.376,33,53.43,0.95,0.75,774,0.2,287,2.7
+2138,2023,2,14,13,0,-2.1,1.17,0.05,0.62,92,1022,694,0,7,-17,211,763,14,660,0.379,30.91,53.93,0.96,0.75,773,0.2,286,2.5
+2139,2023,2,14,13,30,-2.3,1.17,0.05,0.62,91,1014,668,0,7,-17,324,213,0,445,0.382,31.37,55.3,0.96,0.75,773,0.2,288,2.4
+2140,2023,2,14,14,0,-2.5,1.14,0.049,0.62,87,1000,625,0,6,-17.6,250,4,0,252,0.384,30.25,57.48,0.96,0.75,773,0.2,289,2.2
+2141,2023,2,14,14,30,-2.8,1.14,0.049,0.62,81,985,568,0,6,-17.6,214,4,0,216,0.385,30.93,60.38,0.96,0.75,773,0.2,305,2
+2142,2023,2,14,15,0,-3.1,1.12,0.041,0.62,74,964,498,0,6,-17.9,225,55,0,249,0.386,30.84,63.9,0.95,0.75,773,0.2,321,1.7
+2143,2023,2,14,15,30,-3.5,1.12,0.041,0.62,67,924,414,0,7,-17.9,181,361,0,317,0.387,31.77,67.93,0.95,0.75,773,0.2,163,1.9
+2144,2023,2,14,16,0,-3.9,1.11,0.04,0.62,59,865,321,0,7,-17.2,118,567,25,290,0.388,34.87,72.38,0.95,0.75,774,0.2,5,2
+2145,2023,2,14,16,30,-4.4,1.11,0.04,0.62,50,767,220,0,7,-17.2,96,290,14,160,0.389,36.2,77.17,0.95,0.75,774,0.3,13,2.3
+2146,2023,2,14,17,0,-4.9,1.1,0.042,0.62,38,609,121,5,7,-15.2,61,95,79,74,0.39,44.26,82.21,0.95,0.8,774,0.3,22,2.5
+2147,2023,2,14,17,30,-5.2,1.1,0.042,0.62,21,276,34,7,7,-15.2,22,2,100,22,0.392,45.28,87.38,0.95,0.8,774,0.3,26,3
+2148,2023,2,14,18,0,-5.5,1.08,0.043,0.62,0,0,0,1,7,-15.3,0,0,14,0,0.393,45.88,93.05,0.95,0.8,774,0.3,29,3.6
+2149,2023,2,14,18,30,-5.8,1.08,0.043,0.62,0,0,0,0,7,-15.3,0,0,0,0,0.394,46.94,98.62,0.95,0.8,774,0.3,31,4.1
+2150,2023,2,14,19,0,-6.1,1.05,0.044,0.62,0,0,0,0,7,-15.3,0,0,0,0,0.395,48.28,104.26,0.96,0.8,775,0.3,33,4.7
+2151,2023,2,14,19,30,-6.4,1.05,0.044,0.62,0,0,0,0,6,-15.3,0,0,0,0,0.397,49.4,109.95,0.95,0.8,775,0.3,33,5.2
+2152,2023,2,14,20,0,-6.6,1.04,0.044,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.398,53.96,115.64,0.95,0.8,775,0.3,33,5.7
+2153,2023,2,14,20,30,-6.9,1.04,0.044,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.399,55.22,121.28,0.95,0.8,775,0.3,33,6
+2154,2023,2,14,21,0,-7.2,1.04,0.045,0.62,0,0,0,0,9,-13.6,0,0,0,0,0.4,60.07,126.83,0.96,0.8,775,0.3,32,6.3
+2155,2023,2,14,21,30,-7.4,1.04,0.045,0.62,0,0,0,0,6,-13.6,0,0,0,0,0.4,61.01,132.2,0.95,0.8,775,0.4,32,6.3
+2156,2023,2,14,22,0,-7.6,1.04,0.046,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.4,66.01,137.31,0.95,0.8,775,0.4,32,6.3
+2157,2023,2,14,22,30,-7.7,1.04,0.046,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.4,66.52,142.02,0.95,0.8,775,0.4,33,6.3
+2158,2023,2,14,23,0,-7.7,1.01,0.046,0.62,0,0,0,0,6,-12.2,0,0,0,0,0.4,70.4,146.14,0.95,0.8,774,0.4,34,6.4
+2159,2023,2,14,23,30,-7.9,1.01,0.046,0.62,0,0,0,0,6,-12.2,0,0,0,0,0.4,71.49,149.41,0.95,0.8,774,0.4,35,7.1
+2160,2023,2,15,0,0,-8.1,1,0.043,0.62,0,0,0,0,6,-12.2,0,0,0,0,0.4,72.2,151.52,0.95,0.8,774,0.4,36,7.7
+2161,2023,2,15,0,30,-8.6,1,0.043,0.62,0,0,0,0,6,-12.2,0,0,0,0,0.4,75.07,152.2,0.95,0.8,774,0.4,35,8.8
+2162,2023,2,15,1,0,-9,0.99,0.044,0.62,0,0,0,0,6,-13.4,0,0,0,0,0.399,70.27,151.33,0.95,0.8,774,0.4,35,9.8
+2163,2023,2,15,1,30,-9.5,0.99,0.044,0.62,0,0,0,0,9,-13.4,0,0,0,0,0.398,73.08,149.06,0.95,0.8,774,0.4,34,10.3
+2164,2023,2,15,2,0,-10,0.98,0.056,0.62,0,0,0,0,9,-14.5,0,0,0,0,0.397,69.56,145.67,0.95,0.8,774,0.4,33,10.9
+2165,2023,2,15,2,30,-10.4,0.98,0.056,0.62,0,0,0,0,9,-14.5,0,0,0,0,0.396,71.8,141.47,0.95,0.8,774,0.4,34,11.3
+2166,2023,2,15,3,0,-10.8,0.97,0.066,0.62,0,0,0,0,9,-15.3,0,0,0,0,0.395,69.44,136.69,0.96,0.8,774,0.4,34,11.7
+2167,2023,2,15,3,30,-11.1,0.97,0.066,0.62,0,0,0,0,6,-15.3,0,0,0,0,0.395,71.21,131.54,0.96,0.8,775,0.4,35,11.9
+2168,2023,2,15,4,0,-11.5,0.96,0.07,0.62,0,0,0,0,6,-16,0,0,0,0,0.394,69.09,126.14,0.96,0.8,775,0.4,36,12
+2169,2023,2,15,4,30,-11.9,0.96,0.07,0.62,0,0,0,0,9,-16,0,0,0,0,0.393,71.34,120.57,0.96,0.8,775,0.4,36,12.3
+2170,2023,2,15,5,0,-12.3,0.97,0.071,0.62,0,0,0,0,9,-17,0,0,0,0,0.393,67.83,114.91,0.96,0.8,776,0.3,36,12.6
+2171,2023,2,15,5,30,-12.7,0.97,0.071,0.62,0,0,0,0,9,-17,0,0,0,0,0.394,70.05,109.21,0.96,0.8,776,0.3,35,12.7
+2172,2023,2,15,6,0,-13.1,0.99,0.07,0.62,0,0,0,0,6,-18.1,0,0,0,0,0.395,66.19,103.52,0.96,0.8,776,0.3,35,12.8
+2173,2023,2,15,6,30,-13.3,0.99,0.07,0.62,0,0,0,0,6,-18.1,0,0,0,0,0.394,67.36,97.86,0.96,0.8,777,0.3,36,12.6
+2174,2023,2,15,7,0,-13.5,1,0.07,0.62,0,0,0,2,6,-18.8,0,0,21,0,0.393,64.39,92.29,0.96,0.8,777,0.3,36,12.4
+2175,2023,2,15,7,30,-13.3,1,0.07,0.62,27,275,43,7,6,-18.8,17,0,100,17,0.393,63.44,86.66,0.96,0.8,778,0.3,36,12.3
+2176,2023,2,15,8,0,-13.2,1,0.07,0.62,47,558,130,3,9,-19.1,36,0,43,36,0.392,61.11,81.47,0.96,0.8,778,0.3,36,12.1
+2177,2023,2,15,8,30,-12.8,1,0.07,0.62,62,708,228,0,6,-19.1,71,1,0,71,0.393,59.23,76.44,0.96,0.8,779,0.3,36,11.9
+2178,2023,2,15,9,0,-12.3,1,0.071,0.62,74,800,326,0,6,-19.1,112,1,0,112,0.394,56.98,71.66,0.96,0.8,779,0.3,36,11.8
+2179,2023,2,15,9,30,-11.7,1,0.071,0.62,84,863,418,0,6,-19.1,152,2,0,153,0.394,54.3,67.23,0.96,0.8,779,0.3,36,11.7
+2180,2023,2,15,10,0,-11.2,1.01,0.07,0.62,91,908,500,0,6,-18.7,195,4,0,197,0.394,53.87,63.23,0.96,0.8,780,0.3,36,11.5
+2181,2023,2,15,10,30,-10.5,1.01,0.07,0.62,98,938,570,0,6,-18.7,239,5,0,242,0.394,50.95,59.76,0.96,0.8,780,0.3,36,11.4
+2182,2023,2,15,11,0,-9.9,1.02,0.07,0.62,102,960,626,0,6,-18.2,281,7,0,285,0.394,50.95,56.91,0.96,0.8,780,0.3,37,11.2
+2183,2023,2,15,11,30,-9.3,1.02,0.07,0.62,104,974,666,0,6,-18.2,285,6,0,288,0.393,48.6,54.79,0.96,0.8,780,0.3,36,10.9
+2184,2023,2,15,12,0,-8.7,1.03,0.069,0.62,107,982,691,0,6,-17.6,347,39,0,370,0.393,48.76,53.5,0.96,0.8,780,0.3,36,10.5
+2185,2023,2,15,12,30,-8.3,1.03,0.069,0.62,106,988,699,0,6,-17.5,373,83,0,423,0.393,47.32,53.09,0.96,0.8,781,0.3,34,10.2
+2186,2023,2,15,13,0,-7.8,1.05,0.062,0.62,102,990,690,0,6,-17.2,337,46,0,364,0.393,47.03,53.59,0.96,0.8,781,0.3,33,9.9
+2187,2023,2,15,13,30,-7.7,1.05,0.062,0.62,100,983,664,0,7,-17.2,370,332,0,561,0.392,46.67,54.97,0.96,0.8,781,0.3,32,9.5
+2188,2023,2,15,14,0,-7.5,1.05,0.061,0.62,96,970,622,0,7,-17,351,304,0,516,0.392,46.43,57.16,0.96,0.8,781,0.3,31,9.2
+2189,2023,2,15,14,30,-7.8,1.05,0.061,0.62,92,946,564,0,7,-17,323,173,0,409,0.391,47.58,60.08,0.96,0.8,782,0.3,31,8.9
+2190,2023,2,15,15,0,-8,1.03,0.065,0.62,88,912,493,0,7,-17,287,253,0,399,0.39,48.43,63.61,0.96,0.8,783,0.3,31,8.5
+2191,2023,2,15,15,30,-8.5,1.03,0.065,0.62,80,869,410,0,7,-17,246,133,0,297,0.389,50.35,67.66,0.96,0.8,783,0.3,30,8.3
+2192,2023,2,15,16,0,-8.9,1.03,0.063,0.62,70,807,318,0,7,-17,141,11,0,144,0.389,51.78,72.12,0.96,0.8,784,0.3,28,8.1
+2193,2023,2,15,16,30,-9.4,1.03,0.063,0.62,57,720,220,0,6,-17,57,0,0,57,0.388,53.85,76.92,0.96,0.8,784,0.3,27,7.7
+2194,2023,2,15,17,0,-9.9,1.06,0.055,0.62,42,577,123,4,6,-17.3,38,0,57,38,0.388,54.82,81.98,0.96,0.8,785,0.3,25,7.4
+2195,2023,2,15,17,30,-10.4,1.06,0.055,0.62,24,291,38,7,6,-17.3,14,0,100,14,0.388,57.03,87.16,0.96,0.8,785,0.3,24,6.9
+2196,2023,2,15,18,0,-10.9,1.08,0.044,0.62,0,0,0,1,6,-17.7,0,0,14,0,0.388,57.47,92.83,0.95,0.8,786,0.3,22,6.4
+2197,2023,2,15,18,30,-11.4,1.08,0.044,0.62,0,0,0,0,6,-17.7,0,0,0,0,0.388,59.81,98.4,0.95,0.8,786,0.3,21,5.8
+2198,2023,2,15,19,0,-11.9,1.09,0.036,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.387,60.11,104.06,0.94,0.8,787,0.3,20,5.3
+2199,2023,2,15,19,30,-12.5,1.09,0.036,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.387,63.08,109.75,0.94,0.8,787,0.3,19,4.7
+2200,2023,2,15,20,0,-13.1,1.08,0.03,0.62,0,0,0,0,7,-18.4,0,0,0,0,0.386,64.28,115.43,0.93,0.8,787,0.3,18,4.2
+2201,2023,2,15,20,30,-13.6,1.08,0.03,0.62,0,0,0,0,7,-18.4,0,0,0,0,0.386,67.03,121.07,0.93,0.8,788,0.3,18,3.9
+2202,2023,2,15,21,0,-14.1,1.07,0.026,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.386,67.65,126.61,0.93,0.8,788,0.2,18,3.7
+2203,2023,2,15,21,30,-14.6,1.07,0.026,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.386,70.49,131.97,0.92,0.8,788,0.2,18,3.3
+2204,2023,2,15,22,0,-15,1.06,0.024,0.62,0,0,0,0,7,-19,0,0,0,0,0.386,71.28,137.07,0.92,0.8,788,0.2,19,2.8
+2205,2023,2,15,22,30,-15.4,1.06,0.024,0.62,0,0,0,0,7,-19,0,0,0,0,0.386,73.77,141.76,0.92,0.8,789,0.2,20,2.5
+2206,2023,2,15,23,0,-15.8,1.04,0.023,0.62,0,0,0,0,0,-19.3,0,0,0,0,0.386,74.74,145.85,0.92,0.8,789,0.2,22,2.1
+2207,2023,2,15,23,30,-16.1,1.04,0.023,0.62,0,0,0,0,0,-19.3,0,0,0,0,0.386,76.63,149.1,0.91,0.8,789,0.2,22,1.8
+2208,2023,2,16,0,0,-16.5,1.01,0.022,0.62,0,0,0,0,0,-19.5,0,0,0,0,0.386,77.43,151.19,0.91,0.8,789,0.2,22,1.6
+2209,2023,2,16,0,30,-16.8,1.01,0.022,0.62,0,0,0,0,0,-19.5,0,0,0,0,0.385,79.5,151.85,0.91,0.8,790,0.2,21,1.4
+2210,2023,2,16,1,0,-17,0.98,0.021,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.384,78.75,150.99,0.91,0.8,790,0.1,20,1.2
+2211,2023,2,16,1,30,-17.2,0.98,0.021,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.383,80.08,148.74,0.9,0.8,790,0.1,19,1.1
+2212,2023,2,16,2,0,-17.4,0.95,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.382,79.96,145.37,0.9,0.8,790,0.1,19,0.9
+2213,2023,2,16,2,30,-17.4,0.95,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.38,79.96,141.19,0.9,0.8,790,0.1,20,0.8
+2214,2023,2,16,3,0,-17.4,0.95,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.379,79.62,136.43,0.91,0.8,791,0.1,21,0.7
+2215,2023,2,16,3,30,-17.4,0.95,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.378,79.62,131.29,0.91,0.8,791,0.1,23,0.6
+2216,2023,2,16,4,0,-17.4,0.96,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.378,79.68,125.9,0.91,0.8,791,0.2,25,0.5
+2217,2023,2,16,4,30,-17.4,0.96,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.377,79.68,120.34,0.91,0.8,791,0.2,23,0.4
+2218,2023,2,16,5,0,-17.4,0.96,0.023,0.62,0,0,0,0,0,-20,0,0,0,0,0.376,80.04,114.68,0.91,0.8,791,0.2,20,0.3
+2219,2023,2,16,5,30,-17.5,0.96,0.023,0.62,0,0,0,0,0,-20,0,0,0,0,0.375,80.72,108.99,0.91,0.8,791,0.2,147,0.2
+2220,2023,2,16,6,0,-17.5,0.98,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.374,80.97,103.29,0.91,0.8,792,0.2,274,0.1
+2221,2023,2,16,6,30,-17.2,0.98,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.373,78.95,97.63,0.91,0.8,792,0.2,235,0.3
+2222,2023,2,16,7,0,-16.8,1,0.022,0.62,3,40,2,0,0,-19.7,3,30,4,2,0.373,78.23,92.06,0.91,0.8,792,0.2,196,0.4
+2223,2023,2,16,7,30,-15.5,1,0.022,0.62,24,472,53,2,0,-19.7,23,357,21,45,0.373,70.19,86.42,0.91,0.8,792,0.2,221,0.5
+2224,2023,2,16,8,0,-14.2,1.04,0.021,0.62,36,710,144,0,0,-19.2,45,606,7,138,0.374,65.88,81.22,0.91,0.8,793,0.2,245,0.5
+2225,2023,2,16,8,30,-12.7,1.04,0.021,0.62,45,837,245,0,0,-19.2,45,837,0,245,0.374,58.31,76.17,0.91,0.8,793,0.2,279,0.8
+2226,2023,2,16,9,0,-11.2,1.08,0.02,0.62,53,915,345,0,0,-17.9,53,915,0,345,0.374,57.85,71.39,0.91,0.8,793,0.2,314,1
+2227,2023,2,16,9,30,-9.7,1.08,0.02,0.62,58,964,436,0,0,-17.9,58,964,0,436,0.373,51.36,66.94,0.91,0.8,793,0.2,322,1.2
+2228,2023,2,16,10,0,-8.3,1.11,0.019,0.62,63,994,515,0,0,-16.6,63,994,0,515,0.371,51.03,62.93,0.91,0.8,793,0.3,330,1.4
+2229,2023,2,16,10,30,-7.2,1.11,0.019,0.62,66,1013,581,0,0,-16.6,66,1013,0,581,0.37,46.86,59.44,0.91,0.8,793,0.3,332,1.3
+2230,2023,2,16,11,0,-6.1,1.14,0.017,0.62,68,1031,636,0,0,-16,68,1031,0,636,0.368,45.6,56.58,0.91,0.8,793,0.3,334,1.3
+2231,2023,2,16,11,30,-5.3,1.14,0.017,0.62,70,1043,676,0,0,-16,70,1043,0,676,0.366,42.91,54.45,0.91,0.8,793,0.3,332,1.1
+2232,2023,2,16,12,0,-4.5,1.16,0.016,0.62,69,1050,699,0,0,-15.5,69,1050,0,699,0.365,41.97,53.15,0.91,0.8,793,0.3,329,1
+2233,2023,2,16,12,30,-3.9,1.16,0.016,0.62,70,1052,707,0,0,-15.5,70,1052,0,707,0.363,40.12,52.74,0.91,0.8,793,0.3,323,0.9
+2234,2023,2,16,13,0,-3.3,1.18,0.016,0.62,70,1050,698,0,0,-15.2,70,1050,0,698,0.362,39.28,53.25,0.91,0.8,792,0.3,316,0.7
+2235,2023,2,16,13,30,-2.9,1.18,0.016,0.62,68,1043,672,0,0,-15.2,68,1043,0,672,0.36,38.13,54.64,0.91,0.8,792,0.3,311,0.7
+2236,2023,2,16,14,0,-2.5,1.2,0.016,0.62,67,1031,631,0,0,-15,67,1031,0,631,0.358,37.61,56.84,0.91,0.8,792,0.3,305,0.6
+2237,2023,2,16,14,30,-2.4,1.2,0.016,0.62,63,1014,574,0,0,-15,63,1014,0,574,0.356,37.33,59.77,0.91,0.8,792,0.3,284,0.6
+2238,2023,2,16,15,0,-2.2,1.21,0.017,0.62,60,989,504,0,0,-14.8,60,989,0,504,0.354,37.43,63.32,0.91,0.8,792,0.3,264,0.6
+2239,2023,2,16,15,30,-2.5,1.21,0.017,0.62,55,953,422,0,0,-14.8,55,953,0,422,0.351,38.27,67.38,0.91,0.8,792,0.3,244,0.8
+2240,2023,2,16,16,0,-2.7,1.22,0.017,0.62,49,902,330,0,0,-14.4,49,902,0,330,0.349,40.19,71.87,0.9,0.8,792,0.3,224,1
+2241,2023,2,16,16,30,-4,1.22,0.017,0.62,42,824,232,0,0,-14.4,42,824,0,232,0.346,44.28,76.68,0.9,0.8,792,0.3,208,1.2
+2242,2023,2,16,17,0,-5.3,1.23,0.017,0.62,33,691,132,0,0,-11.6,36,644,7,128,0.343,61.24,81.75,0.9,0.8,793,0.3,192,1.3
+2243,2023,2,16,17,30,-6.2,1.23,0.017,0.62,21,408,43,2,0,-11.6,23,309,25,39,0.34,65.58,86.95,0.9,0.8,793,0.3,191,1.6
+2244,2023,2,16,18,0,-7.2,1.24,0.017,0.62,0,0,0,0,0,-12.6,0,0,4,0,0.338,65.24,92.61,0.9,0.8,793,0.3,190,2
+2245,2023,2,16,18,30,-7.9,1.24,0.017,0.62,0,0,0,0,0,-12.6,0,0,0,0,0.336,68.96,98.19,0.9,0.8,794,0.3,191,2.1
+2246,2023,2,16,19,0,-8.7,1.24,0.017,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.335,69.85,103.85,0.9,0.8,794,0.3,192,2.2
+2247,2023,2,16,19,30,-9.3,1.24,0.017,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.334,73.21,109.54,0.9,0.8,794,0.3,191,2.3
+2248,2023,2,16,20,0,-9.9,1.24,0.017,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.332,74.17,115.22,0.9,0.8,795,0.3,190,2.3
+2249,2023,2,16,20,30,-10.4,1.24,0.017,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.331,77.16,120.86,0.9,0.8,795,0.3,189,2.3
+2250,2023,2,16,21,0,-10.9,1.23,0.018,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.33,77.51,126.39,0.9,0.8,795,0.3,189,2.3
+2251,2023,2,16,21,30,-11.4,1.23,0.018,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.329,80.67,131.74,0.9,0.8,795,0.3,187,2.3
+2252,2023,2,16,22,0,-11.8,1.22,0.018,0.62,0,0,0,0,0,-14.6,0,0,0,0,0.327,79.88,136.82,0.89,0.8,795,0.3,185,2.2
+2253,2023,2,16,22,30,-12.1,1.22,0.018,0.62,0,0,0,0,0,-14.6,0,0,0,0,0.326,81.83,141.49,0.89,0.8,795,0.3,183,2.2
+2254,2023,2,16,23,0,-12.5,1.23,0.017,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.324,81.05,145.56,0.89,0.8,795,0.3,180,2.1
+2255,2023,2,16,23,30,-12.8,1.23,0.017,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.323,83.04,148.78,0.89,0.8,795,0.3,178,2
+2256,2023,2,17,0,0,-13.1,1.24,0.017,0.62,0,0,0,0,0,-15.6,0,0,0,0,0.322,81.8,150.85,0.89,0.8,795,0.3,176,1.9
+2257,2023,2,17,0,30,-13.4,1.24,0.017,0.62,0,0,0,0,0,-15.6,0,0,0,0,0.323,83.82,151.5,0.89,0.8,795,0.3,176,1.8
+2258,2023,2,17,1,0,-13.6,1.24,0.017,0.62,0,0,0,0,0,-16,0,0,0,0,0.323,81.94,150.65,0.89,0.8,795,0.3,176,1.8
+2259,2023,2,17,1,30,-13.8,1.24,0.017,0.62,0,0,0,0,0,-16,0,0,0,0,0.323,83.29,148.42,0.89,0.8,795,0.3,178,1.7
+2260,2023,2,17,2,0,-14,1.23,0.017,0.62,0,0,0,0,0,-16.4,0,0,0,0,0.324,81.92,145.07,0.89,0.8,795,0.3,181,1.7
+2261,2023,2,17,2,30,-14.1,1.23,0.017,0.62,0,0,0,0,0,-16.4,0,0,0,0,0.323,82.6,140.9,0.89,0.8,795,0.3,183,1.6
+2262,2023,2,17,3,0,-14.3,1.23,0.018,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.321,82.2,136.16,0.89,0.8,795,0.3,186,1.6
+2263,2023,2,17,3,30,-14.4,1.23,0.018,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.319,82.88,131.04,0.89,0.8,795,0.3,187,1.6
+2264,2023,2,17,4,0,-14.5,1.22,0.018,0.62,0,0,0,0,0,-16.9,0,0,0,0,0.317,82.27,125.65,0.89,0.8,795,0.3,189,1.5
+2265,2023,2,17,4,30,-14.7,1.22,0.018,0.62,0,0,0,0,0,-16.9,0,0,0,0,0.317,83.63,120.1,0.89,0.8,795,0.3,191,1.5
+2266,2023,2,17,5,0,-14.8,1.21,0.02,0.62,0,0,0,0,0,-17,0,0,0,0,0.316,83.27,114.45,0.9,0.8,796,0.3,194,1.4
+2267,2023,2,17,5,30,-14.9,1.21,0.02,0.62,0,0,0,0,0,-17,0,0,0,0,0.315,83.96,108.75,0.9,0.8,796,0.3,197,1.4
+2268,2023,2,17,6,0,-14.9,1.2,0.023,0.62,0,0,0,0,0,-17.2,0,0,0,0,0.315,82.82,103.06,0.91,0.8,796,0.2,200,1.4
+2269,2023,2,17,6,30,-14.3,1.2,0.023,0.62,0,0,0,0,0,-17.2,0,0,0,0,0.313,78.84,97.4,0.91,0.8,796,0.2,203,1.5
+2270,2023,2,17,7,0,-13.7,1.19,0.025,0.62,4,43,3,0,0,-16.9,4,43,0,3,0.312,76.73,91.81,0.91,0.8,796,0.2,206,1.7
+2271,2023,2,17,7,30,-12.2,1.19,0.025,0.62,25,482,57,0,0,-16.9,25,482,0,57,0.311,67.94,86.18,0.91,0.8,796,0.2,210,2.2
+2272,2023,2,17,8,0,-10.8,1.2,0.025,0.62,38,714,150,0,0,-16.3,46,624,4,144,0.311,63.78,80.96,0.91,0.8,796,0.2,213,2.8
+2273,2023,2,17,8,30,-9,1.2,0.025,0.62,48,839,252,0,0,-16.3,59,774,0,247,0.311,55.4,75.91,0.91,0.8,797,0.2,216,3.3
+2274,2023,2,17,9,0,-7.2,1.2,0.024,0.62,55,916,352,0,0,-15.4,62,888,0,349,0.312,52.15,71.11,0.91,0.8,797,0.2,219,3.8
+2275,2023,2,17,9,30,-5.6,1.2,0.024,0.62,62,967,445,0,0,-15.4,109,810,0,430,0.313,46.09,66.65,0.91,0.8,796,0.2,220,4.2
+2276,2023,2,17,10,0,-4.1,1.21,0.022,0.62,66,1003,527,0,0,-14.3,66,1003,0,527,0.314,45.1,62.62,0.91,0.8,796,0.2,221,4.5
+2277,2023,2,17,10,30,-2.9,1.21,0.022,0.62,69,1028,597,0,0,-14.3,69,1028,0,597,0.315,41.23,59.12,0.9,0.8,796,0.2,221,4.7
+2278,2023,2,17,11,0,-1.8,1.22,0.019,0.62,70,1047,652,0,0,-13.1,70,1047,0,652,0.315,41.82,56.24,0.9,0.8,796,0.2,221,4.9
+2279,2023,2,17,11,30,-0.9,1.22,0.019,0.62,73,1058,693,0,0,-13.1,73,1058,0,693,0.315,39.1,54.11,0.9,0.8,795,0.2,221,5.1
+2280,2023,2,17,12,0,0,1.21,0.019,0.62,74,1064,717,0,0,-12.2,74,1064,0,717,0.315,39.37,52.8,0.9,0.8,795,0.2,221,5.2
+2281,2023,2,17,12,30,0.6,1.21,0.019,0.62,75,1066,725,0,0,-12.2,75,1066,0,725,0.314,37.7,52.4,0.9,0.8,795,0.2,222,5.3
+2282,2023,2,17,13,0,1.1,1.21,0.019,0.62,73,1064,715,0,7,-11.7,128,966,29,711,0.313,37.85,52.9,0.9,0.8,794,0.2,222,5.3
+2283,2023,2,17,13,30,1.3,1.21,0.019,0.62,72,1057,689,0,7,-11.7,146,919,54,682,0.313,37.31,54.3,0.9,0.8,794,0.2,223,5.2
+2284,2023,2,17,14,0,1.5,1.21,0.02,0.62,71,1044,647,0,7,-11.5,168,832,43,627,0.312,37.39,56.52,0.91,0.8,794,0.2,224,5.1
+2285,2023,2,17,14,30,1.3,1.21,0.02,0.62,68,1023,588,0,7,-11.5,164,793,29,567,0.312,37.93,59.47,0.91,0.8,794,0.2,223,4.9
+2286,2023,2,17,15,0,1.1,1.2,0.022,0.62,65,996,517,0,7,-11.4,114,881,18,514,0.311,38.8,63.03,0.91,0.8,793,0.2,223,4.7
+2287,2023,2,17,15,30,0.4,1.2,0.022,0.62,59,963,434,0,7,-11.4,106,822,29,426,0.311,40.81,67.11,0.91,0.8,793,0.2,221,4
+2288,2023,2,17,16,0,-0.3,1.2,0.021,0.62,53,915,342,0,7,-10.5,150,498,21,307,0.31,46.04,71.61,0.91,0.8,793,0.2,219,3.3
+2289,2023,2,17,16,30,-2.1,1.2,0.021,0.62,45,836,241,0,7,-10.5,138,253,0,197,0.309,52.52,76.44,0.91,0.8,793,0.2,211,2.4
+2290,2023,2,17,17,0,-3.9,1.18,0.023,0.62,36,703,140,4,7,-9.4,85,94,57,99,0.308,65.72,81.52,0.92,0.79,793,0.2,203,1.5
+2291,2023,2,17,17,30,-4.6,1.18,0.023,0.62,23,414,47,7,7,-9.4,28,3,100,28,0.308,69.27,86.73,0.92,0.79,793,0.2,197,1.6
+2292,2023,2,17,18,0,-5.2,1.17,0.025,0.62,0,0,0,1,6,-9.8,0,0,14,0,0.308,69.97,92.4,0.93,0.79,793,0.2,190,1.7
+2293,2023,2,17,18,30,-5.8,1.17,0.025,0.62,0,0,0,0,6,-9.8,0,0,0,0,0.309,73.23,97.98,0.93,0.79,793,0.2,189,1.8
+2294,2023,2,17,19,0,-6.3,1.17,0.025,0.62,0,0,0,0,7,-10.1,0,0,0,0,0.309,74.32,103.64,0.92,0.79,793,0.2,187,2
+2295,2023,2,17,19,30,-6.9,1.17,0.025,0.62,0,0,0,0,6,-10.1,0,0,0,0,0.31,77.82,109.33,0.92,0.79,793,0.2,188,2
+2296,2023,2,17,20,0,-7.4,1.17,0.023,0.62,0,0,0,0,6,-10.2,0,0,0,0,0.311,80.16,115.02,0.92,0.79,793,0.2,189,2.1
+2297,2023,2,17,20,30,-7.8,1.17,0.023,0.62,0,0,0,0,6,-10.2,0,0,0,0,0.312,82.67,120.65,0.92,0.79,793,0.2,190,2
+2298,2023,2,17,21,0,-8.3,1.16,0.022,0.62,0,0,0,0,6,-10.3,0,0,0,0,0.313,85.69,126.17,0.92,0.79,793,0.2,192,1.9
+2299,2023,2,17,21,30,-8.7,1.16,0.022,0.62,0,0,0,0,6,-10.3,0,0,0,0,0.314,88.41,131.51,0.92,0.79,793,0.2,194,1.8
+2300,2023,2,17,22,0,-9,1.14,0.023,0.62,0,0,0,0,6,-10.4,0,0,0,0,0.315,89.36,136.57,0.92,0.79,792,0.2,195,1.8
+2301,2023,2,17,22,30,-9.2,1.14,0.023,0.62,0,0,0,0,6,-10.4,0,0,0,0,0.316,90.77,141.22,0.92,0.79,792,0.2,198,1.8
+2302,2023,2,17,23,0,-9.5,1.13,0.023,0.62,0,0,0,0,7,-10.7,0,0,0,0,0.317,90.75,145.27,0.92,0.79,792,0.2,200,1.8
+2303,2023,2,17,23,30,-9.6,1.13,0.023,0.62,0,0,0,0,7,-10.7,0,0,0,0,0.318,91.47,148.46,0.92,0.79,792,0.2,201,1.7
+2304,2023,2,18,0,0,-9.7,1.12,0.025,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.318,89.87,150.51,0.93,0.79,791,0.2,203,1.7
+2305,2023,2,18,0,30,-9.7,1.12,0.025,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.319,89.87,151.15,0.93,0.79,791,0.2,204,1.6
+2306,2023,2,18,1,0,-9.6,1.12,0.025,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.32,87.72,150.3,0.93,0.79,791,0.2,205,1.5
+2307,2023,2,18,1,30,-9.6,1.12,0.025,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.321,87.72,148.08,0.93,0.79,791,0.2,207,1.5
+2308,2023,2,18,2,0,-9.6,1.11,0.026,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.323,86.84,144.76,0.93,0.79,790,0.2,210,1.5
+2309,2023,2,18,2,30,-9.7,1.11,0.026,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.324,87.52,140.61,0.93,0.79,790,0.2,212,1.4
+2310,2023,2,18,3,0,-9.8,1.11,0.027,0.62,0,0,0,0,7,-11.5,0,0,0,0,0.326,87.64,135.89,0.93,0.79,790,0.2,215,1.4
+2311,2023,2,18,3,30,-9.9,1.11,0.027,0.62,0,0,0,0,7,-11.5,0,0,0,0,0.328,88.34,130.78,0.93,0.79,790,0.2,215,1.4
+2312,2023,2,18,4,0,-10,1.1,0.027,0.62,0,0,0,0,7,-11.6,0,0,29,0,0.329,88.14,125.41,0.93,0.79,789,0.2,216,1.4
+2313,2023,2,18,4,30,-10.2,1.1,0.027,0.62,0,0,0,0,7,-11.6,0,0,14,0,0.331,89.54,119.86,0.93,0.79,789,0.2,215,1.5
+2314,2023,2,18,5,0,-10.4,1.11,0.027,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.333,89.61,114.21,0.93,0.79,789,0.2,214,1.5
+2315,2023,2,18,5,30,-10.7,1.11,0.027,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.334,91.76,108.52,0.93,0.79,789,0.2,212,1.5
+2316,2023,2,18,6,0,-10.9,1.11,0.027,0.62,0,0,0,0,7,-12.1,0,0,0,0,0.336,91.13,102.82,0.92,0.79,789,0.2,211,1.6
+2317,2023,2,18,6,30,-10.4,1.11,0.027,0.62,0,0,0,0,7,-12.1,0,0,0,0,0.337,87.58,97.16,0.92,0.79,789,0.2,210,1.7
+2318,2023,2,18,7,0,-9.9,1.1,0.027,0.62,4,44,3,2,7,-11.9,1,0,29,1,0.338,85.22,91.57,0.92,0.79,789,0.2,208,1.7
+2319,2023,2,18,7,30,-8.3,1.1,0.027,0.62,26,482,60,7,7,-11.9,29,1,100,29,0.339,75.18,85.94,0.93,0.79,789,0.2,209,2.4
+2320,2023,2,18,8,0,-6.7,1.1,0.029,0.62,40,709,154,2,7,-11.3,98,55,29,107,0.341,69.52,80.71,0.93,0.79,789,0.2,210,3.1
+2321,2023,2,18,8,30,-5.2,1.1,0.029,0.62,50,830,256,0,7,-11.4,152,36,0,161,0.341,61.93,75.64,0.93,0.79,788,0.2,213,3.7
+2322,2023,2,18,9,0,-3.7,1.1,0.031,0.62,59,904,356,0,7,-11.4,194,41,29,207,0.342,54.96,70.83,0.93,0.79,788,0.2,217,4.3
+2323,2023,2,18,9,30,-2.4,1.1,0.031,0.62,66,954,449,0,7,-11.4,277,203,0,358,0.342,49.9,66.35,0.93,0.79,788,0.2,220,4.9
+2324,2023,2,18,10,0,-1.2,1.1,0.033,0.62,73,987,532,0,7,-11.8,314,277,0,443,0.343,44.55,62.31,0.93,0.79,788,0.2,223,5.5
+2325,2023,2,18,10,30,-0.2,1.1,0.033,0.62,78,1011,602,0,7,-11.8,329,377,0,524,0.343,41.42,58.79,0.93,0.79,788,0.2,224,5.9
+2326,2023,2,18,11,0,0.7,1.1,0.035,0.62,83,1023,656,0,7,-11.8,247,651,0,612,0.342,38.8,55.91,0.94,0.79,788,0.2,224,6.2
+2327,2023,2,18,11,30,1.3,1.1,0.035,0.62,85,1028,693,0,0,-11.8,85,1028,0,693,0.342,37.11,53.76,0.94,0.79,787,0.3,225,6.3
+2328,2023,2,18,12,0,1.9,1.11,0.035,0.62,86,1030,714,0,0,-11.7,86,1030,0,714,0.341,35.83,52.45,0.93,0.79,787,0.3,225,6.5
+2329,2023,2,18,12,30,2.2,1.11,0.035,0.62,86,1032,721,0,0,-11.7,86,1032,0,721,0.34,35.07,52.04,0.93,0.79,787,0.3,225,6.6
+2330,2023,2,18,13,0,2.5,1.13,0.034,0.62,86,1030,712,0,7,-11.6,197,798,7,682,0.339,34.56,52.56,0.93,0.79,786,0.3,224,6.6
+2331,2023,2,18,13,30,2.6,1.13,0.034,0.62,84,1023,686,0,7,-11.6,317,512,0,618,0.339,34.32,53.97,0.93,0.79,786,0.3,223,6.6
+2332,2023,2,18,14,0,2.6,1.14,0.035,0.62,82,1011,644,0,7,-11.5,201,738,29,612,0.338,34.54,56.2,0.93,0.79,786,0.3,223,6.5
+2333,2023,2,18,14,30,2.4,1.14,0.035,0.62,77,993,586,0,7,-11.5,235,592,7,538,0.338,34.99,59.16,0.93,0.79,785,0.3,223,6.3
+2334,2023,2,18,15,0,2.3,1.14,0.034,0.62,72,967,515,0,7,-11.3,186,633,21,476,0.339,35.88,62.74,0.93,0.79,785,0.3,223,6.2
+2335,2023,2,18,15,30,1.6,1.14,0.034,0.62,65,932,432,0,7,-11.3,131,722,29,415,0.34,37.71,66.84,0.93,0.79,785,0.3,221,5.4
+2336,2023,2,18,16,0,0.9,1.15,0.031,0.62,58,882,340,0,7,-10.3,91,751,46,331,0.34,43.05,71.35,0.93,0.79,785,0.3,219,4.7
+2337,2023,2,18,16,30,-0.8,1.15,0.031,0.62,48,805,240,0,7,-10.3,58,755,57,238,0.341,48.69,76.19,0.92,0.79,785,0.3,215,3.8
+2338,2023,2,18,17,0,-2.5,1.15,0.027,0.62,37,679,140,3,7,-9.4,60,360,79,115,0.342,58.97,81.29,0.92,0.73,785,0.3,212,3
+2339,2023,2,18,17,30,-3.1,1.15,0.027,0.62,24,401,48,3,0,-9.4,24,187,39,35,0.343,61.66,86.52,0.92,0.73,785,0.3,212,3.3
+2340,2023,2,18,18,0,-3.7,1.15,0.025,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.344,62.26,92.18,0.91,0.73,786,0.3,212,3.5
+2341,2023,2,18,18,30,-4,1.15,0.025,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.345,63.67,97.77,0.92,0.73,786,0.3,213,3.8
+2342,2023,2,18,19,0,-4.3,1.14,0.026,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.346,63.77,103.43,0.92,0.73,786,0.3,214,4
+2343,2023,2,18,19,30,-4.7,1.14,0.026,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.347,65.72,109.12,0.92,0.73,786,0.3,215,3.9
+2344,2023,2,18,20,0,-5.2,1.14,0.03,0.62,0,0,0,0,7,-10.2,0,0,0,0,0.348,67.97,114.81,0.93,0.73,786,0.3,215,3.8
+2345,2023,2,18,20,30,-5.3,1.14,0.03,0.62,0,0,0,0,7,-10.2,0,0,0,0,0.35,68.57,120.43,0.93,0.73,787,0.3,215,3.7
+2346,2023,2,18,21,0,-5.5,1.13,0.033,0.62,0,0,0,0,7,-10.1,0,0,0,0,0.351,70.3,125.94,0.93,0.73,787,0.3,214,3.6
+2347,2023,2,18,21,30,-5.7,1.13,0.033,0.62,0,0,0,0,7,-10.1,0,0,0,0,0.353,71.38,131.27,0.93,0.73,787,0.3,213,3.3
+2348,2023,2,18,22,0,-5.9,1.12,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.354,73.33,136.32,0.93,0.73,787,0.3,211,3
+2349,2023,2,18,22,30,-6.1,1.12,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.356,74.46,140.95,0.93,0.73,787,0.4,209,2.7
+2350,2023,2,18,23,0,-6.2,1.11,0.032,0.62,0,0,0,0,6,-9.7,0,0,0,0,0.358,76.1,144.97,0.93,0.73,787,0.4,207,2.4
+2351,2023,2,18,23,30,-6.4,1.11,0.032,0.62,0,0,0,0,6,-9.7,0,0,0,0,0.36,77.28,148.14,0.94,0.73,787,0.4,206,2.3
+2352,2023,2,19,0,0,-6.5,1.1,0.033,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.361,79.03,150.16,0.94,0.73,787,0.4,204,2.1
+2353,2023,2,19,0,30,-6.6,1.1,0.033,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.362,79.64,150.8,0.94,0.73,787,0.4,203,2.1
+2354,2023,2,19,1,0,-6.7,1.08,0.036,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.362,81.61,149.95,0.94,0.73,787,0.4,202,2
+2355,2023,2,19,1,30,-6.8,1.08,0.036,0.62,0,0,0,0,6,-9.3,0,0,0,0,0.363,82.24,147.75,0.94,0.73,787,0.5,205,2
+2356,2023,2,19,2,0,-6.8,1.07,0.038,0.62,0,0,0,0,6,-9.1,0,0,0,0,0.363,83.53,144.44,0.95,0.73,787,0.5,207,2
+2357,2023,2,19,2,30,-6.8,1.07,0.038,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.364,83.53,140.32,0.95,0.73,787,0.5,211,2
+2358,2023,2,19,3,0,-6.8,1.07,0.037,0.62,0,0,0,0,7,-9,0,0,0,0,0.364,84.6,135.62,0.95,0.73,787,0.5,215,2
+2359,2023,2,19,3,30,-6.8,1.07,0.037,0.62,0,0,0,0,7,-9,0,0,0,0,0.366,84.6,130.52,0.95,0.73,787,0.5,218,2
+2360,2023,2,19,4,0,-6.8,1.07,0.037,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.367,85.59,125.15,0.95,0.73,787,0.5,221,2
+2361,2023,2,19,4,30,-6.7,1.07,0.037,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.369,84.93,119.61,0.95,0.73,787,0.5,223,2
+2362,2023,2,19,5,0,-6.7,1.08,0.039,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.37,85.96,113.97,0.95,0.73,787,0.6,225,2
+2363,2023,2,19,5,30,-6.7,1.08,0.039,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.371,85.96,108.28,0.95,0.73,787,0.5,227,1.9
+2364,2023,2,19,6,0,-6.7,1.09,0.037,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.373,86.72,102.58,0.95,0.73,787,0.5,229,1.9
+2365,2023,2,19,6,30,-6.4,1.09,0.037,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.373,84.85,96.91,0.94,0.73,788,0.5,233,2
+2366,2023,2,19,7,0,-6.1,1.1,0.031,0.62,4,40,3,3,7,-8.4,1,0,43,1,0.373,84.01,91.32,0.94,0.73,788,0.5,238,2
+2367,2023,2,19,7,30,-5.1,1.1,0.031,0.62,26,453,60,7,7,-8.4,26,0,100,26,0.373,77.86,85.69,0.93,0.73,788,0.5,246,2.6
+2368,2023,2,19,8,0,-4,1.09,0.026,0.62,38,685,152,2,8,-8.5,88,79,29,101,0.374,70.65,80.44,0.93,0.73,789,0.5,253,3.1
+2369,2023,2,19,8,30,-3,1.09,0.026,0.62,48,813,253,0,5,-8.5,158,98,0,183,0.375,65.57,75.36,0.92,0.73,789,0.4,262,3.5
+2370,2023,2,19,9,0,-2,1.08,0.024,0.62,54,890,351,0,4,-9,233,64,0,254,0.377,58.73,70.54,0.92,0.73,789,0.4,270,3.9
+2371,2023,2,19,9,30,-1.3,1.08,0.024,0.62,61,939,442,0,4,-9,266,41,0,283,0.378,55.79,66.05,0.92,0.73,789,0.4,269,4.1
+2372,2023,2,19,10,0,-0.7,1.05,0.023,0.62,66,974,523,0,0,-9.4,153,704,0,484,0.379,51.76,62,0.92,0.73,789,0.4,267,4.4
+2373,2023,2,19,10,30,-0.1,1.05,0.023,0.62,70,997,592,0,0,-9.4,70,997,0,592,0.378,49.55,58.46,0.92,0.73,789,0.4,261,4.7
+2374,2023,2,19,11,0,0.6,1.01,0.025,0.62,74,1013,647,0,0,-9.7,74,1013,0,647,0.377,45.87,55.57,0.92,0.73,789,0.4,256,4.9
+2375,2023,2,19,11,30,1.2,1.01,0.025,0.62,77,1024,687,0,0,-9.8,77,1024,0,687,0.375,43.88,53.41,0.92,0.73,788,0.4,251,5.2
+2376,2023,2,19,12,0,1.8,1.04,0.025,0.62,77,1030,710,0,0,-9.9,77,1030,0,710,0.373,41.55,52.1,0.93,0.73,788,0.4,246,5.5
+2377,2023,2,19,12,30,2.2,1.04,0.025,0.62,78,1033,718,0,0,-9.9,78,1033,0,718,0.37,40.38,51.69,0.92,0.73,788,0.4,245,5.7
+2378,2023,2,19,13,0,2.7,1.07,0.023,0.62,76,1032,708,0,0,-9.9,88,1010,14,707,0.366,39.03,52.21,0.92,0.73,787,0.4,243,5.9
+2379,2023,2,19,13,30,3,1.07,0.023,0.62,76,1020,681,0,7,-9.9,217,701,0,633,0.363,38.21,53.63,0.93,0.73,787,0.5,243,6
+2380,2023,2,19,14,0,3.2,0.94,0.027,0.62,74,1001,636,0,7,-9.7,233,577,7,557,0.36,38.13,55.87,0.93,0.73,787,0.5,243,6
+2381,2023,2,19,14,30,3.2,0.94,0.027,0.62,72,983,580,0,0,-9.7,88,941,7,575,0.357,38.13,58.85,0.92,0.73,787,0.5,244,6
+2382,2023,2,19,15,0,3.1,0.9,0.025,0.62,66,960,510,0,0,-9.4,83,919,7,508,0.354,39.52,62.45,0.92,0.73,786,0.5,245,5.9
+2383,2023,2,19,15,30,2.5,0.9,0.025,0.62,60,925,428,0,0,-9.4,64,915,0,428,0.352,41.23,66.57,0.92,0.73,786,0.5,245,5.2
+2384,2023,2,19,16,0,1.8,0.89,0.023,0.62,53,875,337,0,0,-8.5,53,875,36,337,0.351,46.46,71.09,0.92,0.73,786,0.5,246,4.4
+2385,2023,2,19,16,30,0,0.89,0.023,0.62,45,798,239,0,7,-8.5,80,620,50,231,0.35,52.95,75.95,0.92,0.73,787,0.5,247,3.5
+2386,2023,2,19,17,0,-1.9,0.92,0.022,0.62,36,671,140,3,7,-7.8,80,99,43,95,0.349,63.98,81.05,0.92,0.68,787,0.5,248,2.5
+2387,2023,2,19,17,30,-2.5,0.92,0.022,0.62,23,435,51,7,6,-7.8,21,0,100,21,0.348,66.88,86.3,0.92,0.68,787,0.5,247,2.5
+2388,2023,2,19,18,0,-3.1,0.96,0.022,0.62,3,36,2,2,6,-8,1,0,29,1,0.347,68.82,91.96,0.92,0.68,787,0.5,247,2.5
+2389,2023,2,19,18,30,-3.4,0.96,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.346,70.38,97.56,0.92,0.68,787,0.6,247,2.4
+2390,2023,2,19,19,0,-3.7,0.96,0.02,0.62,0,0,0,0,6,-7.9,0,0,0,0,0.345,72.85,103.22,0.92,0.68,788,0.6,247,2.3
+2391,2023,2,19,19,30,-3.9,0.96,0.02,0.62,0,0,0,0,6,-7.9,0,0,0,0,0.344,73.95,108.92,0.92,0.68,788,0.6,245,2.2
+2392,2023,2,19,20,0,-4.2,0.99,0.017,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.342,76.27,114.6,0.92,0.68,788,0.6,243,2.1
+2393,2023,2,19,20,30,-4.3,0.99,0.017,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.341,76.85,120.22,0.92,0.68,788,0.6,235,2.3
+2394,2023,2,19,21,0,-4.3,1.03,0.015,0.62,0,0,0,0,4,-7.6,0,0,0,0,0.341,77.52,125.72,0.92,0.68,788,0.6,228,2.5
+2395,2023,2,19,21,30,-4.3,1.03,0.015,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.34,77.52,131.04,0.92,0.68,788,0.6,224,2.9
+2396,2023,2,19,22,0,-4.4,1.05,0.014,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.34,78.99,136.07,0.92,0.68,788,0.6,219,3.4
+2397,2023,2,19,22,30,-4.6,1.05,0.014,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.339,80.19,140.67,0.92,0.68,788,0.6,217,3.4
+2398,2023,2,19,23,0,-4.9,1.05,0.014,0.62,0,0,0,0,6,-7.3,0,0,0,0,0.338,83.43,144.67,0.91,0.68,788,0.6,215,3.4
+2399,2023,2,19,23,30,-5.2,1.05,0.014,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.337,85.35,147.81,0.91,0.68,788,0.6,214,3.3
+2400,2023,2,20,0,0,-5.5,1.05,0.014,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.337,87.78,149.81,0.91,0.68,788,0.6,214,3.2
+2401,2023,2,20,0,30,-5.8,1.05,0.014,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.336,89.8,150.44,0.92,0.68,788,0.6,214,2.9
+2402,2023,2,20,1,0,-6,1.05,0.018,0.62,0,0,0,0,4,-7.3,0,0,0,0,0.334,90.54,149.6,0.93,0.68,788,0.7,214,2.6
+2403,2023,2,20,1,30,-6,1.05,0.018,0.62,0,0,0,0,4,-7.3,0,0,0,0,0.332,90.54,147.41,0.93,0.68,788,0.7,212,2.6
+2404,2023,2,20,2,0,-6.1,1.05,0.021,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.329,90.46,144.12,0.93,0.68,788,0.7,210,2.5
+2405,2023,2,20,2,30,-6.1,1.05,0.021,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.326,90.46,140.02,0.93,0.68,788,0.7,215,2.4
+2406,2023,2,20,3,0,-6.1,1.06,0.018,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.323,89.38,135.33,0.93,0.68,788,0.7,220,2.3
+2407,2023,2,20,3,30,-6,1.06,0.018,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.322,88.71,130.25,0.93,0.68,788,0.7,221,2.4
+2408,2023,2,20,4,0,-5.9,1.05,0.018,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.32,86.1,124.9,0.93,0.68,788,0.8,222,2.5
+2409,2023,2,20,4,30,-5.8,1.05,0.018,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.32,85.45,119.36,0.94,0.68,788,0.8,221,2.6
+2410,2023,2,20,5,0,-5.7,1.05,0.02,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.319,84.5,113.72,0.94,0.68,788,0.8,220,2.7
+2411,2023,2,20,5,30,-5.6,1.05,0.02,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.319,83.86,108.03,0.94,0.68,788,0.8,219,2.7
+2412,2023,2,20,6,0,-5.5,1.05,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.319,82.8,102.33,0.94,0.68,788,0.8,218,2.8
+2413,2023,2,20,6,30,-5,1.05,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.318,79.72,96.66,0.94,0.68,788,0.8,218,3
+2414,2023,2,20,7,0,-4.6,1.07,0.022,0.62,7,80,6,3,6,-7.8,2,0,43,2,0.317,78.37,91.06,0.94,0.68,788,0.8,217,3.2
+2415,2023,2,20,7,30,-3.6,1.07,0.022,0.62,25,473,63,7,6,-7.8,19,0,100,19,0.317,72.71,85.43,0.94,0.68,788,0.8,217,3.7
+2416,2023,2,20,8,0,-2.7,1.1,0.021,0.62,38,683,154,1,6,-7.3,45,2,14,45,0.317,70.61,80.18,0.94,0.68,788,0.8,217,4.2
+2417,2023,2,20,8,30,-1.6,1.1,0.021,0.62,45,801,251,0,6,-7.3,82,9,0,84,0.317,65.11,75.08,0.93,0.68,788,0.8,219,4.6
+2418,2023,2,20,9,0,-0.5,1.1,0.019,0.62,51,875,347,2,7,-6.7,128,97,36,161,0.318,62.86,70.25,0.93,0.68,788,0.8,222,5.1
+2419,2023,2,20,9,30,1,1.1,0.019,0.62,56,924,436,2,7,-6.7,134,16,29,141,0.318,56.39,65.75,0.93,0.68,788,0.8,231,5.4
+2420,2023,2,20,10,0,2.5,1.04,0.017,0.62,60,960,515,0,7,-5.7,216,72,0,250,0.318,54.6,61.68,0.92,0.68,788,0.8,240,5.8
+2421,2023,2,20,10,30,3.4,1.04,0.017,0.62,66,980,583,0,7,-5.7,273,69,0,309,0.317,51.24,58.13,0.93,0.68,788,0.8,248,5.7
+2422,2023,2,20,11,0,4.4,1.02,0.023,0.62,72,990,637,0,6,-4.8,216,5,0,219,0.315,51.31,55.22,0.94,0.68,788,0.8,256,5.6
+2423,2023,2,20,11,30,4.7,1.02,0.023,0.62,74,1002,676,0,6,-4.8,254,8,0,259,0.313,50.25,53.06,0.94,0.68,788,0.8,258,5.3
+2424,2023,2,20,12,0,5.1,1.03,0.023,0.62,75,1008,699,0,6,-4.2,298,30,0,317,0.312,51.05,51.74,0.94,0.68,788,0.8,260,5
+2425,2023,2,20,12,30,5.2,1.03,0.023,0.62,76,1010,707,0,7,-4.2,375,173,0,483,0.311,50.69,51.33,0.94,0.68,788,0.8,261,4.6
+2426,2023,2,20,13,0,5.3,1.03,0.022,0.62,74,1008,697,0,7,-3.7,273,519,7,594,0.31,52.2,51.86,0.94,0.68,788,0.8,261,4.3
+2427,2023,2,20,13,30,5.2,1.03,0.022,0.62,74,1000,672,0,5,-3.7,301,488,14,593,0.309,52.5,53.29,0.94,0.68,787,0.8,257,3.9
+2428,2023,2,20,14,0,5.1,1.01,0.024,0.62,72,988,631,0,8,-3.3,273,455,21,530,0.308,54.58,55.55,0.94,0.68,787,0.8,254,3.6
+2429,2023,2,20,14,30,4.9,1.01,0.024,0.62,68,972,575,0,7,-3.3,301,303,0,459,0.309,55.34,58.54,0.94,0.68,787,0.8,244,3.3
+2430,2023,2,20,15,0,4.7,0.95,0.022,0.62,63,948,506,0,8,-2.9,225,158,0,299,0.309,58.01,62.16,0.93,0.68,787,0.8,235,3.1
+2431,2023,2,20,15,30,4.1,0.95,0.022,0.62,58,916,426,0,7,-2.9,201,170,0,269,0.31,60.49,66.29,0.92,0.68,787,0.8,228,2.5
+2432,2023,2,20,16,0,3.4,0.93,0.018,0.62,50,872,336,0,8,-1.9,151,134,0,195,0.31,68.5,70.83,0.92,0.68,787,0.8,222,1.9
+2433,2023,2,20,16,30,1.8,0.93,0.018,0.62,44,795,240,0,7,-1.9,105,162,4,145,0.31,76.73,75.7,0.92,0.68,787,0.8,225,1.7
+2434,2023,2,20,17,0,0.2,0.96,0.019,0.62,34,668,141,3,7,-3.2,57,7,43,58,0.31,77.79,80.82,0.92,0.66,787,0.8,228,1.4
+2435,2023,2,20,17,30,-0.4,0.96,0.019,0.62,23,437,53,7,7,-3.2,21,0,100,21,0.31,81.25,86.09,0.92,0.66,787,0.8,229,1.4
+2436,2023,2,20,18,0,-1.1,0.94,0.021,0.62,4,37,3,2,7,-3.9,1,0,29,1,0.311,81.27,91.75,0.92,0.66,787,0.8,230,1.5
+2437,2023,2,20,18,30,-1.5,0.94,0.021,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.311,83.69,97.35,0.92,0.66,787,0.8,226,1.5
+2438,2023,2,20,19,0,-2,0.92,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.311,86.08,103.02,0.92,0.66,787,0.8,221,1.5
+2439,2023,2,20,19,30,-2.3,0.92,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.31,88.01,108.71,0.92,0.66,787,0.8,226,1.5
+2440,2023,2,20,20,0,-2.6,0.89,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.309,89.76,114.39,0.92,0.66,787,0.8,231,1.5
+2441,2023,2,20,20,30,-2.8,0.89,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.309,91.1,120,0.92,0.66,787,0.8,232,1.5
+2442,2023,2,20,21,0,-3,0.87,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.308,92.69,125.5,0.92,0.66,787,0.7,233,1.6
+2443,2023,2,20,21,30,-3.2,0.87,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.308,93.96,130.8,0.92,0.66,786,0.7,227,1.6
+2444,2023,2,20,22,0,-3.4,0.87,0.02,0.62,0,0,0,0,7,-4,0,0,0,0,0.308,95.89,135.81,0.92,0.66,786,0.7,221,1.7
+2445,2023,2,20,22,30,-3.5,0.87,0.02,0.62,0,0,0,0,7,-4,0,0,0,0,0.307,96.61,140.4,0.92,0.66,786,0.7,218,2
+2446,2023,2,20,23,0,-3.6,0.85,0.02,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.307,98.12,144.37,0.92,0.66,785,0.7,214,2.3
+2447,2023,2,20,23,30,-3.6,0.85,0.02,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.306,98.12,147.48,0.92,0.66,785,0.7,214,2.5
+2448,2023,2,21,0,0,-3.7,0.87,0.02,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.305,99.49,149.47,0.92,0.66,784,0.7,214,2.8
+2449,2023,2,21,0,30,-3.7,0.87,0.02,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.305,99.49,150.08,0.92,0.66,784,0.7,213,3.1
+2450,2023,2,21,1,0,-3.8,0.89,0.02,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.304,99.87,149.24,0.92,0.66,783,0.7,212,3.4
+2451,2023,2,21,1,30,-3.8,0.89,0.02,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.303,99.87,147.07,0.92,0.66,783,0.7,210,3.6
+2452,2023,2,21,2,0,-3.8,0.91,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.301,98.65,143.8,0.92,0.66,782,0.7,209,3.9
+2453,2023,2,21,2,30,-3.9,0.91,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.3,99.39,139.71,0.92,0.66,782,0.7,208,3.9
+2454,2023,2,21,3,0,-4,0.91,0.022,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.299,98.35,135.05,0.92,0.66,781,0.7,207,3.9
+2455,2023,2,21,3,30,-4.1,0.91,0.022,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.297,99.09,129.98,0.92,0.66,781,0.7,205,3.8
+2456,2023,2,21,4,0,-4.2,0.91,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.296,97.96,124.63,0.92,0.66,780,0.8,203,3.8
+2457,2023,2,21,4,30,-4.3,0.91,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.294,98.7,119.11,0.93,0.66,780,0.8,203,3.7
+2458,2023,2,21,5,0,-4.4,0.93,0.024,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.293,97.59,113.47,0.93,0.66,779,0.8,202,3.6
+2459,2023,2,21,5,30,-4.5,0.93,0.024,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.292,98.32,107.78,0.93,0.66,779,0.8,201,3.6
+2460,2023,2,21,6,0,-4.6,0.95,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.291,97.4,102.08,0.93,0.66,779,0.9,200,3.5
+2461,2023,2,21,6,30,-4.1,0.95,0.025,0.62,0,0,0,0,7,-5,0,0,0,0,0.29,93.68,96.41,0.93,0.66,778,0.9,200,3.9
+2462,2023,2,21,7,0,-3.5,0.96,0.025,0.62,6,80,6,3,7,-5,3,0,43,3,0.29,89.68,90.31,0.93,0.66,778,0.9,199,4.4
+2463,2023,2,21,7,30,-2.3,0.96,0.025,0.62,27,468,66,7,7,-4.9,30,17,96,31,0.289,82.03,85.18,0.94,0.66,778,0.9,201,4.9
+2464,2023,2,21,8,0,-1,0.98,0.026,0.62,39,672,157,1,7,-4.2,93,133,14,116,0.289,78.76,79.91,0.94,0.66,777,0.9,202,5.5
+2465,2023,2,21,8,30,0.4,0.98,0.026,0.62,49,786,255,0,7,-4.2,102,480,11,228,0.289,71.14,74.8,0.94,0.66,777,1,207,6.5
+2466,2023,2,21,9,0,1.9,1,0.028,0.62,57,856,350,0,7,-3,155,345,0,273,0.288,69.82,69.95,0.94,0.66,776,1,213,7.4
+2467,2023,2,21,9,30,2.7,1,0.028,0.62,63,902,438,0,7,-3,198,92,0,236,0.288,65.96,65.44,0.95,0.66,776,1,217,8
+2468,2023,2,21,10,0,3.5,1.01,0.031,0.62,69,934,517,0,6,-2.4,204,29,0,218,0.287,65.3,61.35,0.95,0.66,775,1,220,8.6
+2469,2023,2,21,10,30,3.6,1.01,0.031,0.62,76,953,584,0,7,-2.4,259,93,0,309,0.287,64.76,57.8,0.95,0.66,774,1,221,8.7
+2470,2023,2,21,11,0,3.8,1.01,0.04,0.62,82,963,636,0,6,-2.2,270,23,0,283,0.287,64.89,54.87,0.96,0.66,774,1,222,8.8
+2471,2023,2,21,11,30,3.7,1.01,0.04,0.62,84,975,675,0,6,-2.2,315,84,0,366,0.286,65.26,52.7,0.96,0.66,773,1,221,8.7
+2472,2023,2,21,12,0,3.7,1.02,0.04,0.62,86,981,698,0,6,-2.1,269,22,0,283,0.286,65.74,51.38,0.96,0.66,772,1.1,220,8.7
+2473,2023,2,21,12,30,3.7,1.02,0.04,0.62,85,984,705,0,6,-2.1,289,37,0,312,0.286,65.65,50.97,0.96,0.66,771,1.1,220,8.7
+2474,2023,2,21,13,0,3.7,1.01,0.038,0.62,84,984,697,0,6,-2,232,5,0,235,0.285,66.29,51.5,0.96,0.66,771,1,220,8.7
+2475,2023,2,21,13,30,3.7,1.01,0.038,0.62,84,976,672,0,7,-2,256,13,0,264,0.285,66.21,52.94,0.96,0.66,770,1,219,8.7
+2476,2023,2,21,14,0,3.8,1,0.039,0.62,81,964,631,0,7,-1.9,326,88,0,376,0.285,66.58,55.22,0.96,0.66,770,1,219,8.7
+2477,2023,2,21,14,30,3.5,1,0.039,0.62,77,946,575,0,6,-1.9,233,18,0,242,0.285,67.91,58.24,0.96,0.66,769,1,218,8.4
+2478,2023,2,21,15,0,3.3,1,0.038,0.62,72,920,506,0,6,-1.7,162,3,0,163,0.286,69.89,61.87,0.96,0.66,769,1,218,8.1
+2479,2023,2,21,15,30,2.6,1,0.038,0.62,67,883,426,0,6,-1.7,131,2,0,132,0.287,73.44,66.02,0.96,0.66,769,1,216,6.9
+2480,2023,2,21,16,0,2,0.99,0.038,0.62,60,828,335,0,6,-1.2,98,2,0,99,0.288,79.47,70.58,0.96,0.66,768,1,214,5.8
+2481,2023,2,21,16,30,1,0.99,0.038,0.62,53,741,239,0,9,-1.2,57,0,0,57,0.289,85.36,75.46,0.96,0.66,768,1,210,4.9
+2482,2023,2,21,17,0,0.1,0.99,0.046,0.62,43,599,141,3,6,-1,36,0,43,36,0.29,92.19,80.59,0.96,0.65,768,1,205,3.9
+2483,2023,2,21,17,30,-0.2,0.99,0.046,0.62,28,353,53,7,6,-1,21,0,100,21,0.291,94.22,85.87,0.96,0.65,768,1,200,3.9
+2484,2023,2,21,18,0,-0.5,0.98,0.054,0.62,4,24,3,2,7,-0.9,1,0,29,1,0.292,97.32,91.53,0.96,0.65,768,1,195,3.9
+2485,2023,2,21,18,30,-0.6,0.98,0.054,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.293,97.91,97.14,0.96,0.65,767,1,191,4.3
+2486,2023,2,21,19,0,-0.7,0.97,0.057,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.293,98.61,102.81,0.96,0.65,767,1,187,4.6
+2487,2023,2,21,19,30,-0.7,0.97,0.057,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.294,98.61,108.5,0.97,0.65,767,0.9,186,4.8
+2488,2023,2,21,20,0,-0.7,1,0.064,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.295,97.25,114.18,0.97,0.65,766,0.9,186,5
+2489,2023,2,21,20,30,-0.7,1,0.064,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.297,97.25,119.78,0.97,0.65,766,0.9,185,5
+2490,2023,2,21,21,0,-0.7,1,0.063,0.62,0,0,0,0,6,-1.2,0,0,0,0,0.298,96.23,125.27,0.97,0.65,766,0.9,184,5
+2491,2023,2,21,21,30,-0.7,1,0.063,0.62,0,0,0,0,6,-1.2,0,0,0,0,0.3,96.1,130.56,0.96,0.65,765,0.9,182,5
+2492,2023,2,21,22,0,-0.7,0.97,0.056,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.302,95.68,135.56,0.96,0.65,765,0.9,179,4.9
+2493,2023,2,21,22,30,-0.8,0.97,0.056,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.305,96.38,140.12,0.96,0.65,765,0.9,176,4.9
+2494,2023,2,21,23,0,-0.8,0.95,0.06,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.307,96.46,144.07,0.96,0.65,764,0.9,172,4.9
+2495,2023,2,21,23,30,-0.7,0.95,0.06,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.309,95.76,147.15,0.97,0.65,764,0.9,168,5.1
+2496,2023,2,22,0,0,-0.7,0.96,0.078,0.62,0,0,0,0,6,-1.2,0,0,0,0,0.311,96.65,149.11,0.97,0.65,763,0.9,165,5.3
+2497,2023,2,22,0,30,-0.6,0.96,0.078,0.62,0,0,0,0,6,-1.2,0,0,0,0,0.313,95.83,149.72,0.97,0.65,762,0.9,165,5.7
+2498,2023,2,22,1,0,-0.4,0.95,0.09,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.315,96.1,148.88,0.97,0.65,762,0.9,165,6
+2499,2023,2,22,1,30,-0.4,0.95,0.09,0.62,0,0,0,0,6,-0.9,0,0,0,0,0.316,96.1,146.72,0.97,0.65,762,0.9,167,6.3
+2500,2023,2,22,2,0,-0.4,0.95,0.09,0.62,0,0,0,0,7,-0.8,0,0,0,0,0.317,96.97,143.47,0.97,0.65,761,0.9,169,6.6
+2501,2023,2,22,2,30,-0.3,0.95,0.09,0.62,0,0,0,0,6,-0.8,0,0,0,0,0.318,96.27,139.4,0.96,0.65,761,0.9,174,7.3
+2502,2023,2,22,3,0,-0.3,0.97,0.075,0.62,0,0,0,0,6,-0.8,0,0,0,0,0.319,96.08,134.75,0.96,0.65,761,0.8,179,7.9
+2503,2023,2,22,3,30,-0.2,0.97,0.075,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.32,95.26,129.7,0.96,0.65,760,0.8,180,8
+2504,2023,2,22,4,0,-0.2,0.97,0.055,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.321,93.92,124.37,0.95,0.65,760,0.8,182,8
+2505,2023,2,22,4,30,-0.3,0.97,0.055,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.322,94.61,118.85,0.94,0.65,760,0.7,184,8
+2506,2023,2,22,5,0,-0.4,0.95,0.038,0.62,0,0,0,0,4,-1.4,0,0,0,0,0.323,93.02,113.22,0.94,0.65,760,0.7,185,7.9
+2507,2023,2,22,5,30,-0.6,0.95,0.038,0.62,0,0,0,0,7,-1.4,0,0,0,0,0.325,94.39,107.53,0.93,0.65,760,0.7,186,7.6
+2508,2023,2,22,6,0,-0.8,0.96,0.032,0.62,0,0,0,0,7,-1.8,0,0,0,0,0.326,93.1,101.83,0.93,0.65,760,0.6,187,7.3
+2509,2023,2,22,6,30,-0.6,0.96,0.032,0.62,0,0,0,0,6,-1.8,0,0,0,0,0.328,91.76,96.15,0.93,0.65,760,0.6,186,7
+2510,2023,2,22,7,0,-0.4,0.94,0.034,0.62,7,79,7,3,6,-1.8,3,0,43,3,0.329,90.52,90.1,0.93,0.65,759,0.6,185,6.8
+2511,2023,2,22,7,30,0.1,0.94,0.034,0.62,29,447,69,7,6,-1.8,19,0,100,19,0.329,87.3,84.92,0.94,0.65,759,0.7,180,6.6
+2512,2023,2,22,8,0,0.7,0.88,0.049,0.62,46,636,160,1,9,-1.2,35,0,14,35,0.33,87.39,79.63,0.94,0.65,759,0.7,176,6.4
+2513,2023,2,22,8,30,0.9,0.88,0.049,0.62,59,745,258,0,6,-1.2,56,0,0,56,0.33,86.02,74.51,0.95,0.65,758,0.7,178,7.8
+2514,2023,2,22,9,0,1,0.8,0.066,0.62,72,807,353,0,9,-1.5,97,1,0,97,0.331,83.29,69.65,0.95,0.65,758,0.7,181,9.2
+2515,2023,2,22,9,30,0.7,0.8,0.066,0.62,81,863,444,0,9,-1.5,120,2,0,121,0.334,85.11,65.13,0.95,0.65,758,0.7,196,10.2
+2516,2023,2,22,10,0,0.4,0.8,0.067,0.62,89,905,527,0,6,-3.6,180,10,0,185,0.336,74.29,61.03,0.95,0.65,758,0.6,211,11.2
+2517,2023,2,22,10,30,0.2,0.8,0.067,0.62,91,947,600,0,7,-3.6,234,30,4,250,0.34,75.48,57.46,0.94,0.65,759,0.5,221,10.5
+2518,2023,2,22,11,0,0,0.86,0.051,0.62,90,984,661,0,6,-7.4,263,39,4,286,0.344,57.31,54.52,0.94,0.65,759,0.4,230,9.9
+2519,2023,2,22,11,30,-0.1,0.86,0.051,0.62,91,1002,703,0,6,-7.4,275,9,0,280,0.347,57.81,52.34,0.94,0.65,760,0.4,224,10
+2520,2023,2,22,12,0,-0.2,0.96,0.046,0.62,90,1014,728,0,6,-10.9,304,44,0,332,0.35,44.5,51.01,0.94,0.65,760,0.4,219,10
+2521,2023,2,22,12,30,-0.6,0.96,0.046,0.62,91,1015,735,0,6,-10.9,333,150,0,428,0.351,45.82,50.61,0.95,0.65,760,0.4,216,10.4
+2522,2023,2,22,13,0,-1,0.97,0.048,0.62,91,1010,725,0,7,-11.1,373,288,0,554,0.352,46.14,51.14,0.95,0.65,761,0.4,212,10.7
+2523,2023,2,22,13,30,-1.8,0.97,0.048,0.62,92,998,698,0,6,-11.1,301,81,0,350,0.352,48.93,52.6,0.95,0.65,761,0.4,215,10.4
+2524,2023,2,22,14,0,-2.5,0.91,0.055,0.62,91,980,655,0,7,-11.3,359,279,0,519,0.352,51.02,54.89,0.96,0.65,762,0.4,217,10.2
+2525,2023,2,22,14,30,-3.1,0.91,0.055,0.62,88,961,598,0,7,-11.2,353,136,0,425,0.354,53.41,57.92,0.96,0.65,763,0.4,223,9.6
+2526,2023,2,22,15,0,-3.7,0.93,0.056,0.62,83,936,528,0,7,-11.9,307,86,0,348,0.355,52.8,61.58,0.96,0.65,763,0.4,228,9
+2527,2023,2,22,15,30,-4.3,0.93,0.056,0.62,77,899,446,0,7,-11.9,249,51,0,270,0.357,55.3,65.74,0.96,0.65,764,0.3,237,8.4
+2528,2023,2,22,16,0,-4.8,1.02,0.059,0.62,70,844,354,0,7,-12.8,215,68,0,238,0.358,53.5,70.32,0.96,0.65,765,0.3,247,7.8
+2529,2023,2,22,16,30,-5.8,1.02,0.059,0.62,61,754,253,0,7,-12.8,150,59,0,165,0.36,57.79,75.22,0.96,0.65,766,0.3,260,7.3
+2530,2023,2,22,17,0,-6.7,1.08,0.067,0.62,49,608,151,2,7,-14,88,48,29,96,0.362,56.33,80.36,0.96,0.8,768,0.3,273,6.8
+2531,2023,2,22,17,30,-8.1,1.08,0.067,0.62,31,368,59,7,7,-13.9,26,0,100,26,0.364,62.84,85.65,0.96,0.8,769,0.3,287,6.6
+2532,2023,2,22,18,0,-9.4,1.1,0.066,0.62,4,28,3,3,7,-16,1,0,43,1,0.365,58.79,91.31,0.96,0.8,770,0.3,300,6.3
+2533,2023,2,22,18,30,-10.6,1.1,0.066,0.62,0,0,0,0,7,-15.9,0,0,0,0,0.367,64.8,96.93,0.96,0.8,772,0.3,306,5.6
+2534,2023,2,22,19,0,-11.8,1.1,0.058,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.368,59.3,102.6,0.96,0.8,773,0.2,311,5
+2535,2023,2,22,19,30,-12.2,1.1,0.058,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.369,61.32,108.29,0.96,0.8,774,0.2,313,4.1
+2536,2023,2,22,20,0,-12.7,1.08,0.05,0.62,0,0,0,0,7,-18.9,0,0,0,0,0.371,59.67,113.96,0.96,0.8,774,0.2,315,3.3
+2537,2023,2,22,20,30,-12.7,1.08,0.05,0.62,0,0,0,0,4,-18.9,0,0,0,0,0.371,59.74,119.57,0.96,0.8,775,0.2,321,2.5
+2538,2023,2,22,21,0,-12.8,1.06,0.046,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.372,60.91,125.04,0.96,0.8,775,0.2,327,1.7
+2539,2023,2,22,21,30,-12.8,1.06,0.046,0.62,0,0,0,0,6,-18.8,0,0,0,0,0.372,60.99,130.32,0.96,0.8,776,0.2,178,1.1
+2540,2023,2,22,22,0,-12.7,1.02,0.045,0.62,0,0,0,0,7,-18.2,0,0,0,0,0.372,63.3,135.3,0.96,0.8,776,0.2,29,0.5
+2541,2023,2,22,22,30,-12.7,1.02,0.045,0.62,0,0,0,0,7,-18.2,0,0,0,0,0.372,63.3,139.84,0.96,0.8,776,0.3,73,0.8
+2542,2023,2,22,23,0,-12.7,0.99,0.044,0.62,0,0,0,0,7,-17.6,0,0,0,0,0.371,66.63,143.76,0.96,0.8,777,0.3,117,1.1
+2543,2023,2,22,23,30,-12.7,0.99,0.044,0.62,0,0,0,0,8,-17.6,0,0,0,0,0.37,66.63,146.82,0.96,0.8,777,0.3,123,1.5
+2544,2023,2,23,0,0,-12.7,0.98,0.039,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.37,69.59,148.76,0.96,0.8,777,0.3,130,1.8
+2545,2023,2,23,0,30,-12.7,0.98,0.039,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.369,69.59,149.35,0.96,0.8,777,0.3,135,2.1
+2546,2023,2,23,1,0,-12.7,0.97,0.035,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.368,72.16,148.52,0.96,0.8,777,0.3,140,2.3
+2547,2023,2,23,1,30,-12.6,0.97,0.035,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.368,71.58,146.37,0.96,0.8,777,0.3,144,2.4
+2548,2023,2,23,2,0,-12.6,0.94,0.033,0.62,0,0,0,0,7,-16.3,0,0,0,0,0.367,74.13,143.14,0.96,0.8,778,0.3,148,2.4
+2549,2023,2,23,2,30,-12.6,0.94,0.033,0.62,0,0,0,0,7,-16.3,0,0,0,0,0.368,74.13,139.09,0.96,0.8,778,0.3,152,2.3
+2550,2023,2,23,3,0,-12.6,0.92,0.033,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.368,76.12,134.46,0.96,0.8,778,0.3,155,2.2
+2551,2023,2,23,3,30,-12.7,0.92,0.033,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.369,76.74,129.42,0.96,0.8,778,0.3,158,1.9
+2552,2023,2,23,4,0,-12.9,0.93,0.033,0.62,0,0,0,0,7,-15.6,0,0,0,0,0.37,80.03,124.09,0.96,0.8,778,0.3,160,1.7
+2553,2023,2,23,4,30,-13,0.93,0.033,0.62,0,0,0,0,7,-15.6,0,0,0,0,0.371,80.68,118.58,0.96,0.8,778,0.3,161,1.6
+2554,2023,2,23,5,0,-13.2,0.94,0.035,0.62,0,0,0,0,7,-15.5,0,0,0,0,0.371,83.06,112.96,0.96,0.8,778,0.3,163,1.5
+2555,2023,2,23,5,30,-13.3,0.94,0.035,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.372,83.84,107.27,0.96,0.8,779,0.3,163,1.5
+2556,2023,2,23,6,0,-13.4,0.94,0.041,0.62,0,0,0,0,0,-15.2,0,0,0,0,0.372,86.36,101.57,0.96,0.8,779,0.3,164,1.4
+2557,2023,2,23,6,30,-12.9,0.94,0.041,0.62,0,0,0,0,0,-15.2,0,0,0,0,0.372,82.92,95.89,0.96,0.8,779,0.3,163,1.6
+2558,2023,2,23,7,0,-12.5,0.88,0.051,0.62,8,75,8,4,7,-14.6,4,0,57,4,0.372,84.43,89.84,0.97,0.8,780,0.3,162,1.7
+2559,2023,2,23,7,30,-11.3,0.88,0.051,0.62,34,438,75,6,7,-14.6,43,41,86,47,0.372,76.67,84.64,0.97,0.8,780,0.3,170,2.2
+2560,2023,2,23,8,0,-10.1,0.82,0.066,0.62,53,632,170,0,7,-13.1,98,168,0,129,0.372,78.55,79.35,0.97,0.8,780,0.3,179,2.7
+2561,2023,2,23,8,30,-9.1,0.82,0.066,0.62,67,757,273,0,7,-13.1,184,92,0,209,0.372,72.6,74.22,0.97,0.8,780,0.3,187,3.6
+2562,2023,2,23,9,0,-8.2,0.77,0.067,0.62,80,835,374,0,7,-12.1,208,310,7,317,0.372,73.58,69.35,0.97,0.8,780,0.3,196,4.4
+2563,2023,2,23,9,30,-7.3,0.77,0.067,0.62,86,896,467,0,0,-12.1,152,685,7,444,0.371,68.63,64.81,0.97,0.8,780,0.3,200,5.2
+2564,2023,2,23,10,0,-6.4,0.75,0.057,0.62,90,942,551,0,7,-11.8,255,499,0,499,0.371,65.46,60.7,0.96,0.8,780,0.3,204,6
+2565,2023,2,23,10,30,-5.6,0.75,0.057,0.62,94,973,622,0,0,-11.8,186,753,0,595,0.369,61.59,57.11,0.96,0.8,780,0.3,206,6.5
+2566,2023,2,23,11,0,-4.8,0.8,0.048,0.62,94,999,679,0,7,-12.2,255,651,0,636,0.368,56.32,54.17,0.96,0.8,780,0.3,209,7.1
+2567,2023,2,23,11,30,-4.4,0.8,0.048,0.62,99,1008,720,0,7,-12.2,394,389,0,634,0.367,54.64,51.98,0.96,0.8,780,0.3,208,7.4
+2568,2023,2,23,12,0,-4,0.82,0.053,0.62,102,1012,744,0,7,-12.3,445,311,0,642,0.366,52.61,50.64,0.96,0.8,779,0.3,207,7.7
+2569,2023,2,23,12,30,-4,0.82,0.053,0.62,103,1011,750,0,7,-12.3,463,266,0,633,0.365,52.61,50.24,0.96,0.8,779,0.3,207,8.1
+2570,2023,2,23,13,0,-3.9,0.81,0.058,0.62,105,1003,739,0,7,-11.5,460,235,0,609,0.364,55.61,50.79,0.96,0.8,779,0.3,206,8.4
+2571,2023,2,23,13,30,-3.9,0.81,0.058,0.62,100,996,710,0,7,-11.5,440,219,0,574,0.363,55.61,52.25,0.96,0.8,779,0.4,208,8.8
+2572,2023,2,23,14,0,-3.9,0.83,0.051,0.62,95,988,668,0,7,-11.4,391,253,0,538,0.362,56.17,54.56,0.96,0.8,779,0.4,210,9.1
+2573,2023,2,23,14,30,-4,0.83,0.051,0.62,89,977,612,0,7,-11.4,326,146,0,404,0.36,56.59,57.61,0.96,0.8,779,0.3,212,9
+2574,2023,2,23,15,0,-4.1,0.87,0.041,0.62,80,960,541,0,7,-11.9,278,97,0,325,0.359,54.43,61.29,0.96,0.8,780,0.3,213,9
+2575,2023,2,23,15,30,-4.3,0.87,0.041,0.62,73,924,457,0,7,-11.9,268,173,0,340,0.358,55.25,65.47,0.96,0.8,780,0.3,212,8.5
+2576,2023,2,23,16,0,-4.6,0.91,0.04,0.62,65,875,363,0,7,-12,207,44,0,222,0.358,56.1,70.06,0.96,0.8,780,0.3,211,8
+2577,2023,2,23,16,30,-5.1,0.91,0.04,0.62,56,794,262,0,7,-12,127,16,0,131,0.358,58.33,74.97,0.96,0.8,781,0.3,208,7.1
+2578,2023,2,23,17,0,-5.6,0.92,0.042,0.62,44,663,158,2,7,-11.6,70,7,29,71,0.358,62.89,80.13,0.96,0.8,781,0.4,205,6.3
+2579,2023,2,23,17,30,-6.1,0.92,0.042,0.62,30,432,64,7,7,-11.5,30,1,100,30,0.358,65.41,85.43,0.96,0.8,782,0.4,204,5.8
+2580,2023,2,23,18,0,-6.5,0.92,0.043,0.62,7,62,6,3,7,-11.1,2,0,43,2,0.358,69.97,91.1,0.96,0.8,782,0.4,202,5.4
+2581,2023,2,23,18,30,-6.8,0.92,0.043,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.358,71.6,96.71,0.96,0.8,782,0.4,201,5.1
+2582,2023,2,23,19,0,-7,0.94,0.043,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.358,74.58,102.39,0.96,0.8,783,0.4,200,4.7
+2583,2023,2,23,19,30,-7.4,0.94,0.043,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.358,76.91,108.08,0.96,0.8,783,0.4,198,4.5
+2584,2023,2,23,20,0,-7.8,0.95,0.042,0.62,0,0,0,0,7,-10.7,0,0,0,0,0.359,79.56,113.75,0.96,0.8,783,0.4,195,4.2
+2585,2023,2,23,20,30,-8.1,0.95,0.042,0.62,0,0,0,0,6,-10.7,0,0,0,0,0.359,81.53,119.35,0.96,0.8,784,0.4,192,4.2
+2586,2023,2,23,21,0,-8.4,0.96,0.042,0.62,0,0,0,0,6,-10.6,0,0,0,0,0.36,83.92,124.82,0.96,0.8,784,0.4,189,4.2
+2587,2023,2,23,21,30,-8.6,0.96,0.042,0.62,0,0,0,0,7,-10.6,0,0,0,0,0.36,85.24,130.08,0.96,0.8,784,0.4,186,4
+2588,2023,2,23,22,0,-8.8,0.96,0.039,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.36,87.67,135.04,0.96,0.8,784,0.4,184,3.8
+2589,2023,2,23,22,30,-8.9,0.96,0.039,0.62,0,0,0,0,8,-10.5,0,0,0,0,0.361,88.36,139.56,0.96,0.8,784,0.4,179,3.4
+2590,2023,2,23,23,0,-9.1,0.94,0.038,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.361,90.86,143.45,0.96,0.8,784,0.4,174,3
+2591,2023,2,23,23,30,-9.1,0.94,0.038,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.361,90.86,146.49,0.96,0.8,784,0.4,169,3
+2592,2023,2,24,0,0,-9,0.9,0.036,0.62,0,0,0,0,7,-10.1,0,0,0,0,0.361,91.53,148.4,0.96,0.8,784,0.5,163,2.9
+2593,2023,2,24,0,30,-9,0.9,0.036,0.62,0,0,0,0,6,-10.1,0,0,0,0,0.361,91.53,148.98,0.95,0.8,784,0.5,157,2.9
+2594,2023,2,24,1,0,-9,0.85,0.035,0.62,0,0,0,0,6,-10,0,0,0,0,0.36,92.37,148.15,0.95,0.8,784,0.5,152,2.8
+2595,2023,2,24,1,30,-9,0.85,0.035,0.62,0,0,0,0,6,-10,0,0,0,0,0.359,92.26,146.01,0.95,0.8,783,0.5,147,2.7
+2596,2023,2,24,2,0,-9,0.79,0.04,0.62,0,0,0,0,6,-10,0,0,0,0,0.358,92.49,142.8,0.95,0.8,783,0.5,142,2.6
+2597,2023,2,24,2,30,-8.9,0.79,0.04,0.62,0,0,0,0,6,-10,0,0,0,0,0.357,91.77,138.77,0.95,0.8,783,0.5,149,2.5
+2598,2023,2,24,3,0,-8.9,0.78,0.042,0.62,0,0,0,0,6,-9.9,0,0,0,0,0.357,92.6,134.16,0.95,0.8,782,0.5,156,2.4
+2599,2023,2,24,3,30,-8.7,0.78,0.042,0.62,0,0,0,0,9,-9.9,0,0,0,0,0.357,91.16,129.13,0.95,0.8,782,0.5,173,2.9
+2600,2023,2,24,4,0,-8.4,0.8,0.037,0.62,0,0,0,0,9,-9.2,0,0,0,0,0.357,93.59,123.82,0.95,0.8,782,0.5,189,3.4
+2601,2023,2,24,4,30,-8,0.8,0.037,0.62,0,0,0,0,6,-9.2,0,0,0,0,0.358,90.84,118.32,0.95,0.8,783,0.5,197,3.7
+2602,2023,2,24,5,0,-7.7,0.82,0.04,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.359,96.64,112.69,0.96,0.8,783,0.5,204,4
+2603,2023,2,24,5,30,-7.5,0.82,0.04,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.36,95.16,107.01,0.95,0.8,783,0.5,207,4.4
+2604,2023,2,24,6,0,-7.3,0.87,0.038,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.361,97.1,101.31,0.95,0.8,784,0.4,210,4.8
+2605,2023,2,24,6,30,-7,0.87,0.038,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.362,94.88,95.63,0.95,0.8,784,0.4,213,5.2
+2606,2023,2,24,7,0,-6.8,0.9,0.036,0.62,11,123,12,4,7,-7.6,5,0,57,5,0.362,94.24,89.61,0.95,0.8,785,0.4,215,5.7
+2607,2023,2,24,7,30,-6.2,0.9,0.036,0.62,32,498,81,6,7,-7.6,46,13,86,47,0.362,90.12,84.37,0.95,0.8,786,0.4,220,6.2
+2608,2023,2,24,8,0,-5.6,0.94,0.041,0.62,47,690,178,0,7,-7.7,97,37,0,104,0.362,85.27,79.07,0.96,0.8,786,0.4,225,6.7
+2609,2023,2,24,8,30,-5,0.94,0.041,0.62,58,807,281,0,4,-7.7,140,263,0,213,0.36,81.59,73.93,0.95,0.8,787,0.4,229,6.9
+2610,2023,2,24,9,0,-4.3,0.98,0.037,0.62,65,882,381,0,7,-8.2,190,354,0,317,0.359,74.04,69.04,0.95,0.8,788,0.4,234,7.2
+2611,2023,2,24,9,30,-3.8,0.98,0.037,0.62,71,933,473,0,0,-8.2,92,854,0,460,0.356,71.31,64.49,0.95,0.8,788,0.4,235,6.9
+2612,2023,2,24,10,0,-3.4,1,0.033,0.62,76,971,556,0,0,-8.9,115,868,0,544,0.353,65.92,60.37,0.95,0.8,789,0.4,236,6.6
+2613,2023,2,24,10,30,-3.1,1,0.033,0.62,80,998,627,0,0,-8.9,80,998,0,627,0.351,64.47,56.77,0.95,0.8,789,0.4,235,6.4
+2614,2023,2,24,11,0,-2.8,1.02,0.033,0.62,84,1016,684,0,0,-9.5,84,1016,0,684,0.349,60.16,53.81,0.95,0.8,790,0.4,233,6.2
+2615,2023,2,24,11,30,-2.7,1.02,0.033,0.62,87,1027,725,0,0,-9.5,87,1027,0,725,0.347,59.72,51.61,0.95,0.8,790,0.4,231,6.2
+2616,2023,2,24,12,0,-2.5,1.04,0.034,0.62,89,1034,750,0,0,-9.8,97,1019,0,748,0.346,57.14,50.27,0.95,0.8,790,0.3,229,6.1
+2617,2023,2,24,12,30,-2.5,1.04,0.034,0.62,89,1039,759,0,0,-9.8,107,1003,7,753,0.345,57.14,49.87,0.95,0.8,790,0.3,225,6
+2618,2023,2,24,13,0,-2.4,1.06,0.033,0.62,88,1038,749,0,7,-10.3,172,864,14,722,0.345,54.61,50.43,0.95,0.8,790,0.3,221,5.9
+2619,2023,2,24,13,30,-2.2,1.06,0.033,0.62,86,1033,723,0,7,-10.3,150,900,29,705,0.344,53.74,51.91,0.95,0.8,789,0.3,217,6
+2620,2023,2,24,14,0,-2.1,1.06,0.03,0.62,81,1024,680,0,7,-10.6,169,831,29,655,0.344,52.28,54.23,0.94,0.8,789,0.3,214,6.1
+2621,2023,2,24,14,30,-2,1.06,0.03,0.62,77,1008,622,0,7,-10.6,205,691,14,578,0.344,51.89,57.3,0.94,0.8,789,0.3,213,6.1
+2622,2023,2,24,15,0,-2,1.06,0.028,0.62,72,985,550,0,7,-10.6,178,691,7,513,0.345,51.67,60.99,0.94,0.8,789,0.3,211,6.2
+2623,2023,2,24,15,30,-2.3,1.06,0.028,0.62,66,952,465,0,7,-10.6,229,425,0,407,0.347,52.89,65.19,0.94,0.8,790,0.3,210,5.8
+2624,2023,2,24,16,0,-2.6,1.07,0.027,0.62,59,905,371,0,7,-10.6,186,400,0,324,0.348,54.06,69.8,0.94,0.8,790,0.3,210,5.4
+2625,2023,2,24,16,30,-3.8,1.07,0.027,0.62,50,834,270,0,7,-10.6,150,309,0,231,0.35,59.11,74.73,0.94,0.8,790,0.3,207,4.3
+2626,2023,2,24,17,0,-4.9,1.08,0.026,0.62,40,720,166,2,6,-10.8,107,51,29,116,0.352,63.07,79.9,0.94,0.76,790,0.3,204,3.2
+2627,2023,2,24,17,30,-6.1,1.08,0.026,0.62,27,510,70,7,6,-10.8,40,3,100,40,0.352,69.09,85.21,0.94,0.76,790,0.3,200,2.6
+2628,2023,2,24,18,0,-7.3,1.08,0.024,0.62,8,90,7,3,6,-11.3,3,0,43,3,0.351,73.18,90.88,0.94,0.76,791,0.4,196,2.1
+2629,2023,2,24,18,30,-7.7,1.08,0.024,0.62,0,0,0,0,6,-11.3,0,0,0,0,0.35,75.48,96.5,0.94,0.76,791,0.4,196,2
+2630,2023,2,24,19,0,-8.2,1.08,0.024,0.62,0,0,0,0,6,-11.5,0,0,0,0,0.349,76.8,102.18,0.94,0.76,791,0.4,196,1.9
+2631,2023,2,24,19,30,-8.4,1.08,0.024,0.62,0,0,0,0,6,-11.5,0,0,0,0,0.348,78,107.88,0.94,0.76,791,0.4,197,1.9
+2632,2023,2,24,20,0,-8.7,1.07,0.025,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.347,78.52,113.54,0.94,0.76,791,0.4,198,1.8
+2633,2023,2,24,20,30,-8.9,1.07,0.025,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.347,79.76,119.13,0.94,0.76,791,0.4,200,1.7
+2634,2023,2,24,21,0,-9.1,1.06,0.026,0.62,0,0,0,0,7,-12,0,0,0,0,0.346,79.37,124.59,0.94,0.76,792,0.4,202,1.6
+2635,2023,2,24,21,30,-9.2,1.06,0.026,0.62,0,0,0,0,7,-12,0,0,0,0,0.346,80,129.84,0.94,0.76,792,0.4,203,1.5
+2636,2023,2,24,22,0,-9.3,1.05,0.026,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.345,79.09,134.78,0.94,0.76,792,0.4,204,1.5
+2637,2023,2,24,22,30,-9.3,1.05,0.026,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.345,79.09,139.28,0.94,0.76,792,0.4,204,1.4
+2638,2023,2,24,23,0,-9.3,1.04,0.027,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.345,77.99,143.14,0.94,0.76,792,0.4,204,1.4
+2639,2023,2,24,23,30,-9.4,1.04,0.027,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.345,78.61,146.15,0.94,0.76,792,0.4,202,1.4
+2640,2023,2,25,0,0,-9.5,1.04,0.026,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.344,77.67,148.04,0.94,0.76,791,0.4,201,1.4
+2641,2023,2,25,0,30,-9.6,1.04,0.026,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.344,78.28,148.61,0.94,0.76,791,0.4,198,1.4
+2642,2023,2,25,1,0,-9.8,1.03,0.025,0.62,0,0,0,0,7,-13,0,0,0,0,0.345,77.6,147.78,0.94,0.76,791,0.4,196,1.4
+2643,2023,2,25,1,30,-9.9,1.03,0.025,0.62,0,0,0,0,7,-13,0,0,0,0,0.345,78.21,145.65,0.93,0.76,791,0.5,195,1.4
+2644,2023,2,25,2,0,-10,1.02,0.023,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.345,77.29,142.46,0.93,0.76,791,0.5,194,1.4
+2645,2023,2,25,2,30,-9.9,1.02,0.023,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.345,76.69,138.45,0.93,0.76,791,0.5,193,1.4
+2646,2023,2,25,3,0,-9.8,1.01,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.346,75.42,133.85,0.93,0.76,790,0.5,193,1.4
+2647,2023,2,25,3,30,-9.8,1.01,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.345,75.42,128.84,0.93,0.76,790,0.5,192,1.4
+2648,2023,2,25,4,0,-9.7,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.345,74.48,123.54,0.93,0.76,790,0.5,191,1.4
+2649,2023,2,25,4,30,-9.6,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.346,73.9,118.04,0.92,0.76,790,0.5,192,1.3
+2650,2023,2,25,5,0,-9.5,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.346,73.3,112.43,0.92,0.76,790,0.5,193,1.3
+2651,2023,2,25,5,30,-9.4,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.346,72.73,106.74,0.93,0.76,790,0.5,196,1.3
+2652,2023,2,25,6,0,-9.2,1,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.347,72.21,101.04,0.93,0.76,791,0.5,199,1.2
+2653,2023,2,25,6,30,-8.5,1,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.347,68.36,95.36,0.92,0.76,791,0.6,201,1.2
+2654,2023,2,25,7,0,-7.7,0.99,0.021,0.62,11,152,13,0,0,-12,11,152,0,13,0.348,71.43,89.36,0.92,0.76,791,0.6,202,1.1
+2655,2023,2,25,7,30,-5.8,0.99,0.021,0.62,29,549,85,0,0,-12,29,549,0,85,0.348,61.74,84.1,0.92,0.76,791,0.6,202,1.5
+2656,2023,2,25,8,0,-3.9,0.96,0.021,0.62,40,728,182,0,0,-10,40,728,0,182,0.349,62.71,78.78,0.92,0.76,791,0.6,202,1.8
+2657,2023,2,25,8,30,-2.2,0.96,0.021,0.62,49,829,283,0,0,-10,49,829,0,283,0.349,55.26,73.63,0.92,0.76,791,0.6,205,2.4
+2658,2023,2,25,9,0,-0.6,0.92,0.023,0.62,57,893,381,0,0,-7.8,57,893,0,381,0.349,58.06,68.74,0.92,0.76,791,0.6,208,2.9
+2659,2023,2,25,9,30,0.6,0.92,0.023,0.62,64,937,472,0,0,-7.8,64,937,0,472,0.348,53.22,64.17,0.92,0.76,791,0.6,211,3.6
+2660,2023,2,25,10,0,1.8,0.89,0.024,0.62,69,968,553,0,0,-6.1,69,968,0,553,0.348,55.83,60.03,0.92,0.76,791,0.6,215,4.2
+2661,2023,2,25,10,30,2.5,0.89,0.024,0.62,73,990,621,0,0,-6.1,73,990,0,621,0.347,53.12,56.42,0.92,0.76,791,0.6,216,4.5
+2662,2023,2,25,11,0,3.2,0.88,0.025,0.62,77,1005,676,0,0,-5.2,77,1005,0,676,0.346,54.03,53.45,0.92,0.76,791,0.6,217,4.8
+2663,2023,2,25,11,30,3.7,0.88,0.025,0.62,79,1016,715,0,0,-5.2,79,1016,0,715,0.344,52.09,51.24,0.92,0.76,790,0.6,217,4.9
+2664,2023,2,25,12,0,4.1,0.87,0.025,0.62,80,1024,740,0,0,-4.7,80,1024,0,740,0.343,52.54,49.9,0.92,0.76,790,0.6,217,5
+2665,2023,2,25,12,30,4.4,0.87,0.025,0.62,81,1029,749,0,0,-4.7,94,1007,7,748,0.341,51.45,49.5,0.92,0.76,790,0.5,217,5
+2666,2023,2,25,13,0,4.7,0.89,0.024,0.62,79,1029,740,0,0,-4.5,93,1006,14,739,0.339,51.22,50.06,0.92,0.76,789,0.5,216,5
+2667,2023,2,25,13,30,4.9,0.89,0.024,0.62,77,1024,714,0,0,-4.5,77,1024,0,714,0.338,50.51,51.56,0.92,0.76,789,0.5,215,4.9
+2668,2023,2,25,14,0,5,0.92,0.023,0.62,75,1014,672,0,0,-4.5,98,970,18,670,0.336,50.41,53.9,0.92,0.76,789,0.5,215,4.7
+2669,2023,2,25,14,30,5,0.92,0.023,0.62,71,998,615,0,0,-4.5,93,956,14,614,0.335,50.35,56.99,0.92,0.76,788,0.5,213,4.5
+2670,2023,2,25,15,0,5,0.95,0.021,0.62,66,976,544,0,0,-4.3,87,928,14,541,0.333,50.86,60.7,0.92,0.76,788,0.5,211,4.3
+2671,2023,2,25,15,30,4.2,0.95,0.021,0.62,60,945,461,0,0,-4.3,60,945,0,461,0.332,53.77,64.92,0.91,0.76,788,0.5,208,3.3
+2672,2023,2,25,16,0,3.5,0.96,0.019,0.62,53,901,368,0,0,-3,53,901,0,368,0.33,62.59,69.54,0.91,0.76,788,0.5,205,2.4
+2673,2023,2,25,16,30,1.5,0.96,0.019,0.62,47,832,269,0,0,-3,47,832,0,269,0.329,72.05,74.49,0.91,0.76,787,0.5,199,2
+2674,2023,2,25,17,0,-0.6,0.97,0.019,0.62,38,722,167,0,0,-4.5,38,722,0,167,0.327,75.17,79.67,0.91,0.65,787,0.5,193,1.6
+2675,2023,2,25,17,30,-1.4,0.97,0.019,0.62,26,518,71,1,0,-4.5,30,429,18,67,0.325,79.69,85,0.91,0.65,787,0.5,187,1.6
+2676,2023,2,25,18,0,-2.3,1,0.022,0.62,7,93,7,0,0,-5.7,7,93,0,7,0.324,77.53,90.19,0.91,0.65,787,0.5,181,1.6
+2677,2023,2,25,18,30,-2.6,1,0.022,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.321,79.27,96.29,0.92,0.65,787,0.5,178,1.6
+2678,2023,2,25,19,0,-2.9,1.03,0.027,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.319,81.62,101.97,0.92,0.65,787,0.5,174,1.6
+2679,2023,2,25,19,30,-3.1,1.03,0.027,0.62,0,0,0,0,7,-5.6,0,0,0,0,0.319,82.84,107.67,0.92,0.65,787,0.5,171,1.6
+2680,2023,2,25,20,0,-3.2,1.03,0.028,0.62,0,0,0,0,7,-5.6,0,0,0,0,0.319,83.25,113.33,0.92,0.65,786,0.5,169,1.6
+2681,2023,2,25,20,30,-3.3,1.03,0.028,0.62,0,0,0,0,7,-5.6,0,0,0,0,0.32,83.87,118.91,0.92,0.65,786,0.4,167,1.6
+2682,2023,2,25,21,0,-3.4,1.03,0.027,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.321,83.31,124.36,0.92,0.65,786,0.4,166,1.6
+2683,2023,2,25,21,30,-3.4,1.03,0.027,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.321,83.31,129.6,0.93,0.65,786,0.4,165,1.6
+2684,2023,2,25,22,0,-3.3,1.02,0.029,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.321,80.74,134.52,0.93,0.65,786,0.4,164,1.5
+2685,2023,2,25,22,30,-3.1,1.02,0.029,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.321,79.44,138.99,0.93,0.65,785,0.4,162,1.5
+2686,2023,2,25,23,0,-2.9,1.03,0.031,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.32,76.92,142.83,0.93,0.65,785,0.4,159,1.5
+2687,2023,2,25,23,30,-2.8,1.03,0.031,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.32,76.25,145.82,0.93,0.65,784,0.4,157,1.5
+2688,2023,2,26,0,0,-2.8,1.03,0.033,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.321,73.68,147.68,0.93,0.65,784,0.4,156,1.5
+2689,2023,2,26,0,30,-2.8,1.03,0.033,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.322,73.58,148.24,0.94,0.65,783,0.5,160,1.6
+2690,2023,2,26,1,0,-2.9,1.03,0.035,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.323,71.7,147.41,0.94,0.65,783,0.5,164,1.7
+2691,2023,2,26,1,30,-2.8,1.03,0.035,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.326,71.08,145.29,0.94,0.65,782,0.5,168,1.9
+2692,2023,2,26,2,0,-2.7,1.03,0.037,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.329,70.01,142.11,0.94,0.65,782,0.5,173,2
+2693,2023,2,26,2,30,-2.7,1.03,0.037,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.333,69.92,138.12,0.94,0.65,781,0.5,175,2
+2694,2023,2,26,3,0,-2.7,1.03,0.04,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.338,70.8,133.54,0.94,0.65,781,0.5,178,2
+2695,2023,2,26,3,30,-2.7,1.03,0.04,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.343,70.71,128.54,0.94,0.65,780,0.5,177,1.9
+2696,2023,2,26,4,0,-2.7,1.01,0.041,0.62,0,0,0,0,0,-7.1,0,0,0,0,0.349,71.9,123.25,0.94,0.65,780,0.5,176,1.9
+2697,2023,2,26,4,30,-2.8,1.01,0.041,0.62,0,0,0,0,7,-7.1,0,0,0,0,0.355,72.34,117.77,0.94,0.65,779,0.5,172,2
+2698,2023,2,26,5,0,-2.8,0.99,0.041,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.361,73.5,112.16,0.94,0.65,779,0.5,168,2
+2699,2023,2,26,5,30,-2.9,0.99,0.041,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.368,74.05,106.47,0.94,0.65,779,0.6,166,2
+2700,2023,2,26,6,0,-3,0.98,0.039,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.375,75.36,100.77,0.93,0.65,778,0.6,164,2
+2701,2023,2,26,6,30,-2.4,0.98,0.039,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.383,72.08,95.09,0.94,0.65,778,0.6,165,2.1
+2702,2023,2,26,7,0,-1.8,0.97,0.037,0.62,12,133,14,5,7,-5.8,6,0,71,6,0.39,73.91,89.13,0.94,0.65,777,0.6,166,2.1
+2703,2023,2,26,7,30,-0.4,0.97,0.037,0.62,32,510,87,6,7,-5.8,47,8,86,48,0.395,66.72,83.83,0.94,0.65,777,0.6,170,2.3
+2704,2023,2,26,8,0,1,0.96,0.036,0.62,45,693,183,0,7,-4.2,117,35,0,124,0.399,68.08,78.49,0.94,0.65,777,0.7,173,2.6
+2705,2023,2,26,8,30,1.6,0.96,0.036,0.62,54,798,283,0,7,-4.2,177,109,0,208,0.402,65.22,73.33,0.94,0.65,777,0.7,179,2.8
+2706,2023,2,26,9,0,2.2,0.96,0.034,0.62,61,868,380,4,8,-3.7,109,114,57,151,0.405,65.01,68.42,0.95,0.65,777,0.7,184,3.1
+2707,2023,2,26,9,30,2.5,0.96,0.034,0.62,67,912,469,4,8,-3.7,73,1,64,73,0.406,63.64,63.85,0.95,0.65,777,0.8,189,3.9
+2708,2023,2,26,10,0,2.8,0.95,0.032,0.62,71,946,548,0,6,-2.6,206,22,0,217,0.407,67.84,59.69,0.95,0.65,776,0.8,194,4.8
+2709,2023,2,26,10,30,2.8,0.95,0.032,0.62,76,967,616,0,6,-2.6,237,71,0,277,0.409,67.84,56.07,0.95,0.65,776,0.8,198,5.4
+2710,2023,2,26,11,0,2.8,0.9,0.035,0.62,80,979,668,0,7,-1.6,338,79,0,385,0.41,72.92,53.08,0.95,0.65,776,0.9,201,5.9
+2711,2023,2,26,11,30,2.9,0.9,0.035,0.62,83,991,708,0,7,-1.6,381,256,0,543,0.409,72.4,50.87,0.95,0.65,776,0.8,208,6.1
+2712,2023,2,26,12,0,2.9,0.9,0.035,0.62,84,998,732,0,7,-1.2,337,279,0,518,0.408,74.26,49.52,0.95,0.65,776,0.8,215,6.3
+2713,2023,2,26,12,30,3.3,0.9,0.035,0.62,82,1007,741,0,8,-1.2,221,54,0,256,0.397,72.19,49.13,0.95,0.65,776,0.8,222,6.3
+2714,2023,2,26,13,0,3.7,0.91,0.027,0.62,78,1014,734,0,8,-1.5,318,32,0,339,0.386,68.68,49.7,0.94,0.65,775,0.7,229,6.3
+2715,2023,2,26,13,30,4,0.91,0.027,0.62,76,1016,712,0,8,-1.5,249,582,0,614,0.365,67.25,51.21,0.93,0.65,775,0.6,232,6.2
+2716,2023,2,26,14,0,4.3,0.9,0.021,0.62,71,1014,673,0,0,-2.5,71,1014,0,673,0.344,61.09,53.57,0.92,0.65,775,0.6,236,6.1
+2717,2023,2,26,14,30,4.1,0.9,0.021,0.62,68,1002,618,0,0,-2.5,68,1002,0,618,0.328,62.03,56.68,0.92,0.65,776,0.5,233,6.1
+2718,2023,2,26,15,0,3.9,0.92,0.021,0.62,64,981,548,0,8,-3.8,164,692,7,506,0.312,57.22,60.41,0.92,0.65,776,0.5,231,6
+2719,2023,2,26,15,30,3.3,0.92,0.021,0.62,61,946,466,0,0,-3.8,95,829,7,450,0.305,59.69,64.65,0.93,0.65,776,0.5,229,5.9
+2720,2023,2,26,16,0,2.7,0.96,0.025,0.62,56,896,373,0,0,-4.5,56,896,0,373,0.299,59.25,69.29,0.94,0.65,777,0.5,227,5.7
+2721,2023,2,26,16,30,1.1,0.96,0.025,0.62,49,824,273,0,0,-4.5,49,824,0,273,0.296,66.42,74.24,0.94,0.65,777,0.5,226,4.9
+2722,2023,2,26,17,0,-0.4,1,0.028,0.62,41,707,171,0,0,-4.9,41,707,0,171,0.292,71.86,79.44,0.94,0.73,778,0.5,225,4.1
+2723,2023,2,26,17,30,-1.4,1,0.028,0.62,29,507,75,3,0,-4.9,36,310,46,64,0.291,77.31,84.78,0.94,0.73,778,0.5,225,4.2
+2724,2023,2,26,18,0,-2.5,1.01,0.027,0.62,8,92,8,3,7,-5.7,3,0,43,3,0.289,78.75,90.01,0.94,0.73,779,0.5,226,4.2
+2725,2023,2,26,18,30,-3,1.01,0.027,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.288,81.73,96.08,0.94,0.73,779,0.5,226,4.3
+2726,2023,2,26,19,0,-3.5,1,0.023,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.287,80.51,101.77,0.94,0.73,779,0.5,226,4.5
+2727,2023,2,26,19,30,-4,1,0.023,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.287,83.68,107.46,0.93,0.73,780,0.5,223,4.5
+2728,2023,2,26,20,0,-4.4,1.01,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.286,82.01,113.12,0.93,0.73,780,0.5,221,4.5
+2729,2023,2,26,20,30,-4.7,1.01,0.02,0.62,0,0,0,0,4,-7,0,0,0,0,0.286,83.88,118.7,0.93,0.73,780,0.5,218,4.5
+2730,2023,2,26,21,0,-5.1,1.03,0.018,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.287,82.98,124.13,0.92,0.73,781,0.5,216,4.6
+2731,2023,2,26,21,30,-5.2,1.03,0.018,0.62,0,0,0,0,4,-7.5,0,0,0,0,0.287,83.61,129.35,0.92,0.73,781,0.5,215,4.7
+2732,2023,2,26,22,0,-5.4,1.06,0.017,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.287,81.29,134.26,0.92,0.73,781,0.5,214,4.7
+2733,2023,2,26,22,30,-5.4,1.06,0.017,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.287,81.29,138.71,0.93,0.73,781,0.5,212,4.8
+2734,2023,2,26,23,0,-5.5,1.05,0.019,0.62,0,0,0,0,8,-8.6,0,0,0,0,0.287,78.86,142.52,0.93,0.73,781,0.5,210,4.8
+2735,2023,2,26,23,30,-5.4,1.05,0.019,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.287,78.36,145.48,0.94,0.73,782,0.6,210,4.9
+2736,2023,2,27,0,0,-5.2,1.03,0.024,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.287,75.86,147.32,0.94,0.73,782,0.6,209,5
+2737,2023,2,27,0,30,-5,1.03,0.024,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.287,74.72,147.86,0.94,0.73,782,0.6,207,5
+2738,2023,2,27,1,0,-4.8,1.03,0.028,0.62,0,0,0,0,4,-8.5,0,0,0,0,0.287,75.04,147.03,0.95,0.73,782,0.6,206,5.1
+2739,2023,2,27,1,30,-4.8,1.03,0.028,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.287,75.04,144.93,0.95,0.73,782,0.6,204,5.1
+2740,2023,2,27,2,0,-4.8,1.04,0.03,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.288,77.89,141.77,0.95,0.73,782,0.6,203,5.2
+2741,2023,2,27,2,30,-4.9,1.04,0.03,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.288,78.48,137.79,0.95,0.73,782,0.6,202,5.1
+2742,2023,2,27,3,0,-5,1.05,0.032,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.288,81.3,133.23,0.95,0.73,782,0.6,200,5.1
+2743,2023,2,27,3,30,-5.1,1.05,0.032,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.288,81.91,128.24,0.95,0.73,782,0.6,199,5
+2744,2023,2,27,4,0,-5.2,1.06,0.032,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.288,84.01,122.97,0.95,0.73,782,0.6,198,4.9
+2745,2023,2,27,4,30,-5.3,1.06,0.032,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.288,84.65,117.49,0.95,0.73,782,0.6,198,4.8
+2746,2023,2,27,5,0,-5.4,1.07,0.033,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.288,86.53,111.88,0.95,0.73,783,0.6,197,4.8
+2747,2023,2,27,5,30,-5.4,1.07,0.033,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.288,86.53,106.2,0.95,0.73,783,0.6,198,4.8
+2748,2023,2,27,6,0,-5.5,1.08,0.036,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.288,87.67,100.5,0.95,0.73,783,0.6,199,4.8
+2749,2023,2,27,6,30,-5.3,1.08,0.036,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.287,86.35,94.81,0.95,0.73,783,0.6,198,5
+2750,2023,2,27,7,0,-5.1,1.09,0.038,0.62,15,176,18,5,7,-7.1,10,0,71,10,0.287,85.8,88.87,0.95,0.73,783,0.6,198,5.2
+2751,2023,2,27,7,30,-4.6,1.09,0.038,0.62,34,531,94,5,7,-7.1,56,26,71,59,0.287,82.62,83.54,0.96,0.73,783,0.5,201,5.8
+2752,2023,2,27,8,0,-4.2,1.1,0.042,0.62,48,707,193,0,7,-7,92,78,7,108,0.287,80.71,78.2,0.96,0.73,783,0.5,203,6.5
+2753,2023,2,27,8,30,-3.7,1.1,0.042,0.62,59,816,297,5,8,-7,69,19,68,75,0.288,77.74,73.03,0.96,0.73,783,0.5,206,6.9
+2754,2023,2,27,9,0,-3.2,1.11,0.04,0.62,66,885,396,1,4,-7.2,219,41,11,234,0.289,74.13,68.11,0.95,0.73,783,0.5,209,7.3
+2755,2023,2,27,9,30,-2.8,1.11,0.04,0.62,73,933,489,0,4,-7.2,176,5,0,178,0.289,71.95,63.52,0.95,0.73,783,0.5,210,7.5
+2756,2023,2,27,10,0,-2.3,1.11,0.035,0.62,76,969,570,0,4,-7.5,193,46,0,216,0.29,67.55,59.35,0.95,0.73,783,0.5,210,7.7
+2757,2023,2,27,10,30,-1.9,1.11,0.035,0.62,81,993,640,0,4,-7.5,257,52,0,286,0.29,65.59,55.71,0.95,0.73,783,0.5,211,7.9
+2758,2023,2,27,11,0,-1.4,1.13,0.033,0.62,82,1010,694,0,4,-7.7,263,12,0,270,0.29,62.19,52.72,0.94,0.73,783,0.5,212,8.1
+2759,2023,2,27,11,30,-0.9,1.13,0.033,0.62,84,1021,734,0,4,-7.7,367,21,0,380,0.29,59.96,50.49,0.94,0.73,783,0.5,212,8.1
+2760,2023,2,27,12,0,-0.5,1.14,0.032,0.62,85,1027,757,0,4,-7.8,361,237,4,516,0.29,57.75,49.15,0.94,0.73,782,0.5,213,8.2
+2761,2023,2,27,12,30,-0.1,1.14,0.032,0.62,86,1029,764,0,0,-7.8,156,903,14,751,0.291,56.1,48.75,0.94,0.73,782,0.5,214,8.1
+2762,2023,2,27,13,0,0.2,1.13,0.032,0.62,85,1028,755,0,4,-7.8,376,388,4,629,0.291,55.02,49.33,0.94,0.73,782,0.5,214,8.1
+2763,2023,2,27,13,30,0.2,1.13,0.032,0.62,83,1023,729,0,4,-7.8,410,33,0,431,0.291,54.95,50.86,0.94,0.73,781,0.5,215,8.1
+2764,2023,2,27,14,0,0.2,1.15,0.03,0.62,80,1013,686,0,4,-7.9,389,48,0,418,0.292,54.49,53.24,0.94,0.73,781,0.5,216,8
+2765,2023,2,27,14,30,0.1,1.15,0.03,0.62,76,996,628,0,4,-7.9,333,248,14,470,0.293,54.88,56.37,0.94,0.73,781,0.5,216,7.9
+2766,2023,2,27,15,0,0,1.15,0.031,0.62,73,972,557,0,4,-8,270,401,0,470,0.294,54.73,60.12,0.94,0.73,781,0.5,217,7.7
+2767,2023,2,27,15,30,-0.4,1.15,0.031,0.62,68,935,472,0,0,-8,110,799,0,456,0.296,56.34,64.37,0.94,0.73,781,0.5,216,7.3
+2768,2023,2,27,16,0,-0.8,1.17,0.034,0.62,62,884,378,0,0,-8,62,884,0,378,0.298,58.09,69.03,0.95,0.73,781,0.5,215,6.8
+2769,2023,2,27,16,30,-1.5,1.17,0.034,0.62,55,807,277,0,0,-8,64,764,0,275,0.299,61.14,74,0.95,0.73,781,0.5,213,6
+2770,2023,2,27,17,0,-2.3,1.17,0.041,0.62,46,685,174,1,0,-7.9,59,555,18,163,0.301,65.65,79.21,0.95,0.73,781,0.5,211,5.1
+2771,2023,2,27,17,30,-2.7,1.17,0.041,0.62,32,473,77,6,7,-7.9,36,40,89,40,0.303,67.62,84.57,0.96,0.73,781,0.5,208,4.8
+2772,2023,2,27,18,0,-3.2,1.15,0.047,0.62,9,92,9,4,7,-7.6,6,11,54,6,0.304,71.71,89.82,0.96,0.73,781,0.5,205,4.5
+2773,2023,2,27,18,30,-3.4,1.15,0.047,0.62,0,0,0,0,4,-7.6,0,0,0,0,0.306,72.78,95.87,0.96,0.73,781,0.5,202,4.5
+2774,2023,2,27,19,0,-3.5,1.11,0.053,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.308,75.71,101.56,0.96,0.73,781,0.5,198,4.5
+2775,2023,2,27,19,30,-3.7,1.11,0.053,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.311,76.75,107.25,0.96,0.73,780,0.5,194,4.5
+2776,2023,2,27,20,0,-3.8,1.06,0.057,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.313,79.52,112.91,0.96,0.73,780,0.6,190,4.6
+2777,2023,2,27,20,30,-3.8,1.06,0.057,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.316,79.42,118.48,0.96,0.73,779,0.6,188,4.7
+2778,2023,2,27,21,0,-3.8,1.01,0.057,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.319,81.8,123.9,0.96,0.73,779,0.6,185,4.9
+2779,2023,2,27,21,30,-3.8,1.01,0.057,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.323,81.69,129.11,0.96,0.73,778,0.6,185,5.2
+2780,2023,2,27,22,0,-3.8,0.99,0.051,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.327,83.79,133.99,0.96,0.73,778,0.6,184,5.5
+2781,2023,2,27,22,30,-3.8,0.99,0.051,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.331,83.79,138.42,0.96,0.73,778,0.6,185,5.9
+2782,2023,2,27,23,0,-3.7,1,0.047,0.62,0,0,0,0,7,-6,0,0,0,0,0.335,84.19,142.21,0.96,0.73,777,0.6,187,6.2
+2783,2023,2,27,23,30,-3.7,1,0.047,0.62,0,0,0,0,7,-6,0,0,0,0,0.338,84.19,145.13,0.95,0.73,777,0.6,191,6.6
+2784,2023,2,28,0,0,-3.6,1.02,0.044,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.341,83.8,146.96,0.95,0.73,777,0.6,195,7
+2785,2023,2,28,0,30,-3.6,1.02,0.044,0.62,0,0,0,0,7,-6,0,0,0,0,0.343,83.69,147.48,0.95,0.73,776,0.6,200,7.1
+2786,2023,2,28,1,0,-3.6,1.04,0.04,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.345,83.91,146.65,0.95,0.73,776,0.6,205,7.1
+2787,2023,2,28,1,30,-3.7,1.04,0.04,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.347,84.54,144.56,0.95,0.73,776,0.6,209,6.8
+2788,2023,2,28,2,0,-3.9,1.04,0.042,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.348,87.03,141.41,0.95,0.73,776,0.6,212,6.5
+2789,2023,2,28,2,30,-4.1,1.04,0.042,0.62,0,0,0,0,6,-5.8,0,0,0,0,0.349,88.23,137.46,0.96,0.73,775,0.6,213,6.2
+2790,2023,2,28,3,0,-4.2,1.03,0.047,0.62,0,0,0,0,9,-5.6,0,0,0,0,0.351,90.14,132.91,0.96,0.73,775,0.6,214,5.9
+2791,2023,2,28,3,30,-4.2,1.03,0.047,0.62,0,0,0,0,9,-5.6,0,0,0,0,0.353,90.14,127.94,0.96,0.73,775,0.5,213,6
+2792,2023,2,28,4,0,-4.2,1.02,0.042,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.355,91.42,122.67,0.96,0.73,775,0.5,212,6.2
+2793,2023,2,28,4,30,-4.2,1.02,0.042,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.356,91.42,117.2,0.95,0.73,775,0.5,210,6.4
+2794,2023,2,28,5,0,-4.2,1.04,0.032,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.357,91.34,111.6,0.95,0.73,775,0.5,209,6.6
+2795,2023,2,28,5,30,-4.3,1.04,0.032,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.356,92.03,105.93,0.95,0.73,775,0.5,209,6.8
+2796,2023,2,28,6,0,-4.4,1.02,0.031,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.356,90.54,100.22,0.95,0.73,774,0.5,209,7.1
+2797,2023,2,28,6,30,-4.3,1.02,0.031,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.356,89.98,94.53,0.95,0.73,775,0.5,217,7.4
+2798,2023,2,28,7,0,-4.1,0.98,0.041,0.62,16,178,20,5,8,-5.9,5,0,71,5,0.357,87.1,88.61,0.96,0.73,775,0.5,224,7.7
+2799,2023,2,28,7,30,-4,0.98,0.041,0.62,35,543,99,5,7,-5.9,38,3,71,38,0.358,86.56,83.26,0.95,0.73,776,0.4,240,7.9
+2800,2023,2,28,8,0,-4,0.99,0.038,0.62,48,727,200,0,7,-8.1,77,7,0,78,0.359,72.96,77.91,0.95,0.73,777,0.4,257,8.2
+2801,2023,2,28,8,30,-3.9,0.99,0.038,0.62,55,851,308,0,7,-8.1,132,15,0,136,0.359,72.42,72.72,0.94,0.73,777,0.3,262,7.9
+2802,2023,2,28,9,0,-3.9,1.02,0.023,0.62,59,935,412,0,7,-13.4,217,179,0,285,0.36,47.8,67.79,0.92,0.73,778,0.3,267,7.5
+2803,2023,2,28,9,30,-3.2,1.02,0.023,0.62,62,992,509,0,0,-13.4,70,969,0,507,0.359,45.37,63.19,0.92,0.73,778,0.2,261,7.9
+2804,2023,2,28,10,0,-2.5,1.02,0.016,0.62,64,1030,594,0,0,-15.7,181,686,0,534,0.359,35.6,59.01,0.91,0.73,778,0.2,256,8.3
+2805,2023,2,28,10,30,-2,1.02,0.016,0.62,68,1049,664,0,0,-15.7,175,784,0,621,0.358,34.35,55.35,0.92,0.73,779,0.2,255,8.7
+2806,2023,2,28,11,0,-1.6,0.97,0.019,0.62,72,1061,720,0,0,-15.8,72,1061,0,720,0.357,32.99,52.35,0.93,0.73,779,0.2,253,9.2
+2807,2023,2,28,11,30,-1.6,0.97,0.019,0.62,76,1069,761,0,0,-15.8,76,1069,0,761,0.356,32.99,50.12,0.93,0.73,779,0.2,252,9.1
+2808,2023,2,28,12,0,-1.6,0.95,0.021,0.62,78,1072,785,0,0,-15.6,78,1072,0,785,0.355,33.53,48.77,0.94,0.73,779,0.2,251,9.1
+2809,2023,2,28,12,30,-1.5,0.95,0.021,0.62,79,1071,790,0,0,-15.6,79,1071,0,790,0.355,33.29,48.37,0.94,0.73,779,0.2,250,9.1
+2810,2023,2,28,13,0,-1.5,0.98,0.023,0.62,79,1066,779,0,0,-15.6,79,1066,0,779,0.354,33.17,48.97,0.94,0.73,779,0.2,249,9
+2811,2023,2,28,13,30,-1.6,0.98,0.023,0.62,77,1060,751,0,0,-15.6,77,1060,0,751,0.355,33.42,50.51,0.94,0.73,779,0.2,250,8.9
+2812,2023,2,28,14,0,-1.7,1.01,0.023,0.62,75,1046,706,0,0,-15.7,75,1046,0,706,0.355,33.47,52.91,0.93,0.73,779,0.3,251,8.9
+2813,2023,2,28,14,30,-2,1.01,0.023,0.62,71,1031,647,0,0,-15.7,71,1031,0,647,0.355,34.22,56.05,0.93,0.73,779,0.3,253,8.7
+2814,2023,2,28,15,0,-2.3,1.02,0.022,0.62,66,1010,574,0,0,-15.7,72,996,0,573,0.355,35.03,59.82,0.93,0.73,779,0.3,254,8.5
+2815,2023,2,28,15,30,-2.7,1.02,0.022,0.62,61,986,492,0,0,-15.7,61,986,0,492,0.355,36.13,64.1,0.93,0.73,780,0.2,256,8
+2816,2023,2,28,16,0,-3.1,1.04,0.019,0.62,54,947,397,0,0,-15.8,54,947,0,397,0.355,36.97,68.77,0.92,0.73,780,0.2,257,7.4
+2817,2023,2,28,16,30,-4.1,1.04,0.019,0.62,46,886,294,0,0,-15.8,57,837,7,291,0.356,39.84,73.76,0.92,0.73,780,0.2,256,6.1
+2818,2023,2,28,17,0,-5,1.08,0.016,0.62,37,789,188,0,0,-15.9,37,789,0,188,0.357,42.34,78.98,0.91,0.8,780,0.2,255,4.8
+2819,2023,2,28,17,30,-6.2,1.08,0.016,0.62,27,611,87,0,0,-15.8,27,611,0,87,0.358,46.44,84.35,0.91,0.8,781,0.2,249,3.5
+2820,2023,2,28,18,0,-7.4,1.09,0.015,0.62,12,176,13,0,0,-14.6,12,176,0,13,0.36,56.46,89.62,0.91,0.8,781,0.2,243,2.3
+2821,2023,2,28,18,30,-7.8,1.09,0.015,0.62,0,0,0,0,7,-14.6,0,0,0,0,0.36,58.23,95.67,0.91,0.8,781,0.2,237,1.9
+2822,2023,2,28,19,0,-8.3,1.11,0.015,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.361,64.83,101.35,0.91,0.8,781,0.2,231,1.6
+2823,2023,2,28,19,30,-8.6,1.11,0.015,0.62,0,0,0,0,7,-13.7,0,0,0,0,0.361,66.36,107.04,0.91,0.8,781,0.2,224,1.4
+2824,2023,2,28,20,0,-8.9,1.15,0.014,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.361,68.82,112.69,0.91,0.8,781,0.2,217,1.3
+2825,2023,2,28,20,30,-9.1,1.15,0.014,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.361,69.91,118.26,0.91,0.8,781,0.2,205,1.2
+2826,2023,2,28,21,0,-9.4,1.18,0.014,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.361,70.32,123.67,0.92,0.8,781,0.2,194,1.2
+2827,2023,2,28,21,30,-9.6,1.18,0.014,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.36,71.44,128.86,0.92,0.8,781,0.3,183,1.3
+2828,2023,2,28,22,0,-9.9,1.2,0.016,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.359,71.27,133.73,0.92,0.8,781,0.3,172,1.4
+2829,2023,2,28,22,30,-10.2,1.2,0.016,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.358,72.88,138.13,0.93,0.8,780,0.3,166,1.6
+2830,2023,2,28,23,0,-10.4,1.22,0.018,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.357,72.27,141.89,0.93,0.8,780,0.3,161,1.7
+2831,2023,2,28,23,30,-10.6,1.22,0.018,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.356,73.43,144.79,0.93,0.8,780,0.3,160,1.9
+2832,2023,3,1,0,0,-10.8,1.22,0.02,0.62,0,0,0,0,6,-14.6,0,0,0,0,0.355,73.31,146.59,0.93,0.8,780,0.3,159,2
+2833,2023,3,1,0,30,-10.8,1.22,0.02,0.62,0,0,0,0,6,-14.7,0,0,14,0,0.355,73.22,147.1,0.94,0.8,779,0.3,161,2.1
+2834,2023,3,1,1,0,-10.9,1.19,0.023,0.62,0,0,0,0,6,-14.7,0,0,14,0,0.354,73.52,146.27,0.94,0.8,779,0.4,162,2.1
+2835,2023,3,1,1,30,-10.9,1.19,0.023,0.62,0,0,0,0,7,-14.7,0,0,0,0,0.354,73.52,144.19,0.94,0.8,779,0.4,162,2.1
+2836,2023,3,1,2,0,-10.9,1.15,0.027,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.354,75.36,141.06,0.95,0.8,779,0.4,162,2
+2837,2023,3,1,2,30,-10.7,1.15,0.027,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.354,74.18,137.12,0.95,0.8,779,0.4,158,1.9
+2838,2023,3,1,3,0,-10.6,1.14,0.032,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.355,77.58,132.59,0.95,0.8,778,0.5,155,1.8
+2839,2023,3,1,3,30,-10.4,1.14,0.032,0.62,0,0,0,0,7,-13.8,0,0,0,0,0.355,76.36,127.64,0.96,0.8,778,0.5,147,1.7
+2840,2023,3,1,4,0,-10.2,1.13,0.036,0.62,0,0,0,0,7,-13,0,0,0,0,0.356,79.98,122.38,0.96,0.8,778,0.5,140,1.6
+2841,2023,3,1,4,30,-10,1.13,0.036,0.62,0,0,0,0,7,-13,0,0,0,0,0.357,78.63,116.91,0.96,0.8,777,0.5,131,1.6
+2842,2023,3,1,5,0,-9.8,1.1,0.04,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.357,81.87,111.32,0.96,0.8,777,0.5,122,1.6
+2843,2023,3,1,5,30,-9.5,1.1,0.04,0.62,0,0,0,0,6,-12.3,0,0,0,0,0.358,79.96,105.65,0.96,0.8,777,0.5,113,1.8
+2844,2023,3,1,6,0,-9.3,1.08,0.042,0.62,0,0,0,0,7,-11.7,0,0,0,0,0.358,82.45,99.94,0.97,0.8,777,0.5,105,1.9
+2845,2023,3,1,6,30,-9,1.08,0.042,0.62,0,0,0,0,7,-11.7,0,0,0,0,0.358,80.53,94.25,0.97,0.8,777,0.5,96,2.3
+2846,2023,3,1,7,0,-8.6,1.08,0.043,0.62,17,187,22,5,7,-11.3,12,0,71,12,0.359,81.1,88.34,0.97,0.8,776,0.6,88,2.7
+2847,2023,3,1,7,30,-8.2,1.08,0.043,0.62,37,535,102,5,7,-11.3,53,3,71,53,0.36,78.61,82.97,0.97,0.8,776,0.6,85,2.8
+2848,2023,3,1,8,0,-7.8,1.08,0.048,0.62,52,701,202,0,7,-10.5,123,20,0,127,0.361,80.7,77.61,0.97,0.8,776,0.6,82,2.9
+2849,2023,3,1,8,30,-7,1.08,0.048,0.62,63,798,304,0,7,-10.5,174,23,0,181,0.363,75.87,72.42,0.97,0.8,776,0.6,91,2.7
+2850,2023,3,1,9,0,-6.2,1.09,0.053,0.62,74,861,404,0,6,-8.9,204,18,0,211,0.365,80.96,67.47,0.97,0.8,776,0.6,101,2.5
+2851,2023,3,1,9,30,-5.2,1.09,0.053,0.62,81,907,495,0,6,-8.9,222,8,0,226,0.368,75.03,62.86,0.97,0.8,776,0.6,120,2.4
+2852,2023,3,1,10,0,-4.1,1.09,0.053,0.62,88,938,576,0,6,-7.4,309,44,0,332,0.37,77.98,58.66,0.97,0.8,776,0.6,138,2.4
+2853,2023,3,1,10,30,-3.4,1.09,0.053,0.62,94,961,645,0,7,-7.4,393,125,0,465,0.373,74,54.99,0.97,0.8,776,0.6,152,2.3
+2854,2023,3,1,11,0,-2.7,1.1,0.054,0.62,98,978,700,0,7,-6.7,425,150,0,517,0.375,74.07,51.98,0.97,0.8,776,0.6,166,2.2
+2855,2023,3,1,11,30,-2.4,1.1,0.054,0.62,100,988,739,0,6,-6.7,416,56,0,452,0.378,72.44,49.74,0.97,0.8,776,0.6,178,2.2
+2856,2023,3,1,12,0,-2.1,1.11,0.055,0.62,102,993,762,0,6,-6.4,431,16,0,442,0.382,72.58,48.38,0.97,0.8,776,0.6,191,2.2
+2857,2023,3,1,12,30,-1.9,1.11,0.055,0.62,104,994,769,0,6,-6.4,451,24,0,467,0.385,71.52,48,0.97,0.8,776,0.6,200,2.3
+2858,2023,3,1,13,0,-1.8,1.1,0.056,0.62,103,990,758,0,6,-6.1,461,40,0,487,0.389,72.48,48.6,0.97,0.8,776,0.6,209,2.4
+2859,2023,3,1,13,30,-1.7,1.1,0.056,0.62,101,983,731,0,6,-6.1,438,62,0,478,0.392,71.95,50.15,0.97,0.8,776,0.6,218,2.5
+2860,2023,3,1,14,0,-1.5,1.11,0.056,0.62,98,971,688,0,6,-5.9,406,83,0,456,0.395,72.13,52.57,0.97,0.8,776,0.6,227,2.6
+2861,2023,3,1,14,30,-1.5,1.11,0.056,0.62,93,954,630,0,6,-5.9,309,20,0,320,0.398,72.13,55.74,0.97,0.8,776,0.6,234,2.6
+2862,2023,3,1,15,0,-1.4,1.12,0.054,0.62,87,929,558,0,7,-5.7,284,31,0,300,0.4,72.59,59.53,0.97,0.8,777,0.6,241,2.7
+2863,2023,3,1,15,30,-1.6,1.12,0.054,0.62,79,895,474,0,7,-5.7,287,61,0,314,0.403,73.66,63.83,0.97,0.8,777,0.6,246,2.5
+2864,2023,3,1,16,0,-1.8,1.13,0.05,0.62,69,848,380,0,7,-5.5,203,40,0,218,0.405,75.75,68.52,0.97,0.8,777,0.6,251,2.3
+2865,2023,3,1,16,30,-2.4,1.13,0.05,0.62,59,778,280,0,0,-5.5,89,321,0,180,0.407,79.28,73.52,0.97,0.8,778,0.6,255,1.6
+2866,2023,3,1,17,0,-3,1.17,0.046,0.62,48,668,178,0,0,-5.2,48,668,11,178,0.41,84.53,78.75,0.97,0.78,778,0.6,259,1
+2867,2023,3,1,17,30,-3.4,1.17,0.046,0.62,31,485,81,0,0,-5.2,32,468,4,80,0.412,87.2,84.13,0.97,0.78,779,0.6,265,0.8
+2868,2023,3,1,18,0,-3.8,1.21,0.039,0.62,11,126,12,0,0,-5.9,11,126,0,12,0.414,85.14,89.44,0.97,0.78,779,0.6,272,0.7
+2869,2023,3,1,18,30,-3.9,1.21,0.039,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.416,85.89,95.46,0.96,0.78,780,0.6,280,0.7
+2870,2023,3,1,19,0,-3.9,1.25,0.033,0.62,0,0,0,0,8,-6.4,0,0,0,0,0.417,83.05,101.14,0.96,0.78,780,0.5,288,0.6
+2871,2023,3,1,19,30,-4.1,1.25,0.033,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.417,84.31,106.83,0.96,0.78,780,0.5,299,0.4
+2872,2023,3,1,20,0,-4.2,1.26,0.029,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.417,83.98,112.48,0.96,0.78,780,0.5,310,0.3
+2873,2023,3,1,20,30,-4.5,1.26,0.029,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.417,86.01,118.04,0.96,0.78,781,0.5,185,0.2
+2874,2023,3,1,21,0,-4.9,1.27,0.027,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.417,88.01,123.44,0.96,0.78,781,0.5,60,0.2
+2875,2023,3,1,21,30,-5.4,1.27,0.027,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.417,91.41,128.62,0.96,0.78,781,0.5,75,0.2
+2876,2023,3,1,22,0,-5.9,1.27,0.025,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.417,94.41,133.46,0.95,0.78,781,0.5,89,0.3
+2877,2023,3,1,22,30,-6.3,1.27,0.025,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.418,97.34,137.84,0.95,0.78,781,0.5,81,0.4
+2878,2023,3,1,23,0,-6.8,1.25,0.025,0.62,0,0,0,0,0,-6.8,0,0,0,0,0.418,100,141.57,0.95,0.78,781,0.5,72,0.5
+2879,2023,3,1,23,30,-7.2,1.25,0.025,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.419,100,144.45,0.96,0.78,781,0.5,64,0.6
+2880,2023,3,2,0,0,-7.6,1.22,0.026,0.62,0,0,0,0,4,-7.6,0,0,0,0,0.42,100,146.22,0.96,0.78,781,0.4,55,0.7
+2881,2023,3,2,0,30,-8,1.22,0.026,0.62,0,0,0,0,4,-8,0,0,0,0,0.419,100,146.72,0.96,0.78,781,0.4,53,0.8
+2882,2023,3,2,1,0,-8.3,1.16,0.027,0.62,0,0,0,0,4,-8.3,0,0,0,0,0.419,100,145.89,0.96,0.78,781,0.4,51,0.9
+2883,2023,3,2,1,30,-8.6,1.16,0.027,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.416,100,143.81,0.96,0.78,781,0.4,48,0.9
+2884,2023,3,2,2,0,-8.8,1.1,0.028,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.413,100,140.7,0.95,0.78,781,0.4,45,0.9
+2885,2023,3,2,2,30,-9.1,1.1,0.028,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.409,100,136.78,0.95,0.78,781,0.4,41,1
+2886,2023,3,2,3,0,-9.4,1.07,0.028,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.404,100,132.27,0.95,0.78,781,0.4,37,1
+2887,2023,3,2,3,30,-9.6,1.07,0.028,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.399,100,127.33,0.95,0.78,781,0.4,32,1.2
+2888,2023,3,2,4,0,-9.9,1.07,0.027,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.393,100,122.08,0.95,0.78,781,0.4,27,1.3
+2889,2023,3,2,4,30,-10.1,1.07,0.027,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.387,100,116.62,0.95,0.78,781,0.4,21,1.6
+2890,2023,3,2,5,0,-10.3,1.09,0.026,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.381,100,111.03,0.95,0.78,781,0.4,14,1.8
+2891,2023,3,2,5,30,-10.5,1.09,0.026,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.377,100,105.36,0.95,0.78,781,0.4,9,2.2
+2892,2023,3,2,6,0,-10.7,1.11,0.025,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.373,99.52,99.66,0.94,0.78,781,0.4,4,2.6
+2893,2023,3,2,6,30,-10.1,1.11,0.025,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.37,95.02,93.97,0.95,0.78,782,0.4,4,3
+2894,2023,3,2,7,0,-9.5,1.14,0.026,0.62,19,279,28,0,0,-10.7,19,279,0,28,0.368,90.79,88.07,0.95,0.78,782,0.4,5,3.5
+2895,2023,3,2,7,30,-8.1,1.14,0.026,0.62,34,626,114,0,0,-10.7,34,626,0,114,0.366,81.38,82.68,0.94,0.78,782,0.3,4,3.8
+2896,2023,3,2,8,0,-6.8,1.17,0.025,0.62,44,786,217,0,0,-9.7,44,786,0,217,0.363,79.87,77.31,0.94,0.78,783,0.3,3,4.1
+2897,2023,3,2,8,30,-5.4,1.17,0.025,0.62,53,880,323,0,0,-9.7,53,880,0,323,0.36,71.77,72.1,0.94,0.78,783,0.3,179,4.2
+2898,2023,3,2,9,0,-4,1.17,0.022,0.62,59,942,425,0,0,-9.5,85,799,0,395,0.356,65.34,67.15,0.94,0.78,783,0.3,355,4.4
+2899,2023,3,2,9,30,-3.1,1.17,0.022,0.62,64,984,518,0,0,-9.5,141,704,0,466,0.353,61.09,62.52,0.93,0.78,783,0.3,350,4.2
+2900,2023,3,2,10,0,-2.1,1.16,0.019,0.62,67,1015,600,0,0,-10.1,67,1015,14,600,0.349,54.47,58.31,0.93,0.78,783,0.3,345,4
+2901,2023,3,2,10,30,-1.4,1.16,0.019,0.62,69,1037,669,0,0,-10.1,69,1037,0,669,0.347,51.73,54.63,0.92,0.78,783,0.3,340,4
+2902,2023,3,2,11,0,-0.7,1.16,0.016,0.62,70,1053,724,0,0,-10.9,70,1053,0,724,0.344,45.95,51.6,0.92,0.78,783,0.3,335,4.1
+2903,2023,3,2,11,30,-0.2,1.16,0.016,0.62,71,1061,762,0,0,-10.9,101,1006,0,756,0.341,44.31,49.35,0.92,0.78,783,0.3,330,4
+2904,2023,3,2,12,0,0.3,1.18,0.013,0.62,69,1063,780,0,0,-11.8,69,1063,0,780,0.339,39.8,48,0.91,0.78,783,0.4,325,4
+2905,2023,3,2,12,30,0.6,1.18,0.013,0.62,69,1061,784,0,0,-11.8,69,1061,0,784,0.337,38.95,47.62,0.91,0.78,783,0.4,320,3.8
+2906,2023,3,2,13,0,0.9,1.22,0.012,0.62,67,1060,773,0,0,-12.4,67,1060,0,773,0.335,36.43,48.23,0.91,0.78,783,0.4,315,3.5
+2907,2023,3,2,13,30,1,1.22,0.012,0.62,65,1054,745,0,0,-12.4,65,1054,0,745,0.334,36.17,49.8,0.91,0.78,783,0.4,311,3.3
+2908,2023,3,2,14,0,1.2,1.2,0.011,0.62,62,1039,698,0,0,-12.4,62,1039,0,698,0.333,35.59,52.24,0.9,0.78,782,0.5,308,3
+2909,2023,3,2,14,30,1.1,1.2,0.011,0.62,59,1022,639,0,0,-12.4,59,1022,0,639,0.332,35.84,55.43,0.91,0.78,782,0.5,307,3
+2910,2023,3,2,15,0,1.1,1.23,0.011,0.62,56,1001,568,0,0,-11.9,56,1001,0,568,0.331,37.39,59.24,0.91,0.78,782,0.5,307,3
+2911,2023,3,2,15,30,0.7,1.23,0.011,0.62,54,967,485,0,0,-11.9,58,957,7,484,0.329,38.48,63.55,0.92,0.78,782,0.5,309,2.9
+2912,2023,3,2,16,0,0.4,1.23,0.015,0.62,51,918,391,0,7,-11,169,468,21,342,0.327,42.26,68.26,0.93,0.78,783,0.6,312,2.8
+2913,2023,3,2,16,30,-0.8,1.23,0.015,0.62,46,847,290,0,7,-11,168,95,0,195,0.326,46.1,73.28,0.94,0.78,783,0.6,314,2
+2914,2023,3,2,17,0,-2,1.2,0.021,0.62,40,738,187,0,6,-9.2,99,41,0,107,0.326,57.67,78.52,0.94,0.73,783,0.6,315,1.1
+2915,2023,3,2,17,30,-2.5,1.2,0.021,0.62,29,560,88,6,6,-9.2,34,1,86,34,0.326,59.84,83.92,0.94,0.73,783,0.6,318,1
+2916,2023,3,2,18,0,-3.1,1.2,0.022,0.62,12,157,14,4,6,-9.5,6,0,57,6,0.326,61.43,89.25,0.94,0.73,783,0.6,320,0.8
+2917,2023,3,2,18,30,-3.3,1.2,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.325,62.35,95.25,0.94,0.73,783,0.6,321,0.8
+2918,2023,3,2,19,0,-3.4,1.19,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.325,62.9,100.94,0.94,0.73,784,0.6,322,0.8
+2919,2023,3,2,19,30,-3.6,1.19,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.324,63.84,106.62,0.93,0.73,784,0.6,319,0.6
+2920,2023,3,2,20,0,-3.9,1.18,0.021,0.62,0,0,0,0,7,-9,0,0,0,0,0.324,67.63,112.27,0.93,0.73,784,0.6,316,0.4
+2921,2023,3,2,20,30,-4,1.18,0.021,0.62,0,0,0,0,7,-9,0,0,0,0,0.323,68.14,117.82,0.93,0.73,784,0.6,258,0.3
+2922,2023,3,2,21,0,-4.1,1.16,0.022,0.62,0,0,0,0,0,-9,0,0,0,0,0.322,68.77,123.21,0.93,0.73,784,0.6,200,0.1
+2923,2023,3,2,21,30,-4.1,1.16,0.022,0.62,0,0,0,0,0,-9,0,0,0,0,0.32,68.77,128.37,0.93,0.73,784,0.6,187,0.3
+2924,2023,3,2,22,0,-4.2,1.11,0.024,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.319,67.63,133.19,0.93,0.73,784,0.6,174,0.5
+2925,2023,3,2,22,30,-4.3,1.11,0.024,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.317,68.05,137.55,0.93,0.73,783,0.6,174,0.7
+2926,2023,3,2,23,0,-4.4,1.05,0.028,0.62,0,0,0,0,4,-9,0,0,0,0,0.315,70.18,141.26,0.94,0.73,783,0.6,174,0.8
+2927,2023,3,2,23,30,-4.5,1.05,0.028,0.62,0,0,0,0,0,-9,0,0,0,0,0.315,70.71,144.1,0.94,0.73,783,0.6,174,0.9
+2928,2023,3,3,0,0,-4.5,0.97,0.032,0.62,0,0,0,0,0,-9,0,0,0,0,0.315,70.73,145.85,0.94,0.73,783,0.6,175,1
+2929,2023,3,3,0,30,-4.6,0.97,0.032,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,71.27,146.34,0.94,0.73,783,0.6,177,1
+2930,2023,3,3,1,0,-4.6,0.9,0.037,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.316,69.63,145.5,0.94,0.73,783,0.6,179,1.1
+2931,2023,3,3,1,30,-4.7,0.9,0.037,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.317,70.16,143.44,0.94,0.73,783,0.6,174,1
+2932,2023,3,3,2,0,-4.8,0.83,0.042,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.318,70.99,140.34,0.94,0.73,783,0.6,169,0.9
+2933,2023,3,3,2,30,-5.2,0.83,0.042,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.319,73.08,136.44,0.94,0.73,782,0.6,155,0.8
+2934,2023,3,3,3,0,-5.5,0.79,0.047,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.319,75.56,131.94,0.94,0.73,782,0.5,141,0.8
+2935,2023,3,3,3,30,-5.9,0.79,0.047,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.32,77.9,127.01,0.94,0.73,782,0.5,132,0.8
+2936,2023,3,3,4,0,-6.3,0.79,0.052,0.62,0,0,0,0,4,-9.2,0,0,0,0,0.32,80.12,121.78,0.94,0.73,782,0.5,124,0.9
+2937,2023,3,3,4,30,-6.7,0.79,0.052,0.62,0,0,0,0,4,-9.2,0,0,0,0,0.32,82.61,116.33,0.94,0.73,782,0.5,119,0.9
+2938,2023,3,3,5,0,-7.1,0.81,0.056,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.32,84.33,110.74,0.94,0.73,782,0.5,115,0.9
+2939,2023,3,3,5,30,-7.4,0.81,0.056,0.62,0,0,0,0,5,-9.3,0,0,0,0,0.321,86.3,105.08,0.94,0.73,782,0.5,115,0.9
+2940,2023,3,3,6,0,-7.7,0.84,0.058,0.62,0,0,0,0,5,-9.5,0,0,0,0,0.322,86.98,99.37,0.94,0.73,782,0.5,114,0.9
+2941,2023,3,3,6,30,-7.1,0.84,0.058,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.324,83.04,93.68,0.94,0.73,782,0.5,119,1.2
+2942,2023,3,3,7,0,-6.5,0.86,0.061,0.62,21,195,28,6,8,-9.3,11,0,86,11,0.325,80.78,87.8,0.94,0.73,782,0.5,125,1.5
+2943,2023,3,3,7,30,-5.3,0.86,0.061,0.62,43,509,110,4,8,-9.3,58,5,57,59,0.327,73.72,82.39,0.94,0.73,782,0.5,135,1.5
+2944,2023,3,3,8,0,-4.1,0.89,0.066,0.62,58,676,210,2,8,-8.8,112,11,25,114,0.328,69.64,77,0.94,0.73,782,0.5,146,1.5
+2945,2023,3,3,8,30,-3.1,0.89,0.066,0.62,71,778,314,1,5,-8.8,198,80,11,223,0.33,64.62,71.79,0.94,0.73,782,0.5,177,1.6
+2946,2023,3,3,9,0,-2.1,0.93,0.071,0.62,82,843,414,0,5,-8.6,271,86,4,305,0.332,61.26,66.82,0.95,0.73,782,0.5,209,1.7
+2947,2023,3,3,9,30,-1.5,0.93,0.071,0.62,92,890,507,0,5,-8.6,266,35,0,282,0.334,58.62,62.18,0.95,0.73,782,0.5,221,2.3
+2948,2023,3,3,10,0,-0.9,0.96,0.072,0.62,99,924,589,0,7,-8.1,182,108,29,239,0.337,58.03,57.96,0.95,0.73,781,0.5,234,2.8
+2949,2023,3,3,10,30,-0.7,0.96,0.072,0.62,103,951,658,0,7,-8.1,329,367,0,543,0.339,57.19,54.27,0.95,0.73,781,0.5,237,3.2
+2950,2023,3,3,11,0,-0.5,0.97,0.066,0.62,105,972,714,0,7,-7.8,310,516,0,633,0.341,57.66,51.23,0.95,0.73,781,0.5,241,3.7
+2951,2023,3,3,11,30,-0.4,0.97,0.066,0.62,106,987,754,0,7,-7.8,309,570,7,683,0.342,57.24,48.97,0.95,0.73,781,0.5,243,4
+2952,2023,3,3,12,0,-0.3,0.97,0.059,0.62,104,998,777,0,7,-7.7,374,479,0,697,0.342,57.46,47.61,0.95,0.73,781,0.5,245,4.3
+2953,2023,3,3,12,30,-0.3,0.97,0.059,0.62,102,1004,784,0,8,-7.7,374,225,0,527,0.342,57.46,47.23,0.95,0.73,781,0.5,247,4.6
+2954,2023,3,3,13,0,-0.2,0.96,0.05,0.62,99,1007,775,0,4,-7.5,363,333,14,586,0.341,57.8,47.86,0.95,0.73,781,0.5,250,4.8
+2955,2023,3,3,13,30,-0.2,0.96,0.05,0.62,96,1002,748,0,8,-7.5,323,408,7,588,0.34,57.8,49.44,0.95,0.73,781,0.5,251,4.9
+2956,2023,3,3,14,0,-0.1,0.95,0.046,0.62,91,993,704,0,8,-7.5,341,91,0,397,0.339,57.51,51.91,0.95,0.73,780,0.5,253,5
+2957,2023,3,3,14,30,-0.1,0.95,0.046,0.62,88,976,646,0,8,-7.5,282,80,0,328,0.338,57.51,55.12,0.94,0.73,780,0.5,254,5
+2958,2023,3,3,15,0,-0.1,0.94,0.047,0.62,83,956,576,0,4,-8,190,156,0,270,0.337,55.43,58.95,0.94,0.73,780,0.5,256,5.1
+2959,2023,3,3,15,30,-0.3,0.94,0.047,0.62,78,923,493,0,4,-8,238,120,0,292,0.336,56.24,63.28,0.94,0.73,780,0.4,259,4.9
+2960,2023,3,3,16,0,-0.4,0.89,0.049,0.62,70,873,397,0,4,-9.2,194,104,0,233,0.335,51.58,68.01,0.93,0.73,780,0.4,262,4.8
+2961,2023,3,3,16,30,-1.4,0.89,0.049,0.62,61,808,297,0,4,-9.2,102,64,0,121,0.335,55.56,73.04,0.93,0.73,781,0.3,267,3.9
+2962,2023,3,3,17,0,-2.3,0.85,0.049,0.62,51,699,193,0,0,-10.1,68,388,11,147,0.334,55.23,78.3,0.93,0.8,781,0.3,272,3
+2963,2023,3,3,17,30,-3.5,0.85,0.049,0.62,35,508,91,0,0,-10.1,35,508,0,91,0.335,60.38,83.7,0.92,0.8,781,0.3,278,2.8
+2964,2023,3,3,18,0,-4.7,0.84,0.047,0.62,13,131,15,0,0,-11.2,13,131,0,15,0.336,60.34,89.06,0.92,0.8,782,0.2,284,2.5
+2965,2023,3,3,18,30,-5.3,0.84,0.047,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.335,63.14,95.04,0.92,0.8,782,0.2,289,2.4
+2966,2023,3,3,19,0,-5.9,0.88,0.044,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.335,63.23,100.73,0.92,0.8,783,0.2,295,2.4
+2967,2023,3,3,19,30,-6.4,0.88,0.044,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.333,65.69,106.42,0.92,0.8,783,0.2,298,2
+2968,2023,3,3,20,0,-7,0.92,0.039,0.62,0,0,0,0,4,-11.6,0,0,0,0,0.331,69.9,112.05,0.92,0.8,784,0.2,301,1.7
+2969,2023,3,3,20,30,-7.3,0.92,0.039,0.62,0,0,0,0,4,-11.6,0,0,0,0,0.327,71.54,117.59,0.92,0.8,784,0.2,301,1.4
+2970,2023,3,3,21,0,-7.6,0.95,0.036,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.324,73.84,122.97,0.92,0.8,784,0.2,301,1
+2971,2023,3,3,21,30,-7.6,0.95,0.036,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.321,73.84,128.12,0.92,0.8,784,0.2,293,0.9
+2972,2023,3,3,22,0,-7.6,0.98,0.034,0.62,0,0,0,0,0,-12,0,0,0,0,0.317,70.63,132.92,0.92,0.8,784,0.2,286,0.7
+2973,2023,3,3,22,30,-7.7,0.98,0.034,0.62,0,0,0,0,0,-12,0,0,0,0,0.315,71.18,137.26,0.92,0.8,784,0.2,241,0.6
+2974,2023,3,3,23,0,-7.8,1.02,0.034,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.312,69.26,140.93,0.92,0.8,784,0.2,196,0.6
+2975,2023,3,3,23,30,-8.5,1.02,0.034,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.312,73.13,143.75,0.92,0.8,784,0.2,183,0.8
+2976,2023,3,4,0,0,-9.1,1.06,0.037,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.312,77.11,145.48,0.92,0.8,785,0.2,169,1
+2977,2023,3,4,0,30,-9.7,1.06,0.037,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.313,80.83,145.95,0.92,0.8,785,0.2,168,1.1
+2978,2023,3,4,1,0,-10.2,1.07,0.038,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.313,84.21,145.12,0.92,0.8,785,0.2,166,1.2
+2979,2023,3,4,1,30,-10.6,1.07,0.038,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.314,86.92,143.06,0.92,0.8,785,0.2,166,1.2
+2980,2023,3,4,2,0,-11,1.08,0.037,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.315,90.15,139.98,0.92,0.8,784,0.2,165,1.3
+2981,2023,3,4,2,30,-11.3,1.08,0.037,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.315,92.34,136.09,0.92,0.8,784,0.2,165,1.3
+2982,2023,3,4,3,0,-11.7,1.07,0.037,0.62,0,0,0,0,0,-12.2,0,0,0,0,0.315,96.04,131.61,0.92,0.8,784,0.2,164,1.4
+2983,2023,3,4,3,30,-12,1.07,0.037,0.62,0,0,0,0,7,-12.2,0,0,0,0,0.314,98.38,126.69,0.92,0.8,784,0.2,165,1.5
+2984,2023,3,4,4,0,-12.3,1.07,0.036,0.62,0,0,0,0,7,-12.3,0,0,29,0,0.312,100,121.47,0.92,0.8,784,0.2,165,1.5
+2985,2023,3,4,4,30,-12.6,1.07,0.036,0.62,0,0,0,0,7,-12.6,0,0,14,0,0.311,100,116.03,0.93,0.8,784,0.2,165,1.6
+2986,2023,3,4,5,0,-12.8,1.05,0.037,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.311,100,110.45,0.93,0.8,784,0.2,164,1.7
+2987,2023,3,4,5,30,-12.9,1.05,0.037,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.31,100,104.79,0.93,0.8,784,0.3,164,1.7
+2988,2023,3,4,6,0,-13.1,1.03,0.042,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.31,100,99.09,0.94,0.8,784,0.3,165,1.7
+2989,2023,3,4,6,30,-12.1,1.03,0.042,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.308,95.47,93.39,0.94,0.8,784,0.3,167,2.2
+2990,2023,3,4,7,0,-11.2,1,0.052,0.62,21,246,32,6,7,-12.6,20,1,86,20,0.307,89.39,87.52,0.95,0.8,784,0.3,170,2.6
+2991,2023,3,4,7,30,-9.9,1,0.052,0.62,43,568,121,4,7,-12.6,78,10,57,79,0.304,80.63,82.09,0.95,0.8,784,0.3,173,2.6
+2992,2023,3,4,8,0,-8.7,0.97,0.06,0.62,59,720,225,0,7,-11.7,153,98,0,176,0.302,78.94,76.7,0.95,0.8,784,0.3,177,2.5
+2993,2023,3,4,8,30,-7.1,0.97,0.06,0.62,71,815,330,0,7,-11.7,191,42,0,204,0.301,69.73,71.48,0.95,0.8,784,0.3,188,3.1
+2994,2023,3,4,9,0,-5.4,0.95,0.063,0.62,81,872,429,0,7,-11.7,181,17,29,188,0.3,61.34,66.5,0.95,0.8,784,0.4,198,3.6
+2995,2023,3,4,9,30,-4.4,0.95,0.063,0.62,90,916,522,0,6,-11.7,218,15,0,225,0.3,56.88,61.84,0.95,0.8,784,0.4,201,4.1
+2996,2023,3,4,10,0,-3.4,0.95,0.061,0.62,96,950,605,0,6,-11.9,186,4,29,188,0.3,51.76,57.61,0.95,0.8,784,0.4,204,4.5
+2997,2023,3,4,10,30,-2.8,0.95,0.061,0.62,102,972,675,0,6,-11.9,354,21,0,366,0.3,49.44,53.9,0.95,0.8,783,0.4,204,4.7
+2998,2023,3,4,11,0,-2.1,0.97,0.064,0.62,107,987,730,0,6,-11.5,391,21,0,404,0.3,48.5,50.85,0.95,0.8,783,0.4,204,5
+2999,2023,3,4,11,30,-1.6,0.97,0.064,0.62,112,995,770,0,6,-11.5,435,32,0,456,0.299,46.75,48.58,0.95,0.8,783,0.4,203,5.2
+3000,2023,3,4,12,0,-1,1,0.069,0.62,115,997,792,0,6,-10.8,432,19,0,445,0.298,47.48,47.22,0.95,0.8,782,0.4,202,5.4
+3001,2023,3,4,12,30,-0.8,1,0.069,0.62,117,990,794,0,6,-10.8,475,95,0,540,0.298,46.79,46.85,0.95,0.8,782,0.5,202,5.7
+3002,2023,3,4,13,0,-0.5,1.01,0.075,0.62,118,983,782,0,6,-9.9,441,25,0,458,0.297,49.08,47.49,0.95,0.8,781,0.5,201,6
+3003,2023,3,4,13,30,-0.4,1.01,0.075,0.62,117,973,754,0,6,-9.9,355,6,0,359,0.298,48.73,49.09,0.96,0.8,781,0.5,201,6.2
+3004,2023,3,4,14,0,-0.3,1.01,0.08,0.62,114,954,707,0,6,-8.9,316,7,0,320,0.298,52.43,51.57,0.96,0.8,780,0.6,200,6.4
+3005,2023,3,4,14,30,-0.3,1.01,0.08,0.62,110,929,646,0,6,-8.9,267,5,0,270,0.299,52.43,54.8,0.96,0.8,780,0.6,201,6.5
+3006,2023,3,4,15,0,-0.4,1,0.084,0.62,104,899,572,0,6,-7.8,221,3,0,223,0.3,57.58,58.66,0.96,0.8,779,0.6,201,6.6
+3007,2023,3,4,15,30,-0.6,1,0.084,0.62,97,859,487,0,6,-7.8,173,2,0,174,0.303,58.42,63.01,0.96,0.8,779,0.6,202,6.5
+3008,2023,3,4,16,0,-0.8,0.99,0.087,0.62,88,802,392,0,6,-6.7,123,1,0,123,0.306,64.18,67.76,0.96,0.8,779,0.6,203,6.4
+3009,2023,3,4,16,30,-1.3,0.99,0.087,0.62,78,716,290,0,7,-6.7,153,50,0,168,0.308,66.56,72.8,0.96,0.8,779,0.6,204,5.8
+3010,2023,3,4,17,0,-1.8,0.99,0.097,0.62,64,585,185,0,7,-5.9,125,50,0,135,0.311,73.53,78.07,0.96,0.73,779,0.6,205,5.3
+3011,2023,3,4,17,30,-2.3,0.99,0.097,0.62,44,377,87,6,7,-5.9,37,12,86,38,0.314,76.29,83.49,0.96,0.73,779,0.6,207,4.9
+3012,2023,3,4,18,0,-2.9,0.99,0.107,0.62,14,85,16,5,5,-5.4,6,0,71,6,0.317,82.71,88.87,0.97,0.73,779,0.6,208,4.6
+3013,2023,3,4,18,30,-3.1,0.99,0.107,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.319,83.95,94.83,0.96,0.73,779,0.6,208,4.3
+3014,2023,3,4,19,0,-3.4,1,0.101,0.62,0,0,0,0,5,-5.3,0,0,0,0,0.322,86.97,100.52,0.96,0.73,779,0.6,208,4
+3015,2023,3,4,19,30,-3.6,1,0.101,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.323,88.28,106.21,0.96,0.73,779,0.6,206,3.8
+3016,2023,3,4,20,0,-3.9,1.02,0.09,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.323,88.99,111.84,0.95,0.73,779,0.6,205,3.6
+3017,2023,3,4,20,30,-4.4,1.02,0.09,0.62,0,0,0,0,5,-5.5,0,0,0,0,0.323,92.27,117.37,0.95,0.73,778,0.5,205,3.5
+3018,2023,3,4,21,0,-4.8,1.04,0.085,0.62,0,0,0,0,0,-6,0,0,0,0,0.323,91.11,122.74,0.95,0.73,778,0.5,206,3.5
+3019,2023,3,4,21,30,-5,1.04,0.085,0.62,0,0,0,0,8,-6,0,0,0,0,0.323,92.5,127.87,0.95,0.73,778,0.5,208,3.9
+3020,2023,3,4,22,0,-5.2,1.04,0.081,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.323,89.97,132.65,0.95,0.73,778,0.5,210,4.2
+3021,2023,3,4,22,30,-5.6,1.04,0.081,0.62,0,0,0,0,4,-6.6,0,0,0,0,0.323,92.74,136.96,0.95,0.73,778,0.5,210,4.2
+3022,2023,3,4,23,0,-5.9,1.05,0.075,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.323,90.63,140.61,0.94,0.73,778,0.5,210,4.1
+3023,2023,3,4,23,30,-6.4,1.05,0.075,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.323,94.16,143.4,0.94,0.73,778,0.5,207,3.8
+3024,2023,3,5,0,0,-6.9,1.05,0.078,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,94.05,145.11,0.94,0.73,778,0.5,203,3.6
+3025,2023,3,5,0,30,-7,1.05,0.078,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,94.77,145.57,0.95,0.73,778,0.5,204,3.8
+3026,2023,3,5,1,0,-7.1,1.02,0.106,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.323,92.56,144.73,0.95,0.73,778,0.5,204,4
+3027,2023,3,5,1,30,-6.4,1.02,0.106,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.326,87.72,142.68,0.96,0.73,778,0.5,208,4.6
+3028,2023,3,5,2,0,-5.8,1.02,0.14,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.328,84.84,139.61,0.96,0.73,778,0.5,212,5.2
+3029,2023,3,5,2,30,-5.7,1.02,0.14,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.332,84.2,135.74,0.96,0.73,778,0.5,212,4.9
+3030,2023,3,5,3,0,-5.7,1.02,0.14,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.336,86.13,131.28,0.96,0.73,778,0.5,213,4.7
+3031,2023,3,5,3,30,-5.9,1.02,0.14,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.341,87.46,126.38,0.95,0.73,778,0.5,213,4.3
+3032,2023,3,5,4,0,-6.1,1.02,0.127,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.346,90.3,121.16,0.95,0.73,779,0.5,213,3.9
+3033,2023,3,5,4,30,-6.3,1.02,0.127,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.351,91.69,115.73,0.95,0.73,779,0.5,213,3.6
+3034,2023,3,5,5,0,-6.5,1.04,0.125,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.356,94.11,110.16,0.96,0.73,779,0.5,213,3.3
+3035,2023,3,5,5,30,-6.6,1.04,0.125,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.361,94.83,104.5,0.96,0.73,779,0.5,211,3
+3036,2023,3,5,6,0,-6.6,1.04,0.136,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.366,95.81,98.8,0.96,0.73,779,0.5,209,2.8
+3037,2023,3,5,6,30,-6.2,1.04,0.136,0.62,0,0,0,1,5,-7.2,0,0,14,0,0.371,92.92,93.1,0.96,0.73,779,0.5,210,2.9
+3038,2023,3,5,7,0,-5.7,1.02,0.15,0.62,24,122,30,7,7,-6.8,13,0,100,13,0.376,92.2,87.24,0.96,0.73,779,0.6,211,3
+3039,2023,3,5,7,30,-4.9,1.02,0.15,0.62,59,358,110,3,7,-6.7,53,2,43,53,0.379,86.88,81.79,0.97,0.73,780,0.6,213,3.4
+3040,2023,3,5,8,0,-4.1,1.02,0.171,0.62,87,514,208,0,7,-6.1,116,13,0,119,0.381,86.25,76.39,0.97,0.73,780,0.6,215,3.8
+3041,2023,3,5,8,30,-3.2,1.02,0.171,0.62,104,641,311,0,7,-6.1,131,10,0,134,0.381,80.64,71.16,0.97,0.73,780,0.6,220,4.3
+3042,2023,3,5,9,0,-2.3,1.04,0.15,0.62,116,735,413,4,8,-5.5,74,2,54,75,0.381,78.65,66.17,0.97,0.73,780,0.6,224,4.8
+3043,2023,3,5,9,30,-1.5,1.04,0.15,0.62,123,807,508,1,8,-5.5,117,3,18,118,0.381,74.15,61.5,0.97,0.73,780,0.6,230,5.1
+3044,2023,3,5,10,0,-0.8,1.03,0.119,0.62,123,868,593,3,8,-5.7,66,1,61,67,0.381,69.63,57.25,0.97,0.73,781,0.5,236,5.3
+3045,2023,3,5,10,30,-0.3,1.03,0.119,0.62,128,901,664,2,7,-5.7,193,20,29,205,0.381,67.14,53.53,0.97,0.73,781,0.5,242,5.4
+3046,2023,3,5,11,0,0.1,1.04,0.111,0.62,131,926,720,0,7,-6.3,358,76,0,406,0.381,62.3,50.47,0.97,0.73,781,0.5,247,5.5
+3047,2023,3,5,11,30,0.4,1.04,0.111,0.62,133,940,760,3,8,-6.3,156,7,46,161,0.38,60.96,48.2,0.96,0.73,781,0.5,249,5.5
+3048,2023,3,5,12,0,0.7,1.05,0.106,0.62,133,950,783,2,7,-6.6,243,48,21,276,0.379,58.16,46.83,0.96,0.73,781,0.5,251,5.5
+3049,2023,3,5,12,30,0.7,1.05,0.106,0.62,132,955,790,0,8,-6.6,277,45,0,308,0.378,58.16,46.47,0.96,0.73,781,0.5,253,5.3
+3050,2023,3,5,13,0,0.7,1.06,0.099,0.62,128,956,779,0,7,-6.8,387,100,0,455,0.378,57.36,47.11,0.96,0.73,781,0.5,254,5.1
+3051,2023,3,5,13,30,0.7,1.06,0.099,0.62,125,950,752,0,8,-6.8,335,118,0,413,0.377,57.36,48.74,0.96,0.73,781,0.5,255,4.7
+3052,2023,3,5,14,0,0.7,1.06,0.094,0.62,120,940,708,0,7,-6.8,387,168,0,492,0.375,57.14,51.24,0.96,0.73,781,0.5,256,4.4
+3053,2023,3,5,14,30,0.6,1.06,0.094,0.62,113,924,650,0,7,-6.8,315,375,0,533,0.373,57.63,54.49,0.97,0.73,782,0.5,257,3.8
+3054,2023,3,5,15,0,0.5,1.07,0.086,0.62,104,902,577,0,7,-6.7,255,467,7,500,0.37,58.31,58.37,0.97,0.73,782,0.5,259,3.3
+3055,2023,3,5,15,30,0.2,1.07,0.086,0.62,94,871,493,0,7,-6.7,301,192,0,389,0.368,59.58,62.74,0.96,0.73,782,0.5,265,2.4
+3056,2023,3,5,16,0,-0.1,1.08,0.076,0.62,83,826,399,0,7,-6.3,238,77,0,267,0.365,62.94,67.5,0.96,0.73,782,0.5,271,1.6
+3057,2023,3,5,16,30,-0.8,1.08,0.076,0.62,71,754,297,0,7,-6.3,151,174,7,203,0.363,66.22,72.56,0.96,0.73,782,0.5,146,1
+3058,2023,3,5,17,0,-1.4,1.11,0.073,0.62,58,643,193,0,7,-5.8,108,104,0,130,0.361,71.73,77.85,0.96,0.69,783,0.5,21,0.4
+3059,2023,3,5,17,30,-2,1.11,0.073,0.62,40,462,94,6,7,-5.8,44,17,86,46,0.358,74.96,83.27,0.96,0.69,783,0.5,45,1
+3060,2023,3,5,18,0,-2.7,1.14,0.066,0.62,16,141,19,5,7,-6.6,8,0,71,8,0.356,74.51,88.67,0.96,0.69,783,0.5,69,1.6
+3061,2023,3,5,18,30,-3.1,1.14,0.066,0.62,0,0,0,0,4,-6.6,0,0,0,0,0.354,76.76,94.63,0.96,0.69,783,0.5,73,2
+3062,2023,3,5,19,0,-3.6,1.16,0.059,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.353,81.24,100.32,0.96,0.69,783,0.5,77,2.3
+3063,2023,3,5,19,30,-3.8,1.16,0.059,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.351,82.46,106,0.96,0.69,783,0.5,80,2.4
+3064,2023,3,5,20,0,-3.9,1.15,0.058,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.35,84.72,111.63,0.96,0.69,783,0.5,82,2.5
+3065,2023,3,5,20,30,-3.9,1.15,0.058,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.348,84.72,117.15,0.96,0.69,783,0.5,87,2.4
+3066,2023,3,5,21,0,-3.9,1.13,0.059,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.346,86.38,122.51,0.97,0.69,783,0.5,91,2.2
+3067,2023,3,5,21,30,-3.8,1.13,0.059,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.345,85.74,127.62,0.96,0.69,783,0.6,104,2
+3068,2023,3,5,22,0,-3.7,1.12,0.055,0.62,0,0,0,0,7,-5.6,0,0,0,0,0.343,86.51,132.38,0.96,0.69,783,0.6,117,1.7
+3069,2023,3,5,22,30,-3.5,1.12,0.055,0.62,0,0,0,0,8,-5.6,0,0,0,0,0.342,85.23,136.66,0.96,0.69,783,0.6,138,1.8
+3070,2023,3,5,23,0,-3.4,1.09,0.046,0.62,0,0,0,0,4,-5.6,0,0,0,0,0.341,84.56,140.29,0.96,0.69,782,0.6,158,2
+3071,2023,3,5,23,30,-3.2,1.09,0.046,0.62,0,0,0,0,4,-5.6,0,0,0,0,0.341,83.31,143.05,0.96,0.69,782,0.5,169,2.6
+3072,2023,3,6,0,0,-3,1.04,0.038,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.341,81.16,144.73,0.95,0.69,782,0.5,179,3.2
+3073,2023,3,6,0,30,-2.8,1.04,0.038,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.341,79.96,145.18,0.95,0.69,782,0.5,184,3.8
+3074,2023,3,6,1,0,-2.7,0.99,0.035,0.62,0,0,0,0,4,-6,0,0,0,0,0.342,77.9,144.34,0.95,0.69,782,0.5,188,4.4
+3075,2023,3,6,1,30,-2.8,0.99,0.035,0.62,0,0,0,0,0,-6,0,0,0,0,0.342,78.48,142.3,0.95,0.69,782,0.5,190,4.6
+3076,2023,3,6,2,0,-3,0.98,0.034,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.343,77.57,139.24,0.95,0.69,782,0.5,192,4.8
+3077,2023,3,6,2,30,-3.5,0.98,0.034,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.343,80.51,135.39,0.95,0.69,782,0.6,190,4.3
+3078,2023,3,6,3,0,-4,1.01,0.038,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.343,81.75,130.94,0.95,0.69,782,0.6,188,3.9
+3079,2023,3,6,3,30,-4.1,1.01,0.038,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.342,82.47,126.05,0.95,0.69,783,0.6,190,4
+3080,2023,3,6,4,0,-4.3,1.03,0.044,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.341,83.15,120.85,0.96,0.69,783,0.6,191,4
+3081,2023,3,6,4,30,-4.2,1.03,0.044,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.34,82.53,115.43,0.96,0.69,783,0.6,197,4.2
+3082,2023,3,6,5,0,-4.2,1.04,0.054,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.339,84.29,109.86,0.96,0.69,783,0.6,202,4.3
+3083,2023,3,6,5,30,-4.4,1.04,0.054,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.337,85.56,104.2,0.97,0.69,783,0.6,207,3.9
+3084,2023,3,6,6,0,-4.5,1.04,0.062,0.62,0,0,0,0,4,-6.2,0,0,0,0,0.335,88.01,98.5,0.97,0.69,783,0.6,211,3.5
+3085,2023,3,6,6,30,-4.1,1.04,0.062,0.62,0,0,0,1,4,-6.2,0,0,14,0,0.334,85.51,92.8,0.97,0.69,784,0.6,218,3.3
+3086,2023,3,6,7,0,-3.7,1.04,0.065,0.62,25,250,38,7,5,-5.7,14,0,100,14,0.332,86.08,86.96,0.97,0.69,784,0.6,225,3.1
+3087,2023,3,6,7,30,-3,1.04,0.065,0.62,46,527,124,3,4,-5.7,51,58,50,60,0.332,81.71,81.49,0.97,0.69,784,0.6,231,3.3
+3088,2023,3,6,8,0,-2.2,1.05,0.076,0.62,63,674,225,0,4,-5.3,107,3,0,108,0.331,79.04,76.08,0.97,0.69,784,0.6,237,3.5
+3089,2023,3,6,8,30,-1.6,1.05,0.076,0.62,75,774,329,0,5,-5.3,210,134,0,254,0.331,75.62,70.84,0.97,0.69,784,0.6,238,3.8
+3090,2023,3,6,9,0,-1,1.06,0.076,0.62,86,841,430,0,5,-5.4,234,344,0,375,0.331,72.12,65.84,0.97,0.69,785,0.6,240,4.2
+3091,2023,3,6,9,30,-0.5,1.06,0.076,0.62,92,893,523,0,5,-5.4,268,416,7,469,0.33,69.54,61.16,0.97,0.69,785,0.6,239,4.4
+3092,2023,3,6,10,0,0,1.06,0.068,0.62,97,932,606,0,7,-5.6,280,319,14,454,0.33,66.22,56.89,0.97,0.69,785,0.6,239,4.7
+3093,2023,3,6,10,30,0.4,1.06,0.068,0.62,99,961,675,0,5,-5.6,411,229,0,548,0.329,64.33,53.16,0.97,0.69,785,0.6,238,4.9
+3094,2023,3,6,11,0,0.8,1.1,0.058,0.62,100,984,731,0,5,-5.7,455,126,4,536,0.329,61.95,50.09,0.97,0.69,785,0.6,237,5.1
+3095,2023,3,6,11,30,1.1,1.1,0.058,0.62,102,995,770,0,5,-5.7,366,499,18,701,0.328,60.62,47.81,0.97,0.69,785,0.6,237,5.3
+3096,2023,3,6,12,0,1.4,1.09,0.058,0.62,104,1000,793,0,7,-5.8,186,854,36,775,0.327,58.66,46.44,0.97,0.69,785,0.6,236,5.4
+3097,2023,3,6,12,30,1.6,1.09,0.058,0.62,103,1003,799,0,0,-5.8,121,971,14,795,0.326,57.83,46.08,0.97,0.69,785,0.6,235,5.5
+3098,2023,3,6,13,0,1.8,1.07,0.054,0.62,101,1003,788,0,0,-6.1,160,897,36,775,0.324,55.97,46.74,0.97,0.69,785,0.6,234,5.5
+3099,2023,3,6,13,30,1.9,1.07,0.054,0.62,99,997,761,0,7,-6.1,269,661,14,708,0.323,55.57,48.38,0.97,0.69,785,0.6,234,5.5
+3100,2023,3,6,14,0,1.9,1.06,0.052,0.62,95,987,717,0,7,-6.3,231,699,7,672,0.323,54.57,50.9,0.97,0.69,785,0.6,234,5.4
+3101,2023,3,6,14,30,1.9,1.06,0.052,0.62,90,972,659,0,7,-6.3,198,722,21,621,0.323,54.57,54.18,0.97,0.69,785,0.6,235,5.1
+3102,2023,3,6,15,0,1.8,1.04,0.049,0.62,85,950,587,0,7,-6.4,213,624,7,543,0.323,54.44,58.08,0.97,0.69,785,0.5,236,4.8
+3103,2023,3,6,15,30,1.5,1.04,0.049,0.62,79,918,503,0,8,-6.4,215,461,11,428,0.323,55.69,62.47,0.97,0.69,786,0.5,240,4.1
+3104,2023,3,6,16,0,1.1,1.04,0.048,0.62,71,872,408,0,8,-6.1,188,410,0,347,0.324,58.75,67.25,0.97,0.69,786,0.5,244,3.3
+3105,2023,3,6,16,30,0,1.04,0.048,0.62,62,803,306,0,7,-6.1,149,356,7,257,0.325,63.6,72.33,0.97,0.69,786,0.5,254,2.3
+3106,2023,3,6,17,0,-1.1,1.04,0.049,0.62,52,696,201,0,7,-5.3,106,179,11,144,0.326,73.11,77.62,0.97,0.74,786,0.5,265,1.3
+3107,2023,3,6,17,30,-1.9,1.04,0.049,0.62,37,520,100,5,7,-5.3,43,2,71,43,0.327,77.53,83.06,0.96,0.74,786,0.5,281,1.3
+3108,2023,3,6,18,0,-2.6,1.04,0.048,0.62,16,172,21,5,7,-6.3,10,0,71,10,0.328,75.86,88.48,0.96,0.74,786,0.5,296,1.2
+3109,2023,3,6,18,30,-2.9,1.04,0.048,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.328,77.67,94.42,0.96,0.74,787,0.5,310,1.3
+3110,2023,3,6,19,0,-3.3,1.03,0.046,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.329,76.5,100.11,0.96,0.74,787,0.5,324,1.4
+3111,2023,3,6,19,30,-3.5,1.03,0.046,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.329,77.65,105.79,0.96,0.74,787,0.5,334,1.6
+3112,2023,3,6,20,0,-3.8,1.03,0.045,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.328,75.07,111.41,0.96,0.74,787,0.5,344,1.9
+3113,2023,3,6,20,30,-4.2,1.03,0.045,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.328,77.35,116.93,0.96,0.74,787,0.5,348,2
+3114,2023,3,6,21,0,-4.5,1.03,0.043,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.328,74.62,122.27,0.96,0.74,787,0.5,352,2.2
+3115,2023,3,6,21,30,-4.8,1.03,0.043,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.328,76.43,127.37,0.96,0.74,788,0.5,354,2.2
+3116,2023,3,6,22,0,-5.1,1.03,0.041,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.328,74.61,132.11,0.96,0.74,788,0.5,356,2.3
+3117,2023,3,6,22,30,-5.4,1.03,0.041,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.328,76.32,136.37,0.96,0.74,788,0.5,357,2.2
+3118,2023,3,6,23,0,-5.6,1.03,0.041,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.327,75.3,139.96,0.96,0.74,788,0.5,358,2.2
+3119,2023,3,6,23,30,-5.9,1.03,0.041,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.327,77.04,142.7,0.96,0.74,788,0.5,179,2.1
+3120,2023,3,7,0,0,-6.1,1.03,0.041,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.326,76.72,144.36,0.96,0.74,788,0.5,1,2.1
+3121,2023,3,7,0,30,-6.3,1.03,0.041,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.326,77.9,144.79,0.96,0.74,788,0.5,5,2
+3122,2023,3,7,1,0,-6.5,1.03,0.041,0.62,0,0,0,0,4,-9.7,0,0,0,0,0.326,78.28,143.95,0.96,0.74,788,0.5,10,2
+3123,2023,3,7,1,30,-6.8,1.03,0.041,0.62,0,0,0,0,4,-9.7,0,0,0,0,0.327,80.1,141.91,0.96,0.74,788,0.5,18,2
+3124,2023,3,7,2,0,-7,1.03,0.041,0.62,0,0,0,0,5,-9.8,0,0,0,0,0.327,80.68,138.87,0.96,0.74,788,0.5,26,2
+3125,2023,3,7,2,30,-7.2,1.03,0.041,0.62,0,0,0,0,5,-9.8,0,0,0,0,0.327,81.93,135.04,0.96,0.74,788,0.5,33,2
+3126,2023,3,7,3,0,-7.5,1.03,0.04,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.327,83.04,130.6,0.96,0.74,788,0.5,40,2
+3127,2023,3,7,3,30,-7.7,1.03,0.04,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.328,84.34,125.73,0.96,0.74,788,0.5,45,2
+3128,2023,3,7,4,0,-7.9,1.03,0.04,0.62,0,0,0,0,4,-10,0,0,0,0,0.328,84.67,120.54,0.96,0.74,788,0.5,50,2
+3129,2023,3,7,4,30,-8,1.03,0.04,0.62,0,0,0,0,4,-10,0,0,0,0,0.33,85.33,115.12,0.96,0.74,788,0.5,57,2
+3130,2023,3,7,5,0,-8.2,1.03,0.04,0.62,0,0,0,0,7,-10.1,0,0,0,0,0.331,86.01,109.56,0.96,0.74,788,0.5,63,2.1
+3131,2023,3,7,5,30,-8.3,1.03,0.04,0.62,0,0,0,0,4,-10.1,0,0,0,0,0.332,86.68,103.91,0.96,0.74,788,0.5,67,2.1
+3132,2023,3,7,6,0,-8.4,1.04,0.04,0.62,0,0,0,0,5,-10.2,0,0,0,0,0.334,87,98.21,0.96,0.74,788,0.5,72,2.1
+3133,2023,3,7,6,30,-7.8,1.04,0.04,0.62,0,0,0,1,4,-10.2,0,0,14,0,0.336,83.04,92.51,0.96,0.74,788,0.5,75,2.2
+3134,2023,3,7,7,0,-7.3,1.05,0.04,0.62,25,332,44,7,5,-9.9,18,0,100,18,0.338,81.5,86.66,0.96,0.74,788,0.5,78,2.3
+3135,2023,3,7,7,30,-6.2,1.05,0.04,0.62,41,618,136,3,5,-9.9,73,100,43,88,0.34,74.9,81.19,0.96,0.74,788,0.5,81,1.9
+3136,2023,3,7,8,0,-5.1,1.04,0.041,0.62,54,761,241,0,4,-9.6,106,395,21,203,0.342,70.51,75.77,0.96,0.74,788,0.5,84,1.6
+3137,2023,3,7,8,30,-4.1,1.04,0.041,0.62,64,850,347,2,4,-9.6,160,81,32,187,0.344,65.4,70.52,0.96,0.74,788,0.4,139,1.2
+3138,2023,3,7,9,0,-3.1,1.04,0.042,0.62,72,909,449,3,8,-9.4,175,49,43,195,0.346,61.8,65.5,0.96,0.74,788,0.4,194,0.9
+3139,2023,3,7,9,30,-2.2,1.04,0.042,0.62,78,951,542,0,8,-9.4,252,83,0,292,0.348,57.81,60.81,0.96,0.74,788,0.4,212,1.8
+3140,2023,3,7,10,0,-1.4,1.03,0.04,0.62,83,981,624,0,8,-9,317,67,0,354,0.35,56.29,56.54,0.96,0.74,788,0.4,230,2.6
+3141,2023,3,7,10,30,-0.7,1.03,0.04,0.62,88,1002,694,2,8,-9,394,113,21,462,0.353,53.48,52.79,0.96,0.74,788,0.4,233,3.3
+3142,2023,3,7,11,0,0,1.02,0.038,0.62,90,1018,748,2,8,-8.8,427,188,29,549,0.356,51.74,49.7,0.96,0.74,788,0.4,237,3.9
+3143,2023,3,7,11,30,0.5,1.02,0.038,0.62,91,1028,787,0,8,-8.8,416,318,7,631,0.359,49.9,47.42,0.96,0.74,788,0.4,239,4.4
+3144,2023,3,7,12,0,1.1,1.03,0.036,0.62,92,1035,810,0,5,-8.7,418,450,7,730,0.363,48.08,46.05,0.95,0.74,787,0.4,241,5
+3145,2023,3,7,12,30,1.3,1.03,0.036,0.62,92,1037,816,0,5,-8.7,448,406,7,732,0.368,47.39,45.69,0.95,0.74,787,0.4,243,5.2
+3146,2023,3,7,13,0,1.6,1.04,0.033,0.62,89,1037,805,0,5,-8.8,408,434,0,708,0.372,45.85,46.36,0.95,0.74,787,0.4,244,5.4
+3147,2023,3,7,13,30,1.7,1.04,0.033,0.62,90,1025,776,0,5,-8.8,353,518,7,699,0.377,45.52,48.02,0.95,0.74,787,0.4,244,5.4
+3148,2023,3,7,14,0,1.8,0.88,0.042,0.62,92,1007,732,0,5,-9,283,625,14,680,0.382,44.56,50.57,0.95,0.74,787,0.4,245,5.3
+3149,2023,3,7,14,30,1.7,0.88,0.042,0.62,88,991,672,0,7,-9,181,768,14,634,0.385,44.88,53.87,0.95,0.74,787,0.4,245,5
+3150,2023,3,7,15,0,1.7,0.91,0.041,0.62,82,969,599,0,7,-9.1,169,754,21,571,0.388,44.66,57.79,0.95,0.74,787,0.4,245,4.7
+3151,2023,3,7,15,30,1.3,0.91,0.041,0.62,76,938,513,0,0,-9.1,76,938,0,513,0.39,45.96,62.2,0.95,0.74,787,0.4,245,4.1
+3152,2023,3,7,16,0,1,0.94,0.039,0.62,68,895,418,0,0,-8.7,139,642,7,390,0.391,48.25,67,0.95,0.74,787,0.4,246,3.5
+3153,2023,3,7,16,30,-0.1,0.94,0.039,0.62,59,828,314,0,4,-8.7,203,73,0,225,0.391,52.24,72.09,0.95,0.74,787,0.4,249,2.3
+3154,2023,3,7,17,0,-1.3,0.97,0.041,0.62,50,726,208,0,0,-7.2,72,499,0,181,0.391,64.43,77.4,0.95,0.65,787,0.4,252,1.2
+3155,2023,3,7,17,30,-1.7,0.97,0.041,0.62,36,551,105,1,0,-7.1,40,505,11,103,0.389,66.43,82.84,0.95,0.65,788,0.4,267,1
+3156,2023,3,7,18,0,-2.1,0.99,0.044,0.62,16,190,22,2,0,-9.3,17,147,25,21,0.388,57.97,88.28,0.96,0.65,788,0.4,282,0.8
+3157,2023,3,7,18,30,-2.4,0.99,0.044,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.385,59.27,94.21,0.96,0.65,788,0.4,316,0.8
+3158,2023,3,7,19,0,-2.8,0.99,0.048,0.62,0,0,0,0,5,-9.2,0,0,0,0,0.382,61.27,99.91,0.96,0.65,788,0.5,351,0.8
+3159,2023,3,7,19,30,-3.1,0.99,0.048,0.62,0,0,0,0,0,-9.2,0,0,0,0,0.38,62.65,105.58,0.96,0.65,788,0.5,184,0.8
+3160,2023,3,7,20,0,-3.4,0.99,0.056,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.378,68.82,111.2,0.97,0.65,788,0.5,18,0.9
+3161,2023,3,7,20,30,-3.3,0.99,0.056,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.376,68.31,116.7,0.97,0.65,788,0.5,27,0.9
+3162,2023,3,7,21,0,-3.2,0.99,0.061,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.375,70.52,122.04,0.97,0.65,788,0.5,35,0.9
+3163,2023,3,7,21,30,-3.2,0.99,0.061,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.373,70.52,127.11,0.97,0.65,788,0.5,41,0.9
+3164,2023,3,7,22,0,-3.1,0.99,0.058,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.372,71.4,131.84,0.97,0.65,788,0.5,47,0.9
+3165,2023,3,7,22,30,-3.1,0.99,0.058,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.371,71.4,136.07,0.97,0.65,788,0.5,52,0.8
+3166,2023,3,7,23,0,-3,0.99,0.055,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.369,71.66,139.64,0.96,0.65,788,0.6,57,0.7
+3167,2023,3,7,23,30,-3.1,0.99,0.055,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.368,72.19,142.34,0.96,0.65,788,0.6,65,0.7
+3168,2023,3,8,0,0,-3.1,1,0.051,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.367,71.63,143.98,0.96,0.65,787,0.6,72,0.6
+3169,2023,3,8,0,30,-3.1,1,0.051,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.366,71.63,144.4,0.96,0.65,787,0.6,87,0.6
+3170,2023,3,8,1,0,-3.1,1,0.046,0.62,0,0,0,0,7,-7.6,0,0,0,0,0.365,70.93,143.55,0.96,0.65,787,0.6,102,0.6
+3171,2023,3,8,1,30,-3.2,1,0.046,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.365,71.46,141.53,0.96,0.65,787,0.6,111,0.6
+3172,2023,3,8,2,0,-3.3,1.01,0.043,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.364,72.24,138.5,0.95,0.65,787,0.5,121,0.6
+3173,2023,3,8,2,30,-3.4,1.01,0.043,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.365,72.69,134.68,0.95,0.65,786,0.5,120,0.6
+3174,2023,3,8,3,0,-3.5,1.02,0.04,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.365,72.68,130.26,0.95,0.65,786,0.5,120,0.7
+3175,2023,3,8,3,30,-3.7,1.02,0.04,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.366,73.77,125.4,0.95,0.65,786,0.5,121,0.7
+3176,2023,3,8,4,0,-3.8,1.02,0.036,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.367,73.7,120.22,0.95,0.65,786,0.5,121,0.7
+3177,2023,3,8,4,30,-3.9,1.02,0.036,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.368,74.26,114.81,0.95,0.65,786,0.5,122,0.8
+3178,2023,3,8,5,0,-4.1,1.03,0.034,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.368,75.11,109.26,0.94,0.65,786,0.5,124,0.8
+3179,2023,3,8,5,30,-4.2,1.03,0.034,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.368,75.68,103.61,0.94,0.65,786,0.5,124,0.8
+3180,2023,3,8,6,0,-4.3,1.03,0.032,0.62,0,0,0,0,0,-8,0,0,0,0,0.367,75.62,97.91,0.94,0.65,786,0.5,124,0.8
+3181,2023,3,8,6,30,-3.6,1.03,0.032,0.62,0,0,0,0,0,-8,0,0,0,0,0.367,71.75,92.21,0.94,0.65,786,0.5,123,0.8
+3182,2023,3,8,7,0,-2.9,1.03,0.031,0.62,25,370,48,0,0,-6.9,25,370,0,48,0.366,73.65,86.38,0.94,0.65,786,0.5,123,0.9
+3183,2023,3,8,7,30,-1.6,1.03,0.031,0.62,38,653,142,0,0,-6.9,38,653,0,142,0.365,66.9,80.88,0.94,0.65,786,0.5,141,1
+3184,2023,3,8,8,0,-0.3,1.02,0.029,0.62,48,791,247,0,0,-7.7,48,791,0,247,0.365,57.26,75.46,0.94,0.65,786,0.5,159,1.1
+3185,2023,3,8,8,30,0.8,1.02,0.029,0.62,57,873,353,0,0,-7.7,57,873,0,353,0.364,52.88,70.19,0.94,0.65,786,0.5,181,1.9
+3186,2023,3,8,9,0,2,1.02,0.029,0.62,63,928,453,0,0,-7.8,63,928,0,453,0.363,48.36,65.17,0.93,0.65,786,0.5,202,2.6
+3187,2023,3,8,9,30,2.7,1.02,0.029,0.62,68,967,545,0,0,-7.8,68,967,0,545,0.363,46.01,60.46,0.93,0.65,786,0.5,205,3.3
+3188,2023,3,8,10,0,3.4,1.01,0.027,0.62,72,995,626,0,0,-7.9,72,995,0,626,0.363,43.39,56.18,0.93,0.65,786,0.5,208,3.9
+3189,2023,3,8,10,30,4,1.01,0.027,0.62,77,1014,695,0,0,-7.9,77,1014,0,695,0.363,41.54,52.42,0.93,0.65,785,0.5,210,4.4
+3190,2023,3,8,11,0,4.6,1.01,0.027,0.62,79,1028,749,0,0,-8.1,79,1028,0,749,0.362,39.11,49.32,0.93,0.65,785,0.5,212,4.9
+3191,2023,3,8,11,30,5,1.01,0.027,0.62,82,1036,788,0,0,-8.1,82,1036,0,788,0.362,38.03,47.02,0.93,0.65,785,0.5,213,5.3
+3192,2023,3,8,12,0,5.4,1.01,0.028,0.62,83,1040,810,0,0,-8.3,83,1040,0,810,0.361,36.45,45.66,0.93,0.65,784,0.5,214,5.8
+3193,2023,3,8,12,30,5.6,1.01,0.028,0.62,84,1038,814,0,0,-8.3,90,1029,0,814,0.359,35.95,45.3,0.94,0.65,784,0.5,215,6.1
+3194,2023,3,8,13,0,5.8,1,0.031,0.62,85,1032,802,0,0,-8.4,85,1032,0,802,0.358,35.2,45.99,0.94,0.65,784,0.5,215,6.5
+3195,2023,3,8,13,30,5.8,1,0.031,0.62,84,1024,774,0,0,-8.4,84,1024,0,774,0.357,35.16,47.67,0.94,0.65,783,0.5,217,6.7
+3196,2023,3,8,14,0,5.7,1.01,0.035,0.62,83,1011,730,0,0,-8.4,83,1011,7,730,0.355,35.41,50.24,0.94,0.65,783,0.5,218,7
+3197,2023,3,8,14,30,5.4,1.01,0.035,0.62,82,991,671,0,0,-8.4,82,991,7,671,0.355,36.16,53.56,0.95,0.65,783,0.5,220,7.1
+3198,2023,3,8,15,0,5.1,1,0.041,0.62,80,964,598,0,0,-8.4,116,865,14,581,0.354,37,57.5,0.95,0.65,783,0.5,222,7.2
+3199,2023,3,8,15,30,4.5,1,0.041,0.62,76,926,512,0,0,-8.4,76,926,0,512,0.354,38.58,61.94,0.95,0.65,783,0.5,223,6.6
+3200,2023,3,8,16,0,3.8,0.99,0.052,0.62,72,871,416,0,0,-8.1,72,871,0,416,0.354,41.6,66.75,0.96,0.65,783,0.5,224,6.1
+3201,2023,3,8,16,30,2.5,0.99,0.052,0.62,66,789,312,0,0,-8.1,66,789,0,312,0.355,45.6,71.86,0.96,0.65,783,0.5,225,4.9
+3202,2023,3,8,17,0,1.2,0.98,0.068,0.62,58,663,205,0,7,-7.1,76,538,14,195,0.355,54.04,77.18,0.97,0.66,783,0.6,226,3.8
+3203,2023,3,8,17,30,0.3,0.98,0.068,0.62,43,469,103,5,7,-7.1,47,138,86,65,0.356,57.66,82.63,0.97,0.66,783,0.6,227,3.3
+3204,2023,3,8,18,0,-0.6,0.96,0.081,0.62,19,150,24,6,7,-6.4,11,5,82,11,0.357,65,88.09,0.97,0.66,783,0.6,227,2.8
+3205,2023,3,8,18,30,-0.9,0.96,0.081,0.62,0,0,0,0,8,-6.4,0,0,0,0,0.358,66.44,94.01,0.97,0.66,783,0.6,227,2.5
+3206,2023,3,8,19,0,-1.2,0.95,0.079,0.62,0,0,0,0,8,-5.8,0,0,0,0,0.358,70.85,99.7,0.97,0.66,784,0.6,227,2.2
+3207,2023,3,8,19,30,-1.5,0.95,0.079,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.358,72.43,105.37,0.97,0.66,784,0.6,227,1.9
+3208,2023,3,8,20,0,-1.8,0.96,0.08,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.359,75.77,110.99,0.97,0.66,784,0.6,226,1.5
+3209,2023,3,8,20,30,-2,0.96,0.08,0.62,0,0,0,0,6,-5.5,0,0,0,0,0.359,76.89,116.48,0.97,0.66,784,0.6,228,1.4
+3210,2023,3,8,21,0,-2.1,0.97,0.086,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.359,79.28,121.8,0.97,0.66,784,0.6,230,1.4
+3211,2023,3,8,21,30,-2.3,0.97,0.086,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.359,80.46,126.86,0.97,0.66,784,0.6,239,1.6
+3212,2023,3,8,22,0,-2.4,0.99,0.091,0.62,0,0,0,0,7,-5,0,0,0,0,0.36,82.47,131.56,0.97,0.66,784,0.6,248,1.7
+3213,2023,3,8,22,30,-2.5,0.99,0.091,0.62,0,0,0,0,4,-5,0,0,0,0,0.36,83.08,135.77,0.97,0.66,784,0.6,260,2.1
+3214,2023,3,8,23,0,-2.7,1.03,0.103,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.361,85.11,139.31,0.98,0.66,785,0.6,272,2.4
+3215,2023,3,8,23,30,-2.9,1.03,0.103,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.361,86.38,141.99,0.97,0.66,785,0.6,281,2.4
+3216,2023,3,9,0,0,-3.1,1.09,0.087,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.362,85.31,143.6,0.97,0.66,785,0.6,290,2.5
+3217,2023,3,9,0,30,-3.4,1.09,0.087,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.361,87.35,144.01,0.97,0.66,786,0.5,293,2.1
+3218,2023,3,9,1,0,-3.8,1.13,0.06,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.36,83.43,143.16,0.96,0.66,786,0.5,295,1.7
+3219,2023,3,9,1,30,-4,1.13,0.06,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.357,84.8,141.14,0.96,0.66,787,0.5,285,1.5
+3220,2023,3,9,2,0,-4.2,1.15,0.047,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.354,81.78,138.13,0.95,0.66,787,0.4,275,1.2
+3221,2023,3,9,2,30,-4.4,1.15,0.047,0.62,0,0,0,0,4,-6.8,0,0,0,0,0.351,83.02,134.32,0.95,0.66,787,0.4,259,1.2
+3222,2023,3,9,3,0,-4.6,1.15,0.039,0.62,0,0,0,0,4,-7,0,0,0,0,0.347,83.36,129.92,0.95,0.66,788,0.4,242,1.3
+3223,2023,3,9,3,30,-4.9,1.15,0.039,0.62,0,0,0,0,0,-7,0,0,0,0,0.345,85.27,125.07,0.94,0.66,788,0.4,235,1.4
+3224,2023,3,9,4,0,-5.2,1.15,0.034,0.62,0,0,0,0,0,-7,0,0,0,0,0.342,87.28,119.9,0.94,0.66,788,0.4,228,1.6
+3225,2023,3,9,4,30,-5.4,1.15,0.034,0.62,0,0,0,0,0,-7,0,0,0,0,0.339,88.73,114.5,0.94,0.66,789,0.4,227,1.7
+3226,2023,3,9,5,0,-5.6,1.14,0.03,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.336,90.76,108.95,0.93,0.66,789,0.4,225,1.9
+3227,2023,3,9,5,30,-5.7,1.14,0.03,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.334,91.45,103.3,0.93,0.66,789,0.4,227,2.1
+3228,2023,3,9,6,0,-5.7,1.15,0.026,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.332,91.41,97.61,0.93,0.66,790,0.4,228,2.4
+3229,2023,3,9,6,30,-4.8,1.15,0.026,0.62,4,40,3,1,0,-6.9,3,21,14,2,0.331,85.39,91.91,0.93,0.66,790,0.4,230,2.8
+3230,2023,3,9,7,0,-3.9,1.17,0.024,0.62,24,465,56,1,0,-7.2,21,383,18,47,0.331,77.99,86.08,0.93,0.66,790,0.3,232,3.2
+3231,2023,3,9,7,30,-2.9,1.17,0.024,0.62,37,705,152,0,0,-7.2,38,662,7,146,0.332,72.48,80.58,0.92,0.66,791,0.3,241,3.4
+3232,2023,3,9,8,0,-1.8,1.17,0.02,0.62,45,835,259,0,0,-9,45,835,0,259,0.332,58.11,75.14,0.92,0.66,791,0.3,250,3.5
+3233,2023,3,9,8,30,-1.1,1.17,0.02,0.62,52,910,365,0,0,-9,52,910,0,365,0.333,55.21,69.87,0.92,0.66,791,0.3,247,3.7
+3234,2023,3,9,9,0,-0.3,1.18,0.018,0.62,57,959,465,0,0,-10.8,57,959,0,465,0.334,45.14,64.83,0.92,0.66,791,0.4,244,3.9
+3235,2023,3,9,9,30,0.4,1.18,0.018,0.62,61,991,555,0,0,-10.8,61,991,0,555,0.335,42.91,60.12,0.92,0.66,791,0.4,241,4.3
+3236,2023,3,9,10,0,1.1,1.18,0.018,0.62,66,1015,636,0,0,-11.6,66,1015,0,636,0.337,38.28,55.81,0.92,0.66,792,0.4,238,4.7
+3237,2023,3,9,10,30,1.7,1.18,0.018,0.62,69,1033,704,0,0,-11.6,69,1033,0,704,0.338,36.67,52.04,0.92,0.66,792,0.4,237,5
+3238,2023,3,9,11,0,2.3,1.16,0.017,0.62,71,1045,758,0,0,-11.8,71,1045,0,758,0.34,34.47,48.93,0.92,0.66,791,0.4,236,5.3
+3239,2023,3,9,11,30,2.8,1.16,0.017,0.62,73,1054,797,0,0,-11.8,73,1054,0,797,0.341,33.27,46.63,0.92,0.66,791,0.4,236,5.5
+3240,2023,3,9,12,0,3.2,1.15,0.017,0.62,74,1059,819,0,0,-11.7,74,1059,0,819,0.342,32.65,45.26,0.92,0.66,791,0.4,236,5.7
+3241,2023,3,9,12,30,3.5,1.15,0.017,0.62,73,1060,824,0,0,-11.7,73,1060,0,824,0.342,31.97,44.91,0.92,0.66,791,0.4,235,5.7
+3242,2023,3,9,13,0,3.8,1.12,0.017,0.62,73,1058,813,0,0,-11.4,73,1058,0,813,0.341,31.92,45.61,0.92,0.66,791,0.4,234,5.7
+3243,2023,3,9,13,30,3.9,1.12,0.017,0.62,71,1053,785,0,0,-11.5,71,1053,0,785,0.341,31.65,47.31,0.92,0.66,790,0.4,232,5.5
+3244,2023,3,9,14,0,4.1,1.1,0.016,0.62,69,1044,741,0,0,-11.2,135,913,7,723,0.34,31.83,49.9,0.92,0.66,790,0.4,230,5.3
+3245,2023,3,9,14,30,4.1,1.1,0.016,0.62,66,1029,682,0,7,-11.2,255,602,0,615,0.34,31.83,53.25,0.92,0.66,790,0.4,228,5.1
+3246,2023,3,9,15,0,4,1.08,0.016,0.62,62,1010,609,0,7,-11,307,305,0,472,0.339,32.57,57.22,0.92,0.66,789,0.4,225,4.9
+3247,2023,3,9,15,30,3.7,1.08,0.016,0.62,58,981,524,0,7,-11,287,254,0,408,0.339,33.26,61.67,0.92,0.66,789,0.4,222,4.5
+3248,2023,3,9,16,0,3.3,1.05,0.016,0.62,53,942,429,0,0,-10.2,92,804,0,413,0.339,36.4,66.5,0.92,0.66,789,0.4,218,4.1
+3249,2023,3,9,16,30,1.5,1.05,0.016,0.62,49,883,327,0,0,-10.2,49,883,0,327,0.34,41.37,71.62,0.92,0.66,789,0.4,212,3
+3250,2023,3,9,17,0,-0.4,0.99,0.018,0.62,41,792,220,0,0,-8,41,792,0,220,0.34,56.52,76.95,0.92,0.65,789,0.4,206,1.9
+3251,2023,3,9,17,30,-1.9,0.99,0.018,0.62,31,641,116,0,0,-8,31,641,0,116,0.34,63.08,82.42,0.92,0.65,789,0.4,200,1.9
+3252,2023,3,9,18,0,-3.4,0.97,0.019,0.62,18,298,29,0,0,-9.4,18,298,0,29,0.341,63.41,87.89,0.92,0.65,789,0.4,194,1.9
+3253,2023,3,9,18,30,-3.4,0.97,0.019,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.34,63.41,93.8,0.92,0.65,789,0.4,192,2
+3254,2023,3,9,19,0,-3.5,0.94,0.019,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.339,64.74,99.49,0.93,0.65,789,0.4,189,2.1
+3255,2023,3,9,19,30,-3.5,0.94,0.019,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.338,64.74,105.17,0.93,0.65,789,0.4,189,2.1
+3256,2023,3,9,20,0,-3.5,0.93,0.022,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.337,66.6,110.77,0.93,0.65,788,0.4,189,2.1
+3257,2023,3,9,20,30,-3.5,0.93,0.022,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.335,66.6,116.26,0.94,0.65,788,0.4,192,2
+3258,2023,3,9,21,0,-3.5,0.98,0.024,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.334,68.8,121.56,0.94,0.65,788,0.4,195,1.9
+3259,2023,3,9,21,30,-3.4,0.98,0.024,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.333,68.29,126.61,0.94,0.65,788,0.4,194,1.9
+3260,2023,3,9,22,0,-3.3,0.97,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.331,69.36,131.29,0.94,0.65,788,0.4,193,1.9
+3261,2023,3,9,22,30,-3.3,0.97,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.329,69.36,135.47,0.94,0.65,788,0.5,189,2
+3262,2023,3,9,23,0,-3.3,0.93,0.026,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.327,68.73,138.98,0.94,0.65,787,0.5,185,2.1
+3263,2023,3,9,23,30,-3.1,0.93,0.026,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.324,67.72,141.63,0.94,0.65,787,0.5,183,2.3
+3264,2023,3,10,0,0,-3,0.92,0.027,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.321,67.01,143.23,0.94,0.65,786,0.5,181,2.6
+3265,2023,3,10,0,30,-2.8,0.92,0.027,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.318,66.02,143.62,0.94,0.65,786,0.6,182,2.9
+3266,2023,3,10,1,0,-2.6,0.96,0.024,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.315,66.11,142.76,0.94,0.65,786,0.7,184,3.1
+3267,2023,3,10,1,30,-2.5,0.96,0.024,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.313,65.62,140.75,0.95,0.65,786,0.7,187,3.4
+3268,2023,3,10,2,0,-2.4,1,0.026,0.62,0,0,0,0,6,-7.6,0,0,0,0,0.31,67.42,137.75,0.95,0.65,785,0.8,190,3.7
+3269,2023,3,10,2,30,-2.5,1,0.026,0.62,0,0,0,0,6,-7.6,0,0,0,0,0.31,67.92,133.96,0.95,0.65,785,0.8,192,3.9
+3270,2023,3,10,3,0,-2.6,1.08,0.035,0.62,0,0,0,0,6,-7.2,0,0,0,0,0.309,70.42,129.57,0.95,0.65,785,0.8,194,4.2
+3271,2023,3,10,3,30,-2.3,1.08,0.035,0.62,0,0,0,0,9,-7.2,0,0,0,0,0.308,68.87,124.74,0.95,0.65,785,0.8,200,5.4
+3272,2023,3,10,4,0,-2.1,1.1,0.039,0.62,0,0,0,0,6,-8,0,0,0,0,0.308,63.84,119.58,0.95,0.65,784,0.8,206,6.6
+3273,2023,3,10,4,30,-2,1.1,0.039,0.62,0,0,0,0,6,-8,0,0,0,0,0.306,63.37,114.19,0.95,0.65,784,0.8,206,6.7
+3274,2023,3,10,5,0,-1.9,1.1,0.039,0.62,0,0,0,0,6,-7.6,0,0,0,0,0.304,65.25,108.65,0.95,0.65,784,0.9,206,6.7
+3275,2023,3,10,5,30,-1.8,1.1,0.039,0.62,0,0,0,0,6,-7.6,0,0,0,0,0.302,64.77,103,0.95,0.65,784,0.9,206,6.6
+3276,2023,3,10,6,0,-1.8,1.1,0.041,0.62,0,0,0,0,6,-6.6,0,0,0,0,0.3,69.79,97.31,0.96,0.65,784,1,207,6.5
+3277,2023,3,10,6,30,-1.4,1.1,0.041,0.62,4,30,3,2,7,-6.6,1,0,29,1,0.298,67.77,91.6,0.96,0.65,784,1,205,6.6
+3278,2023,3,10,7,0,-1.1,1.08,0.039,0.62,27,385,55,7,7,-5.6,24,0,100,24,0.297,71.24,85.79,0.96,0.65,784,1,204,6.7
+3279,2023,3,10,7,30,-0.4,1.08,0.039,0.62,42,622,147,2,7,-5.6,69,10,29,71,0.296,67.69,80.27,0.96,0.65,784,1,204,7
+3280,2023,3,10,8,0,0.3,1.06,0.039,0.62,53,755,251,0,7,-5,85,6,0,87,0.296,67.81,74.83,0.95,0.65,784,0.9,204,7.2
+3281,2023,3,10,8,30,1,1.06,0.039,0.62,62,839,355,0,7,-5,171,23,0,179,0.295,64.47,69.54,0.95,0.65,784,0.9,205,7.7
+3282,2023,3,10,9,0,1.7,1.03,0.037,0.62,69,897,455,0,6,-4.5,199,25,0,210,0.293,63.21,64.5,0.95,0.65,784,0.8,206,8.1
+3283,2023,3,10,9,30,2,1.03,0.037,0.62,75,932,544,0,6,-4.5,236,61,0,267,0.292,61.87,59.77,0.95,0.65,784,0.9,206,8.3
+3284,2023,3,10,10,0,2.3,1.03,0.038,0.62,80,958,623,0,6,-4.1,305,98,0,361,0.29,62.71,55.45,0.95,0.65,784,0.9,206,8.5
+3285,2023,3,10,10,30,2.4,1.03,0.038,0.62,84,974,688,0,6,-4.1,245,5,0,248,0.289,62.26,51.66,0.96,0.65,784,1,205,8.5
+3286,2023,3,10,11,0,2.5,1.04,0.04,0.62,88,985,740,0,6,-3,294,6,0,298,0.288,67.18,48.55,0.96,0.65,784,1.1,203,8.5
+3287,2023,3,10,11,30,3.1,1.04,0.04,0.62,89,994,776,0,9,-3,327,10,0,334,0.288,64.3,46.24,0.96,0.65,783,1.1,202,8.8
+3288,2023,3,10,12,0,3.6,1.07,0.036,0.62,89,1001,798,0,9,-1.9,381,26,0,399,0.287,67.41,44.87,0.95,0.65,782,1.1,200,9.1
+3289,2023,3,10,12,30,4.3,1.07,0.036,0.62,87,1004,803,0,9,-1.9,368,17,0,380,0.286,64.18,44.53,0.95,0.65,782,1.1,201,9.4
+3290,2023,3,10,13,0,5,1.06,0.032,0.62,85,1004,792,0,9,-1.1,345,12,0,353,0.285,64.6,45.24,0.95,0.65,781,1.1,203,9.7
+3291,2023,3,10,13,30,5.2,1.06,0.032,0.62,84,999,766,0,9,-1.1,304,7,0,309,0.285,63.71,46.96,0.95,0.65,781,1.1,203,9.7
+3292,2023,3,10,14,0,5.4,1.06,0.031,0.62,82,989,723,0,6,-0.7,265,4,0,268,0.284,64.75,49.57,0.96,0.65,780,1.1,204,9.7
+3293,2023,3,10,14,30,5.2,1.06,0.031,0.62,78,973,664,0,6,-0.7,230,5,0,233,0.283,65.65,52.94,0.96,0.65,780,1.1,202,9.6
+3294,2023,3,10,15,0,5,1.08,0.031,0.62,74,952,593,0,6,-0.5,222,33,0,240,0.282,67.68,56.93,0.96,0.65,779,1.1,200,9.5
+3295,2023,3,10,15,30,4.5,1.08,0.031,0.62,70,918,509,0,7,-0.5,184,294,4,325,0.281,70.08,61.41,0.96,0.65,779,1.1,199,9.2
+3296,2023,3,10,16,0,4.1,1.07,0.034,0.62,64,872,415,0,6,-0.1,150,218,0,238,0.28,74.1,66.26,0.96,0.65,779,1.2,197,8.9
+3297,2023,3,10,16,30,3.2,1.07,0.034,0.62,57,809,315,0,4,-0.1,122,21,0,129,0.28,78.94,71.39,0.96,0.65,779,1.2,196,8.8
+3298,2023,3,10,17,0,2.4,1.06,0.037,0.62,49,711,212,0,4,0.4,82,17,0,86,0.279,86.52,76.73,0.96,0.65,779,1.2,194,8.7
+3299,2023,3,10,17,30,1.9,1.06,0.037,0.62,36,558,112,4,4,0.4,37,26,54,41,0.28,89.54,82.21,0.96,0.65,778,1.1,193,8.8
+3300,2023,3,10,18,0,1.4,1.05,0.034,0.62,19,242,29,6,7,0.6,11,0,86,11,0.28,94.41,87.7,0.96,0.65,778,1.1,192,8.8
+3301,2023,3,10,18,30,1.1,1.05,0.034,0.62,0,0,0,0,7,0.6,0,0,0,0,0.28,96.46,93.59,0.96,0.65,778,1.1,194,8.3
+3302,2023,3,10,19,0,0.9,1.03,0.03,0.62,0,0,0,0,7,0.9,0,0,0,0,0.28,100,99.29,0.96,0.65,778,1.1,196,7.9
+3303,2023,3,10,19,30,0.9,1.03,0.03,0.62,0,0,0,0,7,0.9,0,0,0,0,0.28,100,104.96,0.96,0.65,778,1.1,202,7.3
+3304,2023,3,10,20,0,0.8,1.01,0.028,0.62,0,0,0,0,6,0.8,0,0,0,0,0.28,100,110.56,0.96,0.65,778,1.2,207,6.6
+3305,2023,3,10,20,30,0.7,1.01,0.028,0.62,0,0,0,0,6,0.7,0,0,0,0,0.28,100,116.03,0.96,0.65,778,1.2,216,5.5
+3306,2023,3,10,21,0,0.5,0.98,0.027,0.62,0,0,0,0,6,0.5,0,0,0,0,0.28,100,121.32,0.95,0.65,779,1.2,224,4.4
+3307,2023,3,10,21,30,0.1,0.98,0.027,0.62,0,0,0,0,7,0.1,0,0,0,0,0.28,100,126.35,0.95,0.65,779,1.1,231,3.5
+3308,2023,3,10,22,0,-0.4,0.95,0.023,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.28,100,131.01,0.94,0.65,779,1,238,2.6
+3309,2023,3,10,22,30,-0.5,0.95,0.023,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.281,100,135.17,0.94,0.65,780,1,242,2.2
+3310,2023,3,10,23,0,-0.7,0.93,0.024,0.62,0,0,0,0,7,-0.7,0,0,0,0,0.282,100,138.65,0.94,0.65,780,0.9,246,1.7
+3311,2023,3,10,23,30,-0.9,0.93,0.024,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.281,100,141.28,0.94,0.65,780,0.8,264,1.6
+3312,2023,3,11,0,0,-1.1,0.92,0.022,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.281,100,142.85,0.93,0.65,781,0.8,283,1.4
+3313,2023,3,11,0,30,-1.2,0.92,0.022,0.62,0,0,0,0,7,-1.2,0,0,0,0,0.28,100,143.22,0.93,0.65,781,0.7,296,1.5
+3314,2023,3,11,1,0,-1.4,0.91,0.02,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.279,96.34,142.36,0.93,0.65,781,0.6,310,1.6
+3315,2023,3,11,1,30,-1.6,0.91,0.02,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.278,97.76,140.36,0.92,0.65,781,0.6,314,1.8
+3316,2023,3,11,2,0,-1.8,0.91,0.018,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.278,89.45,137.37,0.92,0.65,782,0.5,318,1.9
+3317,2023,3,11,2,30,-2.1,0.91,0.018,0.62,0,0,0,0,4,-3.3,0,0,0,0,0.278,91.45,133.6,0.92,0.65,782,0.5,318,2
+3318,2023,3,11,3,0,-2.4,0.91,0.017,0.62,0,0,0,0,4,-5,0,0,0,0,0.279,82.22,129.22,0.91,0.65,782,0.4,319,2.1
+3319,2023,3,11,3,30,-2.8,0.91,0.017,0.62,0,0,0,0,4,-5,0,0,0,0,0.282,84.69,124.4,0.91,0.65,782,0.4,320,2
+3320,2023,3,11,4,0,-3.2,0.9,0.016,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.284,78.75,119.25,0.9,0.65,783,0.3,321,1.9
+3321,2023,3,11,4,30,-3.9,0.9,0.016,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.286,82.98,113.88,0.9,0.65,783,0.3,321,1.7
+3322,2023,3,11,5,0,-4.7,0.85,0.014,0.62,0,0,0,0,5,-7.8,0,0,0,0,0.288,79.08,108.34,0.89,0.65,783,0.3,320,1.5
+3323,2023,3,11,5,30,-4.9,0.85,0.014,0.62,0,0,0,0,4,-7.8,0,0,0,0,0.286,80.29,102.7,0.89,0.65,783,0.3,320,1.4
+3324,2023,3,11,6,0,-5.2,0.79,0.013,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.285,77.12,97,0.89,0.65,784,0.2,319,1.3
+3325,2023,3,11,6,30,-4,0.79,0.013,0.62,5,57,4,3,4,-8.6,2,0,39,2,0.284,70.46,91.3,0.89,0.65,784,0.2,319,1.8
+3326,2023,3,11,7,0,-2.9,0.76,0.012,0.62,24,563,68,7,8,-9,25,1,100,25,0.284,62.82,85.48,0.89,0.65,784,0.2,318,2.4
+3327,2023,3,11,7,30,-2,0.76,0.012,0.62,33,772,168,1,4,-9,96,70,14,108,0.285,58.77,79.96,0.89,0.65,784,0.2,320,2.8
+3328,2023,3,11,8,0,-1.1,0.75,0.012,0.62,41,884,277,0,4,-10.1,173,40,0,184,0.286,50.54,74.51,0.89,0.65,784,0.2,322,3.2
+3329,2023,3,11,8,30,-0.4,0.75,0.012,0.62,47,952,385,0,4,-10.1,235,162,0,292,0.287,48.08,69.22,0.89,0.65,785,0.2,321,2.9
+3330,2023,3,11,9,0,0.2,0.76,0.012,0.62,53,998,488,0,4,-10.7,242,389,0,412,0.289,43.61,64.16,0.89,0.65,785,0.2,320,2.7
+3331,2023,3,11,9,30,0.9,0.76,0.012,0.62,57,1026,579,0,0,-10.7,57,1026,0,579,0.29,41.46,59.42,0.89,0.65,785,0.2,313,2.5
+3332,2023,3,11,10,0,1.6,0.78,0.012,0.62,60,1043,657,0,0,-11.3,60,1043,0,657,0.292,37.84,55.09,0.89,0.65,785,0.3,305,2.2
+3333,2023,3,11,10,30,2.3,0.78,0.012,0.62,64,1054,723,0,0,-11.3,64,1054,0,723,0.293,36,51.29,0.89,0.65,785,0.3,294,2.3
+3334,2023,3,11,11,0,2.9,0.8,0.013,0.62,66,1066,777,0,0,-11.5,66,1066,0,777,0.295,33.84,48.16,0.89,0.65,785,0.3,282,2.3
+3335,2023,3,11,11,30,3.5,0.8,0.013,0.62,67,1074,815,0,0,-11.5,67,1074,0,815,0.296,32.43,45.84,0.89,0.65,785,0.3,275,2.6
+3336,2023,3,11,12,0,4.1,0.84,0.013,0.62,69,1077,838,0,0,-11.9,69,1077,0,838,0.297,30.08,44.47,0.9,0.65,784,0.3,268,2.8
+3337,2023,3,11,12,30,4.5,0.84,0.013,0.62,69,1079,843,0,0,-11.9,69,1079,0,843,0.298,29.25,44.13,0.89,0.65,784,0.3,263,3.2
+3338,2023,3,11,13,0,5,0.88,0.013,0.62,68,1076,831,0,0,-12.3,68,1076,0,831,0.299,27.46,44.86,0.89,0.65,784,0.3,258,3.5
+3339,2023,3,11,13,30,5.2,0.88,0.013,0.62,68,1070,803,0,0,-12.3,68,1070,0,803,0.299,27.08,46.6,0.9,0.65,784,0.3,255,3.7
+3340,2023,3,11,14,0,5.4,0.9,0.014,0.62,66,1061,759,0,0,-12.5,66,1061,0,759,0.299,26.23,49.24,0.9,0.65,784,0.3,253,3.9
+3341,2023,3,11,14,30,5.3,0.9,0.014,0.62,65,1047,700,0,0,-12.5,65,1047,0,700,0.3,26.41,52.63,0.9,0.65,784,0.3,252,4
+3342,2023,3,11,15,0,5.2,0.91,0.015,0.62,61,1027,626,0,0,-12.4,61,1027,0,626,0.3,26.82,56.65,0.91,0.65,784,0.3,251,4
+3343,2023,3,11,15,30,4.8,0.91,0.015,0.62,58,999,540,0,0,-12.4,58,999,0,540,0.301,27.58,61.14,0.91,0.65,784,0.3,252,3.8
+3344,2023,3,11,16,0,4.3,0.92,0.016,0.62,54,959,444,0,0,-11.1,54,959,0,444,0.302,31.7,66.01,0.91,0.65,784,0.4,252,3.5
+3345,2023,3,11,16,30,2.6,0.92,0.016,0.62,48,899,338,0,0,-11.1,48,899,0,338,0.302,35.73,71.16,0.91,0.65,784,0.4,255,2.5
+3346,2023,3,11,17,0,0.9,0.92,0.016,0.62,41,810,230,0,0,-7.5,73,577,14,208,0.303,53.4,76.51,0.91,0.69,784,0.4,257,1.5
+3347,2023,3,11,17,30,-0.8,0.92,0.016,0.62,33,664,125,3,4,-7.5,64,241,68,98,0.303,60.4,82,0.91,0.69,784,0.4,271,1.4
+3348,2023,3,11,18,0,-2.4,0.93,0.017,0.62,20,323,34,6,8,-9.4,22,3,86,22,0.302,58.81,87.5,0.91,0.69,785,0.4,284,1.3
+3349,2023,3,11,18,30,-3.2,0.93,0.017,0.62,0,0,0,0,8,-9.4,0,0,0,0,0.302,62.41,93.39,0.92,0.69,785,0.4,296,1.2
+3350,2023,3,11,19,0,-3.9,0.94,0.019,0.62,0,0,0,0,8,-9.1,0,0,0,0,0.302,66.99,99.08,0.92,0.69,785,0.4,307,1.1
+3351,2023,3,11,19,30,-4.1,0.94,0.019,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.301,68.09,104.75,0.92,0.69,786,0.4,318,1.1
+3352,2023,3,11,20,0,-4.3,0.95,0.022,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.301,70.48,110.34,0.93,0.69,786,0.4,329,1
+3353,2023,3,11,20,30,-4.3,0.95,0.022,0.62,0,0,0,0,4,-8.9,0,0,0,0,0.301,70.48,115.81,0.93,0.69,786,0.4,165,1
+3354,2023,3,11,21,0,-4.4,0.95,0.023,0.62,0,0,0,0,8,-8.8,0,0,0,0,0.301,71.5,121.09,0.93,0.69,787,0.4,1,1.1
+3355,2023,3,11,21,30,-4.7,0.95,0.023,0.62,0,0,0,0,8,-8.8,0,0,0,0,0.301,73.13,126.1,0.93,0.69,787,0.4,15,1.1
+3356,2023,3,11,22,0,-5,0.95,0.022,0.62,0,0,0,0,8,-8.9,0,0,0,0,0.301,74.15,130.73,0.92,0.69,787,0.4,29,1.2
+3357,2023,3,11,22,30,-5.4,0.95,0.022,0.62,0,0,0,0,8,-8.9,0,0,0,0,0.3,76.43,134.86,0.92,0.69,787,0.4,37,1.3
+3358,2023,3,11,23,0,-5.8,0.95,0.022,0.62,0,0,0,0,8,-9.1,0,0,0,0,0.3,77.34,138.32,0.92,0.69,787,0.4,44,1.4
+3359,2023,3,11,23,30,-6.1,0.95,0.022,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.299,79.13,140.92,0.92,0.69,787,0.4,49,1.5
+3360,2023,3,12,0,0,-6.4,0.95,0.021,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.299,79.45,142.47,0.92,0.69,787,0.4,54,1.6
+3361,2023,3,12,0,30,-6.6,0.95,0.021,0.62,0,0,0,0,8,-9.4,0,0,0,0,0.299,80.68,142.83,0.92,0.69,787,0.4,57,1.7
+3362,2023,3,12,1,0,-6.8,0.95,0.019,0.62,0,0,0,0,4,-9.6,0,0,0,0,0.299,80.72,141.97,0.92,0.69,787,0.4,60,1.9
+3363,2023,3,12,1,30,-7,0.95,0.019,0.62,0,0,0,0,4,-9.6,0,0,0,0,0.299,81.97,139.97,0.92,0.69,787,0.4,64,1.7
+3364,2023,3,12,2,0,-7.1,0.96,0.019,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.3,82.81,136.99,0.92,0.69,787,0.4,68,1.6
+3365,2023,3,12,2,30,-7,0.96,0.019,0.62,0,0,0,0,8,-9.5,0,0,0,0,0.301,82.18,133.23,0.92,0.69,787,0.5,76,1.3
+3366,2023,3,12,3,0,-7,0.98,0.019,0.62,0,0,0,0,8,-9.3,0,0,0,0,0.302,83.67,128.87,0.93,0.69,787,0.5,84,1
+3367,2023,3,12,3,30,-6.9,0.98,0.019,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.304,83.03,124.06,0.93,0.69,787,0.5,87,1
+3368,2023,3,12,4,0,-6.7,0.99,0.019,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.305,83.01,118.93,0.93,0.69,788,0.6,89,0.9
+3369,2023,3,12,4,30,-6.4,0.99,0.019,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.307,81.12,113.56,0.93,0.69,788,0.6,90,1
+3370,2023,3,12,5,0,-6,0.99,0.018,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.308,78.33,108.03,0.93,0.69,788,0.6,91,1.1
+3371,2023,3,12,5,30,-5.6,0.99,0.018,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.308,75.98,102.39,0.93,0.69,788,0.6,88,1
+3372,2023,3,12,6,0,-5.3,1,0.019,0.62,0,0,0,0,5,-8.9,0,0,0,0,0.308,75.64,96.7,0.93,0.69,788,0.6,85,0.9
+3373,2023,3,12,6,30,-4.6,1,0.019,0.62,8,87,6,3,4,-8.9,2,0,43,2,0.308,71.74,90.99,0.93,0.69,788,0.6,88,0.9
+3374,2023,3,12,7,0,-3.9,1.01,0.02,0.62,26,495,68,7,4,-8.7,16,0,100,16,0.308,69.11,85.18,0.94,0.69,788,0.7,90,1
+3375,2023,3,12,7,30,-2.8,1.01,0.02,0.62,38,700,164,1,4,-8.7,26,0,14,26,0.308,63.67,79.65,0.94,0.69,788,0.7,135,0.7
+3376,2023,3,12,8,0,-1.8,1.02,0.023,0.62,49,812,270,0,4,-8.7,21,0,0,21,0.308,59.43,74.19,0.94,0.69,788,0.7,179,0.5
+3377,2023,3,12,8,30,-0.7,1.02,0.023,0.62,57,883,375,0,4,-8.7,66,0,0,66,0.309,54.83,68.89,0.94,0.69,788,0.7,207,1
+3378,2023,3,12,9,0,0.4,1.04,0.025,0.62,63,931,474,1,4,-7.7,74,0,11,74,0.309,54.62,63.82,0.95,0.69,788,0.7,236,1.6
+3379,2023,3,12,9,30,1.2,1.04,0.025,0.62,70,965,566,0,4,-7.7,134,0,0,134,0.31,51.56,59.06,0.95,0.69,788,0.7,242,2
+3380,2023,3,12,10,0,2,1.06,0.027,0.62,75,989,646,0,5,-6.5,208,0,0,208,0.311,53.22,54.72,0.95,0.69,788,0.7,248,2.4
+3381,2023,3,12,10,30,2.7,1.06,0.027,0.62,80,1006,714,1,5,-6.5,257,1,11,258,0.312,50.64,50.91,0.95,0.69,788,0.7,252,2.6
+3382,2023,3,12,11,0,3.3,1.08,0.027,0.62,82,1019,767,3,8,-5.7,297,18,39,309,0.313,51.75,47.77,0.95,0.69,788,0.7,257,2.8
+3383,2023,3,12,11,30,3.8,1.08,0.027,0.62,84,1027,805,3,8,-5.7,311,11,46,319,0.313,49.96,45.44,0.95,0.69,788,0.7,260,2.8
+3384,2023,3,12,12,0,4.4,1.1,0.029,0.62,85,1031,826,0,8,-5.1,257,2,0,258,0.314,49.97,44.07,0.95,0.69,787,0.7,262,2.8
+3385,2023,3,12,12,30,4.7,1.1,0.029,0.62,87,1030,831,0,8,-5.1,252,197,0,394,0.314,48.93,43.74,0.95,0.69,787,0.7,262,2.8
+3386,2023,3,12,13,0,5,1.1,0.029,0.62,86,1027,819,0,0,-4.8,137,854,0,746,0.315,49.14,44.49,0.95,0.69,787,0.7,262,2.8
+3387,2023,3,12,13,30,4.9,1.1,0.029,0.62,84,1019,789,0,0,-4.8,177,550,0,557,0.316,49.48,46.25,0.95,0.69,787,0.7,260,2.8
+3388,2023,3,12,14,0,4.9,1.12,0.03,0.62,82,1008,745,0,4,-4.6,337,59,0,376,0.317,50.18,48.91,0.95,0.69,787,0.7,258,2.8
+3389,2023,3,12,14,30,4.6,1.12,0.03,0.62,80,992,686,0,4,-4.6,336,38,0,359,0.317,51.23,52.33,0.95,0.69,787,0.7,255,2.7
+3390,2023,3,12,15,0,4.4,1.13,0.032,0.62,76,969,613,0,4,-4.4,277,127,0,347,0.318,52.98,56.36,0.96,0.69,787,0.7,253,2.6
+3391,2023,3,12,15,30,3.9,1.13,0.032,0.62,72,938,528,0,5,-4.4,196,50,0,220,0.319,54.87,60.88,0.96,0.69,787,0.7,250,2.3
+3392,2023,3,12,16,0,3.4,1.13,0.035,0.62,66,891,432,0,5,-3.6,133,69,0,161,0.32,60.03,65.76,0.96,0.69,787,0.8,247,2
+3393,2023,3,12,16,30,2.4,1.13,0.035,0.62,59,826,329,0,4,-3.6,129,311,0,231,0.32,64.52,70.93,0.96,0.69,788,0.8,240,1.4
+3394,2023,3,12,17,0,1.4,1.13,0.04,0.62,50,729,223,0,4,-2.5,108,127,0,138,0.321,75.26,76.29,0.96,0.65,788,0.8,233,0.8
+3395,2023,3,12,17,30,0.8,1.13,0.04,0.62,38,575,120,0,0,-2.5,38,575,0,120,0.321,78.58,81.79,0.96,0.65,788,0.8,222,0.7
+3396,2023,3,12,18,0,0.2,1.13,0.04,0.62,21,257,33,0,0,-3.7,21,257,0,33,0.322,75.02,87.3,0.96,0.65,788,0.8,211,0.6
+3397,2023,3,12,18,30,-0.2,1.13,0.04,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.322,77.22,93.19,0.96,0.65,788,0.8,200,0.6
+3398,2023,3,12,19,0,-0.5,1.12,0.038,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.322,78.2,98.88,0.96,0.65,788,0.8,189,0.5
+3399,2023,3,12,19,30,-0.9,1.12,0.038,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.321,80.62,104.54,0.96,0.65,789,0.8,181,0.4
+3400,2023,3,12,20,0,-1.2,1.12,0.037,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.321,81.82,110.13,0.96,0.65,789,0.8,174,0.3
+3401,2023,3,12,20,30,-1.5,1.12,0.037,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.32,83.64,115.58,0.96,0.65,789,0.7,160,0.2
+3402,2023,3,12,21,0,-1.7,1.12,0.037,0.62,0,0,0,0,0,-4,0,0,0,0,0.32,84.5,120.85,0.96,0.65,789,0.7,147,0.2
+3403,2023,3,12,21,30,-1.9,1.12,0.037,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,85.76,125.84,0.96,0.65,789,0.7,151,0.2
+3404,2023,3,12,22,0,-2.1,1.11,0.036,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,86.81,130.45,0.96,0.65,789,0.7,155,0.2
+3405,2023,3,12,22,30,-2.3,1.11,0.036,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,88.1,134.56,0.96,0.65,789,0.7,176,0.3
+3406,2023,3,12,23,0,-2.5,1.11,0.035,0.62,0,0,0,0,4,-4,0,0,0,0,0.32,89.6,137.99,0.96,0.65,789,0.7,196,0.3
+3407,2023,3,12,23,30,-2.7,1.11,0.035,0.62,0,0,0,0,4,-4,0,0,0,0,0.321,90.94,140.56,0.96,0.65,789,0.7,202,0.4
+3408,2023,3,13,0,0,-2.9,1.11,0.034,0.62,0,0,0,0,4,-4,0,0,0,0,0.323,92.4,142.08,0.96,0.65,789,0.7,208,0.4
+3409,2023,3,13,0,30,-3.1,1.11,0.034,0.62,0,0,0,0,4,-4,0,0,0,0,0.325,93.78,142.43,0.95,0.65,789,0.7,198,0.4
+3410,2023,3,13,1,0,-3.2,1.11,0.032,0.62,0,0,0,0,4,-4,0,0,0,0,0.326,94.48,141.57,0.95,0.65,789,0.7,187,0.4
+3411,2023,3,13,1,30,-3.5,1.11,0.032,0.62,0,0,0,0,4,-4,0,0,0,0,0.328,96.61,139.57,0.95,0.65,789,0.7,174,0.5
+3412,2023,3,13,2,0,-3.7,1.1,0.029,0.62,0,0,0,0,4,-4,0,0,0,0,0.33,97.95,136.61,0.95,0.65,789,0.7,161,0.5
+3413,2023,3,13,2,30,-4,1.1,0.029,0.62,0,0,0,0,4,-4,0,0,0,0,0.331,100,132.86,0.95,0.65,789,0.7,159,0.7
+3414,2023,3,13,3,0,-4.3,1.1,0.027,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.332,100,128.52,0.95,0.65,789,0.7,158,0.8
+3415,2023,3,13,3,30,-4.5,1.1,0.027,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.333,100,123.72,0.95,0.65,789,0.7,164,0.8
+3416,2023,3,13,4,0,-4.7,1.08,0.027,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.333,100,118.6,0.95,0.65,789,0.7,169,0.9
+3417,2023,3,13,4,30,-4.7,1.08,0.027,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.333,100,113.24,0.95,0.65,789,0.7,181,0.9
+3418,2023,3,13,5,0,-4.7,1.07,0.029,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.333,100,107.71,0.95,0.65,789,0.7,192,1
+3419,2023,3,13,5,30,-4.7,1.07,0.029,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.332,100,102.08,0.95,0.65,790,0.7,198,1.3
+3420,2023,3,13,6,0,-4.6,1.06,0.031,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.331,100,96.39,0.95,0.65,790,0.7,205,1.5
+3421,2023,3,13,6,30,-3.7,1.06,0.031,0.62,7,79,7,0,0,-4.4,7,79,0,7,0.33,94.84,90.2,0.96,0.65,790,0.7,203,1.9
+3422,2023,3,13,7,0,-2.8,1.05,0.032,0.62,28,466,70,1,0,-3.8,26,362,18,58,0.329,92.83,84.88,0.96,0.65,790,0.7,200,2.2
+3423,2023,3,13,7,30,-1.4,1.05,0.032,0.62,42,675,167,1,4,-3.8,98,128,14,122,0.329,83.72,79.33,0.96,0.65,790,0.7,204,2.4
+3424,2023,3,13,8,0,0,1.04,0.032,0.62,53,792,273,0,4,-3,176,78,0,198,0.328,80.08,73.87,0.96,0.65,790,0.7,207,2.6
+3425,2023,3,13,8,30,1.3,1.04,0.032,0.62,60,868,377,0,4,-3,209,243,0,298,0.328,72.92,68.56,0.95,0.65,790,0.7,214,2.8
+3426,2023,3,13,9,0,2.6,1.02,0.031,0.62,67,919,477,0,4,-2.9,229,383,0,400,0.328,66.84,63.48,0.95,0.65,790,0.7,221,2.9
+3427,2023,3,13,9,30,3.4,1.02,0.031,0.62,73,954,568,0,0,-2.9,104,863,0,552,0.327,63.17,58.71,0.95,0.65,790,0.7,225,3.1
+3428,2023,3,13,10,0,4.3,1,0.031,0.62,77,980,648,0,0,-3.1,77,980,0,648,0.327,58.76,54.35,0.95,0.65,790,0.7,230,3.3
+3429,2023,3,13,10,30,4.9,1,0.031,0.62,81,999,716,0,0,-3.1,135,876,7,692,0.327,56.35,50.53,0.95,0.65,790,0.7,232,3.5
+3430,2023,3,13,11,0,5.5,0.98,0.03,0.62,83,1012,768,0,7,-3.2,186,797,7,726,0.327,53.57,47.38,0.95,0.65,789,0.7,234,3.6
+3431,2023,3,13,11,30,5.9,0.98,0.03,0.62,86,1021,807,0,7,-3.2,173,851,7,774,0.327,52.11,45.04,0.95,0.65,789,0.7,235,3.8
+3432,2023,3,13,12,0,6.2,0.98,0.03,0.62,86,1026,828,0,7,-3.3,129,954,29,819,0.327,50.57,43.67,0.95,0.65,789,0.7,236,3.9
+3433,2023,3,13,12,30,6.2,0.98,0.03,0.62,86,1027,833,0,0,-3.3,100,1007,0,832,0.327,50.57,43.35,0.95,0.65,789,0.7,237,4
+3434,2023,3,13,13,0,6.2,0.98,0.029,0.62,85,1024,820,0,0,-3.5,85,1024,0,820,0.326,49.94,44.11,0.95,0.65,789,0.7,237,4
+3435,2023,3,13,13,30,6,0.98,0.029,0.62,83,1017,791,0,0,-3.5,136,932,14,785,0.326,50.57,45.89,0.95,0.65,788,0.7,237,4
+3436,2023,3,13,14,0,5.8,0.97,0.029,0.62,81,1006,747,0,7,-3.6,145,888,14,732,0.326,50.72,48.58,0.95,0.65,788,0.8,237,4
+3437,2023,3,13,14,30,5.5,0.97,0.029,0.62,78,991,688,0,0,-3.6,78,991,14,688,0.326,51.79,52.02,0.95,0.65,788,0.7,236,3.9
+3438,2023,3,13,15,0,5.2,0.97,0.029,0.62,74,971,616,0,0,-3.7,143,743,7,558,0.326,52.47,56.08,0.95,0.65,788,0.7,235,3.8
+3439,2023,3,13,15,30,4.8,0.97,0.029,0.62,69,944,532,0,7,-3.7,152,666,25,479,0.326,53.95,60.62,0.95,0.65,788,0.7,232,3.5
+3440,2023,3,13,16,0,4.4,0.97,0.028,0.62,63,905,438,0,7,-3.5,211,359,0,360,0.326,56.53,65.52,0.95,0.65,788,0.7,230,3.3
+3441,2023,3,13,16,30,3.1,0.97,0.028,0.62,55,850,336,0,7,-3.5,128,433,32,271,0.326,61.94,70.7,0.95,0.65,788,0.7,226,2.4
+3442,2023,3,13,17,0,1.8,0.96,0.025,0.62,46,766,230,1,7,-2.5,68,602,46,213,0.325,73.26,76.07,0.94,0.65,788,0.7,223,1.6
+3443,2023,3,13,17,30,0.2,0.96,0.025,0.62,35,625,127,0,0,-2.5,35,625,0,127,0.325,82.19,81.58,0.94,0.65,788,0.7,220,1.5
+3444,2023,3,13,18,0,-1.4,0.96,0.024,0.62,21,338,38,1,0,-4,21,338,14,38,0.324,82.49,87.1,0.94,0.65,789,0.7,217,1.4
+3445,2023,3,13,18,30,-1.9,0.96,0.024,0.62,0,0,0,1,0,-4,0,0,14,0,0.323,85.58,92.98,0.94,0.65,789,0.7,217,1.4
+3446,2023,3,13,19,0,-2.4,0.97,0.023,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.322,86.79,98.67,0.94,0.65,789,0.6,216,1.4
+3447,2023,3,13,19,30,-2.8,0.97,0.023,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.322,89.4,104.33,0.94,0.65,789,0.6,215,1.4
+3448,2023,3,13,20,0,-3.1,0.99,0.023,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.321,90.82,109.91,0.94,0.65,789,0.6,214,1.4
+3449,2023,3,13,20,30,-3.3,0.99,0.023,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.32,92.18,115.36,0.94,0.65,789,0.6,212,1.4
+3450,2023,3,13,21,0,-3.5,0.99,0.024,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,93.43,120.61,0.94,0.65,789,0.6,211,1.4
+3451,2023,3,13,21,30,-3.6,0.99,0.024,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,94.13,125.58,0.94,0.65,789,0.6,210,1.4
+3452,2023,3,13,22,0,-3.8,1,0.025,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.318,95.66,130.17,0.95,0.65,789,0.6,209,1.4
+3453,2023,3,13,22,30,-3.8,1,0.025,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,95.66,134.25,0.95,0.65,789,0.6,209,1.5
+3454,2023,3,13,23,0,-3.9,1.01,0.028,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.319,96.7,137.66,0.95,0.65,789,0.6,209,1.5
+3455,2023,3,13,23,30,-4,1.01,0.028,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,97.43,140.2,0.95,0.65,789,0.6,208,1.5
+3456,2023,3,14,0,0,-4.1,1.02,0.03,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,98.44,141.7,0.95,0.65,789,0.6,207,1.6
+3457,2023,3,14,0,30,-4.1,1.02,0.03,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.317,98.44,142.03,0.95,0.65,789,0.7,207,1.6
+3458,2023,3,14,1,0,-4.2,1.02,0.031,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,141.17,0.95,0.65,789,0.7,208,1.6
+3459,2023,3,14,1,30,-4.2,1.02,0.031,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,139.18,0.95,0.65,789,0.7,207,1.6
+3460,2023,3,14,2,0,-4.2,1.03,0.034,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,136.23,0.95,0.65,789,0.7,205,1.7
+3461,2023,3,14,2,30,-4.1,1.03,0.034,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.317,98.57,132.5,0.95,0.65,789,0.7,202,1.7
+3462,2023,3,14,3,0,-4,1.01,0.038,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,97.76,128.17,0.95,0.65,789,0.7,198,1.7
+3463,2023,3,14,3,30,-3.9,1.01,0.038,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,97.03,123.38,0.95,0.65,789,0.7,197,1.7
+3464,2023,3,14,4,0,-3.8,0.97,0.038,0.62,0,0,0,0,5,-4.3,0,0,0,0,0.319,96.1,118.27,0.95,0.65,788,0.7,195,1.7
+3465,2023,3,14,4,30,-3.7,0.97,0.038,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.319,95.5,112.92,0.95,0.65,789,0.7,194,1.8
+3466,2023,3,14,5,0,-3.6,0.91,0.036,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,94.76,107.4,0.95,0.65,789,0.7,194,1.8
+3467,2023,3,14,5,30,-3.4,0.91,0.036,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,93.36,101.77,0.95,0.65,789,0.7,193,1.9
+3468,2023,3,14,6,0,-3.2,0.85,0.032,0.62,0,0,0,0,4,-4.2,0,0,0,0,0.317,92.5,96.08,0.95,0.65,789,0.7,192,2
+3469,2023,3,14,6,30,-1.5,0.85,0.032,0.62,8,84,8,4,8,-4.2,3,0,57,3,0.315,81.57,89.94,0.95,0.65,789,0.7,193,2.7
+3470,2023,3,14,7,0,0.1,0.83,0.03,0.62,30,477,75,6,7,-3.5,28,1,86,28,0.314,76.64,84.58,0.95,0.65,789,0.8,194,3.5
+3471,2023,3,14,7,30,1.7,0.83,0.03,0.62,42,682,172,0,7,-3.5,80,231,0,124,0.312,68.31,79.02,0.94,0.65,789,0.8,201,4.2
+3472,2023,3,14,8,0,3.4,0.8,0.029,0.62,52,799,278,0,0,-2.8,52,799,0,278,0.31,63.69,73.55,0.94,0.65,789,0.8,208,4.9
+3473,2023,3,14,8,30,4.5,0.8,0.029,0.62,59,874,383,0,0,-2.8,59,874,0,383,0.309,58.96,68.23,0.94,0.65,789,0.8,211,5.5
+3474,2023,3,14,9,0,5.7,0.79,0.026,0.62,65,925,483,0,0,-2.9,65,925,0,483,0.308,53.83,63.14,0.94,0.65,789,0.8,214,6
+3475,2023,3,14,9,30,6.3,0.79,0.026,0.62,70,960,574,0,0,-2.9,70,960,0,574,0.307,51.65,58.36,0.94,0.65,789,0.8,214,6.2
+3476,2023,3,14,10,0,7,0.79,0.025,0.62,74,986,654,0,0,-3.2,74,986,0,654,0.307,48.29,53.99,0.94,0.65,789,0.8,214,6.3
+3477,2023,3,14,10,30,7.5,0.79,0.025,0.62,78,1003,721,0,0,-3.2,105,947,0,712,0.306,46.67,50.15,0.94,0.65,789,0.8,214,6.5
+3478,2023,3,14,11,0,8,0.8,0.026,0.62,80,1016,773,0,0,-3.4,80,1016,0,773,0.306,44.35,46.98,0.94,0.65,788,0.8,213,6.7
+3479,2023,3,14,11,30,8.4,0.8,0.026,0.62,83,1023,811,0,0,-3.4,123,943,11,794,0.305,43.16,44.64,0.94,0.65,788,0.8,213,6.8
+3480,2023,3,14,12,0,8.8,0.8,0.028,0.62,85,1026,832,0,0,-3.5,85,1026,4,832,0.303,41.6,43.27,0.95,0.65,788,0.8,212,7
+3481,2023,3,14,12,30,9.1,0.8,0.028,0.62,86,1025,836,0,0,-3.6,127,952,7,824,0.301,40.72,42.96,0.95,0.65,787,0.8,211,7.2
+3482,2023,3,14,13,0,9.3,0.82,0.028,0.62,85,1022,824,0,7,-3.7,433,317,0,662,0.299,39.86,43.73,0.95,0.65,787,0.8,211,7.5
+3483,2023,3,14,13,30,9.2,0.82,0.028,0.62,83,1016,795,0,7,-3.7,441,158,0,552,0.297,40.12,45.54,0.95,0.65,787,0.8,210,7.5
+3484,2023,3,14,14,0,9,0.85,0.029,0.62,82,1005,751,0,7,-3.8,390,188,0,515,0.296,40.2,48.25,0.95,0.65,786,0.8,210,7.6
+3485,2023,3,14,14,30,8.6,0.85,0.029,0.62,79,988,691,0,7,-3.8,236,577,36,593,0.295,41.3,51.72,0.95,0.65,786,0.9,209,7.5
+3486,2023,3,14,15,0,8.2,0.86,0.03,0.62,75,964,617,0,7,-3.7,267,423,14,505,0.294,42.82,55.8,0.95,0.65,786,0.9,208,7.5
+3487,2023,3,14,15,30,7.5,0.86,0.03,0.62,70,933,532,0,6,-3.7,190,11,0,195,0.293,44.9,60.35,0.95,0.65,786,0.9,208,7.1
+3488,2023,3,14,16,0,6.9,0.85,0.031,0.62,65,890,437,0,6,-3.3,127,2,0,128,0.293,48.34,65.28,0.96,0.65,786,1,207,6.7
+3489,2023,3,14,16,30,5.8,0.85,0.031,0.62,57,828,334,0,7,-3.3,168,103,0,202,0.293,52.14,70.47,0.96,0.65,786,1,205,5.9
+3490,2023,3,14,17,0,4.8,0.88,0.033,0.62,49,737,229,0,7,-2.3,135,55,0,148,0.294,60.01,75.86,0.96,0.65,786,1,203,5.1
+3491,2023,3,14,17,30,3.8,0.88,0.033,0.62,38,590,127,4,7,-2.3,80,29,57,84,0.295,64.36,81.37,0.96,0.65,786,1,201,4.7
+3492,2023,3,14,18,0,2.9,0.92,0.034,0.62,23,302,39,7,6,-1.6,21,1,100,21,0.296,72.37,86.91,0.96,0.65,785,1.1,198,4.3
+3493,2023,3,14,18,30,2.4,0.92,0.034,0.62,0,0,0,1,7,-1.6,0,0,14,0,0.297,74.98,92.78,0.97,0.65,785,1.1,198,4.5
+3494,2023,3,14,19,0,1.9,0.95,0.037,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.299,80.59,98.47,0.97,0.65,785,1.1,198,4.7
+3495,2023,3,14,19,30,1.6,0.95,0.037,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.3,82.33,104.12,0.97,0.65,785,1.1,197,5
+3496,2023,3,14,20,0,1.3,0.95,0.039,0.62,0,0,0,0,7,-0.6,0,0,0,0,0.301,87.01,109.69,0.97,0.65,786,1.1,197,5.3
+3497,2023,3,14,20,30,1.1,0.95,0.039,0.62,0,0,0,0,6,-0.6,0,0,0,0,0.302,88.16,115.13,0.96,0.65,785,1.2,195,5.5
+3498,2023,3,14,21,0,0.9,0.95,0.039,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.303,90.98,120.37,0.96,0.65,785,1.2,193,5.7
+3499,2023,3,14,21,30,0.6,0.95,0.039,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.305,92.97,125.32,0.96,0.65,785,1.2,193,5.7
+3500,2023,3,14,22,0,0.3,0.95,0.04,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.307,94.79,129.89,0.95,0.65,785,1.1,192,5.7
+3501,2023,3,14,22,30,0.3,0.95,0.04,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.309,94.79,133.95,0.96,0.65,785,1.2,195,6.1
+3502,2023,3,14,23,0,0.3,0.96,0.046,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.31,95.14,137.32,0.96,0.65,784,1.2,199,6.5
+3503,2023,3,14,23,30,0.3,0.96,0.046,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.31,95.14,139.84,0.96,0.65,784,1.1,200,6.4
+3504,2023,3,15,0,0,0.2,0.97,0.051,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.311,97.16,141.32,0.96,0.65,784,1.1,201,6.3
+3505,2023,3,15,0,30,0.1,0.97,0.051,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.311,97.87,141.64,0.96,0.65,784,1.1,200,6.2
+3506,2023,3,15,1,0,0,0.96,0.056,0.62,0,0,0,0,6,0,0,0,0,0,0.311,99.7,140.77,0.96,0.65,784,1.1,200,6
+3507,2023,3,15,1,30,0,0.96,0.056,0.62,0,0,0,0,6,0,0,0,0,0,0.312,99.7,138.78,0.96,0.65,784,1.1,200,6.1
+3508,2023,3,15,2,0,0,0.97,0.062,0.62,0,0,0,0,6,0,0,0,0,0,0.313,100,135.84,0.96,0.65,784,1.1,200,6.2
+3509,2023,3,15,2,30,0,0.97,0.062,0.62,0,0,0,0,6,0,0,0,0,0,0.314,100,132.13,0.96,0.65,783,1.1,200,5.8
+3510,2023,3,15,3,0,-0.1,0.98,0.063,0.62,0,0,0,0,7,-0.1,0,0,0,0,0.315,100,127.81,0.96,0.65,783,1.2,199,5.3
+3511,2023,3,15,3,30,-0.2,0.98,0.063,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.315,100,123.04,0.96,0.65,783,1.2,197,5
+3512,2023,3,15,4,0,-0.3,0.96,0.06,0.62,0,0,0,0,7,-0.3,0,0,0,0,0.316,100,117.94,0.96,0.65,783,1.2,195,4.6
+3513,2023,3,15,4,30,-0.2,0.96,0.06,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.315,100,112.6,0.96,0.65,782,1.2,197,4.8
+3514,2023,3,15,5,0,-0.2,0.95,0.06,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.314,99.69,107.08,0.97,0.65,782,1.2,198,4.9
+3515,2023,3,15,5,30,-0.1,0.95,0.06,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.314,98.96,101.46,0.97,0.65,782,1.2,200,5.1
+3516,2023,3,15,6,0,0,0.97,0.058,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.314,98.56,95.77,0.97,0.65,782,1.2,201,5.4
+3517,2023,3,15,6,30,0.5,0.97,0.058,0.62,9,87,10,4,7,-0.2,5,0,57,5,0.315,95.06,89.67,0.96,0.65,782,1.2,203,5.8
+3518,2023,3,15,7,0,1,0.96,0.053,0.62,33,416,75,6,7,0.2,29,0,86,29,0.315,94.38,84.27,0.96,0.65,782,1.2,205,6.2
+3519,2023,3,15,7,30,1.6,0.96,0.053,0.62,49,622,171,0,7,0.2,60,4,0,61,0.316,90.41,78.71,0.97,0.65,782,1.1,205,6.2
+3520,2023,3,15,8,0,2.1,0.97,0.053,0.62,61,742,275,0,6,0.7,75,1,0,75,0.317,90.34,73.22,0.97,0.65,782,1.1,206,6.3
+3521,2023,3,15,8,30,2.7,0.97,0.053,0.62,70,821,379,0,6,0.7,135,6,0,137,0.317,86.57,67.9,0.97,0.65,782,1.1,206,6.5
+3522,2023,3,15,9,0,3.3,0.98,0.05,0.62,77,876,477,0,6,1.2,185,7,0,188,0.317,85.99,62.8,0.97,0.65,782,1.2,206,6.7
+3523,2023,3,15,9,30,4,0.98,0.05,0.62,82,916,567,0,6,1.2,255,16,0,263,0.317,81.86,58,0.96,0.65,782,1.2,207,7
+3524,2023,3,15,10,0,4.8,0.99,0.044,0.62,85,947,647,0,6,1.6,325,50,0,355,0.317,79.84,53.62,0.96,0.65,782,1.2,208,7.3
+3525,2023,3,15,10,30,5.5,0.99,0.044,0.62,88,968,713,0,7,1.6,398,111,0,470,0.317,75.95,49.77,0.96,0.65,781,1.2,211,7.4
+3526,2023,3,15,11,0,6.1,1,0.041,0.62,90,983,766,0,7,1.8,431,214,0,578,0.316,74.11,46.59,0.96,0.65,781,1.2,213,7.5
+3527,2023,3,15,11,30,6.4,1,0.041,0.62,93,991,803,0,7,1.8,460,228,0,623,0.316,72.6,44.25,0.96,0.65,781,1.2,216,7.4
+3528,2023,3,15,12,0,6.7,1.01,0.042,0.62,95,995,824,0,7,1.9,465,255,0,652,0.316,71.37,42.87,0.97,0.65,781,1.2,218,7.4
+3529,2023,3,15,12,30,6.5,1.01,0.042,0.62,96,994,828,0,7,1.9,470,244,0,650,0.316,72.26,42.57,0.97,0.65,780,1.2,221,7
+3530,2023,3,15,13,0,6.4,1.02,0.047,0.62,97,989,816,0,7,1.9,464,245,0,642,0.315,72.78,43.36,0.97,0.65,780,1.2,223,6.7
+3531,2023,3,15,13,30,6.1,1.02,0.047,0.62,96,980,787,0,7,1.9,417,155,0,526,0.315,74.3,45.18,0.97,0.65,780,1.2,227,6.1
+3532,2023,3,15,14,0,5.7,1.03,0.054,0.62,97,964,743,0,7,1.9,421,146,0,519,0.314,76.46,47.92,0.97,0.65,780,1.2,230,5.5
+3533,2023,3,15,14,30,5.2,1.03,0.054,0.62,95,945,684,0,7,1.9,386,234,0,532,0.314,79.16,51.41,0.97,0.65,780,1.2,237,4.6
+3534,2023,3,15,15,0,4.7,1.02,0.059,0.62,91,918,611,0,7,1.7,356,122,0,425,0.313,81.05,55.52,0.97,0.65,780,1.2,245,3.7
+3535,2023,3,15,15,30,4,1.02,0.059,0.62,85,884,526,0,7,1.7,265,86,0,308,0.313,85.11,60.09,0.97,0.65,780,1.1,266,3.1
+3536,2023,3,15,16,0,3.3,1.02,0.064,0.62,79,837,432,0,6,1.3,132,3,0,133,0.314,86.63,65.03,0.97,0.65,781,1.1,287,2.5
+3537,2023,3,15,16,30,2.4,1.02,0.064,0.62,70,773,331,0,7,1.3,141,15,0,146,0.315,92.32,70.24,0.97,0.65,781,1.1,307,2.5
+3538,2023,3,15,17,0,1.5,1.03,0.065,0.62,59,678,227,0,7,0.3,107,11,0,110,0.316,91.85,75.64,0.97,0.69,781,1.1,327,2.5
+3539,2023,3,15,17,30,0.8,1.03,0.065,0.62,44,531,126,3,6,0.3,31,0,43,31,0.32,96.7,81.16,0.96,0.69,782,1,334,2.6
+3540,2023,3,15,18,0,0.1,1.03,0.06,0.62,24,259,39,7,7,-1,15,0,100,15,0.323,92.5,86.71,0.96,0.69,782,1,341,2.6
+3541,2023,3,15,18,30,-0.3,1.03,0.06,0.62,0,0,0,1,6,-1,0,0,14,0,0.327,95.23,92.57,0.96,0.69,782,0.9,344,2.8
+3542,2023,3,15,19,0,-0.6,1.03,0.052,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.331,89.13,98.26,0.96,0.69,783,0.9,348,3
+3543,2023,3,15,19,30,-1,1.03,0.052,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.336,91.77,103.91,0.96,0.69,783,0.8,350,3.1
+3544,2023,3,15,20,0,-1.4,1.03,0.047,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.34,86.08,109.48,0.96,0.69,783,0.8,353,3.3
+3545,2023,3,15,20,30,-1.9,1.03,0.047,0.62,0,0,0,0,6,-3.4,0,0,0,0,0.343,89.3,114.9,0.95,0.69,783,0.7,354,3.4
+3546,2023,3,15,21,0,-2.4,1.03,0.045,0.62,0,0,0,0,6,-4.7,0,0,0,0,0.346,84.13,120.12,0.95,0.69,783,0.7,354,3.5
+3547,2023,3,15,21,30,-2.8,1.03,0.045,0.62,0,0,0,0,6,-4.7,0,0,0,0,0.347,86.77,125.06,0.95,0.69,784,0.7,354,3.4
+3548,2023,3,15,22,0,-3.3,1.02,0.047,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.349,84.93,129.61,0.95,0.69,784,0.6,353,3.4
+3549,2023,3,15,22,30,-3.5,1.02,0.047,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.351,86.21,133.64,0.95,0.69,784,0.6,352,3.4
+3550,2023,3,15,23,0,-3.8,1.02,0.05,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.352,85.69,136.99,0.95,0.69,784,0.5,352,3.5
+3551,2023,3,15,23,30,-4.1,1.02,0.05,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.353,87.64,139.48,0.95,0.69,784,0.5,354,3.5
+3552,2023,3,16,0,0,-4.3,1.04,0.053,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.354,87.3,140.93,0.95,0.69,784,0.5,357,3.6
+3553,2023,3,16,0,30,-4.5,1.04,0.053,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.355,88.63,141.24,0.95,0.69,784,0.5,183,3.8
+3554,2023,3,16,1,0,-4.7,1.06,0.055,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.356,87.61,140.37,0.95,0.69,785,0.4,9,3.9
+3555,2023,3,16,1,30,-4.9,1.06,0.055,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.357,88.94,138.39,0.94,0.69,785,0.4,13,4
+3556,2023,3,16,2,0,-5.1,1.06,0.05,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.358,84.93,135.46,0.94,0.69,785,0.4,18,4.1
+3557,2023,3,16,2,30,-5.4,1.06,0.05,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.36,86.89,131.75,0.94,0.69,785,0.4,20,4.2
+3558,2023,3,16,3,0,-5.6,1.04,0.041,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.361,81.74,127.45,0.94,0.69,785,0.3,22,4.4
+3559,2023,3,16,3,30,-5.9,1.04,0.041,0.62,0,0,0,0,4,-8.2,0,0,0,0,0.362,83.62,122.7,0.93,0.69,785,0.3,23,4.3
+3560,2023,3,16,4,0,-6.2,1.02,0.035,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.364,81.52,117.61,0.93,0.69,786,0.3,24,4.2
+3561,2023,3,16,4,30,-6.3,1.02,0.035,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.366,82.15,112.27,0.93,0.69,786,0.3,25,4.2
+3562,2023,3,16,5,0,-6.5,0.99,0.031,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.367,80.83,106.77,0.92,0.69,786,0.3,27,4.2
+3563,2023,3,16,5,30,-6.5,0.99,0.031,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.369,80.93,101.15,0.92,0.69,787,0.3,28,4.2
+3564,2023,3,16,6,0,-6.5,0.98,0.029,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.371,79.5,95.46,0.92,0.69,787,0.3,29,4.3
+3565,2023,3,16,6,30,-5.6,0.98,0.029,0.62,11,147,13,4,7,-9.5,7,0,57,7,0.373,74.22,89.39,0.92,0.69,787,0.3,32,5.2
+3566,2023,3,16,7,0,-4.6,0.98,0.03,0.62,31,552,89,6,7,-9.6,50,9,86,51,0.375,67.96,83.96,0.92,0.69,788,0.3,34,6.2
+3567,2023,3,16,7,30,-3.9,0.98,0.03,0.62,43,738,192,0,7,-9.6,101,246,0,151,0.376,64.48,78.39,0.92,0.69,788,0.3,36,6.7
+3568,2023,3,16,8,0,-3.1,0.98,0.032,0.62,54,842,302,0,7,-11,110,548,4,271,0.377,54.26,72.9,0.92,0.69,788,0.3,37,7.2
+3569,2023,3,16,8,30,-2.5,0.98,0.032,0.62,62,913,411,0,0,-11,78,857,0,405,0.377,51.89,67.56,0.92,0.69,788,0.3,37,7.1
+3570,2023,3,16,9,0,-2,0.99,0.032,0.62,70,961,514,0,0,-11.9,70,961,0,514,0.377,46.8,62.45,0.92,0.69,789,0.3,36,7
+3571,2023,3,16,9,30,-1.4,0.99,0.032,0.62,75,998,609,0,0,-11.9,75,998,0,609,0.377,44.78,57.65,0.92,0.69,789,0.3,35,6.9
+3572,2023,3,16,10,0,-0.7,0.99,0.031,0.62,80,1027,694,0,0,-12.3,80,1027,0,694,0.377,41.07,53.25,0.92,0.69,789,0.2,35,6.8
+3573,2023,3,16,10,30,-0.1,0.99,0.031,0.62,84,1047,765,0,0,-12.3,84,1047,0,765,0.376,39.31,49.39,0.92,0.69,789,0.2,34,6.7
+3574,2023,3,16,11,0,0.5,1.01,0.031,0.62,86,1059,819,0,0,-12.8,86,1059,0,819,0.376,36.32,46.2,0.92,0.69,789,0.2,33,6.6
+3575,2023,3,16,11,30,0.9,1.01,0.031,0.62,88,1067,858,0,0,-12.8,88,1067,0,858,0.376,35.24,43.84,0.92,0.69,788,0.2,33,6.5
+3576,2023,3,16,12,0,1.4,0.99,0.031,0.62,89,1071,879,0,0,-13.3,89,1071,0,879,0.375,32.57,42.47,0.91,0.69,788,0.2,32,6.4
+3577,2023,3,16,12,30,1.6,0.99,0.031,0.62,90,1072,884,0,0,-13.3,90,1072,0,884,0.374,32.11,42.18,0.91,0.69,788,0.2,33,6.3
+3578,2023,3,16,13,0,1.9,0.98,0.031,0.62,88,1070,871,0,0,-13.7,88,1070,0,871,0.373,30.33,42.98,0.91,0.69,788,0.2,33,6.2
+3579,2023,3,16,13,30,1.9,0.98,0.031,0.62,87,1064,842,0,0,-13.7,87,1064,0,842,0.372,30.33,44.83,0.91,0.69,788,0.2,33,6
+3580,2023,3,16,14,0,2,0.97,0.031,0.62,85,1054,796,0,0,-14,85,1054,0,796,0.371,29.44,47.59,0.91,0.69,788,0.2,34,5.9
+3581,2023,3,16,14,30,1.7,0.97,0.031,0.62,81,1040,734,0,0,-14,81,1040,0,734,0.37,30.08,51.11,0.91,0.69,788,0.2,35,5.8
+3582,2023,3,16,15,0,1.4,0.96,0.031,0.62,77,1020,659,0,0,-14.2,77,1020,0,659,0.369,30.35,55.24,0.91,0.69,788,0.2,36,5.6
+3583,2023,3,16,15,30,0.9,0.96,0.031,0.62,71,993,570,0,0,-14.2,71,993,0,570,0.367,31.46,59.84,0.91,0.69,788,0.2,37,5.4
+3584,2023,3,16,16,0,0.3,0.95,0.03,0.62,65,955,472,0,0,-14.2,65,955,0,472,0.365,32.81,64.79,0.91,0.69,789,0.2,39,5.3
+3585,2023,3,16,16,30,-0.9,0.95,0.03,0.62,58,901,366,0,0,-14.2,58,901,0,366,0.363,35.79,70.01,0.91,0.69,789,0.2,41,4.6
+3586,2023,3,16,17,0,-2,0.95,0.03,0.62,50,819,256,0,0,-13.6,50,819,0,256,0.361,40.81,75.42,0.91,0.78,789,0.2,44,3.9
+3587,2023,3,16,17,30,-3.9,0.95,0.03,0.62,38,684,146,0,0,-13.6,38,684,0,146,0.359,46.99,80.95,0.91,0.78,789,0.2,49,3.1
+3588,2023,3,16,18,0,-5.9,0.96,0.03,0.62,24,393,48,0,0,-12.6,25,369,7,48,0.357,59.24,86.5,0.91,0.78,790,0.2,53,2.4
+3589,2023,3,16,18,30,-6.3,0.96,0.03,0.62,0,0,0,0,0,-12.6,0,0,0,0,0.357,61.08,92.37,0.91,0.78,790,0.2,56,2.5
+3590,2023,3,16,19,0,-6.7,0.96,0.029,0.62,0,0,0,0,0,-12.6,0,0,0,0,0.357,63.08,98.06,0.9,0.78,790,0.2,59,2.6
+3591,2023,3,16,19,30,-7,0.96,0.029,0.62,0,0,0,0,0,-12.6,0,0,0,0,0.357,64.55,103.7,0.9,0.78,790,0.2,59,2.6
+3592,2023,3,16,20,0,-7.2,0.96,0.028,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.358,67.04,109.26,0.9,0.78,791,0.2,59,2.6
+3593,2023,3,16,20,30,-7.4,0.96,0.028,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.359,68.09,114.68,0.9,0.78,791,0.2,58,2.6
+3594,2023,3,16,21,0,-7.5,0.95,0.028,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.36,69.73,119.88,0.9,0.78,791,0.2,56,2.6
+3595,2023,3,16,21,30,-7.6,0.95,0.028,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.36,70.27,124.8,0.9,0.78,791,0.2,55,2.6
+3596,2023,3,16,22,0,-7.8,0.94,0.028,0.62,0,0,0,0,0,-12,0,0,0,0,0.36,71.74,129.33,0.9,0.78,791,0.2,53,2.7
+3597,2023,3,16,22,30,-7.9,0.94,0.028,0.62,0,0,0,0,0,-12,0,0,0,0,0.359,72.3,133.33,0.9,0.78,791,0.2,52,2.7
+3598,2023,3,16,23,0,-8,0.93,0.028,0.62,0,0,0,0,0,-12.2,0,0,0,0,0.359,72.05,136.65,0.9,0.78,791,0.2,51,2.8
+3599,2023,3,16,23,30,-8.1,0.93,0.028,0.62,0,0,0,0,0,-12.2,0,0,0,0,0.358,72.61,139.11,0.9,0.78,791,0.2,51,2.9
+3600,2023,3,17,0,0,-8.2,0.93,0.028,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.357,71.34,140.55,0.9,0.78,791,0.2,50,3
+3601,2023,3,17,0,30,-8.4,0.93,0.028,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.355,72.46,140.84,0.9,0.78,791,0.2,50,3
+3602,2023,3,17,1,0,-8.6,0.93,0.029,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.353,72.01,139.96,0.9,0.78,791,0.2,49,3
+3603,2023,3,17,1,30,-8.7,0.93,0.029,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.349,72.58,137.99,0.9,0.78,791,0.2,48,2.9
+3604,2023,3,17,2,0,-8.9,0.93,0.029,0.62,0,0,0,0,0,-13,0,0,0,0,0.345,72.39,135.07,0.9,0.78,791,0.2,47,2.8
+3605,2023,3,17,2,30,-9,0.93,0.029,0.62,0,0,0,0,0,-13,0,0,0,0,0.341,72.96,131.38,0.9,0.78,791,0.2,46,2.8
+3606,2023,3,17,3,0,-9.2,0.94,0.03,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.336,72.8,127.1,0.9,0.78,791,0.2,44,2.7
+3607,2023,3,17,3,30,-9.2,0.94,0.03,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.332,72.8,122.35,0.9,0.78,791,0.2,44,2.8
+3608,2023,3,17,4,0,-9.3,0.95,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.328,71.81,117.27,0.9,0.78,790,0.2,44,2.8
+3609,2023,3,17,4,30,-9.4,0.95,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.325,72.47,111.95,0.91,0.78,791,0.2,44,2.8
+3610,2023,3,17,5,0,-9.4,0.96,0.031,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.322,71.21,106.45,0.91,0.78,791,0.2,44,2.8
+3611,2023,3,17,5,30,-9.4,0.96,0.031,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.32,71.21,100.83,0.91,0.78,791,0.2,45,3
+3612,2023,3,17,6,0,-9.3,0.96,0.033,0.62,0,0,0,0,0,-14,0,0,0,0,0.318,68.43,95.15,0.91,0.78,791,0.2,45,3.1
+3613,2023,3,17,6,30,-8.3,0.96,0.033,0.62,13,155,15,0,0,-14,13,155,4,15,0.318,63.29,89.1,0.91,0.78,791,0.2,48,3.6
+3614,2023,3,17,7,0,-7.3,0.96,0.035,0.62,33,567,96,0,0,-15,34,550,4,95,0.317,54.29,83.65,0.91,0.78,791,0.2,51,4.1
+3615,2023,3,17,7,30,-6,0.96,0.035,0.62,47,751,202,0,0,-15,47,751,0,202,0.318,49.14,78.07,0.91,0.78,791,0.2,52,4.4
+3616,2023,3,17,8,0,-4.8,0.96,0.037,0.62,58,854,314,0,0,-15.8,58,854,0,314,0.318,41.72,72.58,0.91,0.78,791,0.2,53,4.8
+3617,2023,3,17,8,30,-3.9,0.96,0.037,0.62,68,920,424,0,0,-15.8,68,920,0,424,0.318,38.99,67.23,0.91,0.78,791,0.2,53,4.8
+3618,2023,3,17,9,0,-2.9,0.95,0.04,0.62,76,964,527,0,0,-15.6,76,964,0,527,0.319,36.92,62.11,0.91,0.78,791,0.2,53,4.8
+3619,2023,3,17,9,30,-2.1,0.95,0.04,0.62,84,996,622,0,0,-15.6,84,996,0,622,0.319,34.79,57.29,0.91,0.78,791,0.2,53,4.8
+3620,2023,3,17,10,0,-1.3,0.95,0.042,0.62,89,1020,705,0,0,-14.8,89,1020,0,705,0.319,35.17,52.88,0.91,0.78,792,0.2,53,4.8
+3621,2023,3,17,10,30,-0.6,0.95,0.042,0.62,94,1037,774,0,0,-14.8,94,1037,0,774,0.319,33.42,49,0.91,0.78,792,0.2,53,4.9
+3622,2023,3,17,11,0,0,0.95,0.043,0.62,98,1048,829,0,0,-14.2,98,1048,0,829,0.319,33.53,45.8,0.91,0.78,792,0.2,53,4.9
+3623,2023,3,17,11,30,0.5,0.95,0.043,0.62,100,1057,867,0,0,-14.2,100,1057,0,867,0.319,32.34,43.44,0.91,0.78,792,0.2,54,5
+3624,2023,3,17,12,0,1,0.96,0.043,0.62,101,1061,889,0,0,-14,101,1061,0,889,0.318,31.62,42.07,0.91,0.78,792,0.2,55,5.1
+3625,2023,3,17,12,30,1.3,0.96,0.043,0.62,101,1063,894,0,0,-14,101,1063,0,894,0.318,30.91,41.78,0.91,0.78,791,0.2,55,5.1
+3626,2023,3,17,13,0,1.6,0.97,0.041,0.62,100,1061,881,0,0,-14.2,100,1061,0,881,0.317,29.97,42.61,0.91,0.78,791,0.2,56,5.1
+3627,2023,3,17,13,30,1.6,0.97,0.041,0.62,97,1056,851,0,0,-14.2,97,1056,0,851,0.316,29.97,44.47,0.92,0.78,791,0.2,57,5.1
+3628,2023,3,17,14,0,1.6,0.98,0.039,0.62,94,1047,805,0,0,-14.4,94,1047,0,805,0.316,29.4,47.26,0.92,0.78,791,0.2,58,5.1
+3629,2023,3,17,14,30,1.3,0.98,0.039,0.62,90,1034,743,0,0,-14.4,90,1034,0,743,0.316,30.04,50.81,0.92,0.78,791,0.2,59,5
+3630,2023,3,17,15,0,1,0.98,0.036,0.62,84,1016,667,0,0,-14.6,84,1016,0,667,0.316,30.19,54.96,0.92,0.78,791,0.2,61,5
+3631,2023,3,17,15,30,0.4,0.98,0.036,0.62,77,990,578,0,0,-14.6,77,990,0,578,0.317,31.56,59.58,0.92,0.78,792,0.2,62,4.8
+3632,2023,3,17,16,0,-0.1,0.97,0.034,0.62,69,953,479,0,0,-14.6,69,953,0,479,0.318,32.58,64.55,0.92,0.78,792,0.2,64,4.6
+3633,2023,3,17,16,30,-1.3,0.97,0.034,0.62,61,900,372,0,0,-14.6,61,900,0,372,0.319,35.56,69.79,0.92,0.78,792,0.2,67,3.7
+3634,2023,3,17,17,0,-2.5,0.95,0.032,0.62,52,820,261,0,0,-13.3,52,820,0,261,0.321,43.37,75.21,0.92,0.74,792,0.2,70,2.8
+3635,2023,3,17,17,30,-4.3,0.95,0.032,0.62,40,686,150,0,0,-13.3,40,686,0,150,0.322,49.6,80.75,0.92,0.74,792,0.2,75,2.2
+3636,2023,3,17,18,0,-6.2,0.92,0.031,0.62,25,414,52,2,0,-12,28,301,32,47,0.324,63.58,86.31,0.92,0.74,792,0.2,80,1.5
+3637,2023,3,17,18,30,-6.5,0.92,0.031,0.62,2,16,1,1,0,-12,1,8,14,1,0.325,65.14,92.17,0.92,0.74,793,0.2,81,1.4
+3638,2023,3,17,19,0,-6.8,0.91,0.031,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.326,67.6,97.86,0.92,0.74,793,0.2,82,1.4
+3639,2023,3,17,19,30,-6.9,0.91,0.031,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.326,68.12,103.5,0.92,0.74,793,0.2,81,1.3
+3640,2023,3,17,20,0,-7.1,0.91,0.031,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.327,70.65,109.04,0.92,0.74,793,0.2,81,1.3
+3641,2023,3,17,20,30,-7.1,0.91,0.031,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.327,70.65,114.45,0.92,0.74,793,0.2,81,1.2
+3642,2023,3,17,21,0,-7.2,0.92,0.03,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.328,72.85,119.64,0.92,0.74,793,0.2,81,1.2
+3643,2023,3,17,21,30,-7.2,0.92,0.03,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.328,72.95,124.54,0.92,0.74,794,0.2,81,1.2
+3644,2023,3,17,22,0,-7.3,0.92,0.03,0.62,0,0,0,0,0,-11,0,0,0,0,0.328,74.88,129.04,0.92,0.74,794,0.2,81,1.1
+3645,2023,3,17,22,30,-7.3,0.92,0.03,0.62,0,0,0,0,0,-11,0,0,0,0,0.328,74.88,133.02,0.92,0.74,794,0.2,80,1.1
+3646,2023,3,17,23,0,-7.4,0.92,0.03,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.327,76.35,136.32,0.92,0.74,794,0.2,79,1
+3647,2023,3,17,23,30,-7.4,0.92,0.03,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.327,76.35,138.75,0.92,0.74,794,0.2,77,1
+3648,2023,3,18,0,0,-7.4,0.93,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.326,76.98,140.17,0.92,0.74,794,0.2,75,0.9
+3649,2023,3,18,0,30,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.326,77.58,140.44,0.92,0.74,794,0.2,71,0.9
+3650,2023,3,18,1,0,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.325,77.93,139.56,0.92,0.74,794,0.2,68,0.9
+3651,2023,3,18,1,30,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.324,77.93,137.59,0.92,0.74,794,0.2,64,0.8
+3652,2023,3,18,2,0,-7.5,0.94,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.324,78.12,134.68,0.92,0.74,794,0.2,60,0.7
+3653,2023,3,18,2,30,-7.5,0.94,0.03,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.323,78.12,131.01,0.92,0.74,794,0.2,54,0.7
+3654,2023,3,18,3,0,-7.6,0.95,0.029,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.323,78.51,126.74,0.92,0.74,794,0.2,49,0.7
+3655,2023,3,18,3,30,-7.6,0.95,0.029,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.322,78.6,122.01,0.92,0.74,795,0.2,48,0.7
+3656,2023,3,18,4,0,-7.6,0.95,0.029,0.62,0,0,0,0,0,-10.8,0,0,29,0,0.322,77.56,116.94,0.92,0.74,795,0.2,48,0.7
+3657,2023,3,18,4,30,-7.7,0.95,0.029,0.62,0,0,0,0,0,-10.8,0,0,14,0,0.322,78.17,111.62,0.92,0.74,795,0.2,57,0.7
+3658,2023,3,18,5,0,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.322,76.39,106.13,0.92,0.74,795,0.2,67,0.7
+3659,2023,3,18,5,30,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.322,76.39,100.52,0.92,0.74,795,0.2,82,0.8
+3660,2023,3,18,6,0,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.7,0,0,0,0,0.322,72.73,94.84,0.92,0.74,795,0.2,97,1
+3661,2023,3,18,6,30,-6.7,0.96,0.029,0.62,16,210,20,0,0,-11.7,15,194,4,19,0.321,67.42,88.82,0.92,0.74,796,0.2,102,1.3
+3662,2023,3,18,7,0,-5.7,0.97,0.029,0.62,33,600,103,0,0,-14,37,527,7,98,0.321,51.98,83.34,0.92,0.74,796,0.2,107,1.5
+3663,2023,3,18,7,30,-4.3,0.97,0.029,0.62,46,783,212,0,0,-14,51,749,0,210,0.321,46.75,77.76,0.92,0.74,796,0.2,104,1.6
+3664,2023,3,18,8,0,-3,0.96,0.028,0.62,56,886,326,0,0,-15.9,56,886,0,326,0.321,36.19,72.25,0.92,0.74,796,0.2,101,1.7
+3665,2023,3,18,8,30,-1.8,0.96,0.028,0.62,63,952,437,0,0,-15.9,63,952,0,437,0.32,33.12,66.9,0.92,0.74,796,0.2,98,1.8
+3666,2023,3,18,9,0,-0.7,0.95,0.027,0.62,70,1001,543,0,0,-16.5,70,1001,0,543,0.32,29.24,61.77,0.92,0.74,796,0.1,95,2
+3667,2023,3,18,9,30,0.1,0.95,0.027,0.62,74,1033,638,0,0,-16.5,74,1033,0,638,0.32,27.58,56.94,0.92,0.74,796,0.1,99,2.1
+3668,2023,3,18,10,0,0.9,0.93,0.026,0.62,79,1056,722,0,0,-16.5,79,1056,0,722,0.319,26.06,52.51,0.92,0.74,795,0.1,103,2.2
+3669,2023,3,18,10,30,1.5,0.93,0.026,0.62,83,1073,792,0,0,-16.5,83,1073,0,792,0.319,24.96,48.62,0.92,0.74,795,0.1,108,2.3
+3670,2023,3,18,11,0,2.2,0.9,0.024,0.62,84,1086,846,0,0,-16.4,84,1086,0,846,0.319,23.83,45.41,0.91,0.74,795,0.1,113,2.3
+3671,2023,3,18,11,30,2.6,0.9,0.024,0.62,86,1093,885,0,0,-16.4,86,1093,0,885,0.319,23.17,43.04,0.91,0.74,795,0.1,117,2.3
+3672,2023,3,18,12,0,3.1,0.88,0.023,0.62,87,1094,904,0,0,-16.5,87,1094,0,904,0.319,22.23,41.67,0.91,0.74,795,0.2,121,2.4
+3673,2023,3,18,12,30,3.4,0.88,0.023,0.62,86,1094,907,0,0,-16.5,86,1094,0,907,0.319,21.74,41.39,0.91,0.74,794,0.2,126,2.4
+3674,2023,3,18,13,0,3.7,0.87,0.023,0.62,85,1090,892,0,0,-16.8,85,1090,0,892,0.319,20.79,42.23,0.91,0.74,794,0.2,130,2.4
+3675,2023,3,18,13,30,3.7,0.87,0.023,0.62,83,1078,857,0,0,-16.8,83,1078,0,857,0.319,20.79,44.12,0.91,0.74,794,0.2,134,2.4
+3676,2023,3,18,14,0,3.8,0.87,0.023,0.62,81,1066,809,0,0,-17.1,81,1066,0,809,0.319,20.16,46.93,0.92,0.74,794,0.2,139,2.5
+3677,2023,3,18,14,30,3.6,0.87,0.023,0.62,78,1052,747,0,0,-17.1,78,1052,0,747,0.319,20.45,50.51,0.92,0.74,794,0.2,142,2.5
+3678,2023,3,18,15,0,3.4,0.87,0.023,0.62,75,1033,672,0,0,-17.2,75,1033,0,672,0.319,20.43,54.68,0.92,0.74,793,0.2,145,2.5
+3679,2023,3,18,15,30,2.9,0.87,0.023,0.62,69,1007,583,0,0,-17.2,69,1007,0,583,0.319,21.17,59.32,0.92,0.74,793,0.2,145,2.5
+3680,2023,3,18,16,0,2.5,0.88,0.024,0.62,64,970,484,0,0,-16.6,64,970,0,484,0.319,23.05,64.31,0.92,0.74,793,0.2,145,2.5
+3681,2023,3,18,16,30,0.9,0.88,0.024,0.62,57,917,377,0,0,-16.6,57,917,0,377,0.32,25.84,69.56,0.92,0.74,793,0.2,142,1.9
+3682,2023,3,18,17,0,-0.7,0.89,0.025,0.62,49,838,266,0,0,-10.7,49,838,0,266,0.321,46.78,74.99,0.92,0.68,793,0.2,139,1.3
+3683,2023,3,18,17,30,-2.6,0.89,0.025,0.62,39,708,155,2,0,-10.7,50,572,25,144,0.321,53.79,80.54,0.93,0.68,793,0.2,136,1.4
+3684,2023,3,18,18,0,-4.4,0.9,0.027,0.62,26,458,57,4,7,-12.2,31,200,57,45,0.322,54.51,86.11,0.93,0.68,794,0.2,134,1.5
+3685,2023,3,18,18,30,-4.7,0.9,0.027,0.62,4,38,3,1,7,-12.2,3,19,14,2,0.322,55.76,91.97,0.93,0.68,794,0.2,134,1.5
+3686,2023,3,18,19,0,-5.1,0.91,0.029,0.62,0,0,0,0,7,-11.6,0,0,0,0,0.322,60.23,97.65,0.93,0.68,794,0.2,134,1.6
+3687,2023,3,18,19,30,-5.2,0.91,0.029,0.62,0,0,0,0,7,-11.6,0,0,0,0,0.323,60.69,103.29,0.93,0.68,794,0.2,136,1.5
+3688,2023,3,18,20,0,-5.3,0.91,0.031,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.323,65.18,108.83,0.93,0.68,794,0.2,138,1.5
+3689,2023,3,18,20,30,-5.4,0.91,0.031,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.324,65.68,114.22,0.93,0.68,794,0.2,140,1.5
+3690,2023,3,18,21,0,-5.4,0.91,0.032,0.62,0,0,0,0,7,-10.2,0,0,0,0,0.324,69.07,119.4,0.93,0.68,794,0.2,143,1.4
+3691,2023,3,18,21,30,-5.4,0.91,0.032,0.62,0,0,0,0,0,-10.2,0,0,0,0,0.325,69.07,124.28,0.93,0.68,794,0.2,146,1.4
+3692,2023,3,18,22,0,-5.4,0.9,0.032,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.326,70.8,128.76,0.93,0.68,793,0.2,149,1.4
+3693,2023,3,18,22,30,-5.5,0.9,0.032,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.326,71.34,132.71,0.93,0.68,793,0.2,152,1.4
+3694,2023,3,18,23,0,-5.5,0.9,0.032,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,71.81,135.98,0.93,0.68,793,0.2,155,1.4
+3695,2023,3,18,23,30,-5.6,0.9,0.032,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,72.35,138.39,0.93,0.68,793,0.2,159,1.4
+3696,2023,3,19,0,0,-5.7,0.9,0.031,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,72.64,139.78,0.93,0.68,792,0.2,164,1.4
+3697,2023,3,19,0,30,-5.7,0.9,0.031,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.325,72.64,140.05,0.93,0.68,792,0.2,167,1.4
+3698,2023,3,19,1,0,-5.8,0.89,0.03,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.325,72.72,139.16,0.92,0.68,792,0.2,171,1.4
+3699,2023,3,19,1,30,-5.9,0.89,0.03,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.324,73.28,137.2,0.92,0.68,792,0.2,173,1.5
+3700,2023,3,19,2,0,-6,0.88,0.029,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.323,72.9,134.3,0.92,0.68,791,0.2,175,1.6
+3701,2023,3,19,2,30,-6.1,0.88,0.029,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.323,73.46,130.64,0.91,0.68,791,0.2,175,1.7
+3702,2023,3,19,3,0,-6.1,0.86,0.028,0.62,0,0,0,0,0,-10.2,0,0,0,0,0.322,72.69,126.38,0.91,0.68,791,0.2,176,1.8
+3703,2023,3,19,3,30,-6.3,0.86,0.028,0.62,0,0,0,0,0,-10.2,0,0,0,0,0.322,73.81,121.66,0.91,0.68,791,0.2,175,1.9
+3704,2023,3,19,4,0,-6.4,0.85,0.028,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,73.95,116.6,0.91,0.68,791,0.2,174,2
+3705,2023,3,19,4,30,-6.5,0.85,0.028,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,74.52,111.3,0.91,0.68,791,0.2,174,2.1
+3706,2023,3,19,5,0,-6.5,0.85,0.029,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,74.32,105.81,0.91,0.68,791,0.2,174,2.2
+3707,2023,3,19,5,30,-6.4,0.85,0.029,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.32,73.75,100.2,0.91,0.68,791,0.2,176,2.5
+3708,2023,3,19,6,0,-6.3,0.88,0.033,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.32,72.48,94.53,0.92,0.68,791,0.2,178,2.7
+3709,2023,3,19,6,30,-5.3,0.88,0.033,0.62,17,205,22,2,0,-10.4,17,175,21,21,0.32,67.17,88.54,0.92,0.68,791,0.2,181,3.1
+3710,2023,3,19,7,0,-4.2,0.9,0.038,0.62,36,582,107,1,0,-10.1,44,402,14,93,0.32,63.35,83.03,0.93,0.68,791,0.2,184,3.4
+3711,2023,3,19,7,30,-2.3,0.9,0.038,0.62,49,750,212,0,0,-10.1,75,594,0,204,0.32,54.99,77.44,0.93,0.68,791,0.3,195,4.2
+3712,2023,3,19,8,0,-0.5,0.92,0.041,0.62,60,841,321,0,0,-10.4,60,841,0,321,0.32,47.21,71.93,0.93,0.68,791,0.3,207,5
+3713,2023,3,19,8,30,0.9,0.92,0.041,0.62,69,905,429,0,0,-10.4,69,905,0,429,0.32,42.67,66.57,0.93,0.68,791,0.3,213,6
+3714,2023,3,19,9,0,2.4,0.94,0.042,0.62,77,950,531,0,0,-10.7,77,950,0,531,0.32,37.42,61.42,0.93,0.68,791,0.3,220,6.9
+3715,2023,3,19,9,30,3,0.94,0.042,0.62,82,984,624,0,0,-10.7,82,984,0,624,0.32,35.82,56.58,0.93,0.68,790,0.3,221,7.1
+3716,2023,3,19,10,0,3.7,0.95,0.041,0.62,87,1008,706,0,0,-10.3,103,976,0,702,0.32,35.11,52.15,0.93,0.68,790,0.3,222,7.3
+3717,2023,3,19,10,30,4.3,0.95,0.041,0.62,91,1025,774,0,7,-10.3,146,929,14,765,0.32,33.66,48.24,0.93,0.68,790,0.3,224,7.4
+3718,2023,3,19,11,0,4.8,0.97,0.042,0.62,95,1036,827,0,7,-10,172,908,36,814,0.32,33.26,45.02,0.93,0.68,790,0.3,225,7.5
+3719,2023,3,19,11,30,5.2,0.97,0.042,0.62,98,1036,860,0,7,-10.1,232,823,36,837,0.32,32.31,42.64,0.94,0.68,789,0.4,226,7.6
+3720,2023,3,19,12,0,5.7,1,0.045,0.62,99,1036,878,0,7,-9.7,132,990,36,876,0.319,32.1,41.27,0.94,0.68,789,0.4,227,7.7
+3721,2023,3,19,12,30,5.9,1,0.045,0.62,101,1035,882,0,0,-9.7,101,1035,0,882,0.319,31.62,41,0.94,0.68,788,0.4,228,7.8
+3722,2023,3,19,13,0,6.1,1.02,0.049,0.62,102,1030,869,0,7,-9,183,905,46,857,0.319,32.91,41.86,0.94,0.68,788,0.4,229,7.8
+3723,2023,3,19,13,30,6,1.02,0.049,0.62,100,1020,837,0,7,-9,320,630,14,775,0.319,33.09,43.77,0.94,0.68,787,0.5,229,7.7
+3724,2023,3,19,14,0,6,1.03,0.052,0.62,99,1002,787,0,7,-8.1,247,739,25,755,0.319,35.49,46.61,0.95,0.68,787,0.5,230,7.6
+3725,2023,3,19,14,30,5.6,1.03,0.052,0.62,96,985,726,0,7,-8.1,373,395,0,626,0.319,36.49,50.21,0.95,0.68,787,0.5,230,7.3
+3726,2023,3,19,15,0,5.3,1.06,0.055,0.62,91,962,651,0,7,-7.3,305,463,0,574,0.319,39.68,54.41,0.95,0.68,786,0.5,230,7
+3727,2023,3,19,15,30,4.6,1.06,0.055,0.62,87,925,562,0,7,-7.3,201,628,21,524,0.319,41.66,59.07,0.95,0.68,786,0.6,229,6.4
+3728,2023,3,19,16,0,4,1.08,0.06,0.62,80,876,463,0,7,-6.6,236,348,14,388,0.32,46.02,64.08,0.96,0.68,786,0.6,229,5.9
+3729,2023,3,19,16,30,2.7,1.08,0.06,0.62,73,812,359,0,7,-6.6,180,98,0,215,0.32,50.44,69.34,0.96,0.68,786,0.6,228,4.7
+3730,2023,3,19,17,0,1.4,1.1,0.067,0.62,62,716,250,0,6,-5.5,93,17,0,97,0.32,60.33,74.78,0.96,0.65,786,0.6,227,3.4
+3731,2023,3,19,17,30,0,1.1,0.067,0.62,49,566,144,2,7,-5.5,78,43,29,85,0.32,66.74,80.34,0.96,0.65,786,0.6,225,2.7
+3732,2023,3,19,18,0,-1.3,1.11,0.073,0.62,30,308,52,7,6,-5.1,27,1,100,27,0.32,75.33,85.92,0.96,0.65,786,0.7,224,1.9
+3733,2023,3,19,18,30,-1.5,1.11,0.073,0.62,3,19,2,2,6,-5.1,1,0,29,1,0.321,76.34,91.76,0.96,0.65,785,0.7,223,1.7
+3734,2023,3,19,19,0,-1.6,1.1,0.079,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.321,78.18,97.45,0.96,0.65,785,0.7,222,1.5
+3735,2023,3,19,19,30,-1.7,1.1,0.079,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.321,78.75,103.08,0.97,0.65,785,0.7,219,1.4
+3736,2023,3,19,20,0,-1.7,1.09,0.084,0.62,0,0,0,0,7,-4.8,0,0,0,0,0.322,79.6,108.61,0.97,0.65,785,0.7,217,1.3
+3737,2023,3,19,20,30,-1.8,1.09,0.084,0.62,0,0,0,0,7,-4.8,0,0,0,0,0.323,80.19,113.99,0.97,0.65,785,0.7,213,1.2
+3738,2023,3,19,21,0,-1.8,1.08,0.088,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.323,80.8,119.15,0.97,0.65,785,0.7,208,1.2
+3739,2023,3,19,21,30,-1.8,1.08,0.088,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.324,80.7,124.01,0.97,0.65,784,0.7,202,1.1
+3740,2023,3,19,22,0,-1.9,1.07,0.089,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.325,82.15,128.47,0.97,0.65,784,0.7,195,1.1
+3741,2023,3,19,22,30,-1.9,1.07,0.089,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.326,82.15,132.4,0.97,0.65,784,0.7,187,1.2
+3742,2023,3,19,23,0,-2,1.07,0.084,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.327,83.57,135.64,0.97,0.65,784,0.7,179,1.2
+3743,2023,3,19,23,30,-2.1,1.07,0.084,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.328,84.08,138.02,0.97,0.65,783,0.8,173,1.3
+3744,2023,3,20,0,0,-2.1,1.07,0.077,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.329,84.47,139.4,0.97,0.65,783,0.8,168,1.5
+3745,2023,3,20,0,30,-2.2,1.07,0.077,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.33,84.99,139.65,0.97,0.65,782,0.8,168,1.6
+3746,2023,3,20,1,0,-2.3,1.07,0.07,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.331,85.82,138.76,0.97,0.65,782,0.8,169,1.8
+3747,2023,3,20,1,30,-2.3,1.07,0.07,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.331,85.82,136.8,0.97,0.65,782,0.8,173,2.1
+3748,2023,3,20,2,0,-2.3,1.07,0.066,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.331,86.76,133.91,0.97,0.65,781,0.8,178,2.4
+3749,2023,3,20,2,30,-2.3,1.07,0.066,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.332,86.76,130.26,0.97,0.65,781,0.8,179,2.6
+3750,2023,3,20,3,0,-2.3,1.06,0.067,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.333,89.24,126.02,0.97,0.65,781,0.8,180,2.7
+3751,2023,3,20,3,30,-2.2,1.06,0.067,0.62,0,0,0,0,6,-3.8,0,0,0,0,0.335,88.58,121.31,0.97,0.65,781,0.8,181,2.8
+3752,2023,3,20,4,0,-2.2,1.08,0.069,0.62,0,0,0,0,6,-3.4,0,0,0,0,0.337,91.18,116.27,0.97,0.65,780,0.8,183,2.9
+3753,2023,3,20,4,30,-2.2,1.08,0.069,0.62,0,0,0,0,6,-3.4,0,0,0,0,0.339,91.18,110.97,0.97,0.65,780,0.8,185,2.9
+3754,2023,3,20,5,0,-2.2,1.11,0.072,0.62,0,0,0,0,6,-3.1,0,0,0,0,0.342,93.36,105.49,0.97,0.65,780,0.8,187,2.9
+3755,2023,3,20,5,30,-2.1,1.11,0.072,0.62,0,0,0,0,7,-3.1,0,0,0,0,0.344,92.68,99.89,0.97,0.65,780,0.8,189,3
+3756,2023,3,20,6,0,-2,1.12,0.069,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.345,93.72,94.21,0.97,0.65,780,0.8,191,3.2
+3757,2023,3,20,6,30,-1.3,1.12,0.069,0.62,16,159,21,6,7,-2.9,7,0,86,7,0.345,89.02,88.25,0.96,0.65,780,0.8,197,3.9
+3758,2023,3,20,7,0,-0.5,1.12,0.057,0.62,39,497,102,4,7,-2.5,43,2,57,43,0.346,86.39,82.72,0.96,0.65,780,0.7,202,4.6
+3759,2023,3,20,7,30,0.6,1.12,0.057,0.62,52,682,204,0,7,-2.5,87,6,0,88,0.344,79.77,77.13,0.96,0.65,780,0.7,209,5.2
+3760,2023,3,20,8,0,1.6,1.09,0.048,0.62,62,796,313,0,7,-2.6,118,21,0,125,0.343,73.8,71.61,0.95,0.65,781,0.7,216,5.8
+3761,2023,3,20,8,30,2.1,1.09,0.048,0.62,72,860,418,1,8,-2.6,107,1,68,107,0.342,71.22,66.24,0.96,0.65,781,0.7,220,6
+3762,2023,3,20,9,0,2.7,1.06,0.054,0.62,81,902,517,0,4,-2.8,234,6,14,237,0.34,66.9,61.08,0.96,0.65,781,0.7,224,6.2
+3763,2023,3,20,9,30,3,1.06,0.054,0.62,88,933,607,0,4,-2.8,253,44,0,277,0.34,65.5,56.23,0.96,0.65,781,0.8,224,6.1
+3764,2023,3,20,10,0,3.4,1.05,0.059,0.62,95,955,686,1,4,-2.7,246,419,57,505,0.339,64.27,51.78,0.96,0.65,781,0.8,225,6.1
+3765,2023,3,20,10,30,3.4,1.05,0.059,0.62,102,969,752,1,4,-2.7,324,123,36,407,0.34,64.19,47.86,0.96,0.65,780,0.8,225,5.9
+3766,2023,3,20,11,0,3.5,1.05,0.066,0.62,107,978,803,0,7,-2.6,379,263,14,566,0.341,64.19,44.62,0.97,0.65,780,0.8,224,5.7
+3767,2023,3,20,11,30,3.3,1.05,0.066,0.62,111,984,839,0,7,-2.6,432,303,0,656,0.342,65.11,42.24,0.97,0.65,780,0.8,225,5.5
+3768,2023,3,20,12,0,3.2,1.05,0.07,0.62,113,986,859,0,7,-2.6,415,414,0,728,0.344,65.83,40.87,0.97,0.65,780,0.8,226,5.3
+3769,2023,3,20,12,30,3,1.05,0.07,0.62,114,987,863,0,6,-2.6,451,154,0,568,0.346,66.68,40.61,0.97,0.65,779,0.8,228,5.1
+3770,2023,3,20,13,0,2.8,1.06,0.07,0.62,113,984,850,0,6,-2.5,485,95,0,556,0.347,68.04,41.48,0.97,0.65,779,0.8,229,4.8
+3771,2023,3,20,13,30,2.7,1.06,0.07,0.62,110,977,820,0,6,-2.5,439,49,0,475,0.35,68.52,43.42,0.97,0.65,779,0.8,229,4.5
+3772,2023,3,20,14,0,2.6,1.07,0.07,0.62,108,965,775,0,7,-2.4,434,91,0,497,0.352,69.51,46.29,0.97,0.65,779,0.8,229,4.3
+3773,2023,3,20,14,30,2.4,1.07,0.07,0.62,103,948,714,0,6,-2.4,320,15,0,330,0.354,70.5,49.91,0.97,0.65,779,0.8,227,4
+3774,2023,3,20,15,0,2.3,1.09,0.071,0.62,99,924,640,0,6,-2.3,273,44,0,299,0.357,71.79,54.13,0.97,0.65,779,0.8,224,3.8
+3775,2023,3,20,15,30,2,1.09,0.071,0.62,92,892,554,0,7,-2.3,307,228,0,425,0.359,73.25,58.82,0.97,0.65,778,0.8,218,3.3
+3776,2023,3,20,16,0,1.7,1.09,0.073,0.62,85,847,458,0,7,-1.9,229,131,0,287,0.361,77.15,63.84,0.97,0.65,778,0.8,213,2.9
+3777,2023,3,20,16,30,1,1.09,0.073,0.62,76,784,355,0,7,-1.9,172,276,11,270,0.361,81.11,69.12,0.97,0.65,778,0.8,203,2.1
+3778,2023,3,20,17,0,0.2,1.08,0.074,0.62,64,692,248,0,7,-1.4,125,53,0,139,0.362,88.99,74.57,0.97,0.67,778,0.8,193,1.3
+3779,2023,3,20,17,30,-0.7,1.08,0.074,0.62,50,547,144,2,6,-1.4,64,9,29,66,0.362,95,80.13,0.97,0.67,778,0.8,187,1.3
+3780,2023,3,20,18,0,-1.7,1.03,0.076,0.62,31,301,53,7,6,-1.8,16,0,100,16,0.361,98.93,85.72,0.97,0.67,778,0.8,182,1.3
+3781,2023,3,20,18,30,-1.8,1.03,0.076,0.62,4,19,3,2,7,-1.8,1,0,29,1,0.359,99.66,91.56,0.97,0.67,778,0.8,187,1.5
+3782,2023,3,20,19,0,-1.9,0.99,0.079,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.357,100,97.24,0.97,0.67,778,0.8,192,1.6
+3783,2023,3,20,19,30,-1.9,0.99,0.079,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.356,100,102.87,0.97,0.67,779,0.8,206,1.8
+3784,2023,3,20,20,0,-1.9,0.99,0.087,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.354,99.92,108.39,0.97,0.67,779,0.8,220,2
+3785,2023,3,20,20,30,-2,0.99,0.087,0.62,0,0,0,0,7,-2,0,0,0,0,0.353,100,113.76,0.97,0.67,779,0.8,237,2.1
+3786,2023,3,20,21,0,-2.1,1.03,0.076,0.62,0,0,0,0,7,-2.3,0,0,0,0,0.352,98.73,118.91,0.96,0.67,779,0.7,254,2.2
+3787,2023,3,20,21,30,-2.7,1.03,0.076,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.354,100,123.75,0.95,0.67,780,0.6,263,1.9
+3788,2023,3,20,22,0,-3.3,1.04,0.045,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.355,100,128.19,0.94,0.67,780,0.5,273,1.5
+3789,2023,3,20,22,30,-3.9,1.04,0.045,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.356,100,132.09,0.93,0.67,780,0.4,270,1.3
+3790,2023,3,20,23,0,-4.5,0.98,0.029,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.357,100,135.3,0.92,0.67,780,0.3,266,1.1
+3791,2023,3,20,23,30,-4.9,0.98,0.029,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.358,100,137.66,0.92,0.67,780,0.3,251,1.1
+3792,2023,3,21,0,0,-5.2,0.95,0.024,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.359,100,139.01,0.92,0.67,780,0.2,236,1.1
+3793,2023,3,21,0,30,-5.5,0.95,0.024,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.36,100,139.25,0.92,0.67,780,0.2,224,1.2
+3794,2023,3,21,1,0,-5.7,0.95,0.025,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.36,100,138.36,0.92,0.67,781,0.2,212,1.3
+3795,2023,3,21,1,30,-5.6,0.95,0.025,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.359,100,136.4,0.92,0.67,781,0.2,207,1.6
+3796,2023,3,21,2,0,-5.4,0.96,0.027,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.357,100,133.52,0.92,0.67,781,0.2,203,1.8
+3797,2023,3,21,2,30,-5.5,0.96,0.027,0.62,0,0,0,0,4,-5.5,0,0,0,0,0.354,100,129.89,0.93,0.67,781,0.3,201,2
+3798,2023,3,21,3,0,-5.6,0.98,0.032,0.62,0,0,0,0,4,-5.6,0,0,0,0,0.352,100,125.66,0.93,0.67,781,0.3,198,2.2
+3799,2023,3,21,3,30,-5.8,0.98,0.032,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.35,100,120.97,0.94,0.67,781,0.3,196,2.2
+3800,2023,3,21,4,0,-6,0.99,0.037,0.62,0,0,0,0,4,-6.1,0,0,0,0,0.348,99.58,115.93,0.94,0.67,781,0.3,193,2.2
+3801,2023,3,21,4,30,-6,0.99,0.037,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.346,99.58,110.64,0.94,0.67,781,0.4,193,2.2
+3802,2023,3,21,5,0,-6,0.99,0.043,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.344,97.29,105.17,0.95,0.67,781,0.4,194,2.2
+3803,2023,3,21,5,30,-5.7,0.99,0.043,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.34,95.09,99.57,0.95,0.67,781,0.4,198,2.4
+3804,2023,3,21,6,0,-5.3,0.97,0.05,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.337,93.46,93.9,0.95,0.67,781,0.4,202,2.5
+3805,2023,3,21,6,30,-4.4,0.97,0.05,0.62,19,214,27,1,0,-6.2,20,180,14,26,0.335,87.32,87.96,0.95,0.67,781,0.5,204,2.7
+3806,2023,3,21,7,0,-3.6,0.96,0.05,0.62,40,539,111,0,0,-5.9,40,539,0,111,0.332,84.13,82.41,0.95,0.67,781,0.5,207,2.8
+3807,2023,3,21,7,30,-2.4,0.96,0.05,0.62,53,711,215,0,0,-5.9,69,609,0,208,0.33,77.05,76.81,0.95,0.67,782,0.5,212,3.2
+3808,2023,3,21,8,0,-1.3,0.95,0.048,0.62,63,815,325,0,7,-7.1,143,469,0,294,0.328,64.57,71.28,0.95,0.67,782,0.5,216,3.6
+3809,2023,3,21,8,30,-0.2,0.95,0.048,0.62,71,883,432,0,0,-7.1,133,679,0,410,0.328,59.6,65.9,0.95,0.67,782,0.5,220,3.9
+3810,2023,3,21,9,0,0.9,0.95,0.045,0.62,78,931,533,0,7,-8.4,203,580,0,486,0.328,49.74,60.74,0.95,0.67,782,0.5,224,4.2
+3811,2023,3,21,9,30,1.8,0.95,0.045,0.62,84,965,625,0,7,-8.4,322,314,0,498,0.328,46.57,55.87,0.94,0.67,781,0.5,226,4.3
+3812,2023,3,21,10,0,2.7,0.95,0.042,0.62,88,991,706,0,7,-8.7,365,357,0,588,0.329,42.97,51.41,0.94,0.67,781,0.5,228,4.4
+3813,2023,3,21,10,30,3.3,0.95,0.042,0.62,92,1008,773,0,7,-8.7,448,272,0,632,0.328,41.18,47.48,0.94,0.67,781,0.5,228,4.5
+3814,2023,3,21,11,0,3.9,0.95,0.042,0.62,94,1020,825,0,7,-8.7,475,212,0,627,0.328,39.21,44.23,0.94,0.67,781,0.5,228,4.6
+3815,2023,3,21,11,30,4,0.95,0.042,0.62,98,1026,862,0,6,-8.7,483,101,0,558,0.327,38.94,41.84,0.95,0.67,781,0.5,225,4.8
+3816,2023,3,21,12,0,4.2,0.95,0.046,0.62,101,1024,880,0,7,-8.7,508,205,0,664,0.325,38.59,40.47,0.95,0.67,781,0.6,222,5
+3817,2023,3,21,12,30,3.9,0.95,0.046,0.62,102,1022,882,0,7,-8.7,447,415,0,764,0.324,39.41,40.21,0.95,0.67,781,0.6,219,5
+3818,2023,3,21,13,0,3.7,0.96,0.047,0.62,101,1018,868,0,7,-8.1,380,529,0,779,0.323,41.74,41.11,0.95,0.67,781,0.6,216,5
+3819,2023,3,21,13,30,3.3,0.96,0.047,0.62,99,1012,838,0,7,-8.1,365,528,14,751,0.323,42.93,43.07,0.95,0.67,781,0.6,212,4.7
+3820,2023,3,21,14,0,3,0.97,0.046,0.62,95,1003,792,0,7,-7.3,420,361,0,671,0.322,46.89,45.96,0.95,0.67,781,0.6,208,4.5
+3821,2023,3,21,14,30,2.6,0.97,0.046,0.62,90,989,731,0,7,-7.3,256,643,0,673,0.321,48.24,49.61,0.95,0.67,781,0.6,202,4.1
+3822,2023,3,21,15,0,2.3,0.99,0.043,0.62,84,968,655,0,7,-6.4,324,308,0,506,0.321,52.78,53.86,0.95,0.67,781,0.7,197,3.8
+3823,2023,3,21,15,30,1.9,0.99,0.043,0.62,78,940,568,0,7,-6.4,296,165,0,382,0.32,54.24,58.56,0.94,0.67,780,0.7,190,3.4
+3824,2023,3,21,16,0,1.6,1.01,0.037,0.62,70,905,472,0,7,-5.5,220,424,0,408,0.32,59.08,63.61,0.94,0.67,780,0.7,183,3.1
+3825,2023,3,21,16,30,0.8,1.01,0.037,0.62,62,854,369,0,7,-5.5,181,312,0,293,0.32,62.57,68.9,0.94,0.67,780,0.7,176,2.5
+3826,2023,3,21,17,0,0.1,1.01,0.033,0.62,51,779,261,0,8,-4.2,127,106,0,156,0.32,72.8,74.36,0.94,0.65,780,0.7,170,1.9
+3827,2023,3,21,17,30,-0.9,1.01,0.033,0.62,41,654,155,0,7,-4.2,64,355,7,126,0.32,78.29,79.93,0.94,0.65,780,0.8,163,1.6
+3828,2023,3,21,18,0,-1.9,1.01,0.03,0.62,26,431,60,5,7,-4.1,28,158,71,40,0.32,85.2,85.52,0.94,0.65,780,0.8,157,1.3
+3829,2023,3,21,18,30,-2.3,1.01,0.03,0.62,4,37,3,3,8,-4,1,0,43,1,0.321,87.87,91.36,0.94,0.65,781,0.8,158,1.4
+3830,2023,3,21,19,0,-2.6,1.01,0.03,0.62,0,0,0,0,4,-3.8,0,0,0,0,0.322,91.57,97.04,0.94,0.65,781,0.8,159,1.6
+3831,2023,3,21,19,30,-2.7,1.01,0.03,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.322,92.25,102.66,0.94,0.65,781,0.8,162,1.8
+3832,2023,3,21,20,0,-2.9,1.03,0.031,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,95.93,108.18,0.94,0.65,781,0.8,166,2
+3833,2023,3,21,20,30,-3.1,1.03,0.031,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,97.37,113.53,0.94,0.65,781,0.8,169,2
+3834,2023,3,21,21,0,-3.3,1.05,0.029,0.62,0,0,0,0,4,-3.3,0,0,0,0,0.322,100,118.66,0.93,0.65,780,0.8,172,1.9
+3835,2023,3,21,21,30,-3.5,1.05,0.029,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.322,100,123.49,0.93,0.65,780,0.8,175,1.8
+3836,2023,3,21,22,0,-3.6,1.06,0.027,0.62,0,0,0,0,4,-3.6,0,0,0,0,0.322,100,127.9,0.93,0.65,780,0.8,177,1.6
+3837,2023,3,21,22,30,-3.2,1.06,0.027,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.322,100,131.78,0.93,0.65,780,0.8,179,1.9
+3838,2023,3,21,23,0,-2.8,1.03,0.029,0.62,0,0,0,0,4,-2.9,0,0,0,0,0.322,99.44,134.96,0.94,0.65,780,0.9,181,2.1
+3839,2023,3,21,23,30,-2.6,1.03,0.029,0.62,0,0,0,0,4,-2.9,0,0,0,0,0.323,97.98,137.3,0.94,0.65,780,0.9,182,2.1
+3840,2023,3,22,0,0,-2.4,1.03,0.028,0.62,0,0,0,0,6,-2.6,0,0,0,0,0.324,98.72,138.63,0.93,0.65,780,0.9,183,2.1
+3841,2023,3,22,0,30,-2.7,1.03,0.028,0.62,0,0,0,0,6,-2.7,0,0,0,0,0.324,100,138.85,0.94,0.65,779,0.9,183,1.7
+3842,2023,3,22,1,0,-2.9,0.96,0.029,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.324,100,137.95,0.94,0.65,779,0.9,183,1.3
+3843,2023,3,22,1,30,-2.7,0.96,0.029,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.324,100,136,0.94,0.65,779,0.9,177,1.2
+3844,2023,3,22,2,0,-2.5,0.89,0.031,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.324,100,133.13,0.94,0.65,778,0.9,171,1.1
+3845,2023,3,22,2,30,-2.3,0.89,0.031,0.62,0,0,0,0,6,-2.3,0,0,0,0,0.325,100,129.51,0.94,0.65,778,0.9,173,1.2
+3846,2023,3,22,3,0,-2.2,0.85,0.032,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.327,100,125.29,0.94,0.65,778,1,175,1.3
+3847,2023,3,22,3,30,-2.2,0.85,0.032,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.33,100,120.62,0.93,0.65,778,0.9,178,1.6
+3848,2023,3,22,4,0,-2.2,0.86,0.031,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.332,100,115.59,0.93,0.65,778,0.9,181,1.8
+3849,2023,3,22,4,30,-2.7,0.86,0.031,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.335,100,110.31,0.93,0.65,778,0.8,182,1.5
+3850,2023,3,22,5,0,-3.2,0.88,0.027,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.338,100,104.85,0.93,0.65,778,0.7,183,1.3
+3851,2023,3,22,5,30,-3,0.88,0.027,0.62,0,0,0,0,7,-3,0,0,0,0,0.338,100,99.26,0.93,0.65,778,0.7,188,1.2
+3852,2023,3,22,6,0,-2.9,0.89,0.026,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.338,100,93.59,0.93,0.65,777,0.7,193,1.2
+3853,2023,3,22,6,30,-1.7,0.89,0.026,0.62,19,270,30,6,7,-2.2,10,0,86,10,0.339,96.34,87.66,0.93,0.65,778,0.7,190,2.1
+3854,2023,3,22,7,0,-0.5,0.91,0.027,0.62,35,600,117,4,7,-1.3,36,1,57,36,0.339,94.3,82.1,0.93,0.65,778,0.7,187,3
+3855,2023,3,22,7,30,0.6,0.91,0.027,0.62,45,758,222,0,7,-1.3,87,7,0,89,0.34,87.08,76.49,0.93,0.65,778,0.6,196,3.7
+3856,2023,3,22,8,0,1.6,0.93,0.024,0.62,53,853,331,0,7,-1.3,144,19,0,150,0.341,81.23,70.96,0.93,0.65,778,0.6,206,4.4
+3857,2023,3,22,8,30,2.5,0.93,0.024,0.62,59,912,436,0,7,-1.3,222,249,0,325,0.342,76.19,65.57,0.93,0.65,778,0.6,208,5.3
+3858,2023,3,22,9,0,3.3,0.93,0.023,0.62,66,952,536,1,7,-2.3,228,154,14,304,0.342,66.93,60.4,0.93,0.65,778,0.7,210,6.1
+3859,2023,3,22,9,30,3.6,0.93,0.023,0.62,70,983,626,0,7,-2.3,336,107,0,397,0.345,65.53,55.52,0.93,0.65,778,0.7,209,6.8
+3860,2023,3,22,10,0,3.9,0.92,0.022,0.62,72,1006,705,0,7,-3.1,389,142,0,478,0.348,60.39,51.04,0.93,0.65,778,0.7,208,7.6
+3861,2023,3,22,10,30,4.2,0.92,0.022,0.62,75,1023,772,0,7,-3.1,354,371,0,607,0.351,59.13,47.09,0.93,0.65,778,0.6,209,8.2
+3862,2023,3,22,11,0,4.5,0.93,0.02,0.62,77,1036,824,0,7,-3.7,426,285,0,632,0.355,55.44,43.84,0.93,0.65,778,0.6,210,8.8
+3863,2023,3,22,11,30,4.5,0.93,0.02,0.62,78,1044,861,0,7,-3.7,306,599,0,755,0.358,55.44,41.44,0.93,0.65,778,0.6,211,9.4
+3864,2023,3,22,12,0,4.6,0.97,0.02,0.62,80,1047,881,0,7,-4.6,459,324,0,707,0.361,51.14,40.07,0.94,0.65,778,0.6,212,10
+3865,2023,3,22,12,30,4.3,0.97,0.02,0.62,81,1047,885,0,7,-4.6,452,392,0,753,0.362,52.29,39.82,0.94,0.65,779,0.6,214,10.3
+3866,2023,3,22,13,0,4.1,1.01,0.022,0.62,81,1044,872,0,7,-5.5,174,867,7,831,0.362,49.72,40.73,0.94,0.65,779,0.6,217,10.6
+3867,2023,3,22,13,30,3.9,1.01,0.022,0.62,78,1042,844,0,7,-5.5,368,417,0,674,0.363,50.42,42.72,0.94,0.65,779,0.6,219,10.4
+3868,2023,3,22,14,0,3.7,1.06,0.02,0.62,76,1036,800,0,7,-6.4,417,304,0,630,0.363,47.76,45.64,0.94,0.65,779,0.5,221,10.2
+3869,2023,3,22,14,30,3.5,1.06,0.02,0.62,72,1025,740,0,7,-6.4,405,276,0,585,0.363,48.44,49.32,0.94,0.65,779,0.5,221,9.8
+3870,2023,3,22,15,0,3.3,1.07,0.019,0.62,68,1008,666,0,7,-7.1,372,157,0,465,0.363,46.34,53.59,0.94,0.65,780,0.5,222,9.4
+3871,2023,3,22,15,30,2.7,1.07,0.019,0.62,64,980,579,0,7,-7.1,242,451,11,479,0.362,48.35,58.31,0.94,0.65,780,0.5,220,8.7
+3872,2023,3,22,16,0,2.1,1.01,0.022,0.62,60,939,481,0,7,-6.8,259,107,0,307,0.361,51.64,63.37,0.95,0.65,781,0.6,219,8.1
+3873,2023,3,22,16,30,1.2,1.01,0.022,0.62,56,881,376,0,7,-6.8,191,159,7,249,0.36,55.07,68.68,0.95,0.65,781,0.6,217,6.9
+3874,2023,3,22,17,0,0.3,0.95,0.027,0.62,50,800,268,0,7,-5.9,139,110,7,169,0.36,63.29,74.15,0.95,0.69,782,0.6,214,5.7
+3875,2023,3,22,17,30,-0.6,0.95,0.027,0.62,40,675,160,0,7,-5.9,63,333,4,122,0.361,67.56,79.73,0.96,0.69,782,0.6,210,4.6
+3876,2023,3,22,18,0,-1.5,0.94,0.03,0.62,28,448,64,0,0,-5.2,28,448,0,64,0.362,76.14,85.33,0.96,0.69,782,0.6,206,3.5
+3877,2023,3,22,18,30,-2,0.94,0.03,0.62,7,70,6,0,0,-5.1,7,70,0,6,0.362,79.1,91.16,0.95,0.69,783,0.6,204,3.3
+3878,2023,3,22,19,0,-2.4,0.98,0.029,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.363,82.74,96.84,0.95,0.69,783,0.6,202,3
+3879,2023,3,22,19,30,-2.7,0.98,0.029,0.62,0,0,0,0,8,-4.9,0,0,0,0,0.363,84.6,102.45,0.95,0.69,783,0.6,205,3
+3880,2023,3,22,20,0,-3,1.04,0.028,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.363,86.54,107.96,0.95,0.69,784,0.6,207,2.9
+3881,2023,3,22,20,30,-3.3,1.04,0.028,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.362,88.49,113.3,0.94,0.69,784,0.6,210,2.8
+3882,2023,3,22,21,0,-3.5,1.09,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.362,90.01,118.42,0.94,0.69,784,0.6,213,2.7
+3883,2023,3,22,21,30,-3.8,1.09,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.361,92.17,123.22,0.93,0.69,785,0.6,216,2.6
+3884,2023,3,22,22,0,-4.1,1.11,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.36,93.91,127.61,0.93,0.69,785,0.6,220,2.6
+3885,2023,3,22,22,30,-4.3,1.11,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.36,95.33,131.46,0.93,0.69,785,0.6,221,2.5
+3886,2023,3,22,23,0,-4.6,1.1,0.021,0.62,0,0,0,0,7,-5,0,0,0,0,0.359,96.82,134.62,0.92,0.69,785,0.6,223,2.4
+3887,2023,3,22,23,30,-4.9,1.1,0.021,0.62,0,0,0,0,0,-5,0,0,0,0,0.358,99.04,136.93,0.92,0.69,785,0.6,222,2.3
+3888,2023,3,23,0,0,-5.1,1.09,0.02,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.358,99.36,138.24,0.92,0.69,785,0.6,222,2.2
+3889,2023,3,23,0,30,-5.4,1.09,0.02,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.357,100,138.45,0.92,0.69,786,0.5,219,2.1
+3890,2023,3,23,1,0,-5.6,1.08,0.019,0.62,0,0,0,0,4,-5.6,0,0,0,0,0.357,100,137.55,0.92,0.69,786,0.5,217,2
+3891,2023,3,23,1,30,-5.7,1.08,0.019,0.62,0,0,0,0,4,-5.7,0,0,0,0,0.357,100,135.6,0.92,0.69,786,0.5,216,2.1
+3892,2023,3,23,2,0,-5.8,1.07,0.019,0.62,0,0,0,0,5,-5.8,0,0,0,0,0.356,100,132.75,0.92,0.69,786,0.5,215,2.2
+3893,2023,3,23,2,30,-5.8,1.07,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.356,100,129.14,0.92,0.69,786,0.5,216,2.4
+3894,2023,3,23,3,0,-5.9,1.06,0.019,0.62,0,0,0,0,0,-6,0,0,0,0,0.357,99.53,124.93,0.92,0.69,786,0.5,218,2.5
+3895,2023,3,23,3,30,-6,1.06,0.019,0.62,0,0,0,0,5,-6,0,0,0,0,0.358,100,120.27,0.92,0.69,786,0.5,218,2.4
+3896,2023,3,23,4,0,-6.1,1.07,0.019,0.62,0,0,0,0,5,-6.2,0,0,0,0,0.358,99.43,115.26,0.92,0.69,786,0.5,219,2.3
+3897,2023,3,23,4,30,-6.2,1.07,0.019,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.36,100,109.98,0.92,0.69,786,0.5,217,2.2
+3898,2023,3,23,5,0,-6.2,1.09,0.021,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.361,98.53,104.53,0.93,0.69,786,0.5,216,2.1
+3899,2023,3,23,5,30,-6.1,1.09,0.021,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.363,97.91,98.94,0.93,0.69,787,0.5,214,2.2
+3900,2023,3,23,6,0,-5.9,1.1,0.022,0.62,0,0,0,0,0,-6.4,0,0,7,0,0.365,96.03,93.27,0.93,0.69,787,0.5,212,2.2
+3901,2023,3,23,6,30,-4.6,1.1,0.022,0.62,20,307,34,6,7,-6.4,20,1,93,20,0.367,87.02,87.36,0.93,0.69,787,0.5,216,2.4
+3902,2023,3,23,7,0,-3.3,1.12,0.023,0.62,34,636,125,3,8,-5.6,73,28,43,77,0.369,83.85,81.79,0.93,0.69,787,0.5,221,2.6
+3903,2023,3,23,7,30,-1.8,1.12,0.023,0.62,44,781,231,0,7,-5.6,120,222,7,173,0.372,75.03,76.17,0.93,0.69,787,0.5,235,2.8
+3904,2023,3,23,8,0,-0.3,1.12,0.023,0.62,53,867,340,0,8,-5.6,164,196,4,229,0.374,67.28,70.64,0.93,0.69,787,0.5,249,3
+3905,2023,3,23,8,30,0.4,1.12,0.023,0.62,60,925,447,0,7,-5.6,206,314,14,338,0.377,63.95,65.24,0.93,0.69,787,0.5,254,3
+3906,2023,3,23,9,0,1.1,1.12,0.022,0.62,65,965,547,2,7,-6.2,281,145,21,353,0.379,58.09,60.06,0.93,0.69,787,0.5,258,3
+3907,2023,3,23,9,30,1.4,1.12,0.022,0.62,71,993,638,2,8,-6.2,305,92,25,358,0.381,56.85,55.16,0.93,0.69,787,0.5,256,2.9
+3908,2023,3,23,10,0,1.7,1.12,0.023,0.62,74,1014,717,4,7,-6.7,336,45,57,365,0.382,53.72,50.67,0.93,0.69,787,0.5,255,2.7
+3909,2023,3,23,10,30,1.8,1.12,0.023,0.62,80,1027,784,3,7,-6.7,372,236,43,534,0.382,53.34,46.71,0.93,0.69,787,0.5,250,2.7
+3910,2023,3,23,11,0,1.9,1.11,0.027,0.62,84,1036,836,0,7,-7.1,368,397,0,656,0.383,51.43,43.44,0.94,0.69,787,0.5,245,2.7
+3911,2023,3,23,11,30,1.9,1.11,0.027,0.62,87,1042,873,0,7,-7.1,252,734,14,806,0.382,51.43,41.04,0.94,0.69,787,0.5,240,2.7
+3912,2023,3,23,12,0,1.9,1.11,0.03,0.62,89,1044,893,0,7,-7.2,257,741,0,827,0.38,50.94,39.67,0.94,0.69,787,0.5,235,2.8
+3913,2023,3,23,12,30,1.8,1.11,0.03,0.62,90,1043,896,0,7,-7.2,180,888,43,866,0.378,51.3,39.43,0.95,0.69,787,0.5,232,2.9
+3914,2023,3,23,13,0,1.7,1.1,0.032,0.62,91,1037,881,0,7,-7.1,191,876,43,859,0.376,52.22,40.36,0.95,0.69,787,0.5,229,2.9
+3915,2023,3,23,13,30,1.5,1.1,0.032,0.62,89,1030,850,0,7,-7.1,262,708,29,785,0.374,52.91,42.38,0.95,0.69,786,0.6,227,3
+3916,2023,3,23,14,0,1.2,1.1,0.034,0.62,88,1018,804,0,7,-6.8,403,391,0,678,0.371,55.01,45.32,0.95,0.69,786,0.6,226,3
+3917,2023,3,23,14,30,0.9,1.1,0.034,0.62,84,1003,742,0,7,-6.8,330,470,11,638,0.367,56.21,49.03,0.95,0.69,786,0.6,226,3
+3918,2023,3,23,15,0,0.6,1.13,0.034,0.62,80,982,667,0,7,-6.5,303,363,4,520,0.364,59.04,53.32,0.95,0.69,786,0.6,226,2.9
+3919,2023,3,23,15,30,0.2,1.13,0.034,0.62,75,955,580,0,7,-6.5,299,214,0,412,0.362,60.77,58.07,0.95,0.69,786,0.6,226,2.7
+3920,2023,3,23,16,0,-0.2,1.15,0.034,0.62,68,918,483,0,7,-5.9,277,183,0,360,0.359,65.58,63.14,0.96,0.69,787,0.6,225,2.6
+3921,2023,3,23,16,30,-0.9,1.15,0.034,0.62,61,865,379,0,7,-5.9,192,228,0,276,0.358,69.01,68.46,0.96,0.69,787,0.6,223,1.9
+3922,2023,3,23,17,0,-1.5,1.16,0.035,0.62,53,788,271,0,7,-4.8,120,282,4,198,0.357,78.03,73.94,0.96,0.72,787,0.6,221,1.3
+3923,2023,3,23,17,30,-2.4,1.16,0.035,0.62,42,667,163,2,7,-4.8,96,177,29,128,0.357,83.38,79.52,0.96,0.72,787,0.6,215,1.1
+3924,2023,3,23,18,0,-3.2,1.18,0.035,0.62,28,451,66,7,7,-5.1,34,2,100,34,0.357,86.88,85.13,0.96,0.72,787,0.6,209,0.9
+3925,2023,3,23,18,30,-3.5,1.18,0.035,0.62,7,73,6,3,7,-5.1,3,0,43,3,0.356,88.84,90.96,0.96,0.72,787,0.6,203,0.8
+3926,2023,3,23,19,0,-3.7,1.19,0.034,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.354,89.08,96.63,0.95,0.72,787,0.6,198,0.8
+3927,2023,3,23,19,30,-3.9,1.19,0.034,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.353,90.42,102.24,0.95,0.72,787,0.6,197,0.9
+3928,2023,3,23,20,0,-4.1,1.2,0.033,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.351,90.93,107.74,0.95,0.72,787,0.6,196,0.9
+3929,2023,3,23,20,30,-4.3,1.2,0.033,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.35,92.3,113.07,0.95,0.72,787,0.6,198,0.9
+3930,2023,3,23,21,0,-4.6,1.2,0.033,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.348,93.29,118.17,0.95,0.72,787,0.6,201,1
+3931,2023,3,23,21,30,-4.8,1.2,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.347,94.71,122.96,0.95,0.72,787,0.6,205,1
+3932,2023,3,23,22,0,-5,1.2,0.035,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.346,95.18,127.33,0.95,0.72,787,0.6,209,1
+3933,2023,3,23,22,30,-5.3,1.2,0.035,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.345,97.37,131.15,0.95,0.72,787,0.6,211,1.1
+3934,2023,3,23,23,0,-5.6,1.19,0.035,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.344,98.62,134.28,0.95,0.72,787,0.6,213,1.1
+3935,2023,3,23,23,30,-5.7,1.19,0.035,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.344,99.24,136.57,0.95,0.72,786,0.6,213,1.1
+3936,2023,3,24,0,0,-5.9,1.17,0.036,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.343,99.78,137.86,0.95,0.72,786,0.6,213,1.2
+3937,2023,3,24,0,30,-6,1.17,0.036,0.62,0,0,0,0,4,-6,0,0,0,0,0.343,100,138.06,0.95,0.72,786,0.5,211,1.2
+3938,2023,3,24,1,0,-6.1,1.15,0.035,0.62,0,0,0,0,4,-6.1,0,0,0,0,0.343,100,137.15,0.95,0.72,786,0.5,209,1.3
+3939,2023,3,24,1,30,-6.1,1.15,0.035,0.62,0,0,0,0,4,-6.1,0,0,0,0,0.342,100,135.21,0.95,0.72,786,0.5,206,1.3
+3940,2023,3,24,2,0,-6.1,1.14,0.035,0.62,0,0,0,0,4,-6.3,0,0,0,0,0.342,98.52,132.36,0.95,0.72,785,0.5,202,1.2
+3941,2023,3,24,2,30,-6.1,1.14,0.035,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.342,98.52,128.76,0.95,0.72,785,0.5,199,1.3
+3942,2023,3,24,3,0,-6.1,1.12,0.037,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.342,97.36,124.57,0.95,0.72,785,0.5,196,1.3
+3943,2023,3,24,3,30,-6.2,1.12,0.037,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.342,98.11,119.92,0.95,0.72,785,0.5,191,1.3
+3944,2023,3,24,4,0,-6.3,1.1,0.039,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.342,97.11,114.92,0.96,0.72,785,0.5,186,1.2
+3945,2023,3,24,4,30,-6.3,1.1,0.039,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.344,97.11,109.66,0.96,0.72,785,0.5,181,1.2
+3946,2023,3,24,5,0,-6.3,1.09,0.043,0.62,0,0,0,0,4,-6.8,0,0,0,0,0.345,95.9,104.2,0.96,0.72,785,0.5,177,1.1
+3947,2023,3,24,5,30,-6,1.09,0.043,0.62,0,0,0,0,4,-6.8,0,0,0,0,0.346,93.73,98.62,0.96,0.72,785,0.5,175,1.2
+3948,2023,3,24,6,0,-5.7,1.08,0.045,0.62,0,0,0,1,4,-6.8,0,0,14,0,0.348,92.01,92.96,0.96,0.72,784,0.5,172,1.3
+3949,2023,3,24,6,30,-4.6,1.08,0.045,0.62,23,295,38,6,4,-6.8,18,33,93,20,0.35,84.66,87.06,0.96,0.72,784,0.5,170,1.3
+3950,2023,3,24,7,0,-3.6,1.09,0.044,0.62,40,591,128,2,4,-6.4,62,253,36,99,0.352,80.8,81.48,0.96,0.72,784,0.5,167,1.4
+3951,2023,3,24,7,30,-2.3,1.09,0.044,0.62,53,746,235,0,4,-6.4,128,246,4,188,0.352,73.36,75.86,0.96,0.72,784,0.5,179,1.5
+3952,2023,3,24,8,0,-1.1,1.09,0.04,0.62,62,841,345,0,4,-6.5,220,116,0,259,0.353,66.62,70.31,0.96,0.72,784,0.5,192,1.6
+3953,2023,3,24,8,30,-0.3,1.09,0.04,0.62,70,902,452,0,4,-6.5,234,114,0,282,0.352,62.85,64.91,0.95,0.72,784,0.5,203,2.1
+3954,2023,3,24,9,0,0.4,1.08,0.038,0.62,75,947,553,0,4,-7,277,20,0,287,0.351,57.73,59.71,0.95,0.72,784,0.5,214,2.5
+3955,2023,3,24,9,30,1,1.08,0.038,0.62,81,978,645,0,4,-7,353,85,0,402,0.349,55.22,54.81,0.95,0.72,783,0.5,218,3
+3956,2023,3,24,10,0,1.5,1.08,0.036,0.62,86,1001,725,0,4,-7,265,27,0,282,0.347,53.23,50.31,0.95,0.72,783,0.5,223,3.4
+3957,2023,3,24,10,30,1.6,1.08,0.036,0.62,93,1013,792,0,4,-7,376,74,0,427,0.346,52.85,46.33,0.95,0.72,783,0.5,226,3.8
+3958,2023,3,24,11,0,1.7,1.06,0.044,0.62,99,1020,844,0,4,-6.8,456,213,7,612,0.345,53.26,43.05,0.96,0.72,783,0.5,228,4.2
+3959,2023,3,24,11,30,1.7,1.06,0.044,0.62,101,1026,880,0,0,-6.8,214,759,0,790,0.345,53.26,40.64,0.96,0.72,783,0.5,231,4.4
+3960,2023,3,24,12,0,1.7,1.06,0.048,0.62,104,1025,898,0,0,-6.5,109,1017,7,896,0.346,54.37,39.27,0.96,0.72,782,0.6,234,4.7
+3961,2023,3,24,12,30,1.4,1.06,0.048,0.62,105,1023,900,0,7,-6.5,188,883,21,874,0.347,55.55,39.04,0.96,0.72,782,0.6,239,4.7
+3962,2023,3,24,13,0,1.1,1.05,0.052,0.62,106,1017,885,0,7,-6.4,281,640,18,771,0.349,57.4,39.99,0.97,0.72,782,0.6,245,4.8
+3963,2023,3,24,13,30,0.5,1.05,0.052,0.62,106,1007,854,0,6,-6.4,412,168,0,537,0.35,59.93,42.03,0.97,0.72,782,0.6,255,4.6
+3964,2023,3,24,14,0,-0.1,1.04,0.058,0.62,105,992,806,0,6,-6.3,358,10,0,365,0.352,63.24,45,0.97,0.72,781,0.6,265,4.4
+3965,2023,3,24,14,30,-0.6,1.04,0.058,0.62,102,976,746,0,6,-6.3,320,104,0,389,0.353,65.58,48.74,0.97,0.72,781,0.6,279,4.3
+3966,2023,3,24,15,0,-1,1.02,0.06,0.62,98,954,671,0,6,-6.4,301,371,7,524,0.354,66.78,53.06,0.97,0.72,781,0.6,294,4.3
+3967,2023,3,24,15,30,-1.5,1.02,0.06,0.62,90,927,584,0,9,-6.4,216,5,0,219,0.356,69.27,57.82,0.96,0.72,781,0.5,302,4.3
+3968,2023,3,24,16,0,-2,0.98,0.059,0.62,83,890,488,0,9,-7.3,153,2,0,154,0.357,67.19,62.91,0.96,0.72,781,0.5,310,4.4
+3969,2023,3,24,16,30,-2.5,0.98,0.059,0.62,74,832,382,0,6,-7.3,104,1,0,104,0.359,69.8,68.24,0.96,0.72,782,0.5,312,4.2
+3970,2023,3,24,17,0,-3.1,0.94,0.061,0.62,64,746,273,0,6,-8.5,67,1,0,67,0.36,66.39,73.73,0.96,0.79,782,0.5,313,3.9
+3971,2023,3,24,17,30,-3.7,0.94,0.061,0.62,50,618,165,1,7,-8.5,91,65,14,103,0.362,69.43,79.32,0.96,0.79,782,0.5,309,3.7
+3972,2023,3,24,18,0,-4.2,0.88,0.061,0.62,33,392,68,7,7,-9.8,25,0,100,25,0.364,65.24,84.94,0.96,0.79,783,0.4,305,3.6
+3973,2023,3,24,18,30,-4.7,0.88,0.061,0.62,6,54,6,3,7,-9.8,4,0,43,4,0.366,67.74,90.27,0.95,0.79,783,0.4,302,3.8
+3974,2023,3,24,19,0,-5.2,0.82,0.058,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.368,62.36,96.43,0.95,0.79,784,0.4,299,4
+3975,2023,3,24,19,30,-5.6,0.82,0.058,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.369,64.28,102.03,0.94,0.79,784,0.3,298,4.1
+3976,2023,3,24,20,0,-5.9,0.81,0.052,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.371,59.5,107.52,0.94,0.79,785,0.3,298,4.2
+3977,2023,3,24,20,30,-6.2,0.81,0.052,0.62,0,0,0,0,5,-12.5,0,0,0,0,0.373,60.88,112.84,0.93,0.79,785,0.3,296,4.1
+3978,2023,3,24,21,0,-6.5,0.84,0.047,0.62,0,0,0,0,5,-13.2,0,0,0,0,0.375,59.13,117.93,0.93,0.79,785,0.3,295,4.1
+3979,2023,3,24,21,30,-6.7,0.84,0.047,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.377,60.04,122.69,0.93,0.79,785,0.3,292,3.9
+3980,2023,3,24,22,0,-6.9,0.91,0.043,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.38,61.01,127.04,0.92,0.79,785,0.3,289,3.6
+3981,2023,3,24,22,30,-7,0.91,0.043,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.382,61.48,130.84,0.93,0.79,785,0.3,284,3.4
+3982,2023,3,24,23,0,-7.2,0.95,0.038,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.384,62.56,133.94,0.93,0.79,785,0.3,280,3.1
+3983,2023,3,24,23,30,-7.3,0.95,0.038,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.386,63.04,136.2,0.93,0.79,785,0.3,273,2.8
+3984,2023,3,25,0,0,-7.5,0.95,0.031,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.389,64.3,137.47,0.93,0.79,785,0.3,267,2.6
+3985,2023,3,25,0,30,-7.7,0.95,0.031,0.62,0,0,0,0,7,-13.1,0,0,0,0,0.39,65.3,137.66,0.93,0.79,785,0.3,261,2.5
+3986,2023,3,25,1,0,-7.8,0.92,0.026,0.62,0,0,0,0,7,-13,0,0,0,0,0.392,66.49,136.75,0.93,0.79,785,0.3,255,2.4
+3987,2023,3,25,1,30,-8.1,0.92,0.026,0.62,0,0,0,0,7,-13,0,0,0,0,0.393,68.05,134.81,0.93,0.79,785,0.3,251,2.4
+3988,2023,3,25,2,0,-8.3,0.91,0.025,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.395,69.65,131.97,0.93,0.79,785,0.3,246,2.5
+3989,2023,3,25,2,30,-8.4,0.91,0.025,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.395,70.19,128.39,0.93,0.79,785,0.3,243,2.6
+3990,2023,3,25,3,0,-8.5,0.92,0.024,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.396,70.74,124.21,0.93,0.79,784,0.3,240,2.8
+3991,2023,3,25,3,30,-8.6,0.92,0.024,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.397,71.3,119.57,0.93,0.79,784,0.3,239,2.9
+3992,2023,3,25,4,0,-8.7,0.93,0.024,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.397,72.55,114.58,0.93,0.79,784,0.3,237,3
+3993,2023,3,25,4,30,-8.7,0.93,0.024,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.397,72.55,109.33,0.93,0.79,784,0.2,238,3
+3994,2023,3,25,5,0,-8.8,0.94,0.024,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.397,73.11,103.88,0.93,0.79,784,0.2,239,3
+3995,2023,3,25,5,30,-8.7,0.94,0.024,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.398,72.63,98.31,0.93,0.79,785,0.2,243,3
+3996,2023,3,25,6,0,-8.5,0.95,0.024,0.62,0,0,0,0,0,-13,0,0,4,0,0.398,69.72,92.65,0.92,0.79,785,0.2,247,3.1
+3997,2023,3,25,6,30,-7.5,0.95,0.024,0.62,23,395,45,4,7,-13,25,157,61,34,0.399,64.51,86.76,0.92,0.79,785,0.2,257,3.5
+3998,2023,3,25,7,0,-6.5,0.96,0.024,0.62,36,689,142,2,7,-13.5,67,345,29,120,0.4,57.34,81.16,0.92,0.79,785,0.2,268,3.8
+3999,2023,3,25,7,30,-5.7,0.96,0.024,0.62,47,825,253,0,0,-13.5,47,825,0,253,0.401,53.94,75.54,0.92,0.79,785,0.2,273,4.2
+4000,2023,3,25,8,0,-4.9,0.97,0.024,0.62,56,907,366,0,0,-14.6,56,907,0,366,0.402,46.4,69.99,0.92,0.79,785,0.2,279,4.6
+4001,2023,3,25,8,30,-4.5,0.97,0.024,0.62,64,960,476,0,0,-14.6,64,960,0,476,0.403,45.02,64.58,0.93,0.79,785,0.2,280,4.8
+4002,2023,3,25,9,0,-4,0.96,0.026,0.62,72,996,579,0,0,-15.8,72,996,0,579,0.403,39.53,59.37,0.93,0.79,785,0.2,281,5
+4003,2023,3,25,9,30,-3.8,0.96,0.026,0.62,78,1024,673,0,0,-15.8,78,1024,0,673,0.403,38.94,54.46,0.93,0.79,785,0.2,280,5
+4004,2023,3,25,10,0,-3.5,0.95,0.027,0.62,82,1044,754,0,0,-16.2,111,985,0,745,0.403,36.84,49.94,0.93,0.79,785,0.2,279,5
+4005,2023,3,25,10,30,-3.2,0.95,0.027,0.62,86,1058,822,0,7,-16.2,245,777,0,785,0.403,35.98,45.95,0.93,0.79,784,0.2,277,5
+4006,2023,3,25,11,0,-2.9,0.93,0.028,0.62,90,1068,875,0,0,-16.2,90,1068,0,875,0.402,35.16,42.66,0.93,0.79,784,0.2,275,4.9
+4007,2023,3,25,11,30,-2.7,0.93,0.028,0.62,91,1075,912,0,0,-16.2,98,1065,0,911,0.401,34.64,40.24,0.93,0.79,784,0.2,273,4.8
+4008,2023,3,25,12,0,-2.5,0.92,0.028,0.62,94,1078,933,0,0,-16,123,1036,0,930,0.401,34.75,38.87,0.93,0.79,784,0.2,271,4.7
+4009,2023,3,25,12,30,-2.4,0.92,0.028,0.62,94,1076,934,0,7,-16,250,818,21,889,0.4,34.49,38.65,0.93,0.79,784,0.2,268,4.7
+4010,2023,3,25,13,0,-2.4,0.91,0.029,0.62,93,1070,917,0,7,-15.7,276,769,21,868,0.399,35.36,39.62,0.93,0.79,784,0.3,266,4.6
+4011,2023,3,25,13,30,-2.4,0.91,0.029,0.62,92,1060,884,0,7,-15.7,238,833,14,860,0.398,35.36,41.69,0.93,0.79,784,0.3,264,4.5
+4012,2023,3,25,14,0,-2.4,0.89,0.031,0.62,90,1046,834,0,0,-15.3,107,1016,7,829,0.397,36.46,44.69,0.93,0.79,784,0.3,261,4.5
+4013,2023,3,25,14,30,-2.6,0.89,0.031,0.62,87,1029,770,0,7,-15.3,179,863,21,751,0.396,37,48.45,0.93,0.79,784,0.3,260,4.4
+4014,2023,3,25,15,0,-2.8,0.88,0.033,0.62,84,1009,694,0,7,-14.9,185,800,21,669,0.395,38.76,52.79,0.93,0.79,784,0.3,258,4.3
+4015,2023,3,25,15,30,-3.1,0.88,0.033,0.62,79,981,605,0,7,-14.9,161,770,18,574,0.394,39.63,57.57,0.93,0.79,784,0.3,259,4.2
+4016,2023,3,25,16,0,-3.5,0.87,0.036,0.62,73,943,506,0,0,-14.5,83,915,4,503,0.393,42.23,62.68,0.94,0.79,784,0.3,259,4
+4017,2023,3,25,16,30,-3.9,0.87,0.036,0.62,66,890,399,0,0,-14.5,69,876,0,397,0.392,43.51,68.02,0.94,0.79,784,0.3,263,3.7
+4018,2023,3,25,17,0,-4.4,0.86,0.038,0.62,57,812,287,0,0,-14.3,69,762,7,285,0.392,45.9,73.53,0.94,0.8,784,0.3,268,3.4
+4019,2023,3,25,17,30,-4.9,0.86,0.038,0.62,46,689,176,0,0,-14.3,48,675,0,175,0.392,47.66,79.12,0.94,0.8,784,0.3,275,3.1
+4020,2023,3,25,18,0,-5.5,0.85,0.041,0.62,31,468,74,0,0,-14.1,32,444,7,73,0.393,50.72,84.74,0.94,0.8,784,0.3,281,2.7
+4021,2023,3,25,18,30,-5.7,0.85,0.041,0.62,7,76,7,0,0,-14.1,7,58,7,7,0.393,51.56,90.09,0.94,0.8,785,0.3,288,2.7
+4022,2023,3,25,19,0,-6,0.85,0.043,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.393,53.67,96.23,0.94,0.8,785,0.3,295,2.6
+4023,2023,3,25,19,30,-6.2,0.85,0.043,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.393,54.5,101.83,0.94,0.8,785,0.3,299,2.6
+4024,2023,3,25,20,0,-6.3,0.85,0.045,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.393,54.83,107.3,0.94,0.8,785,0.3,303,2.6
+4025,2023,3,25,20,30,-6.5,0.85,0.045,0.62,0,0,0,0,5,-13.9,0,0,0,0,0.392,55.75,112.61,0.93,0.8,786,0.3,304,2.5
+4026,2023,3,25,21,0,-6.7,0.86,0.046,0.62,0,0,0,0,8,-14.1,0,0,0,0,0.392,55.82,117.68,0.93,0.8,786,0.3,305,2.5
+4027,2023,3,25,21,30,-6.9,0.86,0.046,0.62,0,0,0,0,7,-14.1,0,0,14,0,0.391,56.68,122.43,0.93,0.8,786,0.3,305,2.3
+4028,2023,3,25,22,0,-7.2,0.87,0.047,0.62,0,0,0,0,8,-14.3,0,0,0,0,0.39,56.68,126.75,0.93,0.8,786,0.3,306,2.1
+4029,2023,3,25,22,30,-7.5,0.87,0.047,0.62,0,0,0,0,5,-14.4,0,0,0,0,0.389,57.93,130.52,0.93,0.8,785,0.3,305,1.9
+4030,2023,3,25,23,0,-7.7,0.9,0.047,0.62,0,0,0,0,5,-14.2,0,0,0,0,0.389,59.5,133.61,0.93,0.8,785,0.3,305,1.6
+4031,2023,3,25,23,30,-8,0.9,0.047,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.389,60.89,135.84,0.93,0.8,785,0.3,303,1.4
+4032,2023,3,26,0,0,-8.3,0.95,0.046,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.39,62.73,137.09,0.93,0.8,785,0.2,302,1.2
+4033,2023,3,26,0,30,-8.5,0.95,0.046,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.391,63.71,137.26,0.93,0.8,785,0.2,301,1.1
+4034,2023,3,26,1,0,-8.7,0.98,0.046,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.392,62.63,136.35,0.93,0.8,785,0.2,300,1
+4035,2023,3,26,1,30,-8.8,0.98,0.046,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.393,63.12,134.41,0.93,0.8,785,0.2,301,0.9
+4036,2023,3,26,2,0,-8.9,1,0.047,0.62,0,0,0,0,0,-15,0,0,0,0,0.393,61.39,131.58,0.93,0.8,785,0.2,301,0.7
+4037,2023,3,26,2,30,-9.1,1,0.047,0.62,0,0,0,0,0,-15,0,0,0,0,0.393,62.36,128.01,0.93,0.8,785,0.2,303,0.6
+4038,2023,3,26,3,0,-9.2,1.01,0.047,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.393,62.26,123.85,0.93,0.8,785,0.2,305,0.4
+4039,2023,3,26,3,30,-9.3,1.01,0.047,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.393,62.75,119.22,0.93,0.8,785,0.2,303,0.3
+4040,2023,3,26,4,0,-9.4,1.04,0.047,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.392,64.93,114.24,0.94,0.8,785,0.2,301,0.1
+4041,2023,3,26,4,30,-9.6,1.04,0.047,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.392,65.96,109,0.94,0.8,785,0.2,224,0.2
+4042,2023,3,26,5,0,-9.8,1.07,0.048,0.62,0,0,0,0,0,-15,0,0,0,0,0.392,65.54,103.56,0.94,0.8,785,0.2,146,0.3
+4043,2023,3,26,5,30,-9.8,1.07,0.048,0.62,0,0,0,0,0,-15,0,0,0,0,0.392,65.54,97.99,0.94,0.8,785,0.2,147,0.4
+4044,2023,3,26,6,0,-9.8,1.09,0.05,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.393,67.55,92.33,0.94,0.8,785,0.2,149,0.6
+4045,2023,3,26,6,30,-8.8,1.09,0.05,0.62,26,340,47,0,0,-14.7,26,340,0,47,0.394,62.45,86.46,0.94,0.8,785,0.2,163,0.9
+4046,2023,3,26,7,0,-7.8,1.11,0.052,0.62,44,628,144,0,0,-15.2,44,628,0,144,0.394,55.27,80.85,0.94,0.8,785,0.2,176,1.3
+4047,2023,3,26,7,30,-7,1.11,0.052,0.62,58,771,255,0,0,-15.2,58,771,0,255,0.395,51.96,75.22,0.94,0.8,785,0.2,194,1.6
+4048,2023,3,26,8,0,-6.1,1.12,0.054,0.62,70,859,368,0,0,-16.1,70,859,0,368,0.396,45.01,69.67,0.94,0.8,785,0.2,212,2
+4049,2023,3,26,8,30,-5.6,1.12,0.054,0.62,80,918,479,0,0,-16.1,80,918,0,479,0.396,43.38,64.25,0.94,0.8,786,0.2,217,2.3
+4050,2023,3,26,9,0,-5.1,1.14,0.056,0.62,89,959,582,0,0,-16.4,89,959,0,582,0.397,40.84,59.03,0.94,0.8,786,0.2,222,2.6
+4051,2023,3,26,9,30,-4.5,1.14,0.056,0.62,96,990,676,0,0,-16.4,96,990,0,676,0.397,39.03,54.11,0.94,0.8,786,0.2,222,2.9
+4052,2023,3,26,10,0,-3.9,1.16,0.056,0.62,102,1012,758,0,0,-16,102,1012,0,758,0.397,38.39,49.57,0.94,0.8,786,0.2,222,3.1
+4053,2023,3,26,10,30,-3.4,1.16,0.056,0.62,108,1027,827,0,0,-16,108,1027,0,827,0.397,36.93,45.57,0.95,0.8,785,0.2,222,3.4
+4054,2023,3,26,11,0,-2.9,1.17,0.059,0.62,112,1038,880,0,0,-15.7,112,1038,0,880,0.396,36.6,42.27,0.95,0.8,785,0.2,221,3.6
+4055,2023,3,26,11,30,-2.6,1.17,0.059,0.62,117,1042,917,0,0,-15.7,117,1042,0,917,0.396,35.79,39.84,0.95,0.8,785,0.2,222,3.8
+4056,2023,3,26,12,0,-2.3,1.17,0.068,0.62,122,1041,937,0,0,-15.5,122,1041,0,937,0.396,35.66,38.47,0.96,0.8,785,0.2,222,4.1
+4057,2023,3,26,12,30,-2.2,1.17,0.068,0.62,127,1029,935,0,0,-15.5,127,1029,0,935,0.397,35.4,38.27,0.96,0.8,785,0.3,224,4.3
+4058,2023,3,26,13,0,-2.2,1.14,0.087,0.62,134,1009,915,0,0,-15.2,201,890,7,890,0.397,36.16,39.25,0.96,0.8,785,0.3,226,4.5
+4059,2023,3,26,13,30,-2.5,1.14,0.087,0.62,135,993,881,0,7,-15.2,255,817,18,868,0.398,36.97,41.34,0.97,0.8,785,0.3,229,4.6
+4060,2023,3,26,14,0,-2.8,1.11,0.102,0.62,136,973,832,0,7,-14.6,400,547,0,791,0.399,39.91,44.37,0.97,0.8,785,0.3,231,4.8
+4061,2023,3,26,14,30,-3.3,1.11,0.102,0.62,130,957,768,0,7,-14.6,460,260,0,633,0.4,41.42,48.16,0.97,0.8,785,0.3,235,4.8
+4062,2023,3,26,15,0,-3.7,1.12,0.099,0.62,122,935,691,0,7,-13.7,348,450,0,622,0.401,45.83,52.53,0.97,0.8,785,0.3,238,4.7
+4063,2023,3,26,15,30,-4.1,1.12,0.099,0.62,115,901,601,0,7,-13.7,291,260,0,431,0.401,47.22,57.33,0.97,0.8,785,0.3,242,4.5
+4064,2023,3,26,16,0,-4.6,1.12,0.103,0.62,106,854,501,0,6,-13.4,169,1,0,169,0.402,50.12,62.45,0.97,0.8,785,0.3,245,4.2
+4065,2023,3,26,16,30,-4.9,1.12,0.103,0.62,94,791,393,0,6,-13.4,116,1,0,116,0.402,51.27,67.81,0.97,0.8,785,0.3,248,3.7
+4066,2023,3,26,17,0,-5.3,1.13,0.106,0.62,80,700,281,0,6,-13.7,73,0,0,73,0.402,51.59,73.32,0.97,0.8,786,0.3,251,3.3
+4067,2023,3,26,17,30,-5.7,1.13,0.106,0.62,62,565,171,1,6,-13.7,43,0,14,43,0.402,53.18,78.92,0.97,0.8,786,0.3,253,2.8
+4068,2023,3,26,18,0,-6,1.14,0.104,0.62,39,344,72,7,6,-13.9,32,0,100,32,0.403,53.74,84.55,0.97,0.8,786,0.3,256,2.4
+4069,2023,3,26,18,30,-6.1,1.14,0.104,0.62,7,46,7,4,6,-13.9,4,0,57,4,0.404,54.15,89.92,0.97,0.8,786,0.3,260,2.1
+4070,2023,3,26,19,0,-6.3,1.14,0.1,0.62,0,0,0,0,6,-13.6,0,0,0,0,0.405,56.24,96.03,0.97,0.8,786,0.3,265,1.8
+4071,2023,3,26,19,30,-6.4,1.14,0.1,0.62,0,0,0,0,9,-13.6,0,0,0,0,0.406,56.67,101.62,0.97,0.8,786,0.3,274,1.7
+4072,2023,3,26,20,0,-6.4,1.12,0.096,0.62,0,0,0,0,9,-13.6,0,0,0,0,0.407,56.8,107.09,0.97,0.8,786,0.3,284,1.7
+4073,2023,3,26,20,30,-6.6,1.12,0.096,0.62,0,0,0,0,6,-13.6,0,0,0,0,0.408,57.68,112.38,0.97,0.8,786,0.3,293,1.9
+4074,2023,3,26,21,0,-6.7,1.09,0.091,0.62,0,0,0,0,9,-13.7,0,0,0,0,0.409,57.57,117.43,0.97,0.8,786,0.3,301,2
+4075,2023,3,26,21,30,-6.8,1.09,0.091,0.62,0,0,0,0,6,-13.7,0,0,14,0,0.41,58.08,122.16,0.97,0.8,787,0.3,307,2.2
+4076,2023,3,26,22,0,-7,1.07,0.079,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.411,58.53,126.46,0.96,0.8,787,0.3,312,2.5
+4077,2023,3,26,22,30,-7.2,1.07,0.079,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.413,59.44,130.21,0.96,0.8,787,0.3,315,2.6
+4078,2023,3,26,23,0,-7.4,1.05,0.064,0.62,0,0,0,0,7,-14,0,0,0,0,0.414,59.08,133.27,0.96,0.8,787,0.3,318,2.7
+4079,2023,3,26,23,30,-7.6,1.05,0.064,0.62,0,0,0,0,7,-14,0,0,0,0,0.416,60,135.48,0.96,0.8,787,0.3,318,2.7
+4080,2023,3,27,0,0,-7.9,1.05,0.05,0.62,0,0,0,0,7,-14.3,0,0,0,0,0.417,60.05,136.71,0.96,0.8,787,0.3,318,2.7
+4081,2023,3,27,0,30,-8.2,1.05,0.05,0.62,0,0,0,0,7,-14.3,0,0,0,0,0.419,61.46,136.87,0.95,0.8,787,0.3,314,2.7
+4082,2023,3,27,1,0,-8.5,1.06,0.039,0.62,0,0,0,0,7,-14.5,0,0,0,0,0.42,61.91,135.95,0.95,0.8,788,0.3,310,2.7
+4083,2023,3,27,1,30,-8.9,1.06,0.039,0.62,0,0,0,0,7,-14.5,0,0,0,0,0.421,63.87,134.02,0.94,0.8,788,0.2,307,2.6
+4084,2023,3,27,2,0,-9.2,1.07,0.031,0.62,0,0,0,0,7,-14.7,0,0,0,0,0.422,64.34,131.2,0.94,0.8,788,0.2,304,2.6
+4085,2023,3,27,2,30,-9.6,1.07,0.031,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.423,66.39,127.64,0.93,0.8,788,0.2,302,2.4
+4086,2023,3,27,3,0,-10,1.09,0.026,0.62,0,0,0,0,0,-15,0,0,0,0,0.424,66.79,123.49,0.93,0.8,788,0.2,301,2.3
+4087,2023,3,27,3,30,-10.5,1.09,0.026,0.62,0,0,0,0,0,-15,0,0,0,0,0.427,69.57,118.87,0.92,0.8,789,0.2,300,2.1
+4088,2023,3,27,4,0,-11,1.1,0.023,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.429,70.17,113.9,0.92,0.8,789,0.2,300,1.9
+4089,2023,3,27,4,30,-11.5,1.1,0.023,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.431,73.03,108.67,0.92,0.8,789,0.2,298,1.7
+4090,2023,3,27,5,0,-12,1.11,0.023,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.433,73.7,103.24,0.92,0.8,789,0.2,296,1.5
+4091,2023,3,27,5,30,-12,1.11,0.023,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.436,73.79,97.67,0.93,0.8,790,0.2,294,1.6
+4092,2023,3,27,6,0,-11.9,1.11,0.024,0.62,3,40,2,0,0,-16,3,30,4,2,0.438,71.34,92.02,0.93,0.8,790,0.2,292,1.7
+4093,2023,3,27,6,30,-10.6,1.11,0.024,0.62,24,468,55,2,0,-16,25,369,21,50,0.441,64.3,86.15,0.93,0.8,790,0.2,292,1.9
+4094,2023,3,27,7,0,-9.3,1.12,0.025,0.62,37,704,153,0,0,-16.3,39,681,4,151,0.444,56.73,80.54,0.93,0.8,791,0.2,293,2.2
+4095,2023,3,27,7,30,-7.7,1.12,0.025,0.62,49,830,265,0,0,-16.3,49,830,0,265,0.446,50.08,74.91,0.93,0.8,791,0.2,288,2.2
+4096,2023,3,27,8,0,-6.1,1.14,0.026,0.62,58,907,378,0,0,-17.7,58,907,0,378,0.448,39.34,69.35,0.93,0.8,791,0.2,283,2.2
+4097,2023,3,27,8,30,-5.5,1.14,0.026,0.62,65,960,487,0,0,-17.7,65,960,0,487,0.449,37.63,63.92,0.93,0.8,792,0.2,279,2.3
+4098,2023,3,27,9,0,-4.8,1.14,0.026,0.62,72,998,590,0,0,-18.4,72,998,0,590,0.45,33.68,58.7,0.93,0.8,792,0.2,275,2.3
+4099,2023,3,27,9,30,-4.3,1.14,0.026,0.62,78,1024,683,0,0,-18.4,99,978,0,677,0.45,32.44,53.76,0.93,0.8,792,0.2,277,2.6
+4100,2023,3,27,10,0,-3.7,1.13,0.027,0.62,83,1043,764,0,0,-18,214,729,0,690,0.449,32.04,49.21,0.93,0.8,792,0.2,279,2.8
+4101,2023,3,27,10,30,-3.4,1.13,0.027,0.62,86,1058,832,0,7,-18,315,466,21,643,0.448,31.37,45.19,0.93,0.8,793,0.2,281,3
+4102,2023,3,27,11,0,-3,1.11,0.028,0.62,91,1067,885,0,8,-17.6,417,271,7,619,0.447,31.61,41.88,0.93,0.8,793,0.2,284,3.2
+4103,2023,3,27,11,30,-2.7,1.11,0.028,0.62,93,1073,922,0,7,-17.6,310,671,18,828,0.445,30.91,39.44,0.93,0.8,793,0.2,286,3.4
+4104,2023,3,27,12,0,-2.4,1.1,0.029,0.62,95,1076,942,0,7,-17.2,464,421,4,795,0.444,31.12,38.07,0.93,0.8,793,0.2,287,3.5
+4105,2023,3,27,12,30,-2.2,1.1,0.029,0.62,95,1076,944,0,7,-17.2,537,338,0,804,0.442,30.66,37.88,0.93,0.8,793,0.2,288,3.6
+4106,2023,3,27,13,0,-2,1.09,0.03,0.62,95,1073,930,0,7,-17,461,499,4,849,0.44,30.83,38.89,0.93,0.8,793,0.2,289,3.7
+4107,2023,3,27,13,30,-1.8,1.09,0.03,0.62,93,1067,898,0,7,-17,394,566,0,821,0.438,30.38,41,0.92,0.8,793,0.2,288,3.6
+4108,2023,3,27,14,0,-1.7,1.07,0.031,0.62,90,1057,850,0,7,-16.9,408,468,0,744,0.436,30.41,44.06,0.92,0.8,794,0.2,288,3.5
+4109,2023,3,27,14,30,-1.6,1.07,0.031,0.62,87,1044,787,0,7,-16.9,259,676,7,712,0.433,30.19,47.87,0.92,0.8,794,0.2,286,3.2
+4110,2023,3,27,15,0,-1.6,1.04,0.03,0.62,82,1026,710,0,8,-16.9,203,772,7,676,0.431,30.02,52.26,0.92,0.8,794,0.2,284,2.9
+4111,2023,3,27,15,30,-1.7,1.04,0.03,0.62,77,1002,621,0,0,-16.9,170,749,0,577,0.429,30.24,57.09,0.92,0.8,794,0.2,279,2.6
+4112,2023,3,27,16,0,-1.9,1.04,0.028,0.62,69,970,521,0,0,-16.9,73,955,7,518,0.427,30.72,62.23,0.91,0.8,794,0.2,273,2.3
+4113,2023,3,27,16,30,-2.4,1.04,0.028,0.62,61,924,413,0,0,-16.9,61,924,0,413,0.425,31.87,67.6,0.91,0.8,794,0.2,261,2
+4114,2023,3,27,17,0,-2.9,1.08,0.026,0.62,51,857,300,0,0,-16.6,51,857,0,300,0.422,33.95,73.12,0.91,0.76,794,0.2,249,1.8
+4115,2023,3,27,17,30,-4.2,1.08,0.026,0.62,42,748,188,0,0,-16.6,42,748,0,188,0.419,37.41,78.72,0.91,0.76,794,0.2,227,1.4
+4116,2023,3,27,18,0,-5.5,1.08,0.027,0.62,28,555,83,0,0,-12.5,28,555,0,83,0.416,57.89,84.35,0.9,0.76,795,0.2,206,1
+4117,2023,3,27,18,30,-6,1.08,0.027,0.62,10,145,11,0,0,-12.5,10,145,0,11,0.412,60.13,89.74,0.9,0.76,795,0.2,195,1.1
+4118,2023,3,27,19,0,-6.5,1.08,0.027,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.409,61.66,95.83,0.9,0.76,795,0.2,184,1.2
+4119,2023,3,27,19,30,-6.7,1.08,0.027,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.406,62.61,101.41,0.9,0.76,795,0.2,181,1.3
+4120,2023,3,27,20,0,-6.9,1.08,0.026,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.404,62.69,106.87,0.9,0.76,795,0.2,177,1.3
+4121,2023,3,27,20,30,-7.1,1.08,0.026,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.402,63.66,112.15,0.9,0.76,795,0.2,177,1.4
+4122,2023,3,27,21,0,-7.3,1.08,0.025,0.62,0,0,0,0,0,-12.9,0,0,0,0,0.401,64.18,117.19,0.9,0.76,795,0.2,176,1.4
+4123,2023,3,27,21,30,-7.5,1.08,0.025,0.62,0,0,0,0,0,-12.9,0,0,14,0,0.399,65.17,121.89,0.9,0.76,795,0.2,177,1.5
+4124,2023,3,27,22,0,-7.7,1.1,0.022,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.397,65.04,126.17,0.9,0.76,795,0.2,178,1.6
+4125,2023,3,27,22,30,-8,1.1,0.022,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.396,66.57,129.9,0.89,0.76,795,0.2,178,1.7
+4126,2023,3,27,23,0,-8.2,1.09,0.021,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.395,66.77,132.93,0.89,0.76,795,0.2,178,1.8
+4127,2023,3,27,23,30,-8.6,1.09,0.021,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.394,68.88,135.11,0.89,0.76,795,0.2,177,1.8
+4128,2023,3,28,0,0,-8.9,1.09,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.393,69.5,136.32,0.89,0.76,795,0.2,177,1.9
+4129,2023,3,28,0,30,-9.3,1.09,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.391,71.71,136.47,0.89,0.76,795,0.2,177,1.9
+4130,2023,3,28,1,0,-9.8,1.1,0.022,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.389,73.36,135.55,0.89,0.76,795,0.2,177,1.9
+4131,2023,3,28,1,30,-10.1,1.1,0.022,0.62,0,0,0,0,0,-13.7,0,0,0,0,0.386,75.12,133.62,0.89,0.76,795,0.3,175,2
+4132,2023,3,28,2,0,-10.5,1.14,0.025,0.62,0,0,0,0,0,-14,0,0,0,0,0.383,75.76,130.81,0.9,0.76,795,0.3,174,2.1
+4133,2023,3,28,2,30,-10.8,1.14,0.025,0.62,0,0,0,0,0,-14,0,0,0,0,0.381,77.49,127.26,0.9,0.76,794,0.3,173,2.1
+4134,2023,3,28,3,0,-11.1,1.18,0.028,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.378,77.62,123.12,0.91,0.76,794,0.3,172,2.2
+4135,2023,3,28,3,30,-11.3,1.18,0.028,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.377,78.87,118.52,0.91,0.76,794,0.3,173,2.1
+4136,2023,3,28,4,0,-11.6,1.21,0.031,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.375,79.11,113.56,0.91,0.76,794,0.3,173,2
+4137,2023,3,28,4,30,-11.8,1.21,0.031,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.374,80.39,108.34,0.91,0.76,794,0.3,173,1.9
+4138,2023,3,28,5,0,-12,1.23,0.036,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.373,79.83,102.92,0.92,0.76,794,0.3,172,1.8
+4139,2023,3,28,5,30,-11.7,1.23,0.036,0.62,0,0,0,0,4,-14.8,0,0,0,0,0.372,77.93,97.36,0.92,0.76,794,0.4,170,1.9
+4140,2023,3,28,6,0,-11.4,1.22,0.038,0.62,4,35,3,1,0,-15,3,18,14,2,0.371,74.7,91.71,0.92,0.76,794,0.4,169,2.1
+4141,2023,3,28,6,30,-10,1.22,0.038,0.62,26,425,57,6,5,-15,26,59,86,30,0.369,66.84,85.85,0.92,0.76,794,0.4,169,2.3
+4142,2023,3,28,7,0,-8.6,1.21,0.035,0.62,41,662,153,2,0,-14.4,60,362,21,121,0.368,62.72,80.23,0.92,0.76,794,0.4,168,2.6
+4143,2023,3,28,7,30,-6.6,1.21,0.035,0.62,52,794,263,0,0,-14.4,58,742,0,255,0.368,53.74,74.6,0.91,0.76,794,0.4,180,3
+4144,2023,3,28,8,0,-4.5,1.18,0.031,0.62,60,878,374,0,0,-14.3,60,878,0,374,0.367,46.2,69.03,0.91,0.76,794,0.4,191,3.4
+4145,2023,3,28,8,30,-2.9,1.18,0.031,0.62,67,936,483,0,0,-14.3,113,791,0,465,0.368,40.99,63.59,0.91,0.76,794,0.4,197,3.9
+4146,2023,3,28,9,0,-1.2,1.14,0.029,0.62,73,976,585,0,7,-15.1,245,534,7,525,0.369,33.91,58.36,0.91,0.76,793,0.4,203,4.3
+4147,2023,3,28,9,30,-0.2,1.14,0.029,0.62,78,1003,676,0,0,-15.1,140,867,0,657,0.369,31.53,53.41,0.91,0.76,793,0.4,205,4.4
+4148,2023,3,28,10,0,0.9,1.13,0.028,0.62,83,1023,756,0,0,-14.3,83,1023,0,756,0.369,31.12,48.85,0.91,0.76,793,0.4,207,4.6
+4149,2023,3,28,10,30,1.8,1.13,0.028,0.62,85,1036,820,0,0,-14.3,111,994,25,816,0.368,29.14,44.82,0.91,0.76,792,0.4,209,4.8
+4150,2023,3,28,11,0,2.7,1.14,0.027,0.62,88,1046,872,0,7,-13.5,165,921,39,855,0.367,29.33,41.49,0.91,0.76,792,0.4,211,5
+4151,2023,3,28,11,30,3.3,1.14,0.027,0.62,89,1054,908,0,0,-13.5,98,1043,4,908,0.366,28.11,39.05,0.91,0.76,792,0.4,211,5.2
+4152,2023,3,28,12,0,4,1.14,0.027,0.62,90,1057,927,0,0,-12.9,90,1057,0,927,0.365,28.07,37.67,0.91,0.76,791,0.4,212,5.4
+4153,2023,3,28,12,30,4.3,1.14,0.027,0.62,91,1057,930,0,0,-12.9,91,1057,0,930,0.364,27.49,37.49,0.91,0.76,791,0.4,212,5.5
+4154,2023,3,28,13,0,4.7,1.12,0.028,0.62,91,1054,916,0,0,-12.5,91,1054,0,916,0.364,27.49,38.52,0.92,0.76,791,0.4,212,5.6
+4155,2023,3,28,13,30,4.7,1.12,0.028,0.62,91,1047,885,0,0,-12.5,91,1047,0,885,0.363,27.46,40.66,0.92,0.76,790,0.4,213,5.7
+4156,2023,3,28,14,0,4.8,1.04,0.032,0.62,90,1032,835,0,0,-12.4,90,1032,0,835,0.363,27.57,43.75,0.92,0.76,790,0.5,213,5.7
+4157,2023,3,28,14,30,4.6,1.04,0.032,0.62,86,1014,770,0,0,-12.4,86,1014,0,770,0.361,27.95,47.59,0.92,0.76,790,0.5,214,5.5
+4158,2023,3,28,15,0,4.4,0.99,0.033,0.62,83,993,694,0,0,-12.2,83,993,0,694,0.36,28.74,52.01,0.92,0.76,789,0.5,215,5.4
+4159,2023,3,28,15,30,4,0.99,0.033,0.62,78,966,606,0,0,-12.2,78,966,0,606,0.358,29.55,56.85,0.92,0.76,789,0.5,215,5.1
+4160,2023,3,28,16,0,3.7,0.99,0.035,0.62,72,930,508,0,0,-11.6,72,930,0,508,0.357,31.66,62.01,0.92,0.76,789,0.5,216,4.8
+4161,2023,3,28,16,30,2.6,0.99,0.035,0.62,65,879,403,0,0,-11.6,65,879,0,403,0.356,34.22,67.39,0.92,0.76,789,0.5,216,3.7
+4162,2023,3,28,17,0,1.6,1.02,0.037,0.62,55,805,292,0,0,-9,55,805,0,292,0.355,45.21,72.91,0.92,0.65,789,0.5,217,2.6
+4163,2023,3,28,17,30,-0.2,1.02,0.037,0.62,46,686,182,0,0,-9,46,686,0,182,0.354,51.47,78.53,0.93,0.65,789,0.5,216,2.1
+4164,2023,3,28,18,0,-1.9,1.05,0.042,0.62,32,481,81,0,0,-8.5,32,481,0,81,0.353,60.51,84.16,0.93,0.65,789,0.5,215,1.6
+4165,2023,3,28,18,30,-2.3,1.05,0.042,0.62,10,115,11,0,0,-8.5,10,115,0,11,0.353,62.32,89.58,0.94,0.65,789,0.5,213,1.5
+4166,2023,3,28,19,0,-2.8,1.07,0.047,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.353,63.68,95.62,0.94,0.65,789,0.5,211,1.4
+4167,2023,3,28,19,30,-2.9,1.07,0.047,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.353,64.15,101.2,0.94,0.65,789,0.6,205,1.3
+4168,2023,3,28,20,0,-3.1,1.1,0.05,0.62,0,0,0,0,6,-8.7,0,0,0,0,0.353,65.43,106.65,0.94,0.65,789,0.6,199,1.3
+4169,2023,3,28,20,30,-3.2,1.1,0.05,0.62,0,0,0,0,7,-8.7,0,0,0,0,0.353,65.92,111.92,0.94,0.65,789,0.6,192,1.3
+4170,2023,3,28,21,0,-3.2,1.1,0.05,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.352,67.12,116.94,0.93,0.65,789,0.6,184,1.3
+4171,2023,3,28,21,30,-3.2,1.1,0.05,0.62,0,0,0,0,7,-8.4,0,0,14,0,0.351,67.12,121.63,0.93,0.65,789,0.6,180,1.3
+4172,2023,3,28,22,0,-3.2,1.12,0.051,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.351,69.03,125.88,0.93,0.65,788,0.6,175,1.3
+4173,2023,3,28,22,30,-3.2,1.12,0.051,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.35,69.03,129.58,0.94,0.65,788,0.6,172,1.4
+4174,2023,3,28,23,0,-3.3,1.16,0.059,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.349,71.43,132.59,0.94,0.65,788,0.6,169,1.4
+4175,2023,3,28,23,30,-3.3,1.16,0.059,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.348,71.43,134.75,0.95,0.65,788,0.7,166,1.4
+4176,2023,3,29,0,0,-3.4,1.19,0.079,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.347,73.91,135.94,0.95,0.65,787,0.7,164,1.4
+4177,2023,3,29,0,30,-3.2,1.19,0.079,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.346,72.82,136.08,0.96,0.65,787,0.7,161,1.4
+4178,2023,3,29,1,0,-3.1,1.2,0.088,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.345,75.01,135.15,0.96,0.65,787,0.7,159,1.4
+4179,2023,3,29,1,30,-2.9,1.2,0.088,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.344,73.9,133.23,0.96,0.65,787,0.7,158,1.4
+4180,2023,3,29,2,0,-2.6,1.2,0.087,0.62,0,0,0,0,6,-6.3,0,0,0,0,0.343,75.98,130.43,0.96,0.65,787,0.7,157,1.3
+4181,2023,3,29,2,30,-2.5,1.2,0.087,0.62,0,0,0,0,6,-6.3,0,0,0,0,0.343,75.32,126.89,0.96,0.65,786,0.7,158,1.2
+4182,2023,3,29,3,0,-2.3,1.2,0.087,0.62,0,0,0,0,6,-5.6,0,0,0,0,0.342,78.28,122.76,0.96,0.65,786,0.7,158,1.1
+4183,2023,3,29,3,30,-2.1,1.2,0.087,0.62,0,0,0,0,6,-5.6,0,0,0,0,0.341,77.13,118.17,0.96,0.65,786,0.7,159,1.1
+4184,2023,3,29,4,0,-2,1.21,0.085,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.34,78.09,113.23,0.95,0.65,786,0.7,159,1
+4185,2023,3,29,4,30,-1.9,1.21,0.085,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.34,77.52,108.01,0.95,0.65,786,0.7,162,1.1
+4186,2023,3,29,5,0,-1.8,1.22,0.077,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.34,77.42,102.6,0.95,0.65,785,0.8,164,1.1
+4187,2023,3,29,5,30,-1.5,1.22,0.077,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.339,75.73,97.04,0.95,0.65,785,0.8,169,1.2
+4188,2023,3,29,6,0,-1.3,1.24,0.066,0.62,4,25,3,2,7,-4.9,2,0,36,2,0.339,76.24,91.4,0.94,0.65,785,0.8,173,1.3
+4189,2023,3,29,6,30,-0.1,1.24,0.066,0.62,30,340,56,7,7,-4.9,33,2,100,33,0.338,69.85,85.56,0.94,0.65,785,0.8,179,1.7
+4190,2023,3,29,7,0,1,1.27,0.067,0.62,48,574,148,1,7,-4.7,94,63,14,105,0.336,65.49,79.93,0.94,0.65,785,0.8,184,2.1
+4191,2023,3,29,7,30,2.2,1.27,0.067,0.62,63,702,253,0,7,-4.7,117,13,0,121,0.336,60.1,74.28,0.95,0.65,785,0.8,192,2.5
+4192,2023,3,29,8,0,3.3,1.26,0.08,0.62,78,779,361,0,7,-4.9,208,141,0,259,0.335,54.88,68.71,0.95,0.65,785,0.8,199,2.9
+4193,2023,3,29,8,30,4.5,1.26,0.08,0.62,87,844,467,0,7,-4.9,244,342,0,398,0.335,50.45,63.27,0.95,0.65,785,0.8,205,3.6
+4194,2023,3,29,9,0,5.7,1.24,0.075,0.62,94,891,566,0,7,-4.8,258,454,7,498,0.335,46.8,58.02,0.95,0.65,784,0.8,211,4.2
+4195,2023,3,29,9,30,6.6,1.24,0.075,0.62,100,927,657,0,7,-4.8,187,742,14,633,0.334,43.99,53.06,0.95,0.65,784,0.8,211,4.7
+4196,2023,3,29,10,0,7.5,1.24,0.069,0.62,103,956,737,0,0,-4.9,126,921,0,736,0.333,41.02,48.49,0.95,0.65,784,0.8,211,5.2
+4197,2023,3,29,10,30,8.1,1.24,0.069,0.62,106,977,804,0,7,-4.9,247,740,11,775,0.331,39.38,44.44,0.94,0.65,784,0.7,210,5.6
+4198,2023,3,29,11,0,8.7,1.24,0.065,0.62,108,992,856,0,7,-5.4,164,905,46,846,0.329,36.54,41.1,0.94,0.65,784,0.7,209,6
+4199,2023,3,29,11,30,9,1.24,0.065,0.62,110,1000,891,0,0,-5.4,160,925,14,882,0.327,35.76,38.65,0.94,0.65,783,0.7,209,6.2
+4200,2023,3,29,12,0,9.4,1.24,0.063,0.62,111,1007,912,0,0,-5.8,136,969,7,907,0.324,33.63,37.28,0.94,0.65,783,0.7,208,6.5
+4201,2023,3,29,12,30,9.7,1.24,0.063,0.62,110,1010,915,0,7,-5.8,159,938,39,907,0.322,32.96,37.11,0.94,0.65,783,0.7,208,6.8
+4202,2023,3,29,13,0,10,1.23,0.06,0.62,108,1008,901,0,7,-6.1,145,952,54,894,0.32,31.65,38.16,0.94,0.65,782,0.7,208,7
+4203,2023,3,29,13,30,10.1,1.23,0.06,0.62,106,1002,870,0,7,-6.1,430,379,11,719,0.319,31.44,40.33,0.94,0.65,782,0.7,208,7.2
+4204,2023,3,29,14,0,10.2,1.23,0.059,0.62,103,993,824,0,7,-6.1,307,576,18,725,0.318,31.14,43.44,0.94,0.65,782,0.7,208,7.4
+4205,2023,3,29,14,30,10,1.23,0.059,0.62,96,983,763,0,7,-6.1,131,917,43,753,0.318,31.56,47.31,0.93,0.65,782,0.6,208,7.3
+4206,2023,3,29,15,0,9.9,1.17,0.05,0.62,89,969,689,0,7,-6,303,494,7,609,0.318,32.15,51.75,0.93,0.65,781,0.6,208,7.3
+4207,2023,3,29,15,30,9.4,1.17,0.05,0.62,81,949,603,0,7,-6,292,389,4,506,0.318,33.25,56.61,0.92,0.65,781,0.6,207,6.8
+4208,2023,3,29,16,0,9,1.06,0.039,0.62,72,920,507,0,7,-5.4,280,106,0,330,0.317,35.63,61.79,0.91,0.65,781,0.6,206,6.3
+4209,2023,3,29,16,30,7.4,1.06,0.039,0.62,64,872,402,0,7,-5.4,195,124,0,243,0.317,39.71,67.18,0.91,0.65,781,0.6,204,5
+4210,2023,3,29,17,0,5.9,1,0.037,0.62,54,803,293,0,7,-4.1,111,478,39,253,0.316,48.68,72.71,0.91,0.65,781,0.6,202,3.7
+4211,2023,3,29,17,30,3.4,1,0.037,0.62,45,694,185,0,7,-4.1,79,302,32,140,0.316,57.94,78.33,0.91,0.65,781,0.6,198,3.2
+4212,2023,3,29,18,0,0.8,0.98,0.036,0.62,31,503,84,1,0,-4.5,35,417,21,79,0.315,67.48,83.97,0.91,0.65,781,0.6,194,2.7
+4213,2023,3,29,18,30,0.3,0.98,0.036,0.62,11,126,12,0,0,-4.6,11,126,0,12,0.315,69.87,89.41,0.91,0.65,780,0.6,192,2.8
+4214,2023,3,29,19,0,-0.2,1,0.036,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.314,72.55,95.42,0.91,0.65,780,0.6,189,2.9
+4215,2023,3,29,19,30,-0.4,1,0.036,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.314,73.61,100.99,0.91,0.65,780,0.6,188,2.9
+4216,2023,3,29,20,0,-0.6,1.04,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.314,76.12,106.43,0.91,0.65,780,0.6,188,2.9
+4217,2023,3,29,20,30,-0.6,1.04,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.314,76.12,111.69,0.92,0.65,780,0.6,190,3
+4218,2023,3,29,21,0,-0.7,1.08,0.045,0.62,0,0,0,0,0,-4,0,0,0,0,0.314,78.17,116.69,0.92,0.65,780,0.7,193,3.1
+4219,2023,3,29,21,30,-0.5,1.08,0.045,0.62,0,0,0,0,0,-4,0,0,14,0,0.314,76.94,121.36,0.92,0.65,779,0.7,198,3.3
+4220,2023,3,29,22,0,-0.4,1.08,0.042,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.314,78.02,125.59,0.91,0.65,779,0.7,203,3.5
+4221,2023,3,29,22,30,-0.8,1.08,0.042,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.314,80.32,129.27,0.91,0.65,779,0.6,205,3.2
+4222,2023,3,29,23,0,-1.2,1.01,0.039,0.62,0,0,0,0,0,-4,0,0,0,0,0.314,81.29,132.25,0.91,0.65,779,0.6,207,3
+4223,2023,3,29,23,30,-1.9,1.01,0.039,0.62,0,0,0,0,0,-4,0,0,0,0,0.315,85.58,134.39,0.91,0.65,779,0.6,203,2.7
+4224,2023,3,30,0,0,-2.5,0.93,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.316,87.11,135.56,0.92,0.65,779,0.6,199,2.4
+4225,2023,3,30,0,30,-2.8,0.93,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.316,89.07,135.69,0.92,0.65,779,0.6,194,2.3
+4226,2023,3,30,1,0,-3.1,0.86,0.041,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.317,91.85,134.76,0.92,0.65,779,0.6,188,2.2
+4227,2023,3,30,1,30,-3,0.86,0.041,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.317,91.17,132.84,0.93,0.65,779,0.6,185,2.3
+4228,2023,3,30,2,0,-3,0.82,0.042,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.318,93.16,130.04,0.93,0.65,778,0.6,181,2.3
+4229,2023,3,30,2,30,-2.7,0.82,0.042,0.62,0,0,0,0,4,-3.9,0,0,0,0,0.319,91.11,126.52,0.93,0.65,778,0.6,180,2.3
+4230,2023,3,30,3,0,-2.5,0.83,0.047,0.62,0,0,0,0,4,-3.7,0,0,0,0,0.319,91.6,122.4,0.94,0.65,778,0.7,178,2.2
+4231,2023,3,30,3,30,-2.3,0.83,0.047,0.62,0,0,0,0,5,-3.7,0,0,0,0,0.321,90.25,117.83,0.94,0.65,778,0.7,178,2.2
+4232,2023,3,30,4,0,-2,0.82,0.056,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,89.43,112.89,0.95,0.65,777,0.7,177,2.2
+4233,2023,3,30,4,30,-1.7,0.82,0.056,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.325,87.47,107.69,0.95,0.65,777,0.8,177,2.2
+4234,2023,3,30,5,0,-1.3,0.75,0.062,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.328,85.7,102.28,0.95,0.65,777,0.8,178,2.2
+4235,2023,3,30,5,30,-0.7,0.75,0.062,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.329,81.92,96.73,0.95,0.65,776,0.8,181,2.7
+4236,2023,3,30,6,0,-0.1,0.66,0.064,0.62,6,37,5,3,7,-3.2,2,0,43,2,0.331,79.36,91.09,0.95,0.65,776,0.8,184,3.1
+4237,2023,3,30,6,30,1,0.66,0.064,0.62,33,332,60,7,7,-3.2,22,0,100,22,0.333,73.3,85.26,0.95,0.65,776,0.8,191,4.3
+4238,2023,3,30,7,0,2.2,0.66,0.065,0.62,51,572,154,1,0,-3.1,76,346,14,138,0.334,68.19,79.62,0.95,0.65,775,0.7,197,5.6
+4239,2023,3,30,7,30,2.8,0.66,0.065,0.62,65,708,261,0,0,-3.1,67,700,11,260,0.336,65.35,73.97,0.96,0.65,775,0.7,207,6.4
+4240,2023,3,30,8,0,3.5,0.72,0.07,0.62,77,793,369,0,0,-2.9,77,793,0,369,0.337,63.03,68.4,0.96,0.65,775,0.7,216,7.2
+4241,2023,3,30,8,30,3.6,0.72,0.07,0.62,87,852,475,0,0,-2.9,107,792,0,467,0.339,62.67,62.94,0.96,0.65,776,0.8,225,7.3
+4242,2023,3,30,9,0,3.7,0.76,0.072,0.62,96,894,574,0,0,-2.5,112,855,0,569,0.341,64.02,57.69,0.96,0.65,776,0.8,234,7.3
+4243,2023,3,30,9,30,3.6,0.76,0.072,0.62,102,927,664,0,7,-2.5,235,616,4,608,0.343,64.47,52.71,0.96,0.65,776,0.8,240,6.7
+4244,2023,3,30,10,0,3.5,0.81,0.07,0.62,107,952,742,0,7,-2.9,444,203,0,579,0.345,62.94,48.13,0.96,0.65,776,0.8,247,6
+4245,2023,3,30,10,30,3.4,0.81,0.07,0.62,111,972,809,0,7,-2.9,467,257,0,652,0.348,63.38,44.07,0.96,0.65,776,0.7,252,5.6
+4246,2023,3,30,11,0,3.2,0.85,0.067,0.62,113,987,861,0,7,-3.8,490,284,0,705,0.35,60.22,40.71,0.96,0.65,776,0.7,257,5.1
+4247,2023,3,30,11,30,3.2,0.85,0.067,0.62,113,997,896,0,7,-3.8,520,222,0,694,0.353,60.22,38.26,0.96,0.65,776,0.7,260,4.8
+4248,2023,3,30,12,0,3.2,0.89,0.061,0.62,112,1004,915,0,7,-4.6,529,224,0,708,0.356,56.57,36.88,0.95,0.65,776,0.7,263,4.5
+4249,2023,3,30,12,30,3.2,0.89,0.061,0.62,112,1006,918,0,7,-4.6,528,234,0,716,0.358,56.57,36.73,0.96,0.65,776,0.7,262,4.3
+4250,2023,3,30,13,0,3.2,0.91,0.061,0.62,111,1004,904,0,7,-5,524,203,0,684,0.36,54.94,37.79,0.96,0.65,776,0.7,261,4.1
+4251,2023,3,30,13,30,2.8,0.91,0.061,0.62,110,995,872,0,7,-5,502,172,0,634,0.361,56.52,39.99,0.96,0.65,776,0.7,257,4.2
+4252,2023,3,30,14,0,2.3,0.91,0.066,0.62,109,981,825,0,6,-5,378,31,0,401,0.363,58.51,43.13,0.96,0.65,776,0.7,254,4.3
+4253,2023,3,30,14,30,1.8,0.91,0.066,0.62,106,965,764,0,7,-5,386,73,0,436,0.364,60.63,47.03,0.97,0.65,776,0.7,251,4.4
+4254,2023,3,30,15,0,1.3,0.91,0.071,0.62,102,941,688,0,7,-5,392,202,0,518,0.365,62.79,51.49,0.97,0.65,776,0.7,249,4.6
+4255,2023,3,30,15,30,0.9,0.91,0.071,0.62,96,912,601,0,7,-5,308,240,0,441,0.367,64.62,56.38,0.97,0.65,776,0.6,248,4.4
+4256,2023,3,30,16,0,0.4,0.93,0.072,0.62,88,873,504,0,7,-5,252,286,7,388,0.368,67.14,61.56,0.97,0.65,777,0.6,246,4.3
+4257,2023,3,30,16,30,0,0.93,0.072,0.62,80,819,400,0,7,-5,236,130,0,287,0.37,69.11,66.97,0.97,0.65,777,0.6,244,3.6
+4258,2023,3,30,17,0,-0.5,0.97,0.071,0.62,68,741,291,0,7,-4.7,120,296,7,209,0.371,73.45,72.51,0.97,0.68,777,0.6,242,2.9
+4259,2023,3,30,17,30,-1.2,0.97,0.071,0.62,54,626,183,0,7,-4.7,113,77,0,129,0.374,77.3,78.14,0.96,0.68,777,0.6,237,2.3
+4260,2023,3,30,18,0,-1.9,1.01,0.063,0.62,37,436,84,6,7,-4.6,36,2,86,36,0.376,81.76,83.78,0.96,0.68,778,0.6,233,1.6
+4261,2023,3,30,18,30,-2.3,1.01,0.063,0.62,12,99,13,4,6,-4.6,5,0,57,5,0.378,84.21,89.23,0.96,0.68,778,0.6,233,1.5
+4262,2023,3,30,19,0,-2.7,1.05,0.052,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.381,83.13,95.22,0.95,0.68,778,0.5,233,1.5
+4263,2023,3,30,19,30,-3.1,1.05,0.052,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.383,85.64,100.79,0.95,0.68,778,0.5,239,1.5
+4264,2023,3,30,20,0,-3.4,1.07,0.044,0.62,0,0,0,0,6,-5.8,0,0,0,0,0.385,83.26,106.22,0.94,0.68,779,0.5,245,1.5
+4265,2023,3,30,20,30,-3.5,1.07,0.044,0.62,0,0,0,0,6,-5.8,0,0,0,0,0.387,83.89,111.46,0.94,0.68,779,0.5,250,1.6
+4266,2023,3,30,21,0,-3.7,1.08,0.037,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.39,81.09,116.44,0.94,0.68,779,0.5,255,1.8
+4267,2023,3,30,21,30,-3.8,1.08,0.037,0.62,0,0,0,0,7,-6.5,0,0,29,0,0.391,81.7,121.09,0.93,0.68,779,0.5,258,1.8
+4268,2023,3,30,22,0,-4,1.08,0.032,0.62,0,0,0,0,7,-7,0,0,0,0,0.393,79.66,125.3,0.93,0.68,779,0.5,262,1.9
+4269,2023,3,30,22,30,-4.2,1.08,0.032,0.62,0,0,0,0,8,-7,0,0,0,0,0.394,80.87,128.95,0.93,0.68,779,0.4,261,1.8
+4270,2023,3,30,23,0,-4.5,1.07,0.027,0.62,0,0,0,0,4,-7.4,0,0,0,0,0.395,80.13,131.91,0.92,0.68,779,0.4,260,1.7
+4271,2023,3,30,23,30,-4.9,1.07,0.027,0.62,0,0,0,0,5,-7.4,0,0,0,0,0.395,82.69,134.03,0.92,0.68,780,0.4,255,1.6
+4272,2023,3,31,0,0,-5.2,1.07,0.024,0.62,0,0,0,0,4,-7.8,0,0,0,0,0.396,82.02,135.18,0.91,0.68,780,0.4,251,1.5
+4273,2023,3,31,0,30,-5.7,1.07,0.024,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.397,85.2,135.29,0.91,0.68,780,0.4,246,1.6
+4274,2023,3,31,1,0,-6.1,1.07,0.022,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.397,85.09,134.36,0.91,0.68,780,0.4,241,1.6
+4275,2023,3,31,1,30,-6.3,1.07,0.022,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.397,86.4,132.44,0.91,0.68,780,0.4,237,1.7
+4276,2023,3,31,2,0,-6.6,1.07,0.021,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.397,87.5,129.66,0.91,0.68,780,0.4,234,1.9
+4277,2023,3,31,2,30,-6.7,1.07,0.021,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.397,88.18,126.15,0.91,0.68,780,0.4,231,2.2
+4278,2023,3,31,3,0,-6.8,1.07,0.022,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.396,88.83,122.04,0.92,0.68,780,0.4,229,2.5
+4279,2023,3,31,3,30,-6.7,1.07,0.022,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.396,88.16,117.48,0.92,0.68,780,0.4,228,2.8
+4280,2023,3,31,4,0,-6.6,1.08,0.023,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.397,88.07,112.55,0.92,0.68,781,0.4,228,3.2
+4281,2023,3,31,4,30,-6.4,1.08,0.023,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.398,86.73,107.36,0.92,0.68,781,0.4,230,3.4
+4282,2023,3,31,5,0,-6.1,1.09,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.399,85.66,101.96,0.92,0.68,781,0.5,231,3.6
+4283,2023,3,31,5,30,-5.5,1.09,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.401,81.83,96.42,0.92,0.68,781,0.5,235,3.8
+4284,2023,3,31,6,0,-4.9,1.1,0.025,0.62,7,88,7,3,6,-7.8,2,0,43,2,0.402,80.01,90.28,0.91,0.68,782,0.5,240,4.1
+4285,2023,3,31,6,30,-4,1.1,0.025,0.62,26,495,70,7,6,-7.8,20,0,100,20,0.401,74.77,84.95,0.91,0.68,782,0.5,249,4.4
+4286,2023,3,31,7,0,-3.1,1.11,0.025,0.62,39,699,169,1,6,-7.8,42,0,14,42,0.4,69.82,79.31,0.91,0.68,782,0.5,258,4.7
+4287,2023,3,31,7,30,-2.1,1.11,0.025,0.62,49,815,278,0,6,-7.8,93,5,0,94,0.396,64.92,73.66,0.91,0.68,783,0.5,269,5.1
+4288,2023,3,31,8,0,-1,1.1,0.025,0.62,56,889,388,0,7,-8,216,47,0,234,0.393,58.85,68.08,0.91,0.68,783,0.5,280,5.4
+4289,2023,3,31,8,30,0.1,1.1,0.025,0.62,63,939,495,0,7,-8,257,309,0,399,0.387,54.32,62.62,0.91,0.68,783,0.5,286,5.8
+4290,2023,3,31,9,0,1.1,1.08,0.024,0.62,68,975,594,0,0,-8.2,88,928,0,589,0.382,49.76,57.36,0.91,0.68,784,0.5,293,6.1
+4291,2023,3,31,9,30,1.6,1.08,0.024,0.62,73,1000,684,0,0,-8.2,86,975,0,681,0.378,48.01,52.37,0.91,0.68,784,0.5,294,6.4
+4292,2023,3,31,10,0,2.2,1.04,0.027,0.62,79,1017,763,0,0,-8.8,235,722,0,720,0.374,43.98,47.77,0.91,0.68,784,0.5,295,6.6
+4293,2023,3,31,10,30,2.5,1.04,0.027,0.62,84,1029,828,0,5,-8.8,387,450,0,712,0.373,43.11,43.7,0.92,0.68,785,0.5,295,6.6
+4294,2023,3,31,11,0,2.9,1,0.032,0.62,90,1035,879,0,4,-9,451,80,0,512,0.371,41.22,40.33,0.92,0.68,785,0.5,295,6.6
+4295,2023,3,31,11,30,3.2,1,0.032,0.62,94,1039,914,0,4,-9,508,46,0,544,0.371,40.36,37.86,0.92,0.68,785,0.5,294,6.5
+4296,2023,3,31,12,0,3.5,0.97,0.039,0.62,97,1038,932,0,5,-8.9,562,229,0,746,0.371,39.95,36.49,0.93,0.68,786,0.5,293,6.3
+4297,2023,3,31,12,30,3.7,0.97,0.039,0.62,98,1038,934,0,8,-8.9,422,475,0,805,0.371,39.39,36.34,0.93,0.68,786,0.5,292,6.2
+4298,2023,3,31,13,0,3.8,0.97,0.04,0.62,98,1034,919,0,8,-8.6,377,463,7,745,0.371,39.86,37.43,0.93,0.68,786,0.5,290,6
+4299,2023,3,31,13,30,3.8,0.97,0.04,0.62,96,1029,888,0,7,-8.6,390,262,0,592,0.371,39.86,39.66,0.93,0.68,786,0.5,287,5.7
+4300,2023,3,31,14,0,3.8,0.98,0.038,0.62,92,1020,840,0,7,-8.4,408,183,0,542,0.371,40.49,42.83,0.93,0.68,787,0.5,283,5.4
+4301,2023,3,31,14,30,3.6,0.98,0.038,0.62,88,1005,777,0,8,-8.4,382,367,0,633,0.37,41.07,46.75,0.93,0.68,787,0.5,280,5.1
+4302,2023,3,31,15,0,3.4,0.99,0.04,0.62,86,983,701,0,8,-8.2,328,402,0,580,0.37,42.42,51.24,0.93,0.68,787,0.6,276,4.8
+4303,2023,3,31,15,30,3.1,0.99,0.04,0.62,81,955,613,0,8,-8.2,272,336,0,459,0.369,43.32,56.14,0.94,0.68,787,0.6,274,4.5
+4304,2023,3,31,16,0,2.7,0.98,0.043,0.62,75,918,515,0,8,-7.7,254,253,0,375,0.369,46.11,61.35,0.94,0.68,787,0.6,272,4.1
+4305,2023,3,31,16,30,2,0.98,0.043,0.62,68,869,411,0,8,-7.7,174,128,0,225,0.369,48.52,66.76,0.94,0.68,788,0.5,270,3.2
+4306,2023,3,31,17,0,1.3,1.1,0.059,0.64,61,783,299,0,8,-6.2,138,114,0,173,0.369,57.26,72.31,0.93,0.65,788,0.5,267,2.3
+4307,2023,3,31,17,30,0.1,1.1,0.059,0.64,51,661,189,0,4,-6.2,79,75,7,95,0.369,62.51,77.94,0.93,0.65,789,0.5,263,1.9
+4308,2023,3,31,18,0,-1.1,1.09,0.056,0.64,35,473,88,6,5,-6.1,41,81,86,50,0.369,69.08,83.58,0.93,0.65,789,0.5,258,1.4
+4309,2023,3,31,18,30,-1.6,1.09,0.056,0.64,12,117,14,5,5,-6.1,6,0,71,6,0.368,71.66,89.05,0.93,0.65,789,0.5,253,1.4
+4310,2023,3,31,19,0,-2.1,1.09,0.05,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.367,71.54,95.02,0.92,0.65,790,0.5,247,1.4
+4311,2023,3,31,19,30,-2.5,1.09,0.05,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.366,73.68,100.58,0.92,0.65,790,0.5,245,1.5
+4312,2023,3,31,20,0,-2.8,1.08,0.044,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.365,75.06,106,0.92,0.65,791,0.5,242,1.5
+4313,2023,3,31,20,30,-3.2,1.08,0.044,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.365,77.33,111.23,0.92,0.65,791,0.5,241,1.5
+4314,2023,3,31,21,0,-3.5,1.08,0.042,0.64,0,0,0,0,0,-6.9,0,0,0,0,0.364,77.47,116.2,0.92,0.65,791,0.5,239,1.6
+4315,2023,3,31,21,30,-3.8,1.08,0.042,0.64,0,0,0,0,0,-6.9,0,0,29,0,0.363,79.23,120.83,0.92,0.65,791,0.5,237,1.6
+4316,2023,3,31,22,0,-4.1,1.07,0.044,0.64,0,0,0,0,0,-7,0,0,0,0,0.362,79.95,125.01,0.92,0.65,791,0.5,236,1.6
+4317,2023,3,31,22,30,-4.3,1.07,0.044,0.64,0,0,0,0,0,-7,0,0,0,0,0.361,81.16,128.64,0.92,0.65,791,0.5,233,1.6
+4318,2023,3,31,23,0,-4.5,1.05,0.047,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.361,81.84,131.57,0.92,0.65,791,0.5,230,1.7
+4319,2023,3,31,23,30,-4.7,1.05,0.047,0.64,0,0,0,0,4,-7.1,0,0,0,0,0.36,83.08,133.66,0.92,0.65,791,0.6,227,1.7
+4320,2023,4,1,0,0,-4.8,1.04,0.051,0.64,0,0,0,0,4,-7.1,0,0,0,0,0.36,83.79,134.8,0.92,0.65,791,0.6,223,1.7
+4321,2023,4,1,0,30,-4.8,1.04,0.051,0.64,0,0,0,0,4,-7.1,0,0,0,0,0.359,83.79,134.9,0.93,0.65,791,0.6,218,1.7
+4322,2023,4,1,1,0,-4.8,1.02,0.054,0.64,0,0,0,0,4,-7.1,0,0,0,0,0.358,84.15,133.97,0.93,0.65,791,0.6,214,1.7
+4323,2023,4,1,1,30,-4.9,1.02,0.054,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.357,84.79,132.05,0.93,0.65,791,0.6,211,1.7
+4324,2023,4,1,2,0,-4.9,0.99,0.054,0.64,0,0,0,0,0,-7,0,0,0,0,0.356,84.95,129.28,0.93,0.65,791,0.6,208,1.7
+4325,2023,4,1,2,30,-4.9,0.99,0.054,0.64,0,0,0,0,0,-7,0,0,0,0,0.355,84.95,125.78,0.93,0.65,791,0.6,207,1.7
+4326,2023,4,1,3,0,-5,0.97,0.054,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.354,85.15,121.69,0.92,0.65,791,0.6,205,1.7
+4327,2023,4,1,3,30,-5,0.97,0.054,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.353,85.15,117.13,0.92,0.65,791,0.6,204,1.7
+4328,2023,4,1,4,0,-5,0.95,0.055,0.64,0,0,0,0,0,-7.2,0,0,29,0,0.352,84.42,112.22,0.92,0.65,791,0.6,203,1.8
+4329,2023,4,1,4,30,-5,0.95,0.055,0.64,0,0,0,0,0,-7.2,0,0,0,0,0.351,84.42,107.03,0.92,0.65,791,0.6,202,1.8
+4330,2023,4,1,5,0,-5.1,0.94,0.055,0.64,0,0,0,0,0,-7.3,0,0,0,0,0.349,84.28,101.64,0.92,0.65,791,0.6,201,1.8
+4331,2023,4,1,5,30,-4.4,0.94,0.055,0.64,0,0,0,0,0,-7.3,0,0,0,0,0.347,79.95,96.1,0.92,0.65,791,0.6,200,2.2
+4332,2023,4,1,6,0,-3.8,0.94,0.056,0.64,7,63,7,3,7,-7.2,4,0,46,4,0.345,77.07,90.01,0.92,0.65,791,0.6,199,2.6
+4333,2023,4,1,6,30,-2.3,0.94,0.056,0.64,33,410,71,6,7,-7.2,38,8,86,39,0.344,68.94,84.65,0.92,0.65,791,0.6,199,3.2
+4334,2023,4,1,7,0,-0.8,0.94,0.057,0.64,48,628,168,0,7,-6.7,110,83,0,126,0.344,64.18,79,0.92,0.65,791,0.6,198,3.7
+4335,2023,4,1,7,30,1,0.94,0.057,0.64,62,755,278,0,7,-6.7,160,174,0,210,0.344,56.33,73.35,0.92,0.65,791,0.5,206,4.8
+4336,2023,4,1,8,0,2.8,0.94,0.058,0.64,72,835,388,0,7,-7,216,145,0,271,0.344,48.56,67.76,0.92,0.65,791,0.5,215,5.9
+4337,2023,4,1,8,30,3.9,0.94,0.058,0.64,80,890,494,0,7,-7,150,684,7,468,0.345,44.94,62.3,0.92,0.65,791,0.5,216,6.4
+4338,2023,4,1,9,0,5,0.93,0.057,0.64,88,930,594,0,7,-7,193,677,7,562,0.346,41.46,57.02,0.92,0.65,791,0.5,218,6.8
+4339,2023,4,1,9,30,5.8,0.93,0.057,0.64,93,960,684,0,7,-7,204,720,29,647,0.346,39.23,52.02,0.92,0.65,791,0.6,219,7.1
+4340,2023,4,1,10,0,6.6,0.93,0.054,0.64,97,983,762,0,7,-7,339,508,7,683,0.347,37.3,47.41,0.92,0.65,790,0.6,219,7.3
+4341,2023,4,1,10,30,7.2,0.93,0.054,0.64,101,998,827,0,7,-7,358,519,0,736,0.346,35.8,43.32,0.92,0.65,790,0.6,220,7.5
+4342,2023,4,1,11,0,7.8,0.83,0.055,0.64,105,1006,876,0,7,-6.8,431,244,0,618,0.345,34.76,39.94,0.92,0.65,790,0.6,221,7.6
+4343,2023,4,1,11,30,8.3,0.83,0.055,0.64,107,1014,912,0,6,-6.8,428,139,0,538,0.344,33.56,37.47,0.92,0.65,789,0.6,222,7.8
+4344,2023,4,1,12,0,8.7,0.85,0.052,0.64,106,1018,929,0,7,-6.7,368,440,7,724,0.343,32.98,36.1,0.92,0.65,789,0.6,222,7.9
+4345,2023,4,1,12,30,9,0.85,0.052,0.64,107,1018,931,0,7,-6.7,337,589,36,814,0.343,32.28,35.96,0.92,0.65,788,0.6,223,8.1
+4346,2023,4,1,13,0,9.4,0.92,0.054,0.64,106,1014,915,0,7,-6.7,372,457,21,737,0.342,31.38,37.08,0.92,0.65,788,0.6,223,8.2
+4347,2023,4,1,13,30,9.4,0.92,0.054,0.64,110,999,883,0,7,-6.8,222,787,57,831,0.343,31.34,39.33,0.93,0.65,787,0.6,223,8.2
+4348,2023,4,1,14,0,9.5,0.83,0.074,0.64,115,976,834,0,7,-7,137,938,79,828,0.343,30.59,42.53,0.93,0.65,787,0.6,223,8.3
+4349,2023,4,1,14,30,9.3,0.83,0.074,0.64,109,964,773,0,7,-7,160,870,64,759,0.344,30.96,46.48,0.93,0.65,786,0.6,223,8.1
+4350,2023,4,1,15,0,9.1,0.84,0.068,0.64,101,948,698,0,7,-7.4,314,397,14,564,0.346,30.53,50.99,0.93,0.65,786,0.6,222,8
+4351,2023,4,1,15,30,8.9,0.84,0.068,0.64,92,927,612,0,7,-7.4,195,368,21,401,0.347,30.95,55.91,0.92,0.65,786,0.6,222,7.8
+4352,2023,4,1,16,0,8.7,0.79,0.056,0.64,82,899,516,0,7,-7.5,157,514,18,405,0.349,31.07,61.13,0.92,0.65,786,0.6,222,7.6
+4353,2023,4,1,16,30,7.9,0.79,0.056,0.64,72,851,411,0,0,-7.5,104,736,32,397,0.349,32.76,66.55,0.92,0.65,785,0.6,220,6.8
+4354,2023,4,1,17,0,7.1,0.84,0.051,0.64,62,781,302,2,7,-7,116,477,61,263,0.349,36.05,72.11,0.92,0.65,785,0.6,219,6
+4355,2023,4,1,17,30,5,0.84,0.051,0.64,50,669,192,4,7,-7,105,252,75,158,0.348,41.72,77.75,0.92,0.65,786,0.6,218,5
+4356,2023,4,1,18,0,2.9,0.92,0.049,0.64,35,484,91,7,7,-6.3,62,25,100,65,0.347,50.66,83.4,0.92,0.65,786,0.6,217,3.9
+4357,2023,4,1,18,30,2.1,0.92,0.049,0.64,14,144,17,5,7,-6.3,12,1,71,12,0.346,53.61,88.88,0.92,0.65,786,0.6,217,3.8
+4358,2023,4,1,19,0,1.3,1,0.051,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.345,57.24,94.82,0.92,0.65,786,0.6,217,3.7
+4359,2023,4,1,19,30,1,1,0.051,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.344,58.49,100.37,0.92,0.65,786,0.6,218,3.8
+4360,2023,4,1,20,0,0.8,1.02,0.057,0.64,0,0,0,0,0,-6,0,0,0,0,0.342,60.37,105.78,0.92,0.65,786,0.6,218,3.8
+4361,2023,4,1,20,30,0.8,1.02,0.057,0.64,0,0,0,0,0,-6,0,0,0,0,0.341,60.37,111,0.92,0.65,786,0.6,219,4
+4362,2023,4,1,21,0,0.7,0.97,0.064,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.34,61.87,115.95,0.93,0.65,786,0.6,221,4.1
+4363,2023,4,1,21,30,0.7,0.97,0.064,0.64,0,0,0,0,7,-5.8,0,0,29,0,0.339,61.79,120.56,0.93,0.65,785,0.6,223,4.4
+4364,2023,4,1,22,0,0.7,0.91,0.072,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.337,61.63,124.72,0.93,0.65,785,0.6,226,4.6
+4365,2023,4,1,22,30,0.4,0.91,0.072,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.337,62.98,128.33,0.93,0.65,785,0.6,227,4.5
+4366,2023,4,1,23,0,0.1,0.88,0.08,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.336,64.64,131.23,0.93,0.65,785,0.6,229,4.4
+4367,2023,4,1,23,30,-0.3,0.88,0.08,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.336,66.54,133.3,0.93,0.65,785,0.7,229,4.1
+4368,2023,4,2,0,0,-0.6,0.87,0.084,0.64,0,0,0,0,0,-5.7,0,0,0,0,0.337,68.24,134.42,0.93,0.65,785,0.7,229,3.8
+4369,2023,4,2,0,30,-0.8,0.87,0.084,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.338,69.15,134.52,0.93,0.65,784,0.7,231,3.7
+4370,2023,4,2,1,0,-0.9,0.87,0.082,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.339,69.77,133.58,0.93,0.65,784,0.7,232,3.6
+4371,2023,4,2,1,30,-1,0.87,0.082,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.34,70.29,131.67,0.93,0.65,784,0.7,233,3.4
+4372,2023,4,2,2,0,-1.2,0.88,0.075,0.64,0,0,0,0,7,-5.6,0,0,0,0,0.341,71.92,128.9,0.93,0.65,784,0.7,233,3.1
+4373,2023,4,2,2,30,-1.3,0.88,0.075,0.64,0,0,0,0,6,-5.6,0,0,0,0,0.342,72.45,125.41,0.93,0.65,784,0.7,234,2.8
+4374,2023,4,2,3,0,-1.5,0.9,0.068,0.64,0,0,0,0,6,-5.4,0,0,0,0,0.343,74.98,121.33,0.93,0.65,784,0.7,235,2.5
+4375,2023,4,2,3,30,-1.6,0.9,0.068,0.64,0,0,0,0,6,-5.4,0,0,0,0,0.345,75.53,116.79,0.93,0.65,784,0.8,237,2.2
+4376,2023,4,2,4,0,-1.7,0.96,0.064,0.64,0,0,0,0,6,-5,0,0,0,0,0.346,78.29,111.89,0.93,0.65,784,0.8,239,1.9
+4377,2023,4,2,4,30,-1.8,0.96,0.064,0.64,0,0,0,0,6,-5,0,0,0,0,0.347,78.87,106.71,0.93,0.65,784,0.8,242,1.6
+4378,2023,4,2,5,0,-1.8,1.03,0.064,0.64,0,0,0,0,6,-4.5,0,0,0,0,0.349,81.86,101.32,0.93,0.65,784,0.8,244,1.4
+4379,2023,4,2,5,30,-1.3,1.03,0.064,0.64,0,0,0,0,6,-4.5,0,0,0,0,0.35,78.91,95.79,0.94,0.65,784,0.9,241,1.3
+4380,2023,4,2,6,0,-0.8,1.11,0.068,0.64,10,76,10,4,7,-3.6,6,0,57,6,0.35,81.5,89.75,0.94,0.65,784,0.9,237,1.1
+4381,2023,4,2,6,30,0.2,1.11,0.068,0.64,34,386,72,5,5,-3.6,38,67,71,45,0.351,75.79,84.35,0.94,0.65,784,0.9,237,1.5
+4382,2023,4,2,7,0,1.2,1.16,0.07,0.64,51,595,168,0,5,-3.2,87,306,18,147,0.351,72.32,78.7,0.94,0.65,785,0.9,237,1.8
+4383,2023,4,2,7,30,2.3,1.16,0.07,0.64,63,726,275,0,4,-3.2,158,250,0,231,0.352,66.85,73.05,0.94,0.65,785,0.9,233,2.2
+4384,2023,4,2,8,0,3.3,1.17,0.061,0.64,72,814,384,0,0,-2.4,80,792,0,384,0.353,66.02,67.45,0.94,0.65,785,0.9,229,2.6
+4385,2023,4,2,8,30,4.5,1.17,0.061,0.64,80,871,489,0,0,-2.4,159,613,11,447,0.353,60.69,61.98,0.93,0.65,785,0.9,230,3.5
+4386,2023,4,2,9,0,5.7,1.17,0.057,0.64,87,913,588,0,4,-1.4,289,68,7,326,0.354,60.16,56.69,0.93,0.65,784,0.9,231,4.3
+4387,2023,4,2,9,30,6.7,1.17,0.057,0.64,91,944,676,0,4,-1.4,193,0,0,193,0.353,56.16,51.68,0.93,0.65,784,0.9,233,5.2
+4388,2023,4,2,10,0,7.8,1.16,0.053,0.64,95,968,754,0,4,-1,229,122,4,312,0.352,53.62,47.06,0.93,0.65,784,0.9,235,6.2
+4389,2023,4,2,10,30,8.4,1.16,0.053,0.64,98,983,818,2,4,-1,343,75,39,398,0.351,51.49,42.95,0.93,0.65,784,0.9,236,7
+4390,2023,4,2,11,0,9.1,1.12,0.053,0.64,102,994,868,2,4,-1.3,493,61,25,540,0.349,48.07,39.56,0.93,0.65,783,0.9,238,7.7
+4391,2023,4,2,11,30,9.6,1.12,0.053,0.64,103,1002,902,2,4,-1.3,518,119,21,613,0.349,46.48,37.08,0.92,0.65,783,0.9,239,8.1
+4392,2023,4,2,12,0,10.1,1.14,0.05,0.64,103,1008,921,0,4,-1.7,464,234,14,654,0.348,43.61,35.71,0.92,0.65,782,0.9,240,8.5
+4393,2023,4,2,12,30,10.4,1.14,0.05,0.64,102,1009,923,0,5,-1.7,387,536,7,823,0.348,42.75,35.59,0.92,0.65,782,0.9,241,8.6
+4394,2023,4,2,13,0,10.7,1.17,0.05,0.64,101,1007,908,0,0,-2.2,294,684,0,842,0.348,40.58,36.72,0.92,0.65,782,0.9,241,8.7
+4395,2023,4,2,13,30,10.7,1.17,0.05,0.64,100,1001,878,0,0,-2.2,241,736,0,813,0.348,40.58,39,0.93,0.65,782,0.9,242,8.6
+4396,2023,4,2,14,0,10.7,1.15,0.052,0.64,98,990,831,0,0,-2.6,167,860,0,804,0.348,39.32,42.23,0.93,0.65,781,0.9,242,8.5
+4397,2023,4,2,14,30,10.6,1.15,0.052,0.64,96,974,770,0,0,-2.6,226,697,7,708,0.348,39.58,46.2,0.93,0.65,781,0.9,243,8.2
+4398,2023,4,2,15,0,10.6,1.13,0.055,0.64,92,952,694,0,0,-2.9,175,739,21,643,0.348,38.71,50.74,0.93,0.65,781,0.9,245,7.8
+4399,2023,4,2,15,30,10.3,1.13,0.055,0.64,87,922,607,0,4,-2.9,308,129,7,381,0.348,39.49,55.68,0.93,0.65,781,0.9,247,7.3
+4400,2023,4,2,16,0,10,1.1,0.06,0.64,81,882,510,0,5,-3,252,354,21,424,0.347,40.03,60.91,0.93,0.65,780,0.9,249,6.7
+4401,2023,4,2,16,30,9.2,1.1,0.06,0.64,75,824,406,0,5,-3,191,329,18,323,0.347,42.23,66.35,0.93,0.65,780,0.9,252,5.3
+4402,2023,4,2,17,0,8.4,1.07,0.069,0.64,67,741,297,0,4,-2,176,81,4,201,0.347,48.05,71.92,0.94,0.65,780,0.9,254,4
+4403,2023,4,2,17,30,6.5,1.07,0.069,0.64,55,620,189,1,5,-2,82,165,29,118,0.347,54.69,77.56,0.94,0.65,780,0.9,259,2.8
+4404,2023,4,2,18,0,4.5,1.05,0.076,0.64,39,421,89,7,8,-1,39,7,96,40,0.347,67.72,83.21,0.94,0.65,780,0.9,264,1.6
+4405,2023,4,2,18,30,4,1.05,0.076,0.64,14,116,17,5,7,-1,9,0,71,9,0.347,70.13,88.71,0.94,0.65,780,0.9,269,1.5
+4406,2023,4,2,19,0,3.5,1.04,0.084,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.347,69.28,94.63,0.94,0.65,780,0.9,275,1.3
+4407,2023,4,2,19,30,3.7,1.04,0.084,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.347,68.22,100.16,0.94,0.65,779,0.9,281,0.9
+4408,2023,4,2,20,0,3.9,1.04,0.093,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.347,64.59,105.56,0.94,0.65,779,0.9,288,0.6
+4409,2023,4,2,20,30,3.4,1.04,0.093,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.347,66.9,110.76,0.94,0.65,779,0.9,203,0.6
+4410,2023,4,2,21,0,2.9,1.06,0.089,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.347,69.23,115.7,0.94,0.65,779,0.9,118,0.6
+4411,2023,4,2,21,30,2.2,1.06,0.089,0.64,0,0,0,0,7,-2.2,0,0,29,0,0.347,72.66,120.29,0.93,0.65,778,0.9,136,0.8
+4412,2023,4,2,22,0,1.6,1.06,0.075,0.64,0,0,0,0,7,-2.4,0,0,0,0,0.346,75,124.43,0.93,0.65,778,0.9,153,1.1
+4413,2023,4,2,22,30,1.2,1.06,0.075,0.64,0,0,0,0,8,-2.4,0,0,14,0,0.346,77.18,128.01,0.93,0.65,778,0.8,172,1.2
+4414,2023,4,2,23,0,0.7,1.03,0.066,0.64,0,0,0,0,7,-2.7,0,0,0,0,0.346,77.93,130.9,0.92,0.65,777,0.8,191,1.4
+4415,2023,4,2,23,30,0.1,1.03,0.066,0.64,0,0,0,0,0,-2.7,0,0,0,0,0.345,81.38,132.95,0.92,0.65,777,0.8,197,1.6
+4416,2023,4,3,0,0,-0.6,0.97,0.064,0.64,0,0,0,0,0,-3,0,0,0,0,0.345,83.62,134.05,0.92,0.65,777,0.8,202,1.7
+4417,2023,4,3,0,30,-1.1,0.97,0.064,0.64,0,0,0,0,0,-3,0,0,0,0,0.345,86.73,134.13,0.92,0.65,777,0.8,203,2
+4418,2023,4,3,1,0,-1.6,0.95,0.069,0.64,0,0,0,0,0,-3.2,0,0,0,0,0.344,88.55,133.18,0.92,0.65,777,0.8,204,2.2
+4419,2023,4,3,1,30,-1.7,0.95,0.069,0.64,0,0,0,0,0,-3.3,0,0,0,0,0.344,89.09,131.28,0.92,0.65,776,0.8,204,2.6
+4420,2023,4,3,2,0,-1.8,0.94,0.071,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.344,88.33,128.52,0.92,0.65,776,0.8,203,2.9
+4421,2023,4,3,2,30,-2.1,0.94,0.071,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.344,90.3,125.04,0.93,0.65,776,0.8,200,2.9
+4422,2023,4,3,3,0,-2.3,0.95,0.074,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.345,90.83,120.97,0.93,0.65,776,0.8,197,2.9
+4423,2023,4,3,3,30,-2.4,0.95,0.074,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.345,91.38,116.44,0.93,0.65,775,0.8,196,2.9
+4424,2023,4,3,4,0,-2.5,0.95,0.077,0.64,0,0,0,0,5,-3.6,0,0,0,0,0.345,92.14,111.55,0.93,0.65,775,0.8,194,2.8
+4425,2023,4,3,4,30,-2.5,0.95,0.077,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.346,92.14,106.39,0.93,0.65,775,0.8,194,2.8
+4426,2023,4,3,5,0,-2.6,0.96,0.077,0.64,0,0,0,0,5,-3.6,0,0,0,0,0.346,92.8,101.01,0.94,0.65,775,0.8,193,2.9
+4427,2023,4,3,5,30,-2.4,0.96,0.077,0.64,0,0,0,0,4,-3.6,0,0,0,0,0.346,91.44,95.48,0.94,0.65,775,0.8,195,3.1
+4428,2023,4,3,6,0,-2.2,0.99,0.076,0.64,10,76,11,4,5,-3.5,4,0,57,4,0.345,90.5,89.48,0.94,0.65,775,0.8,197,3.3
+4429,2023,4,3,6,30,-1.1,0.99,0.076,0.64,36,384,76,6,5,-3.5,28,1,86,28,0.346,83.48,84.05,0.94,0.65,775,0.8,199,3.8
+4430,2023,4,3,7,0,0,1.02,0.075,0.64,55,594,174,0,5,-3.3,87,10,0,89,0.346,78.26,78.4,0.94,0.65,775,0.8,202,4.3
+4431,2023,4,3,7,30,1.4,1.02,0.075,0.64,68,718,281,2,5,-3.3,142,19,21,148,0.346,70.66,72.74,0.94,0.65,774,0.8,204,5
+4432,2023,4,3,8,0,2.9,1.07,0.078,0.64,80,798,390,0,5,-3.3,192,11,0,196,0.347,63.82,67.14,0.95,0.65,774,0.8,206,5.8
+4433,2023,4,3,8,30,4.1,1.07,0.078,0.64,90,856,496,0,5,-3.3,233,10,0,238,0.347,58.65,61.66,0.95,0.65,774,0.8,206,6.2
+4434,2023,4,3,9,0,5.4,1.11,0.077,0.64,97,898,594,2,5,-2.8,239,42,36,262,0.347,55.52,56.37,0.95,0.65,774,0.8,207,6.7
+4435,2023,4,3,9,30,6.4,1.11,0.077,0.64,103,930,684,0,5,-2.8,385,31,0,404,0.347,51.75,51.34,0.95,0.65,773,0.8,208,7.2
+4436,2023,4,3,10,0,7.3,1.11,0.072,0.64,107,955,762,0,5,-2.5,437,43,4,466,0.347,49.96,46.7,0.95,0.65,773,0.8,209,7.7
+4437,2023,4,3,10,30,7.9,1.11,0.072,0.64,118,960,825,0,5,-2.5,484,172,0,611,0.347,47.9,42.59,0.95,0.65,772,0.8,209,8.2
+4438,2023,4,3,11,0,8.5,0.9,0.096,0.64,129,958,872,0,5,-2.5,490,247,0,681,0.347,45.88,39.18,0.94,0.65,772,0.8,210,8.7
+4439,2023,4,3,11,30,9,0.9,0.096,0.64,130,969,907,0,8,-2.5,450,297,0,688,0.348,44.3,36.69,0.94,0.65,771,0.8,209,9.1
+4440,2023,4,3,12,0,9.5,0.91,0.088,0.64,130,976,926,0,7,-2.7,452,399,0,778,0.348,42.42,35.32,0.94,0.65,771,0.8,209,9.5
+4441,2023,4,3,12,30,9.7,0.91,0.088,0.64,124,984,928,0,7,-2.7,490,376,0,797,0.349,41.8,35.21,0.94,0.65,770,0.8,208,9.8
+4442,2023,4,3,13,0,10,0.91,0.071,0.64,117,990,914,0,7,-2.7,503,318,0,759,0.349,40.95,36.36,0.94,0.65,769,0.8,207,10.1
+4443,2023,4,3,13,30,10.1,0.91,0.071,0.64,109,991,883,0,7,-2.7,505,245,0,696,0.35,40.68,38.67,0.93,0.65,769,0.8,207,10.7
+4444,2023,4,3,14,0,10.3,1,0.054,0.64,101,992,839,0,7,-3.1,484,193,0,628,0.351,38.95,41.93,0.93,0.65,768,0.8,207,11.2
+4445,2023,4,3,14,30,10.2,1,0.054,0.64,95,982,778,0,7,-3.1,457,189,0,588,0.352,39.21,45.93,0.93,0.65,768,0.8,207,11.4
+4446,2023,4,3,15,0,10.2,1.11,0.047,0.64,87,968,703,0,7,-3.6,415,141,0,505,0.353,37.81,50.49,0.93,0.65,768,0.8,208,11.7
+4447,2023,4,3,15,30,9.7,1.11,0.047,0.64,83,939,616,0,7,-3.6,356,147,0,439,0.355,39.1,55.45,0.93,0.65,768,0.8,210,11.3
+4448,2023,4,3,16,0,9.3,1.11,0.051,0.64,78,902,519,0,7,-3.7,300,76,0,337,0.357,39.71,60.7,0.93,0.65,768,0.8,212,11
+4449,2023,4,3,16,30,8.4,1.11,0.051,0.64,71,851,415,0,7,-3.7,229,86,0,264,0.359,42.19,66.15,0.93,0.65,768,0.7,215,9.9
+4450,2023,4,3,17,0,7.5,1.08,0.054,0.64,62,777,306,0,7,-3.7,145,165,0,197,0.361,44.91,71.72,0.93,0.71,768,0.7,219,8.8
+4451,2023,4,3,17,30,5.9,1.08,0.054,0.64,52,662,197,0,7,-3.7,95,195,0,138,0.365,50.12,77.37,0.94,0.71,768,0.7,224,7.2
+4452,2023,4,3,18,0,4.3,1.05,0.061,0.64,38,471,95,5,7,-3.2,47,2,71,47,0.368,58.06,83.02,0.94,0.71,768,0.7,229,5.7
+4453,2023,4,3,18,30,3,1.05,0.061,0.64,15,144,19,5,7,-3.2,10,0,71,10,0.372,63.62,88.53,0.94,0.71,768,0.7,231,4.6
+4454,2023,4,3,19,0,1.7,1.03,0.067,0.64,0,0,0,0,7,-2.9,0,0,0,0,0.376,71.35,94.43,0.94,0.71,768,0.7,233,3.5
+4455,2023,4,3,19,30,0.8,1.03,0.067,0.64,0,0,0,0,6,-2.9,0,0,0,0,0.38,76.11,99.96,0.94,0.71,768,0.7,230,2.7
+4456,2023,4,3,20,0,-0.2,0.98,0.075,0.64,0,0,0,0,6,-3,0,0,0,0,0.384,81.42,105.35,0.94,0.71,768,0.7,227,2
+4457,2023,4,3,20,30,-0.9,0.98,0.075,0.64,0,0,0,0,6,-3,0,0,0,0,0.388,85.67,110.53,0.94,0.71,768,0.6,218,1.7
+4458,2023,4,3,21,0,-1.7,0.9,0.087,0.64,0,0,0,0,6,-3.3,0,0,0,0,0.392,88.74,115.45,0.94,0.71,768,0.6,209,1.4
+4459,2023,4,3,21,30,-2.2,0.9,0.087,0.64,0,0,0,0,7,-3.3,0,0,43,0,0.395,92.07,120.02,0.94,0.71,768,0.6,197,1.4
+4460,2023,4,3,22,0,-2.8,0.87,0.091,0.64,0,0,0,0,7,-3.6,0,0,14,0,0.399,93.87,124.15,0.94,0.71,768,0.6,186,1.3
+4461,2023,4,3,22,30,-3.4,0.87,0.091,0.64,0,0,0,0,7,-3.6,0,0,14,0,0.402,98.16,127.7,0.94,0.71,768,0.6,182,1.4
+4462,2023,4,3,23,0,-4.1,0.91,0.084,0.64,0,0,0,0,7,-4.1,0,0,0,0,0.405,99.97,130.56,0.94,0.71,768,0.5,178,1.5
+4463,2023,4,3,23,30,-4.4,0.91,0.084,0.64,0,0,0,0,6,-4.4,0,0,0,0,0.406,100,132.59,0.95,0.71,768,0.5,188,1.7
+4464,2023,4,4,0,0,-4.7,1,0.083,0.64,0,0,0,0,6,-4.8,0,0,0,0,0.407,99.38,133.67,0.95,0.71,768,0.5,199,1.9
+4465,2023,4,4,0,30,-4.9,1,0.083,0.64,0,0,0,0,9,-4.9,0,0,0,0,0.407,100,133.74,0.96,0.71,768,0.5,206,2.2
+4466,2023,4,4,1,0,-5.1,1.09,0.087,0.64,0,0,0,0,6,-5.7,0,0,0,0,0.406,95.5,132.8,0.96,0.71,767,0.5,214,2.6
+4467,2023,4,4,1,30,-5.1,1.09,0.087,0.64,0,0,0,0,6,-5.7,0,0,0,0,0.405,95.62,130.89,0.96,0.71,768,0.5,218,3.3
+4468,2023,4,4,2,0,-5.2,1.16,0.104,0.64,0,0,0,0,6,-6.8,0,0,0,0,0.403,88.29,128.14,0.97,0.71,768,0.5,223,4
+4469,2023,4,4,2,30,-5.4,1.16,0.104,0.64,0,0,0,0,7,-6.8,0,0,0,0,0.402,89.63,124.67,0.97,0.71,768,0.5,230,4.3
+4470,2023,4,4,3,0,-5.6,1.2,0.117,0.64,0,0,0,0,5,-8.1,0,0,0,0,0.402,82.61,120.62,0.97,0.71,768,0.5,237,4.6
+4471,2023,4,4,3,30,-5.7,1.2,0.117,0.64,0,0,0,0,4,-8.1,0,0,0,0,0.401,83.24,116.1,0.97,0.71,768,0.5,241,4.7
+4472,2023,4,4,4,0,-5.9,1.22,0.113,0.64,0,0,0,0,8,-9.3,0,0,0,0,0.401,76.75,111.22,0.97,0.71,768,0.4,246,4.8
+4473,2023,4,4,4,30,-6,1.22,0.113,0.64,0,0,0,0,7,-9.3,0,0,0,0,0.401,77.44,106.06,0.97,0.71,769,0.4,249,4.8
+4474,2023,4,4,5,0,-6.1,1.23,0.097,0.64,0,0,0,0,7,-10.5,0,0,0,0,0.4,71.21,100.69,0.97,0.71,769,0.4,252,4.9
+4475,2023,4,4,5,30,-6.1,1.23,0.097,0.64,0,0,0,0,7,-10.5,0,0,0,0,0.4,71.21,95.17,0.96,0.71,769,0.4,254,4.9
+4476,2023,4,4,6,0,-6.1,1.23,0.08,0.64,12,97,13,4,7,-11.3,5,0,57,5,0.399,66.63,89.21,0.96,0.71,769,0.4,256,5
+4477,2023,4,4,6,30,-5.5,1.23,0.08,0.64,38,442,86,5,7,-11.3,43,3,71,43,0.399,63.74,83.75,0.96,0.71,770,0.4,260,5.4
+4478,2023,4,4,7,0,-5,1.21,0.068,0.64,55,656,190,0,7,-12.2,128,36,0,135,0.398,56.97,78.1,0.96,0.71,770,0.3,263,5.7
+4479,2023,4,4,7,30,-4.3,1.21,0.068,0.64,67,779,302,0,7,-12.2,200,111,0,233,0.398,54.04,72.44,0.96,0.71,770,0.3,264,6
+4480,2023,4,4,8,0,-3.7,1.17,0.064,0.64,78,860,416,0,7,-12.9,262,103,0,303,0.397,49,66.83,0.95,0.71,770,0.3,265,6.3
+4481,2023,4,4,8,30,-3.2,1.17,0.064,0.64,88,910,524,0,7,-12.9,329,161,0,406,0.397,47.27,61.35,0.96,0.71,771,0.3,265,6.4
+4482,2023,4,4,9,0,-2.7,1.15,0.069,0.64,96,945,624,0,7,-13.1,355,301,0,523,0.397,44.56,56.04,0.96,0.71,771,0.3,265,6.6
+4483,2023,4,4,9,30,-2.3,1.15,0.069,0.64,106,966,714,0,7,-13.1,417,125,0,496,0.397,43.26,51.01,0.96,0.71,771,0.3,266,6.7
+4484,2023,4,4,10,0,-1.8,1.13,0.081,0.64,116,979,792,0,7,-12.9,497,173,0,616,0.397,42.59,46.35,0.96,0.71,772,0.3,267,6.7
+4485,2023,4,4,10,30,-1.6,1.13,0.081,0.64,125,987,856,0,7,-12.9,515,236,0,690,0.396,41.97,42.22,0.97,0.71,772,0.4,270,6.8
+4486,2023,4,4,11,0,-1.4,1.13,0.097,0.64,135,989,906,0,7,-12.5,516,361,0,797,0.396,42.66,38.8,0.97,0.71,772,0.4,272,6.9
+4487,2023,4,4,11,30,-1.6,1.13,0.097,0.64,143,987,938,0,7,-12.5,450,517,0,867,0.395,43.34,36.3,0.97,0.71,773,0.4,277,6.9
+4488,2023,4,4,12,0,-1.7,1.13,0.119,0.64,151,978,953,0,7,-12.3,427,563,0,889,0.394,44.36,34.93,0.97,0.71,773,0.4,281,7
+4489,2023,4,4,12,30,-2,1.13,0.119,0.64,157,970,953,0,7,-12.3,389,593,0,876,0.393,45.41,34.83,0.97,0.71,774,0.4,286,6.9
+4490,2023,4,4,13,0,-2.2,1.15,0.139,0.64,163,956,936,0,7,-12.2,407,572,0,870,0.392,46.12,36.01,0.97,0.71,774,0.4,292,6.9
+4491,2023,4,4,13,30,-2.5,1.15,0.139,0.64,163,943,903,0,7,-12.2,432,514,0,835,0.392,47.22,38.34,0.97,0.71,775,0.4,298,6.9
+4492,2023,4,4,14,0,-2.8,1.17,0.153,0.64,163,923,853,0,7,-12.3,482,376,0,763,0.391,48.18,41.63,0.98,0.71,775,0.4,304,6.9
+4493,2023,4,4,14,30,-3,1.17,0.153,0.64,159,901,789,0,7,-12.2,511,218,0,663,0.391,48.97,45.66,0.98,0.71,776,0.4,311,6.9
+4494,2023,4,4,15,0,-3.3,1.18,0.163,0.64,154,871,711,0,7,-12.1,457,188,0,577,0.391,50.54,50.24,0.98,0.71,776,0.4,318,6.9
+4495,2023,4,4,15,30,-3.6,1.18,0.163,0.64,144,834,620,0,7,-12.1,393,101,0,451,0.391,51.75,55.22,0.98,0.71,777,0.4,325,6.9
+4496,2023,4,4,16,0,-3.9,1.17,0.168,0.64,133,785,520,0,7,-12,345,79,0,384,0.392,53.34,60.49,0.98,0.71,777,0.4,332,6.9
+4497,2023,4,4,16,30,-4.2,1.17,0.168,0.64,118,727,414,0,7,-12,265,46,0,284,0.393,54.63,65.94,0.98,0.71,778,0.4,337,6.8
+4498,2023,4,4,17,0,-4.6,1.16,0.157,0.64,100,648,305,0,7,-12.1,176,21,0,183,0.393,55.63,71.53,0.97,0.77,779,0.4,343,6.8
+4499,2023,4,4,17,30,-5,1.16,0.157,0.64,76,544,197,0,6,-12.1,85,13,0,88,0.394,57.34,77.17,0.97,0.77,779,0.4,347,6.4
+4500,2023,4,4,18,0,-5.4,1.15,0.126,0.64,49,382,97,5,6,-12.6,38,1,71,38,0.395,56.89,82.83,0.97,0.77,780,0.4,351,5.9
+4501,2023,4,4,18,30,-5.6,1.15,0.126,0.64,17,101,20,5,6,-12.6,9,0,71,9,0.396,57.84,88.34,0.96,0.77,781,0.3,355,5.4
+4502,2023,4,4,19,0,-5.9,1.17,0.092,0.64,0,0,0,0,7,-13.1,0,0,0,0,0.398,56.72,94.23,0.96,0.77,781,0.3,358,4.9
+4503,2023,4,4,19,30,-6.1,1.17,0.092,0.64,0,0,0,0,7,-13.1,0,0,0,0,0.398,57.66,99.75,0.96,0.77,782,0.3,182,4.3
+4504,2023,4,4,20,0,-6.3,1.17,0.072,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.399,57.65,105.13,0.95,0.77,782,0.3,5,3.7
+4505,2023,4,4,20,30,-6.4,1.17,0.072,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.399,58.16,110.3,0.95,0.77,783,0.3,8,3.1
+4506,2023,4,4,21,0,-6.5,1.18,0.062,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.4,58.57,115.21,0.95,0.77,783,0.3,11,2.6
+4507,2023,4,4,21,30,-6.6,1.18,0.062,0.64,0,0,0,0,7,-13.3,0,0,43,0,0.4,59.02,119.76,0.95,0.77,783,0.3,13,2.1
+4508,2023,4,4,22,0,-6.7,1.18,0.058,0.64,0,0,0,0,7,-12.8,0,0,29,0,0.401,61.93,123.86,0.95,0.77,783,0.3,15,1.5
+4509,2023,4,4,22,30,-6.7,1.18,0.058,0.64,0,0,0,0,7,-12.8,0,0,29,0,0.402,62.01,127.39,0.95,0.77,784,0.3,19,1.1
+4510,2023,4,4,23,0,-6.6,1.18,0.059,0.64,0,0,0,0,7,-12.2,0,0,0,0,0.403,64.21,130.22,0.95,0.77,784,0.3,23,0.7
+4511,2023,4,4,23,30,-6.5,1.18,0.059,0.64,0,0,0,0,7,-12.2,0,0,0,0,0.403,63.72,132.23,0.96,0.77,784,0.3,82,0.5
+4512,2023,4,5,0,0,-6.4,1.18,0.061,0.64,0,0,0,0,7,-13.2,0,0,0,0,0.404,58.4,133.3,0.96,0.77,784,0.3,141,0.2
+4513,2023,4,5,0,30,-6.3,1.18,0.061,0.64,0,0,0,0,7,-13.2,0,0,0,0,0.404,58.03,133.36,0.96,0.77,785,0.3,169,0.6
+4514,2023,4,5,1,0,-6.2,1.17,0.063,0.64,0,0,0,0,7,-13.9,0,0,0,0,0.405,54.3,132.41,0.96,0.77,785,0.3,197,1.1
+4515,2023,4,5,1,30,-6.3,1.17,0.063,0.64,0,0,0,0,7,-13.9,0,0,0,0,0.405,54.72,130.51,0.96,0.77,785,0.3,197,1.4
+4516,2023,4,5,2,0,-6.4,1.17,0.062,0.64,0,0,0,0,7,-13.8,0,0,0,0,0.406,55.52,127.76,0.96,0.77,785,0.3,196,1.7
+4517,2023,4,5,2,30,-6.5,1.17,0.062,0.64,0,0,0,0,7,-13.8,0,0,0,0,0.407,55.95,124.31,0.96,0.77,785,0.3,196,1.9
+4518,2023,4,5,3,0,-6.6,1.17,0.063,0.64,0,0,0,0,7,-13.6,0,0,0,0,0.408,57.69,120.27,0.96,0.77,785,0.3,196,2.1
+4519,2023,4,5,3,30,-6.7,1.17,0.063,0.64,0,0,0,0,7,-13.6,0,0,0,0,0.41,58.13,115.76,0.96,0.77,785,0.3,198,2.2
+4520,2023,4,5,4,0,-6.8,1.18,0.064,0.64,0,0,0,0,7,-13.4,0,0,0,0,0.412,59.53,110.89,0.96,0.77,785,0.3,200,2.3
+4521,2023,4,5,4,30,-6.8,1.18,0.064,0.64,0,0,0,0,7,-13.4,0,0,0,0,0.416,59.61,105.74,0.96,0.77,786,0.3,205,2.3
+4522,2023,4,5,5,0,-6.8,1.18,0.067,0.64,0,0,0,0,8,-13.1,0,0,0,0,0.419,60.72,100.38,0.96,0.77,786,0.3,209,2.3
+4523,2023,4,5,5,30,-6.5,1.18,0.067,0.64,0,0,0,0,8,-13.1,0,0,0,0,0.423,59.34,94.87,0.96,0.77,786,0.3,213,2.4
+4524,2023,4,5,6,0,-6.2,1.19,0.068,0.64,14,137,17,5,7,-13.2,8,0,71,8,0.426,57.84,88.93,0.96,0.77,786,0.3,217,2.5
+4525,2023,4,5,6,30,-5.5,1.19,0.068,0.64,39,477,93,5,7,-13.2,55,10,71,56,0.43,54.84,83.45,0.96,0.77,786,0.3,228,2.7
+4526,2023,4,5,7,0,-4.8,1.21,0.063,0.64,54,673,196,0,7,-12.5,130,36,0,138,0.433,55.03,77.8,0.96,0.77,786,0.3,239,2.8
+4527,2023,4,5,7,30,-4.4,1.21,0.063,0.64,66,792,309,0,7,-12.4,184,92,0,212,0.434,53.46,72.13,0.96,0.77,787,0.3,253,2.9
+4528,2023,4,5,8,0,-3.9,1.22,0.056,0.64,75,872,422,0,7,-12,253,61,0,277,0.436,53.27,66.53,0.96,0.77,787,0.3,266,2.9
+4529,2023,4,5,8,30,-3.7,1.22,0.056,0.64,83,925,531,0,7,-12,334,188,0,425,0.437,52.48,61.03,0.95,0.77,787,0.3,275,2.9
+4530,2023,4,5,9,0,-3.4,1.21,0.052,0.64,89,964,632,0,7,-12.2,362,317,0,541,0.438,50.46,55.72,0.95,0.77,787,0.3,284,3
+4531,2023,4,5,9,30,-3,1.21,0.052,0.64,95,992,724,0,7,-12.2,423,305,0,616,0.439,49.04,50.67,0.95,0.77,788,0.3,288,2.9
+4532,2023,4,5,10,0,-2.7,1.21,0.048,0.64,99,1014,803,0,7,-12.5,475,231,0,635,0.439,46.93,46,0.95,0.77,788,0.3,293,2.9
+4533,2023,4,5,10,30,-2.4,1.21,0.048,0.64,102,1030,869,0,7,-12.5,437,135,0,538,0.439,45.9,41.86,0.95,0.77,788,0.3,295,2.8
+4534,2023,4,5,11,0,-2.1,1.2,0.045,0.64,104,1042,920,0,7,-12.7,492,167,0,623,0.439,44.27,38.42,0.95,0.77,788,0.3,297,2.8
+4535,2023,4,5,11,30,-1.9,1.2,0.045,0.64,104,1049,954,0,7,-12.7,488,253,0,693,0.438,43.62,35.92,0.95,0.77,788,0.3,299,2.8
+4536,2023,4,5,12,0,-1.7,1.19,0.043,0.64,106,1053,973,0,7,-12.7,587,241,0,785,0.438,42.69,34.55,0.94,0.77,788,0.3,300,2.8
+4537,2023,4,5,12,30,-1.7,1.19,0.043,0.64,105,1054,974,0,7,-12.7,595,252,0,803,0.438,42.69,34.46,0.95,0.77,788,0.3,301,2.7
+4538,2023,4,5,13,0,-1.6,1.18,0.042,0.64,105,1048,956,0,7,-12.7,573,249,0,775,0.437,42.58,35.66,0.95,0.77,789,0.3,303,2.7
+4539,2023,4,5,13,30,-1.7,1.18,0.042,0.64,102,1040,921,0,7,-12.7,512,343,0,782,0.437,42.9,38.02,0.95,0.77,789,0.4,304,2.6
+4540,2023,4,5,14,0,-1.8,1.17,0.041,0.64,98,1032,873,0,7,-12.5,496,163,0,618,0.436,43.8,41.34,0.95,0.77,789,0.4,306,2.5
+4541,2023,4,5,14,30,-2,1.17,0.041,0.64,94,1017,808,0,7,-12.5,381,479,0,717,0.436,44.45,45.4,0.94,0.77,789,0.4,310,2.4
+4542,2023,4,5,15,0,-2.2,1.17,0.04,0.64,88,998,730,0,7,-12.3,340,492,0,656,0.435,45.88,50,0.94,0.77,789,0.4,315,2.2
+4543,2023,4,5,15,30,-2.5,1.17,0.04,0.64,83,971,640,0,7,-12.3,337,198,0,451,0.433,46.91,55,0.94,0.77,789,0.4,322,2.1
+4544,2023,4,5,16,0,-2.7,1.17,0.04,0.64,76,938,541,0,6,-12.1,249,61,0,279,0.432,48.41,60.28,0.94,0.77,790,0.4,330,2
+4545,2023,4,5,16,30,-3.1,1.17,0.04,0.64,68,892,435,0,7,-12.1,211,281,7,326,0.429,49.87,65.74,0.94,0.77,790,0.4,339,1.9
+4546,2023,4,5,17,0,-3.5,1.17,0.041,0.64,59,824,323,0,9,-11.8,84,1,0,84,0.427,52.82,71.33,0.94,0.7,790,0.4,348,1.8
+4547,2023,4,5,17,30,-4,1.17,0.041,0.64,50,721,212,0,6,-11.7,60,18,0,64,0.425,54.9,76.98,0.95,0.7,791,0.4,178,1.6
+4548,2023,4,5,18,0,-4.6,1.15,0.045,0.64,36,548,106,5,6,-11,36,1,71,36,0.423,60.91,82.64,0.95,0.7,791,0.4,8,1.3
+4549,2023,4,5,18,30,-4.7,1.15,0.045,0.64,17,195,23,6,6,-11,10,0,86,10,0.42,61.37,88.15,0.95,0.7,791,0.4,21,1.2
+4550,2023,4,5,19,0,-4.9,1.13,0.048,0.64,0,0,0,0,7,-11,0,0,0,0,0.417,62.41,94.03,0.95,0.7,792,0.4,34,1.2
+4551,2023,4,5,19,30,-4.9,1.13,0.048,0.64,0,0,0,0,7,-11,0,0,0,0,0.414,62.41,99.55,0.95,0.7,792,0.4,46,1.1
+4552,2023,4,5,20,0,-5,1.1,0.051,0.64,0,0,0,0,7,-11.1,0,0,0,0,0.41,62.4,104.91,0.95,0.7,792,0.4,59,1
+4553,2023,4,5,20,30,-5,1.1,0.051,0.64,0,0,0,0,7,-11.1,0,0,0,0,0.407,62.4,110.07,0.95,0.7,792,0.4,76,0.8
+4554,2023,4,5,21,0,-5,1.06,0.053,0.64,0,0,0,0,7,-10.8,0,0,0,0,0.404,63.57,114.96,0.95,0.7,793,0.4,94,0.7
+4555,2023,4,5,21,30,-5.1,1.06,0.053,0.64,0,0,0,0,7,-10.8,0,0,43,0,0.402,64.06,119.49,0.95,0.7,793,0.4,121,0.6
+4556,2023,4,5,22,0,-5.1,1.04,0.054,0.64,0,0,0,0,7,-10.6,0,0,43,0,0.399,65.5,123.57,0.95,0.7,793,0.4,148,0.6
+4557,2023,4,5,22,30,-5.2,1.04,0.054,0.64,0,0,0,0,0,-10.6,0,0,29,0,0.397,65.99,127.08,0.94,0.7,793,0.4,172,0.6
+4558,2023,4,5,23,0,-5.3,1.02,0.054,0.64,0,0,0,0,0,-10.2,0,0,0,0,0.395,68.38,129.89,0.94,0.7,793,0.4,196,0.7
+4559,2023,4,5,23,30,-5.4,1.02,0.054,0.64,0,0,0,0,0,-10.2,0,0,0,0,0.393,68.9,131.87,0.94,0.7,793,0.4,207,0.7
+4560,2023,4,6,0,0,-5.5,1.01,0.052,0.64,0,0,0,0,0,-10.1,0,0,0,0,0.391,70,132.92,0.94,0.7,793,0.4,219,0.8
+4561,2023,4,6,0,30,-5.6,1.01,0.052,0.64,0,0,0,0,0,-10.1,0,0,0,0,0.389,70.53,132.97,0.94,0.7,793,0.4,223,0.9
+4562,2023,4,6,1,0,-5.7,0.99,0.049,0.64,0,0,0,0,0,-10.1,0,0,0,0,0.387,71.18,132.02,0.94,0.7,793,0.4,227,0.9
+4563,2023,4,6,1,30,-5.8,0.99,0.049,0.64,0,0,0,0,0,-10.1,0,0,0,0,0.386,71.72,130.13,0.94,0.7,793,0.4,221,0.9
+4564,2023,4,6,2,0,-6,0.98,0.047,0.64,0,0,0,0,0,-9.7,0,0,0,0,0.385,74.81,127.39,0.93,0.7,793,0.3,215,0.8
+4565,2023,4,6,2,30,-6.1,0.98,0.047,0.64,0,0,0,0,0,-9.7,0,0,0,0,0.383,75.38,123.94,0.93,0.7,793,0.3,212,0.9
+4566,2023,4,6,3,0,-6.2,0.97,0.045,0.64,0,0,0,0,4,-9.7,0,0,0,0,0.382,76.24,119.92,0.93,0.7,793,0.3,208,0.9
+4567,2023,4,6,3,30,-6.3,0.97,0.045,0.64,0,0,0,0,4,-9.7,0,0,0,0,0.382,76.82,115.42,0.93,0.7,793,0.3,203,0.9
+4568,2023,4,6,4,0,-6.5,0.96,0.043,0.64,0,0,0,0,4,-9.6,0,0,0,0,0.382,78.87,110.56,0.93,0.7,793,0.3,197,0.9
+4569,2023,4,6,4,30,-6.7,0.96,0.043,0.64,0,0,0,0,4,-9.5,0,0,0,0,0.383,80.19,105.42,0.93,0.7,794,0.3,194,0.9
+4570,2023,4,6,5,0,-7,0.96,0.042,0.64,0,0,0,0,4,-9.6,0,0,0,0,0.383,81.64,100.07,0.93,0.7,794,0.3,190,0.9
+4571,2023,4,6,5,30,-6.6,0.96,0.042,0.64,0,0,0,0,4,-9.6,0,0,0,0,0.383,79.17,94.56,0.92,0.7,794,0.3,188,1.3
+4572,2023,4,6,6,0,-6.2,0.96,0.04,0.64,16,183,20,5,4,-9.9,9,10,68,9,0.383,75.12,88.65,0.92,0.7,794,0.3,185,1.6
+4573,2023,4,6,6,30,-5,0.96,0.04,0.64,35,548,100,5,4,-9.9,50,25,71,53,0.383,68.57,83.16,0.92,0.7,794,0.3,188,2
+4574,2023,4,6,7,0,-3.9,0.94,0.039,0.64,48,727,205,0,4,-10.4,104,129,0,132,0.383,60.43,77.5,0.92,0.7,795,0.3,192,2.4
+4575,2023,4,6,7,30,-2.9,0.94,0.039,0.64,59,832,318,0,4,-10.4,172,63,0,192,0.382,56.09,71.83,0.92,0.7,795,0.3,197,2.6
+4576,2023,4,6,8,0,-1.9,0.92,0.038,0.64,67,901,430,0,4,-11.6,238,149,0,298,0.381,47.33,66.22,0.91,0.7,795,0.3,203,2.7
+4577,2023,4,6,8,30,-1.1,0.92,0.038,0.64,74,949,538,0,4,-11.6,333,74,0,369,0.379,44.63,60.72,0.91,0.7,795,0.3,206,2.9
+4578,2023,4,6,9,0,-0.3,0.92,0.036,0.64,79,984,638,0,4,-12,420,84,0,468,0.377,40.78,55.4,0.91,0.7,795,0.3,209,3
+4579,2023,4,6,9,30,0.5,0.92,0.036,0.64,84,1010,729,0,4,-12,466,124,0,545,0.375,38.49,50.34,0.91,0.7,795,0.3,210,3.2
+4580,2023,4,6,10,0,1.2,0.92,0.034,0.64,88,1030,808,0,0,-12.3,154,898,0,782,0.372,35.93,45.66,0.91,0.7,795,0.3,212,3.3
+4581,2023,4,6,10,30,1.9,0.92,0.034,0.64,91,1044,873,0,0,-12.3,91,1044,0,873,0.37,34.17,41.5,0.91,0.7,795,0.3,213,3.4
+4582,2023,4,6,11,0,2.6,0.91,0.033,0.64,93,1054,923,0,0,-12.3,93,1054,0,923,0.368,32.39,38.05,0.91,0.7,795,0.3,214,3.5
+4583,2023,4,6,11,30,3.2,0.91,0.033,0.64,95,1060,958,0,0,-12.3,95,1060,0,958,0.366,31,35.53,0.91,0.7,794,0.3,215,3.5
+4584,2023,4,6,12,0,3.8,0.91,0.033,0.64,97,1063,976,0,0,-12.3,115,1037,0,973,0.365,29.8,34.17,0.91,0.7,794,0.3,216,3.6
+4585,2023,4,6,12,30,4.2,0.91,0.033,0.64,96,1064,977,0,0,-12.3,135,1004,0,966,0.363,28.97,34.09,0.91,0.7,794,0.3,217,3.6
+4586,2023,4,6,13,0,4.6,0.91,0.032,0.64,95,1061,961,0,0,-12.3,95,1061,0,961,0.361,28.1,35.31,0.91,0.7,794,0.3,217,3.6
+4587,2023,4,6,13,30,4.8,0.91,0.032,0.64,100,1047,928,0,0,-12.3,100,1047,0,928,0.359,27.71,37.7,0.91,0.7,794,0.3,217,3.5
+4588,2023,4,6,14,0,5,0.66,0.049,0.64,104,1027,878,0,0,-12.4,104,1027,0,878,0.357,27.1,41.05,0.92,0.7,794,0.3,217,3.4
+4589,2023,4,6,14,30,5,0.66,0.049,0.64,100,1014,815,0,0,-12.4,100,1014,0,815,0.356,27.1,45.13,0.92,0.7,794,0.3,216,3.3
+4590,2023,4,6,15,0,5,0.69,0.048,0.64,95,996,738,0,0,-12.6,95,996,0,738,0.354,26.84,49.76,0.92,0.7,794,0.3,216,3.1
+4591,2023,4,6,15,30,4.7,0.69,0.048,0.64,87,972,648,0,0,-12.6,87,972,0,648,0.354,27.41,54.78,0.91,0.7,794,0.3,213,2.9
+4592,2023,4,6,16,0,4.4,0.71,0.046,0.64,80,939,549,0,0,-12.5,80,939,0,549,0.353,28.13,60.07,0.91,0.7,794,0.3,211,2.7
+4593,2023,4,6,16,30,3.4,0.71,0.046,0.64,72,893,442,0,0,-12.5,72,893,0,442,0.353,30.18,65.54,0.91,0.7,794,0.3,207,2.1
+4594,2023,4,6,17,0,2.5,0.73,0.045,0.64,62,828,330,0,0,-8.4,62,828,0,330,0.353,44.41,71.14,0.91,0.65,794,0.3,202,1.5
+4595,2023,4,6,17,30,0.6,0.73,0.045,0.64,51,727,217,0,0,-8.4,51,727,0,217,0.353,50.88,76.8,0.91,0.65,794,0.3,193,1.3
+4596,2023,4,6,18,0,-1.3,0.74,0.044,0.64,38,557,111,0,0,-9.9,38,557,0,111,0.353,52.17,82.45,0.91,0.65,794,0.3,184,1.2
+4597,2023,4,6,18,30,-1.9,0.74,0.044,0.64,18,222,26,0,0,-9.9,18,222,0,26,0.353,54.52,87.98,0.91,0.65,794,0.3,178,1.3
+4598,2023,4,6,19,0,-2.6,0.75,0.042,0.64,0,0,0,0,0,-11,0,0,0,0,0.353,52.66,93.83,0.91,0.65,794,0.3,172,1.3
+4599,2023,4,6,19,30,-2.8,0.75,0.042,0.64,0,0,0,0,0,-11,0,0,0,0,0.352,53.44,99.34,0.91,0.65,794,0.3,171,1.3
+4600,2023,4,6,20,0,-2.9,0.76,0.041,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.351,54.69,104.7,0.91,0.65,794,0.3,170,1.3
+4601,2023,4,6,20,30,-2.9,0.76,0.041,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.349,54.69,109.84,0.91,0.65,794,0.3,173,1.2
+4602,2023,4,6,21,0,-2.9,0.77,0.04,0.64,0,0,0,0,0,-10.6,0,0,0,0,0.346,55.25,114.71,0.91,0.65,794,0.3,177,1.2
+4603,2023,4,6,21,30,-2.9,0.77,0.04,0.64,0,0,0,0,0,-10.6,0,0,43,0,0.344,55.25,119.22,0.91,0.65,794,0.3,181,1.2
+4604,2023,4,6,22,0,-2.9,0.79,0.038,0.64,0,0,0,1,0,-10.5,0,0,57,0,0.342,55.7,123.28,0.91,0.65,794,0.3,186,1.1
+4605,2023,4,6,22,30,-2.9,0.79,0.038,0.64,0,0,0,0,0,-10.5,0,0,29,0,0.339,55.7,126.77,0.91,0.65,794,0.3,189,1.1
+4606,2023,4,6,23,0,-2.8,0.81,0.036,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.337,55.43,129.55,0.91,0.65,794,0.3,192,1
+4607,2023,4,6,23,30,-2.8,0.81,0.036,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.336,55.43,131.52,0.91,0.65,794,0.3,194,1
+4608,2023,4,7,0,0,-2.8,0.83,0.033,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.334,55.49,132.55,0.91,0.65,794,0.3,195,0.9
+4609,2023,4,7,0,30,-2.9,0.83,0.033,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.334,55.9,132.59,0.91,0.65,794,0.3,193,0.9
+4610,2023,4,7,1,0,-2.9,0.85,0.03,0.64,0,0,0,0,0,-10.4,0,0,0,0,0.333,56.15,131.64,0.91,0.65,793,0.3,192,0.9
+4611,2023,4,7,1,30,-3.1,0.85,0.03,0.64,0,0,0,0,0,-10.4,0,0,0,0,0.333,56.99,129.75,0.91,0.65,793,0.3,185,0.9
+4612,2023,4,7,2,0,-3.3,0.88,0.028,0.64,0,0,0,0,0,-10.2,0,0,0,0,0.334,59.08,127.02,0.91,0.65,793,0.3,178,1
+4613,2023,4,7,2,30,-3.6,0.88,0.028,0.64,0,0,0,0,0,-10.2,0,0,0,0,0.334,60.42,123.58,0.91,0.65,793,0.3,172,1
+4614,2023,4,7,3,0,-3.8,0.89,0.027,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.335,63.2,119.57,0.91,0.65,793,0.3,166,1.1
+4615,2023,4,7,3,30,-4,0.89,0.027,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.335,64.16,115.08,0.91,0.65,793,0.3,163,1.1
+4616,2023,4,7,4,0,-4.2,0.9,0.026,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.336,66.84,110.24,0.91,0.65,793,0.3,161,1.2
+4617,2023,4,7,4,30,-4.3,0.9,0.026,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.336,67.35,105.11,0.91,0.65,793,0.3,160,1.2
+4618,2023,4,7,5,0,-4.3,0.9,0.026,0.64,0,0,0,0,0,-9.2,0,0,0,0,0.336,68.8,99.76,0.91,0.65,793,0.3,159,1.2
+4619,2023,4,7,5,30,-3.6,0.9,0.026,0.64,0,0,0,0,0,-9.2,0,0,0,0,0.335,65.29,94.26,0.91,0.65,793,0.3,159,1.2
+4620,2023,4,7,6,0,-2.8,0.9,0.026,0.64,17,225,23,0,0,-8.1,17,225,0,23,0.334,66.81,88.37,0.91,0.65,793,0.3,160,1.3
+4621,2023,4,7,6,30,-1.3,0.9,0.026,0.64,33,604,108,0,0,-8.1,33,604,0,108,0.333,59.81,82.87,0.91,0.65,793,0.3,169,1.7
+4622,2023,4,7,7,0,0.3,0.9,0.026,0.64,44,768,214,0,0,-9,44,768,0,214,0.333,49.61,77.21,0.91,0.65,793,0.3,177,2.1
+4623,2023,4,7,7,30,1.9,0.9,0.026,0.64,54,863,327,0,0,-9,54,863,0,327,0.334,44.22,71.54,0.91,0.65,793,0.3,190,2.5
+4624,2023,4,7,8,0,3.6,0.91,0.027,0.64,61,921,437,0,0,-10.1,61,921,0,437,0.334,36,65.92,0.91,0.65,793,0.4,202,2.9
+4625,2023,4,7,8,30,4.8,0.91,0.027,0.64,68,956,540,0,0,-10.1,68,956,0,540,0.335,33.1,60.41,0.91,0.65,793,0.4,207,3.4
+4626,2023,4,7,9,0,6,0.93,0.029,0.64,74,987,639,0,0,-9.8,74,987,0,639,0.335,31.13,55.08,0.91,0.65,792,0.4,213,3.8
+4627,2023,4,7,9,30,7.1,0.93,0.029,0.64,79,1010,728,0,0,-9.8,79,1010,0,728,0.335,28.86,50.01,0.91,0.65,792,0.4,215,4.2
+4628,2023,4,7,10,0,8.1,0.96,0.03,0.64,84,1027,806,0,0,-8.7,84,1027,0,806,0.336,29.33,45.31,0.91,0.65,792,0.4,218,4.5
+4629,2023,4,7,10,30,8.9,0.96,0.03,0.64,87,1035,866,0,0,-8.7,87,1035,0,866,0.335,27.78,41.14,0.91,0.65,792,0.5,220,4.7
+4630,2023,4,7,11,0,9.7,0.99,0.03,0.64,90,1040,913,0,0,-7.6,90,1040,0,913,0.334,28.72,37.68,0.91,0.65,792,0.5,221,4.9
+4631,2023,4,7,11,30,10.3,0.99,0.03,0.64,91,1046,946,0,0,-7.6,91,1046,0,946,0.334,27.56,35.15,0.91,0.65,791,0.5,221,4.9
+4632,2023,4,7,12,0,11,1.03,0.032,0.64,92,1048,963,0,0,-6.7,92,1048,0,963,0.333,28.22,33.78,0.91,0.65,791,0.5,222,5
+4633,2023,4,7,12,30,11.5,1.03,0.032,0.64,93,1047,964,0,0,-6.7,93,1047,0,964,0.333,27.3,33.72,0.91,0.65,791,0.5,221,5
+4634,2023,4,7,13,0,11.9,1.06,0.034,0.64,94,1042,948,0,0,-6.2,94,1042,0,948,0.333,27.79,34.96,0.92,0.65,790,0.5,220,5
+4635,2023,4,7,13,30,12.1,1.06,0.034,0.64,96,1028,913,0,0,-6.2,96,1028,0,913,0.334,27.43,37.38,0.92,0.65,790,0.6,219,4.9
+4636,2023,4,7,14,0,12.4,1.02,0.047,0.64,98,1009,862,0,0,-5.9,98,1009,0,862,0.334,27.5,40.76,0.93,0.65,790,0.6,218,4.8
+4637,2023,4,7,14,30,12.3,1.02,0.047,0.64,95,994,799,0,0,-5.9,95,994,0,799,0.334,27.64,44.87,0.93,0.65,789,0.6,218,4.8
+4638,2023,4,7,15,0,12.3,1.05,0.05,0.64,91,973,723,0,0,-5.6,91,973,0,723,0.334,28.15,49.52,0.93,0.65,789,0.6,217,4.7
+4639,2023,4,7,15,30,11.8,1.05,0.05,0.64,86,948,636,0,0,-5.6,86,948,4,636,0.334,29.09,54.56,0.93,0.65,789,0.6,217,4.6
+4640,2023,4,7,16,0,11.4,1.09,0.05,0.64,79,914,538,0,0,-5.3,79,914,25,538,0.334,30.64,59.86,0.93,0.65,789,0.6,217,4.5
+4641,2023,4,7,16,30,9.7,1.09,0.05,0.64,72,869,434,0,0,-5.3,71,867,25,433,0.334,34.3,65.35,0.93,0.65,789,0.6,219,3.3
+4642,2023,4,7,17,0,8.1,1.14,0.047,0.64,61,806,324,0,7,-2.4,111,617,43,312,0.334,47.52,70.95,0.93,0.65,789,0.6,220,2.1
+4643,2023,4,7,17,30,5.9,1.14,0.047,0.64,50,708,214,2,7,-2.4,106,369,43,191,0.335,55.23,76.61,0.93,0.65,789,0.6,222,1.8
+4644,2023,4,7,18,0,3.7,1.18,0.046,0.64,38,546,111,6,7,-3.9,71,144,100,90,0.335,57.38,82.27,0.94,0.65,789,0.6,225,1.5
+4645,2023,4,7,18,30,3.6,1.18,0.046,0.64,19,227,28,6,7,-3.9,20,4,86,20,0.336,57.79,87.8,0.94,0.65,789,0.6,225,1.4
+4646,2023,4,7,19,0,3.6,1.21,0.046,0.64,0,0,0,0,6,-5.6,0,0,0,0,0.337,51.02,93.63,0.94,0.65,789,0.6,225,1.3
+4647,2023,4,7,19,30,3.7,1.21,0.046,0.64,0,0,0,0,7,-5.6,0,0,0,0,0.338,50.66,99.13,0.94,0.65,789,0.6,217,1.1
+4648,2023,4,7,20,0,3.9,1.21,0.049,0.64,0,0,0,0,6,-6,0,0,0,0,0.339,48.29,104.48,0.94,0.65,789,0.6,208,0.9
+4649,2023,4,7,20,30,3.8,1.21,0.049,0.64,0,0,0,0,6,-6,0,0,0,0,0.341,48.63,109.61,0.94,0.65,789,0.6,193,0.9
+4650,2023,4,7,21,0,3.6,1.2,0.053,0.64,0,0,0,0,7,-6,0,0,0,0,0.342,49.47,114.46,0.94,0.65,789,0.6,178,0.8
+4651,2023,4,7,21,30,3.4,1.2,0.053,0.64,0,0,0,0,7,-6,0,0,43,0,0.343,50.17,118.96,0.94,0.65,789,0.7,174,0.9
+4652,2023,4,7,22,0,3.1,1.2,0.059,0.64,0,0,0,1,7,-5.9,0,0,100,0,0.345,51.68,122.99,0.94,0.65,789,0.7,170,0.9
+4653,2023,4,7,22,30,2.9,1.2,0.059,0.64,0,0,0,0,7,-5.9,0,0,14,0,0.346,52.41,126.46,0.94,0.65,789,0.7,173,0.9
+4654,2023,4,7,23,0,2.7,1.2,0.065,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.346,53.45,129.22,0.94,0.65,789,0.7,177,1
+4655,2023,4,7,23,30,2.4,1.2,0.065,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.347,54.6,131.17,0.94,0.65,789,0.7,186,1.1
+4656,2023,4,8,0,0,2.1,1.21,0.069,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.348,56.03,132.18,0.94,0.65,789,0.7,195,1.2
+4657,2023,4,8,0,30,1.9,1.21,0.069,0.64,0,0,0,0,7,-5.8,0,0,0,0,0.348,56.76,132.22,0.94,0.65,788,0.7,203,1.2
+4658,2023,4,8,1,0,1.6,1.22,0.074,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.349,58.16,131.26,0.94,0.65,788,0.8,210,1.3
+4659,2023,4,8,1,30,1.4,1.22,0.074,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.35,59,129.37,0.94,0.65,788,0.8,216,1.3
+4660,2023,4,8,2,0,1.1,1.22,0.079,0.64,0,0,0,0,7,-5.6,0,0,0,0,0.351,61.02,126.65,0.94,0.65,788,0.8,222,1.3
+4661,2023,4,8,2,30,0.9,1.22,0.079,0.64,0,0,0,0,7,-5.6,0,0,0,0,0.352,61.9,123.22,0.94,0.65,788,0.8,223,1.3
+4662,2023,4,8,3,0,0.6,1.23,0.084,0.64,0,0,0,0,7,-5.4,0,0,0,0,0.354,64.1,119.22,0.94,0.65,788,0.8,224,1.3
+4663,2023,4,8,3,30,0.5,1.23,0.084,0.64,0,0,0,0,7,-5.4,0,0,0,0,0.356,64.56,114.75,0.94,0.65,788,0.8,222,1.3
+4664,2023,4,8,4,0,0.4,1.22,0.087,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.358,65.91,109.91,0.94,0.65,788,0.7,219,1.3
+4665,2023,4,8,4,30,0.3,1.22,0.087,0.64,0,0,0,0,4,-5.2,0,0,0,0,0.36,66.38,104.79,0.94,0.65,788,0.7,216,1.3
+4666,2023,4,8,5,0,0.2,1.21,0.09,0.64,0,0,0,0,8,-5.1,0,0,0,0,0.362,67.56,99.45,0.94,0.65,788,0.7,214,1.3
+4667,2023,4,8,5,30,0.7,1.21,0.09,0.64,0,0,0,0,7,-5.1,0,0,0,0,0.364,65.25,93.96,0.95,0.65,789,0.7,212,1.2
+4668,2023,4,8,6,0,1.3,1.19,0.093,0.64,18,141,23,5,7,-3.6,14,0,75,14,0.365,69.94,88.1,0.95,0.65,789,0.7,211,1.2
+4669,2023,4,8,6,30,2.7,1.19,0.093,0.64,45,422,99,4,7,-3.6,67,63,57,75,0.366,63.3,82.58,0.95,0.65,789,0.7,211,1.4
+4670,2023,4,8,7,0,4.2,1.18,0.1,0.64,64,596,199,0,7,-2.5,101,350,18,180,0.368,61.53,76.91,0.95,0.65,789,0.7,212,1.7
+4671,2023,4,8,7,30,5.2,1.18,0.1,0.64,81,702,307,0,7,-2.5,191,92,0,221,0.369,57.46,71.24,0.95,0.65,790,0.7,216,2
+4672,2023,4,8,8,0,6.1,1.17,0.114,0.64,97,769,414,0,7,-3.2,262,162,0,329,0.37,51.4,65.62,0.95,0.65,790,0.7,220,2.2
+4673,2023,4,8,8,30,7.3,1.17,0.114,0.64,110,821,519,0,7,-3.2,296,176,0,384,0.369,47.34,60.11,0.95,0.65,790,0.7,224,2.7
+4674,2023,4,8,9,0,8.5,1.18,0.122,0.64,121,857,615,0,6,-4.3,323,92,0,376,0.368,39.99,54.77,0.95,0.65,790,0.8,228,3.1
+4675,2023,4,8,9,30,9.4,1.18,0.122,0.64,127,891,704,0,7,-4.3,436,208,0,571,0.367,37.68,49.68,0.95,0.65,791,0.8,227,3.5
+4676,2023,4,8,10,0,10.2,1.2,0.116,0.64,133,918,782,0,7,-5.5,357,489,0,703,0.365,32.68,44.97,0.95,0.65,791,0.8,227,4
+4677,2023,4,8,10,30,10.9,1.2,0.116,0.64,137,935,845,0,0,-5.5,137,935,0,845,0.363,31.2,40.78,0.95,0.65,791,0.8,225,4.2
+4678,2023,4,8,11,0,11.6,1.2,0.113,0.64,141,948,895,0,0,-5.5,141,948,0,895,0.361,29.9,37.31,0.95,0.65,791,0.8,224,4.4
+4679,2023,4,8,11,30,12.1,1.2,0.113,0.64,143,956,928,0,0,-5.5,171,914,0,922,0.359,28.9,34.77,0.95,0.65,790,0.8,223,4.5
+4680,2023,4,8,12,0,12.5,1.21,0.115,0.64,144,959,945,0,0,-5.1,174,920,0,942,0.358,29.02,33.41,0.95,0.65,790,0.8,223,4.5
+4681,2023,4,8,12,30,12.7,1.21,0.115,0.64,147,955,945,0,0,-5.1,179,910,0,939,0.356,28.64,33.35,0.95,0.65,790,0.8,224,4.4
+4682,2023,4,8,13,0,12.9,1.22,0.121,0.64,147,949,928,0,0,-4.8,147,949,0,928,0.354,28.86,34.62,0.95,0.65,790,0.8,225,4.4
+4683,2023,4,8,13,30,12.8,1.22,0.121,0.64,140,949,897,0,0,-4.8,140,949,7,897,0.353,29.05,37.07,0.95,0.65,790,0.8,229,4.3
+4684,2023,4,8,14,0,12.8,1.3,0.1,0.64,129,949,851,0,0,-4.7,129,949,7,851,0.352,29.28,40.47,0.95,0.65,790,0.8,233,4.1
+4685,2023,4,8,14,30,12.6,1.3,0.1,0.64,125,931,788,0,0,-4.7,125,931,0,788,0.351,29.66,44.61,0.95,0.65,790,0.8,239,4
+4686,2023,4,8,15,0,12.4,1.27,0.104,0.64,120,907,712,0,0,-4.6,122,900,21,709,0.351,30.29,49.28,0.95,0.65,790,0.8,245,3.8
+4687,2023,4,8,15,30,12,1.27,0.104,0.64,113,874,623,0,0,-4.6,113,874,0,623,0.352,31.1,54.34,0.95,0.65,790,0.8,253,3.6
+4688,2023,4,8,16,0,11.6,1.21,0.109,0.64,106,829,525,0,0,-4.1,106,829,0,525,0.352,33.19,59.66,0.95,0.65,790,0.8,260,3.3
+4689,2023,4,8,16,30,10.7,1.21,0.109,0.64,97,771,421,0,0,-4.1,97,771,0,421,0.353,35.22,65.15,0.95,0.65,790,0.9,269,2.5
+4690,2023,4,8,17,0,9.8,1.17,0.114,0.64,85,690,312,0,0,-0.5,93,649,7,307,0.354,48.64,70.76,0.96,0.65,791,0.9,278,1.6
+4691,2023,4,8,17,30,8.4,1.17,0.114,0.64,68,582,205,0,0,-0.5,72,541,14,199,0.354,53.44,76.42,0.95,0.65,791,0.9,294,1.4
+4692,2023,4,8,18,0,7,1.17,0.107,0.64,48,414,105,0,0,-0.4,49,393,7,103,0.354,59.1,82.08,0.95,0.65,791,0.9,309,1.1
+4693,2023,4,8,18,30,6.4,1.17,0.107,0.64,20,144,26,3,0,-0.4,19,50,43,21,0.352,61.58,87.62,0.95,0.65,791,0.8,323,1.1
+4694,2023,4,8,19,0,5.9,1.19,0.091,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.351,56.62,93.44,0.94,0.65,792,0.8,337,1.1
+4695,2023,4,8,19,30,5.4,1.19,0.091,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.349,58.61,98.93,0.94,0.65,792,0.8,170,1.1
+4696,2023,4,8,20,0,5,1.2,0.075,0.64,0,0,0,0,0,-2.8,0,0,0,0,0.347,56.99,104.26,0.93,0.65,792,0.8,4,1.2
+4697,2023,4,8,20,30,4.4,1.2,0.075,0.64,0,0,0,0,0,-2.8,0,0,0,0,0.346,59.5,109.38,0.93,0.65,793,0.8,11,1.2
+4698,2023,4,8,21,0,3.8,1.19,0.064,0.64,0,0,0,0,0,-3.4,0,0,0,0,0.345,59.19,114.22,0.93,0.65,793,0.7,18,1.2
+4699,2023,4,8,21,30,3.2,1.19,0.064,0.64,0,0,0,0,0,-3.4,0,0,43,0,0.343,61.74,118.69,0.92,0.65,793,0.7,20,1.3
+4700,2023,4,8,22,0,2.6,1.18,0.058,0.64,0,0,0,1,0,-3.8,0,0,100,0,0.341,62.72,122.7,0.92,0.65,793,0.7,22,1.3
+4701,2023,4,8,22,30,2.1,1.18,0.058,0.64,0,0,0,0,0,-3.8,0,0,14,0,0.34,64.99,126.15,0.92,0.65,793,0.7,21,1.3
+4702,2023,4,8,23,0,1.6,1.18,0.055,0.64,0,0,0,0,0,-4,0,0,0,0,0.339,66.25,128.89,0.92,0.65,793,0.7,20,1.3
+4703,2023,4,8,23,30,1.1,1.18,0.055,0.64,0,0,0,0,0,-4,0,0,0,0,0.338,68.67,130.81,0.92,0.65,793,0.7,19,1.3
+4704,2023,4,9,0,0,0.7,1.18,0.058,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.337,70.36,131.82,0.93,0.65,793,0.7,18,1.3
+4705,2023,4,9,0,30,0.5,1.18,0.058,0.64,0,0,0,0,7,-4.1,0,0,0,0,0.337,71.38,131.84,0.93,0.65,793,0.7,16,1.2
+4706,2023,4,9,1,0,0.3,1.18,0.065,0.64,0,0,0,0,7,-4,0,0,0,0,0.336,72.87,130.88,0.93,0.65,793,0.7,15,1.2
+4707,2023,4,9,1,30,0.3,1.18,0.065,0.64,0,0,0,0,7,-4,0,0,0,0,0.336,72.96,128.99,0.93,0.65,794,0.7,17,1.1
+4708,2023,4,9,2,0,0.3,1.17,0.074,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.336,73.92,126.28,0.93,0.65,794,0.7,18,1.1
+4709,2023,4,9,2,30,0.3,1.17,0.074,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.337,73.92,122.87,0.94,0.65,794,0.7,22,1
+4710,2023,4,9,3,0,0.3,1.17,0.078,0.64,0,0,0,0,0,-3.7,0,0,0,0,0.337,74.65,118.87,0.94,0.65,794,0.7,25,1
+4711,2023,4,9,3,30,0.2,1.17,0.078,0.64,0,0,0,0,0,-3.7,0,0,0,0,0.338,75.19,114.41,0.94,0.65,794,0.7,31,0.9
+4712,2023,4,9,4,0,0.1,1.15,0.076,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.339,76.32,109.59,0.93,0.65,794,0.7,38,0.9
+4713,2023,4,9,4,30,0.1,1.15,0.076,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.34,76.41,104.48,0.93,0.65,795,0.8,45,0.9
+4714,2023,4,9,5,0,0.1,1.14,0.075,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.341,76.77,99.15,0.93,0.65,795,0.8,52,0.9
+4715,2023,4,9,5,30,0.5,1.14,0.075,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.342,74.58,93.66,0.93,0.65,795,0.8,56,0.8
+4716,2023,4,9,6,0,0.9,1.14,0.077,0.64,19,168,25,6,7,-2.6,13,0,86,13,0.342,77.3,87.82,0.93,0.65,795,0.8,61,0.8
+4717,2023,4,9,6,30,2.2,1.14,0.077,0.64,41,466,104,4,7,-2.6,45,2,57,45,0.342,70.53,82.29,0.93,0.65,796,0.8,57,1
+4718,2023,4,9,7,0,3.6,1.15,0.073,0.64,57,642,206,0,7,-1.9,96,217,0,146,0.343,67.05,76.62,0.93,0.65,796,0.8,53,1.3
+4719,2023,4,9,7,30,5.5,1.15,0.073,0.64,69,753,315,0,0,-1.9,69,753,0,315,0.342,58.72,70.95,0.92,0.65,796,0.8,32,1.4
+4720,2023,4,9,8,0,7.4,1.16,0.068,0.64,78,828,424,0,0,-2.6,78,828,0,424,0.341,48.94,65.32,0.92,0.65,796,0.8,11,1.5
+4721,2023,4,9,8,30,8.9,1.16,0.068,0.64,85,880,528,0,0,-2.6,85,880,0,528,0.339,44.26,59.8,0.91,0.65,797,0.8,180,1.9
+4722,2023,4,9,9,0,10.4,1.16,0.065,0.64,92,918,626,0,0,-2,92,918,0,626,0.338,41.99,54.45,0.91,0.65,797,0.8,349,2.3
+4723,2023,4,9,9,30,11.3,1.16,0.065,0.64,98,946,714,0,0,-2,98,946,0,714,0.335,39.56,49.36,0.91,0.65,797,0.8,345,2.3
+4724,2023,4,9,10,0,12.2,1.16,0.063,0.64,103,967,791,0,0,-1.5,103,967,0,791,0.333,38.49,44.63,0.91,0.65,797,0.8,341,2.3
+4725,2023,4,9,10,30,12.9,1.16,0.063,0.64,107,982,854,0,0,-1.5,107,982,0,854,0.33,36.77,40.43,0.91,0.65,797,0.8,337,2.2
+4726,2023,4,9,11,0,13.7,1.13,0.064,0.64,110,991,902,0,0,-1.5,110,991,0,902,0.328,34.94,36.94,0.91,0.65,797,0.8,334,2.1
+4727,2023,4,9,11,30,14.3,1.13,0.064,0.64,111,999,935,0,0,-1.5,111,999,0,935,0.325,33.61,34.4,0.9,0.65,797,0.8,330,1.9
+4728,2023,4,9,12,0,15,1.14,0.062,0.64,111,1003,952,0,0,-1.8,111,1003,0,952,0.322,31.59,33.03,0.9,0.65,796,0.8,327,1.8
+4729,2023,4,9,12,30,15.4,1.14,0.062,0.64,112,1003,953,0,0,-1.7,112,1003,0,953,0.318,30.79,32.99,0.91,0.65,796,0.8,324,1.7
+4730,2023,4,9,13,0,15.9,1.15,0.062,0.64,112,1000,938,0,0,-2.1,112,1000,0,938,0.315,29.14,34.28,0.91,0.65,796,0.8,320,1.6
+4731,2023,4,9,13,30,16.1,1.15,0.062,0.64,111,992,906,0,0,-2.1,111,992,0,906,0.313,28.77,36.75,0.91,0.65,796,0.8,321,1.5
+4732,2023,4,9,14,0,16.3,1.02,0.069,0.64,111,978,858,0,0,-2.4,111,978,0,858,0.31,27.77,40.19,0.91,0.65,796,0.8,321,1.4
+4733,2023,4,9,14,30,16.3,1.02,0.069,0.64,107,964,796,0,0,-2.4,107,964,0,796,0.309,27.77,44.36,0.91,0.65,796,0.8,328,1.3
+4734,2023,4,9,15,0,16.2,1.02,0.066,0.64,100,946,720,0,0,-2.7,100,946,0,720,0.308,27.25,49.05,0.91,0.65,796,0.8,335,1.2
+4735,2023,4,9,15,30,15.9,1.02,0.066,0.64,93,921,633,0,0,-2.7,93,921,0,633,0.307,27.78,54.12,0.91,0.65,796,0.8,347,1.1
+4736,2023,4,9,16,0,15.6,1,0.063,0.64,86,887,537,0,0,-2.9,86,887,0,537,0.306,27.82,59.45,0.91,0.65,796,0.8,360,1.1
+4737,2023,4,9,16,30,14.7,1,0.063,0.64,77,838,432,0,0,-2.9,77,838,0,432,0.306,29.47,64.96,0.91,0.65,796,0.8,201,0.9
+4738,2023,4,9,17,0,13.9,0.98,0.064,0.64,69,768,324,0,0,-1,69,768,0,324,0.305,35.91,70.57,0.91,0.65,796,0.8,42,0.8
+4739,2023,4,9,17,30,11.6,0.98,0.064,0.64,57,664,215,0,0,-1,57,664,0,215,0.305,41.73,76.24,0.92,0.65,796,0.8,68,0.9
+4740,2023,4,9,18,0,9.3,0.96,0.066,0.64,42,495,112,0,0,0.8,43,482,4,111,0.304,55.18,81.89,0.92,0.65,796,0.8,95,1
+4741,2023,4,9,18,30,7.8,0.96,0.066,0.64,20,194,29,0,0,0.8,20,180,7,28,0.305,61.14,87.44,0.91,0.65,797,0.8,100,1.2
+4742,2023,4,9,19,0,6.3,0.97,0.065,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.305,60.54,93.24,0.91,0.65,797,0.8,105,1.3
+4743,2023,4,9,19,30,5.4,0.97,0.065,0.64,0,0,0,0,7,-0.8,0,0,0,0,0.304,64.42,98.72,0.91,0.65,797,0.8,106,1.4
+4744,2023,4,9,20,0,4.4,0.99,0.063,0.64,0,0,0,0,7,-1,0,0,0,0,0.304,67.81,104.05,0.91,0.65,798,0.8,107,1.4
+4745,2023,4,9,20,30,3.6,0.99,0.063,0.64,0,0,0,0,0,-1,0,0,0,0,0.304,71.72,109.15,0.91,0.65,798,0.8,107,1.4
+4746,2023,4,9,21,0,2.8,1.02,0.062,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.303,74.54,113.97,0.91,0.65,798,0.8,107,1.4
+4747,2023,4,9,21,30,2.1,1.02,0.062,0.64,0,0,0,0,0,-1.3,0,0,43,0,0.302,78.34,118.43,0.91,0.65,798,0.8,106,1.3
+4748,2023,4,9,22,0,1.4,1.04,0.06,0.64,0,0,0,1,0,-1.6,0,0,100,0,0.301,80.17,122.42,0.91,0.65,798,0.8,106,1.3
+4749,2023,4,9,22,30,1,1.04,0.06,0.64,0,0,0,0,0,-1.6,0,0,14,0,0.3,82.5,125.84,0.91,0.65,798,0.8,105,1.2
+4750,2023,4,9,23,0,0.7,1.05,0.058,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.299,81.71,128.56,0.91,0.65,798,0.8,104,1.2
+4751,2023,4,9,23,30,0.4,1.05,0.058,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.298,83.5,130.46,0.91,0.65,798,0.8,102,1.2
+4752,2023,4,10,0,0,0.1,1.06,0.056,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.297,82.37,131.45,0.91,0.65,798,0.8,100,1.1
+4753,2023,4,10,0,30,-0.1,1.06,0.056,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.296,83.58,131.46,0.91,0.65,798,0.8,96,1.1
+4754,2023,4,10,1,0,-0.2,1.08,0.054,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.294,80.93,130.5,0.91,0.65,798,0.8,93,1
+4755,2023,4,10,1,30,-0.3,1.08,0.054,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.293,81.52,128.62,0.91,0.65,798,0.8,89,0.9
+4756,2023,4,10,2,0,-0.3,1.09,0.052,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.292,78.57,125.91,0.91,0.65,798,0.8,85,0.9
+4757,2023,4,10,2,30,-0.1,1.09,0.052,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.292,77.43,122.51,0.91,0.65,798,0.8,80,0.8
+4758,2023,4,10,3,0,0,1.1,0.05,0.64,0,0,0,0,0,-3.9,0,0,0,0,0.291,74.76,118.53,0.91,0.65,798,0.8,75,0.7
+4759,2023,4,10,3,30,0.1,1.1,0.05,0.64,0,0,0,0,0,-3.9,0,0,0,0,0.291,74.22,114.08,0.91,0.65,798,0.8,68,0.6
+4760,2023,4,10,4,0,0.3,1.12,0.049,0.64,0,0,0,0,0,-4.2,0,0,0,0,0.29,71.75,109.27,0.91,0.65,798,0.8,61,0.5
+4761,2023,4,10,4,30,0.3,1.12,0.049,0.64,0,0,0,0,0,-4.2,0,0,0,0,0.29,71.75,104.17,0.91,0.65,798,0.8,57,0.5
+4762,2023,4,10,5,0,0.4,1.14,0.051,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.289,70.22,98.85,0.91,0.65,798,0.8,54,0.4
+4763,2023,4,10,5,30,1.1,1.14,0.051,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.288,66.77,93.36,0.91,0.65,798,0.8,58,0.4
+4764,2023,4,10,6,0,1.9,1.16,0.052,0.64,20,221,29,3,0,-3,15,85,39,19,0.287,70.02,87.55,0.91,0.65,798,0.8,61,0.3
+4765,2023,4,10,6,30,3.7,1.16,0.052,0.64,39,533,113,2,0,-3,47,390,32,101,0.287,61.64,82,0.91,0.65,798,0.8,97,0.3
+4766,2023,4,10,7,0,5.5,1.17,0.051,0.64,53,696,217,0,0,-2.8,53,696,0,217,0.287,55.08,76.33,0.91,0.65,798,0.8,134,0.4
+4767,2023,4,10,7,30,7.2,1.17,0.051,0.64,63,797,327,0,0,-2.8,63,797,0,327,0.287,49,70.66,0.91,0.65,798,0.8,170,0.8
+4768,2023,4,10,8,0,9,1.17,0.047,0.64,70,866,436,0,0,-2.7,70,866,0,436,0.287,43.7,65.03,0.9,0.65,798,0.8,206,1.3
+4769,2023,4,10,8,30,11,1.17,0.047,0.64,77,912,540,0,0,-2.7,77,912,0,540,0.287,38.23,59.5,0.9,0.65,798,0.8,212,2
+4770,2023,4,10,9,0,13.1,1.17,0.044,0.64,82,947,637,0,0,-2.5,82,947,0,637,0.288,33.77,54.14,0.9,0.65,799,0.8,219,2.7
+4771,2023,4,10,9,30,14.3,1.17,0.044,0.64,87,972,724,0,0,-2.5,87,972,0,724,0.288,31.21,49.04,0.9,0.65,798,0.8,219,3
+4772,2023,4,10,10,0,15.6,1.17,0.042,0.64,91,991,800,0,0,-2.7,91,991,0,800,0.289,28.27,44.3,0.9,0.65,798,0.8,219,3.2
+4773,2023,4,10,10,30,16.5,1.17,0.042,0.64,99,997,862,0,0,-2.7,99,997,0,862,0.289,26.7,40.08,0.9,0.65,798,0.8,218,3.4
+4774,2023,4,10,11,0,17.4,0.91,0.057,0.64,108,998,909,0,0,-3,108,998,0,909,0.289,24.68,36.58,0.91,0.65,798,0.8,216,3.5
+4775,2023,4,10,11,30,18,0.91,0.057,0.64,110,1004,942,0,0,-3,110,1004,0,942,0.29,23.77,34.02,0.91,0.65,798,0.8,215,3.6
+4776,2023,4,10,12,0,18.6,0.92,0.056,0.64,110,1007,958,0,0,-3,110,1007,0,958,0.29,22.9,32.65,0.91,0.65,798,0.8,213,3.6
+4777,2023,4,10,12,30,19.1,0.92,0.056,0.64,110,1007,958,0,0,-3,110,1007,0,958,0.291,22.17,32.62,0.91,0.65,797,0.8,212,3.7
+4778,2023,4,10,13,0,19.5,0.93,0.055,0.64,108,1004,941,0,0,-2.8,108,1004,0,941,0.291,21.93,33.94,0.91,0.65,797,0.9,212,3.8
+4779,2023,4,10,13,30,19.6,0.93,0.055,0.64,105,999,909,0,0,-2.8,105,999,0,909,0.291,21.8,36.44,0.91,0.65,797,0.9,211,3.7
+4780,2023,4,10,14,0,19.7,0.94,0.052,0.64,102,991,862,0,0,-2.7,102,991,0,862,0.291,21.95,39.91,0.91,0.65,797,0.9,211,3.7
+4781,2023,4,10,14,30,19.6,0.94,0.052,0.64,97,979,800,0,0,-2.7,97,979,0,800,0.29,22.06,44.1,0.91,0.65,796,0.9,210,3.6
+4782,2023,4,10,15,0,19.4,0.95,0.049,0.64,91,963,725,0,0,-2.5,91,963,0,725,0.29,22.57,48.82,0.9,0.65,796,0.8,209,3.6
+4783,2023,4,10,15,30,19,0.95,0.049,0.64,85,940,639,0,0,-2.5,85,940,0,639,0.29,23.14,53.9,0.9,0.65,796,0.8,207,3.5
+4784,2023,4,10,16,0,18.5,0.98,0.047,0.64,78,909,543,0,0,-2.3,78,909,0,543,0.29,24.38,59.25,0.9,0.65,796,0.8,205,3.4
+4785,2023,4,10,16,30,17.4,0.98,0.047,0.64,70,865,439,0,0,-2.3,70,865,0,439,0.289,26.12,64.76,0.9,0.65,796,0.8,203,2.8
+4786,2023,4,10,17,0,16.2,1.02,0.045,0.64,61,804,331,0,0,0.8,61,804,0,331,0.289,35.2,70.38,0.89,0.65,796,0.8,201,2.1
+4787,2023,4,10,17,30,13.6,1.02,0.045,0.64,50,712,222,0,0,0.8,50,712,0,222,0.289,41.59,76.05,0.89,0.65,796,0.8,196,1.8
+4788,2023,4,10,18,0,11,1.06,0.043,0.64,38,562,119,0,0,1.9,38,562,0,119,0.289,53.29,81.71,0.89,0.65,796,0.7,190,1.4
+4789,2023,4,10,18,30,9.8,1.06,0.043,0.64,20,250,32,0,0,1.9,20,250,0,32,0.289,57.72,87.26,0.89,0.65,796,0.7,185,1.4
+4790,2023,4,10,19,0,8.5,1.1,0.041,0.64,0,0,0,0,0,0,0,0,0,0,0.289,54.99,93.05,0.89,0.65,796,0.7,181,1.5
+4791,2023,4,10,19,30,7.9,1.1,0.041,0.64,0,0,0,0,0,0,0,0,0,0,0.289,57.27,98.52,0.89,0.65,796,0.7,181,1.5
+4792,2023,4,10,20,0,7.2,1.14,0.04,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.289,57.33,103.83,0.89,0.65,796,0.7,180,1.5
+4793,2023,4,10,20,30,6.9,1.14,0.04,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.289,58.52,108.92,0.89,0.65,796,0.6,184,1.5
+4794,2023,4,10,21,0,6.5,1.16,0.04,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.289,57.42,113.72,0.88,0.65,796,0.6,187,1.5
+4795,2023,4,10,21,30,6.2,1.16,0.04,0.64,0,0,0,0,0,-1.3,0,0,43,0,0.289,58.55,118.16,0.88,0.65,795,0.6,191,1.5
+4796,2023,4,10,22,0,5.8,1.17,0.04,0.64,0,0,0,1,0,-1.8,0,0,100,0,0.289,57.97,122.13,0.88,0.65,795,0.6,195,1.5
+4797,2023,4,10,22,30,5.3,1.17,0.04,0.64,0,0,0,0,0,-1.8,0,0,14,0,0.289,60.01,125.53,0.88,0.65,795,0.6,196,1.5
+4798,2023,4,10,23,0,4.8,1.17,0.04,0.64,0,0,0,0,0,-2.3,0,0,0,0,0.289,60.25,128.23,0.88,0.65,795,0.6,196,1.6
+4799,2023,4,10,23,30,4.2,1.17,0.04,0.64,0,0,0,0,0,-2.3,0,0,0,0,0.289,62.83,130.11,0.88,0.65,795,0.5,195,1.6
+4800,2023,4,11,0,0,3.6,1.15,0.041,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.289,63.87,131.09,0.88,0.65,795,0.5,194,1.6
+4801,2023,4,11,0,30,3.1,1.15,0.041,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.288,66.07,131.09,0.88,0.65,794,0.5,194,1.7
+4802,2023,4,11,1,0,2.5,1.13,0.041,0.64,0,0,0,0,0,-2.9,0,0,0,0,0.288,67.62,130.13,0.88,0.65,794,0.5,193,1.7
+4803,2023,4,11,1,30,2,1.13,0.041,0.64,0,0,0,0,0,-2.9,0,0,0,0,0.288,70.07,128.25,0.88,0.65,794,0.5,192,1.7
+4804,2023,4,11,2,0,1.6,1.11,0.041,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.287,70.77,125.55,0.88,0.65,794,0.5,190,1.7
+4805,2023,4,11,2,30,1.2,1.11,0.041,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.287,72.83,122.16,0.88,0.65,794,0.5,188,1.7
+4806,2023,4,11,3,0,0.9,1.1,0.04,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.287,72.38,118.19,0.88,0.65,794,0.5,186,1.7
+4807,2023,4,11,3,30,0.7,1.1,0.04,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.287,73.42,113.75,0.88,0.65,794,0.4,185,1.7
+4808,2023,4,11,4,0,0.4,1.12,0.039,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.288,71.97,108.95,0.88,0.65,794,0.4,184,1.7
+4809,2023,4,11,4,30,0.3,1.12,0.039,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.288,72.4,103.86,0.88,0.65,793,0.5,185,1.7
+4810,2023,4,11,5,0,0.2,1.15,0.038,0.64,0,0,0,0,0,-4.8,0,0,0,0,0.288,69.09,98.55,0.88,0.65,793,0.5,186,1.7
+4811,2023,4,11,5,30,1.4,1.15,0.038,0.64,0,0,0,0,0,-4.8,0,0,0,0,0.288,63.37,93.07,0.88,0.65,793,0.5,187,1.7
+4812,2023,4,11,6,0,2.6,1.19,0.037,0.64,20,276,33,0,0,-3.8,20,276,0,33,0.287,62.74,87.27,0.88,0.65,793,0.5,187,1.6
+4813,2023,4,11,6,30,5.2,1.19,0.037,0.64,37,598,123,0,0,-3.8,37,598,0,123,0.288,52.28,81.72,0.89,0.65,793,0.5,190,2.2
+4814,2023,4,11,7,0,7.7,1.21,0.038,0.64,49,748,229,0,0,-3.7,49,748,0,229,0.288,44.36,76.05,0.89,0.65,793,0.5,192,2.7
+4815,2023,4,11,7,30,9.6,1.21,0.038,0.64,58,839,340,0,0,-3.7,58,839,0,340,0.288,39.02,70.37,0.89,0.65,793,0.5,196,2.8
+4816,2023,4,11,8,0,11.5,1.21,0.039,0.64,66,899,450,0,0,-3.1,66,899,0,450,0.288,35.87,64.74,0.89,0.65,793,0.5,199,3
+4817,2023,4,11,8,30,13.9,1.21,0.039,0.64,74,942,556,0,0,-3.1,74,942,0,556,0.288,30.66,59.2,0.89,0.65,793,0.5,206,4
+4818,2023,4,11,9,0,16.3,1.22,0.039,0.64,80,973,654,0,0,-3.6,80,973,0,654,0.289,25.26,53.84,0.89,0.65,793,0.5,213,5.1
+4819,2023,4,11,9,30,17.5,1.22,0.039,0.64,85,996,742,0,0,-3.6,85,996,0,742,0.289,23.42,48.72,0.89,0.65,793,0.5,216,5.7
+4820,2023,4,11,10,0,18.7,1.22,0.04,0.64,90,1011,818,0,0,-3.6,90,1011,0,818,0.289,21.76,43.97,0.89,0.65,793,0.5,219,6.2
+4821,2023,4,11,10,30,19.4,1.22,0.04,0.64,91,1024,879,0,0,-3.6,91,1024,0,879,0.29,20.81,39.73,0.88,0.65,792,0.6,220,6.4
+4822,2023,4,11,11,0,20,1.42,0.036,0.64,91,1036,927,0,0,-3.2,91,1036,0,927,0.29,20.7,36.21,0.87,0.65,792,0.6,220,6.5
+4823,2023,4,11,11,30,20.5,1.42,0.036,0.64,93,1039,958,0,0,-3.2,93,1039,0,958,0.291,20.07,33.65,0.87,0.65,792,0.6,220,6.7
+4824,2023,4,11,12,0,20.9,1.46,0.037,0.64,94,1040,973,0,0,-2.9,94,1040,0,973,0.291,20.04,32.28,0.87,0.65,791,0.6,220,6.8
+4825,2023,4,11,12,30,21.2,1.46,0.037,0.64,95,1039,974,0,0,-2.9,95,1039,0,974,0.292,19.67,32.26,0.87,0.65,791,0.6,220,6.9
+4826,2023,4,11,13,0,21.5,1.5,0.039,0.64,94,1036,957,0,0,-2.8,94,1036,0,957,0.292,19.4,33.6,0.87,0.65,791,0.6,219,7
+4827,2023,4,11,13,30,21.5,1.5,0.039,0.64,94,1028,924,0,0,-2.8,94,1028,0,924,0.293,19.37,36.13,0.87,0.65,790,0.6,219,7
+4828,2023,4,11,14,0,21.6,1.45,0.043,0.64,93,1017,876,0,0,-3,93,1017,0,876,0.293,19.03,39.63,0.87,0.65,790,0.6,219,7
+4829,2023,4,11,14,30,21.4,1.45,0.043,0.64,90,1004,814,0,0,-3,90,1004,0,814,0.293,19.26,43.85,0.87,0.65,790,0.6,218,6.8
+4830,2023,4,11,15,0,21.2,1.56,0.043,0.64,85,987,738,0,0,-3.2,85,987,0,738,0.293,19.18,48.59,0.87,0.65,789,0.6,218,6.7
+4831,2023,4,11,15,30,20.8,1.56,0.043,0.64,79,964,650,0,0,-3.2,79,964,0,650,0.292,19.66,53.69,0.87,0.65,789,0.6,217,6.4
+4832,2023,4,11,16,0,20.3,1.59,0.044,0.64,74,932,553,0,0,-3.2,74,932,0,553,0.292,20.31,59.05,0.87,0.65,789,0.6,216,6.2
+4833,2023,4,11,16,30,19.2,1.59,0.044,0.64,67,887,448,0,0,-3.2,67,887,0,448,0.292,21.74,64.57,0.88,0.65,789,0.6,213,5.2
+4834,2023,4,11,17,0,18.1,1.61,0.044,0.64,60,824,339,0,0,-1.8,60,824,0,339,0.292,25.94,70.2,0.88,0.65,789,0.7,211,4.3
+4835,2023,4,11,17,30,15.3,1.61,0.044,0.64,50,731,228,0,0,-1.8,50,731,0,228,0.292,30.97,75.87,0.88,0.65,789,0.7,207,3.4
+4836,2023,4,11,18,0,12.4,1.65,0.044,0.64,37,582,123,0,0,0.1,37,582,0,123,0.292,42.74,81.53,0.88,0.65,789,0.7,203,2.4
+4837,2023,4,11,18,30,11,1.65,0.044,0.64,21,301,36,0,0,0.1,21,301,0,36,0.292,46.86,87.08,0.88,0.65,789,0.7,200,2.4
+4838,2023,4,11,19,0,9.6,1.7,0.044,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.293,49.69,92.85,0.88,0.65,789,0.7,198,2.3
+4839,2023,4,11,19,30,9.1,1.7,0.044,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,51.38,98.31,0.89,0.65,789,0.7,196,2.4
+4840,2023,4,11,20,0,8.7,1.7,0.044,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.292,52.19,103.61,0.89,0.65,789,0.8,195,2.5
+4841,2023,4,11,20,30,8.3,1.7,0.044,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.293,53.62,108.69,0.89,0.65,789,0.8,194,2.6
+4842,2023,4,11,21,0,7.9,1.66,0.043,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.293,54.61,113.48,0.89,0.65,789,0.8,194,2.7
+4843,2023,4,11,21,30,7.6,1.66,0.043,0.64,0,0,0,0,0,-0.7,0,0,29,0,0.293,55.67,117.89,0.89,0.65,788,0.8,195,2.8
+4844,2023,4,11,22,0,7.3,1.61,0.042,0.64,0,0,0,1,0,-0.7,0,0,100,0,0.293,56.78,121.85,0.89,0.65,788,0.8,196,2.9
+4845,2023,4,11,22,30,7,1.61,0.042,0.64,0,0,0,0,0,-0.7,0,0,14,0,0.293,57.95,125.22,0.89,0.65,788,0.8,197,3
+4846,2023,4,11,23,0,6.7,1.57,0.041,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.293,59.62,127.9,0.89,0.65,788,0.9,198,3
+4847,2023,4,11,23,30,6.4,1.57,0.041,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.292,60.78,129.77,0.9,0.65,787,0.9,200,2.9
+4848,2023,4,12,0,0,6.1,1.53,0.043,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,62.56,130.73,0.9,0.65,787,0.9,201,2.9
+4849,2023,4,12,0,30,5.7,1.53,0.043,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,64.31,130.72,0.9,0.65,787,0.9,203,2.8
+4850,2023,4,12,1,0,5.4,1.5,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,66.01,129.75,0.91,0.65,787,0.9,205,2.7
+4851,2023,4,12,1,30,4.9,1.5,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,68.34,127.88,0.91,0.65,787,0.9,207,2.6
+4852,2023,4,12,2,0,4.5,1.51,0.05,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,69.99,125.19,0.91,0.65,786,0.9,210,2.5
+4853,2023,4,12,2,30,4.3,1.51,0.05,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,70.97,121.81,0.91,0.65,786,0.9,213,2.4
+4854,2023,4,12,3,0,4,1.53,0.053,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.292,71.74,117.85,0.91,0.65,786,0.9,216,2.4
+4855,2023,4,12,3,30,3.7,1.53,0.053,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.292,73.26,113.43,0.91,0.65,786,0.9,215,2.3
+4856,2023,4,12,4,0,3.4,1.55,0.055,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.293,73.41,108.63,0.9,0.65,786,0.8,214,2.2
+4857,2023,4,12,4,30,3.2,1.55,0.055,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.292,74.45,103.55,0.91,0.65,786,0.8,211,2.1
+4858,2023,4,12,5,0,2.9,1.53,0.058,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.292,74.42,98.25,0.91,0.65,786,0.7,208,2.1
+4859,2023,4,12,5,30,4.1,1.53,0.058,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.292,68.4,92.78,0.91,0.65,786,0.7,207,2.2
+4860,2023,4,12,6,0,5.2,1.5,0.062,0.64,23,267,37,0,0,-0.5,23,267,0,37,0.291,66.45,87,0.91,0.65,786,0.7,206,2.3
+4861,2023,4,12,6,30,7.8,1.5,0.062,0.64,42,548,124,0,0,-0.5,42,548,0,124,0.291,55.58,81.44,0.92,0.65,786,0.6,207,3.2
+4862,2023,4,12,7,0,10.3,1.48,0.063,0.64,56,702,229,0,0,-0.2,56,702,4,229,0.291,47.98,75.77,0.92,0.65,786,0.6,209,4.1
+4863,2023,4,12,7,30,12.3,1.48,0.063,0.64,67,798,339,0,0,-0.2,70,790,0,339,0.29,42.04,70.09,0.92,0.65,786,0.6,211,4.7
+4864,2023,4,12,8,0,14.3,1.48,0.063,0.64,76,866,450,0,0,-1.4,114,755,7,440,0.289,34,64.45,0.92,0.65,786,0.6,212,5.3
+4865,2023,4,12,8,30,15.8,1.48,0.063,0.64,84,912,555,0,7,-1.4,191,648,18,526,0.289,30.88,58.91,0.92,0.65,786,0.6,213,6.2
+4866,2023,4,12,9,0,17.3,1.49,0.061,0.64,91,946,653,0,7,-3.9,277,450,7,544,0.288,23.22,53.53,0.92,0.65,785,0.6,214,7.2
+4867,2023,4,12,9,30,18,1.49,0.061,0.64,96,970,740,0,7,-3.9,391,322,0,605,0.287,22.22,48.41,0.91,0.65,785,0.6,213,7.6
+4868,2023,4,12,10,0,18.7,1.51,0.059,0.64,100,990,816,0,7,-4.1,246,735,21,778,0.287,20.99,43.64,0.91,0.65,785,0.6,212,7.9
+4869,2023,4,12,10,30,19.3,1.51,0.059,0.64,103,1003,878,0,0,-4.1,142,948,14,875,0.286,20.22,39.39,0.91,0.65,785,0.6,211,8.2
+4870,2023,4,12,11,0,19.9,1.53,0.057,0.64,105,1011,924,0,7,-3.9,137,966,36,920,0.285,19.69,35.85,0.91,0.65,784,0.7,210,8.4
+4871,2023,4,12,11,30,20.3,1.53,0.057,0.64,107,1016,956,0,7,-3.9,160,944,11,949,0.285,19.21,33.28,0.91,0.65,784,0.7,210,8.7
+4872,2023,4,12,12,0,20.7,1.5,0.056,0.64,107,1019,972,0,7,-3.8,261,794,29,935,0.284,18.88,31.91,0.91,0.65,783,0.7,210,8.9
+4873,2023,4,12,12,30,20.9,1.5,0.056,0.64,109,1017,972,0,7,-3.8,188,910,57,960,0.284,18.65,31.91,0.92,0.65,783,0.7,210,9.1
+4874,2023,4,12,13,0,21,1.47,0.061,0.64,110,1012,956,0,7,-3.9,220,862,50,941,0.284,18.52,33.26,0.92,0.65,783,0.7,211,9.2
+4875,2023,4,12,13,30,20.7,1.47,0.061,0.64,110,1003,923,0,7,-3.9,165,922,43,913,0.283,18.84,35.83,0.93,0.65,782,0.7,212,9.2
+4876,2023,4,12,14,0,20.5,1.44,0.068,0.64,109,989,874,0,0,-3.8,210,820,11,844,0.283,19.19,39.35,0.93,0.65,782,0.7,213,9.2
+4877,2023,4,12,14,30,20.1,1.44,0.068,0.64,105,973,810,0,7,-3.8,306,608,25,746,0.283,19.67,43.6,0.93,0.65,782,0.8,213,9
+4878,2023,4,12,15,0,19.6,1.43,0.068,0.64,100,954,734,0,7,-3.8,198,673,50,645,0.284,20.32,48.36,0.93,0.65,782,0.8,214,8.9
+4879,2023,4,12,15,30,19,1.43,0.068,0.64,96,926,647,0,6,-3.8,275,36,0,296,0.283,21.07,53.48,0.93,0.65,781,0.8,213,8.5
+4880,2023,4,12,16,0,18.3,1.41,0.073,0.64,90,889,550,0,7,-3.9,220,432,25,443,0.283,21.89,58.85,0.94,0.65,781,0.8,213,8.1
+4881,2023,4,12,16,30,17.2,1.41,0.073,0.64,82,841,446,0,7,-3.9,154,423,36,337,0.283,23.45,64.38,0.94,0.65,781,0.7,212,7.1
+4882,2023,4,12,17,0,16.1,1.39,0.075,0.64,72,773,336,0,7,-3.2,160,170,0,218,0.283,26.37,70.01,0.94,0.65,781,0.7,211,6.1
+4883,2023,4,12,17,30,14.5,1.39,0.075,0.64,59,679,227,0,6,-3.2,118,138,18,152,0.283,29.21,75.68,0.94,0.65,781,0.7,210,5.1
+4884,2023,4,12,18,0,12.9,1.39,0.07,0.64,44,530,124,4,6,-1.7,61,5,57,62,0.283,36.24,81.34,0.94,0.65,781,0.7,208,4.1
+4885,2023,4,12,18,30,11.7,1.39,0.07,0.64,23,257,37,7,6,-1.7,19,0,100,19,0.283,39.21,86.9,0.93,0.65,781,0.7,207,3.6
+4886,2023,4,12,19,0,10.5,1.38,0.063,0.64,0,0,0,1,6,-0.9,0,0,14,0,0.284,45.03,92.65,0.93,0.65,781,0.7,206,3.2
+4887,2023,4,12,19,30,9.7,1.38,0.063,0.64,0,0,0,0,6,-0.9,0,0,0,0,0.284,47.5,98.11,0.93,0.65,781,0.7,205,3
+4888,2023,4,12,20,0,8.8,1.38,0.059,0.64,0,0,0,0,7,-0.7,0,0,0,0,0.284,51.35,103.4,0.93,0.65,781,0.7,204,2.7
+4889,2023,4,12,20,30,8.4,1.38,0.059,0.64,0,0,0,0,7,-0.7,0,0,0,0,0.284,52.69,108.46,0.93,0.65,780,0.7,206,2.8
+4890,2023,4,12,21,0,7.9,1.38,0.059,0.64,0,0,0,0,7,-0.8,0,0,0,0,0.285,54.18,113.23,0.93,0.65,780,0.7,207,2.8
+4891,2023,4,12,21,30,7.6,1.38,0.059,0.64,0,0,0,0,0,-0.8,0,0,29,0,0.285,55.3,117.63,0.93,0.65,780,0.7,209,3
+4892,2023,4,12,22,0,7.3,1.38,0.058,0.64,0,0,0,1,0,-0.9,0,0,86,0,0.286,56.11,121.56,0.93,0.65,780,0.8,210,3.1
+4893,2023,4,12,22,30,6.9,1.38,0.058,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.286,57.66,124.91,0.92,0.65,780,0.8,210,3.3
+4894,2023,4,12,23,0,6.4,1.38,0.054,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.286,59.71,127.57,0.92,0.65,780,0.8,210,3.4
+4895,2023,4,12,23,30,6,1.38,0.054,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.287,61.37,129.42,0.91,0.65,780,0.8,210,3.7
+4896,2023,4,13,0,0,5.6,1.38,0.05,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.287,64.22,130.37,0.91,0.65,780,0.8,210,3.9
+4897,2023,4,13,0,30,5.1,1.38,0.05,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.288,66.48,130.35,0.91,0.65,780,0.8,210,3.9
+4898,2023,4,13,1,0,4.7,1.35,0.047,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.288,69.58,129.38,0.91,0.65,780,0.8,209,4
+4899,2023,4,13,1,30,4.2,1.35,0.047,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.289,71.96,127.51,0.91,0.65,779,0.8,208,3.8
+4900,2023,4,13,2,0,3.7,1.33,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.289,74.62,124.83,0.91,0.65,779,0.7,206,3.6
+4901,2023,4,13,2,30,3.2,1.33,0.046,0.64,0,0,0,0,7,-0.4,0,0,0,0,0.29,77.29,121.46,0.91,0.65,779,0.7,202,3.4
+4902,2023,4,13,3,0,2.8,1.32,0.046,0.64,0,0,0,0,7,-0.5,0,0,0,0,0.292,78.91,117.51,0.91,0.65,779,0.7,199,3.3
+4903,2023,4,13,3,30,2.4,1.32,0.046,0.64,0,0,0,0,7,-0.5,0,0,0,0,0.293,81.18,113.1,0.91,0.65,779,0.7,195,3.1
+4904,2023,4,13,4,0,1.9,1.31,0.048,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.294,84.8,108.32,0.91,0.65,778,0.7,191,3
+4905,2023,4,13,4,30,1.5,1.31,0.048,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.295,87.25,103.25,0.91,0.65,778,0.7,187,2.8
+4906,2023,4,13,5,0,1.1,1.32,0.049,0.64,0,0,0,0,7,-0.1,0,0,0,0,0.297,91.97,97.95,0.91,0.65,778,0.7,184,2.6
+4907,2023,4,13,5,30,2.2,1.32,0.049,0.64,0,0,0,1,7,-0.1,0,0,14,0,0.299,85.02,92.49,0.91,0.65,778,0.7,184,2.8
+4908,2023,4,13,6,0,3.4,1.33,0.051,0.64,23,297,40,6,7,0.7,25,45,89,28,0.3,82.25,86.72,0.91,0.65,778,0.7,184,3.1
+4909,2023,4,13,6,30,5.3,1.33,0.051,0.64,40,571,128,2,7,0.7,65,126,21,84,0.303,72.02,81.16,0.91,0.65,778,0.7,188,3.7
+4910,2023,4,13,7,0,7.3,1.32,0.055,0.64,54,714,233,0,7,1.3,107,375,7,201,0.305,65.56,75.49,0.91,0.65,778,0.7,191,4.3
+4911,2023,4,13,7,30,9.2,1.32,0.055,0.64,65,802,342,0,7,1.3,162,398,0,299,0.307,57.57,69.81,0.92,0.65,777,0.7,198,5.3
+4912,2023,4,13,8,0,11.2,1.3,0.061,0.64,76,857,450,0,7,0,219,254,0,330,0.309,45.91,64.16,0.92,0.65,777,0.8,205,6.4
+4913,2023,4,13,8,30,12.4,1.3,0.061,0.64,86,894,552,0,7,0,264,329,7,435,0.31,42.42,58.62,0.93,0.65,777,0.8,210,7
+4914,2023,4,13,9,0,13.6,1.29,0.075,0.64,98,918,648,0,7,-2.1,212,559,21,547,0.311,33.74,53.23,0.93,0.65,777,0.8,216,7.6
+4915,2023,4,13,9,30,14.2,1.29,0.075,0.64,107,938,734,0,7,-2.1,211,730,11,699,0.312,32.45,48.09,0.94,0.65,777,0.8,218,7.9
+4916,2023,4,13,10,0,14.7,1.28,0.086,0.64,116,950,807,0,0,-2.9,187,784,4,757,0.313,29.48,43.31,0.94,0.65,777,0.9,220,8.1
+4917,2023,4,13,10,30,14.8,1.28,0.086,0.64,119,964,868,4,7,-2.9,348,532,50,761,0.313,29.29,39.05,0.94,0.65,777,0.9,221,8.2
+4918,2023,4,13,11,0,14.8,1.43,0.086,0.64,123,974,916,3,7,-3,363,539,46,802,0.314,29.08,35.5,0.95,0.65,777,0.9,221,8.2
+4919,2023,4,13,11,30,14.7,1.43,0.086,0.64,128,976,947,0,7,-3,400,524,7,840,0.314,29.27,32.91,0.95,0.65,777,1,222,8.2
+4920,2023,4,13,12,0,14.5,1.41,0.095,0.64,132,974,962,0,7,-2.7,518,364,0,828,0.314,30.33,31.54,0.95,0.65,777,1,223,8.3
+4921,2023,4,13,12,30,14.1,1.41,0.095,0.64,134,969,960,0,7,-2.7,330,679,21,909,0.314,31.12,31.55,0.95,0.65,777,1,225,8.2
+4922,2023,4,13,13,0,13.6,1.39,0.105,0.64,137,960,943,0,7,-1.8,421,479,14,823,0.315,34.38,32.93,0.96,0.65,777,1,227,8.2
+4923,2023,4,13,13,30,12.8,1.39,0.105,0.64,136,950,909,0,7,-1.8,496,330,0,765,0.316,36.21,35.52,0.96,0.65,777,1.1,229,7.9
+4924,2023,4,13,14,0,12,1.46,0.108,0.64,132,937,859,0,7,-0.5,394,497,0,780,0.316,42.12,39.08,0.96,0.65,777,1.1,232,7.7
+4925,2023,4,13,14,30,11.1,1.46,0.108,0.64,130,916,796,0,7,-0.5,394,446,0,718,0.318,44.75,43.35,0.96,0.65,778,1.1,234,7.2
+4926,2023,4,13,15,0,10.1,1.45,0.118,0.64,126,889,719,0,7,0.8,341,471,11,655,0.319,52.6,48.13,0.96,0.65,778,1.2,237,6.7
+4927,2023,4,13,15,30,9.3,1.45,0.118,0.64,120,854,631,0,7,0.8,252,439,29,515,0.321,55.49,53.27,0.96,0.65,778,1.2,238,6
+4928,2023,4,13,16,0,8.4,1.43,0.13,0.64,114,807,534,0,7,1.7,288,182,0,383,0.323,62.67,58.65,0.96,0.65,778,1.2,240,5.3
+4929,2023,4,13,16,30,7.6,1.43,0.13,0.64,106,745,430,0,7,1.7,259,189,0,341,0.325,66.16,64.19,0.97,0.65,778,1.2,241,4.6
+4930,2023,4,13,17,0,6.8,1.39,0.146,0.64,95,658,322,0,7,2.1,190,207,7,261,0.327,71.93,69.83,0.97,0.65,779,1.2,242,3.9
+4931,2023,4,13,17,30,5.9,1.39,0.146,0.64,80,541,215,0,7,2.1,132,34,0,141,0.328,76.52,75.5,0.97,0.65,779,1.2,246,3.1
+4932,2023,4,13,18,0,5,1.35,0.165,0.64,57,368,114,3,7,2.2,66,5,43,67,0.328,82.36,81.16,0.97,0.65,779,1.2,250,2.4
+4933,2023,4,13,18,30,4.3,1.35,0.165,0.64,26,139,34,7,6,2.2,13,0,100,13,0.329,86.48,86.71,0.97,0.65,779,1.2,263,1.9
+4934,2023,4,13,19,0,3.7,1.33,0.172,0.64,0,0,0,1,6,1.5,0,0,14,0,0.33,85.54,92.46,0.97,0.65,780,1.1,277,1.5
+4935,2023,4,13,19,30,3,1.33,0.172,0.64,0,0,0,0,7,1.5,0,0,0,0,0.331,89.86,97.91,0.97,0.65,780,1.1,302,1.5
+4936,2023,4,13,20,0,2.4,1.31,0.17,0.64,0,0,0,0,7,0.3,0,0,0,0,0.332,85.92,103.18,0.97,0.65,780,1.1,326,1.5
+4937,2023,4,13,20,30,1.9,1.31,0.17,0.64,0,0,0,0,7,0.3,0,0,0,0,0.333,89.04,108.23,0.97,0.65,780,1,341,1.9
+4938,2023,4,13,21,0,1.4,1.3,0.16,0.64,0,0,0,0,7,-1.8,0,0,0,0,0.335,79.26,112.99,0.97,0.65,780,1,357,2.4
+4939,2023,4,13,21,30,0.9,1.3,0.16,0.64,0,0,0,0,7,-1.8,0,0,29,0,0.336,82.16,117.37,0.97,0.65,780,1,186,2.8
+4940,2023,4,13,22,0,0.3,1.28,0.154,0.64,0,0,0,1,6,-3.7,0,0,86,0,0.337,74.75,121.28,0.97,0.65,781,0.9,15,3.2
+4941,2023,4,13,22,30,-0.2,1.28,0.154,0.64,0,0,0,0,6,-3.7,0,0,0,0,0.337,77.41,124.61,0.97,0.65,780,0.9,18,3.4
+4942,2023,4,13,23,0,-0.7,1.26,0.151,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.337,71.71,127.25,0.97,0.65,780,0.9,22,3.6
+4943,2023,4,13,23,30,-1.2,1.26,0.151,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.336,74.48,129.08,0.97,0.65,781,0.9,20,3.6
+4944,2023,4,14,0,0,-1.8,1.22,0.144,0.64,0,0,0,0,7,-6,0,0,0,0,0.335,73.15,130.01,0.97,0.65,781,0.9,18,3.6
+4945,2023,4,14,0,30,-2.2,1.22,0.144,0.64,0,0,0,0,7,-6,0,0,0,0,0.335,75.34,129.99,0.97,0.65,781,0.9,15,3.6
+4946,2023,4,14,1,0,-2.7,1.2,0.132,0.64,0,0,0,0,7,-6.3,0,0,0,0,0.334,76.18,129.02,0.97,0.65,781,0.8,11,3.6
+4947,2023,4,14,1,30,-2.9,1.2,0.132,0.64,0,0,0,0,7,-6.3,0,0,0,0,0.334,77.32,127.15,0.96,0.65,781,0.8,13,3.5
+4948,2023,4,14,2,0,-3.2,1.22,0.13,0.64,0,0,0,0,7,-6.6,0,0,0,0,0.335,77.12,124.48,0.96,0.65,781,0.8,15,3.4
+4949,2023,4,14,2,30,-3.3,1.22,0.13,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.337,77.59,121.12,0.96,0.65,780,0.8,17,3
+4950,2023,4,14,3,0,-3.5,1.24,0.125,0.64,0,0,0,0,6,-6.9,0,0,0,0,0.339,77.38,117.18,0.96,0.65,780,0.8,18,2.7
+4951,2023,4,14,3,30,-3.7,1.24,0.125,0.64,0,0,0,0,6,-6.9,0,0,0,0,0.342,78.55,112.78,0.96,0.65,780,0.8,11,2
+4952,2023,4,14,4,0,-3.9,1.21,0.116,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.346,80.98,108.01,0.96,0.65,780,0.7,4,1.4
+4953,2023,4,14,4,30,-4,1.21,0.116,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.35,81.59,102.95,0.96,0.65,780,0.7,174,1.2
+4954,2023,4,14,5,0,-4.1,1.16,0.12,0.64,0,0,0,0,7,-6.6,0,0,0,0,0.355,82.91,97.66,0.96,0.65,780,0.7,344,1
+4955,2023,4,14,5,30,-3.6,1.16,0.12,0.64,0,0,0,2,7,-6.6,0,0,29,0,0.358,79.86,92.2,0.96,0.65,780,0.7,342,1.3
+4956,2023,4,14,6,0,-3,1.13,0.129,0.64,28,179,39,7,7,-6.7,17,0,100,17,0.361,75.54,86.45,0.96,0.65,781,0.7,340,1.6
+4957,2023,4,14,6,30,-2.1,1.13,0.129,0.64,57,424,124,2,7,-6.7,77,16,29,80,0.363,70.67,80.88,0.96,0.65,781,0.7,341,1.5
+4958,2023,4,14,7,0,-1.2,1.12,0.136,0.64,79,580,227,0,7,-6.7,132,24,0,138,0.365,66.38,75.21,0.96,0.65,781,0.7,341,1.5
+4959,2023,4,14,7,30,-0.3,1.12,0.136,0.64,95,691,337,0,6,-6.7,177,35,0,189,0.365,62.16,69.53,0.95,0.65,781,0.7,328,1.3
+4960,2023,4,14,8,0,0.6,1.11,0.132,0.64,108,769,447,0,7,-6.4,254,91,0,294,0.365,59.36,63.88,0.95,0.65,781,0.6,315,1.1
+4961,2023,4,14,8,30,1.5,1.11,0.132,0.64,118,829,553,0,6,-6.4,242,20,0,253,0.365,55.65,58.33,0.95,0.65,781,0.6,294,1.2
+4962,2023,4,14,9,0,2.4,1.1,0.121,0.64,125,875,652,0,6,-6,329,156,0,423,0.364,53.75,52.94,0.95,0.65,781,0.6,274,1.3
+4963,2023,4,14,9,30,3.3,1.1,0.121,0.64,131,906,740,0,7,-6,432,105,0,503,0.365,50.43,47.79,0.94,0.65,781,0.6,265,1.6
+4964,2023,4,14,10,0,4.2,1.08,0.115,0.64,134,932,816,0,7,-6.1,495,197,0,639,0.365,46.93,42.99,0.94,0.65,781,0.6,256,1.9
+4965,2023,4,14,10,30,4.9,1.08,0.115,0.64,139,951,881,0,7,-6.1,513,216,0,682,0.365,44.7,38.71,0.94,0.65,781,0.6,252,2.2
+4966,2023,4,14,11,0,5.6,1.03,0.109,0.64,141,966,931,0,7,-6.4,531,154,0,657,0.365,41.89,35.14,0.94,0.65,781,0.6,247,2.5
+4967,2023,4,14,11,30,6.1,1.03,0.109,0.64,142,976,965,0,6,-6.4,565,139,0,682,0.365,40.47,32.55,0.94,0.65,781,0.6,244,2.8
+4968,2023,4,14,12,0,6.6,1,0.101,0.64,139,985,982,0,7,-6.5,522,388,0,854,0.364,38.6,31.18,0.93,0.65,781,0.5,241,3.2
+4969,2023,4,14,12,30,6.7,1,0.101,0.64,138,987,982,0,7,-6.5,243,830,18,953,0.364,38.34,31.2,0.93,0.65,781,0.5,240,3.5
+4970,2023,4,14,13,0,6.9,0.99,0.095,0.64,134,986,965,0,0,-6.7,280,683,0,855,0.363,37.31,32.6,0.93,0.65,781,0.5,238,3.8
+4971,2023,4,14,13,30,6.7,0.99,0.095,0.64,139,968,930,0,4,-6.7,537,79,0,602,0.364,37.87,35.22,0.94,0.65,782,0.6,240,4
+4972,2023,4,14,14,0,6.5,0.81,0.117,0.64,145,942,879,0,4,-6.7,567,117,0,658,0.364,38.34,38.81,0.94,0.65,782,0.6,242,4.2
+4973,2023,4,14,14,30,6.1,0.81,0.117,0.64,140,922,813,0,4,-6.7,483,254,0,668,0.364,39.41,43.1,0.94,0.65,782,0.6,249,4.2
+4974,2023,4,14,15,0,5.6,0.81,0.122,0.64,135,897,736,0,5,-6.6,341,488,11,668,0.365,41.23,47.91,0.94,0.65,782,0.6,257,4.2
+4975,2023,4,14,15,30,4.9,0.81,0.122,0.64,127,866,647,0,4,-6.6,410,71,0,453,0.365,43.29,53.06,0.94,0.65,782,0.6,269,4.2
+4976,2023,4,14,16,0,4.2,0.82,0.124,0.64,118,823,549,0,4,-6.2,285,339,11,462,0.366,46.71,58.45,0.94,0.65,783,0.6,282,4.2
+4977,2023,4,14,16,30,3.4,0.82,0.124,0.64,107,766,443,0,0,-6.2,111,758,4,443,0.367,49.41,64,0.94,0.65,783,0.6,295,4.2
+4978,2023,4,14,17,0,2.6,0.86,0.13,0.64,94,686,333,0,0,-6,135,494,0,307,0.368,53.23,69.64,0.94,0.65,784,0.6,307,4.3
+4979,2023,4,14,17,30,1.6,0.86,0.13,0.64,78,578,224,0,4,-6,126,232,0,185,0.369,57.16,75.32,0.94,0.65,784,0.6,317,4
+4980,2023,4,14,18,0,0.7,0.9,0.128,0.64,57,417,122,0,0,-5.8,57,417,0,122,0.37,61.66,80.97,0.94,0.65,785,0.6,327,3.7
+4981,2023,4,14,18,30,0,0.9,0.128,0.64,28,168,38,0,0,-5.8,28,168,0,38,0.371,64.86,86.53,0.94,0.65,785,0.5,332,3.2
+4982,2023,4,14,19,0,-0.7,0.94,0.119,0.64,0,0,0,0,7,-5.7,0,0,7,0,0.373,68.76,92.26,0.94,0.65,786,0.5,336,2.7
+4983,2023,4,14,19,30,-1.1,0.94,0.119,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.374,70.89,97.7,0.93,0.65,787,0.5,334,2.1
+4984,2023,4,14,20,0,-1.5,0.96,0.109,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.376,73.33,102.97,0.93,0.65,787,0.5,331,1.5
+4985,2023,4,14,20,30,-1.8,0.96,0.109,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.377,74.97,108,0.93,0.65,787,0.5,326,1.2
+4986,2023,4,14,21,0,-2.1,0.96,0.103,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.378,75.9,112.74,0.93,0.65,788,0.5,320,0.9
+4987,2023,4,14,21,30,-2.3,0.96,0.103,0.64,0,0,0,0,0,-5.8,0,0,14,0,0.379,77.03,117.1,0.92,0.65,788,0.4,311,0.9
+4988,2023,4,14,22,0,-2.5,0.93,0.102,0.64,0,0,0,1,7,-6.2,0,0,71,0,0.38,75.89,120.99,0.92,0.65,788,0.4,303,0.8
+4989,2023,4,14,22,30,-2.9,0.93,0.102,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.382,78.17,124.31,0.92,0.65,788,0.4,297,0.9
+4990,2023,4,14,23,0,-3.3,0.89,0.1,0.64,0,0,0,0,7,-7,0,0,0,0,0.383,75.85,126.92,0.91,0.65,788,0.4,292,1
+4991,2023,4,14,23,30,-3.7,0.89,0.1,0.64,0,0,0,0,0,-6.9,0,0,0,0,0.384,78.25,128.74,0.91,0.65,789,0.4,291,1
+4992,2023,4,15,0,0,-4.2,0.83,0.098,0.64,0,0,0,0,0,-7.8,0,0,0,0,0.385,75.88,129.65,0.91,0.65,789,0.4,290,1.1
+4993,2023,4,15,0,30,-4.5,0.83,0.098,0.64,0,0,0,0,0,-7.8,0,0,0,0,0.384,77.61,129.63,0.91,0.65,789,0.4,289,1.1
+4994,2023,4,15,1,0,-4.9,0.8,0.097,0.64,0,0,0,0,0,-8.5,0,0,0,0,0.384,75.99,128.65,0.91,0.65,789,0.4,289,1.1
+4995,2023,4,15,1,30,-5.2,0.8,0.097,0.64,0,0,0,0,0,-8.5,0,0,0,0,0.383,77.73,126.79,0.91,0.65,789,0.4,290,1.1
+4996,2023,4,15,2,0,-5.5,0.77,0.095,0.64,0,0,0,0,0,-8.9,0,0,0,0,0.382,76.8,124.12,0.91,0.65,790,0.4,291,1.1
+4997,2023,4,15,2,30,-5.9,0.77,0.095,0.64,0,0,0,0,0,-8.9,0,0,0,0,0.379,79.18,120.77,0.91,0.65,790,0.3,292,1.1
+4998,2023,4,15,3,0,-6.2,0.75,0.094,0.64,0,0,0,0,0,-9.3,0,0,0,0,0.377,78.75,116.85,0.91,0.65,790,0.3,294,1
+4999,2023,4,15,3,30,-6.4,0.75,0.094,0.64,0,0,0,0,4,-9.3,0,0,0,0,0.375,80.06,112.46,0.91,0.65,791,0.3,294,1
+5000,2023,4,15,4,0,-6.6,0.74,0.095,0.64,0,0,0,0,0,-9.4,0,0,29,0,0.372,80.44,107.7,0.91,0.65,791,0.3,294,1
+5001,2023,4,15,4,30,-6.8,0.74,0.095,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.37,81.69,102.65,0.91,0.65,791,0.3,293,0.9
+5002,2023,4,15,5,0,-6.9,0.74,0.096,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.368,82.35,97.37,0.91,0.65,792,0.3,293,0.9
+5003,2023,4,15,5,30,-5.9,0.74,0.096,0.64,2,10,2,0,0,-9.4,2,10,0,2,0.366,76.29,91.92,0.91,0.65,792,0.3,294,1.2
+5004,2023,4,15,6,0,-4.9,0.74,0.095,0.64,30,240,46,0,0,-9.1,30,240,0,46,0.364,72.55,86.17,0.91,0.65,792,0.3,295,1.4
+5005,2023,4,15,6,30,-3.3,0.74,0.095,0.64,52,506,135,0,0,-9.1,52,506,0,135,0.362,64.34,80.6,0.91,0.65,792,0.3,310,2.2
+5006,2023,4,15,7,0,-1.7,0.76,0.093,0.64,68,668,242,0,0,-9.5,68,668,0,242,0.36,55.13,74.93,0.9,0.65,793,0.3,324,2.9
+5007,2023,4,15,7,30,-0.7,0.76,0.093,0.64,82,770,355,0,0,-9.5,82,770,0,355,0.358,51.24,69.25,0.9,0.65,793,0.3,329,3.1
+5008,2023,4,15,8,0,0.4,0.77,0.092,0.64,94,840,467,0,0,-10.6,94,840,0,467,0.357,43.57,63.6,0.9,0.65,793,0.3,334,3.3
+5009,2023,4,15,8,30,1.2,0.77,0.092,0.64,103,890,574,0,0,-10.6,103,890,0,574,0.357,41.19,58.04,0.9,0.65,794,0.3,334,3
+5010,2023,4,15,9,0,2,0.79,0.092,0.64,111,926,673,0,0,-10.9,258,587,0,614,0.356,37.78,52.64,0.9,0.65,794,0.3,333,2.8
+5011,2023,4,15,9,30,2.7,0.79,0.092,0.64,119,953,763,0,4,-10.9,265,452,0,570,0.355,35.95,47.48,0.91,0.65,794,0.3,331,2.6
+5012,2023,4,15,10,0,3.5,0.81,0.092,0.64,125,974,841,0,0,-11.2,207,722,0,738,0.355,33.1,42.67,0.91,0.65,794,0.3,328,2.4
+5013,2023,4,15,10,30,4.2,0.81,0.092,0.64,133,983,904,0,0,-11.2,249,783,0,863,0.351,31.51,38.37,0.91,0.65,794,0.3,323,2.3
+5014,2023,4,15,11,0,4.9,0.72,0.104,0.64,140,987,951,0,0,-11.6,214,865,7,924,0.348,29.23,34.79,0.91,0.65,794,0.3,319,2.2
+5015,2023,4,15,11,30,5.6,0.72,0.104,0.64,143,994,984,0,0,-11.6,143,994,7,984,0.345,27.85,32.19,0.91,0.65,794,0.3,312,2.2
+5016,2023,4,15,12,0,6.2,0.75,0.103,0.64,144,998,1001,0,0,-11.8,144,998,0,1001,0.342,26.19,30.82,0.91,0.65,794,0.3,306,2.1
+5017,2023,4,15,12,30,6.7,0.75,0.103,0.64,143,999,1001,0,0,-11.8,163,968,0,994,0.34,25.31,30.85,0.91,0.65,794,0.3,300,2.2
+5018,2023,4,15,13,0,7.2,0.76,0.102,0.64,142,996,984,0,0,-11.9,142,996,0,984,0.339,24.23,32.28,0.91,0.65,794,0.3,294,2.2
+5019,2023,4,15,13,30,7.5,0.76,0.102,0.64,141,986,949,0,0,-11.9,141,986,0,949,0.337,23.74,34.93,0.91,0.65,794,0.3,290,2.2
+5020,2023,4,15,14,0,7.9,0.7,0.108,0.64,140,970,899,0,0,-12.1,140,970,0,899,0.336,22.8,38.54,0.91,0.65,794,0.3,286,2.3
+5021,2023,4,15,14,30,8,0.7,0.108,0.64,134,956,835,0,0,-12.1,134,956,0,835,0.334,22.64,42.86,0.91,0.65,794,0.3,285,2.2
+5022,2023,4,15,15,0,8.1,0.73,0.104,0.64,127,936,757,0,0,-12.4,127,936,0,757,0.332,22.02,47.68,0.91,0.65,794,0.3,283,2.2
+5023,2023,4,15,15,30,8,0.73,0.104,0.64,118,908,666,0,0,-12.4,118,908,0,666,0.329,22.17,52.85,0.91,0.65,794,0.4,282,2.1
+5024,2023,4,15,16,0,7.9,0.75,0.099,0.64,107,873,566,0,0,-12.5,107,873,0,566,0.327,22,58.26,0.91,0.65,794,0.4,281,2
+5025,2023,4,15,16,30,7.4,0.75,0.099,0.64,96,825,460,0,0,-12.5,96,825,0,460,0.324,22.76,63.81,0.91,0.65,794,0.4,277,1.6
+5026,2023,4,15,17,0,6.9,0.78,0.094,0.64,83,758,349,0,0,-11.4,83,758,0,349,0.32,25.75,69.46,0.91,0.65,794,0.4,273,1.2
+5027,2023,4,15,17,30,5.6,0.78,0.094,0.64,69,656,237,0,0,-11.4,69,656,0,237,0.316,28.16,75.13,0.91,0.65,794,0.4,221,0.8
+5028,2023,4,15,18,0,4.3,0.83,0.091,0.64,51,500,131,0,0,-8,51,500,0,131,0.312,40.25,80.79,0.91,0.65,794,0.4,169,0.3
+5029,2023,4,15,18,30,3.2,0.83,0.091,0.64,28,234,43,5,7,-8,32,96,75,38,0.31,43.49,86.35,0.91,0.65,794,0.4,150,0.6
+5030,2023,4,15,19,0,2,0.86,0.089,0.64,1,5,1,2,7,-9.7,0,0,29,0,0.307,41.53,92.07,0.91,0.65,795,0.4,131,0.9
+5031,2023,4,15,19,30,1.2,0.86,0.089,0.64,0,0,0,0,0,-9.7,0,0,0,0,0.307,43.98,97.5,0.91,0.65,795,0.4,132,1.1
+5032,2023,4,15,20,0,0.4,0.86,0.087,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.307,47.2,102.75,0.91,0.65,795,0.4,133,1.2
+5033,2023,4,15,20,30,-0.2,0.86,0.087,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.307,49.3,107.77,0.91,0.65,795,0.4,136,1.3
+5034,2023,4,15,21,0,-0.9,0.87,0.086,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.307,51.54,112.5,0.91,0.65,796,0.4,140,1.3
+5035,2023,4,15,21,30,-1.4,0.87,0.086,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.307,53.46,116.84,0.91,0.65,796,0.4,144,1.3
+5036,2023,4,15,22,0,-2,0.88,0.084,0.64,0,0,0,0,0,-9.8,0,0,43,0,0.307,55.23,120.71,0.91,0.65,796,0.4,149,1.3
+5037,2023,4,15,22,30,-2.5,0.88,0.084,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.306,57.31,124,0.91,0.65,796,0.4,152,1.4
+5038,2023,4,15,23,0,-3,0.9,0.081,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.306,58.91,126.6,0.9,0.65,796,0.4,155,1.4
+5039,2023,4,15,23,30,-3.4,0.9,0.081,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.305,60.69,128.4,0.9,0.65,796,0.4,157,1.4
+5040,2023,4,16,0,0,-3.7,0.94,0.079,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.305,62.07,129.3,0.9,0.65,795,0.4,159,1.4
+5041,2023,4,16,0,30,-3.9,0.94,0.079,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.304,63,129.27,0.9,0.65,795,0.4,159,1.4
+5042,2023,4,16,1,0,-4.2,0.97,0.077,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.304,65.06,128.29,0.9,0.65,795,0.4,159,1.4
+5043,2023,4,16,1,30,-4.3,0.97,0.077,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.303,65.55,126.43,0.9,0.65,795,0.4,160,1.3
+5044,2023,4,16,2,0,-4.5,1,0.075,0.64,0,0,0,0,0,-9.7,0,0,0,0,0.302,67.1,123.77,0.9,0.65,795,0.4,161,1.3
+5045,2023,4,16,2,30,-4.6,1,0.075,0.64,0,0,0,0,0,-9.7,0,0,0,0,0.302,67.61,120.43,0.9,0.65,795,0.4,163,1.3
+5046,2023,4,16,3,0,-4.7,1.04,0.073,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.301,68.53,116.52,0.9,0.65,795,0.5,164,1.3
+5047,2023,4,16,3,30,-4.7,1.04,0.073,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.301,68.53,112.15,0.9,0.65,795,0.5,166,1.3
+5048,2023,4,16,4,0,-4.8,1.08,0.072,0.64,0,0,0,0,0,-9.5,0,0,0,0,0.3,69.55,107.4,0.91,0.65,795,0.5,167,1.2
+5049,2023,4,16,4,30,-4.8,1.08,0.072,0.64,0,0,0,0,0,-9.5,0,0,0,0,0.3,69.55,102.35,0.91,0.65,795,0.5,169,1.2
+5050,2023,4,16,5,0,-4.8,1.11,0.071,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.299,70.33,97.08,0.91,0.65,795,0.5,171,1.2
+5051,2023,4,16,5,30,-3.5,1.11,0.071,0.64,3,21,2,0,0,-9.4,3,21,0,2,0.298,63.79,91.63,0.91,0.65,795,0.5,173,1.4
+5052,2023,4,16,6,0,-2.2,1.13,0.069,0.64,29,322,52,0,0,-8.7,29,322,0,52,0.298,60.87,85.91,0.91,0.65,795,0.5,175,1.6
+5053,2023,4,16,6,30,-0.6,1.13,0.069,0.64,47,570,143,0,0,-8.7,47,570,0,143,0.298,54.14,80.33,0.91,0.65,795,0.5,178,1.8
+5054,2023,4,16,7,0,1,1.15,0.067,0.64,61,715,250,0,0,-8.5,61,715,0,250,0.297,49.25,74.66,0.91,0.65,795,0.5,182,2
+5055,2023,4,16,7,30,3.2,1.15,0.067,0.64,72,807,361,0,0,-8.5,72,807,0,361,0.297,42.11,68.98,0.9,0.65,795,0.5,202,2.3
+5056,2023,4,16,8,0,5.4,1.16,0.065,0.64,80,871,471,0,0,-9,80,871,0,471,0.296,34.52,63.33,0.9,0.65,795,0.5,222,2.7
+5057,2023,4,16,8,30,6.6,1.16,0.065,0.64,87,916,576,0,0,-9,87,916,0,576,0.296,31.78,57.76,0.9,0.65,795,0.5,230,2.7
+5058,2023,4,16,9,0,7.8,1.16,0.063,0.64,94,949,674,0,0,-8.8,94,949,0,674,0.296,29.79,52.35,0.9,0.65,795,0.5,237,2.7
+5059,2023,4,16,9,30,8.8,1.16,0.063,0.64,99,972,760,0,0,-8.8,99,972,0,760,0.296,27.84,47.18,0.9,0.65,795,0.5,238,2.7
+5060,2023,4,16,10,0,9.8,1.15,0.062,0.64,104,990,836,0,0,-8.4,104,990,0,836,0.296,26.81,42.36,0.9,0.65,795,0.5,240,2.6
+5061,2023,4,16,10,30,10.6,1.15,0.062,0.64,103,1009,898,0,0,-8.4,103,1009,0,898,0.296,25.42,38.04,0.9,0.65,795,0.6,238,2.6
+5062,2023,4,16,11,0,11.5,1.7,0.046,0.64,98,1028,946,0,0,-7.9,98,1028,0,946,0.297,24.99,34.45,0.89,0.65,795,0.6,236,2.7
+5063,2023,4,16,11,30,12.1,1.7,0.046,0.64,100,1033,978,0,0,-7.9,100,1033,0,978,0.298,24,31.83,0.89,0.65,794,0.6,233,2.8
+5064,2023,4,16,12,0,12.7,1.67,0.047,0.64,101,1035,993,0,0,-7.4,101,1035,0,993,0.298,24.02,30.46,0.89,0.65,794,0.6,230,2.9
+5065,2023,4,16,12,30,13.1,1.67,0.047,0.64,101,1034,992,0,0,-7.4,101,1034,0,992,0.299,23.4,30.5,0.89,0.65,794,0.6,228,3
+5066,2023,4,16,13,0,13.6,1.64,0.048,0.64,101,1029,974,0,0,-7,101,1029,0,974,0.3,23.25,31.95,0.89,0.65,793,0.6,226,3.1
+5067,2023,4,16,13,30,13.8,1.64,0.048,0.64,102,1018,940,0,0,-7,102,1018,0,940,0.3,22.96,34.63,0.9,0.65,793,0.6,224,3.3
+5068,2023,4,16,14,0,14,1.25,0.059,0.64,104,1002,891,0,0,-6.8,104,1002,0,891,0.3,23.03,38.27,0.9,0.65,793,0.6,222,3.4
+5069,2023,4,16,14,30,14,1.25,0.059,0.64,101,988,828,0,0,-6.8,101,988,0,828,0.3,23,42.62,0.9,0.65,792,0.6,221,3.5
+5070,2023,4,16,15,0,13.9,1.24,0.058,0.64,96,970,752,0,0,-6.7,96,970,0,752,0.3,23.3,47.46,0.9,0.65,792,0.6,220,3.6
+5071,2023,4,16,15,30,13.6,1.24,0.058,0.64,90,947,665,0,0,-6.7,90,947,0,665,0.3,23.76,52.65,0.9,0.65,792,0.6,218,3.6
+5072,2023,4,16,16,0,13.3,1.25,0.057,0.64,83,917,568,0,0,-6.6,83,917,0,568,0.299,24.44,58.07,0.9,0.65,792,0.6,217,3.6
+5073,2023,4,16,16,30,12.7,1.25,0.057,0.64,75,876,464,0,0,-6.7,75,876,0,464,0.3,25.38,63.63,0.9,0.65,791,0.6,214,3.3
+5074,2023,4,16,17,0,12,1.26,0.055,0.64,66,818,355,0,0,-5.4,66,818,0,355,0.301,29.17,69.28,0.9,0.65,791,0.6,212,3
+5075,2023,4,16,17,30,9.7,1.26,0.055,0.64,55,732,245,0,0,-5.4,55,732,0,245,0.302,33.97,74.96,0.9,0.65,791,0.5,206,2.1
+5076,2023,4,16,18,0,7.5,1.28,0.054,0.64,42,594,139,0,0,-1.5,42,594,0,139,0.303,52.99,80.61,0.9,0.65,791,0.5,201,1.3
+5077,2023,4,16,18,30,6,1.28,0.054,0.64,26,348,49,0,0,-1.5,26,348,0,49,0.304,58.73,86.17,0.9,0.65,791,0.5,198,1.4
+5078,2023,4,16,19,0,4.5,1.29,0.055,0.64,3,24,2,0,0,-3.1,3,24,0,2,0.306,58,91.88,0.9,0.65,791,0.5,195,1.5
+5079,2023,4,16,19,30,3.9,1.29,0.055,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.308,60.49,97.3,0.9,0.65,791,0.5,195,1.5
+5080,2023,4,16,20,0,3.4,1.29,0.055,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.31,60.58,102.54,0.9,0.65,791,0.5,196,1.5
+5081,2023,4,16,20,30,2.9,1.29,0.055,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.313,62.76,107.55,0.9,0.65,791,0.5,198,1.6
+5082,2023,4,16,21,0,2.5,1.26,0.053,0.64,0,0,0,0,0,-3.9,0,0,0,0,0.316,62.79,112.25,0.9,0.65,790,0.5,200,1.6
+5083,2023,4,16,21,30,2,1.26,0.053,0.64,0,0,0,0,0,-3.9,0,0,0,0,0.318,65.06,116.58,0.89,0.65,790,0.5,201,1.6
+5084,2023,4,16,22,0,1.6,1.22,0.051,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.321,65.06,120.43,0.89,0.65,790,0.5,203,1.6
+5085,2023,4,16,22,30,1.3,1.22,0.051,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.322,66.47,123.7,0.89,0.65,790,0.5,202,1.6
+5086,2023,4,16,23,0,0.9,1.18,0.052,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.323,66.18,126.28,0.89,0.65,790,0.5,201,1.6
+5087,2023,4,16,23,30,0.7,1.18,0.052,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.323,67.06,128.06,0.89,0.65,789,0.5,199,1.6
+5088,2023,4,17,0,0,0.4,1.17,0.054,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.323,66.32,128.95,0.9,0.65,789,0.6,197,1.6
+5089,2023,4,17,0,30,0.2,1.17,0.054,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.322,67.29,128.91,0.89,0.65,789,0.6,194,1.6
+5090,2023,4,17,1,0,0,1.2,0.053,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.321,66.34,127.93,0.89,0.65,789,0.6,191,1.5
+5091,2023,4,17,1,30,-0.3,1.2,0.053,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.321,67.71,126.08,0.89,0.65,788,0.6,187,1.6
+5092,2023,4,17,2,0,-0.5,1.25,0.05,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.321,67.23,123.43,0.89,0.65,788,0.6,183,1.6
+5093,2023,4,17,2,30,-0.8,1.25,0.05,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.321,68.72,120.1,0.89,0.65,788,0.5,179,1.6
+5094,2023,4,17,3,0,-1.1,1.31,0.046,0.64,0,0,0,0,0,-6,0,0,0,0,0.32,69.21,116.2,0.89,0.65,788,0.5,176,1.7
+5095,2023,4,17,3,30,-1.3,1.31,0.046,0.64,0,0,0,0,0,-6,0,0,0,0,0.32,70.23,111.83,0.89,0.65,788,0.5,174,1.7
+5096,2023,4,17,4,0,-1.6,1.32,0.045,0.64,0,0,0,0,0,-6.1,0,0,0,0,0.32,71.47,107.09,0.89,0.65,788,0.5,173,1.7
+5097,2023,4,17,4,30,-1.7,1.32,0.045,0.64,0,0,0,0,0,-6.1,0,0,0,0,0.32,71.91,102.06,0.89,0.65,787,0.5,173,1.7
+5098,2023,4,17,5,0,-1.8,1.3,0.045,0.64,0,0,0,0,0,-6,0,0,0,0,0.319,72.88,96.8,0.89,0.65,787,0.5,172,1.7
+5099,2023,4,17,5,30,-0.4,1.3,0.045,0.64,4,33,3,0,0,-6,4,33,0,3,0.318,65.78,91.36,0.89,0.65,787,0.5,172,1.9
+5100,2023,4,17,6,0,1.1,1.25,0.047,0.64,27,397,57,0,0,-4.6,27,397,0,57,0.317,65.75,85.64,0.89,0.65,787,0.5,172,2.1
+5101,2023,4,17,6,30,2.8,1.25,0.047,0.64,42,625,150,0,0,-4.6,42,625,0,150,0.316,58.25,80.07,0.89,0.65,787,0.5,174,2.5
+5102,2023,4,17,7,0,4.6,1.21,0.049,0.64,56,753,258,0,0,-4.4,56,753,0,258,0.315,52.19,74.4,0.89,0.65,787,0.5,175,2.9
+5103,2023,4,17,7,30,6.9,1.21,0.049,0.64,66,834,369,0,0,-4.4,66,834,0,369,0.315,44.52,68.71,0.9,0.65,787,0.5,185,3.3
+5104,2023,4,17,8,0,9.1,1.17,0.055,0.64,76,887,478,0,0,-4.8,76,887,0,478,0.314,37.01,63.06,0.9,0.65,787,0.5,195,3.7
+5105,2023,4,17,8,30,10.9,1.17,0.055,0.64,85,924,582,0,0,-4.8,85,924,0,582,0.315,32.82,57.49,0.91,0.65,787,0.5,202,4.1
+5106,2023,4,17,9,0,12.7,1.14,0.062,0.64,94,949,677,0,7,-5.9,166,789,0,651,0.315,26.89,52.07,0.91,0.65,786,0.5,208,4.6
+5107,2023,4,17,9,30,13.7,1.14,0.062,0.64,101,969,763,0,7,-5.9,240,694,7,714,0.316,25.19,46.88,0.91,0.65,786,0.6,208,4.7
+5108,2023,4,17,10,0,14.7,1.12,0.067,0.64,108,983,838,0,7,-5.8,278,677,7,781,0.318,23.72,42.05,0.92,0.65,786,0.6,209,4.8
+5109,2023,4,17,10,30,15.4,1.12,0.067,0.64,113,993,898,0,7,-5.8,396,483,7,778,0.319,22.68,37.72,0.92,0.65,786,0.6,208,4.9
+5110,2023,4,17,11,0,16.1,1.09,0.07,0.64,117,1000,945,0,7,-5.7,377,575,11,853,0.321,21.85,34.11,0.92,0.65,785,0.6,207,5.1
+5111,2023,4,17,11,30,16.5,1.09,0.07,0.64,116,1010,977,0,0,-5.7,182,909,11,957,0.322,21.3,31.48,0.92,0.65,785,0.6,208,5.3
+5112,2023,4,17,12,0,17,1.11,0.062,0.64,114,1017,994,0,7,-5.7,187,913,11,977,0.323,20.74,30.1,0.92,0.65,785,0.6,208,5.4
+5113,2023,4,17,12,30,17.3,1.11,0.062,0.64,111,1020,993,0,7,-5.7,147,963,21,980,0.324,20.32,30.16,0.91,0.65,784,0.6,209,5.6
+5114,2023,4,17,13,0,17.6,1.15,0.054,0.64,107,1021,976,0,7,-5.7,351,637,14,893,0.324,19.87,31.63,0.91,0.65,784,0.6,209,5.8
+5115,2023,4,17,13,30,17.7,1.15,0.054,0.64,104,1016,943,0,0,-5.8,142,948,7,925,0.326,19.72,34.34,0.91,0.65,783,0.6,211,5.9
+5116,2023,4,17,14,0,17.9,1.16,0.052,0.64,101,1008,895,0,7,-5.9,257,751,21,849,0.327,19.31,38.01,0.91,0.65,783,0.6,212,6
+5117,2023,4,17,14,30,17.7,1.16,0.052,0.64,98,994,832,0,7,-5.9,255,711,32,780,0.328,19.56,42.38,0.91,0.65,783,0.6,212,6
+5118,2023,4,17,15,0,17.6,1.14,0.055,0.64,95,974,756,0,7,-5.9,212,749,14,720,0.329,19.56,47.25,0.91,0.65,782,0.6,213,6
+5119,2023,4,17,15,30,17.2,1.14,0.055,0.64,91,947,668,0,7,-5.9,150,810,29,644,0.329,20.06,52.45,0.92,0.65,782,0.6,212,5.9
+5120,2023,4,17,16,0,16.7,1.12,0.061,0.64,85,911,570,0,0,-5.8,101,876,32,567,0.329,20.85,57.87,0.92,0.65,782,0.6,211,5.8
+5121,2023,4,17,16,30,15.9,1.12,0.061,0.64,78,865,465,0,0,-5.9,78,865,7,465,0.328,21.91,63.45,0.92,0.65,781,0.6,209,5.4
+5122,2023,4,17,17,0,15.2,1.07,0.064,0.64,70,799,355,0,0,-5.2,70,799,0,355,0.328,24.05,69.1,0.92,0.65,781,0.6,207,5
+5123,2023,4,17,17,30,12.9,1.07,0.064,0.64,61,698,244,1,0,-5.2,77,618,36,239,0.327,27.9,74.78,0.92,0.65,781,0.6,204,3.9
+5124,2023,4,17,18,0,10.7,1.06,0.074,0.64,48,541,138,4,7,-2.9,83,279,75,129,0.326,38.39,80.43,0.93,0.65,781,0.7,201,2.8
+5125,2023,4,17,18,30,9.1,1.06,0.074,0.64,29,284,49,7,7,-2.9,39,22,100,41,0.325,42.72,85.99,0.93,0.65,781,0.7,198,2.8
+5126,2023,4,17,19,0,7.6,1.07,0.086,0.64,2,15,2,2,7,-2.8,1,0,29,1,0.324,47.8,91.68,0.93,0.65,781,0.7,196,2.7
+5127,2023,4,17,19,30,7.3,1.07,0.086,0.64,0,0,0,0,7,-2.8,0,0,0,0,0.322,48.79,97.1,0.94,0.65,781,0.7,195,3
+5128,2023,4,17,20,0,7.1,1.1,0.099,0.64,0,0,0,0,7,-2.9,0,0,0,0,0.32,49.18,102.33,0.94,0.65,781,0.8,195,3.2
+5129,2023,4,17,20,30,7,1.1,0.099,0.64,0,0,0,0,7,-2.9,0,0,0,0,0.319,49.52,107.32,0.94,0.65,781,0.8,195,3.4
+5130,2023,4,17,21,0,7,1.13,0.113,0.64,0,0,0,0,0,-2.8,0,0,0,0,0.317,49.69,112.01,0.95,0.65,781,0.8,196,3.7
+5131,2023,4,17,21,30,7,1.13,0.113,0.64,0,0,0,0,0,-2.8,0,0,0,0,0.316,49.63,116.32,0.95,0.65,780,0.9,198,3.9
+5132,2023,4,17,22,0,6.9,1.14,0.12,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.315,50.67,120.15,0.95,0.65,780,0.9,200,4.1
+5133,2023,4,17,22,30,6.7,1.14,0.12,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.315,51.37,123.4,0.95,0.65,780,0.9,204,4
+5134,2023,4,17,23,0,6.4,1.16,0.114,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.315,54.08,125.96,0.95,0.65,779,0.9,207,3.9
+5135,2023,4,17,23,30,6,1.16,0.114,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.314,55.59,127.72,0.95,0.65,779,0.9,212,3.7
+5136,2023,4,18,0,0,5.5,1.17,0.104,0.64,0,0,0,0,7,-1.7,0,0,0,0,0.314,59.8,128.6,0.95,0.65,779,0.9,217,3.4
+5137,2023,4,18,0,30,5.2,1.17,0.104,0.64,0,0,0,0,7,-1.7,0,0,0,0,0.314,61.06,128.55,0.95,0.65,779,0.9,220,3.2
+5138,2023,4,18,1,0,4.8,1.14,0.102,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.314,64.57,127.58,0.94,0.65,779,0.8,223,3
+5139,2023,4,18,1,30,4.7,1.14,0.102,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.314,65.02,125.72,0.94,0.65,779,0.8,223,2.9
+5140,2023,4,18,2,0,4.5,1.07,0.111,0.64,0,0,0,0,7,-1.2,0,0,0,0,0.315,66.29,123.08,0.94,0.65,779,0.8,223,2.7
+5141,2023,4,18,2,30,4.3,1.07,0.111,0.64,0,0,0,0,6,-1.2,0,0,0,0,0.316,67.23,119.77,0.94,0.65,779,0.8,223,2.6
+5142,2023,4,18,3,0,4.2,1.03,0.125,0.64,0,0,0,0,6,-1.2,0,0,0,0,0.317,67.78,115.88,0.94,0.65,779,0.8,223,2.4
+5143,2023,4,18,3,30,4.1,1.03,0.125,0.64,0,0,0,0,6,-1.2,0,0,0,0,0.32,68.26,111.52,0.94,0.65,779,0.8,223,2.3
+5144,2023,4,18,4,0,3.9,1.03,0.137,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.322,69.65,106.79,0.94,0.65,779,0.8,224,2.2
+5145,2023,4,18,4,30,3.9,1.03,0.137,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.324,69.65,101.77,0.94,0.65,779,0.8,230,2.2
+5146,2023,4,18,5,0,3.9,1.04,0.146,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.327,69.97,96.51,0.95,0.65,779,0.8,235,2.2
+5147,2023,4,18,5,30,4.3,1.04,0.146,0.64,4,15,4,3,6,-1.1,2,0,43,2,0.33,68.04,91.08,0.95,0.65,779,0.8,234,2.2
+5148,2023,4,18,6,0,4.6,1.05,0.154,0.64,36,197,52,7,6,-0.7,20,0,100,20,0.333,68.64,85.38,0.95,0.65,779,0.9,233,2.1
+5149,2023,4,18,6,30,5.6,1.05,0.154,0.64,64,423,139,1,6,-0.7,40,0,14,40,0.337,64.03,79.8,0.95,0.65,779,0.8,223,2.3
+5150,2023,4,18,7,0,6.5,1.03,0.143,0.64,84,581,243,0,6,-0.3,71,1,0,71,0.341,62.01,74.14,0.94,0.65,779,0.8,212,2.5
+5151,2023,4,18,7,30,8.2,1.03,0.143,0.64,97,693,352,0,6,-0.3,80,1,0,80,0.344,55.15,68.45,0.94,0.65,778,0.8,208,4.2
+5152,2023,4,18,8,0,10,0.96,0.122,0.64,106,778,462,0,6,-2.6,153,8,0,157,0.347,41.24,62.79,0.94,0.65,778,0.8,205,5.8
+5153,2023,4,18,8,30,11.3,0.96,0.122,0.64,114,839,568,0,7,-2.6,278,83,4,323,0.349,37.83,57.21,0.93,0.65,778,0.7,205,7.2
+5154,2023,4,18,9,0,12.6,0.89,0.105,0.64,118,887,667,1,7,-4.9,324,182,21,437,0.35,29.29,51.79,0.93,0.65,778,0.7,205,8.7
+5155,2023,4,18,9,30,13.2,0.89,0.105,0.64,123,919,755,0,7,-4.9,363,42,14,392,0.351,28.13,46.59,0.93,0.65,777,0.7,206,9.4
+5156,2023,4,18,10,0,13.8,0.89,0.096,0.64,127,945,832,1,7,-5.4,232,720,32,769,0.351,25.91,41.74,0.93,0.65,777,0.7,206,10.1
+5157,2023,4,18,10,30,14.2,0.89,0.096,0.64,126,969,896,0,7,-5.4,287,604,7,767,0.352,25.25,37.39,0.93,0.65,777,0.7,208,10.3
+5158,2023,4,18,11,0,14.7,0.91,0.078,0.64,123,989,945,0,7,-5.6,441,394,0,769,0.353,24.12,33.77,0.93,0.65,777,0.7,209,10.6
+5159,2023,4,18,11,30,15,0.91,0.078,0.64,128,989,975,0,7,-5.6,500,378,0,824,0.353,23.63,31.13,0.93,0.65,776,0.7,213,10.7
+5160,2023,4,18,12,0,15.3,0.92,0.094,0.64,136,982,989,0,6,-5.5,427,147,0,555,0.352,23.35,29.75,0.94,0.65,776,0.7,216,10.8
+5161,2023,4,18,12,30,15.3,0.92,0.094,0.64,144,972,987,0,6,-5.5,435,57,0,484,0.351,23.35,29.81,0.94,0.65,776,0.7,220,10.9
+5162,2023,4,18,13,0,15.3,0.96,0.121,0.64,151,956,968,0,6,-5.7,478,104,0,567,0.35,23.07,31.31,0.94,0.65,776,0.7,225,11
+5163,2023,4,18,13,30,15,0.96,0.121,0.64,150,947,935,0,6,-5.7,467,46,0,505,0.35,23.52,34.05,0.95,0.65,776,0.7,231,10.8
+5164,2023,4,18,14,0,14.7,0.98,0.126,0.64,148,933,886,0,6,-6.4,431,64,0,482,0.35,22.81,37.75,0.95,0.65,776,0.7,237,10.6
+5165,2023,4,18,14,30,14,0.98,0.126,0.64,143,916,822,0,6,-6.4,394,78,0,452,0.35,23.86,42.15,0.95,0.65,776,0.7,244,10.1
+5166,2023,4,18,15,0,13.3,0.99,0.126,0.64,137,894,746,0,6,-7.1,368,50,0,402,0.35,23.65,47.03,0.95,0.65,776,0.7,252,9.5
+5167,2023,4,18,15,30,12.4,0.99,0.126,0.64,126,869,658,0,7,-7.1,331,122,0,406,0.351,25.08,52.25,0.94,0.65,776,0.7,261,8.8
+5168,2023,4,18,16,0,11.5,0.99,0.117,0.64,114,836,561,0,7,-7.2,191,563,25,492,0.352,26.39,57.68,0.94,0.65,777,0.7,270,8.2
+5169,2023,4,18,16,30,10.3,0.99,0.117,0.64,102,787,456,0,7,-7.2,237,82,0,274,0.352,28.58,63.26,0.94,0.65,777,0.7,279,7.6
+5170,2023,4,18,17,0,9.2,1,0.112,0.64,89,721,348,0,7,-6.6,167,190,7,235,0.352,32.2,68.92,0.94,0.65,778,0.7,288,7.1
+5171,2023,4,18,17,30,7.9,1,0.112,0.64,74,623,239,0,7,-6.6,90,236,4,153,0.352,35.2,74.6,0.94,0.65,779,0.7,293,6.6
+5172,2023,4,18,18,0,6.6,1,0.108,0.64,55,474,135,2,7,-6.3,50,84,29,64,0.352,39.13,80.25,0.94,0.65,779,0.7,297,6.1
+5173,2023,4,18,18,30,5.4,1,0.108,0.64,32,239,49,7,7,-6.3,24,0,100,24,0.352,42.56,85.81,0.94,0.65,780,0.7,301,5.7
+5174,2023,4,18,19,0,4.3,1,0.101,0.64,2,13,2,2,7,-6.8,1,0,29,1,0.352,44.28,91.49,0.94,0.65,781,0.7,305,5.3
+5175,2023,4,18,19,30,3.3,1,0.101,0.64,0,0,0,0,7,-6.8,0,0,0,0,0.352,47.5,96.89,0.94,0.65,781,0.6,309,5.2
+5176,2023,4,18,20,0,2.4,1.03,0.102,0.64,0,0,0,0,7,-7.6,0,0,0,0,0.353,47.53,102.11,0.95,0.65,782,0.6,313,5.1
+5177,2023,4,18,20,30,1.5,1.03,0.102,0.64,0,0,0,0,7,-7.6,0,0,0,0,0.354,50.67,107.09,0.95,0.65,782,0.6,315,5.1
+5178,2023,4,18,21,0,0.6,1.06,0.112,0.64,0,0,0,0,4,-8.4,0,0,0,0,0.355,51.1,111.77,0.95,0.65,783,0.6,318,5
+5179,2023,4,18,21,30,-0.1,1.06,0.112,0.64,0,0,0,0,8,-8.4,0,0,0,0,0.356,53.76,116.06,0.96,0.65,783,0.6,321,4.8
+5180,2023,4,18,22,0,-0.8,1.07,0.13,0.64,0,0,0,0,8,-8.6,0,0,0,0,0.357,55.56,119.87,0.96,0.65,783,0.6,323,4.6
+5181,2023,4,18,22,30,-1.3,1.07,0.13,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.359,57.7,123.1,0.96,0.65,784,0.6,327,4.3
+5182,2023,4,18,23,0,-1.9,1.08,0.152,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.36,60.72,125.64,0.96,0.65,784,0.6,332,4
+5183,2023,4,18,23,30,-2.3,1.08,0.152,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.361,62.54,127.39,0.96,0.65,784,0.6,335,3.8
+5184,2023,4,19,0,0,-2.8,1.06,0.164,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.362,64.09,128.26,0.96,0.65,784,0.6,338,3.5
+5185,2023,4,19,0,30,-3.2,1.06,0.164,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.363,66.03,128.2,0.96,0.65,784,0.6,337,3.3
+5186,2023,4,19,1,0,-3.6,1.04,0.17,0.64,0,0,0,0,7,-8.8,0,0,0,0,0.365,67.13,127.23,0.96,0.65,785,0.6,337,3.2
+5187,2023,4,19,1,30,-3.8,1.04,0.17,0.64,0,0,0,0,7,-8.8,0,0,0,0,0.366,68.14,125.38,0.96,0.65,785,0.6,336,3
+5188,2023,4,19,2,0,-4.1,1.03,0.177,0.64,0,0,0,0,7,-9.2,0,0,0,0,0.367,67.87,122.74,0.96,0.65,785,0.6,336,2.9
+5189,2023,4,19,2,30,-4.3,1.03,0.177,0.64,0,0,0,0,7,-9.2,0,0,0,0,0.368,68.9,119.44,0.96,0.65,785,0.6,334,2.8
+5190,2023,4,19,3,0,-4.5,1.02,0.181,0.64,0,0,0,0,7,-9.6,0,0,0,0,0.37,67.73,115.56,0.96,0.65,785,0.5,332,2.6
+5191,2023,4,19,3,30,-4.7,1.02,0.181,0.64,0,0,0,0,7,-9.6,0,0,0,0,0.371,68.76,111.22,0.96,0.65,785,0.5,329,2.5
+5192,2023,4,19,4,0,-4.8,1.02,0.178,0.64,0,0,0,0,7,-9.9,0,0,0,0,0.372,67.42,106.5,0.96,0.65,785,0.5,327,2.4
+5193,2023,4,19,4,30,-4.9,1.02,0.178,0.64,0,0,0,0,7,-9.9,0,0,0,0,0.374,67.93,101.48,0.96,0.65,785,0.5,327,2.2
+5194,2023,4,19,5,0,-5,1.03,0.177,0.64,0,0,0,0,7,-10.2,0,0,0,0,0.376,67.03,96.24,0.96,0.65,785,0.5,326,2.1
+5195,2023,4,19,5,30,-4.9,1.03,0.177,0.64,5,16,5,3,7,-10.2,2,0,43,2,0.379,66.53,90.31,0.96,0.65,785,0.5,327,2.2
+5196,2023,4,19,6,0,-4.8,1.04,0.172,0.64,39,200,56,7,7,-10.6,19,0,100,19,0.381,63.88,85.12,0.96,0.65,785,0.5,328,2.2
+5197,2023,4,19,6,30,-4.5,1.04,0.172,0.64,70,418,146,1,7,-10.6,21,0,14,21,0.383,62.46,79.54,0.96,0.65,785,0.5,328,2.3
+5198,2023,4,19,7,0,-4.2,1.05,0.168,0.64,92,571,251,0,7,-11.3,35,0,0,35,0.384,57.84,73.87,0.96,0.65,785,0.5,327,2.4
+5199,2023,4,19,7,30,-3.7,1.05,0.168,0.64,110,679,362,0,7,-11.3,63,0,0,63,0.386,55.72,68.18,0.96,0.65,785,0.5,328,2.5
+5200,2023,4,19,8,0,-3.3,1.06,0.161,0.64,124,759,474,0,7,-11.9,93,0,0,93,0.387,51.25,62.52,0.96,0.65,785,0.5,328,2.6
+5201,2023,4,19,8,30,-2.8,1.06,0.161,0.64,136,818,582,0,7,-11.9,157,1,0,158,0.388,49.38,56.94,0.96,0.65,785,0.4,326,2.6
+5202,2023,4,19,9,0,-2.4,1.08,0.154,0.64,144,862,680,0,7,-12.7,206,2,0,207,0.39,45.2,51.51,0.96,0.65,785,0.4,324,2.6
+5203,2023,4,19,9,30,-1.7,1.08,0.154,0.64,149,897,769,0,7,-12.7,340,8,0,346,0.391,42.93,46.3,0.96,0.65,785,0.4,320,2.6
+5204,2023,4,19,10,0,-1,1.1,0.139,0.64,151,927,846,0,7,-13.2,394,10,0,401,0.393,38.95,41.44,0.95,0.65,785,0.4,315,2.5
+5205,2023,4,19,10,30,-0.1,1.1,0.139,0.64,151,951,910,0,7,-13.2,412,11,0,421,0.395,36.48,37.07,0.95,0.65,785,0.4,311,2.4
+5206,2023,4,19,11,0,0.8,1.13,0.115,0.64,147,974,960,0,7,-13.7,564,54,0,609,0.397,32.88,33.43,0.95,0.65,785,0.4,306,2.4
+5207,2023,4,19,11,30,1.7,1.13,0.115,0.64,145,993,998,0,7,-13.7,617,74,0,681,0.398,30.83,30.78,0.94,0.65,785,0.3,301,2.4
+5208,2023,4,19,12,0,2.6,1.15,0.098,0.64,139,1008,1017,0,7,-14.2,612,74,0,676,0.399,27.72,29.4,0.94,0.65,785,0.3,296,2.4
+5209,2023,4,19,12,30,3.2,1.15,0.098,0.64,136,1011,1016,0,7,-14.2,637,169,0,784,0.399,26.57,29.48,0.93,0.65,785,0.3,293,2.5
+5210,2023,4,19,13,0,3.9,1.15,0.089,0.64,132,1012,999,0,8,-14.7,548,255,0,767,0.399,24.39,31,0.93,0.65,785,0.3,290,2.5
+5211,2023,4,19,13,30,4.2,1.15,0.089,0.64,129,1006,965,0,8,-14.7,536,145,0,657,0.398,23.89,33.76,0.93,0.65,785,0.3,289,2.7
+5212,2023,4,19,14,0,4.5,1.15,0.088,0.64,125,997,916,0,5,-15.2,523,48,0,561,0.397,22.44,37.49,0.93,0.65,785,0.3,289,2.9
+5213,2023,4,19,14,30,4.4,1.15,0.088,0.64,121,982,852,0,5,-15.2,516,207,0,670,0.397,22.6,41.91,0.93,0.65,785,0.3,292,3.2
+5214,2023,4,19,15,0,4.3,1.15,0.09,0.64,116,962,774,0,5,-15.6,439,254,0,613,0.396,22.02,46.82,0.94,0.65,785,0.3,295,3.4
+5215,2023,4,19,15,30,3.9,1.15,0.09,0.64,111,932,684,0,8,-15.6,380,248,0,533,0.396,22.65,52.05,0.94,0.65,785,0.3,300,3.6
+5216,2023,4,19,16,0,3.5,1.16,0.098,0.64,105,892,584,0,5,-15.6,354,182,0,452,0.396,23.23,57.5,0.94,0.65,786,0.3,306,3.9
+5217,2023,4,19,16,30,2.9,1.16,0.098,0.64,98,838,477,0,8,-15.6,265,247,0,377,0.396,24.23,63.08,0.94,0.65,786,0.3,312,4.1
+5218,2023,4,19,17,0,2.2,1.17,0.11,0.64,87,762,363,0,8,-15.4,223,177,0,287,0.396,25.87,68.74,0.95,0.26,786,0.3,318,4.2
+5219,2023,4,19,17,30,1.3,1.17,0.11,0.64,74,655,250,0,8,-15.4,165,157,0,207,0.396,27.62,74.42,0.95,0.26,787,0.3,323,4
+5220,2023,4,19,18,0,0.4,1.17,0.125,0.64,58,493,143,2,4,-13.9,92,176,36,122,0.397,33.29,80.07,0.95,0.26,787,0.3,329,3.8
+5221,2023,4,19,18,30,-0.5,1.17,0.125,0.64,34,253,53,7,8,-13.9,35,3,100,35,0.398,35.58,85.62,0.95,0.26,788,0.3,334,3.4
+5222,2023,4,19,19,0,-1.3,1.17,0.131,0.64,3,14,3,3,4,-12.7,2,0,43,2,0.399,41.61,91.3,0.95,0.26,789,0.3,338,3.1
+5223,2023,4,19,19,30,-2,1.17,0.131,0.64,0,0,0,0,8,-12.7,0,0,0,0,0.399,43.8,96.69,0.95,0.26,789,0.3,341,2.6
+5224,2023,4,19,20,0,-2.6,1.17,0.128,0.64,0,0,0,0,8,-12.2,0,0,0,0,0.4,47.56,101.9,0.95,0.26,789,0.3,343,2.1
+5225,2023,4,19,20,30,-3,1.17,0.128,0.64,0,0,0,0,8,-12.2,0,0,0,0,0.4,49.05,106.87,0.95,0.26,790,0.3,340,1.7
+5226,2023,4,19,21,0,-3.5,1.17,0.124,0.64,0,0,0,0,8,-11.1,0,0,0,0,0.4,55.46,111.53,0.95,0.26,790,0.3,338,1.3
+5227,2023,4,19,21,30,-3.9,1.17,0.124,0.64,0,0,0,0,7,-11.1,0,0,0,0,0.399,57.14,115.8,0.95,0.26,790,0.3,329,1.2
+5228,2023,4,19,22,0,-4.3,1.17,0.114,0.64,0,0,0,0,7,-10.7,0,0,0,0,0.399,60.9,119.59,0.95,0.26,790,0.3,321,1
+5229,2023,4,19,22,30,-4.6,1.17,0.114,0.64,0,0,0,0,8,-10.7,0,0,0,0,0.399,62.29,122.81,0.94,0.26,790,0.3,312,1
+5230,2023,4,19,23,0,-5,1.16,0.104,0.64,0,0,0,0,8,-10.8,0,0,0,0,0.398,63.7,125.33,0.94,0.26,790,0.3,302,1
+5231,2023,4,19,23,30,-5.5,1.16,0.104,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.398,66.16,127.06,0.94,0.26,790,0.3,296,1
+5232,2023,4,20,0,0,-5.9,1.14,0.087,0.64,0,0,0,0,0,-11.4,0,0,0,0,0.397,65.17,127.92,0.93,0.26,790,0.3,289,1.1
+5233,2023,4,20,0,30,-6.3,1.14,0.087,0.64,0,0,0,0,0,-11.4,0,0,0,0,0.397,67.19,127.86,0.93,0.26,790,0.3,287,1.1
+5234,2023,4,20,1,0,-6.6,1.09,0.074,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.397,66.11,126.88,0.92,0.26,790,0.3,284,1.2
+5235,2023,4,20,1,30,-6.8,1.09,0.074,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,67.14,125.03,0.92,0.26,790,0.3,283,1.2
+5236,2023,4,20,2,0,-7,1.05,0.067,0.64,0,0,0,0,0,-12.1,0,0,0,0,0.396,66.84,122.41,0.92,0.26,790,0.3,282,1.2
+5237,2023,4,20,2,30,-7.1,1.05,0.067,0.64,0,0,0,0,0,-12.1,0,0,0,0,0.396,67.36,119.11,0.92,0.26,790,0.3,282,1.2
+5238,2023,4,20,3,0,-7.1,1.02,0.066,0.64,0,0,0,0,0,-12,0,0,0,0,0.396,67.78,115.24,0.92,0.26,790,0.3,281,1.2
+5239,2023,4,20,3,30,-7.1,1.02,0.066,0.64,0,0,0,0,0,-12,0,0,0,0,0.396,67.86,110.91,0.92,0.26,791,0.3,279,1.1
+5240,2023,4,20,4,0,-7.1,1.01,0.07,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,68.87,106.21,0.93,0.26,791,0.3,278,1.1
+5241,2023,4,20,4,30,-7,1.01,0.07,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,68.34,101.2,0.93,0.26,791,0.3,277,1.1
+5242,2023,4,20,5,0,-7,0.99,0.076,0.64,0,0,0,0,0,-11.6,0,0,0,0,0.395,69.59,95.96,0.93,0.26,791,0.3,275,1
+5243,2023,4,20,5,30,-5.6,0.99,0.076,0.64,6,47,6,0,0,-11.6,6,47,0,6,0.395,62.53,90.07,0.93,0.26,791,0.3,276,1.5
+5244,2023,4,20,6,0,-4.3,0.97,0.083,0.64,34,355,66,0,0,-12.2,34,355,0,66,0.395,54.19,84.86,0.93,0.26,791,0.3,277,1.9
+5245,2023,4,20,6,30,-2.7,0.97,0.083,0.64,53,573,160,0,0,-12.2,53,573,0,160,0.395,48.09,79.28,0.93,0.26,791,0.3,284,2.4
+5246,2023,4,20,7,0,-1.2,0.95,0.093,0.64,71,699,268,0,0,-13.9,71,699,0,268,0.396,37.62,73.62,0.94,0.26,792,0.3,291,2.9
+5247,2023,4,20,7,30,-0.3,0.95,0.093,0.64,84,782,378,0,0,-13.8,84,782,0,378,0.397,35.23,67.93,0.94,0.26,792,0.3,284,3
+5248,2023,4,20,8,0,0.5,0.96,0.106,0.64,98,835,487,0,0,-14.3,98,835,0,487,0.398,32.02,62.26,0.94,0.26,792,0.3,278,3.1
+5249,2023,4,20,8,30,1,0.96,0.106,0.64,110,878,592,0,0,-14.3,224,501,0,499,0.4,30.89,56.68,0.95,0.26,792,0.3,270,3.3
+5250,2023,4,20,9,0,1.5,0.99,0.117,0.64,120,906,687,0,8,-13.7,352,293,0,535,0.402,31.44,51.23,0.95,0.26,792,0.3,262,3.6
+5251,2023,4,20,9,30,1.6,0.99,0.117,0.64,128,928,772,0,8,-13.7,352,87,0,412,0.404,31.21,46.02,0.95,0.26,792,0.4,259,3.8
+5252,2023,4,20,10,0,1.7,1.02,0.119,0.64,133,944,844,0,8,-12.7,318,173,0,448,0.406,33.38,41.14,0.95,0.26,792,0.4,255,4.1
+5253,2023,4,20,10,30,1.8,1.02,0.119,0.64,137,957,904,0,8,-12.8,397,285,0,625,0.407,33.1,36.76,0.95,0.26,791,0.4,254,4.2
+5254,2023,4,20,11,0,1.9,1.05,0.122,0.64,142,967,952,0,7,-11.8,428,274,0,658,0.409,35.35,33.1,0.95,0.26,791,0.4,254,4.2
+5255,2023,4,20,11,30,1.8,1.05,0.122,0.64,146,971,983,0,7,-11.8,505,219,0,694,0.411,35.61,30.43,0.95,0.26,791,0.4,257,4.2
+5256,2023,4,20,12,0,1.8,1.05,0.128,0.64,149,971,998,0,7,-11.1,542,189,0,707,0.412,37.91,29.05,0.95,0.26,791,0.4,260,4.1
+5257,2023,4,20,12,30,1.8,1.05,0.128,0.64,151,968,996,0,8,-11.1,478,422,0,847,0.414,37.91,29.14,0.95,0.26,791,0.4,268,3.9
+5258,2023,4,20,13,0,1.7,1.02,0.136,0.64,152,961,978,0,7,-10.3,541,225,0,735,0.415,40.66,30.68,0.95,0.26,791,0.4,276,3.8
+5259,2023,4,20,13,30,1.5,1.02,0.136,0.64,150,948,941,0,7,-10.3,416,460,14,800,0.417,41.3,33.48,0.95,0.26,792,0.5,289,3.7
+5260,2023,4,20,14,0,1.4,0.95,0.142,0.64,150,931,891,0,7,-9.7,393,446,7,748,0.418,43.54,37.24,0.95,0.26,792,0.5,303,3.6
+5261,2023,4,20,14,30,1.2,0.95,0.142,0.64,144,916,828,0,7,-9.7,452,294,0,672,0.42,44.17,41.68,0.95,0.26,792,0.5,316,3.8
+5262,2023,4,20,15,0,1.1,0.87,0.137,0.64,137,895,752,0,7,-9.8,440,180,0,564,0.422,44.05,46.6,0.95,0.26,792,0.5,328,4
+5263,2023,4,20,15,30,1,0.87,0.137,0.64,126,875,667,0,7,-9.8,384,244,0,535,0.424,44.37,51.85,0.95,0.26,792,0.4,334,4.2
+5264,2023,4,20,16,0,0.9,0.81,0.122,0.64,114,845,570,0,7,-10.8,265,449,14,508,0.425,41.2,57.31,0.94,0.26,793,0.4,339,4.4
+5265,2023,4,20,16,30,0.7,0.81,0.122,0.64,99,805,466,0,7,-10.8,198,518,32,434,0.425,41.8,62.9,0.94,0.26,793,0.4,340,4.2
+5266,2023,4,20,17,0,0.6,0.78,0.1,0.64,84,753,359,0,0,-12.2,125,602,0,345,0.425,37.66,68.56,0.93,0.26,793,0.4,341,4.1
+5267,2023,4,20,17,30,-0.6,0.78,0.1,0.64,68,682,253,0,0,-12.2,68,682,0,253,0.423,41.09,74.24,0.93,0.26,793,0.3,340,2.9
+5268,2023,4,20,18,0,-1.8,0.78,0.077,0.64,50,561,148,0,0,-10.9,50,561,0,148,0.422,49.76,79.89,0.92,0.26,793,0.3,338,1.8
+5269,2023,4,20,18,30,-3.1,0.78,0.077,0.64,31,329,57,0,0,-10.9,31,329,0,57,0.42,54.78,85.44,0.92,0.26,793,0.3,332,1.5
+5270,2023,4,20,19,0,-4.3,0.81,0.067,0.64,6,40,5,0,0,-11.5,6,40,0,5,0.419,57.05,91.11,0.92,0.26,794,0.3,326,1.2
+5271,2023,4,20,19,30,-4.7,0.81,0.067,0.64,0,0,0,0,0,-11.5,0,0,0,0,0.416,58.8,96.49,0.92,0.26,794,0.3,321,1.2
+5272,2023,4,20,20,0,-5,0.84,0.064,0.64,0,0,0,0,0,-12.2,0,0,0,0,0.413,56.99,101.69,0.92,0.26,794,0.3,315,1.2
+5273,2023,4,20,20,30,-5.1,0.84,0.064,0.64,0,0,0,0,0,-12.2,0,0,0,0,0.411,57.5,106.64,0.92,0.26,795,0.3,313,1.2
+5274,2023,4,20,21,0,-5.3,0.87,0.063,0.64,0,0,0,0,0,-12.3,0,0,0,0,0.409,58.11,111.28,0.92,0.26,795,0.3,312,1.2
+5275,2023,4,20,21,30,-5.5,0.87,0.063,0.64,0,0,0,0,0,-12.3,0,0,0,0,0.408,59,115.54,0.92,0.26,795,0.3,309,1.2
+5276,2023,4,20,22,0,-5.6,0.91,0.063,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.407,60.93,119.32,0.92,0.26,795,0.3,306,1.2
+5277,2023,4,20,22,30,-5.6,0.91,0.063,0.64,0,0,0,0,7,-11.9,0,0,0,0,0.406,60.93,122.51,0.93,0.26,795,0.3,303,1.2
+5278,2023,4,20,23,0,-5.7,0.95,0.064,0.64,0,0,0,0,7,-11.5,0,0,0,0,0.405,63.67,125.02,0.93,0.26,795,0.3,300,1.1
+5279,2023,4,20,23,30,-5.7,0.95,0.064,0.64,0,0,0,0,7,-11.5,0,0,0,0,0.404,63.67,126.73,0.93,0.26,795,0.3,295,1
+5280,2023,4,21,0,0,-5.6,0.99,0.066,0.64,0,0,0,0,7,-11.1,0,0,0,0,0.402,65.25,127.58,0.93,0.26,795,0.3,289,0.9
+5281,2023,4,21,0,30,-5.7,0.99,0.066,0.64,0,0,0,0,7,-11.1,0,0,0,0,0.4,65.75,127.51,0.93,0.26,795,0.3,278,0.9
+5282,2023,4,21,1,0,-5.7,1.04,0.069,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.397,67.19,126.53,0.93,0.26,795,0.3,268,0.8
+5283,2023,4,21,1,30,-5.7,1.04,0.069,0.64,0,0,0,0,7,-10.8,0,0,0,0,0.395,67.19,124.69,0.94,0.26,795,0.3,250,0.8
+5284,2023,4,21,2,0,-5.8,1.09,0.079,0.64,0,0,0,0,7,-10.6,0,0,0,0,0.393,68.98,122.08,0.94,0.26,794,0.4,233,0.8
+5285,2023,4,21,2,30,-5.6,1.09,0.079,0.64,0,0,0,0,7,-10.6,0,0,0,0,0.392,67.94,118.79,0.94,0.26,794,0.4,226,0.9
+5286,2023,4,21,3,0,-5.4,1.09,0.093,0.64,0,0,0,0,7,-10.4,0,0,0,0,0.39,67.76,114.93,0.95,0.26,794,0.4,219,1.1
+5287,2023,4,21,3,30,-4.9,1.09,0.093,0.64,0,0,0,0,7,-10.4,0,0,0,0,0.389,65.25,110.61,0.95,0.26,794,0.5,218,1.4
+5288,2023,4,21,4,0,-4.5,1.08,0.079,0.64,0,0,0,0,7,-10.9,0,0,0,0,0.388,61.14,105.92,0.95,0.26,794,0.5,218,1.7
+5289,2023,4,21,4,30,-4.3,1.08,0.079,0.64,0,0,0,0,7,-10.9,0,0,0,0,0.386,60.23,100.92,0.95,0.26,794,0.5,218,1.8
+5290,2023,4,21,5,0,-4.1,1.1,0.067,0.64,0,0,0,0,7,-10.6,0,0,0,0,0.384,60.73,95.69,0.95,0.26,794,0.6,219,1.9
+5291,2023,4,21,5,30,-3.8,1.1,0.067,0.64,7,60,7,4,7,-10.6,4,0,57,4,0.383,59.38,89.84,0.95,0.26,794,0.6,215,2.3
+5292,2023,4,21,6,0,-3.4,1.12,0.066,0.64,32,389,69,6,7,-10.6,42,5,86,42,0.381,57.32,84.61,0.95,0.26,794,0.6,211,2.7
+5293,2023,4,21,6,30,-2.8,1.12,0.066,0.64,49,597,163,0,7,-10.6,109,58,0,120,0.38,54.82,79.03,0.95,0.26,794,0.6,211,3.1
+5294,2023,4,21,7,0,-2.3,1.13,0.069,0.64,62,718,268,0,7,-10.7,146,75,0,167,0.378,52.47,73.36,0.95,0.26,794,0.7,211,3.5
+5295,2023,4,21,7,30,-1.6,1.13,0.069,0.64,73,796,375,0,7,-10.7,204,49,0,223,0.377,49.83,67.67,0.96,0.26,794,0.7,214,3.8
+5296,2023,4,21,8,0,-1,1.13,0.074,0.64,83,850,482,0,7,-10.2,258,72,0,292,0.376,49.55,62.01,0.96,0.26,793,0.7,218,4.1
+5297,2023,4,21,8,30,-0.4,1.13,0.074,0.64,91,892,584,0,7,-10.2,303,111,0,364,0.375,47.43,56.42,0.96,0.26,793,0.7,221,4.3
+5298,2023,4,21,9,0,0.2,1.12,0.077,0.64,98,922,679,0,7,-9.1,362,125,0,441,0.375,49.67,50.96,0.96,0.26,793,0.7,224,4.6
+5299,2023,4,21,9,30,0.9,1.12,0.077,0.64,104,943,762,0,6,-9.1,406,102,0,477,0.374,47.23,45.74,0.96,0.26,793,0.8,227,4.7
+5300,2023,4,21,10,0,1.5,1.12,0.079,0.64,109,958,834,0,6,-7.6,413,43,0,446,0.374,50.73,40.84,0.96,0.26,792,0.8,229,4.9
+5301,2023,4,21,10,30,2.2,1.12,0.079,0.64,112,972,894,0,6,-7.6,477,113,0,568,0.375,48.26,36.45,0.96,0.26,792,0.8,230,4.9
+5302,2023,4,21,11,0,2.9,1.17,0.076,0.64,113,984,940,0,6,-6.1,467,52,0,511,0.375,51.56,32.77,0.96,0.26,791,0.8,231,5
+5303,2023,4,21,11,30,3.7,1.17,0.076,0.64,117,985,969,0,6,-6.1,460,22,0,479,0.375,48.74,30.09,0.96,0.26,791,0.9,237,4.8
+5304,2023,4,21,12,0,4.4,1.16,0.085,0.64,120,982,981,0,6,-4.5,481,71,0,543,0.375,52.44,28.71,0.96,0.26,790,0.9,242,4.7
+5305,2023,4,21,12,30,4.9,1.16,0.085,0.64,120,980,979,0,7,-4.5,489,104,0,580,0.375,50.64,28.81,0.96,0.26,790,0.9,255,4.6
+5306,2023,4,21,13,0,5.4,1.15,0.087,0.64,120,976,962,0,7,-3,511,157,0,646,0.374,54.52,30.38,0.96,0.26,789,0.9,268,4.4
+5307,2023,4,21,13,30,5.6,1.15,0.087,0.64,117,969,928,0,7,-3,462,124,0,566,0.373,53.77,33.2,0.96,0.26,789,1,280,4.5
+5308,2023,4,21,14,0,5.8,1.13,0.082,0.64,113,960,880,0,7,-2.4,409,67,0,463,0.372,55.65,36.98,0.96,0.26,789,1,292,4.6
+5309,2023,4,21,14,30,5.8,1.13,0.082,0.64,107,951,820,0,7,-2.4,322,42,0,353,0.371,55.65,41.45,0.96,0.26,789,0.9,297,4.5
+5310,2023,4,21,15,0,5.9,1.11,0.072,0.64,99,939,747,0,6,-2.7,201,8,0,207,0.369,54.22,46.4,0.95,0.26,789,0.9,303,4.4
+5311,2023,4,21,15,30,5.7,1.11,0.072,0.64,94,916,662,0,6,-2.7,152,1,0,153,0.369,54.97,51.66,0.95,0.26,789,0.9,306,4.2
+5312,2023,4,21,16,0,5.6,1.09,0.067,0.64,85,887,567,0,6,-3,113,1,0,114,0.368,53.86,57.12,0.95,0.26,789,0.9,310,4
+5313,2023,4,21,16,30,4.9,1.09,0.067,0.64,78,844,465,0,6,-3,92,0,0,92,0.367,56.54,62.72,0.95,0.26,789,0.9,314,3.4
+5314,2023,4,21,17,0,4.3,1.09,0.065,0.64,69,785,358,0,6,-2.4,78,3,0,79,0.366,61.52,68.38,0.95,0.26,789,0.9,319,2.7
+5315,2023,4,21,17,30,2.8,1.09,0.065,0.64,59,701,251,0,6,-2.4,36,0,0,36,0.365,68.45,74.07,0.95,0.26,790,0.9,324,2.1
+5316,2023,4,21,18,0,1.4,1.08,0.063,0.64,46,571,148,2,6,-2.4,17,0,29,17,0.364,75.73,79.72,0.95,0.26,790,0.9,330,1.5
+5317,2023,4,21,18,30,0.5,1.08,0.063,0.64,29,351,58,7,6,-2.4,15,0,100,15,0.364,80.79,85.26,0.95,0.26,790,0.9,335,1.4
+5318,2023,4,21,19,0,-0.3,1.08,0.06,0.64,6,48,5,3,6,-3.2,2,0,43,2,0.364,80.77,90.92,0.95,0.26,791,0.8,339,1.3
+5319,2023,4,21,19,30,-0.5,1.08,0.06,0.64,0,0,0,0,6,-3.2,0,0,0,0,0.364,81.95,96.29,0.94,0.26,791,0.8,340,1.2
+5320,2023,4,21,20,0,-0.8,1.08,0.056,0.64,0,0,0,0,6,-3.3,0,0,0,0,0.364,83.06,101.48,0.94,0.26,791,0.8,342,1.2
+5321,2023,4,21,20,30,-1,1.08,0.056,0.64,0,0,0,0,6,-3.3,0,0,0,0,0.365,84.28,106.42,0.94,0.26,791,0.8,341,1.1
+5322,2023,4,21,21,0,-1.1,1.09,0.054,0.64,0,0,0,0,6,-3.4,0,0,0,0,0.365,84.52,111.05,0.94,0.26,791,0.8,340,1.1
+5323,2023,4,21,21,30,-1.3,1.09,0.054,0.64,0,0,0,0,6,-3.4,0,0,0,0,0.366,85.77,115.28,0.94,0.26,791,0.8,339,1.1
+5324,2023,4,21,22,0,-1.5,1.11,0.053,0.64,0,0,0,0,6,-3.4,0,0,0,0,0.366,86.64,119.04,0.94,0.26,791,0.8,337,1.2
+5325,2023,4,21,22,30,-1.7,1.11,0.053,0.64,0,0,0,0,7,-3.4,0,0,0,0,0.366,87.93,122.22,0.94,0.26,791,0.8,338,1.2
+5326,2023,4,21,23,0,-2,1.13,0.053,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.366,89.24,124.71,0.94,0.26,791,0.8,338,1.1
+5327,2023,4,21,23,30,-2.2,1.13,0.053,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.366,90.57,126.41,0.94,0.26,791,0.7,343,1.1
+5328,2023,4,22,0,0,-2.4,1.15,0.054,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.366,91.26,127.24,0.94,0.26,791,0.7,347,1.1
+5329,2023,4,22,0,30,-2.5,1.15,0.054,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.366,91.82,127.17,0.94,0.26,790,0.7,349,1.1
+5330,2023,4,22,1,0,-2.6,1.16,0.053,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.365,91.67,126.19,0.94,0.26,790,0.7,350,1.1
+5331,2023,4,22,1,30,-2.7,1.16,0.053,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.366,92.35,124.35,0.94,0.26,790,0.7,351,1.1
+5332,2023,4,22,2,0,-2.9,1.16,0.055,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.367,93.47,121.75,0.94,0.26,790,0.7,351,1.2
+5333,2023,4,22,2,30,-3.1,1.16,0.055,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.368,94.87,118.47,0.94,0.26,790,0.7,353,1.3
+5334,2023,4,22,3,0,-3.3,1.16,0.061,0.64,0,0,0,0,7,-3.9,0,0,0,0,0.368,95.6,114.62,0.95,0.26,790,0.7,355,1.3
+5335,2023,4,22,3,30,-3.5,1.16,0.061,0.64,0,0,0,0,4,-3.9,0,0,0,0,0.368,97.04,110.32,0.95,0.26,790,0.7,178,1.3
+5336,2023,4,22,4,0,-3.8,1.17,0.067,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.368,97.91,105.63,0.95,0.26,790,0.7,1,1.3
+5337,2023,4,22,4,30,-4,1.17,0.067,0.64,0,0,0,0,7,-4.1,0,0,0,0,0.367,99.38,100.64,0.95,0.26,790,0.7,3,1.3
+5338,2023,4,22,5,0,-4.1,1.16,0.069,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.367,98.87,95.42,0.95,0.26,790,0.6,6,1.4
+5339,2023,4,22,5,30,-3.2,1.16,0.069,0.64,9,82,10,0,0,-4.3,9,82,0,10,0.367,92.43,89.62,0.95,0.26,790,0.6,8,1.9
+5340,2023,4,22,6,0,-2.3,1.16,0.069,0.64,34,397,73,1,0,-4,38,250,18,63,0.367,87.9,84.36,0.95,0.26,790,0.6,11,2.5
+5341,2023,4,22,6,30,-1.2,1.16,0.069,0.64,49,605,167,0,7,-4,73,118,4,96,0.365,81.07,78.78,0.95,0.26,790,0.6,9,2.9
+5342,2023,4,22,7,0,-0.1,1.16,0.066,0.64,61,732,274,1,8,-4.3,99,73,11,120,0.364,73.24,73.11,0.95,0.26,790,0.6,8,3.2
+5343,2023,4,22,7,30,0.5,1.16,0.066,0.64,70,817,384,3,8,-4.3,141,22,39,149,0.363,70.13,67.42,0.95,0.26,790,0.6,182,3.2
+5344,2023,4,22,8,0,1.1,1.18,0.06,0.64,76,880,493,1,4,-5.5,213,41,14,232,0.361,61.38,61.75,0.95,0.26,790,0.6,356,3.2
+5345,2023,4,22,8,30,1.6,1.18,0.06,0.64,84,922,597,0,4,-5.5,207,6,0,210,0.361,59.22,56.16,0.95,0.26,790,0.6,351,3
+5346,2023,4,22,9,0,2,1.18,0.059,0.64,88,953,692,0,4,-6.6,312,68,0,355,0.36,53.12,50.7,0.95,0.26,790,0.6,347,2.9
+5347,2023,4,22,9,30,2.6,1.18,0.059,0.64,95,974,778,0,4,-6.6,358,33,0,381,0.36,50.9,45.46,0.95,0.26,790,0.6,345,2.8
+5348,2023,4,22,10,0,3.1,1.17,0.061,0.64,98,991,851,0,4,-7.2,383,23,0,400,0.361,46.75,40.55,0.95,0.26,790,0.6,343,2.7
+5349,2023,4,22,10,30,3.6,1.17,0.061,0.64,102,1002,911,0,4,-7.2,495,82,0,561,0.361,45.13,36.14,0.95,0.26,790,0.6,341,2.6
+5350,2023,4,22,11,0,4.1,1.16,0.063,0.64,106,1010,958,0,4,-7.7,526,206,0,700,0.362,42.09,32.45,0.95,0.26,790,0.6,339,2.6
+5351,2023,4,22,11,30,4.6,1.16,0.063,0.64,108,1014,988,0,7,-7.7,391,376,0,717,0.362,40.65,29.76,0.95,0.26,790,0.6,338,2.5
+5352,2023,4,22,12,0,5,1.15,0.064,0.64,109,1015,1002,0,8,-7.9,446,120,0,552,0.363,38.67,28.37,0.95,0.26,790,0.6,337,2.4
+5353,2023,4,22,12,30,5.4,1.15,0.064,0.64,108,1014,999,0,7,-7.9,440,350,0,748,0.363,37.61,28.48,0.95,0.26,790,0.6,337,2.3
+5354,2023,4,22,13,0,5.8,1.14,0.065,0.64,108,1010,982,0,7,-8.1,450,383,0,781,0.364,36,30.07,0.95,0.26,790,0.6,337,2.3
+5355,2023,4,22,13,30,6,1.14,0.065,0.64,106,1003,948,0,7,-8.1,250,742,0,873,0.364,35.51,32.92,0.95,0.26,790,0.6,336,2.1
+5356,2023,4,22,14,0,6.2,1.13,0.067,0.64,105,992,900,0,7,-8.4,340,521,0,758,0.364,34.42,36.74,0.95,0.26,789,0.6,336,2
+5357,2023,4,22,14,30,6.2,1.13,0.067,0.64,101,978,837,0,7,-8.4,325,484,0,689,0.363,34.42,41.23,0.95,0.26,789,0.6,336,1.9
+5358,2023,4,22,15,0,6.3,1.12,0.069,0.64,98,959,762,0,7,-8.5,276,554,0,660,0.362,33.71,46.19,0.95,0.26,789,0.6,337,1.8
+5359,2023,4,22,15,30,6,1.12,0.069,0.64,94,933,675,0,7,-8.5,305,362,0,531,0.362,34.41,51.46,0.95,0.26,789,0.6,341,1.7
+5360,2023,4,22,16,0,5.7,1.13,0.072,0.64,88,897,577,0,8,-8.6,279,267,0,425,0.361,34.87,56.94,0.95,0.26,789,0.7,344,1.5
+5361,2023,4,22,16,30,5.2,1.13,0.072,0.64,81,850,473,0,7,-8.6,229,320,0,377,0.36,36.1,62.54,0.95,0.26,789,0.7,173,1.4
+5362,2023,4,22,17,0,4.7,1.15,0.075,0.64,73,785,364,0,7,-8.4,195,264,0,293,0.36,38.23,68.21,0.95,0.26,789,0.7,1,1.3
+5363,2023,4,22,17,30,3.8,1.15,0.075,0.64,62,696,255,0,7,-8.4,133,147,0,174,0.358,40.71,73.89,0.95,0.26,789,0.7,16,1
+5364,2023,4,22,18,0,2.9,1.18,0.077,0.64,49,560,151,2,7,-4.5,84,57,29,94,0.357,58.2,79.54,0.95,0.26,789,0.7,31,0.6
+5365,2023,4,22,18,30,2.2,1.18,0.077,0.64,32,340,61,7,7,-4.5,37,4,100,37,0.356,61.17,85.09,0.95,0.26,789,0.7,45,0.7
+5366,2023,4,22,19,0,1.5,1.19,0.076,0.64,6,46,6,3,7,-4.4,3,0,43,3,0.355,64.97,90.25,0.95,0.26,789,0.7,59,0.7
+5367,2023,4,22,19,30,1.1,1.19,0.076,0.64,0,0,0,0,7,-4.4,0,0,0,0,0.354,66.86,96.09,0.95,0.26,789,0.7,71,0.7
+5368,2023,4,22,20,0,0.8,1.19,0.073,0.64,0,0,0,0,7,-5,0,0,0,0,0.353,65.12,101.27,0.95,0.26,789,0.7,83,0.7
+5369,2023,4,22,20,30,0.4,1.19,0.073,0.64,0,0,0,0,7,-5,0,0,0,0,0.352,67.02,106.19,0.95,0.26,789,0.7,95,0.7
+5370,2023,4,22,21,0,0.1,1.18,0.07,0.64,0,0,0,0,8,-5.7,0,0,0,0,0.35,65.17,110.81,0.95,0.26,789,0.7,107,0.7
+5371,2023,4,22,21,30,-0.2,1.18,0.07,0.64,0,0,0,0,8,-5.7,0,0,0,0,0.35,66.6,115.03,0.95,0.26,789,0.7,120,0.7
+5372,2023,4,22,22,0,-0.6,1.15,0.066,0.64,0,0,0,0,8,-6,0,0,0,0,0.349,66.75,118.77,0.95,0.26,789,0.7,133,0.7
+5373,2023,4,22,22,30,-0.9,1.15,0.066,0.64,0,0,0,0,8,-6,0,0,0,0,0.349,68.22,121.93,0.95,0.26,789,0.7,145,0.6
+5374,2023,4,22,23,0,-1.2,1.07,0.062,0.64,0,0,0,0,4,-6.4,0,0,0,0,0.349,67.78,124.4,0.94,0.26,789,0.7,157,0.6
+5375,2023,4,22,23,30,-1.6,1.07,0.062,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.35,69.8,126.09,0.94,0.26,789,0.7,173,0.6
+5376,2023,4,23,0,0,-1.9,0.99,0.059,0.64,0,0,0,0,0,-7,0,0,0,0,0.351,68.08,126.91,0.94,0.26,789,0.6,189,0.5
+5377,2023,4,23,0,30,-2.2,0.99,0.059,0.64,0,0,0,0,4,-7,0,0,0,0,0.35,69.6,126.83,0.93,0.26,789,0.6,206,0.5
+5378,2023,4,23,1,0,-2.4,0.94,0.057,0.64,0,0,0,0,4,-7.3,0,0,0,0,0.35,69.02,125.85,0.93,0.26,789,0.6,223,0.5
+5379,2023,4,23,1,30,-2.5,0.94,0.057,0.64,0,0,0,0,4,-7.3,0,0,0,0,0.349,69.53,124.02,0.93,0.26,789,0.6,243,0.4
+5380,2023,4,23,2,0,-2.6,0.88,0.058,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.348,69.57,121.42,0.93,0.26,789,0.6,264,0.3
+5381,2023,4,23,2,30,-2.8,0.88,0.058,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.348,70.61,118.15,0.93,0.26,789,0.6,308,0.3
+5382,2023,4,23,3,0,-2.9,0.8,0.062,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.347,71.07,114.32,0.93,0.26,789,0.5,353,0.3
+5383,2023,4,23,3,30,-3.1,0.8,0.062,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.347,72.14,110.02,0.93,0.26,789,0.5,191,0.4
+5384,2023,4,23,4,0,-3.3,0.76,0.066,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.347,73.53,105.35,0.93,0.26,789,0.5,29,0.6
+5385,2023,4,23,4,30,-3.5,0.76,0.066,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.347,74.63,100.37,0.93,0.26,789,0.5,38,0.6
+5386,2023,4,23,5,0,-3.7,0.75,0.067,0.64,0,0,0,0,0,-7.2,0,0,0,0,0.347,76.69,95.16,0.93,0.26,788,0.5,47,0.7
+5387,2023,4,23,5,30,-2.7,0.75,0.067,0.64,10,81,11,0,0,-7.2,10,81,0,11,0.347,71.19,89.39,0.93,0.26,788,0.5,54,0.9
+5388,2023,4,23,6,0,-1.6,0.77,0.068,0.64,35,398,76,0,0,-6.5,35,398,0,76,0.347,69.23,84.11,0.93,0.26,788,0.5,60,1.1
+5389,2023,4,23,6,30,0,0.77,0.068,0.64,52,605,172,0,0,-6.5,52,605,0,172,0.346,61.61,78.53,0.93,0.26,788,0.5,81,1
+5390,2023,4,23,7,0,1.6,0.8,0.07,0.64,64,730,279,0,0,-7.1,67,703,0,274,0.346,52.62,72.87,0.93,0.26,788,0.5,102,0.9
+5391,2023,4,23,7,30,2.7,0.8,0.07,0.64,75,810,389,0,0,-7.1,80,782,0,383,0.345,48.66,67.18,0.93,0.26,788,0.5,137,1.1
+5392,2023,4,23,8,0,3.8,0.81,0.073,0.64,84,865,497,0,4,-6.9,209,364,0,383,0.345,45.63,61.51,0.93,0.26,788,0.5,172,1.2
+5393,2023,4,23,8,30,4.7,0.81,0.073,0.64,92,906,600,0,4,-6.9,307,137,0,384,0.344,42.85,55.91,0.93,0.26,788,0.5,186,1.4
+5394,2023,4,23,9,0,5.6,0.81,0.076,0.64,100,935,695,0,4,-6.6,351,247,0,508,0.343,41.01,50.44,0.93,0.26,788,0.5,200,1.6
+5395,2023,4,23,9,30,6.4,0.81,0.076,0.64,106,958,781,0,0,-6.6,215,497,0,565,0.342,38.81,45.19,0.94,0.26,788,0.5,209,1.7
+5396,2023,4,23,10,0,7.3,0.82,0.078,0.64,110,975,854,0,4,-6.5,327,96,0,400,0.342,36.89,40.27,0.94,0.26,788,0.5,218,1.8
+5397,2023,4,23,10,30,8.1,0.82,0.078,0.64,114,988,915,0,4,-6.5,363,3,0,365,0.341,34.94,35.84,0.94,0.26,788,0.5,225,1.9
+5398,2023,4,23,11,0,8.8,0.89,0.078,0.64,116,995,959,0,4,-6.4,520,108,0,611,0.34,33.61,32.13,0.94,0.26,788,0.6,231,2
+5399,2023,4,23,11,30,9.5,0.89,0.078,0.64,118,1000,989,0,4,-6.4,521,72,0,584,0.34,32.02,29.42,0.94,0.26,787,0.6,235,2.1
+5400,2023,4,23,12,0,10.1,0.97,0.08,0.64,119,1000,1002,0,4,-6.4,558,116,0,660,0.339,30.79,28.03,0.94,0.26,787,0.6,239,2.2
+5401,2023,4,23,12,30,10.6,0.97,0.08,0.64,119,999,1000,0,4,-6.4,576,117,0,679,0.339,29.78,28.15,0.94,0.26,787,0.6,240,2.2
+5402,2023,4,23,13,0,11,1,0.081,0.64,118,996,983,0,4,-6.4,540,212,0,724,0.34,28.84,29.77,0.94,0.26,787,0.6,242,2.3
+5403,2023,4,23,13,30,11.3,1,0.081,0.64,117,989,950,0,0,-6.5,216,820,0,906,0.34,28.24,32.65,0.95,0.26,786,0.6,243,2.3
+5404,2023,4,23,14,0,11.6,1.01,0.082,0.64,115,978,901,0,0,-6.6,164,902,0,889,0.341,27.35,36.49,0.95,0.26,786,0.6,244,2.4
+5405,2023,4,23,14,30,11.6,1.01,0.082,0.64,113,961,838,0,0,-6.6,211,774,0,795,0.341,27.35,41.01,0.95,0.26,786,0.6,244,2.4
+5406,2023,4,23,15,0,11.6,0.99,0.089,0.64,110,938,762,0,0,-6.9,217,742,0,733,0.342,26.72,45.98,0.95,0.26,785,0.6,243,2.4
+5407,2023,4,23,15,30,11.2,0.99,0.089,0.64,105,909,674,0,7,-6.9,298,485,0,601,0.343,27.43,51.27,0.95,0.26,785,0.6,242,2.3
+5408,2023,4,23,16,0,10.9,0.97,0.096,0.64,100,870,577,0,7,-7.2,279,408,0,503,0.343,27.3,56.76,0.95,0.26,785,0.6,241,2.3
+5409,2023,4,23,16,30,10.4,0.97,0.096,0.64,93,822,474,0,7,-7.3,252,309,0,395,0.344,28.22,62.37,0.95,0.26,785,0.6,238,2
+5410,2023,4,23,17,0,9.8,0.93,0.097,0.64,83,757,366,0,6,-7,222,139,0,274,0.345,29.97,68.04,0.95,0.25,785,0.6,236,1.8
+5411,2023,4,23,17,30,8.7,0.93,0.097,0.64,71,664,257,0,7,-7,157,186,7,209,0.346,32.27,73.72,0.95,0.25,785,0.6,229,1.2
+5412,2023,4,23,18,0,7.6,0.88,0.096,0.64,55,524,152,1,7,-2.2,99,209,21,138,0.347,49.77,79.37,0.95,0.25,785,0.6,222,0.7
+5413,2023,4,23,18,30,6.9,0.88,0.096,0.64,36,296,62,7,7,-2.2,45,8,100,46,0.347,52.27,84.91,0.95,0.25,786,0.6,213,0.6
+5414,2023,4,23,19,0,6.3,0.84,0.097,0.64,6,33,6,3,7,-4.4,4,0,43,4,0.348,46.18,90.09,0.95,0.25,786,0.6,203,0.6
+5415,2023,4,23,19,30,6.1,0.84,0.097,0.64,0,0,0,0,7,-4.4,0,0,0,0,0.349,46.82,95.9,0.94,0.25,786,0.6,199,0.5
+5416,2023,4,23,20,0,5.9,0.81,0.095,0.64,0,0,0,0,7,-5.5,0,0,0,0,0.349,43.63,101.06,0.94,0.25,786,0.6,194,0.5
+5417,2023,4,23,20,30,5.5,0.81,0.095,0.64,0,0,0,0,7,-5.5,0,0,0,0,0.349,44.86,105.97,0.94,0.25,786,0.6,196,0.5
+5418,2023,4,23,21,0,5.2,0.8,0.093,0.64,0,0,0,0,7,-5.9,0,0,0,0,0.35,44.49,110.57,0.94,0.25,786,0.6,199,0.6
+5419,2023,4,23,21,30,4.8,0.8,0.093,0.64,0,0,0,0,7,-5.9,0,0,0,0,0.351,45.74,114.77,0.94,0.25,786,0.6,205,0.5
+5420,2023,4,23,22,0,4.4,0.76,0.088,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.351,45.92,118.5,0.94,0.25,786,0.6,211,0.5
+5421,2023,4,23,22,30,4.1,0.76,0.088,0.64,0,0,0,0,7,-6.3,0,0,0,0,0.352,46.84,121.64,0.94,0.25,785,0.6,227,0.5
+5422,2023,4,23,23,0,3.7,0.74,0.084,0.64,0,0,0,0,8,-6.6,0,0,0,0,0.353,47.02,124.09,0.94,0.25,785,0.6,244,0.5
+5423,2023,4,23,23,30,3.2,0.74,0.084,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.354,48.7,125.77,0.94,0.25,785,0.6,256,0.6
+5424,2023,4,24,0,0,2.7,0.75,0.085,0.64,0,0,0,0,0,-6.6,0,0,0,0,0.355,50.44,126.58,0.94,0.25,785,0.6,267,0.6
+5425,2023,4,24,0,30,2.2,0.75,0.085,0.64,0,0,0,0,0,-6.6,0,0,0,0,0.355,52.26,126.5,0.94,0.25,785,0.6,272,0.7
+5426,2023,4,24,1,0,1.7,0.77,0.086,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.355,54.73,125.52,0.94,0.25,785,0.6,276,0.8
+5427,2023,4,24,1,30,1.4,0.77,0.086,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.356,55.92,123.69,0.94,0.25,785,0.6,281,0.8
+5428,2023,4,24,2,0,1,0.78,0.089,0.64,0,0,0,0,5,-6.5,0,0,0,0,0.357,57.41,121.1,0.94,0.25,785,0.6,286,0.8
+5429,2023,4,24,2,30,0.7,0.78,0.089,0.64,0,0,0,0,4,-6.5,0,0,0,0,0.358,58.66,117.84,0.94,0.25,785,0.6,293,0.7
+5430,2023,4,24,3,0,0.3,0.77,0.09,0.64,0,0,0,0,8,-6.7,0,0,0,0,0.359,59.35,114.02,0.94,0.25,785,0.6,300,0.7
+5431,2023,4,24,3,30,0,0.77,0.09,0.64,0,0,0,0,0,-6.7,0,0,0,0,0.361,60.65,109.73,0.93,0.25,785,0.6,308,0.7
+5432,2023,4,24,4,0,-0.4,0.75,0.087,0.64,0,0,0,0,0,-6.8,0,0,0,0,0.362,62.05,105.07,0.93,0.25,785,0.6,316,0.6
+5433,2023,4,24,4,30,-0.6,0.75,0.087,0.64,0,0,0,0,0,-6.8,0,0,0,0,0.364,62.96,100.1,0.93,0.25,785,0.7,324,0.6
+5434,2023,4,24,5,0,-0.9,0.7,0.081,0.64,0,0,0,0,0,-6.5,0,0,0,0,0.366,65.99,94.9,0.93,0.25,785,0.7,331,0.5
+5435,2023,4,24,5,30,0.2,0.7,0.081,0.64,11,71,12,0,0,-6.5,11,71,0,12,0.367,60.92,89.17,0.93,0.25,785,0.7,172,0.4
+5436,2023,4,24,6,0,1.3,0.67,0.079,0.64,38,365,77,0,0,-4.2,38,365,0,77,0.367,66.98,83.87,0.93,0.25,786,0.7,12,0.3
+5437,2023,4,24,6,30,3,0.67,0.079,0.64,55,571,171,0,0,-4.2,55,571,0,171,0.368,59.35,78.29,0.93,0.25,786,0.7,127,0.2
+5438,2023,4,24,7,0,4.8,0.66,0.078,0.64,67,699,276,0,0,-5,67,699,0,276,0.368,49.14,72.63,0.93,0.25,786,0.7,241,0.2
+5439,2023,4,24,7,30,6.5,0.66,0.078,0.64,78,784,385,0,0,-5,78,784,0,385,0.367,43.63,66.94,0.93,0.25,785,0.7,237,0.6
+5440,2023,4,24,8,0,8.2,0.67,0.077,0.64,86,844,492,0,0,-5,86,844,0,492,0.367,38.95,61.26,0.93,0.25,785,0.7,233,1.1
+5441,2023,4,24,8,30,9.2,0.67,0.077,0.64,95,884,594,0,0,-5,95,884,0,594,0.365,36.41,55.66,0.93,0.25,785,0.7,226,1.4
+5442,2023,4,24,9,0,10.2,0.71,0.083,0.64,103,913,688,0,0,-4.3,103,913,0,688,0.364,35.81,50.18,0.93,0.25,785,0.7,220,1.8
+5443,2023,4,24,9,30,10.9,0.71,0.083,0.64,111,933,772,0,0,-4.3,230,719,0,739,0.362,34.18,44.92,0.94,0.25,785,0.7,217,2.1
+5444,2023,4,24,10,0,11.5,0.76,0.096,0.64,121,943,843,0,0,-3.6,347,557,0,774,0.361,34.62,39.99,0.94,0.25,785,0.8,214,2.4
+5445,2023,4,24,10,30,11.9,0.76,0.096,0.64,124,954,900,0,3,-3.6,457,413,0,793,0.359,33.68,35.54,0.94,0.25,784,0.8,215,2.7
+5446,2023,4,24,11,0,12.2,0.85,0.098,0.64,128,963,946,0,3,-3,446,350,0,743,0.358,34.45,31.81,0.95,0.25,784,0.8,217,2.9
+5447,2023,4,24,11,30,12.2,0.85,0.098,0.64,130,968,976,0,8,-3,437,365,0,756,0.356,34.45,29.09,0.95,0.25,784,0.8,219,3.2
+5448,2023,4,24,12,0,12.2,0.91,0.102,0.64,133,966,988,0,8,-2.5,435,380,0,771,0.355,35.79,27.7,0.95,0.25,784,0.9,222,3.5
+5449,2023,4,24,12,30,11.9,0.91,0.102,0.64,132,964,985,0,7,-2.5,402,485,7,831,0.353,36.5,27.83,0.95,0.25,784,0.9,224,3.7
+5450,2023,4,24,13,0,11.6,0.97,0.107,0.64,133,957,966,0,7,-1.9,407,487,7,831,0.352,38.91,29.47,0.96,0.25,784,1,225,3.9
+5451,2023,4,24,13,30,11.2,0.97,0.107,0.64,132,947,932,0,7,-1.9,349,569,0,830,0.351,39.9,32.38,0.96,0.25,783,1,227,4
+5452,2023,4,24,14,0,10.7,1.02,0.113,0.64,131,933,883,0,7,-1.2,368,510,0,779,0.35,43.48,36.25,0.96,0.25,783,1,228,4.1
+5453,2023,4,24,14,30,10.3,1.02,0.113,0.64,126,917,820,0,7,-1.2,412,321,0,655,0.35,44.65,40.79,0.96,0.25,783,1,229,4
+5454,2023,4,24,15,0,9.8,1.07,0.112,0.64,120,896,745,0,7,-0.5,367,129,0,457,0.35,48.77,45.78,0.96,0.25,783,1.1,230,3.9
+5455,2023,4,24,15,30,9.4,1.07,0.112,0.64,112,870,659,0,7,-0.5,334,117,0,408,0.35,50.09,51.08,0.96,0.25,783,1.1,230,3.7
+5456,2023,4,24,16,0,9,1.1,0.109,0.64,105,835,565,0,7,0.2,291,205,0,404,0.35,53.97,56.58,0.96,0.25,783,1.1,230,3.5
+5457,2023,4,24,16,30,8.4,1.1,0.109,0.64,97,782,462,0,7,0.2,208,124,0,266,0.352,56.19,62.19,0.96,0.25,783,1.1,230,3
+5458,2023,4,24,17,0,7.8,1.13,0.119,0.64,88,710,356,0,7,1.1,131,424,25,291,0.353,62.46,67.86,0.97,0.25,783,1.1,230,2.6
+5459,2023,4,24,17,30,6.9,1.13,0.119,0.64,76,611,249,0,7,1.1,96,385,36,205,0.355,66.41,73.55,0.97,0.25,783,1.1,233,1.8
+5460,2023,4,24,18,0,6.1,1.13,0.129,0.64,60,465,147,1,9,2.7,65,5,14,66,0.357,78.63,79.19,0.97,0.25,783,1.1,236,1.1
+5461,2023,4,24,18,30,5.3,1.13,0.129,0.64,36,258,60,7,9,2.7,14,0,100,14,0.359,83.1,84.73,0.96,0.25,783,1.1,246,0.9
+5462,2023,4,24,19,0,4.6,1.11,0.122,0.64,6,30,6,4,9,2.6,2,0,57,2,0.361,87.04,89.93,0.96,0.25,783,1.1,256,0.7
+5463,2023,4,24,19,30,4.2,1.11,0.122,0.64,0,0,0,0,9,2.6,0,0,0,0,0.362,89.62,95.7,0.96,0.25,784,1.1,270,0.7
+5464,2023,4,24,20,0,3.8,1.07,0.114,0.64,0,0,0,0,9,2.2,0,0,0,0,0.364,89.43,100.85,0.96,0.25,784,1.1,285,0.6
+5465,2023,4,24,20,30,3.4,1.07,0.114,0.64,0,0,0,0,6,2.2,0,0,0,0,0.366,91.98,105.75,0.95,0.25,784,1,296,0.6
+5466,2023,4,24,21,0,3,1.01,0.098,0.64,0,0,0,0,6,1.7,0,0,0,0,0.367,91.14,110.33,0.95,0.25,784,1,307,0.7
+5467,2023,4,24,21,30,2.5,1.01,0.098,0.64,0,0,0,0,6,1.7,0,0,0,0,0.368,94.42,114.52,0.94,0.25,784,0.9,313,0.7
+5468,2023,4,24,22,0,2,0.94,0.084,0.64,0,0,0,0,7,1.1,0,0,0,0,0.368,93.62,118.23,0.94,0.25,784,0.9,318,0.7
+5469,2023,4,24,22,30,1.6,0.94,0.084,0.64,0,0,0,0,4,1.1,0,0,0,0,0.368,96.33,121.35,0.94,0.25,784,0.8,318,0.8
+5470,2023,4,24,23,0,1.2,0.88,0.078,0.64,0,0,0,0,4,0.6,0,0,0,0,0.368,95.92,123.79,0.93,0.25,784,0.8,319,0.8
+5471,2023,4,24,23,30,0.8,0.88,0.078,0.64,0,0,0,0,4,0.6,0,0,0,0,0.368,98.72,125.45,0.93,0.25,784,0.8,317,0.8
+5472,2023,4,25,0,0,0.4,0.86,0.079,0.64,0,0,0,0,4,0.3,0,0,0,0,0.367,99.23,126.26,0.93,0.25,784,0.8,315,0.8
+5473,2023,4,25,0,30,0.1,0.86,0.079,0.64,0,0,0,0,4,0.1,0,0,0,0,0.367,100,126.17,0.94,0.25,784,0.8,317,0.8
+5474,2023,4,25,1,0,-0.3,0.85,0.084,0.64,0,0,0,0,0,-0.3,0,0,0,0,0.367,100,125.19,0.94,0.25,783,0.8,319,0.8
+5475,2023,4,25,1,30,-0.6,0.85,0.084,0.64,0,0,0,0,0,-0.6,0,0,0,0,0.366,100,123.37,0.94,0.25,783,0.8,323,0.8
+5476,2023,4,25,2,0,-0.8,0.86,0.087,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.366,100,120.78,0.94,0.25,783,0.8,326,0.7
+5477,2023,4,25,2,30,-1.1,0.86,0.087,0.64,0,0,0,0,4,-1.1,0,0,0,0,0.365,100,117.53,0.94,0.25,783,0.8,330,0.7
+5478,2023,4,25,3,0,-1.3,0.86,0.092,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.364,100,113.72,0.94,0.25,783,0.8,333,0.6
+5479,2023,4,25,3,30,-1.5,0.86,0.092,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.363,100,109.45,0.94,0.25,783,0.8,334,0.5
+5480,2023,4,25,4,0,-1.7,0.88,0.097,0.64,0,0,0,0,4,-1.7,0,0,0,0,0.362,100,104.8,0.94,0.25,783,0.8,336,0.5
+5481,2023,4,25,4,30,-1.8,0.88,0.097,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.361,100,99.84,0.95,0.25,783,0.8,334,0.5
+5482,2023,4,25,5,0,-1.9,0.9,0.1,0.64,0,0,0,0,4,-1.9,0,0,0,0,0.361,100,94.64,0.95,0.25,783,0.8,332,0.4
+5483,2023,4,25,5,30,-1,0.9,0.1,0.64,13,77,14,5,7,-1.2,6,0,71,6,0.361,98.55,88.94,0.95,0.25,783,0.8,337,0.8
+5484,2023,4,25,6,0,-0.2,0.93,0.102,0.64,41,344,79,5,8,-0.8,30,17,71,32,0.361,96.05,83.63,0.95,0.25,783,0.8,341,1.1
+5485,2023,4,25,6,30,0.7,0.93,0.102,0.64,60,544,173,0,7,-0.7,83,289,0,143,0.361,90.11,78.05,0.95,0.25,784,0.8,340,1.8
+5486,2023,4,25,7,0,1.6,0.93,0.101,0.64,74,673,278,0,4,-0.9,113,160,0,161,0.362,83.51,72.39,0.95,0.25,784,0.8,340,2.4
+5487,2023,4,25,7,30,2.1,0.93,0.101,0.64,86,760,387,0,4,-0.9,149,38,0,164,0.363,80.59,66.7,0.95,0.25,784,0.8,341,2.9
+5488,2023,4,25,8,0,2.7,0.93,0.098,0.64,95,824,494,0,4,-2,226,83,0,266,0.365,71.33,61.02,0.95,0.25,784,0.7,342,3.3
+5489,2023,4,25,8,30,3.2,0.93,0.098,0.64,101,873,597,0,8,-2,252,44,0,277,0.366,68.86,55.41,0.95,0.25,784,0.7,345,3.4
+5490,2023,4,25,9,0,3.7,0.91,0.088,0.64,105,912,692,0,7,-3.1,269,105,0,337,0.368,61,49.93,0.95,0.25,785,0.7,348,3.5
+5491,2023,4,25,9,30,4.3,0.91,0.088,0.64,108,940,777,0,8,-3.1,379,168,7,498,0.369,58.49,44.66,0.95,0.25,785,0.7,353,3.4
+5492,2023,4,25,10,0,4.9,0.89,0.079,0.64,109,963,850,0,8,-4,391,379,0,683,0.37,52.6,39.71,0.94,0.25,785,0.7,358,3.3
+5493,2023,4,25,10,30,5.5,0.89,0.079,0.64,116,971,909,0,8,-4,358,475,0,746,0.37,50.45,35.25,0.94,0.25,785,0.7,183,3.3
+5494,2023,4,25,11,0,6.1,0.93,0.093,0.64,125,974,955,0,7,-4.5,455,366,0,767,0.371,46.62,31.5,0.94,0.25,785,0.7,9,3.2
+5495,2023,4,25,11,30,6.6,0.93,0.093,0.64,125,983,987,0,7,-4.5,450,423,0,821,0.37,45.04,28.77,0.94,0.25,785,0.7,13,3.3
+5496,2023,4,25,12,0,7.2,0.91,0.088,0.64,124,989,1002,0,0,-4.8,225,804,0,939,0.37,42.1,27.37,0.94,0.25,785,0.7,18,3.3
+5497,2023,4,25,12,30,7.6,0.91,0.088,0.64,123,990,1001,0,0,-4.8,209,837,0,951,0.37,40.97,27.51,0.94,0.25,785,0.7,20,3.5
+5498,2023,4,25,13,0,8,0.89,0.084,0.64,120,989,984,0,8,-5.1,417,436,0,798,0.369,39.21,29.17,0.94,0.25,785,0.7,22,3.6
+5499,2023,4,25,13,30,8.2,0.89,0.084,0.64,119,982,951,0,8,-5.1,429,177,0,579,0.368,38.68,32.11,0.94,0.25,785,0.6,21,3.8
+5500,2023,4,25,14,0,8.5,0.86,0.087,0.64,118,972,904,0,8,-5.2,404,274,0,626,0.367,37.45,36,0.94,0.25,785,0.6,21,3.9
+5501,2023,4,25,14,30,8.5,0.86,0.087,0.64,113,958,841,0,4,-5.2,367,108,0,449,0.365,37.5,40.57,0.94,0.25,786,0.6,20,4
+5502,2023,4,25,15,0,8.6,0.85,0.085,0.64,108,940,766,0,8,-5.3,290,473,21,621,0.364,36.91,45.58,0.94,0.25,786,0.6,19,4.1
+5503,2023,4,25,15,30,8.5,0.85,0.085,0.64,103,914,680,0,8,-5.3,339,203,0,467,0.362,37.16,50.89,0.94,0.25,786,0.6,19,4.2
+5504,2023,4,25,16,0,8.4,0.86,0.086,0.64,96,880,583,0,4,-5.4,319,260,0,463,0.36,37.3,56.4,0.94,0.25,786,0.6,18,4.2
+5505,2023,4,25,16,30,8,0.86,0.086,0.64,90,829,479,0,4,-5.4,228,383,14,408,0.359,38.33,62.02,0.94,0.25,786,0.6,19,4.1
+5506,2023,4,25,17,0,7.6,0.91,0.096,0.64,80,758,368,0,4,-5,164,362,36,301,0.357,40.6,67.69,0.94,0.13,787,0.6,19,4
+5507,2023,4,25,17,30,6.4,0.91,0.096,0.64,68,664,258,0,4,-5,138,107,7,169,0.356,44.07,73.37,0.94,0.13,787,0.7,15,3.2
+5508,2023,4,25,18,0,5.3,0.95,0.101,0.64,55,522,154,1,4,-2.9,83,158,29,113,0.355,55.37,79.02,0.95,0.13,787,0.7,11,2.3
+5509,2023,4,25,18,30,3.9,0.95,0.101,0.64,36,307,65,7,8,-2.9,48,19,100,50,0.355,61.13,84.55,0.95,0.13,788,0.7,6,2.2
+5510,2023,4,25,19,0,2.5,0.98,0.101,0.64,9,49,9,4,4,-2.5,5,0,57,5,0.356,69.48,89.76,0.95,0.13,788,0.7,1,2.1
+5511,2023,4,25,19,30,2.1,0.98,0.101,0.64,0,0,0,0,4,-2.5,0,0,0,0,0.356,71.57,95.5,0.95,0.13,789,0.8,179,2.3
+5512,2023,4,25,20,0,1.6,1.01,0.097,0.64,0,0,0,0,8,-2.2,0,0,0,0,0.357,75.78,100.64,0.95,0.13,789,0.8,357,2.5
+5513,2023,4,25,20,30,1.2,1.01,0.097,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.358,77.98,105.53,0.95,0.13,789,0.8,355,2.5
+5514,2023,4,25,21,0,0.7,1.05,0.092,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.358,84.24,110.1,0.95,0.13,789,0.8,353,2.4
+5515,2023,4,25,21,30,0.3,1.05,0.092,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.358,86.82,114.27,0.94,0.13,790,0.8,352,2.4
+5516,2023,4,25,22,0,-0.2,1.06,0.087,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.358,92.19,117.96,0.94,0.13,790,0.8,352,2.3
+5517,2023,4,25,22,30,-0.6,1.06,0.087,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.357,94.91,121.07,0.94,0.13,790,0.8,352,2.3
+5518,2023,4,25,23,0,-1,1.03,0.083,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.356,98.8,123.49,0.94,0.13,790,0.8,352,2.3
+5519,2023,4,25,23,30,-1.3,1.03,0.083,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.356,100,125.14,0.94,0.13,790,0.8,352,2.3
+5520,2023,4,26,0,0,-1.6,0.98,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.356,100,125.93,0.94,0.13,790,0.7,351,2.3
+5521,2023,4,26,0,30,-1.9,0.98,0.081,0.64,0,0,0,0,0,-1.9,0,0,0,0,0.356,100,125.84,0.94,0.13,790,0.7,352,2.3
+5522,2023,4,26,1,0,-2.2,0.92,0.082,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.356,100,124.86,0.94,0.13,790,0.7,352,2.3
+5523,2023,4,26,1,30,-2.4,0.92,0.082,0.64,0,0,0,0,0,-2.4,0,0,0,0,0.356,100,123.04,0.94,0.13,790,0.7,354,2.3
+5524,2023,4,26,2,0,-2.5,0.9,0.088,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.356,100,120.47,0.94,0.13,790,0.7,357,2.3
+5525,2023,4,26,2,30,-2.6,0.9,0.088,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.357,100,117.23,0.94,0.13,791,0.7,182,2.1
+5526,2023,4,26,3,0,-2.7,0.9,0.091,0.64,0,0,0,0,4,-2.7,0,0,0,0,0.357,100,113.43,0.94,0.13,791,0.7,8,2
+5527,2023,4,26,3,30,-2.9,0.9,0.091,0.64,0,0,0,0,0,-2.9,0,0,0,0,0.357,100,109.17,0.94,0.13,791,0.7,13,1.9
+5528,2023,4,26,4,0,-3,0.91,0.09,0.64,0,0,0,0,0,-3,0,0,0,0,0.357,100,104.52,0.94,0.13,791,0.7,19,1.8
+5529,2023,4,26,4,30,-3.1,0.91,0.09,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.356,100,99.58,0.94,0.13,791,0.7,22,1.8
+5530,2023,4,26,5,0,-3.2,0.92,0.092,0.64,0,0,0,0,0,-3.2,0,0,0,0,0.356,100,94.39,0.94,0.13,792,0.7,25,1.7
+5531,2023,4,26,5,30,-2.3,0.92,0.092,0.64,14,94,16,0,0,-2.5,14,94,0,16,0.354,98.55,88.71,0.94,0.13,792,0.7,25,1.9
+5532,2023,4,26,6,0,-1.3,0.93,0.092,0.64,40,376,83,0,0,-2.1,40,376,0,83,0.352,94.12,83.39,0.94,0.13,792,0.7,25,2.2
+5533,2023,4,26,6,30,0.4,0.93,0.092,0.64,55,574,176,0,0,-2.1,54,382,0,135,0.35,83.17,77.82,0.93,0.13,792,0.7,22,2.4
+5534,2023,4,26,7,0,2,0.94,0.088,0.64,67,700,281,0,4,-1.1,102,304,0,195,0.348,79.99,72.16,0.93,0.13,792,0.7,19,2.7
+5535,2023,4,26,7,30,4,0.94,0.088,0.64,75,783,388,0,4,-1.1,180,153,0,241,0.347,69.45,66.46,0.93,0.13,792,0.7,17,3
+5536,2023,4,26,8,0,6,0.93,0.085,0.64,83,843,494,0,0,-0.6,170,508,0,418,0.345,62.54,60.79,0.93,0.13,792,0.7,16,3.4
+5537,2023,4,26,8,30,7.6,0.93,0.085,0.64,88,886,594,0,0,-0.6,97,865,0,591,0.343,56.05,55.17,0.93,0.13,792,0.7,16,3.6
+5538,2023,4,26,9,0,9.1,0.92,0.084,0.64,93,918,687,0,0,-1.1,93,918,0,687,0.341,48.81,49.68,0.93,0.13,792,0.7,16,3.7
+5539,2023,4,26,9,30,10.2,0.92,0.084,0.64,98,941,770,0,0,-1.1,98,941,0,770,0.339,45.35,44.4,0.93,0.13,792,0.7,14,3.6
+5540,2023,4,26,10,0,11.3,0.88,0.083,0.64,101,959,842,0,0,-1.6,101,959,0,842,0.337,40.61,39.44,0.93,0.13,792,0.7,12,3.4
+5541,2023,4,26,10,30,12.2,0.88,0.083,0.64,101,976,901,0,0,-1.6,101,976,0,901,0.336,38.28,34.96,0.92,0.13,792,0.7,9,3.3
+5542,2023,4,26,11,0,13.1,0.85,0.074,0.64,100,990,947,0,0,-2,100,990,0,947,0.335,35.19,31.19,0.92,0.13,792,0.7,5,3.1
+5543,2023,4,26,11,30,13.8,0.85,0.074,0.64,100,997,977,0,0,-2,176,824,0,900,0.335,33.58,28.45,0.92,0.13,791,0.7,181,3
+5544,2023,4,26,12,0,14.5,0.81,0.069,0.64,100,1002,992,0,0,-2.3,252,690,0,867,0.336,31.33,27.05,0.92,0.13,791,0.7,356,2.9
+5545,2023,4,26,12,30,15,0.81,0.069,0.64,98,1004,991,0,3,-2.3,446,202,0,626,0.336,30.34,27.2,0.92,0.13,791,0.7,352,2.9
+5546,2023,4,26,13,0,15.5,0.78,0.063,0.64,96,1002,973,0,4,-2.6,401,185,0,563,0.336,28.7,28.88,0.92,0.13,791,0.7,347,3
+5547,2023,4,26,13,30,15.7,0.78,0.063,0.64,98,990,939,0,5,-2.6,420,335,0,705,0.336,28.3,31.85,0.92,0.13,790,0.7,344,2.9
+5548,2023,4,26,14,0,16,0.77,0.078,0.64,100,972,889,0,3,-3,361,438,0,716,0.335,27.06,35.77,0.92,0.13,790,0.7,340,2.9
+5549,2023,4,26,14,30,16,0.77,0.078,0.64,98,956,827,0,0,-3,292,569,0,726,0.333,27.06,40.35,0.92,0.13,790,0.8,337,2.8
+5550,2023,4,26,15,0,15.9,0.76,0.081,0.64,96,935,753,0,0,-3.3,188,738,0,706,0.331,26.51,45.38,0.92,0.13,790,0.8,334,2.7
+5551,2023,4,26,15,30,15.6,0.76,0.081,0.64,93,907,667,0,0,-3.3,126,840,0,658,0.328,27.03,50.71,0.93,0.13,790,0.8,332,2.7
+5552,2023,4,26,16,0,15.3,0.75,0.087,0.64,89,869,572,0,0,-3.7,104,831,7,566,0.326,26.89,56.22,0.93,0.13,789,0.8,330,2.6
+5553,2023,4,26,16,30,14.8,0.75,0.087,0.64,84,819,470,0,0,-3.7,84,819,0,470,0.326,27.76,61.85,0.93,0.13,789,0.8,328,2.4
+5554,2023,4,26,17,0,14.2,0.75,0.092,0.64,76,752,364,0,0,-3.5,76,752,0,364,0.325,29.28,67.52,0.93,0.13,789,0.8,327,2.3
+5555,2023,4,26,17,30,12.7,0.75,0.092,0.64,68,659,258,0,0,-3.5,68,659,0,258,0.327,32.27,73.21,0.93,0.13,789,0.8,326,1.6
+5556,2023,4,26,18,0,11.2,0.77,0.097,0.64,55,519,155,0,0,0.5,55,519,0,155,0.328,47.84,78.84,0.93,0.13,789,0.8,324,0.9
+5557,2023,4,26,18,30,10.1,0.77,0.097,0.64,36,302,66,0,0,0.6,38,278,7,65,0.33,51.53,84.38,0.93,0.13,790,0.8,320,0.8
+5558,2023,4,26,19,0,9.1,0.78,0.1,0.64,9,47,9,2,0,-1.1,8,34,21,8,0.332,49.02,89.6,0.93,0.13,790,0.9,315,0.8
+5559,2023,4,26,19,30,8.6,0.78,0.1,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.334,50.7,95.31,0.93,0.13,790,0.9,308,0.8
+5560,2023,4,26,20,0,8.2,0.77,0.101,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.335,52.54,100.44,0.93,0.13,790,0.9,301,0.8
+5561,2023,4,26,20,30,7.6,0.77,0.101,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,54.72,105.31,0.93,0.13,790,0.9,298,0.9
+5562,2023,4,26,21,0,7,0.79,0.104,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.336,57.71,109.86,0.93,0.13,790,0.9,294,1
+5563,2023,4,26,21,30,6.4,0.79,0.104,0.64,0,0,0,0,5,-0.8,0,0,0,0,0.334,60.13,114.02,0.94,0.13,790,1,297,1.1
+5564,2023,4,26,22,0,5.8,0.82,0.115,0.64,0,0,0,0,5,-0.9,0,0,0,0,0.333,62.15,117.69,0.94,0.13,790,1,300,1.2
+5565,2023,4,26,22,30,5.4,0.82,0.115,0.64,0,0,0,0,7,-0.9,0,0,0,0,0.332,63.89,120.78,0.94,0.13,790,1,305,1.3
+5566,2023,4,26,23,0,4.9,0.86,0.136,0.64,0,0,0,0,7,-0.7,0,0,0,0,0.33,67.01,123.19,0.95,0.13,790,1,311,1.4
+5567,2023,4,26,23,30,4.6,0.86,0.136,0.64,0,0,0,0,6,-0.7,0,0,0,0,0.33,68.43,124.83,0.95,0.13,790,1,315,1.4
+5568,2023,4,27,0,0,4.3,0.87,0.14,0.64,0,0,0,0,6,-0.3,0,0,0,0,0.33,71.85,125.61,0.95,0.13,790,1,320,1.5
+5569,2023,4,27,0,30,4.1,0.87,0.14,0.64,0,0,0,0,6,-0.3,0,0,0,0,0.33,72.87,125.52,0.95,0.13,790,1,323,1.5
+5570,2023,4,27,1,0,4,0.86,0.132,0.64,0,0,0,0,6,-0.1,0,0,0,0,0.33,74.7,124.54,0.94,0.13,789,1,327,1.5
+5571,2023,4,27,1,30,3.4,0.86,0.132,0.64,0,0,0,0,6,-0.1,0,0,0,0,0.331,77.91,122.73,0.94,0.13,789,1,329,1.4
+5572,2023,4,27,2,0,2.9,0.8,0.1,0.64,0,0,0,0,6,-0.4,0,0,0,0,0.333,79.03,120.16,0.93,0.13,789,1,331,1.4
+5573,2023,4,27,2,30,2.3,0.8,0.1,0.64,0,0,0,0,7,-0.4,0,0,0,0,0.335,82.47,116.93,0.93,0.13,789,0.9,330,1.4
+5574,2023,4,27,3,0,1.8,0.74,0.085,0.64,0,0,0,0,0,-1,0,0,0,0,0.338,81.65,113.14,0.92,0.13,789,0.9,329,1.3
+5575,2023,4,27,3,30,1.5,0.74,0.085,0.64,0,0,0,0,0,-1,0,0,0,0,0.339,83.42,108.89,0.92,0.13,789,0.8,325,1.2
+5576,2023,4,27,4,0,1.2,0.74,0.091,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.34,82.35,104.26,0.92,0.13,789,0.8,321,1.2
+5577,2023,4,27,4,30,1.1,0.74,0.091,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.342,82.95,99.32,0.93,0.13,789,0.8,312,1.1
+5578,2023,4,27,5,0,1,0.75,0.105,0.64,0,0,0,0,0,-1.9,0,0,0,0,0.343,81.14,94.14,0.93,0.13,789,0.8,304,0.9
+5579,2023,4,27,5,30,2.3,0.75,0.105,0.64,14,82,16,0,0,-1.9,14,82,0,16,0.345,73.94,88.5,0.93,0.13,789,0.8,290,1
+5580,2023,4,27,6,0,3.6,0.7,0.103,0.64,42,349,84,0,0,-0.9,42,349,0,84,0.347,72.67,83.16,0.93,0.13,789,0.7,277,1
+5581,2023,4,27,6,30,5.5,0.7,0.103,0.64,60,546,177,0,0,-0.8,60,546,0,177,0.349,63.65,77.59,0.93,0.13,789,0.7,278,1.6
+5582,2023,4,27,7,0,7.3,0.69,0.103,0.64,73,671,281,0,0,-2,73,671,0,281,0.351,51.56,71.93,0.93,0.13,789,0.7,279,2.1
+5583,2023,4,27,7,30,9.3,0.69,0.103,0.64,84,753,387,0,0,-2,156,495,0,355,0.352,45.03,66.24,0.93,0.13,789,0.7,291,2.8
+5584,2023,4,27,8,0,11.2,0.72,0.108,0.64,93,811,492,0,8,-3.9,206,429,0,417,0.354,34.44,60.56,0.93,0.13,789,0.7,302,3.6
+5585,2023,4,27,8,30,12.2,0.72,0.108,0.64,101,853,591,0,7,-3.9,228,456,0,490,0.355,32.25,54.94,0.93,0.13,789,0.7,300,3.6
+5586,2023,4,27,9,0,13.2,0.74,0.113,0.64,109,883,683,0,7,-4.3,241,539,0,591,0.356,29.27,49.44,0.94,0.13,789,0.7,298,3.7
+5587,2023,4,27,9,30,13.9,0.74,0.113,0.64,115,906,765,0,7,-4.4,245,580,0,661,0.357,27.93,44.15,0.94,0.13,788,0.7,297,3.8
+5588,2023,4,27,10,0,14.7,0.71,0.118,0.64,121,922,836,0,0,-4.6,183,787,0,793,0.357,26.11,39.17,0.94,0.13,788,0.7,297,4
+5589,2023,4,27,10,30,15.3,0.71,0.118,0.64,118,948,898,0,0,-4.6,197,814,0,866,0.357,25.13,34.68,0.94,0.13,788,0.7,296,4.2
+5590,2023,4,27,11,0,15.9,0.93,0.095,0.64,112,972,946,0,0,-4.8,147,914,0,931,0.358,23.83,30.89,0.94,0.13,788,0.7,295,4.4
+5591,2023,4,27,11,30,16.3,0.93,0.095,0.64,114,978,976,0,7,-4.8,223,750,0,884,0.358,23.2,28.13,0.94,0.13,787,0.7,295,4.7
+5592,2023,4,27,12,0,16.8,0.83,0.092,0.64,114,981,990,0,0,-4.9,211,784,0,911,0.358,22.29,26.72,0.94,0.13,787,0.7,295,5
+5593,2023,4,27,12,30,17,0.83,0.092,0.64,115,978,987,0,3,-4.9,362,500,0,808,0.359,22.01,26.89,0.94,0.13,787,0.7,297,5.3
+5594,2023,4,27,13,0,17.2,0.86,0.098,0.64,115,971,968,0,0,-4.8,145,912,0,946,0.359,21.8,28.59,0.94,0.13,786,0.8,299,5.6
+5595,2023,4,27,13,30,17,0.86,0.098,0.64,115,962,934,0,7,-4.8,223,773,0,881,0.36,22.08,31.59,0.94,0.13,786,0.8,301,5.8
+5596,2023,4,27,14,0,16.9,1.06,0.102,0.64,112,951,886,0,7,-4.6,228,680,0,781,0.36,22.65,35.53,0.95,0.13,786,0.8,304,6.1
+5597,2023,4,27,14,30,16.4,1.06,0.102,0.64,112,932,824,0,7,-4.6,210,714,4,756,0.361,23.35,40.14,0.95,0.13,785,0.8,307,6.3
+5598,2023,4,27,15,0,16,0.93,0.108,0.64,109,906,748,0,8,-4.2,251,603,7,676,0.361,24.7,45.19,0.95,0.13,785,0.9,311,6.4
+5599,2023,4,27,15,30,15.3,0.93,0.108,0.64,102,879,661,0,7,-4.2,326,198,0,452,0.362,25.83,50.53,0.94,0.13,785,0.9,315,6.6
+5600,2023,4,27,16,0,14.6,0.88,0.103,0.64,96,846,568,0,7,-3.3,255,288,0,416,0.364,28.87,56.05,0.94,0.13,785,0.9,319,6.9
+5601,2023,4,27,16,30,13.1,0.88,0.103,0.64,88,796,466,0,7,-3.3,155,605,21,442,0.366,31.85,61.68,0.94,0.13,786,1,328,7
+5602,2023,4,27,17,0,11.5,0.91,0.105,0.64,80,728,360,0,7,-1,162,402,4,317,0.369,41.86,67.36,0.95,0.13,786,1.1,336,7.1
+5603,2023,4,27,17,30,8.9,0.91,0.105,0.64,69,639,255,0,7,-1,111,306,25,200,0.373,49.84,73.04,0.95,0.13,787,1.1,169,7.3
+5604,2023,4,27,18,0,6.3,0.97,0.105,0.64,54,508,154,1,8,0.7,70,122,21,94,0.377,67.32,78.67,0.95,0.13,788,1.2,3,7.6
+5605,2023,4,27,18,30,4.2,0.97,0.105,0.64,35,324,68,7,7,0.7,35,3,100,35,0.38,77.98,84.2,0.95,0.13,789,1.1,11,7.9
+5606,2023,4,27,19,0,2,0.98,0.081,0.64,9,68,10,4,6,-1.5,3,0,57,3,0.384,77.56,89.43,0.94,0.13,790,1,20,8.2
+5607,2023,4,27,19,30,1.3,0.98,0.081,0.64,0,0,0,0,7,-1.5,0,0,0,0,0.384,81.64,95.11,0.93,0.13,791,0.9,21,7.7
+5608,2023,4,27,20,0,0.7,0.9,0.054,0.64,0,0,0,0,7,-4.3,0,0,0,0,0.385,68.97,100.23,0.92,0.13,791,0.7,23,7.3
+5609,2023,4,27,20,30,0.5,0.9,0.054,0.64,0,0,0,0,8,-4.3,0,0,0,0,0.382,70.06,105.09,0.92,0.13,792,0.7,23,6.7
+5610,2023,4,27,21,0,0.3,0.88,0.047,0.64,0,0,0,0,4,-4.6,0,0,0,0,0.38,69.83,109.63,0.92,0.13,792,0.6,23,6
+5611,2023,4,27,21,30,0,0.88,0.047,0.64,0,0,0,0,4,-4.6,0,0,0,0,0.376,71.36,113.77,0.92,0.13,792,0.6,23,5.5
+5612,2023,4,27,22,0,-0.3,0.9,0.045,0.64,0,0,0,0,8,-4.4,0,0,0,0,0.372,74.06,117.43,0.92,0.13,792,0.6,24,5
+5613,2023,4,27,22,30,-0.7,0.9,0.045,0.64,0,0,0,0,5,-4.3,0,0,0,0,0.371,76.34,120.5,0.92,0.13,793,0.5,22,4.4
+5614,2023,4,27,23,0,-1.2,0.9,0.043,0.64,0,0,0,0,5,-4.5,0,0,0,0,0.369,78.51,122.9,0.91,0.13,793,0.5,20,3.8
+5615,2023,4,27,23,30,-1.8,0.9,0.043,0.64,0,0,0,0,5,-4.5,0,0,0,0,0.369,82.05,124.52,0.91,0.13,793,0.5,16,3.3
+5616,2023,4,28,0,0,-2.4,0.9,0.042,0.64,0,0,0,0,5,-4.7,0,0,0,0,0.369,84.1,125.3,0.91,0.13,793,0.4,12,2.8
+5617,2023,4,28,0,30,-3,0.9,0.042,0.64,0,0,0,0,5,-4.7,0,0,0,0,0.367,87.92,125.2,0.91,0.13,793,0.4,8,2.5
+5618,2023,4,28,1,0,-3.5,0.91,0.043,0.64,0,0,0,0,4,-5.1,0,0,0,0,0.366,88.82,124.22,0.91,0.13,793,0.4,3,2.3
+5619,2023,4,28,1,30,-3.9,0.91,0.043,0.64,0,0,0,0,4,-5.1,0,0,0,0,0.364,91.64,122.41,0.91,0.13,794,0.4,2,2.4
+5620,2023,4,28,2,0,-4.2,0.91,0.046,0.64,0,0,0,0,0,-5.4,0,0,0,0,0.362,91.33,119.85,0.91,0.13,794,0.4,1,2.5
+5621,2023,4,28,2,30,-4.4,0.91,0.046,0.64,0,0,0,0,0,-5.4,0,0,0,0,0.359,92.71,116.63,0.91,0.13,794,0.4,2,2.5
+5622,2023,4,28,3,0,-4.7,0.91,0.049,0.64,0,0,0,0,4,-5.7,0,0,0,0,0.357,92.55,112.86,0.91,0.13,794,0.4,3,2.6
+5623,2023,4,28,3,30,-5,0.91,0.049,0.64,0,0,0,0,4,-5.7,0,0,0,0,0.355,94.67,108.62,0.91,0.13,794,0.4,5,2.5
+5624,2023,4,28,4,0,-5.3,0.9,0.051,0.64,0,0,0,0,4,-6,0,0,0,0,0.353,94.93,104,0.91,0.13,795,0.4,7,2.3
+5625,2023,4,28,4,30,-5.3,0.9,0.051,0.64,0,0,0,0,0,-6,0,0,0,0,0.351,94.93,99.07,0.91,0.13,795,0.4,9,2.3
+5626,2023,4,28,5,0,-5.3,0.88,0.052,0.64,0,0,0,0,0,-6.2,0,0,0,0,0.349,93.69,93.9,0.91,0.13,795,0.4,11,2.2
+5627,2023,4,28,5,30,-4,0.88,0.052,0.64,15,165,20,0,0,-6.2,15,165,0,20,0.347,84.94,88.27,0.92,0.13,795,0.4,15,2.7
+5628,2023,4,28,6,0,-2.8,0.86,0.054,0.64,35,500,97,0,0,-5.9,35,500,0,97,0.345,79.12,82.92,0.92,0.13,795,0.4,19,3.1
+5629,2023,4,28,6,30,-0.8,0.86,0.054,0.64,48,677,196,0,0,-5.9,48,677,0,196,0.343,68.29,77.36,0.92,0.13,795,0.4,30,3.4
+5630,2023,4,28,7,0,1.1,0.84,0.054,0.64,57,784,303,0,0,-6.1,68,613,0,260,0.341,58.77,71.7,0.92,0.13,795,0.4,42,3.7
+5631,2023,4,28,7,30,2.4,0.84,0.054,0.64,63,854,410,0,0,-6.1,124,443,0,304,0.339,53.56,66.01,0.91,0.13,795,0.4,42,3.6
+5632,2023,4,28,8,0,3.7,0.84,0.053,0.64,69,903,516,0,0,-7,162,475,0,397,0.338,45.43,60.33,0.91,0.13,796,0.5,42,3.5
+5633,2023,4,28,8,30,4.8,0.84,0.053,0.64,73,938,615,0,0,-7,195,525,0,498,0.336,42.06,54.71,0.92,0.13,796,0.5,39,3.4
+5634,2023,4,28,9,0,6,0.87,0.051,0.64,76,967,708,0,0,-8.4,133,825,0,672,0.334,34.73,49.2,0.92,0.13,796,0.5,36,3.3
+5635,2023,4,28,9,30,7.1,0.87,0.051,0.64,79,988,791,0,0,-8.4,79,988,0,791,0.333,32.21,43.9,0.92,0.13,796,0.5,33,3.3
+5636,2023,4,28,10,0,8.2,0.9,0.05,0.64,82,1004,863,0,0,-9.3,92,986,0,859,0.332,27.88,38.91,0.92,0.13,795,0.5,30,3.3
+5637,2023,4,28,10,30,9.2,0.9,0.05,0.64,79,1020,921,0,0,-9.3,79,1020,0,921,0.332,26.06,34.4,0.92,0.13,795,0.5,27,3.3
+5638,2023,4,28,11,0,10.2,1.22,0.038,0.64,77,1033,966,0,0,-9.6,77,1033,0,966,0.331,23.78,30.6,0.92,0.13,795,0.6,24,3.3
+5639,2023,4,28,11,30,11,1.22,0.038,0.64,77,1036,993,0,0,-9.6,77,1036,0,993,0.33,22.55,27.82,0.92,0.13,795,0.6,22,3.3
+5640,2023,4,28,12,0,11.9,1.24,0.037,0.64,77,1038,1007,0,0,-9.6,135,944,0,980,0.329,21.27,26.41,0.92,0.13,795,0.6,20,3.2
+5641,2023,4,28,12,30,12.5,1.24,0.037,0.64,76,1039,1005,0,0,-9.6,76,1039,0,1005,0.328,20.45,26.58,0.91,0.13,795,0.6,18,3.2
+5642,2023,4,28,13,0,13.2,1.24,0.035,0.64,75,1037,988,0,0,-9.4,75,1037,0,988,0.326,19.78,28.31,0.91,0.13,795,0.6,16,3.2
+5643,2023,4,28,13,30,13.6,1.24,0.035,0.64,79,1023,953,0,0,-9.5,79,1023,0,953,0.325,19.25,31.33,0.91,0.13,794,0.6,15,3.2
+5644,2023,4,28,14,0,14.1,0.85,0.055,0.64,85,1002,903,0,0,-9.3,85,1002,0,903,0.324,18.92,35.3,0.91,0.13,794,0.6,13,3.2
+5645,2023,4,28,14,30,14.3,0.85,0.055,0.64,86,984,841,0,0,-9.3,86,984,0,841,0.322,18.68,39.93,0.92,0.13,794,0.6,12,3.2
+5646,2023,4,28,15,0,14.4,0.77,0.065,0.64,86,960,765,0,0,-9.1,86,960,0,765,0.321,18.79,45,0.92,0.13,794,0.6,11,3.2
+5647,2023,4,28,15,30,14.3,0.77,0.065,0.64,84,932,679,0,0,-9.1,84,932,0,679,0.319,18.91,50.34,0.92,0.13,794,0.6,11,3.1
+5648,2023,4,28,16,0,14.1,0.71,0.073,0.64,82,894,584,0,0,-8.9,82,894,0,584,0.318,19.49,55.87,0.92,0.13,794,0.6,10,3
+5649,2023,4,28,16,30,13.7,0.71,0.073,0.64,77,847,481,0,0,-8.9,77,847,0,481,0.316,20,61.51,0.92,0.13,794,0.7,9,2.6
+5650,2023,4,28,17,0,13.2,0.67,0.079,0.64,72,782,375,0,0,-8.2,72,782,0,375,0.315,21.8,67.19,0.92,0.13,794,0.7,8,2.3
+5651,2023,4,28,17,30,11.8,0.67,0.079,0.64,64,694,268,0,0,-8.2,64,694,0,268,0.314,23.89,72.87,0.92,0.13,794,0.7,13,1.5
+5652,2023,4,28,18,0,10.4,0.69,0.081,0.64,53,563,165,0,0,-2.6,53,563,0,165,0.312,40.12,78.5,0.93,0.13,794,0.7,17,0.7
+5653,2023,4,28,18,30,9.5,0.69,0.081,0.64,37,349,73,5,3,-2.6,47,134,71,61,0.311,42.6,84.03,0.93,0.13,794,0.7,60,0.5
+5654,2023,4,28,19,0,8.7,0.75,0.09,0.64,10,62,11,2,0,-5.4,8,13,29,8,0.311,36.3,89.27,0.93,0.13,795,0.7,103,0.3
+5655,2023,4,28,19,30,7.9,0.75,0.09,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.31,38.32,94.92,0.93,0.13,795,0.7,136,0.6
+5656,2023,4,28,20,0,7.2,0.82,0.102,0.64,0,0,0,0,0,-5.6,0,0,0,0,0.309,39.62,100.03,0.93,0.13,795,0.7,170,0.9
+5657,2023,4,28,20,30,6.3,0.82,0.102,0.64,0,0,0,0,0,-5.6,0,0,0,0,0.309,42.14,104.88,0.93,0.13,795,0.7,180,1
+5658,2023,4,28,21,0,5.4,0.87,0.113,0.64,0,0,0,0,0,-5,0,0,0,0,0.309,47.24,109.4,0.93,0.13,795,0.7,191,1.2
+5659,2023,4,28,21,30,4.7,0.87,0.113,0.64,0,0,0,0,0,-5,0,0,0,0,0.309,49.6,113.53,0.93,0.13,795,0.7,198,1.2
+5660,2023,4,28,22,0,3.9,0.88,0.112,0.64,0,0,0,0,0,-4.8,0,0,0,0,0.309,53.19,117.17,0.93,0.13,795,0.7,206,1.3
+5661,2023,4,28,22,30,3.4,0.88,0.112,0.64,0,0,0,0,0,-4.8,0,0,0,0,0.309,55.09,120.23,0.93,0.13,795,0.7,211,1.3
+5662,2023,4,28,23,0,2.9,0.87,0.108,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.309,57.45,122.61,0.92,0.13,795,0.8,216,1.3
+5663,2023,4,28,23,30,2.7,0.87,0.108,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.308,58.27,124.22,0.92,0.13,795,0.8,220,1.2
+5664,2023,4,29,0,0,2.5,0.89,0.11,0.64,0,0,0,0,8,-4.5,0,0,0,0,0.308,59.72,124.99,0.92,0.13,795,0.8,224,1.2
+5665,2023,4,29,0,30,2.3,0.89,0.11,0.64,0,0,0,0,0,-4.5,0,0,0,0,0.307,60.57,124.88,0.92,0.13,795,0.8,227,1.1
+5666,2023,4,29,1,0,2.1,0.9,0.102,0.64,0,0,0,0,0,-4.6,0,0,0,0,0.307,61,123.91,0.92,0.13,795,0.8,231,1.1
+5667,2023,4,29,1,30,1.7,0.9,0.102,0.64,0,0,0,0,0,-4.6,0,0,0,0,0.307,62.77,122.1,0.91,0.13,795,0.8,231,1.1
+5668,2023,4,29,2,0,1.2,0.87,0.089,0.64,0,0,0,0,0,-5.3,0,0,0,0,0.308,61.9,119.55,0.91,0.13,795,0.8,232,1.1
+5669,2023,4,29,2,30,1,0.87,0.089,0.64,0,0,0,0,0,-5.3,0,0,0,0,0.309,62.79,116.34,0.91,0.13,795,0.8,231,1.1
+5670,2023,4,29,3,0,0.7,0.88,0.082,0.64,0,0,0,0,0,-5.6,0,0,0,0,0.309,62.66,112.58,0.91,0.13,795,0.8,231,1.1
+5671,2023,4,29,3,30,0.6,0.88,0.082,0.64,0,0,0,0,0,-5.6,0,0,0,0,0.31,63.11,108.35,0.9,0.13,795,0.8,232,1.1
+5672,2023,4,29,4,0,0.4,0.91,0.076,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.311,63.35,103.74,0.9,0.13,795,0.9,233,1
+5673,2023,4,29,4,30,0.3,0.91,0.076,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.312,63.81,98.82,0.9,0.13,795,0.9,233,1
+5674,2023,4,29,5,0,0.3,0.94,0.072,0.64,0,0,0,0,0,-5.7,0,0,0,0,0.313,64.1,93.66,0.9,0.13,795,0.9,234,1
+5675,2023,4,29,5,30,1.8,0.94,0.072,0.64,17,153,22,0,0,-5.7,17,153,0,22,0.314,57.55,88.05,0.9,0.13,795,0.9,227,1
+5676,2023,4,29,6,0,3.3,0.95,0.07,0.64,37,447,94,0,0,-3.8,37,447,0,94,0.315,59.59,82.7,0.9,0.13,795,0.8,220,1.1
+5677,2023,4,29,6,30,5.1,0.95,0.07,0.64,50,624,189,0,0,-3.8,50,624,0,189,0.315,52.54,77.14,0.9,0.13,795,0.8,218,1.2
+5678,2023,4,29,7,0,6.8,0.96,0.069,0.64,60,734,293,0,0,-5.1,60,734,0,293,0.316,42.53,71.48,0.9,0.13,795,0.8,217,1.3
+5679,2023,4,29,7,30,9.3,0.96,0.069,0.64,68,808,399,0,0,-5.1,68,808,0,399,0.316,35.9,65.79,0.9,0.13,795,0.8,241,1.4
+5680,2023,4,29,8,0,11.7,0.96,0.07,0.64,74,861,503,0,0,-6.1,74,861,0,503,0.316,28.24,60.11,0.9,0.13,795,0.8,265,1.5
+5681,2023,4,29,8,30,13.2,0.96,0.07,0.64,80,899,602,0,0,-6.1,80,899,0,602,0.316,25.6,54.48,0.9,0.13,795,0.8,270,1.3
+5682,2023,4,29,9,0,14.7,0.97,0.071,0.64,84,928,693,0,0,-5.9,84,928,0,693,0.315,23.63,48.97,0.9,0.13,795,0.8,275,1.2
+5683,2023,4,29,9,30,15.7,0.97,0.071,0.64,88,950,775,0,0,-5.9,88,950,0,775,0.314,22.17,43.66,0.9,0.13,795,0.8,268,1.3
+5684,2023,4,29,10,0,16.8,0.99,0.073,0.64,92,966,846,0,0,-5.1,92,966,0,846,0.314,21.95,38.65,0.9,0.13,795,0.8,261,1.3
+5685,2023,4,29,10,30,17.7,0.99,0.073,0.64,88,989,907,0,0,-5.1,88,989,0,907,0.313,20.71,34.12,0.9,0.13,794,0.8,257,1.5
+5686,2023,4,29,11,0,18.6,1.38,0.051,0.64,82,1010,954,0,0,-4.4,82,1010,0,954,0.312,20.63,30.3,0.89,0.13,794,0.8,252,1.7
+5687,2023,4,29,11,30,19.2,1.38,0.051,0.64,84,1014,983,0,0,-4.4,84,1014,0,983,0.311,19.87,27.51,0.9,0.13,794,0.8,250,1.9
+5688,2023,4,29,12,0,19.9,1.34,0.053,0.64,85,1015,997,0,0,-4.1,85,1015,0,997,0.31,19.49,26.09,0.9,0.13,793,0.8,248,2.2
+5689,2023,4,29,12,30,20.4,1.34,0.053,0.64,86,1013,994,0,0,-4.1,86,1013,0,994,0.309,18.9,26.28,0.9,0.13,793,0.8,248,2.4
+5690,2023,4,29,13,0,20.9,1.2,0.058,0.64,88,1008,978,0,0,-4.1,107,981,0,973,0.308,18.36,28.03,0.91,0.13,793,0.8,247,2.7
+5691,2023,4,29,13,30,21.1,1.2,0.058,0.64,86,1004,946,0,0,-4.1,86,1004,0,946,0.308,18.11,31.07,0.91,0.13,792,0.8,247,2.8
+5692,2023,4,29,14,0,21.4,1.18,0.057,0.64,85,996,900,0,0,-4.3,85,996,0,900,0.307,17.49,35.07,0.92,0.13,792,0.8,247,2.9
+5693,2023,4,29,14,30,21.3,1.18,0.057,0.64,84,980,838,0,0,-4.3,84,980,0,838,0.307,17.6,39.72,0.92,0.13,792,0.8,247,3
+5694,2023,4,29,15,0,21.3,1.06,0.064,0.64,84,960,765,0,0,-4.6,84,960,0,765,0.306,17.15,44.8,0.92,0.13,791,0.7,247,3
+5695,2023,4,29,15,30,21,1.06,0.064,0.64,82,933,680,0,0,-4.6,82,933,0,680,0.306,17.47,50.17,0.92,0.13,791,0.7,249,2.9
+5696,2023,4,29,16,0,20.7,0.99,0.07,0.64,79,898,585,0,0,-4.8,79,898,0,585,0.306,17.61,55.7,0.92,0.13,791,0.7,250,2.8
+5697,2023,4,29,16,30,20.1,0.99,0.07,0.64,74,854,484,0,0,-4.8,74,854,0,484,0.306,18.27,61.34,0.92,0.13,791,0.7,253,2.4
+5698,2023,4,29,17,0,19.5,0.98,0.075,0.64,68,793,378,0,0,-3.9,68,793,0,378,0.306,20.26,67.02,0.92,0.13,790,0.7,255,2.1
+5699,2023,4,29,17,30,17.5,0.98,0.075,0.64,61,706,271,0,0,-3.9,61,706,0,271,0.306,22.95,72.7,0.91,0.13,790,0.7,256,1.4
+5700,2023,4,29,18,0,15.6,1,0.082,0.64,50,577,167,0,0,2.7,50,577,0,167,0.306,41.81,78.33,0.91,0.13,790,0.7,258,0.8
+5701,2023,4,29,18,30,14.2,1,0.082,0.64,35,371,75,0,0,2.7,35,371,0,75,0.306,45.74,83.86,0.91,0.13,790,0.7,269,0.8
+5702,2023,4,29,19,0,12.7,0.98,0.089,0.64,10,74,11,0,0,-0.4,10,74,0,11,0.307,40.43,89.11,0.91,0.13,791,0.7,280,0.8
+5703,2023,4,29,19,30,11.9,0.98,0.089,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.307,42.6,94.73,0.91,0.13,791,0.7,294,0.8
+5704,2023,4,29,20,0,11.1,0.93,0.096,0.64,0,0,0,0,0,-1,0,0,0,0,0.307,42.91,99.83,0.91,0.13,791,0.7,308,0.8
+5705,2023,4,29,20,30,10.4,0.93,0.096,0.64,0,0,0,0,0,-1,0,0,0,0,0.307,44.95,104.66,0.91,0.13,791,0.8,317,0.9
+5706,2023,4,29,21,0,9.7,0.9,0.101,0.64,0,0,0,0,0,-1.4,0,0,0,0,0.307,45.95,109.17,0.91,0.13,791,0.8,327,0.9
+5707,2023,4,29,21,30,9.1,0.9,0.101,0.64,0,0,0,0,8,-1.4,0,0,0,0,0.307,47.84,113.28,0.91,0.13,791,0.8,332,0.9
+5708,2023,4,29,22,0,8.4,0.89,0.102,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.307,49.29,116.91,0.91,0.13,791,0.8,338,1
+5709,2023,4,29,22,30,7.9,0.89,0.102,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.307,50.99,119.95,0.91,0.13,791,0.8,341,1
+5710,2023,4,29,23,0,7.3,0.9,0.099,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.307,52.71,122.32,0.9,0.13,791,0.8,343,1
+5711,2023,4,29,23,30,6.7,0.9,0.099,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.307,54.92,123.92,0.9,0.13,791,0.8,345,0.9
+5712,2023,4,30,0,0,6.1,0.92,0.094,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.306,57.3,124.68,0.9,0.13,791,0.8,346,0.9
+5713,2023,4,30,0,30,5.5,0.92,0.094,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.306,59.73,124.57,0.91,0.13,791,0.8,347,0.9
+5714,2023,4,30,1,0,5,0.94,0.087,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.305,61.97,123.6,0.91,0.13,791,0.8,349,0.9
+5715,2023,4,30,1,30,4.6,0.94,0.087,0.64,0,0,0,0,0,-1.7,0,0,0,0,0.305,63.72,121.8,0.91,0.13,791,0.8,350,0.9
+5716,2023,4,30,2,0,4.2,0.96,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,65.86,119.25,0.91,0.13,791,0.8,351,0.8
+5717,2023,4,30,2,30,3.8,0.96,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,67.74,116.06,0.91,0.13,791,0.8,352,0.8
+5718,2023,4,30,3,0,3.5,0.97,0.075,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,69.23,112.3,0.91,0.13,791,0.8,352,0.7
+5719,2023,4,30,3,30,3.2,0.97,0.075,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,70.71,108.08,0.91,0.13,791,0.8,354,0.7
+5720,2023,4,30,4,0,3,0.98,0.072,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,71.59,103.48,0.91,0.13,791,0.8,356,0.6
+5721,2023,4,30,4,30,2.9,0.98,0.072,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.306,72.1,98.57,0.92,0.13,791,0.8,179,0.6
+5722,2023,4,30,5,0,2.8,1.02,0.071,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.306,73.18,93.42,0.92,0.13,791,0.9,2,0.5
+5723,2023,4,30,5,30,4.2,1.02,0.071,0.64,18,164,24,0,0,-1.5,18,164,0,24,0.307,66.32,87.84,0.92,0.13,791,0.9,3,0.5
+5724,2023,4,30,6,0,5.7,1.07,0.075,0.64,39,452,98,0,0,0.3,39,452,0,98,0.308,68.07,82.48,0.92,0.13,791,0.9,4,0.5
+5725,2023,4,30,6,30,7.4,1.07,0.075,0.64,53,620,193,0,0,0.3,53,620,0,193,0.309,60.57,76.92,0.92,0.13,791,0.9,17,0.4
+5726,2023,4,30,7,0,9.2,1.11,0.08,0.64,65,724,297,0,0,-0.6,65,724,0,297,0.31,50.42,71.27,0.93,0.13,791,0.9,29,0.3
+5727,2023,4,30,7,30,11.4,1.11,0.08,0.64,72,798,402,0,0,-0.6,72,798,0,402,0.311,43.55,65.57,0.93,0.13,791,0.9,187,0.8
+5728,2023,4,30,8,0,13.7,1.14,0.081,0.64,79,850,505,0,0,-1.5,79,850,0,505,0.312,35.12,59.89,0.93,0.13,791,0.9,345,1.2
+5729,2023,4,30,8,30,15.1,1.14,0.081,0.64,83,890,603,0,0,-1.4,83,890,0,603,0.313,32.09,54.26,0.92,0.13,791,0.9,347,1.5
+5730,2023,4,30,9,0,16.5,1.15,0.079,0.64,87,920,694,0,0,-2,87,920,0,694,0.313,28.12,48.74,0.92,0.13,791,0.9,349,1.9
+5731,2023,4,30,9,30,17.5,1.15,0.079,0.64,91,943,776,0,0,-2,91,943,0,776,0.313,26.4,43.42,0.92,0.13,791,0.9,349,1.8
+5732,2023,4,30,10,0,18.4,1.16,0.076,0.64,92,962,846,0,0,-1.9,150,851,0,817,0.313,25.1,38.4,0.92,0.13,790,0.9,349,1.7
+5733,2023,4,30,10,30,19.2,1.16,0.076,0.64,90,983,906,0,7,-1.9,262,608,0,767,0.313,23.88,33.85,0.91,0.13,790,0.9,346,1.5
+5734,2023,4,30,11,0,19.9,1.28,0.055,0.64,84,1002,952,0,7,-1.8,234,675,0,818,0.313,23.02,30.02,0.91,0.13,790,0.9,342,1.4
+5735,2023,4,30,11,30,20.5,1.28,0.055,0.64,85,1006,980,0,0,-1.8,118,936,0,950,0.313,22.18,27.21,0.91,0.13,790,1,333,1.2
+5736,2023,4,30,12,0,21.1,1.26,0.054,0.64,85,1008,993,0,0,-1.8,132,924,0,964,0.313,21.44,25.79,0.91,0.13,789,1,323,1
+5737,2023,4,30,12,30,21.5,1.26,0.054,0.64,86,1006,990,0,0,-1.8,195,824,0,936,0.312,20.92,25.98,0.91,0.13,789,1,306,1
+5738,2023,4,30,13,0,21.9,1.22,0.056,0.64,87,1000,972,0,0,-1.8,263,646,0,835,0.312,20.42,27.75,0.91,0.13,789,1,289,0.9
+5739,2023,4,30,13,30,22.1,1.22,0.056,0.64,90,987,938,0,0,-1.8,135,915,0,921,0.312,20.14,30.82,0.92,0.13,788,1,278,1
+5740,2023,4,30,14,0,22.3,1.16,0.076,0.64,93,967,887,0,0,-1.8,249,626,0,763,0.312,19.91,34.85,0.92,0.13,788,1.1,267,1.1
+5741,2023,4,30,14,30,22.2,1.16,0.076,0.64,94,948,825,0,0,-1.8,232,645,0,730,0.312,20.03,39.52,0.93,0.13,788,1.1,264,1.1
+5742,2023,4,30,15,0,22.1,1.15,0.089,0.64,94,921,750,0,0,-1.7,201,693,0,694,0.312,20.29,44.62,0.93,0.13,788,1.1,260,1.2
+5743,2023,4,30,15,30,21.7,1.15,0.089,0.64,93,892,666,0,3,-1.7,296,321,0,502,0.312,20.76,49.99,0.93,0.13,787,1.1,258,1.2
+5744,2023,4,30,16,0,21.3,1.15,0.099,0.64,89,853,572,0,5,-1.6,268,113,0,332,0.312,21.55,55.53,0.93,0.13,787,1.1,257,1.2
+5745,2023,4,30,16,30,20.7,1.15,0.099,0.64,84,804,472,0,5,-1.6,249,170,4,331,0.312,22.35,61.17,0.93,0.13,787,1.2,254,1.1
+5746,2023,4,30,17,0,20.2,1.14,0.104,0.64,77,741,368,0,3,-0.9,177,316,7,301,0.312,24.19,66.86,0.93,0.14,787,1.2,250,0.9
+5747,2023,4,30,17,30,19.2,1.14,0.104,0.64,67,655,264,0,0,-0.9,89,556,0,256,0.313,25.74,72.54,0.93,0.14,787,1.2,227,0.6
+5748,2023,4,30,18,0,18.1,1.13,0.107,0.64,55,527,163,0,0,4,57,516,4,163,0.313,39.31,78.17,0.93,0.14,787,1.2,203,0.3
+5749,2023,4,30,18,30,17.1,1.13,0.107,0.64,37,333,74,0,0,4,37,333,0,74,0.313,41.86,83.69,0.93,0.14,787,1.2,165,0.5
+5750,2023,4,30,19,0,16,1.12,0.108,0.64,12,76,13,0,0,2.1,12,76,0,13,0.314,39.23,88.95,0.93,0.14,787,1.2,127,0.7
+5751,2023,4,30,19,30,15,1.12,0.108,0.64,0,0,0,0,0,2.1,0,0,0,0,0.314,41.82,94.54,0.93,0.14,787,1.2,119,0.9
+5752,2023,4,30,20,0,14,1.11,0.105,0.64,0,0,0,0,0,2.6,0,0,0,0,0.314,46.08,99.62,0.93,0.14,787,1.2,112,1.1
+5753,2023,4,30,20,30,13.2,1.11,0.105,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,48.53,104.45,0.93,0.14,787,1.2,110,1.2
+5754,2023,4,30,21,0,12.3,1.09,0.099,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,51.43,108.95,0.93,0.14,787,1.2,107,1.2
+5755,2023,4,30,21,30,11.6,1.09,0.099,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,53.85,113.04,0.93,0.14,787,1.2,107,1.3
+5756,2023,4,30,22,0,10.9,1.07,0.091,0.64,0,0,0,0,0,2,0,0,0,0,0.315,54.01,116.65,0.93,0.14,787,1.2,107,1.3
+5757,2023,4,30,22,30,10.4,1.07,0.091,0.64,0,0,0,0,0,2,0,0,0,0,0.315,55.83,119.68,0.92,0.14,787,1.2,107,1.3
+5758,2023,4,30,23,0,9.8,1.05,0.085,0.64,0,0,0,0,0,1.4,0,0,0,0,0.315,55.95,122.03,0.92,0.14,787,1.2,106,1.3
+5759,2023,4,30,23,30,9.3,1.05,0.085,0.64,0,0,0,0,0,1.4,0,0,0,0,0.315,57.85,123.62,0.92,0.14,787,1.2,105,1.3
+5760,2023,5,1,0,0,8.8,1.04,0.08,0.64,0,0,0,0,0,1,0,0,0,0,0.315,57.97,124.38,0.92,0.14,786,1.1,104,1.2
+5761,2023,5,1,0,30,8.3,1.04,0.08,0.64,0,0,0,0,0,1,0,0,0,0,0.315,59.96,124.26,0.92,0.14,786,1.1,103,1.2
+5762,2023,5,1,1,0,7.8,1.03,0.076,0.64,0,0,0,0,0,0.7,0,0,0,0,0.314,60.7,123.29,0.92,0.14,786,1.1,102,1.2
+5763,2023,5,1,1,30,7.5,1.03,0.076,0.64,0,0,0,0,0,0.7,0,0,0,0,0.314,61.95,121.5,0.92,0.14,786,1.1,103,1.2
+5764,2023,5,1,2,0,7.2,1.04,0.075,0.64,0,0,0,0,0,0.3,0,0,0,0,0.315,61.72,118.96,0.92,0.14,786,1.1,105,1.1
+5765,2023,5,1,2,30,7,1.04,0.075,0.64,0,0,0,0,0,0.3,0,0,0,0,0.315,62.57,115.77,0.92,0.14,786,1.1,108,1.1
+5766,2023,5,1,3,0,6.8,1.07,0.076,0.64,0,0,0,0,0,0,0,0,0,0,0.316,61.93,112.03,0.92,0.14,786,1.1,110,1
+5767,2023,5,1,3,30,6.5,1.07,0.076,0.64,0,0,0,0,0,0,0,0,0,0,0.317,63.21,107.82,0.93,0.14,786,1.1,112,0.9
+5768,2023,5,1,4,0,6.3,1.09,0.077,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.317,62.98,103.23,0.93,0.14,786,1.1,113,0.9
+5769,2023,5,1,4,30,6.2,1.09,0.077,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.318,63.41,98.33,0.93,0.14,786,1.1,113,0.8
+5770,2023,5,1,5,0,6.1,1.12,0.078,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.319,64.15,93.19,0.93,0.14,786,1.1,113,0.8
+5771,2023,5,1,5,30,7.4,1.12,0.078,0.64,18,169,25,0,0,-0.2,18,169,0,25,0.32,58.68,87.63,0.93,0.14,786,1,116,0.8
+5772,2023,5,1,6,0,8.7,1.14,0.076,0.64,39,454,100,0,0,1.7,39,454,0,100,0.321,61.25,82.27,0.93,0.14,786,1,118,0.9
+5773,2023,5,1,6,30,10.3,1.14,0.076,0.64,53,623,196,0,0,1.7,53,623,0,196,0.322,55.02,76.71,0.93,0.14,786,1,114,1.1
+5774,2023,5,1,7,0,11.9,1.14,0.074,0.64,62,732,300,0,0,0.5,62,732,0,300,0.323,45.5,71.05,0.93,0.14,786,1,110,1.3
+5775,2023,5,1,7,30,14.2,1.14,0.074,0.64,70,806,406,0,0,0.5,70,806,0,406,0.323,39.17,65.36,0.93,0.14,786,1,125,1.4
+5776,2023,5,1,8,0,16.6,1.14,0.073,0.64,76,858,509,0,0,0,76,858,0,509,0.323,32.29,59.68,0.93,0.14,786,0.9,141,1.5
+5777,2023,5,1,8,30,18.1,1.14,0.073,0.64,81,897,608,0,0,0,81,897,0,608,0.323,29.38,54.04,0.93,0.14,786,0.9,150,1.7
+5778,2023,5,1,9,0,19.7,1.14,0.072,0.64,84,928,699,0,0,-0.3,84,928,0,699,0.322,26.15,48.52,0.93,0.14,786,0.9,160,2
+5779,2023,5,1,9,30,20.6,1.14,0.072,0.64,88,950,781,0,0,-0.3,88,950,0,781,0.322,24.71,43.19,0.93,0.14,785,0.9,165,2.2
+5780,2023,5,1,10,0,21.5,1.14,0.072,0.64,91,966,851,0,0,-0.3,91,966,0,851,0.321,23.27,38.15,0.93,0.14,785,0.9,170,2.3
+5781,2023,5,1,10,30,22.3,1.14,0.072,0.64,92,980,908,0,0,-0.3,92,980,0,908,0.32,22.17,33.59,0.93,0.14,785,0.9,176,2.6
+5782,2023,5,1,11,0,23,1.18,0.067,0.64,92,990,952,0,0,-0.5,92,990,0,952,0.32,21.03,29.74,0.93,0.14,785,0.9,182,2.9
+5783,2023,5,1,11,30,23.5,1.18,0.067,0.64,95,992,980,0,0,-0.5,95,992,0,980,0.319,20.41,26.91,0.94,0.14,785,1,187,3.2
+5784,2023,5,1,12,0,24,1.18,0.074,0.64,96,991,991,0,0,-0.6,153,905,0,970,0.318,19.67,25.48,0.94,0.14,784,1,191,3.5
+5785,2023,5,1,12,30,24.2,1.18,0.074,0.64,98,987,988,0,0,-0.6,122,952,0,980,0.318,19.43,25.68,0.94,0.14,784,1,195,3.8
+5786,2023,5,1,13,0,24.4,1.18,0.082,0.64,100,980,970,0,0,-0.6,100,980,0,970,0.317,19.12,27.47,0.95,0.14,784,1,198,4.1
+5787,2023,5,1,13,30,24.3,1.18,0.082,0.64,100,971,936,0,6,-0.6,316,495,0,742,0.316,19.24,30.58,0.95,0.14,784,1.1,201,4.1
+5788,2023,5,1,14,0,24.3,1.18,0.085,0.64,100,958,888,0,6,-0.6,404,122,0,504,0.315,19.32,34.63,0.95,0.14,784,1.1,203,4.2
+5789,2023,5,1,14,30,24,1.18,0.085,0.64,98,942,827,0,6,-0.6,376,184,0,518,0.315,19.64,39.32,0.95,0.14,783,1.1,204,4.2
+5790,2023,5,1,15,0,23.7,1.17,0.089,0.64,96,922,754,0,6,-0.4,348,198,0,489,0.315,20.35,44.43,0.95,0.14,783,1.1,205,4.1
+5791,2023,5,1,15,30,23.2,1.17,0.089,0.64,91,897,670,0,6,-0.4,320,156,0,421,0.315,20.97,49.81,0.94,0.14,783,1.1,205,3.9
+5792,2023,5,1,16,0,22.7,1.17,0.09,0.64,87,864,578,0,8,-0.3,226,400,14,453,0.315,21.67,55.36,0.94,0.14,783,1.1,204,3.7
+5793,2023,5,1,16,30,21.9,1.17,0.09,0.64,80,826,480,0,8,-0.3,193,377,21,376,0.315,22.74,61.01,0.94,0.14,783,1.1,201,3.3
+5794,2023,5,1,17,0,21.2,1.17,0.082,0.64,70,775,377,0,0,0.8,115,608,14,355,0.315,25.84,66.7,0.93,0.14,783,1.1,199,2.8
+5795,2023,5,1,17,30,19.4,1.17,0.082,0.64,61,704,274,0,8,0.8,77,468,21,219,0.315,28.86,72.37,0.93,0.14,783,1,195,2
+5796,2023,5,1,18,0,17.6,1.16,0.071,0.64,49,598,173,0,0,6.3,66,471,4,164,0.315,47.58,78,0.92,0.14,783,1,191,1.1
+5797,2023,5,1,18,30,16.5,1.16,0.071,0.64,34,419,81,0,0,6.3,34,419,0,81,0.315,51,83.52,0.91,0.14,783,1,185,1.2
+5798,2023,5,1,19,0,15.4,1.14,0.063,0.64,12,124,15,1,0,3.7,13,106,11,15,0.315,45.61,88.78,0.91,0.14,783,1,179,1.2
+5799,2023,5,1,19,30,15,1.14,0.063,0.64,0,0,0,0,0,3.7,0,0,0,0,0.315,46.79,94.35,0.91,0.14,783,1,168,1.2
+5800,2023,5,1,20,0,14.6,1.12,0.06,0.64,0,0,0,0,3,2.8,0,0,0,0,0.315,45.07,99.42,0.91,0.14,784,1,157,1.2
+5801,2023,5,1,20,30,14,1.12,0.06,0.64,0,0,0,0,5,2.8,0,0,0,0,0.315,46.85,104.24,0.91,0.14,784,1,144,1.2
+5802,2023,5,1,21,0,13.3,1.11,0.06,0.64,0,0,0,0,5,2.8,0,0,0,0,0.315,48.89,108.72,0.91,0.14,784,1.1,132,1.2
+5803,2023,5,1,21,30,12.5,1.11,0.06,0.64,0,0,0,0,5,2.8,0,0,0,0,0.316,51.45,112.8,0.91,0.14,783,1.1,123,1.3
+5804,2023,5,1,22,0,11.7,1.12,0.063,0.64,0,0,0,0,0,2.9,0,0,0,0,0.316,54.85,116.4,0.91,0.14,783,1.1,115,1.4
+5805,2023,5,1,22,30,10.9,1.12,0.063,0.64,0,0,0,0,0,2.9,0,0,0,0,0.316,57.83,119.41,0.92,0.14,783,1.2,111,1.5
+5806,2023,5,1,23,0,10.1,1.13,0.069,0.64,0,0,0,0,0,3.3,0,0,0,0,0.316,62.87,121.75,0.92,0.14,783,1.2,107,1.6
+5807,2023,5,1,23,30,9.6,1.13,0.069,0.64,0,0,0,0,0,3.3,0,0,0,0,0.315,65.01,123.33,0.93,0.14,783,1.2,107,1.6
+5808,2023,5,2,0,0,9,1.15,0.074,0.64,0,0,0,0,0,3.8,0,0,0,0,0.315,70.03,124.08,0.93,0.14,783,1.3,107,1.7
+5809,2023,5,2,0,30,8.6,1.15,0.074,0.64,0,0,0,0,0,3.8,0,0,0,0,0.314,71.95,123.96,0.93,0.14,783,1.3,111,1.7
+5810,2023,5,2,1,0,8.2,1.15,0.082,0.64,0,0,0,0,0,4.1,0,0,0,0,0.314,75.46,122.99,0.94,0.14,783,1.3,115,1.7
+5811,2023,5,2,1,30,8,1.15,0.082,0.64,0,0,0,0,0,4.1,0,0,0,0,0.313,76.49,121.2,0.94,0.14,783,1.3,128,1.7
+5812,2023,5,2,2,0,7.8,1.15,0.09,0.64,0,0,0,0,0,4.1,0,0,0,0,0.313,77.62,118.68,0.94,0.14,783,1.3,141,1.8
+5813,2023,5,2,2,30,7.5,1.15,0.09,0.64,0,0,0,0,0,4.1,0,0,0,0,0.313,79.32,115.5,0.95,0.14,784,1.4,155,2.1
+5814,2023,5,2,3,0,7.3,1.15,0.109,0.64,0,0,0,0,0,4,0,0,0,0,0.314,79.38,111.76,0.95,0.14,784,1.4,169,2.3
+5815,2023,5,2,3,30,7.1,1.15,0.109,0.64,0,0,0,0,8,4,0,0,0,0,0.314,80.58,107.57,0.95,0.14,785,1.4,172,2.3
+5816,2023,5,2,4,0,6.9,1.13,0.131,0.64,0,0,0,0,7,3.9,0,0,0,0,0.314,81.17,102.99,0.95,0.14,785,1.4,176,2.3
+5817,2023,5,2,4,30,6.7,1.13,0.131,0.64,0,0,0,0,7,3.9,0,0,0,0,0.314,82.39,98.1,0.95,0.14,786,1.3,176,2.2
+5818,2023,5,2,5,0,6.6,1.11,0.148,0.64,0,0,0,1,7,4.1,0,0,14,0,0.314,83.91,92.96,0.95,0.14,786,1.3,176,2.1
+5819,2023,5,2,5,30,7.2,1.11,0.148,0.64,20,99,24,7,7,4.1,19,1,100,19,0.314,80.53,87.42,0.95,0.14,786,1.3,180,2.5
+5820,2023,5,2,6,0,7.8,1.1,0.159,0.64,51,321,95,3,7,4.6,66,21,43,69,0.314,79.98,82.06,0.96,0.14,786,1.3,185,2.9
+5821,2023,5,2,6,30,8.7,1.1,0.159,0.64,72,487,186,0,7,4.6,120,112,0,146,0.314,75.35,76.5,0.96,0.14,787,1.3,192,3.6
+5822,2023,5,2,7,0,9.6,1.11,0.164,0.64,89,599,285,0,7,4.6,161,100,0,194,0.314,71,70.85,0.96,0.14,787,1.4,199,4.2
+5823,2023,5,2,7,30,10.8,1.11,0.164,0.64,99,687,388,0,7,4.6,200,101,0,242,0.314,65.55,65.16,0.96,0.14,787,1.4,202,4.2
+5824,2023,5,2,8,0,11.9,1.12,0.152,0.64,106,753,489,0,7,3.9,240,227,0,355,0.315,58.19,59.47,0.96,0.14,787,1.4,205,4.3
+5825,2023,5,2,8,30,13.2,1.12,0.152,0.64,111,808,588,0,8,3.9,212,503,0,509,0.315,53.44,53.83,0.96,0.14,787,1.4,204,4.4
+5826,2023,5,2,9,0,14.4,1.09,0.131,0.64,113,853,680,0,8,3.5,276,415,0,552,0.315,47.98,48.3,0.95,0.14,787,1.4,204,4.4
+5827,2023,5,2,9,30,15.1,1.09,0.131,0.64,114,886,762,0,7,3.5,314,270,0,512,0.315,45.87,42.96,0.95,0.14,787,1.3,204,4.7
+5828,2023,5,2,10,0,15.8,1.05,0.111,0.64,111,915,833,0,7,3,315,23,0,333,0.315,42.32,37.91,0.95,0.14,787,1.3,203,5
+5829,2023,5,2,10,30,16.3,1.05,0.111,0.64,109,937,892,0,7,3,397,141,0,515,0.316,40.99,33.33,0.94,0.14,787,1.3,200,4.9
+5830,2023,5,2,11,0,16.8,1,0.09,0.64,106,956,938,0,7,2.8,375,38,0,408,0.316,39.06,29.46,0.94,0.14,787,1.3,196,4.9
+5831,2023,5,2,11,30,17.4,1,0.09,0.64,104,967,968,0,7,2.8,453,211,0,642,0.317,37.61,26.62,0.94,0.14,787,1.3,193,4.6
+5832,2023,5,2,12,0,18,0.99,0.078,0.64,101,975,983,0,7,2.5,437,286,0,696,0.317,35.5,25.18,0.93,0.14,787,1.3,191,4.3
+5833,2023,5,2,12,30,18.7,0.99,0.078,0.64,98,978,982,0,7,2.5,373,436,0,767,0.317,33.98,25.39,0.93,0.14,787,1.3,191,4.1
+5834,2023,5,2,13,0,19.4,0.99,0.071,0.64,96,978,966,0,7,2,300,590,0,825,0.318,31.28,27.2,0.93,0.14,787,1.2,191,3.8
+5835,2023,5,2,13,30,19.8,0.99,0.071,0.64,94,973,934,0,7,2,218,725,7,844,0.319,30.51,30.33,0.93,0.14,787,1.2,190,3.8
+5836,2023,5,2,14,0,20.1,0.97,0.069,0.64,92,966,889,0,7,1.1,232,683,7,795,0.32,28.16,34.41,0.93,0.14,786,1.2,190,3.7
+5837,2023,5,2,14,30,20.1,0.97,0.069,0.64,91,953,830,0,8,1.1,165,796,7,783,0.321,28.16,39.12,0.93,0.14,786,1.1,192,3.8
+5838,2023,5,2,15,0,20.1,0.95,0.071,0.64,88,936,758,0,7,0.1,270,504,7,631,0.322,26.3,44.25,0.93,0.14,786,1.1,193,3.8
+5839,2023,5,2,15,30,19.9,0.95,0.071,0.64,85,913,676,0,7,0.1,266,447,7,555,0.324,26.63,49.64,0.93,0.14,786,1.1,197,3.9
+5840,2023,5,2,16,0,19.6,0.91,0.074,0.64,81,881,584,0,7,-0.7,209,514,7,502,0.325,25.54,55.2,0.93,0.14,786,1,200,3.9
+5841,2023,5,2,16,30,19,0.91,0.074,0.64,76,841,486,0,7,-0.7,158,521,21,412,0.326,26.51,60.85,0.93,0.14,786,1,204,3.9
+5842,2023,5,2,17,0,18.5,0.85,0.077,0.64,70,783,382,0,7,-1.1,95,572,21,323,0.327,26.53,66.53,0.93,0.13,786,0.9,208,3.8
+5843,2023,5,2,17,30,16.6,0.85,0.077,0.64,62,704,277,0,6,-1.1,54,465,0,196,0.328,29.89,72.21,0.93,0.13,786,0.9,213,2.9
+5844,2023,5,2,18,0,14.7,0.77,0.079,0.64,52,583,175,0,7,1.6,81,176,0,118,0.329,41.17,77.83,0.93,0.13,786,0.8,217,2.1
+5845,2023,5,2,18,30,12.6,0.77,0.079,0.64,37,392,82,6,7,1.6,56,13,86,58,0.331,47.24,83.35,0.92,0.13,787,0.8,222,1.9
+5846,2023,5,2,19,0,10.4,0.69,0.077,0.64,14,102,16,5,7,0.7,13,2,71,13,0.333,51.14,88.61,0.92,0.13,787,0.7,226,1.7
+5847,2023,5,2,19,30,9.7,0.69,0.077,0.64,0,0,0,0,8,0.7,0,0,0,0,0.335,53.58,94.16,0.92,0.13,787,0.7,229,1.7
+5848,2023,5,2,20,0,8.9,0.63,0.076,0.64,0,0,0,0,0,-0.3,0,0,0,0,0.337,52.49,99.23,0.91,0.13,788,0.6,232,1.7
+5849,2023,5,2,20,30,8.4,0.63,0.076,0.64,0,0,0,0,0,-0.3,0,0,0,0,0.34,54.29,104.03,0.91,0.13,788,0.6,234,1.6
+5850,2023,5,2,21,0,7.9,0.6,0.076,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.343,52.77,108.5,0.91,0.13,788,0.6,235,1.6
+5851,2023,5,2,21,30,7.5,0.6,0.076,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.345,54.23,112.57,0.91,0.13,788,0.5,237,1.6
+5852,2023,5,2,22,0,7.1,0.61,0.076,0.64,0,0,0,0,0,-1.9,0,0,0,0,0.348,52.86,116.15,0.91,0.13,788,0.5,239,1.5
+5853,2023,5,2,22,30,6.8,0.61,0.076,0.64,0,0,0,0,0,-1.9,0,0,0,0,0.349,53.96,119.15,0.91,0.13,788,0.5,240,1.5
+5854,2023,5,2,23,0,6.5,0.63,0.076,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.35,52.5,121.47,0.91,0.13,788,0.5,241,1.4
+5855,2023,5,2,23,30,6.3,0.63,0.076,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.35,53.22,123.04,0.91,0.13,788,0.5,242,1.4
+5856,2023,5,3,0,0,6,0.64,0.077,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.35,52.02,123.78,0.91,0.13,788,0.5,243,1.4
+5857,2023,5,3,0,30,5.9,0.64,0.077,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.349,52.38,123.66,0.91,0.13,788,0.5,243,1.4
+5858,2023,5,3,1,0,5.7,0.63,0.083,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.348,51.12,122.69,0.91,0.13,788,0.5,243,1.3
+5859,2023,5,3,1,30,5.6,0.63,0.083,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.347,51.48,120.91,0.92,0.13,788,0.5,240,1.3
+5860,2023,5,3,2,0,5.4,0.6,0.093,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.347,50.55,118.39,0.92,0.13,788,0.5,238,1.3
+5861,2023,5,3,2,30,5.3,0.6,0.093,0.64,0,0,0,0,0,-4.1,0,0,0,0,0.347,50.9,115.22,0.92,0.13,788,0.5,232,1.2
+5862,2023,5,3,3,0,5.1,0.57,0.099,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.347,50.39,111.5,0.92,0.13,789,0.5,226,1.2
+5863,2023,5,3,3,30,5,0.57,0.099,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.347,50.74,107.32,0.92,0.13,789,0.5,218,1.2
+5864,2023,5,3,4,0,4.9,0.55,0.099,0.64,0,0,0,0,0,-4.6,0,0,29,0,0.348,50.3,102.75,0.92,0.13,789,0.5,210,1.2
+5865,2023,5,3,4,30,4.7,0.55,0.099,0.64,0,0,0,0,0,-4.6,0,0,0,0,0.347,51,97.87,0.92,0.13,789,0.5,202,1.2
+5866,2023,5,3,5,0,4.6,0.56,0.097,0.64,0,0,0,0,0,-4.3,0,0,4,0,0.347,52.54,92.74,0.92,0.13,789,0.5,194,1.2
+5867,2023,5,3,5,30,6,0.56,0.097,0.64,23,150,30,0,0,-4.3,23,147,7,30,0.347,47.68,87.21,0.92,0.13,789,0.5,189,1.2
+5868,2023,5,3,6,0,7.3,0.59,0.096,0.64,46,418,105,0,0,-0.7,46,418,0,105,0.347,56.7,81.85,0.92,0.13,789,0.6,184,1.1
+5869,2023,5,3,6,30,9.3,0.59,0.096,0.64,61,590,201,0,0,-0.7,61,590,0,201,0.346,49.52,76.29,0.92,0.13,789,0.6,184,1.5
+5870,2023,5,3,7,0,11.4,0.63,0.099,0.64,74,701,306,0,0,-3,74,701,0,306,0.346,36.5,70.64,0.92,0.13,789,0.6,185,1.8
+5871,2023,5,3,7,30,13.8,0.63,0.099,0.64,82,779,412,0,0,-3,82,779,0,412,0.344,31.2,64.96,0.92,0.13,789,0.6,202,2.2
+5872,2023,5,3,8,0,16.2,0.67,0.099,0.64,90,835,517,0,0,-4.5,90,835,0,517,0.342,23.86,59.27,0.93,0.13,789,0.6,220,2.6
+5873,2023,5,3,8,30,17.3,0.67,0.099,0.64,96,876,616,0,0,-4.5,96,876,0,616,0.34,22.26,53.62,0.93,0.13,789,0.6,221,2.8
+5874,2023,5,3,9,0,18.3,0.69,0.1,0.64,101,907,707,0,0,-4.3,153,781,29,675,0.337,21.12,48.09,0.93,0.13,789,0.6,223,3
+5875,2023,5,3,9,30,19,0.69,0.1,0.64,105,928,787,0,8,-4.3,233,628,0,694,0.336,20.22,42.74,0.93,0.13,789,0.7,222,3
+5876,2023,5,3,10,0,19.7,0.71,0.102,0.64,110,944,857,0,3,-4,281,650,0,795,0.335,19.93,37.68,0.93,0.13,788,0.7,220,3
+5877,2023,5,3,10,30,20.3,0.71,0.102,0.64,106,965,915,0,3,-4,341,576,0,824,0.334,19.21,33.08,0.93,0.13,788,0.7,219,3.1
+5878,2023,5,3,11,0,20.9,0.84,0.079,0.64,100,987,962,0,3,-3.6,285,705,0,900,0.333,18.95,29.19,0.93,0.13,788,0.7,217,3.1
+5879,2023,5,3,11,30,21.3,0.84,0.079,0.64,102,992,991,0,7,-3.6,233,716,0,875,0.333,18.5,26.33,0.93,0.13,788,0.7,216,3.1
+5880,2023,5,3,12,0,21.8,0.86,0.079,0.64,102,995,1005,0,7,-3.4,317,579,0,842,0.333,18.28,24.88,0.93,0.13,787,0.7,215,3.1
+5881,2023,5,3,12,30,22.1,0.86,0.079,0.64,102,994,1002,0,7,-3.4,263,682,0,881,0.334,17.95,25.1,0.93,0.13,787,0.7,214,3.1
+5882,2023,5,3,13,0,22.4,0.85,0.08,0.64,102,988,983,0,7,-3.2,253,706,0,882,0.334,17.82,26.94,0.93,0.13,787,0.8,213,3
+5883,2023,5,3,13,30,22.5,0.85,0.08,0.64,100,982,950,0,7,-3.2,283,640,0,837,0.335,17.69,30.09,0.93,0.13,786,0.8,208,3
+5884,2023,5,3,14,0,22.6,0.79,0.079,0.64,99,972,903,0,7,-3.1,293,581,0,774,0.336,17.76,34.19,0.93,0.13,786,0.8,204,3
+5885,2023,5,3,14,30,22.5,0.79,0.079,0.64,97,956,841,0,7,-3.1,246,619,7,728,0.338,17.87,38.92,0.93,0.13,786,0.8,200,3.1
+5886,2023,5,3,15,0,22.3,0.72,0.082,0.64,95,935,767,0,8,-3.1,162,753,7,703,0.339,18.1,44.06,0.93,0.13,785,0.8,196,3.1
+5887,2023,5,3,15,30,21.9,0.72,0.082,0.64,91,909,682,0,8,-3.1,179,709,7,640,0.34,18.54,49.47,0.93,0.13,785,0.8,193,3.1
+5888,2023,5,3,16,0,21.6,0.67,0.083,0.64,86,875,588,0,8,-3,188,634,14,551,0.342,18.99,55.03,0.93,0.13,785,0.8,189,3.1
+5889,2023,5,3,16,30,20.9,0.67,0.083,0.64,82,832,489,0,0,-3,95,799,4,486,0.343,19.82,60.69,0.93,0.13,785,0.8,185,3
+5890,2023,5,3,17,0,20.3,0.62,0.083,0.64,74,773,384,0,0,-2.6,74,773,0,384,0.344,21.26,66.37,0.93,0.14,785,0.8,182,2.9
+5891,2023,5,3,17,30,18.4,0.62,0.083,0.64,66,692,279,0,0,-2.6,66,692,0,279,0.345,23.91,72.05,0.93,0.14,785,0.8,177,2.1
+5892,2023,5,3,18,0,16.5,0.6,0.082,0.64,54,571,176,2,3,3.6,71,457,50,169,0.345,42.07,77.67,0.93,0.14,785,0.8,172,1.3
+5893,2023,5,3,18,30,14.7,0.6,0.082,0.64,39,379,84,4,0,3.6,52,210,61,77,0.345,47.19,83.18,0.93,0.14,785,0.8,163,1.3
+5894,2023,5,3,19,0,12.9,0.6,0.081,0.64,14,97,17,5,8,2.5,12,1,71,12,0.345,49.28,88.45,0.93,0.14,784,0.9,154,1.3
+5895,2023,5,3,19,30,12.5,0.6,0.081,0.64,0,0,0,0,8,2.5,0,0,0,0,0.345,50.58,93.97,0.93,0.14,784,0.9,141,1.3
+5896,2023,5,3,20,0,12,0.62,0.08,0.64,0,0,0,0,0,1.8,0,0,0,0,0.345,49.51,99.03,0.93,0.14,784,0.9,129,1.4
+5897,2023,5,3,20,30,11.6,0.62,0.08,0.64,0,0,0,0,3,1.8,0,0,0,0,0.344,50.83,103.82,0.93,0.14,784,0.9,116,1.4
+5898,2023,5,3,21,0,11.1,0.64,0.076,0.64,0,0,0,0,8,1.4,0,0,0,0,0.343,51.13,108.28,0.93,0.14,784,0.9,103,1.4
+5899,2023,5,3,21,30,10.6,0.64,0.076,0.64,0,0,0,0,7,1.4,0,0,0,0,0.341,52.79,112.33,0.93,0.14,783,0.9,107,1.4
+5900,2023,5,3,22,0,10.1,0.68,0.075,0.64,0,0,0,0,7,1.4,0,0,0,0,0.34,54.65,115.9,0.94,0.14,783,1,112,1.3
+5901,2023,5,3,22,30,9.7,0.68,0.075,0.64,0,0,0,0,8,1.4,0,0,0,0,0.339,56.13,118.88,0.94,0.14,783,1.1,146,1.4
+5902,2023,5,3,23,0,9.3,0.71,0.081,0.64,0,0,0,0,8,1.9,0,0,0,0,0.337,59.81,121.2,0.94,0.14,784,1.2,179,1.5
+5903,2023,5,3,23,30,8.8,0.71,0.081,0.64,0,0,0,0,7,1.9,0,0,0,0,0.336,61.85,122.76,0.94,0.14,784,1.3,201,2.1
+5904,2023,5,4,0,0,8.2,0.72,0.086,0.64,0,0,0,0,7,3.3,0,0,0,0,0.334,71.23,123.49,0.94,0.14,784,1.4,223,2.7
+5905,2023,5,4,0,30,7.8,0.72,0.086,0.64,0,0,0,0,7,3.3,0,0,0,0,0.333,73.28,123.37,0.95,0.14,785,1.5,229,3
+5906,2023,5,4,1,0,7.5,0.74,0.099,0.64,0,0,0,0,7,4.9,0,0,0,0,0.331,83.77,122.4,0.95,0.14,785,1.6,235,3.2
+5907,2023,5,4,1,30,6.9,0.74,0.099,0.64,0,0,0,0,7,4.9,0,0,0,0,0.33,87.28,120.63,0.95,0.14,785,1.6,229,2.6
+5908,2023,5,4,2,0,6.3,0.83,0.124,0.64,0,0,0,0,8,5.4,0,0,0,0,0.33,94.17,118.11,0.96,0.14,785,1.7,223,2
+5909,2023,5,4,2,30,5.3,0.83,0.124,0.64,0,0,0,0,7,5.3,0,0,0,0,0.33,100,114.96,0.96,0.14,785,1.7,208,2.1
+5910,2023,5,4,3,0,4.3,0.93,0.142,0.64,0,0,0,0,7,3.9,0,0,0,0,0.33,97.2,111.24,0.97,0.14,785,1.7,194,2.1
+5911,2023,5,4,3,30,3.5,0.93,0.142,0.64,0,0,0,0,7,3.5,0,0,0,0,0.331,100,107.07,0.96,0.14,785,1.6,179,1.8
+5912,2023,5,4,4,0,2.6,1,0.144,0.64,0,0,0,0,7,2,0,0,0,0,0.332,95.51,102.51,0.96,0.14,785,1.6,164,1.5
+5913,2023,5,4,4,30,2.6,1,0.144,0.64,0,0,0,0,7,2,0,0,0,0,0.335,95.51,97.64,0.96,0.14,785,1.5,127,1.3
+5914,2023,5,4,5,0,2.6,1.06,0.131,0.64,0,0,0,1,7,1.6,0,0,14,0,0.337,93.39,92.52,0.96,0.14,785,1.5,90,1.1
+5915,2023,5,4,5,30,3.1,1.06,0.131,0.64,23,140,30,7,6,1.6,8,0,100,8,0.34,90.14,87.01,0.95,0.14,785,1.4,77,1.5
+5916,2023,5,4,6,0,3.6,1.1,0.123,0.64,47,382,103,3,6,2,8,0,43,8,0.343,89.44,81.64,0.95,0.14,785,1.4,64,1.8
+5917,2023,5,4,6,30,4.5,1.1,0.123,0.64,65,543,196,0,6,2,4,0,0,4,0.345,84.08,76.09,0.95,0.14,786,1.4,68,1.9
+5918,2023,5,4,7,0,5.5,1.12,0.127,0.64,78,650,296,0,6,2.8,16,0,0,16,0.346,82.85,70.45,0.95,0.14,786,1.4,72,1.9
+5919,2023,5,4,7,30,6.8,1.12,0.127,0.64,89,726,399,0,6,2.8,77,14,0,83,0.345,75.75,64.76,0.95,0.14,786,1.4,93,1.9
+5920,2023,5,4,8,0,8.1,1.13,0.129,0.64,98,782,500,0,7,3.5,248,129,0,314,0.345,72.89,59.07,0.95,0.14,786,1.3,115,1.9
+5921,2023,5,4,8,30,9.9,1.13,0.129,0.64,103,831,598,0,6,3.5,78,3,0,80,0.343,64.58,53.42,0.94,0.14,786,1.3,144,2.4
+5922,2023,5,4,9,0,11.7,1.13,0.114,0.64,103,873,689,0,6,3.4,147,2,0,148,0.342,56.95,47.88,0.94,0.14,786,1.3,173,2.9
+5923,2023,5,4,9,30,13.2,1.13,0.114,0.64,105,905,772,0,6,3.4,179,3,0,181,0.34,51.56,42.52,0.94,0.14,785,1.3,183,3.4
+5924,2023,5,4,10,0,14.8,1.12,0.095,0.64,102,933,843,0,7,2.7,209,7,0,215,0.338,44.13,37.45,0.93,0.14,785,1.2,192,4
+5925,2023,5,4,10,30,16,1.12,0.095,0.64,100,956,903,0,7,2.7,411,105,0,499,0.337,40.87,32.83,0.93,0.14,785,1.2,195,4.3
+5926,2023,5,4,11,0,17.2,1.23,0.071,0.64,94,978,950,0,7,2,438,160,0,578,0.336,35.96,28.92,0.92,0.14,785,1.2,198,4.7
+5927,2023,5,4,11,30,17.8,1.23,0.071,0.64,97,981,978,0,7,2,389,408,0,756,0.335,34.59,26.05,0.93,0.14,784,1.2,199,5
+5928,2023,5,4,12,0,18.5,1.19,0.078,0.64,99,981,991,0,0,1.3,147,874,0,942,0.334,31.57,24.59,0.93,0.14,784,1.2,199,5.4
+5929,2023,5,4,12,30,18.4,1.19,0.078,0.64,100,978,988,0,0,1.3,179,856,0,956,0.334,31.77,24.82,0.93,0.14,784,1.2,199,5.7
+5930,2023,5,4,13,0,18.3,1.14,0.084,0.64,101,972,970,0,0,0.8,215,725,0,863,0.335,30.73,26.67,0.94,0.14,784,1.2,198,6.1
+5931,2023,5,4,13,30,18.2,1.14,0.084,0.64,98,970,939,0,9,0.8,220,171,0,368,0.336,30.92,29.85,0.93,0.14,784,1.1,197,6.1
+5932,2023,5,4,14,0,18,1.1,0.072,0.64,92,967,894,0,9,0.3,220,116,0,316,0.337,30.25,33.98,0.93,0.14,783,1.1,197,6.2
+5933,2023,5,4,14,30,18,1.1,0.072,0.64,90,955,835,0,8,0.3,339,200,0,495,0.336,30.25,38.73,0.93,0.14,783,1.1,197,6.1
+5934,2023,5,4,15,0,18,1.01,0.073,0.64,89,937,764,0,7,-0.4,240,569,0,650,0.336,28.81,43.88,0.93,0.14,783,1,197,6
+5935,2023,5,4,15,30,17.9,1.01,0.073,0.64,86,913,681,0,7,-0.4,218,622,4,624,0.334,28.99,49.3,0.93,0.14,783,1,199,5.9
+5936,2023,5,4,16,0,17.7,0.98,0.078,0.64,83,880,589,0,7,-1.1,190,557,25,511,0.331,27.88,54.87,0.93,0.14,783,1,200,5.7
+5937,2023,5,4,16,30,17.2,0.98,0.078,0.64,77,839,490,0,8,-1.1,172,448,7,392,0.328,28.77,60.53,0.93,0.14,783,1,203,5.5
+5938,2023,5,4,17,0,16.7,0.96,0.081,0.64,72,782,387,0,8,-1.7,92,399,11,253,0.325,28.53,66.21,0.93,0.14,783,1,206,5.3
+5939,2023,5,4,17,30,15.3,0.96,0.081,0.64,63,708,283,0,0,-1.7,79,582,7,260,0.323,31.18,71.89,0.93,0.14,783,0.9,208,4.2
+5940,2023,5,4,18,0,14,0.94,0.076,0.64,51,600,181,0,0,-0.5,51,600,0,181,0.32,37,77.5,0.93,0.14,783,0.9,210,3.2
+5941,2023,5,4,18,30,11.8,0.94,0.076,0.64,37,427,89,0,0,-0.5,37,427,0,89,0.318,42.71,83.01,0.93,0.14,783,0.9,211,2.5
+5942,2023,5,4,19,0,9.6,0.92,0.067,0.64,15,133,19,0,0,0.2,15,133,0,19,0.316,52.04,88.28,0.92,0.14,783,0.8,212,1.9
+5943,2023,5,4,19,30,8.9,0.92,0.067,0.64,0,0,0,0,0,0.2,0,0,0,0,0.314,54.61,93.79,0.92,0.14,784,0.8,213,1.9
+5944,2023,5,4,20,0,8.1,0.88,0.063,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.312,54.87,98.83,0.92,0.14,784,0.8,215,1.9
+5945,2023,5,4,20,30,7.5,0.88,0.063,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.31,57.15,103.61,0.92,0.14,784,0.8,216,1.9
+5946,2023,5,4,21,0,6.9,0.81,0.061,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.309,56.37,108.06,0.92,0.14,784,0.7,217,2
+5947,2023,5,4,21,30,6.5,0.81,0.061,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.308,57.94,112.1,0.92,0.14,784,0.8,218,2.2
+5948,2023,5,4,22,0,6,0.71,0.061,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,57.53,115.65,0.92,0.14,784,0.8,219,2.4
+5949,2023,5,4,22,30,5.7,0.71,0.061,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,58.73,118.62,0.92,0.14,784,0.8,221,2.5
+5950,2023,5,4,23,0,5.3,0.64,0.063,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,60.02,120.93,0.92,0.14,785,0.8,222,2.7
+5951,2023,5,4,23,30,4.7,0.64,0.063,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.309,62.58,122.47,0.92,0.14,785,0.8,221,2.5
+5952,2023,5,5,0,0,4.2,0.64,0.063,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.309,66.01,123.2,0.92,0.14,785,0.8,220,2.4
+5953,2023,5,5,0,30,3.6,0.64,0.063,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.31,68.85,123.08,0.92,0.14,785,0.8,216,2.2
+5954,2023,5,5,1,0,3,0.69,0.061,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.311,72.03,122.12,0.92,0.14,785,0.7,212,2
+5955,2023,5,5,1,30,2.5,0.69,0.061,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.311,74.63,120.34,0.92,0.14,785,0.7,207,1.9
+5956,2023,5,5,2,0,2,0.77,0.06,0.64,0,0,0,0,8,-1.7,0,0,0,0,0.312,76.44,117.84,0.92,0.14,786,0.7,201,1.8
+5957,2023,5,5,2,30,1.6,0.77,0.06,0.64,0,0,0,0,8,-1.7,0,0,0,0,0.312,78.65,114.69,0.92,0.14,786,0.7,197,1.7
+5958,2023,5,5,3,0,1.2,0.84,0.062,0.64,0,0,0,0,0,-1.9,0,0,0,0,0.313,79.69,110.99,0.92,0.14,786,0.7,193,1.6
+5959,2023,5,5,3,30,1,0.84,0.062,0.64,0,0,0,0,8,-1.9,0,0,0,0,0.314,80.84,106.83,0.92,0.14,786,0.7,191,1.6
+5960,2023,5,5,4,0,0.7,0.87,0.065,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.315,81.06,102.28,0.92,0.14,786,0.7,189,1.5
+5961,2023,5,5,4,30,0.8,0.87,0.065,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.317,80.47,97.42,0.92,0.14,786,0.7,188,1.4
+5962,2023,5,5,5,0,0.9,0.9,0.066,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.319,79.57,92.31,0.92,0.14,786,0.7,187,1.4
+5963,2023,5,5,5,30,2.9,0.9,0.066,0.64,23,235,36,0,0,-2.2,23,235,0,36,0.32,68.99,86.81,0.92,0.14,786,0.7,189,1.9
+5964,2023,5,5,6,0,4.8,0.91,0.068,0.64,41,506,116,0,0,-2,45,426,0,108,0.322,61.56,81.44,0.92,0.14,786,0.7,190,2.4
+5965,2023,5,5,6,30,6.6,0.91,0.068,0.64,54,658,214,0,8,-2,112,153,0,149,0.323,54.36,75.9,0.93,0.14,786,0.7,198,2.8
+5966,2023,5,5,7,0,8.4,0.93,0.073,0.64,64,754,319,0,0,-3.1,129,429,0,274,0.324,44.18,70.25,0.93,0.14,786,0.7,205,3.3
+5967,2023,5,5,7,30,9.8,0.93,0.073,0.64,73,817,424,0,0,-3.1,79,794,0,420,0.324,40.21,64.57,0.93,0.14,786,0.7,208,3.7
+5968,2023,5,5,8,0,11.1,0.95,0.082,0.64,81,861,526,0,0,-4.1,81,861,0,526,0.324,34.34,58.87,0.93,0.14,786,0.7,210,4.1
+5969,2023,5,5,8,30,11.8,0.95,0.082,0.64,88,895,624,0,0,-4.1,88,895,0,624,0.323,32.79,53.23,0.94,0.14,786,0.7,212,4.4
+5970,2023,5,5,9,0,12.4,0.96,0.089,0.64,95,920,714,0,0,-4.3,95,920,0,714,0.322,30.95,47.68,0.94,0.14,786,0.7,213,4.7
+5971,2023,5,5,9,30,12.8,0.96,0.089,0.64,99,940,794,0,0,-4.3,148,842,0,771,0.321,30.16,42.31,0.94,0.14,786,0.7,215,5
+5972,2023,5,5,10,0,13.2,0.97,0.092,0.64,104,953,863,0,0,-4.3,203,781,0,825,0.32,29.38,37.22,0.94,0.14,786,0.8,216,5.3
+5973,2023,5,5,10,30,13.4,0.97,0.092,0.64,101,975,922,0,8,-4.3,241,682,0,816,0.32,29,32.59,0.94,0.14,786,0.8,217,5.6
+5974,2023,5,5,11,0,13.6,0.99,0.067,0.64,94,995,967,0,8,-4.3,247,703,0,864,0.319,28.52,28.66,0.94,0.14,786,0.8,218,5.9
+5975,2023,5,5,11,30,13.5,0.99,0.067,0.64,95,999,995,0,7,-4.3,390,406,0,756,0.318,28.71,25.77,0.94,0.14,786,0.8,216,6.1
+5976,2023,5,5,12,0,13.4,0.96,0.067,0.64,96,1002,1009,0,7,-4.5,443,263,0,683,0.317,28.47,24.31,0.94,0.14,786,0.8,215,6.4
+5977,2023,5,5,12,30,13.2,0.96,0.067,0.64,95,1001,1006,0,8,-4.5,374,403,0,741,0.316,28.84,24.54,0.94,0.14,786,0.8,214,6.5
+5978,2023,5,5,13,0,13,0.95,0.067,0.64,95,998,989,0,8,-4.7,390,385,0,735,0.315,28.85,26.41,0.93,0.14,786,0.8,213,6.7
+5979,2023,5,5,13,30,12.7,0.95,0.067,0.64,93,993,956,0,8,-4.7,376,218,0,566,0.315,29.42,29.62,0.93,0.14,786,0.8,213,6.5
+5980,2023,5,5,14,0,12.5,0.94,0.063,0.64,90,986,910,0,5,-4.7,285,43,0,321,0.314,29.79,33.77,0.93,0.14,786,0.8,212,6.4
+5981,2023,5,5,14,30,12.4,0.94,0.063,0.64,87,976,850,0,5,-4.7,255,154,0,375,0.313,29.98,38.54,0.93,0.14,786,0.8,212,6.2
+5982,2023,5,5,15,0,12.4,0.9,0.056,0.64,82,963,778,0,8,-4.7,280,438,0,597,0.313,30.04,43.71,0.92,0.14,786,0.8,213,5.9
+5983,2023,5,5,15,30,12.2,0.9,0.056,0.64,77,943,694,0,8,-4.7,240,487,0,559,0.313,30.43,49.13,0.92,0.14,786,0.8,214,5.7
+5984,2023,5,5,16,0,12.1,0.88,0.053,0.64,72,918,602,0,0,-4.7,157,692,7,557,0.312,30.73,54.71,0.92,0.14,786,0.8,215,5.5
+5985,2023,5,5,16,30,11.7,0.88,0.053,0.64,68,880,503,0,0,-4.7,136,677,4,471,0.312,31.55,60.37,0.92,0.14,786,0.8,218,5.2
+5986,2023,5,5,17,0,11.3,0.87,0.053,0.64,61,829,398,0,0,-4.5,78,766,0,389,0.312,32.89,66.05,0.92,0.13,786,0.8,220,4.9
+5987,2023,5,5,17,30,10.4,0.87,0.053,0.64,55,755,292,0,0,-4.5,82,619,4,276,0.313,34.91,71.73,0.92,0.13,786,0.8,223,4.1
+5988,2023,5,5,18,0,9.5,0.9,0.056,0.64,46,646,188,0,0,-3.4,46,646,0,188,0.314,40.23,77.34,0.92,0.13,786,0.8,226,3.3
+5989,2023,5,5,18,30,7.7,0.9,0.056,0.64,35,470,94,0,0,-3.4,35,470,0,94,0.315,45.43,82.84,0.92,0.13,786,0.8,229,2.5
+5990,2023,5,5,19,0,5.8,0.94,0.059,0.64,16,169,22,2,0,-1.7,15,113,36,19,0.316,58.42,88.11,0.93,0.13,786,0.8,232,1.6
+5991,2023,5,5,19,30,5.2,0.94,0.059,0.64,0,0,0,0,5,-1.7,0,0,0,0,0.317,60.9,93.6,0.93,0.13,786,0.8,233,1.5
+5992,2023,5,5,20,0,4.5,0.99,0.064,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,63.79,98.64,0.93,0.13,786,0.8,233,1.4
+5993,2023,5,5,20,30,4.2,0.99,0.064,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,65.23,103.41,0.93,0.13,787,0.8,231,1.3
+5994,2023,5,5,21,0,3.8,1.05,0.071,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,66.94,107.84,0.93,0.13,787,0.8,228,1.2
+5995,2023,5,5,21,30,3.6,1.05,0.071,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,67.89,111.87,0.94,0.13,787,0.9,224,1.2
+5996,2023,5,5,22,0,3.4,1.08,0.079,0.64,0,0,0,0,8,-1.8,0,0,0,0,0.318,68.57,115.41,0.94,0.13,787,0.9,220,1.2
+5997,2023,5,5,22,30,3.2,1.08,0.079,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.318,69.54,118.37,0.94,0.13,787,0.9,213,1.2
+5998,2023,5,5,23,0,3,1.07,0.082,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.318,70.61,120.66,0.94,0.13,787,0.9,207,1.2
+5999,2023,5,5,23,30,2.8,1.07,0.082,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.319,71.61,122.2,0.94,0.13,787,0.9,203,1.3
+6000,2023,5,6,0,0,2.5,1.03,0.08,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.319,73.1,122.92,0.94,0.13,787,0.9,199,1.4
+6001,2023,5,6,0,30,2.1,1.03,0.08,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.32,75.21,122.8,0.94,0.13,787,0.9,200,1.6
+6002,2023,5,6,1,0,1.7,0.98,0.073,0.64,0,0,0,0,5,-1.9,0,0,0,0,0.321,76.86,121.83,0.94,0.13,787,0.9,201,1.7
+6003,2023,5,6,1,30,1.4,0.98,0.073,0.64,0,0,0,0,4,-1.9,0,0,0,0,0.322,78.53,120.07,0.94,0.13,787,0.9,204,2
+6004,2023,5,6,2,0,1.1,0.96,0.069,0.64,0,0,0,0,8,-1.8,0,0,0,0,0.323,80.77,117.57,0.94,0.13,787,0.9,207,2.2
+6005,2023,5,6,2,30,0.6,0.96,0.069,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.323,83.73,114.44,0.94,0.13,787,0.9,209,2.3
+6006,2023,5,6,3,0,0.1,0.98,0.067,0.64,0,0,0,0,8,-1.6,0,0,0,0,0.323,88.65,110.74,0.94,0.13,787,0.9,210,2.3
+6007,2023,5,6,3,30,-0.3,0.98,0.067,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.324,91.26,106.59,0.94,0.13,787,0.9,210,2.3
+6008,2023,5,6,4,0,-0.7,1.01,0.066,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.324,95.52,102.05,0.94,0.13,787,0.8,209,2.3
+6009,2023,5,6,4,30,-0.7,1.01,0.066,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.324,95.52,97.2,0.94,0.13,787,0.8,207,2.3
+6010,2023,5,6,5,0,-0.7,1.02,0.064,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.325,97.07,92.1,0.94,0.13,788,0.8,204,2.4
+6011,2023,5,6,5,30,0.6,1.02,0.064,0.64,24,256,39,0,0,-1.1,24,256,0,39,0.324,88.34,86.62,0.94,0.13,788,0.8,205,3
+6012,2023,5,6,6,0,1.8,1.01,0.062,0.64,40,526,120,0,0,-0.4,40,526,0,120,0.324,85.54,81.25,0.94,0.13,788,0.8,205,3.6
+6013,2023,5,6,6,30,3.5,1.01,0.062,0.64,51,680,219,0,0,-0.4,51,680,0,219,0.324,75.83,75.7,0.94,0.13,788,0.7,212,4
+6014,2023,5,6,7,0,5.1,0.98,0.057,0.64,59,781,325,0,0,-0.5,59,781,0,325,0.324,67.35,70.07,0.93,0.13,788,0.7,219,4.4
+6015,2023,5,6,7,30,6.2,0.98,0.057,0.64,65,846,431,0,0,-0.5,65,846,0,431,0.324,62.42,64.38,0.93,0.13,788,0.7,221,4.5
+6016,2023,5,6,8,0,7.4,0.97,0.057,0.64,71,893,535,0,0,-2.1,71,893,0,535,0.325,50.8,58.69,0.93,0.13,788,0.7,223,4.7
+6017,2023,5,6,8,30,8.2,0.97,0.057,0.64,76,926,633,0,0,-2.1,76,926,0,633,0.326,48.11,53.03,0.93,0.13,788,0.7,222,4.7
+6018,2023,5,6,9,0,9.1,0.99,0.061,0.64,82,949,723,0,0,-3.2,82,949,0,723,0.327,42,47.48,0.94,0.13,788,0.7,221,4.8
+6019,2023,5,6,9,30,9.8,0.99,0.061,0.64,86,966,803,0,7,-3.1,233,624,0,696,0.328,40.07,42.1,0.94,0.13,788,0.7,220,4.8
+6020,2023,5,6,10,0,10.4,1.01,0.071,0.64,93,976,872,0,7,-3.8,350,401,0,670,0.328,36.68,37,0.94,0.13,788,0.7,219,4.8
+6021,2023,5,6,10,30,11,1.01,0.071,0.64,94,990,930,0,7,-3.8,377,349,0,672,0.329,35.25,32.36,0.94,0.13,788,0.7,218,4.7
+6022,2023,5,6,11,0,11.5,1.03,0.067,0.64,95,1000,975,0,6,-4.4,365,382,0,701,0.329,32.57,28.4,0.95,0.13,788,0.7,217,4.6
+6023,2023,5,6,11,30,12.4,1.03,0.067,0.64,93,1008,1003,0,8,-4.4,220,786,0,929,0.329,30.7,25.49,0.94,0.13,788,0.7,215,4.7
+6024,2023,5,6,12,0,13.2,1.01,0.058,0.64,91,1015,1018,0,3,-4.9,346,618,0,910,0.33,28.11,24.02,0.94,0.13,788,0.7,214,4.8
+6025,2023,5,6,12,30,13.9,1.01,0.058,0.64,90,1013,1014,0,0,-4.9,164,895,0,980,0.33,26.82,24.26,0.94,0.13,787,0.7,213,5
+6026,2023,5,6,13,0,14.5,0.98,0.059,0.64,89,1010,996,0,0,-5.3,146,917,0,969,0.33,24.99,26.16,0.94,0.13,787,0.7,212,5.2
+6027,2023,5,6,13,30,14.6,0.98,0.059,0.64,89,1004,964,0,0,-5.3,158,876,0,921,0.33,24.83,29.39,0.94,0.13,787,0.7,211,5.4
+6028,2023,5,6,14,0,14.7,1.07,0.061,0.64,89,993,916,0,0,-5.8,245,620,0,762,0.331,23.87,33.56,0.95,0.13,787,0.7,210,5.6
+6029,2023,5,6,14,30,14.3,1.07,0.061,0.64,87,977,853,0,8,-5.8,306,329,0,564,0.332,24.49,38.35,0.95,0.13,787,0.8,212,5.7
+6030,2023,5,6,15,0,13.9,1.08,0.066,0.64,86,955,778,0,3,-5.7,285,449,7,611,0.332,25.18,43.53,0.95,0.13,786,0.8,213,5.8
+6031,2023,5,6,15,30,13.5,1.08,0.066,0.64,83,930,694,0,0,-5.7,157,662,0,592,0.334,25.84,48.97,0.95,0.13,786,0.8,217,5.7
+6032,2023,5,6,16,0,13,1.1,0.071,0.64,80,898,601,0,0,-5.2,80,898,0,601,0.336,27.79,54.55,0.95,0.13,786,0.8,221,5.5
+6033,2023,5,6,16,30,12.6,1.1,0.071,0.64,76,856,501,0,0,-5.2,76,856,0,501,0.336,28.53,60.21,0.95,0.13,786,0.8,224,5.2
+6034,2023,5,6,17,0,12.2,1.12,0.076,0.64,71,799,397,0,0,-4.7,71,799,0,397,0.337,30.34,65.9,0.95,0.13,787,0.8,227,4.9
+6035,2023,5,6,17,30,11.2,1.12,0.076,0.64,63,724,292,0,0,-4.7,63,724,0,292,0.337,32.41,71.57,0.95,0.13,787,0.8,230,3.9
+6036,2023,5,6,18,0,10.3,1.11,0.077,0.64,53,613,189,0,0,-3.1,53,613,0,189,0.337,38.88,77.18,0.95,0.13,787,0.8,232,2.9
+6037,2023,5,6,18,30,8.8,1.11,0.077,0.64,38,436,94,0,0,-3.1,38,436,0,94,0.337,42.99,82.68,0.95,0.13,787,0.8,235,2.1
+6038,2023,5,6,19,0,7.2,1.06,0.08,0.64,18,150,23,4,5,-1.1,16,90,54,19,0.337,55.71,87.95,0.95,0.13,787,0.8,237,1.4
+6039,2023,5,6,19,30,6.7,1.06,0.08,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.337,57.65,93.42,0.95,0.13,787,0.8,240,1.3
+6040,2023,5,6,20,0,6.1,1,0.089,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,60.75,98.45,0.95,0.13,788,0.9,243,1.2
+6041,2023,5,6,20,30,5.8,1,0.089,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,62.03,103.2,0.95,0.13,788,0.9,250,1.3
+6042,2023,5,6,21,0,5.4,0.96,0.101,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.336,64.61,107.62,0.95,0.13,788,0.9,257,1.3
+6043,2023,5,6,21,30,5.1,0.96,0.101,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.336,65.97,111.64,0.95,0.13,788,0.9,267,1.4
+6044,2023,5,6,22,0,4.7,0.95,0.109,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.336,69.35,115.17,0.95,0.13,788,1,276,1.5
+6045,2023,5,6,22,30,4.1,0.95,0.109,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.336,72.32,118.11,0.95,0.13,788,1,286,1.4
+6046,2023,5,6,23,0,3.5,0.97,0.106,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.336,76.99,120.39,0.95,0.13,788,1,295,1.2
+6047,2023,5,6,23,30,2.9,0.97,0.106,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.335,80.32,121.92,0.95,0.13,788,1,297,1.1
+6048,2023,5,7,0,0,2.3,1.03,0.103,0.64,0,0,0,0,0,-0.1,0,0,0,0,0.335,84.36,122.64,0.95,0.13,788,1,300,0.9
+6049,2023,5,7,0,30,2,1.03,0.103,0.64,0,0,0,0,0,-0.1,0,0,0,0,0.334,86.18,122.52,0.95,0.13,788,1,294,0.8
+6050,2023,5,7,1,0,1.8,1.1,0.101,0.64,0,0,0,0,7,0,0,0,0,0,0.334,87.98,121.56,0.95,0.13,788,0.9,288,0.7
+6051,2023,5,7,1,30,1.6,1.1,0.101,0.64,0,0,0,0,8,0,0,0,0,0,0.333,89.24,119.8,0.95,0.13,788,0.9,279,0.7
+6052,2023,5,7,2,0,1.4,1.15,0.098,0.64,0,0,0,0,8,0.1,0,0,0,0,0.333,90.93,117.31,0.96,0.13,788,0.9,269,0.7
+6053,2023,5,7,2,30,1.4,1.15,0.098,0.64,0,0,0,0,8,0.1,0,0,0,0,0.332,90.93,114.18,0.96,0.13,788,0.9,260,0.7
+6054,2023,5,7,3,0,1.4,1.15,0.103,0.64,0,0,0,0,8,0.3,0,0,0,0,0.332,92.53,110.5,0.96,0.13,788,0.9,250,0.7
+6055,2023,5,7,3,30,1.4,1.15,0.103,0.64,0,0,0,0,7,0.3,0,0,0,0,0.332,92.65,106.36,0.96,0.13,789,0.9,245,0.7
+6056,2023,5,7,4,0,1.4,1.14,0.105,0.64,0,0,0,0,6,0.5,0,0,0,0,0.332,93.56,101.83,0.96,0.13,789,0.9,240,0.7
+6057,2023,5,7,4,30,1.5,1.14,0.105,0.64,0,0,0,0,6,0.5,0,0,0,0,0.333,92.89,96.99,0.96,0.13,789,0.9,235,0.7
+6058,2023,5,7,5,0,1.5,1.12,0.106,0.64,2,9,2,2,7,0.6,0,0,29,0,0.333,93.91,91.89,0.96,0.13,789,0.9,229,0.8
+6059,2023,5,7,5,30,2.1,1.12,0.106,0.64,27,209,40,7,7,0.6,12,0,100,12,0.334,89.97,86.43,0.96,0.13,789,0.9,223,1.1
+6060,2023,5,7,6,0,2.7,1.08,0.103,0.64,47,448,117,2,7,1,34,1,29,34,0.335,88.41,81.06,0.95,0.13,790,0.9,217,1.4
+6061,2023,5,7,6,30,3.8,1.08,0.103,0.64,61,606,213,0,7,1,96,23,0,102,0.336,81.81,75.52,0.95,0.13,790,0.9,220,1.7
+6062,2023,5,7,7,0,5,0.99,0.096,0.64,72,712,317,0,0,0.6,107,385,0,239,0.337,73.28,69.88,0.95,0.13,790,0.9,224,2
+6063,2023,5,7,7,30,6.3,0.99,0.096,0.64,80,786,422,0,0,0.6,80,786,0,422,0.338,66.98,64.2,0.94,0.13,790,0.9,224,2.2
+6064,2023,5,7,8,0,7.7,0.91,0.089,0.64,85,842,525,0,0,-0.3,85,842,0,525,0.338,56.83,58.5,0.94,0.13,790,0.9,225,2.3
+6065,2023,5,7,8,30,8.7,0.91,0.089,0.64,92,878,622,0,0,-0.3,118,810,0,607,0.338,53.11,52.85,0.94,0.13,790,0.9,221,2.7
+6066,2023,5,7,9,0,9.6,0.86,0.092,0.64,97,905,711,1,8,-0.7,259,328,14,481,0.339,48.5,47.29,0.94,0.13,790,0.9,216,3
+6067,2023,5,7,9,30,10.1,0.86,0.092,0.64,102,925,790,1,5,-0.7,249,66,14,298,0.339,46.9,41.9,0.94,0.13,790,0.9,213,3.3
+6068,2023,5,7,10,0,10.7,0.82,0.098,0.64,107,939,859,0,5,-0.8,256,240,0,448,0.339,44.72,36.79,0.94,0.13,790,0.9,211,3.6
+6069,2023,5,7,10,30,11.1,0.82,0.098,0.64,107,958,918,1,8,-0.8,164,12,14,174,0.34,43.55,32.12,0.95,0.13,790,0.9,210,3.9
+6070,2023,5,7,11,0,11.5,0.83,0.08,0.64,102,976,963,0,8,-1.2,337,301,0,602,0.34,41.32,28.15,0.95,0.13,790,0.9,209,4.1
+6071,2023,5,7,11,30,11.8,0.83,0.08,0.64,103,982,991,0,0,-1.2,257,638,0,834,0.34,40.46,25.23,0.95,0.13,789,0.9,209,4.3
+6072,2023,5,7,12,0,12.1,0.85,0.08,0.64,103,984,1004,0,5,-1.5,418,61,0,474,0.339,38.8,23.75,0.95,0.13,789,0.9,208,4.5
+6073,2023,5,7,12,30,12.3,0.85,0.08,0.64,103,984,1002,0,5,-1.5,353,62,0,410,0.338,38.29,23.99,0.95,0.13,789,0.9,209,4.7
+6074,2023,5,7,13,0,12.6,0.84,0.081,0.64,104,980,985,0,5,-1.7,425,362,0,751,0.337,37.15,25.91,0.95,0.13,789,0.9,210,4.8
+6075,2023,5,7,13,30,12.8,0.84,0.081,0.64,103,972,952,0,5,-1.7,375,98,0,461,0.336,36.67,29.16,0.95,0.13,789,0.9,211,4.8
+6076,2023,5,7,14,0,12.9,0.85,0.084,0.64,102,962,905,0,8,-1.9,371,287,0,611,0.335,35.81,33.36,0.95,0.13,789,0.9,213,4.9
+6077,2023,5,7,14,30,13,0.85,0.084,0.64,100,946,844,0,8,-1.9,288,456,0,647,0.335,35.57,38.16,0.95,0.13,789,0.9,214,4.9
+6078,2023,5,7,15,0,13,0.83,0.09,0.64,99,924,771,0,5,-2.1,347,154,0,459,0.335,35.17,43.36,0.95,0.13,789,0.9,216,4.9
+6079,2023,5,7,15,30,12.8,0.83,0.09,0.64,96,896,686,0,8,-2.1,280,100,0,346,0.335,35.63,48.8,0.95,0.13,789,0.9,218,4.8
+6080,2023,5,7,16,0,12.7,0.84,0.097,0.64,93,860,594,0,8,-2.1,107,207,7,228,0.335,35.83,54.39,0.95,0.13,789,0.9,219,4.7
+6081,2023,5,7,16,30,12.3,0.84,0.097,0.64,88,813,494,0,0,-2.1,122,721,14,482,0.336,36.79,60.05,0.95,0.13,789,1,221,4.3
+6082,2023,5,7,17,0,11.9,0.87,0.104,0.64,81,751,390,0,0,-1.9,81,751,0,390,0.336,38.36,65.74,0.95,0.13,789,1,222,4
+6083,2023,5,7,17,30,11,0.87,0.104,0.64,73,668,286,0,0,-1.9,73,668,4,286,0.336,40.71,71.41,0.95,0.13,789,1,222,2.9
+6084,2023,5,7,18,0,10.1,0.91,0.11,0.64,61,546,184,0,3,0.3,91,367,29,173,0.337,50.5,77.02,0.95,0.13,789,1,222,1.9
+6085,2023,5,7,18,30,8.8,0.91,0.11,0.64,44,368,92,5,5,0.3,48,14,71,50,0.336,55.17,82.51,0.95,0.13,790,1,224,1.5
+6086,2023,5,7,19,0,7.5,0.91,0.111,0.64,19,113,23,6,5,1.1,15,0,86,15,0.336,63.89,87.79,0.95,0.13,790,1,226,1
+6087,2023,5,7,19,30,7.3,0.91,0.111,0.64,0,0,0,0,0,1.1,0,0,0,0,0.336,64.76,93.24,0.95,0.13,790,1,229,1
+6088,2023,5,7,20,0,7.1,0.9,0.105,0.64,0,0,0,0,4,0.5,0,0,0,0,0.336,62.69,98.26,0.95,0.13,790,1,233,0.9
+6089,2023,5,7,20,30,6.9,0.9,0.105,0.64,0,0,0,0,4,0.5,0,0,0,0,0.336,63.55,103,0.95,0.13,790,1,232,0.8
+6090,2023,5,7,21,0,6.7,0.88,0.097,0.64,0,0,0,0,5,-0.1,0,0,0,0,0.337,61.67,107.41,0.95,0.13,790,0.9,231,0.8
+6091,2023,5,7,21,30,6.4,0.88,0.097,0.64,0,0,0,0,5,-0.1,0,0,0,0,0.336,62.95,111.41,0.94,0.13,790,0.9,227,0.8
+6092,2023,5,7,22,0,6.1,0.84,0.091,0.64,0,0,0,0,5,-0.6,0,0,0,0,0.336,62.23,114.93,0.94,0.13,790,0.9,224,0.8
+6093,2023,5,7,22,30,5.8,0.84,0.091,0.64,0,0,0,0,5,-0.6,0,0,0,0,0.335,63.53,117.86,0.94,0.13,790,0.9,222,0.8
+6094,2023,5,7,23,0,5.4,0.84,0.089,0.64,0,0,0,0,5,-1,0,0,0,0,0.334,63.51,120.13,0.94,0.13,790,0.9,221,0.8
+6095,2023,5,7,23,30,5.1,0.84,0.089,0.64,0,0,0,0,0,-1,0,0,0,0,0.331,64.84,121.66,0.94,0.13,790,0.9,222,0.8
+6096,2023,5,8,0,0,4.8,0.86,0.09,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.329,64.99,122.37,0.94,0.13,790,0.9,224,0.8
+6097,2023,5,8,0,30,4.6,0.86,0.09,0.64,0,0,0,0,0,-1.2,0,0,0,0,0.328,65.9,122.24,0.94,0.13,790,0.9,228,0.8
+6098,2023,5,8,1,0,4.3,0.85,0.091,0.64,0,0,0,0,0,-1.4,0,0,0,0,0.326,66.28,121.28,0.94,0.13,790,0.9,232,0.7
+6099,2023,5,8,1,30,4.1,0.85,0.091,0.64,0,0,0,0,0,-1.4,0,0,0,0,0.326,67.21,119.53,0.93,0.13,790,0.8,241,0.6
+6100,2023,5,8,2,0,4,0.79,0.088,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.326,66.79,117.05,0.93,0.13,790,0.8,250,0.5
+6101,2023,5,8,2,30,3.6,0.79,0.088,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.327,68.69,113.93,0.93,0.13,790,0.8,133,0.3
+6102,2023,5,8,3,0,3.3,0.72,0.086,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.327,70.15,110.26,0.93,0.13,790,0.7,16,0.2
+6103,2023,5,8,3,30,2.6,0.72,0.086,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.328,73.71,106.13,0.93,0.13,790,0.7,39,0.4
+6104,2023,5,8,4,0,2,0.67,0.086,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.329,77.62,101.61,0.93,0.13,790,0.7,61,0.6
+6105,2023,5,8,4,30,1.5,0.67,0.086,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.329,80.44,96.78,0.92,0.13,790,0.7,64,0.7
+6106,2023,5,8,5,0,1.1,0.64,0.087,0.64,2,10,2,1,0,-1.2,1,0,14,1,0.329,84.55,91.69,0.92,0.13,790,0.7,68,0.8
+6107,2023,5,8,5,30,2.4,0.64,0.087,0.64,27,222,42,7,5,-1.2,21,0,100,21,0.329,77.05,86.24,0.92,0.13,790,0.7,69,1.2
+6108,2023,5,8,6,0,3.8,0.64,0.087,0.64,47,471,122,2,0,-0.2,52,361,29,109,0.328,74.89,80.88,0.92,0.13,790,0.7,71,1.5
+6109,2023,5,8,6,30,5.5,0.64,0.087,0.64,61,630,220,0,4,-0.2,100,146,0,137,0.328,66.61,75.34,0.92,0.13,791,0.6,74,1.6
+6110,2023,5,8,7,0,7.3,0.64,0.086,0.64,70,734,325,0,5,-0.8,153,235,0,235,0.327,56.47,69.7,0.92,0.13,791,0.6,77,1.8
+6111,2023,5,8,7,30,9.2,0.64,0.086,0.64,78,804,430,0,0,-0.8,143,566,0,391,0.327,49.65,64.02,0.92,0.13,791,0.7,86,1.4
+6112,2023,5,8,8,0,11.1,0.66,0.085,0.64,85,855,534,0,0,-2.5,198,535,0,479,0.326,38.51,58.33,0.92,0.13,790,0.7,96,1.1
+6113,2023,5,8,8,30,12.4,0.66,0.085,0.64,90,892,631,0,0,-2.5,135,773,0,604,0.325,35.35,52.67,0.92,0.13,790,0.7,128,1
+6114,2023,5,8,9,0,13.8,0.73,0.083,0.64,94,923,722,0,0,-3.8,94,923,0,722,0.324,29.4,47.1,0.93,0.13,790,0.7,159,1
+6115,2023,5,8,9,30,14.7,0.73,0.083,0.64,97,944,802,0,0,-3.8,97,944,0,802,0.323,27.75,41.7,0.93,0.13,790,0.7,172,1.4
+6116,2023,5,8,10,0,15.6,0.82,0.086,0.64,102,957,870,0,0,-4,112,939,0,866,0.322,25.66,36.58,0.93,0.13,790,0.8,185,1.8
+6117,2023,5,8,10,30,16.3,0.82,0.086,0.64,98,976,927,0,0,-4,110,958,0,923,0.321,24.54,31.9,0.94,0.13,790,0.8,190,2.3
+6118,2023,5,8,11,0,17,1.02,0.066,0.64,94,995,973,0,0,-3.7,94,995,0,973,0.319,24.04,27.91,0.95,0.13,789,0.8,195,2.8
+6119,2023,5,8,11,30,17.5,1.02,0.066,0.64,94,999,1000,0,0,-3.7,123,960,0,993,0.318,23.29,24.96,0.95,0.13,789,0.9,198,3.2
+6120,2023,5,8,12,0,18.1,1.09,0.065,0.64,94,1000,1011,0,0,-3.2,145,909,0,979,0.317,23.28,23.48,0.95,0.13,788,0.9,202,3.7
+6121,2023,5,8,12,30,18.4,1.09,0.065,0.64,93,1001,1009,0,3,-3.2,307,564,0,823,0.316,22.85,23.73,0.95,0.13,788,0.9,204,4.1
+6122,2023,5,8,13,0,18.7,1.17,0.061,0.64,92,999,992,0,3,-2.7,318,492,0,761,0.315,23.34,25.66,0.95,0.13,788,0.9,206,4.5
+6123,2023,5,8,13,30,18.9,1.17,0.061,0.64,88,994,958,0,8,-2.7,310,498,0,746,0.314,23.02,28.94,0.94,0.13,787,1,207,4.8
+6124,2023,5,8,14,0,19.2,1.2,0.055,0.64,85,988,912,0,8,-2.4,348,314,0,611,0.313,23.01,33.16,0.94,0.13,787,1,209,5.1
+6125,2023,5,8,14,30,19.2,1.2,0.055,0.64,81,979,853,0,8,-2.4,219,605,0,696,0.312,23.01,37.98,0.94,0.13,787,1,210,5.3
+6126,2023,5,8,15,0,19.3,1.1,0.048,0.64,76,967,781,0,0,-2.6,150,719,0,674,0.312,22.59,43.19,0.93,0.13,786,1,211,5.6
+6127,2023,5,8,15,30,19.1,1.1,0.048,0.64,73,947,699,0,3,-2.6,213,473,4,526,0.313,22.87,48.64,0.93,0.13,786,0.9,212,5.8
+6128,2023,5,8,16,0,18.8,0.96,0.048,0.64,69,920,607,0,8,-2.9,206,552,7,529,0.313,22.75,54.23,0.93,0.13,786,0.9,212,5.9
+6129,2023,5,8,16,30,18.2,0.96,0.048,0.64,67,882,509,0,8,-2.9,220,402,7,422,0.314,23.61,59.9,0.93,0.13,786,0.9,213,5.9
+6130,2023,5,8,17,0,17.6,0.88,0.051,0.64,61,832,405,0,8,-3.2,140,463,11,331,0.315,24.01,65.59,0.93,0.14,786,0.9,214,5.8
+6131,2023,5,8,17,30,16.4,0.88,0.051,0.64,57,757,300,0,0,-3.2,68,708,11,295,0.315,25.9,71.26,0.93,0.14,786,0.9,216,5
+6132,2023,5,8,18,0,15.1,0.86,0.059,0.64,49,645,196,0,8,-2.4,85,379,7,171,0.315,29.98,76.86,0.94,0.14,786,0.9,217,4.2
+6133,2023,5,8,18,30,13,0.86,0.059,0.64,38,467,100,5,5,-2.4,55,79,82,66,0.315,34.34,82.35,0.94,0.14,786,0.9,225,3.3
+6134,2023,5,8,19,0,10.8,0.94,0.071,0.64,19,169,26,6,5,-0.7,14,0,86,14,0.315,44.75,87.63,0.95,0.14,787,0.9,233,2.5
+6135,2023,5,8,19,30,10.2,0.94,0.071,0.64,0,0,0,0,5,-0.7,0,0,0,0,0.314,46.57,93.06,0.95,0.14,787,1,249,2.4
+6136,2023,5,8,20,0,9.6,1.05,0.084,0.64,0,0,0,0,3,0.2,0,0,0,0,0.314,51.95,98.07,0.95,0.14,787,1,265,2.4
+6137,2023,5,8,20,30,9.1,1.05,0.084,0.64,0,0,0,0,3,0.2,0,0,0,0,0.314,53.8,102.8,0.95,0.14,788,1,279,2.4
+6138,2023,5,8,21,0,8.5,1.16,0.092,0.64,0,0,0,0,5,1.4,0,0,0,0,0.314,61.02,107.2,0.95,0.14,788,1.1,293,2.5
+6139,2023,5,8,21,30,7.9,1.16,0.092,0.64,0,0,0,0,5,1.4,0,0,0,0,0.314,63.56,111.19,0.95,0.14,788,1.1,301,2.2
+6140,2023,5,8,22,0,7.2,1.22,0.093,0.64,0,0,0,0,8,2.6,0,0,0,0,0.313,72.58,114.69,0.95,0.14,788,1.1,310,2
+6141,2023,5,8,22,30,6.5,1.22,0.093,0.64,0,0,0,0,5,2.6,0,0,0,0,0.312,76.15,117.62,0.95,0.14,788,1.1,319,1.6
+6142,2023,5,8,23,0,5.9,1.21,0.092,0.64,0,0,0,0,5,3.1,0,0,0,0,0.311,82.36,119.88,0.95,0.14,788,1.1,329,1.3
+6143,2023,5,8,23,30,5.4,1.21,0.092,0.64,0,0,0,0,5,3.1,0,0,0,0,0.309,85.26,121.39,0.94,0.14,788,1.1,341,1.2
+6144,2023,5,9,0,0,4.9,1.15,0.087,0.64,0,0,0,0,5,3.1,0,0,0,0,0.308,87.9,122.1,0.94,0.14,788,1.1,353,1.1
+6145,2023,5,9,0,30,4.5,1.15,0.087,0.64,0,0,0,0,0,3.1,0,0,0,0,0.306,90.38,121.97,0.94,0.14,788,1,184,1.1
+6146,2023,5,9,1,0,4.1,1.07,0.087,0.64,0,0,0,0,0,3,0,0,0,0,0.305,92.78,121.02,0.94,0.14,788,1,16,1.1
+6147,2023,5,9,1,30,3.7,1.07,0.087,0.64,0,0,0,0,0,3,0,0,0,0,0.303,95.42,119.27,0.94,0.14,788,1,25,1.1
+6148,2023,5,9,2,0,3.3,1.02,0.092,0.64,0,0,0,0,0,3,0,0,0,0,0.302,98.14,116.8,0.94,0.14,788,1,34,1.1
+6149,2023,5,9,2,30,3,1.02,0.092,0.64,0,0,0,0,0,3,0,0,0,0,0.3,100,113.69,0.94,0.14,788,1,41,1.2
+6150,2023,5,9,3,0,2.7,0.98,0.102,0.64,0,0,0,0,0,2.7,0,0,0,0,0.299,100,110.03,0.94,0.14,789,1,49,1.2
+6151,2023,5,9,3,30,2.4,0.98,0.102,0.64,0,0,0,0,0,2.4,0,0,0,0,0.299,100,105.91,0.94,0.14,789,1,56,1.2
+6152,2023,5,9,4,0,2.2,0.95,0.105,0.64,0,0,0,0,0,2.2,0,0,0,0,0.298,100,101.4,0.94,0.14,789,1,62,1.2
+6153,2023,5,9,4,30,2.2,0.95,0.105,0.64,0,0,0,0,0,2.2,0,0,0,0,0.298,100,96.58,0.94,0.14,789,1,68,1.3
+6154,2023,5,9,5,0,2.2,0.9,0.105,0.64,2,10,2,0,0,2.2,2,10,0,2,0.298,100,91.5,0.93,0.14,789,1,73,1.3
+6155,2023,5,9,5,30,3.8,0.9,0.105,0.64,28,213,43,0,0,2.7,28,213,0,43,0.297,92.64,86.06,0.93,0.14,789,0.9,75,1.9
+6156,2023,5,9,6,0,5.5,0.85,0.103,0.64,50,448,122,0,0,2.6,50,448,0,122,0.297,81.35,80.7,0.93,0.14,789,0.9,77,2.5
+6157,2023,5,9,6,30,7.5,0.85,0.103,0.64,63,604,218,0,0,2.6,63,604,0,218,0.297,71,75.16,0.93,0.14,790,0.9,85,2.4
+6158,2023,5,9,7,0,9.4,0.81,0.1,0.64,74,709,322,0,0,1.9,74,709,0,322,0.297,59.54,69.53,0.93,0.14,790,0.9,92,2.3
+6159,2023,5,9,7,30,11.2,0.81,0.1,0.64,83,782,428,0,0,1.9,83,782,0,428,0.297,52.82,63.85,0.93,0.14,790,0.9,118,2
+6160,2023,5,9,8,0,12.9,0.78,0.099,0.64,90,834,530,0,0,0.8,90,834,0,530,0.297,43.56,58.15,0.93,0.14,790,0.8,144,1.7
+6161,2023,5,9,8,30,14.3,0.78,0.099,0.64,96,873,628,0,0,0.8,96,873,0,628,0.297,39.78,52.49,0.93,0.14,790,0.8,171,2.2
+6162,2023,5,9,9,0,15.7,0.77,0.1,0.64,101,903,718,0,0,-0.4,101,903,0,718,0.297,33.25,46.92,0.93,0.14,790,0.8,197,2.6
+6163,2023,5,9,9,30,16.6,0.77,0.1,0.64,106,924,798,0,0,-0.4,106,924,0,798,0.297,31.4,41.51,0.93,0.14,790,0.8,203,3.2
+6164,2023,5,9,10,0,17.5,0.76,0.103,0.64,110,940,867,0,0,-1.6,110,940,0,867,0.297,27.33,36.38,0.93,0.14,790,0.8,209,3.7
+6165,2023,5,9,10,30,18.2,0.76,0.103,0.64,111,957,925,0,0,-1.6,111,957,0,925,0.297,26.12,31.68,0.93,0.14,789,0.8,210,4
+6166,2023,5,9,11,0,18.9,0.71,0.095,0.64,111,970,970,0,0,-2.7,111,970,0,970,0.297,23.07,27.67,0.93,0.14,789,0.8,211,4.3
+6167,2023,5,9,11,30,19.3,0.71,0.095,0.64,114,973,998,0,0,-2.7,129,947,4,989,0.297,22.5,24.71,0.93,0.14,789,0.7,211,4.6
+6168,2023,5,9,12,0,19.8,0.69,0.105,0.64,119,971,1011,0,0,-3.7,137,936,4,997,0.297,20.13,23.21,0.93,0.14,789,0.7,212,4.8
+6169,2023,5,9,12,30,20.1,0.69,0.105,0.64,119,970,1009,0,0,-3.8,119,970,0,1009,0.297,19.74,23.46,0.93,0.14,788,0.7,211,4.9
+6170,2023,5,9,13,0,20.3,0.66,0.11,0.64,120,963,990,0,0,-4.7,164,895,0,972,0.298,18.1,25.42,0.93,0.14,788,0.7,211,5
+6171,2023,5,9,13,30,20.5,0.66,0.11,0.64,116,962,960,0,3,-4.7,306,577,0,812,0.298,17.88,28.72,0.93,0.14,788,0.7,212,5
+6172,2023,5,9,14,0,20.6,0.63,0.097,0.64,111,960,916,0,0,-5.5,235,667,0,795,0.298,16.71,32.96,0.93,0.14,788,0.7,212,5
+6173,2023,5,9,14,30,20.5,0.63,0.097,0.64,108,947,856,0,0,-5.6,176,779,0,792,0.3,16.79,37.8,0.93,0.14,787,0.6,213,5
+6174,2023,5,9,15,0,20.4,0.62,0.097,0.64,105,928,783,0,0,-6.1,154,765,0,713,0.301,16.18,43.02,0.92,0.14,787,0.6,214,5
+6175,2023,5,9,15,30,20.1,0.62,0.097,0.64,99,907,700,0,0,-6.1,107,884,0,693,0.303,16.48,48.48,0.92,0.14,787,0.6,215,4.9
+6176,2023,5,9,16,0,19.8,0.66,0.094,0.64,93,878,608,0,0,-6.3,95,872,0,607,0.304,16.6,54.08,0.92,0.14,787,0.6,216,4.8
+6177,2023,5,9,16,30,19.2,0.66,0.094,0.64,86,838,508,0,0,-6.3,93,818,0,505,0.306,17.23,59.75,0.92,0.14,787,0.6,217,4.4
+6178,2023,5,9,17,0,18.6,0.68,0.091,0.64,79,785,405,0,0,-6.3,96,730,0,399,0.307,17.89,65.44,0.92,0.14,787,0.6,218,4.1
+6179,2023,5,9,17,30,16.9,0.68,0.091,0.64,69,709,299,0,0,-6.3,83,651,7,294,0.308,19.91,71.1,0.92,0.14,787,0.6,219,2.9
+6180,2023,5,9,18,0,15.2,0.71,0.088,0.64,57,600,195,0,0,-0.3,87,432,0,186,0.308,34.66,76.7,0.92,0.14,787,0.6,220,1.7
+6181,2023,5,9,18,30,13.9,0.71,0.088,0.64,43,428,101,2,0,-0.3,57,266,32,93,0.309,37.69,82.19,0.92,0.14,787,0.7,224,1.4
+6182,2023,5,9,19,0,12.6,0.75,0.085,0.64,19,152,26,6,3,-0.9,18,16,79,19,0.31,39.16,87.46,0.92,0.14,787,0.7,228,1.1
+6183,2023,5,9,19,30,12.8,0.75,0.085,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.311,38.7,92.88,0.92,0.14,788,0.7,252,0.8
+6184,2023,5,9,20,0,12.9,0.78,0.085,0.64,0,0,0,0,0,-2.9,0,0,0,0,0.312,33.16,97.88,0.92,0.14,788,0.7,275,0.4
+6185,2023,5,9,20,30,11.9,0.78,0.085,0.64,0,0,0,0,0,-2.9,0,0,0,0,0.312,35.41,102.6,0.92,0.14,788,0.7,156,0.6
+6186,2023,5,9,21,0,10.8,0.8,0.087,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.313,40.54,106.99,0.93,0.14,787,0.8,36,0.9
+6187,2023,5,9,21,30,9.6,0.8,0.087,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.313,43.91,110.97,0.93,0.14,787,0.8,45,1
+6188,2023,5,9,22,0,8.4,0.81,0.093,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.314,52.93,114.46,0.93,0.14,787,0.8,55,1.2
+6189,2023,5,9,22,30,7.8,0.81,0.093,0.64,0,0,0,0,0,-0.7,0,0,0,0,0.314,55.13,117.37,0.93,0.14,787,0.8,60,1.2
+6190,2023,5,9,23,0,7.3,0.83,0.096,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.314,59.04,119.62,0.93,0.14,786,0.9,65,1.3
+6191,2023,5,9,23,30,6.9,0.83,0.096,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.314,60.67,121.13,0.93,0.14,786,0.9,68,1.4
+6192,2023,5,10,0,0,6.6,0.85,0.096,0.64,0,0,0,0,8,0,0,0,0,0,0.314,62.56,121.84,0.93,0.14,786,0.9,71,1.4
+6193,2023,5,10,0,30,6.3,0.85,0.096,0.64,0,0,0,0,8,-0.1,0,0,0,0,0.314,63.78,121.71,0.93,0.14,785,0.9,73,1.4
+6194,2023,5,10,1,0,6,0.89,0.095,0.64,0,0,0,0,8,0.1,0,0,0,0,0.314,65.72,120.75,0.93,0.14,785,0.9,74,1.5
+6195,2023,5,10,1,30,5.7,0.89,0.095,0.64,0,0,0,0,8,0.1,0,0,0,0,0.314,67.09,119.01,0.93,0.14,785,0.9,78,1.4
+6196,2023,5,10,2,0,5.5,0.92,0.091,0.64,0,0,0,0,7,0.2,0,0,0,0,0.315,68.68,116.55,0.93,0.14,784,0.9,81,1.3
+6197,2023,5,10,2,30,5.3,0.92,0.091,0.64,0,0,0,0,7,0.2,0,0,0,0,0.315,69.64,113.45,0.93,0.14,784,0.9,87,1.2
+6198,2023,5,10,3,0,5,0.95,0.088,0.64,0,0,0,0,8,0.2,0,0,0,0,0.316,71.25,109.8,0.93,0.14,784,0.8,93,1.1
+6199,2023,5,10,3,30,4.9,0.95,0.088,0.64,0,0,0,0,0,0.2,0,0,0,0,0.316,71.75,105.69,0.92,0.14,784,0.8,102,1
+6200,2023,5,10,4,0,4.9,0.98,0.088,0.64,0,0,0,0,0,0.2,0,0,0,0,0.317,71.48,101.19,0.92,0.14,784,0.8,110,1
+6201,2023,5,10,4,30,5.1,0.98,0.088,0.64,0,0,0,0,8,0.2,0,0,0,0,0.317,70.49,96.38,0.92,0.14,784,0.8,124,0.9
+6202,2023,5,10,5,0,5.4,1.02,0.089,0.64,2,16,2,1,0,0.3,1,0,14,1,0.318,69.86,91.31,0.92,0.14,785,0.8,139,0.9
+6203,2023,5,10,5,30,6.9,1.02,0.089,0.64,27,259,46,7,7,0.3,31,3,100,31,0.319,63,85.88,0.92,0.14,785,0.8,156,1.1
+6204,2023,5,10,6,0,8.4,1.06,0.091,0.64,46,490,127,2,7,1,77,161,36,104,0.321,59.81,80.52,0.92,0.14,785,0.8,173,1.4
+6205,2023,5,10,6,30,10.2,1.06,0.091,0.64,60,637,225,0,7,1,104,316,0,186,0.322,53,74.99,0.92,0.14,785,0.8,182,1.5
+6206,2023,5,10,7,0,12,1.08,0.091,0.64,69,734,328,0,7,0.4,136,429,14,287,0.323,44.78,69.36,0.92,0.14,785,0.8,192,1.7
+6207,2023,5,10,7,30,14.2,1.08,0.091,0.64,77,803,433,0,3,0.4,168,443,0,364,0.324,38.8,63.68,0.91,0.14,785,0.8,196,2.9
+6208,2023,5,10,8,0,16.4,1.07,0.088,0.64,83,854,536,0,0,-2.5,83,854,0,536,0.325,27.32,57.99,0.91,0.14,785,0.8,201,4
+6209,2023,5,10,8,30,17.2,1.07,0.088,0.64,88,892,633,0,0,-2.5,88,892,0,633,0.326,25.97,52.32,0.91,0.14,785,0.8,196,4.4
+6210,2023,5,10,9,0,18.1,1.07,0.085,0.64,91,921,722,0,0,-3.8,136,809,4,690,0.326,22.29,46.75,0.91,0.14,785,0.8,191,4.7
+6211,2023,5,10,9,30,18.6,1.07,0.085,0.64,95,942,802,2,8,-3.8,355,220,29,520,0.326,21.6,41.33,0.92,0.14,785,0.8,187,4.9
+6212,2023,5,10,10,0,19.2,1.06,0.084,0.64,98,958,871,1,7,-3.7,345,347,11,625,0.326,20.97,36.18,0.92,0.14,785,0.9,184,5.1
+6213,2023,5,10,10,30,19.5,1.06,0.084,0.64,95,977,928,0,8,-3.7,301,526,0,750,0.326,20.59,31.47,0.92,0.14,785,0.9,183,5.1
+6214,2023,5,10,11,0,19.9,1.2,0.063,0.64,90,995,973,0,7,-3.2,326,521,0,788,0.325,20.83,27.44,0.92,0.14,784,0.9,182,5.2
+6215,2023,5,10,11,30,20.1,1.2,0.063,0.64,91,999,1000,0,7,-3.2,390,414,0,767,0.325,20.57,24.46,0.92,0.14,784,0.9,183,5.1
+6216,2023,5,10,12,0,20.3,1.23,0.064,0.64,92,999,1012,0,6,-2.6,453,276,0,707,0.324,21.17,22.95,0.92,0.14,784,1,185,5.1
+6217,2023,5,10,12,30,20.3,1.23,0.064,0.64,94,995,1008,0,9,-2.6,475,172,0,633,0.324,21.17,23.21,0.92,0.14,784,1,188,4.8
+6218,2023,5,10,13,0,20.3,1.23,0.071,0.64,95,988,989,0,9,-2.2,460,78,0,531,0.323,21.86,25.18,0.93,0.14,783,1,192,4.6
+6219,2023,5,10,13,30,20.1,1.23,0.071,0.64,100,972,954,0,9,-2.2,450,97,0,535,0.324,22.13,28.51,0.93,0.14,783,1,198,4.4
+6220,2023,5,10,14,0,19.8,1.21,0.096,0.64,106,949,904,0,6,-1.9,287,22,0,306,0.324,22.99,32.76,0.94,0.14,783,1.1,205,4.2
+6221,2023,5,10,14,30,18.9,1.21,0.096,0.64,112,919,840,0,6,-1.9,217,24,0,236,0.325,24.31,37.62,0.95,0.14,783,1.1,203,4
+6222,2023,5,10,15,0,18,1.18,0.135,0.64,118,880,763,0,9,-1.3,328,44,0,360,0.326,26.99,42.86,0.96,0.14,783,1.2,201,3.7
+6223,2023,5,10,15,30,16.6,1.18,0.135,0.64,114,848,678,0,6,-1.3,239,18,0,251,0.327,29.51,48.32,0.96,0.14,784,1.2,191,3.8
+6224,2023,5,10,16,0,15.3,1.16,0.146,0.64,111,805,585,0,9,0.4,231,25,0,246,0.328,36.13,53.93,0.96,0.14,784,1.3,181,3.9
+6225,2023,5,10,16,30,13.9,1.16,0.146,0.64,100,768,489,0,9,0.4,145,13,0,152,0.328,39.59,59.6,0.96,0.14,785,1.3,178,3.7
+6226,2023,5,10,17,0,12.6,1.15,0.129,0.64,88,719,389,0,9,1.9,88,4,0,90,0.329,48.03,65.29,0.96,0.14,785,1.3,175,3.4
+6227,2023,5,10,17,30,11.8,1.15,0.129,0.64,72,668,290,0,9,1.9,105,45,0,120,0.332,50.62,70.95,0.95,0.14,785,1.2,174,2.3
+6228,2023,5,10,18,0,11,1.09,0.085,0.64,55,597,194,0,6,2.8,65,106,0,90,0.335,56.84,76.55,0.94,0.14,785,1.2,173,1.1
+6229,2023,5,10,18,30,9.8,1.09,0.085,0.64,41,432,101,4,6,2.8,34,3,57,34,0.335,61.57,82.03,0.94,0.14,785,1.1,152,1
+6230,2023,5,10,19,0,8.5,1.06,0.088,0.64,21,171,29,7,6,3.5,14,0,100,14,0.335,70.87,87.3,0.94,0.14,785,1.1,132,0.9
+6231,2023,5,10,19,30,8.4,1.06,0.088,0.64,0,0,0,1,6,3.5,0,0,14,0,0.333,71.35,92.71,0.94,0.14,785,1.1,134,1.1
+6232,2023,5,10,20,0,8.2,1.07,0.105,0.64,0,0,0,0,6,3.9,0,0,0,0,0.331,74.43,97.7,0.95,0.14,786,1.1,136,1.4
+6233,2023,5,10,20,30,8.2,1.07,0.105,0.64,0,0,0,0,6,3.9,0,0,0,0,0.331,74.43,102.41,0.95,0.14,786,1.1,141,1.3
+6234,2023,5,10,21,0,8.2,1.08,0.111,0.64,0,0,0,0,6,4.4,0,0,0,0,0.33,76.88,106.79,0.95,0.14,786,1.2,145,1.2
+6235,2023,5,10,21,30,8.1,1.08,0.111,0.64,0,0,0,0,6,4.4,0,0,0,0,0.33,77.41,110.75,0.95,0.14,786,1.2,144,1
+6236,2023,5,10,22,0,8.1,1.09,0.112,0.64,0,0,0,0,6,4.5,0,0,0,0,0.331,77.83,114.23,0.95,0.14,786,1.2,143,0.8
+6237,2023,5,10,22,30,8,1.09,0.112,0.64,0,0,0,0,7,4.5,0,0,0,0,0.331,78.36,117.13,0.95,0.14,786,1.2,141,0.6
+6238,2023,5,10,23,0,8,1.1,0.115,0.64,0,0,0,0,7,4.4,0,0,0,0,0.332,78.03,119.38,0.95,0.14,786,1.2,138,0.5
+6239,2023,5,10,23,30,8,1.1,0.115,0.64,0,0,0,0,7,4.4,0,0,0,0,0.333,78.03,120.88,0.95,0.14,786,1.2,161,0.3
+6240,2023,5,11,0,0,8,1.12,0.119,0.64,0,0,0,0,6,4.3,0,0,0,0,0.333,77.42,121.58,0.95,0.14,786,1.3,183,0.2
+6241,2023,5,11,0,30,7.9,1.12,0.119,0.64,0,0,0,0,7,4.3,0,0,0,0,0.334,77.94,121.45,0.95,0.14,786,1.3,244,0.3
+6242,2023,5,11,1,0,7.9,1.13,0.126,0.64,0,0,0,0,6,4,0,0,0,0,0.335,76.53,120.5,0.95,0.14,786,1.3,305,0.4
+6243,2023,5,11,1,30,7.5,1.13,0.126,0.64,0,0,0,0,6,4,0,0,0,0,0.335,78.64,118.76,0.96,0.14,786,1.3,315,0.7
+6244,2023,5,11,2,0,7.1,1.14,0.136,0.64,0,0,0,0,7,4,0,0,0,0,0.335,80.52,116.31,0.96,0.14,786,1.3,325,0.9
+6245,2023,5,11,2,30,6.7,1.14,0.136,0.64,0,0,0,0,6,4,0,0,0,0,0.336,82.76,113.22,0.96,0.14,786,1.3,326,1.1
+6246,2023,5,11,3,0,6.2,1.14,0.147,0.64,0,0,0,0,6,3.9,0,0,0,0,0.336,85.07,109.58,0.96,0.14,786,1.3,326,1.3
+6247,2023,5,11,3,30,5.9,1.14,0.147,0.64,0,0,0,0,6,3.9,0,0,0,0,0.337,86.85,105.48,0.96,0.14,786,1.3,325,1.5
+6248,2023,5,11,4,0,5.6,1.14,0.156,0.64,0,0,0,0,7,3.6,0,0,0,0,0.337,87.12,100.99,0.96,0.14,786,1.3,325,1.7
+6249,2023,5,11,4,30,5.4,1.14,0.156,0.64,0,0,0,0,6,3.6,0,0,0,0,0.337,88.34,96.19,0.96,0.14,786,1.3,326,1.9
+6250,2023,5,11,5,0,5.3,1.14,0.164,0.64,2,8,2,3,6,3.4,1,0,43,1,0.337,87.49,91.13,0.96,0.14,786,1.3,328,2
+6251,2023,5,11,5,30,5.7,1.14,0.164,0.64,32,170,45,7,7,3.4,18,0,100,18,0.338,85.1,85.71,0.96,0.14,786,1.3,329,2.5
+6252,2023,5,11,6,0,6.2,1.15,0.165,0.64,58,374,121,1,7,3.2,42,1,14,42,0.338,81.39,80.35,0.96,0.14,787,1.3,331,3
+6253,2023,5,11,6,30,7,1.15,0.165,0.64,75,533,215,0,7,3.2,83,6,0,85,0.338,76.94,74.82,0.96,0.14,786,1.3,332,3.8
+6254,2023,5,11,7,0,7.7,1.17,0.146,0.64,87,649,317,0,8,3.1,92,4,0,93,0.339,72.54,69.2,0.95,0.14,786,1.3,333,4.7
+6255,2023,5,11,7,30,9.1,1.17,0.146,0.64,95,726,419,0,8,3.1,102,4,0,104,0.338,65.99,63.52,0.95,0.14,786,1.3,336,5.1
+6256,2023,5,11,8,0,10.4,1.17,0.138,0.64,102,784,520,0,8,3.3,137,9,0,142,0.338,61.26,57.82,0.95,0.14,786,1.3,339,5.5
+6257,2023,5,11,8,30,11.2,1.17,0.138,0.64,111,822,615,0,8,3.3,135,3,0,137,0.336,58.17,52.16,0.96,0.14,787,1.3,346,5.3
+6258,2023,5,11,9,0,12.1,1.18,0.144,0.64,118,850,702,0,8,3.2,147,2,0,148,0.334,54.43,46.58,0.96,0.14,787,1.3,353,5.1
+6259,2023,5,11,9,30,12.7,1.18,0.144,0.64,121,877,781,0,8,3.2,143,2,0,145,0.334,52.34,41.15,0.96,0.14,787,1.3,356,5
+6260,2023,5,11,10,0,13.3,1.19,0.135,0.64,122,900,850,0,8,3,293,54,0,337,0.333,49.69,35.99,0.96,0.14,787,1.3,360,4.9
+6261,2023,5,11,10,30,13.8,1.19,0.135,0.64,118,924,908,0,5,3,398,178,0,550,0.333,48.1,31.26,0.96,0.14,787,1.3,185,4.9
+6262,2023,5,11,11,0,14.3,1.27,0.103,0.64,111,947,953,0,5,2.7,480,177,0,637,0.333,45.58,27.21,0.96,0.14,787,1.3,11,4.8
+6263,2023,5,11,11,30,14.5,1.27,0.103,0.64,111,955,982,0,8,2.7,432,198,0,613,0.333,45,24.21,0.96,0.14,787,1.3,16,4.7
+6264,2023,5,11,12,0,14.7,1.26,0.096,0.64,110,960,996,0,5,2.5,368,80,0,442,0.333,43.77,22.69,0.96,0.14,787,1.3,22,4.6
+6265,2023,5,11,12,30,14.8,1.26,0.096,0.64,107,963,994,0,5,2.5,313,31,0,342,0.333,43.49,22.95,0.96,0.14,787,1.3,25,4.4
+6266,2023,5,11,13,0,15,1.24,0.088,0.64,104,964,978,0,8,2.4,336,166,0,487,0.333,42.63,24.94,0.95,0.14,787,1.3,29,4.2
+6267,2023,5,11,13,30,15,1.24,0.088,0.64,104,956,946,0,8,2.4,360,230,0,563,0.334,42.63,28.29,0.95,0.14,787,1.3,29,3.9
+6268,2023,5,11,14,0,15,1.15,0.093,0.64,104,943,899,0,8,2.2,317,298,0,568,0.334,42.02,32.57,0.95,0.14,787,1.3,28,3.7
+6269,2023,5,11,14,30,15,1.15,0.093,0.64,100,932,840,0,8,2.2,277,89,0,348,0.335,42.02,37.44,0.95,0.14,787,1.3,25,3.6
+6270,2023,5,11,15,0,15,1.12,0.087,0.64,96,917,770,0,8,1.9,181,5,0,185,0.335,41.19,42.69,0.95,0.14,787,1.3,22,3.5
+6271,2023,5,11,15,30,14.8,1.12,0.087,0.64,91,896,689,0,7,1.9,190,9,0,196,0.335,41.72,48.17,0.95,0.14,787,1.3,21,3.5
+6272,2023,5,11,16,0,14.6,1.1,0.083,0.64,84,869,598,0,8,1.7,191,20,0,203,0.335,41.54,53.77,0.94,0.14,787,1.3,21,3.5
+6273,2023,5,11,16,30,14.2,1.1,0.083,0.64,78,832,501,0,8,1.7,223,129,0,289,0.335,42.63,59.45,0.94,0.14,787,1.3,23,3.5
+6274,2023,5,11,17,0,13.8,1.12,0.078,0.64,70,784,400,0,7,1.6,173,116,0,222,0.334,43.66,65.14,0.94,0.14,787,1.3,25,3.5
+6275,2023,5,11,17,30,13,1.12,0.078,0.64,63,715,298,0,7,1.7,139,205,0,206,0.333,46.05,70.8,0.94,0.14,788,1.3,30,3.1
+6276,2023,5,11,18,0,12.2,1.13,0.075,0.64,52,615,197,0,8,2.4,106,259,0,167,0.332,51.18,76.39,0.94,0.14,788,1.3,36,2.7
+6277,2023,5,11,18,30,10.6,1.13,0.075,0.64,39,459,104,4,8,2.4,73,130,57,91,0.331,56.88,81.87,0.94,0.14,788,1.3,44,2.1
+6278,2023,5,11,19,0,8.9,1.14,0.074,0.64,21,202,31,7,8,3.5,23,6,100,23,0.33,68.9,87.14,0.94,0.14,788,1.3,51,1.5
+6279,2023,5,11,19,30,8.3,1.14,0.074,0.64,0,0,0,1,8,3.5,0,0,14,0,0.329,71.84,92.53,0.94,0.14,789,1.3,53,1.5
+6280,2023,5,11,20,0,7.6,1.15,0.074,0.64,0,0,0,0,8,3.4,0,0,0,0,0.328,74.73,97.51,0.94,0.14,789,1.3,55,1.4
+6281,2023,5,11,20,30,7.2,1.15,0.074,0.64,0,0,0,0,8,3.4,0,0,0,0,0.328,76.89,102.22,0.94,0.14,790,1.3,53,1.4
+6282,2023,5,11,21,0,6.7,1.15,0.075,0.64,0,0,0,0,8,3.3,0,0,0,0,0.327,79.08,106.58,0.94,0.14,790,1.3,51,1.3
+6283,2023,5,11,21,30,6.4,1.15,0.075,0.64,0,0,0,0,8,3.3,0,0,0,0,0.327,80.73,110.54,0.94,0.14,790,1.3,45,1.3
+6284,2023,5,11,22,0,6,1.13,0.073,0.64,0,0,0,0,8,3.2,0,0,0,0,0.327,81.99,114.01,0.94,0.14,790,1.3,39,1.2
+6285,2023,5,11,22,30,5.6,1.13,0.073,0.64,0,0,0,0,5,3.2,0,0,0,0,0.327,84.4,116.9,0.94,0.14,791,1.3,30,1.2
+6286,2023,5,11,23,0,5.3,1.11,0.068,0.64,0,0,0,0,5,3,0,0,0,0,0.327,84.83,119.13,0.94,0.14,791,1.3,21,1.2
+6287,2023,5,11,23,30,5,1.11,0.068,0.64,0,0,0,0,5,3,0,0,0,0,0.327,86.61,120.62,0.93,0.14,791,1.3,16,1.2
+6288,2023,5,12,0,0,4.7,1.09,0.065,0.64,0,0,0,0,5,2.8,0,0,0,0,0.327,87.5,121.32,0.93,0.14,791,1.3,10,1.2
+6289,2023,5,12,0,30,4.4,1.09,0.065,0.64,0,0,0,0,5,2.8,0,0,0,0,0.327,89.35,121.19,0.93,0.14,791,1.3,11,1.2
+6290,2023,5,12,1,0,4.1,1.08,0.063,0.64,0,0,0,0,4,2.8,0,0,0,0,0.328,91.11,120.25,0.93,0.14,791,1.2,12,1.3
+6291,2023,5,12,1,30,3.8,1.08,0.063,0.64,0,0,0,0,4,2.8,0,0,0,0,0.328,93.05,118.52,0.93,0.14,791,1.2,14,1.3
+6292,2023,5,12,2,0,3.5,1.07,0.062,0.64,0,0,0,0,4,2.8,0,0,0,0,0.328,95.51,116.07,0.93,0.14,791,1.2,15,1.3
+6293,2023,5,12,2,30,3.2,1.07,0.062,0.64,0,0,0,0,5,2.8,0,0,0,0,0.328,97.55,112.99,0.93,0.14,791,1.2,15,1.4
+6294,2023,5,12,3,0,2.8,1.05,0.06,0.64,0,0,0,0,5,2.8,0,0,0,0,0.329,100,109.37,0.93,0.14,791,1.2,16,1.4
+6295,2023,5,12,3,30,2.5,1.05,0.06,0.64,0,0,0,0,4,2.5,0,0,0,0,0.329,100,105.27,0.93,0.14,791,1.2,17,1.5
+6296,2023,5,12,4,0,2.2,1.04,0.06,0.64,0,0,0,0,4,2.2,0,0,0,0,0.329,100,100.8,0.93,0.14,792,1.2,17,1.5
+6297,2023,5,12,4,30,2.4,1.04,0.06,0.64,0,0,0,0,4,2.4,0,0,0,0,0.329,100,96,0.93,0.14,792,1.2,20,1.6
+6298,2023,5,12,5,0,2.6,1.03,0.06,0.64,6,42,5,3,5,2.6,2,0,43,2,0.33,100,90.95,0.93,0.14,792,1.2,22,1.8
+6299,2023,5,12,5,30,4.1,1.03,0.06,0.64,27,324,52,7,5,3.3,30,1,100,30,0.33,94.32,85.54,0.93,0.14,792,1.2,27,2.7
+6300,2023,5,12,6,0,5.6,1.04,0.062,0.64,42,542,134,1,5,3.5,84,50,14,93,0.33,86.34,80.19,0.93,0.14,792,1.1,32,3.7
+6301,2023,5,12,6,30,6.9,1.04,0.062,0.64,53,676,232,0,0,3.5,93,436,0,208,0.33,79.05,74.66,0.93,0.14,793,1.1,34,4.4
+6302,2023,5,12,7,0,8.2,1.03,0.063,0.64,61,765,335,0,0,3.1,79,663,0,316,0.33,70.23,69.04,0.93,0.14,793,1.1,37,5.1
+6303,2023,5,12,7,30,9.3,1.03,0.063,0.64,67,827,438,0,3,3.1,168,339,0,320,0.329,65.21,63.36,0.93,0.14,793,1.1,36,5.2
+6304,2023,5,12,8,0,10.4,1.02,0.062,0.64,74,872,540,0,3,2.4,241,278,0,390,0.329,57.77,57.67,0.93,0.14,793,1.1,35,5.4
+6305,2023,5,12,8,30,11.4,1.02,0.062,0.64,77,906,635,0,4,2.4,330,96,0,389,0.328,54.07,52,0.93,0.14,793,1.1,34,5.3
+6306,2023,5,12,9,0,12.3,0.99,0.062,0.64,82,931,724,0,4,2,348,60,0,389,0.327,49.56,46.41,0.93,0.14,793,1.1,34,5.3
+6307,2023,5,12,9,30,13.2,0.99,0.062,0.64,84,952,803,0,4,2,342,88,0,408,0.327,46.73,40.98,0.93,0.14,793,1.1,34,5.2
+6308,2023,5,12,10,0,14.1,0.96,0.061,0.64,87,967,871,0,4,1.9,347,42,0,381,0.326,43.46,35.81,0.92,0.14,793,1.1,33,5.1
+6309,2023,5,12,10,30,14.9,0.96,0.061,0.64,88,978,926,0,3,1.9,358,40,0,392,0.326,41.28,31.06,0.92,0.14,793,1.1,33,5
+6310,2023,5,12,11,0,15.7,0.95,0.059,0.64,89,986,968,0,4,1.7,401,66,0,460,0.325,38.74,26.99,0.92,0.14,793,1.1,33,4.9
+6311,2023,5,12,11,30,16.3,0.95,0.059,0.64,90,991,996,0,4,1.7,468,268,0,713,0.325,37.29,23.97,0.92,0.14,793,1.1,33,4.8
+6312,2023,5,12,12,0,16.8,0.94,0.06,0.64,91,992,1008,0,3,1.5,429,242,0,653,0.324,35.72,22.44,0.92,0.14,793,1.1,33,4.8
+6313,2023,5,12,12,30,17.2,0.94,0.06,0.64,92,991,1006,0,4,1.5,399,151,0,538,0.324,34.83,22.7,0.92,0.14,793,1.2,33,4.7
+6314,2023,5,12,13,0,17.5,0.94,0.061,0.64,90,988,988,0,3,1.5,426,297,0,696,0.323,34.08,24.71,0.92,0.14,793,1.2,33,4.7
+6315,2023,5,12,13,30,17.6,0.94,0.061,0.64,91,980,956,0,5,1.5,424,130,0,539,0.323,33.87,28.08,0.92,0.14,793,1.2,33,4.7
+6316,2023,5,12,14,0,17.6,0.92,0.067,0.64,91,967,908,0,5,1.4,384,157,0,517,0.323,33.74,32.38,0.92,0.14,792,1.2,33,4.8
+6317,2023,5,12,14,30,17.5,0.92,0.067,0.64,89,955,849,0,3,1.4,267,545,0,701,0.323,33.95,37.27,0.93,0.14,792,1.2,33,4.9
+6318,2023,5,12,15,0,17.3,0.95,0.067,0.64,87,938,778,0,0,1.3,139,787,0,719,0.323,34.14,42.53,0.93,0.14,792,1.2,33,5
+6319,2023,5,12,15,30,16.9,0.95,0.067,0.64,83,917,696,0,0,1.3,228,550,0,596,0.324,35.01,48.01,0.93,0.14,792,1.2,34,5
+6320,2023,5,12,16,0,16.6,0.98,0.067,0.64,78,888,605,0,0,1.2,132,759,0,582,0.324,35.35,53.62,0.93,0.14,792,1.2,35,5
+6321,2023,5,12,16,30,15.9,0.98,0.067,0.64,74,851,508,0,0,1.2,107,766,0,498,0.324,37.01,59.3,0.93,0.14,793,1.2,35,5
+6322,2023,5,12,17,0,15.3,1.01,0.067,0.64,67,801,406,0,0,1.2,110,648,0,384,0.324,38.41,64.99,0.93,0.14,793,1.2,36,5
+6323,2023,5,12,17,30,14.4,1.01,0.067,0.64,60,734,303,0,0,1.2,63,724,11,303,0.324,40.7,70.65,0.93,0.14,793,1.2,38,4.7
+6324,2023,5,12,18,0,13.5,1.03,0.065,0.64,51,635,202,0,0,1.5,51,635,0,202,0.324,44,76.24,0.93,0.14,793,1.2,39,4.4
+6325,2023,5,12,18,30,12.2,1.03,0.065,0.64,38,485,108,0,0,1.5,38,485,0,108,0.324,47.89,81.71,0.93,0.14,793,1.2,40,3.9
+6326,2023,5,12,19,0,10.9,1.04,0.061,0.64,21,228,33,4,0,2.1,22,96,50,27,0.325,54.63,86.98,0.93,0.14,794,1.2,41,3.4
+6327,2023,5,12,19,30,10.2,1.04,0.061,0.64,0,0,0,0,0,2.1,0,0,0,0,0.325,57.23,92.36,0.92,0.14,794,1.2,42,3.3
+6328,2023,5,12,20,0,9.4,1.05,0.056,0.64,0,0,0,0,0,2.5,0,0,0,0,0.325,61.93,97.33,0.92,0.14,794,1.2,42,3.3
+6329,2023,5,12,20,30,8.8,1.05,0.056,0.64,0,0,0,0,0,2.5,0,0,0,0,0.325,64.48,102.03,0.92,0.14,794,1.2,41,3.3
+6330,2023,5,12,21,0,8.2,1.05,0.052,0.64,0,0,0,0,0,2.8,0,0,0,0,0.325,68.65,106.38,0.91,0.14,794,1.2,41,3.3
+6331,2023,5,12,21,30,7.7,1.05,0.052,0.64,0,0,0,0,0,2.8,0,0,0,0,0.326,71.11,110.33,0.91,0.14,795,1.2,40,3.3
+6332,2023,5,12,22,0,7.1,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.326,75,113.78,0.91,0.14,795,1.2,39,3.4
+6333,2023,5,12,22,30,6.6,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.327,77.61,116.67,0.91,0.14,795,1.2,39,3.5
+6334,2023,5,12,23,0,6.2,1.04,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.327,80.11,118.89,0.91,0.14,795,1.2,38,3.5
+6335,2023,5,12,23,30,5.7,1.04,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.328,82.92,120.38,0.91,0.14,795,1.2,38,3.6
+6336,2023,5,13,0,0,5.3,1.05,0.049,0.64,0,0,0,0,0,3,0,0,14,0,0.329,85.13,121.07,0.91,0.14,795,1.2,37,3.6
+6337,2023,5,13,0,30,4.9,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.329,87.53,120.94,0.91,0.14,795,1.2,37,3.6
+6338,2023,5,13,1,0,4.4,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,90.48,120,0.91,0.14,795,1.2,37,3.6
+6339,2023,5,13,1,30,4,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,93.05,118.28,0.91,0.14,795,1.2,37,3.5
+6340,2023,5,13,2,0,3.6,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,95.81,115.84,0.91,0.14,795,1.2,36,3.3
+6341,2023,5,13,2,30,3.3,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,97.85,112.77,0.91,0.14,795,1.2,37,3.2
+6342,2023,5,13,3,0,3,1.07,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.329,100,109.15,0.91,0.14,795,1.2,38,3
+6343,2023,5,13,3,30,2.8,1.07,0.049,0.64,0,0,0,0,0,2.8,0,0,0,0,0.329,100,105.07,0.91,0.14,795,1.2,41,2.9
+6344,2023,5,13,4,0,2.6,1.08,0.05,0.64,0,0,0,0,0,2.6,0,0,29,0,0.328,100,100.61,0.92,0.14,795,1.2,44,2.9
+6345,2023,5,13,4,30,2.8,1.08,0.05,0.64,0,0,0,0,0,2.8,0,0,0,0,0.327,100,95.82,0.92,0.14,795,1.1,43,3.2
+6346,2023,5,13,5,0,3.1,1.09,0.051,0.64,5,52,5,0,0,3,5,52,0,5,0.327,99.01,90.28,0.92,0.14,796,1.1,43,3.6
+6347,2023,5,13,5,30,4.2,1.09,0.051,0.64,26,360,55,0,0,3,26,360,0,55,0.326,91.64,85.38,0.92,0.14,796,1.1,45,4.2
+6348,2023,5,13,6,0,5.4,1.1,0.05,0.64,40,574,139,0,0,2.6,40,574,0,139,0.326,82.33,80.03,0.92,0.14,796,1.1,47,4.9
+6349,2023,5,13,6,30,6.9,1.1,0.05,0.64,49,703,237,0,0,2.6,49,650,0,223,0.326,74.16,74.51,0.92,0.14,795,1.1,49,5.5
+6350,2023,5,13,7,0,8.4,1.1,0.049,0.64,56,788,340,0,0,1.9,69,677,0,313,0.326,63.46,68.89,0.92,0.14,795,1.1,52,6.2
+6351,2023,5,13,7,30,9.8,1.1,0.049,0.64,62,848,444,0,0,1.9,106,557,0,357,0.326,57.76,63.21,0.91,0.14,795,1.1,52,6.5
+6352,2023,5,13,8,0,11.1,1.08,0.047,0.64,67,891,545,0,0,1.5,106,677,0,470,0.327,51.66,57.52,0.91,0.14,795,1.1,53,6.9
+6353,2023,5,13,8,30,12.3,1.08,0.047,0.64,70,923,640,0,3,1.5,234,452,0,513,0.327,47.74,51.85,0.91,0.14,795,1.1,53,7
+6354,2023,5,13,9,0,13.5,1.08,0.047,0.64,74,947,729,0,0,1.3,179,634,0,617,0.328,43.42,46.25,0.91,0.14,795,1.1,54,7.1
+6355,2023,5,13,9,30,14.6,1.08,0.047,0.64,77,964,807,0,0,1.3,211,582,0,652,0.328,40.44,40.81,0.91,0.14,795,1.1,54,7
+6356,2023,5,13,10,0,15.6,1.11,0.05,0.64,80,976,873,0,0,1.1,210,663,0,749,0.329,37.33,35.63,0.91,0.14,794,1.2,55,6.9
+6357,2023,5,13,10,30,16.4,1.11,0.05,0.64,81,987,928,0,0,1.1,183,764,0,839,0.329,35.48,30.87,0.91,0.14,794,1.2,55,6.6
+6358,2023,5,13,11,0,17.1,1.36,0.049,0.64,83,994,970,0,0,1,218,735,0,874,0.33,33.79,26.78,0.92,0.14,794,1.2,55,6.4
+6359,2023,5,13,11,30,17.5,1.36,0.049,0.64,86,994,996,0,0,1,173,848,0,949,0.33,32.95,23.73,0.93,0.14,794,1.2,55,6.1
+6360,2023,5,13,12,0,17.8,1.41,0.065,0.64,91,988,1006,0,0,1.2,142,905,0,980,0.33,32.67,22.19,0.93,0.14,793,1.3,55,5.8
+6361,2023,5,13,12,30,17.8,1.41,0.065,0.64,94,985,1004,0,0,1.2,242,673,0,864,0.33,32.67,22.46,0.94,0.14,793,1.3,56,5.6
+6362,2023,5,13,13,0,17.8,1.41,0.069,0.64,93,980,985,0,3,1.5,374,439,0,774,0.329,33.38,24.49,0.94,0.14,793,1.3,57,5.3
+6363,2023,5,13,13,30,17.7,1.41,0.069,0.64,92,973,952,0,3,1.5,378,374,0,709,0.328,33.59,27.88,0.94,0.14,793,1.3,59,5.1
+6364,2023,5,13,14,0,17.6,1.42,0.07,0.64,91,963,906,0,0,1.7,242,658,0,799,0.327,34.43,32.2,0.94,0.14,793,1.3,60,4.9
+6365,2023,5,13,14,30,17.3,1.42,0.07,0.64,89,950,847,0,0,1.7,128,870,0,822,0.325,35.09,37.1,0.94,0.14,793,1.3,59,4.7
+6366,2023,5,13,15,0,17,1.43,0.071,0.64,87,933,776,0,0,1.9,97,907,0,767,0.324,36.23,42.37,0.94,0.14,793,1.3,58,4.5
+6367,2023,5,13,15,30,16.7,1.43,0.071,0.64,82,912,694,0,0,1.9,105,859,14,681,0.322,36.92,47.86,0.94,0.14,793,1.4,56,4.6
+6368,2023,5,13,16,0,16.4,1.43,0.069,0.64,78,885,605,0,7,2.1,156,666,29,552,0.321,38.24,53.48,0.94,0.14,793,1.4,54,4.6
+6369,2023,5,13,16,30,16,1.43,0.069,0.64,72,851,508,0,7,2.1,224,271,7,363,0.32,39.23,59.15,0.93,0.14,793,1.4,52,4.7
+6370,2023,5,13,17,0,15.6,1.41,0.063,0.64,65,807,408,0,6,2.6,133,17,0,140,0.319,41.48,64.84,0.93,0.14,793,1.3,49,4.8
+6371,2023,5,13,17,30,14.8,1.41,0.063,0.64,58,744,306,0,6,2.5,92,99,0,125,0.318,43.66,70.5,0.93,0.14,793,1.3,47,4.8
+6372,2023,5,13,18,0,13.9,1.38,0.058,0.64,48,654,205,0,6,3.5,87,22,0,92,0.317,49.45,76.09,0.92,0.14,793,1.3,45,4.7
+6373,2023,5,13,18,30,12.8,1.38,0.058,0.64,36,508,111,4,6,3.5,52,9,57,53,0.316,53.18,81.56,0.92,0.14,794,1.3,45,4.8
+6374,2023,5,13,19,0,11.7,1.35,0.057,0.64,21,252,35,7,6,3.9,16,0,100,16,0.316,58.93,86.83,0.92,0.14,794,1.3,46,4.8
+6375,2023,5,13,19,30,11.1,1.35,0.057,0.64,0,0,0,1,6,3.9,0,0,14,0,0.315,61.31,92.19,0.92,0.14,794,1.4,48,4.9
+6376,2023,5,13,20,0,10.5,1.34,0.059,0.64,0,0,0,0,6,4.3,0,0,0,0,0.315,65.67,97.15,0.92,0.14,795,1.4,51,5
+6377,2023,5,13,20,30,10.1,1.34,0.059,0.64,0,0,0,0,7,4.3,0,0,0,0,0.315,67.44,101.84,0.93,0.14,795,1.4,55,5.1
+6378,2023,5,13,21,0,9.8,1.35,0.06,0.64,0,0,0,0,7,4.7,0,0,0,0,0.314,70.45,106.18,0.93,0.14,795,1.4,58,5.2
+6379,2023,5,13,21,30,9.3,1.35,0.06,0.64,0,0,0,0,8,4.7,0,0,0,0,0.314,72.85,110.12,0.92,0.14,795,1.4,61,5
+6380,2023,5,13,22,0,8.9,1.37,0.061,0.64,0,0,0,0,8,4.9,0,0,0,0,0.313,76.08,113.56,0.92,0.14,795,1.4,64,4.8
+6381,2023,5,13,22,30,8.6,1.37,0.061,0.64,0,0,0,0,5,4.9,0,0,0,0,0.313,77.64,116.44,0.93,0.14,795,1.4,65,4.6
+6382,2023,5,13,23,0,8.2,1.4,0.063,0.64,0,0,0,0,3,5,0,0,0,0,0.312,80.32,118.65,0.93,0.14,795,1.4,65,4.4
+6383,2023,5,13,23,30,7.8,1.4,0.063,0.64,0,0,0,0,3,5,0,0,0,0,0.312,82.53,120.14,0.93,0.14,795,1.4,63,4.3
+6384,2023,5,14,0,0,7.4,1.42,0.063,0.64,0,0,0,0,0,5,0,0,0,0,0.311,84.55,120.83,0.93,0.14,795,1.3,60,4.2
+6385,2023,5,14,0,30,6.9,1.42,0.063,0.64,0,0,0,0,0,5,0,0,0,0,0.311,87.49,120.7,0.93,0.14,795,1.3,56,4.1
+6386,2023,5,14,1,0,6.4,1.43,0.061,0.64,0,0,0,0,0,4.8,0,0,0,0,0.311,89.75,119.76,0.93,0.14,795,1.3,52,4.1
+6387,2023,5,14,1,30,5.9,1.43,0.061,0.64,0,0,0,0,0,4.8,0,0,0,0,0.311,92.89,118.04,0.93,0.14,795,1.3,50,4
+6388,2023,5,14,2,0,5.4,1.44,0.059,0.64,0,0,0,0,0,4.6,0,0,0,0,0.311,94.87,115.62,0.92,0.14,796,1.3,47,3.9
+6389,2023,5,14,2,30,4.9,1.44,0.059,0.64,0,0,0,0,0,4.6,0,0,0,0,0.312,98.22,112.56,0.92,0.14,796,1.4,46,3.6
+6390,2023,5,14,3,0,4.4,1.45,0.058,0.64,0,0,0,0,0,4.3,0,0,0,0,0.312,99.59,108.95,0.92,0.14,796,1.4,45,3.4
+6391,2023,5,14,3,30,4.1,1.45,0.058,0.64,0,0,0,0,0,4.1,0,0,0,0,0.313,100,104.88,0.92,0.14,796,1.4,45,3.4
+6392,2023,5,14,4,0,3.7,1.44,0.062,0.64,0,0,0,0,0,3.7,0,0,0,0,0.314,100,100.42,0.93,0.14,796,1.4,45,3.3
+6393,2023,5,14,4,30,3.8,1.44,0.062,0.64,0,0,0,0,4,3.8,0,0,0,0,0.314,100,95.64,0.93,0.14,797,1.5,47,3.5
+6394,2023,5,14,5,0,3.9,1.4,0.07,0.64,5,48,5,3,4,3.6,3,7,39,3,0.315,98.16,90.14,0.93,0.14,797,1.5,49,3.7
+6395,2023,5,14,5,30,4.8,1.4,0.07,0.64,28,324,55,7,4,3.6,16,7,96,17,0.315,92.17,85.22,0.94,0.14,797,1.5,52,3.6
+6396,2023,5,14,6,0,5.8,1.36,0.079,0.64,45,519,136,1,4,3.6,32,0,14,32,0.316,85.95,79.87,0.94,0.14,797,1.5,56,3.5
+6397,2023,5,14,6,30,7.5,1.36,0.079,0.64,57,644,231,0,4,3.7,25,0,0,25,0.316,76.59,74.36,0.94,0.14,798,1.5,55,3.2
+6398,2023,5,14,7,0,9.1,1.35,0.088,0.64,68,725,331,0,4,3.9,39,0,0,39,0.316,69.69,68.74,0.95,0.14,798,1.5,54,2.8
+6399,2023,5,14,7,30,10.8,1.35,0.088,0.64,77,785,433,0,4,3.9,53,0,0,53,0.316,62.21,63.07,0.95,0.14,798,1.5,55,2.2
+6400,2023,5,14,8,0,12.6,1.33,0.094,0.64,85,828,531,0,5,3.8,123,0,0,123,0.315,55.21,57.37,0.95,0.14,798,1.6,56,1.6
+6401,2023,5,14,8,30,13.7,1.33,0.094,0.64,91,863,626,0,5,3.9,194,22,0,208,0.313,51.39,51.7,0.95,0.14,798,1.5,63,1.4
+6402,2023,5,14,9,0,14.8,1.31,0.096,0.64,96,890,713,0,8,4.1,173,18,0,185,0.311,48.78,46.1,0.95,0.14,798,1.5,69,1.3
+6403,2023,5,14,9,30,15.6,1.31,0.096,0.64,99,912,791,0,7,4.1,306,291,0,527,0.31,46.34,40.65,0.95,0.14,798,1.5,79,1.3
+6404,2023,5,14,10,0,16.3,1.29,0.095,0.64,102,928,858,0,8,4.2,230,606,0,724,0.308,44.65,35.46,0.95,0.14,798,1.5,90,1.4
+6405,2023,5,14,10,30,16.9,1.29,0.095,0.64,104,942,914,0,7,4.2,251,613,0,778,0.306,42.98,30.68,0.95,0.14,798,1.5,102,1.4
+6406,2023,5,14,11,0,17.4,1.32,0.089,0.64,104,953,956,0,7,4.2,238,677,0,844,0.304,41.42,26.57,0.95,0.14,798,1.5,115,1.5
+6407,2023,5,14,11,30,17.4,1.32,0.089,0.64,104,960,984,0,7,4.2,264,624,0,836,0.302,41.42,23.51,0.95,0.14,798,1.5,129,1.5
+6408,2023,5,14,12,0,17.4,1.33,0.086,0.64,104,964,998,0,7,3.9,423,280,0,683,0.3,40.75,21.95,0.95,0.14,798,1.5,144,1.5
+6409,2023,5,14,12,30,17.3,1.33,0.086,0.64,103,965,996,0,7,3.9,423,296,0,697,0.298,41.01,22.22,0.95,0.14,798,1.5,155,1.6
+6410,2023,5,14,13,0,17.3,1.33,0.082,0.64,101,964,980,0,7,3.8,422,324,0,717,0.296,40.59,24.26,0.95,0.14,798,1.5,165,1.7
+6411,2023,5,14,13,30,17.3,1.33,0.082,0.64,97,963,950,0,7,3.8,426,280,0,674,0.296,40.59,27.68,0.95,0.14,798,1.5,169,1.8
+6412,2023,5,14,14,0,17.3,1.45,0.069,0.64,91,961,906,0,7,3.6,414,160,0,550,0.295,40.17,32.01,0.95,0.14,798,1.5,173,1.9
+6413,2023,5,14,14,30,17.2,1.45,0.069,0.64,89,950,848,0,0,3.6,159,781,0,783,0.296,40.42,36.93,0.95,0.14,798,1.4,175,1.9
+6414,2023,5,14,15,0,17.2,1.47,0.065,0.64,85,936,778,0,8,3.4,261,473,0,611,0.297,39.79,42.21,0.94,0.14,798,1.4,177,1.8
+6415,2023,5,14,15,30,17,1.47,0.065,0.64,80,918,698,0,7,3.4,259,350,11,495,0.298,40.3,47.71,0.94,0.14,798,1.4,180,1.6
+6416,2023,5,14,16,0,16.8,1.47,0.062,0.64,76,893,609,0,6,3.1,227,165,11,326,0.299,40.04,53.33,0.94,0.14,798,1.4,182,1.4
+6417,2023,5,14,16,30,16.5,1.47,0.062,0.64,70,860,513,0,6,3.1,126,9,0,131,0.3,40.8,59.01,0.94,0.14,798,1.4,177,1
+6418,2023,5,14,17,0,16.2,1.46,0.057,0.64,63,816,412,0,6,3.2,143,50,0,164,0.301,41.88,64.7,0.94,0.14,798,1.3,172,0.6
+6419,2023,5,14,17,30,15.4,1.46,0.057,0.64,56,755,310,0,6,3.2,96,10,0,99,0.303,44.07,70.35,0.93,0.14,798,1.3,116,0.5
+6420,2023,5,14,18,0,14.7,1.42,0.053,0.64,48,668,210,0,6,6.3,75,143,0,110,0.305,57.18,75.94,0.93,0.14,798,1.3,59,0.5
+6421,2023,5,14,18,30,13.6,1.42,0.053,0.64,36,527,115,4,6,6.3,44,108,57,60,0.307,61.39,81.4,0.93,0.14,798,1.3,61,0.7
+6422,2023,5,14,19,0,12.5,1.37,0.051,0.64,21,275,37,7,6,5.5,20,1,100,20,0.308,62.39,86.67,0.93,0.14,798,1.2,64,0.9
+6423,2023,5,14,19,30,11.9,1.37,0.051,0.64,0,0,0,2,6,5.5,0,0,29,0,0.31,64.89,92.02,0.93,0.14,798,1.2,66,0.9
+6424,2023,5,14,20,0,11.4,1.35,0.05,0.64,0,0,0,0,6,4.9,0,0,0,0,0.311,64.22,96.97,0.92,0.14,799,1.2,69,0.9
+6425,2023,5,14,20,30,10.8,1.35,0.05,0.64,0,0,0,0,7,4.9,0,0,0,0,0.312,66.82,101.65,0.92,0.14,799,1.2,72,1
+6426,2023,5,14,21,0,10.3,1.34,0.049,0.64,0,0,0,0,7,4.6,0,0,0,0,0.313,67.77,105.99,0.92,0.14,799,1.2,74,1
+6427,2023,5,14,21,30,9.6,1.34,0.049,0.64,0,0,0,0,7,4.6,0,0,0,0,0.313,71.01,109.91,0.92,0.14,799,1.2,80,1.1
+6428,2023,5,14,22,0,9,1.33,0.049,0.64,0,0,0,0,7,4.5,0,0,0,0,0.313,73.42,113.35,0.92,0.14,799,1.2,86,1.1
+6429,2023,5,14,22,30,8.5,1.33,0.049,0.64,0,0,0,0,7,4.5,0,0,0,0,0.312,75.94,116.21,0.92,0.14,799,1.2,95,1.2
+6430,2023,5,14,23,0,8,1.31,0.05,0.64,0,0,0,0,7,4.6,0,0,0,0,0.312,78.94,118.42,0.92,0.14,799,1.2,103,1.2
+6431,2023,5,14,23,30,7.6,1.31,0.05,0.64,0,0,0,0,0,4.6,0,0,0,0,0.311,81.11,119.9,0.92,0.14,799,1.2,111,1.2
+6432,2023,5,15,0,0,7.2,1.26,0.052,0.64,0,0,0,0,3,4.7,0,0,0,0,0.311,84.29,120.59,0.92,0.14,799,1.2,119,1.2
+6433,2023,5,15,0,30,6.8,1.26,0.052,0.64,0,0,0,0,8,4.7,0,0,0,0,0.309,86.63,120.46,0.92,0.14,799,1.3,124,1.2
+6434,2023,5,15,1,0,6.5,1.21,0.054,0.64,0,0,0,0,7,4.8,0,0,0,0,0.308,88.77,119.52,0.93,0.14,799,1.3,129,1.2
+6435,2023,5,15,1,30,6.3,1.21,0.054,0.64,0,0,0,0,6,4.8,0,0,0,0,0.307,90,117.81,0.93,0.14,799,1.3,131,1.1
+6436,2023,5,15,2,0,6.1,1.16,0.059,0.64,0,0,0,0,7,4.8,0,0,0,0,0.305,91.19,115.4,0.93,0.14,799,1.3,133,1
+6437,2023,5,15,2,30,6.1,1.16,0.059,0.64,0,0,0,0,8,4.8,0,0,0,0,0.304,91.19,112.34,0.94,0.14,799,1.3,136,1
+6438,2023,5,15,3,0,6.1,1.13,0.066,0.64,0,0,0,0,5,4.7,0,0,0,0,0.303,90.71,108.75,0.94,0.14,799,1.4,140,1
+6439,2023,5,15,3,30,6.1,1.13,0.066,0.64,0,0,0,0,8,4.7,0,0,0,0,0.303,90.71,104.69,0.94,0.14,799,1.4,140,0.9
+6440,2023,5,15,4,0,6,1.11,0.071,0.64,0,0,0,0,0,4.6,0,0,0,0,0.303,90.43,100.24,0.94,0.14,799,1.4,139,0.9
+6441,2023,5,15,4,30,6,1.11,0.071,0.64,0,0,0,0,5,4.6,0,0,0,0,0.302,90.43,95.47,0.94,0.14,799,1.4,138,0.9
+6442,2023,5,15,5,0,6,1.08,0.075,0.64,6,43,6,0,0,4.5,5,36,4,5,0.302,89.89,90,0.94,0.14,799,1.4,136,0.9
+6443,2023,5,15,5,30,7.2,1.08,0.075,0.64,30,312,57,5,3,4.5,32,68,75,38,0.301,82.78,85.07,0.94,0.14,799,1.4,139,1.1
+6444,2023,5,15,6,0,8.3,1.08,0.078,0.64,47,518,139,1,0,4.5,53,456,11,134,0.301,77.18,79.72,0.94,0.14,799,1.4,143,1.3
+6445,2023,5,15,6,30,10.3,1.08,0.078,0.64,58,650,235,0,0,4.5,58,650,0,235,0.301,67.49,74.21,0.94,0.14,799,1.4,174,1.2
+6446,2023,5,15,7,0,12.2,1.08,0.077,0.64,66,739,336,0,0,4.7,66,739,14,336,0.301,60.01,68.6,0.94,0.14,799,1.4,206,1.1
+6447,2023,5,15,7,30,14,1.08,0.077,0.64,74,803,439,0,0,4.7,74,803,0,439,0.301,53.44,62.93,0.94,0.14,800,1.4,212,1.6
+6448,2023,5,15,8,0,15.8,1.08,0.073,0.64,78,852,539,0,0,4.4,78,852,0,539,0.302,46.49,57.23,0.93,0.14,800,1.4,217,2.1
+6449,2023,5,15,8,30,16.7,1.08,0.073,0.64,82,886,633,0,0,4.4,82,886,0,633,0.301,43.91,51.56,0.93,0.14,800,1.4,219,2.5
+6450,2023,5,15,9,0,17.7,1.06,0.072,0.64,86,913,721,0,0,4.5,86,913,0,721,0.301,41.57,45.95,0.93,0.14,800,1.4,220,2.8
+6451,2023,5,15,9,30,18.3,1.06,0.072,0.64,90,933,799,0,0,4.5,90,933,0,799,0.3,39.99,40.5,0.93,0.14,799,1.4,224,3.2
+6452,2023,5,15,10,0,18.9,1.05,0.072,0.64,92,948,866,0,0,4.7,92,948,0,866,0.299,39.15,35.29,0.93,0.14,799,1.4,227,3.5
+6453,2023,5,15,10,30,19.2,1.05,0.072,0.64,88,970,924,0,0,4.7,88,970,0,924,0.298,38.43,30.5,0.93,0.14,799,1.4,228,3.6
+6454,2023,5,15,11,0,19.5,1.28,0.045,0.64,80,992,969,0,0,4.7,150,878,0,937,0.298,37.69,26.37,0.93,0.14,799,1.4,230,3.6
+6455,2023,5,15,11,30,19.7,1.28,0.045,0.64,81,997,997,0,0,4.7,210,792,0,938,0.297,37.23,23.28,0.93,0.14,799,1.4,230,3.6
+6456,2023,5,15,12,0,20,1.3,0.045,0.64,82,999,1010,0,0,4.4,215,773,0,933,0.296,35.89,21.71,0.93,0.14,799,1.4,230,3.5
+6457,2023,5,15,12,30,20.3,1.3,0.045,0.64,83,997,1007,0,0,4.4,126,907,0,967,0.295,35.23,21.99,0.93,0.14,799,1.4,230,3.3
+6458,2023,5,15,13,0,20.5,1.3,0.048,0.64,82,993,989,0,0,4,149,833,0,910,0.295,33.74,24.05,0.93,0.14,799,1.4,230,3.1
+6459,2023,5,15,13,30,20.5,1.3,0.048,0.64,81,987,957,0,0,4,133,856,0,892,0.294,33.74,27.48,0.94,0.14,799,1.4,229,2.8
+6460,2023,5,15,14,0,20.6,1.33,0.047,0.64,80,979,912,0,0,3.6,220,604,0,733,0.293,32.58,31.83,0.94,0.14,798,1.4,229,2.6
+6461,2023,5,15,14,30,20.5,1.33,0.047,0.64,78,968,853,0,3,3.6,262,541,0,695,0.292,32.78,36.77,0.94,0.14,798,1.4,231,2.3
+6462,2023,5,15,15,0,20.4,1.32,0.047,0.64,76,952,783,0,8,3.2,322,189,0,462,0.291,32.15,42.06,0.94,0.14,798,1.4,233,2.1
+6463,2023,5,15,15,30,20.1,1.32,0.047,0.64,72,933,702,0,7,3.2,216,53,0,252,0.291,32.75,47.56,0.94,0.14,798,1.5,240,1.9
+6464,2023,5,15,16,0,19.9,1.32,0.046,0.64,69,907,612,0,7,3,157,12,0,164,0.291,32.56,53.19,0.94,0.14,797,1.5,248,1.7
+6465,2023,5,15,16,30,19.4,1.32,0.046,0.64,65,873,516,0,8,3,203,80,0,244,0.29,33.59,58.87,0.94,0.14,797,1.5,257,1.7
+6466,2023,5,15,17,0,19,1.32,0.047,0.64,61,827,416,0,7,3,164,107,0,210,0.29,34.58,64.55,0.94,0.14,797,1.5,267,1.6
+6467,2023,5,15,17,30,18.1,1.32,0.047,0.64,54,764,313,0,8,3,124,95,0,156,0.29,36.58,70.21,0.94,0.14,797,1.5,276,1.4
+6468,2023,5,15,18,0,17.2,1.31,0.049,0.64,47,671,212,0,5,5.9,117,69,0,134,0.29,47.24,75.79,0.94,0.14,797,1.5,284,1.1
+6469,2023,5,15,18,30,15.7,1.31,0.049,0.64,37,527,117,4,3,5.9,57,93,54,71,0.29,51.96,81.25,0.94,0.14,797,1.5,291,1
+6470,2023,5,15,19,0,14.2,1.28,0.053,0.64,22,276,39,7,5,6.2,22,0,100,22,0.29,58.74,86.52,0.94,0.14,797,1.5,299,1
+6471,2023,5,15,19,30,13.5,1.28,0.053,0.64,0,5,0,2,3,6.3,0,0,29,0,0.29,61.54,91.85,0.94,0.14,798,1.5,304,1
+6472,2023,5,15,20,0,12.8,1.26,0.056,0.64,0,0,0,0,3,5.8,0,0,0,0,0.29,62.45,96.8,0.94,0.14,798,1.5,309,1
+6473,2023,5,15,20,30,12.3,1.26,0.056,0.64,0,0,0,0,5,5.8,0,0,0,0,0.29,64.53,101.47,0.94,0.14,798,1.5,311,1
+6474,2023,5,15,21,0,11.8,1.24,0.058,0.64,0,0,0,0,0,5.8,0,0,0,0,0.29,66.52,105.79,0.94,0.14,798,1.5,313,1
+6475,2023,5,15,21,30,11.3,1.24,0.058,0.64,0,0,0,0,0,5.8,0,0,0,0,0.29,68.75,109.71,0.94,0.14,798,1.5,313,1
+6476,2023,5,15,22,0,10.8,1.22,0.058,0.64,0,0,0,0,0,5.6,0,0,0,0,0.289,70.39,113.14,0.94,0.14,798,1.5,313,0.9
+6477,2023,5,15,22,30,10.4,1.22,0.058,0.64,0,0,0,0,0,5.6,0,0,0,0,0.289,72.2,115.99,0.94,0.14,797,1.5,309,0.9
+6478,2023,5,15,23,0,10,1.2,0.058,0.64,0,0,0,0,0,5.5,0,0,0,0,0.289,73.59,118.19,0.94,0.14,797,1.4,306,0.9
+6479,2023,5,15,23,30,9.6,1.2,0.058,0.64,0,0,0,0,0,5.5,0,0,0,0,0.289,75.58,119.67,0.93,0.14,797,1.4,301,0.9
+6480,2023,5,16,0,0,9.3,1.17,0.058,0.64,0,0,0,0,0,5.4,0,0,0,0,0.289,76.77,120.35,0.93,0.14,797,1.3,296,0.9
+6481,2023,5,16,0,30,9,1.17,0.058,0.64,0,0,0,0,0,5.4,0,0,0,0,0.289,78.33,120.23,0.93,0.14,797,1.3,291,0.9
+6482,2023,5,16,1,0,8.7,1.15,0.058,0.64,0,0,0,0,0,5.3,0,0,0,0,0.289,79.13,119.3,0.93,0.14,797,1.3,286,0.9
+6483,2023,5,16,1,30,8.6,1.15,0.058,0.64,0,0,0,0,0,5.3,0,0,0,0,0.29,79.57,117.59,0.93,0.14,796,1.2,284,0.9
+6484,2023,5,16,2,0,8.4,1.14,0.06,0.64,0,0,0,0,0,5,0,0,0,0,0.29,79.38,115.18,0.93,0.14,796,1.2,282,0.9
+6485,2023,5,16,2,30,8.3,1.14,0.06,0.64,0,0,0,0,0,5,0,0,0,0,0.291,79.92,112.14,0.93,0.14,796,1.2,283,0.8
+6486,2023,5,16,3,0,8.2,1.14,0.064,0.64,0,0,0,0,0,4.7,0,0,0,0,0.291,78.72,108.55,0.93,0.14,796,1.2,284,0.7
+6487,2023,5,16,3,30,8,1.14,0.064,0.64,0,0,0,0,0,4.7,0,0,0,0,0.292,79.79,104.5,0.93,0.14,796,1.2,287,0.6
+6488,2023,5,16,4,0,7.9,1.16,0.07,0.64,0,0,0,0,0,4.4,0,0,0,0,0.293,78.5,100.06,0.93,0.14,797,1.2,290,0.6
+6489,2023,5,16,4,30,7.9,1.16,0.07,0.64,0,0,0,0,0,4.4,0,0,0,0,0.293,78.5,95.3,0.93,0.14,797,1.2,297,0.5
+6490,2023,5,16,5,0,7.9,1.18,0.079,0.64,6,46,6,0,0,4.3,6,46,0,6,0.294,77.81,89.86,0.94,0.14,797,1.2,304,0.4
+6491,2023,5,16,5,30,9.2,1.18,0.079,0.64,31,314,59,2,0,4.3,30,187,21,47,0.294,71.27,84.92,0.94,0.14,797,1.2,312,0.4
+6492,2023,5,16,6,0,10.5,1.19,0.093,0.64,48,506,140,1,4,4.6,61,4,14,62,0.295,66.86,79.58,0.94,0.14,797,1.3,319,0.4
+6493,2023,5,16,6,30,12.4,1.19,0.093,0.64,63,626,235,0,0,4.6,105,372,0,207,0.295,58.98,74.07,0.95,0.14,797,1.3,307,0.6
+6494,2023,5,16,7,0,14.3,1.18,0.111,0.64,78,701,335,0,0,4,81,689,0,334,0.296,50.02,68.46,0.95,0.14,797,1.3,295,0.8
+6495,2023,5,16,7,30,16,1.18,0.111,0.64,88,761,436,0,0,4,88,761,0,436,0.296,44.86,62.79,0.95,0.14,797,1.4,292,1.2
+6496,2023,5,16,8,0,17.7,1.17,0.121,0.64,98,803,534,0,0,3.1,98,803,0,534,0.295,37.61,57.1,0.95,0.14,797,1.4,289,1.6
+6497,2023,5,16,8,30,18.6,1.17,0.121,0.64,102,843,628,0,0,3.1,123,784,0,612,0.294,35.55,51.42,0.95,0.14,797,1.4,283,1.8
+6498,2023,5,16,9,0,19.5,1.17,0.115,0.64,106,875,716,0,0,2.6,195,674,0,665,0.293,32.59,45.81,0.95,0.14,797,1.4,276,2
+6499,2023,5,16,9,30,20.2,1.17,0.115,0.64,109,900,795,0,0,2.6,153,815,0,774,0.292,31.17,40.35,0.95,0.14,796,1.4,272,2.2
+6500,2023,5,16,10,0,20.8,1.16,0.106,0.64,109,921,862,0,5,2.6,356,473,0,743,0.291,29.94,35.13,0.94,0.14,796,1.4,267,2.4
+6501,2023,5,16,10,30,21.3,1.16,0.106,0.64,103,948,921,0,0,2.6,169,823,0,879,0.289,29.03,30.32,0.94,0.14,796,1.4,267,2.6
+6502,2023,5,16,11,0,21.8,1.45,0.067,0.64,92,975,967,0,0,2.6,92,975,0,967,0.288,28.24,26.17,0.94,0.14,796,1.4,266,2.8
+6503,2023,5,16,11,30,22.1,1.45,0.067,0.64,93,980,995,0,0,2.6,193,575,0,722,0.286,27.7,23.07,0.94,0.14,795,1.4,267,2.9
+6504,2023,5,16,12,0,22.4,1.44,0.067,0.64,93,982,1007,0,8,2.6,225,23,0,246,0.284,27.15,21.48,0.94,0.14,795,1.4,267,3
+6505,2023,5,16,12,30,22.6,1.44,0.067,0.64,95,980,1005,0,8,2.6,275,247,0,504,0.283,26.83,21.76,0.94,0.14,795,1.4,268,3.1
+6506,2023,5,16,13,0,22.8,1.44,0.071,0.64,95,975,987,0,8,2.5,282,88,0,362,0.281,26.4,23.83,0.94,0.14,794,1.4,268,3.1
+6507,2023,5,16,13,30,22.8,1.44,0.071,0.64,92,971,955,0,8,2.5,245,336,7,544,0.28,26.4,27.29,0.94,0.14,794,1.4,270,3.1
+6508,2023,5,16,14,0,22.9,1.56,0.067,0.64,89,964,910,0,3,2.4,297,506,0,728,0.28,26,31.66,0.95,0.14,794,1.5,271,3
+6509,2023,5,16,14,30,22.7,1.56,0.067,0.64,89,949,851,0,0,2.4,185,739,0,778,0.28,26.32,36.61,0.95,0.14,794,1.5,272,2.9
+6510,2023,5,16,15,0,22.6,1.52,0.074,0.64,88,930,780,0,0,2.1,275,536,0,674,0.28,25.97,41.91,0.95,0.14,793,1.5,274,2.8
+6511,2023,5,16,15,30,22.2,1.52,0.074,0.64,86,906,699,0,5,2.1,327,183,0,451,0.28,26.6,47.42,0.95,0.14,793,1.5,276,2.7
+6512,2023,5,16,16,0,21.9,1.48,0.079,0.64,83,875,609,0,8,1.9,263,367,14,484,0.28,26.64,53.04,0.95,0.14,793,1.5,278,2.6
+6513,2023,5,16,16,30,21.4,1.48,0.079,0.64,78,838,513,0,7,1.9,224,127,0,290,0.281,27.46,58.73,0.95,0.14,793,1.5,281,2.4
+6514,2023,5,16,17,0,20.9,1.45,0.08,0.64,72,789,413,0,7,1.8,129,289,4,254,0.281,28.11,64.41,0.95,0.14,793,1.4,285,2.2
+6515,2023,5,16,17,30,19.8,1.45,0.08,0.64,64,724,311,0,8,1.8,149,257,7,237,0.281,30.08,70.06,0.95,0.14,793,1.4,289,1.5
+6516,2023,5,16,18,0,18.8,1.42,0.078,0.64,55,631,211,0,5,6,117,189,7,164,0.282,43.14,75.64,0.95,0.14,793,1.4,293,0.9
+6517,2023,5,16,18,30,17.7,1.42,0.078,0.64,42,490,118,3,5,6,65,102,43,81,0.283,46.21,81.1,0.95,0.14,793,1.4,300,0.8
+6518,2023,5,16,19,0,16.7,1.38,0.075,0.64,25,265,42,6,3,5.4,28,18,93,29,0.283,47.1,86.36,0.95,0.14,793,1.3,307,0.7
+6519,2023,5,16,19,30,16.1,1.38,0.075,0.64,3,17,2,2,5,5.4,1,0,29,1,0.284,48.93,91.69,0.94,0.14,793,1.3,318,0.7
+6520,2023,5,16,20,0,15.5,1.35,0.074,0.64,0,0,0,0,3,4.2,0,0,0,0,0.285,46.95,96.63,0.94,0.14,793,1.3,330,0.7
+6521,2023,5,16,20,30,14.8,1.35,0.074,0.64,0,0,0,0,3,4.2,0,0,0,0,0.286,49.1,101.29,0.94,0.14,793,1.3,341,0.6
+6522,2023,5,16,21,0,14.1,1.34,0.075,0.64,0,0,0,0,0,4.2,0,0,0,0,0.287,51.37,105.6,0.94,0.14,793,1.3,351,0.6
+6523,2023,5,16,21,30,13.4,1.34,0.075,0.64,0,0,0,0,0,4.2,0,0,0,0,0.287,53.76,109.51,0.94,0.14,793,1.3,179,0.7
+6524,2023,5,16,22,0,12.7,1.34,0.074,0.64,0,0,0,0,0,3.9,0,0,0,0,0.288,55.22,112.93,0.94,0.14,793,1.3,7,0.8
+6525,2023,5,16,22,30,12.2,1.34,0.074,0.64,0,0,0,0,0,3.9,0,0,0,0,0.288,57.06,115.78,0.94,0.14,793,1.3,11,0.9
+6526,2023,5,16,23,0,11.6,1.34,0.072,0.64,0,0,0,0,0,3.7,0,0,0,0,0.288,58.44,117.97,0.94,0.14,793,1.3,15,1.1
+6527,2023,5,16,23,30,11.2,1.34,0.072,0.64,0,0,0,0,0,3.7,0,0,0,0,0.288,60,119.44,0.94,0.14,793,1.3,16,1.1
+6528,2023,5,17,0,0,10.7,1.34,0.072,0.64,0,0,0,0,0,3.7,0,0,0,0,0.288,61.98,120.12,0.94,0.14,793,1.3,17,1.2
+6529,2023,5,17,0,30,10.3,1.34,0.072,0.64,0,0,0,0,0,3.7,0,0,0,0,0.288,63.65,120,0.94,0.14,793,1.3,17,1.2
+6530,2023,5,17,1,0,9.9,1.33,0.075,0.64,0,0,0,0,0,3.8,0,0,0,0,0.288,65.75,119.07,0.94,0.14,793,1.3,17,1.2
+6531,2023,5,17,1,30,9.6,1.33,0.075,0.64,0,0,0,0,0,3.8,0,0,0,0,0.288,67.09,117.37,0.94,0.14,793,1.3,16,1.1
+6532,2023,5,17,2,0,9.3,1.34,0.077,0.64,0,0,0,0,0,3.8,0,0,0,0,0.288,68.44,114.97,0.94,0.14,793,1.3,15,1.1
+6533,2023,5,17,2,30,8.9,1.34,0.077,0.64,0,0,0,0,0,3.8,0,0,0,0,0.288,70.31,111.94,0.94,0.14,793,1.3,15,1.1
+6534,2023,5,17,3,0,8.6,1.33,0.084,0.64,0,0,0,0,0,3.6,0,0,0,0,0.288,70.93,108.36,0.94,0.14,793,1.3,15,1.2
+6535,2023,5,17,3,30,8.2,1.33,0.084,0.64,0,0,0,0,0,3.6,0,0,0,0,0.288,72.88,104.32,0.95,0.14,793,1.3,18,1.2
+6536,2023,5,17,4,0,7.7,1.3,0.091,0.64,0,0,0,0,0,3.3,0,0,0,0,0.287,73.67,99.89,0.95,0.14,793,1.3,21,1.2
+6537,2023,5,17,4,30,7.9,1.3,0.091,0.64,0,0,0,0,0,3.3,0,0,0,0,0.288,72.68,95.14,0.95,0.14,793,1.2,23,1.3
+6538,2023,5,17,5,0,8.1,1.29,0.091,0.64,8,58,8,0,0,3.4,8,58,0,8,0.288,72.45,89.73,0.95,0.14,793,1.2,25,1.4
+6539,2023,5,17,5,30,9.4,1.29,0.091,0.64,32,316,61,0,0,3.4,32,316,0,61,0.289,66.37,84.78,0.95,0.14,793,1.2,27,2
+6540,2023,5,17,6,0,10.8,1.28,0.093,0.64,50,514,144,0,0,3.3,48,318,0,106,0.29,59.96,79.44,0.95,0.14,793,1.2,29,2.6
+6541,2023,5,17,6,30,12.4,1.28,0.093,0.64,61,646,240,0,3,3.3,102,351,0,199,0.29,53.96,73.94,0.94,0.14,793,1.2,30,2.6
+6542,2023,5,17,7,0,14,1.3,0.091,0.64,71,735,342,0,8,2.9,178,261,0,274,0.291,47.12,68.33,0.94,0.14,793,1.2,31,2.7
+6543,2023,5,17,7,30,16,1.3,0.091,0.64,77,801,445,0,5,2.9,254,100,0,300,0.292,41.45,62.66,0.94,0.14,793,1.2,26,2.9
+6544,2023,5,17,8,0,17.9,1.32,0.085,0.64,82,851,546,0,5,0.5,287,179,7,385,0.292,31.02,56.97,0.94,0.14,793,1.2,22,3.1
+6545,2023,5,17,8,30,18.8,1.32,0.085,0.64,87,886,641,0,0,0.5,186,643,7,588,0.292,29.28,51.29,0.94,0.14,792,1.2,19,2.8
+6546,2023,5,17,9,0,19.7,1.33,0.084,0.64,90,913,728,0,0,0.3,90,913,0,728,0.293,27.3,45.68,0.94,0.14,792,1.2,17,2.5
+6547,2023,5,17,9,30,20.3,1.33,0.084,0.64,97,929,806,0,0,0.3,97,929,0,806,0.293,26.31,40.21,0.94,0.14,792,1.2,12,2.3
+6548,2023,5,17,10,0,21,1.32,0.094,0.64,103,940,873,0,0,0.4,103,940,0,873,0.293,25.36,34.98,0.95,0.14,792,1.2,7,2
+6549,2023,5,17,10,30,21.4,1.32,0.094,0.64,101,958,929,0,0,0.4,101,958,0,929,0.293,24.72,30.15,0.95,0.14,791,1.2,176,1.8
+6550,2023,5,17,11,0,21.8,1.6,0.077,0.64,96,974,972,0,0,0.4,96,974,0,972,0.293,24.16,25.98,0.95,0.14,791,1.2,345,1.7
+6551,2023,5,17,11,30,22,1.6,0.077,0.64,98,978,999,0,0,0.4,160,882,0,973,0.294,23.87,22.86,0.95,0.14,791,1.3,332,1.7
+6552,2023,5,17,12,0,22.2,1.59,0.078,0.64,99,980,1012,0,0,0.4,110,962,0,1007,0.294,23.59,21.26,0.95,0.14,790,1.3,320,1.8
+6553,2023,5,17,12,30,22.2,1.59,0.078,0.64,98,978,1008,0,0,0.4,237,701,0,889,0.294,23.59,21.54,0.95,0.14,790,1.3,313,2
+6554,2023,5,17,13,0,22.2,1.58,0.08,0.64,99,973,990,0,8,0.6,330,474,0,764,0.295,23.81,23.62,0.95,0.14,790,1.3,306,2.1
+6555,2023,5,17,13,30,22,1.58,0.08,0.64,101,962,957,0,8,0.6,334,461,0,744,0.295,24.1,27.09,0.95,0.14,790,1.3,304,2.2
+6556,2023,5,17,14,0,21.8,1.38,0.093,0.64,103,945,909,0,8,0.8,306,427,0,670,0.295,24.8,31.49,0.95,0.14,789,1.4,301,2.3
+6557,2023,5,17,14,30,21.5,1.38,0.093,0.64,101,931,850,0,8,0.8,327,92,0,401,0.295,25.26,36.45,0.95,0.14,789,1.4,302,2.5
+6558,2023,5,17,15,0,21.2,1.38,0.094,0.64,98,912,778,0,7,1.1,297,371,0,574,0.296,26.38,41.76,0.95,0.14,789,1.4,302,2.7
+6559,2023,5,17,15,30,20.6,1.38,0.094,0.64,94,888,697,0,8,1.1,258,463,7,572,0.296,27.37,47.27,0.95,0.14,789,1.5,305,3
+6560,2023,5,17,16,0,20,1.39,0.097,0.64,91,856,607,0,8,1.8,198,610,0,566,0.296,29.84,52.9,0.95,0.14,789,1.5,308,3.3
+6561,2023,5,17,16,30,19.1,1.39,0.097,0.64,85,815,510,0,8,1.8,193,483,11,445,0.296,31.55,58.59,0.95,0.14,789,1.5,313,3.5
+6562,2023,5,17,17,0,18.2,1.39,0.1,0.64,78,762,409,0,3,2.8,106,626,32,378,0.296,35.9,64.27,0.96,0.14,789,1.6,318,3.7
+6563,2023,5,17,17,30,17.2,1.39,0.1,0.64,70,693,308,0,8,2.8,115,486,36,282,0.296,38.22,69.92,0.95,0.14,789,1.6,325,3.6
+6564,2023,5,17,18,0,16.1,1.39,0.098,0.64,59,596,208,0,8,4.4,79,451,71,192,0.296,45.72,75.5,0.95,0.14,790,1.6,333,3.5
+6565,2023,5,17,18,30,15,1.39,0.098,0.64,44,456,116,5,8,4.4,72,120,82,91,0.296,49.04,80.95,0.95,0.14,790,1.6,341,2.8
+6566,2023,5,17,19,0,13.9,1.4,0.091,0.64,26,241,42,7,8,5.6,31,7,100,31,0.296,57.32,86.21,0.95,0.14,790,1.6,350,2.2
+6567,2023,5,17,19,30,13.2,1.4,0.091,0.64,2,15,2,2,5,5.6,1,0,29,1,0.297,59.98,91.53,0.95,0.14,790,1.6,184,1.7
+6568,2023,5,17,20,0,12.6,1.42,0.081,0.64,0,0,0,0,3,6.2,0,0,0,0,0.297,65.21,96.46,0.94,0.14,790,1.5,18,1.3
+6569,2023,5,17,20,30,12.1,1.42,0.081,0.64,0,0,0,0,0,6.2,0,0,0,0,0.297,67.38,101.11,0.94,0.14,790,1.5,30,1.1
+6570,2023,5,17,21,0,11.6,1.43,0.068,0.64,0,0,0,0,0,6,0,0,0,0,0.297,68.59,105.42,0.93,0.14,790,1.4,42,0.9
+6571,2023,5,17,21,30,11.2,1.43,0.068,0.64,0,0,0,0,5,6,0,0,0,0,0.297,70.43,109.31,0.93,0.14,790,1.4,56,0.8
+6572,2023,5,17,22,0,10.8,1.42,0.058,0.64,0,0,0,0,3,5.6,0,0,0,0,0.297,70.2,112.72,0.92,0.14,790,1.4,69,0.7
+6573,2023,5,17,22,30,10.4,1.42,0.058,0.64,0,0,0,0,3,5.6,0,0,0,0,0.297,72.09,115.56,0.92,0.14,790,1.3,88,0.7
+6574,2023,5,17,23,0,9.9,1.4,0.053,0.64,0,0,0,0,0,5.4,0,0,0,0,0.297,73.45,117.75,0.92,0.14,790,1.3,106,0.6
+6575,2023,5,17,23,30,9.5,1.4,0.053,0.64,0,0,0,0,0,5.4,0,0,0,0,0.296,75.44,119.22,0.92,0.14,790,1.2,119,0.6
+6576,2023,5,18,0,0,9.1,1.37,0.051,0.64,0,0,0,0,0,5.2,0,0,0,0,0.296,76.79,119.9,0.92,0.14,790,1.2,132,0.6
+6577,2023,5,18,0,30,8.8,1.37,0.051,0.64,0,0,0,0,0,5.2,0,0,0,0,0.296,78.36,119.78,0.92,0.14,790,1.2,144,0.5
+6578,2023,5,18,1,0,8.5,1.35,0.053,0.64,0,0,0,0,3,5.1,0,0,0,0,0.296,79.15,118.85,0.92,0.14,790,1.2,155,0.4
+6579,2023,5,18,1,30,8.5,1.35,0.053,0.64,0,0,0,0,0,5.1,0,0,0,0,0.296,79.15,117.16,0.92,0.14,790,1.2,191,0.3
+6580,2023,5,18,2,0,8.5,1.33,0.056,0.64,0,0,0,0,0,4.9,0,0,0,0,0.296,78.02,114.77,0.92,0.14,790,1.2,228,0.1
+6581,2023,5,18,2,30,8.3,1.33,0.056,0.64,0,0,0,0,0,4.9,0,0,0,0,0.297,79.09,111.75,0.92,0.14,790,1.2,288,0.3
+6582,2023,5,18,3,0,8.1,1.31,0.06,0.64,0,0,0,0,0,4.7,0,0,0,0,0.297,78.93,108.18,0.93,0.14,790,1.2,348,0.4
+6583,2023,5,18,3,30,7.8,1.31,0.06,0.64,0,0,0,0,0,4.7,0,0,0,0,0.298,80.55,104.15,0.93,0.14,790,1.2,354,0.5
+6584,2023,5,18,4,0,7.5,1.3,0.064,0.64,0,0,0,0,0,4.5,0,0,0,0,0.298,81.18,99.73,0.93,0.14,790,1.2,360,0.6
+6585,2023,5,18,4,30,7.5,1.3,0.064,0.64,0,0,0,0,0,4.5,0,0,0,0,0.298,81.18,94.99,0.93,0.14,790,1.3,183,0.7
+6586,2023,5,18,5,0,7.4,1.3,0.068,0.64,8,76,9,2,0,4.6,7,39,29,7,0.299,82.32,89.6,0.93,0.14,790,1.3,7,0.7
+6587,2023,5,18,5,30,8.7,1.3,0.068,0.64,30,359,64,2,0,4.6,32,165,36,47,0.299,75.37,84.64,0.93,0.14,790,1.3,6,1.2
+6588,2023,5,18,6,0,10,1.32,0.073,0.64,45,549,147,0,0,4.7,65,323,0,125,0.3,69.72,79.31,0.93,0.14,790,1.3,6,1.7
+6589,2023,5,18,6,30,11.8,1.32,0.073,0.64,56,670,243,0,0,4.7,76,536,0,225,0.301,61.96,73.81,0.93,0.14,791,1.4,4,2
+6590,2023,5,18,7,0,13.5,1.34,0.076,0.64,65,751,344,0,0,4.1,123,497,0,308,0.301,53.09,68.2,0.93,0.14,791,1.4,3,2.2
+6591,2023,5,18,7,30,14.6,1.34,0.076,0.64,72,808,445,0,0,4.1,72,808,0,445,0.302,49.45,62.54,0.93,0.14,791,1.4,2,2.2
+6592,2023,5,18,8,0,15.7,1.36,0.081,0.64,80,849,544,0,0,3.5,104,779,0,530,0.302,44.08,56.84,0.94,0.14,791,1.4,0,2.2
+6593,2023,5,18,8,30,16.2,1.36,0.081,0.64,87,879,638,0,0,3.5,107,835,0,631,0.303,42.7,51.16,0.94,0.14,791,1.4,179,2.1
+6594,2023,5,18,9,0,16.6,1.37,0.089,0.64,93,901,724,0,0,3.5,153,767,0,690,0.303,41.49,45.55,0.94,0.14,791,1.4,358,2
+6595,2023,5,18,9,30,16.9,1.37,0.089,0.64,97,919,800,0,3,3.5,256,602,0,717,0.304,40.71,40.07,0.94,0.14,791,1.5,356,2.1
+6596,2023,5,18,10,0,17.1,1.38,0.093,0.64,101,932,866,0,0,3.6,149,849,0,846,0.305,40.74,34.83,0.94,0.14,791,1.5,354,2.1
+6597,2023,5,18,10,30,17.2,1.38,0.093,0.64,98,952,923,0,0,3.6,201,448,0,589,0.307,40.48,29.99,0.94,0.14,791,1.5,353,2.2
+6598,2023,5,18,11,0,17.3,1.41,0.069,0.64,93,971,967,0,5,3.9,290,398,0,648,0.308,40.86,25.8,0.94,0.14,791,1.5,352,2.3
+6599,2023,5,18,11,30,17.3,1.41,0.069,0.64,94,976,995,0,6,3.9,329,337,0,640,0.309,40.86,22.65,0.94,0.14,791,1.5,354,2.3
+6600,2023,5,18,12,0,17.3,1.42,0.067,0.64,94,979,1008,0,6,3.9,345,326,0,649,0.311,40.92,21.04,0.95,0.14,791,1.5,355,2.4
+6601,2023,5,18,12,30,17.4,1.42,0.067,0.64,93,980,1006,0,0,3.9,198,802,0,945,0.312,40.66,21.32,0.94,0.14,791,1.5,180,2.4
+6602,2023,5,18,13,0,17.4,1.44,0.063,0.64,91,979,989,0,3,3.8,340,208,0,531,0.314,40.36,23.42,0.94,0.14,791,1.5,4,2.5
+6603,2023,5,18,13,30,17.4,1.44,0.063,0.64,90,972,957,0,6,3.8,241,7,0,247,0.314,40.36,26.91,0.94,0.14,791,1.5,8,2.5
+6604,2023,5,18,14,0,17.5,1.46,0.066,0.64,89,962,911,0,6,3.6,287,46,0,326,0.314,39.58,31.32,0.94,0.14,791,1.5,12,2.4
+6605,2023,5,18,14,30,17.5,1.46,0.066,0.64,88,948,852,0,7,3.6,247,551,0,691,0.314,39.58,36.29,0.94,0.14,791,1.5,12,2.4
+6606,2023,5,18,15,0,17.5,1.51,0.071,0.64,87,930,782,0,8,3.3,292,278,0,500,0.313,38.84,41.61,0.94,0.14,790,1.5,13,2.4
+6607,2023,5,18,15,30,17.3,1.51,0.071,0.64,85,905,701,0,5,3.3,312,99,0,379,0.312,39.38,47.13,0.94,0.14,791,1.5,13,2.5
+6608,2023,5,18,16,0,17.1,1.57,0.079,0.64,83,873,611,0,5,3.3,245,62,0,283,0.311,39.62,52.76,0.94,0.14,791,1.5,13,2.6
+6609,2023,5,18,16,30,16.6,1.57,0.079,0.64,80,830,514,0,8,3.3,154,90,0,201,0.31,40.9,58.45,0.94,0.14,791,1.5,15,2.7
+6610,2023,5,18,17,0,16.2,1.6,0.093,0.64,76,772,413,0,8,3.4,142,464,36,344,0.309,42.43,64.13,0.94,0.14,791,1.5,18,2.8
+6611,2023,5,18,17,30,15.5,1.6,0.093,0.64,68,702,311,0,3,3.4,96,602,50,304,0.308,44.37,69.78,0.94,0.14,791,1.5,24,2.5
+6612,2023,5,18,18,0,14.8,1.64,0.101,0.64,59,601,211,0,0,4.5,72,405,21,174,0.307,50.08,75.35,0.94,0.14,791,1.5,29,2.2
+6613,2023,5,18,18,30,13.4,1.64,0.101,0.64,45,465,119,1,4,4.5,57,161,21,83,0.307,54.89,80.8,0.94,0.14,792,1.5,35,1.8
+6614,2023,5,18,19,0,12,1.69,0.097,0.64,25,256,43,0,0,5.6,25,256,0,43,0.306,64.76,86.06,0.94,0.14,792,1.5,41,1.4
+6615,2023,5,18,19,30,11.4,1.69,0.097,0.64,2,18,2,0,3,5.6,2,18,0,2,0.306,67.37,91.37,0.93,0.14,792,1.4,44,1.5
+6616,2023,5,18,20,0,10.7,1.73,0.094,0.64,0,0,0,0,3,5.2,0,0,0,0,0.305,68.82,96.29,0.93,0.14,792,1.4,47,1.6
+6617,2023,5,18,20,30,10.3,1.73,0.094,0.64,0,0,0,0,8,5.2,0,0,0,0,0.305,70.76,100.93,0.92,0.14,793,1.4,47,1.6
+6618,2023,5,18,21,0,9.8,1.73,0.097,0.64,0,0,0,0,8,5,0,0,0,0,0.305,71.95,105.23,0.92,0.14,793,1.4,47,1.7
+6619,2023,5,18,21,30,9.4,1.73,0.097,0.64,0,0,0,0,8,5,0,0,0,0,0.305,73.91,109.12,0.92,0.14,793,1.4,46,1.8
+6620,2023,5,18,22,0,9,1.73,0.107,0.64,0,0,0,0,0,4.9,0,0,0,0,0.304,75.32,112.52,0.92,0.14,793,1.4,45,1.9
+6621,2023,5,18,22,30,8.6,1.73,0.107,0.64,0,0,0,0,0,4.9,0,0,0,0,0.305,77.38,115.36,0.92,0.14,793,1.4,43,2
+6622,2023,5,18,23,0,8.1,1.74,0.12,0.64,0,0,0,0,0,4.8,0,0,0,0,0.305,79.74,117.54,0.92,0.14,793,1.3,41,2
+6623,2023,5,18,23,30,7.8,1.74,0.12,0.64,0,0,0,0,0,4.8,0,0,0,0,0.305,81.38,119,0.92,0.14,793,1.3,39,2.1
+6624,2023,5,19,0,0,7.4,1.78,0.136,0.64,0,0,0,0,0,4.7,0,0,0,0,0.305,83.24,119.68,0.92,0.14,794,1.3,37,2.2
+6625,2023,5,19,0,30,7,1.78,0.136,0.64,0,0,0,0,0,4.7,0,0,0,0,0.306,85.55,119.56,0.92,0.14,794,1.3,36,2.3
+6626,2023,5,19,1,0,6.6,1.83,0.154,0.64,0,0,0,0,0,4.6,0,0,0,0,0.306,87.01,118.64,0.92,0.14,794,1.3,35,2.4
+6627,2023,5,19,1,30,6.3,1.83,0.154,0.64,0,0,0,0,0,4.6,0,0,0,0,0.307,88.82,116.96,0.92,0.14,794,1.3,33,2.4
+6628,2023,5,19,2,0,5.9,1.88,0.173,0.64,0,0,0,0,0,4.4,0,0,0,0,0.308,90.22,114.57,0.92,0.14,794,1.3,32,2.5
+6629,2023,5,19,2,30,5.5,1.88,0.173,0.64,0,0,0,0,0,4.4,0,0,0,0,0.309,92.75,111.56,0.92,0.14,794,1.2,31,2.5
+6630,2023,5,19,3,0,5.1,1.92,0.191,0.64,0,0,0,0,0,4.2,0,0,0,0,0.31,94.18,108,0.92,0.14,794,1.2,30,2.5
+6631,2023,5,19,3,30,4.7,1.92,0.191,0.64,0,0,0,0,0,4.2,0,0,0,0,0.311,96.84,103.98,0.92,0.14,794,1.2,30,2.4
+6632,2023,5,19,4,0,4.3,1.94,0.204,0.64,0,0,0,0,0,4.1,0,0,0,0,0.312,98.66,99.57,0.92,0.14,794,1.2,29,2.4
+6633,2023,5,19,4,30,4.5,1.94,0.204,0.64,0,0,0,0,0,4.1,0,0,0,0,0.312,97.41,94.84,0.92,0.14,795,1.2,29,2.6
+6634,2023,5,19,5,0,4.6,1.94,0.213,0.64,8,42,8,0,0,4.1,8,42,0,8,0.313,96.59,89.47,0.92,0.14,795,1.1,29,2.8
+6635,2023,5,19,5,30,5.7,1.94,0.213,0.64,36,233,58,0,0,4.1,36,233,0,58,0.313,89.48,84.51,0.91,0.14,795,1.1,28,3.1
+6636,2023,5,19,6,0,6.8,1.94,0.213,0.64,61,405,137,0,0,4.3,61,405,0,137,0.313,83.98,79.18,0.91,0.14,795,1.1,27,3.5
+6637,2023,5,19,6,30,8.8,1.94,0.213,0.64,81,533,231,0,0,4.3,81,533,0,231,0.313,73.31,73.68,0.91,0.14,795,1.1,33,4
+6638,2023,5,19,7,0,10.8,1.93,0.207,0.64,96,629,331,0,0,3.6,96,629,0,331,0.312,61.17,68.08,0.91,0.14,795,1.1,40,4.6
+6639,2023,5,19,7,30,12.1,1.93,0.207,0.64,108,703,433,0,0,3.6,108,703,0,433,0.312,56.14,62.42,0.91,0.14,795,1,40,4.5
+6640,2023,5,19,8,0,13.5,1.93,0.197,0.64,116,760,533,0,0,2.5,116,760,0,533,0.312,47.27,56.72,0.91,0.14,795,1,41,4.5
+6641,2023,5,19,8,30,14.5,1.93,0.197,0.64,122,804,628,0,0,2.5,122,804,0,628,0.312,44.32,51.04,0.91,0.14,795,1,38,4.4
+6642,2023,5,19,9,0,15.6,1.93,0.185,0.64,127,841,717,0,0,1.6,127,841,0,717,0.312,38.89,45.42,0.91,0.14,795,1,34,4.2
+6643,2023,5,19,9,30,16.5,1.93,0.185,0.64,130,868,796,0,0,1.6,130,868,0,796,0.312,36.73,39.94,0.9,0.14,795,1,31,4.2
+6644,2023,5,19,10,0,17.5,1.94,0.177,0.64,132,891,865,0,0,0.6,132,891,0,865,0.311,32.03,34.69,0.9,0.14,795,0.9,28,4.2
+6645,2023,5,19,10,30,18.3,1.94,0.177,0.64,137,904,921,0,0,0.6,137,904,0,921,0.311,30.47,29.83,0.9,0.14,795,0.9,26,4.2
+6646,2023,5,19,11,0,19,1.95,0.18,0.64,139,913,962,0,0,-0.3,139,913,0,962,0.311,27.27,25.62,0.9,0.14,795,0.9,24,4.2
+6647,2023,5,19,11,30,19.6,1.95,0.18,0.64,142,918,990,0,0,-0.3,142,918,0,990,0.311,26.27,22.45,0.9,0.14,795,0.9,23,4.2
+6648,2023,5,19,12,0,20.2,1.97,0.185,0.64,143,919,1002,0,0,-0.9,143,919,0,1002,0.311,24.21,20.83,0.9,0.14,795,0.9,23,4.3
+6649,2023,5,19,12,30,20.6,1.97,0.185,0.64,144,916,999,0,0,-0.9,144,916,0,999,0.312,23.62,21.1,0.9,0.14,795,0.9,24,4.3
+6650,2023,5,19,13,0,21,1.98,0.191,0.64,145,910,981,0,0,-1.2,145,910,0,981,0.312,22.53,23.22,0.9,0.14,794,0.9,25,4.3
+6651,2023,5,19,13,30,21.1,1.98,0.191,0.64,154,883,943,0,0,-1.2,154,883,0,943,0.311,22.39,26.72,0.9,0.14,794,1,26,4.3
+6652,2023,5,19,14,0,21.2,1.94,0.263,0.64,167,844,889,0,0,-1.3,167,844,0,889,0.311,22.16,31.15,0.9,0.14,794,1,28,4.3
+6653,2023,5,19,14,30,21.1,1.94,0.263,0.64,164,823,829,0,0,-1.3,164,823,0,829,0.311,22.3,36.14,0.9,0.14,794,1,30,4.3
+6654,2023,5,19,15,0,21,1.96,0.276,0.64,161,796,758,0,0,-1.1,161,796,0,758,0.311,22.64,41.46,0.91,0.14,794,1,33,4.3
+6655,2023,5,19,15,30,20.7,1.96,0.276,0.64,156,764,677,0,0,-1.1,156,764,0,677,0.311,23.06,46.99,0.91,0.14,794,1,35,4.2
+6656,2023,5,19,16,0,20.3,1.97,0.287,0.64,148,724,587,0,0,-0.8,148,724,0,587,0.31,24.29,52.63,0.91,0.14,794,1,37,4.1
+6657,2023,5,19,16,30,19.8,1.97,0.287,0.64,138,674,492,0,0,-0.8,138,674,0,492,0.31,25.05,58.31,0.91,0.14,794,1.1,40,3.9
+6658,2023,5,19,17,0,19.2,1.97,0.296,0.64,125,611,393,0,0,-0.1,125,611,0,393,0.31,27.27,64,0.91,0.14,794,1.1,42,3.8
+6659,2023,5,19,17,30,18,1.97,0.296,0.64,109,531,294,0,0,-0.1,109,531,0,294,0.31,29.39,69.64,0.92,0.14,794,1.1,45,2.9
+6660,2023,5,19,18,0,16.8,1.96,0.304,0.64,88,427,197,0,0,2.8,88,427,0,197,0.309,39.03,75.21,0.92,0.14,794,1.1,47,2.1
+6661,2023,5,19,18,30,14.9,1.96,0.304,0.64,60,297,108,0,0,2.8,60,297,0,108,0.309,44.05,80.66,0.92,0.14,794,1.1,51,1.7
+6662,2023,5,19,19,0,13,1.97,0.303,0.64,27,137,37,0,0,4.6,27,137,0,37,0.309,56.53,85.91,0.92,0.14,794,1.1,54,1.2
+6663,2023,5,19,19,30,12.2,1.97,0.303,0.64,2,8,2,0,0,4.6,2,8,0,2,0.309,59.64,91.21,0.92,0.14,795,1.2,58,1.2
+6664,2023,5,19,20,0,11.5,1.97,0.297,0.64,0,0,0,0,0,4.5,0,0,0,0,0.309,62.05,96.13,0.92,0.14,795,1.2,63,1.2
+6665,2023,5,19,20,30,11,1.97,0.297,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,64.14,100.76,0.92,0.14,795,1.2,67,1.2
+6666,2023,5,19,21,0,10.5,1.99,0.277,0.64,0,0,0,0,0,4.7,0,0,0,0,0.308,67.34,105.05,0.92,0.14,795,1.2,71,1.2
+6667,2023,5,19,21,30,10,1.99,0.277,0.64,0,0,0,0,0,4.7,0,0,0,0,0.308,69.63,108.93,0.92,0.14,795,1.2,72,1.2
+6668,2023,5,19,22,0,9.5,2,0.26,0.64,0,0,0,0,0,5,0,0,0,0,0.308,73.62,112.33,0.92,0.14,795,1.2,74,1.1
+6669,2023,5,19,22,30,9.1,2,0.26,0.64,0,0,0,0,0,5,0,0,0,0,0.308,75.63,115.15,0.92,0.14,795,1.2,74,1.1
+6670,2023,5,19,23,0,8.6,2,0.247,0.64,0,0,0,0,0,5.4,0,0,0,0,0.307,80.13,117.33,0.91,0.14,796,1.2,73,1.1
+6671,2023,5,19,23,30,8.3,2,0.247,0.64,0,0,0,0,0,5.4,0,0,0,0,0.307,81.77,118.79,0.91,0.14,796,1.2,71,1
+6672,2023,5,20,0,0,7.9,2,0.237,0.64,0,0,0,0,0,5.6,0,0,0,0,0.307,85.3,119.47,0.91,0.14,796,1.2,69,1
+6673,2023,5,20,0,30,7.5,2,0.237,0.64,0,0,0,0,0,5.6,0,0,0,0,0.307,87.65,119.35,0.91,0.14,796,1.1,68,1
+6674,2023,5,20,1,0,7.1,1.99,0.227,0.64,0,0,0,0,0,5.7,0,0,0,0,0.307,90.6,118.43,0.91,0.14,796,1.1,67,1
+6675,2023,5,20,1,30,6.8,1.99,0.227,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,92.48,116.76,0.91,0.14,796,1.1,68,1
+6676,2023,5,20,2,0,6.4,1.98,0.213,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,95.02,114.38,0.91,0.14,796,1,68,1
+6677,2023,5,20,2,30,6.1,1.98,0.213,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,97,111.38,0.91,0.14,796,1,70,0.9
+6678,2023,5,20,3,0,5.9,1.96,0.199,0.64,0,0,0,0,0,5.6,0,0,0,0,0.306,98.06,107.83,0.91,0.14,796,1,71,0.9
+6679,2023,5,20,3,30,5.7,1.96,0.199,0.64,0,0,0,0,0,5.6,0,0,0,0,0.306,99.42,103.82,0.91,0.14,796,0.9,69,0.8
+6680,2023,5,20,4,0,5.6,1.94,0.189,0.64,0,0,0,0,0,5.6,0,0,0,0,0.307,99.7,99.42,0.91,0.14,796,0.9,67,0.8
+6681,2023,5,20,4,30,5.7,1.94,0.189,0.64,0,0,0,0,0,5.6,0,0,0,0,0.307,99.01,94.69,0.91,0.14,796,0.9,61,0.7
+6682,2023,5,20,5,0,5.8,1.93,0.181,0.64,8,53,9,0,0,5.6,8,53,0,9,0.307,98.49,89.35,0.91,0.14,796,0.9,55,0.5
+6683,2023,5,20,5,30,7.3,1.93,0.181,0.64,35,271,62,0,0,5.6,35,271,0,62,0.307,88.85,84.38,0.91,0.14,796,0.9,44,0.7
+6684,2023,5,20,6,0,8.7,1.92,0.174,0.64,58,451,144,0,0,5.8,58,451,0,144,0.307,82.28,79.05,0.91,0.14,797,0.9,33,0.8
+6685,2023,5,20,6,30,10.7,1.92,0.174,0.64,75,581,239,0,0,5.9,75,581,0,239,0.308,71.98,73.56,0.91,0.14,797,0.9,27,1
+6686,2023,5,20,7,0,12.7,1.93,0.165,0.64,86,676,340,0,0,4.5,86,676,0,340,0.308,57.39,67.97,0.9,0.14,797,0.9,21,1.3
+6687,2023,5,20,7,30,14.5,1.93,0.165,0.64,97,745,443,0,0,4.5,97,745,0,443,0.308,51.07,62.3,0.9,0.14,797,0.9,17,1.6
+6688,2023,5,20,8,0,16.3,1.92,0.159,0.64,104,798,543,0,0,1.1,104,798,0,543,0.309,35.71,56.61,0.9,0.14,797,0.9,13,1.9
+6689,2023,5,20,8,30,17.5,1.92,0.159,0.64,110,838,638,0,0,1.1,110,838,0,638,0.309,33.06,50.93,0.9,0.14,796,0.9,10,2
+6690,2023,5,20,9,0,18.8,1.91,0.154,0.64,115,870,727,0,0,-0.5,115,870,0,727,0.31,27.12,45.3,0.9,0.14,796,0.9,7,2.2
+6691,2023,5,20,9,30,19.7,1.91,0.154,0.64,118,895,806,0,0,-0.5,118,895,0,806,0.31,25.65,39.81,0.9,0.14,796,0.9,7,2.1
+6692,2023,5,20,10,0,20.6,1.9,0.147,0.64,120,915,874,0,0,-1.2,120,915,0,874,0.31,23.09,34.55,0.9,0.14,796,0.9,7,2.1
+6693,2023,5,20,10,30,21.4,1.9,0.147,0.64,122,930,930,0,0,-1.2,122,930,0,930,0.31,21.99,29.68,0.9,0.14,796,0.9,7,2
+6694,2023,5,20,11,0,22.1,1.89,0.14,0.64,122,941,972,0,0,-1.8,122,941,0,972,0.311,20.2,25.45,0.9,0.14,796,0.9,6,1.9
+6695,2023,5,20,11,30,22.7,1.89,0.14,0.64,123,948,1000,0,0,-1.8,123,948,0,1000,0.311,19.46,22.26,0.9,0.14,795,0.9,5,1.8
+6696,2023,5,20,12,0,23.2,1.9,0.136,0.64,122,953,1014,0,0,-2.3,186,822,0,955,0.311,18.16,20.62,0.9,0.14,795,0.9,3,1.6
+6697,2023,5,20,12,30,23.6,1.9,0.136,0.64,122,952,1011,0,0,-2.3,298,521,0,785,0.311,17.73,20.89,0.9,0.14,795,0.9,180,1.5
+6698,2023,5,20,13,0,24,1.91,0.134,0.64,121,949,994,0,0,-2.7,121,949,0,994,0.311,16.78,23.02,0.9,0.14,795,0.9,356,1.4
+6699,2023,5,20,13,30,24.1,1.91,0.134,0.64,123,938,962,0,0,-2.8,123,938,0,962,0.311,16.66,26.55,0.91,0.14,794,0.9,353,1.3
+6700,2023,5,20,14,0,24.2,1.83,0.15,0.64,124,922,914,0,0,-3.2,124,922,0,914,0.31,16.08,30.99,0.91,0.14,794,0.9,349,1.2
+6701,2023,5,20,14,30,24.1,1.83,0.15,0.64,122,906,855,0,0,-3.2,122,906,0,855,0.31,16.17,35.98,0.91,0.14,794,0.9,348,1.1
+6702,2023,5,20,15,0,24,1.84,0.155,0.64,119,885,784,0,0,-3.6,119,885,0,784,0.309,15.77,41.32,0.91,0.14,793,0.9,347,1.1
+6703,2023,5,20,15,30,23.7,1.84,0.155,0.64,118,856,703,0,0,-3.6,118,856,0,703,0.309,16.06,46.85,0.92,0.14,793,0.9,346,1
+6704,2023,5,20,16,0,23.4,1.81,0.169,0.64,115,817,612,0,0,-3.9,123,792,0,605,0.308,15.97,52.49,0.92,0.14,793,0.9,344,1
+6705,2023,5,20,16,30,22.8,1.81,0.169,0.64,109,770,515,0,0,-3.9,124,730,0,509,0.308,16.56,58.18,0.93,0.14,793,1,341,0.9
+6706,2023,5,20,17,0,22.3,1.8,0.18,0.64,101,709,413,0,0,-3.9,117,655,0,406,0.307,17.05,63.86,0.93,0.13,793,1,337,0.8
+6707,2023,5,20,17,30,21.3,1.8,0.18,0.64,90,632,311,0,0,-3.9,122,468,0,286,0.307,18.12,69.51,0.93,0.13,793,1,318,0.5
+6708,2023,5,20,18,0,20.4,1.79,0.19,0.64,76,525,211,0,5,1.4,128,39,0,138,0.307,28.24,75.07,0.93,0.13,793,1,298,0.2
+6709,2023,5,20,18,30,19,1.79,0.19,0.64,56,382,119,3,5,1.4,66,20,43,69,0.307,30.8,80.52,0.94,0.13,793,1,252,0.4
+6710,2023,5,20,19,0,17.6,1.79,0.199,0.64,30,188,44,7,5,2.7,33,2,100,33,0.306,37.04,85.77,0.94,0.13,793,1,205,0.6
+6711,2023,5,20,19,30,16.6,1.79,0.199,0.64,2,12,2,3,5,2.8,2,0,43,2,0.306,39.51,91.05,0.94,0.13,794,1,206,0.8
+6712,2023,5,20,20,0,15.6,1.79,0.21,0.64,0,0,0,0,0,2.7,0,0,0,0,0.306,42.03,95.96,0.94,0.13,794,1,207,1
+6713,2023,5,20,20,30,14.8,1.79,0.21,0.64,0,0,0,0,3,2.7,0,0,0,0,0.306,44.23,100.59,0.94,0.13,794,1.1,210,1
+6714,2023,5,20,21,0,14.1,1.79,0.215,0.64,0,0,0,0,3,3,0,0,0,0,0.306,47.15,104.88,0.94,0.13,794,1.1,212,1
+6715,2023,5,20,21,30,13.5,1.79,0.215,0.64,0,0,0,0,3,3,0,0,0,0,0.306,49.02,108.75,0.94,0.13,794,1.1,215,1.1
+6716,2023,5,20,22,0,12.9,1.84,0.204,0.64,0,0,0,0,5,2.8,0,0,0,0,0.306,50.28,112.14,0.94,0.13,794,1.1,217,1.1
+6717,2023,5,20,22,30,12.4,1.84,0.204,0.64,0,0,0,0,5,2.8,0,0,0,0,0.306,51.95,114.96,0.93,0.13,794,1.1,217,1.1
+6718,2023,5,20,23,0,11.8,1.87,0.19,0.64,0,0,0,0,0,2.5,0,0,0,0,0.306,52.96,117.13,0.93,0.13,794,1.1,216,1.2
+6719,2023,5,20,23,30,11.3,1.87,0.19,0.64,0,0,0,0,0,2.5,0,0,0,0,0.306,54.74,118.58,0.93,0.13,794,1.1,215,1.2
+6720,2023,5,21,0,0,10.8,1.89,0.183,0.64,0,0,0,0,0,2.5,0,0,0,0,0.305,56.37,119.26,0.93,0.13,794,1.2,213,1.3
+6721,2023,5,21,0,30,10.3,1.89,0.183,0.64,0,0,0,0,0,2.5,0,0,0,0,0.305,58.28,119.14,0.93,0.13,794,1.2,211,1.3
+6722,2023,5,21,1,0,9.8,1.9,0.179,0.64,0,0,0,0,8,2.6,0,0,0,0,0.305,61.04,118.23,0.93,0.13,794,1.2,209,1.4
+6723,2023,5,21,1,30,9.4,1.9,0.179,0.64,0,0,0,0,8,2.6,0,0,0,0,0.305,62.7,116.56,0.93,0.13,794,1.2,208,1.4
+6724,2023,5,21,2,0,8.9,1.9,0.177,0.64,0,0,0,0,7,2.9,0,0,0,0,0.305,66.16,114.2,0.93,0.13,794,1.3,208,1.4
+6725,2023,5,21,2,30,8.6,1.9,0.177,0.64,0,0,0,0,7,2.9,0,0,0,0,0.305,67.52,111.2,0.93,0.13,794,1.3,207,1.3
+6726,2023,5,21,3,0,8.2,1.88,0.179,0.64,0,0,0,0,7,3.2,0,0,0,0,0.305,70.93,107.67,0.93,0.13,794,1.3,207,1.2
+6727,2023,5,21,3,30,8.1,1.88,0.179,0.64,0,0,0,0,8,3.2,0,0,0,0,0.305,71.41,103.66,0.93,0.13,794,1.3,205,1.2
+6728,2023,5,21,4,0,8,1.87,0.181,0.64,0,0,0,0,8,3.5,0,0,0,0,0.305,73.15,99.27,0.93,0.13,794,1.3,203,1.1
+6729,2023,5,21,4,30,8.2,1.87,0.181,0.64,0,0,0,0,8,3.5,0,0,0,0,0.305,72.16,94.56,0.93,0.13,794,1.3,199,1.1
+6730,2023,5,21,5,0,8.4,1.86,0.182,0.64,8,51,9,4,8,4,7,0,64,7,0.305,73.78,89.24,0.93,0.13,795,1.3,196,1.2
+6731,2023,5,21,5,30,9.5,1.86,0.182,0.64,37,260,63,6,3,4,46,30,86,49,0.305,68.52,84.26,0.93,0.13,795,1.3,199,1.4
+6732,2023,5,21,6,0,10.6,1.86,0.181,0.64,61,435,144,0,0,4.2,67,368,0,138,0.305,64.74,78.94,0.93,0.13,795,1.3,201,1.5
+6733,2023,5,21,6,30,12.3,1.86,0.181,0.64,78,563,238,0,0,4.2,87,510,0,232,0.305,57.87,73.45,0.93,0.13,795,1.3,218,1.5
+6734,2023,5,21,7,0,14,1.87,0.172,0.64,90,658,338,0,0,3.9,90,658,0,338,0.305,50.61,67.86,0.93,0.13,795,1.3,234,1.5
+6735,2023,5,21,7,30,15.8,1.87,0.172,0.64,98,733,440,0,0,3.9,98,733,0,440,0.305,45.08,62.19,0.93,0.13,795,1.3,256,1.1
+6736,2023,5,21,8,0,17.6,1.9,0.15,0.64,102,795,541,0,0,2.5,102,795,0,541,0.305,36.34,56.5,0.92,0.13,795,1.2,278,0.7
+6737,2023,5,21,8,30,18.9,1.9,0.15,0.64,107,837,636,0,0,2.5,107,837,0,636,0.304,33.46,50.82,0.92,0.13,794,1.2,162,0.7
+6738,2023,5,21,9,0,20.1,1.91,0.137,0.64,109,872,724,0,0,1.2,109,872,0,724,0.303,28.47,45.19,0.92,0.13,794,1.2,45,0.7
+6739,2023,5,21,9,30,20.9,1.91,0.137,0.64,113,896,802,0,0,1.2,113,896,0,802,0.302,27.1,39.69,0.92,0.13,794,1.2,65,0.9
+6740,2023,5,21,10,0,21.8,1.9,0.131,0.64,115,915,870,0,0,0.6,115,915,0,870,0.302,24.42,34.42,0.92,0.13,794,1.2,84,1.2
+6741,2023,5,21,10,30,22.4,1.9,0.131,0.64,113,936,927,0,0,0.6,113,936,0,927,0.301,23.52,29.54,0.92,0.13,793,1.2,91,1.4
+6742,2023,5,21,11,0,23,1.87,0.108,0.64,109,954,972,0,0,0.1,109,954,0,972,0.3,21.93,25.29,0.92,0.13,793,1.2,98,1.5
+6743,2023,5,21,11,30,23.4,1.87,0.108,0.64,111,959,1000,0,0,0.1,111,959,0,1000,0.299,21.41,22.08,0.92,0.13,793,1.2,102,1.5
+6744,2023,5,21,12,0,23.8,1.85,0.111,0.64,112,961,1013,0,0,-0.3,112,961,0,1013,0.299,20.29,20.42,0.92,0.13,792,1.1,107,1.5
+6745,2023,5,21,12,30,24,1.85,0.111,0.64,113,960,1011,0,0,-0.3,137,926,0,1003,0.298,20.04,20.69,0.92,0.13,792,1.1,112,1.5
+6746,2023,5,21,13,0,24.3,1.84,0.113,0.64,113,956,994,0,0,-0.7,166,880,0,977,0.297,19.21,22.83,0.92,0.13,792,1.1,118,1.4
+6747,2023,5,21,13,30,24.4,1.84,0.113,0.64,112,950,963,0,0,-0.7,151,861,0,922,0.297,19.07,26.37,0.92,0.13,791,1.1,119,1.3
+6748,2023,5,21,14,0,24.5,1.82,0.112,0.64,109,941,917,0,0,-1.1,109,941,0,917,0.296,18.44,30.83,0.92,0.13,791,1.1,121,1.1
+6749,2023,5,21,14,30,24.5,1.82,0.112,0.64,108,926,859,0,0,-1.1,108,926,0,859,0.296,18.44,35.84,0.93,0.13,791,1.1,120,1
+6750,2023,5,21,15,0,24.4,1.8,0.119,0.64,107,905,788,0,0,-1.5,210,726,0,756,0.296,17.93,41.18,0.93,0.13,791,1.1,119,0.9
+6751,2023,5,21,15,30,24.2,1.8,0.119,0.64,105,877,706,0,8,-1.5,269,203,0,408,0.297,18.15,46.72,0.93,0.13,791,1.1,119,0.8
+6752,2023,5,21,16,0,23.9,1.78,0.131,0.64,101,841,615,0,5,-1.9,264,310,0,453,0.297,17.91,52.36,0.93,0.13,790,1.2,120,0.7
+6753,2023,5,21,16,30,23.5,1.78,0.131,0.64,98,794,518,0,8,-1.9,205,210,0,316,0.297,18.34,58.05,0.93,0.13,790,1.2,124,0.7
+6754,2023,5,21,17,0,23,1.74,0.147,0.64,93,732,417,0,8,-2.1,195,102,0,240,0.297,18.69,63.73,0.94,0.13,790,1.2,128,0.7
+6755,2023,5,21,17,30,22.1,1.74,0.147,0.64,84,655,315,0,8,-2.1,174,260,0,266,0.297,19.74,69.37,0.94,0.13,790,1.2,138,0.6
+6756,2023,5,21,18,0,21.2,1.72,0.16,0.64,72,549,215,0,5,2.8,121,70,0,139,0.297,29.73,74.93,0.94,0.13,790,1.2,148,0.4
+6757,2023,5,21,18,30,19.8,1.72,0.16,0.64,54,407,122,2,5,2.8,74,31,29,79,0.297,32.4,80.38,0.94,0.13,790,1.2,161,0.5
+6758,2023,5,21,19,0,18.4,1.72,0.168,0.64,30,208,46,7,5,5,36,4,100,36,0.297,41.25,85.63,0.94,0.13,791,1.2,175,0.6
+6759,2023,5,21,19,30,17.4,1.72,0.168,0.64,4,22,4,3,5,5,2,0,43,2,0.297,43.92,90.9,0.94,0.13,791,1.2,181,0.7
+6760,2023,5,21,20,0,16.5,1.73,0.165,0.64,0,0,0,0,0,4.7,0,0,0,0,0.297,45.48,95.8,0.94,0.13,791,1.2,187,0.9
+6761,2023,5,21,20,30,15.7,1.73,0.165,0.64,0,0,0,0,0,4.7,0,0,0,0,0.296,47.85,100.42,0.94,0.13,791,1.2,191,1
+6762,2023,5,21,21,0,14.9,1.74,0.157,0.64,0,0,0,0,0,4.8,0,0,0,0,0.296,50.87,104.7,0.94,0.13,791,1.2,196,1.2
+6763,2023,5,21,21,30,14.3,1.74,0.157,0.64,0,0,0,0,0,4.8,0,0,0,0,0.296,52.87,108.57,0.94,0.13,791,1.2,199,1.3
+6764,2023,5,21,22,0,13.7,1.75,0.152,0.64,0,0,0,0,0,4.8,0,0,0,0,0.295,55.03,111.95,0.94,0.13,791,1.2,201,1.5
+6765,2023,5,21,22,30,13.2,1.75,0.152,0.64,0,0,0,0,0,4.8,0,0,0,0,0.295,56.84,114.76,0.94,0.13,791,1.3,202,1.7
+6766,2023,5,21,23,0,12.7,1.75,0.15,0.64,0,0,0,0,0,5,0,0,0,0,0.295,59.46,116.93,0.94,0.13,791,1.3,202,1.9
+6767,2023,5,21,23,30,12.3,1.75,0.15,0.64,0,0,0,0,3,5,0,0,0,0,0.295,61.03,118.38,0.94,0.13,791,1.3,202,2.2
+6768,2023,5,22,0,0,12,1.75,0.145,0.64,0,0,0,0,3,5.3,0,0,0,0,0.295,63.71,119.06,0.94,0.13,791,1.3,201,2.4
+6769,2023,5,22,0,30,11.6,1.75,0.145,0.64,0,0,0,0,5,5.3,0,0,0,0,0.295,65.41,118.95,0.94,0.13,791,1.4,201,2.7
+6770,2023,5,22,1,0,11.3,1.75,0.139,0.64,0,0,0,0,5,5.7,0,0,0,0,0.295,68.62,118.04,0.94,0.13,791,1.4,201,3
+6771,2023,5,22,1,30,11.1,1.75,0.139,0.64,0,0,0,0,5,5.7,0,0,0,0,0.295,69.53,116.38,0.94,0.13,791,1.4,200,3.2
+6772,2023,5,22,2,0,10.8,1.75,0.135,0.64,0,0,0,0,5,6.2,0,0,0,0,0.296,73.21,114.02,0.94,0.13,791,1.4,199,3.4
+6773,2023,5,22,2,30,10.5,1.75,0.135,0.64,0,0,0,0,5,6.2,0,0,0,0,0.296,74.68,111.03,0.94,0.13,791,1.5,199,3.5
+6774,2023,5,22,3,0,10.2,1.74,0.137,0.64,0,0,0,0,5,6.4,0,0,0,0,0.296,77.46,107.51,0.94,0.13,791,1.5,199,3.5
+6775,2023,5,22,3,30,9.9,1.74,0.137,0.64,0,0,0,0,5,6.4,0,0,0,0,0.297,79.03,103.51,0.94,0.13,791,1.5,199,3.4
+6776,2023,5,22,4,0,9.6,1.74,0.137,0.64,0,0,0,0,4,6.5,0,0,0,0,0.297,81.25,99.13,0.94,0.13,791,1.5,198,3.3
+6777,2023,5,22,4,30,9.7,1.74,0.137,0.64,0,0,0,0,3,6.5,0,0,0,0,0.298,80.71,94.42,0.94,0.13,791,1.5,197,3.3
+6778,2023,5,22,5,0,9.8,1.74,0.141,0.64,9,61,10,5,5,6.8,6,0,71,6,0.298,81.58,89.13,0.94,0.13,791,1.5,196,3.3
+6779,2023,5,22,5,30,10.9,1.74,0.141,0.64,36,291,66,6,3,6.8,43,32,82,46,0.299,75.82,84.14,0.94,0.13,791,1.5,196,3.6
+6780,2023,5,22,6,0,11.9,1.74,0.145,0.64,57,466,147,0,0,7,75,328,0,139,0.299,71.73,78.82,0.94,0.13,791,1.5,197,3.9
+6781,2023,5,22,6,30,13.4,1.74,0.145,0.64,72,588,241,0,0,7,78,561,0,239,0.299,65.03,73.34,0.94,0.13,791,1.5,203,4.3
+6782,2023,5,22,7,0,14.9,1.74,0.146,0.64,85,675,341,0,0,6.7,85,675,0,341,0.3,58.11,67.75,0.94,0.13,791,1.5,210,4.8
+6783,2023,5,22,7,30,16.2,1.74,0.146,0.64,94,741,441,0,0,6.7,94,741,0,441,0.3,53.48,62.09,0.94,0.13,791,1.5,217,4.8
+6784,2023,5,22,8,0,17.4,1.74,0.142,0.64,101,791,539,0,0,6.3,101,791,0,539,0.3,48.19,56.4,0.94,0.13,791,1.5,224,4.8
+6785,2023,5,22,8,30,18.3,1.74,0.142,0.64,108,828,632,0,0,6.3,108,828,0,632,0.3,45.55,50.71,0.94,0.13,791,1.5,227,4.5
+6786,2023,5,22,9,0,19.3,1.74,0.141,0.64,113,857,718,0,0,6,113,857,0,718,0.3,41.74,45.08,0.94,0.13,791,1.6,230,4.2
+6787,2023,5,22,9,30,20,1.74,0.141,0.64,118,878,795,0,0,6,118,878,0,795,0.301,39.97,39.58,0.94,0.13,791,1.6,229,4
+6788,2023,5,22,10,0,20.8,1.73,0.143,0.64,122,895,861,0,0,5.6,122,895,0,861,0.301,37,34.3,0.94,0.13,790,1.6,228,3.8
+6789,2023,5,22,10,30,21.2,1.73,0.143,0.64,117,919,918,0,0,5.6,117,919,0,918,0.301,36.11,29.4,0.94,0.13,790,1.6,225,3.7
+6790,2023,5,22,11,0,21.7,1.57,0.104,0.64,110,943,964,0,0,5.3,110,943,0,964,0.301,34.43,25.13,0.95,0.13,790,1.6,222,3.6
+6791,2023,5,22,11,30,22,1.57,0.104,0.64,112,946,990,0,0,5.3,137,902,0,974,0.301,33.81,21.9,0.95,0.13,790,1.6,220,3.7
+6792,2023,5,22,12,0,22.2,1.55,0.111,0.64,115,945,1002,0,0,5.2,202,612,0,776,0.3,33.18,20.22,0.95,0.13,790,1.6,217,3.7
+6793,2023,5,22,12,30,22.2,1.55,0.111,0.64,118,939,998,0,8,5.2,293,222,0,501,0.3,33.18,20.49,0.96,0.13,790,1.6,217,3.8
+6794,2023,5,22,13,0,22.2,1.51,0.128,0.64,123,928,979,0,6,5.2,401,99,0,492,0.299,33.03,22.64,0.96,0.13,790,1.6,216,3.9
+6795,2023,5,22,13,30,21.9,1.51,0.128,0.64,130,907,944,0,6,5.2,327,11,0,337,0.298,33.63,26.2,0.96,0.13,790,1.7,219,3.9
+6796,2023,5,22,14,0,21.5,1.54,0.171,0.64,139,878,894,0,6,5.3,237,4,0,240,0.298,34.76,30.67,0.96,0.13,790,1.7,221,3.8
+6797,2023,5,22,14,30,20.8,1.54,0.171,0.64,138,860,836,0,6,5.3,169,5,0,173,0.297,36.28,35.69,0.96,0.13,790,1.7,227,3.6
+6798,2023,5,22,15,0,20.1,1.53,0.18,0.64,135,835,765,0,9,5.7,89,3,0,91,0.296,38.92,41.04,0.97,0.13,790,1.7,233,3.4
+6799,2023,5,22,15,30,19.4,1.53,0.18,0.64,131,808,686,0,6,5.7,45,0,0,45,0.295,40.64,46.58,0.97,0.13,790,1.7,245,3.4
+6800,2023,5,22,16,0,18.7,1.52,0.183,0.64,124,773,597,0,6,6.1,148,11,0,155,0.294,43.69,52.23,0.97,0.13,790,1.8,257,3.3
+6801,2023,5,22,16,30,17.7,1.52,0.183,0.64,116,729,503,0,6,6.1,238,42,0,260,0.293,46.51,57.92,0.97,0.13,790,1.8,272,3.5
+6802,2023,5,22,17,0,16.7,1.51,0.185,0.64,106,672,405,0,7,6.6,167,239,0,273,0.292,51.2,63.6,0.97,0.13,790,1.8,286,3.6
+6803,2023,5,22,17,30,15.5,1.51,0.185,0.64,94,602,307,0,6,6.6,100,116,0,141,0.292,55.33,69.24,0.97,0.13,791,1.7,299,3.7
+6804,2023,5,22,18,0,14.2,1.49,0.178,0.64,77,508,210,0,7,7.5,68,293,0,145,0.291,64.14,74.8,0.97,0.13,791,1.7,311,3.8
+6805,2023,5,22,18,30,12.9,1.49,0.178,0.64,57,379,121,2,7,7.5,60,53,29,69,0.291,69.79,80.23,0.97,0.13,791,1.7,318,3.8
+6806,2023,5,22,19,0,11.7,1.48,0.16,0.64,31,198,47,7,7,7.7,32,3,100,32,0.291,76.41,85.48,0.97,0.13,791,1.7,325,3.8
+6807,2023,5,22,19,30,11.2,1.48,0.16,0.64,4,20,4,3,7,7.7,2,0,43,2,0.291,78.98,90.28,0.97,0.13,791,1.6,326,3.4
+6808,2023,5,22,20,0,10.6,1.47,0.143,0.64,0,0,0,0,8,7.6,0,0,0,0,0.291,81.59,95.65,0.97,0.13,792,1.6,328,3
+6809,2023,5,22,20,30,10.5,1.47,0.143,0.64,0,0,0,0,5,7.6,0,0,0,0,0.291,82.14,100.26,0.97,0.13,792,1.6,324,2.4
+6810,2023,5,22,21,0,10.3,1.46,0.132,0.64,0,0,0,0,5,7.5,0,0,0,0,0.291,82.61,104.53,0.97,0.13,792,1.7,321,1.7
+6811,2023,5,22,21,30,10,1.46,0.132,0.64,0,0,0,0,5,7.5,0,0,0,0,0.292,84.28,108.39,0.96,0.13,792,1.7,316,1.1
+6812,2023,5,22,22,0,9.7,1.48,0.117,0.64,0,0,0,0,3,7.5,0,0,0,0,0.292,85.9,111.76,0.96,0.13,792,1.7,311,0.5
+6813,2023,5,22,22,30,9.4,1.48,0.117,0.64,0,0,0,0,0,7.5,0,0,0,0,0.292,87.64,114.57,0.96,0.13,792,1.7,287,0.4
+6814,2023,5,22,23,0,9.1,1.47,0.109,0.64,0,0,0,0,3,7.3,0,0,0,0,0.292,88.57,116.73,0.96,0.13,792,1.7,262,0.4
+6815,2023,5,22,23,30,9,1.47,0.109,0.64,0,0,0,0,0,7.3,0,0,0,0,0.293,89.16,118.18,0.96,0.13,792,1.7,249,0.4
+6816,2023,5,23,0,0,8.8,1.47,0.102,0.64,0,0,0,0,0,7.2,0,0,0,0,0.293,89.87,118.86,0.96,0.13,792,1.7,235,0.4
+6817,2023,5,23,0,30,8.7,1.47,0.102,0.64,0,0,0,0,0,7.2,0,0,0,0,0.293,90.48,118.75,0.96,0.13,792,1.6,228,0.4
+6818,2023,5,23,1,0,8.6,1.46,0.094,0.64,0,0,0,0,0,7.1,0,0,0,0,0.294,90.42,117.85,0.96,0.13,791,1.6,220,0.3
+6819,2023,5,23,1,30,8.5,1.46,0.094,0.64,0,0,0,0,0,7.1,0,0,0,0,0.294,91.03,116.2,0.96,0.13,791,1.6,184,0.3
+6820,2023,5,23,2,0,8.5,1.45,0.087,0.64,0,0,0,0,0,7.1,0,0,0,0,0.295,90.64,113.84,0.96,0.13,791,1.6,148,0.2
+6821,2023,5,23,2,30,8.3,1.45,0.087,0.64,0,0,0,0,0,7.1,0,0,0,0,0.295,91.87,110.87,0.96,0.13,791,1.6,132,0.4
+6822,2023,5,23,3,0,8,1.43,0.083,0.64,0,0,0,0,0,7,0,0,0,0,0.296,93.47,107.35,0.96,0.13,791,1.5,115,0.5
+6823,2023,5,23,3,30,7.7,1.43,0.083,0.64,0,0,0,0,0,7,0,0,0,0,0.296,95.39,103.37,0.96,0.13,791,1.6,117,0.7
+6824,2023,5,23,4,0,7.5,1.41,0.083,0.64,0,0,0,0,0,6.9,0,0,0,0,0.297,96.27,98.99,0.95,0.13,791,1.6,119,0.8
+6825,2023,5,23,4,30,7.7,1.41,0.083,0.64,0,0,0,0,0,6.9,0,0,0,0,0.297,94.97,94.3,0.96,0.13,791,1.6,124,0.8
+6826,2023,5,23,5,0,8,1.41,0.086,0.64,10,80,11,0,0,7,10,80,0,11,0.297,93.49,89.01,0.96,0.13,791,1.6,130,0.8
+6827,2023,5,23,5,30,9.5,1.41,0.086,0.64,33,351,70,0,0,7,33,351,0,70,0.297,84.49,84.03,0.96,0.13,791,1.6,138,1.3
+6828,2023,5,23,6,0,11.1,1.4,0.091,0.64,50,528,153,0,0,7.2,50,528,0,153,0.297,76.82,78.72,0.96,0.13,791,1.6,145,1.8
+6829,2023,5,23,6,30,12.9,1.4,0.091,0.64,63,643,248,0,0,7.2,63,643,0,248,0.297,68.25,73.24,0.96,0.13,791,1.7,155,2
+6830,2023,5,23,7,0,14.7,1.41,0.099,0.64,73,720,347,0,0,6.5,73,720,0,347,0.297,57.85,67.65,0.96,0.13,791,1.7,165,2.2
+6831,2023,5,23,7,30,15.8,1.41,0.099,0.64,83,773,446,0,0,6.5,83,773,0,446,0.297,53.92,61.99,0.96,0.13,791,1.7,173,2.3
+6832,2023,5,23,8,0,16.8,1.41,0.115,0.64,94,808,542,0,0,5.8,94,808,0,542,0.297,48.25,56.3,0.96,0.13,791,1.7,182,2.5
+6833,2023,5,23,8,30,17.4,1.41,0.115,0.64,103,834,632,0,0,5.8,103,834,0,632,0.296,46.46,50.61,0.96,0.13,791,1.8,188,2.8
+6834,2023,5,23,9,0,17.9,1.43,0.141,0.64,114,849,715,0,0,5.5,114,849,0,715,0.296,43.97,44.98,0.97,0.13,791,1.8,195,3.1
+6835,2023,5,23,9,30,18.2,1.43,0.141,0.64,125,861,790,0,0,5.5,125,861,29,790,0.295,43.15,39.47,0.97,0.13,791,1.8,199,3.5
+6836,2023,5,23,10,0,18.5,1.45,0.175,0.64,137,864,852,0,0,5.4,137,864,0,852,0.295,42.06,34.18,0.97,0.13,791,1.8,203,3.8
+6837,2023,5,23,10,30,18.6,1.45,0.175,0.64,133,888,908,0,0,5.4,133,888,0,908,0.294,41.8,29.27,0.97,0.13,791,1.8,207,4
+6838,2023,5,23,11,0,18.8,1.32,0.138,0.64,127,910,952,0,0,5.5,127,910,0,952,0.294,41.68,24.98,0.97,0.13,791,1.8,211,4.2
+6839,2023,5,23,11,30,18.9,1.32,0.138,0.64,126,919,980,0,0,5.5,126,919,0,980,0.294,41.42,21.73,0.97,0.13,791,1.8,215,4.1
+6840,2023,5,23,12,0,19,1.35,0.127,0.64,124,925,993,0,0,5.7,127,914,0,986,0.293,41.79,20.03,0.97,0.13,790,1.8,220,4.1
+6841,2023,5,23,12,30,19,1.35,0.127,0.64,119,932,993,0,7,5.7,257,685,0,899,0.293,41.79,20.3,0.96,0.13,790,1.8,222,3.9
+6842,2023,5,23,13,0,19.1,1.35,0.104,0.64,112,938,979,0,7,5.9,329,529,0,818,0.293,42.11,22.46,0.96,0.13,790,1.8,224,3.7
+6843,2023,5,23,13,30,19.4,1.35,0.104,0.64,103,945,952,0,7,5.9,363,440,0,758,0.293,41.33,26.03,0.96,0.13,790,1.8,220,3.5
+6844,2023,5,23,14,0,19.8,1.2,0.067,0.64,91,953,912,0,7,5.8,225,653,0,788,0.294,39.98,30.52,0.96,0.13,790,1.8,216,3.4
+6845,2023,5,23,14,30,19.9,1.2,0.067,0.64,88,943,855,0,7,5.8,186,738,14,786,0.294,39.73,35.55,0.96,0.13,790,1.7,212,3.3
+6846,2023,5,23,15,0,20.1,1.21,0.062,0.64,84,932,788,0,7,5.4,203,673,36,712,0.295,38.12,40.91,0.96,0.13,789,1.7,207,3.3
+6847,2023,5,23,15,30,20,1.21,0.062,0.64,80,915,710,0,7,5.4,160,720,43,656,0.295,38.36,46.45,0.96,0.13,789,1.7,204,3.2
+6848,2023,5,23,16,0,19.9,1.21,0.057,0.64,75,892,623,0,7,5.1,142,717,61,582,0.295,37.91,52.1,0.96,0.13,789,1.7,201,3.1
+6849,2023,5,23,16,30,19.6,1.21,0.057,0.64,70,861,529,0,7,5.1,212,360,25,404,0.296,38.62,57.79,0.96,0.13,789,1.6,197,2.7
+6850,2023,5,23,17,0,19.3,1.19,0.054,0.64,64,820,430,0,6,5.2,104,399,0,282,0.296,39.61,63.47,0.96,0.13,789,1.6,192,2.4
+6851,2023,5,23,17,30,18.4,1.19,0.054,0.64,58,764,330,0,7,5.2,99,390,0,238,0.296,41.89,69.11,0.96,0.13,789,1.6,181,1.7
+6852,2023,5,23,18,0,17.4,1.19,0.051,0.64,49,683,230,0,6,8.5,73,56,0,88,0.296,55.74,74.67,0.96,0.13,789,1.6,170,1
+6853,2023,5,23,18,30,16.1,1.19,0.051,0.64,40,558,136,2,7,8.5,56,47,29,64,0.296,60.52,80.1,0.96,0.13,789,1.5,160,1
+6854,2023,5,23,19,0,14.7,1.2,0.05,0.64,26,354,55,7,7,7.7,37,8,100,38,0.296,62.76,85.35,0.96,0.13,789,1.5,150,1.1
+6855,2023,5,23,19,30,14.1,1.2,0.05,0.64,5,53,5,3,5,7.7,3,0,43,3,0.296,65.23,90.16,0.96,0.13,789,1.6,159,1.1
+6856,2023,5,23,20,0,13.5,1.24,0.054,0.64,0,0,0,0,5,7,0,0,0,0,0.296,64.91,95.49,0.96,0.13,790,1.6,168,1.1
+6857,2023,5,23,20,30,13.1,1.24,0.054,0.64,0,0,0,0,8,7,0,0,0,0,0.296,66.62,100.1,0.96,0.13,790,1.7,187,1.1
+6858,2023,5,23,21,0,12.7,1.26,0.057,0.64,0,0,0,0,3,6.9,0,0,0,0,0.296,67.99,104.37,0.96,0.13,790,1.7,205,1.1
+6859,2023,5,23,21,30,12.1,1.26,0.057,0.64,0,0,0,0,8,6.9,0,0,0,0,0.296,70.71,108.22,0.96,0.13,790,1.7,222,1.2
+6860,2023,5,23,22,0,11.6,1.26,0.058,0.64,0,0,0,0,6,6.9,0,0,0,0,0.296,73.03,111.59,0.96,0.13,790,1.7,238,1.4
+6861,2023,5,23,22,30,11,1.26,0.058,0.64,0,0,0,0,7,6.9,0,0,0,0,0.296,75.98,114.39,0.96,0.13,790,1.7,248,1.4
+6862,2023,5,23,23,0,10.5,1.24,0.055,0.64,0,0,0,0,7,7.1,0,0,0,0,0.295,79.26,116.55,0.97,0.13,790,1.7,258,1.4
+6863,2023,5,23,23,30,10,1.24,0.055,0.64,0,0,0,0,7,7.1,0,0,0,0,0.295,81.95,117.99,0.97,0.13,790,1.7,262,1.3
+6864,2023,5,24,0,0,9.5,1.23,0.054,0.64,0,0,0,0,7,7.2,0,0,0,0,0.295,85.34,118.67,0.97,0.13,790,1.7,266,1.3
+6865,2023,5,24,0,30,9.2,1.23,0.054,0.64,0,0,0,0,6,7.2,0,0,0,0,0.295,87.07,118.57,0.97,0.13,790,1.7,265,1.2
+6866,2023,5,24,1,0,8.9,1.22,0.055,0.64,0,0,0,0,6,7.2,0,0,0,0,0.294,88.84,117.67,0.97,0.13,790,1.7,263,1.1
+6867,2023,5,24,1,30,8.7,1.22,0.055,0.64,0,0,0,0,6,7.2,0,0,0,0,0.295,90.05,116.02,0.97,0.13,790,1.8,254,1
+6868,2023,5,24,2,0,8.5,1.22,0.061,0.64,0,0,0,0,4,7.1,0,0,0,0,0.295,90.61,113.68,0.97,0.13,790,1.8,245,1
+6869,2023,5,24,2,30,8.2,1.22,0.061,0.64,0,0,0,0,4,7.1,0,0,0,0,0.295,92.47,110.71,0.97,0.13,790,1.8,239,1
+6870,2023,5,24,3,0,8,1.22,0.07,0.64,0,0,0,0,4,6.9,0,0,0,0,0.296,92.97,107.2,0.97,0.13,790,1.8,233,1
+6871,2023,5,24,3,30,7.8,1.22,0.07,0.64,0,0,0,0,5,7,0,0,0,0,0.297,94.36,103.23,0.97,0.13,791,1.8,232,1
+6872,2023,5,24,4,0,7.6,1.22,0.084,0.64,0,0,0,0,4,6.8,0,0,29,0,0.299,94.95,98.86,0.97,0.13,791,1.9,230,1
+6873,2023,5,24,4,30,8.1,1.22,0.084,0.64,0,0,0,0,5,6.8,0,0,0,0,0.299,91.78,94.17,0.97,0.13,791,1.9,232,1
+6874,2023,5,24,5,0,8.6,1.21,0.097,0.64,11,80,13,5,5,7.2,4,0,71,4,0.3,90.83,88.91,0.97,0.13,791,1.9,234,0.9
+6875,2023,5,24,5,30,9.3,1.21,0.097,0.64,36,322,70,5,5,7.2,39,1,71,39,0.301,86.64,83.92,0.97,0.13,791,1.9,234,1.2
+6876,2023,5,24,6,0,10.1,1.21,0.104,0.64,53,499,152,1,8,7.5,51,7,11,52,0.302,83.64,78.61,0.97,0.13,791,1.9,234,1.4
+6877,2023,5,24,6,30,10.9,1.21,0.104,0.64,65,624,246,0,8,7.5,81,16,0,86,0.303,79.3,73.14,0.96,0.13,791,1.9,221,1.4
+6878,2023,5,24,7,0,11.7,1.2,0.098,0.64,74,713,346,0,7,7.7,88,10,0,92,0.304,76.29,67.56,0.96,0.13,791,1.8,208,1.4
+6879,2023,5,24,7,30,12.7,1.2,0.098,0.64,81,779,448,0,7,7.7,188,254,0,308,0.305,71.45,61.9,0.96,0.13,791,1.8,197,2
+6880,2023,5,24,8,0,13.7,1.2,0.088,0.64,85,831,547,0,8,7.7,238,151,7,322,0.305,67.02,56.21,0.96,0.13,791,1.8,187,2.5
+6881,2023,5,24,8,30,14.8,1.2,0.088,0.64,89,867,640,0,8,7.7,190,164,0,294,0.305,62.35,50.52,0.95,0.13,790,1.7,190,2.9
+6882,2023,5,24,9,0,15.9,1.2,0.082,0.64,91,897,726,0,8,7.5,266,120,0,351,0.305,57.48,44.89,0.95,0.13,790,1.7,194,3.4
+6883,2023,5,24,9,30,17.1,1.2,0.082,0.64,93,921,805,0,7,7.5,239,151,0,356,0.305,53.27,39.37,0.95,0.13,790,1.7,199,3.6
+6884,2023,5,24,10,0,18.3,1.2,0.074,0.64,93,940,872,0,7,7.4,144,1,0,145,0.305,49.14,34.07,0.95,0.13,790,1.7,205,3.8
+6885,2023,5,24,10,30,19.2,1.2,0.074,0.64,92,957,928,0,8,7.4,351,165,0,495,0.305,46.47,29.14,0.95,0.13,790,1.7,207,3.9
+6886,2023,5,24,11,0,20.1,1.04,0.057,0.64,89,972,971,0,0,7.1,188,813,0,926,0.305,42.91,24.84,0.95,0.13,789,1.7,210,3.9
+6887,2023,5,24,11,30,20.5,1.04,0.057,0.64,90,976,998,0,0,7.1,90,976,0,998,0.305,41.87,21.56,0.95,0.13,789,1.7,210,3.9
+6888,2023,5,24,12,0,20.9,1.05,0.059,0.64,91,978,1011,0,0,6.6,91,978,0,1011,0.304,39.35,19.85,0.95,0.13,789,1.6,210,3.9
+6889,2023,5,24,12,30,21,1.05,0.059,0.64,92,977,1009,0,0,6.6,92,977,0,1009,0.304,39.11,20.11,0.95,0.13,789,1.6,210,3.7
+6890,2023,5,24,13,0,21.1,1.07,0.062,0.64,92,973,992,0,0,5.9,123,917,0,972,0.304,37.1,22.28,0.95,0.13,788,1.6,209,3.6
+6891,2023,5,24,13,30,21.2,1.07,0.062,0.64,92,966,961,0,0,5.9,266,643,0,845,0.305,36.87,25.87,0.95,0.13,788,1.7,209,3.4
+6892,2023,5,24,14,0,21.4,1.05,0.064,0.64,91,956,916,0,6,5.2,392,284,0,637,0.306,34.8,30.37,0.96,0.13,788,1.7,210,3.1
+6893,2023,5,24,14,30,21.4,1.05,0.064,0.64,91,941,858,0,9,5.2,166,19,0,181,0.307,34.8,35.41,0.96,0.13,788,1.6,208,2.9
+6894,2023,5,24,15,0,21.3,1.05,0.075,0.64,90,920,787,0,9,4.7,69,0,0,69,0.307,33.67,40.77,0.96,0.13,787,1.6,207,2.6
+6895,2023,5,24,15,30,21.2,1.05,0.075,0.64,87,899,708,0,6,4.7,259,111,0,336,0.308,33.88,46.32,0.96,0.13,787,1.6,201,2.4
+6896,2023,5,24,16,0,21.1,1.01,0.075,0.64,83,872,620,0,6,4.4,260,367,7,486,0.309,33.38,51.98,0.95,0.13,787,1.6,195,2.2
+6897,2023,5,24,16,30,20.7,1.01,0.075,0.64,78,837,526,0,6,4.4,193,441,7,429,0.309,34.2,57.66,0.95,0.13,787,1.6,184,2
+6898,2023,5,24,17,0,20.3,0.98,0.074,0.64,73,792,428,0,6,4.3,164,452,25,367,0.309,34.95,63.35,0.95,0.13,787,1.6,174,1.9
+6899,2023,5,24,17,30,19.4,0.98,0.074,0.64,65,731,327,0,6,4.3,157,248,0,246,0.309,36.95,68.98,0.94,0.13,787,1.5,151,1.7
+6900,2023,5,24,18,0,18.5,0.98,0.072,0.64,56,646,228,0,6,6.1,137,98,0,163,0.309,44.39,74.54,0.94,0.13,787,1.5,129,1.5
+6901,2023,5,24,18,30,16.9,0.98,0.072,0.64,44,517,134,2,7,6.1,91,106,29,109,0.309,49.08,79.97,0.94,0.13,787,1.5,118,1.6
+6902,2023,5,24,19,0,15.3,0.99,0.07,0.64,29,311,55,7,7,7.4,40,10,100,41,0.309,59.13,85.21,0.94,0.13,788,1.4,107,1.7
+6903,2023,5,24,19,30,14.3,0.99,0.07,0.64,6,42,6,3,6,7.4,3,0,43,3,0.308,63.05,90.03,0.94,0.13,788,1.4,109,1.9
+6904,2023,5,24,20,0,13.4,1.04,0.072,0.64,0,0,0,0,9,7.3,0,0,0,0,0.308,66.64,95.34,0.94,0.13,788,1.3,110,2.1
+6905,2023,5,24,20,30,12.7,1.04,0.072,0.64,0,0,0,0,6,7.3,0,0,0,0,0.307,69.75,99.94,0.93,0.13,788,1.3,115,1.8
+6906,2023,5,24,21,0,11.9,1.08,0.078,0.64,0,0,0,0,7,7.1,0,0,0,0,0.306,72.24,104.2,0.93,0.13,788,1.2,121,1.6
+6907,2023,5,24,21,30,11.4,1.08,0.078,0.64,0,0,0,0,8,7.1,0,0,0,0,0.305,74.65,108.05,0.93,0.13,788,1.2,128,1.4
+6908,2023,5,24,22,0,10.8,1.08,0.086,0.64,0,0,0,0,0,6.5,0,0,0,0,0.304,75,111.41,0.93,0.13,788,1.2,134,1.2
+6909,2023,5,24,22,30,10.5,1.08,0.086,0.64,0,0,0,0,0,6.5,0,0,0,0,0.304,76.51,114.21,0.93,0.13,788,1.2,138,1.1
+6910,2023,5,24,23,0,10.1,1.06,0.09,0.64,0,0,0,0,5,6,0,0,0,0,0.304,75.51,116.36,0.93,0.13,788,1.1,142,1
+6911,2023,5,24,23,30,9.9,1.06,0.09,0.64,0,0,0,0,5,6,0,0,0,0,0.305,76.53,117.81,0.93,0.13,788,1.1,144,1
+6912,2023,5,25,0,0,9.7,1.02,0.09,0.64,0,0,0,0,5,5.3,0,0,0,0,0.306,73.82,118.49,0.93,0.13,787,1.1,145,0.9
+6913,2023,5,25,0,30,9.6,1.02,0.09,0.64,0,0,0,0,0,5.3,0,0,0,0,0.307,74.32,118.38,0.93,0.13,787,1.2,145,0.8
+6914,2023,5,25,1,0,9.5,1,0.086,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,71.06,117.49,0.93,0.13,787,1.2,145,0.8
+6915,2023,5,25,1,30,9.3,1,0.086,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,72.02,115.85,0.93,0.13,787,1.2,143,0.7
+6916,2023,5,25,2,0,9.2,0.99,0.088,0.64,0,0,0,0,0,3.9,0,0,0,0,0.308,69.61,113.52,0.93,0.13,787,1.2,141,0.5
+6917,2023,5,25,2,30,9,0.99,0.088,0.64,0,0,0,0,0,3.9,0,0,0,0,0.308,70.64,110.56,0.93,0.13,788,1.2,127,0.5
+6918,2023,5,25,3,0,8.8,1,0.095,0.64,0,0,0,0,0,3.5,0,0,0,0,0.309,69.61,107.06,0.94,0.13,788,1.2,113,0.4
+6919,2023,5,25,3,30,8.5,1,0.095,0.64,0,0,0,0,0,3.5,0,0,0,0,0.309,71.03,103.1,0.94,0.13,788,1.2,98,0.4
+6920,2023,5,25,4,0,8.2,1.01,0.098,0.64,0,0,0,0,0,3.4,0,0,0,0,0.309,71.93,98.74,0.94,0.13,788,1.2,83,0.5
+6921,2023,5,25,4,30,8.2,1.01,0.098,0.64,0,0,0,0,0,3.4,0,0,0,0,0.31,71.93,94.06,0.94,0.13,788,1.2,84,0.5
+6922,2023,5,25,5,0,8.2,1.02,0.099,0.64,12,79,14,3,5,3.9,10,47,43,11,0.311,74.24,88.81,0.94,0.13,788,1.2,85,0.6
+6923,2023,5,25,5,30,9.3,1.02,0.099,0.64,36,330,72,1,0,3.9,39,282,11,69,0.313,68.93,83.82,0.94,0.13,788,1.2,87,0.8
+6924,2023,5,25,6,0,10.5,1,0.1,0.64,53,516,156,0,0,3.6,53,516,0,156,0.315,62.47,78.52,0.94,0.13,788,1.2,89,1.1
+6925,2023,5,25,6,30,12.1,1,0.1,0.64,65,640,252,0,0,3.6,65,640,0,252,0.318,56.21,73.05,0.93,0.13,788,1.2,117,0.9
+6926,2023,5,25,7,0,13.8,0.96,0.099,0.64,75,726,353,0,0,2.7,100,535,0,305,0.32,47.19,67.47,0.93,0.13,788,1.2,145,0.6
+6927,2023,5,25,7,30,16,0.96,0.099,0.64,83,787,455,0,0,2.7,90,763,0,450,0.321,40.98,61.81,0.93,0.13,788,1.2,177,1.1
+6928,2023,5,25,8,0,18.2,0.92,0.099,0.64,90,832,554,0,0,1.5,123,745,14,538,0.322,32.71,56.12,0.93,0.13,788,1.2,208,1.6
+6929,2023,5,25,8,30,19.5,0.92,0.099,0.64,97,864,647,0,5,1.5,136,182,7,252,0.321,30.17,50.43,0.93,0.13,788,1.2,208,1.9
+6930,2023,5,25,9,0,20.7,0.92,0.104,0.64,102,888,732,0,0,1.8,201,544,0,587,0.32,28.49,44.8,0.93,0.13,788,1.2,208,2.2
+6931,2023,5,25,9,30,21.5,0.92,0.104,0.64,107,905,808,0,8,1.8,243,639,0,738,0.319,27.13,39.27,0.93,0.13,788,1.3,208,2.5
+6932,2023,5,25,10,0,22.3,0.93,0.113,0.64,113,917,874,0,7,2.2,278,603,0,778,0.317,26.67,33.96,0.93,0.13,788,1.3,209,2.7
+6933,2023,5,25,10,30,22.6,0.93,0.113,0.64,116,929,928,0,0,2.2,255,706,0,872,0.317,26.19,29.02,0.94,0.13,788,1.3,211,3.1
+6934,2023,5,25,11,0,23,0.82,0.106,0.64,116,939,969,0,8,2.5,255,684,0,876,0.316,26.08,24.7,0.94,0.13,788,1.4,214,3.4
+6935,2023,5,25,11,30,23,0.82,0.106,0.64,116,945,996,0,7,2.5,244,701,0,897,0.315,26.08,21.4,0.94,0.13,788,1.4,218,3.7
+6936,2023,5,25,12,0,22.9,0.86,0.103,0.64,115,947,1007,0,7,2.6,221,731,0,909,0.314,26.46,19.67,0.94,0.13,788,1.4,222,3.9
+6937,2023,5,25,12,30,22.7,0.86,0.103,0.64,115,947,1005,0,7,2.6,196,779,0,928,0.314,26.78,19.93,0.94,0.13,788,1.5,225,4
+6938,2023,5,25,13,0,22.4,0.91,0.1,0.64,113,944,988,0,7,2.9,251,690,0,890,0.313,27.82,22.11,0.94,0.13,787,1.5,229,4.1
+6939,2023,5,25,13,30,22.2,0.91,0.1,0.64,112,937,956,0,7,2.9,327,540,0,814,0.313,28.16,25.71,0.95,0.13,787,1.5,230,4
+6940,2023,5,25,14,0,22,0.94,0.102,0.64,110,927,911,0,6,3.3,385,286,0,632,0.312,29.37,30.22,0.95,0.13,787,1.6,231,3.9
+6941,2023,5,25,14,30,21.9,0.94,0.102,0.64,108,914,854,0,9,3.3,181,3,0,183,0.312,29.55,35.27,0.95,0.13,787,1.6,230,3.8
+6942,2023,5,25,15,0,21.8,0.91,0.101,0.64,104,897,785,0,9,3.5,128,1,0,129,0.312,30.17,40.64,0.95,0.13,787,1.5,228,3.7
+6943,2023,5,25,15,30,21.6,0.91,0.101,0.64,100,876,706,0,7,3.5,210,476,32,539,0.312,30.54,46.2,0.95,0.13,787,1.5,225,3.6
+6944,2023,5,25,16,0,21.4,0.88,0.099,0.64,94,850,619,0,7,3.6,182,609,39,558,0.312,31.08,51.85,0.95,0.13,786,1.5,223,3.5
+6945,2023,5,25,16,30,21.2,0.88,0.099,0.64,88,816,526,0,7,3.6,169,549,36,464,0.311,31.46,57.54,0.95,0.13,786,1.5,221,3.3
+6946,2023,5,25,17,0,20.9,0.86,0.092,0.64,79,772,427,0,0,3.5,91,732,18,421,0.311,31.91,63.22,0.94,0.13,786,1.4,219,3.2
+6947,2023,5,25,17,30,19.9,0.86,0.092,0.64,70,712,327,0,8,3.5,98,496,25,277,0.311,33.93,68.86,0.94,0.13,786,1.4,220,2.3
+6948,2023,5,25,18,0,19,0.87,0.084,0.64,59,628,228,0,8,6.4,81,458,39,204,0.311,43.9,74.41,0.94,0.13,786,1.4,221,1.5
+6949,2023,5,25,18,30,17.6,0.87,0.084,0.64,47,499,135,2,6,6.4,43,119,36,64,0.31,47.91,79.83,0.94,0.13,786,1.4,219,1.3
+6950,2023,5,25,19,0,16.1,0.92,0.078,0.64,30,298,56,7,6,6.8,33,3,100,33,0.31,54.03,85.08,0.94,0.13,786,1.4,218,1.1
+6951,2023,5,25,19,30,15.6,0.92,0.078,0.64,6,39,6,4,8,6.8,4,0,57,4,0.31,55.78,89.91,0.94,0.13,786,1.3,214,1.1
+6952,2023,5,25,20,0,15.1,0.97,0.071,0.64,0,0,0,0,3,5.7,0,0,0,0,0.31,53.58,95.2,0.94,0.13,786,1.3,209,1.2
+6953,2023,5,25,20,30,14.5,0.97,0.071,0.64,0,0,0,0,0,5.7,0,0,0,0,0.31,55.69,99.79,0.94,0.13,786,1.2,207,1.2
+6954,2023,5,25,21,0,13.9,0.99,0.063,0.64,0,0,0,0,0,5.1,0,0,0,0,0.31,55.44,104.04,0.93,0.13,786,1.2,205,1.3
+6955,2023,5,25,21,30,13.2,0.99,0.063,0.64,0,0,0,0,0,5.1,0,0,0,0,0.31,58.02,107.88,0.93,0.13,786,1.1,204,1.3
+6956,2023,5,25,22,0,12.6,0.95,0.056,0.64,0,0,0,0,0,4.4,0,0,0,0,0.31,57.38,111.24,0.93,0.13,786,1.1,203,1.3
+6957,2023,5,25,22,30,12,0.95,0.056,0.64,0,0,0,0,0,4.4,0,0,0,0,0.31,59.68,114.03,0.93,0.13,786,1,200,1.3
+6958,2023,5,25,23,0,11.4,0.9,0.055,0.64,0,0,0,0,0,3.7,0,0,0,0,0.31,59.31,116.19,0.93,0.13,786,1,197,1.3
+6959,2023,5,25,23,30,10.9,0.9,0.055,0.64,0,0,0,0,0,3.7,0,0,0,0,0.31,61.3,117.63,0.93,0.13,786,1,194,1.2
+6960,2023,5,26,0,0,10.5,0.88,0.059,0.64,0,0,0,0,0,3.3,0,0,0,0,0.31,60.95,118.31,0.93,0.13,786,1,190,1.2
+6961,2023,5,26,0,30,10.2,0.88,0.059,0.64,0,0,0,0,0,3.3,0,0,0,0,0.311,62.18,118.21,0.93,0.13,786,1,187,1.1
+6962,2023,5,26,1,0,9.9,0.91,0.065,0.64,0,0,0,0,0,3.1,0,0,0,0,0.311,62.46,117.32,0.93,0.13,786,1.1,184,0.9
+6963,2023,5,26,1,30,9.6,0.91,0.065,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,63.73,115.69,0.94,0.13,786,1.1,184,0.9
+6964,2023,5,26,2,0,9.4,0.97,0.08,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,64.65,113.36,0.94,0.13,786,1.1,184,0.8
+6965,2023,5,26,2,30,9.2,0.97,0.08,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,65.61,110.41,0.94,0.13,787,1.1,189,0.7
+6966,2023,5,26,3,0,9.1,1,0.087,0.64,0,0,0,0,0,3.3,0,0,0,0,0.312,66.93,106.92,0.95,0.13,787,1.2,194,0.7
+6967,2023,5,26,3,30,8.9,1,0.087,0.64,0,0,0,0,0,3.3,0,0,0,0,0.313,67.83,102.97,0.94,0.13,787,1.2,206,0.6
+6968,2023,5,26,4,0,8.7,1.01,0.09,0.64,0,0,0,0,0,3.3,0,0,0,0,0.313,69.1,98.62,0.94,0.13,787,1.2,217,0.5
+6969,2023,5,26,4,30,9,1.01,0.09,0.64,0,0,0,0,0,3.3,0,0,0,0,0.314,67.72,93.95,0.94,0.13,787,1.2,229,0.4
+6970,2023,5,26,5,0,9.3,1.02,0.092,0.64,13,88,15,0,0,3.8,13,88,0,15,0.314,68.61,88.72,0.94,0.13,788,1.2,241,0.3
+6971,2023,5,26,5,30,10.6,1.02,0.092,0.64,36,348,74,0,0,3.8,36,348,0,74,0.314,62.9,83.73,0.94,0.13,788,1.2,192,0.3
+6972,2023,5,26,6,0,11.9,1.02,0.092,0.64,52,533,159,0,0,3.6,52,533,0,159,0.315,56.63,78.43,0.94,0.13,788,1.2,144,0.4
+6973,2023,5,26,6,30,13.7,1.02,0.092,0.64,63,655,255,0,0,3.6,63,655,0,255,0.314,50.35,72.96,0.93,0.13,788,1.2,155,0.8
+6974,2023,5,26,7,0,15.5,1.01,0.091,0.64,72,739,356,0,0,2.9,72,739,0,356,0.314,42.68,67.38,0.93,0.13,789,1.2,166,1.2
+6975,2023,5,26,7,30,16.9,1.01,0.091,0.64,81,797,458,0,0,2.9,83,785,0,455,0.314,39.04,61.73,0.93,0.13,789,1.2,175,1.8
+6976,2023,5,26,8,0,18.3,1.01,0.093,0.64,86,841,556,0,0,2.3,127,727,0,533,0.315,34.27,56.04,0.93,0.13,789,1.2,183,2.4
+6977,2023,5,26,8,30,19.3,1.01,0.093,0.64,92,874,650,0,0,2.3,180,647,0,593,0.315,32.21,50.35,0.93,0.13,789,1.2,188,3.1
+6978,2023,5,26,9,0,20.2,0.99,0.094,0.64,97,899,736,0,8,2.3,290,401,0,575,0.316,30.56,44.71,0.93,0.13,789,1.2,194,3.7
+6979,2023,5,26,9,30,21,0.99,0.094,0.64,101,920,814,0,7,2.3,361,275,0,574,0.317,29.09,39.18,0.93,0.13,789,1.2,197,4.3
+6980,2023,5,26,10,0,21.7,0.96,0.093,0.64,103,936,880,0,7,2.5,335,443,0,703,0.318,28.23,33.86,0.93,0.13,788,1.2,200,4.8
+6981,2023,5,26,10,30,22.2,0.96,0.093,0.64,103,952,936,0,8,2.5,346,522,0,803,0.318,27.38,28.91,0.93,0.13,788,1.2,203,5.2
+6982,2023,5,26,11,0,22.7,0.64,0.075,0.64,100,968,980,0,7,2.3,241,711,0,888,0.318,26.11,24.57,0.93,0.13,788,1.2,205,5.6
+6983,2023,5,26,11,30,23,0.64,0.075,0.64,101,973,1008,0,3,2.3,339,582,0,881,0.318,25.64,21.25,0.93,0.13,788,1.2,207,5.8
+6984,2023,5,26,12,0,23.4,0.61,0.076,0.64,102,975,1021,0,0,1.3,171,866,0,987,0.318,23.44,19.5,0.93,0.13,788,1.2,209,5.9
+6985,2023,5,26,12,30,23.7,0.61,0.076,0.64,102,975,1020,0,0,1.3,144,907,0,998,0.317,23.02,19.76,0.93,0.13,788,1.2,211,6
+6986,2023,5,26,13,0,23.9,0.59,0.076,0.64,101,973,1004,0,0,0.1,147,890,0,973,0.317,20.72,21.94,0.93,0.13,788,1.1,212,6.1
+6987,2023,5,26,13,30,24.1,0.59,0.076,0.64,101,967,973,0,0,0,231,709,0,871,0.317,20.45,25.55,0.93,0.13,787,1.1,212,6.1
+6988,2023,5,26,14,0,24.2,0.44,0.073,0.64,99,959,929,0,0,-1.2,187,790,0,871,0.317,18.58,30.08,0.93,0.13,787,1.1,213,6
+6989,2023,5,26,14,30,24,0.44,0.073,0.64,98,947,872,0,0,-1.2,126,882,0,847,0.317,18.8,35.14,0.93,0.13,787,1.1,212,6
+6990,2023,5,26,15,0,23.9,0.44,0.075,0.64,94,931,802,0,0,-2.2,102,912,0,795,0.317,17.55,40.52,0.93,0.13,787,1,212,5.9
+6991,2023,5,26,15,30,23.6,0.44,0.075,0.64,91,911,723,0,0,-2.2,116,854,18,708,0.316,17.87,46.08,0.93,0.13,787,1,211,5.8
+6992,2023,5,26,16,0,23.2,0.46,0.075,0.64,86,884,634,0,8,-3,143,754,61,610,0.316,17.23,51.73,0.93,0.13,787,1,210,5.6
+6993,2023,5,26,16,30,22.7,0.46,0.075,0.64,81,852,540,0,7,-3,123,726,61,514,0.316,17.74,57.42,0.93,0.13,786,1,208,5.3
+6994,2023,5,26,17,0,22.1,0.48,0.073,0.64,74,808,440,0,7,-3.8,108,701,71,425,0.316,17.38,63.1,0.93,0.13,786,0.9,207,5
+6995,2023,5,26,17,30,21,0.48,0.073,0.64,67,747,338,0,7,-3.8,126,485,32,302,0.315,18.58,68.73,0.93,0.13,786,0.9,204,4
+6996,2023,5,26,18,0,19.9,0.53,0.071,0.64,58,660,237,0,7,-2.1,108,343,14,201,0.315,22.64,74.28,0.93,0.13,786,0.9,202,2.9
+6997,2023,5,26,18,30,17.5,0.53,0.071,0.64,47,518,140,2,8,-2.1,79,247,50,123,0.315,26.29,79.7,0.93,0.13,786,0.9,199,2.2
+6998,2023,5,26,19,0,15.1,0.65,0.081,0.64,32,296,58,7,7,1.4,46,22,100,48,0.315,39.43,84.94,0.94,0.13,786,0.9,195,1.5
+6999,2023,5,26,19,30,14.8,0.65,0.081,0.64,6,37,6,4,7,1.4,5,0,57,5,0.315,40.2,89.79,0.95,0.13,786,1,193,1.9
+7000,2023,5,26,20,0,14.4,0.79,0.108,0.64,0,0,0,0,7,0.9,0,0,0,0,0.314,39.9,95.05,0.96,0.13,786,1,191,2.2
+7001,2023,5,26,20,30,14.6,0.79,0.108,0.64,0,0,0,0,8,0.9,0,0,0,0,0.314,39.44,99.64,0.96,0.13,787,1.1,186,2.8
+7002,2023,5,26,21,0,14.7,0.82,0.118,0.64,0,0,0,0,5,0.6,0,0,0,0,0.314,38.21,103.89,0.96,0.13,787,1.2,181,3.4
+7003,2023,5,26,21,30,14,0.82,0.118,0.64,0,0,0,0,0,0.6,0,0,0,0,0.315,39.97,107.72,0.95,0.13,787,1.2,170,2.9
+7004,2023,5,26,22,0,13.2,0.71,0.089,0.64,0,0,0,0,0,2,0,0,0,0,0.315,46.51,111.07,0.94,0.13,787,1.2,159,2.5
+7005,2023,5,26,22,30,12.1,0.71,0.089,0.64,0,0,0,0,0,2,0,0,0,0,0.316,49.98,113.86,0.93,0.13,787,1.1,153,2.1
+7006,2023,5,26,23,0,11,0.61,0.072,0.64,0,0,0,0,0,2.7,0,0,0,0,0.316,56.52,116.01,0.93,0.13,787,1.1,148,1.6
+7007,2023,5,26,23,30,10.7,0.61,0.072,0.64,0,0,0,0,3,2.7,0,0,0,0,0.317,57.66,117.46,0.93,0.13,787,1.1,152,1.5
+7008,2023,5,27,0,0,10.4,0.63,0.076,0.64,0,0,0,0,8,2.8,0,0,0,0,0.317,59.33,118.14,0.93,0.13,787,1.1,156,1.4
+7009,2023,5,27,0,30,10.2,0.63,0.076,0.64,0,0,0,0,8,2.8,0,0,0,0,0.317,60.13,118.04,0.93,0.13,787,1,161,1.2
+7010,2023,5,27,1,0,10,0.64,0.081,0.64,0,0,0,0,8,3.1,0,0,0,0,0.317,62.02,117.16,0.93,0.13,787,1,165,1.1
+7011,2023,5,27,1,30,9.5,0.64,0.081,0.64,0,0,0,0,0,3.1,0,0,0,0,0.318,64.13,115.53,0.93,0.13,787,1,160,1
+7012,2023,5,27,2,0,9.1,0.65,0.083,0.64,0,0,0,0,0,3.3,0,0,0,0,0.319,67.03,113.21,0.93,0.13,787,1,154,1
+7013,2023,5,27,2,30,8.5,0.65,0.083,0.64,0,0,0,0,0,3.3,0,0,0,0,0.32,69.79,110.28,0.93,0.13,787,1,148,1.1
+7014,2023,5,27,3,0,8,0.66,0.084,0.64,0,0,0,0,0,3.4,0,0,0,0,0.321,72.9,106.79,0.93,0.13,787,1,143,1.1
+7015,2023,5,27,3,30,7.5,0.66,0.084,0.64,0,0,0,0,0,3.4,0,0,0,0,0.322,75.43,102.85,0.93,0.13,787,1,142,1.1
+7016,2023,5,27,4,0,7,0.66,0.084,0.64,0,0,0,0,0,3.3,0,0,0,0,0.323,77.11,98.51,0.93,0.13,787,1,141,1.1
+7017,2023,5,27,4,30,7.3,0.66,0.084,0.64,0,0,0,0,0,3.3,0,0,0,0,0.324,75.55,93.84,0.93,0.13,787,1,144,1.3
+7018,2023,5,27,5,0,7.6,0.67,0.085,0.64,13,86,15,0,0,3.4,13,86,0,15,0.324,74.5,88.62,0.93,0.13,787,1,147,1.4
+7019,2023,5,27,5,30,9,0.67,0.085,0.64,37,349,76,0,0,3.4,37,349,0,76,0.325,67.76,83.63,0.93,0.13,787,1,148,1.7
+7020,2023,5,27,6,0,10.4,0.68,0.086,0.64,52,538,161,0,0,3.3,52,538,0,161,0.327,61.24,78.34,0.93,0.13,787,1,148,2
+7021,2023,5,27,6,30,12.7,0.68,0.086,0.64,64,660,258,0,0,3.3,64,660,0,258,0.328,52.62,72.88,0.93,0.13,787,1,168,2.2
+7022,2023,5,27,7,0,15,0.7,0.087,0.64,73,743,360,0,0,1.4,73,743,0,360,0.329,39.71,67.3,0.93,0.13,787,1,188,2.4
+7023,2023,5,27,7,30,16.7,0.7,0.087,0.64,81,801,461,0,0,1.4,147,604,0,434,0.33,35.63,61.65,0.93,0.13,787,1,196,2.9
+7024,2023,5,27,8,0,18.4,0.71,0.091,0.64,88,842,559,0,0,-0.5,130,740,0,544,0.331,27.94,55.96,0.93,0.13,788,1.1,204,3.5
+7025,2023,5,27,8,30,19.2,0.71,0.091,0.64,94,875,653,0,0,-0.5,171,691,0,613,0.332,26.58,50.27,0.93,0.13,788,1.1,206,3.9
+7026,2023,5,27,9,0,20.1,0.73,0.095,0.64,99,898,738,0,3,-0.6,338,401,0,623,0.332,24.94,44.63,0.93,0.13,788,1.1,207,4.3
+7027,2023,5,27,9,30,20.6,0.73,0.095,0.64,105,915,815,0,0,-0.6,288,561,0,723,0.333,24.19,39.1,0.94,0.13,788,1.1,208,4.5
+7028,2023,5,27,10,0,21.2,0.78,0.105,0.64,111,926,881,0,0,-0.6,111,926,0,881,0.334,23.29,33.77,0.94,0.13,788,1.1,209,4.7
+7029,2023,5,27,10,30,21.4,0.78,0.105,0.64,111,941,936,0,8,-0.6,305,548,4,785,0.335,23.01,28.8,0.94,0.13,788,1.1,211,4.8
+7030,2023,5,27,11,0,21.7,0.65,0.092,0.64,109,954,978,0,6,-0.8,363,317,0,652,0.335,22.19,24.44,0.94,0.13,787,1.2,212,4.8
+7031,2023,5,27,11,30,21.6,0.65,0.092,0.64,111,958,1005,0,6,-0.8,431,63,0,490,0.336,22.33,21.1,0.94,0.13,787,1.2,214,4.8
+7032,2023,5,27,12,0,21.6,0.68,0.094,0.64,112,959,1017,0,6,-0.7,291,38,0,327,0.337,22.53,19.34,0.94,0.13,787,1.2,216,4.7
+7033,2023,5,27,12,30,21.6,0.68,0.094,0.64,112,957,1014,0,6,-0.7,308,317,0,607,0.338,22.53,19.59,0.94,0.13,787,1.2,219,4.7
+7034,2023,5,27,13,0,21.6,0.7,0.094,0.64,112,953,997,0,6,-0.3,437,352,0,764,0.339,23.24,21.78,0.94,0.13,787,1.2,221,4.6
+7035,2023,5,27,13,30,21.4,0.7,0.094,0.64,112,943,964,0,6,-0.3,425,219,0,623,0.339,23.53,25.4,0.94,0.13,787,1.3,225,4.5
+7036,2023,5,27,14,0,21.3,0.82,0.106,0.64,114,928,918,0,6,0.2,378,35,0,408,0.34,24.57,29.94,0.95,0.13,787,1.3,229,4.3
+7037,2023,5,27,14,30,20.8,0.82,0.106,0.64,112,913,860,0,8,0.2,373,291,0,611,0.34,25.33,35.01,0.95,0.13,787,1.3,234,4
+7038,2023,5,27,15,0,20.4,0.87,0.11,0.64,110,893,790,0,8,0.8,268,564,0,698,0.339,27.02,40.39,0.95,0.13,788,1.4,239,3.7
+7039,2023,5,27,15,30,19.8,0.87,0.11,0.64,105,870,710,0,8,0.8,245,599,7,661,0.339,28.04,45.95,0.95,0.13,788,1.4,245,3.3
+7040,2023,5,27,16,0,19.2,0.91,0.112,0.64,100,839,621,0,3,1.3,241,454,14,523,0.338,30.21,51.61,0.95,0.13,788,1.4,251,2.9
+7041,2023,5,27,16,30,18.5,0.91,0.112,0.64,94,799,526,0,8,1.3,192,559,32,494,0.337,31.56,57.3,0.95,0.13,788,1.4,259,2.4
+7042,2023,5,27,17,0,17.9,0.98,0.115,0.64,88,747,427,0,0,1.7,115,682,0,425,0.337,33.66,62.98,0.95,0.13,788,1.4,268,1.9
+7043,2023,5,27,17,30,17.2,0.98,0.115,0.64,79,681,327,0,0,1.7,79,681,0,327,0.336,35.18,68.61,0.95,0.13,788,1.4,286,1.4
+7044,2023,5,27,18,0,16.5,1.04,0.113,0.64,67,591,228,0,0,2.9,67,591,0,228,0.335,40.01,74.16,0.95,0.13,789,1.4,304,0.8
+7045,2023,5,27,18,30,15.6,1.04,0.113,0.64,52,465,136,0,0,2.8,52,465,0,136,0.334,42.36,79.58,0.95,0.13,789,1.4,168,0.7
+7046,2023,5,27,19,0,14.6,1.09,0.105,0.64,33,274,58,0,0,5.3,33,274,0,58,0.333,53.53,84.81,0.95,0.13,789,1.4,31,0.5
+7047,2023,5,27,19,30,13.8,1.09,0.105,0.64,8,45,8,0,0,5.3,8,45,0,8,0.332,56.36,89.66,0.95,0.13,789,1.4,46,0.7
+7048,2023,5,27,20,0,12.9,1.12,0.097,0.64,0,0,0,0,0,5.1,0,0,0,0,0.331,59.22,94.91,0.95,0.13,790,1.4,60,0.8
+7049,2023,5,27,20,30,12.2,1.12,0.097,0.64,0,0,0,0,0,5.1,0,0,0,0,0.331,62,99.5,0.95,0.13,790,1.3,66,0.9
+7050,2023,5,27,21,0,11.5,1.15,0.093,0.64,0,0,0,0,0,4.8,0,0,0,0,0.33,63.24,103.74,0.95,0.13,790,1.3,71,0.9
+7051,2023,5,27,21,30,10.9,1.15,0.093,0.64,0,0,0,0,0,4.8,0,0,0,0,0.33,65.8,107.57,0.95,0.13,790,1.3,75,1
+7052,2023,5,27,22,0,10.3,1.16,0.092,0.64,0,0,0,0,0,4.4,0,0,0,0,0.33,66.61,110.91,0.95,0.13,790,1.3,79,1.1
+7053,2023,5,27,22,30,9.9,1.16,0.092,0.64,0,0,0,0,0,4.4,0,0,0,0,0.329,68.41,113.7,0.95,0.13,790,1.3,83,1.2
+7054,2023,5,27,23,0,9.5,1.16,0.09,0.64,0,0,0,0,0,4.2,0,0,0,0,0.328,69.6,115.85,0.95,0.13,790,1.4,86,1.3
+7055,2023,5,27,23,30,9,1.16,0.09,0.64,0,0,0,0,0,4.2,0,0,0,0,0.327,71.98,117.29,0.94,0.13,790,1.4,89,1.4
+7056,2023,5,28,0,0,8.6,1.14,0.087,0.64,0,0,0,0,0,4.2,0,0,0,0,0.326,74.03,117.97,0.94,0.13,790,1.4,92,1.5
+7057,2023,5,28,0,30,8.2,1.14,0.087,0.64,0,0,0,0,0,4.2,0,0,0,0,0.325,76.06,117.88,0.94,0.13,790,1.3,94,1.5
+7058,2023,5,28,1,0,7.7,1.1,0.081,0.64,0,0,0,0,0,4.3,0,0,0,0,0.325,79.06,117,0.94,0.13,790,1.3,97,1.5
+7059,2023,5,28,1,30,7.3,1.1,0.081,0.64,0,0,0,0,0,4.3,0,0,0,0,0.324,81.24,115.38,0.94,0.13,790,1.3,98,1.4
+7060,2023,5,28,2,0,6.9,1.07,0.078,0.64,0,0,0,0,0,4.2,0,0,0,0,0.324,82.94,113.07,0.94,0.13,789,1.3,99,1.3
+7061,2023,5,28,2,30,6.7,1.07,0.078,0.64,0,0,0,0,0,4.2,0,0,0,0,0.323,84.08,110.14,0.94,0.13,789,1.3,98,1.2
+7062,2023,5,28,3,0,6.4,1.06,0.079,0.64,0,0,0,0,0,4,0,0,0,0,0.323,84.6,106.67,0.94,0.13,789,1.3,96,1.1
+7063,2023,5,28,3,30,6.3,1.06,0.079,0.64,0,0,0,0,0,4,0,0,0,0,0.322,85.18,102.73,0.94,0.13,789,1.3,93,1.1
+7064,2023,5,28,4,0,6.1,1.06,0.082,0.64,0,0,0,0,0,3.7,0,0,0,0,0.322,84.65,98.4,0.94,0.13,789,1.3,89,1
+7065,2023,5,28,4,30,6.7,1.06,0.082,0.64,0,0,0,0,0,3.7,0,0,0,0,0.322,81.23,93.74,0.94,0.13,789,1.3,84,0.9
+7066,2023,5,28,5,0,7.2,1.06,0.085,0.64,13,101,16,5,5,3.8,8,0,71,8,0.321,78.85,88.54,0.94,0.13,789,1.3,79,0.8
+7067,2023,5,28,5,30,8.7,1.06,0.085,0.64,36,366,77,6,4,3.8,45,1,79,45,0.321,71.22,83.55,0.94,0.13,789,1.3,69,1.1
+7068,2023,5,28,6,0,10.2,1.05,0.086,0.64,51,544,162,0,5,3.3,90,85,0,107,0.322,62.37,78.26,0.94,0.13,790,1.3,59,1.3
+7069,2023,5,28,6,30,12.4,1.05,0.086,0.64,62,662,258,0,0,3.3,110,429,0,237,0.322,53.86,72.8,0.94,0.13,789,1.3,66,1
+7070,2023,5,28,7,0,14.6,1.04,0.086,0.64,71,743,359,0,0,2.2,71,743,0,359,0.322,43.06,67.23,0.94,0.13,789,1.3,73,0.7
+7071,2023,5,28,7,30,16.2,1.04,0.086,0.64,78,803,460,0,0,2.2,78,803,0,460,0.321,38.87,61.58,0.94,0.13,789,1.3,142,0.8
+7072,2023,5,28,8,0,17.7,1.02,0.084,0.64,83,848,559,0,0,1.4,83,848,0,559,0.32,33.44,55.89,0.94,0.13,789,1.3,212,0.8
+7073,2023,5,28,8,30,18.6,1.02,0.084,0.64,88,881,652,0,0,1.4,88,881,0,652,0.318,31.61,50.2,0.94,0.13,789,1.3,224,1.4
+7074,2023,5,28,9,0,19.5,1.01,0.083,0.64,93,907,739,0,0,1.6,93,907,0,739,0.316,30.26,44.56,0.94,0.13,789,1.3,236,1.9
+7075,2023,5,28,9,30,20.1,1.01,0.083,0.64,96,927,816,0,0,1.6,96,927,0,816,0.314,29.16,39.02,0.94,0.13,789,1.3,240,2.3
+7076,2023,5,28,10,0,20.7,0.99,0.083,0.64,98,942,882,0,0,1.7,200,768,0,839,0.312,28.39,33.68,0.94,0.13,789,1.3,244,2.7
+7077,2023,5,28,10,30,21.3,0.99,0.083,0.64,99,957,938,0,0,1.7,206,674,0,797,0.31,27.37,28.7,0.94,0.13,789,1.3,247,3
+7078,2023,5,28,11,0,21.8,0.92,0.07,0.64,95,971,980,0,3,1.7,310,485,0,752,0.307,26.49,24.33,0.94,0.13,789,1.3,249,3.3
+7079,2023,5,28,11,30,22.2,0.92,0.07,0.64,97,976,1008,0,3,1.7,403,375,0,753,0.306,25.85,20.97,0.94,0.13,789,1.3,251,3.5
+7080,2023,5,28,12,0,22.5,0.93,0.069,0.64,96,978,1020,0,8,1.5,297,558,0,824,0.304,24.98,19.18,0.94,0.13,789,1.3,253,3.7
+7081,2023,5,28,12,30,22.7,0.93,0.069,0.64,97,978,1019,0,0,1.5,197,750,0,904,0.302,24.65,19.42,0.94,0.13,788,1.3,255,3.9
+7082,2023,5,28,13,0,22.9,0.97,0.069,0.64,96,975,1002,0,0,1.2,152,878,0,968,0.301,23.93,21.62,0.94,0.13,788,1.3,257,4
+7083,2023,5,28,13,30,22.9,0.97,0.069,0.64,94,970,971,0,8,1.2,302,284,0,559,0.3,23.93,25.26,0.94,0.13,788,1.4,260,4
+7084,2023,5,28,14,0,22.8,0.99,0.067,0.64,92,962,927,0,8,1,299,177,0,453,0.3,23.72,29.8,0.94,0.13,788,1.4,263,4
+7085,2023,5,28,14,30,22.6,0.99,0.067,0.64,90,949,869,0,7,1,287,97,0,367,0.3,24,34.88,0.94,0.13,788,1.4,268,3.9
+7086,2023,5,28,15,0,22.3,1.03,0.072,0.64,90,931,800,0,6,0.9,340,71,0,394,0.301,24.21,40.27,0.94,0.13,788,1.4,273,3.9
+7087,2023,5,28,15,30,21.8,1.03,0.072,0.64,86,910,720,0,6,0.9,271,28,0,291,0.302,24.96,45.84,0.94,0.13,788,1.4,281,3.8
+7088,2023,5,28,16,0,21.4,1.07,0.073,0.64,82,883,632,0,6,1.1,239,39,0,263,0.303,26.07,51.49,0.95,0.13,788,1.4,290,3.7
+7089,2023,5,28,16,30,20.6,1.07,0.073,0.64,78,847,537,0,6,1.1,194,135,0,267,0.303,27.37,57.18,0.95,0.13,788,1.4,300,3.6
+7090,2023,5,28,17,0,19.9,1.1,0.076,0.64,73,800,438,0,7,1.7,203,304,7,342,0.304,29.81,62.86,0.95,0.13,788,1.4,310,3.5
+7091,2023,5,28,17,30,18.8,1.1,0.076,0.64,67,735,336,0,8,1.7,134,343,11,260,0.304,31.91,68.49,0.95,0.13,788,1.5,322,3.4
+7092,2023,5,28,18,0,17.7,1.11,0.081,0.64,59,645,236,0,5,3,134,208,7,191,0.304,37.57,74.04,0.95,0.13,789,1.5,335,3.2
+7093,2023,5,28,18,30,16.2,1.11,0.081,0.64,48,514,142,1,5,3,96,91,14,113,0.304,41.31,79.45,0.95,0.13,789,1.5,168,2.9
+7094,2023,5,28,19,0,14.7,1.1,0.085,0.64,32,313,61,7,5,5,38,1,100,38,0.303,52.04,84.69,0.96,0.13,789,1.5,0,2.6
+7095,2023,5,28,19,30,13.9,1.1,0.085,0.64,9,58,9,4,5,5,5,0,57,5,0.303,54.87,89.55,0.96,0.13,790,1.6,7,2.6
+7096,2023,5,28,20,0,13.1,1.08,0.09,0.64,0,0,0,0,3,5.3,0,0,0,0,0.303,59.14,94.77,0.96,0.13,790,1.6,13,2.6
+7097,2023,5,28,20,30,12.6,1.08,0.09,0.64,0,0,0,0,0,5.3,0,0,0,0,0.303,61.1,99.35,0.96,0.13,790,1.6,19,2.4
+7098,2023,5,28,21,0,12.2,1.04,0.094,0.64,0,0,0,0,3,5.7,0,0,0,0,0.303,64.38,103.59,0.96,0.13,790,1.6,24,2.3
+7099,2023,5,28,21,30,11.8,1.04,0.094,0.64,0,0,0,0,0,5.7,0,0,0,0,0.303,66.09,107.42,0.96,0.13,790,1.6,29,2.1
+7100,2023,5,28,22,0,11.4,0.97,0.091,0.64,0,0,0,0,0,5.9,0,0,0,0,0.303,69.15,110.76,0.95,0.13,790,1.6,35,1.9
+7101,2023,5,28,22,30,10.9,0.97,0.091,0.64,0,0,0,0,0,5.9,0,0,0,0,0.303,71.47,113.54,0.95,0.13,790,1.6,42,1.7
+7102,2023,5,28,23,0,10.4,0.89,0.083,0.64,0,0,0,0,5,6,0,0,0,0,0.304,73.95,115.68,0.94,0.13,790,1.5,49,1.5
+7103,2023,5,28,23,30,9.9,0.89,0.083,0.64,0,0,0,0,0,6,0,0,0,0,0.304,76.46,117.13,0.94,0.13,790,1.5,54,1.4
+7104,2023,5,29,0,0,9.5,0.83,0.079,0.64,0,0,0,0,0,5.7,0,0,0,0,0.305,77.31,117.81,0.94,0.13,790,1.5,60,1.3
+7105,2023,5,29,0,30,9.1,0.83,0.079,0.64,0,0,0,0,3,5.7,0,0,0,0,0.305,79.31,117.72,0.94,0.13,789,1.4,62,1.2
+7106,2023,5,29,1,0,8.7,0.83,0.078,0.64,0,0,0,0,7,5.4,0,0,0,0,0.306,79.87,116.85,0.94,0.13,789,1.4,65,1.2
+7107,2023,5,29,1,30,8.4,0.83,0.078,0.64,0,0,0,0,3,5.4,0,0,0,0,0.307,81.51,115.24,0.94,0.13,789,1.4,65,1.1
+7108,2023,5,29,2,0,8.1,0.86,0.081,0.64,0,0,0,0,0,5.1,0,0,0,0,0.308,81.62,112.94,0.94,0.13,789,1.4,65,1
+7109,2023,5,29,2,30,8,0.86,0.081,0.64,0,0,0,0,0,5.1,0,0,0,0,0.309,82.18,110.01,0.94,0.13,789,1.4,62,1
+7110,2023,5,29,3,0,7.9,0.9,0.084,0.64,0,0,0,0,0,4.9,0,0,0,0,0.309,81.26,106.55,0.94,0.13,789,1.4,58,0.9
+7111,2023,5,29,3,30,7.9,0.9,0.084,0.64,0,0,0,0,0,4.9,0,0,0,0,0.31,81.26,102.62,0.94,0.13,789,1.4,52,0.8
+7112,2023,5,29,4,0,7.9,0.94,0.089,0.64,0,0,0,0,0,4.7,0,0,0,0,0.31,80.14,98.3,0.94,0.13,789,1.4,45,0.7
+7113,2023,5,29,4,30,8.3,0.94,0.089,0.64,0,0,0,0,0,4.7,0,0,0,0,0.311,78.1,93.65,0.94,0.13,790,1.4,35,0.7
+7114,2023,5,29,5,0,8.7,0.96,0.089,0.64,13,95,16,0,0,5.1,13,95,0,16,0.311,77.98,88.46,0.94,0.13,790,1.4,24,0.7
+7115,2023,5,29,5,30,9.9,0.96,0.089,0.64,37,360,78,0,0,5.1,37,360,0,78,0.312,71.95,83.47,0.94,0.13,790,1.4,18,1
+7116,2023,5,29,6,0,11.1,0.96,0.083,0.64,51,547,163,0,0,4.8,55,507,0,159,0.313,65.1,78.18,0.94,0.13,790,1.4,11,1.4
+7117,2023,5,29,6,30,13.1,0.96,0.083,0.64,61,670,260,0,0,4.8,69,630,0,256,0.313,57.09,72.73,0.94,0.13,790,1.3,185,1.2
+7118,2023,5,29,7,0,15.2,0.94,0.074,0.64,67,757,361,0,0,4,67,757,0,361,0.314,47.1,67.16,0.93,0.13,790,1.3,358,1
+7119,2023,5,29,7,30,16.6,0.94,0.074,0.64,74,816,463,0,0,4,74,816,0,463,0.314,43.08,61.52,0.93,0.13,790,1.3,315,1
+7120,2023,5,29,8,0,18,0.93,0.07,0.64,77,861,561,0,0,3.5,95,825,0,558,0.315,38.23,55.83,0.93,0.13,790,1.3,272,1
+7121,2023,5,29,8,30,18.6,0.93,0.07,0.64,82,892,654,0,0,3.6,118,808,0,636,0.316,36.82,50.14,0.93,0.13,790,1.3,259,1.4
+7122,2023,5,29,9,0,19.3,0.94,0.071,0.64,87,916,740,0,7,4.2,185,694,0,680,0.316,36.76,44.49,0.93,0.13,790,1.4,247,1.8
+7123,2023,5,29,9,30,19.9,0.94,0.071,0.64,91,934,817,0,8,4.2,205,704,0,753,0.317,35.42,38.94,0.94,0.13,790,1.4,243,2.2
+7124,2023,5,29,10,0,20.4,0.97,0.073,0.64,93,947,882,0,3,4.7,246,693,0,823,0.318,35.69,33.6,0.94,0.13,790,1.4,238,2.5
+7125,2023,5,29,10,30,20.9,0.97,0.073,0.64,91,965,938,0,0,4.7,125,906,0,920,0.319,34.61,28.61,0.93,0.13,790,1.4,236,2.9
+7126,2023,5,29,11,0,21.3,0.95,0.052,0.64,85,981,980,0,0,4.9,97,965,0,977,0.32,34.31,24.21,0.93,0.13,790,1.4,234,3.2
+7127,2023,5,29,11,30,21.6,0.95,0.052,0.64,86,986,1008,0,0,4.9,123,926,0,988,0.321,33.68,20.83,0.93,0.13,790,1.4,234,3.4
+7128,2023,5,29,12,0,21.8,1,0.053,0.64,87,987,1020,0,3,5,419,345,0,745,0.322,33.4,19.03,0.93,0.13,790,1.5,234,3.6
+7129,2023,5,29,12,30,22,1,0.053,0.64,86,987,1018,0,8,5,333,504,0,809,0.323,33,19.26,0.93,0.13,790,1.5,235,3.7
+7130,2023,5,29,13,0,22.1,1.02,0.052,0.64,85,985,1002,0,8,4.8,229,723,0,902,0.324,32.47,21.46,0.93,0.13,789,1.5,236,3.8
+7131,2023,5,29,13,30,22.4,1.02,0.052,0.64,82,983,972,0,8,4.8,172,800,0,896,0.324,31.89,25.11,0.93,0.13,789,1.5,237,3.7
+7132,2023,5,29,14,0,22.7,1.05,0.044,0.64,79,978,929,0,8,4.4,164,809,0,867,0.325,30.34,29.67,0.92,0.13,789,1.5,239,3.6
+7133,2023,5,29,14,30,22.9,1.05,0.044,0.64,77,968,872,0,0,4.4,77,968,0,872,0.324,29.94,34.75,0.92,0.13,788,1.4,241,3.5
+7134,2023,5,29,15,0,23,1.09,0.045,0.64,75,954,804,0,0,3.5,75,954,0,804,0.324,27.97,40.15,0.92,0.13,788,1.4,243,3.3
+7135,2023,5,29,15,30,23.1,1.09,0.045,0.64,74,933,725,0,0,3.5,89,910,0,724,0.324,27.8,45.72,0.93,0.13,788,1.4,248,3.2
+7136,2023,5,29,16,0,23.1,1.12,0.05,0.64,71,907,637,0,0,2.8,122,805,0,624,0.323,26.43,51.38,0.93,0.13,788,1.4,252,3.1
+7137,2023,5,29,16,30,22.7,1.12,0.05,0.64,70,869,542,0,7,2.8,161,630,7,503,0.323,27.07,57.07,0.94,0.13,788,1.4,260,2.9
+7138,2023,5,29,17,0,22.3,1.16,0.062,0.64,67,818,442,0,7,2.5,132,602,29,408,0.323,27.15,62.75,0.94,0.13,788,1.4,269,2.6
+7139,2023,5,29,17,30,21.3,1.16,0.062,0.64,62,756,341,0,7,2.5,136,438,32,297,0.323,28.86,68.38,0.94,0.13,788,1.4,292,2.2
+7140,2023,5,29,18,0,20.3,1.17,0.07,0.64,55,667,240,0,7,4.4,74,563,71,230,0.324,35.07,73.92,0.95,0.13,788,1.4,315,1.7
+7141,2023,5,29,18,30,18.5,1.17,0.07,0.64,45,548,146,1,7,4.4,62,282,29,114,0.324,39.21,79.33,0.94,0.13,788,1.4,160,1.9
+7142,2023,5,29,19,0,16.6,1.15,0.065,0.64,30,361,64,7,7,6.3,41,7,100,42,0.324,50.71,84.57,0.94,0.13,789,1.4,4,2
+7143,2023,5,29,19,30,15.6,1.15,0.065,0.64,9,77,10,4,6,6.3,6,0,57,6,0.324,54.04,89.43,0.94,0.13,789,1.4,14,2.3
+7144,2023,5,29,20,0,14.5,1.13,0.064,0.64,0,0,0,0,6,6.7,0,0,0,0,0.324,59.32,94.64,0.94,0.13,789,1.4,23,2.6
+7145,2023,5,29,20,30,13.6,1.13,0.064,0.64,0,0,0,0,7,6.7,0,0,0,0,0.324,62.96,99.22,0.93,0.13,790,1.3,27,2.7
+7146,2023,5,29,21,0,12.7,1.09,0.062,0.64,0,0,0,0,7,7.2,0,0,0,0,0.324,69.04,103.45,0.93,0.13,790,1.3,32,2.8
+7147,2023,5,29,21,30,12.1,1.09,0.062,0.64,0,0,0,0,7,7.2,0,0,0,0,0.325,71.81,107.27,0.93,0.13,790,1.3,33,2.7
+7148,2023,5,29,22,0,11.5,1.05,0.061,0.64,0,0,0,0,7,7.4,0,0,0,0,0.325,76.09,110.61,0.93,0.13,790,1.3,35,2.6
+7149,2023,5,29,22,30,11,1.05,0.061,0.64,0,0,0,0,0,7.4,0,0,0,0,0.325,78.65,113.39,0.93,0.13,790,1.3,38,2.4
+7150,2023,5,29,23,0,10.6,1.01,0.061,0.64,0,0,0,0,0,7.5,0,0,0,0,0.325,81.37,115.53,0.93,0.13,790,1.2,40,2.2
+7151,2023,5,29,23,30,10.1,1.01,0.061,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,84.02,116.97,0.93,0.13,789,1.2,43,2
+7152,2023,5,30,0,0,9.7,0.98,0.062,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,86.2,117.66,0.93,0.13,789,1.2,47,1.8
+7153,2023,5,30,0,30,9.3,0.98,0.062,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,88.54,117.57,0.93,0.13,789,1.2,49,1.7
+7154,2023,5,30,1,0,8.9,0.95,0.063,0.64,0,0,0,0,0,7.4,0,0,0,0,0.327,90.45,116.71,0.93,0.13,789,1.2,52,1.5
+7155,2023,5,30,1,30,8.6,0.95,0.063,0.64,0,0,0,0,0,7.4,0,0,0,0,0.327,92.3,115.1,0.92,0.13,789,1.2,56,1.5
+7156,2023,5,30,2,0,8.3,0.93,0.062,0.64,0,0,0,0,0,7.3,0,0,0,0,0.327,93.34,112.81,0.92,0.13,789,1.2,60,1.4
+7157,2023,5,30,2,30,8.1,0.93,0.062,0.64,0,0,0,0,0,7.3,0,0,0,0,0.328,94.61,109.89,0.92,0.13,789,1.2,63,1.3
+7158,2023,5,30,3,0,7.8,0.91,0.062,0.64,0,0,0,0,0,7,0,0,0,0,0.329,94.98,106.44,0.92,0.13,789,1.2,67,1.2
+7159,2023,5,30,3,30,7.6,0.91,0.062,0.64,0,0,0,0,0,7,0,0,0,0,0.33,96.28,102.52,0.92,0.13,789,1.2,69,1.1
+7160,2023,5,30,4,0,7.4,0.9,0.062,0.64,0,0,0,0,0,6.7,0,0,0,0,0.331,95.02,98.2,0.92,0.13,789,1.2,71,1.1
+7161,2023,5,30,4,30,8.1,0.9,0.062,0.64,0,0,0,0,0,6.7,0,0,0,0,0.332,90.61,93.56,0.92,0.13,789,1.2,72,1
+7162,2023,5,30,5,0,8.7,0.91,0.062,0.64,13,126,17,0,0,6.4,13,126,0,17,0.333,85.51,88.38,0.92,0.13,789,1.2,73,0.9
+7163,2023,5,30,5,30,10.5,0.91,0.062,0.64,33,414,81,0,0,6.4,33,414,0,81,0.334,75.8,83.39,0.93,0.13,789,1.2,74,1.1
+7164,2023,5,30,6,0,12.4,0.92,0.064,0.64,47,589,168,0,0,5.8,47,589,0,168,0.335,64.27,78.11,0.93,0.13,789,1.2,76,1.4
+7165,2023,5,30,6,30,14.4,0.92,0.064,0.64,56,701,265,0,0,5.9,56,701,0,265,0.335,56.52,72.66,0.93,0.13,790,1.2,102,1.2
+7166,2023,5,30,7,0,16.4,0.94,0.065,0.64,64,776,366,0,0,4.1,64,776,0,366,0.336,44,67.1,0.93,0.13,790,1.2,127,1.1
+7167,2023,5,30,7,30,17.8,0.94,0.065,0.64,71,831,468,0,0,4.1,71,831,0,468,0.336,40.28,61.45,0.93,0.13,790,1.2,162,1.1
+7168,2023,5,30,8,0,19.2,0.95,0.066,0.64,76,871,566,0,0,2.2,76,871,0,566,0.335,32.29,55.77,0.93,0.13,790,1.2,196,1.1
+7169,2023,5,30,8,30,20.2,0.95,0.066,0.64,81,902,660,0,0,2.2,88,886,0,657,0.334,30.32,50.07,0.93,0.13,789,1.2,204,1.4
+7170,2023,5,30,9,0,21.1,0.96,0.068,0.64,85,925,746,0,0,1.3,146,789,0,710,0.332,26.83,44.42,0.93,0.13,789,1.2,213,1.6
+7171,2023,5,30,9,30,21.9,0.96,0.068,0.64,89,943,823,0,8,1.3,218,717,29,776,0.33,25.55,38.88,0.93,0.13,789,1.2,211,2
+7172,2023,5,30,10,0,22.7,0.96,0.07,0.64,91,957,889,0,0,1,99,945,43,887,0.329,23.8,33.53,0.93,0.13,789,1.2,210,2.3
+7173,2023,5,30,10,30,23.3,0.96,0.07,0.64,88,976,946,0,0,1,116,935,0,938,0.327,22.95,28.52,0.92,0.13,789,1.2,211,2.8
+7174,2023,5,30,11,0,23.9,1.03,0.047,0.64,82,995,990,0,0,0.9,108,948,0,973,0.325,21.96,24.11,0.92,0.13,788,1.2,213,3.2
+7175,2023,5,30,11,30,24.2,1.03,0.047,0.64,83,999,1017,0,0,0.9,109,954,0,1001,0.323,21.57,20.71,0.92,0.13,788,1.2,216,3.6
+7176,2023,5,30,12,0,24.6,1.05,0.047,0.64,84,1000,1030,0,0,0.8,89,989,14,1025,0.321,20.98,18.89,0.91,0.13,788,1.2,219,4
+7177,2023,5,30,12,30,24.8,1.05,0.047,0.64,84,998,1027,0,0,0.8,167,820,14,942,0.318,20.74,19.11,0.92,0.13,788,1.2,222,4.3
+7178,2023,5,30,13,0,25,1.08,0.051,0.64,84,994,1010,0,8,0.7,274,641,0,871,0.316,20.39,21.32,0.92,0.13,787,1.2,225,4.5
+7179,2023,5,30,13,30,24.9,1.08,0.051,0.64,82,990,979,0,8,0.7,289,549,0,787,0.314,20.51,24.98,0.92,0.13,787,1.3,228,4.5
+7180,2023,5,30,14,0,24.8,1.08,0.044,0.64,78,986,936,0,7,0.6,263,624,7,806,0.313,20.38,29.54,0.91,0.13,787,1.3,230,4.5
+7181,2023,5,30,14,30,24.6,1.08,0.044,0.64,78,973,879,0,8,0.6,196,743,0,807,0.313,20.63,34.63,0.92,0.13,787,1.3,232,4.3
+7182,2023,5,30,15,0,24.3,1.09,0.05,0.64,78,955,809,0,0,0.2,137,823,0,767,0.313,20.41,40.03,0.92,0.13,787,1.3,233,4.1
+7183,2023,5,30,15,30,24,1.09,0.05,0.64,77,934,730,0,8,0.2,219,449,0,533,0.312,20.78,45.61,0.93,0.13,787,1.3,233,3.9
+7184,2023,5,30,16,0,23.6,1.1,0.057,0.64,74,906,641,0,8,-0.3,170,598,4,544,0.312,20.5,51.27,0.93,0.13,786,1.3,232,3.7
+7185,2023,5,30,16,30,23.1,1.1,0.057,0.64,71,873,547,0,8,-0.3,179,518,7,461,0.312,21.13,56.96,0.93,0.13,786,1.2,233,3.5
+7186,2023,5,30,17,0,22.5,1.11,0.06,0.64,67,829,448,0,0,-0.9,84,770,11,438,0.312,21.05,62.64,0.94,0.13,786,1.2,233,3.3
+7187,2023,5,30,17,30,21.5,1.11,0.06,0.64,61,770,346,0,0,-0.9,65,753,14,344,0.311,22.4,68.26,0.94,0.13,787,1.2,236,2.5
+7188,2023,5,30,18,0,20.5,1.1,0.062,0.64,54,689,246,0,0,1.8,59,658,0,243,0.311,28.9,73.8,0.94,0.13,787,1.2,240,1.8
+7189,2023,5,30,18,30,18.7,1.1,0.062,0.64,43,570,150,0,0,1.8,43,570,0,150,0.311,32.31,79.21,0.94,0.13,787,1.2,255,1.4
+7190,2023,5,30,19,0,17,1.06,0.061,0.64,30,379,67,2,0,4.8,34,322,21,65,0.311,44.48,84.45,0.94,0.13,787,1.1,270,1
+7191,2023,5,30,19,30,16,1.06,0.061,0.64,9,84,10,2,0,4.8,8,35,32,8,0.312,47.4,89.32,0.93,0.13,787,1.1,287,1
+7192,2023,5,30,20,0,15.1,1.01,0.056,0.64,0,0,0,0,0,3.8,0,0,0,0,0.312,46.92,94.51,0.93,0.13,788,1.1,304,1
+7193,2023,5,30,20,30,14.4,1.01,0.056,0.64,0,0,0,0,0,3.8,0,0,0,0,0.311,49.08,99.08,0.92,0.13,788,1.1,316,1.1
+7194,2023,5,30,21,0,13.8,0.92,0.045,0.64,0,0,0,0,0,3.3,0,0,0,0,0.311,49.19,103.31,0.92,0.13,788,1,328,1.2
+7195,2023,5,30,21,30,13.2,0.92,0.045,0.64,0,0,0,0,0,3.3,0,0,0,0,0.31,51.15,107.13,0.91,0.13,788,1,336,1.2
+7196,2023,5,30,22,0,12.6,0.82,0.04,0.64,0,0,0,0,0,3.4,0,0,0,0,0.31,53.55,110.46,0.91,0.13,788,1,345,1.2
+7197,2023,5,30,22,30,12.1,0.82,0.04,0.64,0,0,0,0,0,3.4,0,0,0,0,0.309,55.33,113.24,0.91,0.13,788,1,178,1.2
+7198,2023,5,30,23,0,11.6,0.76,0.039,0.64,0,0,0,0,0,3.5,0,0,0,0,0.308,57.46,115.38,0.91,0.13,788,1,10,1.1
+7199,2023,5,30,23,30,11,0.76,0.039,0.64,0,0,0,0,0,3.5,0,0,0,0,0.308,59.79,116.82,0.91,0.13,788,0.9,25,1.1
+7200,2023,5,31,0,0,10.4,0.74,0.04,0.64,0,0,0,0,0,3.6,0,0,0,0,0.307,62.93,117.51,0.91,0.13,788,0.9,40,1.1
+7201,2023,5,31,0,30,9.7,0.74,0.04,0.64,0,0,0,0,0,3.6,0,0,0,0,0.307,65.94,117.43,0.91,0.13,788,0.9,50,1.1
+7202,2023,5,31,1,0,9,0.74,0.04,0.64,0,0,0,0,0,3.8,0,0,0,0,0.307,69.68,116.57,0.91,0.13,788,0.9,60,1.1
+7203,2023,5,31,1,30,8.5,0.74,0.04,0.64,0,0,0,0,0,3.8,0,0,0,0,0.308,72.06,114.97,0.91,0.13,788,0.9,65,1.2
+7204,2023,5,31,2,0,8,0.75,0.041,0.64,0,0,0,0,5,3.7,0,0,0,0,0.308,74.43,112.68,0.91,0.13,788,0.9,69,1.2
+7205,2023,5,31,2,30,7.6,0.75,0.041,0.64,0,0,0,0,3,3.7,0,0,0,0,0.309,76.48,109.78,0.91,0.13,788,0.9,72,1.2
+7206,2023,5,31,3,0,7.2,0.76,0.043,0.64,0,0,0,0,0,3.6,0,0,0,0,0.309,77.81,106.33,0.91,0.13,788,0.9,75,1.2
+7207,2023,5,31,3,30,6.9,0.76,0.043,0.64,0,0,0,0,0,3.6,0,0,0,0,0.31,79.32,102.42,0.91,0.13,787,0.9,76,1.2
+7208,2023,5,31,4,0,6.6,0.78,0.044,0.64,0,0,0,0,0,3.2,0,0,0,0,0.311,79.15,98.11,0.91,0.13,787,0.8,78,1.2
+7209,2023,5,31,4,30,7.3,0.78,0.044,0.64,0,0,0,0,0,3.2,0,0,0,0,0.311,75.45,93.48,0.91,0.13,787,0.8,78,1.1
+7210,2023,5,31,5,0,8,0.81,0.046,0.64,14,155,19,3,0,3.2,11,22,46,12,0.312,71.77,88.31,0.91,0.13,787,0.8,77,1.1
+7211,2023,5,31,5,30,10.1,0.81,0.046,0.64,32,468,86,5,5,3.2,49,161,71,68,0.313,62.31,83.32,0.91,0.13,787,0.8,76,1.5
+7212,2023,5,31,6,0,12.2,0.85,0.048,0.64,43,637,175,0,0,2.2,43,637,0,175,0.314,50.59,78.05,0.91,0.13,787,0.8,75,2
+7213,2023,5,31,6,30,14.3,0.85,0.048,0.64,52,742,274,0,0,2.2,73,627,0,260,0.315,44.14,72.6,0.91,0.13,787,0.8,82,1.9
+7214,2023,5,31,7,0,16.5,0.91,0.052,0.64,60,812,377,0,0,0.3,69,777,0,372,0.317,33.34,67.04,0.92,0.13,787,0.8,89,1.7
+7215,2023,5,31,7,30,18.7,0.91,0.052,0.64,66,863,479,0,0,0.3,84,813,0,473,0.318,29.03,61.4,0.92,0.13,787,0.8,120,1.7
+7216,2023,5,31,8,0,20.8,0.97,0.056,0.64,72,899,578,0,0,-4.1,132,735,0,546,0.319,18.48,55.71,0.92,0.13,786,0.8,150,1.7
+7217,2023,5,31,8,30,21.8,0.97,0.056,0.64,79,922,671,0,8,-4.1,217,596,0,600,0.319,17.39,50.02,0.93,0.13,786,0.9,169,2.1
+7218,2023,5,31,9,0,22.8,1.04,0.067,0.64,85,938,756,0,0,-5.4,157,762,0,702,0.319,14.74,44.36,0.94,0.13,786,0.9,187,2.4
+7219,2023,5,31,9,30,23.1,1.04,0.067,0.64,93,947,831,0,7,-5.4,326,406,0,642,0.319,14.48,38.81,0.95,0.13,786,0.9,196,3.1
+7220,2023,5,31,10,0,23.3,1.12,0.092,0.64,103,947,893,0,6,-5.1,380,102,0,465,0.319,14.71,33.46,0.95,0.13,786,1,204,3.8
+7221,2023,5,31,10,30,22.3,1.12,0.092,0.64,104,959,947,0,7,-5.1,442,210,0,627,0.318,15.63,28.44,0.95,0.13,786,1,208,4.7
+7222,2023,5,31,11,0,21.3,1.16,0.086,0.64,104,967,987,0,6,-3.6,366,37,0,400,0.317,18.52,24.01,0.95,0.13,786,1.1,211,5.5
+7223,2023,5,31,11,30,20.1,1.16,0.086,0.64,105,969,1012,0,7,-3.6,414,308,0,702,0.316,19.96,20.59,0.95,0.13,787,1.2,211,5.7
+7224,2023,5,31,12,0,18.8,1.15,0.086,0.64,105,969,1023,0,8,-1.3,195,787,0,940,0.316,25.73,18.75,0.95,0.13,787,1.2,210,5.8
+7225,2023,5,31,12,30,18,1.15,0.086,0.64,105,966,1019,0,7,-1.3,265,669,0,898,0.316,27.05,18.96,0.95,0.13,787,1.3,205,5.3
+7226,2023,5,31,13,0,17.2,1.14,0.088,0.64,105,961,1001,0,7,0.7,432,302,0,714,0.315,32.78,21.17,0.95,0.13,787,1.4,200,4.9
+7227,2023,5,31,13,30,16.9,1.14,0.088,0.64,99,962,972,0,0,0.7,250,635,0,826,0.316,33.41,24.84,0.95,0.13,787,1.4,190,4.2
+7228,2023,5,31,14,0,16.6,1.14,0.065,0.64,91,964,931,0,0,1.8,91,964,0,931,0.316,36.79,29.41,0.95,0.13,787,1.4,180,3.6
+7229,2023,5,31,14,30,16.8,1.14,0.065,0.64,86,956,874,0,0,1.8,137,849,0,837,0.317,36.32,34.51,0.94,0.13,787,1.4,164,3.2
+7230,2023,5,31,15,0,16.9,1.11,0.057,0.64,81,946,807,0,7,2.1,315,405,0,626,0.317,36.85,39.92,0.94,0.13,787,1.3,148,2.9
+7231,2023,5,31,15,30,17.1,1.11,0.057,0.64,77,931,730,0,7,2.1,299,329,0,530,0.318,36.39,45.5,0.93,0.13,787,1.3,138,3
+7232,2023,5,31,16,0,17.2,1.07,0.049,0.64,71,913,644,0,6,2.1,230,181,0,344,0.318,36.29,51.16,0.92,0.13,786,1.3,128,3.1
+7233,2023,5,31,16,30,17,1.07,0.049,0.64,66,886,550,0,6,2.1,170,12,0,177,0.318,36.75,56.85,0.92,0.13,786,1.3,123,3.3
+7234,2023,5,31,17,0,16.8,1.06,0.042,0.62,59,851,452,0,6,2.3,63,2,0,64,0.318,37.81,62.53,0.91,0.13,786,1.2,119,3.5
+7235,2023,5,31,17,30,16,1.06,0.042,0.62,53,800,351,0,6,2.3,93,15,0,99,0.318,39.78,68.15,0.91,0.13,786,1.2,114,3.4
+7236,2023,5,31,18,0,15.3,1.05,0.039,0.62,47,728,251,0,6,2.9,84,15,0,88,0.317,43.36,73.69,0.91,0.13,786,1.2,109,3.3
+7237,2023,5,31,18,30,13.6,1.05,0.039,0.62,39,616,155,1,6,2.9,33,74,14,47,0.317,48.38,79.1,0.91,0.13,786,1.2,100,2.8
+7238,2023,5,31,19,0,12,1.05,0.039,0.62,28,436,71,7,6,4.3,28,1,100,28,0.317,59.31,84.33,0.91,0.13,786,1.2,90,2.2
+7239,2023,5,31,19,30,10.9,1.05,0.039,0.62,9,110,11,5,6,4.3,6,0,71,6,0.317,63.77,89.2,0.91,0.13,786,1.2,83,2.2
+7240,2023,5,31,20,0,9.9,1.08,0.042,0.62,0,0,0,0,7,4.9,0,0,0,0,0.317,70.86,94.38,0.91,0.13,786,1.2,75,2.2
+7241,2023,5,31,20,30,9.5,1.08,0.042,0.62,0,0,0,0,7,4.9,0,0,0,0,0.316,72.78,98.95,0.92,0.13,786,1.2,80,2.2
+7242,2023,5,31,21,0,9.2,1.17,0.05,0.62,0,0,0,0,7,5.4,0,0,0,0,0.315,76.89,103.17,0.93,0.13,787,1.2,84,2.1
+7243,2023,5,31,21,30,9.1,1.17,0.05,0.62,0,0,0,0,7,5.4,0,0,0,0,0.314,77.41,106.99,0.93,0.13,787,1.3,84,1.9
+7244,2023,5,31,22,0,9,1.22,0.054,0.62,0,0,0,0,8,5.7,0,0,0,0,0.313,80.06,110.32,0.93,0.13,787,1.3,83,1.6
+7245,2023,5,31,22,30,8.8,1.22,0.054,0.62,0,0,0,0,7,5.7,0,0,0,0,0.313,81.15,113.09,0.93,0.13,787,1.3,76,1.3
+7246,2023,5,31,23,0,8.7,1.23,0.054,0.62,0,0,0,0,7,6,0,0,0,0,0.313,82.9,115.23,0.93,0.13,787,1.3,68,1
+7247,2023,5,31,23,30,8.5,1.23,0.054,0.62,0,0,0,0,8,5.9,0,0,0,0,0.313,83.92,116.68,0.93,0.13,786,1.3,66,0.9
+7248,2023,6,1,0,0,8.3,1.23,0.054,0.62,0,0,0,0,3,6,0,0,0,0,0.312,85.45,117.37,0.93,0.13,786,1.3,64,0.8
+7249,2023,6,1,0,30,8.1,1.23,0.054,0.62,0,0,0,0,8,6,0,0,0,0,0.312,86.61,117.29,0.93,0.13,786,1.3,70,0.7
+7250,2023,6,1,1,0,7.9,1.24,0.055,0.62,0,0,0,0,7,6,0,0,0,0,0.311,87.94,116.44,0.94,0.13,786,1.3,77,0.7
+7251,2023,6,1,1,30,7.8,1.24,0.055,0.62,0,0,0,0,7,6,0,0,0,0,0.311,88.54,114.85,0.94,0.13,786,1.3,84,0.7
+7252,2023,6,1,2,0,7.7,1.24,0.056,0.62,0,0,0,0,8,6,0,0,0,0,0.311,89.24,112.57,0.94,0.13,786,1.3,90,0.7
+7253,2023,6,1,2,30,7.7,1.24,0.056,0.62,0,0,0,0,8,6,0,0,0,0,0.312,89.24,109.67,0.94,0.13,786,1.3,93,0.7
+7254,2023,6,1,3,0,7.7,1.24,0.058,0.62,0,0,0,0,8,6,0,0,0,0,0.313,89.07,106.23,0.94,0.13,786,1.3,97,0.7
+7255,2023,6,1,3,30,7.7,1.24,0.058,0.62,0,0,0,0,8,6,0,0,0,0,0.314,89.07,102.33,0.94,0.13,786,1.3,101,0.6
+7256,2023,6,1,4,0,7.7,1.24,0.061,0.62,0,0,0,0,4,5.9,0,0,0,0,0.316,88.68,98.03,0.94,0.13,786,1.3,104,0.5
+7257,2023,6,1,4,30,8,1.24,0.061,0.62,0,0,0,0,5,5.9,0,0,0,0,0.317,86.78,93.4,0.94,0.13,785,1.3,111,0.4
+7258,2023,6,1,5,0,8.3,1.25,0.063,0.62,14,140,18,6,4,5.9,7,0,86,7,0.319,85.1,88.24,0.94,0.13,785,1.3,117,0.3
+7259,2023,6,1,5,30,9,1.25,0.063,0.62,34,427,84,5,5,5.9,27,1,71,27,0.32,81.17,83.26,0.94,0.13,785,1.3,99,0.3
+7260,2023,6,1,6,0,9.6,1.25,0.066,0.62,47,592,170,0,0,6,73,328,0,141,0.322,78.17,77.99,0.94,0.13,786,1.3,81,0.2
+7261,2023,6,1,6,30,10.7,1.25,0.066,0.62,57,698,266,0,0,6,57,698,0,266,0.324,72.64,72.54,0.95,0.13,786,1.4,155,0.5
+7262,2023,6,1,7,0,11.8,1.26,0.07,0.62,65,769,366,0,8,5.8,163,314,0,286,0.326,66.7,66.98,0.95,0.13,786,1.4,229,0.7
+7263,2023,6,1,7,30,13.2,1.26,0.07,0.62,72,819,465,0,7,5.8,239,174,0,322,0.327,60.86,61.35,0.95,0.13,786,1.4,234,1.1
+7264,2023,6,1,8,0,14.7,1.26,0.076,0.62,80,855,562,0,7,4.8,271,192,0,379,0.329,51.56,55.66,0.95,0.13,786,1.4,240,1.5
+7265,2023,6,1,8,30,15.6,1.26,0.076,0.62,85,883,653,0,7,4.8,311,151,0,408,0.33,48.67,49.97,0.95,0.13,786,1.5,238,1.6
+7266,2023,6,1,9,0,16.6,1.27,0.083,0.62,91,903,737,0,7,4,278,170,0,400,0.33,43.09,44.31,0.95,0.13,786,1.5,236,1.8
+7267,2023,6,1,9,30,16.9,1.27,0.083,0.62,95,921,813,0,8,4,268,109,0,353,0.331,42.28,38.76,0.95,0.13,786,1.6,233,1.9
+7268,2023,6,1,10,0,17.3,1.29,0.084,0.62,97,935,878,0,8,3.9,337,242,0,539,0.331,40.99,33.39,0.95,0.13,786,1.6,229,2
+7269,2023,6,1,10,30,17.2,1.29,0.084,0.62,97,949,932,0,0,3.9,136,869,0,901,0.331,41.3,28.36,0.95,0.13,787,1.6,230,2.1
+7270,2023,6,1,11,0,17.1,1.33,0.072,0.62,95,960,973,0,8,4.5,244,214,4,440,0.331,43.21,23.92,0.95,0.13,787,1.6,231,2.2
+7271,2023,6,1,11,30,16.9,1.33,0.072,0.62,95,966,1000,0,6,4.5,76,0,0,76,0.33,43.76,20.48,0.95,0.13,787,1.7,234,2.3
+7272,2023,6,1,12,0,16.8,1.33,0.07,0.62,96,969,1014,0,6,5.1,197,1,0,198,0.329,45.94,18.62,0.95,0.13,786,1.7,238,2.3
+7273,2023,6,1,12,30,16.6,1.33,0.07,0.62,95,970,1013,0,7,5.1,203,2,0,205,0.328,46.53,18.82,0.95,0.13,786,1.7,242,2.4
+7274,2023,6,1,13,0,16.5,1.31,0.064,0.62,92,970,997,0,6,5.5,378,32,0,408,0.327,48.29,21.04,0.95,0.13,786,1.7,246,2.4
+7275,2023,6,1,13,30,16.5,1.31,0.064,0.62,90,966,968,0,7,5.5,455,195,0,632,0.326,48.29,24.71,0.95,0.13,786,1.7,248,2.4
+7276,2023,6,1,14,0,16.4,1.29,0.06,0.62,87,961,925,0,7,5.6,377,342,0,675,0.326,48.73,29.29,0.95,0.13,786,1.7,249,2.4
+7277,2023,6,1,14,30,16.4,1.29,0.06,0.62,84,952,870,0,7,5.6,365,284,0,599,0.326,48.73,34.4,0.95,0.13,786,1.6,254,2.3
+7278,2023,6,1,15,0,16.3,1.27,0.056,0.62,80,941,803,0,7,5.2,341,124,0,436,0.325,47.66,39.81,0.95,0.13,786,1.6,258,2.2
+7279,2023,6,1,15,30,16.2,1.27,0.056,0.62,77,924,726,0,7,5.2,309,241,0,478,0.325,47.96,45.39,0.95,0.13,786,1.6,266,2
+7280,2023,6,1,16,0,16.2,1.25,0.053,0.62,74,901,640,0,7,4.6,285,124,0,363,0.325,46.11,51.05,0.95,0.13,786,1.5,274,1.9
+7281,2023,6,1,16,30,16,1.25,0.053,0.62,69,870,546,0,6,4.6,174,41,0,196,0.325,46.7,56.74,0.95,0.13,786,1.5,279,1.6
+7282,2023,6,1,17,0,15.9,1.24,0.054,0.62,64,829,448,0,7,4.3,185,201,0,278,0.325,46.14,62.42,0.95,0.13,787,1.5,283,1.4
+7283,2023,6,1,17,30,15.3,1.24,0.054,0.62,58,772,347,0,6,4.3,114,72,0,141,0.324,47.94,68.04,0.95,0.13,787,1.5,277,0.9
+7284,2023,6,1,18,0,14.7,1.25,0.056,0.62,52,693,248,0,6,6.8,66,284,0,146,0.324,59.24,73.58,0.95,0.13,787,1.5,270,0.5
+7285,2023,6,1,18,30,14.1,1.25,0.056,0.62,43,577,153,1,7,6.8,57,289,32,112,0.323,61.58,78.99,0.95,0.13,787,1.6,247,0.4
+7286,2023,6,1,19,0,13.4,1.27,0.057,0.62,30,395,70,7,7,6.1,38,4,100,38,0.323,61.32,84.21,0.95,0.13,787,1.6,224,0.4
+7287,2023,6,1,19,30,13,1.27,0.057,0.62,10,95,11,5,8,6.1,6,0,71,6,0.322,63.02,89.1,0.95,0.13,788,1.6,206,0.7
+7288,2023,6,1,20,0,12.6,1.29,0.06,0.62,0,0,0,0,8,5.9,0,0,0,0,0.322,63.9,94.26,0.95,0.13,788,1.6,188,1
+7289,2023,6,1,20,30,12,1.29,0.06,0.62,0,0,0,0,7,5.9,0,0,0,0,0.322,66.47,98.82,0.95,0.13,788,1.6,184,1.2
+7290,2023,6,1,21,0,11.4,1.3,0.066,0.62,0,0,0,0,7,6.5,0,0,0,0,0.322,72.02,103.04,0.95,0.13,788,1.6,180,1.5
+7291,2023,6,1,21,30,10.9,1.3,0.066,0.62,0,0,0,0,7,6.5,0,0,0,0,0.322,74.44,106.85,0.95,0.13,788,1.6,179,1.7
+7292,2023,6,1,22,0,10.4,1.31,0.07,0.62,0,0,0,0,7,6.8,0,0,0,0,0.322,78.28,110.18,0.95,0.13,788,1.6,179,1.9
+7293,2023,6,1,22,30,10,1.31,0.07,0.62,0,0,0,0,7,6.8,0,0,0,0,0.323,80.4,112.96,0.95,0.13,788,1.6,181,2.2
+7294,2023,6,1,23,0,9.7,1.31,0.072,0.62,0,0,0,0,7,6.7,0,0,0,0,0.323,81.82,115.1,0.95,0.13,788,1.6,182,2.4
+7295,2023,6,1,23,30,9.4,1.31,0.072,0.62,0,0,0,0,7,6.7,0,0,0,0,0.323,83.49,116.54,0.95,0.13,788,1.6,184,2.6
+7296,2023,6,2,0,0,9,1.3,0.074,0.62,0,0,0,0,7,6.5,0,0,0,0,0.323,84.58,117.24,0.95,0.13,788,1.6,185,2.7
+7297,2023,6,2,0,30,8.8,1.3,0.074,0.62,0,0,0,0,6,6.5,0,0,0,0,0.322,85.73,117.16,0.95,0.13,788,1.6,188,2.7
+7298,2023,6,2,1,0,8.5,1.29,0.074,0.62,0,0,0,0,7,6.3,0,0,0,0,0.322,85.77,116.31,0.95,0.13,788,1.6,191,2.8
+7299,2023,6,2,1,30,8.3,1.29,0.074,0.62,0,0,0,0,6,6.3,0,0,0,0,0.322,86.94,114.73,0.95,0.13,788,1.6,193,2.6
+7300,2023,6,2,2,0,8.1,1.27,0.072,0.62,0,0,0,0,6,6,0,0,0,0,0.321,86.36,112.46,0.95,0.13,788,1.6,196,2.5
+7301,2023,6,2,2,30,7.9,1.27,0.072,0.62,0,0,0,0,6,6,0,0,0,0,0.321,87.54,109.57,0.95,0.13,788,1.6,195,2.4
+7302,2023,6,2,3,0,7.7,1.26,0.068,0.62,0,0,0,0,6,5.8,0,0,0,0,0.321,87.54,106.14,0.95,0.13,788,1.5,194,2.2
+7303,2023,6,2,3,30,7.5,1.26,0.068,0.62,0,0,0,0,7,5.8,0,0,0,0,0.32,88.74,102.24,0.95,0.13,788,1.5,194,2.2
+7304,2023,6,2,4,0,7.3,1.26,0.066,0.62,0,0,0,0,7,5.6,0,0,0,0,0.32,89.15,97.95,0.95,0.13,788,1.6,194,2.1
+7305,2023,6,2,4,30,7.3,1.26,0.066,0.62,0,0,0,0,8,5.6,0,0,0,0,0.319,89.15,93.33,0.95,0.13,788,1.6,199,2.2
+7306,2023,6,2,5,0,7.4,1.27,0.069,0.62,15,147,20,6,8,5.7,3,0,86,3,0.318,88.86,88.18,0.95,0.13,788,1.6,203,2.2
+7307,2023,6,2,5,30,7.7,1.27,0.069,0.62,35,406,83,4,4,5.7,6,0,61,6,0.318,87.06,83.2,0.96,0.13,788,1.6,213,2.4
+7308,2023,6,2,6,0,8.1,1.29,0.076,0.62,48,567,167,2,4,5.9,10,0,32,10,0.318,86.23,77.93,0.96,0.13,788,1.7,223,2.5
+7309,2023,6,2,6,30,8.6,1.29,0.076,0.62,59,677,263,3,8,5.9,19,0,46,19,0.318,83.36,72.49,0.96,0.13,788,1.7,235,2.7
+7310,2023,6,2,7,0,9.2,1.29,0.075,0.62,67,753,362,0,5,6.1,64,0,0,64,0.318,81.05,66.94,0.96,0.13,788,1.7,246,2.8
+7311,2023,6,2,7,30,9.7,1.29,0.075,0.62,73,809,462,0,4,6.1,113,0,0,113,0.317,78.38,61.3,0.96,0.13,788,1.7,257,3
+7312,2023,6,2,8,0,10.3,1.27,0.072,0.62,78,852,559,0,4,6.1,109,0,0,109,0.317,75.26,55.61,0.96,0.13,788,1.7,268,3.2
+7313,2023,6,2,8,30,10.7,1.27,0.072,0.62,82,884,651,0,5,6.1,167,0,0,167,0.316,73.28,49.92,0.96,0.13,788,1.7,276,3.3
+7314,2023,6,2,9,0,11.2,1.26,0.069,0.62,84,910,736,0,5,6.1,196,4,0,199,0.315,70.8,44.26,0.95,0.13,788,1.7,284,3.4
+7315,2023,6,2,9,30,11.5,1.26,0.069,0.62,87,929,812,0,8,6.1,102,1,0,103,0.314,69.5,38.7,0.95,0.13,789,1.7,286,3.5
+7316,2023,6,2,10,0,11.9,1.24,0.067,0.62,89,944,878,0,8,6,153,1,0,154,0.313,66.95,33.33,0.95,0.13,789,1.7,288,3.7
+7317,2023,6,2,10,30,12,1.24,0.067,0.62,94,950,931,0,8,6,225,3,0,228,0.312,66.51,28.29,0.95,0.13,789,1.7,286,3.7
+7318,2023,6,2,11,0,12.2,1.2,0.079,0.62,100,952,971,0,8,5.8,325,14,0,338,0.311,64.92,23.83,0.96,0.13,789,1.7,285,3.8
+7319,2023,6,2,11,30,12.3,1.2,0.079,0.62,101,957,998,0,8,5.8,201,2,0,203,0.31,64.49,20.37,0.95,0.13,789,1.7,286,3.8
+7320,2023,6,2,12,0,12.3,1.21,0.078,0.62,101,959,1010,0,8,5.7,249,5,0,254,0.309,64.1,18.49,0.95,0.13,789,1.8,287,3.8
+7321,2023,6,2,12,30,12.3,1.21,0.078,0.62,102,958,1009,0,8,5.7,194,2,0,196,0.308,64.1,18.69,0.95,0.13,789,1.8,289,3.7
+7322,2023,6,2,13,0,12.2,1.21,0.081,0.62,102,954,993,0,8,5.7,197,1,0,198,0.307,64.57,20.9,0.95,0.13,789,1.8,290,3.6
+7323,2023,6,2,13,30,12.1,1.21,0.081,0.62,105,943,962,0,8,5.7,282,11,0,292,0.307,64.99,24.59,0.96,0.13,789,1.8,291,3.4
+7324,2023,6,2,14,0,12,1.19,0.097,0.62,107,927,916,0,8,5.8,261,6,0,266,0.307,65.6,29.18,0.96,0.13,789,1.8,291,3.3
+7325,2023,6,2,14,30,11.8,1.19,0.097,0.62,107,912,860,0,8,5.8,289,34,0,317,0.307,66.47,34.29,0.96,0.13,789,1.8,292,3.1
+7326,2023,6,2,15,0,11.7,1.17,0.104,0.62,105,892,791,0,8,5.8,232,11,0,240,0.307,67.32,39.7,0.96,0.13,789,1.8,292,2.8
+7327,2023,6,2,15,30,11.4,1.17,0.104,0.62,103,867,713,0,4,5.8,174,8,0,180,0.307,68.67,45.28,0.96,0.13,789,1.8,292,2.6
+7328,2023,6,2,16,0,11.1,1.15,0.113,0.62,100,834,625,0,5,6,263,15,0,272,0.307,70.81,50.95,0.96,0.13,790,1.8,291,2.3
+7329,2023,6,2,16,30,10.8,1.15,0.113,0.62,95,792,531,0,4,6,188,10,0,193,0.308,72.23,56.64,0.96,0.13,790,1.8,288,2
+7330,2023,6,2,17,0,10.4,1.13,0.123,0.62,90,738,433,0,4,6.2,124,3,0,125,0.309,75.19,62.31,0.96,0.13,790,1.8,284,1.7
+7331,2023,6,2,17,30,10,1.13,0.123,0.62,82,668,333,0,4,6.2,80,1,0,80,0.31,77.22,67.94,0.96,0.13,790,1.8,271,1.4
+7332,2023,6,2,18,0,9.6,1.1,0.13,0.62,72,573,235,0,4,6.4,87,11,0,90,0.312,80.55,73.47,0.96,0.13,790,1.8,258,1.1
+7333,2023,6,2,18,30,9.1,1.1,0.13,0.62,57,446,143,1,4,6.4,63,31,14,69,0.313,83.3,78.88,0.96,0.13,790,1.8,232,1
+7334,2023,6,2,19,0,8.6,1.06,0.129,0.62,38,262,65,7,4,6.7,16,0,100,16,0.314,88.09,84.1,0.95,0.13,790,1.8,205,0.9
+7335,2023,6,2,19,30,8.3,1.06,0.129,0.62,10,49,11,5,4,6.7,3,0,71,3,0.315,89.89,88.99,0.95,0.13,790,1.8,198,1
+7336,2023,6,2,20,0,8,1,0.119,0.62,0,0,0,0,4,6.9,0,0,0,0,0.315,93.02,94.14,0.95,0.13,790,1.8,191,1
+7337,2023,6,2,20,30,7.8,1,0.119,0.62,0,0,0,0,4,6.9,0,0,0,0,0.315,94.29,98.7,0.95,0.13,790,1.8,192,1
+7338,2023,6,2,21,0,7.6,0.95,0.109,0.62,0,0,0,0,4,6.7,0,0,0,0,0.315,94.21,102.92,0.95,0.13,790,1.8,193,1.1
+7339,2023,6,2,21,30,7.4,0.95,0.109,0.62,0,0,0,0,4,6.7,0,0,0,0,0.315,95.5,106.73,0.95,0.13,790,1.8,193,1.1
+7340,2023,6,2,22,0,7.3,0.92,0.103,0.62,0,0,0,0,7,6.5,0,0,0,0,0.315,94.77,110.05,0.95,0.13,790,1.8,194,1.2
+7341,2023,6,2,22,30,7.3,0.92,0.103,0.62,0,0,0,0,6,6.5,0,0,0,0,0.315,94.77,112.82,0.95,0.13,790,1.8,199,1.2
+7342,2023,6,2,23,0,7.2,0.9,0.095,0.62,0,0,0,0,6,6.5,0,0,0,0,0.316,95.5,114.96,0.95,0.13,790,1.8,205,1.2
+7343,2023,6,2,23,30,7.2,0.9,0.095,0.62,0,0,0,0,6,6.5,0,0,0,0,0.317,95.5,116.41,0.95,0.13,790,1.8,210,1.2
+7344,2023,6,3,0,0,7.2,0.92,0.09,0.62,0,0,0,0,6,6.6,0,0,0,0,0.317,96.25,117.11,0.95,0.13,790,1.8,216,1.2
+7345,2023,6,3,0,30,7.2,0.92,0.09,0.62,0,0,0,0,7,6.6,0,0,0,0,0.318,96.25,117.03,0.95,0.13,790,1.7,224,1.1
+7346,2023,6,3,1,0,7.2,0.93,0.085,0.62,0,0,0,0,8,6.7,0,0,0,0,0.319,96.7,116.19,0.94,0.13,789,1.7,232,1.1
+7347,2023,6,3,1,30,7.1,0.93,0.085,0.62,0,0,0,0,7,6.7,0,0,0,0,0.32,97.36,114.62,0.94,0.13,789,1.7,240,1.1
+7348,2023,6,3,2,0,7.1,0.94,0.08,0.62,0,0,0,0,7,6.7,0,0,0,0,0.321,96.98,112.35,0.94,0.13,789,1.7,248,1
+7349,2023,6,3,2,30,6.9,0.94,0.08,0.62,0,0,0,0,8,6.7,0,0,0,0,0.323,98.32,109.47,0.94,0.13,789,1.7,254,0.9
+7350,2023,6,3,3,0,6.8,0.94,0.079,0.62,0,0,0,0,4,6.5,0,0,0,0,0.324,97.88,106.05,0.94,0.13,789,1.7,261,0.8
+7351,2023,6,3,3,30,6.7,0.94,0.079,0.62,0,0,0,0,4,6.5,0,0,0,0,0.325,98.68,102.16,0.94,0.13,790,1.7,262,0.7
+7352,2023,6,3,4,0,6.6,0.96,0.08,0.62,0,0,0,0,4,6.3,0,0,0,0,0.327,98.09,97.88,0.94,0.13,790,1.7,264,0.6
+7353,2023,6,3,4,30,6.8,0.96,0.08,0.62,0,0,0,0,4,6.3,0,0,0,0,0.328,96.76,93.26,0.94,0.13,790,1.7,248,0.5
+7354,2023,6,3,5,0,7.1,0.98,0.083,0.62,15,119,19,6,4,6.6,5,0,86,5,0.329,96.77,88.12,0.94,0.13,790,1.7,233,0.4
+7355,2023,6,3,5,30,7.8,0.98,0.083,0.62,37,371,81,4,5,6.6,14,0,57,14,0.33,92.26,83.14,0.94,0.13,790,1.7,229,0.6
+7356,2023,6,3,6,0,8.6,0.99,0.085,0.62,52,542,166,0,5,7,6,0,0,6,0.332,89.53,77.88,0.95,0.13,791,1.7,224,0.8
+7357,2023,6,3,6,30,9.7,0.99,0.085,0.62,63,656,261,0,4,7,24,0,0,24,0.332,83.15,72.45,0.95,0.13,791,1.7,264,1.1
+7358,2023,6,3,7,0,10.8,1.01,0.084,0.62,71,736,360,0,5,7.2,56,0,0,56,0.333,78.36,66.89,0.95,0.13,791,1.7,304,1.4
+7359,2023,6,3,7,30,11.8,1.01,0.084,0.62,77,794,459,0,5,7.2,83,4,0,85,0.333,73.35,61.26,0.95,0.13,791,1.7,310,1.7
+7360,2023,6,3,8,0,12.8,1.01,0.082,0.62,83,837,556,0,5,6.9,241,25,0,255,0.334,67.38,55.57,0.95,0.13,791,1.7,316,2.1
+7361,2023,6,3,8,30,13.5,1.01,0.082,0.62,89,869,649,0,4,6.9,170,11,0,177,0.333,64.38,49.88,0.95,0.13,791,1.7,316,2.2
+7362,2023,6,3,9,0,14.3,1.02,0.083,0.62,93,894,734,0,4,6.2,148,0,0,148,0.333,58.1,44.22,0.95,0.13,791,1.7,315,2.3
+7363,2023,6,3,9,30,14.9,1.02,0.083,0.62,96,915,810,0,4,6.2,249,1,0,250,0.332,55.9,38.66,0.95,0.13,791,1.7,315,2.2
+7364,2023,6,3,10,0,15.5,1.02,0.081,0.62,98,931,876,0,4,5.5,266,3,0,269,0.331,51.46,33.28,0.95,0.13,791,1.7,315,2.1
+7365,2023,6,3,10,30,16,1.02,0.081,0.62,100,942,930,0,4,5.5,143,0,0,143,0.329,49.84,28.23,0.95,0.13,791,1.7,315,2
+7366,2023,6,3,11,0,16.6,1,0.083,0.62,103,948,971,0,5,5.1,293,24,0,315,0.328,46.61,23.76,0.95,0.13,791,1.7,314,1.8
+7367,2023,6,3,11,30,16.9,1,0.083,0.62,102,956,999,0,5,5.1,466,170,0,625,0.327,45.73,20.27,0.95,0.13,791,1.6,315,1.7
+7368,2023,6,3,12,0,17.3,0.99,0.079,0.62,102,960,1013,0,8,4.8,418,302,0,705,0.325,43.66,18.37,0.95,0.13,791,1.6,316,1.6
+7369,2023,6,3,12,30,17.6,0.99,0.079,0.62,101,961,1012,0,8,4.8,385,384,0,749,0.324,42.85,18.56,0.95,0.13,791,1.6,321,1.5
+7370,2023,6,3,13,0,17.9,0.98,0.075,0.62,99,961,997,0,5,4.5,469,300,0,749,0.323,41.24,20.78,0.95,0.13,791,1.6,325,1.4
+7371,2023,6,3,13,30,18.1,0.98,0.075,0.62,97,957,968,0,3,4.5,401,364,0,732,0.322,40.73,24.47,0.95,0.13,791,1.6,335,1.4
+7372,2023,6,3,14,0,18.3,0.98,0.072,0.62,94,951,925,0,0,4.2,222,739,0,868,0.321,39.22,29.06,0.94,0.13,791,1.6,346,1.4
+7373,2023,6,3,14,30,18.4,0.98,0.072,0.62,92,940,870,0,0,4.2,207,755,0,832,0.32,38.98,34.18,0.94,0.13,791,1.6,177,1.5
+7374,2023,6,3,15,0,18.4,1,0.071,0.62,89,926,802,0,0,3.8,211,681,0,736,0.319,38,39.6,0.94,0.13,791,1.6,8,1.6
+7375,2023,6,3,15,30,18.3,1,0.071,0.62,86,905,724,0,3,3.8,319,355,0,569,0.318,38.24,45.18,0.94,0.13,791,1.6,16,1.8
+7376,2023,6,3,16,0,18.1,1.01,0.072,0.62,82,879,637,0,3,3.6,267,414,0,528,0.318,38.17,50.85,0.94,0.13,791,1.6,25,1.9
+7377,2023,6,3,16,30,17.6,1.01,0.072,0.62,78,845,544,0,3,3.6,199,425,0,433,0.318,39.38,56.54,0.94,0.13,791,1.6,32,2.1
+7378,2023,6,3,17,0,17.2,1.02,0.075,0.62,73,800,446,0,3,3.7,186,449,4,395,0.317,40.65,62.21,0.94,0.13,791,1.5,38,2.2
+7379,2023,6,3,17,30,16.4,1.02,0.075,0.62,67,739,346,0,3,3.7,156,386,11,302,0.317,42.76,67.83,0.94,0.13,791,1.6,47,2
+7380,2023,6,3,18,0,15.7,1.03,0.078,0.62,59,655,246,0,3,5.5,132,242,14,201,0.318,50.61,73.37,0.94,0.13,791,1.6,56,1.7
+7381,2023,6,3,18,30,14.4,1.03,0.078,0.62,48,532,152,1,3,5.5,70,345,14,137,0.318,55.01,78.77,0.95,0.13,791,1.6,64,1.5
+7382,2023,6,3,19,0,13.1,1.05,0.083,0.62,34,344,70,5,3,7.1,42,120,71,55,0.318,66.88,83.99,0.95,0.13,792,1.6,72,1.3
+7383,2023,6,3,19,30,12.5,1.05,0.083,0.62,11,87,13,5,3,7.1,7,0,71,7,0.318,69.55,88.89,0.95,0.13,792,1.6,77,1.4
+7384,2023,6,3,20,0,11.9,1.06,0.085,0.62,0,0,0,0,0,6.8,0,0,0,0,0.318,71.13,94.03,0.95,0.13,792,1.6,83,1.4
+7385,2023,6,3,20,30,11.5,1.06,0.085,0.62,0,0,0,0,0,6.8,0,0,0,0,0.318,73.03,98.58,0.95,0.13,792,1.6,86,1.5
+7386,2023,6,3,21,0,11.1,1.06,0.086,0.62,0,0,0,0,0,6.6,0,0,0,0,0.318,74.01,102.8,0.94,0.13,792,1.6,89,1.5
+7387,2023,6,3,21,30,10.7,1.06,0.086,0.62,0,0,0,0,0,6.6,0,0,0,0,0.318,76,106.6,0.94,0.13,792,1.5,91,1.4
+7388,2023,6,3,22,0,10.3,1.06,0.084,0.62,0,0,0,0,0,6.4,0,0,0,0,0.318,76.6,109.93,0.94,0.13,792,1.5,93,1.4
+7389,2023,6,3,22,30,9.9,1.06,0.084,0.62,0,0,0,0,0,6.4,0,0,0,0,0.318,78.67,112.7,0.94,0.13,792,1.5,95,1.3
+7390,2023,6,3,23,0,9.5,1.06,0.082,0.62,0,0,0,0,0,6.1,0,0,0,0,0.318,79.28,114.84,0.94,0.13,792,1.5,97,1.2
+7391,2023,6,3,23,30,9,1.06,0.082,0.62,0,0,0,0,0,6.1,0,0,0,0,0.319,81.99,116.28,0.94,0.13,792,1.4,98,1.2
+7392,2023,6,4,0,0,8.6,1.06,0.08,0.62,0,0,0,0,3,5.8,0,0,0,0,0.319,82.4,116.98,0.94,0.13,792,1.4,99,1.1
+7393,2023,6,4,0,30,8.2,1.06,0.08,0.62,0,0,0,0,0,5.8,0,0,0,0,0.32,84.66,116.92,0.94,0.13,792,1.4,99,1.1
+7394,2023,6,4,1,0,7.8,1.06,0.076,0.62,0,0,0,0,0,5.4,0,0,0,0,0.32,84.92,116.08,0.94,0.13,792,1.4,99,1.1
+7395,2023,6,4,1,30,7.6,1.06,0.076,0.62,0,0,0,0,0,5.4,0,0,0,0,0.321,86.08,114.51,0.94,0.13,792,1.4,94,1
+7396,2023,6,4,2,0,7.4,1.05,0.074,0.62,0,0,0,0,0,5.2,0,0,0,0,0.321,86.16,112.26,0.94,0.13,792,1.3,88,1
+7397,2023,6,4,2,30,7.3,1.05,0.074,0.62,0,0,0,0,0,5.2,0,0,0,0,0.321,86.75,109.38,0.94,0.13,792,1.3,77,1
+7398,2023,6,4,3,0,7.2,1.06,0.073,0.62,0,0,0,0,7,5.2,0,0,0,0,0.322,86.91,105.97,0.94,0.13,792,1.3,66,0.9
+7399,2023,6,4,3,30,6.9,1.06,0.073,0.62,0,0,0,0,8,5.2,0,0,0,0,0.322,88.71,102.09,0.94,0.13,792,1.3,58,0.9
+7400,2023,6,4,4,0,6.6,1.07,0.074,0.62,0,0,0,0,8,5.1,0,0,0,0,0.322,90.37,97.81,0.94,0.13,792,1.3,50,1
+7401,2023,6,4,4,30,7,1.07,0.074,0.62,0,0,0,0,8,5.1,0,0,0,0,0.321,87.92,93.2,0.94,0.13,792,1.4,48,1
+7402,2023,6,4,5,0,7.4,1.08,0.076,0.62,16,139,21,6,8,5.4,14,2,86,14,0.321,87.41,88.07,0.94,0.13,792,1.4,46,1
+7403,2023,6,4,5,30,9,1.08,0.076,0.62,36,402,84,4,8,5.4,58,94,57,69,0.321,78.43,83.1,0.94,0.13,792,1.4,46,1.6
+7404,2023,6,4,6,0,10.6,1.09,0.076,0.62,50,570,170,0,0,5.7,66,452,0,161,0.321,71.61,77.83,0.94,0.13,793,1.4,46,2.2
+7405,2023,6,4,6,30,12.2,1.09,0.076,0.62,59,680,265,0,0,5.7,87,533,0,248,0.321,64.43,72.4,0.94,0.13,793,1.4,48,2.6
+7406,2023,6,4,7,0,13.9,1.1,0.076,0.62,68,756,365,0,0,5.8,97,651,0,353,0.321,58.29,66.85,0.94,0.13,793,1.4,49,3
+7407,2023,6,4,7,30,14.9,1.1,0.076,0.62,75,811,465,0,0,5.8,75,811,0,465,0.321,54.65,61.22,0.94,0.13,793,1.4,50,3.1
+7408,2023,6,4,8,0,15.9,1.11,0.077,0.62,81,852,563,0,0,5.7,81,852,0,563,0.32,50.74,55.54,0.94,0.13,793,1.4,51,3.1
+7409,2023,6,4,8,30,16.7,1.11,0.077,0.62,85,884,655,0,0,5.7,85,884,0,655,0.319,48.23,49.84,0.94,0.13,793,1.4,53,3
+7410,2023,6,4,9,0,17.5,1.12,0.076,0.62,88,909,740,0,0,5.6,88,909,0,740,0.318,45.42,44.18,0.94,0.13,792,1.4,54,2.9
+7411,2023,6,4,9,30,18.1,1.12,0.076,0.62,92,928,817,0,0,5.6,92,928,0,817,0.317,43.74,38.62,0.94,0.13,792,1.5,55,2.8
+7412,2023,6,4,10,0,18.8,1.13,0.075,0.62,94,943,883,0,0,5.3,94,943,0,883,0.316,41.17,33.23,0.94,0.13,792,1.5,56,2.6
+7413,2023,6,4,10,30,19.3,1.13,0.075,0.62,92,960,938,0,0,5.3,92,960,0,938,0.315,39.91,28.17,0.94,0.13,792,1.5,57,2.5
+7414,2023,6,4,11,0,19.8,1.21,0.057,0.62,88,975,981,0,0,5.1,134,905,0,963,0.313,38.1,23.68,0.95,0.13,792,1.5,57,2.3
+7415,2023,6,4,11,30,20.1,1.21,0.057,0.62,90,979,1009,0,0,5.1,98,967,0,1006,0.313,37.4,20.18,0.95,0.13,792,1.5,57,2.2
+7416,2023,6,4,12,0,20.4,1.21,0.059,0.62,91,980,1022,0,0,5,120,933,0,1006,0.312,36.39,18.26,0.95,0.13,792,1.5,56,2.1
+7417,2023,6,4,12,30,20.5,1.21,0.059,0.62,91,979,1020,0,0,5,180,816,0,954,0.311,36.17,18.44,0.95,0.13,792,1.5,57,2.1
+7418,2023,6,4,13,0,20.6,1.21,0.061,0.62,91,976,1004,0,0,5,250,690,0,896,0.31,35.93,20.65,0.95,0.13,792,1.5,58,2.1
+7419,2023,6,4,13,30,20.6,1.21,0.061,0.62,89,972,975,0,3,5,428,339,0,737,0.31,35.89,24.35,0.95,0.13,791,1.5,56,2.2
+7420,2023,6,4,14,0,20.6,1.22,0.056,0.62,86,967,932,0,3,4.9,300,473,0,714,0.31,35.81,28.95,0.95,0.13,791,1.5,55,2.2
+7421,2023,6,4,14,30,20.5,1.22,0.056,0.62,84,956,876,0,0,4.9,168,777,0,812,0.31,36.03,34.07,0.95,0.13,791,1.5,53,2.3
+7422,2023,6,4,15,0,20.4,1.2,0.057,0.62,82,941,808,0,0,4.8,205,688,0,736,0.311,35.96,39.5,0.95,0.13,791,1.5,51,2.4
+7423,2023,6,4,15,30,20,1.2,0.057,0.62,79,922,730,0,8,4.8,257,417,0,551,0.312,36.86,45.08,0.95,0.13,791,1.5,51,2.5
+7424,2023,6,4,16,0,19.7,1.18,0.057,0.62,75,898,643,0,8,4.7,236,416,0,499,0.312,37.29,50.75,0.95,0.13,791,1.5,51,2.6
+7425,2023,6,4,16,30,19.2,1.18,0.057,0.62,72,866,551,0,8,4.7,218,364,0,419,0.313,38.47,56.44,0.95,0.13,791,1.5,52,2.7
+7426,2023,6,4,17,0,18.7,1.17,0.058,0.62,66,825,452,0,5,4.7,232,131,0,293,0.314,39.79,62.11,0.95,0.13,791,1.5,53,2.8
+7427,2023,6,4,17,30,18,1.17,0.058,0.62,60,770,352,0,5,4.7,188,61,0,211,0.316,41.57,67.73,0.95,0.13,791,1.5,54,2.8
+7428,2023,6,4,18,0,17.4,1.16,0.058,0.62,53,693,253,0,5,5.3,137,87,0,162,0.317,44.84,73.26,0.95,0.13,792,1.5,55,2.8
+7429,2023,6,4,18,30,15.9,1.16,0.058,0.62,44,581,158,0,8,5.3,82,136,0,109,0.318,49.31,78.67,0.95,0.13,792,1.5,57,2.2
+7430,2023,6,4,19,0,14.4,1.15,0.057,0.62,31,406,74,6,8,6.8,45,24,86,48,0.32,60.46,83.89,0.94,0.13,792,1.5,58,1.6
+7431,2023,6,4,19,30,13.5,1.15,0.057,0.62,12,120,15,5,8,6.8,9,0,71,9,0.321,64.08,88.79,0.94,0.13,792,1.5,60,1.5
+7432,2023,6,4,20,0,12.6,1.14,0.057,0.62,0,0,0,0,3,6.9,0,0,0,0,0.323,68.17,93.92,0.94,0.13,792,1.5,61,1.5
+7433,2023,6,4,20,30,12,1.14,0.057,0.62,0,0,0,0,8,6.9,0,0,0,0,0.323,70.91,98.47,0.94,0.13,792,1.5,61,1.4
+7434,2023,6,4,21,0,11.5,1.14,0.057,0.62,0,0,0,0,8,6.7,0,0,0,0,0.324,72.48,102.68,0.94,0.13,792,1.5,61,1.4
+7435,2023,6,4,21,30,11,1.14,0.057,0.62,0,0,0,0,3,6.7,0,0,0,0,0.325,74.92,106.48,0.94,0.13,792,1.5,60,1.3
+7436,2023,6,4,22,0,10.5,1.14,0.057,0.62,0,0,0,0,8,6.6,0,0,0,0,0.326,77.06,109.81,0.94,0.13,792,1.5,59,1.2
+7437,2023,6,4,22,30,10.1,1.14,0.057,0.62,0,0,0,0,7,6.6,0,0,0,0,0.326,79.14,112.58,0.94,0.13,792,1.5,59,1.1
+7438,2023,6,4,23,0,9.8,1.14,0.057,0.62,0,0,0,0,8,6.6,0,0,0,0,0.326,80.55,114.72,0.94,0.13,792,1.5,58,1.1
+7439,2023,6,4,23,30,9.5,1.14,0.057,0.62,0,0,0,0,0,6.6,0,0,0,0,0.326,82.18,116.16,0.94,0.13,792,1.5,58,1
+7440,2023,6,5,0,0,9.2,1.14,0.057,0.62,0,0,0,0,0,6.6,0,0,0,0,0.326,83.62,116.87,0.94,0.13,792,1.4,58,1
+7441,2023,6,5,0,30,8.9,1.14,0.057,0.62,0,0,0,0,0,6.6,0,0,0,0,0.326,85.32,116.81,0.94,0.13,792,1.4,59,1
+7442,2023,6,5,1,0,8.7,1.14,0.057,0.62,0,0,0,0,0,6.5,0,0,0,0,0.326,86.14,115.98,0.94,0.13,792,1.4,60,0.9
+7443,2023,6,5,1,30,8.5,1.14,0.057,0.62,0,0,0,0,0,6.5,0,0,0,0,0.326,87.31,114.41,0.94,0.13,792,1.4,64,0.9
+7444,2023,6,5,2,0,8.3,1.14,0.057,0.62,0,0,0,0,0,6.4,0,0,0,0,0.325,88.12,112.17,0.94,0.13,792,1.5,68,0.9
+7445,2023,6,5,2,30,8,1.14,0.057,0.62,0,0,0,0,0,6.4,0,0,0,0,0.326,89.93,109.3,0.94,0.13,792,1.5,73,0.9
+7446,2023,6,5,3,0,7.8,1.15,0.058,0.62,0,0,0,0,0,6.3,0,0,0,0,0.326,90.33,105.9,0.94,0.13,792,1.5,79,0.9
+7447,2023,6,5,3,30,7.6,1.15,0.058,0.62,0,0,0,0,3,6.3,0,0,0,0,0.326,91.57,102.02,0.94,0.13,792,1.5,82,0.9
+7448,2023,6,5,4,0,7.4,1.15,0.058,0.62,0,0,0,0,8,6.1,0,0,0,0,0.326,91.39,97.75,0.94,0.13,792,1.5,86,0.9
+7449,2023,6,5,4,30,8,1.15,0.058,0.62,0,0,0,0,7,6.1,0,0,0,0,0.326,87.73,93.15,0.94,0.13,792,1.5,86,0.9
+7450,2023,6,5,5,0,8.6,1.15,0.056,0.62,16,168,22,5,8,6.1,14,45,71,16,0.327,84.2,88.03,0.94,0.13,792,1.5,87,0.9
+7451,2023,6,5,5,30,10.2,1.15,0.056,0.62,33,444,87,3,3,6.1,48,128,39,63,0.327,75.63,83.05,0.94,0.13,792,1.4,86,1.2
+7452,2023,6,5,6,0,11.8,1.14,0.055,0.62,45,609,174,0,0,5.9,49,571,0,170,0.328,67.15,77.8,0.94,0.13,792,1.4,86,1.5
+7453,2023,6,5,6,30,14,1.14,0.055,0.62,54,714,270,0,0,5.9,54,714,0,270,0.328,58.17,72.37,0.94,0.13,792,1.4,97,1.3
+7454,2023,6,5,7,0,16.2,1.13,0.054,0.62,60,787,370,0,0,5.3,60,787,0,370,0.328,48.34,66.82,0.94,0.13,792,1.4,109,1
+7455,2023,6,5,7,30,18.1,1.13,0.054,0.62,66,839,470,0,0,5.3,66,839,0,470,0.328,42.88,61.19,0.94,0.13,792,1.4,142,0.9
+7456,2023,6,5,8,0,19.9,1.12,0.054,0.62,71,878,568,0,0,4.1,71,878,0,568,0.328,35.36,55.51,0.94,0.13,792,1.4,175,0.8
+7457,2023,6,5,8,30,20.9,1.12,0.054,0.62,74,908,660,0,0,4.1,74,908,0,660,0.328,33.25,49.81,0.94,0.13,792,1.4,192,0.9
+7458,2023,6,5,9,0,21.9,1.11,0.054,0.62,79,930,746,0,0,3.6,79,930,0,746,0.328,30.19,44.15,0.94,0.13,792,1.4,209,1
+7459,2023,6,5,9,30,22.7,1.11,0.054,0.62,81,948,822,0,0,3.6,81,948,0,822,0.328,28.73,38.58,0.94,0.13,791,1.4,213,1.1
+7460,2023,6,5,10,0,23.5,1.11,0.055,0.62,83,962,888,0,0,3.4,83,962,0,888,0.328,26.89,33.19,0.94,0.13,791,1.4,216,1.1
+7461,2023,6,5,10,30,24.1,1.11,0.055,0.62,83,975,943,0,0,3.4,83,975,0,943,0.328,25.94,28.12,0.94,0.13,791,1.4,217,1.2
+7462,2023,6,5,11,0,24.7,1.23,0.047,0.62,82,986,985,0,0,3.2,82,986,0,985,0.327,24.66,23.62,0.94,0.13,791,1.4,218,1.2
+7463,2023,6,5,11,30,25.1,1.23,0.047,0.62,83,989,1012,0,0,3.2,83,989,0,1012,0.327,24.08,20.1,0.94,0.13,791,1.4,219,1.2
+7464,2023,6,5,12,0,25.6,1.22,0.049,0.62,84,990,1025,0,0,3,84,990,0,1025,0.327,23.09,18.16,0.94,0.13,791,1.4,220,1.3
+7465,2023,6,5,12,30,25.8,1.22,0.049,0.62,85,988,1023,0,0,3,101,959,0,1011,0.327,22.82,18.32,0.94,0.13,791,1.5,220,1.3
+7466,2023,6,5,13,0,26,1.21,0.053,0.62,86,984,1007,0,0,2.8,295,587,0,845,0.327,22.19,20.54,0.94,0.13,790,1.5,220,1.4
+7467,2023,6,5,13,30,26.1,1.21,0.053,0.62,83,981,978,0,7,2.8,361,402,0,728,0.328,22.06,24.24,0.94,0.13,790,1.5,219,1.4
+7468,2023,6,5,14,0,26.1,1.35,0.045,0.62,78,978,935,0,8,2.5,307,488,4,734,0.328,21.63,28.85,0.95,0.13,790,1.5,218,1.5
+7469,2023,6,5,14,30,25.9,1.35,0.045,0.62,78,966,879,0,8,2.5,339,284,0,575,0.328,21.89,33.97,0.95,0.13,790,1.5,215,1.5
+7470,2023,6,5,15,0,25.7,1.34,0.049,0.62,77,950,811,0,7,2.3,202,613,29,676,0.329,21.85,39.4,0.95,0.13,790,1.5,212,1.4
+7471,2023,6,5,15,30,25.5,1.34,0.049,0.62,76,929,733,0,0,2.3,105,861,4,714,0.329,22.11,44.98,0.95,0.13,790,1.5,204,1.3
+7472,2023,6,5,16,0,25.2,1.34,0.053,0.62,73,903,646,0,0,2.2,73,903,0,646,0.329,22.36,50.65,0.95,0.13,789,1.5,195,1.2
+7473,2023,6,5,16,30,24.7,1.34,0.053,0.62,70,870,552,0,0,2.2,70,870,0,552,0.329,23.04,56.35,0.96,0.13,789,1.5,182,1.1
+7474,2023,6,5,17,0,24.2,1.35,0.057,0.62,66,827,454,0,0,2.3,84,780,14,450,0.329,23.94,62.02,0.96,0.13,789,1.5,168,1.1
+7475,2023,6,5,17,30,23.4,1.35,0.057,0.62,61,770,354,0,3,2.3,119,533,43,322,0.329,25.14,67.64,0.96,0.13,790,1.5,153,1
+7476,2023,6,5,18,0,22.6,1.35,0.061,0.62,53,690,253,0,8,4.3,78,511,71,226,0.329,30.42,73.17,0.96,0.13,790,1.6,137,0.8
+7477,2023,6,5,18,30,21.1,1.35,0.061,0.62,44,578,159,0,3,4.3,80,217,25,123,0.329,33.32,78.57,0.96,0.13,790,1.6,122,0.8
+7478,2023,6,5,19,0,19.7,1.36,0.062,0.62,31,404,75,2,0,7.9,38,214,32,61,0.329,46.42,83.79,0.96,0.13,790,1.6,106,0.7
+7479,2023,6,5,19,30,18.6,1.36,0.062,0.62,12,123,15,0,0,7.9,12,123,0,15,0.328,49.7,88.7,0.96,0.13,790,1.6,99,0.8
+7480,2023,6,5,20,0,17.6,1.36,0.059,0.62,0,0,0,0,0,7.5,0,0,0,0,0.328,51.39,93.81,0.96,0.13,790,1.6,91,1
+7481,2023,6,5,20,30,16.9,1.36,0.059,0.62,0,0,0,0,0,7.5,0,0,0,0,0.328,53.71,98.36,0.96,0.13,790,1.6,92,1.1
+7482,2023,6,5,21,0,16.2,1.36,0.053,0.62,0,0,0,0,0,7.4,0,0,0,0,0.328,56.05,102.57,0.95,0.13,791,1.6,93,1.2
+7483,2023,6,5,21,30,15.4,1.36,0.053,0.62,0,0,0,0,3,7.4,0,0,0,0,0.328,58.91,106.37,0.95,0.13,790,1.5,95,1.2
+7484,2023,6,5,22,0,14.6,1.34,0.048,0.62,0,0,0,0,3,7.2,0,0,0,0,0.328,61.34,109.69,0.95,0.13,790,1.5,98,1.2
+7485,2023,6,5,22,30,13.9,1.34,0.048,0.62,0,0,0,0,0,7.2,0,0,0,0,0.327,64.17,112.46,0.95,0.13,790,1.5,102,1.2
+7486,2023,6,5,23,0,13.3,1.31,0.045,0.62,0,0,0,0,0,7.3,0,0,0,0,0.327,67,114.6,0.94,0.13,790,1.5,105,1.3
+7487,2023,6,5,23,30,12.8,1.31,0.045,0.62,0,0,0,0,0,7.3,0,0,0,0,0.326,69.21,116.05,0.94,0.13,790,1.5,111,1.2
+7488,2023,6,6,0,0,12.3,1.29,0.045,0.62,0,0,0,0,0,7.5,0,0,0,0,0.326,72.27,116.76,0.94,0.13,790,1.5,117,1.2
+7489,2023,6,6,0,30,11.9,1.29,0.045,0.62,0,0,0,0,0,7.4,0,0,0,0,0.325,74.19,116.7,0.94,0.13,790,1.5,124,1.2
+7490,2023,6,6,1,0,11.5,1.27,0.046,0.62,0,0,0,0,0,7.5,0,0,0,0,0.325,76.43,115.88,0.94,0.13,790,1.5,131,1.2
+7491,2023,6,6,1,30,11.2,1.27,0.046,0.62,0,0,0,0,0,7.5,0,0,0,0,0.324,77.96,114.32,0.94,0.13,790,1.6,137,1.3
+7492,2023,6,6,2,0,10.9,1.24,0.047,0.62,0,0,0,0,0,7.4,0,0,0,0,0.324,79.02,112.08,0.94,0.13,791,1.6,143,1.3
+7493,2023,6,6,2,30,10.7,1.24,0.047,0.62,0,0,0,0,0,7.4,0,0,0,0,0.324,80.08,109.22,0.94,0.13,791,1.6,149,1.3
+7494,2023,6,6,3,0,10.6,1.21,0.049,0.62,0,0,0,0,0,7.2,0,0,0,0,0.324,79.69,105.83,0.94,0.13,791,1.6,155,1.3
+7495,2023,6,6,3,30,10.4,1.21,0.049,0.62,0,0,0,0,0,7.2,0,0,0,0,0.324,80.76,101.96,0.94,0.13,791,1.6,160,1.3
+7496,2023,6,6,4,0,10.2,1.19,0.049,0.62,0,0,0,0,0,7,0,0,0,0,0.324,80.45,97.69,0.94,0.13,791,1.6,166,1.3
+7497,2023,6,6,4,30,10.7,1.19,0.049,0.62,0,0,0,0,0,7,0,0,0,0,0.324,77.82,93.1,0.94,0.13,791,1.6,169,1.5
+7498,2023,6,6,5,0,11.2,1.18,0.049,0.62,16,182,22,0,0,7.2,16,182,0,22,0.324,76.17,87.99,0.94,0.13,791,1.6,173,1.6
+7499,2023,6,6,5,30,12.4,1.18,0.049,0.62,32,459,88,0,0,7.2,32,459,0,88,0.324,70.38,83.01,0.94,0.13,791,1.6,176,1.9
+7500,2023,6,6,6,0,13.7,1.18,0.049,0.62,43,618,174,0,0,6.9,43,618,0,174,0.324,63.71,77.76,0.94,0.13,791,1.6,179,2.2
+7501,2023,6,6,6,30,15.4,1.18,0.049,0.62,52,719,270,0,0,6.9,52,719,0,270,0.324,57.11,72.34,0.94,0.13,791,1.6,184,2.4
+7502,2023,6,6,7,0,17.1,1.18,0.05,0.62,58,788,369,0,0,6.7,91,677,0,358,0.324,50.53,66.79,0.94,0.13,791,1.6,189,2.6
+7503,2023,6,6,7,30,18.6,1.18,0.05,0.62,64,839,469,0,0,6.8,74,809,0,464,0.322,46,61.16,0.94,0.13,791,1.6,190,2.6
+7504,2023,6,6,8,0,20.1,1.17,0.05,0.62,69,876,565,0,0,6.6,69,876,0,565,0.321,41.35,55.48,0.94,0.13,791,1.7,191,2.6
+7505,2023,6,6,8,30,21.2,1.17,0.05,0.62,72,907,658,0,0,6.5,72,907,0,658,0.319,38.6,49.79,0.94,0.13,790,1.6,189,2.6
+7506,2023,6,6,9,0,22.3,1.16,0.049,0.62,75,930,743,0,0,6.4,75,930,0,743,0.317,35.69,44.12,0.94,0.13,790,1.6,187,2.5
+7507,2023,6,6,9,30,23,1.16,0.049,0.62,78,949,820,0,0,6.4,78,949,0,820,0.315,34.21,38.55,0.94,0.13,790,1.6,186,2.4
+7508,2023,6,6,10,0,23.8,1.14,0.049,0.62,80,963,886,0,0,6.2,113,897,0,864,0.313,32.09,33.15,0.94,0.13,789,1.6,184,2.3
+7509,2023,6,6,10,30,24.3,1.14,0.049,0.62,78,978,941,0,8,6.2,260,622,0,809,0.311,31.15,28.07,0.94,0.13,789,1.6,194,2
+7510,2023,6,6,11,0,24.8,1.27,0.036,0.62,76,990,983,0,8,5.9,184,764,0,884,0.309,29.78,23.56,0.94,0.13,789,1.6,203,1.8
+7511,2023,6,6,11,30,25,1.27,0.036,0.62,79,990,1009,0,0,5.9,79,990,0,1009,0.307,29.39,20.02,0.95,0.13,788,1.7,219,2.1
+7512,2023,6,6,12,0,25.1,1.29,0.048,0.62,83,985,1019,0,0,6,83,985,0,1019,0.306,29.31,18.06,0.95,0.13,788,1.7,236,2.4
+7513,2023,6,6,12,30,24.3,1.29,0.048,0.62,87,976,1014,0,0,6,176,787,0,924,0.304,30.74,18.21,0.96,0.13,788,1.9,238,3.5
+7514,2023,6,6,13,0,23.5,1.33,0.067,0.62,92,962,994,0,6,6.9,436,263,0,682,0.302,34.5,20.42,0.97,0.13,788,2,241,4.6
+7515,2023,6,6,13,30,21.9,1.33,0.067,0.62,92,954,963,0,6,7,455,117,0,562,0.301,38.05,24.13,0.97,0.13,789,2.1,245,5
+7516,2023,6,6,14,0,20.3,1.44,0.07,0.62,91,942,917,0,6,8.8,400,304,0,667,0.3,47.59,28.74,0.97,0.13,789,2.2,249,5.5
+7517,2023,6,6,14,30,19.1,1.44,0.07,0.62,90,930,862,0,7,8.8,354,359,0,652,0.3,51.26,33.87,0.97,0.13,789,2.1,260,4.8
+7518,2023,6,6,15,0,17.9,1.44,0.071,0.62,89,914,796,0,7,10,177,716,29,731,0.3,59.95,39.3,0.97,0.13,790,2.1,271,4
+7519,2023,6,6,15,30,17.6,1.44,0.071,0.62,83,901,721,0,6,10,291,378,0,559,0.3,61.02,44.89,0.96,0.13,789,2.1,302,3
+7520,2023,6,6,16,0,17.3,1.43,0.06,0.62,76,883,637,0,6,10,290,256,0,453,0.3,62.18,50.56,0.96,0.13,789,2,334,2
+7521,2023,6,6,16,30,17.1,1.43,0.06,0.62,73,852,546,0,6,10,226,342,7,416,0.301,62.97,56.25,0.96,0.13,789,2,196,2.5
+7522,2023,6,6,17,0,16.8,1.41,0.061,0.62,68,810,449,0,6,9.5,200,336,7,358,0.301,62.29,61.93,0.96,0.13,789,1.9,57,3
+7523,2023,6,6,17,30,16.1,1.41,0.061,0.62,65,742,348,0,9,9.6,184,138,0,237,0.302,65.2,67.54,0.97,0.13,790,2,71,2.8
+7524,2023,6,6,18,0,15.5,1.39,0.083,0.62,60,646,248,0,9,9.7,131,118,0,165,0.303,68.18,73.07,0.97,0.13,790,2,84,2.6
+7525,2023,6,6,18,30,14.7,1.39,0.083,0.62,51,517,154,0,6,9.7,80,134,0,107,0.304,71.76,78.47,0.98,0.13,790,2,91,2.5
+7526,2023,6,6,19,0,14,1.39,0.105,0.62,36,326,72,6,7,10.1,32,60,86,39,0.305,77.39,83.69,0.98,0.13,791,2.1,98,2.3
+7527,2023,6,6,19,30,13.6,1.39,0.105,0.62,13,87,15,5,7,10.1,10,1,71,10,0.306,79.42,88.6,0.98,0.13,791,2.1,100,2.1
+7528,2023,6,6,20,0,13.2,1.41,0.105,0.62,0,0,0,0,8,10.2,0,0,0,0,0.307,82.13,93.7,0.98,0.13,791,2.1,102,1.8
+7529,2023,6,6,20,30,12.9,1.41,0.105,0.62,0,0,0,0,7,10.2,0,0,0,0,0.307,83.65,98.26,0.98,0.13,790,2.1,98,1.4
+7530,2023,6,6,21,0,12.6,1.41,0.097,0.62,0,0,0,0,6,10.2,0,0,0,0,0.308,85.41,102.46,0.98,0.13,790,2.1,94,1
+7531,2023,6,6,21,30,12.4,1.41,0.097,0.62,0,0,0,0,6,10.2,0,0,0,0,0.308,86.54,106.26,0.97,0.13,790,2.1,81,1.1
+7532,2023,6,6,22,0,12.3,1.39,0.079,0.62,0,0,0,0,6,10.1,0,0,0,0,0.308,86.39,109.58,0.97,0.13,790,2,69,1.2
+7533,2023,6,6,22,30,11.9,1.39,0.079,0.62,0,0,0,0,7,10.1,0,0,0,0,0.308,88.57,112.35,0.96,0.13,789,2,70,1.3
+7534,2023,6,6,23,0,11.6,1.37,0.063,0.62,0,0,0,0,7,9.8,0,0,0,0,0.308,88.53,114.49,0.96,0.13,789,2,71,1.5
+7535,2023,6,6,23,30,11.2,1.37,0.063,0.62,0,0,0,0,7,9.8,0,0,0,0,0.309,90.9,115.94,0.96,0.13,789,2,80,1.4
+7536,2023,6,7,0,0,10.9,1.34,0.063,0.62,0,0,0,0,7,9.5,0,0,0,0,0.309,91.18,116.66,0.96,0.13,789,1.9,88,1.3
+7537,2023,6,7,0,30,10.6,1.34,0.063,0.62,0,0,0,0,7,9.5,0,0,0,0,0.31,93.02,116.6,0.96,0.13,789,2,92,1.2
+7538,2023,6,7,1,0,10.3,1.32,0.068,0.62,0,0,0,0,7,9.4,0,0,0,0,0.311,93.94,115.79,0.96,0.13,789,2,96,1.1
+7539,2023,6,7,1,30,10.1,1.32,0.068,0.62,0,0,0,0,7,9.4,0,0,0,0,0.311,95.2,114.24,0.96,0.13,789,2,98,1.1
+7540,2023,6,7,2,0,9.9,1.3,0.08,0.62,0,0,0,0,7,9.2,0,0,0,0,0.312,95.24,112,0.96,0.13,789,2,99,1
+7541,2023,6,7,2,30,9.9,1.3,0.08,0.62,0,0,0,0,8,9.2,0,0,0,0,0.312,95.24,109.15,0.97,0.13,789,2,104,1
+7542,2023,6,7,3,0,9.9,1.27,0.099,0.62,0,0,0,0,0,8.9,0,0,0,0,0.313,93.47,105.76,0.97,0.13,789,2.1,109,0.9
+7543,2023,6,7,3,30,10,1.27,0.099,0.62,0,0,0,0,5,8.9,0,0,0,0,0.313,92.96,101.9,0.97,0.13,790,2.1,117,0.9
+7544,2023,6,7,4,0,10,1.25,0.117,0.62,0,0,0,0,5,8.7,0,0,0,0,0.314,91.87,97.65,0.97,0.13,790,2.1,125,0.8
+7545,2023,6,7,4,30,10.4,1.25,0.117,0.62,0,0,0,0,5,8.7,0,0,0,0,0.314,89.45,93.05,0.97,0.13,790,2.1,135,0.9
+7546,2023,6,7,5,0,10.8,1.23,0.136,0.62,17,91,20,6,5,8.7,10,0,86,10,0.314,86.98,87.95,0.97,0.13,790,2.2,145,1.1
+7547,2023,6,7,5,30,11.5,1.23,0.136,0.62,43,297,79,5,5,8.7,41,0,75,41,0.315,83.05,82.98,0.97,0.13,790,2.2,155,1.2
+7548,2023,6,7,6,0,12.1,1.23,0.151,0.62,63,451,159,0,5,8.9,36,0,7,36,0.315,80.58,77.73,0.97,0.13,790,2.2,165,1.3
+7549,2023,6,7,6,30,12.9,1.23,0.151,0.62,78,565,250,0,5,8.9,108,16,0,113,0.315,76.47,72.31,0.97,0.13,790,2.2,176,1.8
+7550,2023,6,7,7,0,13.7,1.23,0.156,0.62,91,646,346,0,5,9.1,200,55,0,222,0.315,73.93,66.77,0.97,0.13,790,2.2,188,2.3
+7551,2023,6,7,7,30,14.3,1.23,0.156,0.62,102,707,443,0,5,9.2,133,22,0,144,0.315,71.21,61.14,0.97,0.13,791,2.2,196,2.7
+7552,2023,6,7,8,0,14.8,1.23,0.16,0.62,111,753,538,0,4,9,120,0,0,120,0.315,68.23,55.46,0.97,0.13,791,2.2,205,3.2
+7553,2023,6,7,8,30,15.1,1.23,0.16,0.62,118,789,628,0,4,9,138,0,0,138,0.314,66.93,49.77,0.97,0.13,791,2.2,213,3.3
+7554,2023,6,7,9,0,15.5,1.24,0.164,0.62,126,816,712,0,8,8.6,178,5,0,182,0.314,63.34,44.1,0.97,0.13,791,2.2,221,3.5
+7555,2023,6,7,9,30,15.6,1.24,0.164,0.62,129,842,788,0,8,8.6,215,7,0,220,0.314,62.94,38.52,0.97,0.13,791,2.1,228,3.5
+7556,2023,6,7,10,0,15.8,1.23,0.157,0.62,132,862,854,0,8,8.1,236,10,0,244,0.313,60.01,33.12,0.97,0.13,791,2.1,234,3.6
+7557,2023,6,7,10,30,15.8,1.23,0.157,0.62,127,889,912,0,8,8.1,263,9,0,271,0.313,60.01,28.03,0.97,0.13,791,2.1,239,3.7
+7558,2023,6,7,11,0,15.8,1.36,0.117,0.62,117,916,957,0,8,7.6,374,179,0,538,0.313,58.34,23.5,0.97,0.13,791,2.1,244,3.9
+7559,2023,6,7,11,30,15.9,1.36,0.117,0.62,115,928,987,0,8,7.6,383,366,0,727,0.313,57.97,19.95,0.97,0.13,791,2.1,248,4
+7560,2023,6,7,12,0,15.9,1.39,0.096,0.62,108,941,1003,0,7,7.1,333,465,0,775,0.313,55.71,17.97,0.97,0.13,791,2,253,4.1
+7561,2023,6,7,12,30,16.1,1.39,0.096,0.62,103,949,1005,0,8,7.1,350,401,0,731,0.313,55.01,18.11,0.96,0.13,791,2,257,4
+7562,2023,6,7,13,0,16.3,1.42,0.072,0.62,96,957,993,0,8,6.3,430,106,0,529,0.313,51.4,20.32,0.96,0.13,791,1.9,261,4
+7563,2023,6,7,13,30,16.6,1.42,0.072,0.62,92,957,966,0,7,6.3,415,50,0,461,0.313,50.44,24.03,0.96,0.13,791,1.9,263,4
+7564,2023,6,7,14,0,16.9,1.36,0.06,0.62,87,956,926,0,8,5.1,360,44,0,399,0.313,45.7,28.64,0.95,0.13,790,1.8,265,4
+7565,2023,6,7,14,30,17.1,1.36,0.06,0.62,83,950,873,0,8,5.1,367,256,0,580,0.313,45.12,33.78,0.95,0.13,790,1.7,266,4
+7566,2023,6,7,15,0,17.3,1.32,0.051,0.62,78,942,808,0,8,3.6,325,176,0,461,0.313,39.97,39.21,0.94,0.13,790,1.7,268,4
+7567,2023,6,7,15,30,17.5,1.32,0.051,0.62,74,929,733,0,8,3.5,260,416,0,555,0.312,39.42,44.8,0.94,0.13,789,1.6,265,3.9
+7568,2023,6,7,16,0,17.8,1.27,0.044,0.62,69,912,649,0,8,2.1,264,260,0,429,0.312,34.91,50.47,0.93,0.13,789,1.5,263,3.8
+7569,2023,6,7,16,30,17.4,1.27,0.044,0.62,65,884,557,0,8,2.1,210,333,0,395,0.311,35.8,56.16,0.93,0.13,789,1.5,252,3.1
+7570,2023,6,7,17,0,17.1,1.24,0.042,0.62,60,849,461,0,8,2.1,203,212,0,303,0.311,36.61,61.83,0.93,0.13,789,1.5,240,2.3
+7571,2023,6,7,17,30,15.9,1.24,0.042,0.62,54,800,361,0,8,2.2,158,206,0,237,0.31,39.55,67.45,0.93,0.13,790,1.4,195,1.6
+7572,2023,6,7,18,0,14.8,1.23,0.04,0.62,48,732,262,0,8,5.7,111,195,4,168,0.31,54.43,72.98,0.92,0.13,790,1.4,150,0.9
+7573,2023,6,7,18,30,13.7,1.23,0.04,0.62,39,631,166,0,7,5.7,79,158,0,111,0.31,58.44,78.38,0.92,0.13,790,1.4,132,1.1
+7574,2023,6,7,19,0,12.7,1.22,0.036,0.62,28,472,81,6,7,5.8,39,11,86,40,0.31,62.96,83.6,0.92,0.13,790,1.4,114,1.3
+7575,2023,6,7,19,30,12.1,1.22,0.036,0.62,13,163,17,5,8,5.8,12,2,75,12,0.311,65.48,88.51,0.92,0.13,790,1.4,107,1.7
+7576,2023,6,7,20,0,11.5,1.23,0.037,0.62,0,0,0,0,7,5.9,0,0,0,0,0.311,68.39,93.61,0.92,0.13,791,1.4,100,2.1
+7577,2023,6,7,20,30,11,1.23,0.037,0.62,0,0,0,0,7,5.9,0,0,0,0,0.312,70.69,98.15,0.92,0.13,791,1.4,98,2.5
+7578,2023,6,7,21,0,10.5,1.25,0.04,0.62,0,0,0,0,8,6.5,0,0,0,0,0.313,76.09,102.36,0.92,0.13,791,1.4,95,2.9
+7579,2023,6,7,21,30,10.1,1.25,0.04,0.62,0,0,0,0,8,6.5,0,0,0,0,0.314,78.15,106.16,0.92,0.13,791,1.4,98,2.9
+7580,2023,6,7,22,0,9.7,1.29,0.045,0.62,0,0,0,0,0,7,0,0,0,0,0.315,83.15,109.48,0.92,0.13,791,1.4,100,2.9
+7581,2023,6,7,22,30,9.4,1.29,0.045,0.62,0,0,0,0,3,7,0,0,0,0,0.315,84.84,112.25,0.93,0.13,791,1.4,103,2.8
+7582,2023,6,7,23,0,9,1.34,0.051,0.62,0,0,0,0,8,7.1,0,0,0,0,0.316,87.71,114.39,0.93,0.13,791,1.5,107,2.7
+7583,2023,6,7,23,30,8.6,1.34,0.051,0.62,0,0,0,0,8,7.1,0,0,0,0,0.317,90.1,115.84,0.93,0.13,791,1.5,104,2.5
+7584,2023,6,8,0,0,8.2,1.37,0.06,0.62,0,0,0,0,8,6.9,0,0,0,0,0.317,91.41,116.56,0.94,0.13,791,1.5,101,2.3
+7585,2023,6,8,0,30,7.9,1.37,0.06,0.62,0,0,0,0,8,6.9,0,0,0,0,0.318,93.28,116.51,0.94,0.13,791,1.5,99,2.2
+7586,2023,6,8,1,0,7.6,1.39,0.068,0.62,0,0,0,0,3,6.4,0,0,0,0,0.319,92.41,115.7,0.94,0.13,791,1.5,97,2
+7587,2023,6,8,1,30,7.2,1.39,0.068,0.62,0,0,0,0,0,6.4,0,0,0,0,0.32,94.97,114.16,0.94,0.13,791,1.5,94,1.9
+7588,2023,6,8,2,0,6.9,1.38,0.07,0.62,0,0,0,0,7,6,0,0,0,0,0.321,93.69,111.93,0.94,0.13,791,1.5,92,1.8
+7589,2023,6,8,2,30,6.5,1.38,0.07,0.62,0,0,0,0,7,6,0,0,0,0,0.322,96.29,109.09,0.94,0.13,791,1.4,89,1.7
+7590,2023,6,8,3,0,6.2,1.35,0.069,0.62,0,0,0,0,7,5.5,0,0,0,0,0.323,95.36,105.71,0.93,0.13,791,1.4,87,1.6
+7591,2023,6,8,3,30,6,1.35,0.069,0.62,0,0,0,0,7,5.5,0,0,0,0,0.324,96.68,101.85,0.93,0.13,791,1.4,81,1.6
+7592,2023,6,8,4,0,5.7,1.3,0.069,0.62,0,0,0,0,7,5.2,0,0,0,0,0.326,96.27,97.6,0.93,0.13,791,1.3,75,1.6
+7593,2023,6,8,4,30,6.1,1.3,0.069,0.62,0,0,0,0,8,5.2,0,0,0,0,0.327,93.65,93.01,0.93,0.13,791,1.3,72,2
+7594,2023,6,8,5,0,6.4,1.25,0.07,0.62,16,162,22,6,8,5,16,2,86,16,0.329,90.55,87.92,0.93,0.13,791,1.3,69,2.3
+7595,2023,6,8,5,30,7.4,1.25,0.07,0.62,35,430,88,4,8,5,63,95,57,75,0.331,84.55,82.95,0.93,0.13,791,1.2,66,2.3
+7596,2023,6,8,6,0,8.4,1.19,0.069,0.62,48,595,175,0,7,5.1,106,192,0,147,0.333,79.98,77.71,0.93,0.13,791,1.2,63,2.3
+7597,2023,6,8,6,30,10.5,1.19,0.069,0.62,57,704,271,0,7,5.1,153,164,0,203,0.335,69.47,72.29,0.93,0.13,791,1.2,72,2
+7598,2023,6,8,7,0,12.6,1.14,0.068,0.62,64,779,372,0,7,4.7,205,138,0,259,0.337,58.72,66.75,0.93,0.13,791,1.1,81,1.8
+7599,2023,6,8,7,30,15.1,1.14,0.068,0.62,71,832,473,0,7,4.7,243,220,0,349,0.338,49.95,61.12,0.93,0.13,791,1.1,121,1.7
+7600,2023,6,8,8,0,17.5,1.1,0.068,0.62,76,872,571,0,7,2.5,270,281,0,429,0.339,36.6,55.44,0.92,0.13,791,1.1,161,1.6
+7601,2023,6,8,8,30,18.9,1.1,0.068,0.62,80,904,664,0,7,2.5,218,568,0,585,0.339,33.53,49.75,0.92,0.13,791,1.1,181,1.7
+7602,2023,6,8,9,0,20.3,1.08,0.065,0.62,83,929,750,0,0,2.2,91,909,0,744,0.339,30.2,44.08,0.92,0.13,791,1.1,201,1.9
+7603,2023,6,8,9,30,21.3,1.08,0.065,0.62,86,948,828,0,0,2.3,86,948,0,828,0.339,28.41,38.5,0.92,0.13,791,1.1,207,2.2
+7604,2023,6,8,10,0,22.3,1.05,0.063,0.62,87,963,894,0,0,2,87,963,0,894,0.338,26.22,33.09,0.92,0.13,791,1.1,212,2.4
+7605,2023,6,8,10,30,23.1,1.05,0.063,0.62,85,980,950,0,0,2,85,980,0,950,0.336,24.95,28,0.91,0.13,790,1.1,213,2.7
+7606,2023,6,8,11,0,23.8,1.27,0.047,0.62,81,995,994,0,0,1.6,81,995,0,994,0.334,23.33,23.46,0.91,0.13,790,1.1,214,3
+7607,2023,6,8,11,30,24.3,1.27,0.047,0.62,83,999,1022,0,0,1.6,83,999,0,1022,0.331,22.64,19.88,0.91,0.13,790,1.1,215,3.3
+7608,2023,6,8,12,0,24.8,1.23,0.048,0.62,83,1001,1036,0,0,1.1,83,1001,0,1036,0.328,21.17,17.88,0.91,0.13,790,1.1,215,3.7
+7609,2023,6,8,12,30,25.1,1.23,0.048,0.62,84,1001,1036,0,0,1.1,84,1001,0,1036,0.325,20.8,18.01,0.91,0.13,790,1.1,216,3.9
+7610,2023,6,8,13,0,25.4,1.22,0.05,0.62,85,998,1021,0,0,0.3,121,939,0,1002,0.322,19.23,20.22,0.91,0.13,789,1.1,216,4.2
+7611,2023,6,8,13,30,25.4,1.22,0.05,0.62,83,995,992,0,0,0.3,175,841,0,944,0.321,19.23,23.93,0.91,0.13,789,1.1,215,4.4
+7612,2023,6,8,14,0,25.5,1.31,0.049,0.62,81,989,950,0,0,-0.9,81,989,0,950,0.32,17.63,28.55,0.91,0.13,789,1,215,4.5
+7613,2023,6,8,14,30,25.3,1.31,0.049,0.62,80,980,895,0,0,-0.9,223,652,0,765,0.32,17.84,33.69,0.91,0.13,789,1,214,4.6
+7614,2023,6,8,15,0,25.1,1.38,0.052,0.62,78,967,828,0,0,-2.2,251,509,0,646,0.321,16.34,39.12,0.91,0.13,789,1,214,4.7
+7615,2023,6,8,15,30,24.7,1.38,0.052,0.62,76,949,750,0,0,-2.2,79,940,0,747,0.321,16.74,44.71,0.9,0.13,789,0.9,214,4.7
+7616,2023,6,8,16,0,24.3,1.47,0.054,0.62,72,927,663,0,0,-3.3,134,766,7,622,0.321,15.78,50.38,0.9,0.13,789,0.9,214,4.7
+7617,2023,6,8,16,30,23.7,1.47,0.054,0.62,69,898,570,0,8,-3.3,180,484,25,450,0.322,16.36,56.08,0.9,0.13,789,0.9,214,4.7
+7618,2023,6,8,17,0,23,1.52,0.056,0.62,64,859,471,0,8,-4.1,155,553,14,417,0.322,16.15,61.75,0.9,0.13,789,0.8,214,4.6
+7619,2023,6,8,17,30,22,1.52,0.056,0.62,58,808,369,0,0,-4.1,92,677,7,353,0.322,17.16,67.36,0.9,0.13,789,0.8,215,4
+7620,2023,6,8,18,0,20.9,1.47,0.055,0.62,52,735,268,0,0,-3.1,52,735,0,268,0.323,19.75,72.89,0.9,0.13,789,0.8,216,3.4
+7621,2023,6,8,18,30,18.3,1.47,0.055,0.62,43,630,171,0,0,-3.1,43,630,0,171,0.323,23.2,78.29,0.9,0.13,789,0.8,218,2.5
+7622,2023,6,8,19,0,15.8,1.33,0.053,0.62,31,464,83,0,0,0.8,31,464,0,83,0.324,36.18,83.51,0.9,0.13,790,0.7,220,1.6
+7623,2023,6,8,19,30,14.6,1.33,0.053,0.62,14,156,18,0,0,0.8,14,156,0,18,0.324,39.07,88.42,0.9,0.13,790,0.7,220,1.6
+7624,2023,6,8,20,0,13.4,1.12,0.049,0.62,0,0,0,0,0,0.6,0,0,0,0,0.325,41.72,93.51,0.9,0.13,790,0.7,220,1.5
+7625,2023,6,8,20,30,12.8,1.12,0.049,0.62,0,0,0,0,0,0.6,0,0,0,0,0.326,43.38,98.06,0.91,0.13,790,0.7,219,1.5
+7626,2023,6,8,21,0,12.3,0.92,0.045,0.62,0,0,0,0,0,0.3,0,0,0,0,0.326,43.59,102.26,0.91,0.13,791,0.7,218,1.4
+7627,2023,6,8,21,30,11.9,0.92,0.045,0.62,0,0,0,0,0,0.3,0,0,0,0,0.327,44.75,106.06,0.91,0.13,791,0.6,216,1.4
+7628,2023,6,8,22,0,11.5,0.78,0.043,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.327,44.53,109.38,0.91,0.13,791,0.6,214,1.4
+7629,2023,6,8,22,30,11.2,0.78,0.043,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.328,45.42,112.15,0.92,0.13,791,0.6,212,1.4
+7630,2023,6,8,23,0,10.9,0.72,0.042,0.62,0,0,0,0,8,-0.6,0,0,0,0,0.328,44.82,114.29,0.92,0.13,791,0.6,210,1.4
+7631,2023,6,8,23,30,10.8,0.72,0.042,0.62,0,0,0,0,8,-0.6,0,0,0,0,0.329,45.12,115.75,0.92,0.13,791,0.6,207,1.4
+7632,2023,6,9,0,0,10.7,0.72,0.042,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.329,43.97,116.47,0.92,0.13,791,0.6,205,1.4
+7633,2023,6,9,0,30,10.6,0.72,0.042,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.329,44.26,116.43,0.92,0.13,791,0.7,202,1.4
+7634,2023,6,9,1,0,10.5,0.74,0.043,0.62,0,0,0,0,8,-1.4,0,0,0,0,0.329,43.43,115.62,0.92,0.13,790,0.7,199,1.4
+7635,2023,6,9,1,30,10.4,0.74,0.043,0.62,0,0,0,0,8,-1.4,0,0,0,0,0.329,43.72,114.09,0.92,0.13,790,0.7,198,1.4
+7636,2023,6,9,2,0,10.3,0.77,0.045,0.62,0,0,0,0,8,-1.7,0,0,0,0,0.329,43.15,111.87,0.92,0.13,790,0.7,198,1.4
+7637,2023,6,9,2,30,10.4,0.77,0.045,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.329,42.87,109.03,0.92,0.13,790,0.8,198,1.3
+7638,2023,6,9,3,0,10.4,0.81,0.048,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.329,41.64,105.66,0.92,0.13,790,0.8,199,1.2
+7639,2023,6,9,3,30,10.4,0.81,0.048,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.329,41.64,101.81,0.92,0.13,790,0.8,197,0.9
+7640,2023,6,9,4,0,10.4,0.83,0.051,0.62,0,0,0,0,8,-2.6,0,0,0,0,0.329,40.12,97.56,0.92,0.13,790,0.9,195,0.7
+7641,2023,6,9,4,30,10.5,0.83,0.051,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.328,39.9,92.98,0.92,0.13,791,0.9,170,0.5
+7642,2023,6,9,5,0,10.6,0.86,0.055,0.62,17,175,23,6,7,-1.3,16,2,86,16,0.328,43.57,87.89,0.92,0.13,791,0.9,146,0.2
+7643,2023,6,9,5,30,11.8,0.86,0.055,0.62,34,453,90,4,8,-1.3,57,145,57,75,0.328,40.25,82.93,0.93,0.13,791,0.9,108,0.5
+7644,2023,6,9,6,0,12.9,0.89,0.06,0.62,47,615,178,0,0,-2,60,515,0,170,0.327,35.67,77.69,0.93,0.13,791,0.9,69,0.7
+7645,2023,6,9,6,30,14.8,0.89,0.06,0.62,56,718,275,0,0,-1.9,56,718,0,275,0.327,31.54,72.27,0.93,0.13,791,0.9,88,0.7
+7646,2023,6,9,7,0,16.7,0.91,0.064,0.62,65,787,376,0,0,-3.2,65,787,0,376,0.327,25.51,66.74,0.93,0.13,791,1,108,0.7
+7647,2023,6,9,7,30,18.3,0.91,0.064,0.62,72,839,477,0,0,-3.2,92,768,0,463,0.326,23.07,61.11,0.93,0.13,791,1,129,1
+7648,2023,6,9,8,0,20,0.92,0.068,0.62,77,876,574,0,7,-3.6,175,588,0,509,0.326,20.02,55.43,0.93,0.13,791,1,149,1.3
+7649,2023,6,9,8,30,20.9,0.92,0.068,0.62,83,904,667,0,7,-3.6,180,623,0,583,0.325,18.94,49.74,0.94,0.13,791,1,159,1.5
+7650,2023,6,9,9,0,21.9,0.93,0.072,0.62,88,926,753,0,7,-3.5,280,438,0,595,0.325,17.98,44.07,0.94,0.13,791,1,168,1.8
+7651,2023,6,9,9,30,22.7,0.93,0.072,0.62,91,944,830,0,7,-3.5,312,448,0,663,0.324,17.1,38.49,0.94,0.13,790,1,176,2
+7652,2023,6,9,10,0,23.4,0.94,0.073,0.62,94,958,897,0,7,-3.2,285,543,0,740,0.323,16.77,33.07,0.94,0.13,790,1,184,2.2
+7653,2023,6,9,10,30,24,0.94,0.073,0.62,92,975,953,0,7,-3.2,384,385,0,724,0.323,16.18,27.97,0.94,0.13,790,1,191,2.4
+7654,2023,6,9,11,0,24.6,0.94,0.054,0.62,88,991,997,0,7,-2.9,378,452,0,793,0.322,15.98,23.42,0.94,0.13,790,1,197,2.6
+7655,2023,6,9,11,30,25.1,0.94,0.054,0.62,88,996,1025,0,7,-2.9,324,557,0,848,0.321,15.51,19.82,0.94,0.13,790,1,202,2.8
+7656,2023,6,9,12,0,25.5,0.94,0.053,0.62,89,998,1039,0,7,-2.8,223,695,0,885,0.321,15.3,17.81,0.94,0.13,789,1,207,3
+7657,2023,6,9,12,30,25.7,0.94,0.053,0.62,88,998,1038,0,7,-2.8,186,748,0,898,0.321,15.12,17.92,0.94,0.13,789,1,211,3.2
+7658,2023,6,9,13,0,26,0.94,0.053,0.62,88,995,1022,0,7,-2.8,159,837,0,945,0.32,14.83,20.12,0.93,0.13,789,1.1,216,3.3
+7659,2023,6,9,13,30,26.1,0.94,0.053,0.62,86,992,993,0,8,-2.8,137,872,0,935,0.32,14.74,23.84,0.93,0.13,789,1.1,220,3.4
+7660,2023,6,9,14,0,26.1,0.94,0.047,0.62,81,988,950,0,8,-2.9,137,869,0,901,0.32,14.61,28.46,0.93,0.13,788,1.1,225,3.4
+7661,2023,6,9,14,30,26,0.94,0.047,0.62,80,977,894,0,7,-2.9,186,737,0,800,0.32,14.69,33.6,0.93,0.13,788,1.1,228,3.4
+7662,2023,6,9,15,0,25.8,0.96,0.049,0.62,78,963,826,0,8,-3,157,774,7,758,0.32,14.74,39.03,0.93,0.13,788,1.1,232,3.4
+7663,2023,6,9,15,30,25.5,0.96,0.049,0.62,76,944,748,0,8,-3,134,827,21,723,0.32,15,44.63,0.94,0.13,788,1.1,235,3.4
+7664,2023,6,9,16,0,25.1,1,0.051,0.62,73,920,661,0,0,-3,99,860,0,648,0.32,15.38,50.3,0.94,0.13,788,1.1,239,3.3
+7665,2023,6,9,16,30,24.5,1,0.051,0.62,70,888,567,0,8,-3,147,628,4,498,0.32,15.94,55.99,0.94,0.13,788,1.1,244,3.2
+7666,2023,6,9,17,0,24,1.03,0.055,0.62,66,844,467,0,7,-2.7,123,662,14,437,0.32,16.85,61.66,0.94,0.13,788,1.1,249,3.2
+7667,2023,6,9,17,30,23,1.03,0.055,0.62,61,787,365,0,7,-2.7,96,678,43,358,0.321,17.89,67.28,0.94,0.13,788,1.1,256,2.8
+7668,2023,6,9,18,0,22,1.07,0.061,0.62,55,706,264,0,7,-0.2,104,487,7,248,0.321,22.89,72.8,0.94,0.13,788,1.1,263,2.4
+7669,2023,6,9,18,30,20.1,1.07,0.061,0.62,46,590,167,0,7,-0.2,91,288,0,150,0.321,25.71,78.2,0.95,0.13,788,1.2,273,1.9
+7670,2023,6,9,19,0,18.1,1.11,0.068,0.62,34,409,81,6,7,4,60,77,86,69,0.321,39.27,83.42,0.95,0.13,788,1.2,283,1.4
+7671,2023,6,9,19,30,17.2,1.11,0.068,0.62,13,126,17,3,0,4,14,25,43,15,0.322,41.61,88.34,0.95,0.13,789,1.3,294,1.4
+7672,2023,6,9,20,0,16.3,1.15,0.081,0.62,0,0,0,0,0,4.3,0,0,0,0,0.322,44.85,93.42,0.96,0.13,789,1.3,305,1.3
+7673,2023,6,9,20,30,15.9,1.15,0.081,0.62,0,0,0,0,8,4.3,0,0,0,0,0.322,46.01,97.97,0.96,0.13,789,1.3,314,1.3
+7674,2023,6,9,21,0,15.4,1.17,0.087,0.62,0,0,0,0,7,4.7,0,0,0,0,0.323,48.75,102.17,0.96,0.13,789,1.4,324,1.3
+7675,2023,6,9,21,30,15,1.17,0.087,0.62,0,0,0,0,5,4.7,0,0,0,0,0.324,50.02,105.97,0.96,0.13,789,1.4,328,1.3
+7676,2023,6,9,22,0,14.7,1.18,0.084,0.62,0,0,0,0,8,5,0,0,0,0,0.324,52.17,109.29,0.96,0.13,790,1.4,333,1.3
+7677,2023,6,9,22,30,14.2,1.18,0.084,0.62,0,0,0,0,7,5,0,0,0,0,0.324,53.88,112.06,0.95,0.13,790,1.4,334,1.3
+7678,2023,6,9,23,0,13.8,1.18,0.08,0.62,0,0,0,0,7,5.1,0,0,0,0,0.324,55.54,114.2,0.95,0.13,790,1.4,335,1.3
+7679,2023,6,9,23,30,13.4,1.18,0.08,0.62,0,0,0,0,7,5.1,0,0,0,0,0.324,57,115.66,0.95,0.13,790,1.4,335,1.2
+7680,2023,6,10,0,0,13,1.16,0.077,0.62,0,0,0,0,7,5,0,0,0,0,0.324,58.38,116.39,0.95,0.13,790,1.4,335,1.2
+7681,2023,6,10,0,30,12.6,1.16,0.077,0.62,0,0,0,0,4,5,0,0,0,0,0.325,59.93,116.35,0.95,0.13,790,1.4,335,1.2
+7682,2023,6,10,1,0,12.2,1.14,0.071,0.62,0,0,0,0,5,5,0,0,0,0,0.325,61.37,115.55,0.94,0.13,790,1.4,336,1.2
+7683,2023,6,10,1,30,11.8,1.14,0.071,0.62,0,0,0,0,0,5,0,0,0,0,0.326,63,114.02,0.94,0.13,790,1.3,336,1.1
+7684,2023,6,10,2,0,11.3,1.11,0.064,0.62,0,0,0,0,0,4.7,0,0,0,0,0.326,63.99,111.81,0.94,0.13,790,1.3,336,1.1
+7685,2023,6,10,2,30,10.8,1.11,0.064,0.62,0,0,0,0,3,4.7,0,0,0,0,0.328,66.15,108.98,0.94,0.13,790,1.3,341,1
+7686,2023,6,10,3,0,10.3,1.08,0.061,0.62,0,0,0,0,0,4.6,0,0,0,0,0.329,67.67,105.61,0.94,0.13,790,1.3,345,0.9
+7687,2023,6,10,3,30,9.8,1.08,0.061,0.62,0,0,0,0,3,4.6,0,0,0,0,0.33,69.96,101.77,0.94,0.13,790,1.3,174,0.9
+7688,2023,6,10,4,0,9.2,1.07,0.06,0.62,0,0,0,0,8,4.6,0,0,29,0,0.331,72.99,97.53,0.93,0.13,790,1.3,4,0.8
+7689,2023,6,10,4,30,9.6,1.07,0.06,0.62,0,0,0,0,5,4.6,0,0,0,0,0.333,71.06,92.95,0.93,0.13,790,1.3,11,1
+7690,2023,6,10,5,0,10,1.07,0.06,0.62,17,169,23,6,3,5.1,13,11,79,13,0.334,71.4,87.87,0.93,0.13,790,1.3,18,1.2
+7691,2023,6,10,5,30,11.4,1.07,0.06,0.62,35,441,89,1,0,5.1,38,381,18,85,0.335,65.06,82.91,0.93,0.13,790,1.3,28,1.5
+7692,2023,6,10,6,0,12.7,1.07,0.06,0.62,46,604,175,0,0,4.7,46,604,0,175,0.337,58.23,77.67,0.93,0.13,790,1.3,38,1.8
+7693,2023,6,10,6,30,14.6,1.07,0.06,0.62,55,709,271,0,0,4.7,55,709,0,271,0.338,51.48,72.26,0.93,0.13,790,1.3,47,1.8
+7694,2023,6,10,7,0,16.5,1.08,0.06,0.62,62,781,371,0,0,3.5,62,781,0,371,0.339,41.86,66.73,0.93,0.13,790,1.3,56,1.8
+7695,2023,6,10,7,30,17.7,1.08,0.06,0.62,68,834,471,0,0,3.5,68,834,0,471,0.34,38.81,61.1,0.93,0.13,790,1.3,72,1.6
+7696,2023,6,10,8,0,19,1.08,0.059,0.62,73,873,568,0,0,2.8,73,873,0,568,0.341,34.01,55.43,0.93,0.13,790,1.3,89,1.3
+7697,2023,6,10,8,30,19.9,1.08,0.059,0.62,77,904,661,0,0,2.8,77,904,0,661,0.342,32.17,49.73,0.93,0.13,790,1.3,110,1.2
+7698,2023,6,10,9,0,20.8,1.08,0.058,0.62,79,929,747,0,0,2.3,79,929,0,747,0.343,29.38,44.06,0.93,0.13,790,1.3,132,1.1
+7699,2023,6,10,9,30,21.5,1.08,0.058,0.62,83,946,824,0,0,2.3,83,946,0,824,0.343,28.15,38.48,0.93,0.13,790,1.3,150,1.1
+7700,2023,6,10,10,0,22.2,1.08,0.061,0.62,87,958,890,0,0,1.8,87,958,0,890,0.344,25.98,33.06,0.94,0.13,790,1.3,168,1.2
+7701,2023,6,10,10,30,22.7,1.08,0.061,0.62,87,971,945,0,0,1.8,87,971,0,945,0.345,25.2,27.95,0.94,0.13,790,1.3,178,1.4
+7702,2023,6,10,11,0,23.2,1.07,0.054,0.62,87,982,988,0,0,1.2,87,982,0,988,0.345,23.47,23.38,0.94,0.13,790,1.3,188,1.6
+7703,2023,6,10,11,30,23.5,1.07,0.054,0.62,88,986,1016,0,0,1.2,88,986,0,1016,0.346,23.02,19.77,0.94,0.13,789,1.3,194,1.7
+7704,2023,6,10,12,0,23.9,1.07,0.055,0.62,89,988,1030,0,0,0.8,91,984,0,1028,0.346,21.88,17.74,0.95,0.13,789,1.3,201,1.9
+7705,2023,6,10,12,30,24,1.07,0.055,0.62,88,987,1028,0,0,0.8,244,640,0,853,0.347,21.75,17.83,0.95,0.13,789,1.3,207,2
+7706,2023,6,10,13,0,24.2,1.08,0.056,0.62,88,983,1012,0,8,0.6,334,454,0,761,0.347,21.24,20.03,0.95,0.13,789,1.3,213,2
+7707,2023,6,10,13,30,24.2,1.08,0.056,0.62,89,977,983,0,8,0.6,328,284,0,588,0.347,21.22,23.75,0.95,0.13,788,1.4,218,1.9
+7708,2023,6,10,14,0,24.1,1.11,0.059,0.62,87,968,939,0,8,0.8,361,214,7,549,0.347,21.57,28.37,0.95,0.13,788,1.4,223,1.8
+7709,2023,6,10,14,30,23.9,1.11,0.059,0.62,86,956,883,0,8,0.8,359,252,0,569,0.346,21.83,33.52,0.95,0.13,788,1.4,229,1.7
+7710,2023,6,10,15,0,23.8,1.14,0.061,0.62,85,939,815,0,0,1.2,111,866,0,784,0.345,22.65,38.95,0.96,0.13,788,1.4,234,1.5
+7711,2023,6,10,15,30,23.4,1.14,0.061,0.62,81,919,736,0,0,1.2,204,560,4,603,0.344,23.2,44.55,0.96,0.13,788,1.5,242,1.4
+7712,2023,6,10,16,0,23,1.17,0.064,0.62,79,892,650,0,8,1.8,201,374,11,440,0.343,24.73,50.22,0.96,0.13,788,1.5,249,1.3
+7713,2023,6,10,16,30,22.4,1.17,0.064,0.62,75,858,556,0,0,1.8,134,716,0,535,0.341,25.65,55.91,0.96,0.13,788,1.5,259,1
+7714,2023,6,10,17,0,21.8,1.19,0.068,0.62,71,813,458,0,0,2.4,135,617,4,429,0.339,27.91,61.58,0.96,0.13,788,1.6,269,0.7
+7715,2023,6,10,17,30,21,1.19,0.068,0.62,65,753,357,0,3,2.4,165,370,7,308,0.338,29.31,67.2,0.96,0.13,788,1.6,138,0.6
+7716,2023,6,10,18,0,20.3,1.22,0.075,0.62,59,670,258,0,3,3.5,103,468,0,242,0.336,33.04,72.72,0.97,0.13,788,1.7,7,0.5
+7717,2023,6,10,18,30,19.1,1.22,0.075,0.62,49,552,163,0,3,3.5,95,208,0,138,0.335,35.63,78.12,0.97,0.13,789,1.7,24,0.6
+7718,2023,6,10,19,0,17.9,1.24,0.083,0.62,36,375,79,2,0,6.9,45,224,32,71,0.333,48.64,83.34,0.97,0.13,789,1.8,41,0.7
+7719,2023,6,10,19,30,17.2,1.24,0.083,0.62,14,112,17,6,5,6.9,11,9,82,11,0.332,50.83,88.26,0.97,0.13,789,1.8,44,0.8
+7720,2023,6,10,20,0,16.5,1.27,0.088,0.62,0,0,0,0,0,7.3,0,0,0,0,0.332,54.49,93.33,0.97,0.13,789,1.8,48,1
+7721,2023,6,10,20,30,16.2,1.27,0.088,0.62,0,0,0,0,4,7.3,0,0,0,0,0.331,55.61,97.88,0.97,0.13,790,1.8,51,1.2
+7722,2023,6,10,21,0,15.9,1.3,0.089,0.62,0,0,0,0,8,7,0,0,0,0,0.33,55.35,102.08,0.97,0.13,790,1.8,54,1.5
+7723,2023,6,10,21,30,15.5,1.3,0.089,0.62,0,0,0,0,8,7,0,0,0,0,0.329,56.78,105.88,0.97,0.13,790,1.8,54,1.7
+7724,2023,6,10,22,0,15.1,1.32,0.084,0.62,0,0,0,0,8,6.8,0,0,0,0,0.328,57.46,109.2,0.97,0.13,790,1.8,55,1.9
+7725,2023,6,10,22,30,14.7,1.32,0.084,0.62,0,0,0,0,8,6.8,0,0,0,0,0.328,58.95,111.97,0.97,0.13,790,1.8,55,2.1
+7726,2023,6,10,23,0,14.2,1.32,0.075,0.62,0,0,0,0,0,6.7,0,0,0,0,0.327,60.66,114.12,0.96,0.13,790,1.7,54,2.3
+7727,2023,6,10,23,30,13.8,1.32,0.075,0.62,0,0,0,0,0,6.7,0,0,0,0,0.327,62.17,115.58,0.96,0.13,789,1.7,55,2.4
+7728,2023,6,11,0,0,13.3,1.29,0.068,0.62,0,0,0,0,0,6.8,0,0,0,0,0.327,64.82,116.31,0.96,0.13,789,1.6,55,2.5
+7729,2023,6,11,0,30,13,1.29,0.068,0.62,0,0,0,0,0,6.8,0,0,0,0,0.326,66.1,116.28,0.96,0.13,789,1.6,57,2.7
+7730,2023,6,11,1,0,12.7,1.25,0.064,0.62,0,0,0,0,0,7,0,0,0,0,0.326,68.33,115.49,0.96,0.13,789,1.6,58,2.9
+7731,2023,6,11,1,30,12.3,1.25,0.064,0.62,0,0,0,0,8,7,0,0,0,0,0.326,70.14,113.96,0.95,0.13,789,1.5,60,2.9
+7732,2023,6,11,2,0,12,1.21,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.326,72.38,111.76,0.95,0.13,789,1.5,62,3
+7733,2023,6,11,2,30,11.5,1.21,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.326,74.81,108.94,0.95,0.13,789,1.5,64,2.9
+7734,2023,6,11,3,0,11.1,1.19,0.061,0.62,0,0,0,0,7,7.2,0,0,0,0,0.325,77.1,105.57,0.95,0.13,789,1.5,66,2.7
+7735,2023,6,11,3,30,10.7,1.19,0.061,0.62,0,0,0,0,8,7.2,0,0,0,0,0.325,79.17,101.74,0.95,0.13,789,1.5,66,2.5
+7736,2023,6,11,4,0,10.3,1.19,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.325,81.28,97.5,0.95,0.13,789,1.5,67,2.3
+7737,2023,6,11,4,30,10.5,1.19,0.062,0.62,0,0,0,0,3,7.2,0,0,0,0,0.324,80.21,92.93,0.95,0.13,789,1.5,67,2.5
+7738,2023,6,11,5,0,10.7,1.18,0.064,0.62,17,165,23,0,0,7.2,17,165,7,23,0.324,79.09,87.86,0.95,0.13,789,1.5,66,2.6
+7739,2023,6,11,5,30,11.6,1.18,0.064,0.62,35,430,88,0,0,7.2,35,430,0,88,0.324,74.52,82.9,0.95,0.13,789,1.6,65,2.7
+7740,2023,6,11,6,0,12.6,1.17,0.065,0.62,47,590,173,0,0,7.1,47,590,0,173,0.323,69.14,77.66,0.95,0.13,789,1.6,63,2.7
+7741,2023,6,11,6,30,14.4,1.17,0.065,0.62,57,697,269,0,0,7.1,57,697,0,269,0.323,61.52,72.25,0.95,0.13,789,1.6,70,2.6
+7742,2023,6,11,7,0,16.3,1.16,0.063,0.62,63,771,368,0,0,5.7,63,771,0,368,0.323,49.51,66.72,0.95,0.13,789,1.6,77,2.6
+7743,2023,6,11,7,30,17.8,1.16,0.063,0.62,70,824,468,0,0,5.7,70,824,0,468,0.323,45.04,61.1,0.95,0.13,789,1.6,79,2.3
+7744,2023,6,11,8,0,19.2,1.15,0.063,0.62,74,864,564,0,0,4.5,74,864,0,564,0.322,37.83,55.42,0.94,0.13,789,1.6,81,1.9
+7745,2023,6,11,8,30,20.2,1.15,0.063,0.62,78,894,656,0,0,4.5,78,894,0,656,0.322,35.56,49.73,0.94,0.13,789,1.6,79,1.6
+7746,2023,6,11,9,0,21.1,1.14,0.063,0.62,82,918,742,0,0,4.2,82,918,0,742,0.321,32.94,44.06,0.94,0.13,789,1.5,77,1.3
+7747,2023,6,11,9,30,21.8,1.14,0.063,0.62,85,936,818,0,0,4.2,100,913,0,815,0.32,31.52,38.47,0.94,0.13,788,1.5,70,1.2
+7748,2023,6,11,10,0,22.5,1.14,0.063,0.62,87,951,884,0,8,3.9,211,691,0,790,0.319,29.74,33.05,0.94,0.13,788,1.5,63,1
+7749,2023,6,11,10,30,23,1.14,0.063,0.62,87,964,939,0,0,3.9,161,807,0,874,0.318,28.85,27.93,0.95,0.13,788,1.5,47,0.9
+7750,2023,6,11,11,0,23.5,1.14,0.055,0.62,87,975,982,0,7,3.5,216,739,0,894,0.318,27.09,23.35,0.95,0.13,788,1.5,32,0.9
+7751,2023,6,11,11,30,23.6,1.14,0.055,0.62,90,976,1009,0,7,3.5,334,508,0,812,0.317,26.93,19.73,0.95,0.13,788,1.6,195,0.9
+7752,2023,6,11,12,0,23.6,1.14,0.065,0.62,93,974,1021,0,0,2.9,135,876,0,970,0.316,25.82,17.67,0.96,0.13,787,1.6,357,0.9
+7753,2023,6,11,12,30,23.3,1.14,0.065,0.62,95,970,1019,0,7,2.9,294,569,0,836,0.316,26.29,17.76,0.96,0.13,787,1.6,352,1
+7754,2023,6,11,13,0,23,1.14,0.074,0.62,98,962,1002,0,7,2.9,205,752,0,912,0.315,26.86,19.95,0.96,0.13,787,1.7,347,1.2
+7755,2023,6,11,13,30,22.5,1.14,0.074,0.62,98,954,972,0,6,2.9,354,376,7,698,0.315,27.69,23.66,0.97,0.13,787,1.7,353,1.3
+7756,2023,6,11,14,0,22,1.14,0.079,0.62,98,942,927,0,6,3.6,414,91,0,494,0.315,29.92,28.29,0.97,0.13,787,1.8,359,1.5
+7757,2023,6,11,14,30,21.4,1.14,0.079,0.62,96,930,872,0,9,3.6,250,8,0,257,0.316,31.07,33.44,0.97,0.13,788,1.8,183,1.7
+7758,2023,6,11,15,0,20.7,1.15,0.08,0.62,93,913,804,0,9,4.4,322,39,0,352,0.316,34.23,38.87,0.97,0.13,788,1.8,8,1.9
+7759,2023,6,11,15,30,20.3,1.15,0.08,0.62,89,896,728,0,9,4.4,327,91,0,392,0.317,35.08,44.47,0.97,0.13,788,1.8,10,2.3
+7760,2023,6,11,16,0,19.8,1.18,0.072,0.62,83,876,644,0,9,4.9,251,26,0,268,0.317,37.57,50.14,0.96,0.13,788,1.8,12,2.7
+7761,2023,6,11,16,30,19.5,1.18,0.072,0.62,77,848,553,0,9,4.9,197,21,0,209,0.317,38.28,55.83,0.96,0.13,788,1.8,15,3
+7762,2023,6,11,17,0,19.1,1.21,0.065,0.62,70,812,457,0,9,5.1,214,89,0,256,0.318,39.88,61.5,0.96,0.13,788,1.8,17,3.3
+7763,2023,6,11,17,30,18.4,1.21,0.065,0.62,63,762,359,0,9,5.1,157,46,0,175,0.318,41.66,67.12,0.96,0.13,788,1.7,20,3.5
+7764,2023,6,11,18,0,17.7,1.21,0.06,0.62,54,694,261,0,6,5.4,80,207,18,142,0.319,44.41,72.64,0.95,0.13,788,1.7,22,3.7
+7765,2023,6,11,18,30,16.5,1.21,0.06,0.62,45,595,168,0,8,5.4,81,374,32,159,0.319,47.9,78.04,0.95,0.13,788,1.6,22,3.5
+7766,2023,6,11,19,0,15.2,1.18,0.052,0.62,32,441,84,6,7,6.3,60,47,86,66,0.32,55.39,83.26,0.95,0.13,788,1.6,23,3.3
+7767,2023,6,11,19,30,14.3,1.18,0.052,0.62,15,167,20,6,6,6.3,13,2,86,13,0.32,58.68,88.18,0.95,0.13,788,1.5,26,2.9
+7768,2023,6,11,20,0,13.3,1.17,0.051,0.62,0,0,0,0,6,6.5,0,0,0,0,0.32,63.34,93.25,0.95,0.13,788,1.5,29,2.6
+7769,2023,6,11,20,30,12.8,1.17,0.051,0.62,0,0,0,0,7,6.5,0,0,0,0,0.319,65.44,97.8,0.95,0.13,788,1.6,37,2
+7770,2023,6,11,21,0,12.3,1.21,0.059,0.62,0,0,0,0,9,6.7,0,0,0,0,0.318,68.67,102,0.95,0.13,788,1.6,44,1.5
+7771,2023,6,11,21,30,12,1.21,0.059,0.62,0,0,0,0,6,6.7,0,0,0,0,0.317,70.03,105.8,0.96,0.13,788,1.6,59,1.2
+7772,2023,6,11,22,0,11.8,1.24,0.076,0.62,0,0,0,0,7,7,0,0,0,0,0.317,72.64,109.12,0.96,0.13,788,1.7,74,0.9
+7773,2023,6,11,22,30,11.8,1.24,0.076,0.62,0,0,0,0,7,7,0,0,0,0,0.316,72.64,111.89,0.97,0.13,788,1.7,92,0.8
+7774,2023,6,11,23,0,11.8,1.24,0.092,0.62,0,0,0,0,7,7.5,0,0,0,0,0.315,75.16,114.04,0.97,0.13,789,1.8,110,0.7
+7775,2023,6,11,23,30,11.7,1.24,0.092,0.62,0,0,0,0,7,7.5,0,0,0,0,0.315,75.56,115.51,0.97,0.13,788,1.7,116,0.6
+7776,2023,6,12,0,0,11.6,1.22,0.089,0.62,0,0,0,0,7,7.9,0,0,0,0,0.314,78.27,116.24,0.97,0.13,788,1.7,122,0.5
+7777,2023,6,12,0,30,11.4,1.22,0.089,0.62,0,0,0,0,7,7.9,0,0,0,0,0.315,79.3,116.21,0.96,0.13,788,1.6,119,0.5
+7778,2023,6,12,1,0,11.2,1.19,0.081,0.62,0,0,0,0,7,8.1,0,0,0,0,0.315,81.15,115.43,0.96,0.13,788,1.6,116,0.5
+7779,2023,6,12,1,30,11,1.19,0.081,0.62,0,0,0,0,6,8.1,0,0,0,0,0.317,82.24,113.91,0.96,0.13,788,1.5,123,0.6
+7780,2023,6,12,2,0,10.8,1.16,0.078,0.62,0,0,0,0,6,8,0,0,0,0,0.318,82.91,111.71,0.95,0.13,788,1.5,129,0.7
+7781,2023,6,12,2,30,10.5,1.16,0.078,0.62,0,0,0,0,6,8,0,0,0,0,0.32,84.58,108.9,0.95,0.13,788,1.5,138,0.9
+7782,2023,6,12,3,0,10.2,1.16,0.078,0.62,0,0,0,0,7,7.7,0,0,0,0,0.323,84.7,105.54,0.95,0.13,788,1.5,147,1
+7783,2023,6,12,3,30,9.9,1.16,0.078,0.62,0,0,0,0,7,7.7,0,0,0,0,0.325,86.42,101.71,0.95,0.13,788,1.5,155,1
+7784,2023,6,12,4,0,9.6,1.16,0.079,0.62,0,0,0,0,6,7.4,0,0,0,0,0.327,86.13,97.48,0.95,0.13,788,1.5,162,1.1
+7785,2023,6,12,4,30,9.8,1.16,0.079,0.62,0,0,0,0,7,7.4,0,0,0,0,0.328,84.99,92.92,0.95,0.13,788,1.5,171,1.3
+7786,2023,6,12,5,0,10,1.17,0.086,0.62,17,139,22,6,7,7.3,12,0,86,12,0.33,83.21,87.84,0.95,0.13,788,1.5,179,1.5
+7787,2023,6,12,5,30,10.8,1.17,0.086,0.62,39,381,86,4,6,7.3,36,2,57,36,0.332,78.89,82.89,0.96,0.13,788,1.5,184,2
+7788,2023,6,12,6,0,11.6,1.18,0.101,0.62,55,532,169,0,6,7,85,15,0,88,0.333,73.44,77.66,0.96,0.13,788,1.5,190,2.4
+7789,2023,6,12,6,30,12.4,1.18,0.101,0.62,69,634,262,0,7,7,136,32,0,146,0.334,69.68,72.25,0.96,0.13,788,1.6,194,2.8
+7790,2023,6,12,7,0,13.3,1.19,0.117,0.62,81,701,358,0,7,5.8,191,104,0,232,0.335,60.42,66.72,0.96,0.13,788,1.6,197,3.2
+7791,2023,6,12,7,30,13.5,1.19,0.117,0.62,93,748,454,0,7,5.8,234,146,0,305,0.335,59.72,61.1,0.97,0.13,789,1.7,197,3.2
+7792,2023,6,12,8,0,13.7,1.2,0.142,0.62,105,780,548,0,6,5,198,44,0,223,0.335,55.71,55.42,0.97,0.13,789,1.7,196,3.2
+7793,2023,6,12,8,30,13.5,1.2,0.142,0.62,117,804,637,0,6,5,121,1,0,122,0.335,56.43,49.73,0.97,0.13,789,1.7,197,3.1
+7794,2023,6,12,9,0,13.3,1.21,0.175,0.62,132,817,719,0,6,5.1,98,1,0,99,0.334,57.46,44.06,0.97,0.13,789,1.7,198,3
+7795,2023,6,12,9,30,13.3,1.21,0.175,0.62,137,840,795,0,7,5.1,310,72,0,366,0.333,57.46,38.47,0.97,0.13,789,1.7,206,3.1
+7796,2023,6,12,10,0,13.4,1.22,0.177,0.62,142,858,861,0,7,4.9,403,238,0,603,0.332,56.32,33.04,0.97,0.13,789,1.6,213,3.2
+7797,2023,6,12,10,30,13.6,1.22,0.177,0.62,134,891,921,0,6,4.9,443,221,0,638,0.331,55.59,27.92,0.97,0.13,789,1.6,232,3
+7798,2023,6,12,11,0,13.7,1.24,0.121,0.62,121,924,969,0,6,4.5,400,342,0,714,0.33,53.63,23.33,0.96,0.13,789,1.5,250,2.9
+7799,2023,6,12,11,30,13.9,1.24,0.121,0.62,117,939,1001,0,0,4.5,184,781,0,919,0.329,52.94,19.69,0.96,0.13,789,1.5,270,3.1
+7800,2023,6,12,12,0,14,1.23,0.098,0.62,111,952,1018,0,8,4.1,330,130,0,454,0.329,51.12,17.62,0.95,0.13,789,1.4,290,3.4
+7801,2023,6,12,12,30,14.3,1.23,0.098,0.62,107,958,1020,0,6,4.1,380,63,0,440,0.329,50.14,17.69,0.95,0.13,789,1.4,297,3.4
+7802,2023,6,12,13,0,14.7,1.19,0.083,0.62,103,962,1008,0,6,3.7,200,1,0,201,0.329,47.79,19.87,0.95,0.13,789,1.4,304,3.5
+7803,2023,6,12,13,30,15,1.19,0.083,0.62,99,961,980,0,6,3.7,347,23,0,368,0.329,46.88,23.58,0.95,0.13,789,1.3,303,3.1
+7804,2023,6,12,14,0,15.4,1.15,0.072,0.62,95,959,940,0,9,3.3,404,46,0,445,0.329,44.18,28.21,0.95,0.13,789,1.3,302,2.7
+7805,2023,6,12,14,30,15.7,1.15,0.072,0.62,91,952,886,0,6,3.2,329,17,0,343,0.329,43.28,33.36,0.95,0.13,788,1.3,297,2.3
+7806,2023,6,12,15,0,16.1,1.12,0.064,0.62,85,943,820,0,6,2.6,374,114,0,463,0.329,40.35,38.8,0.94,0.13,788,1.2,291,2
+7807,2023,6,12,15,30,16.2,1.12,0.064,0.62,81,928,744,0,6,2.6,355,151,0,463,0.329,40.1,44.39,0.94,0.13,788,1.2,287,1.8
+7808,2023,6,12,16,0,16.4,1.1,0.058,0.62,76,909,660,0,6,2,327,160,0,430,0.33,38,50.06,0.94,0.13,788,1.2,283,1.6
+7809,2023,6,12,16,30,16.3,1.1,0.058,0.62,72,880,567,0,6,2,274,91,0,325,0.33,38.24,55.76,0.94,0.13,788,1.2,289,1.3
+7810,2023,6,12,17,0,16.2,1.1,0.056,0.62,66,842,469,0,6,1.7,230,69,0,263,0.33,37.49,61.43,0.94,0.13,788,1.2,296,1.1
+7811,2023,6,12,17,30,15.9,1.1,0.056,0.62,60,792,369,0,6,1.7,189,78,0,219,0.33,38.21,67.04,0.94,0.13,788,1.2,310,0.9
+7812,2023,6,12,18,0,15.5,1.1,0.053,0.62,52,721,268,0,6,2.4,123,27,0,131,0.33,41.39,72.57,0.94,0.13,788,1.2,324,0.7
+7813,2023,6,12,18,30,14.4,1.1,0.053,0.62,44,615,172,0,6,2.4,72,146,0,102,0.329,44.42,77.96,0.94,0.13,788,1.2,338,0.7
+7814,2023,6,12,19,0,13.2,1.11,0.053,0.62,33,450,86,6,7,4.4,49,44,86,54,0.328,55.08,83.18,0.94,0.13,789,1.2,352,0.7
+7815,2023,6,12,19,30,12.3,1.11,0.053,0.62,15,171,21,6,7,4.4,13,1,86,13,0.327,58.41,88.11,0.94,0.13,789,1.3,350,0.9
+7816,2023,6,12,20,0,11.4,1.11,0.055,0.62,0,0,0,0,7,4.1,0,0,0,0,0.326,60.99,93.17,0.94,0.13,789,1.3,348,1.2
+7817,2023,6,12,20,30,10.8,1.11,0.055,0.62,0,0,0,0,7,4.1,0,0,0,0,0.325,63.45,97.72,0.94,0.13,789,1.3,344,1.4
+7818,2023,6,12,21,0,10.2,1.12,0.059,0.62,0,0,0,0,7,4.2,0,0,0,0,0.325,66.48,101.92,0.94,0.13,789,1.3,340,1.6
+7819,2023,6,12,21,30,9.8,1.12,0.059,0.62,0,0,0,0,7,4.2,0,0,0,0,0.324,68.28,105.72,0.94,0.13,789,1.4,337,1.7
+7820,2023,6,12,22,0,9.4,1.14,0.064,0.62,0,0,0,0,7,4.3,0,0,0,0,0.323,70.56,109.04,0.95,0.13,789,1.4,334,1.8
+7821,2023,6,12,22,30,9,1.14,0.064,0.62,0,0,0,0,7,4.3,0,0,0,0,0.323,72.48,111.82,0.95,0.13,789,1.4,332,1.9
+7822,2023,6,12,23,0,8.6,1.16,0.07,0.62,0,0,0,0,7,4.5,0,0,0,0,0.323,75.59,113.97,0.95,0.13,789,1.4,329,2
+7823,2023,6,12,23,30,8.1,1.16,0.07,0.62,0,0,0,0,7,4.5,0,0,0,0,0.323,78.19,115.44,0.95,0.13,789,1.5,327,1.8
+7824,2023,6,13,0,0,7.7,1.19,0.073,0.62,0,0,0,0,8,4.7,0,0,0,0,0.323,81.15,116.18,0.95,0.13,789,1.5,325,1.6
+7825,2023,6,13,0,30,7.3,1.19,0.073,0.62,0,0,0,0,8,4.7,0,0,0,0,0.323,83.39,116.16,0.95,0.13,789,1.5,322,1.2
+7826,2023,6,13,1,0,6.9,1.22,0.073,0.62,0,0,0,0,5,4.8,0,0,0,0,0.323,86.35,115.38,0.95,0.13,789,1.5,319,0.9
+7827,2023,6,13,1,30,6.6,1.22,0.073,0.62,0,0,0,0,5,4.8,0,0,0,0,0.323,88.15,113.87,0.95,0.13,789,1.6,317,0.8
+7828,2023,6,13,2,0,6.3,1.25,0.071,0.62,0,0,0,0,5,4.8,0,0,0,0,0.323,90.32,111.67,0.95,0.13,789,1.6,316,0.7
+7829,2023,6,13,2,30,6.1,1.25,0.071,0.62,0,0,0,0,5,4.8,0,0,0,0,0.322,91.57,108.87,0.95,0.13,789,1.6,320,0.6
+7830,2023,6,13,3,0,5.9,1.27,0.071,0.62,0,0,0,0,5,4.8,0,0,0,0,0.322,92.83,105.51,0.95,0.13,789,1.6,325,0.5
+7831,2023,6,13,3,30,5.8,1.27,0.071,0.62,0,0,0,0,8,4.8,0,0,0,0,0.322,93.47,101.69,0.95,0.13,789,1.6,339,0.4
+7832,2023,6,13,4,0,5.7,1.29,0.074,0.62,0,0,0,0,8,4.8,0,0,0,0,0.322,94.2,97.47,0.95,0.13,789,1.6,354,0.3
+7833,2023,6,13,4,30,6.1,1.29,0.074,0.62,0,0,0,0,7,4.8,0,0,0,0,0.322,91.64,92.91,0.95,0.13,789,1.6,178,0.4
+7834,2023,6,13,5,0,6.4,1.3,0.078,0.62,16,152,22,6,8,5.1,7,0,86,7,0.323,91.48,87.84,0.95,0.13,789,1.6,2,0.6
+7835,2023,6,13,5,30,7.4,1.3,0.078,0.62,36,408,87,4,8,5.1,23,3,57,23,0.323,85.43,82.89,0.96,0.13,789,1.6,169,0.6
+7836,2023,6,13,6,0,8.4,1.32,0.081,0.62,51,567,172,0,8,5.6,104,145,0,135,0.324,82.26,77.66,0.96,0.13,790,1.6,336,0.7
+7837,2023,6,13,6,30,9.7,1.32,0.081,0.62,61,673,266,0,8,5.6,119,410,0,244,0.324,75.37,72.25,0.96,0.13,790,1.6,315,0.9
+7838,2023,6,13,7,0,11,1.35,0.082,0.62,69,748,365,0,8,5.8,171,237,0,265,0.325,70.35,66.72,0.96,0.13,790,1.6,293,1
+7839,2023,6,13,7,30,12.1,1.35,0.082,0.62,77,802,464,0,5,5.8,237,150,0,309,0.325,65.43,61.11,0.96,0.13,790,1.6,279,1.2
+7840,2023,6,13,8,0,13.1,1.36,0.083,0.62,82,842,560,0,5,5.7,264,107,0,325,0.325,60.67,55.43,0.96,0.13,790,1.6,265,1.3
+7841,2023,6,13,8,30,13.9,1.36,0.083,0.62,88,871,651,0,8,5.7,224,16,4,234,0.326,57.6,49.74,0.96,0.13,790,1.6,257,1.5
+7842,2023,6,13,9,0,14.7,1.36,0.089,0.62,94,892,735,0,5,5.4,312,33,0,336,0.326,53.71,44.07,0.96,0.13,790,1.6,249,1.8
+7843,2023,6,13,9,30,15.3,1.36,0.089,0.62,98,910,810,0,5,5.4,416,153,0,536,0.326,51.69,38.47,0.96,0.13,790,1.6,244,2
+7844,2023,6,13,10,0,15.9,1.37,0.095,0.62,103,922,876,0,5,5.1,319,61,0,370,0.326,48.82,33.04,0.96,0.13,790,1.6,240,2.2
+7845,2023,6,13,10,30,16.3,1.37,0.095,0.62,103,937,931,0,8,5.1,385,264,0,618,0.326,47.6,27.91,0.96,0.13,790,1.7,236,2.3
+7846,2023,6,13,11,0,16.7,1.38,0.081,0.62,101,951,974,0,8,4.9,337,501,0,797,0.326,45.61,23.32,0.97,0.13,789,1.7,232,2.4
+7847,2023,6,13,11,30,16.8,1.38,0.081,0.62,103,954,1001,0,3,4.9,257,534,0,760,0.326,45.32,19.66,0.97,0.13,789,1.7,228,2.5
+7848,2023,6,13,12,0,16.9,1.39,0.09,0.62,105,953,1014,0,3,4.8,324,420,0,724,0.325,44.7,17.57,0.97,0.13,789,1.7,224,2.5
+7849,2023,6,13,12,30,16.8,1.39,0.09,0.62,108,950,1013,0,3,4.8,399,218,0,607,0.325,44.98,17.62,0.97,0.13,789,1.7,222,2.7
+7850,2023,6,13,13,0,16.8,1.4,0.097,0.62,109,945,998,0,5,4.7,416,148,0,555,0.324,44.83,19.8,0.97,0.13,789,1.7,219,2.8
+7851,2023,6,13,13,30,16.7,1.4,0.097,0.62,114,930,967,0,8,4.7,381,263,0,622,0.324,45.12,23.51,0.97,0.13,789,1.7,220,2.8
+7852,2023,6,13,14,0,16.7,1.39,0.126,0.62,120,909,922,0,8,4.6,316,45,0,356,0.323,44.58,28.14,0.96,0.13,789,1.7,222,2.8
+7853,2023,6,13,14,30,16.7,1.39,0.126,0.62,117,897,867,0,8,4.6,345,151,0,471,0.323,44.58,33.29,0.96,0.13,789,1.7,223,2.8
+7854,2023,6,13,15,0,16.7,1.39,0.124,0.62,113,882,801,0,7,4.3,331,117,0,422,0.322,43.63,38.72,0.96,0.13,789,1.7,224,2.7
+7855,2023,6,13,15,30,16.6,1.39,0.124,0.62,108,861,724,0,7,4.3,322,216,0,477,0.322,43.91,44.32,0.96,0.13,789,1.7,224,2.7
+7856,2023,6,13,16,0,16.5,1.4,0.123,0.62,103,834,639,0,7,4,292,273,0,468,0.321,43.41,49.99,0.96,0.13,789,1.7,224,2.7
+7857,2023,6,13,16,30,16.4,1.4,0.123,0.62,98,799,548,0,7,4,243,89,0,293,0.321,43.69,55.69,0.96,0.13,789,1.6,225,2.6
+7858,2023,6,13,17,0,16.3,1.41,0.125,0.62,91,752,451,0,6,3.9,192,31,0,207,0.321,43.65,61.36,0.96,0.13,789,1.6,226,2.6
+7859,2023,6,13,17,30,15.9,1.41,0.125,0.62,83,688,352,0,7,3.9,89,18,0,96,0.321,44.77,66.97,0.96,0.13,789,1.6,225,2.2
+7860,2023,6,13,18,0,15.6,1.42,0.131,0.62,73,602,254,0,7,4.5,40,32,4,50,0.321,47.51,72.49,0.96,0.13,789,1.6,224,1.9
+7861,2023,6,13,18,30,14.4,1.42,0.131,0.62,59,488,161,0,8,4.5,64,398,54,147,0.321,51.31,77.89,0.96,0.13,789,1.6,220,1.4
+7862,2023,6,13,19,0,13.2,1.44,0.133,0.62,41,323,80,6,8,6,36,61,93,43,0.321,61.74,83.11,0.96,0.13,789,1.6,216,0.9
+7863,2023,6,13,19,30,12.5,1.44,0.133,0.62,15,103,19,6,8,6,7,0,86,7,0.322,64.63,88.04,0.96,0.13,789,1.6,213,1
+7864,2023,6,13,20,0,11.7,1.47,0.12,0.62,0,0,0,0,8,5.3,0,0,0,0,0.322,65.06,93.1,0.95,0.13,789,1.6,210,1
+7865,2023,6,13,20,30,11.3,1.47,0.12,0.62,0,0,0,0,8,5.3,0,0,0,0,0.323,66.8,97.64,0.95,0.13,789,1.6,209,1.1
+7866,2023,6,13,21,0,10.9,1.49,0.109,0.62,0,0,0,0,8,5,0,0,0,0,0.323,67.14,101.85,0.95,0.13,789,1.6,208,1.1
+7867,2023,6,13,21,30,10.7,1.49,0.109,0.62,0,0,0,0,4,5,0,0,0,0,0.323,68.04,105.65,0.95,0.13,789,1.6,209,1.1
+7868,2023,6,13,22,0,10.4,1.49,0.106,0.62,0,0,0,0,5,4.8,0,0,0,0,0.323,68.42,108.97,0.94,0.13,789,1.6,210,1.1
+7869,2023,6,13,22,30,10.2,1.49,0.106,0.62,0,0,0,0,4,4.8,0,0,0,0,0.324,69.34,111.75,0.94,0.13,789,1.6,211,1.1
+7870,2023,6,13,23,0,10,1.5,0.105,0.62,0,0,0,0,4,4.8,0,0,0,0,0.324,70.15,113.9,0.94,0.13,789,1.6,213,1.1
+7871,2023,6,13,23,30,9.8,1.5,0.105,0.62,0,0,0,0,5,4.8,0,0,0,0,0.324,71.09,115.38,0.94,0.13,789,1.6,214,1.1
+7872,2023,6,14,0,0,9.5,1.5,0.103,0.62,0,0,0,0,4,4.9,0,0,0,0,0.324,72.91,116.12,0.94,0.13,789,1.6,215,1.1
+7873,2023,6,14,0,30,9.3,1.5,0.103,0.62,0,0,0,0,4,4.9,0,0,0,0,0.325,73.8,116.1,0.94,0.13,788,1.6,218,1
+7874,2023,6,14,1,0,9.1,1.49,0.102,0.62,0,0,0,0,5,5,0,0,0,0,0.325,75.55,115.33,0.94,0.13,788,1.7,220,1
+7875,2023,6,14,1,30,9,1.49,0.102,0.62,0,0,0,0,0,5,0,0,0,0,0.325,76.06,113.83,0.94,0.13,788,1.7,222,0.9
+7876,2023,6,14,2,0,8.8,1.47,0.102,0.62,0,0,0,0,0,5.2,0,0,0,0,0.325,77.88,111.64,0.94,0.13,788,1.7,224,0.9
+7877,2023,6,14,2,30,8.7,1.47,0.102,0.62,0,0,0,0,0,5.2,0,0,0,0,0.326,78.41,108.84,0.94,0.13,788,1.7,221,0.8
+7878,2023,6,14,3,0,8.6,1.46,0.101,0.62,0,0,0,0,0,5.2,0,0,0,0,0.327,79.47,105.49,0.94,0.13,788,1.7,219,0.7
+7879,2023,6,14,3,30,8.4,1.46,0.101,0.62,0,0,0,0,0,5.2,0,0,0,0,0.327,80.55,101.68,0.94,0.13,788,1.7,209,0.7
+7880,2023,6,14,4,0,8.3,1.45,0.094,0.62,0,0,0,0,0,5.3,0,0,0,0,0.328,81.37,97.46,0.94,0.13,788,1.7,199,0.7
+7881,2023,6,14,4,30,8.8,1.45,0.094,0.62,0,0,0,0,0,5.3,0,0,0,0,0.329,78.67,92.9,0.94,0.13,788,1.7,190,0.8
+7882,2023,6,14,5,0,9.3,1.43,0.085,0.62,16,147,22,0,0,5.6,16,147,0,22,0.329,77.81,87.84,0.94,0.13,788,1.7,181,0.9
+7883,2023,6,14,5,30,10.7,1.43,0.085,0.62,36,403,86,0,0,5.6,35,332,0,76,0.33,70.87,82.89,0.93,0.13,788,1.7,182,1.4
+7884,2023,6,14,6,0,12,1.41,0.077,0.62,49,571,171,0,4,5.7,65,1,0,65,0.33,65.48,77.66,0.93,0.13,789,1.6,183,1.9
+7885,2023,6,14,6,30,13.7,1.41,0.077,0.62,58,682,266,0,4,5.7,108,254,0,185,0.33,58.6,72.26,0.93,0.13,789,1.6,194,2.2
+7886,2023,6,14,7,0,15.4,1.39,0.07,0.62,64,761,365,0,0,5.7,69,738,0,361,0.33,52.39,66.73,0.93,0.13,788,1.6,205,2.6
+7887,2023,6,14,7,30,16.6,1.39,0.07,0.62,70,816,464,0,0,5.7,153,570,0,428,0.331,48.54,61.12,0.93,0.13,788,1.6,212,2.9
+7888,2023,6,14,8,0,17.8,1.36,0.066,0.62,74,858,561,0,4,5.5,252,367,0,460,0.331,44.43,55.44,0.93,0.13,788,1.6,220,3.3
+7889,2023,6,14,8,30,18.7,1.36,0.066,0.62,79,888,653,0,3,5.5,292,376,7,535,0.331,42,49.75,0.93,0.13,788,1.7,224,3.6
+7890,2023,6,14,9,0,19.6,1.33,0.066,0.62,82,912,737,0,5,5.3,383,203,0,529,0.331,38.97,44.08,0.93,0.13,788,1.7,228,4
+7891,2023,6,14,9,30,20.2,1.33,0.066,0.62,85,930,813,0,5,5.3,394,143,0,506,0.331,37.56,38.48,0.93,0.13,788,1.7,230,4.2
+7892,2023,6,14,10,0,20.9,1.3,0.067,0.62,89,943,879,0,5,5.3,388,166,0,527,0.331,36.11,33.05,0.93,0.13,788,1.7,232,4.4
+7893,2023,6,14,10,30,21.2,1.3,0.067,0.62,88,957,934,0,0,5.3,173,820,0,898,0.33,35.41,27.91,0.94,0.13,787,1.7,233,4.6
+7894,2023,6,14,11,0,21.6,1.18,0.054,0.62,86,969,976,0,3,5.5,327,505,0,791,0.33,35.16,23.3,0.94,0.13,787,1.7,233,4.8
+7895,2023,6,14,11,30,21.7,1.18,0.054,0.62,87,973,1003,0,0,5.5,203,789,0,946,0.33,34.95,19.64,0.94,0.13,787,1.8,234,4.9
+7896,2023,6,14,12,0,21.9,1.12,0.053,0.62,86,976,1017,0,0,5.8,244,685,0,897,0.329,35.13,17.53,0.94,0.13,787,1.8,235,5
+7897,2023,6,14,12,30,21.7,1.12,0.053,0.62,87,974,1016,0,0,5.8,266,642,0,878,0.329,35.56,17.56,0.94,0.13,787,1.8,236,5.1
+7898,2023,6,14,13,0,21.5,1.09,0.056,0.62,88,969,1000,0,3,6.2,397,466,0,836,0.329,36.92,19.73,0.95,0.13,786,1.9,238,5.1
+7899,2023,6,14,13,30,21.1,1.09,0.056,0.62,87,963,971,0,8,6.2,257,653,0,856,0.329,37.84,23.44,0.95,0.13,786,1.9,239,5
+7900,2023,6,14,14,0,20.6,1.06,0.058,0.62,86,955,929,0,7,6.5,346,368,0,671,0.329,39.98,28.07,0.95,0.13,786,1.9,241,4.9
+7901,2023,6,14,14,30,19.9,1.06,0.058,0.62,87,941,874,0,7,6.5,385,120,0,485,0.329,41.74,33.22,0.95,0.13,786,1.9,244,4.7
+7902,2023,6,14,15,0,19.2,1.09,0.065,0.62,86,922,806,0,7,6.8,342,87,0,410,0.329,44.48,38.65,0.96,0.13,786,1.9,247,4.5
+7903,2023,6,14,15,30,18.6,1.09,0.065,0.62,85,901,730,0,9,6.8,188,15,0,199,0.328,46.18,44.25,0.96,0.13,786,1.9,252,4.1
+7904,2023,6,14,16,0,18.1,1.12,0.072,0.62,82,873,644,0,9,7.2,53,0,0,53,0.328,48.88,49.92,0.96,0.13,786,1.9,258,3.8
+7905,2023,6,14,16,30,17.6,1.12,0.072,0.62,79,840,553,0,9,7.2,48,0,0,48,0.328,50.44,55.62,0.96,0.13,786,1.9,265,3.3
+7906,2023,6,14,17,0,17.1,1.16,0.075,0.62,73,798,456,0,9,7.6,18,0,0,18,0.327,53.48,61.29,0.96,0.13,786,1.9,273,2.9
+7907,2023,6,14,17,30,16.4,1.16,0.075,0.62,67,742,358,0,6,7.6,24,0,0,24,0.327,55.9,66.9,0.96,0.13,786,1.9,286,2.2
+7908,2023,6,14,18,0,15.8,1.18,0.077,0.62,59,666,260,0,6,8.7,7,0,0,7,0.327,62.81,72.43,0.96,0.13,786,1.9,299,1.5
+7909,2023,6,14,18,30,14.8,1.18,0.077,0.62,50,556,167,0,7,8.7,36,182,21,74,0.327,67.04,77.82,0.96,0.13,787,1.9,319,1.1
+7910,2023,6,14,19,0,13.9,1.2,0.079,0.62,36,390,83,5,7,9.7,44,136,93,60,0.327,75.62,83.04,0.95,0.13,787,1.8,339,0.7
+7911,2023,6,14,19,30,13.4,1.2,0.079,0.62,16,138,21,6,7,9.7,14,1,86,14,0.327,78.11,87.97,0.95,0.13,787,1.8,172,0.7
+7912,2023,6,14,20,0,13,1.21,0.08,0.62,0,0,0,0,7,9.1,0,0,0,0,0.327,77.39,93.03,0.95,0.13,787,1.8,5,0.7
+7913,2023,6,14,20,30,12.7,1.21,0.08,0.62,0,0,0,0,7,9.1,0,0,0,0,0.327,78.92,97.58,0.95,0.13,787,1.8,12,0.6
+7914,2023,6,14,21,0,12.4,1.22,0.08,0.62,0,0,0,0,7,8.9,0,0,0,0,0.327,79.12,101.78,0.95,0.13,787,1.8,19,0.6
+7915,2023,6,14,21,30,12,1.22,0.08,0.62,0,0,0,0,7,8.9,0,0,0,0,0.327,81.22,105.58,0.95,0.13,787,1.8,25,0.6
+7916,2023,6,14,22,0,11.7,1.22,0.077,0.62,0,0,0,0,8,8.6,0,0,0,0,0.327,81.52,108.91,0.95,0.13,787,1.8,31,0.6
+7917,2023,6,14,22,30,11.4,1.22,0.077,0.62,0,0,0,0,8,8.6,0,0,0,0,0.327,83.15,111.69,0.95,0.13,787,1.8,39,0.5
+7918,2023,6,14,23,0,11.1,1.22,0.072,0.62,0,0,0,0,8,8.4,0,0,0,0,0.327,83.65,113.85,0.94,0.13,787,1.8,47,0.5
+7919,2023,6,14,23,30,10.8,1.22,0.072,0.62,0,0,0,0,8,8.4,0,0,0,0,0.327,85.33,115.32,0.94,0.13,787,1.8,58,0.5
+7920,2023,6,15,0,0,10.4,1.22,0.072,0.62,0,0,0,0,4,8.3,0,0,0,0,0.327,87,116.07,0.94,0.13,787,1.8,70,0.5
+7921,2023,6,15,0,30,10.2,1.22,0.072,0.62,0,0,0,0,4,8.3,0,0,0,0,0.327,88.17,116.06,0.95,0.13,787,1.8,83,0.5
+7922,2023,6,15,1,0,9.9,1.23,0.079,0.62,0,0,0,0,5,8.4,0,0,0,0,0.326,90.32,115.29,0.95,0.13,787,1.9,96,0.5
+7923,2023,6,15,1,30,9.8,1.23,0.079,0.62,0,0,0,0,4,8.4,0,0,0,0,0.326,90.92,113.8,0.95,0.13,787,1.8,115,0.6
+7924,2023,6,15,2,0,9.7,1.25,0.084,0.62,0,0,0,0,4,8.5,0,0,0,0,0.325,92.32,111.62,0.95,0.13,787,1.8,134,0.7
+7925,2023,6,15,2,30,9.5,1.25,0.084,0.62,0,0,0,0,4,8.5,0,0,0,0,0.325,93.45,108.82,0.95,0.13,786,1.8,147,0.8
+7926,2023,6,15,3,0,9.3,1.26,0.086,0.62,0,0,0,0,4,8.6,0,0,0,0,0.324,95.21,105.48,0.95,0.13,786,1.8,160,1
+7927,2023,6,15,3,30,9.3,1.26,0.086,0.62,0,0,0,0,4,8.6,0,0,0,0,0.323,95.34,101.67,0.95,0.13,787,1.8,169,1
+7928,2023,6,15,4,0,9.2,1.27,0.089,0.62,0,0,0,0,4,8.7,0,0,0,0,0.323,96.49,97.45,0.95,0.13,787,1.8,178,1.1
+7929,2023,6,15,4,30,9.7,1.27,0.089,0.62,0,0,0,0,4,8.7,0,0,0,0,0.322,93.31,92.9,0.95,0.13,787,1.8,183,1.4
+7930,2023,6,15,5,0,10.2,1.28,0.088,0.62,17,137,22,6,4,9.2,4,0,86,4,0.322,93.25,87.84,0.95,0.13,787,1.8,188,1.6
+7931,2023,6,15,5,30,10.9,1.28,0.088,0.62,37,386,85,4,4,9.2,16,0,57,16,0.322,89.01,82.9,0.95,0.13,787,1.8,190,2.1
+7932,2023,6,15,6,0,11.6,1.28,0.087,0.62,52,550,169,0,4,9.4,36,0,0,36,0.322,86.37,77.67,0.95,0.13,787,1.8,191,2.7
+7933,2023,6,15,6,30,12.6,1.28,0.087,0.62,62,660,263,0,4,9.4,131,55,0,148,0.322,80.88,72.27,0.95,0.13,787,1.8,195,3.1
+7934,2023,6,15,7,0,13.5,1.28,0.085,0.62,70,737,361,0,3,9.3,192,204,0,273,0.322,75.59,66.75,0.95,0.13,787,1.8,200,3.4
+7935,2023,6,15,7,30,14.4,1.28,0.085,0.62,79,788,459,0,3,9.3,240,170,7,322,0.322,71.32,61.13,0.95,0.13,787,1.8,207,3.6
+7936,2023,6,15,8,0,15.3,1.26,0.094,0.62,87,823,554,0,5,8.3,281,95,0,335,0.322,63.22,55.46,0.96,0.13,787,1.8,215,3.7
+7937,2023,6,15,8,30,15.7,1.26,0.094,0.62,94,851,644,0,5,8.4,295,194,0,420,0.321,61.63,49.76,0.96,0.13,787,1.8,218,3.6
+7938,2023,6,15,9,0,16.1,1.25,0.106,0.62,101,871,727,0,8,7.4,185,29,0,206,0.321,56.41,44.09,0.96,0.13,787,1.9,220,3.6
+7939,2023,6,15,9,30,16.3,1.25,0.106,0.62,105,890,802,0,5,7.4,98,0,0,98,0.32,55.7,38.5,0.96,0.13,787,1.9,222,3.5
+7940,2023,6,15,10,0,16.5,1.25,0.11,0.62,110,904,868,0,5,7.3,108,0,0,108,0.32,54.64,33.06,0.96,0.13,787,1.9,223,3.5
+7941,2023,6,15,10,30,16.5,1.25,0.11,0.62,112,917,922,0,5,7.3,197,20,0,215,0.319,54.64,27.92,0.97,0.13,787,1.9,225,3.5
+7942,2023,6,15,11,0,16.5,1.22,0.106,0.62,113,926,963,0,5,7.6,335,90,0,418,0.319,55.47,23.3,0.97,0.13,787,1.9,228,3.5
+7943,2023,6,15,11,30,16.3,1.22,0.106,0.62,117,926,989,0,8,7.6,325,94,0,414,0.318,56.18,19.62,0.97,0.13,787,2,231,3.5
+7944,2023,6,15,12,0,16.1,1.23,0.12,0.62,122,923,1002,0,3,7.8,413,293,0,692,0.317,57.86,17.49,0.97,0.13,787,2,234,3.4
+7945,2023,6,15,12,30,15.9,1.23,0.12,0.62,124,920,1001,0,8,7.8,331,117,0,443,0.316,58.67,17.51,0.97,0.13,788,2,239,3.3
+7946,2023,6,15,13,0,15.7,1.22,0.131,0.62,126,912,985,0,7,8.1,287,62,0,345,0.316,60.47,19.67,0.97,0.13,788,2,243,3.2
+7947,2023,6,15,13,30,15.2,1.22,0.131,0.62,126,903,955,0,6,8.1,332,10,0,341,0.316,62.44,23.37,0.97,0.13,788,2,255,3.1
+7948,2023,6,15,14,0,14.7,1.19,0.136,0.62,125,891,912,0,6,8.4,272,4,0,276,0.316,65.83,28,0.97,0.13,788,2,266,3.1
+7949,2023,6,15,14,30,14.1,1.19,0.136,0.62,121,880,858,0,6,8.4,206,3,0,209,0.316,68.43,33.15,0.97,0.13,788,2,282,3.3
+7950,2023,6,15,15,0,13.4,1.17,0.131,0.62,117,865,793,0,6,8.4,154,1,0,155,0.317,71.94,38.59,0.97,0.13,788,2,298,3.4
+7951,2023,6,15,15,30,12.8,1.17,0.131,0.62,110,850,719,0,9,8.5,76,0,0,76,0.317,74.9,44.19,0.97,0.13,789,2,310,3.6
+7952,2023,6,15,16,0,12.2,1.15,0.114,0.62,101,831,637,0,6,7.9,77,0,0,77,0.317,75.16,49.86,0.97,0.13,789,2,323,3.9
+7953,2023,6,15,16,30,11.7,1.15,0.114,0.62,93,805,548,0,6,7.9,64,0,0,64,0.317,77.67,55.55,0.96,0.13,789,1.9,333,3.8
+7954,2023,6,15,17,0,11.3,1.16,0.1,0.62,82,772,454,0,6,6.8,120,4,0,122,0.318,73.92,61.22,0.96,0.13,789,1.8,343,3.6
+7955,2023,6,15,17,30,10.9,1.16,0.1,0.62,74,723,358,0,7,6.8,130,231,7,221,0.319,75.99,66.84,0.96,0.13,790,1.7,175,3.2
+7956,2023,6,15,18,0,10.5,1.2,0.089,0.62,63,656,262,0,7,5.9,121,177,0,175,0.32,73.14,72.36,0.96,0.13,790,1.6,7,2.7
+7957,2023,6,15,18,30,9.9,1.2,0.089,0.62,51,556,169,0,7,5.9,69,221,7,116,0.321,76.13,77.75,0.95,0.13,790,1.5,18,1.9
+7958,2023,6,15,19,0,9.3,1.25,0.081,0.62,37,403,86,5,7,6.4,34,75,71,43,0.323,82.26,82.97,0.95,0.13,790,1.4,30,1.1
+7959,2023,6,15,19,30,8.8,1.25,0.081,0.62,17,150,22,6,7,6.4,9,0,86,9,0.326,85.19,87.91,0.95,0.13,791,1.3,48,0.9
+7960,2023,6,15,20,0,8.4,1.3,0.067,0.62,0,0,0,0,7,5.8,0,0,0,0,0.328,83.58,92.97,0.94,0.13,791,1.2,67,0.7
+7961,2023,6,15,20,30,8.1,1.3,0.067,0.62,0,0,0,0,5,5.8,0,0,0,0,0.33,85.3,97.51,0.94,0.13,791,1.2,87,0.7
+7962,2023,6,15,21,0,7.8,1.31,0.058,0.62,0,0,0,0,0,5.2,0,0,0,0,0.333,83.5,101.72,0.93,0.13,791,1.1,108,0.6
+7963,2023,6,15,21,30,7.6,1.31,0.058,0.62,0,0,0,0,0,5.2,0,0,0,0,0.334,84.64,105.52,0.93,0.13,791,1.1,121,0.7
+7964,2023,6,15,22,0,7.3,1.29,0.056,0.62,0,0,0,0,0,5.1,0,0,0,0,0.336,85.65,108.85,0.93,0.13,791,1.1,133,0.7
+7965,2023,6,15,22,30,7.1,1.29,0.056,0.62,0,0,0,0,0,5.1,0,0,0,0,0.337,86.83,111.63,0.92,0.13,791,1.1,144,0.7
+7966,2023,6,15,23,0,6.8,1.29,0.057,0.62,0,0,0,0,5,5.1,0,0,0,0,0.338,88.88,113.79,0.92,0.13,791,1,155,0.7
+7967,2023,6,15,23,30,6.5,1.29,0.057,0.62,0,0,0,0,7,5.1,0,0,0,0,0.338,90.84,115.28,0.92,0.13,792,1,173,0.7
+7968,2023,6,16,0,0,6.1,1.33,0.061,0.62,0,0,0,0,7,5.2,0,0,0,0,0.339,94.09,116.03,0.91,0.13,792,1,191,0.8
+7969,2023,6,16,0,30,5.9,1.33,0.061,0.62,0,0,0,0,7,5.2,0,0,0,0,0.338,95.4,116.02,0.92,0.13,792,1,195,0.7
+7970,2023,6,16,1,0,5.7,1.35,0.066,0.62,0,0,0,0,7,5.3,0,0,0,0,0.337,97.36,115.26,0.92,0.13,792,1,200,0.7
+7971,2023,6,16,1,30,5.5,1.35,0.066,0.62,0,0,0,0,7,5.3,0,0,0,0,0.336,98.72,113.77,0.92,0.13,792,1,209,0.7
+7972,2023,6,16,2,0,5.4,1.33,0.07,0.62,0,0,0,0,0,5.4,0,0,0,0,0.335,100,111.6,0.92,0.13,792,1,218,0.6
+7973,2023,6,16,2,30,5.1,1.33,0.07,0.62,0,0,0,0,0,5.1,0,0,0,0,0.335,100,108.81,0.93,0.13,792,1,234,0.6
+7974,2023,6,16,3,0,4.9,1.31,0.072,0.62,0,0,0,0,0,4.9,0,0,0,0,0.335,100,105.47,0.93,0.13,792,0.9,250,0.5
+7975,2023,6,16,3,30,4.7,1.31,0.072,0.62,0,0,0,0,0,4.7,0,0,0,0,0.335,100,101.67,0.93,0.13,792,0.9,271,0.5
+7976,2023,6,16,4,0,4.4,1.28,0.071,0.62,0,0,0,0,0,4.4,0,0,0,0,0.336,100,97.46,0.93,0.13,793,0.9,292,0.5
+7977,2023,6,16,4,30,4.8,1.28,0.071,0.62,0,0,0,0,0,4.8,0,0,0,0,0.336,100,92.91,0.93,0.13,793,0.9,313,0.6
+7978,2023,6,16,5,0,5.3,1.28,0.069,0.62,17,172,23,2,0,5.3,15,121,25,20,0.336,100,87.84,0.93,0.13,793,0.9,334,0.7
+7979,2023,6,16,5,30,6.4,1.28,0.069,0.62,35,447,90,1,0,5.5,40,316,18,79,0.336,94.13,82.91,0.93,0.13,793,0.9,346,0.9
+7980,2023,6,16,6,0,7.6,1.29,0.065,0.62,47,613,178,0,0,5.3,60,517,0,170,0.337,85.47,77.69,0.93,0.13,794,0.9,358,1.2
+7981,2023,6,16,6,30,9.3,1.29,0.065,0.62,56,719,275,0,0,5.3,111,384,0,228,0.336,76.19,72.29,0.93,0.13,794,0.9,180,1.3
+7982,2023,6,16,7,0,10.9,1.3,0.063,0.62,63,793,376,0,5,3.7,217,107,0,259,0.336,61.18,66.77,0.93,0.13,794,0.9,2,1.4
+7983,2023,6,16,7,30,12.2,1.3,0.063,0.62,69,845,477,0,5,3.7,256,157,0,332,0.335,56.15,61.15,0.93,0.13,794,0.9,7,1.4
+7984,2023,6,16,8,0,13.4,1.31,0.064,0.62,74,884,575,0,8,2.2,227,369,0,436,0.334,46.67,55.48,0.93,0.13,794,0.9,12,1.4
+7985,2023,6,16,8,30,14.2,1.31,0.064,0.62,79,912,668,0,7,2.2,266,368,14,504,0.333,44.31,49.78,0.93,0.13,794,0.9,24,1.5
+7986,2023,6,16,9,0,15,1.32,0.068,0.62,84,933,754,0,7,1.5,323,287,0,529,0.332,40.08,44.11,0.93,0.13,794,1,35,1.6
+7987,2023,6,16,9,30,15.7,1.32,0.068,0.62,88,949,831,0,7,1.5,341,327,0,597,0.33,38.33,38.51,0.93,0.13,794,1,46,1.7
+7988,2023,6,16,10,0,16.4,1.33,0.072,0.62,93,961,898,0,3,1.2,438,305,0,694,0.329,35.91,33.07,0.94,0.13,794,1,56,1.8
+7989,2023,6,16,10,30,17,1.33,0.072,0.62,92,975,953,0,7,1.2,334,538,0,809,0.328,34.57,27.93,0.94,0.13,794,1,64,1.9
+7990,2023,6,16,11,0,17.5,1.35,0.063,0.62,91,985,996,0,7,1,259,679,0,883,0.326,32.88,23.3,0.94,0.13,793,1,71,1.9
+7991,2023,6,16,11,30,17.9,1.35,0.063,0.62,91,990,1024,0,0,1,116,945,0,1006,0.325,32.06,19.61,0.94,0.13,793,1,76,1.9
+7992,2023,6,16,12,0,18.4,1.38,0.063,0.62,92,992,1038,0,0,0.7,194,832,0,988,0.324,30.52,17.46,0.93,0.13,793,1,81,1.8
+7993,2023,6,16,12,30,18.6,1.38,0.063,0.62,91,992,1037,0,0,0.7,146,886,0,991,0.323,30.14,17.47,0.93,0.13,793,1,88,1.6
+7994,2023,6,16,13,0,18.8,1.41,0.064,0.62,91,989,1023,0,0,0.5,175,838,0,964,0.322,29.34,19.62,0.93,0.13,793,1,94,1.5
+7995,2023,6,16,13,30,18.9,1.41,0.064,0.62,92,981,993,0,0,0.5,287,588,0,827,0.322,29.12,23.31,0.93,0.13,792,1.1,101,1.3
+7996,2023,6,16,14,0,19,1.42,0.072,0.62,93,969,949,0,3,0.2,360,448,0,756,0.322,28.27,27.94,0.93,0.13,792,1.1,107,1.1
+7997,2023,6,16,14,30,19,1.42,0.072,0.62,91,958,894,0,8,0.2,178,806,0,853,0.322,28.27,33.09,0.94,0.13,792,1.1,114,0.8
+7998,2023,6,16,15,0,19,1.42,0.074,0.62,89,943,827,0,8,-0.3,184,760,0,779,0.322,27.33,38.53,0.94,0.13,792,1.1,120,0.6
+7999,2023,6,16,15,30,18.8,1.42,0.074,0.62,86,925,750,0,8,-0.3,195,701,7,698,0.323,27.67,44.13,0.94,0.13,792,1,151,0.4
+8000,2023,6,16,16,0,18.7,1.42,0.074,0.62,82,901,664,0,8,-0.7,244,480,0,554,0.323,27.03,49.8,0.94,0.13,792,1,181,0.2
+8001,2023,6,16,16,30,18.5,1.42,0.074,0.62,78,871,571,0,8,-0.7,200,475,7,469,0.324,27.37,55.49,0.94,0.13,792,1,219,0.3
+8002,2023,6,16,17,0,18.2,1.43,0.072,0.62,72,832,473,0,8,-0.9,150,568,14,424,0.324,27.42,61.16,0.94,0.13,792,1,257,0.5
+8003,2023,6,16,17,30,17.8,1.43,0.072,0.62,64,780,372,0,8,-0.9,151,454,11,330,0.325,28.11,66.78,0.93,0.13,792,1.1,257,0.5
+8004,2023,6,16,18,0,17.3,1.44,0.07,0.62,57,708,272,0,5,0.1,128,353,25,235,0.326,31.12,72.3,0.93,0.13,792,1.1,258,0.5
+8005,2023,6,16,18,30,16.3,1.44,0.07,0.62,48,601,176,0,8,0,61,35,0,68,0.328,33.15,77.7,0.93,0.13,792,1.1,186,0.3
+8006,2023,6,16,19,0,15.3,1.43,0.072,0.62,35,437,89,5,8,2.7,45,70,71,54,0.329,42.76,82.92,0.94,0.13,792,1.1,115,0.1
+8007,2023,6,16,19,30,14.3,1.43,0.072,0.62,17,167,23,6,7,2.7,16,3,86,16,0.33,45.59,87.86,0.94,0.13,792,1.1,101,0.3
+8008,2023,6,16,20,0,13.4,1.41,0.081,0.62,0,0,0,0,5,2.9,0,0,0,0,0.331,49.06,92.91,0.94,0.13,792,1.1,87,0.6
+8009,2023,6,16,20,30,12.7,1.41,0.081,0.62,0,0,0,0,3,2.9,0,0,0,0,0.332,51.34,97.45,0.94,0.13,792,1.1,89,0.7
+8010,2023,6,16,21,0,12,1.4,0.086,0.62,0,0,0,0,0,3.6,0,0,0,0,0.333,56.27,101.66,0.95,0.13,792,1.2,91,0.8
+8011,2023,6,16,21,30,11.6,1.4,0.086,0.62,0,0,0,0,0,3.6,0,0,0,0,0.334,57.77,105.46,0.95,0.13,792,1.2,89,0.8
+8012,2023,6,16,22,0,11.2,1.41,0.086,0.62,0,0,0,0,0,3.4,0,0,0,0,0.335,58.69,108.79,0.95,0.13,792,1.2,88,0.9
+8013,2023,6,16,22,30,10.9,1.41,0.086,0.62,0,0,0,0,7,3.4,0,0,0,0,0.336,59.87,111.58,0.95,0.13,792,1.2,86,0.9
+8014,2023,6,16,23,0,10.5,1.41,0.086,0.62,0,0,0,0,7,3.3,0,0,0,0,0.337,61.21,113.75,0.95,0.13,792,1.2,85,0.8
+8015,2023,6,16,23,30,10.3,1.41,0.086,0.62,0,0,0,0,7,3.3,0,0,0,0,0.339,62.03,115.24,0.95,0.13,792,1.2,86,0.8
+8016,2023,6,17,0,0,10,1.41,0.089,0.62,0,0,0,0,7,3.4,0,0,0,0,0.341,63.56,115.99,0.95,0.13,792,1.3,87,0.7
+8017,2023,6,17,0,30,9.8,1.41,0.089,0.62,0,0,0,0,7,3.4,0,0,0,0,0.344,64.33,115.99,0.95,0.13,791,1.3,96,0.6
+8018,2023,6,17,1,0,9.6,1.41,0.094,0.62,0,0,0,0,7,3.5,0,0,0,0,0.347,65.69,115.24,0.95,0.13,791,1.3,104,0.6
+8019,2023,6,17,1,30,9.4,1.41,0.094,0.62,0,0,0,0,7,3.5,0,0,0,0,0.351,66.58,113.75,0.95,0.13,791,1.3,117,0.6
+8020,2023,6,17,2,0,9.1,1.42,0.095,0.62,0,0,0,0,7,3.4,0,0,0,0,0.354,67.56,111.58,0.95,0.13,791,1.3,129,0.6
+8021,2023,6,17,2,30,8.8,1.42,0.095,0.62,0,0,0,0,7,3.4,0,0,0,0,0.357,68.94,108.8,0.95,0.13,791,1.3,139,0.7
+8022,2023,6,17,3,0,8.5,1.43,0.097,0.62,0,0,0,0,7,3.5,0,0,0,0,0.361,70.6,105.47,0.95,0.13,791,1.3,150,0.7
+8023,2023,6,17,3,30,8.4,1.43,0.097,0.62,0,0,0,0,8,3.5,0,0,0,0,0.363,71.08,101.67,0.95,0.13,791,1.3,162,0.7
+8024,2023,6,17,4,0,8.2,1.44,0.096,0.62,0,0,0,0,0,3.7,0,0,0,0,0.366,73.22,97.46,0.95,0.13,791,1.3,174,0.7
+8025,2023,6,17,4,30,8.6,1.44,0.096,0.62,0,0,0,0,0,3.7,0,0,0,0,0.366,71.27,92.92,0.95,0.13,791,1.4,186,0.7
+8026,2023,6,17,5,0,9.1,1.46,0.095,0.62,17,141,22,0,0,4.6,17,141,0,22,0.367,73.52,87.86,0.95,0.13,792,1.4,198,0.6
+8027,2023,6,17,5,30,10.1,1.46,0.095,0.62,37,391,85,0,0,4.6,37,391,0,85,0.365,68.76,82.92,0.94,0.13,792,1.4,204,0.7
+8028,2023,6,17,6,0,11.1,1.48,0.092,0.62,52,556,170,0,0,4.2,52,556,0,170,0.363,62.38,77.7,0.94,0.13,792,1.4,209,0.8
+8029,2023,6,17,6,30,12.4,1.48,0.092,0.62,62,668,265,0,0,4.2,62,668,0,265,0.359,57.27,72.31,0.94,0.13,792,1.3,216,1
+8030,2023,6,17,7,0,13.8,1.5,0.086,0.62,70,748,365,0,0,3.4,70,748,0,365,0.355,49.64,66.79,0.94,0.13,791,1.3,222,1.2
+8031,2023,6,17,7,30,14.8,1.5,0.086,0.62,76,806,465,0,0,3.5,76,806,0,465,0.35,46.54,61.17,0.94,0.13,791,1.3,231,1.4
+8032,2023,6,17,8,0,15.8,1.51,0.082,0.62,81,851,563,0,0,2.9,81,851,0,563,0.345,42.08,55.5,0.93,0.13,791,1.3,240,1.6
+8033,2023,6,17,8,30,16.6,1.51,0.082,0.62,85,885,656,0,0,2.9,85,885,0,656,0.34,39.99,49.81,0.93,0.13,791,1.3,249,1.7
+8034,2023,6,17,9,0,17.4,1.52,0.078,0.62,88,913,743,0,0,2.5,107,815,0,692,0.336,36.94,44.13,0.93,0.13,791,1.3,259,1.9
+8035,2023,6,17,9,30,18.1,1.52,0.078,0.62,90,935,821,0,0,2.5,232,586,0,690,0.333,35.35,38.53,0.93,0.13,791,1.2,264,2.1
+8036,2023,6,17,10,0,18.8,1.52,0.07,0.62,91,954,890,0,3,1.8,317,304,0,572,0.33,32.21,33.09,0.93,0.13,791,1.2,270,2.3
+8037,2023,6,17,10,30,19.4,1.52,0.07,0.62,92,967,946,0,8,1.8,214,88,0,292,0.328,31.03,27.94,0.93,0.13,791,1.2,270,2.5
+8038,2023,6,17,11,0,20,1.48,0.069,0.62,94,975,989,0,8,1,217,64,4,276,0.326,28.17,23.31,0.93,0.13,791,1.2,271,2.6
+8039,2023,6,17,11,30,20.6,1.48,0.069,0.62,93,982,1018,0,5,1,302,67,0,365,0.325,27.12,19.6,0.93,0.13,790,1.1,269,2.7
+8040,2023,6,17,12,0,21.2,1.49,0.065,0.62,92,987,1034,0,3,0.1,431,300,0,717,0.323,24.49,17.44,0.93,0.13,790,1.1,267,2.8
+8041,2023,6,17,12,30,21.7,1.49,0.065,0.62,91,988,1034,0,5,0.1,395,194,0,580,0.323,23.75,17.43,0.93,0.13,790,1.1,263,2.9
+8042,2023,6,17,13,0,22.1,1.54,0.062,0.62,90,987,1020,0,5,-0.8,294,345,0,619,0.322,21.74,19.57,0.93,0.13,790,1.1,259,3
+8043,2023,6,17,13,30,22.5,1.54,0.062,0.62,90,981,991,0,0,-0.8,119,918,0,962,0.321,21.19,23.26,0.93,0.13,789,1.1,256,3.1
+8044,2023,6,17,14,0,22.8,1.54,0.066,0.62,89,972,948,0,3,-1.6,359,424,0,734,0.321,19.66,27.88,0.93,0.13,789,1.1,253,3.2
+8045,2023,6,17,14,30,22.8,1.54,0.066,0.62,88,960,893,0,8,-1.6,289,504,0,712,0.321,19.66,33.03,0.93,0.13,789,1.2,250,3.3
+8046,2023,6,17,15,0,22.8,1.57,0.069,0.62,87,943,825,2,8,-2,311,336,29,574,0.321,19.03,38.47,0.93,0.13,789,1.2,247,3.4
+8047,2023,6,17,15,30,22.5,1.57,0.069,0.62,83,924,747,0,3,-2,339,216,0,494,0.321,19.35,44.07,0.93,0.13,788,1.2,246,3.5
+8048,2023,6,17,16,0,22.1,1.62,0.068,0.62,79,900,661,0,3,-2,306,345,0,529,0.321,19.92,49.74,0.93,0.13,788,1.3,245,3.5
+8049,2023,6,17,16,30,21.7,1.62,0.068,0.62,75,869,568,0,3,-2,222,508,7,510,0.321,20.41,55.44,0.93,0.13,788,1.3,245,3.5
+8050,2023,6,17,17,0,21.3,1.66,0.069,0.62,69,829,470,0,0,-1.4,103,741,0,461,0.322,21.84,61.11,0.93,0.13,788,1.3,245,3.4
+8051,2023,6,17,17,30,20.6,1.66,0.069,0.62,63,776,370,0,7,-1.4,161,276,0,270,0.322,22.8,66.72,0.93,0.13,788,1.3,246,3
+8052,2023,6,17,18,0,19.9,1.68,0.068,0.62,56,703,270,0,8,0.6,108,169,0,160,0.322,27.55,72.24,0.93,0.13,789,1.4,246,2.5
+8053,2023,6,17,18,30,18.1,1.68,0.068,0.62,46,601,175,0,3,0.6,90,229,14,139,0.321,30.81,77.64,0.93,0.13,789,1.4,246,1.8
+8054,2023,6,17,19,0,16.3,1.71,0.067,0.62,34,446,89,0,0,5.2,37,405,0,87,0.32,47.78,82.86,0.93,0.13,789,1.4,246,1.1
+8055,2023,6,17,19,30,15.5,1.71,0.067,0.62,16,182,23,0,0,5.2,16,182,4,23,0.319,50.27,87.8,0.93,0.13,789,1.4,249,1.1
+8056,2023,6,17,20,0,14.7,1.7,0.062,0.62,0,0,0,0,0,4.9,0,0,0,0,0.318,51.74,92.85,0.93,0.13,789,1.5,251,1.1
+8057,2023,6,17,20,30,14.3,1.7,0.062,0.62,0,0,0,0,0,4.9,0,0,0,0,0.317,53.09,97.4,0.92,0.13,789,1.5,255,1.2
+8058,2023,6,17,21,0,13.8,1.67,0.055,0.62,0,0,0,0,0,4.6,0,0,0,0,0.317,53.96,101.61,0.92,0.13,790,1.5,259,1.2
+8059,2023,6,17,21,30,13.4,1.67,0.055,0.62,0,0,0,0,3,4.6,0,0,0,0,0.317,55.37,105.41,0.92,0.13,790,1.5,262,1.2
+8060,2023,6,17,22,0,13,1.61,0.049,0.62,0,0,0,0,3,4.4,0,0,0,0,0.318,56.03,108.75,0.91,0.13,789,1.5,265,1.2
+8061,2023,6,17,22,30,12.7,1.61,0.049,0.62,0,0,0,0,0,4.4,0,0,0,0,0.318,57.14,111.54,0.91,0.13,789,1.5,265,1.2
+8062,2023,6,17,23,0,12.4,1.55,0.043,0.62,0,0,0,0,0,4,0,0,0,0,0.318,56.65,113.71,0.91,0.13,789,1.5,264,1.2
+8063,2023,6,17,23,30,12.1,1.55,0.043,0.62,0,0,0,0,0,4,0,0,0,0,0.317,57.78,115.2,0.9,0.13,789,1.5,258,1.2
+8064,2023,6,18,0,0,11.9,1.51,0.04,0.62,0,0,0,0,0,3.7,0,0,0,0,0.316,57.11,115.96,0.9,0.13,789,1.5,251,1.2
+8065,2023,6,18,0,30,11.5,1.51,0.04,0.62,0,0,0,0,0,3.7,0,0,0,0,0.315,58.64,115.97,0.91,0.13,789,1.5,240,1.2
+8066,2023,6,18,1,0,11.2,1.46,0.041,0.62,0,0,0,0,0,3.4,0,0,0,0,0.314,58.67,115.22,0.91,0.13,788,1.5,229,1.2
+8067,2023,6,18,1,30,10.7,1.46,0.041,0.62,0,0,0,0,0,3.4,0,0,0,0,0.313,60.64,113.74,0.91,0.13,788,1.5,219,1.2
+8068,2023,6,18,2,0,10.3,1.41,0.049,0.62,0,0,0,0,0,3.2,0,0,0,0,0.312,61.48,111.58,0.92,0.13,788,1.5,208,1.3
+8069,2023,6,18,2,30,9.9,1.41,0.049,0.62,0,0,0,0,0,3.2,0,0,0,0,0.312,63.14,108.8,0.93,0.13,788,1.5,201,1.3
+8070,2023,6,18,3,0,9.6,1.33,0.06,0.62,0,0,0,0,0,3.1,0,0,0,0,0.312,63.95,105.48,0.93,0.13,788,1.5,194,1.4
+8071,2023,6,18,3,30,9.3,1.33,0.06,0.62,0,0,0,0,0,3.1,0,0,0,0,0.312,65.16,101.68,0.94,0.13,787,1.6,192,1.5
+8072,2023,6,18,4,0,9.1,1.27,0.065,0.62,0,0,0,0,5,2.6,0,0,0,0,0.311,63.82,97.48,0.94,0.13,787,1.6,189,1.7
+8073,2023,6,18,4,30,10,1.27,0.065,0.62,0,0,0,0,5,2.6,0,0,0,0,0.311,60.08,92.93,0.94,0.13,787,1.6,188,2.3
+8074,2023,6,18,5,0,10.8,1.23,0.064,0.62,16,166,22,6,5,2.2,13,21,79,14,0.31,55.15,87.88,0.94,0.13,787,1.6,188,2.8
+8075,2023,6,18,5,30,12.4,1.23,0.064,0.62,35,433,88,4,3,2.2,50,124,54,65,0.311,49.63,82.95,0.94,0.13,787,1.5,190,3.6
+8076,2023,6,18,6,0,14,1.21,0.063,0.62,47,595,173,0,0,1.5,64,382,0,145,0.311,42.75,77.73,0.94,0.13,787,1.5,192,4.4
+8077,2023,6,18,6,30,16.1,1.21,0.063,0.62,55,698,267,0,3,1.5,131,242,0,204,0.311,37.36,72.34,0.94,0.13,787,1.6,198,5
+8078,2023,6,18,7,0,18.1,1.2,0.065,0.62,64,768,366,0,5,1.5,158,30,0,170,0.31,32.89,66.81,0.94,0.13,787,1.6,205,5.5
+8079,2023,6,18,7,30,19.7,1.2,0.065,0.62,70,819,465,0,8,1.5,214,141,0,282,0.309,29.77,61.2,0.94,0.13,787,1.6,212,6.4
+8080,2023,6,18,8,0,21.2,1.18,0.069,0.62,77,854,560,0,5,2.7,267,127,0,339,0.308,29.44,55.53,0.94,0.13,787,1.6,219,7.2
+8081,2023,6,18,8,30,22.1,1.18,0.069,0.62,82,882,651,0,5,2.7,313,175,0,426,0.308,27.84,49.84,0.94,0.13,786,1.7,220,7.4
+8082,2023,6,18,9,0,23,1.17,0.074,0.62,86,904,735,0,3,3.6,303,420,0,604,0.307,28.27,44.16,0.94,0.13,786,1.7,221,7.7
+8083,2023,6,18,9,30,23.7,1.17,0.074,0.62,90,922,811,0,8,3.6,241,615,0,722,0.306,27.1,38.56,0.94,0.13,786,1.7,221,7.9
+8084,2023,6,18,10,0,24.4,1.17,0.075,0.62,93,936,877,0,8,3.9,225,667,0,784,0.305,26.44,33.12,0.94,0.13,786,1.7,220,8.1
+8085,2023,6,18,10,30,25,1.17,0.075,0.62,89,957,934,0,0,3.9,149,845,0,895,0.304,25.51,27.96,0.94,0.13,786,1.7,219,8.3
+8086,2023,6,18,11,0,25.6,1.57,0.045,0.62,80,979,979,0,0,3.8,198,761,0,897,0.303,24.44,23.32,0.93,0.13,785,1.7,217,8.5
+8087,2023,6,18,11,30,26,1.57,0.045,0.62,79,986,1008,0,3,3.8,314,279,0,577,0.302,23.87,19.6,0.93,0.13,785,1.7,216,8.7
+8088,2023,6,18,12,0,26.4,1.6,0.039,0.62,77,992,1023,0,4,3.4,305,162,0,460,0.301,22.71,17.43,0.93,0.13,785,1.7,214,8.9
+8089,2023,6,18,12,30,26.6,1.6,0.039,0.62,76,993,1024,0,5,3.4,230,9,0,239,0.3,22.42,17.4,0.93,0.13,784,1.7,214,9
+8090,2023,6,18,13,0,26.8,1.59,0.036,0.62,75,993,1011,0,5,2.9,288,94,0,377,0.298,21.35,19.52,0.93,0.13,784,1.6,213,9.2
+8091,2023,6,18,13,30,26.8,1.59,0.036,0.62,77,986,983,0,5,2.9,307,128,0,425,0.298,21.35,23.21,0.93,0.13,784,1.6,213,9.2
+8092,2023,6,18,14,0,26.9,1.31,0.044,0.62,78,976,941,0,5,2.4,329,72,0,393,0.297,20.52,27.83,0.94,0.13,783,1.6,213,9.3
+8093,2023,6,18,14,30,26.8,1.31,0.044,0.62,77,967,888,0,3,2.4,386,160,0,520,0.297,20.64,32.98,0.94,0.13,783,1.6,213,9.2
+8094,2023,6,18,15,0,26.7,1.36,0.042,0.62,73,956,822,0,7,2,301,148,0,417,0.296,20.24,38.42,0.94,0.13,783,1.6,214,9.1
+8095,2023,6,18,15,30,26.4,1.36,0.042,0.62,71,938,746,0,7,2,269,354,0,524,0.296,20.6,44.01,0.95,0.13,783,1.6,214,8.8
+8096,2023,6,18,16,0,26.1,1.42,0.043,0.62,68,916,661,0,7,1.9,209,545,0,562,0.295,20.68,49.69,0.95,0.13,783,1.6,214,8.6
+8097,2023,6,18,16,30,25.7,1.42,0.043,0.62,66,886,569,0,0,1.8,160,627,7,516,0.295,21.17,55.38,0.95,0.13,783,1.6,213,8.3
+8098,2023,6,18,17,0,25.2,1.45,0.048,0.62,62,846,472,0,3,1.6,173,548,0,438,0.295,21.46,61.05,0.95,0.13,783,1.6,212,7.9
+8099,2023,6,18,17,30,24.5,1.45,0.048,0.62,58,793,372,0,7,1.6,155,444,4,331,0.295,22.37,66.67,0.95,0.13,783,1.6,211,7.3
+8100,2023,6,18,18,0,23.8,1.47,0.054,0.62,52,719,272,0,7,1.5,122,373,7,236,0.296,23.18,72.19,0.96,0.13,783,1.6,210,6.6
+8101,2023,6,18,18,30,22.4,1.47,0.054,0.62,45,614,177,0,7,1.5,97,295,0,160,0.296,25.22,77.59,0.96,0.13,783,1.6,207,5.7
+8102,2023,6,18,19,0,21,1.48,0.059,0.62,33,453,90,5,7,2,63,80,71,73,0.296,28.42,82.81,0.96,0.13,783,1.6,205,4.9
+8103,2023,6,18,19,30,20.1,1.48,0.059,0.62,17,182,24,6,7,2,17,4,86,17,0.296,30.03,87.76,0.96,0.13,783,1.7,204,4.6
+8104,2023,6,18,20,0,19.1,1.47,0.066,0.62,0,0,0,0,7,2.5,0,0,0,0,0.296,33.1,92.8,0.96,0.13,783,1.7,203,4.4
+8105,2023,6,18,20,30,18.8,1.47,0.066,0.62,0,0,0,0,8,2.5,0,0,0,0,0.296,33.72,97.35,0.96,0.13,783,1.7,204,4.3
+8106,2023,6,18,21,0,18.4,1.43,0.072,0.62,0,0,0,0,7,3.1,0,0,0,0,0.295,36.15,101.56,0.96,0.13,784,1.7,206,4.2
+8107,2023,6,18,21,30,18,1.43,0.072,0.62,0,0,0,0,8,3.1,0,0,0,0,0.295,37.06,105.37,0.96,0.13,784,1.7,208,4.1
+8108,2023,6,18,22,0,17.7,1.36,0.072,0.62,0,0,0,0,8,3.9,0,0,0,0,0.296,39.82,108.71,0.96,0.13,783,1.7,211,3.9
+8109,2023,6,18,22,30,17.3,1.36,0.072,0.62,0,0,0,0,0,3.9,0,0,0,0,0.296,40.89,111.5,0.95,0.13,784,1.7,215,4
+8110,2023,6,18,23,0,16.9,1.25,0.069,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,43.51,113.68,0.95,0.13,784,1.7,219,4
+8111,2023,6,18,23,30,16.4,1.25,0.069,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,44.91,115.17,0.94,0.13,784,1.6,221,3.9
+8112,2023,6,19,0,0,15.9,1.16,0.067,0.62,0,0,0,0,0,4.6,0,0,0,0,0.296,46.86,115.94,0.94,0.13,784,1.6,224,3.9
+8113,2023,6,19,0,30,15.4,1.16,0.067,0.62,0,0,0,0,0,4.6,0,0,0,0,0.295,48.38,115.95,0.93,0.13,784,1.5,223,3.8
+8114,2023,6,19,1,0,14.8,1.1,0.067,0.62,0,0,0,0,0,4.4,0,0,0,0,0.295,49.6,115.21,0.93,0.13,784,1.5,222,3.7
+8115,2023,6,19,1,30,14.3,1.1,0.067,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,51.22,113.73,0.93,0.13,784,1.5,221,3.6
+8116,2023,6,19,2,0,13.8,1.07,0.067,0.62,0,0,0,0,0,3.9,0,0,0,0,0.296,51.33,111.58,0.93,0.13,784,1.4,219,3.5
+8117,2023,6,19,2,30,13.3,1.07,0.067,0.62,0,0,0,0,0,3.9,0,0,0,0,0.297,53.02,108.81,0.93,0.13,784,1.4,217,3.4
+8118,2023,6,19,3,0,12.7,1.04,0.067,0.62,0,0,0,0,0,3.5,0,0,0,0,0.298,53.69,105.49,0.92,0.13,785,1.3,215,3.3
+8119,2023,6,19,3,30,12.2,1.04,0.067,0.62,0,0,0,0,0,3.5,0,0,0,0,0.299,55.48,101.69,0.92,0.13,785,1.3,213,3.1
+8120,2023,6,19,4,0,11.7,1.02,0.066,0.62,0,0,0,0,0,3.2,0,0,0,0,0.3,56.08,97.49,0.92,0.13,785,1.3,210,3
+8121,2023,6,19,4,30,12.1,1.02,0.066,0.62,0,0,0,0,0,3.2,0,0,0,0,0.3,54.62,92.95,0.92,0.13,785,1.2,207,3.2
+8122,2023,6,19,5,0,12.5,1,0.063,0.62,16,162,22,0,0,2.9,16,162,0,22,0.301,51.82,87.91,0.92,0.13,785,1.2,204,3.4
+8123,2023,6,19,5,30,13.7,1,0.063,0.62,34,438,88,0,0,2.9,34,438,0,88,0.302,47.99,82.97,0.92,0.13,786,1.2,201,3.8
+8124,2023,6,19,6,0,15,0.98,0.06,0.62,46,607,175,0,0,2.1,46,607,0,175,0.303,41.76,77.76,0.92,0.13,786,1.1,198,4.2
+8125,2023,6,19,6,30,16.9,0.98,0.06,0.62,55,716,272,0,0,2.1,55,716,0,272,0.304,37.01,72.37,0.92,0.13,786,1.1,202,5.1
+8126,2023,6,19,7,0,18.7,0.96,0.058,0.62,62,792,373,0,0,-0.1,62,792,0,373,0.305,28.28,66.85,0.92,0.13,786,1.1,205,5.9
+8127,2023,6,19,7,30,20.2,0.96,0.058,0.62,67,845,474,0,0,0,67,845,0,474,0.305,25.77,61.23,0.92,0.13,786,1.1,208,6.9
+8128,2023,6,19,8,0,21.6,0.93,0.057,0.62,71,885,572,0,0,-2.6,71,885,0,572,0.306,19.55,55.56,0.92,0.13,786,1.1,210,8
+8129,2023,6,19,8,30,22.4,0.93,0.057,0.62,76,915,666,0,0,-2.6,76,915,0,666,0.307,18.62,49.87,0.92,0.13,786,1.1,208,8.3
+8130,2023,6,19,9,0,23.1,0.94,0.056,0.62,79,939,752,0,0,-3.6,79,939,0,752,0.307,16.67,44.19,0.91,0.13,786,1,206,8.7
+8131,2023,6,19,9,30,23.8,0.94,0.056,0.62,81,958,830,0,0,-3.6,81,958,0,830,0.307,15.98,38.59,0.91,0.13,786,1,204,8.8
+8132,2023,6,19,10,0,24.5,1,0.055,0.62,83,973,898,0,0,-4.3,83,973,0,898,0.307,14.54,33.15,0.91,0.13,786,1,202,9
+8133,2023,6,19,10,30,25.1,1,0.055,0.62,82,989,955,0,0,-4.3,82,989,0,955,0.307,14.03,27.99,0.91,0.13,786,1,202,9.1
+8134,2023,6,19,11,0,25.6,1.4,0.041,0.62,77,1005,1000,0,0,-4.8,77,1005,0,1000,0.307,13.12,23.34,0.91,0.13,786,1,201,9.3
+8135,2023,6,19,11,30,26.1,1.4,0.041,0.62,78,1011,1030,0,0,-4.7,78,1011,0,1030,0.307,12.74,19.61,0.9,0.13,786,0.9,201,9.4
+8136,2023,6,19,12,0,26.6,1.48,0.039,0.62,78,1015,1046,0,0,-5,78,1015,0,1046,0.307,12.17,17.42,0.9,0.13,785,0.9,202,9.5
+8137,2023,6,19,12,30,26.9,1.48,0.039,0.62,77,1016,1047,0,0,-5,77,1016,0,1047,0.307,11.96,17.38,0.9,0.13,785,0.9,202,9.6
+8138,2023,6,19,13,0,27.2,1.45,0.038,0.62,76,1015,1033,0,0,-4.9,76,1015,0,1033,0.307,11.77,19.49,0.9,0.13,785,0.9,203,9.7
+8139,2023,6,19,13,30,27.3,1.45,0.038,0.62,75,1012,1005,0,0,-4.9,75,1012,0,1005,0.307,11.7,23.17,0.9,0.13,785,0.9,204,9.6
+8140,2023,6,19,14,0,27.5,1.52,0.033,0.62,71,1008,963,0,0,-4.8,71,1008,0,963,0.307,11.7,27.79,0.9,0.13,785,0.9,205,9.6
+8141,2023,6,19,14,30,27.5,1.52,0.033,0.62,70,998,908,0,0,-4.8,70,998,0,908,0.307,11.69,32.93,0.9,0.13,784,0.9,205,9.4
+8142,2023,6,19,15,0,27.5,1.41,0.034,0.62,68,986,841,0,0,-4.5,68,986,0,841,0.307,11.91,38.37,0.9,0.13,784,0.9,206,9.3
+8143,2023,6,19,15,30,27.3,1.41,0.034,0.62,66,969,764,0,0,-4.5,66,969,0,764,0.306,12.05,43.96,0.91,0.13,784,0.9,206,9.1
+8144,2023,6,19,16,0,27,1.29,0.036,0.62,65,947,678,0,0,-4.3,65,947,0,678,0.305,12.48,49.64,0.91,0.13,784,0.9,206,9
+8145,2023,6,19,16,30,26.5,1.29,0.036,0.62,62,918,584,0,0,-4.3,62,918,0,584,0.305,12.86,55.33,0.91,0.13,784,0.9,206,8.7
+8146,2023,6,19,17,0,26,1.22,0.038,0.62,59,879,485,0,0,-4.1,59,879,0,485,0.305,13.49,61,0.91,0.13,784,1,205,8.5
+8147,2023,6,19,17,30,25.2,1.22,0.038,0.62,54,830,383,0,0,-4.1,54,830,0,383,0.305,14.14,66.62,0.91,0.13,784,1,205,8
+8148,2023,6,19,18,0,24.3,1.17,0.039,0.62,48,760,281,0,0,-3.6,48,760,0,281,0.305,15.49,72.14,0.91,0.13,784,1,204,7.4
+8149,2023,6,19,18,30,22.9,1.17,0.039,0.62,41,662,184,0,0,-3.6,41,662,0,184,0.304,16.85,77.54,0.91,0.13,784,1,203,6.6
+8150,2023,6,19,19,0,21.4,1.12,0.039,0.62,31,506,95,0,0,-2.7,31,506,0,95,0.303,19.7,82.77,0.91,0.13,785,1.1,202,5.8
+8151,2023,6,19,19,30,20.3,1.12,0.039,0.62,16,219,25,0,0,-2.7,17,208,4,25,0.302,21.08,87.72,0.91,0.13,785,1.1,201,5.6
+8152,2023,6,19,20,0,19.2,1.1,0.038,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.301,23.52,92.76,0.92,0.13,785,1.1,201,5.4
+8153,2023,6,19,20,30,18.7,1.1,0.038,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.299,24.29,97.31,0.92,0.13,786,1.1,202,5.4
+8154,2023,6,19,21,0,18.2,1.11,0.039,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.297,25.87,101.52,0.92,0.13,786,1.2,203,5.5
+8155,2023,6,19,21,30,17.6,1.11,0.039,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.296,26.86,105.33,0.92,0.13,786,1.2,206,5.2
+8156,2023,6,19,22,0,17,1.13,0.042,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.295,29.74,108.67,0.92,0.13,787,1.2,209,5
+8157,2023,6,19,22,30,16.4,1.13,0.042,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.294,30.89,111.47,0.92,0.13,787,1.2,212,4.6
+8158,2023,6,19,23,0,15.7,1.16,0.048,0.62,0,0,0,0,0,0.4,0,0,0,0,0.293,35.42,113.65,0.92,0.13,787,1.3,216,4.3
+8159,2023,6,19,23,30,15.2,1.16,0.048,0.62,0,0,0,0,0,0.4,0,0,0,0,0.291,36.57,115.15,0.92,0.13,787,1.3,220,4
+8160,2023,6,20,0,0,14.6,1.17,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.289,41.81,115.93,0.93,0.13,788,1.3,225,3.7
+8161,2023,6,20,0,30,13.9,1.17,0.053,0.62,0,0,0,0,8,1.8,0,0,0,0,0.288,43.74,115.94,0.93,0.13,788,1.4,228,3.1
+8162,2023,6,20,1,0,13.2,1.15,0.055,0.62,0,0,0,0,0,2.8,0,0,0,0,0.287,49.4,115.21,0.93,0.13,788,1.4,232,2.6
+8163,2023,6,20,1,30,12.6,1.15,0.055,0.62,0,0,0,0,0,2.8,0,0,0,0,0.287,51.37,113.74,0.93,0.13,788,1.4,234,2.4
+8164,2023,6,20,2,0,12.1,1.13,0.057,0.62,0,0,0,0,7,3.3,0,0,0,0,0.287,54.96,111.59,0.93,0.13,788,1.5,236,2.1
+8165,2023,6,20,2,30,11.8,1.13,0.057,0.62,0,0,0,0,7,3.3,0,0,0,0,0.288,56.06,108.82,0.93,0.13,788,1.5,235,2
+8166,2023,6,20,3,0,11.4,1.13,0.061,0.62,0,0,0,0,7,3.5,0,0,0,0,0.289,58.48,105.5,0.93,0.13,788,1.5,234,1.8
+8167,2023,6,20,3,30,11.1,1.13,0.061,0.62,0,0,0,0,7,3.5,0,0,0,0,0.291,59.65,101.71,0.93,0.13,788,1.5,231,1.7
+8168,2023,6,20,4,0,10.8,1.12,0.066,0.62,0,0,0,0,7,3.6,0,0,0,0,0.293,61.26,97.52,0.93,0.13,789,1.5,227,1.6
+8169,2023,6,20,4,30,11.6,1.12,0.066,0.62,0,0,0,0,7,3.6,0,0,0,0,0.295,58.11,92.98,0.93,0.13,789,1.5,222,1.8
+8170,2023,6,20,5,0,12.5,1.11,0.069,0.62,16,153,22,6,7,4,11,0,86,11,0.298,56.23,87.93,0.93,0.13,789,1.5,216,2
+8171,2023,6,20,5,30,14.2,1.11,0.069,0.62,35,416,86,4,7,4,45,24,57,48,0.302,50.35,83,0.93,0.13,789,1.5,212,2.8
+8172,2023,6,20,6,0,15.9,1.08,0.07,0.62,48,581,171,0,7,3.5,87,228,14,135,0.306,43.56,77.79,0.93,0.13,789,1.4,209,3.6
+8173,2023,6,20,6,30,17.7,1.08,0.07,0.62,58,691,267,0,0,3.5,68,634,7,260,0.309,38.88,72.4,0.93,0.13,789,1.3,208,4.4
+8174,2023,6,20,7,0,19.5,1.03,0.068,0.62,65,769,367,0,0,2.7,65,769,0,367,0.311,32.89,66.88,0.93,0.13,789,1.3,208,5.2
+8175,2023,6,20,7,30,20.6,1.03,0.068,0.62,71,826,468,0,0,2.8,71,826,0,468,0.31,30.73,61.27,0.93,0.13,789,1.3,208,5.8
+8176,2023,6,20,8,0,21.6,0.99,0.064,0.62,74,870,566,0,0,1.5,74,870,0,566,0.308,26.37,55.6,0.92,0.13,789,1.2,208,6.4
+8177,2023,6,20,8,30,22.3,0.99,0.064,0.62,78,903,660,0,0,1.5,78,903,0,660,0.303,25.27,49.9,0.92,0.13,789,1.2,207,6.6
+8178,2023,6,20,9,0,23,0.97,0.059,0.62,81,930,747,0,0,0.4,81,930,14,747,0.298,22.45,44.23,0.92,0.13,789,1.2,206,6.8
+8179,2023,6,20,9,30,23.7,0.97,0.059,0.62,83,949,824,0,0,0.4,83,949,29,824,0.295,21.53,38.63,0.92,0.13,789,1.2,205,7
+8180,2023,6,20,10,0,24.3,0.98,0.054,0.62,84,964,891,0,0,-0.5,84,964,0,891,0.292,19.49,33.18,0.92,0.13,789,1.3,205,7.2
+8181,2023,6,20,10,30,24.8,0.98,0.054,0.62,81,982,948,0,0,-0.5,81,982,0,948,0.292,18.92,28.02,0.92,0.13,789,1.3,205,7.4
+8182,2023,6,20,11,0,25.4,1.04,0.035,0.62,75,999,992,0,0,-0.9,243,664,0,853,0.291,17.61,23.36,0.91,0.13,789,1.2,206,7.6
+8183,2023,6,20,11,30,25.8,1.04,0.035,0.62,75,1005,1022,0,3,-0.9,475,203,0,666,0.291,17.2,19.63,0.91,0.13,789,1.2,207,7.7
+8184,2023,6,20,12,0,26.2,1.11,0.034,0.62,76,1008,1038,0,8,-1.1,403,288,0,678,0.291,16.55,17.42,0.91,0.13,789,1.2,208,7.8
+8185,2023,6,20,12,30,26.5,1.11,0.034,0.62,76,1009,1039,0,8,-1.1,409,376,14,768,0.292,16.26,17.36,0.91,0.13,789,1.2,209,7.9
+8186,2023,6,20,13,0,26.8,1.14,0.034,0.62,76,1008,1026,0,5,-1.2,475,239,0,700,0.292,15.89,19.46,0.9,0.13,788,1.1,210,8
+8187,2023,6,20,13,30,26.9,1.14,0.034,0.62,74,1005,998,0,3,-1.2,375,411,0,753,0.292,15.79,23.13,0.9,0.13,788,1.1,210,8
+8188,2023,6,20,14,0,27,1.12,0.033,0.62,73,999,957,0,0,-1.2,142,847,0,892,0.292,15.74,27.74,0.9,0.13,788,1.1,211,8
+8189,2023,6,20,14,30,26.9,1.12,0.033,0.62,72,989,902,0,0,-1.2,139,854,0,856,0.291,15.83,32.89,0.91,0.13,788,1.1,211,7.8
+8190,2023,6,20,15,0,26.8,1.02,0.035,0.62,71,975,836,0,0,-1.1,93,927,0,820,0.291,16.08,38.32,0.91,0.13,788,1.1,211,7.7
+8191,2023,6,20,15,30,26.5,1.02,0.035,0.62,69,957,758,0,0,-1.1,143,762,0,692,0.291,16.36,43.92,0.91,0.13,788,1.1,211,7.5
+8192,2023,6,20,16,0,26.2,0.91,0.037,0.62,67,934,672,0,0,-0.8,125,743,14,607,0.29,16.94,49.59,0.91,0.13,788,1.2,210,7.3
+8193,2023,6,20,16,30,25.7,0.91,0.037,0.62,63,904,578,0,3,-0.8,202,477,0,474,0.29,17.45,55.29,0.92,0.13,788,1.2,210,7
+8194,2023,6,20,17,0,25.2,0.87,0.038,0.62,60,866,480,0,3,-0.4,167,330,0,327,0.29,18.51,60.96,0.92,0.13,788,1.2,210,6.7
+8195,2023,6,20,17,30,24.4,0.87,0.038,0.62,54,817,379,0,0,-0.4,101,628,0,351,0.29,19.44,66.57,0.92,0.13,789,1.3,210,6
+8196,2023,6,20,18,0,23.5,0.85,0.037,0.62,49,749,279,0,3,0.5,121,321,11,220,0.29,21.91,72.1,0.92,0.13,789,1.3,210,5.3
+8197,2023,6,20,18,30,21.5,0.85,0.037,0.62,41,653,182,1,0,0.5,66,473,14,168,0.291,24.73,77.5,0.92,0.13,789,1.3,210,3.8
+8198,2023,6,20,19,0,19.4,0.87,0.035,0.62,31,502,95,1,0,2.9,35,453,11,92,0.291,33.44,82.72,0.92,0.13,789,1.3,210,2.3
+8199,2023,6,20,19,30,18.1,0.87,0.035,0.62,16,216,25,2,0,2.9,15,162,25,22,0.292,36.31,87.68,0.92,0.13,790,1.3,212,1.9
+8200,2023,6,20,20,0,16.9,0.91,0.035,0.62,0,0,0,0,3,4.1,0,0,4,0,0.293,42.72,92.72,0.93,0.13,790,1.4,214,1.5
+8201,2023,6,20,20,30,16.4,0.91,0.035,0.62,0,0,0,0,5,4.1,0,0,0,0,0.293,44.09,97.27,0.93,0.13,790,1.4,215,1.3
+8202,2023,6,20,21,0,15.8,0.94,0.035,0.62,0,0,0,0,5,4.6,0,0,0,0,0.294,47.2,101.49,0.93,0.13,790,1.4,216,1.1
+8203,2023,6,20,21,30,15.5,0.94,0.035,0.62,0,0,0,0,5,4.6,0,0,0,0,0.295,48.12,105.3,0.92,0.13,790,1.4,220,1
+8204,2023,6,20,22,0,15.1,0.96,0.036,0.62,0,0,0,0,3,4.6,0,0,0,0,0.295,49.52,108.64,0.92,0.13,790,1.4,223,0.9
+8205,2023,6,20,22,30,14.7,0.96,0.036,0.62,0,0,0,0,0,4.6,0,0,0,0,0.296,50.87,111.45,0.92,0.13,791,1.4,237,0.9
+8206,2023,6,20,23,0,14.3,0.99,0.036,0.62,0,0,0,0,0,4.5,0,0,0,0,0.296,51.58,113.63,0.92,0.13,791,1.4,251,0.8
+8207,2023,6,20,23,30,13.7,0.99,0.036,0.62,0,0,0,0,0,4.5,0,0,0,0,0.296,53.62,115.14,0.92,0.13,791,1.4,270,0.8
+8208,2023,6,21,0,0,13.1,1.04,0.037,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,55.7,115.92,0.92,0.13,791,1.4,290,0.8
+8209,2023,6,21,0,30,12.6,1.04,0.037,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,57.55,115.94,0.92,0.13,791,1.4,305,0.8
+8210,2023,6,21,1,0,12.1,1.08,0.039,0.62,0,0,0,0,0,4.3,0,0,0,0,0.296,58.72,115.21,0.92,0.13,791,1.4,321,0.8
+8211,2023,6,21,1,30,11.6,1.08,0.039,0.62,0,0,0,0,0,4.3,0,0,0,0,0.296,60.68,113.74,0.92,0.13,791,1.4,330,0.7
+8212,2023,6,21,2,0,11.1,1.14,0.041,0.62,0,0,0,0,0,3.9,0,0,0,0,0.297,61.08,111.6,0.92,0.13,791,1.4,339,0.7
+8213,2023,6,21,2,30,10.7,1.14,0.041,0.62,0,0,0,0,0,3.9,0,0,0,0,0.298,62.72,108.84,0.92,0.13,791,1.4,347,0.7
+8214,2023,6,21,3,0,10.3,1.21,0.044,0.62,0,0,0,0,0,3.5,0,0,0,0,0.298,62.93,105.52,0.92,0.13,791,1.4,356,0.6
+8215,2023,6,21,3,30,10,1.21,0.044,0.62,0,0,0,0,0,3.5,0,0,0,0,0.299,64.2,101.74,0.92,0.13,791,1.4,184,0.6
+8216,2023,6,21,4,0,9.7,1.28,0.047,0.62,0,0,0,0,0,3.3,0,0,0,0,0.299,64.48,97.55,0.92,0.13,791,1.4,13,0.6
+8217,2023,6,21,4,30,10.3,1.28,0.047,0.62,0,0,0,0,0,3.3,0,0,0,0,0.299,62.03,93.01,0.92,0.13,792,1.3,18,0.7
+8218,2023,6,21,5,0,10.9,1.33,0.051,0.62,15,188,22,0,0,4,15,188,0,22,0.299,62.52,87.96,0.92,0.13,792,1.3,24,0.8
+8219,2023,6,21,5,30,12.5,1.33,0.051,0.62,32,463,88,0,0,4,32,463,0,88,0.3,56.27,83.04,0.92,0.13,792,1.3,27,1
+8220,2023,6,21,6,0,14,1.36,0.053,0.62,43,620,174,0,0,3.3,43,620,0,174,0.301,48.42,77.82,0.92,0.13,792,1.3,29,1.1
+8221,2023,6,21,6,30,16,1.36,0.053,0.62,52,722,270,0,0,3.3,52,722,0,270,0.301,42.59,72.44,0.92,0.13,792,1.3,146,0.8
+8222,2023,6,21,7,0,18,1.37,0.054,0.62,60,792,370,0,0,1.9,60,792,0,370,0.302,33.99,66.92,0.92,0.13,792,1.3,263,0.5
+8223,2023,6,21,7,30,19.7,1.37,0.054,0.62,65,844,470,0,0,1.9,65,844,0,470,0.302,30.58,61.31,0.92,0.13,792,1.3,243,1.5
+8224,2023,6,21,8,0,21.4,1.36,0.054,0.62,70,882,568,0,0,-0.2,70,882,0,568,0.302,23.68,55.64,0.92,0.13,792,1.3,223,2.4
+8225,2023,6,21,8,30,22.3,1.36,0.054,0.62,73,912,660,0,0,-0.2,73,912,0,660,0.302,22.41,49.94,0.92,0.13,792,1.3,217,2.9
+8226,2023,6,21,9,0,23.2,1.35,0.053,0.62,76,935,746,0,0,-0.5,76,935,0,746,0.301,20.69,44.27,0.92,0.13,792,1.3,212,3.4
+8227,2023,6,21,9,30,23.9,1.35,0.053,0.62,79,953,823,0,0,-0.5,79,953,0,823,0.301,19.84,38.67,0.92,0.13,792,1.3,210,3.8
+8228,2023,6,21,10,0,24.7,1.35,0.053,0.62,82,966,890,0,0,-0.6,82,966,0,890,0.301,18.86,33.22,0.92,0.13,792,1.3,209,4.2
+8229,2023,6,21,10,30,25.2,1.35,0.053,0.62,80,981,946,0,0,-0.6,80,981,0,946,0.301,18.31,28.05,0.92,0.13,792,1.3,209,4.5
+8230,2023,6,21,11,0,25.8,1.46,0.042,0.62,79,993,990,0,0,-0.7,79,993,0,990,0.3,17.52,23.39,0.92,0.13,792,1.3,210,4.8
+8231,2023,6,21,11,30,26.2,1.46,0.042,0.62,78,999,1019,0,0,-0.7,78,999,0,1019,0.3,17.09,19.65,0.92,0.13,791,1.3,211,4.9
+8232,2023,6,21,12,0,26.6,1.46,0.04,0.62,78,1002,1034,0,0,-0.9,78,1002,0,1034,0.3,16.44,17.43,0.92,0.13,791,1.3,212,5.1
+8233,2023,6,21,12,30,26.9,1.46,0.04,0.62,78,1003,1035,0,0,-0.9,78,1003,0,1035,0.299,16.16,17.35,0.92,0.13,791,1.3,213,5.2
+8234,2023,6,21,13,0,27.2,1.46,0.039,0.62,78,1001,1022,0,0,-1.1,78,1001,0,1022,0.299,15.62,19.43,0.92,0.13,791,1.2,214,5.3
+8235,2023,6,21,13,30,27.3,1.46,0.039,0.62,75,999,994,0,0,-1.1,75,999,0,994,0.298,15.53,23.1,0.91,0.13,791,1.2,216,5.2
+8236,2023,6,21,14,0,27.5,1.53,0.032,0.62,71,996,953,0,0,-1.3,102,938,0,932,0.298,15.11,27.71,0.91,0.13,790,1.2,217,5.2
+8237,2023,6,21,14,30,27.4,1.53,0.032,0.62,69,988,899,0,0,-1.3,138,813,0,821,0.297,15.2,32.85,0.91,0.13,790,1.2,219,5.2
+8238,2023,6,21,15,0,27.3,1.51,0.03,0.62,67,977,834,0,0,-1.6,94,871,0,778,0.297,14.98,38.28,0.91,0.13,790,1.2,220,5.1
+8239,2023,6,21,15,30,27,1.51,0.03,0.62,65,962,758,0,0,-1.6,128,826,0,723,0.297,15.24,43.88,0.91,0.13,790,1.2,222,5
+8240,2023,6,21,16,0,26.7,1.48,0.029,0.62,61,943,673,0,3,-1.9,204,401,0,464,0.297,15.16,49.55,0.91,0.13,790,1.2,225,5
+8241,2023,6,21,16,30,26.1,1.48,0.029,0.62,58,917,581,0,3,-1.9,171,549,0,484,0.297,15.7,55.24,0.92,0.13,790,1.2,227,4.8
+8242,2023,6,21,17,0,25.5,1.42,0.029,0.62,55,883,484,0,3,-2.3,80,818,43,478,0.297,15.81,60.92,0.92,0.13,790,1.2,229,4.6
+8243,2023,6,21,17,30,24.6,1.42,0.029,0.62,51,837,384,0,0,-2.3,51,837,11,384,0.297,16.68,66.53,0.92,0.13,790,1.2,231,3.9
+8244,2023,6,21,18,0,23.6,1.36,0.03,0.62,45,772,283,0,0,-1.2,77,640,11,274,0.297,19.22,72.06,0.92,0.13,790,1.2,233,3.2
+8245,2023,6,21,18,30,21.6,1.36,0.03,0.62,39,679,186,0,0,-1.2,46,613,4,179,0.297,21.69,77.46,0.92,0.13,790,1.1,237,2.3
+8246,2023,6,21,19,0,19.6,1.3,0.031,0.62,29,530,97,0,0,3.2,29,530,0,97,0.297,33.85,82.68,0.92,0.13,791,1.1,242,1.3
+8247,2023,6,21,19,30,18.8,1.3,0.031,0.62,16,241,26,0,0,3.2,16,241,0,26,0.297,35.57,87.64,0.93,0.13,791,1.1,243,1.2
+8248,2023,6,21,20,0,18,1.24,0.032,0.62,0,0,0,0,0,3.9,0,0,0,0,0.297,39.13,92.69,0.93,0.13,791,1.1,245,1.1
+8249,2023,6,21,20,30,18,1.24,0.032,0.62,0,0,0,0,0,3.9,0,0,0,0,0.297,39.13,97.24,0.93,0.13,791,1.1,250,1
+8250,2023,6,21,21,0,18,1.2,0.034,0.62,0,0,0,0,0,3.4,0,0,0,0,0.297,37.88,101.46,0.93,0.13,791,1.1,256,1
+8251,2023,6,21,21,30,18,1.2,0.034,0.62,0,0,0,0,0,3.4,0,0,0,0,0.297,37.88,105.28,0.93,0.13,791,1.1,281,0.8
+8252,2023,6,21,22,0,17.9,1.17,0.037,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,35.7,108.62,0.93,0.13,791,1.1,305,0.6
+8253,2023,6,21,22,30,17,1.17,0.037,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,37.78,111.43,0.93,0.13,791,1.1,163,0.7
+8254,2023,6,21,23,0,16.2,1.17,0.04,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,39.9,113.62,0.93,0.13,791,1.1,21,0.7
+8255,2023,6,21,23,30,15.2,1.17,0.04,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,42.53,115.13,0.93,0.13,791,1.1,35,0.8
+8256,2023,6,22,0,0,14.3,1.18,0.042,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,44.98,115.91,0.93,0.13,791,1.1,49,1
+8257,2023,6,22,0,30,13.5,1.18,0.042,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,47.37,115.94,0.93,0.13,791,1.1,54,1.2
+8258,2023,6,22,1,0,12.8,1.21,0.044,0.62,0,0,0,0,0,2.2,0,0,0,0,0.297,48.44,115.22,0.93,0.13,791,1.1,60,1.3
+8259,2023,6,22,1,30,12.2,1.21,0.044,0.62,0,0,0,0,0,2.2,0,0,0,0,0.297,50.38,113.76,0.93,0.13,791,1.1,62,1.4
+8260,2023,6,22,2,0,11.6,1.24,0.045,0.62,0,0,0,0,0,2.4,0,0,0,0,0.297,53.16,111.62,0.93,0.13,791,1.1,63,1.5
+8261,2023,6,22,2,30,11.1,1.24,0.045,0.62,0,0,0,0,0,2.4,0,0,0,0,0.297,54.94,108.86,0.92,0.13,791,1.2,62,1.6
+8262,2023,6,22,3,0,10.6,1.28,0.047,0.62,0,0,0,0,0,2.8,0,0,0,0,0.298,58.62,105.55,0.92,0.13,791,1.2,61,1.6
+8263,2023,6,22,3,30,10,1.28,0.047,0.62,0,0,0,0,0,2.8,0,0,0,0,0.298,61.01,101.77,0.92,0.13,791,1.2,59,1.6
+8264,2023,6,22,4,0,9.5,1.31,0.049,0.62,0,0,0,0,0,3.3,0,0,0,0,0.298,65.41,97.58,0.92,0.13,791,1.2,57,1.6
+8265,2023,6,22,4,30,9.9,1.31,0.049,0.62,0,0,0,0,0,3.3,0,0,0,0,0.298,63.69,93.05,0.92,0.13,791,1.2,54,1.9
+8266,2023,6,22,5,0,10.4,1.35,0.052,0.62,15,188,22,0,0,4.1,15,188,0,22,0.298,64.85,88,0.92,0.13,791,1.2,52,2.3
+8267,2023,6,22,5,30,11.7,1.35,0.052,0.62,32,466,88,0,0,4.1,32,466,0,88,0.298,59.5,83.08,0.92,0.13,791,1.1,50,2.3
+8268,2023,6,22,6,0,13,1.39,0.054,0.62,44,623,175,0,0,4.3,44,623,0,175,0.299,55.47,77.87,0.92,0.13,791,1.1,49,2.3
+8269,2023,6,22,6,30,14.9,1.39,0.054,0.62,53,725,271,0,0,4.3,53,725,0,271,0.298,49.06,72.48,0.92,0.13,791,1.1,49,2
+8270,2023,6,22,7,0,16.8,1.4,0.057,0.62,60,795,371,0,0,3.7,109,598,0,343,0.298,41.6,66.96,0.92,0.13,791,1.1,49,1.7
+8271,2023,6,22,7,30,18.9,1.4,0.057,0.62,66,844,471,0,0,3.7,117,678,0,442,0.298,36.47,61.35,0.92,0.13,791,1.2,89,1.4
+8272,2023,6,22,8,0,21,1.42,0.06,0.62,72,880,568,0,0,1.3,94,826,0,560,0.297,26.99,55.68,0.92,0.13,791,1.2,129,1
+8273,2023,6,22,8,30,22.7,1.42,0.06,0.62,76,908,660,0,0,1.3,125,804,0,642,0.296,24.34,49.99,0.92,0.13,791,1.2,159,1.7
+8274,2023,6,22,9,0,24.4,1.44,0.062,0.62,80,929,745,0,0,-0.4,169,765,0,716,0.295,19.51,44.31,0.92,0.13,790,1.2,190,2.4
+8275,2023,6,22,9,30,25.3,1.44,0.062,0.62,84,945,821,0,0,-0.4,104,889,0,798,0.295,18.49,38.71,0.92,0.13,790,1.2,194,2.7
+8276,2023,6,22,10,0,26.2,1.45,0.065,0.62,87,958,888,0,8,-0.1,170,768,0,812,0.295,17.85,33.26,0.92,0.13,790,1.3,199,3.1
+8277,2023,6,22,10,30,26.9,1.45,0.065,0.62,89,967,942,0,7,-0.1,212,704,0,833,0.294,17.13,28.09,0.93,0.13,790,1.3,200,3.3
+8278,2023,6,22,11,0,27.5,1.54,0.065,0.62,90,974,984,0,7,0.6,240,707,0,889,0.294,17.41,23.43,0.93,0.13,789,1.4,201,3.6
+8279,2023,6,22,11,30,27.9,1.54,0.065,0.62,94,974,1011,0,0,0.6,185,829,0,966,0.294,17.01,19.67,0.94,0.13,789,1.4,202,3.8
+8280,2023,6,22,12,0,28.3,1.53,0.076,0.62,98,970,1023,0,0,1.3,172,831,0,965,0.294,17.48,17.44,0.94,0.13,789,1.4,202,4.1
+8281,2023,6,22,12,30,28.4,1.53,0.076,0.62,99,967,1022,0,0,1.3,119,912,0,990,0.293,17.36,17.35,0.94,0.13,788,1.5,202,4.2
+8282,2023,6,22,13,0,28.6,1.53,0.082,0.62,100,961,1006,0,7,2,321,511,0,803,0.293,17.99,19.42,0.94,0.13,788,1.5,202,4.4
+8283,2023,6,22,13,30,28.6,1.53,0.082,0.62,99,957,979,0,7,2,352,435,0,752,0.294,17.99,23.07,0.95,0.13,788,1.6,201,4.6
+8284,2023,6,22,14,0,28.6,1.57,0.076,0.62,95,951,937,0,7,2.5,204,752,0,870,0.294,18.72,27.67,0.95,0.13,788,1.6,200,4.7
+8285,2023,6,22,14,30,28.5,1.57,0.076,0.62,94,939,883,0,7,2.5,200,697,0,786,0.294,18.83,32.81,0.95,0.13,788,1.6,198,4.8
+8286,2023,6,22,15,0,28.4,1.56,0.081,0.62,93,921,816,0,8,2.6,256,577,0,709,0.294,19.05,38.24,0.95,0.13,787,1.6,197,4.8
+8287,2023,6,22,15,30,28,1.56,0.081,0.62,91,899,739,0,8,2.6,201,660,7,677,0.294,19.5,43.84,0.95,0.13,787,1.6,196,4.8
+8288,2023,6,22,16,0,27.6,1.55,0.089,0.62,88,871,654,0,8,2.4,229,392,7,484,0.294,19.63,49.51,0.95,0.13,787,1.6,195,4.7
+8289,2023,6,22,16,30,26.9,1.55,0.089,0.62,85,838,563,0,8,2.4,186,468,36,453,0.294,20.44,55.21,0.95,0.13,787,1.6,193,4.5
+8290,2023,6,22,17,0,26.3,1.53,0.094,0.62,80,794,466,0,8,1.7,218,276,0,352,0.294,20.22,60.88,0.95,0.13,787,1.5,192,4.3
+8291,2023,6,22,17,30,25.3,1.53,0.094,0.62,72,744,369,0,8,1.7,130,358,4,273,0.295,21.45,66.5,0.95,0.13,787,1.5,190,3.6
+8292,2023,6,22,18,0,24.4,1.51,0.088,0.62,62,676,271,0,0,2.1,78,607,14,265,0.296,23.29,72.02,0.94,0.13,787,1.4,188,2.8
+8293,2023,6,22,18,30,22.6,1.51,0.088,0.62,51,580,177,1,8,2.1,77,311,29,145,0.297,25.95,77.42,0.94,0.13,787,1.3,184,2.2
+8294,2023,6,22,19,0,20.8,1.46,0.077,0.62,37,433,92,5,5,4.2,54,31,71,58,0.298,33.71,82.65,0.94,0.13,787,1.2,180,1.6
+8295,2023,6,22,19,30,19.8,1.46,0.077,0.62,18,174,25,2,0,4.2,16,98,25,20,0.299,35.85,87.61,0.93,0.13,787,1.1,180,1.6
+8296,2023,6,22,20,0,18.8,1.37,0.069,0.62,0,0,0,0,0,3.4,0,0,0,0,0.3,36.09,92.66,0.93,0.13,788,1.1,179,1.7
+8297,2023,6,22,20,30,18.1,1.37,0.069,0.62,0,0,0,0,0,3.4,0,0,0,0,0.301,37.7,97.22,0.93,0.13,788,1,180,1.8
+8298,2023,6,22,21,0,17.4,1.24,0.058,0.62,0,0,0,0,0,2.7,0,0,0,0,0.301,37.36,101.44,0.92,0.13,788,1,180,1.9
+8299,2023,6,22,21,30,16.6,1.24,0.058,0.62,0,0,0,0,8,2.7,0,0,0,0,0.302,39.3,105.26,0.93,0.13,788,1,180,1.9
+8300,2023,6,22,22,0,15.8,1.09,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.303,39.7,108.61,0.93,0.13,787,1,180,1.9
+8301,2023,6,22,22,30,15.3,1.09,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.302,40.99,111.42,0.93,0.13,787,1,181,1.9
+8302,2023,6,22,23,0,14.8,1.03,0.055,0.62,0,0,0,0,0,1.8,0,0,0,0,0.301,41.29,113.61,0.93,0.13,787,1,183,1.9
+8303,2023,6,22,23,30,14.4,1.03,0.055,0.62,0,0,0,0,3,1.8,0,0,0,0,0.3,42.37,115.13,0.93,0.13,787,1,184,1.9
+8304,2023,6,23,0,0,14.1,0.99,0.054,0.62,0,0,0,0,0,1.8,0,0,0,0,0.299,43.16,115.92,0.93,0.13,787,1,184,1.9
+8305,2023,6,23,0,30,13.7,0.99,0.054,0.62,0,0,0,0,0,1.8,0,0,0,0,0.299,44.29,115.95,0.92,0.13,787,1,186,1.9
+8306,2023,6,23,1,0,13.4,0.94,0.053,0.62,0,0,0,0,3,1.9,0,0,0,0,0.299,45.48,115.23,0.92,0.13,787,1,187,1.8
+8307,2023,6,23,1,30,12.9,0.94,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.298,46.99,113.78,0.92,0.13,787,1,188,1.8
+8308,2023,6,23,2,0,12.4,0.91,0.052,0.62,0,0,0,0,0,1.9,0,0,0,0,0.298,48.66,111.64,0.91,0.13,787,1,188,1.8
+8309,2023,6,23,2,30,11.8,0.91,0.052,0.62,0,0,0,0,0,1.9,0,0,0,0,0.297,50.62,108.89,0.91,0.13,787,1,189,1.9
+8310,2023,6,23,3,0,11.3,0.91,0.055,0.62,0,0,0,0,0,1.7,0,0,0,0,0.297,51.62,105.58,0.91,0.13,787,1,191,2
+8311,2023,6,23,3,30,10.9,0.91,0.055,0.62,0,0,0,0,0,1.7,0,0,0,0,0.296,53,101.8,0.91,0.13,787,1,191,2
+8312,2023,6,23,4,0,10.5,0.92,0.057,0.62,0,0,0,0,0,1.4,0,0,0,0,0.296,53.15,97.62,0.91,0.13,787,1,191,2
+8313,2023,6,23,4,30,11.1,0.92,0.057,0.62,0,0,0,0,0,1.4,0,0,0,0,0.296,51.08,93.09,0.91,0.13,787,0.9,190,2.2
+8314,2023,6,23,5,0,11.7,0.93,0.058,0.62,16,166,22,0,0,1,16,166,0,22,0.296,47.96,88.04,0.91,0.13,787,0.9,190,2.5
+8315,2023,6,23,5,30,13.1,0.93,0.058,0.62,34,451,88,0,0,1.1,34,451,0,88,0.297,43.81,83.12,0.91,0.13,788,0.9,188,2.9
+8316,2023,6,23,6,0,14.5,0.95,0.057,0.62,46,621,176,0,0,0.2,46,621,0,176,0.298,37.65,77.91,0.91,0.13,788,0.8,187,3.4
+8317,2023,6,23,6,30,16.5,0.95,0.057,0.62,55,733,275,0,0,0.2,55,733,0,275,0.299,33.14,72.52,0.91,0.13,788,0.8,189,3.8
+8318,2023,6,23,7,0,18.4,0.98,0.055,0.62,61,810,377,0,0,-2.2,61,810,0,377,0.3,24.65,67.01,0.91,0.13,788,0.7,192,4.3
+8319,2023,6,23,7,30,19.8,0.98,0.055,0.62,66,867,481,0,0,-2.2,66,867,0,481,0.301,22.6,61.4,0.91,0.13,788,0.7,195,4.8
+8320,2023,6,23,8,0,21.1,1.01,0.053,0.62,70,909,582,0,0,-4.3,70,909,0,582,0.302,17.77,55.73,0.91,0.13,788,0.6,198,5.4
+8321,2023,6,23,8,30,22,1.01,0.053,0.62,75,939,678,0,0,-4.3,75,939,0,678,0.302,16.82,50.03,0.91,0.13,788,0.6,198,5.9
+8322,2023,6,23,9,0,22.9,1.01,0.052,0.62,77,963,766,0,0,-5.2,77,963,0,766,0.303,14.88,44.36,0.91,0.13,788,0.6,199,6.5
+8323,2023,6,23,9,30,23.6,1.01,0.052,0.62,80,980,844,0,0,-5.2,80,980,0,844,0.303,14.27,38.75,0.91,0.13,788,0.6,200,7
+8324,2023,6,23,10,0,24.2,1.01,0.053,0.62,83,992,912,0,0,-6,83,992,0,912,0.304,13.02,33.3,0.91,0.13,788,0.6,200,7.5
+8325,2023,6,23,10,30,24.6,1.01,0.053,0.62,84,1004,969,0,0,-6,84,1004,0,969,0.305,12.7,28.13,0.9,0.13,787,0.6,201,7.9
+8326,2023,6,23,11,0,25,0.93,0.049,0.62,84,1013,1013,0,0,-6.8,84,1013,0,1013,0.306,11.6,23.47,0.9,0.13,787,0.6,202,8.3
+8327,2023,6,23,11,30,25.1,0.93,0.049,0.62,85,1017,1042,0,0,-6.8,125,932,0,1002,0.307,11.53,19.71,0.9,0.13,787,0.6,204,8.7
+8328,2023,6,23,12,0,25.3,0.95,0.051,0.62,87,1018,1058,0,0,-8,270,621,0,862,0.308,10.46,17.46,0.89,0.13,787,0.6,206,9.1
+8329,2023,6,23,12,30,25.2,0.95,0.051,0.62,86,1020,1060,0,0,-8,122,952,0,1031,0.31,10.52,17.35,0.89,0.13,787,0.6,207,9.3
+8330,2023,6,23,13,0,25.2,1,0.053,0.62,87,1019,1048,0,0,-9.1,168,838,0,958,0.311,9.65,19.41,0.89,0.13,787,0.5,209,9.6
+8331,2023,6,23,13,30,25,1,0.053,0.62,86,1016,1021,0,8,-9.1,265,583,0,801,0.313,9.76,23.05,0.89,0.13,787,0.5,212,9.5
+8332,2023,6,23,14,0,24.9,0.99,0.054,0.62,85,1008,978,0,0,-10.2,196,793,0,898,0.314,8.95,27.65,0.88,0.13,787,0.5,214,9.5
+8333,2023,6,23,14,30,24.7,0.99,0.054,0.62,83,999,923,0,0,-10.2,146,854,0,864,0.316,9.06,32.78,0.88,0.13,787,0.5,218,9.3
+8334,2023,6,23,15,0,24.4,0.98,0.054,0.62,80,986,855,0,0,-11.6,131,869,0,814,0.318,8.25,38.21,0.89,0.13,787,0.5,221,9.1
+8335,2023,6,23,15,30,24,0.98,0.054,0.62,77,973,779,0,0,-11.6,89,943,0,770,0.319,8.45,43.81,0.89,0.13,787,0.5,227,8.9
+8336,2023,6,23,16,0,23.5,0.98,0.051,0.62,74,956,695,0,0,-13.1,74,956,0,695,0.32,7.72,49.48,0.89,0.13,787,0.4,233,8.7
+8337,2023,6,23,16,30,22.8,0.98,0.051,0.62,69,932,601,0,0,-13.1,69,932,0,601,0.32,8.06,55.17,0.89,0.13,788,0.4,239,8.2
+8338,2023,6,23,17,0,22.1,0.96,0.047,0.62,63,898,501,0,0,-14,63,898,0,501,0.32,7.82,60.84,0.89,0.13,788,0.4,246,7.7
+8339,2023,6,23,17,30,21,0.96,0.047,0.62,59,850,398,0,0,-14,67,823,11,396,0.318,8.37,66.46,0.9,0.13,789,0.4,253,6.7
+8340,2023,6,23,18,0,20,0.96,0.047,0.62,52,782,294,0,8,-12.8,93,458,14,235,0.316,9.82,71.99,0.9,0.13,789,0.4,259,5.7
+8341,2023,6,23,18,30,17.7,0.96,0.047,0.62,45,670,191,0,3,-12.8,94,329,18,166,0.314,11.35,77.39,0.91,0.13,790,0.5,267,3.9
+8342,2023,6,23,19,0,15.4,1.01,0.054,0.62,35,500,99,0,0,-7.1,37,475,11,98,0.312,20.63,82.62,0.91,0.13,790,0.5,276,2.2
+8343,2023,6,23,19,30,14.1,1.01,0.054,0.62,17,204,26,0,0,-7.1,17,204,0,26,0.31,22.43,87.58,0.92,0.13,790,0.6,286,1.7
+8344,2023,6,23,20,0,12.8,1.07,0.062,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.309,32.37,92.63,0.92,0.13,791,0.7,297,1.3
+8345,2023,6,23,20,30,12.6,1.07,0.062,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.308,32.8,97.19,0.92,0.13,791,0.8,300,1.3
+8346,2023,6,23,21,0,12.5,1.09,0.065,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.307,35.69,101.42,0.92,0.13,791,0.8,304,1.2
+8347,2023,6,23,21,30,12.5,1.09,0.065,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.307,35.69,105.24,0.92,0.13,791,0.8,305,1.2
+8348,2023,6,23,22,0,12.4,1.09,0.063,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.306,36.2,108.6,0.92,0.13,791,0.8,306,1.2
+8349,2023,6,23,22,30,12.2,1.09,0.063,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.306,36.68,111.41,0.92,0.13,791,0.8,306,1.2
+8350,2023,6,23,23,0,12,1.07,0.059,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.305,37.28,113.61,0.91,0.13,791,0.8,307,1.1
+8351,2023,6,23,23,30,11.7,1.07,0.059,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.304,38.02,115.14,0.91,0.13,791,0.8,310,1.1
+8352,2023,6,24,0,0,11.4,1.05,0.054,0.62,0,0,0,0,0,-2,0,0,0,0,0.304,39.17,115.93,0.91,0.13,791,0.8,313,1.1
+8353,2023,6,24,0,30,11.1,1.05,0.054,0.62,0,0,0,0,0,-2,0,0,0,0,0.302,39.96,115.97,0.91,0.13,791,0.8,316,1.1
+8354,2023,6,24,1,0,10.8,1.04,0.05,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.3,40.98,115.26,0.91,0.13,791,0.8,320,1.1
+8355,2023,6,24,1,30,10.4,1.04,0.05,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.298,42.08,113.81,0.91,0.13,791,0.7,322,1.1
+8356,2023,6,24,2,0,10.1,1.04,0.047,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.297,43.83,111.68,0.91,0.13,791,0.7,324,1.1
+8357,2023,6,24,2,30,9.6,1.04,0.047,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.296,45.37,108.93,0.91,0.13,792,0.7,325,1.1
+8358,2023,6,24,3,0,9.2,1.05,0.046,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.295,47.55,105.62,0.91,0.13,792,0.7,327,1.1
+8359,2023,6,24,3,30,8.9,1.05,0.046,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.295,48.52,101.85,0.91,0.13,792,0.7,329,1
+8360,2023,6,24,4,0,8.5,1.08,0.045,0.62,0,0,0,0,0,-1,0,0,29,0,0.295,51.21,97.66,0.91,0.13,792,0.7,330,1
+8361,2023,6,24,4,30,9.1,1.08,0.045,0.62,0,0,0,0,0,-1,0,0,0,0,0.295,49.18,93.13,0.91,0.13,792,0.7,335,0.9
+8362,2023,6,24,5,0,9.6,1.1,0.045,0.62,15,199,22,0,0,0.2,15,199,0,22,0.295,51.9,88.08,0.91,0.13,793,0.7,340,0.9
+8363,2023,6,24,5,30,11.3,1.1,0.045,0.62,31,492,90,0,0,0.2,31,492,0,90,0.295,46.35,83.17,0.91,0.13,793,0.7,342,1.4
+8364,2023,6,24,6,0,13,1.12,0.045,0.62,42,655,179,0,0,0.1,42,655,0,179,0.295,41.31,77.96,0.91,0.13,793,0.7,344,1.9
+8365,2023,6,24,6,30,14.8,1.12,0.045,0.62,50,757,277,0,0,0.2,50,757,0,277,0.294,36.77,72.57,0.91,0.13,793,0.7,341,2.4
+8366,2023,6,24,7,0,16.6,1.15,0.044,0.62,57,827,379,0,0,0,57,827,0,379,0.294,32.41,67.06,0.91,0.13,793,0.7,338,2.9
+8367,2023,6,24,7,30,17.6,1.15,0.044,0.62,61,876,480,0,0,0,61,876,0,480,0.292,30.43,61.45,0.91,0.13,793,0.8,329,2.7
+8368,2023,6,24,8,0,18.7,1.18,0.044,0.62,66,912,579,0,0,-1.2,66,912,0,579,0.291,25.99,55.78,0.91,0.13,794,0.8,320,2.4
+8369,2023,6,24,8,30,19.7,1.18,0.044,0.62,70,939,672,0,0,-1.2,70,939,0,672,0.289,24.43,50.09,0.91,0.13,794,0.8,305,2.3
+8370,2023,6,24,9,0,20.6,1.21,0.045,0.62,73,960,759,0,0,-2.4,73,960,0,759,0.287,21.21,44.41,0.91,0.13,794,0.8,291,2.2
+8371,2023,6,24,9,30,21.4,1.21,0.045,0.62,76,977,837,0,0,-2.4,76,977,0,837,0.286,20.2,38.81,0.91,0.13,794,0.8,279,2.3
+8372,2023,6,24,10,0,22.3,1.23,0.046,0.62,78,989,904,0,0,-2.9,78,989,0,904,0.285,18.32,33.35,0.91,0.13,793,0.8,267,2.4
+8373,2023,6,24,10,30,23,1.23,0.046,0.62,79,998,959,0,0,-2.9,79,998,0,959,0.285,17.56,28.18,0.91,0.13,793,0.9,260,2.6
+8374,2023,6,24,11,0,23.7,1.32,0.043,0.62,80,1006,1002,0,0,-3.1,80,1006,0,1002,0.284,16.6,23.51,0.91,0.13,793,0.9,252,2.7
+8375,2023,6,24,11,30,24.2,1.32,0.043,0.62,80,1009,1030,0,0,-3.1,80,1009,0,1030,0.284,16.11,19.74,0.91,0.13,793,0.9,248,3
+8376,2023,6,24,12,0,24.7,1.35,0.045,0.62,83,1010,1046,0,0,-3.2,83,1010,0,1046,0.283,15.58,17.49,0.92,0.13,793,0.9,243,3.2
+8377,2023,6,24,12,30,25,1.35,0.045,0.62,84,1008,1046,0,0,-3.2,98,978,0,1031,0.283,15.3,17.36,0.92,0.13,793,0.9,241,3.4
+8378,2023,6,24,13,0,25.3,1.39,0.05,0.62,85,1003,1031,0,0,-3.2,85,1003,0,1031,0.282,15.01,19.4,0.92,0.13,793,0.9,238,3.5
+8379,2023,6,24,13,30,25.5,1.39,0.05,0.62,83,1000,1003,0,0,-3.2,83,1000,0,1003,0.281,14.84,23.03,0.92,0.13,793,0.9,236,3.5
+8380,2023,6,24,14,0,25.7,1.48,0.049,0.62,81,993,961,0,0,-3.3,81,993,0,961,0.28,14.56,27.63,0.92,0.13,792,1,233,3.6
+8381,2023,6,24,14,30,25.6,1.48,0.049,0.62,79,983,906,0,0,-3.3,79,983,0,906,0.279,14.65,32.75,0.92,0.13,792,1,232,3.6
+8382,2023,6,24,15,0,25.6,1.55,0.048,0.62,77,971,840,0,0,-3.6,77,971,0,840,0.278,14.34,38.18,0.92,0.13,792,1,230,3.5
+8383,2023,6,24,15,30,25.3,1.55,0.048,0.62,73,955,763,0,0,-3.6,73,955,0,763,0.278,14.6,43.78,0.92,0.13,792,1,230,3.4
+8384,2023,6,24,16,0,25,1.6,0.048,0.62,71,933,678,0,0,-4,71,933,0,678,0.277,14.43,49.45,0.92,0.13,792,1,230,3.3
+8385,2023,6,24,16,30,24.6,1.6,0.048,0.62,67,904,584,0,0,-4,67,904,0,584,0.276,14.77,55.14,0.92,0.13,792,1,229,3.1
+8386,2023,6,24,17,0,24.2,1.61,0.052,0.62,65,864,486,0,0,-4.3,65,864,0,486,0.276,14.74,60.82,0.92,0.13,792,1,228,2.9
+8387,2023,6,24,17,30,23.3,1.61,0.052,0.62,59,812,384,0,0,-4.3,59,812,0,384,0.276,15.55,66.43,0.92,0.13,792,1,225,2.4
+8388,2023,6,24,18,0,22.5,1.59,0.056,0.62,54,740,283,0,0,-2,54,740,0,283,0.276,19.42,71.96,0.93,0.13,792,1,222,1.8
+8389,2023,6,24,18,30,21.1,1.59,0.056,0.62,45,644,186,0,0,-2,45,644,0,186,0.276,21.14,77.37,0.92,0.13,792,1,209,1.3
+8390,2023,6,24,19,0,19.6,1.6,0.054,0.62,33,495,97,0,0,1.4,33,495,0,97,0.276,29.69,82.6,0.92,0.13,793,1,196,0.8
+8391,2023,6,24,19,30,19.2,1.6,0.054,0.62,17,217,26,0,0,1.4,17,217,0,26,0.277,30.44,87.56,0.92,0.13,793,0.9,175,0.8
+8392,2023,6,24,20,0,18.8,1.6,0.051,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.278,26,92.61,0.92,0.13,793,0.9,154,0.7
+8393,2023,6,24,20,30,18.1,1.6,0.051,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.279,27.16,97.18,0.92,0.13,793,0.9,132,0.7
+8394,2023,6,24,21,0,17.4,1.58,0.05,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.28,28.14,101.41,0.92,0.13,793,0.9,111,0.8
+8395,2023,6,24,21,30,16.5,1.58,0.05,0.62,0,0,0,0,7,-1.2,0,0,0,0,0.28,29.79,105.23,0.92,0.13,793,0.9,98,0.8
+8396,2023,6,24,22,0,15.5,1.56,0.053,0.62,0,0,0,0,7,-0.6,0,0,0,0,0.28,33.39,108.59,0.92,0.13,793,0.9,86,0.9
+8397,2023,6,24,22,30,14.5,1.56,0.053,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.28,35.61,111.41,0.92,0.13,793,0.9,78,0.9
+8398,2023,6,24,23,0,13.6,1.55,0.055,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.28,38.78,113.62,0.92,0.13,793,1,70,0.9
+8399,2023,6,24,23,30,12.9,1.55,0.055,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.28,40.58,115.15,0.92,0.13,793,1,66,0.9
+8400,2023,6,25,0,0,12.2,1.53,0.055,0.62,0,0,0,0,8,0.1,0,0,0,0,0.28,43.5,115.95,0.92,0.13,793,1,63,0.9
+8401,2023,6,25,0,30,11.7,1.53,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.28,44.95,116,0.92,0.13,793,1,60,1
+8402,2023,6,25,1,0,11.3,1.5,0.055,0.62,0,0,0,0,0,0.6,0,0,0,0,0.279,47.86,115.29,0.92,0.13,793,1,58,1.1
+8403,2023,6,25,1,30,11.1,1.5,0.055,0.62,0,0,0,0,0,0.6,0,0,0,0,0.28,48.49,113.84,0.92,0.13,793,0.9,55,1.2
+8404,2023,6,25,2,0,10.8,1.44,0.057,0.62,0,0,0,0,0,1.1,0,0,0,0,0.28,51.2,111.72,0.92,0.13,793,0.9,52,1.3
+8405,2023,6,25,2,30,10.7,1.44,0.057,0.62,0,0,0,0,0,1.1,0,0,0,0,0.281,51.54,108.97,0.92,0.13,793,0.9,49,1.5
+8406,2023,6,25,3,0,10.5,1.4,0.056,0.62,0,0,0,0,0,1.4,0,0,0,0,0.282,53.19,105.67,0.91,0.13,793,0.8,47,1.7
+8407,2023,6,25,3,30,9.9,1.4,0.056,0.62,0,0,0,0,0,1.4,0,0,0,0,0.283,55.36,101.89,0.91,0.13,793,0.8,48,1.6
+8408,2023,6,25,4,0,9.3,1.38,0.054,0.62,0,0,0,0,0,1.4,0,0,0,0,0.283,57.65,97.71,0.91,0.13,793,0.8,50,1.5
+8409,2023,6,25,4,30,9.7,1.38,0.054,0.62,0,0,0,0,0,1.4,0,0,0,0,0.283,56.12,93.18,0.91,0.13,793,0.8,49,1.7
+8410,2023,6,25,5,0,10.1,1.38,0.054,0.62,16,191,22,0,0,1.8,16,191,0,22,0.283,56.38,88.13,0.9,0.13,793,0.7,49,2
+8411,2023,6,25,5,30,11.7,1.38,0.054,0.62,33,478,89,0,0,1.8,33,478,0,89,0.283,50.77,83.22,0.9,0.13,794,0.7,53,2.3
+8412,2023,6,25,6,0,13.3,1.38,0.052,0.62,43,644,177,0,0,0.8,43,644,0,177,0.283,42.55,78.01,0.9,0.13,794,0.7,57,2.7
+8413,2023,6,25,6,30,15.3,1.38,0.052,0.62,51,749,275,0,0,0.8,51,749,0,275,0.283,37.4,72.63,0.9,0.13,794,0.7,61,2.6
+8414,2023,6,25,7,0,17.4,1.39,0.051,0.62,57,824,378,0,0,-1.6,57,824,0,378,0.283,27.41,67.11,0.9,0.13,794,0.7,66,2.5
+8415,2023,6,25,7,30,19,1.39,0.051,0.62,63,875,481,0,0,-1.6,63,875,0,481,0.283,24.8,61.5,0.9,0.13,794,0.7,71,2.1
+8416,2023,6,25,8,0,20.7,1.39,0.05,0.62,68,914,581,0,0,-4,68,914,0,581,0.282,18.62,55.83,0.9,0.13,794,0.6,77,1.7
+8417,2023,6,25,8,30,22,1.39,0.05,0.62,72,943,676,0,0,-4,72,943,0,676,0.281,17.2,50.14,0.9,0.13,794,0.6,85,1.4
+8418,2023,6,25,9,0,23.3,1.39,0.051,0.62,75,965,764,0,0,-5.6,75,965,0,764,0.281,14.08,44.46,0.9,0.13,793,0.6,94,1
+8419,2023,6,25,9,30,24.4,1.39,0.051,0.62,78,982,843,0,0,-5.6,78,982,0,843,0.28,13.18,38.86,0.9,0.13,793,0.6,127,0.9
+8420,2023,6,25,10,0,25.5,1.37,0.052,0.62,81,994,911,0,0,-7,81,994,0,911,0.279,11.16,33.41,0.9,0.13,793,0.6,161,0.9
+8421,2023,6,25,10,30,26.3,1.37,0.052,0.62,82,1007,969,0,0,-7,82,1007,0,969,0.279,10.65,28.23,0.9,0.13,793,0.6,176,1.3
+8422,2023,6,25,11,0,27.2,1.53,0.047,0.62,81,1017,1013,0,0,-7.9,81,1017,0,1013,0.278,9.4,23.56,0.9,0.13,792,0.6,192,1.6
+8423,2023,6,25,11,30,27.7,1.53,0.047,0.62,81,1022,1043,0,0,-7.9,81,1022,0,1043,0.277,9.13,19.79,0.9,0.13,792,0.6,197,2.1
+8424,2023,6,25,12,0,28.3,1.52,0.048,0.62,83,1024,1059,0,0,-8.5,83,1024,0,1059,0.276,8.41,17.52,0.9,0.13,792,0.6,203,2.6
+8425,2023,6,25,12,30,28.6,1.52,0.048,0.62,83,1024,1060,0,0,-8.5,83,1024,0,1060,0.275,8.26,17.38,0.9,0.13,792,0.6,207,3
+8426,2023,6,25,13,0,29,1.52,0.048,0.62,82,1022,1046,0,0,-9.1,82,1022,0,1046,0.274,7.71,19.4,0.9,0.13,791,0.6,211,3.5
+8427,2023,6,25,13,30,29.1,1.52,0.048,0.62,82,1017,1018,0,0,-9.1,82,1017,0,1018,0.274,7.66,23.03,0.9,0.13,791,0.6,214,4
+8428,2023,6,25,14,0,29.3,1.5,0.048,0.62,80,1011,976,0,0,-9.5,80,1011,0,976,0.274,7.32,27.61,0.9,0.13,791,0.6,218,4.4
+8429,2023,6,25,14,30,29.2,1.5,0.048,0.62,78,1002,921,0,0,-9.5,78,1002,0,921,0.274,7.37,32.73,0.9,0.13,791,0.6,220,4.8
+8430,2023,6,25,15,0,29.1,1.43,0.046,0.62,76,990,854,0,0,-9.8,76,990,0,854,0.274,7.26,38.16,0.9,0.13,790,0.6,221,5.1
+8431,2023,6,25,15,30,28.7,1.43,0.046,0.62,73,974,777,0,0,-9.8,73,974,0,777,0.274,7.43,43.75,0.9,0.13,790,0.6,222,5.3
+8432,2023,6,25,16,0,28.3,1.33,0.044,0.62,69,954,690,0,0,-10.1,69,954,0,690,0.274,7.43,49.42,0.9,0.13,790,0.6,224,5.6
+8433,2023,6,25,16,30,27.7,1.33,0.044,0.62,65,928,596,0,0,-10.1,65,928,0,596,0.275,7.7,55.12,0.9,0.13,790,0.6,224,5.6
+8434,2023,6,25,17,0,27,1.21,0.043,0.62,61,893,497,0,0,-10.4,61,893,0,497,0.275,7.83,60.79,0.9,0.13,790,0.6,225,5.6
+8435,2023,6,25,17,30,25.9,1.21,0.043,0.62,57,848,396,0,0,-10.4,57,848,0,396,0.276,8.35,66.41,0.91,0.13,790,0.6,225,5
+8436,2023,6,25,18,0,24.8,1.13,0.042,0.62,51,784,294,0,0,-9.1,51,784,0,294,0.276,9.84,71.94,0.91,0.13,790,0.6,225,4.4
+8437,2023,6,25,18,30,22,1.13,0.042,0.62,43,690,194,0,0,-9.1,43,690,0,194,0.276,11.65,77.35,0.91,0.13,790,0.5,224,3.2
+8438,2023,6,25,19,0,19.3,1.08,0.041,0.62,32,539,102,0,0,-5,32,539,0,102,0.277,18.88,82.58,0.91,0.13,791,0.5,224,2.1
+8439,2023,6,25,19,30,17.8,1.08,0.041,0.62,18,240,28,0,0,-5,18,240,0,28,0.278,20.73,87.55,0.91,0.13,791,0.5,221,1.9
+8440,2023,6,25,20,0,16.3,1.06,0.041,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.278,24.33,92.6,0.91,0.13,791,0.5,219,1.7
+8441,2023,6,25,20,30,15.7,1.06,0.041,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.278,25.28,97.17,0.91,0.13,791,0.5,217,1.7
+8442,2023,6,25,21,0,15.1,1.05,0.042,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.278,26.68,101.4,0.91,0.13,791,0.6,215,1.6
+8443,2023,6,25,21,30,14.6,1.05,0.042,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.278,27.55,105.23,0.91,0.13,791,0.6,215,1.6
+8444,2023,6,25,22,0,14.2,1.04,0.042,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.278,28.42,108.6,0.91,0.13,791,0.6,215,1.6
+8445,2023,6,25,22,30,13.8,1.04,0.042,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.278,29.17,111.42,0.91,0.13,791,0.6,216,1.5
+8446,2023,6,25,23,0,13.5,1.03,0.042,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.278,29.9,113.63,0.91,0.13,790,0.6,218,1.5
+8447,2023,6,25,23,30,13.1,1.03,0.042,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.278,30.68,115.17,0.91,0.13,790,0.6,223,1.4
+8448,2023,6,26,0,0,12.8,1.02,0.042,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.278,31.71,115.98,0.91,0.13,790,0.6,227,1.4
+8449,2023,6,26,0,30,12.4,1.02,0.042,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.278,32.55,116.03,0.91,0.13,790,0.6,234,1.3
+8450,2023,6,26,1,0,12,1.03,0.042,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.279,34.31,115.32,0.91,0.13,790,0.6,241,1.2
+8451,2023,6,26,1,30,11.6,1.03,0.042,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.279,35.22,113.88,0.91,0.13,790,0.6,248,1.1
+8452,2023,6,26,2,0,11.3,1.06,0.043,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.28,37.23,111.76,0.91,0.13,790,0.6,254,1.1
+8453,2023,6,26,2,30,11,1.06,0.043,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.28,37.98,109.01,0.91,0.13,790,0.6,266,1
+8454,2023,6,26,3,0,10.8,1.09,0.044,0.62,0,0,0,0,0,-2,0,0,0,0,0.281,40.75,105.72,0.91,0.13,790,0.6,278,0.9
+8455,2023,6,26,3,30,10.4,1.09,0.044,0.62,0,0,0,0,0,-2,0,0,0,0,0.281,41.85,101.95,0.91,0.13,790,0.6,299,0.8
+8456,2023,6,26,4,0,10.1,1.11,0.044,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.282,46.88,97.76,0.91,0.13,791,0.6,320,0.7
+8457,2023,6,26,4,30,10.5,1.11,0.044,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.282,45.65,93.24,0.91,0.13,791,0.6,161,0.6
+8458,2023,6,26,5,0,10.8,1.11,0.044,0.62,16,198,22,0,0,1.5,16,198,0,22,0.283,52.75,88.18,0.91,0.13,791,0.7,2,0.6
+8459,2023,6,26,5,30,12.6,1.11,0.044,0.62,31,493,89,0,0,1.5,31,493,0,89,0.283,46.85,83.27,0.91,0.13,791,0.7,17,0.9
+8460,2023,6,26,6,0,14.3,1.09,0.045,0.62,42,656,178,0,0,1.8,42,656,0,178,0.284,42.61,78.07,0.91,0.13,791,0.7,31,1.3
+8461,2023,6,26,6,30,16.6,1.09,0.045,0.62,51,759,277,0,0,1.8,51,759,0,277,0.285,36.79,72.68,0.91,0.13,791,0.7,44,0.9
+8462,2023,6,26,7,0,18.8,1.05,0.045,0.62,57,829,379,0,0,-1,57,829,0,379,0.285,26.31,67.17,0.91,0.13,792,0.7,57,0.6
+8463,2023,6,26,7,30,20.6,1.05,0.045,0.62,63,880,482,0,0,-1,63,880,0,482,0.286,23.53,61.56,0.91,0.13,792,0.6,130,1.1
+8464,2023,6,26,8,0,22.4,1.01,0.046,0.62,68,917,582,0,0,-5.4,68,917,0,582,0.287,15.13,55.89,0.91,0.13,792,0.6,204,1.6
+8465,2023,6,26,8,30,23.5,1.01,0.046,0.62,71,946,677,0,0,-5.4,71,946,0,677,0.287,14.14,50.2,0.9,0.13,791,0.6,203,2.2
+8466,2023,6,26,9,0,24.6,0.98,0.046,0.62,75,968,765,0,0,-7.4,75,968,0,765,0.287,11.41,44.52,0.9,0.13,791,0.6,202,2.9
+8467,2023,6,26,9,30,25.4,0.98,0.046,0.62,78,985,844,0,0,-7.4,78,985,0,844,0.287,10.88,38.92,0.9,0.13,791,0.6,202,3.4
+8468,2023,6,26,10,0,26.2,0.98,0.046,0.62,80,999,913,0,0,-8.5,80,999,0,913,0.287,9.5,33.46,0.9,0.13,791,0.6,203,3.9
+8469,2023,6,26,10,30,26.9,0.98,0.046,0.62,79,1013,971,0,0,-8.5,79,1013,0,971,0.287,9.12,28.29,0.9,0.13,791,0.6,204,4.3
+8470,2023,6,26,11,0,27.6,1.02,0.038,0.62,78,1024,1016,0,0,-9.3,78,1024,0,1016,0.287,8.19,23.62,0.9,0.13,790,0.6,206,4.7
+8471,2023,6,26,11,30,28.1,1.02,0.038,0.62,79,1028,1046,0,0,-9.3,79,1028,0,1046,0.287,7.96,19.84,0.9,0.13,790,0.6,208,5.1
+8472,2023,6,26,12,0,28.6,0.98,0.038,0.62,79,1030,1061,0,0,-9.9,79,1030,0,1061,0.287,7.42,17.56,0.9,0.13,790,0.6,210,5.5
+8473,2023,6,26,12,30,28.9,0.98,0.038,0.62,78,1030,1061,0,0,-9.9,78,1030,0,1061,0.287,7.29,17.4,0.9,0.13,789,0.6,212,5.8
+8474,2023,6,26,13,0,29.2,0.93,0.037,0.62,78,1028,1048,0,0,-10.2,78,1028,0,1048,0.287,6.98,19.41,0.91,0.13,789,0.6,213,6.1
+8475,2023,6,26,13,30,29.3,0.93,0.037,0.62,77,1025,1020,0,0,-10.2,77,1025,0,1020,0.287,6.94,23.02,0.9,0.13,789,0.6,214,6.3
+8476,2023,6,26,14,0,29.4,0.89,0.032,0.62,73,1022,979,0,0,-10.5,73,1022,0,979,0.288,6.73,27.6,0.9,0.13,788,0.6,215,6.5
+8477,2023,6,26,14,30,29.3,0.89,0.032,0.62,72,1014,925,0,0,-10.5,72,1014,0,925,0.288,6.77,32.72,0.9,0.13,788,0.6,215,6.6
+8478,2023,6,26,15,0,29.2,0.89,0.032,0.62,70,1003,859,0,0,-10.7,70,1003,0,859,0.288,6.68,38.14,0.9,0.13,788,0.6,215,6.6
+8479,2023,6,26,15,30,28.8,0.89,0.032,0.62,68,988,782,0,0,-10.7,68,988,0,782,0.288,6.84,43.73,0.9,0.13,788,0.6,214,6.4
+8480,2023,6,26,16,0,28.5,0.91,0.033,0.62,66,967,695,0,0,-10.8,66,967,0,695,0.288,6.92,49.4,0.9,0.13,787,0.6,214,6.3
+8481,2023,6,26,16,30,28,0.91,0.033,0.62,62,942,601,0,0,-10.8,62,942,0,601,0.289,7.12,55.09,0.9,0.13,787,0.5,213,6
+8482,2023,6,26,17,0,27.5,0.93,0.034,0.62,59,908,502,0,0,-10.5,59,908,0,502,0.289,7.53,60.77,0.9,0.13,787,0.5,213,5.6
+8483,2023,6,26,17,30,26.3,0.93,0.034,0.62,54,862,399,0,0,-10.5,54,862,0,399,0.289,8.08,66.39,0.9,0.13,787,0.5,212,4.6
+8484,2023,6,26,18,0,25.2,0.97,0.035,0.62,48,796,295,0,0,-7.3,48,796,0,295,0.289,11.07,71.92,0.9,0.13,787,0.5,211,3.6
+8485,2023,6,26,18,30,22.3,0.97,0.035,0.62,41,698,194,0,0,-7.3,41,698,0,194,0.289,13.18,77.33,0.9,0.13,787,0.6,208,2.6
+8486,2023,6,26,19,0,19.5,1.02,0.037,0.62,32,544,102,0,0,-2.3,32,544,0,102,0.289,22.85,82.57,0.9,0.13,787,0.6,205,1.6
+8487,2023,6,26,19,30,18.4,1.02,0.037,0.62,18,243,28,0,0,-2.3,18,243,0,28,0.289,24.47,87.54,0.9,0.13,787,0.6,202,1.5
+8488,2023,6,26,20,0,17.3,1.09,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.289,26.67,92.59,0.9,0.13,787,0.6,199,1.5
+8489,2023,6,26,20,30,16.9,1.09,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.289,27.36,97.16,0.9,0.13,787,0.6,197,1.5
+8490,2023,6,26,21,0,16.5,1.17,0.045,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.289,27.85,101.4,0.9,0.13,787,0.6,194,1.6
+8491,2023,6,26,21,30,16,1.17,0.045,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.289,28.75,105.24,0.9,0.13,787,0.6,195,1.6
+8492,2023,6,26,22,0,15.5,1.23,0.05,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.289,29.32,108.61,0.9,0.13,787,0.6,195,1.6
+8493,2023,6,26,22,30,15,1.23,0.05,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.289,30.27,111.44,0.9,0.13,787,0.7,199,1.7
+8494,2023,6,26,23,0,14.5,1.25,0.053,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.289,30.83,113.65,0.9,0.13,786,0.7,202,1.7
+8495,2023,6,26,23,30,14.1,1.25,0.053,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.289,31.64,115.2,0.91,0.13,786,0.7,208,1.9
+8496,2023,6,27,0,0,13.7,1.22,0.053,0.62,0,0,0,0,8,-3.3,0,0,0,0,0.29,30.64,116.01,0.91,0.13,786,0.7,214,2.1
+8497,2023,6,27,0,30,13.5,1.22,0.053,0.62,0,0,0,0,8,-3.3,0,0,0,0,0.294,31.04,116.07,0.91,0.13,786,0.8,217,2.2
+8498,2023,6,27,1,0,13.3,1.17,0.053,0.62,0,0,0,0,8,-3.9,0,0,0,0,0.297,30.1,115.37,0.91,0.13,786,0.8,220,2.4
+8499,2023,6,27,1,30,13.1,1.17,0.053,0.62,0,0,0,0,6,-3.9,0,0,0,0,0.305,30.49,113.93,0.91,0.13,786,0.8,222,2.5
+8500,2023,6,27,2,0,12.9,1.16,0.058,0.62,0,0,0,0,6,-3.8,0,0,0,0,0.312,30.98,111.81,0.92,0.13,786,0.9,223,2.5
+8501,2023,6,27,2,30,12.7,1.16,0.058,0.62,0,0,0,0,6,-3.8,0,0,0,0,0.314,31.39,109.07,0.91,0.13,786,0.9,225,2.6
+8502,2023,6,27,3,0,12.4,1.12,0.06,0.62,0,0,0,0,8,-3.6,0,0,0,0,0.316,32.55,105.78,0.91,0.13,786,0.8,228,2.6
+8503,2023,6,27,3,30,11.9,1.12,0.06,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.316,33.63,102,0.91,0.13,786,0.8,231,2.5
+8504,2023,6,27,4,0,11.4,1.05,0.058,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.316,35.51,97.82,0.91,0.13,786,0.8,234,2.5
+8505,2023,6,27,4,30,12.1,1.05,0.058,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.316,33.95,93.3,0.91,0.13,787,0.7,237,2.6
+8506,2023,6,27,5,0,12.8,0.98,0.058,0.62,14,152,19,0,0,-3,14,152,0,19,0.316,33.21,88.24,0.91,0.13,787,0.7,239,2.8
+8507,2023,6,27,5,30,14.7,0.98,0.058,0.62,33,452,86,0,0,-3,33,452,0,86,0.316,29.37,83.33,0.91,0.13,787,0.6,241,3.4
+8508,2023,6,27,6,0,16.5,0.94,0.059,0.62,46,624,174,0,0,-3.2,46,624,0,174,0.316,25.71,78.13,0.91,0.13,787,0.6,242,4
+8509,2023,6,27,6,30,18.5,0.94,0.059,0.62,55,733,272,0,0,-3.2,55,733,0,272,0.316,22.67,72.74,0.91,0.13,787,0.6,241,4.5
+8510,2023,6,27,7,0,20.6,0.92,0.059,0.62,62,808,375,0,0,-5.2,62,808,0,375,0.316,17.22,67.23,0.91,0.13,787,0.6,240,5
+8511,2023,6,27,7,30,21.7,0.92,0.059,0.62,68,863,478,0,0,-5.1,68,863,0,478,0.315,16.1,61.62,0.91,0.13,787,0.6,236,5.3
+8512,2023,6,27,8,0,22.9,0.93,0.058,0.62,73,904,579,0,0,-7.1,73,904,0,579,0.314,12.92,55.95,0.91,0.13,787,0.6,233,5.7
+8513,2023,6,27,8,30,23.7,0.93,0.058,0.62,77,934,674,0,0,-7.1,77,934,0,674,0.312,12.31,50.26,0.91,0.13,787,0.6,230,5.8
+8514,2023,6,27,9,0,24.5,0.93,0.058,0.62,81,956,762,0,0,-7.5,81,956,0,762,0.311,11.39,44.58,0.91,0.13,787,0.6,227,5.9
+8515,2023,6,27,9,30,25.2,0.93,0.058,0.62,83,974,840,0,0,-7.5,83,974,0,840,0.309,10.93,38.98,0.91,0.13,787,0.6,226,6
+8516,2023,6,27,10,0,25.9,0.92,0.057,0.62,86,987,909,0,0,-7.8,86,987,0,909,0.308,10.24,33.52,0.91,0.13,787,0.6,224,6.1
+8517,2023,6,27,10,30,26.5,0.92,0.057,0.62,85,1001,966,0,0,-7.8,85,1001,0,966,0.306,9.88,28.35,0.91,0.13,787,0.6,223,6.1
+8518,2023,6,27,11,0,27.1,0.73,0.047,0.62,84,1013,1012,0,0,-8.1,84,1013,0,1012,0.305,9.27,23.68,0.91,0.13,787,0.6,223,6.2
+8519,2023,6,27,11,30,27.6,0.73,0.047,0.62,85,1018,1042,0,0,-8.1,85,1018,0,1042,0.303,9.01,19.9,0.91,0.13,787,0.6,223,6.2
+8520,2023,6,27,12,0,28,0.7,0.046,0.62,85,1021,1058,0,0,-8.4,85,1021,0,1058,0.302,8.61,17.61,0.91,0.13,787,0.6,223,6.3
+8521,2023,6,27,12,30,28.3,0.7,0.046,0.62,85,1021,1059,0,0,-8.4,85,1021,0,1059,0.301,8.46,17.44,0.91,0.13,787,0.6,223,6.3
+8522,2023,6,27,13,0,28.6,0.68,0.045,0.62,83,1020,1045,0,0,-8.7,83,1020,0,1045,0.3,8.15,19.43,0.91,0.13,787,0.6,224,6.3
+8523,2023,6,27,13,30,28.7,0.68,0.045,0.62,83,1016,1018,0,0,-8.7,83,1016,0,1018,0.3,8.11,23.02,0.91,0.13,787,0.6,225,6.2
+8524,2023,6,27,14,0,28.8,0.59,0.041,0.62,80,1011,976,0,0,-8.8,80,1011,0,976,0.299,7.98,27.59,0.91,0.13,786,0.6,226,6.1
+8525,2023,6,27,14,30,28.6,0.59,0.041,0.62,78,1002,921,0,0,-8.8,78,1002,0,921,0.3,8.07,32.71,0.91,0.13,786,0.6,227,6
+8526,2023,6,27,15,0,28.5,0.59,0.041,0.62,76,989,854,0,0,-8.7,76,989,0,854,0.301,8.2,38.13,0.91,0.13,786,0.6,227,5.9
+8527,2023,6,27,15,30,28.1,0.59,0.041,0.62,74,970,775,0,0,-8.7,74,970,0,775,0.301,8.39,43.71,0.92,0.13,786,0.6,228,5.8
+8528,2023,6,27,16,0,27.8,0.61,0.042,0.62,71,947,688,0,0,-8.5,71,947,0,688,0.302,8.66,49.38,0.92,0.13,786,0.7,228,5.6
+8529,2023,6,27,16,30,27.2,0.61,0.042,0.62,68,916,592,0,0,-8.5,68,916,0,592,0.302,8.97,55.08,0.92,0.13,786,0.7,229,5.3
+8530,2023,6,27,17,0,26.7,0.65,0.044,0.62,64,879,493,0,0,-8.3,64,879,0,493,0.303,9.34,60.75,0.92,0.13,786,0.7,229,4.9
+8531,2023,6,27,17,30,25.6,0.65,0.044,0.62,59,827,390,0,0,-8.3,59,827,0,390,0.303,9.98,66.38,0.92,0.13,787,0.7,230,3.9
+8532,2023,6,27,18,0,24.4,0.7,0.047,0.62,53,754,287,0,0,-5.1,53,754,0,287,0.304,13.7,71.91,0.92,0.13,787,0.8,231,2.9
+8533,2023,6,27,18,30,22.2,0.7,0.047,0.62,45,647,187,0,0,-5.1,45,647,0,187,0.304,15.64,77.32,0.92,0.13,787,0.8,241,2
+8534,2023,6,27,19,0,19.9,0.74,0.053,0.62,35,478,97,0,0,0.1,35,478,0,97,0.304,26.58,82.56,0.93,0.13,787,0.8,251,1.1
+8535,2023,6,27,19,30,18.9,0.74,0.053,0.62,18,192,26,0,0,0.1,18,192,0,26,0.305,28.28,87.53,0.93,0.13,787,0.8,281,0.9
+8536,2023,6,27,20,0,17.9,0.77,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.306,30.11,92.59,0.93,0.13,787,0.8,311,0.8
+8537,2023,6,27,20,30,17.4,0.77,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.306,31.11,97.17,0.93,0.13,788,0.9,334,0.9
+8538,2023,6,27,21,0,16.8,0.8,0.055,0.62,0,0,0,0,0,0.5,0,0,0,0,0.306,33.15,101.41,0.93,0.13,788,0.9,356,1.1
+8539,2023,6,27,21,30,16.6,0.8,0.055,0.62,0,0,0,0,0,0.5,0,0,0,0,0.307,33.58,105.25,0.93,0.13,788,0.9,186,1.5
+8540,2023,6,27,22,0,16.3,0.82,0.054,0.62,0,0,0,0,0,1,0,0,0,0,0.307,35.43,108.62,0.92,0.13,788,1,17,2
+8541,2023,6,27,22,30,15.4,0.82,0.054,0.62,0,0,0,0,0,1,0,0,0,0,0.307,37.52,111.46,0.92,0.13,788,1,19,2.1
+8542,2023,6,27,23,0,14.6,0.84,0.053,0.62,0,0,0,0,0,2.1,0,0,0,0,0.308,42.84,113.68,0.92,0.13,788,1,20,2.3
+8543,2023,6,27,23,30,13.8,0.84,0.053,0.62,0,0,0,0,0,2.1,0,0,0,0,0.309,45.11,115.23,0.92,0.13,788,1.1,19,2.1
+8544,2023,6,28,0,0,13.1,0.89,0.054,0.62,0,0,0,0,0,2.9,0,0,0,0,0.31,49.85,116.05,0.92,0.13,788,1.1,17,2
+8545,2023,6,28,0,30,12.7,0.89,0.054,0.62,0,0,0,0,0,2.9,0,0,0,0,0.312,51.17,116.11,0.92,0.13,788,1.1,16,2
+8546,2023,6,28,1,0,12.3,0.96,0.056,0.62,0,0,0,0,7,3.4,0,0,0,0,0.314,54.65,115.41,0.92,0.13,788,1.1,15,2
+8547,2023,6,28,1,30,12,0.96,0.056,0.62,0,0,0,0,7,3.4,0,0,0,0,0.315,55.73,113.98,0.92,0.13,788,1.1,14,2
+8548,2023,6,28,2,0,11.7,1.03,0.058,0.62,0,0,0,0,7,3.9,0,0,0,0,0.316,58.87,111.87,0.92,0.13,788,1.2,13,2.1
+8549,2023,6,28,2,30,11.4,1.03,0.058,0.62,0,0,0,0,8,3.9,0,0,0,0,0.317,60.12,109.13,0.93,0.13,789,1.2,12,2.2
+8550,2023,6,28,3,0,11.2,1.09,0.062,0.62,0,0,0,0,0,4.4,0,0,0,0,0.317,62.84,105.84,0.93,0.13,789,1.2,11,2.3
+8551,2023,6,28,3,30,11,1.09,0.062,0.62,0,0,0,0,0,4.4,0,0,0,0,0.318,63.67,102.07,0.93,0.13,789,1.2,11,2.3
+8552,2023,6,28,4,0,10.8,1.13,0.063,0.62,0,0,0,0,0,4.9,0,0,0,0,0.319,67.1,97.89,0.93,0.13,789,1.2,10,2.4
+8553,2023,6,28,4,30,11.2,1.13,0.063,0.62,0,0,0,0,0,4.9,0,0,0,0,0.319,65.34,93.36,0.93,0.13,789,1.2,12,2.8
+8554,2023,6,28,5,0,11.7,1.16,0.062,0.62,14,135,18,6,3,5.8,10,0,86,10,0.319,66.98,88.3,0.93,0.13,790,1.2,13,3.1
+8555,2023,6,28,5,30,13.1,1.16,0.062,0.62,33,420,81,3,0,5.8,45,175,43,65,0.319,61.11,83.4,0.93,0.13,790,1.3,19,3.5
+8556,2023,6,28,6,0,14.5,1.18,0.064,0.62,46,588,166,0,0,6.2,63,406,0,146,0.319,57.44,78.19,0.93,0.13,790,1.3,24,4
+8557,2023,6,28,6,30,16,1.18,0.064,0.62,55,696,261,0,0,6.2,58,680,0,259,0.318,52.18,72.81,0.93,0.13,790,1.3,30,4.1
+8558,2023,6,28,7,0,17.4,1.19,0.065,0.62,62,771,360,0,0,5.5,81,696,0,350,0.318,45.54,67.29,0.93,0.13,790,1.3,35,4.1
+8559,2023,6,28,7,30,18.6,1.19,0.065,0.62,69,825,460,0,3,5.5,152,587,0,430,0.318,42.24,61.68,0.93,0.13,790,1.3,42,3.7
+8560,2023,6,28,8,0,19.7,1.19,0.066,0.62,75,865,558,0,0,4.8,117,763,0,543,0.318,37.63,56.02,0.93,0.13,790,1.3,48,3.2
+8561,2023,6,28,8,30,20.8,1.19,0.066,0.62,79,896,651,0,0,4.8,193,629,0,595,0.318,35.16,50.32,0.93,0.13,790,1.3,57,2.6
+8562,2023,6,28,9,0,22,1.19,0.066,0.62,82,920,737,0,8,3.9,218,615,0,656,0.317,30.59,44.65,0.93,0.13,790,1.3,65,2
+8563,2023,6,28,9,30,23,1.19,0.066,0.62,86,938,815,0,8,3.9,258,574,0,704,0.316,28.8,39.04,0.93,0.13,790,1.3,82,1.5
+8564,2023,6,28,10,0,24,1.19,0.067,0.62,89,952,882,0,0,2.9,173,814,0,851,0.315,25.2,33.59,0.93,0.13,790,1.3,100,1.1
+8565,2023,6,28,10,30,24.8,1.19,0.067,0.62,89,967,939,0,0,2.9,218,756,0,883,0.315,24.02,28.42,0.93,0.13,790,1.3,132,1.1
+8566,2023,6,28,11,0,25.6,1.1,0.054,0.62,86,981,984,0,0,1.8,86,981,0,984,0.314,21.28,23.74,0.93,0.13,790,1.3,165,1.1
+8567,2023,6,28,11,30,26,1.1,0.054,0.62,87,985,1013,0,0,1.8,97,965,0,1004,0.315,20.76,19.96,0.93,0.13,789,1.3,180,1.4
+8568,2023,6,28,12,0,26.4,1.07,0.055,0.62,88,988,1029,0,0,0.7,138,897,0,993,0.315,18.75,17.66,0.93,0.13,789,1.2,194,1.7
+8569,2023,6,28,12,30,26.8,1.07,0.055,0.62,89,988,1031,0,0,0.7,166,858,0,984,0.316,18.32,17.47,0.93,0.13,789,1.2,200,2
+8570,2023,6,28,13,0,27.2,1.04,0.056,0.62,87,987,1018,0,0,-0.4,215,780,0,950,0.318,16.47,19.45,0.93,0.13,789,1.2,205,2.3
+8571,2023,6,28,13,30,27.5,1.04,0.056,0.62,86,986,993,0,0,-0.4,153,877,0,960,0.319,16.16,23.03,0.93,0.13,788,1.2,211,2.4
+8572,2023,6,28,14,0,27.9,0.78,0.046,0.62,82,983,953,0,0,-1.7,82,983,0,953,0.321,14.4,27.59,0.93,0.13,788,1.1,217,2.5
+8573,2023,6,28,14,30,27.9,0.78,0.046,0.62,80,974,900,0,0,-1.7,102,905,0,864,0.322,14.4,32.7,0.92,0.13,788,1.1,222,2.6
+8574,2023,6,28,15,0,28,0.78,0.046,0.62,77,963,835,0,0,-2.9,95,927,14,824,0.324,13.1,38.12,0.92,0.13,788,1.1,227,2.7
+8575,2023,6,28,15,30,27.7,0.78,0.046,0.62,75,946,759,0,0,-2.9,88,918,0,752,0.325,13.33,43.7,0.92,0.13,788,1.1,234,2.7
+8576,2023,6,28,16,0,27.4,0.81,0.047,0.62,72,924,674,0,0,-3.8,145,739,14,626,0.327,12.7,49.37,0.92,0.13,788,1.1,241,2.7
+8577,2023,6,28,16,30,26.8,0.81,0.047,0.62,69,895,581,0,7,-3.8,225,406,7,457,0.327,13.16,55.07,0.92,0.13,788,1,251,2.6
+8578,2023,6,28,17,0,26.2,0.84,0.049,0.62,64,857,483,0,7,-4.1,188,291,18,330,0.328,13.28,60.74,0.92,0.13,788,1,262,2.4
+8579,2023,6,28,17,30,25.1,0.84,0.049,0.62,60,807,383,0,8,-4.1,124,479,18,316,0.328,14.17,66.37,0.92,0.13,788,1,285,2.3
+8580,2023,6,28,18,0,23.9,0.87,0.049,0.62,53,738,282,0,8,-1.2,90,406,32,216,0.328,18.96,71.9,0.92,0.13,788,1,308,2.3
+8581,2023,6,28,18,30,21.9,0.87,0.049,0.62,44,640,185,0,3,-1.2,79,425,14,172,0.328,21.42,77.31,0.92,0.13,789,1.1,322,2.9
+8582,2023,6,28,19,0,19.8,0.92,0.047,0.62,33,487,96,2,0,2.7,50,295,36,88,0.329,32.13,82.56,0.92,0.13,789,1.1,336,3.5
+8583,2023,6,28,19,30,18.3,0.92,0.047,0.62,17,203,26,2,0,2.7,18,127,25,23,0.328,35.32,87.53,0.92,0.13,790,1.1,340,3.9
+8584,2023,6,28,20,0,16.8,0.99,0.048,0.62,0,0,0,0,0,3.9,0,0,0,0,0.328,42.31,92.59,0.92,0.13,790,1.2,344,4.3
+8585,2023,6,28,20,30,15.9,0.99,0.048,0.62,0,0,0,0,0,3.9,0,0,0,0,0.327,44.85,97.17,0.92,0.13,791,1.3,346,4.4
+8586,2023,6,28,21,0,15.1,1.05,0.051,0.62,0,0,0,0,0,4.9,0,0,0,0,0.327,50.47,101.42,0.92,0.13,791,1.3,347,4.4
+8587,2023,6,28,21,30,14.7,1.05,0.051,0.62,0,0,0,0,3,4.9,0,0,0,0,0.326,51.78,105.26,0.92,0.13,791,1.3,350,4.3
+8588,2023,6,28,22,0,14.2,1.09,0.054,0.62,0,0,0,0,0,5.5,0,0,0,0,0.325,55.76,108.65,0.92,0.13,791,1.4,352,4.2
+8589,2023,6,28,22,30,13.8,1.09,0.054,0.62,0,0,0,0,0,5.5,0,0,0,0,0.325,57.23,111.49,0.92,0.13,791,1.4,354,4
+8590,2023,6,28,23,0,13.4,1.12,0.057,0.62,0,0,0,0,0,5.8,0,0,0,0,0.324,59.85,113.72,0.92,0.13,792,1.4,356,3.8
+8591,2023,6,28,23,30,13.1,1.12,0.057,0.62,0,0,0,0,0,5.8,0,0,0,0,0.323,61.03,115.27,0.92,0.13,792,1.4,358,3.7
+8592,2023,6,29,0,0,12.7,1.17,0.059,0.62,0,0,0,0,0,5.9,0,0,0,0,0.323,63.26,116.09,0.92,0.13,792,1.4,360,3.5
+8593,2023,6,29,0,30,12.3,1.17,0.059,0.62,0,0,0,0,3,5.9,0,0,0,0,0.322,64.85,116.16,0.92,0.13,791,1.4,181,3.3
+8594,2023,6,29,1,0,12,1.21,0.061,0.62,0,0,0,0,3,6,0,0,0,0,0.321,66.72,115.47,0.92,0.13,791,1.4,1,3.2
+8595,2023,6,29,1,30,11.5,1.21,0.061,0.62,0,0,0,0,5,6,0,0,0,0,0.321,68.96,114.04,0.92,0.13,791,1.4,1,2.8
+8596,2023,6,29,2,0,11.1,1.25,0.063,0.62,0,0,0,0,3,6.1,0,0,0,0,0.321,71.35,111.93,0.92,0.13,791,1.4,1,2.4
+8597,2023,6,29,2,30,10.7,1.25,0.063,0.62,0,0,0,0,0,6.1,0,0,0,0,0.321,73.27,109.19,0.92,0.13,791,1.3,1,2.1
+8598,2023,6,29,3,0,10.3,1.27,0.066,0.62,0,0,0,0,0,6.2,0,0,0,0,0.322,75.74,105.9,0.92,0.13,791,1.3,1,1.8
+8599,2023,6,29,3,30,10,1.27,0.066,0.62,0,0,0,0,0,6.2,0,0,0,0,0.322,77.27,102.13,0.92,0.13,791,1.3,1,1.7
+8600,2023,6,29,4,0,9.7,1.29,0.069,0.62,0,0,0,0,5,6.3,0,0,0,0,0.323,79.51,97.96,0.92,0.13,792,1.3,2,1.6
+8601,2023,6,29,4,30,10.4,1.29,0.069,0.62,0,0,0,0,5,6.3,0,0,0,0,0.323,75.88,93.43,0.92,0.13,792,1.3,3,1.9
+8602,2023,6,29,5,0,11,1.3,0.072,0.62,13,126,17,6,5,6.5,9,0,86,9,0.323,73.89,88.36,0.92,0.13,792,1.3,4,2.1
+8603,2023,6,29,5,30,12.7,1.3,0.072,0.62,33,400,79,3,0,6.5,42,192,46,64,0.324,66.08,83.46,0.92,0.13,792,1.3,10,2.5
+8604,2023,6,29,6,0,14.3,1.31,0.077,0.62,47,565,162,0,0,6.5,50,547,0,161,0.324,59.57,78.26,0.92,0.13,792,1.3,16,2.9
+8605,2023,6,29,6,30,16.1,1.31,0.077,0.62,58,672,256,0,0,6.5,58,672,0,256,0.324,53.09,72.88,0.92,0.13,792,1.3,20,2.8
+8606,2023,6,29,7,0,17.9,1.31,0.085,0.62,69,744,355,0,0,5.8,69,744,0,355,0.325,44.91,67.36,0.93,0.13,792,1.3,24,2.7
+8607,2023,6,29,7,30,19.3,1.31,0.085,0.62,77,797,454,0,0,5.8,77,797,0,454,0.324,41.16,61.75,0.93,0.13,792,1.3,26,2.3
+8608,2023,6,29,8,0,20.7,1.3,0.092,0.62,84,835,550,0,0,4.6,90,823,7,549,0.323,34.83,56.08,0.93,0.13,792,1.3,28,1.9
+8609,2023,6,29,8,30,21.7,1.3,0.092,0.62,90,866,642,0,3,4.6,212,628,7,612,0.322,32.77,50.39,0.93,0.13,792,1.3,31,1.5
+8610,2023,6,29,9,0,22.8,1.3,0.097,0.62,96,889,728,0,8,3.5,268,515,0,634,0.321,28.25,44.71,0.94,0.13,792,1.4,34,1.1
+8611,2023,6,29,9,30,23.7,1.3,0.097,0.62,101,909,806,0,8,3.4,290,487,0,668,0.32,26.73,39.11,0.94,0.13,791,1.4,37,0.9
+8612,2023,6,29,10,0,24.6,1.3,0.097,0.62,103,925,873,0,7,2.4,297,221,0,481,0.319,23.59,33.66,0.94,0.13,791,1.4,40,0.6
+8613,2023,6,29,10,30,25.4,1.3,0.097,0.62,101,943,930,0,8,2.4,384,99,0,471,0.319,22.49,28.49,0.93,0.13,791,1.4,50,0.5
+8614,2023,6,29,11,0,26.1,1.32,0.078,0.62,98,960,976,0,8,1.6,366,365,7,700,0.318,20.26,23.81,0.93,0.13,791,1.4,60,0.3
+8615,2023,6,29,11,30,26.7,1.32,0.078,0.62,98,965,1005,0,8,1.6,328,420,0,723,0.318,19.56,20.03,0.93,0.13,791,1.4,104,0.3
+8616,2023,6,29,12,0,27.2,1.31,0.079,0.62,100,967,1021,0,0,0.8,226,768,0,958,0.318,18,17.72,0.93,0.13,790,1.4,149,0.3
+8617,2023,6,29,12,30,27.5,1.31,0.079,0.62,101,966,1022,0,0,0.8,255,663,0,887,0.318,17.69,17.52,0.94,0.13,790,1.4,165,0.5
+8618,2023,6,29,13,0,27.8,1.3,0.084,0.62,101,962,1008,0,8,0.1,380,302,0,665,0.318,16.53,19.48,0.94,0.13,790,1.4,182,0.7
+8619,2023,6,29,13,30,27.7,1.3,0.084,0.62,103,953,980,0,8,0.1,236,685,0,866,0.319,16.63,23.05,0.94,0.13,790,1.4,201,0.8
+8620,2023,6,29,14,0,27.7,1.29,0.095,0.62,105,941,939,0,6,-0.6,307,535,0,781,0.319,15.8,27.6,0.94,0.13,789,1.3,220,0.8
+8621,2023,6,29,14,30,27.4,1.29,0.095,0.62,103,929,885,0,6,-0.6,407,256,0,622,0.32,16.07,32.7,0.94,0.13,789,1.3,256,1.1
+8622,2023,6,29,15,0,27.1,1.29,0.097,0.62,101,913,819,0,6,-0.9,374,298,0,608,0.321,16.02,38.11,0.95,0.13,789,1.3,292,1.4
+8623,2023,6,29,15,30,26.5,1.29,0.097,0.62,97,893,743,0,6,-0.9,362,285,7,568,0.322,16.6,43.7,0.94,0.13,789,1.4,306,2.3
+8624,2023,6,29,16,0,25.9,1.29,0.095,0.62,92,869,658,0,9,-0.3,325,120,0,403,0.324,17.86,49.36,0.94,0.13,789,1.4,321,3.2
+8625,2023,6,29,16,30,25.9,1.29,0.095,0.62,87,837,566,0,9,-0.3,220,39,0,242,0.324,17.86,55.06,0.94,0.13,789,1.4,321,3.2
+8626,2023,6,29,17,0,23.5,1.31,0.093,0.62,80,795,469,0,9,1.5,132,7,0,135,0.326,23.54,60.74,0.95,0.13,790,1.5,333,5.3
+8627,2023,6,29,17,30,21.8,1.31,0.093,0.62,74,736,369,0,9,1.5,143,19,0,151,0.326,26.09,66.36,0.95,0.13,790,1.5,336,5.9
+8628,2023,6,29,18,0,20,1.35,0.096,0.62,65,658,269,0,9,4.2,90,14,0,94,0.327,35.2,71.9,0.95,0.13,791,1.6,340,6.4
+8629,2023,6,29,18,30,18.3,1.35,0.096,0.62,54,547,174,0,6,4.1,66,218,29,114,0.327,39.12,77.31,0.95,0.13,791,1.6,344,6.3
+8630,2023,6,29,19,0,16.7,1.38,0.099,0.62,40,386,90,5,6,6.2,52,136,96,70,0.327,49.8,82.56,0.95,0.13,792,1.7,348,6.2
+8631,2023,6,29,19,30,15.9,1.38,0.099,0.62,18,143,24,7,6,6.2,16,1,100,16,0.328,52.4,87.53,0.95,0.13,792,1.7,174,5.6
+8632,2023,6,29,20,0,15.2,1.4,0.101,0.62,0,0,0,1,6,7,0,0,14,0,0.328,57.85,92.6,0.95,0.13,793,1.7,0,5
+8633,2023,6,29,20,30,14.8,1.4,0.101,0.62,0,0,0,0,6,7,0,0,0,0,0.329,59.36,97.19,0.95,0.13,793,1.7,5,4.4
+8634,2023,6,29,21,0,14.5,1.42,0.1,0.62,0,0,0,0,7,7.4,0,0,0,0,0.329,62.38,101.43,0.95,0.13,793,1.7,10,3.8
+8635,2023,6,29,21,30,14.2,1.42,0.1,0.62,0,0,0,0,7,7.4,0,0,0,0,0.329,63.6,105.29,0.95,0.13,793,1.8,11,3.5
+8636,2023,6,29,22,0,13.9,1.43,0.107,0.62,0,0,0,0,6,7.7,0,0,0,0,0.329,66.19,108.67,0.95,0.13,793,1.8,11,3.1
+8637,2023,6,29,22,30,13.6,1.43,0.107,0.62,0,0,0,0,6,7.7,0,0,0,0,0.329,67.48,111.52,0.95,0.13,793,1.8,10,3
+8638,2023,6,29,23,0,13.3,1.43,0.113,0.62,0,0,0,0,7,7.9,0,0,0,0,0.328,70.03,113.76,0.96,0.13,793,1.8,8,2.9
+8639,2023,6,29,23,30,13.1,1.43,0.113,0.62,0,0,0,0,7,7.9,0,0,0,0,0.328,70.95,115.32,0.96,0.13,793,1.8,10,2.9
+8640,2023,6,30,0,0,12.9,1.44,0.118,0.62,0,0,0,0,8,8.3,0,0,0,0,0.328,73.42,116.15,0.96,0.13,793,1.8,11,2.9
+8641,2023,6,30,0,30,12.6,1.44,0.118,0.62,0,0,0,0,8,8.3,0,0,0,0,0.328,74.88,116.22,0.96,0.13,793,1.8,14,2.8
+8642,2023,6,30,1,0,12.4,1.44,0.12,0.62,0,0,0,0,7,8.6,0,0,0,0,0.328,77.52,115.53,0.96,0.13,793,1.8,16,2.7
+8643,2023,6,30,1,30,12,1.44,0.12,0.62,0,0,0,0,7,8.6,0,0,0,0,0.328,79.58,114.11,0.96,0.13,793,1.8,15,2.5
+8644,2023,6,30,2,0,11.7,1.46,0.115,0.62,0,0,0,0,7,8.8,0,0,0,0,0.329,82.38,112,0.96,0.13,793,1.8,13,2.3
+8645,2023,6,30,2,30,11.5,1.46,0.115,0.62,0,0,0,0,8,8.8,0,0,0,0,0.329,83.48,109.26,0.96,0.13,793,1.8,8,2.3
+8646,2023,6,30,3,0,11.3,1.47,0.112,0.62,0,0,0,0,8,8.9,0,0,0,0,0.33,85.41,105.98,0.95,0.13,793,1.8,3,2.2
+8647,2023,6,30,3,30,11.1,1.47,0.112,0.62,0,0,0,0,0,9,0,0,0,0,0.331,86.66,102.21,0.96,0.13,794,1.8,2,2.3
+8648,2023,6,30,4,0,10.9,1.49,0.109,0.62,0,0,0,0,0,9.1,0,0,0,0,0.332,88.38,98.03,0.96,0.13,794,1.8,0,2.3
+8649,2023,6,30,4,30,11.2,1.49,0.109,0.62,0,0,0,0,0,9.1,0,0,0,0,0.333,86.65,93.5,0.96,0.13,794,1.8,2,2.6
+8650,2023,6,30,5,0,11.6,1.5,0.107,0.62,13,96,16,0,0,9.2,13,96,0,16,0.334,85,88.43,0.96,0.13,794,1.8,4,2.9
+8651,2023,6,30,5,30,12.6,1.5,0.107,0.62,37,342,75,0,0,9.2,37,342,0,75,0.335,79.6,83.54,0.96,0.13,794,1.8,8,3.4
+8652,2023,6,30,6,0,13.6,1.5,0.1,0.62,52,516,156,0,0,8.8,52,516,0,156,0.336,72.79,78.33,0.96,0.13,794,1.8,12,3.8
+8653,2023,6,30,6,30,14.8,1.5,0.1,0.62,63,635,249,0,0,8.8,63,635,0,249,0.336,67.37,72.95,0.95,0.13,794,1.8,12,4
+8654,2023,6,30,7,0,16,1.52,0.092,0.62,70,721,347,0,0,7.6,97,609,0,331,0.337,57.54,67.43,0.95,0.13,794,1.8,12,4.1
+8655,2023,6,30,7,30,16.9,1.52,0.092,0.62,77,781,446,0,0,7.6,113,673,0,431,0.337,54.35,61.82,0.95,0.13,794,1.8,12,4
+8656,2023,6,30,8,0,17.8,1.53,0.087,0.62,82,828,543,0,0,6.7,82,828,0,543,0.337,48.07,56.15,0.95,0.13,794,1.8,12,3.9
+8657,2023,6,30,8,30,18.5,1.53,0.087,0.62,87,861,635,0,0,6.7,87,861,0,635,0.338,46.01,50.46,0.95,0.13,794,1.8,11,3.7
+8658,2023,6,30,9,0,19.1,1.53,0.085,0.62,91,888,721,0,0,6,91,888,0,721,0.338,42.36,44.78,0.95,0.13,794,1.8,11,3.4
+8659,2023,6,30,9,30,19.6,1.53,0.085,0.62,93,909,798,0,0,6,93,909,0,798,0.338,41.07,39.18,0.95,0.13,794,1.8,9,3.2
+8660,2023,6,30,10,0,20,1.53,0.083,0.62,96,925,865,0,0,5.5,96,925,0,865,0.338,38.8,33.73,0.95,0.13,794,1.8,7,3.1
+8661,2023,6,30,10,30,20.5,1.53,0.083,0.62,93,945,923,0,0,5.5,93,945,0,923,0.339,37.62,28.56,0.95,0.13,794,1.7,4,2.9
+8662,2023,6,30,11,0,20.9,1.59,0.059,0.62,87,964,968,0,0,5.2,127,894,0,944,0.339,35.9,23.89,0.95,0.13,794,1.7,1,2.7
+8663,2023,6,30,11,30,21.4,1.59,0.059,0.62,87,971,999,0,8,5.2,361,376,0,714,0.339,34.82,20.1,0.95,0.13,794,1.7,177,2.6
+8664,2023,6,30,12,0,21.9,1.59,0.055,0.62,87,976,1016,0,7,5,328,82,0,406,0.338,33.14,17.79,0.95,0.13,794,1.7,353,2.5
+8665,2023,6,30,12,30,22.2,1.59,0.055,0.62,86,978,1018,0,7,5,392,187,0,570,0.337,32.54,17.57,0.95,0.13,794,1.7,349,2.5
+8666,2023,6,30,13,0,22.6,1.6,0.053,0.62,85,976,1005,0,8,4.6,344,171,0,505,0.336,31.04,19.51,0.95,0.13,794,1.7,345,2.4
+8667,2023,6,30,13,30,22.8,1.6,0.053,0.62,86,970,978,0,8,4.6,340,415,0,722,0.333,30.67,23.07,0.95,0.13,794,1.7,343,2.5
+8668,2023,6,30,14,0,23.1,1.49,0.06,0.62,86,960,937,0,8,4.3,277,578,0,789,0.331,29.4,27.61,0.95,0.13,794,1.6,341,2.6
+8669,2023,6,30,14,30,23.2,1.49,0.06,0.62,84,951,884,0,0,4.3,172,754,0,806,0.328,29.22,32.7,0.94,0.13,794,1.6,343,2.7
+8670,2023,6,30,15,0,23.3,1.5,0.057,0.62,80,940,820,0,0,4,221,642,4,726,0.325,28.42,38.11,0.94,0.13,794,1.6,344,2.7
+8671,2023,6,30,15,30,23.2,1.5,0.057,0.62,78,924,746,0,0,4,85,912,0,744,0.323,28.59,43.69,0.94,0.13,794,1.6,348,2.8
+8672,2023,6,30,16,0,23.1,1.5,0.054,0.62,74,903,662,0,0,3.7,96,852,0,651,0.321,28.28,49.36,0.94,0.13,794,1.6,352,2.8
+8673,2023,6,30,16,30,22.9,1.5,0.054,0.62,69,877,571,0,8,3.7,195,428,11,440,0.32,28.62,55.05,0.94,0.13,794,1.6,178,2.8
+8674,2023,6,30,17,0,22.6,1.51,0.051,0.62,64,842,476,0,0,3.6,100,692,4,438,0.318,28.78,60.73,0.94,0.13,794,1.6,4,2.8
+8675,2023,6,30,17,30,22.1,1.51,0.051,0.62,58,796,377,0,3,3.6,118,578,11,350,0.317,29.66,66.36,0.93,0.13,794,1.5,10,2.6
+8676,2023,6,30,18,0,21.5,1.48,0.048,0.62,51,732,278,0,5,3.9,122,120,0,159,0.315,31.64,71.9,0.93,0.13,794,1.5,15,2.3
+8677,2023,6,30,18,30,19.7,1.48,0.048,0.62,43,639,183,0,5,3.9,53,321,14,124,0.313,35.34,77.31,0.93,0.13,794,1.4,23,1.7
+8678,2023,6,30,19,0,18,1.44,0.044,0.62,32,495,96,0,0,6.5,32,495,0,96,0.311,46.91,82.56,0.92,0.13,794,1.4,31,1
+8679,2023,6,30,19,30,17,1.44,0.044,0.62,17,219,26,0,0,6.5,17,219,0,26,0.311,49.95,87.54,0.92,0.13,794,1.4,40,1.1
+8680,2023,6,30,20,0,16,1.38,0.042,0.62,0,0,0,0,0,5.8,0,0,0,0,0.31,50.64,92.62,0.92,0.13,795,1.3,48,1.1
+8681,2023,6,30,20,30,15.5,1.38,0.042,0.62,0,0,0,0,0,5.8,0,0,0,0,0.311,52.28,97.2,0.91,0.13,795,1.3,56,1.2
+8682,2023,6,30,21,0,15,1.33,0.041,0.62,0,0,0,0,0,5.4,0,0,0,0,0.311,52.71,101.46,0.91,0.13,795,1.2,64,1.2
+8683,2023,6,30,21,30,14.5,1.33,0.041,0.62,0,0,0,0,0,5.4,0,0,0,0,0.311,54.43,105.32,0.91,0.13,795,1.2,71,1.2
+8684,2023,6,30,22,0,14.1,1.29,0.04,0.62,0,0,0,0,0,5.2,0,0,0,0,0.311,55.14,108.71,0.91,0.13,795,1.2,78,1.2
+8685,2023,6,30,22,30,13.7,1.29,0.04,0.62,0,0,0,0,0,5.2,0,0,0,0,0.31,56.59,111.56,0.91,0.13,795,1.2,84,1.2
+8686,2023,6,30,23,0,13.3,1.27,0.039,0.62,0,0,0,0,0,5.1,0,0,0,0,0.309,57.65,113.8,0.91,0.13,795,1.2,91,1.2
+8687,2023,6,30,23,30,13,1.27,0.039,0.62,0,0,0,0,0,5.1,0,0,0,0,0.308,58.79,115.37,0.91,0.13,795,1.2,96,1.2
+8688,2023,7,1,0,0,12.7,1.28,0.039,0.62,0,0,0,0,0,5,0,0,0,0,0.306,59.48,116.21,0.91,0.13,795,1.2,102,1.2
+8689,2023,7,1,0,30,12.5,1.28,0.039,0.62,0,0,0,0,0,5,0,0,0,0,0.305,60.26,116.28,0.91,0.13,795,1.3,107,1.1
+8690,2023,7,1,1,0,12.4,1.31,0.04,0.62,0,0,0,0,0,4.9,0,0,0,0,0.304,60.17,115.6,0.91,0.13,795,1.3,112,1.1
+8691,2023,7,1,1,30,12.2,1.31,0.04,0.62,0,0,0,0,0,4.9,0,0,0,0,0.304,60.97,114.18,0.91,0.13,795,1.4,116,1
+8692,2023,7,1,2,0,12.1,1.34,0.041,0.62,0,0,0,0,0,4.8,0,0,0,0,0.303,60.88,112.07,0.91,0.13,795,1.4,120,0.9
+8693,2023,7,1,2,30,12,1.34,0.041,0.62,0,0,0,0,0,4.8,0,0,0,0,0.303,61.28,109.34,0.91,0.13,795,1.4,122,0.8
+8694,2023,7,1,3,0,11.8,1.35,0.042,0.62,0,0,0,0,0,4.6,0,0,0,0,0.303,61.54,106.05,0.92,0.13,795,1.5,124,0.7
+8695,2023,7,1,3,30,11.6,1.35,0.042,0.62,0,0,0,0,0,4.7,0,0,0,0,0.304,62.43,102.28,0.92,0.13,796,1.5,122,0.6
+8696,2023,7,1,4,0,11.5,1.35,0.042,0.62,0,0,0,0,0,4.5,0,0,0,0,0.304,62.18,98.11,0.92,0.13,796,1.5,120,0.5
+8697,2023,7,1,4,30,11.9,1.35,0.042,0.62,0,0,0,0,0,4.5,0,0,0,0,0.304,60.57,93.58,0.92,0.13,796,1.5,115,0.4
+8698,2023,7,1,5,0,12.4,1.35,0.042,0.62,13,155,17,0,0,5.4,13,155,0,17,0.305,62.21,88.5,0.92,0.13,796,1.5,110,0.3
+8699,2023,7,1,5,30,13.9,1.35,0.042,0.62,29,457,80,0,0,5.4,29,457,0,80,0.305,56.43,83.61,0.92,0.13,796,1.5,111,0.5
+8700,2023,7,1,6,0,15.3,1.35,0.042,0.62,40,621,165,0,0,4.8,40,621,0,165,0.305,49.67,78.41,0.92,0.13,796,1.4,112,0.7
+8701,2023,7,1,6,30,17.4,1.35,0.042,0.62,48,726,260,0,0,4.8,48,726,0,260,0.306,43.48,73.02,0.92,0.13,796,1.4,109,0.5
+8702,2023,7,1,7,0,19.5,1.35,0.041,0.62,54,799,360,0,0,3.9,54,799,0,360,0.306,35.7,67.51,0.92,0.13,796,1.4,106,0.3
+8703,2023,7,1,7,30,20.9,1.35,0.041,0.62,59,851,460,0,0,3.9,59,851,0,460,0.305,32.75,61.9,0.92,0.13,796,1.4,215,0.5
+8704,2023,7,1,8,0,22.2,1.38,0.04,0.62,63,890,558,0,0,3.4,63,890,0,558,0.304,29.14,56.23,0.92,0.13,796,1.4,325,0.7
+8705,2023,7,1,8,30,23.3,1.38,0.04,0.62,66,920,651,0,0,3.4,66,920,0,651,0.303,27.26,50.53,0.92,0.13,796,1.4,311,0.8
+8706,2023,7,1,9,0,24.3,1.41,0.038,0.62,69,944,738,0,0,3.3,69,944,0,738,0.301,25.48,44.86,0.91,0.13,796,1.3,298,1
+8707,2023,7,1,9,30,25.1,1.41,0.038,0.62,71,962,816,0,0,3.3,71,962,0,816,0.3,24.3,39.26,0.91,0.13,796,1.3,287,1.1
+8708,2023,7,1,10,0,26,1.44,0.036,0.62,72,977,884,0,0,3.1,72,977,0,884,0.299,22.69,33.81,0.91,0.13,796,1.3,276,1.2
+8709,2023,7,1,10,30,26.7,1.44,0.036,0.62,75,986,940,0,0,3.1,75,986,0,940,0.298,21.78,28.64,0.91,0.13,796,1.3,270,1.4
+8710,2023,7,1,11,0,27.4,1.39,0.039,0.62,77,992,983,0,0,2.7,77,992,0,983,0.297,20.4,23.97,0.91,0.13,795,1.3,264,1.5
+8711,2023,7,1,11,30,28,1.39,0.039,0.62,77,998,1014,0,0,2.7,136,875,0,957,0.297,19.7,20.18,0.91,0.13,795,1.3,261,1.7
+8712,2023,7,1,12,0,28.6,1.39,0.039,0.62,78,1000,1030,0,0,2.3,190,739,0,893,0.296,18.49,17.87,0.91,0.13,795,1.3,258,1.8
+8713,2023,7,1,12,30,28.9,1.39,0.039,0.62,77,1001,1031,0,0,2.3,151,805,0,918,0.295,18.17,17.63,0.91,0.13,795,1.3,257,1.9
+8714,2023,7,1,13,0,29.3,1.39,0.038,0.62,77,999,1018,0,3,1.9,345,502,0,818,0.294,17.17,19.56,0.91,0.13,794,1.3,257,2
+8715,2023,7,1,13,30,29.5,1.39,0.038,0.62,78,992,991,0,0,1.9,216,646,0,810,0.294,16.97,23.09,0.91,0.13,794,1.3,257,2.1
+8716,2023,7,1,14,0,29.7,1.25,0.047,0.62,81,981,950,0,3,1.4,302,445,0,696,0.294,16.18,27.62,0.91,0.13,794,1.3,257,2.2
+8717,2023,7,1,14,30,29.7,1.25,0.047,0.62,79,971,896,0,3,1.3,331,344,0,620,0.295,16.16,32.71,0.91,0.13,793,1.3,261,2.2
+8718,2023,7,1,15,0,29.6,1.23,0.048,0.62,76,958,830,0,3,0.7,314,306,0,555,0.295,15.53,38.12,0.91,0.13,793,1.3,265,2.3
+8719,2023,7,1,15,30,29.4,1.23,0.048,0.62,74,941,754,0,0,0.7,120,859,0,741,0.296,15.71,43.7,0.91,0.13,793,1.3,269,2.3
+8720,2023,7,1,16,0,29.2,1.23,0.048,0.62,71,919,670,0,0,0.1,91,861,0,652,0.296,15.22,49.36,0.91,0.13,793,1.3,274,2.3
+8721,2023,7,1,16,30,28.7,1.23,0.048,0.62,68,891,578,0,0,0.1,102,803,0,562,0.297,15.66,55.06,0.91,0.13,793,1.3,279,2.2
+8722,2023,7,1,17,0,28.2,1.22,0.048,0.62,63,854,480,0,3,-0.3,160,567,7,437,0.297,15.67,60.74,0.91,0.13,793,1.3,285,2.1
+8723,2023,7,1,17,30,27.3,1.22,0.048,0.62,57,805,380,0,3,-0.3,131,552,7,352,0.298,16.51,66.36,0.91,0.13,793,1.3,290,1.8
+8724,2023,7,1,18,0,26.3,1.23,0.047,0.62,51,739,281,0,0,1.8,58,703,7,276,0.298,20.38,71.9,0.91,0.13,793,1.3,296,1.4
+8725,2023,7,1,18,30,24.2,1.23,0.047,0.62,43,643,184,0,0,1.8,47,624,0,184,0.299,23.08,77.32,0.91,0.13,793,1.3,299,1
+8726,2023,7,1,19,0,22.1,1.25,0.045,0.62,32,494,96,0,0,5.4,32,494,0,96,0.299,33.8,82.57,0.91,0.13,793,1.3,303,0.7
+8727,2023,7,1,19,30,21.1,1.25,0.045,0.62,17,214,26,2,0,5.4,17,192,29,25,0.299,35.97,87.56,0.91,0.13,794,1.3,306,0.7
+8728,2023,7,1,20,0,20.2,1.29,0.043,0.62,0,0,0,1,3,4.2,0,0,11,0,0.299,35,92.63,0.91,0.13,794,1.3,309,0.7
+8729,2023,7,1,20,30,19.7,1.29,0.043,0.62,0,0,0,0,3,4.2,0,0,0,0,0.299,36.1,97.23,0.91,0.13,794,1.3,313,0.7
+8730,2023,7,1,21,0,19.2,1.34,0.041,0.62,0,0,0,0,3,4,0,0,0,0,0.298,36.49,101.49,0.91,0.13,794,1.4,317,0.8
+8731,2023,7,1,21,30,18.7,1.34,0.041,0.62,0,0,0,0,3,4,0,0,0,0,0.297,37.65,105.35,0.91,0.13,794,1.4,323,0.8
+8732,2023,7,1,22,0,18.2,1.36,0.04,0.62,0,0,0,0,5,4.1,0,0,0,0,0.296,39.13,108.75,0.91,0.13,795,1.5,329,0.9
+8733,2023,7,1,22,30,17.8,1.36,0.04,0.62,0,0,0,0,0,4.1,0,0,0,0,0.295,40.13,111.61,0.91,0.13,795,1.5,335,0.9
+8734,2023,7,1,23,0,17.3,1.34,0.038,0.62,0,0,0,0,3,4.5,0,0,0,0,0.294,42.74,113.86,0.9,0.13,795,1.5,341,1
+8735,2023,7,1,23,30,16.8,1.34,0.038,0.62,0,0,0,0,5,4.5,0,0,0,0,0.294,44.11,115.43,0.9,0.13,795,1.5,348,1
+8736,2023,7,2,0,0,16.3,1.28,0.037,0.62,0,0,0,0,3,4.9,0,0,0,0,0.293,46.66,116.27,0.9,0.13,795,1.4,355,1.1
+8737,2023,7,2,0,30,15.8,1.28,0.037,0.62,0,0,0,0,3,4.8,0,0,0,0,0.293,48.11,116.36,0.9,0.13,794,1.4,181,1
+8738,2023,7,2,1,0,15.3,1.19,0.038,0.62,0,0,0,0,0,5.2,0,0,0,0,0.293,50.79,115.68,0.9,0.13,794,1.4,8,1
+8739,2023,7,2,1,30,14.9,1.19,0.038,0.62,0,0,0,0,0,5.2,0,0,0,0,0.293,52.11,114.26,0.9,0.13,794,1.4,13,1
+8740,2023,7,2,2,0,14.5,1.08,0.039,0.62,0,0,0,0,0,5.3,0,0,0,0,0.294,54.03,112.16,0.9,0.13,794,1.3,18,1
+8741,2023,7,2,2,30,14.2,1.08,0.039,0.62,0,0,0,0,0,5.3,0,0,0,0,0.295,55.09,109.42,0.9,0.13,794,1.3,22,1
+8742,2023,7,2,3,0,13.8,0.98,0.042,0.62,0,0,0,0,0,5.3,0,0,0,0,0.295,56.38,106.14,0.9,0.13,794,1.3,26,1
+8743,2023,7,2,3,30,13.6,0.98,0.042,0.62,0,0,0,0,0,5.3,0,0,0,0,0.296,57.12,102.37,0.91,0.13,794,1.3,29,1
+8744,2023,7,2,4,0,13.3,0.9,0.047,0.62,0,0,0,0,0,5.2,0,0,0,0,0.297,57.85,98.19,0.91,0.13,794,1.3,33,1
+8745,2023,7,2,4,30,13.8,0.9,0.047,0.62,0,0,0,0,0,5.2,0,0,0,0,0.299,56.08,93.66,0.91,0.13,795,1.3,38,0.8
+8746,2023,7,2,5,0,14.3,0.87,0.055,0.62,13,124,16,4,5,6,8,5,61,8,0.3,57.37,88.58,0.91,0.13,795,1.4,43,0.7
+8747,2023,7,2,5,30,15.9,0.87,0.055,0.62,32,402,76,5,5,6,38,4,71,38,0.301,51.78,83.69,0.92,0.13,795,1.4,51,0.9
+8748,2023,7,2,6,0,17.5,0.87,0.063,0.62,46,568,159,0,3,5.5,89,127,0,114,0.302,45.34,78.49,0.92,0.13,795,1.5,58,1.1
+8749,2023,7,2,6,30,19.8,0.87,0.063,0.62,56,678,253,0,5,5.5,97,106,0,128,0.302,39.29,73.1,0.92,0.13,795,1.5,207,1.1
+8750,2023,7,2,7,0,22.1,0.88,0.068,0.62,64,751,350,0,0,4.4,108,587,0,332,0.302,31.48,67.58,0.92,0.13,795,1.5,355,1.1
+8751,2023,7,2,7,30,23.5,0.88,0.068,0.62,70,808,450,0,0,4.4,70,808,0,450,0.301,28.93,61.97,0.92,0.13,795,1.5,336,1.6
+8752,2023,7,2,8,0,24.9,0.87,0.067,0.62,76,851,548,0,0,3.9,76,851,0,548,0.3,25.74,56.3,0.92,0.13,795,1.5,318,2.2
+8753,2023,7,2,8,30,25.8,0.87,0.067,0.62,80,884,641,0,0,3.9,80,884,0,641,0.299,24.4,50.61,0.92,0.13,795,1.5,309,2.4
+8754,2023,7,2,9,0,26.7,0.86,0.065,0.62,84,910,728,0,0,3.7,129,815,0,706,0.297,22.8,44.94,0.92,0.13,794,1.5,301,2.7
+8755,2023,7,2,9,30,27.5,0.86,0.065,0.62,86,932,807,0,0,3.7,103,905,0,803,0.296,21.76,39.33,0.92,0.13,794,1.4,297,3
+8756,2023,7,2,10,0,28.3,0.85,0.063,0.62,88,949,876,0,0,3,88,949,0,876,0.294,19.72,33.89,0.92,0.13,794,1.4,293,3.2
+8757,2023,7,2,10,30,29,0.85,0.063,0.62,86,967,934,0,0,3,128,888,0,907,0.293,18.94,28.72,0.92,0.13,794,1.4,291,3.5
+8758,2023,7,2,11,0,29.6,1,0.048,0.62,83,983,981,0,3,2,274,561,0,786,0.291,17.02,24.05,0.92,0.13,794,1.3,289,3.7
+8759,2023,7,2,11,30,30.1,1,0.048,0.62,84,989,1012,0,3,2,276,628,0,865,0.29,16.52,20.26,0.92,0.13,793,1.3,289,3.8
+8760,2023,7,2,12,0,30.6,0.99,0.047,0.62,84,993,1029,0,0,0.9,84,993,0,1029,0.289,14.89,17.95,0.92,0.13,793,1.3,289,4
+8761,2023,7,2,12,30,31,0.99,0.047,0.62,83,996,1032,0,0,0.9,255,685,0,908,0.288,14.56,17.7,0.91,0.13,793,1.2,291,4
+8762,2023,7,2,13,0,31.3,1,0.045,0.62,82,995,1019,0,3,-0.1,286,673,0,920,0.287,13.29,19.6,0.91,0.13,792,1.2,293,4.1
+8763,2023,7,2,13,30,31.4,1,0.045,0.62,83,990,993,0,0,-0.1,158,878,0,965,0.286,13.22,23.13,0.91,0.13,792,1.2,296,4.1
+8764,2023,7,2,14,0,31.5,0.92,0.05,0.62,84,981,953,0,0,-1,188,729,0,834,0.285,12.29,27.64,0.92,0.13,792,1.2,299,4.1
+8765,2023,7,2,14,30,31.4,0.92,0.05,0.62,81,973,900,0,0,-1,168,809,0,849,0.284,12.36,32.73,0.92,0.13,792,1.2,304,4.1
+8766,2023,7,2,15,0,31.3,0.92,0.049,0.62,79,961,835,0,0,-1.8,79,961,0,835,0.283,11.71,38.13,0.92,0.13,791,1.1,309,4.1
+8767,2023,7,2,15,30,31,0.92,0.049,0.62,76,945,759,0,0,-1.8,124,829,0,723,0.282,11.92,43.7,0.92,0.13,791,1.1,313,4.1
+8768,2023,7,2,16,0,30.6,0.95,0.047,0.62,72,925,674,0,0,-2.4,72,925,0,674,0.281,11.67,49.37,0.91,0.13,791,1.1,318,4.1
+8769,2023,7,2,16,30,30,0.95,0.047,0.62,67,900,582,0,0,-2.4,99,808,0,562,0.281,12.07,55.06,0.91,0.13,791,1.1,323,4.1
+8770,2023,7,2,17,0,29.4,1.02,0.043,0.62,61,867,485,0,0,-2.8,61,867,0,485,0.28,12.18,60.74,0.91,0.13,791,1.1,329,4
+8771,2023,7,2,17,30,28.3,1.02,0.043,0.62,56,821,385,0,0,-2.8,56,821,0,385,0.28,12.98,66.37,0.91,0.13,791,1.1,335,3.6
+8772,2023,7,2,18,0,27.1,1.1,0.04,0.62,49,759,285,0,0,-0.6,49,759,0,285,0.28,16.35,71.91,0.91,0.13,792,1.1,341,3.2
+8773,2023,7,2,18,30,24.7,1.1,0.04,0.62,41,666,187,0,0,-0.6,41,666,0,187,0.28,18.84,77.34,0.91,0.13,792,1.1,347,2.6
+8774,2023,7,2,19,0,22.4,1.18,0.037,0.62,31,520,98,0,0,2.1,31,520,0,98,0.281,26.24,82.59,0.91,0.13,792,1.1,352,1.9
+8775,2023,7,2,19,30,21,1.18,0.037,0.62,17,231,27,0,0,2.1,17,231,0,27,0.281,28.57,87.58,0.91,0.13,792,1.1,355,1.9
+8776,2023,7,2,20,0,19.7,1.22,0.035,0.62,0,0,0,0,0,1.7,0,0,0,0,0.282,30.15,92.66,0.91,0.13,793,1.1,357,1.8
+8777,2023,7,2,20,30,19.1,1.22,0.035,0.62,0,0,0,0,0,1.7,0,0,0,0,0.282,31.3,97.26,0.91,0.13,793,1.1,179,1.8
+8778,2023,7,2,21,0,18.4,1.24,0.035,0.62,0,0,0,0,0,1.7,0,0,0,0,0.282,32.61,101.52,0.91,0.13,793,1.1,0,1.7
+8779,2023,7,2,21,30,17.9,1.24,0.035,0.62,0,0,0,0,0,1.7,0,0,0,0,0.282,33.65,105.39,0.91,0.13,793,1.2,1,1.7
+8780,2023,7,2,22,0,17.4,1.25,0.035,0.62,0,0,0,0,0,2,0,0,0,0,0.282,35.59,108.8,0.91,0.13,793,1.2,2,1.7
+8781,2023,7,2,22,30,16.9,1.25,0.035,0.62,0,0,0,0,0,2,0,0,0,0,0.282,36.73,111.66,0.91,0.13,793,1.2,3,1.5
+8782,2023,7,2,23,0,16.4,1.25,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.282,39.77,113.92,0.91,0.13,793,1.2,4,1.4
+8783,2023,7,2,23,30,16,1.25,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.282,40.79,115.5,0.9,0.13,793,1.2,8,1.3
+8784,2023,7,3,0,0,15.6,1.22,0.035,0.62,0,0,0,0,0,3.2,0,0,0,0,0.282,43.34,116.35,0.9,0.13,793,1.2,12,1.2
+8785,2023,7,3,0,30,15.4,1.22,0.035,0.62,0,0,0,0,0,3.2,0,0,0,0,0.282,43.95,116.43,0.9,0.13,794,1.2,18,1.2
+8786,2023,7,3,1,0,15.1,1.17,0.035,0.62,0,0,0,0,0,3.4,0,0,0,0,0.281,45.42,115.76,0.9,0.13,794,1.2,25,1.1
+8787,2023,7,3,1,30,15.1,1.17,0.035,0.62,0,0,0,0,0,3.4,0,0,0,0,0.282,45.42,114.35,0.91,0.13,794,1.3,34,1.1
+8788,2023,7,3,2,0,15,1.1,0.038,0.62,0,0,0,0,0,3.3,0,0,0,0,0.282,45.48,112.24,0.91,0.13,794,1.3,44,1.1
+8789,2023,7,3,2,30,14.8,1.1,0.038,0.62,0,0,0,0,0,3.3,0,0,0,0,0.283,46.07,109.51,0.91,0.13,794,1.3,60,1
+8790,2023,7,3,3,0,14.7,1.04,0.041,0.62,0,0,0,0,0,3.1,0,0,0,0,0.284,45.76,106.22,0.91,0.13,794,1.3,76,1
+8791,2023,7,3,3,30,14.2,1.04,0.041,0.62,0,0,0,0,0,3.1,0,0,0,0,0.284,47.2,102.46,0.91,0.13,793,1.3,93,1
+8792,2023,7,3,4,0,13.7,1.01,0.043,0.62,0,0,0,0,0,2.9,0,0,0,0,0.285,48.18,98.28,0.91,0.13,793,1.3,111,1.1
+8793,2023,7,3,4,30,14.2,1.01,0.043,0.62,0,0,0,0,0,2.9,0,0,0,0,0.285,46.65,93.75,0.91,0.13,793,1.3,123,1.1
+8794,2023,7,3,5,0,14.6,0.98,0.045,0.62,13,139,16,0,0,3.3,13,139,0,16,0.285,46.79,88.66,0.92,0.13,793,1.3,134,1.1
+8795,2023,7,3,5,30,16.4,0.98,0.045,0.62,30,437,77,0,0,3.4,30,437,0,77,0.285,41.71,83.77,0.92,0.13,793,1.3,143,1.7
+8796,2023,7,3,6,0,18.2,0.97,0.047,0.62,42,607,162,0,0,2.2,42,607,0,162,0.286,34.34,78.57,0.92,0.13,793,1.3,151,2.2
+8797,2023,7,3,6,30,20.3,0.97,0.047,0.62,50,714,257,0,0,2.2,50,714,0,257,0.286,30.14,73.18,0.92,0.13,793,1.3,161,2.4
+8798,2023,7,3,7,0,22.4,0.95,0.049,0.62,57,786,356,0,0,1.6,57,786,0,356,0.286,25.29,67.66,0.92,0.13,793,1.3,172,2.6
+8799,2023,7,3,7,30,24.2,0.95,0.049,0.62,64,837,456,0,0,1.6,64,837,0,456,0.286,22.69,62.05,0.92,0.13,793,1.4,186,2.7
+8800,2023,7,3,8,0,26.1,0.92,0.051,0.62,69,875,553,0,0,1.5,69,875,0,553,0.286,20.2,56.38,0.92,0.13,793,1.4,200,2.7
+8801,2023,7,3,8,30,27.1,0.92,0.051,0.62,73,904,646,0,0,1.5,73,904,0,646,0.286,19.05,50.69,0.92,0.13,793,1.4,210,2.8
+8802,2023,7,3,9,0,28.1,0.91,0.052,0.62,77,927,732,0,0,2.1,77,927,0,732,0.287,18.78,45.02,0.92,0.13,793,1.4,220,2.9
+8803,2023,7,3,9,30,29,0.91,0.052,0.62,80,945,810,0,0,2.1,80,945,0,810,0.287,17.83,39.42,0.92,0.13,793,1.4,224,3.1
+8804,2023,7,3,10,0,29.8,0.89,0.053,0.62,84,958,878,0,0,2.3,84,958,0,878,0.287,17.25,33.97,0.92,0.13,793,1.4,227,3.3
+8805,2023,7,3,10,30,30.5,0.89,0.053,0.62,84,970,934,0,0,2.3,84,970,0,934,0.287,16.55,28.8,0.92,0.13,792,1.4,229,3.5
+8806,2023,7,3,11,0,31.2,0.92,0.051,0.62,85,979,978,0,7,2.3,254,630,0,829,0.287,15.83,24.14,0.92,0.13,792,1.4,230,3.7
+8807,2023,7,3,11,30,31.7,0.92,0.051,0.62,85,983,1007,0,7,2.3,461,183,0,633,0.287,15.39,20.35,0.92,0.13,792,1.4,229,3.9
+8808,2023,7,3,12,0,32.2,0.93,0.053,0.62,87,984,1023,0,7,2.1,398,366,0,746,0.287,14.74,18.03,0.92,0.13,791,1.4,228,4.1
+8809,2023,7,3,12,30,32.4,0.93,0.053,0.62,88,982,1023,0,7,2.1,374,403,0,758,0.287,14.58,17.77,0.93,0.13,791,1.4,227,4.3
+8810,2023,7,3,13,0,32.7,0.97,0.058,0.62,89,977,1009,0,7,1.8,473,112,0,578,0.287,14.11,19.66,0.93,0.13,790,1.5,225,4.5
+8811,2023,7,3,13,30,32.6,0.97,0.058,0.62,90,969,981,0,7,1.8,448,94,0,534,0.287,14.19,23.17,0.94,0.13,790,1.5,229,4.7
+8812,2023,7,3,14,0,32.5,1.12,0.063,0.62,90,958,938,0,6,1.8,344,14,0,356,0.287,14.21,27.67,0.94,0.13,790,1.6,232,4.8
+8813,2023,7,3,14,30,31.7,1.12,0.063,0.62,91,939,881,0,7,1.8,400,143,0,520,0.286,14.87,32.74,0.95,0.13,790,1.7,251,4.7
+8814,2023,7,3,15,0,30.9,1.19,0.081,0.62,94,913,812,0,6,2.7,340,64,0,390,0.286,16.58,38.14,0.96,0.13,790,1.8,269,4.6
+8815,2023,7,3,15,30,29.2,1.19,0.081,0.62,92,890,735,0,7,2.7,325,217,0,482,0.286,18.27,43.72,0.96,0.13,790,1.9,296,4.3
+8816,2023,7,3,16,0,27.5,1.3,0.085,0.62,88,861,649,0,8,4.7,221,504,0,549,0.287,23.23,49.38,0.96,0.13,791,2,323,4
+8817,2023,7,3,16,30,26.1,1.3,0.085,0.62,83,827,557,0,7,4.7,206,358,11,411,0.287,25.21,55.07,0.96,0.13,791,2.1,170,3.7
+8818,2023,7,3,17,0,24.8,1.41,0.09,0.62,78,783,461,0,6,6.1,208,102,0,258,0.287,30.14,60.75,0.96,0.13,791,2.1,17,3.4
+8819,2023,7,3,17,30,23.6,1.41,0.09,0.62,70,736,365,0,6,6.1,144,41,0,160,0.287,32.38,66.38,0.96,0.13,791,2.1,40,3.6
+8820,2023,7,3,18,0,22.5,1.5,0.079,0.62,61,672,269,0,6,7.1,75,5,0,77,0.287,36.95,71.93,0.96,0.13,791,2,63,3.8
+8821,2023,7,3,18,30,21,1.5,0.079,0.62,49,581,176,0,6,7.1,43,176,0,82,0.287,40.48,77.35,0.95,0.13,791,1.9,73,4.3
+8822,2023,7,3,19,0,19.4,1.51,0.064,0.62,35,443,92,5,7,8.1,53,60,71,61,0.286,48.06,82.61,0.95,0.13,791,1.9,82,4.7
+8823,2023,7,3,19,30,18.3,1.51,0.064,0.62,17,176,24,7,8,8.1,16,2,100,16,0.286,51.47,87.61,0.95,0.13,791,1.9,83,4.2
+8824,2023,7,3,20,0,17.2,1.43,0.087,0.62,0,0,0,1,7,9.1,0,0,14,0,0.286,58.89,92.69,0.96,0.13,791,2,84,3.6
+8825,2023,7,3,20,30,16.9,1.43,0.087,0.62,0,0,0,0,6,9.1,0,0,0,0,0.286,60.01,97.29,0.96,0.13,791,2,77,3.2
+8826,2023,7,3,21,0,16.6,1.38,0.106,0.62,0,0,0,0,6,9.5,0,0,0,0,0.286,62.88,101.56,0.96,0.13,791,2,69,2.7
+8827,2023,7,3,21,30,16.2,1.38,0.106,0.62,0,0,0,0,7,9.5,0,0,0,0,0.286,64.49,105.44,0.96,0.13,791,2,64,2.6
+8828,2023,7,3,22,0,15.9,1.37,0.101,0.62,0,0,0,0,7,9.7,0,0,0,0,0.287,66.53,108.85,0.95,0.13,791,2,58,2.4
+8829,2023,7,3,22,30,15.6,1.37,0.101,0.62,0,0,0,0,7,9.7,0,0,0,0,0.287,67.81,111.73,0.96,0.13,791,2,54,2.4
+8830,2023,7,3,23,0,15.3,1.34,0.123,0.62,0,0,0,0,7,9.9,0,0,0,0,0.287,70.09,113.99,0.96,0.13,791,2,49,2.3
+8831,2023,7,3,23,30,15,1.34,0.123,0.62,0,0,0,0,0,9.9,0,0,0,0,0.287,71.54,115.57,0.96,0.13,792,2.1,44,2.5
+8832,2023,7,4,0,0,14.8,1.33,0.13,0.62,0,0,0,0,0,10.1,0,0,0,0,0.287,73.64,116.43,0.96,0.13,792,2.1,39,2.8
+8833,2023,7,4,0,30,14.5,1.33,0.13,0.62,0,0,0,0,0,10.1,0,0,0,0,0.288,75.07,116.52,0.96,0.13,792,2.1,39,3
+8834,2023,7,4,1,0,14.3,1.33,0.121,0.62,0,0,0,0,5,10.4,0,0,0,0,0.288,77.21,115.85,0.96,0.13,792,2.1,40,3.2
+8835,2023,7,4,1,30,13.9,1.33,0.121,0.62,0,0,0,0,5,10.4,0,0,0,0,0.288,79.23,114.44,0.95,0.13,792,2.1,40,3.2
+8836,2023,7,4,2,0,13.6,1.33,0.109,0.62,0,0,0,0,5,10.5,0,0,0,0,0.288,81.51,112.34,0.95,0.13,792,2.1,41,3.2
+8837,2023,7,4,2,30,13.2,1.33,0.109,0.62,0,0,0,0,8,10.5,0,0,0,0,0.289,83.66,109.6,0.95,0.13,792,2,41,3.1
+8838,2023,7,4,3,0,12.9,1.32,0.098,0.62,0,0,0,0,5,10.4,0,0,0,0,0.289,84.88,106.32,0.94,0.13,792,2,42,3
+8839,2023,7,4,3,30,12.6,1.32,0.098,0.62,0,0,0,0,5,10.4,0,0,0,0,0.289,86.55,102.55,0.94,0.13,792,2,44,2.9
+8840,2023,7,4,4,0,12.3,1.3,0.098,0.62,0,0,0,0,0,10.2,0,0,0,0,0.29,87.01,98.37,0.94,0.13,792,1.9,47,2.7
+8841,2023,7,4,4,30,12.7,1.3,0.098,0.62,0,0,0,0,0,10.2,0,0,0,0,0.29,84.76,93.84,0.94,0.13,792,1.9,51,3
+8842,2023,7,4,5,0,13.1,1.29,0.098,0.62,12,85,14,2,0,10.1,10,32,29,11,0.291,82.18,88.74,0.94,0.13,792,1.9,54,3.2
+8843,2023,7,4,5,30,14.3,1.29,0.098,0.62,35,329,70,5,3,10.1,45,5,71,46,0.291,76.03,83.86,0.94,0.13,792,1.9,58,3.3
+8844,2023,7,4,6,0,15.5,1.27,0.096,0.62,51,507,151,1,3,9.8,77,14,11,80,0.292,68.99,78.65,0.94,0.13,792,1.9,62,3.5
+8845,2023,7,4,6,30,17.4,1.27,0.096,0.62,63,625,243,0,3,9.8,134,182,0,186,0.292,61.16,73.26,0.94,0.13,792,1.8,63,3.4
+8846,2023,7,4,7,0,19.3,1.26,0.098,0.62,73,706,340,0,3,8.5,166,345,0,297,0.292,49.65,67.75,0.94,0.13,792,1.8,65,3.4
+8847,2023,7,4,7,30,20.9,1.26,0.098,0.62,80,767,439,0,0,8.5,121,651,0,425,0.292,44.99,62.13,0.94,0.13,792,1.8,63,3.2
+8848,2023,7,4,8,0,22.4,1.26,0.095,0.62,85,814,535,0,0,7.2,128,693,0,511,0.292,37.51,56.46,0.94,0.13,792,1.8,62,3
+8849,2023,7,4,8,30,23.4,1.26,0.095,0.62,90,851,628,0,3,7.2,252,489,0,561,0.291,35.31,50.77,0.94,0.13,792,1.8,62,2.6
+8850,2023,7,4,9,0,24.4,1.27,0.09,0.62,93,880,714,0,0,6.5,200,633,7,647,0.291,31.78,45.1,0.94,0.13,792,1.9,61,2.3
+8851,2023,7,4,9,30,25.1,1.27,0.09,0.62,96,901,791,0,0,6.5,96,901,0,791,0.29,30.49,39.5,0.94,0.13,792,1.9,64,1.9
+8852,2023,7,4,10,0,25.7,1.29,0.086,0.62,98,919,859,0,0,6.2,98,919,0,859,0.29,28.79,34.06,0.94,0.13,792,1.9,66,1.5
+8853,2023,7,4,10,30,26.3,1.29,0.086,0.62,96,937,916,0,0,6.2,182,779,0,864,0.289,27.79,28.89,0.94,0.13,792,1.9,72,1.2
+8854,2023,7,4,11,0,26.8,1.45,0.07,0.62,93,952,961,0,0,6.1,189,787,0,907,0.289,26.73,24.23,0.94,0.13,792,1.9,77,0.9
+8855,2023,7,4,11,30,27.2,1.45,0.07,0.62,94,957,991,0,0,6.1,108,939,0,988,0.288,26.08,20.45,0.94,0.13,791,1.9,96,0.6
+8856,2023,7,4,12,0,27.5,1.45,0.072,0.62,97,959,1008,0,0,6,131,910,0,996,0.287,25.51,18.12,0.95,0.13,791,1.9,114,0.4
+8857,2023,7,4,12,30,27.7,1.45,0.072,0.62,96,959,1009,0,0,6,96,959,0,1009,0.287,25.22,17.85,0.95,0.13,791,1.9,176,0.3
+8858,2023,7,4,13,0,27.8,1.45,0.073,0.62,96,957,997,0,0,6,220,710,0,888,0.286,25.01,19.72,0.95,0.13,791,1.9,238,0.3
+8859,2023,7,4,13,30,28,1.45,0.073,0.62,94,953,970,0,7,6,335,493,0,788,0.286,24.72,23.21,0.95,0.13,791,1.9,269,0.6
+8860,2023,7,4,14,0,28.1,1.47,0.072,0.62,93,945,930,0,7,5.8,388,298,0,652,0.286,24.34,27.7,0.95,0.13,790,1.9,300,1
+8861,2023,7,4,14,30,28.1,1.47,0.072,0.62,93,931,876,0,6,5.8,234,85,0,305,0.286,24.34,32.77,0.95,0.13,790,1.9,309,1.7
+8862,2023,7,4,15,0,28,1.46,0.08,0.62,92,912,809,0,6,5.7,190,315,0,438,0.286,24.27,38.16,0.95,0.13,790,1.9,318,2.5
+8863,2023,7,4,15,30,27.2,1.46,0.08,0.62,92,886,732,0,0,5.7,128,817,0,718,0.287,25.43,43.73,0.96,0.13,790,2,326,3.5
+8864,2023,7,4,16,0,26.5,1.43,0.096,0.62,92,852,646,0,7,6.1,169,670,32,605,0.287,27.27,49.4,0.96,0.13,790,2.1,333,4.6
+8865,2023,7,4,16,30,24.9,1.43,0.096,0.62,91,807,553,0,7,6.1,261,275,0,418,0.288,29.98,55.09,0.96,0.13,790,2.1,340,5.3
+8866,2023,7,4,17,0,23.3,1.42,0.12,0.62,89,748,454,0,7,7.3,179,251,14,302,0.288,35.74,60.77,0.96,0.14,791,2.2,348,6.1
+8867,2023,7,4,17,30,21.4,1.42,0.12,0.62,83,679,355,0,8,7.3,133,223,4,222,0.289,40.1,66.4,0.97,0.14,791,2.3,178,6
+8868,2023,7,4,18,0,19.5,1.41,0.14,0.62,76,584,257,0,8,8.4,95,357,29,206,0.29,48.7,71.95,0.97,0.14,792,2.3,7,5.8
+8869,2023,7,4,18,30,17.9,1.41,0.14,0.62,61,475,165,0,6,8.4,60,151,4,93,0.291,53.81,77.38,0.96,0.14,792,2.3,23,5.5
+8870,2023,7,4,19,0,16.3,1.45,0.138,0.62,43,321,84,5,6,9.1,41,57,86,48,0.292,62.41,82.64,0.96,0.14,793,2.3,39,5.1
+8871,2023,7,4,19,30,15.3,1.45,0.138,0.62,17,111,22,7,6,9.1,11,0,100,11,0.294,66.51,87.63,0.95,0.14,793,2.1,48,5.1
+8872,2023,7,4,20,0,14.4,1.49,0.108,0.62,0,0,0,1,6,9.3,0,0,14,0,0.296,71.52,92.73,0.95,0.14,793,2,58,5
+8873,2023,7,4,20,30,13.9,1.49,0.108,0.62,0,0,0,0,6,9.3,0,0,0,0,0.297,73.87,97.34,0.94,0.14,793,1.9,59,4.5
+8874,2023,7,4,21,0,13.5,1.49,0.091,0.62,0,0,0,0,7,9.3,0,0,0,0,0.298,75.73,101.61,0.94,0.14,793,1.8,61,3.9
+8875,2023,7,4,21,30,13.2,1.49,0.091,0.62,0,0,0,0,8,9.3,0,0,0,0,0.298,77.22,105.49,0.94,0.14,793,1.8,60,3.4
+8876,2023,7,4,22,0,12.8,1.48,0.084,0.62,0,0,0,0,8,9.3,0,0,0,0,0.298,79.34,108.91,0.93,0.14,793,1.7,59,2.8
+8877,2023,7,4,22,30,12.5,1.48,0.084,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,80.91,111.79,0.93,0.14,793,1.7,56,2.4
+8878,2023,7,4,23,0,12.2,1.47,0.083,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,82.72,114.06,0.93,0.14,793,1.7,53,1.9
+8879,2023,7,4,23,30,11.9,1.47,0.083,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,84.36,115.65,0.94,0.14,793,1.7,47,1.7
+8880,2023,7,5,0,0,11.5,1.45,0.09,0.62,0,0,0,0,0,9.4,0,0,0,0,0.298,86.67,116.51,0.94,0.14,793,1.7,40,1.5
+8881,2023,7,5,0,30,11.3,1.45,0.09,0.62,0,0,0,0,0,9.4,0,0,0,0,0.298,87.83,116.61,0.94,0.14,793,1.7,34,1.5
+8882,2023,7,5,1,0,11,1.44,0.099,0.62,0,0,0,0,5,9.3,0,0,0,0,0.298,89.32,115.94,0.94,0.14,793,1.7,27,1.5
+8883,2023,7,5,1,30,10.9,1.44,0.099,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,89.91,114.54,0.94,0.14,793,1.7,24,1.8
+8884,2023,7,5,2,0,10.8,1.43,0.107,0.62,0,0,0,0,0,9.2,0,0,0,0,0.298,90,112.43,0.95,0.14,793,1.7,20,2.1
+8885,2023,7,5,2,30,10.6,1.43,0.107,0.62,0,0,0,0,0,9.2,0,0,0,0,0.299,91.2,109.7,0.95,0.14,793,1.7,20,2.2
+8886,2023,7,5,3,0,10.3,1.43,0.112,0.62,0,0,0,0,0,9.1,0,0,0,0,0.299,92.28,106.41,0.95,0.14,793,1.7,20,2.3
+8887,2023,7,5,3,30,10.1,1.43,0.112,0.62,0,0,0,0,0,9.1,0,0,0,0,0.299,93.52,102.64,0.95,0.14,793,1.7,23,2.3
+8888,2023,7,5,4,0,9.9,1.44,0.109,0.62,0,0,0,0,0,9,0,0,0,0,0.299,93.85,98.46,0.95,0.14,793,1.7,25,2.3
+8889,2023,7,5,4,30,10.1,1.44,0.109,0.62,0,0,0,0,3,9,0,0,0,0,0.299,92.6,93.93,0.95,0.14,793,1.7,26,2.5
+8890,2023,7,5,5,0,10.3,1.45,0.102,0.62,12,87,14,5,3,8.8,7,8,68,7,0.299,90.43,88.82,0.94,0.14,793,1.7,27,2.7
+8891,2023,7,5,5,30,11.5,1.45,0.102,0.62,34,337,70,2,0,8.8,36,262,29,64,0.3,83.62,83.95,0.94,0.14,794,1.6,29,2.9
+8892,2023,7,5,6,0,12.6,1.46,0.094,0.62,49,521,151,0,0,8.4,61,404,0,140,0.3,75.64,78.74,0.94,0.14,794,1.6,31,3
+8893,2023,7,5,6,30,14.2,1.46,0.094,0.62,61,643,245,0,3,8.4,104,152,0,148,0.3,68.17,73.35,0.94,0.14,794,1.6,32,2.9
+8894,2023,7,5,7,0,15.8,1.47,0.087,0.62,69,729,344,0,0,7.7,140,412,0,295,0.301,58.77,67.83,0.94,0.14,794,1.6,32,2.8
+8895,2023,7,5,7,30,17.4,1.47,0.087,0.62,76,790,444,0,0,7.7,94,745,0,441,0.301,53.11,62.22,0.94,0.14,794,1.6,27,2.4
+8896,2023,7,5,8,0,19,1.47,0.083,0.62,80,837,541,0,0,6.7,80,837,0,541,0.302,44.64,56.55,0.93,0.14,794,1.5,23,2
+8897,2023,7,5,8,30,20.4,1.47,0.083,0.62,85,871,635,0,0,6.7,85,871,0,635,0.302,40.94,50.86,0.93,0.14,794,1.5,188,1.7
+8898,2023,7,5,9,0,21.8,1.47,0.081,0.62,88,898,721,0,0,5.7,88,898,0,721,0.302,35.19,45.18,0.93,0.14,794,1.5,354,1.3
+8899,2023,7,5,9,30,22.9,1.47,0.081,0.62,92,919,800,0,0,5.7,92,919,0,800,0.302,32.92,39.59,0.93,0.14,794,1.5,336,1.2
+8900,2023,7,5,10,0,24,1.46,0.08,0.62,94,935,868,0,0,5.2,94,935,0,868,0.303,29.69,34.14,0.93,0.14,794,1.5,317,1.1
+8901,2023,7,5,10,30,24.8,1.46,0.08,0.62,95,949,925,0,0,5.2,95,949,0,925,0.303,28.31,28.99,0.93,0.14,794,1.5,293,1.1
+8902,2023,7,5,11,0,25.7,1.47,0.071,0.62,93,962,970,0,0,4.8,130,906,0,956,0.303,26.14,24.33,0.93,0.14,793,1.5,270,1.1
+8903,2023,7,5,11,30,26.4,1.47,0.071,0.62,94,966,999,0,0,4.8,94,966,0,999,0.303,25.08,20.55,0.93,0.14,793,1.5,254,1.3
+8904,2023,7,5,12,0,27,1.44,0.073,0.62,96,966,1014,0,0,4.6,103,932,0,988,0.303,23.87,18.22,0.94,0.14,793,1.5,238,1.6
+8905,2023,7,5,12,30,27.5,1.44,0.073,0.62,98,964,1015,0,7,4.6,183,762,0,908,0.302,23.19,17.94,0.94,0.14,793,1.6,231,1.9
+8906,2023,7,5,13,0,27.9,1.41,0.081,0.62,100,957,1000,0,7,4.6,212,713,0,883,0.302,22.63,19.79,0.94,0.14,792,1.6,225,2.2
+8907,2023,7,5,13,30,28.1,1.41,0.081,0.62,97,953,973,0,7,4.6,292,585,0,829,0.301,22.37,23.26,0.95,0.14,792,1.7,224,2.4
+8908,2023,7,5,14,0,28.4,1.4,0.075,0.62,95,946,932,0,7,4.7,317,494,0,754,0.301,22.15,27.74,0.95,0.14,792,1.7,224,2.6
+8909,2023,7,5,14,30,28.2,1.4,0.075,0.62,96,928,876,0,7,4.7,338,376,0,654,0.3,22.41,32.8,0.96,0.14,792,1.8,227,2.7
+8910,2023,7,5,15,0,28.1,1.37,0.092,0.62,98,903,808,0,7,5,349,247,0,543,0.299,22.89,38.19,0.96,0.14,791,1.9,230,2.8
+8911,2023,7,5,15,30,27.6,1.37,0.092,0.62,102,868,729,0,7,5,255,463,29,589,0.297,23.56,43.75,0.96,0.14,791,2,240,2.8
+8912,2023,7,5,16,0,27,1.35,0.128,0.62,105,822,640,0,7,5.5,255,418,21,527,0.296,25.37,49.42,0.97,0.14,791,2.1,249,2.7
+8913,2023,7,5,16,30,26,1.35,0.128,0.62,106,768,545,0,6,5.5,231,196,7,343,0.295,26.9,55.11,0.97,0.14,791,2.2,261,2.7
+8914,2023,7,5,17,0,25,1.32,0.169,0.62,105,696,445,0,6,6.6,177,41,0,197,0.294,30.76,60.79,0.97,0.14,792,2.3,274,2.6
+8915,2023,7,5,17,30,23.8,1.32,0.169,0.62,92,646,350,0,6,6.6,135,79,0,167,0.294,33.04,66.43,0.97,0.14,792,2.3,279,1.8
+8916,2023,7,5,18,0,22.6,1.37,0.141,0.62,76,582,256,0,8,7.6,113,338,46,218,0.294,38.2,71.98,0.96,0.14,792,2.3,284,1
+8917,2023,7,5,18,30,21.1,1.37,0.141,0.62,57,503,167,0,8,7.6,56,295,32,120,0.295,41.85,77.41,0.95,0.14,792,2.2,192,1.3
+8918,2023,7,5,19,0,19.7,1.41,0.09,0.62,37,388,87,5,7,8.9,54,122,75,70,0.295,49.61,82.67,0.94,0.14,792,2.1,101,1.7
+8919,2023,7,5,19,30,18.5,1.41,0.09,0.62,17,146,23,7,8,8.9,16,10,96,16,0.296,53.52,87.67,0.94,0.14,793,2,99,2.2
+8920,2023,7,5,20,0,17.3,1.41,0.075,0.62,0,0,0,1,3,9.7,0,0,14,0,0.297,61.16,92.77,0.94,0.14,793,1.9,97,2.7
+8921,2023,7,5,20,30,16.5,1.41,0.075,0.62,0,0,0,0,3,9.7,0,0,0,0,0.297,64.33,97.38,0.94,0.14,793,2,95,2.8
+8922,2023,7,5,21,0,15.7,1.39,0.082,0.62,0,0,0,0,3,10.3,0,0,0,0,0.297,70.49,101.67,0.95,0.14,793,2,93,2.9
+8923,2023,7,5,21,30,15.1,1.39,0.082,0.62,0,0,0,0,3,10.3,0,0,0,0,0.297,73.25,105.55,0.95,0.14,793,2,91,2.8
+8924,2023,7,5,22,0,14.5,1.38,0.094,0.62,0,0,0,0,3,10.7,0,0,0,0,0.297,77.77,108.98,0.95,0.14,793,2,89,2.8
+8925,2023,7,5,22,30,14.1,1.38,0.094,0.62,0,0,0,0,3,10.7,0,0,0,0,0.297,79.8,111.87,0.95,0.14,793,1.9,84,2.7
+8926,2023,7,5,23,0,13.7,1.39,0.099,0.62,0,0,0,0,3,10.7,0,0,0,0,0.296,82.09,114.14,0.95,0.14,793,1.9,80,2.7
+8927,2023,7,5,23,30,13.2,1.39,0.099,0.62,0,0,0,0,8,10.7,0,0,0,0,0.296,84.8,115.74,0.95,0.14,793,1.8,76,2.3
+8928,2023,7,6,0,0,12.7,1.41,0.089,0.62,0,0,0,0,0,10.5,0,0,0,0,0.296,86.74,116.61,0.95,0.14,793,1.8,72,2
+8929,2023,7,6,0,30,12.3,1.41,0.089,0.62,0,0,0,0,0,10.5,0,0,0,0,0.296,89.04,116.71,0.94,0.14,793,1.8,69,1.8
+8930,2023,7,6,1,0,11.9,1.4,0.084,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,90.19,116.04,0.94,0.14,792,1.7,66,1.7
+8931,2023,7,6,1,30,11.5,1.4,0.084,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,92.6,114.64,0.94,0.14,792,1.7,57,1.5
+8932,2023,7,6,2,0,11.2,1.39,0.089,0.62,0,0,0,0,0,10.2,0,0,0,0,0.295,93.51,112.54,0.94,0.14,792,1.7,47,1.4
+8933,2023,7,6,2,30,11.1,1.39,0.089,0.62,0,0,0,0,0,10.2,0,0,0,0,0.295,94.13,109.81,0.95,0.14,792,1.7,35,1.6
+8934,2023,7,6,3,0,11,1.38,0.098,0.62,0,0,0,0,0,9.8,0,0,0,0,0.295,92.58,106.52,0.95,0.14,792,1.8,22,1.8
+8935,2023,7,6,3,30,10.9,1.38,0.098,0.62,0,0,0,0,0,9.8,0,0,0,0,0.295,93.19,102.75,0.95,0.14,792,1.7,22,1.7
+8936,2023,7,6,4,0,10.8,1.38,0.107,0.62,0,0,0,0,5,9.3,0,0,0,0,0.296,90.27,98.56,0.95,0.14,792,1.7,22,1.7
+8937,2023,7,6,4,30,11.3,1.38,0.107,0.62,0,0,0,0,5,9.3,0,0,0,0,0.295,87.33,94.03,0.95,0.14,792,1.7,37,1.9
+8938,2023,7,6,5,0,11.7,1.36,0.113,0.62,12,74,13,5,5,9,6,0,71,6,0.295,83.45,88.91,0.95,0.14,793,1.7,51,2.1
+8939,2023,7,6,5,30,12.7,1.36,0.113,0.62,35,318,68,5,5,9,43,20,68,45,0.295,78.06,84.04,0.95,0.14,792,1.7,67,2.5
+8940,2023,7,6,6,0,13.6,1.38,0.095,0.62,51,513,150,0,5,9,72,60,0,84,0.295,73.64,78.83,0.95,0.14,792,1.6,84,2.9
+8941,2023,7,6,6,30,15.8,1.38,0.095,0.62,61,638,243,0,5,9,116,56,0,132,0.295,63.93,73.44,0.94,0.14,792,1.6,89,2.7
+8942,2023,7,6,7,0,17.9,1.39,0.087,0.62,69,727,342,2,8,7.6,152,41,25,167,0.295,50.85,67.92,0.94,0.14,792,1.6,94,2.6
+8943,2023,7,6,7,30,20.1,1.39,0.087,0.62,79,777,440,0,8,7.6,171,242,4,283,0.294,44.35,62.31,0.95,0.14,792,1.6,86,1.7
+8944,2023,7,6,8,0,22.2,1.38,0.104,0.62,89,811,535,0,8,4.9,189,502,0,465,0.293,32.46,56.64,0.95,0.14,792,1.7,79,0.9
+8945,2023,7,6,8,30,23.5,1.38,0.104,0.62,95,842,626,0,0,4.9,95,842,0,626,0.292,30.01,50.94,0.95,0.14,792,1.7,197,0.9
+8946,2023,7,6,9,0,24.7,1.39,0.112,0.62,103,864,711,0,8,3.4,273,363,0,528,0.291,25.15,45.27,0.95,0.14,792,1.7,316,0.9
+8947,2023,7,6,9,30,25.5,1.39,0.112,0.62,106,888,789,0,0,3.4,195,676,0,715,0.289,23.98,39.68,0.95,0.14,792,1.7,320,1.2
+8948,2023,7,6,10,0,26.3,1.41,0.104,0.62,107,909,858,0,0,3.1,117,890,0,853,0.288,22.4,34.24,0.95,0.14,792,1.7,324,1.4
+8949,2023,7,6,10,30,27,1.41,0.104,0.62,106,926,915,0,0,3.1,137,871,0,898,0.287,21.5,29.08,0.95,0.14,792,1.7,323,1.3
+8950,2023,7,6,11,0,27.6,1.59,0.089,0.62,102,942,960,0,0,3.2,129,900,0,948,0.286,20.78,24.43,0.95,0.14,792,1.7,321,1.2
+8951,2023,7,6,11,30,27.9,1.59,0.089,0.62,106,944,989,0,0,3.1,106,944,0,989,0.286,20.39,20.65,0.95,0.14,791,1.7,308,1.2
+8952,2023,7,6,12,0,28.3,1.57,0.101,0.62,110,942,1004,0,0,3.3,161,832,0,951,0.286,20.08,18.33,0.96,0.14,791,1.8,296,1.1
+8953,2023,7,6,12,30,28.4,1.57,0.101,0.62,111,941,1006,0,8,3.3,373,196,0,559,0.285,19.96,18.04,0.96,0.14,791,1.8,295,1.2
+8954,2023,7,6,13,0,28.6,1.57,0.105,0.62,112,937,993,0,8,3.4,333,125,0,451,0.285,19.99,19.87,0.96,0.14,790,1.8,295,1.3
+8955,2023,7,6,13,30,28.6,1.57,0.105,0.62,111,931,966,0,8,3.4,331,93,0,416,0.286,19.99,23.32,0.96,0.14,790,1.8,303,1.4
+8956,2023,7,6,14,0,28.6,1.53,0.107,0.62,109,922,925,0,6,3.6,282,32,0,310,0.286,20.18,27.79,0.96,0.14,790,1.8,311,1.6
+8957,2023,7,6,14,30,28.4,1.53,0.107,0.62,111,905,871,0,6,3.6,197,6,0,202,0.286,20.42,32.84,0.96,0.14,790,1.8,318,2
+8958,2023,7,6,15,0,28.2,1.5,0.119,0.62,110,883,804,0,8,3.6,265,100,0,344,0.286,20.77,38.22,0.96,0.14,789,1.8,325,2.3
+8959,2023,7,6,15,30,27.6,1.5,0.119,0.62,110,854,727,0,0,3.6,200,625,7,651,0.287,21.51,43.78,0.96,0.14,789,1.9,331,2.8
+8960,2023,7,6,16,0,27,1.48,0.142,0.62,110,815,640,0,6,3.9,281,307,18,481,0.287,22.75,49.44,0.96,0.14,789,1.9,337,3.2
+8961,2023,7,6,16,30,26.1,1.48,0.142,0.62,104,778,549,0,6,3.9,231,54,0,262,0.287,23.99,55.14,0.96,0.14,789,2,344,3.6
+8962,2023,7,6,17,0,25.2,1.48,0.142,0.62,96,732,453,0,6,4.6,102,34,4,119,0.287,26.44,60.82,0.96,0.14,789,2,351,3.9
+8963,2023,7,6,17,30,24.1,1.48,0.142,0.62,86,675,356,0,7,4.6,163,312,25,288,0.287,28.23,66.45,0.96,0.14,789,2,179,3.8
+8964,2023,7,6,18,0,23,1.5,0.134,0.62,74,600,259,0,3,5.4,116,417,29,245,0.288,32.06,72.01,0.96,0.14,790,2,8,3.6
+8965,2023,7,6,18,30,21.6,1.5,0.134,0.62,60,486,166,0,8,5.4,70,273,11,129,0.288,34.9,77.44,0.96,0.14,790,2,17,3
+8966,2023,7,6,19,0,20.1,1.49,0.14,0.62,43,323,84,4,0,7.2,51,156,61,71,0.288,43.22,82.71,0.96,0.14,790,2,26,2.3
+8967,2023,7,6,19,30,19.1,1.49,0.14,0.62,17,107,21,6,6,7.2,13,1,93,13,0.288,46.04,87.71,0.96,0.14,791,2,42,2.2
+8968,2023,7,6,20,0,18,1.47,0.14,0.62,0,0,0,0,6,8,0,0,7,0,0.287,52.07,92.82,0.96,0.14,791,2,57,2.1
+8969,2023,7,6,20,30,17.2,1.47,0.14,0.62,0,0,0,0,6,8,0,0,0,0,0.287,54.75,97.44,0.96,0.14,791,1.9,71,2.3
+8970,2023,7,6,21,0,16.4,1.47,0.126,0.62,0,0,0,0,6,8.4,0,0,0,0,0.286,59,101.72,0.96,0.14,791,1.9,86,2.6
+8971,2023,7,6,21,30,15.8,1.47,0.126,0.62,0,0,0,0,6,8.4,0,0,0,0,0.285,61.29,105.62,0.96,0.14,791,1.8,90,2.6
+8972,2023,7,6,22,0,15.2,1.47,0.114,0.62,0,0,0,0,8,8.8,0,0,0,0,0.285,65.4,109.05,0.95,0.14,791,1.7,94,2.6
+8973,2023,7,6,22,30,14.7,1.47,0.114,0.62,0,0,0,0,0,8.8,0,0,0,0,0.284,67.53,111.95,0.95,0.14,791,1.7,93,2.2
+8974,2023,7,6,23,0,14.2,1.49,0.102,0.62,0,0,0,0,0,9,0,0,0,0,0.283,70.86,114.23,0.95,0.14,791,1.6,92,1.9
+8975,2023,7,6,23,30,13.6,1.49,0.102,0.62,0,0,0,0,0,9,0,0,0,0,0.283,73.57,115.83,0.94,0.14,790,1.6,88,1.7
+8976,2023,7,7,0,0,13.1,1.52,0.092,0.62,0,0,0,0,5,9,0,0,0,0,0.282,76.23,116.7,0.94,0.14,790,1.6,85,1.5
+8977,2023,7,7,0,30,12.7,1.52,0.092,0.62,0,0,0,0,5,9,0,0,0,0,0.281,78.25,116.81,0.94,0.14,790,1.5,77,1.4
+8978,2023,7,7,1,0,12.2,1.54,0.085,0.62,0,0,0,0,3,8.9,0,0,0,0,0.28,80.27,116.15,0.93,0.14,790,1.5,69,1.3
+8979,2023,7,7,1,30,11.9,1.54,0.085,0.62,0,0,0,0,0,8.9,0,0,0,0,0.279,81.97,114.75,0.93,0.14,791,1.5,62,1.4
+8980,2023,7,7,2,0,11.6,1.55,0.085,0.62,0,0,0,0,0,8.8,0,0,0,0,0.278,82.72,112.65,0.93,0.14,791,1.5,55,1.5
+8981,2023,7,7,2,30,11.3,1.55,0.085,0.62,0,0,0,0,0,8.8,0,0,0,0,0.278,84.37,109.92,0.93,0.14,791,1.6,54,1.5
+8982,2023,7,7,3,0,11,1.54,0.088,0.62,0,0,0,0,0,8.6,0,0,0,0,0.277,85.42,106.63,0.93,0.14,791,1.6,53,1.6
+8983,2023,7,7,3,30,10.7,1.54,0.088,0.62,0,0,0,0,0,8.6,0,0,0,0,0.277,87.13,102.85,0.93,0.14,791,1.6,53,1.5
+8984,2023,7,7,4,0,10.4,1.53,0.091,0.62,0,0,0,0,0,8.5,0,0,0,0,0.277,88.17,98.67,0.93,0.14,791,1.6,53,1.5
+8985,2023,7,7,4,30,10.9,1.53,0.091,0.62,0,0,0,0,0,8.5,0,0,0,0,0.276,85.29,94.13,0.94,0.14,791,1.6,52,1.9
+8986,2023,7,7,5,0,11.5,1.51,0.095,0.62,10,79,11,0,0,8.5,10,79,4,11,0.276,82.07,89,0.94,0.14,791,1.6,50,2.3
+8987,2023,7,7,5,30,12.7,1.51,0.095,0.62,34,336,68,0,0,8.5,36,232,0,60,0.277,75.85,84.14,0.94,0.14,791,1.6,49,2.6
+8988,2023,7,7,6,0,14,1.5,0.097,0.62,50,514,149,0,0,8.2,60,418,0,140,0.277,67.91,78.93,0.94,0.14,791,1.6,47,3
+8989,2023,7,7,6,30,15.9,1.5,0.097,0.62,62,634,242,0,0,8.2,84,486,0,222,0.277,60.11,73.53,0.94,0.14,791,1.5,49,3.1
+8990,2023,7,7,7,0,17.9,1.5,0.097,0.62,72,717,340,0,0,5.8,138,439,0,302,0.277,45.02,68.01,0.94,0.14,791,1.5,50,3.3
+8991,2023,7,7,7,30,19.5,1.5,0.097,0.62,79,780,440,0,0,5.8,79,780,0,440,0.277,40.75,62.4,0.94,0.14,791,1.5,49,3.2
+8992,2023,7,7,8,0,21.1,1.51,0.093,0.62,85,828,539,0,0,3.5,85,828,0,539,0.277,31.32,56.73,0.94,0.14,791,1.5,48,3.1
+8993,2023,7,7,8,30,22.4,1.51,0.093,0.62,88,865,632,0,0,3.5,88,865,0,632,0.277,28.94,51.03,0.94,0.14,791,1.5,46,3.1
+8994,2023,7,7,9,0,23.6,1.52,0.088,0.62,92,894,720,0,0,2.3,92,894,0,720,0.276,24.74,45.36,0.94,0.14,791,1.4,44,3
+8995,2023,7,7,9,30,24.5,1.52,0.088,0.62,95,916,799,0,0,2.3,95,916,0,799,0.276,23.44,39.77,0.94,0.14,791,1.4,43,3
+8996,2023,7,7,10,0,25.5,1.52,0.084,0.62,97,934,868,0,0,1.6,97,934,0,868,0.276,21.12,34.33,0.93,0.14,791,1.4,42,2.9
+8997,2023,7,7,10,30,26.2,1.52,0.084,0.62,96,951,926,0,0,1.6,96,951,0,926,0.276,20.26,29.18,0.93,0.14,791,1.4,42,2.9
+8998,2023,7,7,11,0,26.9,1.53,0.07,0.62,93,966,972,0,0,1.3,93,966,0,972,0.276,19.02,24.54,0.93,0.14,791,1.4,43,2.9
+8999,2023,7,7,11,30,27.4,1.53,0.07,0.62,93,973,1003,0,0,1.3,93,973,0,1003,0.275,18.45,20.76,0.93,0.14,790,1.4,44,2.8
+9000,2023,7,7,12,0,27.9,1.54,0.067,0.62,92,978,1020,0,0,1.3,92,978,0,1020,0.275,17.83,18.44,0.93,0.14,790,1.4,46,2.8
+9001,2023,7,7,12,30,28.1,1.54,0.067,0.62,92,979,1022,0,0,1.3,92,979,0,1022,0.275,17.62,18.14,0.93,0.14,790,1.4,48,2.7
+9002,2023,7,7,13,0,28.4,1.54,0.065,0.62,92,977,1010,0,0,1.2,92,977,0,1010,0.275,17.3,19.95,0.93,0.14,790,1.4,49,2.7
+9003,2023,7,7,13,30,28.5,1.54,0.065,0.62,90,973,983,0,0,1.2,90,973,0,983,0.276,17.18,23.39,0.93,0.14,789,1.4,48,2.7
+9004,2023,7,7,14,0,28.7,1.54,0.065,0.62,89,966,943,0,0,1.2,89,966,0,943,0.276,16.89,27.84,0.93,0.14,789,1.4,47,2.7
+9005,2023,7,7,14,30,28.5,1.54,0.065,0.62,87,955,889,0,0,1.1,87,955,0,889,0.277,17.09,32.88,0.93,0.14,789,1.4,44,2.7
+9006,2023,7,7,15,0,28.4,1.54,0.067,0.62,85,940,823,0,0,1,122,858,0,796,0.277,16.96,38.25,0.93,0.14,789,1.4,40,2.8
+9007,2023,7,7,15,30,28,1.54,0.067,0.62,83,920,747,0,0,1,211,565,0,619,0.277,17.35,43.81,0.93,0.14,789,1.4,34,2.9
+9008,2023,7,7,16,0,27.6,1.55,0.069,0.62,80,896,662,0,0,0.8,89,866,0,652,0.276,17.6,49.47,0.93,0.14,789,1.4,29,3
+9009,2023,7,7,16,30,26.9,1.55,0.069,0.62,75,867,570,0,0,0.8,75,867,0,570,0.276,18.33,55.17,0.93,0.14,789,1.4,25,3.3
+9010,2023,7,7,17,0,26.3,1.56,0.067,0.62,69,829,473,0,0,0.9,69,829,0,473,0.276,19.07,60.85,0.93,0.13,789,1.4,21,3.6
+9011,2023,7,7,17,30,25.3,1.56,0.067,0.62,64,778,374,0,0,0.9,64,778,0,374,0.276,20.23,66.49,0.93,0.13,789,1.4,20,3.8
+9012,2023,7,7,18,0,24.3,1.57,0.065,0.62,55,709,274,0,0,1.4,55,709,0,274,0.277,22.26,72.04,0.93,0.13,789,1.4,19,4
+9013,2023,7,7,18,30,22.6,1.57,0.065,0.62,47,606,178,1,3,1.4,76,340,18,150,0.277,24.65,77.48,0.93,0.13,789,1.4,18,3.7
+9014,2023,7,7,19,0,20.8,1.58,0.066,0.62,34,448,91,4,3,2.8,52,110,50,66,0.277,30.42,82.75,0.93,0.13,789,1.5,18,3.4
+9015,2023,7,7,19,30,19.8,1.58,0.066,0.62,17,180,24,0,0,2.8,16,172,7,23,0.278,32.35,87.76,0.93,0.13,789,1.5,18,3.3
+9016,2023,7,7,20,0,18.7,1.6,0.071,0.62,0,0,0,0,0,3.3,0,0,0,0,0.278,36.04,92.87,0.93,0.13,790,1.5,19,3.1
+9017,2023,7,7,20,30,18.1,1.6,0.071,0.62,0,0,0,0,0,3.3,0,0,0,0,0.279,37.41,97.49,0.93,0.13,790,1.5,21,2.9
+9018,2023,7,7,21,0,17.4,1.61,0.075,0.62,0,0,0,0,0,4,0,0,0,0,0.279,40.86,101.79,0.93,0.13,790,1.5,23,2.7
+9019,2023,7,7,21,30,16.7,1.61,0.075,0.62,0,0,0,0,3,4,0,0,0,0,0.279,42.71,105.69,0.93,0.13,790,1.5,26,2.4
+9020,2023,7,7,22,0,16,1.6,0.079,0.62,0,0,0,0,0,4.7,0,0,0,0,0.279,47.19,109.13,0.94,0.13,790,1.5,29,2
+9021,2023,7,7,22,30,15.5,1.6,0.079,0.62,0,0,0,0,3,4.7,0,0,0,0,0.28,48.72,112.03,0.94,0.13,790,1.5,32,1.8
+9022,2023,7,7,23,0,15,1.57,0.084,0.62,0,0,0,0,3,5.5,0,0,0,0,0.28,52.87,114.32,0.94,0.13,790,1.5,34,1.5
+9023,2023,7,7,23,30,14.6,1.57,0.084,0.62,0,0,0,0,5,5.4,0,0,0,0,0.28,54.18,115.93,0.94,0.13,789,1.5,37,1.3
+9024,2023,7,8,0,0,14.2,1.56,0.085,0.62,0,0,0,0,3,5.8,0,0,0,0,0.28,57.1,116.81,0.94,0.13,789,1.5,39,1.2
+9025,2023,7,8,0,30,13.8,1.56,0.085,0.62,0,0,0,0,0,5.8,0,0,0,0,0.279,58.6,116.92,0.94,0.13,789,1.5,40,1.2
+9026,2023,7,8,1,0,13.5,1.57,0.081,0.62,0,0,0,0,3,6,0,0,0,0,0.279,60.42,116.27,0.94,0.13,789,1.5,40,1.2
+9027,2023,7,8,1,30,13,1.57,0.081,0.62,0,0,0,0,0,6,0,0,0,0,0.279,62.41,114.86,0.93,0.13,789,1.5,40,1.3
+9028,2023,7,8,2,0,12.6,1.58,0.076,0.62,0,0,0,0,0,6.1,0,0,0,0,0.279,64.79,112.76,0.93,0.13,789,1.5,40,1.4
+9029,2023,7,8,2,30,12.2,1.58,0.076,0.62,0,0,0,0,0,6.1,0,0,0,0,0.279,66.51,110.03,0.93,0.13,789,1.4,41,1.5
+9030,2023,7,8,3,0,11.9,1.58,0.072,0.62,0,0,0,0,0,6.4,0,0,0,0,0.279,68.93,106.74,0.93,0.13,789,1.4,41,1.6
+9031,2023,7,8,3,30,11.5,1.58,0.072,0.62,0,0,0,0,0,6.4,0,0,0,0,0.279,70.77,102.96,0.92,0.13,789,1.4,41,1.6
+9032,2023,7,8,4,0,11.2,1.58,0.071,0.62,0,0,0,0,0,6.6,0,0,29,0,0.279,73.21,98.77,0.92,0.13,789,1.4,41,1.7
+9033,2023,7,8,4,30,11.8,1.58,0.071,0.62,0,0,0,0,0,6.6,0,0,0,0,0.279,70.37,94.24,0.92,0.13,789,1.4,40,2
+9034,2023,7,8,5,0,12.3,1.57,0.072,0.62,10,90,11,1,0,6.9,9,66,11,10,0.278,69.53,89.1,0.92,0.13,790,1.4,39,2.4
+9035,2023,7,8,5,30,13.7,1.57,0.072,0.62,31,378,69,0,0,6.9,31,369,4,68,0.279,63.47,84.24,0.92,0.13,790,1.4,41,2.6
+9036,2023,7,8,6,0,15.2,1.56,0.072,0.62,45,557,151,0,0,6.7,45,557,0,151,0.279,57,79.03,0.92,0.13,790,1.4,44,2.8
+9037,2023,7,8,6,30,17.3,1.56,0.072,0.62,55,674,245,0,0,6.7,55,674,0,245,0.279,49.88,73.63,0.92,0.13,790,1.4,46,2.9
+9038,2023,7,8,7,0,19.4,1.56,0.071,0.62,63,755,344,0,0,5.2,63,755,0,344,0.28,39.34,68.11,0.92,0.13,790,1.4,49,3
+9039,2023,7,8,7,30,21,1.56,0.071,0.62,70,812,445,0,0,5.2,70,812,0,445,0.28,35.65,62.49,0.92,0.13,790,1.4,50,2.7
+9040,2023,7,8,8,0,22.6,1.55,0.07,0.62,75,855,543,0,0,3.2,75,855,0,543,0.28,27.99,56.82,0.92,0.13,790,1.4,51,2.5
+9041,2023,7,8,8,30,23.7,1.55,0.07,0.62,79,887,636,0,0,3.2,79,887,0,636,0.279,26.19,51.13,0.92,0.13,790,1.4,52,2.2
+9042,2023,7,8,9,0,24.7,1.56,0.07,0.62,83,913,723,0,0,2.3,83,913,0,723,0.279,23.25,45.46,0.92,0.13,790,1.4,52,2
+9043,2023,7,8,9,30,25.6,1.56,0.07,0.62,87,932,802,0,0,2.3,87,932,0,802,0.278,22.04,39.87,0.92,0.13,790,1.4,55,1.8
+9044,2023,7,8,10,0,26.4,1.56,0.071,0.62,89,947,870,0,0,1.9,89,947,0,870,0.277,20.44,34.43,0.92,0.13,790,1.4,57,1.6
+9045,2023,7,8,10,30,27.1,1.56,0.071,0.62,90,960,927,0,0,1.9,90,960,0,927,0.276,19.62,29.29,0.92,0.13,790,1.4,57,1.4
+9046,2023,7,8,11,0,27.7,1.51,0.066,0.62,90,969,971,0,0,1.7,90,969,0,971,0.276,18.62,24.65,0.92,0.13,790,1.4,58,1.2
+9047,2023,7,8,11,30,28.2,1.51,0.066,0.62,92,973,1001,0,0,1.7,92,973,0,1001,0.275,18.06,20.88,0.92,0.13,789,1.4,58,0.9
+9048,2023,7,8,12,0,28.8,1.5,0.07,0.62,95,973,1017,0,0,1.5,95,973,0,1017,0.274,17.23,18.56,0.93,0.13,789,1.4,59,0.7
+9049,2023,7,8,12,30,29,1.5,0.07,0.62,96,971,1018,0,0,1.5,96,971,0,1018,0.273,17.03,18.24,0.93,0.13,789,1.4,56,0.4
+9050,2023,7,8,13,0,29.3,1.49,0.077,0.62,97,966,1005,0,0,1.4,97,966,0,1005,0.272,16.57,20.04,0.93,0.13,789,1.4,53,0.2
+9051,2023,7,8,13,30,29.4,1.49,0.077,0.62,97,961,979,0,0,1.4,97,961,0,979,0.271,16.47,23.46,0.94,0.13,789,1.4,169,0.4
+9052,2023,7,8,14,0,29.5,1.45,0.079,0.62,97,952,938,0,0,1.2,107,928,0,927,0.27,16.18,27.9,0.94,0.13,789,1.4,285,0.7
+9053,2023,7,8,14,30,29.4,1.45,0.079,0.62,96,939,884,0,8,1.2,287,364,0,593,0.27,16.25,32.92,0.94,0.13,788,1.5,294,1.2
+9054,2023,7,8,15,0,29.2,1.42,0.084,0.62,94,922,818,0,8,1,253,45,0,288,0.27,16.22,38.29,0.94,0.13,788,1.5,303,1.6
+9055,2023,7,8,15,30,28.7,1.42,0.084,0.62,91,901,741,0,8,1,146,54,0,185,0.27,16.7,43.85,0.94,0.13,788,1.5,314,2.1
+9056,2023,7,8,16,0,28.3,1.39,0.085,0.62,88,875,656,0,0,1.1,154,684,0,598,0.27,17.22,49.51,0.94,0.13,789,1.5,324,2.6
+9057,2023,7,8,16,30,27.5,1.39,0.085,0.62,82,845,564,0,0,1.1,116,758,0,549,0.27,18.04,55.2,0.94,0.13,789,1.5,337,2.9
+9058,2023,7,8,17,0,26.7,1.37,0.081,0.62,76,805,468,0,0,1.5,114,695,0,452,0.271,19.53,60.89,0.94,0.13,789,1.6,349,3.2
+9059,2023,7,8,17,30,25.7,1.37,0.081,0.62,69,754,369,0,3,1.5,152,438,7,327,0.271,20.71,66.52,0.94,0.13,789,1.6,183,3.4
+9060,2023,7,8,18,0,24.7,1.36,0.077,0.62,60,683,270,0,0,2.6,114,376,11,230,0.272,23.74,72.08,0.94,0.13,789,1.6,17,3.6
+9061,2023,7,8,18,30,23.1,1.36,0.077,0.62,50,576,174,0,0,2.6,59,500,7,167,0.273,26.16,77.52,0.94,0.13,790,1.6,27,3.6
+9062,2023,7,8,19,0,21.5,1.35,0.078,0.62,36,413,88,5,7,4.4,55,69,75,64,0.273,32.55,82.8,0.94,0.13,790,1.6,38,3.5
+9063,2023,7,8,19,30,20.5,1.35,0.078,0.62,17,153,23,6,5,4.4,15,2,86,15,0.274,34.64,87.81,0.94,0.13,791,1.6,46,3.7
+9064,2023,7,8,20,0,19.5,1.35,0.082,0.62,0,0,0,0,8,5.3,0,0,0,0,0.275,39.45,92.93,0.94,0.13,791,1.6,54,3.9
+9065,2023,7,8,20,30,18.8,1.35,0.082,0.62,0,0,0,0,3,5.3,0,0,0,0,0.275,41.2,97.56,0.94,0.13,791,1.7,60,3.8
+9066,2023,7,8,21,0,18.1,1.36,0.084,0.62,0,0,0,0,3,6.2,0,0,0,0,0.276,45.54,101.86,0.94,0.13,791,1.7,66,3.7
+9067,2023,7,8,21,30,17.5,1.36,0.084,0.62,0,0,0,0,3,6.2,0,0,0,0,0.276,47.29,105.77,0.94,0.13,791,1.7,70,3.4
+9068,2023,7,8,22,0,16.9,1.38,0.076,0.62,0,0,0,0,0,6.7,0,0,0,0,0.276,51.19,109.22,0.93,0.13,791,1.8,75,3.2
+9069,2023,7,8,22,30,16.3,1.38,0.076,0.62,0,0,0,0,0,6.8,0,0,0,0,0.277,53.24,112.13,0.93,0.13,792,1.8,77,2.9
+9070,2023,7,8,23,0,15.7,1.4,0.066,0.62,0,0,0,0,0,7.2,0,0,0,0,0.277,56.99,114.42,0.93,0.13,792,1.8,80,2.7
+9071,2023,7,8,23,30,15.2,1.4,0.066,0.62,0,0,0,0,0,7.2,0,0,0,0,0.277,58.77,116.04,0.92,0.13,791,1.8,81,2.4
+9072,2023,7,9,0,0,14.7,1.42,0.061,0.62,0,0,0,0,0,7.5,0,0,0,0,0.277,62.03,116.92,0.92,0.13,791,1.8,82,2.2
+9073,2023,7,9,0,30,14.2,1.42,0.061,0.62,0,0,0,0,0,7.5,0,0,0,0,0.277,64.06,117.04,0.92,0.13,791,1.8,80,2
+9074,2023,7,9,1,0,13.8,1.44,0.06,0.62,0,0,0,0,0,7.7,0,0,0,0,0.277,66.74,116.39,0.92,0.13,791,1.8,79,1.7
+9075,2023,7,9,1,30,13.4,1.44,0.06,0.62,0,0,0,0,3,7.7,0,0,0,0,0.277,68.49,114.98,0.93,0.13,791,1.8,75,1.6
+9076,2023,7,9,2,0,13,1.45,0.06,0.62,0,0,0,0,3,7.8,0,0,0,0,0.276,70.84,112.88,0.93,0.13,791,1.8,70,1.4
+9077,2023,7,9,2,30,12.7,1.45,0.06,0.62,0,0,0,0,0,7.8,0,0,0,0,0.276,72.24,110.15,0.93,0.13,791,1.8,65,1.3
+9078,2023,7,9,3,0,12.4,1.46,0.06,0.62,0,0,0,0,0,7.9,0,0,0,0,0.276,73.92,106.86,0.93,0.13,791,1.8,60,1.2
+9079,2023,7,9,3,30,12.1,1.46,0.06,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,75.38,103.08,0.92,0.13,791,1.7,57,1.2
+9080,2023,7,9,4,0,11.8,1.47,0.059,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,76.8,98.89,0.92,0.13,791,1.7,54,1.2
+9081,2023,7,9,4,30,12.4,1.47,0.059,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,73.84,94.35,0.92,0.13,791,1.6,52,1.7
+9082,2023,7,9,5,0,12.9,1.47,0.057,0.62,10,96,11,0,0,7.8,10,96,0,11,0.274,71.37,89.19,0.92,0.13,792,1.6,50,2.1
+9083,2023,7,9,5,30,14.3,1.47,0.057,0.62,29,396,68,0,0,7.8,29,396,0,68,0.274,65.18,84.34,0.92,0.13,792,1.6,49,2.2
+9084,2023,7,9,6,0,15.8,1.47,0.055,0.62,42,579,151,0,0,7.6,42,579,0,151,0.274,58.08,79.13,0.92,0.13,792,1.5,49,2.4
+9085,2023,7,9,6,30,18.1,1.47,0.055,0.62,51,695,246,0,0,7.6,51,695,0,246,0.274,50.22,73.73,0.92,0.13,792,1.5,50,2.4
+9086,2023,7,9,7,0,20.4,1.46,0.054,0.62,58,774,345,0,0,6.7,58,774,0,345,0.274,41.09,68.21,0.92,0.13,792,1.4,50,2.4
+9087,2023,7,9,7,30,22.6,1.46,0.054,0.62,63,830,445,0,0,6.7,63,830,0,445,0.274,35.93,62.59,0.92,0.13,792,1.4,54,1.9
+9088,2023,7,9,8,0,24.8,1.47,0.054,0.62,69,871,544,0,0,4.9,69,871,0,544,0.273,27.78,56.92,0.92,0.13,792,1.4,57,1.5
+9089,2023,7,9,8,30,26,1.47,0.054,0.62,72,903,638,0,0,4.9,72,903,0,638,0.273,25.87,51.22,0.92,0.13,792,1.4,58,1
+9090,2023,7,9,9,0,27.2,1.47,0.054,0.62,76,927,725,0,0,4.1,76,927,0,725,0.272,22.72,45.55,0.92,0.13,792,1.4,58,0.5
+9091,2023,7,9,9,30,28.1,1.47,0.054,0.62,79,946,804,0,0,4.1,79,946,0,804,0.272,21.56,39.96,0.92,0.13,792,1.4,137,0.6
+9092,2023,7,9,10,0,29,1.48,0.054,0.62,80,961,872,0,0,3.2,80,961,0,872,0.271,19.21,34.54,0.92,0.13,792,1.4,216,0.7
+9093,2023,7,9,10,30,29.7,1.48,0.054,0.62,80,975,930,0,0,3.2,80,975,0,930,0.271,18.46,29.39,0.91,0.13,792,1.3,217,1.1
+9094,2023,7,9,11,0,30.4,1.4,0.046,0.62,80,986,975,0,0,2.4,80,986,0,975,0.271,16.78,24.76,0.91,0.13,792,1.3,218,1.5
+9095,2023,7,9,11,30,31,1.4,0.046,0.62,81,991,1006,0,0,2.4,81,991,0,1006,0.271,16.2,21,0.91,0.13,791,1.3,219,1.9
+9096,2023,7,9,12,0,31.5,1.41,0.045,0.62,81,995,1024,0,0,1.8,81,995,0,1024,0.27,15.07,18.68,0.91,0.13,791,1.3,220,2.3
+9097,2023,7,9,12,30,31.8,1.41,0.045,0.62,81,997,1027,0,0,1.8,81,997,0,1027,0.27,14.81,18.36,0.91,0.13,791,1.3,222,2.5
+9098,2023,7,9,13,0,32.1,1.42,0.044,0.62,80,996,1015,0,0,1.1,80,996,0,1015,0.27,13.82,20.14,0.91,0.13,791,1.3,225,2.8
+9099,2023,7,9,13,30,32.2,1.42,0.044,0.62,80,992,989,0,0,1.1,91,967,0,978,0.27,13.74,23.54,0.91,0.13,791,1.2,228,3
+9100,2023,7,9,14,0,32.3,1.46,0.044,0.62,78,986,949,0,0,0.1,78,984,0,947,0.27,12.78,27.96,0.91,0.13,790,1.2,230,3.2
+9101,2023,7,9,14,30,32.2,1.46,0.044,0.62,76,979,897,0,0,0.1,76,979,0,897,0.27,12.85,32.98,0.91,0.13,790,1.2,232,3.3
+9102,2023,7,9,15,0,32.1,1.49,0.042,0.62,74,968,833,0,0,-0.9,74,968,0,833,0.27,12.01,38.34,0.91,0.13,790,1.2,234,3.3
+9103,2023,7,9,15,30,31.8,1.49,0.042,0.62,71,953,758,0,0,-0.9,71,953,0,758,0.27,12.21,43.89,0.91,0.13,790,1.1,234,3.3
+9104,2023,7,9,16,0,31.5,1.52,0.04,0.62,67,934,673,0,0,-1.8,67,934,0,673,0.269,11.59,49.55,0.91,0.13,790,1.1,234,3.2
+9105,2023,7,9,16,30,30.9,1.52,0.04,0.62,63,908,581,0,0,-1.8,63,908,0,581,0.269,11.99,55.24,0.91,0.13,790,1.1,232,3
+9106,2023,7,9,17,0,30.4,1.54,0.04,0.62,59,874,484,0,0,-2.6,59,874,0,484,0.269,11.68,60.93,0.91,0.14,790,1.1,229,2.8
+9107,2023,7,9,17,30,29.4,1.54,0.04,0.62,55,826,383,0,0,-2.6,55,826,0,383,0.269,12.37,66.57,0.91,0.14,790,1.1,223,2.3
+9108,2023,7,9,18,0,28.3,1.54,0.04,0.62,49,760,282,0,0,0.9,49,760,0,282,0.269,16.98,72.13,0.91,0.14,790,1.1,217,1.7
+9109,2023,7,9,18,30,26.5,1.54,0.04,0.62,42,662,184,0,0,0.9,42,662,0,184,0.269,18.86,77.57,0.91,0.14,790,1,206,1.3
+9110,2023,7,9,19,0,24.6,1.53,0.041,0.62,31,508,94,0,0,2.9,31,508,0,94,0.269,24.31,82.85,0.91,0.14,790,1,195,0.9
+9111,2023,7,9,19,30,24,1.53,0.041,0.62,16,219,24,0,0,2.9,16,219,0,24,0.269,25.2,87.87,0.92,0.14,790,1,186,1
+9112,2023,7,9,20,0,23.3,1.53,0.042,0.62,0,0,0,0,0,1.3,0,0,0,0,0.27,23.44,92.99,0.92,0.14,790,1,177,1.1
+9113,2023,7,9,20,30,22.8,1.53,0.042,0.62,0,0,0,0,0,1.3,0,0,0,0,0.27,24.15,97.63,0.92,0.14,790,1.1,173,1
+9114,2023,7,9,21,0,22.2,1.52,0.043,0.62,0,0,0,0,0,1.4,0,0,0,0,0.27,25.26,101.94,0.92,0.14,790,1.1,170,0.9
+9115,2023,7,9,21,30,21.5,1.52,0.043,0.62,0,0,0,0,0,1.4,0,0,0,0,0.271,26.35,105.86,0.92,0.14,790,1.1,164,0.8
+9116,2023,7,9,22,0,20.9,1.51,0.045,0.62,0,0,0,0,0,1.2,0,0,0,0,0.271,26.95,109.31,0.92,0.14,790,1.1,159,0.6
+9117,2023,7,9,22,30,20.2,1.51,0.045,0.62,0,0,0,0,0,1.2,0,0,0,0,0.271,28.13,112.23,0.92,0.14,790,1.1,152,0.6
+9118,2023,7,9,23,0,19.5,1.49,0.048,0.62,0,0,0,0,0,0.8,0,0,0,0,0.272,28.7,114.53,0.92,0.14,790,1.1,145,0.5
+9119,2023,7,9,23,30,18.9,1.49,0.048,0.62,0,0,0,0,0,0.8,0,0,0,0,0.272,29.79,116.16,0.93,0.14,790,1.2,147,0.5
+9120,2023,7,10,0,0,18.3,1.48,0.053,0.62,0,0,0,0,0,1,0,0,0,0,0.273,31.19,117.04,0.93,0.14,790,1.2,149,0.4
+9121,2023,7,10,0,30,18,1.48,0.053,0.62,0,0,0,0,5,1,0,0,0,0,0.273,31.78,117.16,0.94,0.14,790,1.3,177,0.4
+9122,2023,7,10,1,0,17.6,1.45,0.063,0.62,0,0,0,0,5,0.8,0,0,0,0,0.274,32.32,116.51,0.94,0.14,790,1.3,204,0.3
+9123,2023,7,10,1,30,17.3,1.45,0.063,0.62,0,0,0,0,5,0.8,0,0,0,0,0.274,32.94,115.11,0.95,0.14,790,1.4,233,0.5
+9124,2023,7,10,2,0,16.9,1.41,0.082,0.62,0,0,0,0,5,1.1,0,0,0,0,0.275,34.49,113.01,0.95,0.14,790,1.4,261,0.6
+9125,2023,7,10,2,30,16.4,1.41,0.082,0.62,0,0,0,0,5,1.1,0,0,0,0,0.275,35.65,110.28,0.96,0.14,791,1.5,272,0.9
+9126,2023,7,10,3,0,15.9,1.37,0.106,0.62,0,0,0,0,5,1.3,0,0,0,0,0.276,37.1,106.98,0.96,0.14,791,1.6,283,1.1
+9127,2023,7,10,3,30,15.6,1.37,0.106,0.62,0,0,0,0,5,1.3,0,0,0,0,0.276,37.81,103.2,0.96,0.14,791,1.7,296,1.2
+9128,2023,7,10,4,0,15.3,1.37,0.106,0.62,0,0,0,0,5,1.4,0,0,0,0,0.277,38.82,99,0.96,0.14,792,1.7,310,1.2
+9129,2023,7,10,4,30,15.9,1.37,0.106,0.62,0,0,0,0,8,1.4,0,0,0,0,0.277,37.36,94.46,0.95,0.14,792,1.7,325,1.2
+9130,2023,7,10,5,0,16.6,1.4,0.083,0.62,9,71,10,4,8,2.1,6,0,57,6,0.277,37.57,89.3,0.95,0.14,792,1.7,340,1.2
+9131,2023,7,10,5,30,18.5,1.4,0.083,0.62,31,353,65,6,8,2.1,23,1,93,23,0.277,33.34,84.44,0.94,0.14,792,1.7,175,1.6
+9132,2023,7,10,6,0,20.5,1.43,0.06,0.62,42,561,147,1,8,1.3,58,10,18,60,0.277,27.85,79.23,0.93,0.14,792,1.6,11,2
+9133,2023,7,10,6,30,22.1,1.43,0.06,0.62,52,684,242,1,8,1.3,74,128,11,110,0.276,25.26,73.83,0.93,0.14,792,1.6,18,1.7
+9134,2023,7,10,7,0,23.8,1.44,0.053,0.62,57,770,342,0,7,1.3,121,182,0,188,0.276,22.82,68.31,0.93,0.14,792,1.6,26,1.4
+9135,2023,7,10,7,30,25.1,1.44,0.053,0.62,63,826,442,0,8,1.3,168,60,0,196,0.275,21.12,62.69,0.93,0.14,792,1.5,128,1
+9136,2023,7,10,8,0,26.5,1.43,0.052,0.62,68,868,541,0,3,1.8,237,301,0,401,0.275,20.13,57.01,0.93,0.14,793,1.5,231,0.6
+9137,2023,7,10,8,30,27.5,1.43,0.052,0.62,72,901,635,0,5,1.8,317,169,4,423,0.274,18.99,51.32,0.93,0.14,793,1.5,223,1.3
+9138,2023,7,10,9,0,28.4,1.41,0.05,0.62,75,927,723,0,7,2.1,288,442,0,597,0.273,18.34,45.65,0.93,0.14,793,1.5,215,2.1
+9139,2023,7,10,9,30,29.2,1.41,0.05,0.62,77,946,801,0,0,2,136,843,0,781,0.273,17.49,40.07,0.93,0.14,792,1.5,214,2.7
+9140,2023,7,10,10,0,30,1.38,0.049,0.62,79,961,870,0,0,2.2,79,961,0,870,0.273,16.92,34.64,0.93,0.14,792,1.5,212,3.3
+9141,2023,7,10,10,30,30.5,1.38,0.049,0.62,78,976,927,0,0,2.2,78,976,0,927,0.273,16.44,29.51,0.92,0.14,792,1.5,213,3.8
+9142,2023,7,10,11,0,31.1,1.23,0.036,0.62,76,989,973,0,0,2.4,83,954,0,948,0.273,16.04,24.88,0.92,0.14,792,1.5,213,4.3
+9143,2023,7,10,11,30,31.5,1.23,0.036,0.62,76,994,1003,0,0,2.4,82,959,0,977,0.274,15.68,21.13,0.92,0.14,792,1.5,215,4.7
+9144,2023,7,10,12,0,31.8,1.1,0.036,0.62,77,996,1020,0,0,2.4,91,963,0,1003,0.275,15.41,18.81,0.92,0.14,791,1.5,216,5.1
+9145,2023,7,10,12,30,32,1.1,0.036,0.62,76,996,1021,0,0,2.4,150,835,0,942,0.275,15.24,18.48,0.92,0.14,791,1.5,217,5.4
+9146,2023,7,10,13,0,32.1,0.95,0.036,0.62,77,993,1009,0,0,2.4,125,917,0,985,0.276,15.15,20.24,0.92,0.14,791,1.5,219,5.7
+9147,2023,7,10,13,30,32.1,0.95,0.036,0.62,75,991,983,0,0,2.4,154,757,0,848,0.276,15.15,23.62,0.92,0.14,791,1.5,220,5.7
+9148,2023,7,10,14,0,32.1,0.54,0.03,0.62,73,986,943,0,3,2.3,306,352,0,617,0.276,15.08,28.03,0.92,0.14,791,1.5,222,5.8
+9149,2023,7,10,14,30,32,0.54,0.03,0.62,72,977,891,0,3,2.3,213,509,0,640,0.276,15.16,33.04,0.92,0.14,791,1.5,223,5.6
+9150,2023,7,10,15,0,31.8,0.46,0.03,0.62,70,965,826,0,0,1.9,142,811,0,778,0.276,14.93,38.39,0.92,0.14,791,1.5,225,5.5
+9151,2023,7,10,15,30,31.5,0.46,0.03,0.62,68,949,751,0,0,1.9,137,787,0,704,0.276,15.17,43.94,0.91,0.14,790,1.4,226,5.3
+9152,2023,7,10,16,0,31.1,0.47,0.032,0.62,65,929,667,0,0,1.1,65,929,0,667,0.276,14.69,49.59,0.91,0.14,790,1.4,228,5.1
+9153,2023,7,10,16,30,30.6,0.47,0.032,0.62,62,902,576,0,0,1.1,62,902,0,576,0.276,15.11,55.29,0.91,0.14,790,1.3,230,4.9
+9154,2023,7,10,17,0,30.1,0.55,0.034,0.62,59,867,480,0,0,0,59,867,0,480,0.276,14.35,60.97,0.91,0.13,790,1.2,231,4.6
+9155,2023,7,10,17,30,29.1,0.55,0.034,0.62,54,821,380,0,0,0,81,726,11,369,0.276,15.2,66.62,0.91,0.13,790,1.2,233,3.9
+9156,2023,7,10,18,0,28.2,0.64,0.035,0.62,48,755,279,0,0,-0.4,50,745,21,278,0.276,15.59,72.18,0.9,0.13,790,1.1,234,3.3
+9157,2023,7,10,18,30,25.7,0.64,0.035,0.62,41,658,182,0,0,-0.4,41,658,0,182,0.276,18.06,77.63,0.9,0.13,791,1,236,2.3
+9158,2023,7,10,19,0,23.2,0.74,0.036,0.62,31,501,93,0,0,1.8,31,501,0,93,0.276,24.43,82.91,0.9,0.13,791,1,239,1.4
+9159,2023,7,10,19,30,22,0.74,0.036,0.62,17,207,24,0,0,1.8,17,207,0,24,0.276,26.27,87.93,0.9,0.13,791,0.9,242,1.4
+9160,2023,7,10,20,0,20.8,0.85,0.036,0.62,0,0,0,0,0,0.9,0,0,0,0,0.276,26.58,93.06,0.89,0.13,791,0.9,245,1.3
+9161,2023,7,10,20,30,20.2,0.85,0.036,0.62,0,0,0,0,0,0.9,0,0,0,0,0.276,27.62,97.71,0.89,0.13,792,0.8,250,1.4
+9162,2023,7,10,21,0,19.6,0.99,0.035,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.277,26.46,102.02,0.89,0.13,792,0.8,255,1.4
+9163,2023,7,10,21,30,19,0.99,0.035,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.277,27.47,105.95,0.89,0.13,792,0.8,261,1.4
+9164,2023,7,10,22,0,18.4,1.13,0.035,0.62,0,0,0,0,0,-1,0,0,0,0,0.277,26.97,109.41,0.89,0.13,792,0.8,267,1.5
+9165,2023,7,10,22,30,17.9,1.13,0.035,0.62,0,0,0,0,0,-1,0,0,0,0,0.277,27.83,112.33,0.89,0.13,792,0.8,272,1.4
+9166,2023,7,10,23,0,17.4,1.25,0.037,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.277,28.41,114.65,0.89,0.13,792,0.8,278,1.4
+9167,2023,7,10,23,30,17.1,1.25,0.037,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.277,28.95,116.28,0.9,0.13,792,0.8,282,1.4
+9168,2023,7,11,0,0,16.8,1.31,0.039,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.276,30.33,117.17,0.9,0.13,792,0.8,286,1.4
+9169,2023,7,11,0,30,16.7,1.31,0.039,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.276,30.52,117.29,0.9,0.13,792,0.8,286,1.4
+9170,2023,7,11,1,0,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.276,31.2,116.64,0.9,0.13,792,0.8,287,1.3
+9171,2023,7,11,1,30,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.276,31.2,115.24,0.9,0.13,792,0.8,283,1.3
+9172,2023,7,11,2,0,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,30.38,113.14,0.9,0.13,792,0.7,279,1.3
+9173,2023,7,11,2,30,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,30.38,110.41,0.9,0.13,792,0.7,272,1.2
+9174,2023,7,11,3,0,16.5,1.32,0.04,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.276,29.32,107.11,0.9,0.13,792,0.7,265,1.2
+9175,2023,7,11,3,30,16.3,1.32,0.04,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.276,29.73,103.32,0.9,0.13,793,0.6,258,1.1
+9176,2023,7,11,4,0,16.1,1.31,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.276,28.76,99.12,0.9,0.13,793,0.6,250,1.1
+9177,2023,7,11,4,30,16.2,1.31,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.276,28.58,94.58,0.91,0.13,793,0.6,244,1.1
+9178,2023,7,11,5,0,16.3,1.29,0.043,0.62,10,113,11,0,0,-1.1,10,113,0,11,0.276,30.55,89.4,0.91,0.13,793,0.6,237,1
+9179,2023,7,11,5,30,18,1.29,0.043,0.62,28,447,70,0,0,-1.1,28,447,0,70,0.276,27.44,84.55,0.91,0.13,793,0.6,230,1.3
+9180,2023,7,11,6,0,19.7,1.26,0.045,0.62,39,630,156,0,0,-1.3,39,630,0,156,0.276,24.28,79.34,0.91,0.13,793,0.6,223,1.6
+9181,2023,7,11,6,30,21.8,1.26,0.045,0.62,49,742,254,0,0,-1.3,49,742,0,254,0.276,21.37,73.94,0.91,0.13,794,0.6,226,2.3
+9182,2023,7,11,7,0,23.9,1.24,0.047,0.62,56,816,356,0,0,-4.2,56,816,0,356,0.276,15.08,68.41,0.91,0.13,794,0.6,228,3
+9183,2023,7,11,7,30,25.6,1.24,0.047,0.62,62,869,459,0,0,-4.2,62,869,0,459,0.276,13.63,62.79,0.91,0.13,794,0.7,235,3.6
+9184,2023,7,11,8,0,27.3,1.21,0.048,0.62,66,907,559,0,0,-5.8,66,907,0,559,0.276,10.95,57.11,0.91,0.13,794,0.7,241,4.2
+9185,2023,7,11,8,30,28.2,1.21,0.048,0.62,71,937,655,0,0,-5.8,71,937,0,655,0.276,10.39,51.42,0.91,0.13,794,0.7,241,4.4
+9186,2023,7,11,9,0,29.1,1.18,0.049,0.62,75,959,744,0,0,-6.5,75,959,0,744,0.275,9.35,45.76,0.91,0.13,794,0.7,242,4.6
+9187,2023,7,11,9,30,29.9,1.18,0.049,0.62,78,978,825,0,0,-6.5,78,978,0,825,0.274,8.92,40.17,0.91,0.13,793,0.7,241,4.8
+9188,2023,7,11,10,0,30.6,1.14,0.049,0.62,81,992,896,0,0,-7.3,81,992,0,896,0.274,8.05,34.75,0.92,0.13,793,0.6,239,4.9
+9189,2023,7,11,10,30,31.2,1.14,0.049,0.62,80,1006,955,0,0,-7.3,80,1006,0,955,0.273,7.78,29.62,0.92,0.13,793,0.6,237,5.1
+9190,2023,7,11,11,0,31.8,1.09,0.041,0.62,79,1018,1002,0,0,-8.1,79,1018,0,1002,0.273,7.09,25,0.92,0.13,793,0.6,236,5.2
+9191,2023,7,11,11,30,32.2,1.09,0.041,0.62,81,1023,1034,0,0,-8.1,81,1023,0,1034,0.272,6.93,21.26,0.92,0.13,793,0.6,235,5.4
+9192,2023,7,11,12,0,32.6,1.07,0.04,0.62,80,1027,1051,0,0,-8.8,80,1027,0,1051,0.272,6.44,18.94,0.92,0.13,792,0.6,233,5.6
+9193,2023,7,11,12,30,32.8,1.07,0.04,0.62,80,1028,1054,0,0,-8.8,80,1028,0,1054,0.272,6.37,18.61,0.92,0.13,792,0.6,234,5.7
+9194,2023,7,11,13,0,33,1.09,0.037,0.62,79,1027,1042,0,0,-9.2,79,1027,0,1042,0.271,6.08,20.35,0.92,0.13,792,0.6,234,5.8
+9195,2023,7,11,13,30,33.1,1.09,0.037,0.62,77,1025,1015,0,0,-9.2,77,1025,0,1015,0.271,6.04,23.71,0.91,0.13,792,0.6,235,5.9
+9196,2023,7,11,14,0,33.1,1.15,0.033,0.62,73,1021,974,0,0,-9.4,73,1021,0,974,0.271,5.94,28.1,0.91,0.13,792,0.6,236,6
+9197,2023,7,11,14,30,32.9,1.15,0.033,0.62,71,1013,920,0,0,-9.4,71,1013,0,920,0.272,6,33.1,0.91,0.13,791,0.6,238,6
+9198,2023,7,11,15,0,32.7,1.23,0.031,0.62,68,1002,853,0,0,-9.6,68,1002,0,853,0.273,6,38.45,0.91,0.13,791,0.6,239,6
+9199,2023,7,11,15,30,32.3,1.23,0.031,0.62,65,988,776,0,0,-9.6,65,988,0,776,0.273,6.13,43.99,0.91,0.13,791,0.6,241,5.9
+9200,2023,7,11,16,0,32,1.29,0.03,0.62,62,969,690,0,0,-9.7,62,969,0,690,0.274,6.17,49.64,0.91,0.13,791,0.6,243,5.8
+9201,2023,7,11,16,30,31.3,1.29,0.03,0.62,59,942,595,0,0,-9.7,59,942,0,595,0.275,6.42,55.34,0.9,0.13,791,0.6,245,5.6
+9202,2023,7,11,17,0,30.7,1.32,0.031,0.62,55,908,495,0,0,-9.5,62,890,0,493,0.276,6.74,61.02,0.9,0.13,791,0.6,247,5.3
+9203,2023,7,11,17,30,29.6,1.32,0.031,0.62,52,856,391,0,0,-9.5,74,778,0,382,0.277,7.18,66.67,0.9,0.13,791,0.7,249,4.5
+9204,2023,7,11,18,0,28.5,1.32,0.033,0.62,46,787,286,0,0,-7.4,57,734,0,281,0.277,9.07,72.24,0.91,0.13,791,0.7,251,3.6
+9205,2023,7,11,18,30,25.7,1.32,0.033,0.62,40,688,187,0,0,-7.4,42,671,0,185,0.277,10.68,77.69,0.91,0.13,791,0.7,255,2.7
+9206,2023,7,11,19,0,22.9,1.28,0.035,0.62,31,527,95,0,0,-3.5,31,527,0,95,0.277,17,82.98,0.91,0.13,791,0.8,259,1.7
+9207,2023,7,11,19,30,21.7,1.28,0.035,0.62,16,225,24,0,0,-3.4,16,225,0,24,0.278,18.31,87.99,0.91,0.13,792,0.8,269,1.6
+9208,2023,7,11,20,0,20.5,1.24,0.039,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.278,21.29,93.14,0.91,0.13,792,0.8,279,1.5
+9209,2023,7,11,20,30,20,1.24,0.039,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.278,21.95,97.79,0.91,0.13,792,0.8,290,1.4
+9210,2023,7,11,21,0,19.4,1.22,0.043,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.278,24.33,102.11,0.91,0.13,792,0.9,301,1.4
+9211,2023,7,11,21,30,19,1.22,0.043,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.278,24.94,106.04,0.91,0.13,792,0.9,311,1.3
+9212,2023,7,11,22,0,18.6,1.18,0.048,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.278,27.36,109.51,0.91,0.13,793,0.9,320,1.2
+9213,2023,7,11,22,30,18.4,1.18,0.048,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.278,27.7,112.45,0.92,0.13,793,0.9,332,1.1
+9214,2023,7,11,23,0,18.3,1.13,0.054,0.62,0,0,0,0,3,0.3,0,0,0,0,0.278,29.73,114.77,0.92,0.13,793,1,343,1
+9215,2023,7,11,23,30,18,1.13,0.054,0.62,0,0,0,0,3,0.3,0,0,0,0,0.279,30.29,116.4,0.92,0.13,793,1,182,0.9
+9216,2023,7,12,0,0,17.7,1.09,0.061,0.62,0,0,0,0,5,1.2,0,0,0,0,0.279,32.94,117.3,0.92,0.13,793,1,21,0.8
+9217,2023,7,12,0,30,17.1,1.09,0.061,0.62,0,0,0,0,3,1.2,0,0,0,0,0.279,34.2,117.43,0.92,0.13,793,1.1,39,0.9
+9218,2023,7,12,1,0,16.4,1.07,0.067,0.62,0,0,0,0,5,2.1,0,0,0,0,0.279,38.19,116.78,0.92,0.13,793,1.1,57,0.9
+9219,2023,7,12,1,30,15.8,1.07,0.067,0.62,0,0,0,0,5,2.1,0,0,0,0,0.279,39.68,115.38,0.92,0.13,793,1.1,65,1
+9220,2023,7,12,2,0,15.2,1.06,0.072,0.62,0,0,0,0,0,3,0,0,0,0,0.28,43.98,113.28,0.92,0.13,793,1.1,73,1
+9221,2023,7,12,2,30,14.9,1.06,0.072,0.62,0,0,0,0,3,3,0,0,0,0,0.28,44.84,110.54,0.93,0.13,793,1.2,78,1.1
+9222,2023,7,12,3,0,14.6,1.07,0.077,0.62,0,0,0,0,3,4,0,0,0,0,0.28,48.88,107.24,0.93,0.13,793,1.2,83,1.1
+9223,2023,7,12,3,30,14.4,1.07,0.077,0.62,0,0,0,0,3,4,0,0,0,0,0.281,49.51,103.45,0.93,0.13,793,1.2,87,1.1
+9224,2023,7,12,4,0,14.3,1.09,0.081,0.62,0,0,0,0,3,4.8,0,0,0,0,0.281,52.74,99.25,0.93,0.13,793,1.2,90,1.1
+9225,2023,7,12,4,30,14.8,1.09,0.081,0.62,0,0,0,0,4,4.8,0,0,0,0,0.281,51.07,94.7,0.93,0.13,793,1.2,92,1
+9226,2023,7,12,5,0,15.4,1.12,0.08,0.62,8,64,9,2,3,5.6,7,33,36,7,0.281,52.09,89.5,0.93,0.13,793,1.3,95,0.9
+9227,2023,7,12,5,30,17.3,1.12,0.08,0.62,31,331,62,2,0,5.6,32,253,25,56,0.282,46.17,84.66,0.93,0.13,793,1.3,97,1.2
+9228,2023,7,12,6,0,19.2,1.15,0.078,0.62,46,528,143,1,3,6.2,59,170,14,90,0.282,42.79,79.45,0.93,0.13,794,1.3,98,1.5
+9229,2023,7,12,6,30,21.6,1.15,0.078,0.62,57,655,237,0,3,6.3,79,68,0,98,0.283,36.92,74.04,0.93,0.13,794,1.3,121,1.4
+9230,2023,7,12,7,0,23.9,1.18,0.074,0.62,65,743,337,0,3,4.5,114,345,0,240,0.284,28.38,68.51,0.93,0.13,794,1.3,144,1.3
+9231,2023,7,12,7,30,25.3,1.18,0.074,0.62,71,803,437,0,0,4.5,90,685,7,402,0.284,26.11,62.89,0.93,0.13,794,1.4,173,1.5
+9232,2023,7,12,8,0,26.8,1.2,0.071,0.62,76,848,535,0,0,1.7,76,848,0,535,0.285,19.64,57.22,0.93,0.13,794,1.4,202,1.7
+9233,2023,7,12,8,30,27.8,1.2,0.071,0.62,80,882,629,0,0,1.7,80,882,0,629,0.285,18.5,51.53,0.93,0.13,793,1.4,213,2.1
+9234,2023,7,12,9,0,28.8,1.19,0.069,0.62,84,908,716,0,0,1.1,84,908,0,716,0.285,16.77,45.86,0.93,0.13,793,1.4,224,2.4
+9235,2023,7,12,9,30,29.6,1.19,0.069,0.62,86,929,795,0,0,1.1,86,929,0,795,0.285,16.02,40.28,0.93,0.13,793,1.4,228,2.8
+9236,2023,7,12,10,0,30.5,1.17,0.066,0.62,88,946,864,0,0,1.3,88,946,0,864,0.285,15.39,34.86,0.93,0.13,793,1.4,232,3.2
+9237,2023,7,12,10,30,31.2,1.17,0.066,0.62,85,965,923,0,0,1.3,85,965,0,923,0.285,14.79,29.74,0.92,0.13,793,1.4,233,3.6
+9238,2023,7,12,11,0,31.8,1.4,0.044,0.62,79,984,970,0,0,1.3,79,984,0,970,0.284,14.33,25.13,0.92,0.13,793,1.4,235,3.9
+9239,2023,7,12,11,30,32.3,1.4,0.044,0.62,80,989,1001,0,0,1.3,80,989,0,1001,0.284,13.91,21.4,0.92,0.13,792,1.4,236,4.3
+9240,2023,7,12,12,0,32.8,1.4,0.043,0.62,80,993,1018,0,0,1,158,837,0,949,0.284,13.24,19.09,0.93,0.13,792,1.4,236,4.6
+9241,2023,7,12,12,30,33.2,1.4,0.043,0.62,81,993,1021,0,0,1,220,747,7,927,0.284,12.95,18.74,0.93,0.13,792,1.4,236,4.8
+9242,2023,7,12,13,0,33.5,1.41,0.042,0.62,79,993,1009,0,0,0.5,106,938,7,985,0.283,12.3,20.47,0.93,0.13,791,1.4,235,5
+9243,2023,7,12,13,30,33.6,1.41,0.042,0.62,77,990,983,0,0,0.5,77,990,0,983,0.283,12.23,23.81,0.93,0.13,791,1.4,237,5.1
+9244,2023,7,12,14,0,33.8,1.58,0.037,0.62,74,986,943,0,0,0.2,74,986,0,943,0.283,11.81,28.18,0.93,0.13,791,1.4,238,5.2
+9245,2023,7,12,14,30,33.7,1.58,0.037,0.62,73,976,890,0,0,0.2,73,976,0,890,0.283,11.88,33.17,0.93,0.13,791,1.4,241,5.3
+9246,2023,7,12,15,0,33.6,1.62,0.037,0.62,71,963,825,0,0,0.1,71,963,0,825,0.282,11.8,38.51,0.93,0.13,790,1.4,243,5.3
+9247,2023,7,12,15,30,33.2,1.62,0.037,0.62,69,946,749,0,0,0,69,946,0,749,0.282,12.07,44.05,0.93,0.13,790,1.4,247,5.2
+9248,2023,7,12,16,0,32.9,1.65,0.038,0.62,66,925,664,0,0,-0.1,84,826,0,618,0.282,12.1,49.7,0.92,0.13,790,1.4,250,5.1
+9249,2023,7,12,16,30,32.3,1.65,0.038,0.62,63,897,572,0,0,-0.1,63,897,0,572,0.282,12.51,55.39,0.92,0.13,790,1.4,255,4.8
+9250,2023,7,12,17,0,31.7,1.65,0.04,0.62,59,860,475,0,3,-0.4,158,461,7,381,0.282,12.74,61.08,0.92,0.13,790,1.4,260,4.6
+9251,2023,7,12,17,30,30.6,1.65,0.04,0.62,55,809,375,0,3,-0.4,148,343,18,284,0.282,13.56,66.73,0.92,0.13,790,1.4,268,3.8
+9252,2023,7,12,18,0,29.6,1.63,0.045,0.62,50,737,274,0,0,0.4,78,593,4,258,0.282,15.14,72.3,0.92,0.13,791,1.4,276,3.1
+9253,2023,7,12,18,30,27.2,1.63,0.045,0.62,42,635,177,0,0,0.3,44,611,0,174,0.282,17.39,77.75,0.92,0.13,791,1.4,290,2.2
+9254,2023,7,12,19,0,24.8,1.62,0.048,0.62,32,474,89,0,0,2.4,32,474,0,89,0.282,23.23,83.04,0.92,0.13,791,1.4,304,1.4
+9255,2023,7,12,19,30,23.8,1.62,0.048,0.62,15,194,22,0,0,2.4,15,194,0,22,0.282,24.69,88.06,0.92,0.13,792,1.4,316,1.5
+9256,2023,7,12,20,0,22.7,1.62,0.049,0.62,0,0,0,0,3,2,0,0,0,0,0.282,25.59,93.22,0.92,0.13,792,1.4,327,1.6
+9257,2023,7,12,20,30,21.9,1.62,0.049,0.62,0,0,0,0,3,2,0,0,0,0,0.283,26.86,97.88,0.91,0.13,792,1.4,335,1.6
+9258,2023,7,12,21,0,21.1,1.6,0.046,0.62,0,0,0,0,0,1.8,0,0,0,0,0.283,27.77,102.21,0.91,0.13,793,1.4,342,1.6
+9259,2023,7,12,21,30,20.3,1.6,0.046,0.62,0,0,0,0,3,1.8,0,0,0,0,0.283,29.17,106.15,0.9,0.13,793,1.4,349,1.6
+9260,2023,7,12,22,0,19.5,1.56,0.044,0.62,0,0,0,0,3,1.7,0,0,0,0,0.283,30.45,109.63,0.9,0.13,793,1.3,356,1.5
+9261,2023,7,12,22,30,18.8,1.56,0.044,0.62,0,0,0,0,3,1.7,0,0,0,0,0.282,31.8,112.57,0.9,0.13,793,1.3,184,1.4
+9262,2023,7,12,23,0,18.2,1.52,0.044,0.62,0,0,0,0,3,1.7,0,0,0,0,0.282,33.08,114.89,0.9,0.13,793,1.3,12,1.3
+9263,2023,7,12,23,30,17.6,1.52,0.044,0.62,0,0,0,0,3,1.7,0,0,0,0,0.282,34.35,116.54,0.91,0.13,793,1.3,21,1.2
+9264,2023,7,13,0,0,17.1,1.47,0.045,0.62,0,0,0,0,3,1.7,0,0,0,0,0.282,35.56,117.44,0.91,0.13,793,1.3,31,1.2
+9265,2023,7,13,0,30,16.7,1.47,0.045,0.62,0,0,0,0,3,1.7,0,0,0,0,0.281,36.47,117.57,0.91,0.13,793,1.3,42,1.2
+9266,2023,7,13,1,0,16.3,1.42,0.045,0.62,0,0,0,0,0,1.8,0,0,0,0,0.281,37.59,116.93,0.91,0.13,793,1.2,53,1.1
+9267,2023,7,13,1,30,15.9,1.42,0.045,0.62,0,0,0,0,0,1.8,0,0,0,0,0.281,38.56,115.53,0.91,0.13,793,1.2,61,1.1
+9268,2023,7,13,2,0,15.5,1.35,0.045,0.62,0,0,0,0,3,2,0,0,0,0,0.28,40.15,113.42,0.91,0.13,793,1.2,70,1.1
+9269,2023,7,13,2,30,15.2,1.35,0.045,0.62,0,0,0,0,3,2,0,0,0,0,0.28,40.93,110.68,0.91,0.13,793,1.1,75,1.1
+9270,2023,7,13,3,0,14.9,1.29,0.045,0.62,0,0,0,0,3,2.2,0,0,0,0,0.28,42.41,107.38,0.91,0.13,793,1.1,81,1.1
+9271,2023,7,13,3,30,14.7,1.29,0.045,0.62,0,0,0,0,0,2.2,0,0,0,0,0.28,42.96,103.58,0.91,0.13,793,1.1,85,1.1
+9272,2023,7,13,4,0,14.5,1.24,0.045,0.62,0,0,0,0,3,2.4,0,0,0,0,0.28,43.93,99.38,0.91,0.13,793,1.1,90,1.1
+9273,2023,7,13,4,30,15,1.24,0.045,0.62,0,0,0,0,0,2.4,0,0,0,0,0.28,42.54,94.82,0.91,0.13,793,1.1,94,0.9
+9274,2023,7,13,5,0,15.5,1.22,0.045,0.62,8,94,9,1,0,2.8,8,94,11,9,0.279,42.62,89.61,0.91,0.13,793,1.1,99,0.8
+9275,2023,7,13,5,30,17.2,1.22,0.045,0.62,27,407,64,4,3,2.8,35,116,54,46,0.28,38.26,84.78,0.91,0.13,793,1.1,110,0.8
+9276,2023,7,13,6,0,18.9,1.2,0.046,0.62,39,596,147,0,0,2.6,55,407,0,129,0.28,33.75,79.56,0.91,0.13,793,1.1,122,0.8
+9277,2023,7,13,6,30,21,1.2,0.046,0.62,49,711,243,0,0,2.6,61,525,0,204,0.281,29.65,74.15,0.91,0.13,793,1.1,159,1
+9278,2023,7,13,7,0,23.1,1.19,0.047,0.62,55,789,343,0,3,1.2,170,197,0,242,0.281,23.59,68.62,0.91,0.13,793,1.1,196,1.1
+9279,2023,7,13,7,30,25.2,1.19,0.047,0.62,62,842,444,0,3,1.2,238,214,0,335,0.281,20.8,63,0.91,0.13,793,1.2,209,1.7
+9280,2023,7,13,8,0,27.4,1.19,0.049,0.62,66,881,542,0,3,-1.3,265,288,0,421,0.281,15.28,57.32,0.91,0.13,793,1.2,221,2.4
+9281,2023,7,13,8,30,28.4,1.19,0.049,0.62,71,910,636,0,0,-1.3,137,759,0,608,0.281,14.42,51.63,0.91,0.13,793,1.2,223,2.8
+9282,2023,7,13,9,0,29.4,1.17,0.05,0.62,75,933,723,0,0,-1.1,75,933,0,723,0.281,13.79,45.97,0.91,0.13,793,1.2,226,3.3
+9283,2023,7,13,9,30,30.2,1.17,0.05,0.62,78,951,802,0,0,-1.1,78,951,0,802,0.28,13.17,40.39,0.91,0.13,793,1.2,227,3.6
+9284,2023,7,13,10,0,31,1.15,0.051,0.62,80,965,871,0,0,-0.5,80,965,0,871,0.28,13.1,34.98,0.91,0.13,793,1.2,228,4
+9285,2023,7,13,10,30,31.6,1.15,0.051,0.62,81,978,929,0,0,-0.5,81,978,0,929,0.28,12.65,29.86,0.91,0.13,792,1.2,229,4.3
+9286,2023,7,13,11,0,32.3,1.21,0.045,0.62,81,989,975,0,0,-0.3,81,989,0,975,0.279,12.42,25.26,0.91,0.13,792,1.2,231,4.6
+9287,2023,7,13,11,30,32.7,1.21,0.045,0.62,81,993,1005,0,0,-0.3,81,993,0,1005,0.278,12.14,21.54,0.91,0.13,792,1.2,232,4.8
+9288,2023,7,13,12,0,33.2,1.18,0.047,0.62,82,994,1021,1,0,-0.2,267,594,14,828,0.277,11.85,19.23,0.91,0.13,792,1.3,233,4.9
+9289,2023,7,13,12,30,33.5,1.18,0.047,0.62,83,993,1023,1,8,-0.2,276,622,18,865,0.277,11.64,18.88,0.92,0.13,791,1.3,234,5
+9290,2023,7,13,13,0,33.7,1.19,0.05,0.62,84,989,1010,0,0,-0.3,140,879,0,963,0.276,11.42,20.59,0.92,0.13,791,1.3,235,5
+9291,2023,7,13,13,30,33.8,1.19,0.05,0.62,84,983,983,0,0,-0.3,84,983,0,983,0.275,11.36,23.91,0.92,0.13,791,1.3,237,5
+9292,2023,7,13,14,0,33.9,1.25,0.053,0.62,84,973,941,0,0,-0.6,84,973,0,941,0.275,11.09,28.27,0.93,0.13,790,1.4,238,4.9
+9293,2023,7,13,14,30,33.8,1.25,0.053,0.62,84,960,887,0,0,-0.6,84,960,0,887,0.274,11.15,33.25,0.93,0.13,790,1.4,242,4.8
+9294,2023,7,13,15,0,33.6,1.26,0.062,0.62,85,941,821,0,0,-1,85,941,0,821,0.274,10.94,38.58,0.94,0.13,790,1.4,245,4.6
+9295,2023,7,13,15,30,33.3,1.26,0.062,0.62,82,924,745,0,0,-1,82,924,0,745,0.273,11.13,44.12,0.93,0.13,790,1.4,252,4.4
+9296,2023,7,13,16,0,32.9,1.26,0.062,0.62,78,901,660,0,0,-1.6,78,901,0,660,0.273,10.89,49.76,0.93,0.13,790,1.4,260,4.2
+9297,2023,7,13,16,30,32.3,1.26,0.062,0.62,74,871,568,0,0,-1.6,87,835,0,561,0.273,11.26,55.45,0.93,0.13,790,1.4,271,4
+9298,2023,7,13,17,0,31.7,1.26,0.063,0.62,69,831,470,0,0,-2.2,68,830,0,469,0.272,11.12,61.14,0.93,0.13,790,1.3,282,3.9
+9299,2023,7,13,17,30,30.6,1.26,0.063,0.62,63,780,370,0,0,-2.2,63,780,0,370,0.272,11.84,66.79,0.93,0.13,790,1.3,294,3.7
+9300,2023,7,13,18,0,29.5,1.27,0.062,0.62,55,710,270,0,0,-1.5,58,694,0,268,0.272,13.3,72.36,0.92,0.13,790,1.3,305,3.5
+9301,2023,7,13,18,30,27.4,1.27,0.062,0.62,45,610,174,0,0,-1.5,45,610,0,174,0.273,15.02,77.82,0.92,0.13,790,1.2,314,3
+9302,2023,7,13,19,0,25.2,1.25,0.055,0.62,33,452,87,0,0,-0.5,33,452,0,87,0.273,18.38,83.12,0.91,0.13,791,1.2,323,2.6
+9303,2023,7,13,19,30,23.8,1.25,0.055,0.62,15,175,21,0,0,-0.5,15,175,0,21,0.273,19.98,88.14,0.9,0.13,791,1.2,326,2.4
+9304,2023,7,13,20,0,22.3,1.2,0.047,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.274,20.91,93.31,0.9,0.13,792,1.1,329,2.2
+9305,2023,7,13,20,30,21.2,1.2,0.047,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.274,22.36,97.97,0.9,0.13,792,1,329,2
+9306,2023,7,13,21,0,20.1,1.13,0.043,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.275,23.65,102.31,0.89,0.13,792,1,330,1.8
+9307,2023,7,13,21,30,19.3,1.13,0.043,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.275,24.88,106.26,0.89,0.13,793,0.9,331,1.7
+9308,2023,7,13,22,0,18.5,1.08,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,26.86,109.74,0.89,0.13,793,0.8,332,1.6
+9309,2023,7,13,22,30,18,1.08,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,27.71,112.69,0.89,0.13,793,0.8,332,1.5
+9310,2023,7,13,23,0,17.4,1.06,0.038,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.277,29.6,115.03,0.89,0.13,793,0.8,333,1.5
+9311,2023,7,13,23,30,17.1,1.06,0.038,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.278,30.16,116.68,0.89,0.13,793,0.8,333,1.5
+9312,2023,7,14,0,0,16.7,1.06,0.037,0.62,0,0,0,0,0,0,0,0,0,0,0.278,32.22,117.58,0.89,0.13,793,0.8,334,1.5
+9313,2023,7,14,0,30,16.4,1.06,0.037,0.62,0,0,0,0,0,0,0,0,0,0,0.278,32.84,117.72,0.89,0.13,793,0.9,335,1.4
+9314,2023,7,14,1,0,16.2,1.09,0.037,0.62,0,0,0,0,0,0.6,0,0,0,0,0.279,34.71,117.08,0.9,0.13,793,0.9,336,1.3
+9315,2023,7,14,1,30,15.9,1.09,0.037,0.62,0,0,0,0,0,0.6,0,0,0,0,0.278,35.38,115.68,0.9,0.13,793,0.9,342,1.2
+9316,2023,7,14,2,0,15.7,1.13,0.038,0.62,0,0,0,0,0,1.2,0,0,0,0,0.278,37.43,113.57,0.9,0.13,793,1,347,1.1
+9317,2023,7,14,2,30,15.2,1.13,0.038,0.62,0,0,0,0,0,1.2,0,0,0,0,0.279,38.65,110.83,0.9,0.13,793,1,179,1
+9318,2023,7,14,3,0,14.8,1.15,0.04,0.62,0,0,0,0,0,1.9,0,0,0,0,0.279,41.63,107.52,0.9,0.13,793,1.1,11,0.8
+9319,2023,7,14,3,30,14.3,1.15,0.04,0.62,0,0,0,0,0,1.9,0,0,0,0,0.279,42.99,103.72,0.91,0.13,793,1.1,23,0.8
+9320,2023,7,14,4,0,13.8,1.15,0.043,0.62,0,0,0,0,0,2.5,0,0,0,0,0.28,46.43,99.51,0.91,0.13,794,1.2,36,0.8
+9321,2023,7,14,4,30,14.1,1.15,0.043,0.62,0,0,0,0,0,2.5,0,0,0,0,0.28,45.54,94.95,0.91,0.13,794,1.2,46,0.8
+9322,2023,7,14,5,0,14.4,1.15,0.045,0.62,9,88,9,0,0,3.1,9,88,0,9,0.281,46.49,89.72,0.91,0.13,794,1.2,55,0.8
+9323,2023,7,14,5,30,15.9,1.15,0.045,0.62,27,391,62,0,0,3.1,27,391,0,62,0.281,42.23,84.89,0.91,0.13,794,1.2,63,1
+9324,2023,7,14,6,0,17.5,1.14,0.047,0.62,40,582,144,0,0,2.8,40,582,0,144,0.282,37.46,79.67,0.91,0.13,794,1.3,71,1.3
+9325,2023,7,14,6,30,19.7,1.14,0.047,0.62,48,700,238,0,0,2.8,48,700,0,238,0.283,32.66,74.27,0.91,0.13,794,1.3,58,1
+9326,2023,7,14,7,0,21.9,1.14,0.048,0.62,55,779,338,0,0,2.8,55,779,0,338,0.285,28.39,68.73,0.91,0.13,795,1.3,46,0.7
+9327,2023,7,14,7,30,23.4,1.14,0.048,0.62,61,836,439,0,0,2.8,61,836,0,439,0.285,25.93,63.11,0.91,0.13,795,1.3,176,0.9
+9328,2023,7,14,8,0,24.9,1.14,0.048,0.62,66,877,538,0,0,2.3,66,877,0,538,0.286,22.86,57.43,0.91,0.13,795,1.3,306,1.1
+9329,2023,7,14,8,30,25.8,1.14,0.048,0.62,69,910,633,0,0,2.3,69,910,0,633,0.287,21.67,51.74,0.91,0.13,795,1.2,294,1.5
+9330,2023,7,14,9,0,26.8,1.14,0.047,0.62,73,934,721,0,0,1.9,73,934,0,721,0.287,19.98,46.08,0.91,0.13,795,1.2,283,1.9
+9331,2023,7,14,9,30,27.6,1.14,0.047,0.62,76,953,801,0,0,1.9,76,953,0,801,0.287,19.04,40.5,0.91,0.13,794,1.2,279,2.2
+9332,2023,7,14,10,0,28.5,1.13,0.046,0.62,77,969,870,0,0,1.4,77,969,0,870,0.288,17.4,35.09,0.91,0.13,794,1.2,274,2.5
+9333,2023,7,14,10,30,29.2,1.13,0.046,0.62,76,985,929,0,0,1.4,76,985,0,929,0.288,16.71,29.99,0.91,0.13,794,1.2,272,2.8
+9334,2023,7,14,11,0,30,1.05,0.033,0.62,74,999,976,0,0,0.7,74,999,0,976,0.288,15.15,25.4,0.91,0.13,794,1.2,271,3.1
+9335,2023,7,14,11,30,30.6,1.05,0.033,0.62,74,1004,1007,0,0,0.7,74,1004,0,1007,0.287,14.64,21.68,0.91,0.13,794,1.2,271,3.3
+9336,2023,7,14,12,0,31.2,1.04,0.032,0.62,74,1007,1024,0,0,-0.1,74,1007,0,1024,0.287,13.34,19.38,0.91,0.13,793,1.2,271,3.5
+9337,2023,7,14,12,30,31.6,1.04,0.032,0.62,74,1008,1027,0,0,-0.1,118,875,0,945,0.287,13.04,19.03,0.91,0.13,793,1.2,273,3.7
+9338,2023,7,14,13,0,32,1.05,0.031,0.62,74,1006,1015,0,0,-0.9,260,585,0,807,0.287,12.02,20.72,0.91,0.13,793,1.2,275,3.9
+9339,2023,7,14,13,30,32.2,1.05,0.031,0.62,75,998,987,0,0,-0.9,261,608,4,816,0.287,11.89,24.02,0.91,0.13,793,1.2,279,3.9
+9340,2023,7,14,14,0,32.4,1.17,0.044,0.62,78,986,946,1,8,-1.7,306,451,14,703,0.288,11.14,28.36,0.91,0.13,793,1.2,282,4
+9341,2023,7,14,14,30,32.3,1.17,0.044,0.62,78,976,893,0,3,-1.7,334,380,7,651,0.288,11.19,33.33,0.91,0.13,792,1.2,287,4
+9342,2023,7,14,15,0,32.2,1.2,0.044,0.62,75,963,827,0,0,-2.3,210,623,0,697,0.289,10.77,38.65,0.91,0.13,792,1.2,291,4.1
+9343,2023,7,14,15,30,31.9,1.2,0.044,0.62,73,946,751,0,0,-2.3,99,887,0,735,0.29,10.95,44.18,0.91,0.13,792,1.2,297,4.2
+9344,2023,7,14,16,0,31.5,1.22,0.045,0.62,70,923,665,0,0,-2.6,112,803,0,630,0.29,10.95,49.83,0.92,0.13,792,1.2,302,4.3
+9345,2023,7,14,16,30,30.8,1.22,0.045,0.62,65,895,572,0,0,-2.6,130,660,0,504,0.291,11.39,55.52,0.92,0.13,792,1.2,308,4.4
+9346,2023,7,14,17,0,30.1,1.26,0.044,0.62,61,858,474,0,0,-2.4,76,812,7,467,0.291,12.03,61.21,0.92,0.13,792,1.2,314,4.5
+9347,2023,7,14,17,30,29,1.26,0.044,0.62,56,810,374,0,0,-2.4,70,768,7,372,0.291,12.83,66.86,0.91,0.13,793,1.2,321,4.4
+9348,2023,7,14,18,0,27.9,1.31,0.04,0.62,49,744,273,0,0,-0.8,49,744,0,273,0.292,15.41,72.44,0.91,0.13,793,1.3,328,4.2
+9349,2023,7,14,18,30,25.9,1.31,0.04,0.62,40,647,176,0,0,-0.8,40,647,0,176,0.292,17.33,77.9,0.91,0.13,793,1.3,334,3.8
+9350,2023,7,14,19,0,23.9,1.36,0.035,0.62,29,495,88,0,0,1,29,495,0,88,0.293,22.25,83.2,0.91,0.13,794,1.3,340,3.3
+9351,2023,7,14,19,30,22.7,1.36,0.035,0.62,13,180,19,0,0,1,13,180,0,19,0.293,23.91,88.22,0.9,0.13,794,1.2,343,3.2
+9352,2023,7,14,20,0,21.6,1.4,0.032,0.62,0,0,0,0,0,1.3,0,0,0,0,0.293,26.14,93.4,0.9,0.13,794,1.2,346,3.1
+9353,2023,7,14,20,30,20.7,1.4,0.032,0.62,0,0,0,0,0,1.4,0,0,0,0,0.293,27.65,98.07,0.9,0.13,795,1.2,347,2.9
+9354,2023,7,14,21,0,19.9,1.43,0.031,0.62,0,0,0,0,0,2,0,0,0,0,0.293,30.35,102.42,0.9,0.13,795,1.2,347,2.7
+9355,2023,7,14,21,30,19.1,1.43,0.031,0.62,0,0,0,0,0,2,0,0,0,0,0.293,31.9,106.37,0.9,0.13,795,1.2,346,2.4
+9356,2023,7,14,22,0,18.2,1.48,0.03,0.62,0,0,0,0,0,2.8,0,0,0,0,0.293,35.88,109.87,0.9,0.13,795,1.1,345,2.1
+9357,2023,7,14,22,30,17.6,1.48,0.03,0.62,0,0,0,0,0,2.8,0,0,0,0,0.294,37.26,112.82,0.9,0.13,795,1.1,344,1.9
+9358,2023,7,14,23,0,16.9,1.53,0.031,0.62,0,0,0,0,0,3.6,0,0,0,0,0.294,41.09,115.17,0.9,0.13,795,1.1,342,1.8
+9359,2023,7,14,23,30,16.5,1.53,0.031,0.62,0,0,0,0,0,3.6,0,0,0,0,0.294,42.14,116.82,0.9,0.13,795,1.1,342,1.7
+9360,2023,7,15,0,0,16.1,1.58,0.033,0.62,0,0,0,0,0,4.1,0,0,0,0,0.295,44.91,117.74,0.9,0.13,795,1.1,342,1.7
+9361,2023,7,15,0,30,15.6,1.58,0.033,0.62,0,0,0,0,0,4.1,0,0,0,0,0.295,46.37,117.87,0.9,0.13,795,1.1,344,1.8
+9362,2023,7,15,1,0,15.2,1.59,0.035,0.62,0,0,0,0,0,4.7,0,0,0,0,0.295,49.46,117.23,0.9,0.13,795,1.1,346,1.9
+9363,2023,7,15,1,30,14.7,1.59,0.035,0.62,0,0,0,0,0,4.7,0,0,0,0,0.295,51.07,115.83,0.9,0.13,795,1.1,348,2
+9364,2023,7,15,2,0,14.3,1.58,0.038,0.62,0,0,0,0,0,5.3,0,0,0,0,0.295,54.68,113.72,0.9,0.13,795,1.1,349,2.1
+9365,2023,7,15,2,30,13.9,1.58,0.038,0.62,0,0,0,0,0,5.3,0,0,0,0,0.295,56.11,110.98,0.9,0.13,795,1.1,351,2
+9366,2023,7,15,3,0,13.5,1.57,0.04,0.62,0,0,0,0,0,5.8,0,0,0,0,0.295,59.83,107.66,0.9,0.13,796,1.1,352,2
+9367,2023,7,15,3,30,13.2,1.57,0.04,0.62,0,0,0,0,0,5.8,0,0,0,0,0.295,61.01,103.86,0.9,0.13,796,1.1,354,1.9
+9368,2023,7,15,4,0,12.8,1.55,0.041,0.62,0,0,0,0,0,6.3,0,0,0,0,0.295,64.69,99.65,0.9,0.13,796,1.1,356,1.9
+9369,2023,7,15,4,30,13.2,1.55,0.041,0.62,0,0,0,0,0,6.3,0,0,0,0,0.294,63.03,95.08,0.91,0.13,796,1.1,179,2.1
+9370,2023,7,15,5,0,13.5,1.54,0.041,0.62,7,73,7,0,0,6.7,7,73,0,7,0.294,63.67,89.83,0.91,0.13,797,1.1,2,2.3
+9371,2023,7,15,5,30,15,1.54,0.041,0.62,25,412,61,0,0,6.8,25,412,0,61,0.293,57.79,85.01,0.91,0.13,797,1.1,9,2.6
+9372,2023,7,15,6,0,16.5,1.52,0.04,0.62,37,602,144,0,0,6.7,37,602,0,144,0.293,52.41,79.79,0.91,0.13,797,1.1,16,2.9
+9373,2023,7,15,6,30,18.4,1.52,0.04,0.62,45,719,239,0,0,6.7,45,719,0,239,0.293,46.5,74.38,0.91,0.13,797,1.1,21,3.1
+9374,2023,7,15,7,0,20.3,1.5,0.039,0.62,52,798,340,0,0,6.2,52,798,0,340,0.293,39.88,68.84,0.91,0.13,797,1.1,26,3.3
+9375,2023,7,15,7,30,21.7,1.5,0.039,0.62,58,853,442,0,0,6.2,58,853,0,442,0.292,36.61,63.22,0.91,0.13,797,1.1,29,3.2
+9376,2023,7,15,8,0,23.1,1.48,0.038,0.62,61,894,541,0,0,5.7,61,894,0,541,0.291,32.53,57.54,0.91,0.13,797,1.1,31,3
+9377,2023,7,15,8,30,24.2,1.48,0.038,0.62,65,926,637,0,0,5.7,65,926,0,637,0.29,30.46,51.85,0.91,0.13,797,1.1,32,2.8
+9378,2023,7,15,9,0,25.3,1.46,0.037,0.62,67,950,725,0,0,4.7,67,950,0,725,0.289,26.51,46.19,0.91,0.13,797,1.1,34,2.5
+9379,2023,7,15,9,30,26.3,1.46,0.037,0.62,70,968,805,0,0,4.7,70,968,0,805,0.289,24.99,40.61,0.91,0.13,797,1.1,30,2.2
+9380,2023,7,15,10,0,27.2,1.44,0.035,0.62,71,983,874,0,0,3,71,983,0,874,0.288,21.07,35.21,0.91,0.13,797,1.1,26,1.9
+9381,2023,7,15,10,30,27.9,1.44,0.035,0.62,72,995,933,0,0,3,72,995,0,933,0.288,20.23,30.11,0.91,0.13,797,1.1,19,1.7
+9382,2023,7,15,11,0,28.6,1.44,0.031,0.62,71,1005,978,0,0,1.5,71,1005,0,978,0.287,17.4,25.54,0.9,0.13,797,1.1,12,1.5
+9383,2023,7,15,11,30,29.2,1.44,0.031,0.62,72,1011,1010,0,0,1.5,72,1011,0,1010,0.287,16.81,21.84,0.91,0.13,797,1.1,185,1.3
+9384,2023,7,15,12,0,29.7,1.44,0.03,0.62,72,1013,1027,0,0,0.3,72,1013,0,1027,0.287,14.98,19.54,0.91,0.13,796,1.1,357,1.1
+9385,2023,7,15,12,30,30.1,1.44,0.03,0.62,72,1014,1030,0,0,0.3,72,1014,0,1030,0.287,14.64,19.18,0.91,0.13,796,1.1,349,0.9
+9386,2023,7,15,13,0,30.5,1.45,0.029,0.62,71,1013,1018,0,0,-0.7,71,1013,0,1018,0.287,13.31,20.86,0.91,0.13,796,1.1,341,0.8
+9387,2023,7,15,13,30,30.8,1.45,0.029,0.62,71,1008,991,0,0,-0.7,71,1008,0,991,0.287,13.09,24.14,0.91,0.13,796,1.1,317,0.7
+9388,2023,7,15,14,0,31,1.45,0.031,0.62,71,1001,951,0,0,-1.6,85,971,0,939,0.287,12.1,28.46,0.91,0.13,795,1.1,293,0.6
+9389,2023,7,15,14,30,31.1,1.45,0.031,0.62,69,992,897,0,0,-1.6,83,961,0,885,0.289,12.04,33.41,0.91,0.13,795,1.1,280,0.8
+9390,2023,7,15,15,0,31.2,1.44,0.031,0.62,67,980,832,0,0,-2.5,130,856,0,798,0.29,11.2,38.73,0.91,0.13,795,1.1,267,1
+9391,2023,7,15,15,30,31.1,1.44,0.031,0.62,65,964,755,0,0,-2.5,169,712,0,679,0.292,11.26,44.26,0.91,0.13,795,1.1,273,1.3
+9392,2023,7,15,16,0,31,1.42,0.031,0.62,63,943,670,0,0,-3.4,157,626,0,560,0.293,10.63,49.9,0.91,0.13,794,1.1,279,1.6
+9393,2023,7,15,16,30,30.6,1.42,0.031,0.62,59,918,578,0,0,-3.4,112,750,0,536,0.294,10.87,55.59,0.91,0.13,794,1,289,1.9
+9394,2023,7,15,17,0,30.3,1.39,0.03,0.62,55,884,480,0,0,-4.1,55,884,0,480,0.294,10.51,61.28,0.91,0.13,794,1,299,2.2
+9395,2023,7,15,17,30,29.4,1.39,0.03,0.62,50,839,379,0,0,-4.1,50,839,0,379,0.294,11.07,66.93,0.9,0.13,794,1,311,2.3
+9396,2023,7,15,18,0,28.4,1.37,0.028,0.62,44,777,278,0,0,-2.4,44,777,0,278,0.294,13.24,72.51,0.9,0.13,794,1,322,2.4
+9397,2023,7,15,18,30,26.4,1.37,0.028,0.62,37,684,179,0,0,-2.4,37,684,0,179,0.294,14.9,77.98,0.9,0.13,795,0.9,332,1.9
+9398,2023,7,15,19,0,24.4,1.35,0.025,0.62,28,533,90,0,0,-1,28,533,0,90,0.294,18.61,83.28,0.9,0.13,795,0.9,341,1.4
+9399,2023,7,15,19,30,23.1,1.35,0.025,0.62,14,202,20,0,0,-1,14,202,0,20,0.294,20.12,88.31,0.9,0.13,795,0.9,346,1.4
+9400,2023,7,15,20,0,21.8,1.35,0.022,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.294,21.13,93.5,0.89,0.13,796,0.8,351,1.5
+9401,2023,7,15,20,30,21,1.35,0.022,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.294,22.19,98.18,0.89,0.13,796,0.8,350,1.5
+9402,2023,7,15,21,0,20.2,1.39,0.022,0.62,0,0,0,0,0,-1,0,0,0,0,0.294,24.07,102.53,0.89,0.13,796,0.8,349,1.5
+9403,2023,7,15,21,30,19.5,1.39,0.022,0.62,0,0,0,0,0,-1,0,0,0,0,0.294,25.13,106.49,0.9,0.13,796,0.8,349,1.4
+9404,2023,7,15,22,0,18.9,1.47,0.023,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.293,27.22,110,0.9,0.13,796,0.8,348,1.3
+9405,2023,7,15,22,30,18.3,1.47,0.023,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.294,28.26,112.96,0.9,0.13,796,0.8,349,1.3
+9406,2023,7,15,23,0,17.7,1.55,0.027,0.62,0,0,0,0,0,0.2,0,0,0,0,0.294,30.62,115.31,0.9,0.13,796,0.8,349,1.2
+9407,2023,7,15,23,30,17.3,1.55,0.027,0.62,0,0,0,0,0,0.2,0,0,0,0,0.294,31.4,116.97,0.9,0.13,796,0.8,351,1.2
+9408,2023,7,16,0,0,16.8,1.58,0.03,0.62,0,0,0,0,0,0.7,0,0,0,0,0.295,33.56,117.89,0.9,0.13,796,0.8,352,1.2
+9409,2023,7,16,0,30,16.4,1.58,0.03,0.62,0,0,0,0,0,0.7,0,0,0,0,0.295,34.42,118.03,0.9,0.13,796,0.8,354,1.1
+9410,2023,7,16,1,0,16.1,1.58,0.031,0.62,0,0,0,0,0,0.9,0,0,0,0,0.295,35.75,117.39,0.9,0.13,796,0.7,356,1.1
+9411,2023,7,16,1,30,15.7,1.58,0.031,0.62,0,0,0,0,0,0.9,0,0,0,0,0.295,36.67,115.99,0.9,0.13,796,0.7,179,1
+9412,2023,7,16,2,0,15.4,1.56,0.031,0.62,0,0,0,0,0,1.1,0,0,0,0,0.295,37.88,113.88,0.9,0.13,796,0.7,3,0.9
+9413,2023,7,16,2,30,15.1,1.56,0.031,0.62,0,0,0,0,0,1.1,0,0,0,0,0.295,38.62,111.13,0.9,0.13,796,0.8,9,0.9
+9414,2023,7,16,3,0,14.9,1.54,0.032,0.62,0,0,0,0,0,1.2,0,0,0,0,0.295,39.49,107.81,0.9,0.13,796,0.8,15,0.8
+9415,2023,7,16,3,30,14.7,1.54,0.032,0.62,0,0,0,0,0,1.2,0,0,0,0,0.295,40,104.01,0.9,0.13,796,0.8,23,0.8
+9416,2023,7,16,4,0,14.4,1.52,0.031,0.62,0,0,0,0,0,1.3,0,0,0,0,0.294,40.95,99.78,0.9,0.13,796,0.8,32,0.7
+9417,2023,7,16,4,30,14.7,1.52,0.031,0.62,0,0,0,0,0,1.3,0,0,0,0,0.293,40.21,95.22,0.9,0.13,797,0.8,45,0.6
+9418,2023,7,16,5,0,15,1.5,0.032,0.62,7,80,7,0,0,1.7,7,80,0,7,0.292,40.54,89.94,0.9,0.13,797,0.8,57,0.6
+9419,2023,7,16,5,30,16.6,1.5,0.032,0.62,25,441,62,0,0,1.7,25,441,0,62,0.291,36.61,85.14,0.9,0.13,797,0.8,82,0.7
+9420,2023,7,16,6,0,18.2,1.49,0.032,0.62,36,630,146,0,0,1.5,36,630,0,146,0.29,32.52,79.91,0.9,0.13,797,0.8,106,0.8
+9421,2023,7,16,6,30,20.3,1.49,0.032,0.62,43,744,242,0,0,1.5,43,744,0,242,0.289,28.55,74.5,0.9,0.13,797,0.9,115,0.8
+9422,2023,7,16,7,0,22.4,1.47,0.032,0.62,50,818,344,0,0,0.2,50,818,0,344,0.289,22.96,68.96,0.9,0.13,797,0.9,124,0.7
+9423,2023,7,16,7,30,24.1,1.47,0.032,0.62,54,870,445,0,0,0.2,54,870,0,445,0.288,20.73,63.33,0.9,0.13,797,0.9,197,0.5
+9424,2023,7,16,8,0,25.8,1.46,0.033,0.62,59,909,545,0,0,-1.6,59,909,0,545,0.287,16.42,57.65,0.9,0.13,797,0.9,271,0.2
+9425,2023,7,16,8,30,26.8,1.46,0.033,0.62,63,937,640,0,0,-1.6,63,937,0,640,0.286,15.48,51.96,0.91,0.13,797,0.9,280,0.5
+9426,2023,7,16,9,0,27.9,1.44,0.033,0.62,65,959,728,0,0,-1.9,65,959,0,728,0.285,14.14,46.3,0.91,0.13,797,1,290,0.8
+9427,2023,7,16,9,30,28.8,1.44,0.033,0.62,69,974,807,0,0,-1.9,69,974,0,807,0.284,13.43,40.73,0.91,0.13,797,1,282,1
+9428,2023,7,16,10,0,29.8,1.43,0.034,0.62,71,987,876,0,0,-1.7,71,987,0,876,0.283,12.89,35.34,0.91,0.13,797,1,273,1.2
+9429,2023,7,16,10,30,30.6,1.43,0.034,0.62,71,998,933,0,0,-1.7,71,998,0,933,0.282,12.31,30.25,0.91,0.13,797,1.1,265,1.4
+9430,2023,7,16,11,0,31.3,1.35,0.029,0.62,70,1006,977,0,0,-1.4,70,1006,0,977,0.281,12.07,25.68,0.91,0.13,797,1.1,257,1.6
+9431,2023,7,16,11,30,32,1.35,0.029,0.62,70,1010,1007,0,0,-1.4,70,1010,0,1007,0.28,11.58,21.99,0.91,0.13,796,1.1,252,1.9
+9432,2023,7,16,12,0,32.6,1.31,0.028,0.62,70,1012,1023,0,0,-1.1,70,1012,0,1023,0.279,11.45,19.71,0.91,0.13,796,1.2,246,2.2
+9433,2023,7,16,12,30,33,1.31,0.028,0.62,71,1010,1024,0,0,-1.1,71,1010,0,1024,0.279,11.19,19.34,0.91,0.13,796,1.2,245,2.4
+9434,2023,7,16,13,0,33.4,1.27,0.028,0.62,71,1007,1011,0,0,-0.8,71,1007,0,1011,0.278,11.2,21,0.91,0.13,795,1.2,243,2.6
+9435,2023,7,16,13,30,33.7,1.27,0.028,0.62,72,1000,984,0,0,-0.8,72,1000,0,984,0.278,11.01,24.26,0.91,0.13,795,1.3,242,2.8
+9436,2023,7,16,14,0,33.9,1.28,0.035,0.62,73,989,942,0,0,-0.6,73,989,0,942,0.278,11.07,28.57,0.92,0.13,795,1.3,242,2.9
+9437,2023,7,16,14,30,33.9,1.28,0.035,0.62,72,979,888,0,0,-0.6,72,979,0,888,0.279,11.07,33.51,0.92,0.13,795,1.3,242,3
+9438,2023,7,16,15,0,33.9,1.25,0.036,0.62,71,965,823,0,0,-0.6,71,965,0,823,0.279,11.04,38.82,0.92,0.13,794,1.3,242,3
+9439,2023,7,16,15,30,33.7,1.25,0.036,0.62,69,948,747,0,0,-0.6,69,948,0,747,0.279,11.17,44.34,0.92,0.13,794,1.3,242,2.9
+9440,2023,7,16,16,0,33.4,1.23,0.037,0.62,66,925,661,0,0,-0.7,66,925,0,661,0.279,11.26,49.98,0.92,0.13,794,1.4,242,2.8
+9441,2023,7,16,16,30,32.9,1.23,0.037,0.62,63,897,569,0,0,-0.7,63,897,0,569,0.279,11.58,55.67,0.92,0.13,794,1.4,243,2.6
+9442,2023,7,16,17,0,32.5,1.21,0.038,0.62,59,860,471,0,0,-0.9,59,860,0,471,0.28,11.75,61.36,0.92,0.13,794,1.4,243,2.4
+9443,2023,7,16,17,30,31.4,1.21,0.038,0.62,53,811,370,0,0,-0.9,53,811,0,370,0.28,12.5,67.01,0.92,0.13,794,1.4,243,1.8
+9444,2023,7,16,18,0,30.4,1.19,0.037,0.62,48,743,270,0,0,1.3,53,720,0,268,0.28,15.5,72.59,0.92,0.13,794,1.3,242,1.2
+9445,2023,7,16,18,30,28.5,1.19,0.037,0.62,40,643,173,0,3,1.3,63,495,29,165,0.28,17.29,78.06,0.92,0.13,794,1.3,236,0.9
+9446,2023,7,16,19,0,26.7,1.18,0.036,0.62,29,483,85,0,0,2.4,29,483,0,85,0.28,20.77,83.37,0.91,0.13,794,1.3,231,0.5
+9447,2023,7,16,19,30,25.9,1.18,0.036,0.62,13,169,18,0,0,2.4,13,169,0,18,0.281,21.77,88.4,0.91,0.13,794,1.3,226,0.4
+9448,2023,7,16,20,0,25.1,1.17,0.035,0.62,0,0,0,0,0,1.5,0,0,0,0,0.281,21.46,93.6,0.91,0.13,795,1.2,221,0.2
+9449,2023,7,16,20,30,24.6,1.17,0.035,0.62,0,0,0,0,0,1.5,0,0,0,0,0.28,22.11,98.29,0.91,0.13,795,1.2,235,0.2
+9450,2023,7,16,21,0,24,1.17,0.033,0.62,0,0,0,0,0,1.4,0,0,0,0,0.28,22.7,102.65,0.91,0.13,795,1.2,248,0.1
+9451,2023,7,16,21,30,23.5,1.17,0.033,0.62,0,0,0,0,0,1.4,0,0,0,0,0.279,23.4,106.62,0.91,0.13,795,1.1,150,0.1
+9452,2023,7,16,22,0,23.1,1.17,0.033,0.62,0,0,0,0,0,1.1,0,0,0,0,0.279,23.5,110.13,0.91,0.13,795,1.1,52,0.1
+9453,2023,7,16,22,30,22.6,1.17,0.033,0.62,0,0,0,0,0,1.1,0,0,0,0,0.278,24.22,113.11,0.9,0.13,795,1.1,82,0.2
+9454,2023,7,16,23,0,22.2,1.17,0.032,0.62,0,0,0,0,0,1,0,0,0,0,0.278,24.58,115.46,0.9,0.13,795,1,112,0.2
+9455,2023,7,16,23,30,21.7,1.17,0.032,0.62,0,0,0,0,0,1,0,0,0,0,0.278,25.33,117.13,0.9,0.13,795,1,121,0.4
+9456,2023,7,17,0,0,21.2,1.16,0.032,0.62,0,0,0,0,0,0.8,0,0,0,0,0.277,25.75,118.06,0.9,0.13,795,1,130,0.6
+9457,2023,7,17,0,30,20.5,1.16,0.032,0.62,0,0,0,0,0,0.8,0,0,0,0,0.277,26.87,118.2,0.91,0.13,795,1,136,0.7
+9458,2023,7,17,1,0,19.8,1.15,0.034,0.62,0,0,0,0,0,0.5,0,0,0,0,0.277,27.43,117.56,0.91,0.13,795,1,142,0.8
+9459,2023,7,17,1,30,19.1,1.15,0.034,0.62,0,0,0,0,0,0.5,0,0,0,0,0.277,28.64,116.16,0.91,0.13,795,1,148,0.9
+9460,2023,7,17,2,0,18.5,1.14,0.037,0.62,0,0,0,0,0,0.2,0,0,0,0,0.277,29.24,114.05,0.91,0.13,794,1,154,1
+9461,2023,7,17,2,30,17.9,1.14,0.037,0.62,0,0,0,0,0,0.2,0,0,0,0,0.277,30.36,111.29,0.91,0.13,794,1,159,1.1
+9462,2023,7,17,3,0,17.3,1.14,0.038,0.62,0,0,0,0,0,0,0,0,0,0,0.276,30.98,107.97,0.91,0.13,794,1,164,1.1
+9463,2023,7,17,3,30,16.7,1.14,0.038,0.62,0,0,0,0,0,0,0,0,0,0,0.276,32.17,104.15,0.92,0.13,794,1,167,1.1
+9464,2023,7,17,4,0,16.2,1.16,0.041,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.276,32.53,99.93,0.92,0.13,794,1,171,1.2
+9465,2023,7,17,4,30,16.6,1.16,0.041,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.276,31.72,95.35,0.92,0.13,794,1.1,173,1.2
+9466,2023,7,17,5,0,16.9,1.18,0.044,0.62,6,62,6,0,0,-0.3,6,62,0,6,0.275,31.14,90.06,0.92,0.13,795,1.1,175,1.2
+9467,2023,7,17,5,30,18.5,1.18,0.044,0.62,27,380,58,1,0,-0.3,27,345,11,56,0.275,28.16,85.26,0.93,0.13,795,1.1,181,1.7
+9468,2023,7,17,6,0,20.1,1.18,0.048,0.62,39,575,139,0,0,-0.7,44,517,0,134,0.275,24.68,80.03,0.93,0.13,795,1.2,186,2.2
+9469,2023,7,17,6,30,21.7,1.18,0.048,0.62,48,696,233,0,3,-0.7,115,257,0,183,0.275,22.37,74.62,0.93,0.13,795,1.2,195,2.2
+9470,2023,7,17,7,0,23.3,1.16,0.05,0.62,56,773,332,0,0,-1.2,110,544,0,304,0.274,19.66,69.07,0.92,0.13,795,1.2,203,2.3
+9471,2023,7,17,7,30,25.9,1.16,0.05,0.62,63,827,433,0,0,-1.2,63,827,0,433,0.275,16.84,63.45,0.92,0.13,795,1.3,211,2.9
+9472,2023,7,17,8,0,28.5,1.13,0.054,0.62,69,865,530,0,0,-2,69,865,0,530,0.275,13.6,57.77,0.92,0.13,795,1.4,219,3.5
+9473,2023,7,17,8,30,30.3,1.13,0.054,0.62,74,893,623,0,0,-2,74,893,0,623,0.275,12.27,52.08,0.92,0.13,795,1.4,222,3.9
+9474,2023,7,17,9,0,32.1,1.12,0.062,0.62,80,912,709,0,0,-2.6,80,912,0,709,0.275,10.57,46.42,0.93,0.13,795,1.5,225,4.3
+9475,2023,7,17,9,30,33.1,1.12,0.062,0.62,85,928,787,0,0,-2.6,85,928,0,787,0.274,9.99,40.85,0.93,0.13,795,1.5,226,4.5
+9476,2023,7,17,10,0,34.1,1.13,0.069,0.62,89,939,854,0,0,-2.5,89,939,0,854,0.274,9.5,35.46,0.93,0.13,794,1.5,227,4.7
+9477,2023,7,17,10,30,34.8,1.13,0.069,0.62,90,953,912,0,0,-2.5,90,953,0,912,0.274,9.14,30.38,0.94,0.13,794,1.6,228,4.9
+9478,2023,7,17,11,0,35.5,1.16,0.059,0.62,89,966,958,0,8,-2,228,716,0,872,0.274,9.14,25.83,0.94,0.13,794,1.6,228,5.1
+9479,2023,7,17,11,30,36,1.16,0.059,0.62,90,971,989,0,0,-2,215,788,0,945,0.274,8.89,22.15,0.94,0.13,794,1.6,229,5.2
+9480,2023,7,17,12,0,36.4,1.18,0.06,0.62,91,973,1006,0,0,-1.3,91,973,0,1006,0.274,9.19,19.88,0.94,0.13,793,1.6,230,5.4
+9481,2023,7,17,12,30,36.7,1.18,0.06,0.62,92,972,1008,0,0,-1.3,104,953,0,1002,0.274,9.04,19.51,0.94,0.13,793,1.6,230,5.7
+9482,2023,7,17,13,0,37,1.19,0.061,0.62,91,969,995,0,0,-0.5,223,770,0,941,0.274,9.42,21.15,0.95,0.13,792,1.6,231,6
+9483,2023,7,17,13,30,37.1,1.19,0.061,0.62,89,966,969,0,8,-0.5,192,738,0,864,0.273,9.37,24.39,0.96,0.13,792,1.6,232,6.4
+9484,2023,7,17,14,0,37.1,1.3,0.059,0.62,88,960,930,0,0,0,88,960,0,930,0.273,9.68,28.68,0.96,0.13,792,1.6,234,6.7
+9485,2023,7,17,14,30,36.9,1.3,0.059,0.62,88,945,875,0,0,0,88,945,0,875,0.273,9.79,33.61,0.97,0.13,792,1.6,238,6.9
+9486,2023,7,17,15,0,36.7,1.34,0.073,0.62,90,924,809,0,0,-0.4,130,821,0,769,0.273,9.59,38.91,0.97,0.13,791,1.6,241,7
+9487,2023,7,17,15,30,36.1,1.34,0.073,0.62,91,898,732,0,0,-0.4,165,746,0,698,0.273,9.91,44.43,0.97,0.13,791,1.7,245,6.8
+9488,2023,7,17,16,0,35.5,1.39,0.09,0.62,90,864,645,0,0,-0.8,164,719,0,626,0.272,10.01,50.06,0.98,0.13,791,1.7,249,6.6
+9489,2023,7,17,16,30,34.8,1.39,0.09,0.62,88,825,552,0,0,-0.8,134,721,0,540,0.272,10.4,55.75,0.98,0.13,791,1.7,253,6.1
+9490,2023,7,17,17,0,34,1.42,0.104,0.62,84,772,453,0,7,-0.5,169,498,0,407,0.272,11.05,61.44,0.98,0.13,791,1.7,256,5.6
+9491,2023,7,17,17,30,32.9,1.42,0.104,0.62,75,718,354,0,7,-0.5,112,523,14,316,0.272,11.75,67.1,0.97,0.13,791,1.7,263,4.3
+9492,2023,7,17,18,0,31.7,1.49,0.097,0.62,64,644,256,0,0,0.3,82,570,11,252,0.271,13.34,72.68,0.97,0.13,791,1.7,269,3
+9493,2023,7,17,18,30,29.5,1.49,0.097,0.62,50,546,162,0,0,0.3,53,533,0,162,0.271,15.14,78.16,0.96,0.13,792,1.6,288,2.3
+9494,2023,7,17,19,0,27.4,1.56,0.076,0.62,34,397,79,0,0,2.1,36,375,7,79,0.271,19.52,83.47,0.95,0.13,792,1.6,307,1.5
+9495,2023,7,17,19,30,26.4,1.56,0.076,0.62,13,122,16,0,0,2.1,13,122,0,16,0.272,20.7,88.5,0.94,0.13,792,1.6,320,1.6
+9496,2023,7,17,20,0,25.3,1.57,0.072,0.62,0,0,0,0,0,3.3,0,0,0,0,0.272,24.06,93.71,0.94,0.13,792,1.6,334,1.7
+9497,2023,7,17,20,30,24.6,1.57,0.072,0.62,0,0,0,0,8,3.3,0,0,0,0,0.272,25.11,98.4,0.94,0.13,793,1.7,340,1.8
+9498,2023,7,17,21,0,23.8,1.5,0.088,0.62,0,0,0,0,8,4.2,0,0,0,0,0.273,27.92,102.77,0.94,0.13,793,1.8,345,1.8
+9499,2023,7,17,21,30,23.1,1.5,0.088,0.62,0,0,0,0,8,4.2,0,0,0,0,0.272,29.12,106.75,0.95,0.13,793,1.9,346,1.7
+9500,2023,7,17,22,0,22.4,1.42,0.118,0.62,0,0,0,0,8,4.8,0,0,0,0,0.272,31.89,110.27,0.95,0.13,793,2,347,1.6
+9501,2023,7,17,22,30,21.9,1.42,0.118,0.62,0,0,0,0,8,4.8,0,0,0,0,0.272,32.87,113.26,0.96,0.13,793,2,347,1.4
+9502,2023,7,17,23,0,21.4,1.36,0.153,0.62,0,0,0,0,8,5.4,0,0,0,0,0.271,35.26,115.62,0.96,0.13,794,2.1,347,1.2
+9503,2023,7,17,23,30,21,1.36,0.153,0.62,0,0,0,0,7,5.4,0,0,0,0,0.271,36.14,117.3,0.96,0.13,794,2.1,348,1.1
+9504,2023,7,18,0,0,20.7,1.33,0.182,0.62,0,0,0,0,7,5.8,0,0,0,0,0.271,37.79,118.23,0.96,0.13,794,2.2,349,1.1
+9505,2023,7,18,0,30,20.5,1.33,0.182,0.62,0,0,0,0,7,5.8,0,0,0,0,0.271,38.26,118.37,0.96,0.13,794,2.2,351,1
+9506,2023,7,18,1,0,20.2,1.32,0.192,0.62,0,0,0,0,7,6.1,0,0,0,0,0.271,39.76,117.73,0.96,0.13,794,2.3,353,1
+9507,2023,7,18,1,30,20.1,1.32,0.192,0.62,0,0,0,0,8,6.1,0,0,0,0,0.271,40.01,116.33,0.96,0.13,794,2.3,355,1
+9508,2023,7,18,2,0,20,1.29,0.172,0.62,0,0,0,0,0,6.2,0,0,0,0,0.271,40.58,114.21,0.96,0.13,794,2.3,356,0.9
+9509,2023,7,18,2,30,20,1.29,0.172,0.62,0,0,0,0,3,6.2,0,0,0,0,0.271,40.58,111.45,0.96,0.13,794,2.3,353,1
+9510,2023,7,18,3,0,20.1,1.25,0.15,0.62,0,0,0,0,8,6.3,0,0,0,0,0.271,40.56,108.12,0.95,0.13,794,2.3,350,1
+9511,2023,7,18,3,30,20,1.25,0.15,0.62,0,0,0,0,8,6.3,0,0,0,0,0.271,40.81,104.31,0.95,0.13,794,2.2,352,1
+9512,2023,7,18,4,0,20,1.23,0.131,0.62,0,0,0,0,3,6.4,0,0,0,0,0.272,41.21,100.07,0.95,0.13,794,2.2,353,1
+9513,2023,7,18,4,30,20.2,1.23,0.131,0.62,0,0,0,0,7,6.4,0,0,0,0,0.272,40.7,95.49,0.95,0.13,794,2.1,183,0.8
+9514,2023,7,18,5,0,20.4,1.22,0.11,0.62,5,26,5,3,7,6.6,3,0,43,3,0.272,40.84,90.18,0.95,0.13,794,2.1,12,0.7
+9515,2023,7,18,5,30,21.4,1.22,0.11,0.62,30,245,50,7,7,6.7,23,1,100,23,0.273,38.41,85.39,0.95,0.13,794,2,44,0.5
+9516,2023,7,18,6,0,22.3,1.23,0.096,0.62,47,460,126,1,7,7,47,3,14,48,0.274,37.22,80.16,0.95,0.13,794,2,76,0.4
+9517,2023,7,18,6,30,23.8,1.23,0.096,0.62,60,600,218,0,7,7,67,4,0,68,0.274,34,74.74,0.95,0.13,794,2,127,0.7
+9518,2023,7,18,7,0,25.2,1.23,0.088,0.62,68,697,316,0,7,6.1,115,162,0,173,0.274,29.46,69.19,0.95,0.13,794,2,178,1
+9519,2023,7,18,7,30,27,1.23,0.088,0.62,75,763,415,0,8,6.2,200,336,0,350,0.275,26.53,63.56,0.95,0.13,795,2,211,1.4
+9520,2023,7,18,8,0,28.7,1.23,0.085,0.62,81,811,512,0,8,4.8,149,99,0,202,0.275,21.79,57.88,0.94,0.13,795,2,244,1.9
+9521,2023,7,18,8,30,29.6,1.23,0.085,0.62,86,846,605,0,8,4.8,123,6,0,127,0.274,20.69,52.19,0.95,0.13,795,2,254,2.4
+9522,2023,7,18,9,0,30.5,1.24,0.087,0.62,92,871,691,0,7,3.8,201,9,4,207,0.274,18.43,46.54,0.95,0.13,795,2.1,265,3
+9523,2023,7,18,9,30,30.8,1.24,0.087,0.62,98,889,769,2,8,3.8,208,24,32,226,0.274,18.12,40.97,0.95,0.13,795,2.1,276,3.2
+9524,2023,7,18,10,0,31,1.25,0.096,0.62,103,901,836,3,8,3.8,314,152,46,438,0.273,17.81,35.59,0.95,0.13,795,2.1,286,3.5
+9525,2023,7,18,10,30,31.1,1.25,0.096,0.62,102,919,894,2,7,3.8,308,126,25,417,0.273,17.71,30.52,0.95,0.13,795,2.1,298,3.5
+9526,2023,7,18,11,0,31.1,1.39,0.081,0.62,99,936,940,0,8,4.1,326,55,0,375,0.273,18.13,25.98,0.95,0.13,795,2.1,309,3.6
+9527,2023,7,18,11,30,31.6,1.39,0.081,0.62,100,942,971,0,8,4.1,437,259,0,677,0.273,17.62,22.32,0.95,0.13,795,2.1,316,3.3
+9528,2023,7,18,12,0,32.2,1.42,0.081,0.62,100,945,988,0,8,4.2,396,373,0,746,0.274,17.2,20.05,0.95,0.13,795,2.1,322,3
+9529,2023,7,18,12,30,32.6,1.42,0.081,0.62,103,942,990,0,8,4.2,350,413,0,739,0.274,16.8,19.68,0.95,0.13,794,2.1,324,2.6
+9530,2023,7,18,13,0,33.1,1.44,0.091,0.62,105,936,977,0,8,4.1,349,193,0,529,0.274,16.18,21.3,0.96,0.13,794,2.1,326,2.2
+9531,2023,7,18,13,30,33.2,1.44,0.091,0.62,107,926,949,0,8,4.1,350,205,0,536,0.274,16.09,24.53,0.96,0.13,794,2.2,319,2.2
+9532,2023,7,18,14,0,33.3,1.44,0.106,0.62,110,910,907,0,8,4.2,313,388,0,653,0.274,16.08,28.8,0.96,0.13,794,2.2,312,2.2
+9533,2023,7,18,14,30,32.6,1.44,0.106,0.62,111,888,850,0,0,4.1,246,622,0,763,0.274,16.72,33.71,0.97,0.13,794,2.3,304,2.9
+9534,2023,7,18,15,0,31.8,1.39,0.13,0.62,115,858,782,0,0,5.1,223,628,0,711,0.274,18.68,39,0.97,0.13,794,2.4,297,3.6
+9535,2023,7,18,15,30,30.2,1.39,0.13,0.62,109,836,705,0,0,5.1,180,676,0,662,0.274,20.45,44.52,0.97,0.13,794,2.6,301,4
+9536,2023,7,18,16,0,28.5,1.43,0.126,0.62,104,807,621,0,5,7,261,188,0,381,0.275,25.82,50.15,0.97,0.13,795,2.7,306,4.4
+9537,2023,7,18,16,30,27.1,1.43,0.126,0.62,93,782,532,0,7,7,243,137,0,320,0.276,28.01,55.84,0.97,0.13,795,2.7,325,3.9
+9538,2023,7,18,17,0,25.7,1.55,0.103,0.62,82,751,440,0,7,8.3,188,37,0,206,0.277,33.28,61.53,0.96,0.13,795,2.6,344,3.5
+9539,2023,7,18,17,30,25,1.55,0.103,0.62,71,706,345,0,6,8.3,125,67,0,151,0.278,34.69,67.19,0.96,0.13,795,2.5,186,3
+9540,2023,7,18,18,0,24.3,1.66,0.083,0.62,59,646,250,0,6,8.6,49,108,0,81,0.279,36.92,72.77,0.96,0.13,795,2.4,29,2.5
+9541,2023,7,18,18,30,23.6,1.66,0.083,0.62,48,539,158,0,7,8.6,54,315,0,118,0.279,38.5,78.25,0.96,0.13,795,2.4,59,1.8
+9542,2023,7,18,19,0,22.8,1.68,0.078,0.62,33,376,75,6,6,9.2,38,7,86,39,0.279,41.96,83.57,0.96,0.13,795,2.4,88,1.1
+9543,2023,7,18,19,30,22.2,1.68,0.078,0.62,12,113,15,5,6,9.2,8,0,71,8,0.28,43.51,88.59,0.96,0.13,795,2.4,116,1.5
+9544,2023,7,18,20,0,21.6,1.66,0.077,0.62,0,0,0,0,6,9.9,0,0,0,0,0.28,47.27,93.83,0.96,0.13,796,2.4,143,1.9
+9545,2023,7,18,20,30,21.2,1.66,0.077,0.62,0,0,0,0,7,9.9,0,0,0,0,0.28,48.43,98.53,0.96,0.13,796,2.4,152,2.2
+9546,2023,7,18,21,0,20.8,1.62,0.083,0.62,0,0,0,0,6,10.7,0,0,0,0,0.28,52.42,102.91,0.96,0.13,796,2.5,160,2.4
+9547,2023,7,18,21,30,20.5,1.62,0.083,0.62,0,0,0,0,6,10.7,0,0,0,0,0.28,53.4,106.89,0.96,0.13,796,2.5,168,2.2
+9548,2023,7,18,22,0,20.1,1.6,0.09,0.62,0,0,0,0,7,11.6,0,0,0,0,0.28,58.26,110.42,0.96,0.13,796,2.5,175,2
+9549,2023,7,18,22,30,19.9,1.6,0.09,0.62,0,0,0,0,7,11.6,0,0,0,0,0.28,58.98,113.41,0.96,0.13,796,2.5,181,1.8
+9550,2023,7,18,23,0,19.6,1.61,0.09,0.62,0,0,0,0,7,12.3,0,0,0,0,0.28,62.68,115.79,0.96,0.13,796,2.5,188,1.6
+9551,2023,7,18,23,30,19.3,1.61,0.09,0.62,0,0,0,0,7,12.3,0,0,0,0,0.28,63.85,117.47,0.96,0.13,796,2.5,195,1.4
+9552,2023,7,19,0,0,19,1.63,0.087,0.62,0,0,0,0,7,12.6,0,0,0,0,0.279,66.55,118.4,0.96,0.13,796,2.5,203,1.2
+9553,2023,7,19,0,30,18.5,1.63,0.087,0.62,0,0,0,0,7,12.6,0,0,0,0,0.279,68.65,118.55,0.96,0.13,796,2.5,210,1.2
+9554,2023,7,19,1,0,18.1,1.63,0.088,0.62,0,0,0,0,7,12.8,0,0,0,0,0.278,71.13,117.91,0.96,0.13,795,2.5,217,1.1
+9555,2023,7,19,1,30,17.8,1.63,0.088,0.62,0,0,0,0,7,12.8,0,0,0,0,0.278,72.48,116.51,0.96,0.13,795,2.5,223,1.1
+9556,2023,7,19,2,0,17.5,1.56,0.106,0.62,0,0,0,0,7,13,0,0,0,0,0.278,74.71,114.39,0.97,0.13,795,2.5,229,1.1
+9557,2023,7,19,2,30,17.4,1.56,0.106,0.62,0,0,0,0,7,13,0,0,0,0,0.278,75.28,111.62,0.97,0.13,796,2.6,232,1.1
+9558,2023,7,19,3,0,17.2,1.49,0.125,0.62,0,0,0,0,7,13.1,0,0,0,0,0.278,76.95,108.29,0.97,0.13,796,2.6,234,1
+9559,2023,7,19,3,30,17,1.49,0.125,0.62,0,0,0,0,8,13.1,0,0,0,0,0.279,77.92,104.46,0.97,0.13,796,2.6,234,0.9
+9560,2023,7,19,4,0,16.9,1.47,0.129,0.62,0,0,0,0,7,13.2,0,0,0,0,0.279,78.69,100.22,0.97,0.13,796,2.6,234,0.8
+9561,2023,7,19,4,30,17.3,1.47,0.129,0.62,0,0,0,0,8,13.2,0,0,0,0,0.279,76.73,95.64,0.97,0.13,796,2.6,232,0.9
+9562,2023,7,19,5,0,17.6,1.47,0.127,0.62,4,24,4,3,7,13.3,2,0,43,2,0.279,76,90.3,0.97,0.13,797,2.6,230,1
+9563,2023,7,19,5,30,18.4,1.47,0.127,0.62,29,214,46,7,7,13.3,17,0,100,17,0.28,72.28,85.52,0.97,0.13,797,2.6,233,1.4
+9564,2023,7,19,6,0,19.2,1.45,0.13,0.62,51,405,119,1,7,13.2,29,9,14,31,0.28,68.02,80.29,0.97,0.13,797,2.6,237,1.7
+9565,2023,7,19,6,30,20.1,1.45,0.13,0.62,66,541,207,0,8,13.2,57,7,4,59,0.28,64.34,74.86,0.97,0.13,797,2.6,242,1.9
+9566,2023,7,19,7,0,21,1.44,0.126,0.62,77,637,302,0,4,11.9,58,1,7,58,0.28,56.02,69.31,0.97,0.13,798,2.7,246,2.1
+9567,2023,7,19,7,30,21.6,1.44,0.126,0.62,86,706,399,0,4,11.9,53,0,0,53,0.28,54.01,63.68,0.97,0.13,798,2.7,248,2.1
+9568,2023,7,19,8,0,22.2,1.44,0.123,0.62,93,759,495,0,4,10.9,38,0,0,38,0.28,48.61,58,0.97,0.13,798,2.7,250,2.1
+9569,2023,7,19,8,30,22.7,1.44,0.123,0.62,100,799,588,0,4,10.9,60,0,0,60,0.28,47.16,52.31,0.97,0.13,798,2.7,252,2
+9570,2023,7,19,9,0,23.2,1.45,0.119,0.62,103,830,673,0,4,10.6,121,0,0,121,0.28,44.86,46.66,0.97,0.13,798,2.7,255,1.8
+9571,2023,7,19,9,30,23.9,1.45,0.119,0.62,105,859,752,0,4,10.6,140,0,0,140,0.28,43.01,41.1,0.97,0.13,798,2.7,254,1.5
+9572,2023,7,19,10,0,24.7,1.49,0.106,0.62,105,883,822,0,4,10.2,316,67,0,370,0.281,40.09,35.72,0.97,0.13,798,2.7,253,1.2
+9573,2023,7,19,10,30,25.7,1.49,0.106,0.62,101,909,883,0,4,10.2,396,94,0,477,0.281,37.78,30.66,0.97,0.13,798,2.6,247,0.9
+9574,2023,7,19,11,0,26.7,1.74,0.071,0.62,93,935,932,0,3,9.8,444,135,0,565,0.281,34.48,26.13,0.97,0.13,798,2.5,242,0.7
+9575,2023,7,19,11,30,27.4,1.74,0.071,0.62,92,945,965,0,3,9.8,311,596,0,862,0.281,33.1,22.49,0.96,0.13,798,2.4,242,0.7
+9576,2023,7,19,12,0,28.2,1.78,0.063,0.62,90,953,984,0,0,9.3,90,953,0,984,0.281,30.64,20.23,0.96,0.13,797,2.4,242,0.6
+9577,2023,7,19,12,30,28.8,1.78,0.063,0.62,89,956,988,0,0,9.3,89,956,0,988,0.281,29.6,19.86,0.96,0.13,797,2.3,248,0.5
+9578,2023,7,19,13,0,29.3,1.81,0.059,0.62,87,957,978,0,0,8.8,87,957,0,978,0.281,27.84,21.47,0.96,0.13,797,2.3,254,0.4
+9579,2023,7,19,13,30,29.5,1.81,0.059,0.62,85,954,952,0,0,8.8,85,954,0,952,0.281,27.52,24.67,0.96,0.13,797,2.3,254,0.4
+9580,2023,7,19,14,0,29.8,1.85,0.054,0.62,82,949,913,0,0,8.4,82,949,0,913,0.281,26.3,28.92,0.96,0.13,796,2.3,254,0.3
+9581,2023,7,19,14,30,29.8,1.85,0.054,0.62,82,938,861,0,0,8.4,82,938,0,861,0.28,26.3,33.82,0.96,0.13,796,2.3,259,0.3
+9582,2023,7,19,15,0,29.8,1.85,0.057,0.62,80,923,796,0,0,8.1,80,923,0,796,0.28,25.7,39.11,0.96,0.13,796,2.3,264,0.3
+9583,2023,7,19,15,30,29.6,1.85,0.057,0.62,78,900,719,0,0,8.1,115,814,0,694,0.28,26,44.61,0.96,0.13,796,2.4,279,0.3
+9584,2023,7,19,16,0,29.3,1.81,0.065,0.62,77,871,634,0,0,7.9,158,651,0,574,0.28,26.08,50.24,0.97,0.13,796,2.4,294,0.4
+9585,2023,7,19,16,30,28.6,1.81,0.065,0.62,77,829,541,0,0,7.9,156,574,0,478,0.279,27.15,55.93,0.97,0.13,796,2.5,300,0.8
+9586,2023,7,19,17,0,27.9,1.72,0.087,0.62,76,773,443,0,0,8.1,76,773,0,443,0.279,28.69,61.62,0.97,0.13,796,2.6,307,1.3
+9587,2023,7,19,17,30,26.6,1.72,0.087,0.62,73,696,342,0,0,8.1,101,584,14,327,0.279,30.96,67.28,0.98,0.13,796,2.6,316,2.1
+9588,2023,7,19,18,0,25.3,1.64,0.122,0.62,68,590,242,0,3,9.1,123,334,21,221,0.279,35.91,72.87,0.98,0.13,797,2.7,324,2.9
+9589,2023,7,19,18,30,23.7,1.64,0.122,0.62,55,470,150,0,8,9.1,87,235,39,134,0.279,39.51,78.35,0.98,0.13,797,2.7,339,3.4
+9590,2023,7,19,19,0,22.1,1.65,0.126,0.62,37,298,70,6,7,10.5,50,29,96,53,0.279,47.62,83.68,0.98,0.13,797,2.7,354,4
+9591,2023,7,19,19,30,21.3,1.65,0.126,0.62,12,77,14,5,7,10.5,10,1,71,10,0.279,49.99,88.7,0.98,0.13,797,2.7,189,3.7
+9592,2023,7,19,20,0,20.5,1.68,0.107,0.62,0,0,0,0,6,10.5,0,0,0,0,0.279,52.74,93.95,0.98,0.13,797,2.7,23,3.4
+9593,2023,7,19,20,30,20,1.68,0.107,0.62,0,0,0,0,6,10.5,0,0,0,0,0.279,54.46,98.66,0.97,0.13,798,2.7,45,2.2
+9594,2023,7,19,21,0,19.6,1.68,0.102,0.62,0,0,0,0,6,11.1,0,0,0,0,0.278,57.91,103.04,0.97,0.13,798,2.7,68,1
+9595,2023,7,19,21,30,19.1,1.68,0.102,0.62,0,0,0,0,6,11.1,0,0,0,0,0.278,59.73,107.04,0.97,0.13,798,2.7,116,1.2
+9596,2023,7,19,22,0,18.6,1.7,0.094,0.62,0,0,0,0,6,11.9,0,0,0,0,0.277,65,110.58,0.97,0.13,798,2.7,164,1.5
+9597,2023,7,19,22,30,18.2,1.7,0.094,0.62,0,0,0,0,6,11.9,0,0,0,0,0.278,66.64,113.58,0.97,0.13,798,2.7,162,1.6
+9598,2023,7,19,23,0,17.7,1.72,0.091,0.62,0,0,0,0,6,12.5,0,0,0,0,0.278,71.74,115.96,0.97,0.13,798,2.6,159,1.6
+9599,2023,7,19,23,30,17.4,1.72,0.091,0.62,0,0,0,0,6,12.5,0,0,0,0,0.278,73.11,117.65,0.97,0.13,798,2.7,180,1
+9600,2023,7,20,0,0,17.1,1.7,0.1,0.62,0,0,0,0,7,13,0,0,0,0,0.278,76.91,118.58,0.97,0.13,798,2.7,200,0.4
+9601,2023,7,20,0,30,16.7,1.7,0.1,0.62,0,0,0,0,7,13,0,0,0,0,0.277,78.78,118.74,0.97,0.13,797,2.7,262,0.7
+9602,2023,7,20,1,0,16.3,1.64,0.111,0.62,0,0,0,0,7,13.3,0,0,0,0,0.277,82.51,118.1,0.97,0.13,797,2.8,324,0.9
+9603,2023,7,20,1,30,16.1,1.64,0.111,0.62,0,0,0,0,7,13.3,0,0,0,0,0.277,83.57,116.69,0.97,0.13,797,2.8,165,0.8
+9604,2023,7,20,2,0,15.8,1.59,0.122,0.62,0,0,0,0,0,13.5,0,0,0,0,0.277,86.31,114.56,0.97,0.13,797,2.9,5,0.6
+9605,2023,7,20,2,30,15.7,1.59,0.122,0.62,0,0,0,0,0,13.5,0,0,0,0,0.278,86.86,111.79,0.97,0.13,797,2.8,59,0.7
+9606,2023,7,20,3,0,15.5,1.63,0.103,0.62,0,0,0,0,0,13.6,0,0,0,0,0.279,88.37,108.45,0.97,0.13,797,2.7,113,0.7
+9607,2023,7,20,3,30,15.2,1.63,0.103,0.62,0,0,0,0,0,13.6,0,0,0,0,0.279,90.08,104.62,0.96,0.13,797,2.6,141,0.5
+9608,2023,7,20,4,0,14.9,1.66,0.085,0.62,0,0,0,0,0,13.5,0,0,0,0,0.28,91.44,100.37,0.96,0.13,797,2.5,170,0.2
+9609,2023,7,20,4,30,15.1,1.66,0.085,0.62,0,0,0,0,3,13.5,0,0,0,0,0.28,90.27,95.78,0.96,0.13,797,2.5,236,0.3
+9610,2023,7,20,5,0,15.2,1.64,0.084,0.62,5,35,4,3,5,13.5,2,0,43,2,0.28,89.78,90.9,0.96,0.13,797,2.5,302,0.4
+9611,2023,7,20,5,30,16.2,1.64,0.084,0.62,27,268,47,2,0,13.6,27,211,32,43,0.28,84.34,85.65,0.96,0.13,798,2.5,298,0.7
+9612,2023,7,20,6,0,17.2,1.6,0.09,0.62,44,461,121,0,0,13,44,461,0,121,0.28,76.48,80.41,0.96,0.13,798,2.5,295,1
+9613,2023,7,20,6,30,18.4,1.6,0.09,0.62,58,583,209,0,0,13,58,583,0,209,0.28,70.93,74.99,0.96,0.13,798,2.6,286,1.4
+9614,2023,7,20,7,0,19.7,1.55,0.106,0.62,72,662,304,0,0,11.7,72,662,0,304,0.28,60.07,69.44,0.97,0.13,798,2.6,276,1.9
+9615,2023,7,20,7,30,20.5,1.55,0.106,0.62,82,718,399,0,0,11.7,82,718,0,399,0.28,57.18,63.8,0.97,0.13,798,2.7,272,2
+9616,2023,7,20,8,0,21.3,1.51,0.127,0.62,94,755,493,0,0,11,101,732,0,488,0.28,51.7,58.12,0.97,0.13,798,2.7,269,2.2
+9617,2023,7,20,8,30,22,1.51,0.127,0.62,103,789,584,0,3,11,283,285,0,457,0.28,49.55,52.43,0.97,0.13,798,2.7,263,2.1
+9618,2023,7,20,9,0,22.6,1.49,0.14,0.62,112,814,669,0,3,10.8,299,360,0,546,0.28,47.26,46.78,0.97,0.13,798,2.7,257,1.9
+9619,2023,7,20,9,30,23.3,1.49,0.14,0.62,116,840,748,0,3,10.8,334,354,0,600,0.281,45.31,41.23,0.97,0.13,798,2.7,248,1.8
+9620,2023,7,20,10,0,24.1,1.51,0.134,0.62,118,862,817,0,0,10.6,157,789,0,796,0.281,42.49,35.86,0.97,0.13,798,2.6,239,1.7
+9621,2023,7,20,10,30,24.9,1.51,0.134,0.62,110,895,879,0,0,10.6,122,866,0,866,0.281,40.51,30.81,0.96,0.13,798,2.5,237,1.7
+9622,2023,7,20,11,0,25.7,1.51,0.079,0.62,98,929,931,0,3,10.3,322,384,0,666,0.282,37.83,26.29,0.96,0.13,798,2.4,234,1.7
+9623,2023,7,20,11,30,26.4,1.51,0.079,0.62,97,939,964,0,3,10.2,385,69,0,449,0.282,36.26,22.66,0.96,0.13,797,2.4,242,1.7
+9624,2023,7,20,12,0,27,1.53,0.072,0.62,95,946,982,0,3,9.9,335,259,0,578,0.283,34.11,20.42,0.96,0.13,797,2.3,250,1.6
+9625,2023,7,20,12,30,27.3,1.53,0.072,0.62,94,949,986,0,3,9.9,282,372,0,631,0.283,33.52,20.04,0.96,0.13,797,2.3,265,1.6
+9626,2023,7,20,13,0,27.6,1.57,0.068,0.62,93,949,975,0,7,9.4,273,62,0,331,0.284,31.9,21.64,0.96,0.13,797,2.3,279,1.6
+9627,2023,7,20,13,30,27.8,1.57,0.068,0.62,90,947,950,0,7,9.4,261,152,0,399,0.285,31.49,24.82,0.97,0.13,796,2.3,293,1.8
+9628,2023,7,20,14,0,27.9,1.61,0.06,0.62,87,944,912,0,7,8.9,152,166,0,297,0.286,30.3,29.06,0.97,0.13,796,2.2,307,1.9
+9629,2023,7,20,14,30,27.9,1.61,0.06,0.62,84,935,860,0,0,8.9,113,879,0,842,0.286,30.3,33.94,0.97,0.13,796,2.2,318,2.1
+9630,2023,7,20,15,0,27.9,1.67,0.057,0.62,81,923,796,0,3,8.3,326,388,0,627,0.287,29.2,39.22,0.97,0.13,796,2.2,328,2.4
+9631,2023,7,20,15,30,27.7,1.67,0.057,0.62,78,907,722,0,3,8.3,282,370,0,545,0.288,29.54,44.72,0.97,0.13,796,2.2,336,2.6
+9632,2023,7,20,16,0,27.5,1.74,0.053,0.62,73,886,638,0,3,7.9,207,440,0,488,0.289,28.97,50.34,0.96,0.13,796,2.2,344,2.8
+9633,2023,7,20,16,30,27.1,1.74,0.053,0.62,69,858,548,0,3,7.9,173,559,0,485,0.289,29.65,56.03,0.96,0.13,796,2.1,349,3
+9634,2023,7,20,17,0,26.6,1.79,0.05,0.62,62,823,452,0,7,7.5,109,702,29,442,0.289,29.77,61.72,0.96,0.13,796,2.1,354,3.2
+9635,2023,7,20,17,30,25.9,1.79,0.05,0.62,57,773,354,0,3,7.5,129,531,7,333,0.29,31.02,67.38,0.96,0.13,796,2.1,179,3.2
+9636,2023,7,20,18,0,25.1,1.82,0.047,0.62,49,706,256,0,0,7.3,60,656,0,252,0.291,32.12,72.98,0.96,0.13,797,2,5,3.1
+9637,2023,7,20,18,30,23.4,1.82,0.047,0.62,40,604,161,0,0,7.3,63,346,0,132,0.291,35.55,78.46,0.95,0.13,797,1.9,14,2.3
+9638,2023,7,20,19,0,21.6,1.81,0.044,0.62,29,441,77,2,0,8.2,34,215,32,57,0.292,42.11,83.79,0.95,0.13,797,1.8,23,1.5
+9639,2023,7,20,19,30,20.7,1.81,0.044,0.62,12,146,15,0,0,8.2,12,146,0,15,0.292,44.49,88.81,0.94,0.13,797,1.8,34,1.4
+9640,2023,7,20,20,0,19.7,1.77,0.043,0.62,0,0,0,0,0,8.2,0,0,0,0,0.292,47.46,94.07,0.94,0.13,798,1.7,45,1.4
+9641,2023,7,20,20,30,19.2,1.77,0.043,0.62,0,0,0,0,0,8.2,0,0,0,0,0.291,48.96,98.79,0.94,0.13,798,1.7,54,1.4
+9642,2023,7,20,21,0,18.6,1.74,0.044,0.62,0,0,0,0,0,8.4,0,0,0,0,0.291,51.43,103.19,0.94,0.13,798,1.7,64,1.4
+9643,2023,7,20,21,30,18.1,1.74,0.044,0.62,0,0,0,0,0,8.4,0,0,0,0,0.29,53.06,107.19,0.93,0.13,798,1.6,71,1.4
+9644,2023,7,20,22,0,17.6,1.7,0.045,0.62,0,0,0,0,0,8.8,0,0,0,0,0.289,56.15,110.74,0.93,0.13,798,1.6,79,1.4
+9645,2023,7,20,22,30,17.2,1.7,0.045,0.62,0,0,0,0,0,8.8,0,0,0,0,0.289,57.58,113.75,0.93,0.13,798,1.6,85,1.4
+9646,2023,7,20,23,0,16.8,1.68,0.045,0.62,0,0,0,0,0,9.1,0,0,0,0,0.288,60.35,116.13,0.93,0.13,798,1.6,92,1.3
+9647,2023,7,20,23,30,16.4,1.68,0.045,0.62,0,0,0,0,0,9.1,0,0,0,0,0.287,61.9,117.83,0.93,0.13,798,1.6,96,1.2
+9648,2023,7,21,0,0,16,1.66,0.045,0.62,0,0,0,0,0,9.3,0,0,0,0,0.287,64.44,118.77,0.93,0.13,798,1.6,101,1.1
+9649,2023,7,21,0,30,15.8,1.66,0.045,0.62,0,0,0,0,0,9.3,0,0,0,0,0.287,65.27,118.93,0.93,0.13,798,1.6,105,1.1
+9650,2023,7,21,1,0,15.5,1.64,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,67.03,118.28,0.93,0.13,798,1.7,109,1.1
+9651,2023,7,21,1,30,15.4,1.64,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,67.46,116.87,0.93,0.13,798,1.7,112,1
+9652,2023,7,21,2,0,15.3,1.64,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,68.02,114.75,0.93,0.13,798,1.7,115,0.9
+9653,2023,7,21,2,30,15.3,1.64,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,68.02,111.97,0.93,0.13,798,1.7,112,0.8
+9654,2023,7,21,3,0,15.2,1.63,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,68.28,108.62,0.93,0.13,798,1.6,110,0.7
+9655,2023,7,21,3,30,15.1,1.63,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,68.72,104.78,0.93,0.13,798,1.6,96,0.6
+9656,2023,7,21,4,0,14.9,1.63,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,69.44,100.53,0.93,0.13,798,1.7,83,0.5
+9657,2023,7,21,4,30,15.1,1.63,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.286,68.55,95.93,0.93,0.13,798,1.7,66,0.5
+9658,2023,7,21,5,0,15.4,1.63,0.045,0.62,4,30,3,0,0,9.4,4,30,0,3,0.285,67.46,91.05,0.93,0.13,798,1.6,50,0.4
+9659,2023,7,21,5,30,16.7,1.63,0.045,0.62,24,351,50,0,0,9.4,24,351,0,50,0.285,62.1,85.78,0.93,0.13,798,1.6,43,0.6
+9660,2023,7,21,6,0,18,1.63,0.045,0.62,37,557,128,0,0,9.4,37,557,0,128,0.285,57.06,80.55,0.93,0.13,798,1.6,37,0.8
+9661,2023,7,21,6,30,20.3,1.63,0.045,0.62,46,684,222,0,0,9.4,46,684,0,222,0.285,49.47,75.12,0.93,0.13,798,1.6,26,0.8
+9662,2023,7,21,7,0,22.6,1.62,0.044,0.62,52,769,321,0,0,8.1,52,769,0,321,0.285,39.3,69.56,0.93,0.13,798,1.6,16,0.8
+9663,2023,7,21,7,30,24,1.62,0.044,0.62,58,828,422,0,0,8.1,58,828,0,422,0.285,36.12,63.92,0.93,0.13,798,1.6,9,0.8
+9664,2023,7,21,8,0,25.4,1.62,0.043,0.62,63,870,521,0,0,6.5,63,870,0,521,0.284,29.89,58.24,0.93,0.13,798,1.6,2,0.8
+9665,2023,7,21,8,30,26.3,1.62,0.043,0.62,68,902,616,0,0,6.5,68,902,0,616,0.284,28.35,52.55,0.93,0.13,798,1.6,169,0.8
+9666,2023,7,21,9,0,27.3,1.61,0.043,0.62,70,928,704,0,0,5.7,70,928,0,704,0.284,25.24,46.9,0.93,0.13,798,1.5,336,0.8
+9667,2023,7,21,9,30,28.1,1.61,0.043,0.62,73,947,784,0,0,5.7,73,947,0,784,0.284,24.09,41.36,0.93,0.13,798,1.5,323,0.9
+9668,2023,7,21,10,0,29,1.61,0.042,0.62,76,962,854,0,0,5.1,76,962,0,854,0.284,21.95,35.99,0.93,0.13,798,1.5,310,0.9
+9669,2023,7,21,10,30,29.7,1.61,0.042,0.62,74,977,912,0,0,5.1,74,977,0,912,0.284,21.06,30.95,0.93,0.13,797,1.5,301,1
+9670,2023,7,21,11,0,30.4,1.73,0.034,0.62,73,988,958,0,0,4.6,73,988,0,958,0.284,19.56,26.45,0.93,0.13,797,1.5,292,1.1
+9671,2023,7,21,11,30,31,1.73,0.034,0.62,74,993,989,0,0,4.6,74,993,0,989,0.284,18.91,22.84,0.93,0.13,797,1.5,286,1.2
+9672,2023,7,21,12,0,31.6,1.73,0.034,0.62,75,995,1006,0,0,4.1,75,995,0,1006,0.284,17.64,20.61,0.93,0.13,796,1.5,279,1.3
+9673,2023,7,21,12,30,31.9,1.73,0.034,0.62,74,995,1008,0,0,4.1,88,962,0,991,0.284,17.34,20.23,0.93,0.13,796,1.5,275,1.3
+9674,2023,7,21,13,0,32.3,1.73,0.035,0.62,74,993,996,0,0,3.6,74,993,0,996,0.284,16.38,21.81,0.93,0.13,796,1.6,271,1.4
+9675,2023,7,21,13,30,32.5,1.73,0.035,0.62,75,986,969,0,0,3.6,115,889,0,921,0.284,16.2,24.97,0.93,0.13,796,1.6,268,1.4
+9676,2023,7,21,14,0,32.7,1.62,0.043,0.62,77,975,928,0,0,3.2,77,975,0,928,0.284,15.52,29.19,0.93,0.13,795,1.6,265,1.5
+9677,2023,7,21,14,30,32.7,1.62,0.043,0.62,76,963,874,0,0,3.2,136,770,0,774,0.284,15.52,34.07,0.93,0.13,795,1.6,265,1.5
+9678,2023,7,21,15,0,32.6,1.6,0.046,0.62,75,947,808,0,0,2.8,115,871,0,789,0.284,15.23,39.33,0.94,0.13,795,1.6,266,1.5
+9679,2023,7,21,15,30,32.3,1.6,0.046,0.62,74,928,732,0,0,2.8,87,899,0,725,0.284,15.49,44.82,0.94,0.13,795,1.7,270,1.6
+9680,2023,7,21,16,0,32,1.57,0.049,0.62,71,903,646,0,0,2.6,170,583,0,541,0.284,15.54,50.45,0.94,0.13,794,1.7,275,1.6
+9681,2023,7,21,16,30,31.4,1.57,0.049,0.62,68,868,552,0,0,2.6,97,761,0,521,0.284,16.08,56.13,0.94,0.13,794,1.8,282,1.7
+9682,2023,7,21,17,0,30.9,1.55,0.055,0.62,65,823,454,0,0,2.7,70,804,0,450,0.284,16.6,61.83,0.95,0.13,794,1.8,288,1.8
+9683,2023,7,21,17,30,29.9,1.55,0.055,0.62,61,764,353,0,0,2.7,61,764,0,353,0.284,17.59,67.49,0.95,0.13,795,1.9,294,1.6
+9684,2023,7,21,18,0,28.9,1.51,0.063,0.62,54,679,252,0,0,4.5,80,501,11,226,0.284,21.19,73.09,0.95,0.13,795,2,300,1.5
+9685,2023,7,21,18,30,27.4,1.51,0.063,0.62,44,565,156,1,3,4.5,77,233,21,123,0.284,23.11,78.58,0.95,0.13,795,2,305,1.1
+9686,2023,7,21,19,0,25.8,1.52,0.065,0.62,31,387,72,4,0,7.5,42,210,50,64,0.283,31.17,83.91,0.95,0.13,795,2,310,0.7
+9687,2023,7,21,19,30,25.6,1.52,0.065,0.62,12,112,14,5,5,7.5,8,0,71,8,0.283,31.54,88.93,0.95,0.13,795,2,292,0.4
+9688,2023,7,21,20,0,25.3,1.57,0.061,0.62,0,0,0,0,8,6.6,0,0,0,0,0.283,30.29,94.21,0.95,0.13,796,2,273,0.1
+9689,2023,7,21,20,30,24.7,1.57,0.061,0.62,0,0,0,0,3,6.6,0,0,0,0,0.283,31.39,98.93,0.95,0.13,796,1.9,207,0.3
+9690,2023,7,21,21,0,24,1.6,0.055,0.62,0,0,0,0,0,6.5,0,0,0,0,0.283,32.38,103.33,0.95,0.13,796,1.9,141,0.6
+9691,2023,7,21,21,30,23.3,1.6,0.055,0.62,0,0,0,0,0,6.5,0,0,0,0,0.282,33.77,107.35,0.94,0.13,796,1.9,142,0.6
+9692,2023,7,21,22,0,22.5,1.63,0.051,0.62,0,0,0,0,0,6.2,0,0,0,0,0.282,34.93,110.91,0.94,0.13,796,1.8,143,0.6
+9693,2023,7,21,22,30,22,1.63,0.051,0.62,0,0,0,0,0,6.2,0,0,0,0,0.282,36,113.92,0.94,0.13,796,1.8,144,0.5
+9694,2023,7,21,23,0,21.5,1.65,0.048,0.62,0,0,0,0,0,6.1,0,0,0,0,0.282,36.84,116.32,0.94,0.13,796,1.8,144,0.4
+9695,2023,7,21,23,30,21.1,1.65,0.048,0.62,0,0,0,0,0,6.1,0,0,0,0,0.282,37.75,118.02,0.93,0.13,796,1.8,140,0.4
+9696,2023,7,22,0,0,20.7,1.67,0.044,0.62,0,0,0,0,0,6.3,0,0,0,0,0.282,39.25,118.97,0.93,0.13,796,1.8,135,0.3
+9697,2023,7,22,0,30,20.2,1.67,0.044,0.62,0,0,0,0,0,6.3,0,0,0,0,0.281,40.48,119.12,0.93,0.13,796,1.8,124,0.3
+9698,2023,7,22,1,0,19.7,1.68,0.04,0.62,0,0,0,0,0,6.2,0,0,0,0,0.281,41.4,118.48,0.92,0.13,796,1.7,113,0.2
+9699,2023,7,22,1,30,19.3,1.68,0.04,0.62,0,0,0,0,0,6.2,0,0,0,0,0.281,42.44,117.07,0.92,0.13,796,1.7,104,0.2
+9700,2023,7,22,2,0,18.9,1.68,0.037,0.62,0,0,0,0,0,6,0,0,0,0,0.281,42.83,114.93,0.92,0.13,796,1.7,96,0.2
+9701,2023,7,22,2,30,18.6,1.68,0.037,0.62,0,0,0,0,0,6,0,0,0,0,0.281,43.64,112.15,0.92,0.13,796,1.6,97,0.3
+9702,2023,7,22,3,0,18.2,1.66,0.036,0.62,0,0,0,0,0,5.6,0,0,0,0,0.281,43.53,108.79,0.92,0.13,796,1.6,99,0.3
+9703,2023,7,22,3,30,17.9,1.66,0.036,0.62,0,0,0,0,0,5.6,0,0,0,0,0.281,44.35,104.95,0.91,0.13,796,1.5,106,0.3
+9704,2023,7,22,4,0,17.7,1.64,0.035,0.62,0,0,0,0,0,5.3,0,0,29,0,0.281,44.03,100.69,0.91,0.13,796,1.5,114,0.3
+9705,2023,7,22,4,30,17.8,1.64,0.035,0.62,0,0,0,0,0,5.3,0,0,0,0,0.28,43.75,96.08,0.91,0.13,796,1.4,121,0.4
+9706,2023,7,22,5,0,17.9,1.62,0.035,0.62,4,33,3,0,0,5.6,4,33,0,3,0.28,44.32,91.19,0.91,0.13,796,1.4,129,0.4
+9707,2023,7,22,5,30,19.3,1.62,0.035,0.62,22,375,49,0,0,5.6,22,375,0,49,0.28,40.67,85.92,0.91,0.13,797,1.4,143,0.6
+9708,2023,7,22,6,0,20.7,1.59,0.035,0.62,35,582,129,0,0,5.2,35,582,0,129,0.28,36.32,80.68,0.91,0.13,797,1.4,157,0.8
+9709,2023,7,22,6,30,22.9,1.59,0.035,0.62,43,707,223,0,0,5.2,43,707,0,223,0.28,31.77,75.25,0.92,0.13,797,1.4,191,0.6
+9710,2023,7,22,7,0,25.1,1.57,0.035,0.62,50,789,324,0,0,4.2,50,789,0,324,0.28,25.91,69.69,0.92,0.13,797,1.3,225,0.5
+9711,2023,7,22,7,30,26.6,1.57,0.035,0.62,56,844,425,0,0,4.2,56,844,0,425,0.28,23.72,64.05,0.92,0.13,797,1.4,252,0.6
+9712,2023,7,22,8,0,28,1.56,0.036,0.62,60,885,524,0,0,3.1,60,885,0,524,0.28,20.21,58.37,0.92,0.13,797,1.4,280,0.7
+9713,2023,7,22,8,30,28.9,1.56,0.036,0.62,64,916,619,0,0,3.1,64,916,0,619,0.28,19.19,52.68,0.92,0.13,797,1.4,274,0.8
+9714,2023,7,22,9,0,29.8,1.56,0.037,0.62,67,939,707,0,0,2.4,67,939,29,707,0.281,17.29,47.03,0.92,0.13,797,1.4,268,0.9
+9715,2023,7,22,9,30,30.5,1.56,0.037,0.62,70,957,787,0,0,2.4,70,957,0,787,0.281,16.61,41.49,0.92,0.13,797,1.4,261,1.1
+9716,2023,7,22,10,0,31.3,1.57,0.038,0.62,72,970,855,0,0,2.1,72,970,0,855,0.281,15.55,36.13,0.92,0.13,797,1.4,254,1.3
+9717,2023,7,22,10,30,31.9,1.57,0.038,0.62,72,983,914,0,0,2.1,72,983,0,914,0.281,15.02,31.1,0.92,0.13,796,1.4,250,1.5
+9718,2023,7,22,11,0,32.5,1.7,0.032,0.62,71,992,958,0,0,2.1,71,992,0,958,0.281,14.51,26.62,0.93,0.13,796,1.5,247,1.8
+9719,2023,7,22,11,30,32.9,1.7,0.032,0.62,72,997,990,0,0,2.1,72,997,0,990,0.281,14.19,23.02,0.93,0.13,796,1.5,244,2
+9720,2023,7,22,12,0,33.4,1.74,0.032,0.62,73,998,1006,0,0,2.2,73,998,0,1006,0.281,13.95,20.8,0.93,0.13,796,1.5,241,2.2
+9721,2023,7,22,12,30,33.7,1.74,0.032,0.62,74,997,1008,0,0,2.2,74,997,0,1008,0.282,13.7,20.43,0.93,0.13,795,1.5,239,2.4
+9722,2023,7,22,13,0,33.9,1.78,0.034,0.62,73,994,995,0,0,2.4,73,994,0,995,0.282,13.71,22,0.93,0.13,795,1.6,236,2.5
+9723,2023,7,22,13,30,34.1,1.78,0.034,0.62,74,987,968,0,0,2.4,74,987,0,968,0.282,13.56,25.14,0.93,0.13,795,1.6,234,2.6
+9724,2023,7,22,14,0,34.2,1.73,0.039,0.62,74,977,926,0,0,2.4,87,958,0,922,0.283,13.49,29.34,0.94,0.13,794,1.6,232,2.6
+9725,2023,7,22,14,30,34.1,1.73,0.039,0.62,74,966,873,0,0,2.4,98,917,0,856,0.283,13.57,34.2,0.94,0.13,794,1.6,230,2.6
+9726,2023,7,22,15,0,34,1.72,0.042,0.62,73,951,807,0,0,2.2,91,906,0,791,0.284,13.45,39.45,0.94,0.13,794,1.6,229,2.6
+9727,2023,7,22,15,30,33.8,1.72,0.042,0.62,71,933,731,0,0,2.2,155,715,0,661,0.285,13.6,44.94,0.94,0.13,794,1.6,230,2.5
+9728,2023,7,22,16,0,33.5,1.71,0.044,0.62,68,910,646,0,0,1.8,68,910,0,646,0.285,13.49,50.56,0.94,0.13,793,1.6,231,2.3
+9729,2023,7,22,16,30,33,1.71,0.044,0.62,64,881,554,0,0,1.8,89,816,0,542,0.286,13.87,56.24,0.95,0.13,793,1.6,236,2.1
+9730,2023,7,22,17,0,32.5,1.7,0.044,0.62,61,842,457,0,0,1.4,99,721,7,438,0.286,13.87,61.94,0.95,0.14,793,1.6,241,1.9
+9731,2023,7,22,17,30,31.6,1.7,0.044,0.62,55,792,357,0,0,1.4,98,615,0,332,0.287,14.6,67.6,0.95,0.14,793,1.6,246,1.5
+9732,2023,7,22,18,0,30.7,1.69,0.044,0.62,49,720,257,0,0,3.8,49,720,0,257,0.287,18.13,73.2,0.95,0.14,793,1.6,251,1
+9733,2023,7,22,18,30,29.2,1.69,0.044,0.62,39,616,160,0,0,3.8,39,616,0,160,0.288,19.78,78.7,0.94,0.14,794,1.6,245,0.6
+9734,2023,7,22,19,0,27.7,1.69,0.041,0.62,28,448,75,0,0,4.6,28,448,0,75,0.288,22.91,84.03,0.94,0.14,794,1.5,239,0.3
+9735,2023,7,22,19,30,26.9,1.69,0.041,0.62,10,120,12,0,0,4.6,10,120,0,12,0.288,24.01,89.05,0.94,0.14,794,1.5,138,0.3
+9736,2023,7,22,20,0,26.1,1.67,0.038,0.62,0,0,0,0,0,3.5,0,0,0,0,0.289,23.3,94.34,0.94,0.14,794,1.4,37,0.2
+9737,2023,7,22,20,30,25.3,1.67,0.038,0.62,0,0,0,0,0,3.5,0,0,0,0,0.289,24.42,99.08,0.93,0.14,794,1.4,36,0.3
+9738,2023,7,22,21,0,24.6,1.66,0.036,0.62,0,0,0,0,0,3,0,0,0,0,0.289,24.62,103.49,0.93,0.14,794,1.4,34,0.4
+9739,2023,7,22,21,30,24,1.66,0.036,0.62,0,0,0,0,0,3.1,0,0,0,0,0.289,25.55,107.51,0.93,0.14,795,1.3,36,0.5
+9740,2023,7,22,22,0,23.4,1.67,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.289,25.77,111.08,0.92,0.14,795,1.3,38,0.5
+9741,2023,7,22,22,30,23,1.67,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.288,26.39,114.1,0.92,0.14,795,1.3,41,0.4
+9742,2023,7,22,23,0,22.6,1.68,0.034,0.62,0,0,0,0,0,2.4,0,0,0,0,0.288,26.59,116.51,0.92,0.14,795,1.3,44,0.4
+9743,2023,7,22,23,30,22.1,1.68,0.034,0.62,0,0,0,0,0,2.4,0,0,0,0,0.288,27.4,118.21,0.92,0.14,795,1.3,49,0.3
+9744,2023,7,23,0,0,21.7,1.69,0.034,0.62,0,0,0,0,0,2.4,0,0,0,0,0.288,28.05,119.16,0.92,0.14,795,1.3,54,0.2
+9745,2023,7,23,0,30,21.3,1.69,0.034,0.62,0,0,0,0,0,2.4,0,0,0,0,0.287,28.74,119.32,0.92,0.14,795,1.3,112,0.2
+9746,2023,7,23,1,0,20.9,1.72,0.034,0.62,0,0,0,0,8,2.3,0,0,0,0,0.287,29.16,118.68,0.92,0.14,794,1.3,169,0.1
+9747,2023,7,23,1,30,20.5,1.72,0.034,0.62,0,0,0,0,0,2.3,0,0,0,0,0.287,29.89,117.26,0.92,0.14,794,1.3,162,0.2
+9748,2023,7,23,2,0,20.2,1.71,0.034,0.62,0,0,0,0,0,2.1,0,0,0,0,0.287,30.09,115.12,0.92,0.14,794,1.3,154,0.3
+9749,2023,7,23,2,30,19.9,1.71,0.034,0.62,0,0,0,0,7,2.1,0,0,0,0,0.287,30.69,112.33,0.92,0.14,795,1.3,148,0.4
+9750,2023,7,23,3,0,19.6,1.7,0.036,0.62,0,0,0,0,7,1.9,0,0,0,0,0.287,30.77,108.97,0.92,0.14,795,1.3,142,0.4
+9751,2023,7,23,3,30,19.3,1.7,0.036,0.62,0,0,0,0,7,1.9,0,0,0,0,0.287,31.35,105.12,0.93,0.14,795,1.3,139,0.5
+9752,2023,7,23,4,0,19,1.69,0.038,0.62,0,0,0,0,0,1.6,0,0,0,0,0.287,31.25,100.85,0.93,0.14,795,1.3,136,0.6
+9753,2023,7,23,4,30,19,1.69,0.038,0.62,0,0,0,0,0,1.6,0,0,0,0,0.287,31.25,96.24,0.93,0.14,795,1.3,136,0.7
+9754,2023,7,23,5,0,19.1,1.65,0.042,0.62,3,30,2,0,0,1.7,3,30,0,2,0.286,31.36,91.34,0.94,0.14,795,1.3,137,0.8
+9755,2023,7,23,5,30,20.3,1.65,0.042,0.62,23,352,47,2,0,1.7,24,255,21,42,0.286,29.12,86.06,0.94,0.14,795,1.3,144,1.1
+9756,2023,7,23,6,0,21.5,1.63,0.044,0.62,36,561,126,1,8,2,62,308,14,111,0.286,27.51,80.81,0.94,0.14,795,1.3,152,1.4
+9757,2023,7,23,6,30,22.9,1.63,0.044,0.62,46,688,220,0,0,2,86,442,0,198,0.286,25.27,75.38,0.94,0.14,795,1.4,152,1.6
+9758,2023,7,23,7,0,24.2,1.63,0.046,0.62,53,770,319,0,0,0.4,58,748,0,316,0.286,20.88,69.82,0.94,0.14,795,1.4,153,1.9
+9759,2023,7,23,7,30,26.3,1.63,0.046,0.62,60,826,420,0,0,0.4,60,826,0,420,0.286,18.46,64.17,0.94,0.14,796,1.5,163,2
+9760,2023,7,23,8,0,28.3,1.63,0.049,0.62,65,866,518,0,0,-0.1,65,866,0,518,0.286,15.75,58.49,0.94,0.14,796,1.5,174,2.2
+9761,2023,7,23,8,30,29.6,1.63,0.049,0.62,72,892,611,0,0,-0.1,72,892,0,611,0.286,14.62,52.8,0.95,0.14,796,1.6,188,2.2
+9762,2023,7,23,9,0,30.9,1.59,0.061,0.62,79,908,696,0,0,-0.2,79,908,0,696,0.286,13.45,47.16,0.95,0.14,796,1.6,203,2.3
+9763,2023,7,23,9,30,31.3,1.59,0.061,0.62,85,920,773,0,3,-0.2,271,539,0,674,0.286,13.15,41.62,0.96,0.14,796,1.7,223,2.3
+9764,2023,7,23,10,0,31.7,1.55,0.077,0.62,93,926,839,0,0,0,134,853,0,822,0.286,13.1,36.28,0.96,0.14,796,1.8,243,2.4
+9765,2023,7,23,10,30,31.8,1.55,0.077,0.62,93,939,896,1,8,0,281,517,11,723,0.286,13.02,31.26,0.96,0.14,796,1.8,254,2.2
+9766,2023,7,23,11,0,31.8,1.59,0.071,0.62,93,950,941,3,8,0.6,361,189,39,530,0.287,13.62,26.79,0.96,0.14,796,1.9,265,1.9
+9767,2023,7,23,11,30,32,1.59,0.071,0.62,93,958,973,0,7,0.6,398,272,0,648,0.287,13.47,23.21,0.96,0.14,796,1.9,259,1.4
+9768,2023,7,23,12,0,32.3,1.63,0.061,0.62,89,966,991,1,8,1.3,421,202,11,610,0.288,13.86,21,0.95,0.14,796,1.8,253,0.9
+9769,2023,7,23,12,30,32.8,1.63,0.061,0.62,89,968,995,0,3,1.3,341,357,0,675,0.288,13.47,20.63,0.95,0.14,796,1.8,245,0.8
+9770,2023,7,23,13,0,33.2,1.68,0.056,0.62,86,969,983,0,7,1.6,347,449,0,763,0.289,13.52,22.18,0.95,0.14,796,1.8,237,0.7
+9771,2023,7,23,13,30,33.5,1.68,0.056,0.62,90,957,955,0,7,1.6,438,210,0,628,0.289,13.27,25.31,0.94,0.14,795,1.8,263,0.5
+9772,2023,7,23,14,0,33.8,1.53,0.076,0.62,94,940,912,0,6,1.8,413,92,0,493,0.289,13.26,29.49,0.94,0.14,795,1.9,288,0.4
+9773,2023,7,23,14,30,33.7,1.53,0.076,0.62,96,924,859,0,6,1.8,369,45,0,406,0.289,13.34,34.33,0.95,0.14,795,1.9,310,0.4
+9774,2023,7,23,15,0,33.6,1.51,0.09,0.62,96,902,791,0,6,2,345,49,0,383,0.289,13.57,39.58,0.95,0.14,795,1.9,333,0.5
+9775,2023,7,23,15,30,33.2,1.51,0.09,0.62,98,871,713,0,6,2,267,19,0,280,0.289,13.88,45.06,0.96,0.14,795,2,319,0.8
+9776,2023,7,23,16,0,32.8,1.47,0.117,0.62,99,830,625,0,6,2.4,171,4,0,174,0.289,14.61,50.67,0.96,0.14,795,2,305,1
+9777,2023,7,23,16,30,31.8,1.47,0.117,0.62,101,770,528,0,6,2.4,167,9,0,172,0.288,15.46,56.35,0.97,0.14,795,2.1,296,1.6
+9778,2023,7,23,17,0,30.9,1.42,0.169,0.62,103,690,426,0,6,3.5,128,6,0,131,0.287,17.59,62.05,0.97,0.13,795,2.2,287,2.1
+9779,2023,7,23,17,30,29.2,1.42,0.169,0.62,93,614,326,0,6,3.5,138,16,0,144,0.287,19.41,67.72,0.97,0.13,796,2.3,281,2.1
+9780,2023,7,23,18,0,27.6,1.42,0.186,0.62,81,511,228,0,6,6.2,68,4,0,69,0.286,25.66,73.32,0.97,0.13,796,2.5,275,2
+9781,2023,7,23,18,30,25.9,1.42,0.186,0.62,61,395,138,0,7,6.2,59,150,18,88,0.286,28.35,78.82,0.97,0.13,796,2.5,232,1.4
+9782,2023,7,23,19,0,24.2,1.46,0.164,0.62,38,235,62,6,7,8.1,49,30,86,52,0.286,35.73,84.16,0.97,0.13,797,2.5,189,0.8
+9783,2023,7,23,19,30,23.3,1.46,0.164,0.62,8,41,9,5,7,8.1,7,0,71,7,0.287,37.71,89.17,0.97,0.13,797,2.5,165,1.5
+9784,2023,7,23,20,0,22.4,1.49,0.137,0.62,0,0,0,0,7,8.7,0,0,0,0,0.287,41.45,94.49,0.97,0.13,797,2.4,141,2.3
+9785,2023,7,23,20,30,22.1,1.49,0.137,0.62,0,0,0,0,7,8.7,0,0,0,0,0.288,42.21,99.23,0.96,0.13,797,2.4,144,2.4
+9786,2023,7,23,21,0,21.8,1.54,0.113,0.62,0,0,0,0,0,8.7,0,0,0,0,0.288,43.14,103.65,0.96,0.13,797,2.4,148,2.5
+9787,2023,7,23,21,30,21.5,1.54,0.113,0.62,0,0,0,0,0,8.7,0,0,0,0,0.288,43.88,107.68,0.96,0.13,796,2.4,158,2.2
+9788,2023,7,23,22,0,21.1,1.55,0.103,0.62,0,0,0,0,7,8.7,0,0,0,0,0.288,44.87,111.26,0.96,0.13,796,2.4,169,1.8
+9789,2023,7,23,22,30,20.9,1.55,0.103,0.62,0,0,0,0,7,8.7,0,0,0,0,0.288,45.42,114.29,0.96,0.13,796,2.4,185,1.6
+9790,2023,7,23,23,0,20.7,1.55,0.101,0.62,0,0,0,0,7,8.6,0,0,0,0,0.288,45.69,116.7,0.96,0.13,796,2.4,201,1.5
+9791,2023,7,23,23,30,20.7,1.55,0.101,0.62,0,0,0,0,7,8.6,0,0,0,0,0.287,45.69,118.42,0.97,0.13,796,2.4,212,1.5
+9792,2023,7,24,0,0,20.6,1.53,0.108,0.62,0,0,0,0,7,8.3,0,0,0,0,0.286,45.2,119.37,0.97,0.13,796,2.5,224,1.6
+9793,2023,7,24,0,30,20.7,1.53,0.108,0.62,0,0,0,0,3,8.3,0,0,0,0,0.286,44.92,119.53,0.97,0.13,796,2.4,227,1.5
+9794,2023,7,24,1,0,20.8,1.51,0.113,0.62,0,0,0,0,5,7.9,0,0,0,0,0.286,43.51,118.88,0.97,0.13,796,2.4,230,1.5
+9795,2023,7,24,1,30,20.9,1.51,0.113,0.62,0,0,0,0,5,7.9,0,0,0,0,0.286,43.25,117.46,0.97,0.13,796,2.4,223,1.3
+9796,2023,7,24,2,0,21,1.54,0.103,0.62,0,0,0,0,5,7.6,0,0,0,0,0.286,42.03,115.32,0.97,0.13,796,2.3,217,1.1
+9797,2023,7,24,2,30,20.6,1.54,0.103,0.62,0,0,0,0,4,7.6,0,0,0,0,0.286,43.07,112.52,0.97,0.13,796,2.2,201,1
+9798,2023,7,24,3,0,20.2,1.58,0.088,0.62,0,0,0,0,5,7.4,0,0,0,0,0.286,43.63,109.15,0.96,0.13,796,2.1,186,1
+9799,2023,7,24,3,30,19.7,1.58,0.088,0.62,0,0,0,0,5,7.4,0,0,0,0,0.286,45,105.29,0.96,0.13,796,2.1,181,1
+9800,2023,7,24,4,0,19.3,1.61,0.075,0.62,0,0,0,0,0,7.4,0,0,0,0,0.287,46.02,101.01,0.96,0.13,796,2,176,1.1
+9801,2023,7,24,4,30,19.4,1.61,0.075,0.62,0,0,0,0,0,7.4,0,0,0,0,0.287,45.73,96.39,0.95,0.13,796,2,178,1.1
+9802,2023,7,24,5,0,19.5,1.62,0.064,0.62,3,21,2,0,0,7.6,3,21,0,2,0.287,45.98,91.49,0.95,0.13,796,1.9,179,1.1
+9803,2023,7,24,5,30,20.9,1.62,0.064,0.62,24,292,43,0,0,7.6,24,292,0,43,0.287,42.18,86.2,0.95,0.13,796,1.9,180,1.2
+9804,2023,7,24,6,0,22.2,1.62,0.056,0.62,38,516,119,0,0,7.5,39,495,0,117,0.287,38.75,80.95,0.94,0.13,797,1.9,180,1.3
+9805,2023,7,24,6,30,24,1.62,0.056,0.62,48,653,211,0,3,7.5,102,182,0,148,0.288,34.77,75.51,0.94,0.13,797,1.8,183,1.5
+9806,2023,7,24,7,0,25.8,1.62,0.052,0.62,56,745,311,0,0,6.2,92,576,0,289,0.288,28.55,69.95,0.94,0.13,797,1.8,186,1.8
+9807,2023,7,24,7,30,27.3,1.62,0.052,0.62,61,807,411,0,0,6.2,61,807,0,411,0.288,26.14,64.3,0.94,0.13,797,1.8,188,2.3
+9808,2023,7,24,8,0,28.9,1.61,0.051,0.62,66,853,510,0,0,4.8,72,837,0,508,0.289,21.67,58.62,0.94,0.13,797,1.8,189,2.8
+9809,2023,7,24,8,30,30.1,1.61,0.051,0.62,71,884,604,0,0,4.8,71,884,0,604,0.289,20.2,52.93,0.94,0.13,796,1.8,194,3.2
+9810,2023,7,24,9,0,31.3,1.6,0.053,0.62,75,908,691,0,0,4.1,75,908,0,691,0.289,17.88,47.29,0.94,0.13,796,1.9,198,3.6
+9811,2023,7,24,9,30,32.3,1.6,0.053,0.62,78,926,769,0,0,4.1,78,926,0,769,0.289,16.9,41.76,0.95,0.13,796,1.9,204,3.9
+9812,2023,7,24,10,0,33.3,1.6,0.057,0.62,82,938,837,0,0,3.8,82,938,0,837,0.289,15.65,36.42,0.95,0.13,796,1.9,209,4.1
+9813,2023,7,24,10,30,34.1,1.6,0.057,0.62,84,949,894,0,0,3.8,84,949,0,894,0.288,14.97,31.41,0.95,0.13,796,2,213,4.3
+9814,2023,7,24,11,0,35,1.73,0.055,0.62,84,957,937,0,0,4,84,957,0,937,0.288,14.45,26.96,0.95,0.13,796,2.1,218,4.4
+9815,2023,7,24,11,30,35.5,1.73,0.055,0.62,87,960,968,0,0,4,87,960,0,968,0.288,14.04,23.4,0.95,0.13,795,2.1,220,4.6
+9816,2023,7,24,12,0,36.1,1.7,0.06,0.62,89,959,983,0,0,4.5,139,869,4,949,0.288,14.12,21.21,0.95,0.13,795,2.2,222,4.8
+9817,2023,7,24,12,30,36.3,1.7,0.06,0.62,91,956,984,0,0,4.5,109,912,0,961,0.288,13.97,20.84,0.96,0.13,795,2.2,223,5.2
+9818,2023,7,24,13,0,36.6,1.66,0.067,0.62,92,950,970,0,8,5.3,169,788,0,898,0.288,14.46,22.38,0.96,0.13,795,2.3,224,5.5
+9819,2023,7,24,13,30,36.4,1.66,0.067,0.62,89,946,943,0,7,5.2,336,434,0,728,0.288,14.6,25.48,0.97,0.13,794,2.3,224,6
+9820,2023,7,24,14,0,36.3,1.7,0.06,0.62,86,941,904,0,7,6,234,640,0,790,0.288,15.47,29.65,0.97,0.13,794,2.4,225,6.5
+9821,2023,7,24,14,30,35.5,1.7,0.06,0.62,85,928,850,0,7,6,328,387,0,647,0.287,16.17,34.47,0.97,0.13,794,2.5,228,7
+9822,2023,7,24,15,0,34.8,1.7,0.061,0.62,82,913,784,0,7,6.9,361,207,0,520,0.287,17.92,39.71,0.97,0.13,794,2.5,232,7.5
+9823,2023,7,24,15,30,33.8,1.7,0.061,0.62,80,893,709,0,7,6.9,302,258,0,484,0.287,18.94,45.18,0.96,0.13,794,2.5,241,7.2
+9824,2023,7,24,16,0,32.9,1.69,0.064,0.62,76,867,624,0,7,7.8,182,572,21,544,0.287,21.1,50.8,0.96,0.13,794,2.5,249,6.9
+9825,2023,7,24,16,30,31.8,1.69,0.064,0.62,73,834,534,0,0,7.8,101,759,29,520,0.288,22.44,56.48,0.96,0.13,794,2.5,265,6.2
+9826,2023,7,24,17,0,30.8,1.65,0.065,0.62,67,792,437,0,7,8.9,120,644,36,421,0.288,25.6,62.17,0.96,0.13,794,2.5,281,5.4
+9827,2023,7,24,17,30,29.4,1.65,0.065,0.62,61,737,339,0,7,8.9,101,605,50,329,0.289,27.77,67.84,0.95,0.13,795,2.5,299,4.7
+9828,2023,7,24,18,0,28.1,1.6,0.063,0.62,53,662,242,0,7,10.1,113,365,18,217,0.289,32.43,73.45,0.95,0.13,795,2.4,316,4
+9829,2023,7,24,18,30,26.3,1.6,0.063,0.62,43,548,148,1,7,10.1,87,191,14,124,0.29,36.02,78.95,0.95,0.13,795,2.4,335,3.3
+9830,2023,7,24,19,0,24.5,1.58,0.062,0.62,29,371,66,7,7,11.3,50,42,100,54,0.29,43.46,84.29,0.95,0.13,795,2.3,354,2.7
+9831,2023,7,24,19,30,23.5,1.58,0.062,0.62,9,86,10,4,3,11.3,7,1,57,7,0.29,46.14,89.3,0.95,0.13,795,2.3,187,2.6
+9832,2023,7,24,20,0,22.4,1.58,0.062,0.62,0,0,0,0,3,12,0,0,0,0,0.291,51.85,94.64,0.95,0.13,795,2.3,19,2.4
+9833,2023,7,24,20,30,21.9,1.58,0.062,0.62,0,0,0,0,0,12,0,0,0,0,0.29,53.45,99.39,0.95,0.13,795,2.3,26,2.2
+9834,2023,7,24,21,0,21.3,1.58,0.062,0.62,0,0,0,0,0,12.4,0,0,0,0,0.29,56.81,103.82,0.95,0.13,796,2.3,32,2
+9835,2023,7,24,21,30,20.9,1.58,0.062,0.62,0,0,0,0,0,12.4,0,0,0,0,0.29,58.22,107.86,0.95,0.13,796,2.4,35,1.6
+9836,2023,7,24,22,0,20.6,1.57,0.066,0.62,0,0,0,0,0,12.5,0,0,0,0,0.29,59.63,111.44,0.95,0.13,796,2.4,37,1.3
+9837,2023,7,24,22,30,20.3,1.57,0.066,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,60.74,114.48,0.95,0.13,796,2.5,23,1
+9838,2023,7,24,23,0,20,1.53,0.07,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,62.09,116.9,0.95,0.13,796,2.5,9,0.6
+9839,2023,7,24,23,30,19.8,1.53,0.07,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,62.86,118.62,0.95,0.13,796,2.5,163,0.6
+9840,2023,7,25,0,0,19.5,1.49,0.071,0.62,0,0,0,0,0,12.4,0,0,0,0,0.288,63.64,119.58,0.95,0.13,796,2.6,317,0.6
+9841,2023,7,25,0,30,19.4,1.49,0.071,0.62,0,0,0,0,3,12.4,0,0,0,0,0.288,64.03,119.74,0.96,0.13,796,2.6,303,0.7
+9842,2023,7,25,1,0,19.3,1.46,0.071,0.62,0,0,0,0,5,12.2,0,0,0,0,0.288,63.35,119.09,0.96,0.13,796,2.6,289,0.8
+9843,2023,7,25,1,30,19.2,1.46,0.071,0.62,0,0,0,0,4,12.2,0,0,0,0,0.287,63.74,117.67,0.96,0.13,796,2.6,284,0.9
+9844,2023,7,25,2,0,19.1,1.46,0.069,0.62,0,0,0,0,4,11.9,0,0,0,0,0.287,62.84,115.52,0.96,0.13,796,2.6,278,0.9
+9845,2023,7,25,2,30,18.9,1.46,0.069,0.62,0,0,0,0,4,11.9,0,0,0,0,0.287,63.63,112.71,0.96,0.13,796,2.6,277,0.9
+9846,2023,7,25,3,0,18.8,1.46,0.074,0.62,0,0,0,0,4,11.7,0,0,0,0,0.287,63.49,109.34,0.96,0.13,796,2.6,275,0.8
+9847,2023,7,25,3,30,18.6,1.46,0.074,0.62,0,0,0,0,3,11.7,0,0,0,0,0.286,64.28,105.47,0.96,0.13,796,2.6,273,0.7
+9848,2023,7,25,4,0,18.3,1.46,0.08,0.62,0,0,0,0,4,11.8,0,0,0,0,0.286,65.8,101.18,0.96,0.13,796,2.6,271,0.6
+9849,2023,7,25,4,30,18.5,1.46,0.08,0.62,0,0,0,0,4,11.8,0,0,0,0,0.285,64.98,96.55,0.96,0.13,796,2.6,265,0.6
+9850,2023,7,25,5,0,18.6,1.47,0.083,0.62,2,14,2,2,4,12.2,1,0,29,1,0.285,66.17,91.64,0.96,0.13,797,2.6,260,0.5
+9851,2023,7,25,5,30,19.5,1.47,0.083,0.62,24,230,39,4,0,12.2,23,134,57,32,0.284,62.57,86.34,0.96,0.13,797,2.6,246,0.6
+9852,2023,7,25,6,0,20.4,1.48,0.085,0.62,42,442,110,0,0,12,47,352,7,102,0.284,58.71,81.09,0.96,0.13,797,2.7,232,0.8
+9853,2023,7,25,6,30,22.4,1.48,0.085,0.62,56,578,199,0,0,12.1,58,561,0,197,0.283,51.97,75.64,0.96,0.13,797,2.7,237,1.3
+9854,2023,7,25,7,0,24.4,1.49,0.092,0.62,66,668,294,0,0,10.6,66,668,0,294,0.283,41.86,70.08,0.96,0.13,797,2.7,242,1.8
+9855,2023,7,25,7,30,25.8,1.49,0.092,0.62,75,732,391,0,0,10.6,75,732,0,391,0.283,38.53,64.43,0.96,0.13,797,2.7,244,2
+9856,2023,7,25,8,0,27.1,1.49,0.1,0.62,84,777,487,0,0,9.6,84,777,0,487,0.283,33.43,58.75,0.96,0.13,797,2.7,246,2.3
+9857,2023,7,25,8,30,28.1,1.49,0.1,0.62,92,811,579,0,0,9.6,92,811,0,579,0.283,31.54,53.06,0.97,0.13,797,2.7,245,2.5
+9858,2023,7,25,9,0,29.1,1.48,0.11,0.62,99,837,665,0,0,9.1,99,837,0,665,0.283,28.73,47.42,0.97,0.13,797,2.7,244,2.7
+9859,2023,7,25,9,30,29.9,1.48,0.11,0.62,105,859,744,0,0,9.1,105,859,0,744,0.283,27.44,41.9,0.97,0.13,797,2.6,245,2.9
+9860,2023,7,25,10,0,30.6,1.46,0.115,0.62,109,875,812,0,0,8.6,109,875,0,812,0.283,25.53,36.57,0.97,0.13,797,2.6,246,3.1
+9861,2023,7,25,10,30,31.2,1.46,0.115,0.62,103,905,874,0,0,8.6,103,905,0,874,0.284,24.67,31.57,0.96,0.13,797,2.5,248,3.2
+9862,2023,7,25,11,0,31.8,1.64,0.069,0.62,92,936,925,0,0,8.2,92,936,0,925,0.284,23.05,27.14,0.96,0.13,797,2.5,249,3.3
+9863,2023,7,25,11,30,32.3,1.64,0.069,0.62,91,946,958,0,0,8.2,106,918,0,947,0.285,22.41,23.6,0.96,0.13,797,2.4,250,3.3
+9864,2023,7,25,12,0,32.8,1.7,0.062,0.62,89,954,977,0,0,7.5,117,894,0,949,0.285,20.84,21.42,0.96,0.13,796,2.4,251,3.3
+9865,2023,7,25,12,30,33.2,1.7,0.062,0.62,88,958,982,0,0,7.5,195,718,0,865,0.286,20.38,21.05,0.96,0.13,796,2.3,251,3.3
+9866,2023,7,25,13,0,33.6,1.72,0.055,0.62,86,960,972,0,0,6.7,203,649,0,802,0.286,18.82,22.58,0.96,0.13,796,2.2,251,3.3
+9867,2023,7,25,13,30,33.8,1.72,0.055,0.62,84,958,948,0,0,6.7,200,703,0,834,0.286,18.61,25.66,0.96,0.13,796,2.2,252,3.4
+9868,2023,7,25,14,0,34,1.69,0.051,0.62,81,954,909,0,0,5.7,191,759,0,850,0.286,17.21,29.81,0.96,0.13,795,2.1,253,3.5
+9869,2023,7,25,14,30,34,1.69,0.051,0.62,79,945,857,0,3,5.7,316,447,0,684,0.286,17.21,34.62,0.96,0.13,795,2.1,254,3.5
+9870,2023,7,25,15,0,33.9,1.64,0.051,0.62,77,932,793,0,8,4.7,335,217,0,502,0.286,16.15,39.85,0.96,0.13,795,2,254,3.5
+9871,2023,7,25,15,30,33.6,1.64,0.051,0.62,75,915,718,0,8,4.7,298,260,0,481,0.286,16.43,45.31,0.96,0.13,795,2,255,3.4
+9872,2023,7,25,16,0,33.3,1.61,0.05,0.62,71,893,634,0,8,3.8,239,347,0,458,0.286,15.71,50.92,0.96,0.13,794,2,256,3.3
+9873,2023,7,25,16,30,32.8,1.61,0.05,0.62,67,863,542,0,3,3.8,193,393,0,409,0.286,16.15,56.6,0.96,0.13,794,2,258,3.2
+9874,2023,7,25,17,0,32.2,1.59,0.049,0.62,62,824,445,0,3,3.2,174,186,4,260,0.286,16.04,62.3,0.96,0.13,794,1.9,261,3
+9875,2023,7,25,17,30,31.2,1.59,0.049,0.62,57,771,346,0,7,3.2,135,179,4,202,0.286,16.97,67.97,0.96,0.13,794,1.9,266,2.5
+9876,2023,7,25,18,0,30.3,1.57,0.049,0.62,50,695,246,0,7,4.1,47,13,0,51,0.286,18.93,73.58,0.95,0.13,794,1.9,271,2
+9877,2023,7,25,18,30,28.2,1.57,0.049,0.62,40,580,150,1,7,4,50,86,14,66,0.286,21.36,79.08,0.95,0.13,794,1.9,280,1.5
+9878,2023,7,25,19,0,26.2,1.55,0.052,0.62,29,394,67,7,7,5.3,42,9,100,43,0.286,26.14,84.43,0.95,0.13,795,1.9,289,1.1
+9879,2023,7,25,19,30,25.4,1.55,0.052,0.62,9,93,10,4,7,5.3,6,0,57,6,0.285,27.4,89.44,0.96,0.13,795,2,290,1.1
+9880,2023,7,25,20,0,24.6,1.5,0.06,0.62,0,0,0,0,8,4.9,0,0,0,0,0.285,27.98,94.79,0.96,0.13,795,2,292,1.2
+9881,2023,7,25,20,30,24.3,1.5,0.06,0.62,0,0,0,0,7,4.9,0,0,0,0,0.284,28.53,99.55,0.96,0.13,796,2,297,1.3
+9882,2023,7,25,21,0,24.1,1.5,0.062,0.62,0,0,0,0,7,5.1,0,0,0,0,0.283,29.32,103.99,0.96,0.13,796,2,301,1.3
+9883,2023,7,25,21,30,23.6,1.5,0.062,0.62,0,0,0,0,7,5.1,0,0,0,0,0.283,30.21,108.04,0.95,0.13,796,2.1,308,1.3
+9884,2023,7,25,22,0,23.1,1.5,0.059,0.62,0,0,0,0,7,5.4,0,0,0,0,0.282,31.87,111.63,0.95,0.13,796,2.1,314,1.2
+9885,2023,7,25,22,30,22.6,1.5,0.059,0.62,0,0,0,0,7,5.4,0,0,0,0,0.282,32.84,114.68,0.95,0.13,796,2.1,314,1.1
+9886,2023,7,25,23,0,22,1.48,0.064,0.62,0,0,0,0,7,5.7,0,0,0,0,0.282,34.72,117.11,0.95,0.13,796,2.2,314,0.9
+9887,2023,7,25,23,30,21.7,1.48,0.064,0.62,0,0,0,0,8,5.7,0,0,0,0,0.282,35.36,118.83,0.96,0.13,796,2.2,301,0.8
+9888,2023,7,26,0,0,21.4,1.44,0.077,0.62,0,0,0,0,5,6.2,0,0,0,0,0.282,37.16,119.8,0.96,0.13,796,2.3,288,0.7
+9889,2023,7,26,0,30,21.2,1.44,0.077,0.62,0,0,0,0,0,6.2,0,0,0,0,0.283,37.66,119.96,0.96,0.13,797,2.4,261,0.7
+9890,2023,7,26,1,0,21,1.43,0.09,0.62,0,0,0,0,7,6.9,0,0,0,0,0.283,40,119.31,0.96,0.13,797,2.4,235,0.7
+9891,2023,7,26,1,30,20.6,1.43,0.09,0.62,0,0,0,0,7,6.9,0,0,0,0,0.284,40.99,117.88,0.96,0.13,797,2.4,209,0.7
+9892,2023,7,26,2,0,20.2,1.47,0.087,0.62,0,0,0,0,0,7.5,0,0,0,0,0.284,43.69,115.72,0.96,0.13,797,2.4,183,0.8
+9893,2023,7,26,2,30,19.7,1.47,0.087,0.62,0,0,0,0,0,7.5,0,0,0,0,0.285,45.06,112.91,0.96,0.13,797,2.4,171,0.9
+9894,2023,7,26,3,0,19.2,1.52,0.077,0.62,0,0,0,0,0,7.8,0,0,0,0,0.286,47.59,109.52,0.96,0.13,796,2.3,158,0.9
+9895,2023,7,26,3,30,18.9,1.52,0.077,0.62,0,0,0,0,0,7.8,0,0,0,0,0.286,48.48,105.64,0.96,0.13,796,2.3,155,1
+9896,2023,7,26,4,0,18.5,1.54,0.07,0.62,0,0,0,0,0,8,0,0,0,0,0.286,50.49,101.35,0.95,0.13,796,2.3,151,1
+9897,2023,7,26,4,30,18.8,1.54,0.07,0.62,0,0,0,0,0,8,0,0,0,0,0.286,49.61,96.71,0.95,0.13,797,2.3,148,1.1
+9898,2023,7,26,5,0,19.1,1.54,0.066,0.62,3,17,2,2,3,8.1,1,0,29,1,0.286,48.78,91.79,0.95,0.13,797,2.2,144,1.2
+9899,2023,7,26,5,30,20.6,1.54,0.066,0.62,23,261,39,2,0,8.1,23,229,21,37,0.285,44.47,86.48,0.95,0.13,797,2.2,143,1.7
+9900,2023,7,26,6,0,22.1,1.53,0.063,0.62,38,484,112,1,3,7.7,57,141,18,78,0.285,39.51,81.23,0.95,0.13,797,2.2,141,2.3
+9901,2023,7,26,6,30,23.4,1.53,0.063,0.62,49,625,203,0,8,7.7,96,65,4,112,0.285,36.53,75.78,0.95,0.13,797,2.2,147,2.1
+9902,2023,7,26,7,0,24.7,1.52,0.062,0.62,58,718,301,0,3,7,124,124,0,166,0.284,32.31,70.21,0.95,0.13,797,2.2,152,1.9
+9903,2023,7,26,7,30,25.7,1.52,0.062,0.62,65,782,401,0,5,7,93,2,0,94,0.284,30.45,64.56,0.95,0.13,797,2.2,178,1.4
+9904,2023,7,26,8,0,26.8,1.52,0.061,0.62,70,829,498,0,5,6.8,187,62,0,219,0.284,28.15,58.88,0.95,0.13,797,2.2,205,0.9
+9905,2023,7,26,8,30,27.9,1.52,0.061,0.62,74,864,592,0,0,6.9,159,653,0,550,0.284,26.4,53.19,0.95,0.13,797,2.2,235,1.2
+9906,2023,7,26,9,0,28.9,1.51,0.062,0.62,79,891,680,0,0,6.9,150,734,0,645,0.283,24.99,47.56,0.95,0.13,797,2.2,266,1.5
+9907,2023,7,26,9,30,29.8,1.51,0.062,0.62,82,912,759,0,0,6.9,144,777,4,721,0.283,23.73,42.04,0.95,0.13,797,2.2,267,1.7
+9908,2023,7,26,10,0,30.7,1.52,0.061,0.62,84,928,828,0,0,6.9,167,779,4,791,0.283,22.54,36.72,0.95,0.13,796,2.2,269,1.9
+9909,2023,7,26,10,30,31.4,1.52,0.061,0.62,83,945,887,0,0,6.9,152,816,4,846,0.282,21.67,31.74,0.95,0.13,796,2.2,261,2
+9910,2023,7,26,11,0,32.2,1.82,0.048,0.62,80,961,934,1,8,6.8,352,383,18,692,0.282,20.52,27.32,0.96,0.13,796,2.1,254,2.1
+9911,2023,7,26,11,30,32.8,1.82,0.048,0.62,82,966,966,0,0,6.8,104,925,4,950,0.282,19.82,23.8,0.96,0.13,795,2.1,244,2.4
+9912,2023,7,26,12,0,33.3,1.79,0.051,0.62,83,968,983,0,0,6.4,83,968,0,983,0.282,18.85,21.64,0.96,0.13,795,2.1,235,2.7
+9913,2023,7,26,12,30,33.7,1.79,0.051,0.62,86,966,986,0,0,6.4,97,944,0,977,0.282,18.44,21.27,0.96,0.13,795,2.1,233,3.2
+9914,2023,7,26,13,0,34,1.74,0.061,0.62,88,960,973,0,0,6,220,580,0,755,0.281,17.57,22.79,0.97,0.13,795,2.1,230,3.7
+9915,2023,7,26,13,30,34,1.74,0.061,0.62,90,951,946,0,8,6,303,298,0,571,0.281,17.55,25.85,0.97,0.13,794,2.1,234,4
+9916,2023,7,26,14,0,33.9,1.73,0.071,0.62,92,938,904,0,8,5.5,310,342,0,606,0.281,17.11,29.98,0.97,0.13,794,2.1,237,4.3
+9917,2023,7,26,14,30,33.6,1.73,0.071,0.62,92,923,850,0,8,5.5,302,317,0,562,0.281,17.4,34.78,0.97,0.13,794,2.1,245,4.4
+9918,2023,7,26,15,0,33.4,1.72,0.083,0.62,93,902,784,0,8,5.1,304,299,0,533,0.281,17.1,39.99,0.97,0.13,793,2.1,253,4.5
+9919,2023,7,26,15,30,32.9,1.72,0.083,0.62,90,880,707,0,6,5.1,208,33,0,231,0.281,17.59,45.45,0.97,0.13,793,2.2,261,4.4
+9920,2023,7,26,16,0,32.4,1.71,0.085,0.62,86,853,622,0,6,5.1,84,2,0,85,0.28,18.02,51.06,0.97,0.13,793,2.2,269,4.3
+9921,2023,7,26,16,30,31.8,1.71,0.085,0.62,81,819,530,0,6,5.1,167,18,0,177,0.28,18.64,56.73,0.97,0.13,793,2.2,271,4.1
+9922,2023,7,26,17,0,31.1,1.69,0.085,0.62,75,774,433,0,6,5.3,41,0,0,41,0.28,19.73,62.43,0.97,0.14,793,2.3,273,3.9
+9923,2023,7,26,17,30,30.1,1.69,0.085,0.62,68,711,333,0,7,5.3,93,68,0,118,0.28,20.89,68.1,0.97,0.14,793,2.3,263,3.7
+9924,2023,7,26,18,0,29.1,1.66,0.09,0.62,59,624,234,0,7,6,50,405,0,164,0.28,23.25,73.71,0.97,0.14,793,2.3,252,3.4
+9925,2023,7,26,18,30,27.3,1.66,0.09,0.62,46,506,141,1,7,6,54,169,14,86,0.28,25.84,79.22,0.97,0.14,794,2.4,238,3
+9926,2023,7,26,19,0,25.6,1.68,0.081,0.62,30,327,61,7,7,7.8,35,5,100,35,0.28,32.18,84.57,0.97,0.14,794,2.4,223,2.5
+9927,2023,7,26,19,30,24.6,1.68,0.081,0.62,8,68,9,4,7,7.8,6,0,57,6,0.28,34.19,89.57,0.96,0.14,795,2.3,214,2.2
+9928,2023,7,26,20,0,23.6,1.72,0.07,0.62,0,0,0,0,3,9.1,0,0,0,0,0.28,39.73,94.95,0.96,0.14,795,2.3,205,1.9
+9929,2023,7,26,20,30,22.9,1.72,0.07,0.62,0,0,0,0,3,9.1,0,0,0,0,0.28,41.43,99.72,0.96,0.14,795,2.2,199,1.5
+9930,2023,7,26,21,0,22.3,1.76,0.058,0.62,0,0,0,0,7,9.7,0,0,0,0,0.28,44.72,104.17,0.96,0.14,795,2.1,193,1.2
+9931,2023,7,26,21,30,21.6,1.76,0.058,0.62,0,0,0,0,3,9.7,0,0,0,0,0.28,46.66,108.23,0.95,0.14,795,2.1,187,1
+9932,2023,7,26,22,0,20.9,1.77,0.051,0.62,0,0,0,0,0,10.1,0,0,0,0,0.28,50.1,111.83,0.95,0.14,795,2.1,181,0.8
+9933,2023,7,26,22,30,20.2,1.77,0.051,0.62,0,0,0,0,0,10.1,0,0,0,0,0.28,52.3,114.89,0.95,0.14,795,2,177,0.8
+9934,2023,7,26,23,0,19.5,1.74,0.048,0.62,0,0,0,0,7,10.4,0,0,0,0,0.28,55.63,117.32,0.95,0.14,795,2,173,0.8
+9935,2023,7,26,23,30,19.1,1.74,0.048,0.62,0,0,0,0,7,10.4,0,0,0,0,0.279,57.03,119.05,0.95,0.14,795,2,171,0.9
+9936,2023,7,27,0,0,18.6,1.69,0.046,0.62,0,0,0,0,7,10.5,0,0,0,0,0.279,59.09,120.02,0.95,0.14,795,2,169,0.9
+9937,2023,7,27,0,30,18.2,1.69,0.046,0.62,0,0,0,0,8,10.5,0,0,0,0,0.279,60.59,120.18,0.95,0.14,795,2,166,1
+9938,2023,7,27,1,0,17.8,1.63,0.046,0.62,0,0,0,0,0,10.4,0,0,0,0,0.278,61.92,119.53,0.95,0.14,795,2,164,1.1
+9939,2023,7,27,1,30,17.6,1.63,0.046,0.62,0,0,0,0,3,10.4,0,0,0,0,0.278,62.7,118.1,0.95,0.14,795,2,164,1.1
+9940,2023,7,27,2,0,17.4,1.56,0.048,0.62,0,0,0,0,0,10.3,0,0,0,0,0.278,63.22,115.93,0.95,0.14,795,2,164,1.2
+9941,2023,7,27,2,30,17.2,1.56,0.048,0.62,0,0,0,0,0,10.3,0,0,0,0,0.278,63.94,113.11,0.95,0.14,794,2.1,172,1.1
+9942,2023,7,27,3,0,17,1.52,0.054,0.62,0,0,0,0,7,10.5,0,0,0,0,0.277,65.42,109.71,0.95,0.14,794,2.1,179,1
+9943,2023,7,27,3,30,16.9,1.52,0.054,0.62,0,0,0,0,7,10.5,0,0,0,0,0.277,65.92,105.83,0.96,0.14,795,2.3,228,1.1
+9944,2023,7,27,4,0,16.8,1.47,0.079,0.62,0,0,0,0,3,11.2,0,0,0,0,0.276,69.47,101.52,0.97,0.14,795,2.5,276,1.3
+9945,2023,7,27,4,30,16.7,1.47,0.079,0.62,0,0,0,0,3,11.2,0,0,0,0,0.276,70,96.88,0.97,0.14,796,2.6,303,2
+9946,2023,7,27,5,0,16.6,1.42,0.121,0.62,0,0,0,0,0,12.2,0,0,4,0,0.276,75.1,91.95,0.97,0.14,797,2.7,329,2.8
+9947,2023,7,27,5,30,16.6,1.42,0.121,0.62,24,157,33,2,0,12.2,23,120,25,30,0.276,75.1,86.62,0.97,0.14,797,2.7,176,2.8
+9948,2023,7,27,6,0,16.6,1.44,0.133,0.62,47,366,102,0,0,11.7,60,193,0,89,0.276,72.59,81.37,0.97,0.14,797,2.6,22,2.9
+9949,2023,7,27,6,30,17.5,1.44,0.133,0.62,63,532,192,0,3,11.7,111,65,0,127,0.277,68.58,75.92,0.96,0.14,797,2.5,50,2.9
+9950,2023,7,27,7,0,18.5,1.47,0.102,0.62,69,656,290,0,5,10.3,94,4,0,95,0.277,59.01,70.34,0.96,0.14,797,2.4,77,3
+9951,2023,7,27,7,30,20.3,1.47,0.102,0.62,76,736,391,0,5,10.3,178,95,0,219,0.277,52.78,64.69,0.96,0.14,797,2.3,103,2.9
+9952,2023,7,27,8,0,22.2,1.48,0.086,0.62,80,799,491,0,5,9.3,190,98,0,240,0.276,43.76,59.01,0.96,0.14,797,2.3,129,2.8
+9953,2023,7,27,8,30,24.1,1.48,0.086,0.62,84,839,585,0,7,9.3,137,12,0,144,0.276,39.03,53.32,0.96,0.14,797,2.3,151,2.9
+9954,2023,7,27,9,0,26,1.48,0.079,0.62,87,872,674,0,7,8.8,101,1,0,102,0.275,33.69,47.69,0.96,0.14,797,2.3,173,3
+9955,2023,7,27,9,30,27.4,1.48,0.079,0.62,88,899,754,0,0,8.8,201,434,0,523,0.274,31,42.18,0.95,0.14,796,2.2,185,3.1
+9956,2023,7,27,10,0,28.9,1.52,0.068,0.62,88,922,826,0,0,8.3,88,922,0,826,0.274,27.58,36.87,0.95,0.14,796,2.2,198,3.2
+9957,2023,7,27,10,30,30.1,1.52,0.068,0.62,84,945,886,0,7,8.3,291,434,0,659,0.273,25.71,31.9,0.95,0.14,795,2.1,206,3.5
+9958,2023,7,27,11,0,31.3,1.75,0.042,0.62,78,966,935,0,8,7.9,353,331,0,647,0.273,23.31,27.5,0.95,0.14,795,2.1,215,3.8
+9959,2023,7,27,11,30,32.1,1.75,0.042,0.62,77,974,967,0,0,7.9,223,660,0,826,0.272,22.25,24,0.95,0.14,794,2.1,219,4.2
+9960,2023,7,27,12,0,33,1.78,0.038,0.62,76,979,985,0,0,7.4,76,979,0,985,0.272,20.42,21.86,0.95,0.14,794,2,222,4.5
+9961,2023,7,27,12,30,33.5,1.78,0.038,0.62,78,978,988,0,0,7.3,103,928,0,966,0.271,19.83,21.5,0.95,0.14,793,2.1,224,4.9
+9962,2023,7,27,13,0,34.1,1.72,0.042,0.62,78,975,975,0,0,6.4,109,888,0,926,0.271,18,23,0.95,0.14,793,2.1,226,5.3
+9963,2023,7,27,13,30,34.3,1.72,0.042,0.62,80,966,948,0,0,6.4,202,638,0,775,0.271,17.81,26.04,0.95,0.14,793,2.1,228,5.6
+9964,2023,7,27,14,0,34.5,1.58,0.054,0.62,83,953,907,0,8,5.3,299,259,0,523,0.27,16.28,30.15,0.96,0.14,792,2.1,229,5.9
+9965,2023,7,27,14,30,34.4,1.58,0.054,0.62,83,941,854,0,8,5.3,197,618,7,704,0.271,16.37,34.94,0.96,0.14,792,2,230,5.9
+9966,2023,7,27,15,0,34.3,1.53,0.06,0.62,83,925,790,0,0,4.1,101,891,0,782,0.271,15.19,40.14,0.96,0.14,792,2,231,6
+9967,2023,7,27,15,30,34,1.53,0.06,0.62,81,905,714,0,0,4.1,81,901,18,712,0.272,15.44,45.59,0.96,0.14,792,2,232,5.9
+9968,2023,7,27,16,0,33.6,1.49,0.063,0.62,76,880,628,0,7,3.3,136,691,29,569,0.272,14.89,51.19,0.96,0.14,791,1.9,232,5.7
+9969,2023,7,27,16,30,33,1.49,0.063,0.62,73,848,536,0,7,3.3,179,478,21,440,0.273,15.39,56.87,0.96,0.14,791,1.9,232,5.5
+9970,2023,7,27,17,0,32.5,1.47,0.065,0.62,68,804,438,0,7,3,128,598,46,404,0.273,15.47,62.56,0.95,0.14,791,1.9,233,5.2
+9971,2023,7,27,17,30,31.5,1.47,0.065,0.62,61,746,338,0,7,3,150,292,0,258,0.274,16.36,68.24,0.95,0.14,791,1.9,232,4.5
+9972,2023,7,27,18,0,30.5,1.46,0.065,0.62,54,666,239,0,8,3.5,88,477,18,221,0.274,17.95,73.85,0.96,0.14,791,1.9,231,3.8
+9973,2023,7,27,18,30,28.4,1.46,0.065,0.62,43,547,144,0,0,3.5,43,547,0,144,0.275,20.28,79.37,0.95,0.14,792,1.9,230,2.8
+9974,2023,7,27,19,0,26.4,1.46,0.062,0.62,29,358,62,0,0,4.4,29,358,0,62,0.275,24.25,84.72,0.95,0.14,792,1.9,229,1.8
+9975,2023,7,27,19,30,25.5,1.46,0.062,0.62,9,76,9,0,0,4.4,9,76,0,9,0.276,25.58,89.72,0.95,0.14,792,1.9,229,1.7
+9976,2023,7,27,20,0,24.6,1.47,0.059,0.62,0,0,0,0,0,4.4,0,0,0,0,0.276,27.11,95.12,0.95,0.14,792,1.8,229,1.5
+9977,2023,7,27,20,30,24,1.47,0.059,0.62,0,0,0,0,0,4.4,0,0,0,0,0.276,28.09,99.89,0.95,0.14,792,1.8,230,1.4
+9978,2023,7,27,21,0,23.5,1.49,0.053,0.62,0,0,0,0,0,4.3,0,0,0,0,0.277,28.64,104.35,0.95,0.14,792,1.7,231,1.3
+9979,2023,7,27,21,30,23,1.49,0.053,0.62,0,0,0,0,0,4.3,0,0,0,0,0.277,29.52,108.42,0.94,0.14,792,1.7,234,1.3
+9980,2023,7,27,22,0,22.5,1.5,0.048,0.62,0,0,0,0,7,3.9,0,0,0,0,0.277,29.75,112.03,0.94,0.14,793,1.6,236,1.2
+9981,2023,7,27,22,30,22.2,1.5,0.048,0.62,0,0,0,0,6,3.9,0,0,0,0,0.277,30.3,115.1,0.94,0.14,793,1.5,237,1.2
+9982,2023,7,27,23,0,21.8,1.51,0.043,0.62,0,0,0,0,6,3.5,0,0,0,0,0.278,30.07,117.54,0.93,0.14,793,1.5,239,1.1
+9983,2023,7,27,23,30,21.5,1.51,0.043,0.62,0,0,0,0,0,3.5,0,0,0,0,0.278,30.63,119.28,0.93,0.14,793,1.4,236,1.1
+9984,2023,7,28,0,0,21.2,1.51,0.04,0.62,0,0,0,0,0,3.1,0,0,0,0,0.278,30.29,120.25,0.93,0.14,793,1.4,233,1.1
+9985,2023,7,28,0,30,20.9,1.51,0.04,0.62,0,0,0,0,0,3.1,0,0,0,0,0.278,30.85,120.41,0.93,0.14,793,1.4,228,1
+9986,2023,7,28,1,0,20.6,1.49,0.039,0.62,0,0,0,0,0,2.8,0,0,0,0,0.278,30.86,119.76,0.93,0.14,793,1.3,222,0.9
+9987,2023,7,28,1,30,20.3,1.49,0.039,0.62,0,0,0,0,3,2.8,0,0,0,0,0.278,31.44,118.32,0.93,0.14,793,1.3,223,0.9
+9988,2023,7,28,2,0,20,1.47,0.041,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,31.79,116.14,0.93,0.14,793,1.3,223,0.9
+9989,2023,7,28,2,30,19.6,1.47,0.041,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,32.59,113.31,0.93,0.14,793,1.3,233,0.8
+9990,2023,7,28,3,0,19.3,1.45,0.044,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,33.21,109.91,0.93,0.14,793,1.3,242,0.7
+9991,2023,7,28,3,30,19,1.45,0.044,0.62,0,0,0,0,0,2.7,0,0,0,0,0.279,33.83,106.01,0.93,0.14,793,1.3,258,0.7
+9992,2023,7,28,4,0,18.7,1.43,0.049,0.62,0,0,0,0,0,2.8,0,0,0,0,0.279,34.65,101.7,0.94,0.14,794,1.4,273,0.6
+9993,2023,7,28,4,30,18.7,1.43,0.049,0.62,0,0,0,0,0,2.8,0,0,0,0,0.279,34.65,97.04,0.94,0.14,794,1.4,291,0.6
+9994,2023,7,28,5,0,18.7,1.43,0.051,0.62,0,0,0,2,3,3.2,0,0,21,0,0.279,35.78,92.11,0.94,0.14,794,1.4,310,0.5
+9995,2023,7,28,5,30,20.3,1.43,0.051,0.62,21,267,36,6,3,3.2,21,7,93,21,0.28,32.41,86.77,0.94,0.14,794,1.4,330,0.6
+9996,2023,7,28,6,0,21.8,1.43,0.051,0.62,36,521,113,2,3,3.9,60,51,29,68,0.28,30.89,81.51,0.93,0.14,795,1.4,351,0.8
+9997,2023,7,28,6,30,23.9,1.43,0.051,0.62,46,663,206,0,3,3.9,109,196,0,156,0.28,27.21,76.06,0.93,0.14,795,1.4,345,0.7
+9998,2023,7,28,7,0,26,1.43,0.05,0.62,55,755,307,0,0,2.3,78,659,0,298,0.281,21.42,70.48,0.93,0.14,795,1.4,338,0.6
+9999,2023,7,28,7,30,27.9,1.43,0.05,0.62,61,819,409,0,0,2.3,61,819,14,409,0.28,19.17,64.83,0.93,0.14,795,1.4,295,0.8
+10000,2023,7,28,8,0,29.7,1.44,0.048,0.62,65,866,509,0,3,-0.6,210,436,7,434,0.28,14.03,59.14,0.93,0.14,795,1.4,252,0.9
+10001,2023,7,28,8,30,30.7,1.44,0.048,0.62,69,900,605,0,0,-0.6,125,766,0,581,0.28,13.27,53.46,0.93,0.14,796,1.4,241,1.1
+10002,2023,7,28,9,0,31.7,1.45,0.047,0.62,72,927,694,0,0,-1.5,72,927,0,694,0.28,11.7,47.83,0.93,0.14,796,1.4,230,1.3
+10003,2023,7,28,9,30,32.4,1.45,0.047,0.62,75,947,775,0,0,-1.6,143,828,0,755,0.279,11.23,42.32,0.93,0.14,795,1.4,224,1.5
+10004,2023,7,28,10,0,33.1,1.46,0.047,0.62,77,962,845,0,0,-1.8,77,962,0,845,0.279,10.57,37.02,0.93,0.14,795,1.4,218,1.8
+10005,2023,7,28,10,30,33.7,1.46,0.047,0.62,77,977,905,0,0,-1.8,77,977,0,905,0.279,10.22,32.07,0.93,0.14,795,1.4,217,2.1
+10006,2023,7,28,11,0,34.3,1.49,0.038,0.62,75,990,952,0,0,-1.8,75,990,0,952,0.279,9.88,27.69,0.93,0.14,795,1.3,216,2.4
+10007,2023,7,28,11,30,34.7,1.49,0.038,0.62,76,995,983,0,0,-1.8,76,995,0,983,0.278,9.66,24.21,0.93,0.14,795,1.4,217,2.7
+10008,2023,7,28,12,0,35,1.5,0.038,0.62,77,997,1001,0,0,-1.7,77,997,0,1001,0.278,9.58,22.08,0.93,0.14,795,1.4,218,3
+10009,2023,7,28,12,30,35.2,1.5,0.038,0.62,78,997,1004,0,0,-1.8,78,997,0,1004,0.278,9.46,21.73,0.93,0.14,794,1.4,221,3.2
+10010,2023,7,28,13,0,35.4,1.5,0.038,0.62,77,996,992,0,0,-1.7,77,996,0,992,0.277,9.42,23.22,0.93,0.14,794,1.4,223,3.4
+10011,2023,7,28,13,30,35.4,1.5,0.038,0.62,77,990,965,0,0,-1.7,149,866,0,926,0.277,9.42,26.25,0.93,0.14,794,1.4,226,3.4
+10012,2023,7,28,14,0,35.3,1.51,0.041,0.62,76,982,924,0,0,-1.6,133,866,0,880,0.277,9.51,30.33,0.93,0.14,794,1.4,229,3.4
+10013,2023,7,28,14,30,35,1.51,0.041,0.62,75,972,870,0,0,-1.6,75,972,0,870,0.277,9.67,35.1,0.93,0.14,794,1.4,232,3.3
+10014,2023,7,28,15,0,34.8,1.52,0.04,0.62,73,959,804,0,0,-1.6,122,854,0,773,0.277,9.77,40.3,0.93,0.14,793,1.4,235,3.1
+10015,2023,7,28,15,30,34.3,1.52,0.04,0.62,70,941,727,0,0,-1.6,70,941,0,727,0.277,10.05,45.74,0.94,0.14,793,1.4,237,2.9
+10016,2023,7,28,16,0,33.8,1.53,0.04,0.62,67,919,641,0,0,-1.6,67,919,0,641,0.277,10.31,51.34,0.94,0.14,793,1.4,240,2.6
+10017,2023,7,28,16,30,33.1,1.53,0.04,0.62,64,887,547,0,0,-1.7,64,887,0,547,0.278,10.72,57.01,0.94,0.14,793,1.4,240,2.3
+10018,2023,7,28,17,0,32.4,1.52,0.042,0.62,60,845,447,0,0,-1.6,60,845,0,447,0.278,11.17,62.71,0.94,0.14,793,1.4,241,2
+10019,2023,7,28,17,30,31.3,1.52,0.042,0.62,54,789,345,0,0,-1.6,54,789,0,345,0.278,11.88,68.38,0.94,0.14,793,1.4,239,1.4
+10020,2023,7,28,18,0,30.2,1.51,0.045,0.62,48,708,243,0,8,2.5,73,511,29,214,0.278,17,74,0.94,0.14,794,1.5,238,0.7
+10021,2023,7,28,18,30,29.1,1.51,0.045,0.62,39,588,146,2,8,2.5,62,401,75,135,0.278,18.11,79.52,0.94,0.14,794,1.5,175,0.5
+10022,2023,7,28,19,0,27.9,1.51,0.047,0.62,27,392,62,7,7,2.9,45,44,100,49,0.278,20.08,84.88,0.95,0.14,794,1.5,113,0.2
+10023,2023,7,28,19,30,27,1.51,0.047,0.62,7,66,7,4,7,2.9,5,1,57,5,0.278,21.17,89.86,0.94,0.14,794,1.5,103,0.4
+10024,2023,7,28,20,0,26.1,1.53,0.046,0.62,0,0,0,0,0,1.8,0,0,0,0,0.278,20.56,95.29,0.94,0.14,794,1.5,93,0.7
+10025,2023,7,28,20,30,25.4,1.53,0.046,0.62,0,0,0,0,3,1.8,0,0,0,0,0.277,21.43,100.07,0.94,0.14,794,1.6,100,0.7
+10026,2023,7,28,21,0,24.7,1.51,0.048,0.62,0,0,0,0,5,1.9,0,0,0,0,0.277,22.54,104.54,0.95,0.14,794,1.6,107,0.8
+10027,2023,7,28,21,30,24.1,1.51,0.048,0.62,0,0,0,0,5,1.9,0,0,0,0,0.276,23.36,108.62,0.95,0.14,794,1.6,109,0.8
+10028,2023,7,28,22,0,23.4,1.5,0.049,0.62,0,0,0,0,5,2.7,0,0,0,0,0.276,25.75,112.24,0.95,0.14,794,1.6,112,0.7
+10029,2023,7,28,22,30,22.8,1.5,0.049,0.62,0,0,0,0,5,2.7,0,0,0,0,0.276,26.7,115.32,0.95,0.14,794,1.6,110,0.6
+10030,2023,7,28,23,0,22.1,1.5,0.05,0.62,0,0,0,0,0,3.5,0,0,0,0,0.275,29.57,117.76,0.95,0.14,794,1.6,109,0.5
+10031,2023,7,28,23,30,21.6,1.5,0.05,0.62,0,0,0,0,0,3.5,0,0,0,0,0.275,30.48,119.51,0.95,0.14,794,1.6,91,0.4
+10032,2023,7,29,0,0,21.1,1.5,0.051,0.62,0,0,0,0,0,4.2,0,0,0,0,0.275,32.96,120.48,0.95,0.14,794,1.7,74,0.3
+10033,2023,7,29,0,30,20.7,1.5,0.051,0.62,0,0,0,0,0,4.2,0,0,0,0,0.275,33.78,120.64,0.95,0.14,794,1.7,44,0.4
+10034,2023,7,29,1,0,20.4,1.5,0.05,0.62,0,0,0,0,0,4.5,0,0,0,0,0.274,35.3,119.99,0.95,0.14,794,1.7,13,0.4
+10035,2023,7,29,1,30,20.1,1.5,0.05,0.62,0,0,0,0,0,4.5,0,0,0,0,0.274,35.96,118.54,0.95,0.14,794,1.7,180,0.6
+10036,2023,7,29,2,0,19.7,1.51,0.05,0.62,0,0,0,0,0,4.8,0,0,0,0,0.275,37.43,116.36,0.95,0.14,794,1.7,346,0.7
+10037,2023,7,29,2,30,19.3,1.51,0.05,0.62,0,0,0,0,0,4.8,0,0,0,0,0.275,38.37,113.52,0.94,0.14,794,1.7,340,0.7
+10038,2023,7,29,3,0,18.9,1.52,0.051,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,39.71,110.1,0.94,0.14,794,1.7,334,0.8
+10039,2023,7,29,3,30,18.6,1.52,0.051,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,40.51,106.2,0.95,0.14,795,1.7,331,0.8
+10040,2023,7,29,4,0,18.2,1.51,0.056,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,41.5,101.87,0.95,0.14,795,1.7,329,0.7
+10041,2023,7,29,4,30,18.3,1.51,0.056,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,41.25,97.21,0.95,0.14,795,1.7,328,0.6
+10042,2023,7,29,5,0,18.4,1.49,0.063,0.62,0,0,0,0,0,5,0,0,7,0,0.276,41.15,92.27,0.95,0.14,796,1.7,328,0.5
+10043,2023,7,29,5,30,19.7,1.49,0.063,0.62,22,232,34,6,8,5,22,3,93,22,0.276,37.96,86.92,0.95,0.14,796,1.7,325,0.6
+10044,2023,7,29,6,0,20.9,1.48,0.068,0.62,39,476,108,2,0,4.6,58,226,29,91,0.276,34.46,81.66,0.95,0.14,797,1.7,322,0.7
+10045,2023,7,29,6,30,22.7,1.48,0.068,0.62,51,621,199,0,3,4.6,90,370,0,178,0.277,30.89,76.2,0.95,0.14,797,1.7,283,1.1
+10046,2023,7,29,7,0,24.5,1.49,0.069,0.62,60,715,297,0,0,3.4,60,715,0,297,0.277,25.44,70.62,0.95,0.14,797,1.7,243,1.5
+10047,2023,7,29,7,30,26.4,1.49,0.069,0.62,67,782,398,0,0,3.4,67,782,0,398,0.277,22.73,64.96,0.95,0.14,797,1.8,245,2.3
+10048,2023,7,29,8,0,28.4,1.51,0.066,0.62,72,832,497,0,0,2.2,72,832,0,497,0.277,18.47,59.28,0.94,0.14,798,1.8,247,3.2
+10049,2023,7,29,8,30,29.4,1.51,0.066,0.62,77,866,591,0,0,2.2,77,866,0,591,0.277,17.43,53.6,0.94,0.14,798,1.8,250,3.6
+10050,2023,7,29,9,0,30.5,1.5,0.068,0.62,81,892,678,0,0,2.4,122,792,0,652,0.277,16.6,47.97,0.95,0.14,798,1.9,252,4.1
+10051,2023,7,29,9,30,30.9,1.5,0.068,0.62,86,908,756,0,0,2.4,231,596,7,671,0.277,16.22,42.47,0.95,0.14,798,2,253,4.4
+10052,2023,7,29,10,0,31.3,1.47,0.076,0.62,92,918,823,1,0,3.3,225,653,11,745,0.276,16.94,37.18,0.95,0.14,798,2.1,253,4.8
+10053,2023,7,29,10,30,30.9,1.47,0.076,0.62,91,933,880,0,0,3.3,216,674,0,786,0.276,17.33,32.24,0.96,0.14,798,2.1,252,5
+10054,2023,7,29,11,0,30.5,1.53,0.063,0.62,89,946,925,1,8,4.6,314,487,11,744,0.276,19.47,27.88,0.97,0.14,798,2.2,252,5.1
+10055,2023,7,29,11,30,29.5,1.53,0.063,0.62,90,950,955,0,0,4.6,200,767,4,898,0.275,20.62,24.42,0.97,0.14,798,2.3,247,4.5
+10056,2023,7,29,12,0,28.4,1.51,0.064,0.62,91,950,970,0,8,6,361,322,4,659,0.275,24.21,22.31,0.97,0.14,799,2.4,243,4
+10057,2023,7,29,12,30,28.2,1.51,0.064,0.62,90,953,974,0,8,6,363,358,0,695,0.276,24.46,21.96,0.96,0.14,798,2.4,227,3.2
+10058,2023,7,29,13,0,27.9,1.54,0.058,0.62,88,955,964,0,0,6.6,222,700,0,864,0.276,25.99,23.45,0.96,0.14,798,2.3,211,2.3
+10059,2023,7,29,13,30,28.6,1.54,0.058,0.62,82,959,941,0,0,6.6,98,932,0,932,0.277,24.96,26.45,0.96,0.14,798,2.2,195,2.3
+10060,2023,7,29,14,0,29.3,1.61,0.041,0.62,75,962,904,0,0,6.6,75,962,0,904,0.278,23.9,30.52,0.95,0.14,797,2.1,178,2.2
+10061,2023,7,29,14,30,29.9,1.61,0.041,0.62,74,955,854,0,0,6.6,74,955,0,854,0.279,23.1,35.28,0.95,0.14,797,2,183,2.2
+10062,2023,7,29,15,0,30.6,1.61,0.038,0.62,71,945,790,0,0,6.2,71,945,0,790,0.279,21.58,40.46,0.94,0.14,797,1.9,187,2.1
+10063,2023,7,29,15,30,30.7,1.61,0.038,0.62,68,929,715,0,0,6.2,101,860,7,699,0.28,21.44,45.9,0.94,0.14,796,1.9,194,1.9
+10064,2023,7,29,16,0,30.9,1.58,0.039,0.62,66,905,629,0,0,5.5,178,600,0,552,0.28,20.28,51.49,0.94,0.14,796,1.9,201,1.7
+10065,2023,7,29,16,30,30.6,1.58,0.039,0.62,63,873,536,0,8,5.5,193,421,11,421,0.281,20.63,57.16,0.95,0.14,796,1.9,207,1.4
+10066,2023,7,29,17,0,30.4,1.57,0.042,0.62,59,831,438,0,3,4.8,130,591,7,400,0.281,19.84,62.85,0.95,0.14,795,1.9,212,1.2
+10067,2023,7,29,17,30,29.6,1.57,0.042,0.62,54,775,338,0,0,4.8,68,721,14,332,0.281,20.77,68.53,0.95,0.14,795,1.9,221,0.8
+10068,2023,7,29,18,0,28.9,1.59,0.045,0.62,47,694,237,0,0,5.8,73,516,18,214,0.282,23.2,74.15,0.95,0.14,795,1.9,230,0.4
+10069,2023,7,29,18,30,27.6,1.59,0.045,0.62,39,573,142,2,3,5.8,72,234,25,114,0.282,25.01,79.67,0.95,0.14,795,1.9,131,0.5
+10070,2023,7,29,19,0,26.2,1.61,0.048,0.62,27,375,59,7,3,5.9,39,10,100,40,0.283,27.41,85.04,0.95,0.14,795,1.9,31,0.6
+10071,2023,7,29,19,30,25.2,1.61,0.048,0.62,6,61,6,3,3,5.9,3,7,39,3,0.283,29.07,90.01,0.95,0.14,795,2,41,0.8
+10072,2023,7,29,20,0,24.1,1.62,0.053,0.62,0,0,0,0,7,5.2,0,0,0,0,0.283,29.48,95.47,0.96,0.14,795,2,51,1
+10073,2023,7,29,20,30,23.5,1.62,0.053,0.62,0,0,0,0,7,5.2,0,0,0,0,0.283,30.6,100.26,0.96,0.14,796,2.1,62,0.9
+10074,2023,7,29,21,0,22.9,1.6,0.06,0.62,0,0,0,0,8,5.1,0,0,0,0,0.283,31.59,104.73,0.96,0.14,796,2.1,74,0.9
+10075,2023,7,29,21,30,22.5,1.6,0.06,0.62,0,0,0,0,3,5.1,0,0,0,0,0.282,32.36,108.82,0.96,0.14,796,2.2,90,0.8
+10076,2023,7,29,22,0,22,1.58,0.069,0.62,0,0,0,0,4,5.3,0,0,0,0,0.282,33.82,112.45,0.96,0.14,796,2.2,106,0.8
+10077,2023,7,29,22,30,21.8,1.58,0.069,0.62,0,0,0,0,4,5.3,0,0,0,0,0.282,34.23,115.54,0.97,0.14,796,2.2,117,0.8
+10078,2023,7,29,23,0,21.5,1.58,0.071,0.62,0,0,0,0,4,5.8,0,0,0,0,0.281,36.05,117.99,0.97,0.14,796,2.3,129,0.9
+10079,2023,7,29,23,30,21.1,1.58,0.071,0.62,0,0,0,0,4,5.8,0,0,0,0,0.281,36.94,119.74,0.96,0.14,796,2.3,136,0.9
+10080,2023,7,30,0,0,20.7,1.63,0.065,0.62,0,0,0,0,4,6.4,0,0,0,0,0.281,39.36,120.72,0.96,0.14,796,2.3,143,0.9
+10081,2023,7,30,0,30,20.2,1.63,0.065,0.62,0,0,0,0,0,6.4,0,0,0,0,0.281,40.59,120.88,0.96,0.14,796,2.3,150,0.9
+10082,2023,7,30,1,0,19.6,1.67,0.06,0.62,0,0,0,0,0,6.9,0,0,0,0,0.281,43.56,120.22,0.96,0.14,795,2.3,156,0.9
+10083,2023,7,30,1,30,19.4,1.67,0.06,0.62,0,0,0,0,0,6.9,0,0,0,0,0.281,44.11,118.77,0.96,0.14,795,2.3,165,1
+10084,2023,7,30,2,0,19.2,1.68,0.06,0.62,0,0,0,0,3,7.3,0,0,0,0,0.281,46.07,116.58,0.96,0.14,795,2.3,174,1
+10085,2023,7,30,2,30,19,1.68,0.06,0.62,0,0,0,0,3,7.3,0,0,0,0,0.281,46.65,113.73,0.95,0.14,795,2.3,182,1
+10086,2023,7,30,3,0,18.8,1.69,0.061,0.62,0,0,0,0,3,7.6,0,0,0,0,0.281,48.27,110.3,0.95,0.14,796,2.3,191,1.1
+10087,2023,7,30,3,30,18.6,1.69,0.061,0.62,0,0,0,0,3,7.6,0,0,0,0,0.281,48.88,106.39,0.95,0.14,796,2.3,193,1.1
+10088,2023,7,30,4,0,18.3,1.69,0.064,0.62,0,0,0,0,5,7.8,0,0,0,0,0.282,50.4,102.05,0.95,0.14,796,2.3,196,1.2
+10089,2023,7,30,4,30,18.4,1.69,0.064,0.62,0,0,0,0,5,7.8,0,0,0,0,0.281,50.09,97.38,0.95,0.14,796,2.3,191,1.2
+10090,2023,7,30,5,0,18.5,1.68,0.068,0.62,0,0,0,1,3,8.1,0,0,14,0,0.281,50.69,92.43,0.95,0.14,796,2.3,186,1.2
+10091,2023,7,30,5,30,20,1.68,0.068,0.62,20,216,31,7,3,8.1,18,13,96,19,0.282,46.19,87.06,0.95,0.14,796,2.3,184,1.9
+10092,2023,7,30,6,0,21.5,1.69,0.071,0.62,38,456,103,3,4,8.5,32,14,46,34,0.282,43.38,81.81,0.95,0.14,796,2.3,182,2.6
+10093,2023,7,30,6,30,23.1,1.69,0.071,0.62,50,595,191,0,5,8.6,27,1,0,27,0.282,39.42,76.34,0.95,0.14,797,2.4,192,3.7
+10094,2023,7,30,7,0,24.7,1.67,0.08,0.62,62,684,287,1,8,9.1,59,7,11,61,0.282,37.22,70.76,0.95,0.14,797,2.4,203,4.7
+10095,2023,7,30,7,30,25.8,1.67,0.08,0.62,70,748,385,0,8,9.1,92,17,0,99,0.282,34.87,65.1,0.95,0.14,797,2.5,207,5.1
+10096,2023,7,30,8,0,26.9,1.66,0.085,0.62,77,793,481,0,5,9.8,173,308,0,330,0.281,34.22,59.41,0.95,0.14,797,2.5,210,5.4
+10097,2023,7,30,8,30,27.8,1.66,0.085,0.62,84,828,574,0,3,9.8,286,284,0,454,0.281,32.47,53.73,0.96,0.14,797,2.6,211,5.3
+10098,2023,7,30,9,0,28.7,1.65,0.09,0.62,90,854,660,0,5,10.2,319,59,0,358,0.281,31.62,48.11,0.96,0.14,797,2.6,212,5.1
+10099,2023,7,30,9,30,29.5,1.65,0.09,0.62,95,872,737,0,5,10.2,350,92,7,418,0.28,30.19,42.62,0.96,0.14,797,2.7,212,4.9
+10100,2023,7,30,10,0,30.2,1.62,0.1,0.62,101,884,804,0,7,10.3,260,513,4,668,0.28,29.1,37.34,0.96,0.14,797,2.7,212,4.7
+10101,2023,7,30,10,30,30.5,1.62,0.1,0.62,101,903,863,0,0,10.3,101,903,0,863,0.28,28.6,32.42,0.97,0.14,797,2.8,212,4.7
+10102,2023,7,30,11,0,30.7,1.48,0.079,0.62,96,921,909,0,0,10.3,157,758,4,826,0.279,28.31,28.07,0.98,0.14,796,2.8,213,4.7
+10103,2023,7,30,11,30,30.3,1.48,0.079,0.62,101,921,938,0,0,10.3,162,778,0,869,0.279,28.96,24.64,0.98,0.14,796,2.9,213,4.7
+10104,2023,7,30,12,0,30,1.47,0.096,0.62,107,916,953,0,0,10.5,217,737,0,898,0.278,29.93,22.55,0.97,0.14,796,2.9,213,4.7
+10105,2023,7,30,12,30,29.9,1.47,0.096,0.62,108,915,955,0,0,10.5,286,599,0,841,0.279,30.1,22.2,0.97,0.14,796,2.9,211,4.7
+10106,2023,7,30,13,0,29.8,1.52,0.1,0.62,108,911,942,0,0,10.7,173,804,0,909,0.279,30.77,23.68,0.97,0.14,796,2.9,210,4.7
+10107,2023,7,30,13,30,30,1.52,0.1,0.62,101,915,919,0,0,10.8,111,898,0,914,0.279,30.42,26.66,0.97,0.14,796,2.9,209,4.6
+10108,2023,7,30,14,0,30.2,1.54,0.072,0.62,92,920,883,0,0,10.7,92,920,0,883,0.28,30.07,30.72,0.96,0.14,795,2.9,208,4.6
+10109,2023,7,30,14,30,30.2,1.54,0.072,0.62,91,909,831,0,8,10.7,249,528,0,679,0.28,30.07,35.46,0.96,0.14,795,2.8,207,4.6
+10110,2023,7,30,15,0,30.2,1.56,0.074,0.62,88,894,767,0,7,10.6,305,162,0,428,0.281,29.87,40.62,0.96,0.14,795,2.7,207,4.6
+10111,2023,7,30,15,30,30.1,1.56,0.074,0.62,86,872,691,0,7,10.6,277,97,0,344,0.281,30,46.06,0.96,0.14,794,2.7,209,4.7
+10112,2023,7,30,16,0,29.9,1.56,0.084,0.62,84,841,606,0,8,10.5,216,178,7,326,0.281,30.11,51.64,0.95,0.14,794,2.7,211,4.7
+10113,2023,7,30,16,30,29.4,1.56,0.084,0.62,84,794,513,0,8,10.5,164,263,7,306,0.281,30.99,57.31,0.95,0.14,794,2.7,220,4.6
+10114,2023,7,30,17,0,29,1.54,0.112,0.62,83,729,414,0,8,10.6,63,139,0,126,0.281,31.85,63.01,0.96,0.14,794,2.7,229,4.5
+10115,2023,7,30,17,30,28,1.54,0.112,0.62,82,634,312,0,8,10.6,111,154,7,167,0.281,33.74,68.69,0.96,0.14,794,2.8,251,3.8
+10116,2023,7,30,18,0,27,1.51,0.171,0.62,76,501,211,0,5,11.5,102,52,0,116,0.281,38.05,74.31,0.96,0.14,794,2.9,272,3
+10117,2023,7,30,18,30,25.6,1.51,0.171,0.62,59,344,120,2,5,11.5,77,31,29,82,0.281,41.37,79.84,0.96,0.14,795,3,307,3
+10118,2023,7,30,19,0,24.1,1.52,0.231,0.62,33,145,45,7,5,12.8,22,0,100,22,0.281,49.38,85.2,0.96,0.14,795,3,342,3
+10119,2023,7,30,19,30,23.1,1.52,0.231,0.62,4,13,4,3,8,12.9,2,0,43,2,0.281,52.5,90.16,0.96,0.14,796,3,185,3.1
+10120,2023,7,30,20,0,22.1,1.55,0.231,0.62,0,0,0,0,8,13.8,0,0,0,0,0.281,59.42,95.65,0.96,0.14,796,2.9,27,3.1
+10121,2023,7,30,20,30,21.6,1.55,0.231,0.62,0,0,0,0,8,13.8,0,0,0,0,0.281,61.25,100.45,0.95,0.14,796,2.9,43,2.9
+10122,2023,7,30,21,0,21.2,1.58,0.201,0.62,0,0,0,0,8,14.1,0,0,0,0,0.281,64.03,104.93,0.95,0.14,796,2.9,59,2.7
+10123,2023,7,30,21,30,20.7,1.58,0.201,0.62,0,0,0,0,6,14.1,0,0,0,0,0.281,66.02,109.03,0.95,0.14,796,2.9,69,2.3
+10124,2023,7,30,22,0,20.2,1.58,0.174,0.62,0,0,0,0,6,14.3,0,0,0,0,0.281,69,112.67,0.95,0.14,797,2.9,79,1.9
+10125,2023,7,30,22,30,19.8,1.58,0.174,0.62,0,0,0,0,6,14.3,0,0,0,0,0.281,70.72,115.76,0.95,0.14,797,2.9,83,1.8
+10126,2023,7,30,23,0,19.5,1.59,0.151,0.62,0,0,0,0,7,14.5,0,0,0,0,0.281,72.9,118.23,0.95,0.14,797,2.9,88,1.7
+10127,2023,7,30,23,30,19.1,1.59,0.151,0.62,0,0,0,0,7,14.5,0,0,0,0,0.281,74.63,119.98,0.95,0.14,796,2.8,90,1.6
+10128,2023,7,31,0,0,18.7,1.6,0.132,0.62,0,0,0,0,7,14.7,0,0,0,0,0.281,77.37,120.96,0.95,0.14,796,2.8,93,1.5
+10129,2023,7,31,0,30,18.5,1.6,0.132,0.62,0,0,0,0,7,14.7,0,0,0,0,0.281,78.34,121.12,0.95,0.14,796,2.8,94,1.3
+10130,2023,7,31,1,0,18.3,1.6,0.124,0.62,0,0,0,0,8,14.8,0,0,0,0,0.281,80.04,120.46,0.95,0.14,796,2.8,95,1.1
+10131,2023,7,31,1,30,18.2,1.6,0.124,0.62,0,0,0,0,7,14.8,0,0,0,0,0.282,80.54,119,0.95,0.14,796,2.8,96,1
+10132,2023,7,31,2,0,18,1.59,0.124,0.62,0,0,0,0,7,14.9,0,0,0,0,0.282,81.98,116.8,0.95,0.14,796,2.8,97,0.8
+10133,2023,7,31,2,30,18,1.59,0.124,0.62,0,0,0,0,7,14.9,0,0,0,0,0.282,81.98,113.94,0.95,0.14,796,2.8,97,0.7
+10134,2023,7,31,3,0,17.9,1.59,0.128,0.62,0,0,0,0,7,14.9,0,0,0,0,0.282,82.56,110.51,0.95,0.14,796,2.8,98,0.7
+10135,2023,7,31,3,30,17.8,1.59,0.128,0.62,0,0,0,0,8,14.9,0,0,0,0,0.282,83.08,106.58,0.95,0.14,796,2.8,100,0.6
+10136,2023,7,31,4,0,17.7,1.59,0.13,0.62,0,0,0,0,8,14.8,0,0,0,0,0.282,83.34,102.23,0.95,0.14,796,2.8,101,0.6
+10137,2023,7,31,4,30,17.8,1.59,0.13,0.62,0,0,0,0,7,14.9,0,0,0,0,0.282,82.92,97.55,0.95,0.14,797,2.8,106,0.5
+10138,2023,7,31,5,0,17.9,1.6,0.127,0.62,0,0,0,1,6,15,0,0,14,0,0.282,83.2,92.59,0.95,0.14,797,2.8,110,0.5
+10139,2023,7,31,5,30,18.8,1.6,0.127,0.62,20,145,27,7,6,15,13,0,100,13,0.282,78.65,87.21,0.95,0.14,797,2.8,125,0.7
+10140,2023,7,31,6,0,19.6,1.62,0.122,0.62,43,366,94,3,6,15,22,1,43,22,0.282,75,81.95,0.95,0.14,797,2.7,140,0.8
+10141,2023,7,31,6,30,21.1,1.62,0.122,0.62,59,521,181,0,6,15.1,36,3,0,37,0.282,68.39,76.48,0.95,0.14,797,2.7,163,1.2
+10142,2023,7,31,7,0,22.5,1.63,0.116,0.62,71,629,277,0,8,13.3,129,203,0,195,0.282,56.12,70.89,0.95,0.14,797,2.7,186,1.6
+10143,2023,7,31,7,30,23.7,1.63,0.116,0.62,80,702,374,0,8,13.3,210,94,0,249,0.282,52.21,65.24,0.95,0.14,797,2.7,178,1.8
+10144,2023,7,31,8,0,24.9,1.63,0.116,0.62,88,756,471,0,5,11.8,258,137,0,327,0.282,44.04,59.55,0.95,0.14,797,2.8,171,1.9
+10145,2023,7,31,8,30,25.7,1.63,0.116,0.62,95,795,564,0,8,11.8,135,22,0,148,0.282,42,53.87,0.95,0.14,797,2.8,168,2.2
+10146,2023,7,31,9,0,26.5,1.62,0.12,0.62,101,824,650,0,8,11.4,180,12,7,188,0.281,38.84,48.26,0.96,0.14,797,2.8,165,2.4
+10147,2023,7,31,9,30,26.8,1.62,0.12,0.62,106,847,728,0,8,11.4,278,65,0,326,0.281,38.16,42.77,0.96,0.14,797,2.8,168,2.5
+10148,2023,7,31,10,0,27.1,1.6,0.12,0.62,110,866,797,0,8,11.2,252,38,0,282,0.28,36.97,37.5,0.96,0.14,797,2.9,172,2.5
+10149,2023,7,31,10,30,27.2,1.6,0.12,0.62,105,892,857,0,6,11.2,113,1,0,114,0.28,36.76,32.59,0.97,0.14,797,2.9,178,2.5
+10150,2023,7,31,11,0,27.3,1.6,0.082,0.62,97,918,906,0,6,11,61,0,0,61,0.28,36.25,28.27,0.97,0.14,797,2.9,185,2.4
+10151,2023,7,31,11,30,27.2,1.6,0.082,0.62,97,927,938,0,7,11,112,1,0,113,0.28,36.46,24.86,0.97,0.14,797,2.8,194,2.4
+10152,2023,7,31,12,0,27.2,1.62,0.074,0.62,95,934,956,0,8,11.1,86,0,0,86,0.28,36.52,22.79,0.97,0.14,796,2.8,203,2.5
+10153,2023,7,31,12,30,27.1,1.62,0.074,0.62,93,938,960,0,5,11.1,249,12,0,260,0.28,36.73,22.45,0.97,0.14,796,2.8,211,2.5
+10154,2023,7,31,13,0,27.1,1.64,0.066,0.62,91,939,949,0,5,11.2,375,281,0,632,0.28,37.1,23.91,0.97,0.14,796,2.8,218,2.6
+10155,2023,7,31,13,30,27.1,1.64,0.066,0.62,87,940,925,0,0,11.2,137,861,0,905,0.281,37.1,26.88,0.97,0.14,796,2.8,223,2.6
+10156,2023,7,31,14,0,27,1.73,0.052,0.62,81,939,887,0,0,11.4,81,939,0,887,0.281,37.79,30.92,0.97,0.14,796,2.7,229,2.7
+10157,2023,7,31,14,30,26.8,1.73,0.052,0.62,79,929,834,0,0,11.4,79,929,0,834,0.282,38.19,35.64,0.97,0.14,795,2.7,232,2.7
+10158,2023,7,31,15,0,26.5,1.74,0.05,0.62,77,916,770,0,0,11.6,77,916,0,770,0.282,39.58,40.8,0.97,0.14,795,2.7,235,2.6
+10159,2023,7,31,15,30,26.2,1.74,0.05,0.62,73,897,694,0,0,11.6,192,587,0,598,0.282,40.28,46.22,0.97,0.14,795,2.7,238,2.6
+10160,2023,7,31,16,0,25.8,1.73,0.049,0.62,70,874,610,0,5,11.9,242,309,0,433,0.283,42.03,51.8,0.97,0.14,795,2.7,241,2.5
+10161,2023,7,31,16,30,25.4,1.73,0.049,0.62,65,844,519,0,3,11.9,248,237,0,375,0.283,43.04,57.47,0.97,0.14,795,2.7,246,2.3
+10162,2023,7,31,17,0,24.9,1.7,0.047,0.61,60,803,423,0,8,12.2,138,516,11,371,0.283,45.23,63.16,0.97,0.14,795,2.7,251,2
+10163,2023,7,31,17,30,24.3,1.7,0.047,0.61,55,746,324,0,8,12.2,127,402,25,272,0.284,46.87,68.84,0.97,0.14,795,2.7,262,1.7
+10164,2023,7,31,18,0,23.7,1.71,0.046,0.61,47,667,226,0,8,12.9,99,351,36,193,0.284,50.7,74.47,0.97,0.14,795,2.7,272,1.4
+10165,2023,7,31,18,30,22.7,1.71,0.046,0.61,38,542,132,2,8,12.9,74,237,43,115,0.285,53.84,80,0.97,0.14,795,2.7,279,1.1
+10166,2023,7,31,19,0,21.6,1.7,0.05,0.61,26,340,53,4,7,13.2,35,105,64,43,0.285,58.76,85.37,0.97,0.14,795,2.8,286,0.7
+10167,2023,7,31,19,30,21.5,1.7,0.05,0.61,5,51,5,1,8,13.2,5,51,11,5,0.285,59.12,90.31,0.97,0.14,795,2.8,275,0.5
+10168,2023,7,31,20,0,21.3,1.63,0.062,0.61,0,0,0,0,8,13.2,0,0,0,0,0.285,60.07,95.84,0.97,0.14,796,2.9,264,0.3
+10169,2023,7,31,20,30,21.1,1.63,0.062,0.61,0,0,0,0,7,13.2,0,0,0,0,0.285,60.81,100.64,0.97,0.14,796,2.9,252,0.4
+10170,2023,7,31,21,0,20.9,1.6,0.067,0.61,0,0,0,0,9,13.7,0,0,0,0,0.284,63.44,105.14,0.97,0.14,796,2.9,241,0.4
+10171,2023,7,31,21,30,20.5,1.6,0.067,0.61,0,0,0,0,9,13.7,0,0,0,0,0.283,64.93,109.25,0.97,0.14,795,2.9,252,0.5
+10172,2023,7,31,22,0,20,1.62,0.059,0.61,0,0,0,0,9,13.9,0,0,0,0,0.283,67.73,112.89,0.97,0.14,795,2.8,263,0.6
+10173,2023,7,31,22,30,19.5,1.62,0.059,0.61,0,0,0,0,9,13.9,0,0,0,0,0.283,69.85,116,0.96,0.14,795,2.7,254,0.6
+10174,2023,7,31,23,0,18.9,1.63,0.055,0.61,0,0,0,0,6,13.9,0,0,0,0,0.283,72.78,118.47,0.96,0.14,795,2.7,246,0.6
+10175,2023,7,31,23,30,18.6,1.63,0.055,0.61,0,0,0,0,6,13.9,0,0,0,0,0.283,74.15,120.23,0.96,0.14,795,2.7,224,0.8
+10176,2023,8,1,0,0,18.3,1.6,0.061,0.61,0,0,0,0,6,13.9,0,0,0,0,0.283,75.56,121.21,0.96,0.14,795,2.6,202,1
+10177,2023,8,1,0,30,17.9,1.6,0.061,0.61,0,0,0,0,6,13.9,0,0,0,0,0.283,77.47,121.37,0.96,0.14,795,2.7,197,1.3
+10178,2023,8,1,1,0,17.5,1.59,0.068,0.61,0,0,0,0,7,14,0,0,0,0,0.283,80.15,120.7,0.97,0.14,796,2.7,192,1.6
+10179,2023,8,1,1,30,17.2,1.59,0.068,0.61,0,0,0,0,7,14,0,0,0,0,0.284,81.68,119.24,0.97,0.14,796,2.7,190,1.7
+10180,2023,8,1,2,0,16.8,1.58,0.072,0.61,0,0,0,0,7,14.1,0,0,0,0,0.284,83.95,117.03,0.97,0.14,796,2.7,188,1.7
+10181,2023,8,1,2,30,16.5,1.58,0.072,0.61,0,0,0,0,7,14.1,0,0,0,0,0.284,85.56,114.16,0.97,0.14,796,2.7,182,1.6
+10182,2023,8,1,3,0,16.2,1.58,0.075,0.61,0,0,0,0,7,14.1,0,0,0,0,0.284,87.2,110.71,0.97,0.14,796,2.6,177,1.4
+10183,2023,8,1,3,30,15.9,1.58,0.075,0.61,0,0,0,0,7,14.1,0,0,0,0,0.285,88.88,106.77,0.97,0.14,796,2.6,169,1.4
+10184,2023,8,1,4,0,15.6,1.57,0.076,0.61,0,0,0,0,7,14,0,0,0,0,0.285,90.41,102.42,0.97,0.14,796,2.6,162,1.3
+10185,2023,8,1,4,30,15.5,1.57,0.076,0.61,0,0,0,0,8,14,0,0,0,0,0.285,90.99,97.72,0.97,0.14,796,2.6,155,1.4
+10186,2023,8,1,5,0,15.5,1.56,0.079,0.61,0,0,0,1,8,14,0,0,14,0,0.285,91.01,92.75,0.97,0.14,796,2.7,149,1.5
+10187,2023,8,1,5,30,16.2,1.56,0.079,0.61,18,167,26,7,8,14,7,0,100,7,0.285,87.04,87.36,0.97,0.14,796,2.7,152,1.8
+10188,2023,8,1,6,0,16.9,1.53,0.084,0.61,39,411,95,3,4,13.8,9,0,43,9,0.285,81.94,82.1,0.97,0.14,796,2.7,156,2.1
+10189,2023,8,1,6,30,18.3,1.53,0.084,0.61,54,560,183,0,4,13.8,11,0,0,11,0.285,75.13,76.63,0.97,0.14,797,2.7,173,2.3
+10190,2023,8,1,7,0,19.6,1.5,0.091,0.61,65,655,278,0,5,12.8,45,1,0,45,0.285,64.82,71.04,0.97,0.14,797,2.8,190,2.4
+10191,2023,8,1,7,30,20.4,1.5,0.091,0.61,74,723,375,0,5,12.8,95,2,0,96,0.285,61.7,65.38,0.98,0.14,797,2.8,200,2.6
+10192,2023,8,1,8,0,21.2,1.48,0.097,0.61,82,772,472,0,5,12.3,169,15,0,177,0.284,56.93,59.69,0.98,0.14,797,2.8,209,2.8
+10193,2023,8,1,8,30,21.5,1.48,0.097,0.61,89,808,564,0,8,12.3,251,64,0,289,0.284,55.9,54.01,0.98,0.14,797,2.9,215,3.1
+10194,2023,8,1,9,0,21.8,1.46,0.104,0.61,96,834,650,0,8,12.4,298,242,0,459,0.283,55.15,48.4,0.98,0.14,797,2.9,220,3.3
+10195,2023,8,1,9,30,22.1,1.46,0.104,0.61,101,856,728,0,8,12.4,238,528,0,625,0.282,54.15,42.92,0.98,0.14,797,2.9,221,3.5
+10196,2023,8,1,10,0,22.3,1.44,0.109,0.61,106,870,795,0,8,12.6,234,589,0,700,0.282,54.04,37.66,0.98,0.14,797,3,223,3.6
+10197,2023,8,1,10,30,22.3,1.44,0.109,0.61,106,888,853,1,8,12.6,264,486,18,673,0.281,54.04,32.77,0.98,0.14,797,3,223,3.6
+10198,2023,8,1,11,0,22.3,1.42,0.096,0.61,105,903,899,1,8,12.7,375,184,11,537,0.28,54.39,28.47,0.99,0.14,797,3,223,3.5
+10199,2023,8,1,11,30,22.3,1.42,0.096,0.61,107,909,930,0,8,12.7,397,173,0,554,0.28,54.39,25.08,0.99,0.14,797,3,222,3.3
+10200,2023,8,1,12,0,22.3,1.39,0.098,0.61,108,911,946,0,8,12.7,339,408,0,714,0.279,54.46,23.03,0.99,0.14,797,3,221,3.2
+10201,2023,8,1,12,30,22.3,1.39,0.098,0.61,108,913,950,0,8,12.7,353,360,4,685,0.279,54.46,22.7,0.99,0.14,797,3,219,3
+10202,2023,8,1,13,0,22.3,1.39,0.093,0.61,105,913,938,0,8,12.6,360,342,0,672,0.279,54.09,24.16,0.99,0.14,796,3,217,2.8
+10203,2023,8,1,13,30,22.4,1.39,0.093,0.61,100,914,914,0,8,12.6,264,565,0,767,0.279,53.76,27.11,0.99,0.14,796,3,215,2.7
+10204,2023,8,1,14,0,22.6,1.41,0.074,0.61,93,915,876,0,8,12.4,266,457,0,657,0.279,52.48,31.12,0.99,0.14,796,3,213,2.6
+10205,2023,8,1,14,30,22.8,1.41,0.074,0.61,90,905,824,0,0,12.4,118,788,0,757,0.279,51.85,35.83,0.99,0.14,796,3,215,2.6
+10206,2023,8,1,15,0,22.9,1.42,0.068,0.61,86,893,760,0,0,12.2,107,852,0,750,0.279,50.92,40.98,0.99,0.14,796,3,218,2.5
+10207,2023,8,1,15,30,22.8,1.42,0.068,0.61,81,875,685,0,0,12.2,94,854,0,683,0.279,51.23,46.39,0.99,0.14,796,3,222,2.4
+10208,2023,8,1,16,0,22.7,1.43,0.065,0.61,76,852,601,0,8,12.1,177,601,0,547,0.28,51.22,51.97,0.99,0.14,796,2.9,227,2.4
+10209,2023,8,1,16,30,22.3,1.43,0.065,0.61,72,819,510,0,8,12.1,155,581,29,466,0.28,52.41,57.63,0.99,0.14,795,2.9,233,2.2
+10210,2023,8,1,17,0,22,1.44,0.064,0.61,66,775,414,0,0,12.1,117,418,7,305,0.28,53.41,63.33,0.99,0.14,795,2.9,239,2
+10211,2023,8,1,17,30,21.4,1.44,0.064,0.61,60,715,316,0,3,12.1,133,148,4,186,0.28,55.4,69.01,0.98,0.14,795,2.9,249,1.7
+10212,2023,8,1,18,0,20.9,1.45,0.063,0.61,51,631,218,0,3,13,96,333,21,184,0.28,60.69,74.64,0.98,0.14,796,2.9,259,1.4
+10213,2023,8,1,18,30,20.2,1.45,0.063,0.61,40,503,126,2,8,13,71,108,32,89,0.28,63.35,80.17,0.98,0.14,796,2.9,277,1.1
+10214,2023,8,1,19,0,19.5,1.46,0.062,0.61,26,299,49,7,8,13.4,36,13,100,37,0.28,67.87,85.54,0.98,0.14,796,2.9,295,0.9
+10215,2023,8,1,19,30,19.1,1.46,0.062,0.61,5,40,4,3,8,13.4,3,0,43,3,0.28,69.57,90.95,0.98,0.14,796,2.9,311,0.9
+10216,2023,8,1,20,0,18.8,1.48,0.06,0.61,0,0,0,0,8,13.5,0,0,0,0,0.281,71.23,96.03,0.98,0.14,796,2.9,328,0.9
+10217,2023,8,1,20,30,18.4,1.48,0.06,0.61,0,0,0,0,8,13.5,0,0,0,0,0.281,73.03,100.84,0.98,0.14,796,2.8,338,0.8
+10218,2023,8,1,21,0,18.1,1.51,0.059,0.61,0,0,0,0,3,13.7,0,0,0,0,0.28,75.58,105.35,0.97,0.14,796,2.8,348,0.7
+10219,2023,8,1,21,30,17.7,1.51,0.059,0.61,0,0,0,0,4,13.7,0,0,0,0,0.28,77.5,109.47,0.97,0.14,796,2.8,177,0.6
+10220,2023,8,1,22,0,17.4,1.53,0.057,0.61,0,0,0,0,4,14,0,0,0,0,0.28,80.22,113.12,0.97,0.14,796,2.8,6,0.6
+10221,2023,8,1,22,30,17.1,1.53,0.057,0.61,0,0,0,0,8,14,0,0,0,0,0.28,81.75,116.24,0.97,0.14,796,2.8,11,0.5
+10222,2023,8,1,23,0,16.7,1.53,0.058,0.61,0,0,0,0,8,13.8,0,0,0,0,0.281,83.07,118.72,0.97,0.14,796,2.8,17,0.5
+10223,2023,8,1,23,30,16.5,1.53,0.058,0.61,0,0,0,0,7,13.8,0,0,0,0,0.281,84.13,120.48,0.97,0.14,796,2.8,15,0.4
+10224,2023,8,2,0,0,16.3,1.53,0.062,0.61,0,0,0,0,7,13.6,0,0,0,0,0.281,83.99,121.46,0.97,0.14,795,2.8,14,0.4
+10225,2023,8,2,0,30,16.1,1.53,0.062,0.61,0,0,0,0,7,13.6,0,0,0,0,0.281,85.06,121.62,0.97,0.14,795,2.8,185,0.4
+10226,2023,8,2,1,0,16,1.51,0.069,0.61,0,0,0,0,7,13.5,0,0,0,0,0.281,85.04,120.95,0.96,0.14,795,2.8,357,0.4
+10227,2023,8,2,1,30,15.8,1.51,0.069,0.61,0,0,0,0,7,13.5,0,0,0,0,0.281,86.13,119.48,0.96,0.14,795,2.8,356,0.3
+10228,2023,8,2,2,0,15.7,1.5,0.075,0.61,0,0,0,0,8,13.4,0,0,0,0,0.281,86.23,117.26,0.96,0.14,795,2.8,354,0.3
+10229,2023,8,2,2,30,15.5,1.5,0.075,0.61,0,0,0,0,3,13.4,0,0,0,0,0.282,87.34,114.38,0.96,0.14,795,2.8,268,0.2
+10230,2023,8,2,3,0,15.4,1.49,0.08,0.61,0,0,0,0,3,13.3,0,0,0,0,0.282,87.44,110.92,0.96,0.14,795,2.8,183,0.1
+10231,2023,8,2,3,30,15.1,1.49,0.08,0.61,0,0,0,0,0,13.3,0,0,0,0,0.282,89.13,106.97,0.96,0.14,795,2.7,179,0.3
+10232,2023,8,2,4,0,14.8,1.5,0.082,0.61,0,0,0,0,3,13.3,0,0,0,0,0.282,90.52,102.6,0.96,0.14,795,2.7,175,0.4
+10233,2023,8,2,4,30,14.7,1.5,0.082,0.61,0,0,0,0,0,13.3,0,0,0,0,0.282,91.22,97.9,0.96,0.14,796,2.7,173,0.6
+10234,2023,8,2,5,0,14.7,1.5,0.081,0.61,0,0,0,0,3,13.4,0,0,4,0,0.283,92.08,92.92,0.96,0.14,796,2.7,171,0.7
+10235,2023,8,2,5,30,15.6,1.5,0.081,0.61,18,160,25,0,0,13.4,17,152,7,24,0.283,86.92,87.51,0.95,0.14,796,2.7,170,1.3
+10236,2023,8,2,6,0,16.6,1.5,0.078,0.61,38,416,94,0,0,13.6,41,351,0,88,0.283,82.64,82.25,0.95,0.14,796,2.6,169,1.9
+10237,2023,8,2,6,30,17.9,1.5,0.078,0.61,51,573,182,0,0,13.6,72,412,0,166,0.283,76.14,76.77,0.95,0.14,796,2.6,177,2.3
+10238,2023,8,2,7,0,19.2,1.51,0.075,0.61,60,678,279,0,0,13.1,78,588,0,268,0.283,67.76,71.18,0.95,0.14,796,2.6,185,2.8
+10239,2023,8,2,7,30,20.6,1.51,0.075,0.61,68,749,378,0,0,13.1,68,749,0,378,0.283,62.15,65.52,0.95,0.14,796,2.6,194,3.2
+10240,2023,8,2,8,0,21.9,1.5,0.073,0.61,74,802,477,0,0,11.9,91,758,0,472,0.283,53.14,59.83,0.95,0.14,796,2.5,204,3.6
+10241,2023,8,2,8,30,22.9,1.5,0.073,0.61,79,839,570,0,0,11.9,79,839,0,570,0.282,50.02,54.15,0.95,0.14,796,2.5,209,3.9
+10242,2023,8,2,9,0,23.8,1.48,0.075,0.61,84,867,658,0,0,11.2,84,867,0,658,0.281,45.1,48.55,0.95,0.14,796,2.5,215,4.2
+10243,2023,8,2,9,30,24.5,1.48,0.075,0.61,89,887,737,0,0,11.2,89,887,0,737,0.28,43.25,43.07,0.96,0.14,796,2.5,217,4.4
+10244,2023,8,2,10,0,25.2,1.44,0.082,0.61,94,902,806,0,0,10.8,94,902,0,806,0.28,40.48,37.83,0.96,0.14,796,2.5,219,4.5
+10245,2023,8,2,10,30,25.6,1.44,0.082,0.61,91,922,865,0,0,10.8,102,906,0,862,0.279,39.49,32.96,0.96,0.14,795,2.5,220,4.6
+10246,2023,8,2,11,0,26.1,1.43,0.062,0.61,88,940,913,0,0,10.6,127,855,0,877,0.278,37.92,28.68,0.96,0.14,795,2.5,220,4.7
+10247,2023,8,2,11,30,26.3,1.43,0.062,0.61,90,946,945,0,0,10.6,168,802,0,893,0.278,37.48,25.31,0.96,0.14,795,2.5,220,4.6
+10248,2023,8,2,12,0,26.6,1.44,0.061,0.61,88,951,962,0,0,10.5,150,818,0,901,0.277,36.48,23.28,0.96,0.14,795,2.5,220,4.6
+10249,2023,8,2,12,30,26.8,1.44,0.061,0.61,88,954,966,0,0,10.5,130,881,0,941,0.277,36.05,22.96,0.96,0.14,795,2.4,219,4.5
+10250,2023,8,2,13,0,27,1.48,0.055,0.61,86,955,956,0,0,10.4,256,554,0,761,0.277,35.27,24.4,0.96,0.14,794,2.4,219,4.5
+10251,2023,8,2,13,30,27,1.48,0.055,0.61,82,956,931,0,7,10.4,337,155,0,475,0.276,35.27,27.34,0.96,0.14,794,2.3,219,4.2
+10252,2023,8,2,14,0,27.1,1.55,0.043,0.61,77,955,893,0,7,10.1,180,1,0,181,0.276,34.51,31.33,0.96,0.14,794,2.3,219,4
+10253,2023,8,2,14,30,27.1,1.55,0.043,0.61,74,948,841,0,7,10.1,177,2,0,179,0.275,34.51,36.03,0.96,0.14,794,2.2,218,3.8
+10254,2023,8,2,15,0,27.1,1.58,0.039,0.61,71,938,777,0,7,9.7,255,380,14,541,0.275,33.49,41.16,0.96,0.14,794,2.1,218,3.6
+10255,2023,8,2,15,30,26.8,1.58,0.039,0.61,68,921,701,0,0,9.7,84,888,7,694,0.276,34.09,46.57,0.96,0.14,794,2.1,219,3.4
+10256,2023,8,2,16,0,26.6,1.58,0.037,0.61,65,900,617,0,0,9.2,65,900,0,617,0.276,33.47,52.14,0.95,0.14,793,2.1,220,3.2
+10257,2023,8,2,16,30,26.1,1.58,0.037,0.61,61,868,524,0,0,9.2,61,868,0,524,0.277,34.47,57.8,0.95,0.14,793,2.1,223,3
+10258,2023,8,2,17,0,25.7,1.56,0.039,0.61,57,825,425,0,0,8.9,57,825,0,425,0.278,34.61,63.5,0.95,0.14,793,2.1,226,2.8
+10259,2023,8,2,17,30,24.7,1.56,0.039,0.61,52,766,324,0,0,8.9,80,662,4,315,0.279,36.72,69.18,0.95,0.14,793,2.1,233,2
+10260,2023,8,2,18,0,23.7,1.53,0.042,0.61,46,680,224,0,8,11.4,84,432,21,197,0.28,45.97,74.81,0.95,0.14,794,2.2,241,1.3
+10261,2023,8,2,18,30,22.5,1.53,0.042,0.61,37,550,129,2,8,11.4,70,191,46,102,0.281,49.41,80.35,0.95,0.14,794,2.2,268,1
+10262,2023,8,2,19,0,21.3,1.48,0.046,0.61,24,334,49,7,7,12.5,26,2,100,26,0.282,57.09,85.72,0.95,0.14,794,2.2,294,0.6
+10263,2023,8,2,19,30,21,1.48,0.046,0.61,4,27,3,3,7,12.5,1,0,43,1,0.282,58.15,91.14,0.95,0.14,794,2.3,149,0.6
+10264,2023,8,2,20,0,20.6,1.43,0.052,0.61,0,0,0,0,7,11.8,0,0,0,0,0.282,57.23,96.22,0.96,0.14,794,2.3,3,0.5
+10265,2023,8,2,20,30,20.1,1.43,0.052,0.61,0,0,0,0,7,11.8,0,0,0,0,0.282,59.02,101.05,0.96,0.14,794,2.3,32,0.6
+10266,2023,8,2,21,0,19.6,1.41,0.055,0.61,0,0,0,0,7,12,0,0,0,0,0.282,61.46,105.56,0.96,0.14,794,2.3,61,0.7
+10267,2023,8,2,21,30,19.1,1.41,0.055,0.61,0,0,0,0,5,12,0,0,0,0,0.283,63.39,109.69,0.96,0.14,794,2.3,78,0.7
+10268,2023,8,2,22,0,18.6,1.41,0.057,0.61,0,0,0,0,5,11.9,0,0,0,0,0.283,65.09,113.36,0.96,0.14,794,2.3,95,0.8
+10269,2023,8,2,22,30,18.3,1.41,0.057,0.61,0,0,0,0,7,11.9,0,0,0,0,0.283,66.32,116.48,0.96,0.14,794,2.3,113,0.9
+10270,2023,8,2,23,0,18,1.39,0.058,0.61,0,0,0,0,7,11.8,0,0,0,0,0.283,66.92,118.97,0.96,0.14,794,2.3,131,0.9
+10271,2023,8,2,23,30,17.8,1.39,0.058,0.61,0,0,0,0,5,11.8,0,0,0,0,0.283,67.76,120.74,0.96,0.14,794,2.4,148,1
+10272,2023,8,3,0,0,17.5,1.37,0.06,0.61,0,0,0,0,3,11.7,0,0,0,0,0.283,68.64,121.72,0.96,0.14,794,2.4,166,1.1
+10273,2023,8,3,0,30,17.3,1.37,0.06,0.61,0,0,0,0,0,11.7,0,0,0,0,0.283,69.43,121.88,0.96,0.14,793,2.4,177,1.4
+10274,2023,8,3,1,0,17.1,1.34,0.06,0.61,0,0,0,0,8,11.5,0,0,0,0,0.282,69.44,121.2,0.96,0.14,793,2.4,188,1.6
+10275,2023,8,3,1,30,16.8,1.34,0.06,0.61,0,0,0,0,8,11.5,0,0,0,0,0.282,70.76,119.72,0.96,0.14,793,2.4,190,1.7
+10276,2023,8,3,2,0,16.5,1.34,0.055,0.61,0,0,0,0,8,11.4,0,0,0,0,0.282,71.71,117.5,0.96,0.14,794,2.4,193,1.8
+10277,2023,8,3,2,30,15.9,1.34,0.055,0.61,0,0,0,0,7,11.4,0,0,0,0,0.282,74.5,114.6,0.96,0.14,794,2.4,193,1.8
+10278,2023,8,3,3,0,15.3,1.38,0.05,0.61,0,0,0,0,7,11.3,0,0,0,0,0.283,76.82,111.13,0.95,0.14,794,2.3,193,1.7
+10279,2023,8,3,3,30,14.8,1.38,0.05,0.61,0,0,0,0,4,11.3,0,0,0,0,0.283,79.32,107.17,0.95,0.14,794,2.3,193,1.7
+10280,2023,8,3,4,0,14.2,1.4,0.052,0.61,0,0,0,0,0,11.2,0,0,0,0,0.284,82.04,102.79,0.95,0.14,794,2.3,193,1.6
+10281,2023,8,3,4,30,14.2,1.4,0.052,0.61,0,0,0,0,0,11.2,0,0,0,0,0.284,82.04,98.08,0.95,0.14,794,2.3,193,1.8
+10282,2023,8,3,5,0,14.1,1.39,0.058,0.61,0,0,0,0,0,11.3,0,0,0,0,0.284,82.99,93.09,0.95,0.14,794,2.3,192,2
+10283,2023,8,3,5,30,15.1,1.39,0.058,0.61,17,175,24,4,0,11.3,10,37,50,12,0.284,77.82,87.67,0.95,0.14,794,2.3,195,2.6
+10284,2023,8,3,6,0,16.1,1.38,0.064,0.61,36,439,94,3,3,11.4,38,143,39,57,0.285,73.46,82.4,0.95,0.14,794,2.3,198,3.1
+10285,2023,8,3,6,30,17.4,1.38,0.064,0.61,48,596,183,0,4,11.4,53,2,0,53,0.285,67.75,76.92,0.95,0.14,795,2.3,204,3.8
+10286,2023,8,3,7,0,18.7,1.39,0.064,0.61,58,697,281,0,3,10.7,128,91,0,157,0.285,59.54,71.32,0.95,0.14,795,2.3,211,4.4
+10287,2023,8,3,7,30,19.5,1.39,0.064,0.61,65,765,380,0,4,10.7,138,10,0,142,0.285,56.65,65.66,0.95,0.14,795,2.2,213,4.8
+10288,2023,8,3,8,0,20.4,1.4,0.068,0.61,72,814,479,0,4,10,141,1,0,142,0.286,51.37,59.97,0.95,0.14,795,2.2,215,5.2
+10289,2023,8,3,8,30,21.1,1.4,0.068,0.61,77,851,574,0,4,10,136,3,0,138,0.286,49.21,54.3,0.95,0.14,795,2.2,217,5.4
+10290,2023,8,3,9,0,21.7,1.41,0.072,0.61,83,878,662,0,4,9.8,218,169,0,330,0.286,46.65,48.7,0.95,0.14,795,2.1,218,5.6
+10291,2023,8,3,9,30,22.4,1.41,0.072,0.61,87,900,743,0,3,9.8,213,61,0,257,0.286,44.71,43.23,0.95,0.14,795,2.1,220,5.8
+10292,2023,8,3,10,0,23.1,1.42,0.073,0.61,90,918,813,0,3,9.5,293,47,0,330,0.286,42.13,38,0.95,0.14,795,2.1,222,5.9
+10293,2023,8,3,10,30,23.7,1.42,0.073,0.61,90,935,873,0,3,9.5,297,57,0,345,0.287,40.64,33.14,0.95,0.14,795,2.1,224,6.1
+10294,2023,8,3,11,0,24.3,1.4,0.06,0.61,87,951,920,0,3,9.1,248,20,0,266,0.287,38.14,28.88,0.95,0.14,794,2.1,226,6.2
+10295,2023,8,3,11,30,24.6,1.4,0.06,0.61,88,956,951,0,3,9.1,280,78,0,350,0.287,37.46,25.54,0.95,0.14,794,2.1,228,6.3
+10296,2023,8,3,12,0,24.9,1.43,0.063,0.61,90,958,968,0,3,8.6,320,177,0,482,0.287,35.58,23.54,0.95,0.14,794,2.1,230,6.4
+10297,2023,8,3,12,30,25.1,1.43,0.063,0.61,91,956,970,0,3,8.6,407,194,0,585,0.287,35.16,23.22,0.95,0.14,794,2.1,231,6.4
+10298,2023,8,3,13,0,25.2,1.46,0.07,0.61,94,950,957,0,3,8.3,380,405,0,748,0.286,34.12,24.66,0.95,0.14,794,2.1,232,6.4
+10299,2023,8,3,13,30,25.3,1.46,0.07,0.61,95,941,929,0,0,8.3,219,686,0,827,0.286,33.92,27.57,0.95,0.14,794,2.1,234,6.3
+10300,2023,8,3,14,0,25.4,1.48,0.079,0.61,95,929,887,0,0,7.9,143,846,0,864,0.286,32.97,31.55,0.96,0.14,794,2.1,235,6.3
+10301,2023,8,3,14,30,25.5,1.48,0.079,0.61,93,918,834,0,0,7.9,117,872,0,820,0.286,32.77,36.23,0.96,0.14,794,2.1,237,6.2
+10302,2023,8,3,15,0,25.5,1.5,0.078,0.61,90,904,769,0,0,7.5,90,904,0,769,0.286,31.87,41.35,0.96,0.14,793,2.1,239,6.2
+10303,2023,8,3,15,30,25.3,1.5,0.078,0.61,86,885,692,0,0,7.5,95,864,0,687,0.287,32.25,46.75,0.95,0.14,793,2.1,241,5.9
+10304,2023,8,3,16,0,25.2,1.52,0.074,0.61,81,861,607,0,0,7.2,89,839,0,602,0.287,31.65,52.32,0.95,0.14,793,2,244,5.7
+10305,2023,8,3,16,30,24.8,1.52,0.074,0.61,74,831,515,0,0,7.2,74,831,0,515,0.287,32.41,57.97,0.95,0.14,793,2,246,5.4
+10306,2023,8,3,17,0,24.4,1.56,0.067,0.61,67,791,418,0,0,6.8,67,791,0,418,0.288,32.36,63.67,0.95,0.14,793,2,249,5
+10307,2023,8,3,17,30,23.5,1.56,0.067,0.61,60,735,319,0,0,6.8,60,735,0,319,0.289,34.15,69.35,0.94,0.14,793,1.9,250,3.9
+10308,2023,8,3,18,0,22.5,1.61,0.061,0.61,51,654,220,0,0,8,51,654,0,220,0.289,39.39,74.99,0.94,0.14,793,1.9,252,2.8
+10309,2023,8,3,18,30,20.6,1.61,0.061,0.61,39,528,126,0,0,8,39,528,0,126,0.29,44.23,80.53,0.94,0.14,793,1.8,254,2
+10310,2023,8,3,19,0,18.7,1.65,0.056,0.61,24,321,47,2,0,10.2,26,242,36,43,0.291,57.59,85.9,0.93,0.14,793,1.8,255,1.2
+10311,2023,8,3,19,30,18.1,1.65,0.056,0.61,3,25,2,2,8,10.2,1,0,29,1,0.291,59.86,91.34,0.93,0.14,794,1.7,264,1.1
+10312,2023,8,3,20,0,17.5,1.65,0.054,0.61,0,0,0,0,8,9.9,0,0,0,0,0.292,61.18,96.43,0.93,0.14,794,1.7,272,1
+10313,2023,8,3,20,30,16.9,1.65,0.054,0.61,0,0,0,0,8,9.9,0,0,0,0,0.292,63.54,101.26,0.93,0.14,794,1.7,285,1
+10314,2023,8,3,21,0,16.4,1.66,0.055,0.61,0,0,0,0,5,9.8,0,0,0,0,0.292,64.99,105.78,0.93,0.14,794,1.7,298,1
+10315,2023,8,3,21,30,15.9,1.66,0.055,0.61,0,0,0,0,4,9.8,0,0,0,0,0.291,67.09,109.92,0.93,0.14,794,1.7,308,1
+10316,2023,8,3,22,0,15.4,1.66,0.057,0.61,0,0,0,0,4,9.7,0,0,0,0,0.29,68.59,113.6,0.93,0.14,795,1.7,318,1
+10317,2023,8,3,22,30,15.1,1.66,0.057,0.61,0,0,0,0,4,9.7,0,0,0,0,0.289,69.92,116.73,0.94,0.14,795,1.8,327,1
+10318,2023,8,3,23,0,14.8,1.66,0.063,0.61,0,0,0,0,4,9.5,0,0,0,0,0.288,70.36,119.22,0.94,0.14,795,1.8,336,1
+10319,2023,8,3,23,30,14.5,1.66,0.063,0.61,0,0,0,0,0,9.5,0,0,0,0,0.287,71.73,121,0.94,0.14,795,1.8,344,0.9
+10320,2023,8,4,0,0,14.2,1.63,0.071,0.61,0,0,0,0,0,9.4,0,0,0,0,0.286,72.87,121.98,0.95,0.14,795,1.9,352,0.8
+10321,2023,8,4,0,30,13.9,1.63,0.071,0.61,0,0,0,0,0,9.4,0,0,0,0,0.287,74.3,122.14,0.95,0.14,795,1.9,182,0.7
+10322,2023,8,4,1,0,13.6,1.63,0.073,0.61,0,0,0,0,0,9.6,0,0,0,0,0.287,76.67,121.46,0.95,0.14,795,1.9,11,0.6
+10323,2023,8,4,1,30,13.2,1.63,0.073,0.61,0,0,0,0,0,9.6,0,0,0,0,0.288,78.68,119.97,0.94,0.14,795,1.9,33,0.6
+10324,2023,8,4,2,0,12.8,1.65,0.07,0.61,0,0,0,0,0,9.7,0,0,0,0,0.289,81.42,117.73,0.94,0.14,795,1.9,55,0.6
+10325,2023,8,4,2,30,12.3,1.65,0.07,0.61,0,0,0,0,0,9.7,0,0,0,0,0.29,84.13,114.83,0.94,0.14,795,1.9,73,0.7
+10326,2023,8,4,3,0,11.9,1.66,0.067,0.61,0,0,0,0,0,9.7,0,0,0,0,0.29,86.6,111.34,0.94,0.14,795,1.8,91,0.8
+10327,2023,8,4,3,30,11.6,1.66,0.067,0.61,0,0,0,0,0,9.7,0,0,0,0,0.291,88.33,107.37,0.94,0.14,795,1.8,102,0.8
+10328,2023,8,4,4,0,11.4,1.66,0.065,0.61,0,0,0,0,0,9.7,0,0,0,0,0.291,89.17,102.98,0.94,0.14,795,1.8,113,0.8
+10329,2023,8,4,4,30,11.6,1.66,0.065,0.61,0,0,0,0,0,9.7,0,0,0,0,0.292,88,98.26,0.94,0.14,795,1.7,120,0.8
+10330,2023,8,4,5,0,11.8,1.67,0.062,0.61,0,0,0,0,0,9.7,0,0,0,0,0.292,87.25,93.26,0.94,0.14,795,1.7,127,0.8
+10331,2023,8,4,5,30,13.4,1.67,0.062,0.61,17,187,24,0,0,9.8,17,187,0,24,0.293,78.58,87.82,0.94,0.14,795,1.7,135,1.1
+10332,2023,8,4,6,0,15,1.68,0.059,0.61,35,464,95,0,0,9.9,35,464,0,95,0.293,71.68,82.55,0.94,0.14,795,1.7,143,1.5
+10333,2023,8,4,6,30,16.7,1.68,0.059,0.61,47,623,186,0,0,9.9,47,623,0,186,0.294,64.32,77.07,0.94,0.14,795,1.6,161,1.6
+10334,2023,8,4,7,0,18.5,1.68,0.057,0.61,55,725,285,0,0,8.9,55,725,0,285,0.294,53.65,71.47,0.94,0.14,795,1.6,179,1.8
+10335,2023,8,4,7,30,20,1.68,0.057,0.61,62,794,387,0,0,8.9,62,794,0,387,0.294,48.88,65.8,0.94,0.14,795,1.6,197,2.2
+10336,2023,8,4,8,0,21.5,1.68,0.056,0.61,67,845,488,0,0,7.5,67,845,0,488,0.294,40.46,60.11,0.93,0.14,795,1.6,216,2.6
+10337,2023,8,4,8,30,22.5,1.68,0.056,0.61,70,883,584,0,0,7.5,70,883,0,584,0.294,38.08,54.44,0.93,0.14,795,1.6,223,3.1
+10338,2023,8,4,9,0,23.6,1.67,0.054,0.61,74,912,674,0,0,6.5,74,912,0,674,0.294,33.37,48.85,0.93,0.14,795,1.6,231,3.6
+10339,2023,8,4,9,30,24.4,1.67,0.054,0.61,76,934,755,0,0,6.5,76,934,0,755,0.294,31.81,43.39,0.93,0.14,795,1.5,234,4
+10340,2023,8,4,10,0,25.2,1.66,0.052,0.61,79,951,827,0,0,5.8,79,951,0,827,0.294,28.81,38.17,0.94,0.14,795,1.5,237,4.4
+10341,2023,8,4,10,30,25.9,1.66,0.052,0.61,81,964,886,0,0,5.8,81,964,0,886,0.294,27.65,33.33,0.94,0.14,795,1.5,238,4.6
+10342,2023,8,4,11,0,26.5,1.69,0.047,0.61,80,975,932,0,0,5.3,80,975,0,932,0.294,25.75,29.1,0.94,0.14,795,1.5,239,4.8
+10343,2023,8,4,11,30,27,1.69,0.047,0.61,82,980,964,0,0,5.3,82,980,0,964,0.294,24.98,25.78,0.94,0.14,794,1.5,239,4.9
+10344,2023,8,4,12,0,27.5,1.69,0.049,0.61,82,982,981,0,0,4.9,82,982,0,981,0.295,23.63,23.79,0.95,0.14,794,1.6,240,4.9
+10345,2023,8,4,12,30,27.8,1.69,0.049,0.61,84,980,983,0,0,4.9,84,980,0,983,0.296,23.22,23.48,0.95,0.14,794,1.6,240,4.8
+10346,2023,8,4,13,0,28,1.68,0.054,0.61,85,975,969,0,0,4.6,153,814,0,891,0.296,22.43,24.92,0.95,0.14,794,1.6,240,4.7
+10347,2023,8,4,13,30,28.2,1.68,0.054,0.61,86,967,941,0,0,4.6,97,938,0,927,0.297,22.14,27.82,0.96,0.14,793,1.6,240,4.5
+10348,2023,8,4,14,0,28.3,1.65,0.059,0.61,85,957,899,0,0,4.4,164,751,0,802,0.298,21.72,31.78,0.96,0.14,793,1.7,241,4.4
+10349,2023,8,4,14,30,28.2,1.65,0.059,0.61,87,940,843,0,0,4.4,87,940,0,843,0.298,21.85,36.44,0.96,0.14,793,1.7,243,4.2
+10350,2023,8,4,15,0,28.1,1.6,0.071,0.61,87,918,774,0,0,4.4,144,804,0,746,0.298,21.95,41.55,0.97,0.14,793,1.7,245,3.9
+10351,2023,8,4,15,30,27.7,1.6,0.071,0.61,86,892,695,0,0,4.4,125,798,0,670,0.299,22.47,46.94,0.97,0.14,793,1.8,249,3.6
+10352,2023,8,4,16,0,27.4,1.57,0.084,0.61,85,856,606,0,0,4.5,138,736,0,586,0.299,23.1,52.5,0.97,0.14,793,1.8,253,3.3
+10353,2023,8,4,16,30,26.7,1.57,0.084,0.61,81,814,511,0,8,4.5,176,545,0,464,0.3,24.07,58.15,0.98,0.14,793,1.9,264,2.9
+10354,2023,8,4,17,0,26.1,1.53,0.096,0.61,78,756,411,0,8,4.8,154,305,7,288,0.3,25.44,63.85,0.98,0.14,793,1.9,274,2.6
+10355,2023,8,4,17,30,24.9,1.53,0.096,0.61,70,686,310,0,3,4.8,109,502,29,285,0.301,27.31,69.53,0.98,0.14,793,1.9,294,2
+10356,2023,8,4,18,0,23.8,1.53,0.1,0.61,60,588,210,0,0,7,64,570,7,210,0.302,34.01,75.17,0.98,0.14,794,1.9,315,1.5
+10357,2023,8,4,18,30,22.3,1.53,0.1,0.61,45,455,118,0,0,7,45,455,0,118,0.303,37.23,80.71,0.97,0.14,794,1.9,161,1.3
+10358,2023,8,4,19,0,20.8,1.57,0.089,0.61,26,250,43,0,0,8.4,26,250,0,43,0.304,45.03,86.09,0.97,0.14,794,1.9,6,1.1
+10359,2023,8,4,19,30,20.2,1.57,0.089,0.61,2,16,2,0,0,8.4,2,16,0,2,0.304,46.72,91.54,0.96,0.14,794,1.9,18,1.4
+10360,2023,8,4,20,0,19.5,1.62,0.075,0.61,0,0,0,0,0,7.6,0,0,0,0,0.304,46.06,96.64,0.96,0.14,795,1.9,30,1.7
+10361,2023,8,4,20,30,18.8,1.62,0.075,0.61,0,0,0,0,0,7.6,0,0,0,0,0.304,48.11,101.48,0.96,0.14,795,1.9,31,1.9
+10362,2023,8,4,21,0,18.2,1.65,0.07,0.61,0,0,0,0,0,7.1,0,0,0,0,0.304,48.44,106.01,0.95,0.14,795,1.9,32,2.1
+10363,2023,8,4,21,30,17.5,1.65,0.07,0.61,0,0,0,0,0,7.1,0,0,0,0,0.305,50.61,110.16,0.95,0.14,795,1.9,32,2.1
+10364,2023,8,4,22,0,16.9,1.65,0.07,0.61,0,0,0,0,0,7,0,0,0,0,0.305,52.1,113.84,0.95,0.14,795,1.9,32,2.1
+10365,2023,8,4,22,30,16.5,1.65,0.07,0.61,0,0,0,0,0,7,0,0,0,0,0.305,53.44,116.98,0.95,0.14,795,1.9,34,2.1
+10366,2023,8,4,23,0,16,1.64,0.072,0.61,0,0,0,0,0,7,0,0,0,0,0.305,55.14,119.49,0.95,0.14,795,1.9,35,2
+10367,2023,8,4,23,30,15.5,1.64,0.072,0.61,0,0,0,0,0,7,0,0,0,0,0.306,56.93,121.27,0.95,0.14,795,1.9,37,2
+10368,2023,8,5,0,0,15,1.64,0.07,0.61,0,0,0,0,0,7.1,0,0,0,0,0.306,59.3,122.25,0.95,0.14,795,1.9,39,1.9
+10369,2023,8,5,0,30,14.6,1.64,0.07,0.61,0,0,0,0,0,7.1,0,0,0,0,0.306,60.85,122.41,0.94,0.14,795,1.9,42,1.8
+10370,2023,8,5,1,0,14.1,1.63,0.07,0.61,0,0,0,0,0,7.4,0,0,0,0,0.306,63.87,121.72,0.94,0.14,795,1.9,45,1.8
+10371,2023,8,5,1,30,13.7,1.63,0.07,0.61,0,0,0,0,5,7.4,0,0,0,0,0.306,65.55,120.22,0.94,0.14,795,1.9,49,1.7
+10372,2023,8,5,2,0,13.2,1.61,0.07,0.61,0,0,0,0,7,7.6,0,0,0,0,0.306,68.86,117.98,0.94,0.14,795,1.9,53,1.6
+10373,2023,8,5,2,30,12.9,1.61,0.07,0.61,0,0,0,0,8,7.6,0,0,0,0,0.306,70.22,115.06,0.94,0.14,795,1.9,58,1.5
+10374,2023,8,5,3,0,12.5,1.6,0.069,0.61,0,0,0,0,7,7.8,0,0,0,0,0.306,73.01,111.56,0.94,0.14,795,1.8,63,1.3
+10375,2023,8,5,3,30,12.1,1.6,0.069,0.61,0,0,0,0,7,7.8,0,0,0,0,0.306,74.95,107.57,0.94,0.14,795,1.8,66,1.2
+10376,2023,8,5,4,0,11.7,1.61,0.063,0.61,0,0,0,0,0,7.9,0,0,29,0,0.306,77.6,103.17,0.93,0.14,796,1.7,70,1.1
+10377,2023,8,5,4,30,11.7,1.61,0.063,0.61,0,0,0,0,0,7.9,0,0,0,0,0.306,77.6,98.44,0.93,0.14,796,1.7,69,1.2
+10378,2023,8,5,5,0,11.8,1.6,0.059,0.61,0,0,0,0,0,8.1,0,0,0,0,0.306,78.03,93.43,0.93,0.14,796,1.7,68,1.2
+10379,2023,8,5,5,30,13,1.6,0.059,0.61,17,182,23,0,0,8.1,17,182,0,23,0.306,72.14,87.97,0.93,0.14,796,1.7,65,1.7
+10380,2023,8,5,6,0,14.3,1.59,0.058,0.61,34,460,92,0,0,8.3,34,460,0,92,0.307,66.99,82.71,0.93,0.14,796,1.6,61,2.1
+10381,2023,8,5,6,30,16.1,1.59,0.058,0.61,46,619,183,0,0,8.3,46,619,0,183,0.307,59.69,77.22,0.93,0.14,796,1.6,71,2.1
+10382,2023,8,5,7,0,18,1.58,0.058,0.61,55,721,282,0,0,7.7,55,721,0,282,0.307,51.11,71.61,0.93,0.14,796,1.6,80,2.1
+10383,2023,8,5,7,30,19.3,1.58,0.058,0.61,62,791,384,0,0,7.7,62,791,0,384,0.307,47.13,65.95,0.93,0.14,796,1.6,76,1.9
+10384,2023,8,5,8,0,20.6,1.58,0.058,0.61,67,841,484,0,0,7,67,841,0,484,0.307,41.38,60.26,0.93,0.14,796,1.6,71,1.7
+10385,2023,8,5,8,30,21.8,1.58,0.058,0.61,72,877,580,0,0,7,72,877,0,580,0.306,38.46,54.59,0.93,0.14,796,1.6,64,1.6
+10386,2023,8,5,9,0,23,1.58,0.058,0.61,76,905,670,0,0,6,84,885,0,665,0.305,33.21,49,0.93,0.14,796,1.6,57,1.4
+10387,2023,8,5,9,30,24.1,1.58,0.058,0.61,80,925,750,0,0,5.9,89,906,0,746,0.304,31.05,43.55,0.93,0.14,795,1.6,40,1
+10388,2023,8,5,10,0,25.3,1.58,0.06,0.61,83,940,820,0,0,5,83,940,0,820,0.303,27.17,38.35,0.94,0.14,795,1.6,24,0.7
+10389,2023,8,5,10,30,26.1,1.58,0.06,0.61,84,954,879,0,0,5,95,937,0,876,0.302,25.91,33.52,0.94,0.14,795,1.7,153,0.7
+10390,2023,8,5,11,0,26.9,1.59,0.055,0.61,85,965,926,0,0,4.8,137,879,0,903,0.3,24.32,29.31,0.94,0.14,795,1.7,282,0.8
+10391,2023,8,5,11,30,27.4,1.59,0.055,0.61,85,971,958,0,0,4.8,99,948,0,951,0.298,23.62,26.02,0.94,0.14,795,1.7,272,1.1
+10392,2023,8,5,12,0,28,1.59,0.056,0.61,86,973,975,0,0,4.9,214,602,0,764,0.296,22.92,24.05,0.94,0.14,794,1.7,262,1.5
+10393,2023,8,5,12,30,28.3,1.59,0.056,0.61,86,973,977,0,8,4.9,356,80,0,429,0.294,22.52,23.75,0.94,0.14,794,1.7,259,1.7
+10394,2023,8,5,13,0,28.6,1.59,0.057,0.61,87,969,964,0,8,5,324,85,0,401,0.292,22.24,25.18,0.95,0.14,794,1.7,256,2
+10395,2023,8,5,13,30,28.7,1.59,0.057,0.61,85,966,937,0,8,5,297,117,7,400,0.291,22.11,28.06,0.95,0.14,794,1.7,258,2.2
+10396,2023,8,5,14,0,28.8,1.58,0.052,0.61,82,960,896,0,8,4.7,336,141,0,456,0.29,21.65,32.01,0.95,0.14,794,1.7,259,2.5
+10397,2023,8,5,14,30,28.7,1.58,0.052,0.61,79,951,842,0,8,4.7,269,93,4,344,0.29,21.75,36.65,0.95,0.14,793,1.7,266,2.6
+10398,2023,8,5,15,0,28.6,1.62,0.047,0.61,75,939,776,0,8,4.4,295,95,0,366,0.29,21.42,41.75,0.95,0.14,793,1.7,274,2.8
+10399,2023,8,5,15,30,28.3,1.62,0.047,0.61,72,923,700,0,0,4.4,215,499,0,554,0.29,21.8,47.13,0.94,0.14,793,1.7,285,2.9
+10400,2023,8,5,16,0,28,1.65,0.043,0.61,67,902,614,0,0,4.3,76,881,0,610,0.29,22.07,52.69,0.94,0.14,793,1.7,296,3
+10401,2023,8,5,16,30,27.3,1.65,0.043,0.61,63,870,520,0,0,4.3,63,870,0,520,0.29,22.99,58.34,0.94,0.14,793,1.7,310,3.2
+10402,2023,8,5,17,0,26.6,1.66,0.044,0.61,58,826,420,0,0,4.6,58,826,0,420,0.291,24.31,64.03,0.94,0.14,793,1.7,324,3.3
+10403,2023,8,5,17,30,25.3,1.66,0.044,0.61,53,764,318,0,0,4.5,53,764,0,318,0.291,26.24,69.72,0.94,0.14,793,1.7,342,3.4
+10404,2023,8,5,18,0,24,1.67,0.046,0.61,46,675,217,0,0,5.8,46,675,0,217,0.292,30.86,75.36,0.95,0.14,794,1.7,360,3.5
+10405,2023,8,5,18,30,22.2,1.67,0.046,0.61,37,538,122,1,0,5.8,48,433,11,116,0.292,34.39,80.91,0.95,0.14,794,1.8,194,3.7
+10406,2023,8,5,19,0,20.5,1.67,0.05,0.61,23,313,43,1,0,6.7,24,245,18,40,0.293,40.74,86.28,0.95,0.14,794,1.8,28,3.9
+10407,2023,8,5,19,30,19.5,1.67,0.05,0.61,3,23,2,0,0,6.7,3,23,0,2,0.294,43.39,91.74,0.95,0.14,795,1.8,34,4.3
+10408,2023,8,5,20,0,18.6,1.65,0.056,0.61,0,0,0,0,0,7.2,0,0,0,0,0.294,47.38,96.85,0.95,0.14,795,1.9,41,4.7
+10409,2023,8,5,20,30,18,1.65,0.056,0.61,0,0,0,0,0,7.2,0,0,0,0,0.294,49.19,101.7,0.96,0.14,795,1.9,44,4.6
+10410,2023,8,5,21,0,17.3,1.63,0.062,0.61,0,0,0,0,3,7.8,0,0,0,0,0.294,53.6,106.24,0.96,0.14,795,1.9,48,4.5
+10411,2023,8,5,21,30,16.9,1.63,0.062,0.61,0,0,0,0,3,7.8,0,0,0,0,0.294,54.97,110.4,0.96,0.14,795,2,49,4.1
+10412,2023,8,5,22,0,16.4,1.59,0.07,0.61,0,0,0,0,7,8.3,0,0,0,0,0.294,58.84,114.1,0.96,0.14,795,2,50,3.8
+10413,2023,8,5,22,30,16,1.59,0.07,0.61,0,0,0,0,5,8.3,0,0,0,0,0.293,60.35,117.24,0.97,0.14,795,2.1,48,3.6
+10414,2023,8,5,23,0,15.6,1.56,0.08,0.61,0,0,0,0,0,8.8,0,0,0,0,0.293,64.1,119.75,0.97,0.14,795,2.1,45,3.4
+10415,2023,8,5,23,30,15.3,1.56,0.08,0.61,0,0,0,0,0,8.8,0,0,0,0,0.292,65.35,121.54,0.97,0.14,795,2.1,43,3.4
+10416,2023,8,6,0,0,14.9,1.55,0.091,0.61,0,0,0,0,0,9.2,0,0,0,0,0.292,68.7,122.53,0.97,0.14,795,2.2,40,3.5
+10417,2023,8,6,0,30,14.6,1.55,0.091,0.61,0,0,0,0,0,9.2,0,0,0,0,0.292,70.04,122.68,0.97,0.14,795,2.2,41,3.6
+10418,2023,8,6,1,0,14.4,1.56,0.095,0.61,0,0,0,0,3,9.3,0,0,0,0,0.292,71.21,121.98,0.97,0.14,795,2.1,41,3.7
+10419,2023,8,6,1,30,14.1,1.56,0.095,0.61,0,0,0,0,3,9.3,0,0,0,0,0.291,72.61,120.48,0.97,0.14,795,2.1,45,3.7
+10420,2023,8,6,2,0,13.9,1.61,0.081,0.61,0,0,0,0,5,9.1,0,0,0,0,0.291,72.8,118.22,0.96,0.14,795,2.1,49,3.7
+10421,2023,8,6,2,30,13.6,1.61,0.081,0.61,0,0,0,0,3,9.1,0,0,0,0,0.291,74.22,115.29,0.96,0.14,795,2,51,3.6
+10422,2023,8,6,3,0,13.4,1.64,0.064,0.61,0,0,0,0,0,8.9,0,0,0,0,0.29,73.99,111.78,0.95,0.14,794,2,54,3.5
+10423,2023,8,6,3,30,13,1.64,0.064,0.61,0,0,0,0,0,8.9,0,0,0,0,0.29,75.94,107.78,0.95,0.14,794,2,52,3.2
+10424,2023,8,6,4,0,12.7,1.65,0.058,0.61,0,0,0,0,0,8.7,0,0,0,0,0.29,76.73,103.37,0.94,0.14,794,1.9,51,2.8
+10425,2023,8,6,4,30,12.5,1.65,0.058,0.61,0,0,0,0,0,8.7,0,0,0,0,0.29,77.84,98.62,0.94,0.14,795,1.9,48,2.9
+10426,2023,8,6,5,0,12.4,1.64,0.057,0.61,0,0,0,0,5,8.7,0,0,0,0,0.291,78.02,93.6,0.94,0.14,795,1.9,46,3
+10427,2023,8,6,5,30,13.3,1.64,0.057,0.61,16,174,22,2,0,8.7,16,164,21,21,0.291,73.57,88.13,0.94,0.14,795,1.9,44,3.2
+10428,2023,8,6,6,0,14.3,1.63,0.058,0.61,34,451,90,0,0,8.6,39,348,4,82,0.291,68.79,82.86,0.94,0.14,795,1.8,42,3.4
+10429,2023,8,6,6,30,16.4,1.63,0.058,0.61,45,611,179,0,0,8.6,60,493,0,168,0.292,60.15,77.37,0.94,0.14,795,1.8,48,3.6
+10430,2023,8,6,7,0,18.5,1.62,0.06,0.61,55,713,278,0,3,7.9,113,342,0,220,0.292,50.14,71.76,0.94,0.14,795,1.8,54,3.8
+10431,2023,8,6,7,30,20.2,1.62,0.06,0.61,63,781,380,0,3,7.9,175,269,0,284,0.293,45.13,66.09,0.94,0.14,795,1.8,54,3.5
+10432,2023,8,6,8,0,21.8,1.62,0.063,0.61,69,830,479,0,3,7.3,197,361,0,375,0.294,39.09,60.4,0.94,0.14,795,1.8,53,3.2
+10433,2023,8,6,8,30,22.8,1.62,0.063,0.61,75,866,575,0,0,7.3,158,666,0,542,0.295,36.79,54.74,0.94,0.14,795,1.8,45,2.7
+10434,2023,8,6,9,0,23.8,1.6,0.066,0.61,80,892,663,0,0,7.3,80,892,0,663,0.296,34.61,49.15,0.94,0.14,795,1.8,37,2.2
+10435,2023,8,6,9,30,24.6,1.6,0.066,0.61,83,914,744,0,0,7.3,83,914,0,744,0.298,32.99,43.71,0.94,0.14,795,1.8,198,1.9
+10436,2023,8,6,10,0,25.4,1.59,0.069,0.61,87,930,815,0,0,7.2,87,930,0,815,0.299,31.35,38.52,0.94,0.14,795,1.7,360,1.5
+10437,2023,8,6,10,30,26.1,1.59,0.069,0.61,88,945,874,0,0,7.2,88,945,0,874,0.301,30.08,33.72,0.94,0.14,795,1.7,334,1.5
+10438,2023,8,6,11,0,26.9,1.5,0.062,0.61,87,957,920,0,0,6.7,87,957,0,920,0.302,27.74,29.53,0.94,0.14,794,1.7,307,1.6
+10439,2023,8,6,11,30,27.4,1.5,0.062,0.61,89,962,952,0,0,6.7,89,962,0,952,0.304,26.94,26.26,0.94,0.14,794,1.7,292,1.7
+10440,2023,8,6,12,0,28,1.48,0.063,0.61,91,965,970,0,0,6.2,91,965,0,970,0.306,25.08,24.32,0.94,0.14,794,1.7,277,1.9
+10441,2023,8,6,12,30,28.3,1.48,0.063,0.61,91,965,972,0,0,6.2,91,965,0,972,0.306,24.64,24.03,0.94,0.14,794,1.7,267,2.2
+10442,2023,8,6,13,0,28.6,1.45,0.064,0.61,90,963,960,0,0,5.8,90,963,0,960,0.307,23.52,25.45,0.94,0.14,793,1.7,257,2.5
+10443,2023,8,6,13,30,28.6,1.45,0.064,0.61,90,957,932,0,0,5.8,112,911,0,914,0.307,23.52,28.32,0.94,0.14,793,1.7,256,3.2
+10444,2023,8,6,14,0,28.7,1.39,0.066,0.61,89,947,890,0,7,5.3,229,628,0,760,0.307,22.65,32.24,0.94,0.14,793,1.7,256,3.8
+10445,2023,8,6,14,30,28.3,1.39,0.066,0.61,91,929,834,0,7,5.3,250,66,0,303,0.307,23.15,36.87,0.95,0.14,792,1.8,266,4.5
+10446,2023,8,6,15,0,28,1.33,0.081,0.61,93,904,765,0,7,4.8,210,99,4,284,0.308,22.73,41.95,0.95,0.14,792,1.8,275,5.1
+10447,2023,8,6,15,30,27,1.33,0.081,0.61,91,876,685,0,8,4.8,247,528,7,605,0.308,24.09,47.33,0.96,0.14,792,1.9,291,5.2
+10448,2023,8,6,16,0,26,1.31,0.094,0.61,90,839,596,0,0,5.4,94,831,0,595,0.309,26.62,52.88,0.96,0.14,793,1.9,307,5.2
+10449,2023,8,6,16,30,24.7,1.31,0.094,0.61,86,794,501,0,0,5.3,86,794,0,501,0.31,28.75,58.53,0.96,0.14,793,1.9,327,4.9
+10450,2023,8,6,17,0,23.3,1.3,0.107,0.61,82,734,401,0,0,6.4,118,628,0,391,0.311,33.65,64.22,0.96,0.14,793,2,347,4.6
+10451,2023,8,6,17,30,21.7,1.3,0.107,0.61,72,664,300,0,0,6.4,112,513,0,288,0.312,37.07,69.91,0.96,0.14,793,2,186,4.6
+10452,2023,8,6,18,0,20,1.32,0.107,0.61,61,565,202,0,7,7.6,97,161,0,137,0.313,44.74,75.55,0.96,0.14,794,2,25,4.6
+10453,2023,8,6,18,30,18.4,1.32,0.107,0.61,45,426,111,0,0,7.6,42,289,11,87,0.313,49.41,81.1,0.96,0.14,794,1.9,34,4.6
+10454,2023,8,6,19,0,16.8,1.37,0.095,0.61,24,202,36,0,0,8.5,24,202,0,36,0.314,58.05,86.48,0.95,0.14,794,1.9,44,4.5
+10455,2023,8,6,19,30,16,1.37,0.095,0.61,0,0,0,0,0,8.5,0,0,0,0,0.315,61.07,91.95,0.95,0.14,794,1.9,52,4.2
+10456,2023,8,6,20,0,15.3,1.43,0.081,0.61,0,0,0,0,0,8.7,0,0,0,0,0.315,64.8,97.06,0.94,0.14,795,1.8,60,3.8
+10457,2023,8,6,20,30,15,1.43,0.081,0.61,0,0,0,0,0,8.7,0,0,0,0,0.316,66.06,101.93,0.94,0.14,795,1.8,65,3.1
+10458,2023,8,6,21,0,14.7,1.47,0.066,0.61,0,0,0,0,0,8.8,0,0,0,0,0.317,67.86,106.48,0.93,0.14,795,1.7,70,2.4
+10459,2023,8,6,21,30,14.3,1.47,0.066,0.61,0,0,0,0,0,8.8,0,0,0,0,0.318,69.63,110.64,0.93,0.14,795,1.7,67,1.7
+10460,2023,8,6,22,0,13.9,1.49,0.059,0.61,0,0,0,0,0,8.9,0,0,0,0,0.319,72.07,114.35,0.92,0.14,795,1.6,64,1
+10461,2023,8,6,22,30,13.6,1.49,0.059,0.61,0,0,0,0,0,8.9,0,0,0,0,0.32,73.48,117.51,0.92,0.14,795,1.6,52,0.8
+10462,2023,8,6,23,0,13.4,1.49,0.057,0.61,0,0,0,0,3,8.9,0,0,0,0,0.321,74.4,120.02,0.92,0.14,795,1.5,39,0.6
+10463,2023,8,6,23,30,13.2,1.49,0.057,0.61,0,0,0,0,3,8.9,0,0,0,0,0.321,75.37,121.81,0.92,0.14,795,1.5,20,0.6
+10464,2023,8,7,0,0,13,1.49,0.06,0.61,0,0,0,0,0,8.9,0,0,0,0,0.321,75.92,122.8,0.92,0.14,795,1.5,1,0.6
+10465,2023,8,7,0,30,12.9,1.49,0.06,0.61,0,0,0,0,0,8.8,0,0,0,0,0.32,76.32,122.95,0.93,0.14,794,1.6,172,0.6
+10466,2023,8,7,1,0,12.8,1.48,0.066,0.61,0,0,0,0,0,8.7,0,0,0,0,0.32,76.05,122.25,0.93,0.14,794,1.6,343,0.7
+10467,2023,8,7,1,30,12.6,1.48,0.066,0.61,0,0,0,0,0,8.7,0,0,0,0,0.319,77.05,120.74,0.93,0.14,794,1.6,344,0.7
+10468,2023,8,7,2,0,12.4,1.48,0.074,0.61,0,0,0,0,5,8.5,0,0,0,0,0.319,77.27,118.47,0.93,0.14,794,1.6,344,0.7
+10469,2023,8,7,2,30,12.3,1.48,0.074,0.61,0,0,0,0,5,8.5,0,0,0,0,0.318,77.77,115.52,0.94,0.14,794,1.6,348,0.7
+10470,2023,8,7,3,0,12.2,1.48,0.087,0.61,0,0,0,0,5,8.4,0,0,0,0,0.318,77.72,112,0.94,0.14,794,1.6,353,0.7
+10471,2023,8,7,3,30,12.1,1.48,0.087,0.61,0,0,0,0,3,8.4,0,0,0,0,0.317,78.23,107.98,0.95,0.14,794,1.7,355,0.7
+10472,2023,8,7,4,0,11.9,1.45,0.121,0.61,0,0,0,0,0,8.3,0,0,0,0,0.316,78.83,103.56,0.96,0.14,794,1.7,357,0.7
+10473,2023,8,7,4,30,12,1.45,0.121,0.61,0,0,0,0,0,8.4,0,0,0,0,0.316,78.41,98.8,0.96,0.14,795,1.8,357,0.7
+10474,2023,8,7,5,0,12.1,1.43,0.149,0.61,0,0,0,0,7,8.4,0,0,0,0,0.315,78.32,93.77,0.96,0.14,795,1.8,357,0.7
+10475,2023,8,7,5,30,13.1,1.43,0.149,0.61,14,80,16,6,7,8.4,10,0,86,10,0.315,73.36,88.28,0.96,0.14,795,1.9,188,1.1
+10476,2023,8,7,6,0,14.1,1.45,0.145,0.61,43,306,80,4,8,8.5,46,38,57,51,0.315,69.19,83.02,0.96,0.14,795,1.9,20,1.6
+10477,2023,8,7,6,30,15.5,1.45,0.145,0.61,62,481,166,0,8,8.5,97,160,11,132,0.316,63.24,77.52,0.96,0.14,795,1.9,25,1.4
+10478,2023,8,7,7,0,17,1.46,0.134,0.61,75,605,263,0,3,7.9,123,86,0,150,0.317,54.95,71.91,0.96,0.14,796,1.9,30,1.3
+10479,2023,8,7,7,30,18.4,1.46,0.134,0.61,85,690,363,0,6,7.9,34,2,0,35,0.319,50.32,66.24,0.95,0.14,796,1.9,180,1
+10480,2023,8,7,8,0,19.8,1.47,0.126,0.61,92,754,463,1,6,6,42,1,11,42,0.32,40.47,60.55,0.95,0.14,796,1.9,330,0.8
+10481,2023,8,7,8,30,20.8,1.47,0.126,0.61,96,808,561,4,8,6,61,4,50,63,0.322,38.06,54.89,0.95,0.14,796,1.8,283,0.7
+10482,2023,8,7,9,0,21.8,1.5,0.105,0.61,97,853,653,2,8,5.4,210,339,21,431,0.323,34.41,49.31,0.95,0.14,796,1.8,237,0.6
+10483,2023,8,7,9,30,22.8,1.5,0.105,0.61,100,881,735,3,8,5.4,253,169,39,375,0.324,32.34,43.88,0.95,0.14,795,1.8,231,1.2
+10484,2023,8,7,10,0,23.8,1.51,0.099,0.61,101,903,806,2,8,5,311,361,25,593,0.324,29.55,38.7,0.94,0.14,795,1.8,225,1.8
+10485,2023,8,7,10,30,24.6,1.51,0.099,0.61,100,924,867,1,3,5,310,397,18,639,0.324,28.17,33.92,0.94,0.14,795,1.7,227,2.2
+10486,2023,8,7,11,0,25.4,1.38,0.077,0.61,95,944,915,0,0,4.6,115,916,0,910,0.324,26.24,29.75,0.94,0.14,794,1.7,229,2.7
+10487,2023,8,7,11,30,26,1.38,0.077,0.61,97,951,948,0,0,4.6,97,951,0,948,0.324,25.33,26.51,0.94,0.14,794,1.7,230,2.9
+10488,2023,8,7,12,0,26.6,1.4,0.076,0.61,98,955,966,0,0,4.5,224,675,7,838,0.324,24.19,24.59,0.94,0.14,794,1.7,231,3.1
+10489,2023,8,7,12,30,27,1.4,0.076,0.61,99,953,967,0,8,4.5,299,292,7,565,0.323,23.6,24.31,0.94,0.14,793,1.7,231,3.3
+10490,2023,8,7,13,0,27.4,1.42,0.083,0.61,100,947,953,0,8,4.3,302,315,0,586,0.323,22.83,25.72,0.94,0.14,793,1.7,232,3.4
+10491,2023,8,7,13,30,27.6,1.42,0.083,0.61,98,943,926,0,8,4.3,261,505,0,704,0.323,22.56,28.58,0.94,0.14,793,1.7,235,3.6
+10492,2023,8,7,14,0,27.9,1.39,0.078,0.61,95,937,885,0,7,4,336,364,0,643,0.322,21.73,32.48,0.94,0.14,792,1.8,239,3.7
+10493,2023,8,7,14,30,28,1.39,0.078,0.61,92,925,830,0,8,4,191,659,0,717,0.322,21.61,37.09,0.94,0.14,792,1.8,243,3.8
+10494,2023,8,7,15,0,28.1,1.42,0.075,0.61,89,910,763,0,0,3.7,103,878,0,754,0.322,20.91,42.17,0.94,0.14,792,1.8,248,3.9
+10495,2023,8,7,15,30,28.1,1.42,0.075,0.61,84,892,686,0,7,3.7,196,626,21,619,0.321,20.91,47.53,0.93,0.14,792,1.7,256,4
+10496,2023,8,7,16,0,28,1.44,0.069,0.61,78,869,600,0,8,3,179,625,14,554,0.321,20.08,53.08,0.93,0.14,791,1.7,264,4.1
+10497,2023,8,7,16,30,27.5,1.44,0.069,0.61,72,838,507,0,8,3,167,582,14,469,0.32,20.67,58.72,0.93,0.14,791,1.7,276,4.2
+10498,2023,8,7,17,0,27.1,1.46,0.064,0.61,66,795,409,0,0,2.1,108,671,4,398,0.319,19.83,64.41,0.92,0.14,791,1.6,288,4.3
+10499,2023,8,7,17,30,25.7,1.46,0.064,0.61,57,738,308,0,0,2.1,61,727,4,308,0.32,21.55,70.1,0.92,0.14,792,1.5,300,3.7
+10500,2023,8,7,18,0,24.3,1.48,0.057,0.61,48,654,209,0,0,2.1,63,578,0,205,0.32,23.47,75.75,0.91,0.14,792,1.5,312,3.1
+10501,2023,8,7,18,30,22.5,1.48,0.057,0.61,36,523,115,0,0,2.1,46,428,4,111,0.32,26.15,81.3,0.91,0.14,792,1.4,324,2.7
+10502,2023,8,7,19,0,20.7,1.51,0.048,0.61,21,281,37,6,3,3,26,54,89,29,0.321,31,86.68,0.91,0.14,793,1.3,337,2.3
+10503,2023,8,7,19,30,19.4,1.51,0.048,0.61,0,0,0,1,7,3,0,0,14,0,0.321,33.59,92.17,0.9,0.14,793,1.2,345,2.1
+10504,2023,8,7,20,0,18.2,1.54,0.039,0.61,0,0,0,0,0,3.2,0,0,0,0,0.321,36.77,97.29,0.9,0.14,793,1.2,353,1.9
+10505,2023,8,7,20,30,17.3,1.54,0.039,0.61,0,0,0,0,8,3.2,0,0,0,0,0.321,38.9,102.16,0.9,0.14,793,1.1,185,1.6
+10506,2023,8,7,21,0,16.3,1.52,0.039,0.61,0,0,0,0,7,3.7,0,0,0,0,0.321,43.12,106.72,0.91,0.14,793,1.1,16,1.4
+10507,2023,8,7,21,30,15.8,1.52,0.039,0.61,0,0,0,0,8,3.7,0,0,0,0,0.319,44.52,110.89,0.91,0.14,793,1.1,30,1.4
+10508,2023,8,7,22,0,15.3,1.51,0.049,0.61,0,0,0,0,0,4.1,0,0,0,0,0.318,47.27,114.61,0.92,0.14,793,1.2,43,1.3
+10509,2023,8,7,22,30,15,1.51,0.049,0.61,0,0,0,0,0,4.1,0,0,0,0,0.317,48.19,117.78,0.93,0.14,793,1.3,52,1.3
+10510,2023,8,7,23,0,14.7,1.58,0.08,0.61,0,0,0,0,0,4.4,0,0,0,0,0.315,49.9,120.3,0.93,0.14,793,1.4,61,1.3
+10511,2023,8,7,23,30,14.6,1.58,0.08,0.61,0,0,0,0,0,4.4,0,0,0,0,0.313,50.22,122.09,0.94,0.14,793,1.5,56,1.2
+10512,2023,8,8,0,0,14.4,1.71,0.126,0.61,0,0,0,0,7,4.6,0,0,0,0,0.311,51.82,123.09,0.94,0.14,793,1.5,51,1.2
+10513,2023,8,8,0,30,14.1,1.71,0.126,0.61,0,0,0,0,7,4.6,0,0,0,0,0.31,52.84,123.23,0.93,0.14,793,1.5,47,1.2
+10514,2023,8,8,1,0,13.7,1.79,0.131,0.61,0,0,0,0,8,4.9,0,0,0,0,0.309,55.25,122.53,0.93,0.14,793,1.6,44,1.2
+10515,2023,8,8,1,30,13.4,1.79,0.131,0.61,0,0,0,0,7,4.9,0,0,0,0,0.308,56.33,121,0.93,0.14,793,1.5,48,1.2
+10516,2023,8,8,2,0,13,1.79,0.123,0.61,0,0,0,0,0,5.1,0,0,0,0,0.307,58.81,118.72,0.92,0.14,793,1.5,52,1.2
+10517,2023,8,8,2,30,12.7,1.79,0.123,0.61,0,0,0,0,0,5.1,0,0,0,0,0.307,59.89,115.76,0.92,0.14,792,1.4,57,1.2
+10518,2023,8,8,3,0,12.4,1.78,0.117,0.61,0,0,0,0,7,5.3,0,0,0,0,0.306,62.1,112.22,0.92,0.14,792,1.4,63,1.3
+10519,2023,8,8,3,30,12.3,1.78,0.117,0.61,0,0,0,0,7,5.3,0,0,0,0,0.306,62.5,108.19,0.92,0.14,792,1.4,63,1.2
+10520,2023,8,8,4,0,12.2,1.79,0.123,0.61,0,0,0,0,7,5.6,0,0,0,0,0.306,63.96,103.76,0.92,0.14,792,1.3,63,1.2
+10521,2023,8,8,4,30,12.3,1.79,0.123,0.61,0,0,0,0,7,5.6,0,0,0,0,0.306,63.54,98.99,0.92,0.14,792,1.3,50,1.2
+10522,2023,8,8,5,0,12.5,1.83,0.138,0.61,0,0,0,0,7,6,0,0,0,0,0.306,64.64,93.95,0.92,0.14,792,1.3,38,1.2
+10523,2023,8,8,5,30,13.7,1.83,0.138,0.61,12,94,15,5,7,6,9,0,71,9,0.306,59.78,88.44,0.91,0.14,792,1.3,28,1.8
+10524,2023,8,8,6,0,14.8,1.88,0.147,0.61,39,333,79,4,7,6.6,53,10,57,54,0.306,58.07,83.18,0.91,0.14,792,1.3,18,2.4
+10525,2023,8,8,6,30,16.4,1.88,0.147,0.61,59,500,166,0,7,6.6,102,42,0,111,0.305,52.43,77.67,0.91,0.14,792,1.3,15,2.4
+10526,2023,8,8,7,0,17.9,1.88,0.147,0.61,74,614,263,0,7,5.7,127,88,0,154,0.305,44.73,72.06,0.91,0.14,792,1.3,11,2.4
+10527,2023,8,8,7,30,19.1,1.88,0.147,0.61,86,694,364,0,7,5.7,177,177,0,248,0.305,41.5,66.39,0.91,0.14,792,1.4,181,2.1
+10528,2023,8,8,8,0,20.3,1.8,0.147,0.61,96,751,464,0,7,4.9,203,323,0,361,0.305,36.45,60.7,0.92,0.14,792,1.4,352,1.7
+10529,2023,8,8,8,30,20.7,1.8,0.147,0.61,105,793,559,0,7,4.9,254,231,0,386,0.305,35.57,55.04,0.93,0.14,792,1.5,335,1.6
+10530,2023,8,8,9,0,21.1,1.64,0.148,0.61,113,824,648,0,7,4.5,297,96,0,359,0.304,33.8,49.47,0.94,0.14,792,1.6,318,1.5
+10531,2023,8,8,9,30,21.6,1.64,0.148,0.61,120,844,727,0,7,4.5,331,289,0,539,0.306,32.79,44.05,0.95,0.14,792,1.6,296,1.6
+10532,2023,8,8,10,0,22.1,1.55,0.162,0.61,129,857,796,0,7,4.3,349,324,0,601,0.307,31.17,38.88,0.95,0.14,792,1.7,274,1.7
+10533,2023,8,8,10,30,22.8,1.55,0.162,0.61,118,894,858,0,6,4.3,365,270,0,589,0.309,29.88,34.12,0.95,0.14,792,1.7,258,2.1
+10534,2023,8,8,11,0,23.4,1.44,0.087,0.61,101,935,911,0,7,4,348,404,0,698,0.311,28.36,29.98,0.95,0.14,792,1.8,242,2.5
+10535,2023,8,8,11,30,24.1,1.44,0.087,0.61,99,946,944,0,6,4,405,262,0,639,0.311,27.2,26.76,0.94,0.14,792,1.8,238,2.9
+10536,2023,8,8,12,0,24.8,1.5,0.076,0.61,96,954,962,0,6,3.9,438,198,0,618,0.31,25.84,24.87,0.93,0.14,792,1.8,233,3.3
+10537,2023,8,8,12,30,25.1,1.5,0.076,0.61,96,955,964,0,7,3.9,313,501,0,769,0.309,25.35,24.59,0.93,0.14,791,1.8,236,3.7
+10538,2023,8,8,13,0,25.5,1.49,0.075,0.61,96,951,951,0,8,4,284,556,0,784,0.308,25.03,26,0.94,0.14,791,1.8,239,4.1
+10539,2023,8,8,13,30,25.3,1.49,0.075,0.61,98,939,921,0,8,4,323,397,0,671,0.307,25.33,28.84,0.94,0.14,791,1.9,250,4.6
+10540,2023,8,8,14,0,25.1,1.45,0.092,0.61,102,921,877,0,8,4.9,302,419,0,654,0.307,27.16,32.73,0.95,0.14,791,1.9,260,5.1
+10541,2023,8,8,14,30,24.3,1.45,0.092,0.61,99,906,820,0,7,4.9,311,384,0,616,0.308,28.49,37.32,0.95,0.14,791,2,272,5.3
+10542,2023,8,8,15,0,23.6,1.47,0.096,0.61,98,885,752,0,7,6.1,304,163,0,424,0.309,32.39,42.38,0.95,0.14,791,2.1,285,5.5
+10543,2023,8,8,15,30,23.3,1.47,0.096,0.61,90,871,676,0,8,6.1,248,121,0,329,0.31,32.98,47.74,0.94,0.14,791,2,293,4.9
+10544,2023,8,8,16,0,23,1.56,0.078,0.61,80,854,591,0,6,6.3,200,98,0,259,0.312,33.97,53.28,0.92,0.14,791,2,300,4.3
+10545,2023,8,8,16,30,22.9,1.56,0.078,0.61,74,824,499,0,8,6.3,160,254,4,291,0.313,34.13,58.92,0.92,0.14,790,1.9,304,3.9
+10546,2023,8,8,17,0,22.8,1.59,0.07,0.61,66,783,402,0,8,5.4,101,417,32,280,0.315,32.36,64.61,0.92,0.13,790,1.8,307,3.5
+10547,2023,8,8,17,30,22,1.59,0.07,0.61,59,719,301,0,6,5.4,104,300,14,205,0.315,33.96,70.3,0.92,0.13,790,1.8,318,3.2
+10548,2023,8,8,18,0,21.1,1.6,0.069,0.61,50,625,202,0,6,5,75,38,0,84,0.315,35,75.95,0.92,0.13,791,1.7,329,3
+10549,2023,8,8,18,30,19.6,1.6,0.069,0.61,38,481,109,4,3,5,58,103,61,73,0.315,38.39,81.51,0.92,0.13,791,1.7,166,2.7
+10550,2023,8,8,19,0,18,1.67,0.068,0.61,20,235,33,5,3,5.6,21,50,68,24,0.314,44.27,86.89,0.91,0.13,792,1.7,3,2.5
+10551,2023,8,8,19,30,16.9,1.67,0.068,0.61,0,0,0,0,0,5.6,0,0,7,0,0.313,47.44,92.39,0.91,0.13,792,1.6,9,2.2
+10552,2023,8,8,20,0,15.8,1.8,0.062,0.61,0,0,0,0,0,6,0,0,0,0,0.312,52.1,97.51,0.9,0.13,792,1.6,14,2
+10553,2023,8,8,20,30,14.9,1.8,0.062,0.61,0,0,0,0,0,6,0,0,0,0,0.312,55.26,102.39,0.9,0.13,793,1.5,19,1.6
+10554,2023,8,8,21,0,14.1,1.85,0.06,0.61,0,0,0,0,0,6.3,0,0,0,0,0.311,59.35,106.96,0.89,0.13,793,1.5,24,1.3
+10555,2023,8,8,21,30,13.6,1.85,0.06,0.61,0,0,0,0,0,6.3,0,0,0,0,0.311,61.3,111.15,0.89,0.13,793,1.5,31,1.1
+10556,2023,8,8,22,0,13.1,1.84,0.061,0.61,0,0,0,0,0,6.4,0,0,0,0,0.311,63.92,114.88,0.9,0.13,793,1.4,38,0.9
+10557,2023,8,8,22,30,12.9,1.84,0.061,0.61,0,0,0,0,0,6.4,0,0,0,0,0.31,64.76,118.05,0.9,0.13,793,1.4,43,0.8
+10558,2023,8,8,23,0,12.7,1.82,0.061,0.61,0,0,0,0,0,6.6,0,0,0,0,0.31,66.55,120.58,0.9,0.13,793,1.4,49,0.7
+10559,2023,8,8,23,30,12.5,1.82,0.061,0.61,0,0,0,0,0,6.6,0,0,0,0,0.308,67.42,122.38,0.9,0.13,793,1.4,49,0.5
+10560,2023,8,9,0,0,12.3,1.79,0.061,0.61,0,0,0,0,0,6.9,0,0,0,0,0.307,69.57,123.37,0.9,0.13,793,1.4,50,0.3
+10561,2023,8,9,0,30,12,1.79,0.061,0.61,0,0,0,0,0,6.9,0,0,0,0,0.306,70.95,123.52,0.9,0.13,793,1.4,153,0.3
+10562,2023,8,9,1,0,11.6,1.76,0.06,0.61,0,0,0,0,0,7.1,0,0,0,0,0.305,73.66,122.8,0.9,0.13,793,1.4,256,0.2
+10563,2023,8,9,1,30,11.3,1.76,0.06,0.61,0,0,0,0,0,7.1,0,0,0,0,0.305,75.13,121.27,0.9,0.13,793,1.4,259,0.4
+10564,2023,8,9,2,0,11,1.74,0.06,0.61,0,0,0,0,0,7.1,0,0,0,0,0.304,76.69,118.97,0.9,0.13,793,1.3,262,0.5
+10565,2023,8,9,2,30,10.7,1.74,0.06,0.61,0,0,0,0,0,7.1,0,0,0,0,0.304,78.23,116,0.9,0.13,793,1.3,266,0.6
+10566,2023,8,9,3,0,10.4,1.74,0.059,0.61,0,0,0,0,0,6.9,0,0,0,0,0.303,79.09,112.45,0.9,0.13,793,1.3,269,0.6
+10567,2023,8,9,3,30,10.2,1.74,0.059,0.61,0,0,0,0,0,6.9,0,0,0,0,0.302,80.15,108.41,0.9,0.13,793,1.3,271,0.7
+10568,2023,8,9,4,0,10,1.74,0.058,0.61,0,0,0,0,0,6.7,0,0,0,0,0.301,80.16,103.96,0.9,0.13,793,1.3,273,0.7
+10569,2023,8,9,4,30,10,1.74,0.058,0.61,0,0,0,0,0,6.7,0,0,0,0,0.301,80.16,99.17,0.9,0.13,793,1.3,273,0.7
+10570,2023,8,9,5,0,10.1,1.74,0.058,0.61,0,0,0,0,0,6.6,0,0,0,0,0.3,78.64,94.13,0.9,0.13,793,1.2,273,0.6
+10571,2023,8,9,5,30,11.6,1.74,0.058,0.61,13,148,17,0,0,6.6,13,148,0,17,0.3,71.19,88.59,0.9,0.13,793,1.2,267,0.8
+10572,2023,8,9,6,0,13,1.73,0.058,0.61,32,451,84,0,0,6.4,32,451,0,84,0.3,64.05,83.34,0.9,0.13,793,1.2,260,1
+10573,2023,8,9,6,30,14.8,1.73,0.058,0.61,44,621,175,0,0,6.4,44,621,0,175,0.3,57.01,77.83,0.9,0.13,793,1.2,253,1.4
+10574,2023,8,9,7,0,16.7,1.73,0.058,0.61,53,728,275,0,0,5,53,728,0,275,0.299,45.92,72.21,0.9,0.13,794,1.2,246,1.9
+10575,2023,8,9,7,30,17.8,1.73,0.058,0.61,61,800,379,0,0,5,61,800,0,379,0.299,42.85,66.54,0.9,0.13,794,1.2,246,2
+10576,2023,8,9,8,0,19,1.74,0.057,0.61,65,852,480,0,0,4.1,65,852,0,480,0.299,37.25,60.85,0.9,0.13,794,1.2,246,2.2
+10577,2023,8,9,8,30,20.1,1.74,0.057,0.61,69,891,578,0,0,4.1,69,891,0,578,0.299,34.75,55.19,0.9,0.13,793,1.2,246,2.2
+10578,2023,8,9,9,0,21.1,1.75,0.055,0.61,73,920,669,0,0,3.4,73,920,0,669,0.298,31.12,49.63,0.9,0.13,793,1.2,246,2.2
+10579,2023,8,9,9,30,22.1,1.75,0.055,0.61,76,942,751,0,0,3.4,76,942,0,751,0.298,29.28,44.22,0.9,0.13,793,1.2,246,2.3
+10580,2023,8,9,10,0,23.1,1.75,0.054,0.61,78,959,823,0,0,2.6,78,959,0,823,0.298,26.18,39.07,0.9,0.13,793,1.2,245,2.3
+10581,2023,8,9,10,30,24,1.75,0.054,0.61,78,975,883,0,0,2.6,78,975,0,883,0.297,24.8,34.32,0.89,0.13,793,1.2,244,2.3
+10582,2023,8,9,11,0,24.9,1.78,0.045,0.61,77,988,931,0,0,2,77,988,0,931,0.297,22.38,30.2,0.88,0.13,793,1.2,242,2.3
+10583,2023,8,9,11,30,25.6,1.78,0.045,0.61,77,994,963,0,0,1.9,77,994,0,963,0.297,21.45,27.02,0.88,0.13,792,1.2,240,2.3
+10584,2023,8,9,12,0,26.3,1.77,0.044,0.61,77,997,980,0,0,1.3,77,997,0,980,0.297,19.71,25.14,0.88,0.13,792,1.2,237,2.4
+10585,2023,8,9,12,30,26.8,1.77,0.044,0.61,78,998,983,0,0,1.3,78,998,0,983,0.297,19.14,24.88,0.88,0.13,792,1.2,234,2.3
+10586,2023,8,9,13,0,27.3,1.77,0.043,0.61,77,996,970,0,0,0.8,77,996,0,970,0.297,17.91,26.29,0.88,0.13,791,1.2,230,2.3
+10587,2023,8,9,13,30,27.6,1.77,0.043,0.61,77,990,942,0,0,0.8,77,990,0,942,0.297,17.6,29.11,0.89,0.13,791,1.2,228,2.3
+10588,2023,8,9,14,0,27.9,1.76,0.045,0.61,76,982,900,0,0,0.4,76,982,0,900,0.297,16.82,32.98,0.89,0.13,791,1.2,225,2.3
+10589,2023,8,9,14,30,28,1.76,0.045,0.61,74,971,844,0,0,0.4,74,971,0,844,0.296,16.71,37.56,0.89,0.13,790,1.2,225,2.3
+10590,2023,8,9,15,0,28.1,1.76,0.046,0.61,72,956,776,0,0,0.1,72,956,0,776,0.296,16.2,42.61,0.89,0.13,790,1.2,224,2.3
+10591,2023,8,9,15,30,27.9,1.76,0.046,0.61,70,935,696,0,0,0.1,70,935,0,696,0.295,16.39,47.95,0.9,0.13,790,1.3,224,2.4
+10592,2023,8,9,16,0,27.8,1.75,0.048,0.61,67,908,607,0,0,-0.1,67,908,0,607,0.293,16.29,53.49,0.9,0.13,790,1.3,225,2.4
+10593,2023,8,9,16,30,27.3,1.75,0.048,0.61,64,871,511,0,0,-0.1,64,871,0,511,0.292,16.77,59.13,0.91,0.13,790,1.3,226,2.4
+10594,2023,8,9,17,0,26.9,1.73,0.051,0.61,60,823,410,0,0,0,60,823,0,410,0.29,17.23,64.82,0.91,0.13,790,1.3,227,2.4
+10595,2023,8,9,17,30,25.4,1.73,0.051,0.61,54,757,307,0,0,0,95,601,4,296,0.289,18.82,70.51,0.92,0.13,790,1.4,230,1.7
+10596,2023,8,9,18,0,24,1.71,0.053,0.61,47,662,205,0,8,4.5,93,342,7,175,0.288,28.19,76.16,0.92,0.13,790,1.4,233,1
+10597,2023,8,9,18,30,22.7,1.71,0.053,0.61,36,516,110,5,7,4.5,66,138,68,86,0.288,30.48,81.72,0.92,0.13,790,1.4,239,1
+10598,2023,8,9,19,0,21.5,1.71,0.052,0.61,20,257,33,7,7,4.3,24,6,100,24,0.287,32.5,87.1,0.92,0.13,790,1.4,245,0.9
+10599,2023,8,9,19,30,20.9,1.71,0.052,0.61,0,0,0,1,8,4.3,0,0,14,0,0.287,33.72,92.61,0.92,0.13,790,1.4,264,1
+10600,2023,8,9,20,0,20.4,1.72,0.05,0.61,0,0,0,0,7,3.6,0,0,0,0,0.287,33.13,97.75,0.92,0.13,790,1.4,284,1.2
+10601,2023,8,9,20,30,19.7,1.72,0.05,0.61,0,0,0,0,7,3.7,0,0,0,0,0.287,34.64,102.63,0.92,0.13,791,1.5,294,1.2
+10602,2023,8,9,21,0,19,1.72,0.047,0.61,0,0,0,0,7,3.8,0,0,0,0,0.286,36.62,107.21,0.91,0.13,791,1.5,304,1.3
+10603,2023,8,9,21,30,18.5,1.72,0.047,0.61,0,0,0,0,7,3.8,0,0,0,0,0.286,37.78,111.41,0.91,0.13,791,1.4,311,1.2
+10604,2023,8,9,22,0,18,1.68,0.05,0.61,0,0,0,0,0,3.7,0,0,0,0,0.285,38.66,115.15,0.91,0.13,791,1.4,317,1.2
+10605,2023,8,9,22,30,17.4,1.68,0.05,0.61,0,0,0,0,0,3.7,0,0,0,0,0.285,40.15,118.33,0.92,0.13,791,1.4,322,1.1
+10606,2023,8,9,23,0,16.9,1.62,0.058,0.61,0,0,0,0,0,4,0,0,0,0,0.284,42.24,120.87,0.92,0.13,791,1.4,326,1.1
+10607,2023,8,9,23,30,16.4,1.62,0.058,0.61,0,0,0,0,7,4,0,0,0,0,0.285,43.6,122.67,0.93,0.13,791,1.4,329,1
+10608,2023,8,10,0,0,16,1.59,0.068,0.61,0,0,0,0,7,3.9,0,0,0,0,0.285,44.43,123.66,0.93,0.13,791,1.5,332,1
+10609,2023,8,10,0,30,16,1.59,0.068,0.61,0,0,0,0,7,3.9,0,0,0,0,0.285,44.43,123.8,0.93,0.13,791,1.5,336,0.9
+10610,2023,8,10,1,0,16,1.58,0.078,0.61,0,0,0,0,7,3.7,0,0,0,0,0.285,43.85,123.08,0.93,0.13,791,1.5,340,0.8
+10611,2023,8,10,1,30,16.1,1.58,0.078,0.61,0,0,0,0,8,3.7,0,0,0,0,0.286,43.57,121.54,0.94,0.13,791,1.5,179,0.6
+10612,2023,8,10,2,0,16.1,1.59,0.083,0.61,0,0,0,0,7,3.4,0,0,0,0,0.286,42.63,119.23,0.94,0.13,791,1.5,17,0.3
+10613,2023,8,10,2,30,16,1.59,0.083,0.61,0,0,0,0,8,3.4,0,0,0,0,0.287,42.91,116.24,0.94,0.13,791,1.5,70,0.4
+10614,2023,8,10,3,0,15.9,1.59,0.082,0.61,0,0,0,0,8,3.2,0,0,0,0,0.288,42.55,112.68,0.94,0.13,791,1.5,123,0.4
+10615,2023,8,10,3,30,15.4,1.59,0.082,0.61,0,0,0,0,8,3.2,0,0,0,0,0.288,43.93,108.62,0.94,0.13,791,1.5,142,0.6
+10616,2023,8,10,4,0,14.9,1.57,0.081,0.61,0,0,0,0,0,2.9,0,0,0,0,0.289,44.47,104.16,0.94,0.13,791,1.5,161,0.8
+10617,2023,8,10,4,30,14.5,1.57,0.081,0.61,0,0,0,0,7,2.9,0,0,0,0,0.289,45.63,99.36,0.94,0.13,791,1.6,168,0.9
+10618,2023,8,10,5,0,14.2,1.54,0.083,0.61,0,0,0,0,0,2.8,0,0,0,0,0.29,46.31,94.3,0.94,0.13,791,1.6,175,1
+10619,2023,8,10,5,30,15.8,1.54,0.083,0.61,13,109,15,5,3,2.8,10,1,71,10,0.289,41.79,88.75,0.94,0.13,791,1.6,178,1.3
+10620,2023,8,10,6,0,17.4,1.51,0.085,0.61,35,382,78,4,7,3.3,46,39,54,50,0.289,39.04,83.5,0.94,0.13,791,1.6,182,1.6
+10621,2023,8,10,6,30,19.5,1.51,0.085,0.61,51,559,167,0,5,3.3,81,110,7,104,0.289,34.24,77.98,0.94,0.13,791,1.6,192,2.1
+10622,2023,8,10,7,0,21.6,1.49,0.086,0.61,61,672,265,0,3,2.1,102,170,0,154,0.289,27.65,72.36,0.94,0.13,791,1.6,202,2.6
+10623,2023,8,10,7,30,23.4,1.49,0.086,0.61,69,752,367,0,8,2.1,82,35,0,96,0.288,24.79,66.69,0.93,0.13,791,1.6,217,3.2
+10624,2023,8,10,8,0,25.2,1.48,0.082,0.61,76,809,468,0,3,2.4,212,195,0,307,0.288,22.62,61,0.93,0.13,791,1.6,232,3.8
+10625,2023,8,10,8,30,26.1,1.48,0.082,0.61,81,852,565,0,3,2.4,191,522,0,488,0.288,21.45,55.35,0.93,0.13,791,1.6,235,4.2
+10626,2023,8,10,9,0,27,1.48,0.078,0.61,84,886,656,0,0,3.1,209,507,7,536,0.288,21.39,49.79,0.93,0.13,791,1.5,238,4.7
+10627,2023,8,10,9,30,27.8,1.48,0.078,0.61,87,909,737,2,8,3.1,270,483,21,615,0.288,20.41,44.39,0.93,0.13,791,1.6,239,5
+10628,2023,8,10,10,0,28.7,1.47,0.076,0.61,89,928,808,2,0,3.3,176,744,29,752,0.288,19.68,39.25,0.93,0.13,791,1.6,240,5.3
+10629,2023,8,10,10,30,29.3,1.47,0.076,0.61,89,947,869,1,0,3.3,103,921,14,862,0.288,19.01,34.53,0.93,0.13,791,1.6,241,5.5
+10630,2023,8,10,11,0,29.9,1.67,0.058,0.61,85,965,917,0,0,3,98,939,4,908,0.288,17.95,30.44,0.93,0.13,791,1.6,243,5.6
+10631,2023,8,10,11,30,30.3,1.67,0.058,0.61,89,967,948,0,0,3,89,967,0,948,0.288,17.53,27.28,0.94,0.13,790,1.6,244,5.6
+10632,2023,8,10,12,0,30.8,1.59,0.069,0.61,92,964,963,0,0,2.3,92,964,0,963,0.288,16.26,25.43,0.94,0.13,790,1.6,246,5.6
+10633,2023,8,10,12,30,30.9,1.59,0.069,0.61,95,961,965,0,0,2.3,95,961,0,965,0.287,16.17,25.18,0.94,0.13,790,1.6,246,5.4
+10634,2023,8,10,13,0,31,1.54,0.077,0.61,97,955,951,0,0,1.9,97,955,0,951,0.286,15.66,26.58,0.95,0.13,790,1.7,247,5.3
+10635,2023,8,10,13,30,31,1.54,0.077,0.61,95,950,923,0,0,1.9,95,950,0,923,0.285,15.66,29.38,0.95,0.13,790,1.7,245,5.1
+10636,2023,8,10,14,0,31,1.54,0.075,0.61,93,942,881,0,0,1.9,125,868,0,851,0.284,15.65,33.24,0.95,0.13,790,1.7,244,4.9
+10637,2023,8,10,14,30,30.7,1.54,0.075,0.61,92,927,824,0,8,1.9,310,262,0,517,0.283,15.9,37.8,0.95,0.13,789,1.7,240,4.8
+10638,2023,8,10,15,0,30.4,1.52,0.082,0.61,91,906,755,0,0,2.2,242,445,0,568,0.283,16.54,42.84,0.95,0.13,789,1.8,237,4.8
+10639,2023,8,10,15,30,29.8,1.52,0.082,0.61,88,882,676,0,0,2.2,110,835,0,667,0.282,17.12,48.17,0.95,0.13,789,1.8,232,4.7
+10640,2023,8,10,16,0,29.3,1.53,0.085,0.61,85,850,588,0,0,2.9,93,833,0,586,0.282,18.54,53.7,0.95,0.13,789,1.9,228,4.7
+10641,2023,8,10,16,30,28.5,1.53,0.085,0.61,79,811,493,0,0,2.9,182,441,0,407,0.282,19.41,59.34,0.95,0.13,789,1.9,222,4.6
+10642,2023,8,10,17,0,27.6,1.54,0.086,0.61,72,760,393,0,8,4,181,170,0,253,0.282,22.11,65.02,0.95,0.13,789,1.9,216,4.4
+10643,2023,8,10,17,30,26.3,1.54,0.086,0.61,64,689,292,0,8,4.1,130,353,11,247,0.282,23.89,70.71,0.95,0.13,790,2,210,3.9
+10644,2023,8,10,18,0,25,1.55,0.084,0.61,53,590,192,0,7,6,74,363,14,160,0.282,29.63,76.37,0.95,0.13,790,2,203,3.4
+10645,2023,8,10,18,30,23.5,1.55,0.084,0.61,39,432,100,4,7,6,61,181,79,86,0.282,32.41,81.93,0.95,0.13,790,2,199,3.1
+10646,2023,8,10,19,0,22.1,1.54,0.086,0.61,19,169,27,7,7,7.6,20,4,100,20,0.282,39.36,87.31,0.95,0.13,791,2.1,196,2.8
+10647,2023,8,10,19,30,21.5,1.54,0.086,0.61,0,0,0,1,7,7.6,0,0,14,0,0.282,40.82,92.84,0.95,0.13,791,2.1,198,2.7
+10648,2023,8,10,20,0,21,1.52,0.098,0.61,0,0,0,0,7,8.6,0,0,0,0,0.282,44.92,97.98,0.96,0.13,791,2.2,200,2.7
+10649,2023,8,10,20,30,20.5,1.52,0.098,0.61,0,0,0,0,7,8.6,0,0,0,0,0.281,46.38,102.88,0.96,0.13,792,2.2,205,2.3
+10650,2023,8,10,21,0,20.1,1.5,0.112,0.61,0,0,0,0,8,9.3,0,0,0,0,0.281,49.9,107.47,0.96,0.13,792,2.3,210,1.9
+10651,2023,8,10,21,30,19.7,1.5,0.112,0.61,0,0,0,0,8,9.3,0,0,0,0,0.281,51.15,111.67,0.96,0.13,792,2.3,212,1.7
+10652,2023,8,10,22,0,19.4,1.49,0.119,0.61,0,0,0,0,8,9.8,0,0,0,0,0.281,53.75,115.42,0.96,0.13,792,2.3,214,1.4
+10653,2023,8,10,22,30,19.1,1.49,0.119,0.61,0,0,0,0,8,9.8,0,0,0,0,0.281,54.76,118.61,0.97,0.13,792,2.3,211,1.3
+10654,2023,8,10,23,0,18.8,1.49,0.123,0.61,0,0,0,0,8,10.1,0,0,0,0,0.281,57.02,121.16,0.97,0.13,792,2.3,208,1.1
+10655,2023,8,10,23,30,18.5,1.49,0.123,0.61,0,0,0,0,3,10.1,0,0,0,0,0.28,58.1,122.97,0.96,0.13,792,2.3,202,1
+10656,2023,8,11,0,0,18.2,1.5,0.118,0.61,0,0,0,0,8,10.4,0,0,0,0,0.28,60.41,123.96,0.96,0.13,792,2.3,196,1
+10657,2023,8,11,0,30,17.9,1.5,0.118,0.61,0,0,0,0,0,10.4,0,0,0,0,0.28,61.56,124.1,0.96,0.13,792,2.3,191,1
+10658,2023,8,11,1,0,17.7,1.54,0.102,0.61,0,0,0,0,0,10.7,0,0,0,0,0.28,63.42,123.37,0.96,0.13,792,2.2,185,1
+10659,2023,8,11,1,30,17.3,1.54,0.102,0.61,0,0,0,0,0,10.7,0,0,0,0,0.28,65.03,121.81,0.95,0.13,792,2.2,184,1.1
+10660,2023,8,11,2,0,16.9,1.58,0.085,0.61,0,0,0,0,0,10.9,0,0,0,0,0.28,67.72,119.49,0.95,0.13,792,2.1,182,1.1
+10661,2023,8,11,2,30,16.5,1.58,0.085,0.61,0,0,0,0,0,10.9,0,0,0,0,0.281,69.46,116.49,0.95,0.13,792,2.1,182,1.2
+10662,2023,8,11,3,0,16.1,1.61,0.079,0.61,0,0,0,0,0,11.1,0,0,0,0,0.281,72.21,112.91,0.95,0.13,792,2,183,1.3
+10663,2023,8,11,3,30,15.8,1.61,0.079,0.61,0,0,0,0,0,11.1,0,0,0,0,0.282,73.61,108.83,0.95,0.13,792,2,186,1.3
+10664,2023,8,11,4,0,15.5,1.62,0.079,0.61,0,0,0,0,0,11.2,0,0,0,0,0.282,75.78,104.36,0.95,0.13,792,2,189,1.3
+10665,2023,8,11,4,30,15.5,1.62,0.079,0.61,0,0,0,0,0,11.3,0,0,0,0,0.283,75.88,99.55,0.95,0.13,793,2,194,1.4
+10666,2023,8,11,5,0,15.5,1.63,0.083,0.61,0,0,0,0,3,11.2,0,0,0,0,0.283,75.78,94.48,0.95,0.13,793,2,199,1.4
+10667,2023,8,11,5,30,16.6,1.63,0.083,0.61,12,103,14,2,3,11.2,9,42,36,10,0.283,70.66,88.91,0.95,0.13,793,2,206,2.1
+10668,2023,8,11,6,0,17.7,1.63,0.087,0.61,34,369,75,4,3,10.9,45,84,57,54,0.284,64.26,83.66,0.95,0.13,793,2,214,2.8
+10669,2023,8,11,6,30,19.2,1.63,0.087,0.61,50,544,162,0,0,10.9,64,431,0,153,0.285,58.52,78.14,0.95,0.13,793,2,222,3
+10670,2023,8,11,7,0,20.7,1.64,0.091,0.61,62,656,259,0,0,9.3,86,548,7,251,0.286,48.05,72.51,0.95,0.13,793,2,230,3.3
+10671,2023,8,11,7,30,22,1.64,0.091,0.61,71,732,359,0,3,9.3,137,444,7,312,0.286,44.38,66.84,0.95,0.13,793,2,235,3.3
+10672,2023,8,11,8,0,23.4,1.63,0.095,0.61,80,786,459,0,0,7.4,150,559,7,420,0.286,35.82,61.15,0.95,0.13,794,1.9,241,3.3
+10673,2023,8,11,8,30,24.4,1.63,0.095,0.61,85,830,555,0,0,7.4,85,830,0,555,0.286,33.73,55.51,0.95,0.13,794,1.9,244,3
+10674,2023,8,11,9,0,25.5,1.66,0.091,0.61,89,864,645,0,0,5.5,89,864,0,645,0.286,27.61,49.95,0.95,0.13,794,1.9,246,2.8
+10675,2023,8,11,9,30,26.4,1.66,0.091,0.61,91,892,727,0,0,5.4,91,892,0,727,0.286,26.15,44.56,0.95,0.13,793,1.9,245,2.6
+10676,2023,8,11,10,0,27.3,1.7,0.083,0.61,93,914,799,0,0,4.1,93,914,0,799,0.286,22.59,39.44,0.95,0.13,793,1.9,244,2.4
+10677,2023,8,11,10,30,27.9,1.7,0.083,0.61,89,937,859,0,0,4.1,89,937,0,859,0.286,21.82,34.74,0.94,0.13,793,1.9,243,2.5
+10678,2023,8,11,11,0,28.6,1.71,0.056,0.61,84,958,908,0,0,3.7,84,958,0,908,0.286,20.37,30.67,0.93,0.13,793,1.9,242,2.5
+10679,2023,8,11,11,30,29,1.71,0.056,0.61,84,964,939,0,0,3.7,99,937,0,930,0.286,19.91,27.54,0.94,0.13,793,1.9,245,2.7
+10680,2023,8,11,12,0,29.4,1.69,0.056,0.61,85,966,955,0,0,3.8,149,776,0,848,0.286,19.52,25.71,0.94,0.13,792,1.9,249,2.9
+10681,2023,8,11,12,30,29.4,1.69,0.056,0.61,87,963,956,0,0,3.8,146,825,0,891,0.286,19.52,25.48,0.94,0.13,792,2,255,3.1
+10682,2023,8,11,13,0,29.5,1.65,0.064,0.61,89,956,942,0,0,4.1,231,566,0,736,0.286,19.87,26.87,0.94,0.13,792,2,261,3.4
+10683,2023,8,11,13,30,29.2,1.65,0.064,0.61,91,945,912,0,8,4.1,332,265,0,562,0.286,20.21,29.66,0.95,0.13,792,2.1,268,3.6
+10684,2023,8,11,14,0,28.9,1.59,0.077,0.61,93,929,868,0,8,4.7,334,253,0,545,0.287,21.41,33.5,0.95,0.13,792,2.1,275,3.9
+10685,2023,8,11,14,30,28.3,1.59,0.077,0.61,92,913,811,0,8,4.7,322,223,0,498,0.287,22.16,38.05,0.96,0.13,792,2.2,281,3.9
+10686,2023,8,11,15,0,27.7,1.57,0.085,0.61,92,890,742,0,8,5.5,282,177,0,411,0.287,24.26,43.07,0.96,0.13,792,2.3,287,3.9
+10687,2023,8,11,15,30,27,1.57,0.085,0.61,88,867,664,0,5,5.4,228,254,0,397,0.286,25.27,48.4,0.96,0.13,792,2.3,294,3.6
+10688,2023,8,11,16,0,26.2,1.57,0.085,0.61,84,837,577,0,8,6.3,230,370,0,448,0.286,27.99,53.92,0.96,0.13,792,2.3,300,3.3
+10689,2023,8,11,16,30,25.5,1.57,0.085,0.61,76,803,483,0,8,6.2,174,281,0,316,0.286,29.17,59.55,0.95,0.13,792,2.3,311,2.8
+10690,2023,8,11,17,0,24.8,1.6,0.076,0.61,69,757,386,0,5,6.7,164,104,4,208,0.286,31.44,65.24,0.95,0.14,793,2.3,322,2.3
+10691,2023,8,11,17,30,24.1,1.6,0.076,0.61,59,697,287,0,8,6.7,116,126,4,157,0.286,32.78,70.93,0.95,0.14,793,2.3,340,1.9
+10692,2023,8,11,18,0,23.4,1.64,0.063,0.61,48,610,190,0,8,7.4,72,250,0,130,0.286,35.9,76.58,0.95,0.14,793,2.2,359,1.4
+10693,2023,8,11,18,30,22.3,1.64,0.063,0.61,35,466,99,4,8,7.4,64,170,57,87,0.286,38.36,82.15,0.94,0.14,793,2.2,198,1.2
+10694,2023,8,11,19,0,21.2,1.66,0.054,0.61,17,200,26,4,0,8,18,41,57,20,0.286,42.54,87.52,0.94,0.14,793,2.2,36,0.9
+10695,2023,8,11,19,30,20.6,1.66,0.054,0.61,0,0,0,0,8,8,0,0,0,0,0.286,44.13,93.07,0.94,0.14,793,2.1,42,1
+10696,2023,8,11,20,0,20.1,1.67,0.05,0.61,0,0,0,0,8,7.8,0,0,0,0,0.286,45.1,98.22,0.94,0.14,794,2.1,48,1
+10697,2023,8,11,20,30,19.6,1.67,0.05,0.61,0,0,0,0,7,7.8,0,0,0,0,0.286,46.51,103.13,0.94,0.14,794,2.1,49,0.9
+10698,2023,8,11,21,0,19.1,1.68,0.047,0.61,0,0,0,0,7,7.8,0,0,0,0,0.286,48,107.73,0.94,0.14,794,2.1,51,0.9
+10699,2023,8,11,21,30,18.7,1.68,0.047,0.61,0,0,0,0,7,7.8,0,0,0,0,0.286,49.21,111.94,0.94,0.14,794,2.1,50,0.8
+10700,2023,8,11,22,0,18.2,1.68,0.045,0.61,0,0,0,0,7,7.9,0,0,0,0,0.286,51.19,115.7,0.93,0.14,794,2.1,49,0.8
+10701,2023,8,11,22,30,17.9,1.68,0.045,0.61,0,0,0,0,7,7.9,0,0,0,0,0.286,52.16,118.9,0.93,0.14,794,2.1,47,0.7
+10702,2023,8,11,23,0,17.5,1.68,0.046,0.61,0,0,0,0,7,8.1,0,0,0,0,0.285,54.13,121.46,0.93,0.14,794,2.1,45,0.7
+10703,2023,8,11,23,30,17.4,1.68,0.046,0.61,0,0,0,0,7,8.1,0,0,0,0,0.285,54.47,123.27,0.94,0.14,794,2.1,41,0.6
+10704,2023,8,12,0,0,17.2,1.67,0.048,0.61,0,0,0,0,7,8.1,0,0,0,0,0.285,55.01,124.26,0.94,0.14,794,2.1,37,0.5
+10705,2023,8,12,0,30,17.1,1.67,0.048,0.61,0,0,0,0,7,8.1,0,0,0,0,0.285,55.36,124.39,0.94,0.14,794,2.1,193,0.4
+10706,2023,8,12,1,0,17,1.66,0.05,0.61,0,0,0,0,7,8,0,0,0,0,0.284,55.21,123.66,0.94,0.14,794,2.1,349,0.3
+10707,2023,8,12,1,30,16.9,1.66,0.05,0.61,0,0,0,0,7,7.9,0,0,0,0,0.284,55.56,122.09,0.94,0.14,794,2.1,351,0.4
+10708,2023,8,12,2,0,16.7,1.66,0.053,0.61,0,0,0,0,7,7.9,0,0,0,0,0.284,56.01,119.75,0.94,0.14,794,2.1,354,0.4
+10709,2023,8,12,2,30,16.4,1.66,0.053,0.61,0,0,0,0,7,7.9,0,0,0,0,0.284,57.09,116.74,0.94,0.14,794,2.1,192,0.4
+10710,2023,8,12,3,0,16.2,1.65,0.057,0.61,0,0,0,0,8,7.9,0,0,0,0,0.284,58.06,113.14,0.94,0.14,794,2.1,31,0.5
+10711,2023,8,12,3,30,16,1.65,0.057,0.61,0,0,0,0,8,7.9,0,0,0,0,0.284,58.8,109.05,0.94,0.14,794,2.1,39,0.5
+10712,2023,8,12,4,0,15.7,1.64,0.06,0.61,0,0,0,0,7,8,0,0,0,0,0.284,60.32,104.56,0.94,0.14,794,2.1,47,0.6
+10713,2023,8,12,4,30,15.6,1.64,0.06,0.61,0,0,0,0,7,8,0,0,0,0,0.284,60.71,99.74,0.94,0.14,794,2.1,51,0.6
+10714,2023,8,12,5,0,15.5,1.63,0.063,0.61,0,0,0,0,7,8.2,0,0,0,0,0.284,61.64,94.66,0.94,0.14,794,2.1,56,0.7
+10715,2023,8,12,5,30,16.5,1.63,0.063,0.61,10,94,12,5,7,8.2,7,0,71,7,0.284,57.84,89.06,0.94,0.14,794,2.1,57,1.2
+10716,2023,8,12,6,0,17.6,1.62,0.067,0.61,32,391,74,5,7,8.4,38,26,71,41,0.284,54.69,83.82,0.95,0.14,795,2.1,58,1.7
+10717,2023,8,12,6,30,19,1.62,0.067,0.61,46,568,161,0,7,8.4,72,101,0,92,0.284,50.11,78.3,0.95,0.14,795,2,62,2
+10718,2023,8,12,7,0,20.4,1.6,0.071,0.61,57,678,259,0,5,7.4,124,157,7,171,0.284,42.9,72.67,0.95,0.14,795,2,66,2.3
+10719,2023,8,12,7,30,22,1.6,0.071,0.61,65,755,360,0,3,7.4,170,351,0,307,0.284,38.9,66.99,0.95,0.14,795,2,69,2.4
+10720,2023,8,12,8,0,23.7,1.6,0.071,0.61,72,809,460,0,3,5.7,153,567,0,425,0.284,31.21,61.31,0.95,0.14,795,2,72,2.5
+10721,2023,8,12,8,30,24.7,1.6,0.071,0.61,77,850,556,0,0,5.7,108,761,0,537,0.284,29.4,55.66,0.95,0.14,795,2,77,2.4
+10722,2023,8,12,9,0,25.8,1.6,0.07,0.61,81,881,646,0,0,5,81,881,0,646,0.283,26.34,50.12,0.95,0.14,795,2,82,2.2
+10723,2023,8,12,9,30,26.6,1.6,0.07,0.61,84,905,727,0,0,5,101,873,0,721,0.282,25.1,44.74,0.95,0.14,794,2,90,1.9
+10724,2023,8,12,10,0,27.3,1.6,0.07,0.61,88,922,798,0,0,4.9,106,890,0,791,0.282,23.83,39.63,0.95,0.14,794,2,97,1.6
+10725,2023,8,12,10,30,27.9,1.6,0.07,0.61,87,939,857,0,0,4.9,92,928,4,853,0.281,23.01,34.95,0.95,0.14,794,2,111,1.2
+10726,2023,8,12,11,0,28.5,1.54,0.06,0.61,86,952,903,0,0,4.8,219,570,4,708,0.28,22.1,30.91,0.95,0.14,794,2,126,0.8
+10727,2023,8,12,11,30,28.8,1.54,0.06,0.61,89,957,935,0,3,4.8,253,433,0,636,0.28,21.69,27.81,0.95,0.14,793,2,174,0.7
+10728,2023,8,12,12,0,29.2,1.54,0.064,0.61,90,958,951,0,8,4.8,196,515,0,659,0.279,21.22,26,0.95,0.14,793,2,223,0.6
+10729,2023,8,12,12,30,29.5,1.54,0.064,0.61,91,956,952,0,7,4.8,137,7,0,143,0.278,20.86,25.78,0.95,0.14,793,2,240,1
+10730,2023,8,12,13,0,29.9,1.55,0.067,0.61,91,952,938,0,8,4.9,304,161,0,447,0.278,20.55,27.17,0.95,0.14,793,2.1,257,1.4
+10731,2023,8,12,13,30,29.9,1.55,0.067,0.61,90,948,911,0,7,4.9,217,78,0,285,0.278,20.53,29.95,0.95,0.14,792,2.1,267,2
+10732,2023,8,12,14,0,30,1.54,0.062,0.61,87,942,870,0,8,5.2,319,214,0,497,0.278,20.8,33.77,0.95,0.14,792,2.1,276,2.6
+10733,2023,8,12,14,30,29.6,1.54,0.062,0.61,86,928,814,0,8,5.2,321,113,0,410,0.278,21.28,38.3,0.96,0.14,792,2.1,282,3.2
+10734,2023,8,12,15,0,29.3,1.54,0.065,0.61,83,910,745,0,8,5.6,190,648,7,662,0.278,22.33,43.31,0.96,0.14,792,2.1,289,3.8
+10735,2023,8,12,15,30,28.6,1.54,0.065,0.61,80,888,667,0,7,5.6,137,763,14,641,0.278,23.25,48.63,0.96,0.14,792,2.2,293,4.2
+10736,2023,8,12,16,0,27.9,1.55,0.065,0.61,75,861,579,0,7,6.2,208,434,0,462,0.279,25.27,54.14,0.95,0.14,792,2.2,296,4.6
+10737,2023,8,12,16,30,27,1.55,0.065,0.61,70,826,486,0,7,6.2,138,599,14,440,0.279,26.63,59.77,0.95,0.14,792,2.2,299,4.6
+10738,2023,8,12,17,0,26,1.56,0.06,0.61,63,780,387,0,8,6.8,127,507,21,338,0.279,29.42,65.45,0.95,0.13,792,2.2,301,4.5
+10739,2023,8,12,17,30,24.9,1.56,0.06,0.61,55,715,286,0,8,6.8,111,461,36,260,0.279,31.4,71.15,0.95,0.13,792,2.2,303,4.2
+10740,2023,8,12,18,0,23.8,1.56,0.054,0.61,46,622,188,0,8,7.7,75,265,29,136,0.28,35.59,76.8,0.95,0.13,793,2.2,305,3.8
+10741,2023,8,12,18,30,22.5,1.56,0.054,0.61,34,472,97,4,3,7.7,52,120,61,68,0.28,38.49,82.37,0.95,0.13,793,2.1,306,3
+10742,2023,8,12,19,0,21.1,1.57,0.049,0.61,17,197,25,5,3,8.3,16,14,68,17,0.281,43.92,87.74,0.94,0.13,793,2.1,306,2.2
+10743,2023,8,12,19,30,20.3,1.57,0.049,0.61,0,0,0,0,0,8.3,0,0,0,0,0.282,46.13,93.31,0.94,0.13,793,2.1,306,1.8
+10744,2023,8,12,20,0,19.4,1.58,0.046,0.61,0,0,0,0,4,8.5,0,0,0,0,0.282,49.34,98.47,0.94,0.13,793,2.1,305,1.4
+10745,2023,8,12,20,30,18.9,1.58,0.046,0.61,0,0,0,0,0,8.5,0,0,0,0,0.283,50.9,103.38,0.94,0.13,793,2.2,300,1.2
+10746,2023,8,12,21,0,18.4,1.57,0.048,0.61,0,0,0,0,0,8.6,0,0,0,0,0.283,52.73,107.99,0.94,0.13,793,2.2,296,1
+10747,2023,8,12,21,30,18.2,1.57,0.048,0.61,0,0,0,0,0,8.6,0,0,0,0,0.284,53.46,112.22,0.94,0.13,794,2.2,286,0.9
+10748,2023,8,12,22,0,17.9,1.54,0.053,0.61,0,0,0,0,0,8.6,0,0,0,0,0.284,54.53,115.98,0.95,0.13,794,2.2,276,0.8
+10749,2023,8,12,22,30,17.7,1.54,0.053,0.61,0,0,0,0,0,8.6,0,0,0,0,0.285,55.22,119.2,0.95,0.13,794,2.2,273,0.9
+10750,2023,8,12,23,0,17.5,1.52,0.057,0.61,0,0,0,0,0,8.5,0,0,0,0,0.285,55.7,121.76,0.95,0.13,794,2.2,270,0.9
+10751,2023,8,12,23,30,17.3,1.52,0.057,0.61,0,0,0,0,0,8.5,0,0,0,0,0.285,56.41,123.57,0.95,0.13,794,2.1,277,0.9
+10752,2023,8,13,0,0,17.1,1.5,0.057,0.61,0,0,0,0,3,8.3,0,0,0,0,0.286,56.23,124.56,0.95,0.13,794,2.1,283,0.9
+10753,2023,8,13,0,30,17,1.5,0.057,0.61,0,0,0,0,3,8.3,0,0,0,0,0.287,56.59,124.69,0.94,0.13,794,2.1,295,0.9
+10754,2023,8,13,1,0,16.8,1.5,0.056,0.61,0,0,0,0,4,8,0,0,0,0,0.288,56.08,123.95,0.94,0.13,794,2,307,0.9
+10755,2023,8,13,1,30,16.7,1.5,0.056,0.61,0,0,0,0,3,8,0,0,0,0,0.288,56.44,122.37,0.94,0.13,794,2,324,1
+10756,2023,8,13,2,0,16.6,1.49,0.054,0.61,0,0,0,0,3,7.8,0,0,0,0,0.289,56.05,120.02,0.94,0.13,794,2,342,1
+10757,2023,8,13,2,30,16.3,1.49,0.054,0.61,0,0,0,0,3,7.8,0,0,0,0,0.29,57.12,116.98,0.94,0.13,794,1.9,176,1.2
+10758,2023,8,13,3,0,16.1,1.49,0.052,0.61,0,0,0,0,0,7.8,0,0,0,0,0.291,57.94,113.37,0.94,0.13,795,1.9,9,1.3
+10759,2023,8,13,3,30,15.8,1.49,0.052,0.61,0,0,0,0,0,7.8,0,0,0,0,0.291,59.06,109.27,0.93,0.13,795,1.9,15,1.4
+10760,2023,8,13,4,0,15.4,1.49,0.048,0.61,0,0,0,0,0,7.8,0,0,0,0,0.292,60.69,104.76,0.93,0.13,795,1.8,21,1.5
+10761,2023,8,13,4,30,15.1,1.49,0.048,0.61,0,0,0,0,0,7.8,0,0,0,0,0.292,61.87,99.93,0.93,0.13,795,1.8,23,1.7
+10762,2023,8,13,5,0,14.8,1.49,0.045,0.61,0,0,0,0,0,8,0,0,0,0,0.292,63.79,94.84,0.93,0.13,795,1.8,24,1.9
+10763,2023,8,13,5,30,15.5,1.49,0.045,0.61,10,112,12,0,0,8,10,112,0,12,0.292,60.99,89.22,0.92,0.13,795,1.7,27,2.6
+10764,2023,8,13,6,0,16.2,1.5,0.042,0.61,29,441,75,0,0,8.3,29,441,0,75,0.292,59.29,83.98,0.92,0.13,795,1.7,30,3.3
+10765,2023,8,13,6,30,17.5,1.5,0.042,0.61,40,621,164,0,0,8.3,40,621,0,164,0.292,54.62,78.45,0.92,0.13,795,1.7,34,3.5
+10766,2023,8,13,7,0,18.8,1.5,0.04,0.61,48,732,264,0,0,8,48,732,0,264,0.292,49.4,72.82,0.92,0.13,795,1.7,39,3.7
+10767,2023,8,13,7,30,20.1,1.5,0.04,0.61,54,804,366,0,0,8,54,804,0,366,0.291,45.63,67.15,0.92,0.13,796,1.7,37,3.5
+10768,2023,8,13,8,0,21.5,1.52,0.038,0.61,58,856,467,0,0,7.3,58,856,0,467,0.291,39.8,61.46,0.92,0.13,796,1.7,36,3.4
+10769,2023,8,13,8,30,22.6,1.52,0.038,0.61,62,893,564,0,0,7.3,62,893,0,564,0.29,37.23,55.82,0.92,0.13,796,1.7,29,3.2
+10770,2023,8,13,9,0,23.8,1.53,0.038,0.61,65,921,654,0,0,6.5,65,921,0,654,0.289,32.85,50.28,0.92,0.13,796,1.7,22,3.1
+10771,2023,8,13,9,30,24.7,1.53,0.038,0.61,68,942,735,0,0,6.5,68,942,0,735,0.288,31.13,44.92,0.92,0.13,796,1.7,15,3.1
+10772,2023,8,13,10,0,25.6,1.54,0.037,0.61,70,958,806,0,0,5.9,70,958,0,806,0.288,28.27,39.83,0.92,0.13,796,1.7,8,3.1
+10773,2023,8,13,10,30,26.3,1.54,0.037,0.61,72,971,866,0,0,5.9,72,971,0,866,0.287,27.09,35.17,0.92,0.13,795,1.7,5,3.1
+10774,2023,8,13,11,0,27.1,1.56,0.035,0.61,72,981,912,0,0,5.4,72,981,0,912,0.286,25.1,31.15,0.92,0.13,795,1.6,2,3.2
+10775,2023,8,13,11,30,27.6,1.56,0.035,0.61,73,987,944,0,0,5.4,73,987,0,944,0.285,24.38,28.08,0.92,0.13,795,1.6,2,3.2
+10776,2023,8,13,12,0,28.1,1.58,0.035,0.61,73,990,961,0,0,5,73,990,0,961,0.285,23.04,26.3,0.92,0.13,795,1.6,3,3.2
+10777,2023,8,13,12,30,28.4,1.58,0.035,0.61,73,991,963,0,0,5,73,991,0,963,0.284,22.64,26.08,0.92,0.13,795,1.6,6,3.3
+10778,2023,8,13,13,0,28.7,1.59,0.034,0.61,73,988,950,0,0,4.6,73,988,0,950,0.284,21.56,27.47,0.92,0.13,795,1.6,9,3.3
+10779,2023,8,13,13,30,28.8,1.59,0.034,0.61,72,983,921,0,0,4.6,72,983,0,921,0.283,21.41,30.24,0.92,0.13,794,1.7,14,3.4
+10780,2023,8,13,14,0,28.9,1.62,0.036,0.61,71,975,879,0,0,4.2,71,975,0,879,0.283,20.72,34.04,0.92,0.13,794,1.7,18,3.5
+10781,2023,8,13,14,30,28.8,1.62,0.036,0.61,71,963,824,0,0,4.2,71,963,0,824,0.283,20.84,38.56,0.93,0.13,794,1.7,22,3.6
+10782,2023,8,13,15,0,28.6,1.64,0.037,0.61,68,948,755,0,0,3.9,68,948,0,755,0.284,20.65,43.55,0.93,0.13,794,1.7,27,3.8
+10783,2023,8,13,15,30,28.2,1.64,0.037,0.61,66,928,677,0,0,3.9,66,928,0,677,0.284,21.13,48.86,0.93,0.13,794,1.7,30,4.1
+10784,2023,8,13,16,0,27.7,1.66,0.038,0.61,64,902,589,0,0,3.8,112,751,7,549,0.284,21.58,54.37,0.93,0.13,794,1.7,34,4.3
+10785,2023,8,13,16,30,26.9,1.66,0.038,0.61,59,867,493,0,0,3.8,71,832,0,487,0.284,22.62,59.99,0.93,0.13,794,1.7,38,4.7
+10786,2023,8,13,17,0,26.1,1.67,0.04,0.61,56,819,393,0,0,3.9,56,819,0,393,0.285,23.87,65.68,0.93,0.13,794,1.7,41,5
+10787,2023,8,13,17,30,24.9,1.67,0.04,0.61,49,754,290,0,0,3.9,49,754,0,290,0.285,25.66,71.37,0.93,0.13,795,1.7,44,5.1
+10788,2023,8,13,18,0,23.7,1.67,0.04,0.61,42,657,189,0,0,4.2,42,657,0,189,0.285,28.26,77.03,0.93,0.13,795,1.7,48,5.3
+10789,2023,8,13,18,30,22.2,1.67,0.04,0.61,31,504,96,0,0,4.3,31,504,0,96,0.285,30.97,82.6,0.93,0.13,796,1.7,51,5.2
+10790,2023,8,13,19,0,20.7,1.66,0.039,0.61,16,214,24,0,0,4.9,16,214,0,24,0.286,35.41,87.97,0.93,0.13,796,1.7,53,5.1
+10791,2023,8,13,19,30,19.8,1.66,0.039,0.61,0,0,0,0,0,4.9,0,0,0,0,0.286,37.47,93.55,0.93,0.13,797,1.7,55,5.2
+10792,2023,8,13,20,0,18.8,1.66,0.037,0.61,0,0,0,0,0,5.3,0,0,0,0,0.286,41.13,98.72,0.93,0.13,797,1.7,56,5.2
+10793,2023,8,13,20,30,18.1,1.66,0.037,0.61,0,0,0,0,0,5.3,0,0,0,0,0.286,42.97,103.64,0.92,0.13,797,1.7,57,5.3
+10794,2023,8,13,21,0,17.4,1.65,0.036,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,45.7,108.26,0.92,0.13,797,1.7,59,5.4
+10795,2023,8,13,21,30,16.8,1.65,0.036,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,47.46,112.5,0.92,0.13,797,1.7,60,5.2
+10796,2023,8,13,22,0,16.2,1.66,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,49.59,116.27,0.92,0.13,797,1.6,60,5
+10797,2023,8,13,22,30,15.7,1.66,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,51.19,119.49,0.92,0.13,797,1.6,61,4.8
+10798,2023,8,13,23,0,15.3,1.67,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,52.52,122.06,0.92,0.13,797,1.6,61,4.6
+10799,2023,8,13,23,30,14.8,1.67,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,54.23,123.88,0.92,0.13,797,1.6,60,4.3
+10800,2023,8,14,0,0,14.4,1.67,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,55.62,124.87,0.92,0.13,797,1.6,59,4.1
+10801,2023,8,14,0,30,14,1.67,0.035,0.61,0,0,0,0,0,5.6,0,0,0,0,0.287,57.07,125,0.92,0.13,797,1.6,58,3.8
+10802,2023,8,14,1,0,13.6,1.68,0.035,0.61,0,0,0,0,0,5.7,0,0,0,0,0.287,58.77,124.24,0.92,0.13,797,1.6,56,3.5
+10803,2023,8,14,1,30,13.3,1.68,0.035,0.61,0,0,0,0,0,5.7,0,0,0,0,0.287,59.92,122.65,0.92,0.13,797,1.6,54,3.2
+10804,2023,8,14,2,0,12.9,1.69,0.035,0.61,0,0,0,0,0,5.8,0,0,0,0,0.288,61.85,120.28,0.92,0.13,797,1.6,51,3
+10805,2023,8,14,2,30,12.7,1.69,0.035,0.61,0,0,0,0,0,5.8,0,0,0,0,0.288,62.66,117.24,0.92,0.13,797,1.6,50,2.9
+10806,2023,8,14,3,0,12.4,1.7,0.035,0.61,0,0,0,0,0,5.8,0,0,0,0,0.289,64.18,113.61,0.92,0.13,797,1.6,49,2.8
+10807,2023,8,14,3,30,12.1,1.7,0.035,0.61,0,0,0,0,0,5.8,0,0,0,0,0.289,65.45,109.49,0.92,0.13,797,1.6,49,2.8
+10808,2023,8,14,4,0,11.9,1.7,0.034,0.61,0,0,0,0,0,5.9,0,0,0,0,0.289,66.57,104.97,0.92,0.13,797,1.5,48,2.8
+10809,2023,8,14,4,30,11.8,1.7,0.034,0.61,0,0,0,0,0,5.9,0,0,0,0,0.289,67.09,100.13,0.92,0.13,798,1.5,49,2.9
+10810,2023,8,14,5,0,11.7,1.71,0.035,0.61,0,0,0,0,0,6,0,0,0,0,0.29,68.02,95.02,0.92,0.13,798,1.5,49,2.9
+10811,2023,8,14,5,30,12.8,1.71,0.035,0.61,10,120,11,0,0,6,10,120,0,11,0.29,63.29,89.37,0.92,0.13,798,1.5,49,3.3
+10812,2023,8,14,6,0,13.8,1.71,0.035,0.61,27,458,74,0,0,6.1,27,458,0,74,0.29,59.74,84.14,0.92,0.13,798,1.5,48,3.6
+10813,2023,8,14,6,30,16,1.71,0.035,0.61,38,637,164,0,0,6.1,38,637,0,164,0.29,51.87,78.61,0.92,0.13,798,1.5,52,3.8
+10814,2023,8,14,7,0,18.2,1.71,0.034,0.61,46,745,264,0,0,5.3,46,745,0,264,0.29,42.61,72.98,0.92,0.13,798,1.5,55,4.1
+10815,2023,8,14,7,30,20.2,1.71,0.034,0.61,52,816,367,0,0,5.3,52,816,0,367,0.29,37.68,67.3,0.92,0.13,799,1.5,58,4.2
+10816,2023,8,14,8,0,22.2,1.71,0.034,0.61,56,866,468,0,0,2.5,56,866,0,468,0.29,27.43,61.62,0.92,0.13,799,1.5,61,4.4
+10817,2023,8,14,8,30,23.4,1.71,0.034,0.61,61,902,566,0,0,2.5,61,902,0,566,0.289,25.51,55.98,0.92,0.13,799,1.5,59,4.1
+10818,2023,8,14,9,0,24.5,1.71,0.034,0.61,64,930,656,0,0,2.2,64,930,0,656,0.288,23.3,50.45,0.92,0.13,799,1.5,57,3.8
+10819,2023,8,14,9,30,25.4,1.71,0.034,0.61,66,952,738,0,0,2.2,66,952,0,738,0.287,22.09,45.1,0.92,0.13,799,1.5,53,3.5
+10820,2023,8,14,10,0,26.4,1.71,0.033,0.61,68,968,809,0,0,2.2,68,968,0,809,0.286,20.76,40.03,0.92,0.13,798,1.5,50,3.1
+10821,2023,8,14,10,30,27.2,1.71,0.033,0.61,68,981,868,0,0,2.2,68,981,0,868,0.285,19.81,35.39,0.91,0.13,798,1.5,45,2.9
+10822,2023,8,14,11,0,28.1,1.79,0.03,0.61,69,991,915,0,0,2.3,69,991,0,915,0.284,19,31.4,0.91,0.13,798,1.5,40,2.6
+10823,2023,8,14,11,30,28.7,1.79,0.03,0.61,70,997,947,0,0,2.3,70,997,0,947,0.283,18.35,28.35,0.91,0.13,798,1.5,35,2.5
+10824,2023,8,14,12,0,29.3,1.78,0.029,0.61,69,1001,964,0,0,2.5,69,1001,0,964,0.282,17.95,26.6,0.91,0.13,798,1.5,31,2.4
+10825,2023,8,14,12,30,29.7,1.78,0.029,0.61,69,1002,967,0,0,2.5,69,1002,0,967,0.281,17.52,26.39,0.91,0.13,797,1.4,29,2.4
+10826,2023,8,14,13,0,30.1,1.77,0.028,0.61,69,1000,954,0,0,2.5,69,1000,0,954,0.28,17.21,27.78,0.91,0.13,797,1.4,27,2.4
+10827,2023,8,14,13,30,30.3,1.77,0.028,0.61,68,996,926,0,0,2.5,68,996,0,926,0.28,17.02,30.53,0.91,0.13,797,1.4,28,2.4
+10828,2023,8,14,14,0,30.5,1.76,0.027,0.61,66,990,884,0,0,2.4,66,990,0,884,0.279,16.68,34.31,0.91,0.13,797,1.4,30,2.5
+10829,2023,8,14,14,30,30.4,1.76,0.027,0.61,64,980,828,0,0,2.4,64,980,0,828,0.279,16.77,38.82,0.91,0.13,797,1.4,33,2.5
+10830,2023,8,14,15,0,30.3,1.75,0.027,0.61,62,967,760,0,0,2,62,967,0,760,0.28,16.42,43.8,0.9,0.13,797,1.4,37,2.6
+10831,2023,8,14,15,30,29.9,1.75,0.027,0.61,60,949,681,0,0,2,60,949,0,681,0.28,16.8,49.1,0.9,0.13,797,1.4,42,2.7
+10832,2023,8,14,16,0,29.6,1.74,0.026,0.61,57,925,593,0,0,1.5,57,925,0,593,0.28,16.46,54.6,0.9,0.13,796,1.3,46,2.8
+10833,2023,8,14,16,30,28.9,1.74,0.026,0.61,53,893,497,0,0,1.5,53,893,0,497,0.28,17.14,60.22,0.9,0.13,796,1.3,51,2.9
+10834,2023,8,14,17,0,28.2,1.73,0.026,0.61,49,849,396,0,0,1,49,849,0,396,0.28,17.14,65.9,0.9,0.13,796,1.3,55,3
+10835,2023,8,14,17,30,26.8,1.73,0.026,0.61,44,788,293,0,0,1,44,788,0,293,0.28,18.62,71.59,0.9,0.13,797,1.3,58,2.6
+10836,2023,8,14,18,0,25.4,1.72,0.026,0.61,38,694,191,0,0,1.5,38,694,0,191,0.281,21.08,77.25,0.9,0.13,797,1.3,60,2.1
+10837,2023,8,14,18,30,23.2,1.72,0.026,0.61,28,542,96,0,0,1.5,28,542,0,96,0.281,24.03,82.83,0.91,0.13,797,1.2,63,1.9
+10838,2023,8,14,19,0,21.1,1.71,0.026,0.61,14,206,21,0,0,1.3,14,206,0,21,0.281,26.8,88.19,0.91,0.13,797,1.2,66,1.6
+10839,2023,8,14,19,30,20.4,1.71,0.026,0.61,0,0,0,0,0,1.3,0,0,0,0,0.281,28.01,93.79,0.91,0.13,798,1.2,68,1.7
+10840,2023,8,14,20,0,19.7,1.71,0.026,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.281,26.41,98.97,0.91,0.13,798,1.2,69,1.8
+10841,2023,8,14,20,30,19.1,1.71,0.026,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.281,27.41,103.9,0.91,0.13,798,1.2,72,1.8
+10842,2023,8,14,21,0,18.4,1.71,0.026,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.281,26.38,108.53,0.91,0.13,798,1.2,74,1.7
+10843,2023,8,14,21,30,17.8,1.71,0.026,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.28,27.39,112.78,0.91,0.13,798,1.2,78,1.6
+10844,2023,8,14,22,0,17.2,1.72,0.027,0.61,0,0,0,0,0,-1.7,0,0,0,0,0.28,27.48,116.57,0.91,0.13,798,1.2,82,1.4
+10845,2023,8,14,22,30,16.7,1.72,0.027,0.61,0,0,0,0,0,-1.7,0,0,0,0,0.279,28.36,119.8,0.91,0.13,798,1.2,89,1.3
+10846,2023,8,14,23,0,16.2,1.72,0.028,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.279,29.79,122.37,0.91,0.13,798,1.2,95,1.2
+10847,2023,8,14,23,30,15.9,1.72,0.028,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.279,30.36,124.19,0.91,0.13,798,1.2,105,1.1
+10848,2023,8,15,0,0,15.7,1.72,0.029,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.279,32.25,125.18,0.91,0.13,798,1.2,115,1
+10849,2023,8,15,0,30,15.6,1.72,0.029,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.279,32.46,125.3,0.92,0.13,798,1.3,129,1
+10850,2023,8,15,1,0,15.5,1.72,0.03,0.61,0,0,0,0,0,0.1,0,0,0,0,0.279,34.94,124.54,0.92,0.13,798,1.3,142,1
+10851,2023,8,15,1,30,15.5,1.72,0.03,0.61,0,0,0,0,0,0.1,0,0,0,0,0.279,34.94,122.93,0.92,0.13,798,1.3,156,1
+10852,2023,8,15,2,0,15.5,1.73,0.032,0.61,0,0,0,0,0,1.3,0,0,0,0,0.279,38.2,120.55,0.92,0.13,798,1.3,170,0.9
+10853,2023,8,15,2,30,15.4,1.73,0.032,0.61,0,0,0,0,0,1.3,0,0,0,0,0.279,38.44,117.49,0.92,0.13,798,1.4,182,0.8
+10854,2023,8,15,3,0,15.3,1.73,0.033,0.61,0,0,0,0,0,2.8,0,0,0,0,0.279,43.09,113.84,0.92,0.13,798,1.4,195,0.7
+10855,2023,8,15,3,30,15.2,1.73,0.033,0.61,0,0,0,0,0,2.8,0,0,0,0,0.279,43.37,109.71,0.92,0.13,798,1.4,204,0.7
+10856,2023,8,15,4,0,15.1,1.75,0.035,0.61,0,0,0,0,0,4.3,0,0,0,0,0.279,48.31,105.18,0.92,0.13,799,1.5,213,0.6
+10857,2023,8,15,4,30,15,1.75,0.035,0.61,0,0,0,0,0,4.3,0,0,0,0,0.279,48.63,100.32,0.92,0.13,799,1.5,215,0.6
+10858,2023,8,15,5,0,15,1.76,0.036,0.61,0,0,0,0,0,5.6,0,0,0,0,0.279,53.34,95.21,0.92,0.13,799,1.6,217,0.6
+10859,2023,8,15,5,30,16.3,1.76,0.036,0.61,9,112,10,0,0,5.6,9,112,0,10,0.279,49.09,89.53,0.92,0.13,799,1.6,211,0.7
+10860,2023,8,15,6,0,17.5,1.78,0.038,0.61,27,443,71,0,0,6.8,27,443,0,71,0.279,49.57,84.31,0.93,0.13,799,1.7,204,0.9
+10861,2023,8,15,6,30,19.4,1.78,0.038,0.61,39,623,160,0,0,6.8,39,623,0,160,0.279,44.03,78.77,0.93,0.13,799,1.7,213,1.4
+10862,2023,8,15,7,0,21.4,1.78,0.038,0.61,47,732,259,0,0,8.5,47,732,0,259,0.279,43.46,73.14,0.93,0.13,800,1.7,221,1.8
+10863,2023,8,15,7,30,23.2,1.78,0.038,0.61,53,803,361,0,0,8.5,53,803,0,361,0.279,38.97,67.46,0.93,0.13,800,1.7,224,1.9
+10864,2023,8,15,8,0,25.1,1.79,0.039,0.61,59,852,462,0,0,8.8,59,852,0,462,0.278,35.67,61.78,0.93,0.13,800,1.7,227,2.1
+10865,2023,8,15,8,30,26.3,1.79,0.039,0.61,63,889,558,0,0,8.8,63,889,0,558,0.277,33.18,56.15,0.93,0.13,799,1.8,228,2
+10866,2023,8,15,9,0,27.6,1.8,0.039,0.61,66,917,648,0,0,8,66,917,0,648,0.277,29.03,50.62,0.93,0.13,799,1.8,229,1.9
+10867,2023,8,15,9,30,28.6,1.8,0.039,0.61,69,938,729,0,0,8,69,938,0,729,0.276,27.4,45.28,0.93,0.13,799,1.8,232,1.8
+10868,2023,8,15,10,0,29.6,1.8,0.039,0.61,71,955,800,0,0,7.4,71,955,0,800,0.275,24.76,40.22,0.93,0.13,799,1.8,235,1.7
+10869,2023,8,15,10,30,30.4,1.8,0.039,0.61,72,968,859,0,0,7.4,72,968,0,859,0.275,23.65,35.61,0.93,0.13,799,1.8,237,1.7
+10870,2023,8,15,11,0,31.2,1.92,0.035,0.61,71,978,904,0,0,6.9,71,978,0,904,0.274,21.97,31.65,0.93,0.13,798,1.8,239,1.7
+10871,2023,8,15,11,30,31.8,1.92,0.035,0.61,72,984,936,0,0,6.9,72,984,0,936,0.274,21.24,28.63,0.93,0.13,798,1.8,239,1.7
+10872,2023,8,15,12,0,32.3,1.92,0.034,0.61,73,987,953,0,0,6.7,86,964,0,946,0.273,20.23,26.9,0.93,0.13,797,1.8,239,1.7
+10873,2023,8,15,12,30,32.7,1.92,0.034,0.61,72,987,954,0,0,6.7,138,845,0,893,0.273,19.78,26.71,0.93,0.13,797,1.8,239,1.8
+10874,2023,8,15,13,0,33,1.93,0.034,0.61,72,985,941,0,0,6.4,264,580,0,776,0.273,19.06,28.09,0.93,0.13,797,1.8,238,1.8
+10875,2023,8,15,13,30,33.2,1.93,0.034,0.61,71,979,912,0,0,6.3,140,838,0,860,0.273,18.82,30.83,0.93,0.13,796,1.8,238,1.9
+10876,2023,8,15,14,0,33.4,1.87,0.036,0.61,71,969,869,0,0,6,200,684,0,763,0.273,18.23,34.6,0.93,0.13,796,1.9,238,2
+10877,2023,8,15,14,30,33.2,1.87,0.036,0.61,70,957,813,0,3,6,278,404,0,592,0.273,18.43,39.08,0.94,0.13,796,1.9,237,2.1
+10878,2023,8,15,15,0,33.1,1.85,0.038,0.61,69,941,745,0,3,5.7,315,252,0,496,0.273,18.12,44.05,0.94,0.13,796,1.9,237,2.2
+10879,2023,8,15,15,30,32.7,1.85,0.038,0.61,67,919,666,0,3,5.7,200,490,0,519,0.273,18.5,49.34,0.94,0.13,795,1.9,236,2.3
+10880,2023,8,15,16,0,32.3,1.83,0.041,0.61,64,890,577,0,0,5.4,89,821,0,562,0.273,18.61,54.84,0.94,0.13,795,1.9,235,2.4
+10881,2023,8,15,16,30,31.7,1.83,0.041,0.61,61,851,481,0,0,5.4,69,823,0,475,0.273,19.25,60.45,0.95,0.13,795,2,234,2.5
+10882,2023,8,15,17,0,31,1.78,0.047,0.61,58,799,381,0,0,5.4,58,799,0,381,0.273,20,66.13,0.95,0.13,795,2,233,2.6
+10883,2023,8,15,17,30,29.7,1.78,0.047,0.61,52,725,278,0,0,5.4,56,713,7,278,0.273,21.54,71.83,0.95,0.13,795,2,237,2.3
+10884,2023,8,15,18,0,28.5,1.73,0.054,0.61,45,614,178,1,3,7,91,314,18,159,0.273,25.73,77.49,0.96,0.13,795,2.1,240,1.9
+10885,2023,8,15,18,30,27.1,1.73,0.054,0.61,33,441,86,3,3,7,47,236,54,76,0.274,27.91,83.06,0.96,0.13,795,2.1,249,1.9
+10886,2023,8,15,19,0,25.6,1.69,0.062,0.61,14,139,18,4,3,7.5,11,34,50,12,0.274,31.67,88.42,0.96,0.13,796,2.2,259,1.9
+10887,2023,8,15,19,30,25.1,1.69,0.062,0.61,0,0,0,0,0,7.5,0,0,0,0,0.274,32.62,94.04,0.96,0.13,796,2.3,267,2.2
+10888,2023,8,15,20,0,24.5,1.68,0.065,0.61,0,0,0,0,0,8.5,0,0,0,0,0.274,36.1,99.23,0.96,0.13,796,2.3,274,2.5
+10889,2023,8,15,20,30,24.1,1.68,0.065,0.61,0,0,0,0,0,8.5,0,0,0,0,0.274,36.97,104.17,0.96,0.13,796,2.3,280,2.6
+10890,2023,8,15,21,0,23.6,1.69,0.065,0.61,0,0,0,0,7,9.5,0,0,0,0,0.274,40.81,108.81,0.96,0.13,796,2.4,286,2.7
+10891,2023,8,15,21,30,23.1,1.69,0.065,0.61,0,0,0,0,7,9.5,0,0,0,0,0.274,42.11,113.07,0.96,0.13,797,2.4,290,2.5
+10892,2023,8,15,22,0,22.6,1.68,0.066,0.61,0,0,0,0,7,10.1,0,0,0,0,0.273,45,116.86,0.96,0.13,797,2.4,293,2.3
+10893,2023,8,15,22,30,22.2,1.68,0.066,0.61,0,0,0,0,0,10,0,0,0,0,0.273,46.04,120.1,0.96,0.13,796,2.5,293,1.9
+10894,2023,8,15,23,0,21.7,1.68,0.067,0.61,0,0,0,0,0,10.1,0,0,0,0,0.273,47.53,122.68,0.96,0.13,796,2.5,293,1.6
+10895,2023,8,15,23,30,21.3,1.68,0.067,0.61,0,0,0,0,0,10.1,0,0,0,0,0.273,48.71,124.51,0.96,0.13,796,2.5,292,1.4
+10896,2023,8,16,0,0,20.8,1.68,0.067,0.61,0,0,0,0,0,9.9,0,0,0,0,0.273,49.83,125.5,0.96,0.13,796,2.5,291,1.2
+10897,2023,8,16,0,30,20.5,1.68,0.067,0.61,0,0,0,0,0,9.9,0,0,0,0,0.273,50.75,125.61,0.96,0.13,796,2.5,289,1.1
+10898,2023,8,16,1,0,20.3,1.67,0.067,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,50.83,124.84,0.96,0.13,796,2.5,288,1
+10899,2023,8,16,1,30,20,1.67,0.067,0.61,0,0,0,0,0,9.8,0,0,0,0,0.274,51.78,123.22,0.96,0.13,796,2.5,287,0.9
+10900,2023,8,16,2,0,19.8,1.66,0.068,0.61,0,0,0,0,0,9.7,0,0,0,0,0.274,52.1,120.82,0.96,0.13,796,2.5,286,0.8
+10901,2023,8,16,2,30,19.6,1.66,0.068,0.61,0,0,0,0,0,9.7,0,0,0,0,0.275,52.74,117.74,0.96,0.13,796,2.5,287,0.8
+10902,2023,8,16,3,0,19.4,1.66,0.068,0.61,0,0,0,0,0,9.6,0,0,0,0,0.275,53.25,114.08,0.96,0.13,796,2.5,288,0.7
+10903,2023,8,16,3,30,19.4,1.66,0.068,0.61,0,0,0,0,0,9.6,0,0,0,0,0.276,53.25,109.93,0.96,0.13,796,2.5,292,0.6
+10904,2023,8,16,4,0,19.3,1.65,0.067,0.61,0,0,0,0,0,9.6,0,0,0,0,0.276,53.48,105.38,0.96,0.13,796,2.5,296,0.5
+10905,2023,8,16,4,30,19.3,1.65,0.067,0.61,0,0,0,0,0,9.6,0,0,0,0,0.277,53.48,100.52,0.95,0.13,796,2.5,310,0.4
+10906,2023,8,16,5,0,19.3,1.66,0.064,0.61,0,0,0,0,0,9.7,0,0,0,0,0.277,53.85,95.39,0.95,0.13,797,2.5,325,0.3
+10907,2023,8,16,5,30,20.1,1.66,0.064,0.61,9,80,9,0,0,9.7,9,80,0,9,0.277,51.25,89.69,0.95,0.13,797,2.4,209,0.3
+10908,2023,8,16,6,0,21,1.67,0.061,0.61,30,367,65,0,0,9.6,30,367,0,65,0.278,48.19,84.47,0.95,0.13,797,2.4,94,0.4
+10909,2023,8,16,6,30,22.5,1.67,0.061,0.61,43,556,150,0,0,9.6,43,556,0,150,0.278,43.98,78.94,0.95,0.13,797,2.4,87,0.6
+10910,2023,8,16,7,0,24.1,1.68,0.06,0.61,53,675,247,0,0,9,53,675,0,247,0.279,38.21,73.3,0.95,0.13,797,2.4,80,0.8
+10911,2023,8,16,7,30,25.4,1.68,0.06,0.61,60,753,347,0,0,9,76,674,0,333,0.279,35.37,67.61,0.95,0.13,797,2.4,82,0.9
+10912,2023,8,16,8,0,26.7,1.69,0.059,0.61,66,809,447,0,0,8.3,76,776,0,441,0.279,31.17,61.94,0.95,0.13,797,2.4,83,1
+10913,2023,8,16,8,30,27.6,1.69,0.059,0.61,71,849,542,0,0,8.3,71,849,0,542,0.279,29.58,56.31,0.95,0.13,797,2.4,103,0.9
+10914,2023,8,16,9,0,28.5,1.7,0.059,0.61,75,880,631,0,0,8.2,75,880,0,631,0.279,27.95,50.79,0.95,0.13,797,2.4,124,0.9
+10915,2023,8,16,9,30,29.3,1.7,0.059,0.61,78,902,711,0,0,8.2,78,902,0,711,0.278,26.69,45.46,0.95,0.13,797,2.4,150,1
+10916,2023,8,16,10,0,30,1.69,0.06,0.61,81,919,781,0,0,8.3,81,919,0,781,0.278,25.86,40.43,0.95,0.13,796,2.4,175,1.2
+10917,2023,8,16,10,30,30.6,1.69,0.06,0.61,81,937,841,0,0,8.3,81,937,0,841,0.278,24.99,35.83,0.96,0.13,796,2.4,189,1.4
+10918,2023,8,16,11,0,31.2,1.63,0.047,0.61,79,952,887,0,0,8.5,79,952,0,887,0.278,24.34,31.9,0.96,0.13,796,2.4,202,1.6
+10919,2023,8,16,11,30,31.7,1.63,0.047,0.61,79,958,918,0,0,8.4,134,839,0,868,0.278,23.63,28.91,0.96,0.13,795,2.4,211,1.8
+10920,2023,8,16,12,0,32.1,1.63,0.049,0.61,81,960,935,0,0,8.5,109,912,0,920,0.278,23.13,27.2,0.96,0.13,795,2.4,219,2
+10921,2023,8,16,12,30,32.5,1.63,0.049,0.61,82,960,937,0,0,8.5,82,960,0,937,0.279,22.62,27.03,0.96,0.13,795,2.4,226,2.1
+10922,2023,8,16,13,0,32.8,1.63,0.05,0.61,82,957,924,0,3,8.3,328,286,0,580,0.279,21.96,28.41,0.96,0.13,794,2.4,233,2.2
+10923,2023,8,16,13,30,32.9,1.63,0.05,0.61,80,955,897,0,3,8.3,341,312,0,608,0.279,21.84,31.13,0.97,0.13,794,2.3,238,2.2
+10924,2023,8,16,14,0,33.1,1.62,0.045,0.61,77,950,856,0,0,8,192,701,0,767,0.28,21.15,34.88,0.97,0.13,794,2.3,244,2.3
+10925,2023,8,16,14,30,32.9,1.62,0.045,0.61,76,937,801,0,0,8,150,733,0,717,0.28,21.39,39.35,0.97,0.13,794,2.3,248,2.3
+10926,2023,8,16,15,0,32.8,1.62,0.048,0.61,73,922,733,0,0,7.6,187,618,0,629,0.281,21,44.31,0.97,0.13,793,2.2,252,2.3
+10927,2023,8,16,15,30,32.5,1.62,0.048,0.61,72,900,655,0,3,7.6,246,317,0,451,0.281,21.35,49.59,0.97,0.13,793,2.2,255,2.2
+10928,2023,8,16,16,0,32.1,1.62,0.051,0.61,68,871,567,0,0,7.3,151,614,7,502,0.281,21.42,55.08,0.97,0.13,793,2.2,258,2.1
+10929,2023,8,16,16,30,31.6,1.62,0.051,0.61,65,832,472,0,0,7.3,83,773,0,461,0.281,22.03,60.69,0.97,0.13,793,2.2,260,2
+10930,2023,8,16,17,0,31,1.62,0.055,0.61,61,779,373,0,0,7.1,61,779,7,373,0.282,22.41,66.37,0.97,0.12,793,2.2,262,1.9
+10931,2023,8,16,17,30,30,1.62,0.055,0.61,54,706,271,0,0,7.1,64,642,39,262,0.281,23.72,72.06,0.97,0.12,793,2.2,262,1.4
+10932,2023,8,16,18,0,29,1.61,0.058,0.61,45,597,172,0,3,8.4,90,234,14,140,0.281,27.47,77.72,0.96,0.12,793,2.2,261,1
+10933,2023,8,16,18,30,28.1,1.61,0.058,0.61,32,427,82,5,8,8.4,46,79,79,55,0.281,28.93,83.3,0.96,0.12,793,2.1,256,0.9
+10934,2023,8,16,19,0,27.1,1.61,0.058,0.61,13,134,16,5,8,8.1,9,0,71,9,0.281,30.17,88.66,0.96,0.12,794,2.1,252,0.8
+10935,2023,8,16,19,30,26.5,1.61,0.058,0.61,0,0,0,0,6,8.1,0,0,0,0,0.281,31.24,94.3,0.96,0.12,794,2.1,254,0.9
+10936,2023,8,16,20,0,25.9,1.64,0.055,0.61,0,0,0,0,6,7.8,0,0,0,0,0.281,31.77,99.49,0.96,0.12,794,2.1,257,1
+10937,2023,8,16,20,30,25.1,1.64,0.055,0.61,0,0,0,0,6,7.8,0,0,0,0,0.28,33.31,104.44,0.96,0.12,794,2.1,260,1.1
+10938,2023,8,16,21,0,24.4,1.67,0.052,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28,34.77,109.09,0.96,0.12,794,2.1,263,1.3
+10939,2023,8,16,21,30,23.8,1.67,0.052,0.61,0,0,0,0,3,7.8,0,0,0,0,0.28,36.04,113.36,0.96,0.12,794,2.1,265,1.3
+10940,2023,8,16,22,0,23.2,1.69,0.049,0.61,0,0,0,0,3,7.7,0,0,0,0,0.279,37.11,117.16,0.96,0.12,794,2.1,267,1.4
+10941,2023,8,16,22,30,22.5,1.69,0.049,0.61,0,0,0,0,0,7.7,0,0,0,0,0.279,38.71,120.41,0.95,0.12,794,2,269,1.3
+10942,2023,8,16,23,0,21.8,1.72,0.046,0.61,0,0,0,0,0,7.6,0,0,0,0,0.279,40.05,123,0.95,0.12,794,2,271,1.3
+10943,2023,8,16,23,30,21.2,1.72,0.046,0.61,0,0,0,0,0,7.6,0,0,0,0,0.278,41.54,124.83,0.95,0.12,794,2,272,1.2
+10944,2023,8,17,0,0,20.6,1.75,0.043,0.61,0,0,0,0,0,7.6,0,0,0,0,0.278,42.91,125.82,0.95,0.12,794,2,273,1.2
+10945,2023,8,17,0,30,20,1.75,0.043,0.61,0,0,0,0,3,7.5,0,0,0,0,0.278,44.52,125.93,0.95,0.12,794,1.9,273,1.2
+10946,2023,8,17,1,0,19.4,1.76,0.041,0.61,0,0,0,0,3,7.5,0,0,0,0,0.278,46.19,125.15,0.95,0.12,794,1.9,273,1.1
+10947,2023,8,17,1,30,19,1.76,0.041,0.61,0,0,0,0,0,7.5,0,0,0,0,0.278,47.35,123.51,0.95,0.12,794,1.9,272,1
+10948,2023,8,17,2,0,18.6,1.76,0.041,0.61,0,0,0,0,0,7.7,0,0,0,0,0.277,49.02,121.1,0.95,0.12,794,1.9,271,0.9
+10949,2023,8,17,2,30,18.4,1.76,0.041,0.61,0,0,0,0,0,7.7,0,0,0,0,0.277,49.64,118,0.95,0.12,794,1.9,267,0.7
+10950,2023,8,17,3,0,18.2,1.76,0.041,0.61,0,0,0,0,0,7.9,0,0,0,0,0.277,51.13,114.32,0.95,0.12,794,1.9,262,0.6
+10951,2023,8,17,3,30,17.9,1.76,0.041,0.61,0,0,0,0,0,7.9,0,0,0,0,0.277,52.1,110.16,0.95,0.12,794,1.9,232,0.5
+10952,2023,8,17,4,0,17.7,1.76,0.043,0.61,0,0,0,0,0,8.2,0,0,0,0,0.277,53.85,105.59,0.95,0.12,794,1.9,203,0.4
+10953,2023,8,17,4,30,17.4,1.76,0.043,0.61,0,0,0,0,0,8.2,0,0,0,0,0.277,54.88,100.71,0.95,0.12,794,1.9,182,0.5
+10954,2023,8,17,5,0,17.2,1.77,0.044,0.61,0,0,0,0,0,8.5,0,0,0,0,0.277,56.52,95.57,0.95,0.12,795,2,160,0.6
+10955,2023,8,17,5,30,18.2,1.77,0.044,0.61,7,72,7,0,0,8.5,7,72,0,7,0.277,53.08,89.84,0.95,0.12,795,2,154,0.9
+10956,2023,8,17,6,0,19.3,1.79,0.043,0.61,27,409,65,0,0,8.6,27,409,0,65,0.277,50,84.64,0.95,0.12,795,2,149,1.2
+10957,2023,8,17,6,30,21.2,1.79,0.043,0.61,40,599,153,0,0,8.6,40,599,0,153,0.277,44.48,79.1,0.95,0.12,795,2,161,1.5
+10958,2023,8,17,7,0,23.1,1.82,0.042,0.61,48,714,251,0,0,8.3,48,714,0,251,0.278,38.83,73.45,0.95,0.12,795,2,173,1.8
+10959,2023,8,17,7,30,24.8,1.82,0.042,0.61,55,789,353,0,0,8.3,55,789,0,353,0.277,35.08,67.77,0.95,0.12,795,2,181,2.1
+10960,2023,8,17,8,0,26.4,1.83,0.041,0.61,60,843,454,0,0,7.8,60,843,0,454,0.277,30.75,62.1,0.95,0.12,795,1.9,189,2.3
+10961,2023,8,17,8,30,27.7,1.83,0.041,0.61,63,881,550,0,0,7.8,63,881,0,550,0.276,28.5,56.48,0.95,0.12,795,1.9,193,2.3
+10962,2023,8,17,9,0,28.9,1.85,0.041,0.61,67,910,640,0,0,7.3,67,910,0,640,0.275,25.71,50.97,0.95,0.12,795,1.9,197,2.4
+10963,2023,8,17,9,30,29.9,1.85,0.041,0.61,70,931,721,0,0,7.3,70,931,0,721,0.274,24.27,45.65,0.95,0.12,795,1.9,200,2.5
+10964,2023,8,17,10,0,30.9,1.86,0.041,0.61,72,948,791,0,0,6.9,72,948,0,791,0.274,22.29,40.63,0.95,0.12,795,1.9,202,2.6
+10965,2023,8,17,10,30,31.7,1.86,0.041,0.61,72,962,850,0,0,6.9,72,962,0,850,0.273,21.28,36.06,0.95,0.12,794,1.9,204,2.7
+10966,2023,8,17,11,0,32.5,1.87,0.037,0.61,73,972,896,0,0,6.7,73,972,0,896,0.272,20.03,32.15,0.95,0.12,794,1.9,206,2.9
+10967,2023,8,17,11,30,33,1.87,0.037,0.61,74,977,927,0,0,6.7,74,977,0,927,0.271,19.47,29.2,0.95,0.12,794,2,208,3
+10968,2023,8,17,12,0,33.5,1.88,0.039,0.61,75,979,943,0,0,6.5,75,979,0,943,0.271,18.69,27.51,0.95,0.12,793,2,210,3.2
+10969,2023,8,17,12,30,33.8,1.88,0.039,0.61,75,979,945,0,0,6.5,75,979,0,945,0.271,18.38,27.35,0.95,0.12,793,2,212,3.3
+10970,2023,8,17,13,0,34,1.88,0.04,0.61,75,976,931,0,0,6.3,75,976,0,931,0.27,17.98,28.73,0.95,0.12,793,2,214,3.4
+10971,2023,8,17,13,30,34.1,1.88,0.04,0.61,76,969,903,0,0,6.3,76,969,0,903,0.27,17.86,31.44,0.95,0.12,792,2,215,3.5
+10972,2023,8,17,14,0,34.1,1.87,0.045,0.61,76,958,859,0,0,6.1,76,958,0,859,0.27,17.64,35.18,0.95,0.12,792,2,215,3.5
+10973,2023,8,17,14,30,33.9,1.87,0.045,0.61,75,945,803,0,0,6.1,130,847,0,782,0.271,17.84,39.63,0.95,0.12,792,2,216,3.5
+10974,2023,8,17,15,0,33.6,1.84,0.048,0.61,73,926,733,0,0,6,107,859,0,719,0.271,18.04,44.57,0.95,0.12,792,2.1,217,3.5
+10975,2023,8,17,15,30,33.2,1.84,0.048,0.61,71,904,654,0,0,6,73,896,14,651,0.271,18.42,49.84,0.95,0.12,791,2.1,218,3.5
+10976,2023,8,17,16,0,32.7,1.81,0.051,0.61,68,874,565,0,8,6.1,199,334,18,389,0.271,19.06,55.32,0.95,0.12,791,2.1,219,3.6
+10977,2023,8,17,16,30,31.9,1.81,0.051,0.61,64,834,469,0,8,6.1,130,31,0,145,0.271,19.94,60.93,0.95,0.12,791,2.2,221,3.5
+10978,2023,8,17,17,0,31.2,1.78,0.054,0.61,59,780,369,0,8,6.4,82,596,50,319,0.272,21.16,66.61,0.96,0.14,791,2.2,222,3.5
+10979,2023,8,17,17,30,30,1.78,0.054,0.61,53,707,268,0,6,6.4,63,480,36,209,0.272,22.66,72.3,0.96,0.14,791,2.2,224,2.9
+10980,2023,8,17,18,0,28.8,1.77,0.056,0.61,44,595,168,0,6,7.6,56,216,0,101,0.272,26.44,77.97,0.96,0.14,791,2.2,226,2.3
+10981,2023,8,17,18,30,27.2,1.77,0.056,0.61,32,422,79,6,6,7.6,37,62,86,44,0.272,29.01,83.55,0.96,0.14,791,2.3,228,1.7
+10982,2023,8,17,19,0,25.5,1.77,0.055,0.61,12,130,15,5,6,8.2,7,0,71,7,0.272,33.43,88.89,0.96,0.14,792,2.3,230,1.1
+10983,2023,8,17,19,30,25,1.77,0.055,0.61,0,0,0,0,6,8.2,0,0,0,0,0.273,34.43,94.56,0.96,0.14,792,2.3,233,1.1
+10984,2023,8,17,20,0,24.5,1.77,0.054,0.61,0,0,0,0,6,8.4,0,0,0,0,0.273,35.86,99.76,0.96,0.14,792,2.4,235,1
+10985,2023,8,17,20,30,24.2,1.77,0.054,0.61,0,0,0,0,6,8.4,0,0,0,0,0.274,36.51,104.72,0.97,0.14,792,2.4,235,1
+10986,2023,8,17,21,0,23.8,1.75,0.054,0.61,0,0,0,0,6,8.6,0,0,0,0,0.274,38.02,109.37,0.97,0.14,792,2.4,236,1
+10987,2023,8,17,21,30,23.5,1.75,0.054,0.61,0,0,0,0,6,8.6,0,0,0,0,0.275,38.71,113.65,0.97,0.14,792,2.5,231,1
+10988,2023,8,17,22,0,23.1,1.7,0.056,0.61,0,0,0,0,7,9.1,0,0,0,0,0.275,40.97,117.47,0.97,0.14,792,2.6,226,1
+10989,2023,8,17,22,30,22.9,1.7,0.056,0.61,0,0,0,0,7,9.1,0,0,0,0,0.275,41.47,120.73,0.97,0.14,792,2.7,215,1.2
+10990,2023,8,17,23,0,22.7,1.65,0.062,0.61,0,0,0,0,7,9.9,0,0,0,0,0.276,44.34,123.32,0.97,0.14,792,2.7,204,1.4
+10991,2023,8,17,23,30,22.5,1.65,0.062,0.61,0,0,0,0,7,9.9,0,0,0,0,0.276,44.88,125.15,0.97,0.14,792,2.8,198,2
+10992,2023,8,18,0,0,22.2,1.62,0.068,0.61,0,0,0,0,7,11.1,0,0,0,0,0.276,49.4,126.14,0.97,0.14,792,2.9,193,2.6
+10993,2023,8,18,0,30,21.6,1.62,0.068,0.61,0,0,0,0,7,11.1,0,0,0,0,0.276,51.23,126.25,0.97,0.14,792,3,191,3.1
+10994,2023,8,18,1,0,21.1,1.62,0.074,0.61,0,0,0,0,8,12.3,0,0,0,0,0.277,57.26,125.45,0.97,0.14,793,3,190,3.6
+10995,2023,8,18,1,30,20.3,1.62,0.074,0.61,0,0,0,0,8,12.3,0,0,0,0,0.277,60.14,123.8,0.97,0.14,793,3.1,190,4.1
+10996,2023,8,18,2,0,19.5,1.61,0.079,0.61,0,0,0,0,8,13.5,0,0,0,0,0.278,68.17,121.38,0.98,0.14,793,3.1,190,4.7
+10997,2023,8,18,2,30,18.8,1.61,0.079,0.61,0,0,0,0,8,13.5,0,0,0,0,0.279,71.2,118.26,0.98,0.14,793,3.2,190,4.6
+10998,2023,8,18,3,0,18.1,1.58,0.088,0.61,0,0,0,0,8,14.2,0,0,0,0,0.279,78.21,114.56,0.98,0.14,793,3.2,191,4.4
+10999,2023,8,18,3,30,17.8,1.58,0.088,0.61,0,0,0,0,8,14.2,0,0,0,0,0.28,79.69,110.38,0.98,0.14,793,3.2,189,4.1
+11000,2023,8,18,4,0,17.4,1.53,0.098,0.61,0,0,0,0,3,14.8,0,0,0,0,0.281,84.61,105.8,0.98,0.14,793,3.2,186,3.7
+11001,2023,8,18,4,30,17.3,1.53,0.098,0.61,0,0,0,0,0,14.8,0,0,0,0,0.282,85.15,100.91,0.98,0.14,793,3.2,182,3.6
+11002,2023,8,18,5,0,17.2,1.5,0.098,0.61,0,0,0,0,3,15,0,0,0,0,0.283,87.05,95.76,0.98,0.14,793,3.2,178,3.5
+11003,2023,8,18,5,30,17.5,1.5,0.098,0.61,6,40,6,4,3,15,2,0,50,2,0.284,85.42,90,0.98,0.14,793,3.1,177,3.7
+11004,2023,8,18,6,0,17.8,1.5,0.088,0.61,31,291,57,6,3,15,33,1,86,33,0.286,83.68,84.8,0.98,0.14,793,3.1,175,3.9
+11005,2023,8,18,6,30,18.4,1.5,0.088,0.61,47,494,139,1,5,15,45,1,11,45,0.287,80.59,79.26,0.97,0.14,793,3,178,4
+11006,2023,8,18,7,0,19.1,1.51,0.079,0.61,58,628,235,0,5,14.7,100,22,0,106,0.288,75.58,73.61,0.97,0.14,794,2.9,181,4.1
+11007,2023,8,18,7,30,20,1.51,0.079,0.61,65,715,334,0,3,14.7,173,200,0,248,0.288,71.49,67.93,0.97,0.14,794,2.9,189,4.2
+11008,2023,8,18,8,0,20.9,1.54,0.075,0.61,72,778,434,0,0,14.1,109,670,0,421,0.288,64.98,62.26,0.97,0.14,794,2.8,198,4.3
+11009,2023,8,18,8,30,21.8,1.54,0.075,0.61,77,822,529,0,0,14.1,89,792,0,525,0.288,61.51,56.64,0.97,0.14,794,2.8,205,4.5
+11010,2023,8,18,9,0,22.8,1.55,0.073,0.61,81,856,618,0,0,13.3,94,828,7,614,0.288,55.03,51.14,0.97,0.14,794,2.7,212,4.6
+11011,2023,8,18,9,30,23.7,1.55,0.073,0.61,85,882,699,0,0,13.3,85,882,0,699,0.288,52.13,45.84,0.97,0.14,794,2.7,214,4.7
+11012,2023,8,18,10,0,24.5,1.58,0.069,0.61,86,904,770,0,0,12.4,107,862,0,759,0.288,46.86,40.84,0.97,0.14,794,2.7,217,4.7
+11013,2023,8,18,10,30,25.3,1.58,0.069,0.61,84,924,829,0,0,12.4,84,924,0,829,0.288,44.69,36.29,0.97,0.14,794,2.7,219,4.8
+11014,2023,8,18,11,0,26.1,1.6,0.052,0.61,81,942,876,0,0,11.4,81,942,0,876,0.288,39.98,32.41,0.97,0.14,794,2.7,220,4.8
+11015,2023,8,18,11,30,26.6,1.6,0.052,0.61,83,948,908,0,0,11.4,83,948,0,908,0.288,38.77,29.48,0.97,0.14,793,2.7,220,5
+11016,2023,8,18,12,0,27.2,1.6,0.052,0.61,82,952,924,0,0,10.6,108,887,0,892,0.288,35.33,27.83,0.97,0.14,793,2.6,220,5.1
+11017,2023,8,18,12,30,27.1,1.6,0.052,0.61,84,951,926,0,0,10.6,173,760,0,846,0.287,35.54,27.67,0.98,0.14,793,2.6,219,5.2
+11018,2023,8,18,13,0,27.1,1.59,0.055,0.61,84,947,912,0,6,10.1,356,303,0,621,0.287,34.45,29.05,0.98,0.14,793,2.6,218,5.4
+11019,2023,8,18,13,30,26.6,1.59,0.055,0.61,81,944,884,0,6,10.1,398,83,0,469,0.286,35.47,31.75,0.98,0.14,793,2.7,216,5.3
+11020,2023,8,18,14,0,26.1,1.6,0.047,0.61,77,939,842,0,6,10.1,310,43,0,345,0.286,36.67,35.47,0.98,0.14,793,2.7,215,5.3
+11021,2023,8,18,14,30,25.7,1.6,0.047,0.61,76,927,787,0,6,10.1,146,3,0,148,0.286,37.54,39.91,0.98,0.14,793,2.6,214,5.1
+11022,2023,8,18,15,0,25.3,1.62,0.049,0.61,74,910,719,0,6,10.4,118,3,0,120,0.285,39.11,44.84,0.98,0.14,793,2.6,213,4.8
+11023,2023,8,18,15,30,24.9,1.62,0.049,0.61,72,887,641,0,7,10.4,173,520,29,507,0.285,40.05,50.1,0.97,0.14,793,2.6,213,4.6
+11024,2023,8,18,16,0,24.6,1.63,0.05,0.61,68,858,553,0,7,10.5,143,650,25,511,0.285,41.19,55.57,0.97,0.14,793,2.6,214,4.3
+11025,2023,8,18,16,30,24.2,1.63,0.05,0.61,64,819,459,0,7,10.5,182,324,7,338,0.284,42.18,61.18,0.97,0.14,793,2.6,213,3.9
+11026,2023,8,18,17,0,23.8,1.62,0.054,0.61,60,764,360,0,3,10.8,143,438,21,315,0.284,44.01,66.85,0.97,0.13,793,2.7,213,3.5
+11027,2023,8,18,17,30,23,1.62,0.054,0.61,52,690,259,0,3,10.8,122,354,0,228,0.284,46.18,72.54,0.97,0.13,793,2.7,210,2.8
+11028,2023,8,18,18,0,22.3,1.64,0.055,0.61,43,578,161,0,3,11.9,73,300,0,134,0.283,51.61,78.21,0.97,0.13,793,2.7,208,2
+11029,2023,8,18,18,30,21.2,1.64,0.055,0.61,30,404,74,6,7,11.9,38,63,86,45,0.283,55.18,83.79,0.97,0.13,793,2.7,205,1.5
+11030,2023,8,18,19,0,20.2,1.68,0.052,0.61,10,101,12,5,6,12.5,7,0,71,7,0.283,61.17,89.12,0.97,0.13,793,2.7,201,1.1
+11031,2023,8,18,19,30,19.7,1.68,0.052,0.61,0,0,0,0,7,12.5,0,0,0,0,0.283,63.17,94.82,0.97,0.13,794,2.6,200,1.1
+11032,2023,8,18,20,0,19.1,1.73,0.048,0.61,0,0,0,0,5,12.5,0,0,0,0,0.284,65.36,100.03,0.97,0.13,794,2.6,199,1
+11033,2023,8,18,20,30,18.7,1.73,0.048,0.61,0,0,0,0,4,12.5,0,0,0,0,0.284,67.01,104.99,0.97,0.13,794,2.6,198,1
+11034,2023,8,18,21,0,18.2,1.76,0.045,0.61,0,0,0,0,4,12.4,0,0,0,0,0.284,68.86,109.66,0.96,0.13,794,2.6,198,1
+11035,2023,8,18,21,30,17.9,1.76,0.045,0.61,0,0,0,0,4,12.4,0,0,0,0,0.284,70.17,113.95,0.96,0.13,794,2.6,197,1
+11036,2023,8,18,22,0,17.6,1.78,0.044,0.61,0,0,0,0,8,12.4,0,0,0,0,0.284,71.41,117.78,0.96,0.13,794,2.5,196,1
+11037,2023,8,18,22,30,17.3,1.78,0.044,0.61,0,0,0,0,7,12.4,0,0,0,0,0.283,72.77,121.04,0.96,0.13,794,2.5,194,1
+11038,2023,8,18,23,0,17,1.8,0.042,0.61,0,0,0,0,6,12.3,0,0,0,0,0.283,73.78,123.64,0.96,0.13,794,2.5,192,0.9
+11039,2023,8,18,23,30,16.7,1.8,0.042,0.61,0,0,0,0,6,12.3,0,0,0,0,0.283,75.19,125.48,0.96,0.13,794,2.5,190,0.9
+11040,2023,8,19,0,0,16.4,1.8,0.042,0.61,0,0,0,0,7,12.2,0,0,0,0,0.283,75.99,126.47,0.96,0.13,794,2.4,187,0.9
+11041,2023,8,19,0,30,16.2,1.8,0.042,0.61,0,0,0,0,7,12.2,0,0,0,0,0.282,76.96,126.57,0.96,0.13,794,2.4,186,0.9
+11042,2023,8,19,1,0,16,1.8,0.042,0.61,0,0,0,0,8,12,0,0,0,0,0.282,77.1,125.76,0.96,0.13,794,2.4,184,0.9
+11043,2023,8,19,1,30,15.7,1.8,0.042,0.61,0,0,0,0,7,12,0,0,0,0,0.282,78.58,124.1,0.96,0.13,794,2.4,182,0.9
+11044,2023,8,19,2,0,15.5,1.79,0.044,0.61,0,0,0,0,3,11.8,0,0,0,0,0.282,78.53,121.65,0.96,0.13,794,2.4,180,1
+11045,2023,8,19,2,30,15.3,1.79,0.044,0.61,0,0,0,0,8,11.8,0,0,0,0,0.282,79.54,118.52,0.96,0.13,794,2.4,176,0.9
+11046,2023,8,19,3,0,15.1,1.78,0.045,0.61,0,0,0,0,8,11.5,0,0,0,0,0.282,79.05,114.81,0.96,0.13,794,2.4,171,0.9
+11047,2023,8,19,3,30,15,1.78,0.045,0.61,0,0,0,0,5,11.5,0,0,0,0,0.282,79.55,110.61,0.96,0.13,794,2.4,162,0.9
+11048,2023,8,19,4,0,14.8,1.77,0.046,0.61,0,0,0,0,0,11.1,0,0,29,0,0.282,78.6,106.01,0.96,0.13,794,2.4,152,0.9
+11049,2023,8,19,4,30,14.7,1.77,0.046,0.61,0,0,0,0,0,11.1,0,0,0,0,0.282,79.11,101.1,0.96,0.13,794,2.4,144,0.9
+11050,2023,8,19,5,0,14.6,1.76,0.046,0.61,0,0,0,0,7,10.8,0,0,0,0,0.283,77.84,95.95,0.96,0.13,794,2.4,135,0.9
+11051,2023,8,19,5,30,15.7,1.76,0.046,0.61,6,60,6,3,7,10.8,3,0,43,3,0.282,72.64,90.15,0.96,0.13,795,2.4,135,1.3
+11052,2023,8,19,6,0,16.9,1.73,0.049,0.61,26,371,59,1,0,10.8,28,327,18,57,0.282,67.45,84.97,0.96,0.13,795,2.4,134,1.6
+11053,2023,8,19,6,30,18.5,1.73,0.049,0.61,40,562,143,0,0,10.8,40,562,0,143,0.282,61,79.42,0.96,0.13,795,2.4,146,1.6
+11054,2023,8,19,7,0,20.1,1.7,0.053,0.61,51,677,240,0,0,10.6,51,677,0,240,0.282,54.53,73.78,0.96,0.13,795,2.5,158,1.7
+11055,2023,8,19,7,30,22,1.7,0.053,0.61,58,755,340,0,0,10.7,58,755,0,340,0.281,48.54,68.09,0.96,0.13,795,2.5,171,2.2
+11056,2023,8,19,8,0,24,1.69,0.055,0.61,64,808,438,0,0,10,64,808,0,438,0.28,41.07,62.42,0.96,0.13,795,2.5,184,2.7
+11057,2023,8,19,8,30,24.9,1.69,0.055,0.61,70,848,534,0,0,10,70,848,0,534,0.279,38.92,56.81,0.96,0.13,795,2.5,187,3
+11058,2023,8,19,9,0,25.9,1.68,0.056,0.61,73,878,622,0,0,9.9,73,878,0,622,0.278,36.41,51.32,0.96,0.13,795,2.5,191,3.3
+11059,2023,8,19,9,30,26.5,1.68,0.056,0.61,78,900,703,0,0,9.9,111,834,0,690,0.278,35.15,46.03,0.96,0.13,795,2.5,194,3.6
+11060,2023,8,19,10,0,27.1,1.66,0.059,0.61,81,917,773,0,0,9.8,81,917,0,773,0.277,33.88,41.05,0.96,0.13,794,2.5,197,4
+11061,2023,8,19,10,30,27.5,1.66,0.059,0.61,80,937,833,0,0,9.8,80,937,0,833,0.277,33.1,36.52,0.96,0.13,794,2.5,200,4.3
+11062,2023,8,19,11,0,28,1.66,0.042,0.61,76,956,881,0,0,9.8,76,956,0,881,0.276,32.03,32.67,0.97,0.13,794,2.4,203,4.6
+11063,2023,8,19,11,30,28.3,1.66,0.042,0.61,75,965,913,0,0,9.8,75,965,0,913,0.275,31.48,29.77,0.96,0.13,794,2.4,205,4.7
+11064,2023,8,19,12,0,28.7,1.67,0.037,0.61,74,972,931,0,0,9.6,74,972,0,931,0.274,30.32,28.14,0.96,0.13,794,2.3,207,4.9
+11065,2023,8,19,12,30,29.1,1.67,0.037,0.61,73,976,935,0,0,9.6,73,976,0,935,0.273,29.63,28,0.96,0.13,794,2.2,207,4.9
+11066,2023,8,19,13,0,29.4,1.67,0.032,0.61,72,977,923,0,0,9.1,72,977,0,923,0.272,28.24,29.38,0.95,0.13,793,2.1,208,4.9
+11067,2023,8,19,13,30,29.6,1.67,0.032,0.61,69,976,896,0,0,9.1,137,831,7,841,0.272,27.92,32.07,0.95,0.13,793,2.1,208,4.9
+11068,2023,8,19,14,0,29.7,1.69,0.026,0.61,65,972,854,0,7,8.6,206,653,21,736,0.271,26.81,35.77,0.95,0.13,793,2,208,4.9
+11069,2023,8,19,14,30,29.6,1.69,0.026,0.61,64,961,798,0,6,8.6,325,97,0,399,0.27,26.96,40.2,0.96,0.13,793,2,210,5
+11070,2023,8,19,15,0,29.4,1.68,0.026,0.61,62,946,730,0,8,8.2,212,552,0,602,0.27,26.55,45.11,0.96,0.13,793,2,211,5
+11071,2023,8,19,15,30,28.9,1.68,0.026,0.61,60,926,651,0,0,8.2,64,913,0,646,0.269,27.33,50.36,0.96,0.13,793,2,212,4.9
+11072,2023,8,19,16,0,28.5,1.66,0.027,0.61,57,900,562,0,0,8.1,57,900,0,562,0.269,27.68,55.83,0.96,0.13,793,2,214,4.9
+11073,2023,8,19,16,30,27.8,1.66,0.027,0.61,54,866,468,0,8,8.1,85,784,14,460,0.268,28.83,61.43,0.95,0.13,793,2,216,4.6
+11074,2023,8,19,17,0,27.1,1.64,0.026,0.61,49,819,368,0,8,8.1,116,588,21,345,0.268,30.22,67.1,0.95,0.13,793,2,218,4.3
+11075,2023,8,19,17,30,25.8,1.64,0.026,0.61,44,752,266,0,0,8.1,64,645,7,255,0.268,32.61,72.79,0.95,0.13,793,2,221,3.2
+11076,2023,8,19,18,0,24.5,1.64,0.025,0.61,36,650,166,0,0,9.7,36,650,0,166,0.268,39.18,78.46,0.95,0.13,793,1.9,223,2.1
+11077,2023,8,19,18,30,23.1,1.64,0.025,0.61,27,471,76,5,8,9.7,46,184,75,65,0.269,42.66,84.04,0.95,0.13,794,1.9,226,1.6
+11078,2023,8,19,19,0,21.6,1.64,0.028,0.61,10,123,11,1,0,10.6,8,74,14,9,0.269,49.43,89.35,0.95,0.13,794,2,228,1
+11079,2023,8,19,19,30,21.4,1.64,0.028,0.61,0,0,0,0,0,10.6,0,0,0,0,0.269,50.03,95.08,0.96,0.13,794,2,216,0.9
+11080,2023,8,19,20,0,21.3,1.63,0.035,0.61,0,0,0,0,0,10.3,0,0,0,0,0.269,49.61,100.3,0.96,0.13,794,2.1,203,0.8
+11081,2023,8,19,20,30,20.7,1.63,0.035,0.61,0,0,0,0,0,10.4,0,0,0,0,0.269,51.53,105.28,0.97,0.13,795,2.2,171,0.9
+11082,2023,8,19,21,0,20.2,1.61,0.041,0.61,0,0,0,0,0,10.1,0,0,0,0,0.269,52.17,109.95,0.97,0.13,795,2.3,139,1
+11083,2023,8,19,21,30,19.9,1.61,0.041,0.61,0,0,0,0,0,10.1,0,0,0,0,0.27,53.14,114.26,0.97,0.13,795,2.3,125,1.4
+11084,2023,8,19,22,0,19.6,1.59,0.045,0.61,0,0,0,0,8,9.7,0,0,0,0,0.27,52.64,118.09,0.97,0.13,795,2.3,111,1.7
+11085,2023,8,19,22,30,19.6,1.59,0.045,0.61,0,0,0,0,8,9.7,0,0,0,0,0.27,52.64,121.37,0.97,0.13,795,2.4,110,2.4
+11086,2023,8,19,23,0,19.6,1.57,0.051,0.61,0,0,0,0,7,9.6,0,0,0,0,0.27,52.49,123.97,0.97,0.13,795,2.4,109,3
+11087,2023,8,19,23,30,19.3,1.57,0.051,0.61,0,0,0,0,7,9.6,0,0,0,0,0.269,53.48,125.81,0.97,0.13,795,2.4,109,3.3
+11088,2023,8,20,0,0,19.1,1.54,0.059,0.61,0,0,0,0,7,10,0,0,0,0,0.268,55.44,126.8,0.98,0.13,795,2.5,110,3.5
+11089,2023,8,20,0,30,18.8,1.54,0.059,0.61,0,0,0,0,7,10,0,0,0,0,0.268,56.49,126.89,0.98,0.13,795,2.5,110,3.4
+11090,2023,8,20,1,0,18.6,1.54,0.067,0.61,0,0,0,0,7,10.3,0,0,0,0,0.267,58.55,126.08,0.98,0.13,794,2.5,111,3.2
+11091,2023,8,20,1,30,18.3,1.54,0.067,0.61,0,0,0,0,7,10.3,0,0,0,0,0.267,59.65,124.4,0.97,0.13,794,2.5,109,2.9
+11092,2023,8,20,2,0,17.9,1.56,0.068,0.61,0,0,0,0,7,10.5,0,0,0,0,0.267,62,121.93,0.97,0.13,794,2.5,107,2.6
+11093,2023,8,20,2,30,17.5,1.56,0.068,0.61,0,0,0,0,7,10.5,0,0,0,0,0.267,63.57,118.78,0.97,0.13,794,2.4,104,2.4
+11094,2023,8,20,3,0,17.1,1.57,0.062,0.61,0,0,0,0,7,10.6,0,0,0,0,0.267,65.48,115.05,0.97,0.13,794,2.4,102,2.1
+11095,2023,8,20,3,30,16.8,1.57,0.062,0.61,0,0,0,0,7,10.6,0,0,0,0,0.267,66.73,110.83,0.96,0.13,794,2.3,100,2
+11096,2023,8,20,4,0,16.5,1.54,0.055,0.61,0,0,0,0,7,10.6,0,0,0,0,0.268,67.89,106.23,0.96,0.13,794,2.2,99,1.8
+11097,2023,8,20,4,30,16.2,1.54,0.055,0.61,0,0,0,0,7,10.5,0,0,0,0,0.268,69.2,101.3,0.96,0.13,794,2.2,99,1.7
+11098,2023,8,20,5,0,16,1.52,0.048,0.61,0,0,0,0,8,10.4,0,0,0,0,0.268,69.44,96.13,0.95,0.13,794,2.1,98,1.6
+11099,2023,8,20,5,30,16.5,1.52,0.048,0.61,6,60,6,3,8,10.4,3,0,43,3,0.268,67.27,90.3,0.95,0.13,794,2,101,1.8
+11100,2023,8,20,6,0,17.1,1.51,0.043,0.61,26,383,59,6,7,10.1,42,27,86,44,0.269,63.34,85.13,0.95,0.13,794,1.8,104,2
+11101,2023,8,20,6,30,18.7,1.51,0.043,0.61,38,590,145,0,7,10.1,91,157,0,119,0.27,57.29,79.59,0.94,0.13,794,1.8,130,2.3
+11102,2023,8,20,7,0,20.3,1.51,0.041,0.61,47,715,245,0,7,8.4,127,251,0,196,0.27,46.27,73.94,0.94,0.13,794,1.7,156,2.6
+11103,2023,8,20,7,30,22.3,1.51,0.041,0.61,54,793,348,0,7,8.4,154,365,0,289,0.27,41,68.25,0.94,0.13,795,1.7,175,3.6
+11104,2023,8,20,8,0,24.4,1.51,0.041,0.61,59,847,449,0,7,4.5,185,398,0,368,0.271,27.64,62.59,0.94,0.13,795,1.7,193,4.7
+11105,2023,8,20,8,30,25.5,1.51,0.041,0.61,64,884,546,0,7,4.5,194,466,0,448,0.27,25.89,56.98,0.94,0.13,795,1.7,197,4.9
+11106,2023,8,20,9,0,26.7,1.52,0.043,0.61,69,911,636,0,7,4.2,238,418,0,498,0.27,23.56,51.5,0.94,0.13,795,1.7,201,5.1
+11107,2023,8,20,9,30,27.6,1.52,0.043,0.61,72,931,716,0,7,4.2,268,427,0,563,0.27,22.35,46.22,0.95,0.13,795,1.8,203,5.2
+11108,2023,8,20,10,0,28.6,1.52,0.045,0.61,75,947,787,0,7,5.1,290,429,0,612,0.27,22.47,41.26,0.95,0.13,795,1.8,204,5.4
+11109,2023,8,20,10,30,29.3,1.52,0.045,0.61,76,961,846,0,7,5.1,309,435,0,657,0.27,21.58,36.76,0.95,0.13,795,1.8,205,5.5
+11110,2023,8,20,11,0,30.1,1.49,0.039,0.61,75,972,891,0,7,6.2,326,438,0,694,0.27,22.16,32.93,0.95,0.13,795,1.8,206,5.6
+11111,2023,8,20,11,30,30.7,1.49,0.039,0.61,75,977,921,0,7,6.1,281,550,0,757,0.27,21.38,30.07,0.95,0.13,794,1.9,207,5.7
+11112,2023,8,20,12,0,31.2,1.49,0.039,0.61,76,980,938,0,7,6.8,212,683,0,812,0.27,21.77,28.46,0.95,0.13,794,1.9,207,5.8
+11113,2023,8,20,12,30,31.6,1.49,0.039,0.61,76,980,939,0,7,6.8,175,759,0,843,0.27,21.29,28.34,0.95,0.13,794,1.8,207,5.7
+11114,2023,8,20,13,0,31.9,1.47,0.039,0.61,77,978,926,0,7,6.9,167,770,0,836,0.27,21.11,29.71,0.95,0.13,794,1.8,207,5.7
+11115,2023,8,20,13,30,32.1,1.47,0.039,0.61,77,971,897,0,0,6.9,116,890,0,868,0.27,20.85,32.39,0.94,0.13,793,1.8,207,5.6
+11116,2023,8,20,14,0,32.2,1.5,0.05,0.61,79,959,854,0,0,6.5,96,923,0,842,0.27,20.17,36.08,0.94,0.13,793,1.7,207,5.6
+11117,2023,8,20,14,30,32.2,1.5,0.05,0.61,77,950,799,0,0,6.5,80,939,0,794,0.27,20.17,40.49,0.94,0.13,793,1.7,206,5.5
+11118,2023,8,20,15,0,32.1,1.46,0.046,0.61,72,938,731,0,0,5.6,72,938,0,731,0.269,19.06,45.39,0.93,0.13,793,1.6,205,5.4
+11119,2023,8,20,15,30,31.7,1.46,0.046,0.61,68,920,652,0,0,5.6,72,910,0,649,0.269,19.47,50.63,0.93,0.13,792,1.6,205,5.2
+11120,2023,8,20,16,0,31.4,1.41,0.041,0.61,65,895,564,0,0,4.5,95,825,14,555,0.268,18.4,56.09,0.93,0.13,792,1.5,204,5.1
+11121,2023,8,20,16,30,30.7,1.41,0.041,0.61,60,861,468,0,0,4.5,75,822,25,465,0.268,19.15,61.68,0.93,0.13,792,1.5,204,4.8
+11122,2023,8,20,17,0,30.1,1.37,0.038,0.61,54,813,367,0,0,3.9,67,774,0,365,0.267,18.93,67.35,0.93,0.13,793,1.5,203,4.5
+11123,2023,8,20,17,30,28.2,1.37,0.038,0.61,48,742,264,0,8,3.9,75,625,32,257,0.267,21.11,73.05,0.93,0.13,793,1.5,204,3.2
+11124,2023,8,20,18,0,26.3,1.35,0.036,0.61,39,633,163,0,0,6,47,575,32,160,0.267,27.42,78.71,0.93,0.13,793,1.5,204,1.9
+11125,2023,8,20,18,30,24.6,1.35,0.036,0.61,28,447,72,0,0,6,28,428,4,71,0.267,30.33,84.3,0.93,0.13,793,1.4,207,1.6
+11126,2023,8,20,19,0,22.8,1.36,0.036,0.61,9,109,10,1,0,6.7,8,87,11,9,0.267,35.37,89.59,0.92,0.13,793,1.4,209,1.3
+11127,2023,8,20,19,30,22.4,1.36,0.036,0.61,0,0,0,0,0,6.7,0,0,0,0,0.268,36.28,95.35,0.92,0.13,794,1.4,207,1.3
+11128,2023,8,20,20,0,21.9,1.38,0.037,0.61,0,0,0,0,0,6.3,0,0,0,0,0.268,36.26,100.58,0.92,0.13,794,1.4,204,1.3
+11129,2023,8,20,20,30,21.4,1.38,0.037,0.61,0,0,0,0,0,6.3,0,0,0,0,0.268,37.38,105.56,0.92,0.13,794,1.4,200,1.4
+11130,2023,8,20,21,0,20.9,1.36,0.039,0.61,0,0,0,0,0,5.7,0,0,0,0,0.268,37.16,110.25,0.92,0.13,794,1.4,195,1.5
+11131,2023,8,20,21,30,20.5,1.36,0.039,0.61,0,0,0,0,0,5.7,0,0,0,0,0.268,38.08,114.56,0.92,0.13,794,1.5,191,1.7
+11132,2023,8,20,22,0,20,1.29,0.041,0.61,0,0,0,0,0,5.2,0,0,0,0,0.268,37.93,118.41,0.92,0.13,794,1.5,188,1.9
+11133,2023,8,20,22,30,19.9,1.29,0.041,0.61,0,0,0,0,0,5.2,0,0,0,0,0.268,38.16,121.69,0.92,0.13,794,1.5,186,2.2
+11134,2023,8,20,23,0,19.7,1.22,0.043,0.61,0,0,0,0,0,4.7,0,0,0,0,0.269,37.26,124.31,0.92,0.13,794,1.5,184,2.5
+11135,2023,8,20,23,30,19.7,1.22,0.043,0.61,0,0,0,0,0,4.7,0,0,0,0,0.269,37.26,126.15,0.92,0.13,794,1.5,184,3
+11136,2023,8,21,0,0,19.7,1.24,0.044,0.61,0,0,0,0,3,4.1,0,0,0,0,0.269,35.74,127.14,0.92,0.13,794,1.5,183,3.5
+11137,2023,8,21,0,30,19.6,1.24,0.044,0.61,0,0,0,0,8,4.1,0,0,0,0,0.269,35.96,127.22,0.92,0.13,794,1.5,183,3.8
+11138,2023,8,21,1,0,19.6,1.3,0.047,0.61,0,0,0,0,8,3.4,0,0,0,0,0.27,34.18,126.39,0.92,0.13,794,1.4,183,4.2
+11139,2023,8,21,1,30,19.4,1.3,0.047,0.61,0,0,0,0,8,3.4,0,0,0,0,0.27,34.61,124.7,0.92,0.13,794,1.5,183,4.3
+11140,2023,8,21,2,0,19.2,1.31,0.049,0.61,0,0,0,0,0,2.7,0,0,0,0,0.27,33.37,122.22,0.92,0.13,794,1.5,182,4.4
+11141,2023,8,21,2,30,18.9,1.31,0.049,0.61,0,0,0,0,0,2.7,0,0,0,0,0.271,33.99,119.05,0.92,0.13,794,1.5,182,4.2
+11142,2023,8,21,3,0,18.5,1.28,0.053,0.61,0,0,0,0,0,2.6,0,0,0,0,0.271,34.72,115.29,0.92,0.13,795,1.5,181,4.1
+11143,2023,8,21,3,30,18.2,1.28,0.053,0.61,0,0,0,0,0,2.6,0,0,0,0,0.271,35.38,111.06,0.92,0.13,795,1.5,182,3.9
+11144,2023,8,21,4,0,17.8,1.24,0.059,0.61,0,0,0,0,0,3.2,0,0,0,0,0.272,37.75,106.44,0.92,0.13,795,1.6,183,3.7
+11145,2023,8,21,4,30,17.6,1.24,0.059,0.61,0,0,0,0,0,3.2,0,0,0,0,0.272,38.22,101.5,0.93,0.13,795,1.6,187,3.6
+11146,2023,8,21,5,0,17.3,1.23,0.067,0.61,0,0,0,0,0,4,0,0,0,0,0.272,41.14,96.32,0.93,0.13,796,1.6,190,3.4
+11147,2023,8,21,5,30,18.4,1.23,0.067,0.61,6,39,5,0,0,4,6,35,7,5,0.272,38.4,90.95,0.93,0.13,796,1.6,193,3.7
+11148,2023,8,21,6,0,19.4,1.23,0.073,0.61,29,309,54,0,0,4.6,29,309,0,54,0.272,37.75,85.3,0.93,0.13,796,1.7,195,4.1
+11149,2023,8,21,6,30,21,1.23,0.073,0.61,45,523,138,0,0,4.6,45,523,0,138,0.273,34.25,79.75,0.93,0.13,797,1.7,198,5
+11150,2023,8,21,7,0,22.5,1.24,0.075,0.61,56,653,235,0,0,6.2,56,653,0,235,0.273,34.74,74.1,0.93,0.13,797,1.7,201,5.8
+11151,2023,8,21,7,30,23.8,1.24,0.075,0.61,65,742,338,0,0,6.2,65,742,0,338,0.273,32.13,68.42,0.93,0.13,797,1.6,203,6.4
+11152,2023,8,21,8,0,25,1.26,0.074,0.61,72,804,440,0,0,7.9,72,804,0,440,0.273,33.7,62.75,0.93,0.13,797,1.6,205,7.1
+11153,2023,8,21,8,30,25.9,1.26,0.074,0.61,77,849,538,0,0,7.9,77,849,0,538,0.273,31.95,57.15,0.93,0.13,797,1.6,205,7.1
+11154,2023,8,21,9,0,26.8,1.26,0.073,0.61,82,882,629,0,0,8.1,82,882,0,629,0.274,30.72,51.68,0.93,0.13,797,1.6,204,7.2
+11155,2023,8,21,9,30,27.6,1.26,0.073,0.61,85,908,711,0,0,8.1,85,908,0,711,0.274,29.32,46.42,0.93,0.13,797,1.5,204,7.2
+11156,2023,8,21,10,0,28.4,1.27,0.073,0.61,88,927,783,0,0,7.5,88,927,0,783,0.274,26.76,41.47,0.93,0.13,797,1.5,204,7.2
+11157,2023,8,21,10,30,29.1,1.27,0.073,0.61,87,946,843,0,0,7.5,87,946,0,843,0.274,25.7,36.99,0.92,0.13,797,1.5,203,7.2
+11158,2023,8,21,11,0,29.8,1.24,0.061,0.61,87,961,891,0,0,6.6,87,961,0,891,0.273,23.22,33.2,0.92,0.13,796,1.5,203,7.1
+11159,2023,8,21,11,30,30.3,1.24,0.061,0.61,88,966,921,0,0,6.6,164,760,0,820,0.273,22.57,30.37,0.92,0.13,796,1.5,203,7
+11160,2023,8,21,12,0,30.9,1.29,0.065,0.61,90,966,937,0,0,6,197,683,0,796,0.272,20.87,28.78,0.92,0.13,796,1.5,202,7
+11161,2023,8,21,12,30,31.2,1.29,0.065,0.61,91,964,937,0,0,6,103,931,0,920,0.272,20.52,28.67,0.92,0.13,796,1.6,202,6.9
+11162,2023,8,21,13,0,31.5,1.35,0.072,0.61,93,958,922,0,0,5.6,93,958,0,922,0.272,19.69,30.05,0.92,0.13,796,1.6,202,6.8
+11163,2023,8,21,13,30,31.6,1.35,0.072,0.61,88,957,893,0,0,5.6,88,957,0,893,0.271,19.58,32.72,0.92,0.13,796,1.6,203,6.8
+11164,2023,8,21,14,0,31.7,1.37,0.055,0.61,81,955,850,0,0,5.3,81,955,0,850,0.271,19.09,36.39,0.92,0.13,795,1.7,204,6.7
+11165,2023,8,21,14,30,31.5,1.37,0.055,0.61,80,942,793,0,0,5.3,90,910,0,779,0.271,19.31,40.78,0.92,0.13,795,1.7,205,6.7
+11166,2023,8,21,15,0,31.4,1.38,0.055,0.61,77,925,723,0,0,5,77,925,0,723,0.271,18.98,45.67,0.92,0.13,795,1.7,207,6.7
+11167,2023,8,21,15,30,31,1.38,0.055,0.61,75,899,642,0,0,5,83,868,0,630,0.272,19.41,50.9,0.92,0.13,795,1.7,209,6.5
+11168,2023,8,21,16,0,30.5,1.38,0.059,0.61,71,866,551,0,0,4.7,71,866,0,551,0.272,19.52,56.35,0.92,0.13,795,1.8,211,6.4
+11169,2023,8,21,16,30,29.9,1.38,0.059,0.61,66,824,454,0,0,4.7,66,824,0,454,0.272,20.2,61.94,0.92,0.13,795,1.8,214,6.1
+11170,2023,8,21,17,0,29.2,1.35,0.061,0.61,61,767,353,0,0,4.6,73,727,14,350,0.273,20.93,67.61,0.92,0.14,795,1.8,218,5.7
+11171,2023,8,21,17,30,27.7,1.35,0.061,0.61,53,689,251,0,0,4.6,59,662,0,249,0.273,22.83,73.3,0.92,0.14,795,1.8,225,4.7
+11172,2023,8,21,18,0,26.2,1.3,0.058,0.61,43,571,152,0,0,5.7,43,571,0,152,0.274,26.96,78.97,0.92,0.14,795,1.8,232,3.7
+11173,2023,8,21,18,30,24.3,1.3,0.058,0.61,29,375,65,0,0,5.7,29,375,0,65,0.274,30.17,84.55,0.93,0.14,795,1.8,245,2.9
+11174,2023,8,21,19,0,22.5,1.23,0.053,0.61,7,61,7,0,0,7.4,7,61,0,7,0.275,37.72,89.83,0.93,0.14,796,1.9,257,2.2
+11175,2023,8,21,19,30,21.7,1.23,0.053,0.61,0,0,0,0,0,7.4,0,0,0,0,0.276,39.6,95.63,0.93,0.14,796,1.9,263,2
+11176,2023,8,21,20,0,21,1.21,0.051,0.61,0,0,0,0,0,8.6,0,0,0,0,0.276,44.9,100.86,0.93,0.14,796,1.9,269,1.8
+11177,2023,8,21,20,30,20.4,1.21,0.051,0.61,0,0,0,0,0,8.6,0,0,0,0,0.276,46.59,105.85,0.93,0.14,796,1.9,268,1.6
+11178,2023,8,21,21,0,19.8,1.22,0.05,0.61,0,0,0,0,0,9.4,0,0,0,0,0.276,51.1,110.55,0.94,0.14,797,1.9,267,1.4
+11179,2023,8,21,21,30,19.3,1.22,0.05,0.61,0,0,0,0,0,9.4,0,0,0,0,0.276,52.7,114.87,0.94,0.14,797,1.9,263,1.3
+11180,2023,8,21,22,0,18.9,1.27,0.05,0.61,0,0,0,0,0,9.8,0,0,0,0,0.277,55.34,118.73,0.94,0.14,797,1.9,258,1.2
+11181,2023,8,21,22,30,18.5,1.27,0.05,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,56.74,122.02,0.94,0.14,797,1.9,254,1.2
+11182,2023,8,21,23,0,18.1,1.35,0.051,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,58.51,124.64,0.94,0.14,797,1.9,250,1.2
+11183,2023,8,21,23,30,17.8,1.35,0.051,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,59.62,126.49,0.94,0.14,797,1.9,246,1.1
+11184,2023,8,22,0,0,17.4,1.44,0.055,0.61,0,0,0,0,0,9.8,0,0,0,0,0.275,60.81,127.47,0.94,0.14,797,1.9,242,1.1
+11185,2023,8,22,0,30,17.1,1.44,0.055,0.61,0,0,0,0,0,9.8,0,0,0,0,0.275,61.97,127.55,0.94,0.14,797,2,236,1.1
+11186,2023,8,22,1,0,16.8,1.52,0.062,0.61,0,0,0,0,3,9.7,0,0,0,0,0.275,62.96,126.71,0.94,0.14,797,2,230,1.1
+11187,2023,8,22,1,30,16.5,1.52,0.062,0.61,0,0,0,0,3,9.7,0,0,0,0,0.275,64.17,125,0.94,0.14,797,2,227,1.1
+11188,2023,8,22,2,0,16.3,1.56,0.069,0.61,0,0,0,0,8,9.7,0,0,0,0,0.274,65.16,122.5,0.94,0.14,797,2,224,1.1
+11189,2023,8,22,2,30,16.1,1.56,0.069,0.61,0,0,0,0,8,9.7,0,0,0,0,0.274,66,119.31,0.94,0.14,797,2,227,1
+11190,2023,8,22,3,0,16,1.56,0.071,0.61,0,0,0,0,5,9.8,0,0,0,0,0.274,66.87,115.54,0.94,0.14,797,2,230,1
+11191,2023,8,22,3,30,16,1.56,0.071,0.61,0,0,0,0,3,9.8,0,0,0,0,0.274,66.87,111.29,0.94,0.14,797,2,237,1
+11192,2023,8,22,4,0,16,1.56,0.07,0.61,0,0,0,0,0,9.9,0,0,0,0,0.275,67.17,106.65,0.94,0.14,797,2,244,1
+11193,2023,8,22,4,30,16.2,1.56,0.07,0.61,0,0,0,0,0,9.9,0,0,0,0,0.275,66.32,101.7,0.94,0.14,797,2,256,0.8
+11194,2023,8,22,5,0,16.4,1.55,0.067,0.61,0,0,0,0,3,9.9,0,0,0,0,0.275,65.21,96.51,0.94,0.14,797,1.9,268,0.7
+11195,2023,8,22,5,30,17.6,1.55,0.067,0.61,5,33,4,0,0,9.9,5,33,0,4,0.275,60.45,91.12,0.94,0.14,797,1.9,284,0.6
+11196,2023,8,22,6,0,18.8,1.54,0.067,0.61,27,319,52,0,0,9.9,27,319,0,52,0.274,56.17,85.47,0.94,0.14,797,1.9,299,0.5
+11197,2023,8,22,6,30,20.9,1.54,0.067,0.61,43,528,136,0,0,9.9,43,528,0,136,0.274,49.34,79.91,0.94,0.14,797,1.9,253,0.9
+11198,2023,8,22,7,0,22.9,1.54,0.072,0.61,55,653,232,0,0,8.8,55,653,0,232,0.274,40.67,74.26,0.94,0.14,798,1.9,206,1.3
+11199,2023,8,22,7,30,24.4,1.54,0.072,0.61,65,731,332,0,0,8.8,65,731,0,332,0.274,37.17,68.58,0.94,0.14,798,2,200,2.6
+11200,2023,8,22,8,0,25.9,1.55,0.084,0.61,74,781,430,0,0,7.8,80,759,0,426,0.274,31.61,62.92,0.94,0.14,798,2.1,195,3.9
+11201,2023,8,22,8,30,26.6,1.55,0.084,0.61,83,816,524,0,0,7.8,83,816,0,524,0.273,30.33,57.32,0.95,0.14,798,2.1,197,4.5
+11202,2023,8,22,9,0,27.2,1.56,0.103,0.61,93,838,611,0,0,7.9,93,838,0,611,0.273,29.54,51.86,0.95,0.14,798,2.2,198,5.1
+11203,2023,8,22,9,30,27.2,1.56,0.103,0.61,102,853,688,0,0,7.9,102,853,0,688,0.273,29.54,46.61,0.95,0.14,798,2.3,199,5.4
+11204,2023,8,22,10,0,27.1,1.56,0.129,0.61,113,859,754,0,0,8.5,135,822,0,749,0.272,30.86,41.69,0.96,0.14,798,2.4,199,5.8
+11205,2023,8,22,10,30,26.6,1.56,0.129,0.61,106,892,816,0,0,8.5,191,667,0,722,0.272,31.78,37.24,0.96,0.14,798,2.4,198,5.8
+11206,2023,8,22,11,0,26.1,1.5,0.075,0.61,93,926,865,0,5,9.1,389,112,0,482,0.272,34.18,33.47,0.96,0.14,797,2.5,196,5.8
+11207,2023,8,22,11,30,26.1,1.5,0.075,0.61,93,934,896,0,3,9.1,398,257,4,619,0.272,34.18,30.67,0.95,0.14,797,2.5,194,5.6
+11208,2023,8,22,12,0,26.1,1.55,0.066,0.61,91,941,913,0,8,9.5,398,186,0,561,0.272,35.1,29.11,0.95,0.14,797,2.5,193,5.3
+11209,2023,8,22,12,30,26.7,1.55,0.066,0.61,89,943,914,0,8,9.5,356,117,0,458,0.272,33.88,29.01,0.95,0.14,797,2.5,190,5
+11210,2023,8,22,13,0,27.2,1.6,0.062,0.61,88,943,901,0,5,9.2,416,138,0,535,0.272,32.3,30.39,0.95,0.14,797,2.5,188,4.8
+11211,2023,8,22,13,30,27.7,1.6,0.062,0.61,86,939,873,0,0,9.2,231,630,0,759,0.272,31.37,33.04,0.94,0.14,797,2.4,186,4.7
+11212,2023,8,22,14,0,28.2,1.65,0.061,0.61,84,932,831,0,5,8.4,246,63,0,297,0.272,28.75,36.7,0.94,0.14,796,2.4,185,4.7
+11213,2023,8,22,14,30,28.4,1.65,0.061,0.61,82,920,775,0,0,8.4,188,644,0,673,0.273,28.42,41.08,0.94,0.14,796,2.3,186,4.7
+11214,2023,8,22,15,0,28.5,1.69,0.063,0.61,80,902,707,0,5,7.3,277,266,0,462,0.273,26.29,45.96,0.94,0.14,795,2.3,186,4.7
+11215,2023,8,22,15,30,28.3,1.69,0.063,0.61,76,880,628,0,0,7.3,167,557,0,516,0.273,26.6,51.18,0.94,0.14,795,2.2,189,4.6
+11216,2023,8,22,16,0,28.1,1.72,0.065,0.61,73,849,540,0,0,6.6,147,657,0,508,0.274,25.6,56.62,0.94,0.14,795,2.2,192,4.5
+11217,2023,8,22,16,30,27.5,1.72,0.065,0.61,68,806,444,0,3,6.6,162,494,4,392,0.274,26.5,62.2,0.94,0.14,795,2.2,195,4.3
+11218,2023,8,22,17,0,27,1.73,0.07,0.61,63,746,344,0,3,6.3,122,386,7,267,0.274,26.81,67.87,0.94,0.14,795,2.2,199,4.1
+11219,2023,8,22,17,30,25.6,1.73,0.07,0.61,56,656,242,0,0,6.3,81,549,0,236,0.274,29.11,73.56,0.94,0.14,795,2.2,203,3.1
+11220,2023,8,22,18,0,24.3,1.72,0.083,0.61,47,521,144,1,5,7.4,71,89,14,88,0.274,33.83,79.23,0.95,0.14,795,2.2,208,2.2
+11221,2023,8,22,18,30,23.1,1.72,0.083,0.61,31,311,59,7,5,7.4,39,4,100,39,0.274,36.36,84.81,0.95,0.14,795,2.3,213,1.8
+11222,2023,8,22,19,0,21.9,1.68,0.102,0.61,6,40,6,3,3,7.8,3,0,43,3,0.274,40.32,90.06,0.95,0.14,795,2.3,217,1.5
+11223,2023,8,22,19,30,21.5,1.68,0.102,0.61,0,0,0,0,5,7.8,0,0,0,0,0.274,41.37,95.9,0.95,0.14,796,2.4,222,1.5
+11224,2023,8,22,20,0,21.1,1.66,0.116,0.61,0,0,0,0,3,8.1,0,0,0,0,0.274,43.28,101.14,0.95,0.14,796,2.4,226,1.5
+11225,2023,8,22,20,30,20.6,1.66,0.116,0.61,0,0,0,0,0,8.1,0,0,0,0,0.274,44.63,106.15,0.95,0.14,796,2.4,229,1.4
+11226,2023,8,22,21,0,20.2,1.67,0.116,0.61,0,0,0,0,0,8.6,0,0,0,0,0.274,47.22,110.85,0.95,0.14,796,2.4,232,1.3
+11227,2023,8,22,21,30,19.7,1.67,0.116,0.61,0,0,0,0,3,8.6,0,0,0,0,0.274,48.7,115.19,0.95,0.14,796,2.4,232,1.2
+11228,2023,8,22,22,0,19.2,1.7,0.113,0.61,0,0,0,0,8,9,0,0,0,0,0.274,51.72,119.05,0.95,0.14,796,2.4,232,1.1
+11229,2023,8,22,22,30,18.8,1.7,0.113,0.61,0,0,0,0,8,9,0,0,0,0,0.274,53.02,122.36,0.95,0.14,796,2.4,227,1
+11230,2023,8,22,23,0,18.4,1.71,0.111,0.61,0,0,0,0,0,9.5,0,0,0,0,0.274,56.08,124.98,0.94,0.14,796,2.4,222,1
+11231,2023,8,22,23,30,18.1,1.71,0.111,0.61,0,0,0,0,3,9.5,0,0,0,0,0.274,57.14,126.83,0.95,0.14,796,2.4,214,1
+11232,2023,8,23,0,0,17.8,1.71,0.113,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,59.39,127.81,0.95,0.14,796,2.4,207,1
+11233,2023,8,23,0,30,17.5,1.71,0.113,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,60.52,127.88,0.95,0.14,796,2.4,201,1
+11234,2023,8,23,1,0,17.2,1.69,0.119,0.61,0,0,0,0,3,9.9,0,0,0,0,0.273,62.33,127.03,0.95,0.14,796,2.5,195,1
+11235,2023,8,23,1,30,17,1.69,0.119,0.61,0,0,0,0,4,9.9,0,0,0,0,0.273,63.13,125.3,0.95,0.14,796,2.5,192,1
+11236,2023,8,23,2,0,16.8,1.68,0.123,0.61,0,0,0,0,4,10,0,0,0,0,0.273,64.16,122.79,0.95,0.14,796,2.5,189,0.9
+11237,2023,8,23,2,30,16.5,1.68,0.123,0.61,0,0,0,0,4,10,0,0,0,0,0.273,65.39,119.58,0.95,0.14,796,2.5,187,0.9
+11238,2023,8,23,3,0,16.3,1.67,0.125,0.61,0,0,0,0,4,9.9,0,0,0,0,0.273,66.01,115.79,0.95,0.14,796,2.5,185,0.9
+11239,2023,8,23,3,30,16.1,1.67,0.125,0.61,0,0,0,0,4,10,0,0,0,0,0.273,66.94,111.52,0.95,0.14,797,2.5,185,0.9
+11240,2023,8,23,4,0,15.8,1.65,0.128,0.61,0,0,0,0,3,9.8,0,0,0,0,0.272,67.7,106.86,0.95,0.14,797,2.5,185,0.9
+11241,2023,8,23,4,30,15.7,1.65,0.128,0.61,0,0,0,0,4,9.8,0,0,0,0,0.272,68.13,101.9,0.96,0.14,797,2.5,183,0.8
+11242,2023,8,23,5,0,15.7,1.63,0.137,0.61,0,0,0,0,4,9.7,0,0,0,0,0.272,67.52,96.69,0.96,0.14,797,2.5,181,0.8
+11243,2023,8,23,5,30,16.6,1.63,0.137,0.61,2,12,2,3,4,9.7,1,0,43,1,0.272,63.77,91.3,0.96,0.14,797,2.5,177,1
+11244,2023,8,23,6,0,17.6,1.62,0.145,0.61,30,204,46,7,5,9.8,23,0,100,23,0.271,60.36,85.63,0.96,0.14,798,2.5,174,1.2
+11245,2023,8,23,6,30,18.8,1.62,0.145,0.61,53,406,123,1,5,9.8,70,22,18,74,0.271,55.99,80.08,0.96,0.14,798,2.4,182,1.5
+11246,2023,8,23,7,0,20,1.63,0.143,0.61,70,546,217,0,5,9.7,78,39,0,88,0.271,51.64,74.43,0.96,0.14,798,2.4,190,1.8
+11247,2023,8,23,7,30,21.2,1.63,0.143,0.61,82,647,317,0,5,9.7,161,129,7,208,0.271,47.97,68.74,0.96,0.14,798,2.4,197,2.2
+11248,2023,8,23,8,0,22.4,1.65,0.132,0.61,90,721,416,0,5,9.4,215,207,0,309,0.271,43.5,63.08,0.96,0.14,798,2.4,204,2.5
+11249,2023,8,23,8,30,23.5,1.65,0.132,0.61,96,776,513,0,0,9.4,216,408,0,435,0.271,40.7,57.5,0.95,0.14,798,2.3,209,2.8
+11250,2023,8,23,9,0,24.7,1.67,0.121,0.61,100,820,604,0,3,9.1,309,256,0,466,0.271,37.1,52.05,0.95,0.14,798,2.3,213,3.2
+11251,2023,8,23,9,30,25.6,1.67,0.121,0.61,103,850,685,0,0,9.1,226,578,0,622,0.271,35.13,46.81,0.95,0.14,797,2.3,217,3.4
+11252,2023,8,23,10,0,26.5,1.68,0.116,0.61,106,874,756,0,5,8.9,352,219,0,515,0.271,33.04,41.91,0.95,0.14,797,2.3,220,3.6
+11253,2023,8,23,10,30,27.2,1.68,0.116,0.61,101,903,818,0,5,8.9,297,23,0,315,0.271,31.72,37.48,0.95,0.14,797,2.3,223,3.8
+11254,2023,8,23,11,0,27.9,1.7,0.075,0.61,93,931,867,2,5,8.9,345,58,21,393,0.271,30.3,33.74,0.95,0.14,796,2.3,226,3.9
+11255,2023,8,23,11,30,28.4,1.7,0.075,0.61,94,938,898,0,5,8.9,197,2,0,199,0.27,29.44,30.97,0.95,0.14,796,2.3,228,4
+11256,2023,8,23,12,0,28.9,1.68,0.074,0.61,94,942,914,0,5,8.8,292,303,0,556,0.27,28.51,29.44,0.95,0.14,796,2.3,231,4.1
+11257,2023,8,23,12,30,29.1,1.68,0.074,0.61,94,942,915,0,5,8.8,338,382,0,671,0.27,28.18,29.35,0.95,0.14,796,2.3,233,4.1
+11258,2023,8,23,13,0,29.3,1.66,0.073,0.61,93,939,900,0,8,8.7,268,503,0,700,0.27,27.69,30.73,0.95,0.14,795,2.3,236,4.1
+11259,2023,8,23,13,30,29.3,1.66,0.073,0.61,89,936,871,0,8,8.7,231,647,0,771,0.27,27.69,33.38,0.95,0.14,795,2.3,238,4.1
+11260,2023,8,23,14,0,29.2,1.69,0.065,0.61,85,930,828,0,0,8.6,210,621,0,706,0.27,27.5,37.02,0.95,0.14,795,2.3,241,4
+11261,2023,8,23,14,30,28.9,1.69,0.065,0.61,83,918,772,0,0,8.5,124,803,0,727,0.27,27.94,41.38,0.95,0.14,794,2.3,244,3.9
+11262,2023,8,23,15,0,28.6,1.69,0.061,0.61,79,902,703,0,0,8.3,79,902,0,703,0.27,28,46.25,0.95,0.14,794,2.3,246,3.7
+11263,2023,8,23,15,30,28.1,1.69,0.061,0.61,76,880,624,0,0,8.3,78,874,0,623,0.27,28.83,51.46,0.95,0.14,794,2.3,248,3.6
+11264,2023,8,23,16,0,27.6,1.69,0.058,0.61,71,852,536,0,0,8.1,122,722,0,516,0.27,29.31,56.89,0.95,0.14,794,2.3,251,3.4
+11265,2023,8,23,16,30,27,1.69,0.058,0.61,65,813,441,0,3,8.1,177,450,0,385,0.27,30.36,62.47,0.95,0.14,794,2.3,254,3.1
+11266,2023,8,23,17,0,26.4,1.69,0.055,0.61,58,759,341,0,7,8.1,126,381,25,268,0.27,31.3,68.13,0.95,0.14,794,2.3,257,2.9
+11267,2023,8,23,17,30,25.3,1.69,0.055,0.61,51,682,241,0,7,8.1,106,293,14,188,0.269,33.4,73.82,0.95,0.14,794,2.3,262,2.1
+11268,2023,8,23,18,0,24.1,1.69,0.052,0.61,40,564,143,2,7,9.2,72,117,29,93,0.269,38.88,79.49,0.95,0.14,794,2.2,267,1.4
+11269,2023,8,23,18,30,23.1,1.69,0.052,0.61,27,364,58,7,7,9.3,43,27,100,45,0.269,41.34,85.08,0.95,0.14,795,2.2,274,1.1
+11270,2023,8,23,19,0,22.1,1.68,0.051,0.61,5,56,5,3,7,9.7,4,0,43,4,0.269,45.3,90.3,0.95,0.14,795,2.2,281,0.8
+11271,2023,8,23,19,30,21.9,1.68,0.051,0.61,0,0,0,0,8,9.7,0,0,0,0,0.269,45.86,96.18,0.95,0.14,795,2.2,284,0.8
+11272,2023,8,23,20,0,21.6,1.68,0.051,0.61,0,0,0,0,0,9.4,0,0,0,0,0.269,45.86,101.43,0.95,0.14,795,2.2,287,0.8
+11273,2023,8,23,20,30,21.4,1.68,0.051,0.61,0,0,0,0,0,9.4,0,0,0,0,0.269,46.43,106.44,0.95,0.14,795,2.3,284,0.7
+11274,2023,8,23,21,0,21.2,1.7,0.051,0.61,0,0,0,0,0,9.2,0,0,0,0,0.269,46.37,111.16,0.95,0.14,795,2.3,282,0.7
+11275,2023,8,23,21,30,20.7,1.7,0.051,0.61,0,0,0,0,0,9.2,0,0,0,0,0.269,47.81,115.5,0.95,0.14,795,2.3,267,0.6
+11276,2023,8,23,22,0,20.3,1.72,0.052,0.61,0,0,0,0,8,8.9,0,0,0,0,0.269,47.96,119.38,0.95,0.14,795,2.4,253,0.5
+11277,2023,8,23,22,30,19.8,1.72,0.052,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,49.46,122.69,0.95,0.14,795,2.4,224,0.5
+11278,2023,8,23,23,0,19.3,1.71,0.055,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,51.03,125.33,0.95,0.14,795,2.4,196,0.6
+11279,2023,8,23,23,30,18.7,1.71,0.055,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,52.97,127.18,0.95,0.14,795,2.4,191,0.8
+11280,2023,8,24,0,0,18.2,1.69,0.059,0.61,0,0,0,0,4,9,0,0,0,0,0.267,55.01,128.16,0.95,0.14,795,2.5,186,0.9
+11281,2023,8,24,0,30,17.7,1.69,0.059,0.61,0,0,0,0,5,9,0,0,0,0,0.267,56.76,128.22,0.95,0.14,795,2.5,188,1.2
+11282,2023,8,24,1,0,17.1,1.67,0.062,0.61,0,0,0,0,4,9.5,0,0,0,0,0.267,61.1,127.35,0.95,0.14,795,2.5,190,1.4
+11283,2023,8,24,1,30,16.7,1.67,0.062,0.61,0,0,0,0,5,9.5,0,0,0,0,0.266,62.67,125.61,0.95,0.14,795,2.6,194,1.4
+11284,2023,8,24,2,0,16.3,1.65,0.066,0.61,0,0,0,0,5,10.4,0,0,0,0,0.266,67.85,123.07,0.96,0.14,795,2.6,198,1.5
+11285,2023,8,24,2,30,15.9,1.65,0.066,0.61,0,0,0,0,5,10.3,0,0,0,0,0.265,69.6,119.84,0.96,0.14,795,2.6,203,1.4
+11286,2023,8,24,3,0,15.6,1.62,0.071,0.61,0,0,0,0,4,11.2,0,0,0,0,0.265,74.95,116.04,0.96,0.14,795,2.6,207,1.4
+11287,2023,8,24,3,30,15.4,1.62,0.071,0.61,0,0,0,0,4,11.2,0,0,0,0,0.264,76,111.75,0.96,0.14,796,2.7,212,1.3
+11288,2023,8,24,4,0,15.2,1.6,0.075,0.61,0,0,0,0,5,11.9,0,0,0,0,0.264,80.55,107.08,0.96,0.14,796,2.7,216,1.2
+11289,2023,8,24,4,30,15.1,1.6,0.075,0.61,0,0,0,0,4,11.9,0,0,0,0,0.264,81.06,102.1,0.96,0.14,796,2.7,220,1.1
+11290,2023,8,24,5,0,15,1.59,0.077,0.61,0,0,0,0,4,12.4,0,0,0,0,0.263,84.22,96.88,0.96,0.14,796,2.7,224,1.1
+11291,2023,8,24,5,30,15.9,1.59,0.077,0.61,2,18,2,2,5,12.4,1,0,29,1,0.263,79.51,91.48,0.96,0.14,796,2.8,227,1.4
+11292,2023,8,24,6,0,16.8,1.58,0.079,0.61,26,268,46,7,5,12.9,13,0,100,13,0.263,77.97,85.8,0.96,0.14,796,2.8,231,1.8
+11293,2023,8,24,6,30,17.9,1.58,0.079,0.61,43,483,125,1,5,12.9,7,0,14,7,0.263,72.75,80.25,0.96,0.14,796,2.8,242,2.3
+11294,2023,8,24,7,0,19,1.58,0.079,0.61,56,618,220,0,5,13,9,0,0,9,0.263,68.24,74.59,0.96,0.14,796,2.8,253,2.7
+11295,2023,8,24,7,30,20,1.58,0.079,0.61,65,706,319,0,5,13,43,1,0,43,0.263,64.14,68.91,0.96,0.14,796,2.8,257,2.9
+11296,2023,8,24,8,0,21,1.56,0.078,0.61,72,768,418,0,5,12.3,70,0,0,70,0.263,57.57,63.25,0.96,0.14,797,2.8,261,3.1
+11297,2023,8,24,8,30,21.5,1.56,0.078,0.61,78,813,513,0,4,12.3,50,0,0,50,0.263,55.84,57.67,0.96,0.14,797,2.8,261,3
+11298,2023,8,24,9,0,22.1,1.54,0.078,0.61,82,847,601,0,8,11.8,129,6,0,133,0.263,51.94,52.23,0.96,0.14,797,2.8,261,2.9
+11299,2023,8,24,9,30,22.6,1.54,0.078,0.61,86,872,681,0,8,11.8,189,7,0,194,0.263,50.33,47.01,0.97,0.14,796,2.8,264,2.8
+11300,2023,8,24,10,0,23,1.5,0.08,0.61,91,890,751,0,8,11.4,204,7,0,209,0.263,47.95,42.13,0.97,0.14,796,2.8,267,2.6
+11301,2023,8,24,10,30,23.5,1.5,0.08,0.61,89,913,811,0,8,11.4,217,7,0,223,0.263,46.53,37.73,0.97,0.14,796,2.8,271,2.6
+11302,2023,8,24,11,0,24,1.55,0.055,0.61,83,935,858,0,8,11.1,114,1,0,115,0.264,44.18,34.02,0.97,0.14,796,2.8,275,2.5
+11303,2023,8,24,11,30,24.3,1.55,0.055,0.61,85,941,889,0,8,11.1,171,1,0,172,0.264,43.4,31.28,0.97,0.14,796,2.8,280,2.5
+11304,2023,8,24,12,0,24.6,1.54,0.057,0.61,86,944,905,0,5,10.8,278,4,0,281,0.264,42,29.77,0.97,0.14,796,2.7,286,2.5
+11305,2023,8,24,12,30,24.7,1.54,0.057,0.61,85,945,906,0,4,10.8,362,11,0,372,0.264,41.69,29.7,0.97,0.14,795,2.7,291,2.5
+11306,2023,8,24,13,0,24.8,1.55,0.057,0.61,85,942,892,0,4,10.6,434,175,0,584,0.265,40.87,31.07,0.97,0.14,795,2.7,295,2.5
+11307,2023,8,24,13,30,25,1.55,0.057,0.61,80,941,863,0,0,10.6,137,842,0,837,0.265,40.39,33.71,0.97,0.14,795,2.7,301,2.5
+11308,2023,8,24,14,0,25.2,1.57,0.043,0.61,75,939,822,0,3,10.4,255,576,0,713,0.265,39.46,37.34,0.97,0.14,795,2.7,306,2.4
+11309,2023,8,24,14,30,25,1.57,0.043,0.61,73,927,765,0,3,10.4,372,238,0,550,0.265,39.93,41.69,0.97,0.14,795,2.7,312,2.4
+11310,2023,8,24,15,0,24.9,1.6,0.04,0.61,70,912,697,0,3,10.3,357,202,0,496,0.265,39.73,46.54,0.97,0.14,795,2.7,319,2.4
+11311,2023,8,24,15,30,24.6,1.6,0.04,0.61,66,891,618,0,5,10.3,303,187,0,419,0.265,40.45,51.74,0.97,0.14,795,2.7,325,2.5
+11312,2023,8,24,16,0,24.3,1.61,0.038,0.61,62,863,530,0,3,10.1,226,273,0,374,0.265,40.73,57.17,0.97,0.14,794,2.7,332,2.5
+11313,2023,8,24,16,30,23.7,1.61,0.038,0.61,58,824,435,0,0,10.1,94,713,0,421,0.264,42.22,62.74,0.97,0.14,794,2.7,339,2.4
+11314,2023,8,24,17,0,23.2,1.59,0.038,0.61,53,770,336,0,3,10.2,124,481,7,301,0.264,43.87,68.4,0.97,0.14,794,2.8,345,2.4
+11315,2023,8,24,17,30,22.3,1.59,0.038,0.61,46,689,235,0,8,10.2,88,221,7,149,0.264,46.32,74.09,0.97,0.14,794,2.8,349,1.8
+11316,2023,8,24,18,0,21.5,1.56,0.041,0.61,38,564,138,1,7,11.3,16,7,18,17,0.263,52.19,79.76,0.97,0.14,794,2.8,354,1.3
+11317,2023,8,24,18,30,20.7,1.56,0.041,0.61,25,354,54,7,7,11.3,35,6,100,35,0.264,54.87,85.34,0.97,0.14,795,2.8,184,1.1
+11318,2023,8,24,19,0,19.9,1.53,0.045,0.61,6,50,5,3,6,11.6,2,0,43,2,0.264,58.8,91.04,0.97,0.14,795,2.8,14,0.8
+11319,2023,8,24,19,30,19.4,1.53,0.045,0.61,0,0,0,0,7,11.6,0,0,0,0,0.264,60.64,96.47,0.97,0.14,795,2.9,34,0.8
+11320,2023,8,24,20,0,18.9,1.53,0.05,0.61,0,0,0,0,7,11.8,0,0,0,0,0.264,63.41,101.72,0.97,0.14,796,2.9,54,0.7
+11321,2023,8,24,20,30,18.6,1.53,0.05,0.61,0,0,0,0,7,11.8,0,0,0,0,0.264,64.61,106.75,0.97,0.14,796,2.9,71,0.9
+11322,2023,8,24,21,0,18.2,1.56,0.05,0.61,0,0,0,0,7,11.9,0,0,0,0,0.265,66.6,111.47,0.97,0.14,796,2.9,88,1.1
+11323,2023,8,24,21,30,17.9,1.56,0.05,0.61,0,0,0,0,7,11.9,0,0,0,0,0.265,67.87,115.83,0.97,0.14,796,2.9,95,1.3
+11324,2023,8,24,22,0,17.5,1.61,0.05,0.61,0,0,0,0,7,12.1,0,0,0,0,0.265,70.8,119.71,0.97,0.14,796,2.9,102,1.5
+11325,2023,8,24,22,30,17.2,1.61,0.05,0.61,0,0,0,0,7,12.1,0,0,0,0,0.265,72.15,123.03,0.97,0.14,796,2.9,104,1.4
+11326,2023,8,24,23,0,16.9,1.66,0.051,0.61,0,0,0,0,7,12.6,0,0,0,0,0.265,75.62,125.67,0.97,0.14,796,2.8,107,1.2
+11327,2023,8,24,23,30,16.6,1.66,0.051,0.61,0,0,0,0,8,12.6,0,0,0,0,0.265,77.07,127.53,0.97,0.14,796,2.8,115,1
+11328,2023,8,25,0,0,16.4,1.68,0.055,0.61,0,0,0,0,8,12.9,0,0,0,0,0.265,80.03,128.5,0.97,0.14,796,2.8,123,0.7
+11329,2023,8,25,0,30,16.2,1.68,0.055,0.61,0,0,0,0,8,12.9,0,0,0,0,0.265,81.05,128.56,0.97,0.14,796,2.8,139,0.5
+11330,2023,8,25,1,0,16,1.68,0.061,0.61,0,0,0,0,8,13.2,0,0,0,0,0.265,83.47,127.68,0.97,0.14,796,2.8,156,0.4
+11331,2023,8,25,1,30,15.9,1.68,0.061,0.61,0,0,0,0,7,13.2,0,0,0,0,0.265,84,125.92,0.97,0.14,796,2.7,162,0.3
+11332,2023,8,25,2,0,15.7,1.65,0.071,0.61,0,0,0,0,8,13.3,0,0,0,0,0.265,85.5,123.36,0.97,0.14,796,2.7,168,0.3
+11333,2023,8,25,2,30,15.6,1.65,0.071,0.61,0,0,0,0,7,13.3,0,0,0,0,0.266,86.05,120.11,0.97,0.14,796,2.7,152,0.3
+11334,2023,8,25,3,0,15.5,1.64,0.079,0.61,0,0,0,0,8,13.4,0,0,0,0,0.266,87.32,116.28,0.97,0.14,796,2.7,136,0.4
+11335,2023,8,25,3,30,15.2,1.64,0.079,0.61,0,0,0,0,8,13.4,0,0,0,0,0.267,89.01,111.98,0.97,0.14,796,2.7,126,0.4
+11336,2023,8,25,4,0,15,1.64,0.082,0.61,0,0,0,0,8,13.5,0,0,0,0,0.267,90.65,107.29,0.97,0.14,796,2.7,116,0.5
+11337,2023,8,25,4,30,14.8,1.64,0.082,0.61,0,0,0,0,5,13.5,0,0,0,0,0.268,91.82,102.3,0.97,0.14,796,2.7,111,0.5
+11338,2023,8,25,5,0,14.6,1.65,0.084,0.61,0,0,0,0,4,13.5,0,0,0,0,0.269,93.16,97.07,0.97,0.14,796,2.7,106,0.6
+11339,2023,8,25,5,30,15.2,1.65,0.084,0.61,2,16,2,2,5,13.5,1,0,29,1,0.269,89.64,91.66,0.97,0.14,796,2.7,103,0.9
+11340,2023,8,25,6,0,15.8,1.67,0.085,0.61,26,253,44,7,4,13.8,18,0,100,18,0.27,87.92,85.97,0.97,0.14,797,2.7,100,1.2
+11341,2023,8,25,6,30,16.8,1.67,0.085,0.61,45,471,123,1,4,13.8,42,1,14,42,0.271,82.51,80.41,0.97,0.14,797,2.7,94,1.4
+11342,2023,8,25,7,0,17.8,1.68,0.082,0.61,56,611,217,0,4,13,39,0,0,39,0.271,73.62,74.76,0.97,0.14,797,2.7,89,1.6
+11343,2023,8,25,7,30,18.8,1.68,0.082,0.61,66,699,316,0,4,13,30,0,0,30,0.272,69.16,69.08,0.97,0.14,797,2.7,81,1.5
+11344,2023,8,25,8,0,19.7,1.65,0.086,0.61,75,760,415,0,4,11.9,58,0,0,58,0.272,60.59,63.42,0.97,0.14,797,2.7,72,1.3
+11345,2023,8,25,8,30,20.6,1.65,0.086,0.61,83,801,509,0,4,11.9,100,0,0,100,0.272,57.32,57.85,0.97,0.14,797,2.7,49,1
+11346,2023,8,25,9,0,21.4,1.58,0.097,0.61,91,830,597,0,4,11.2,202,4,0,204,0.272,52.13,52.42,0.98,0.14,797,2.7,25,0.7
+11347,2023,8,25,9,30,22.1,1.58,0.097,0.61,96,856,677,0,4,11.2,313,133,0,403,0.271,49.96,47.22,0.98,0.14,797,2.7,172,0.9
+11348,2023,8,25,10,0,22.8,1.55,0.097,0.61,99,876,746,0,5,10.9,383,93,0,452,0.271,46.94,42.35,0.98,0.14,797,2.7,318,1
+11349,2023,8,25,10,30,23.4,1.55,0.097,0.61,100,894,805,0,5,10.9,406,94,0,480,0.271,45.27,37.97,0.98,0.14,797,2.7,309,1.2
+11350,2023,8,25,11,0,24,1.56,0.089,0.61,99,909,850,0,5,10.7,431,190,0,588,0.271,43.16,34.3,0.98,0.14,797,2.7,300,1.4
+11351,2023,8,25,11,30,24.4,1.56,0.089,0.61,99,919,882,0,5,10.7,401,177,0,552,0.27,42.08,31.58,0.98,0.14,796,2.7,295,1.5
+11352,2023,8,25,12,0,24.9,1.57,0.08,0.61,97,926,898,0,3,10.5,276,85,0,350,0.27,40.44,30.11,0.98,0.14,796,2.7,290,1.6
+11353,2023,8,25,12,30,25,1.57,0.08,0.61,96,928,899,0,8,10.5,332,101,0,419,0.269,40.21,30.05,0.98,0.14,796,2.7,287,1.7
+11354,2023,8,25,13,0,25.1,1.58,0.074,0.61,94,928,886,0,8,10.5,293,136,0,409,0.269,39.75,31.42,0.98,0.14,796,2.7,285,1.7
+11355,2023,8,25,13,30,25.1,1.58,0.074,0.61,115,885,848,0,8,10.5,236,632,21,760,0.268,39.75,34.05,0.97,0.14,796,2.7,285,1.8
+11356,2023,8,25,14,0,25.1,1.4,0.186,0.61,141,824,793,0,8,10.4,351,255,7,553,0.268,39.47,37.67,0.96,0.14,796,2.7,286,1.8
+11357,2023,8,25,14,30,24.9,1.4,0.186,0.61,136,807,736,0,0,10.3,284,491,0,649,0.268,39.89,42,0.96,0.14,795,2.7,289,1.9
+11358,2023,8,25,15,0,24.6,1.4,0.183,0.61,130,785,667,0,0,10.2,196,639,0,633,0.267,40.24,46.84,0.96,0.14,795,2.7,292,2
+11359,2023,8,25,15,30,24.2,1.4,0.183,0.61,121,760,589,0,0,10.2,158,685,0,579,0.267,41.21,52.03,0.96,0.14,795,2.7,296,2
+11360,2023,8,25,16,0,23.8,1.42,0.169,0.61,111,727,502,0,3,10.1,244,358,0,437,0.267,42.06,57.45,0.96,0.14,795,2.7,301,2
+11361,2023,8,25,16,30,23.3,1.42,0.169,0.61,100,682,409,0,3,10.2,235,99,0,280,0.267,43.39,63.02,0.96,0.14,796,2.7,307,1.9
+11362,2023,8,25,17,0,22.9,1.44,0.152,0.61,87,622,313,0,3,10.2,137,199,21,209,0.267,44.65,68.67,0.96,0.14,796,2.7,314,1.8
+11363,2023,8,25,17,30,22.1,1.44,0.152,0.61,71,533,215,0,3,10.2,102,321,21,189,0.267,46.86,74.36,0.96,0.14,796,2.7,320,1.5
+11364,2023,8,25,18,0,21.4,1.45,0.137,0.61,53,404,123,0,0,11.4,58,357,18,120,0.267,52.77,80.03,0.96,0.14,796,2.7,327,1.2
+11365,2023,8,25,18,30,20.4,1.45,0.137,0.61,29,205,45,1,0,11.4,30,194,11,45,0.268,56.11,85.61,0.95,0.14,796,2.7,329,1
+11366,2023,8,25,19,0,19.5,1.47,0.122,0.61,2,13,2,2,3,11.6,2,7,32,2,0.268,60.38,91.32,0.95,0.14,796,2.6,331,0.9
+11367,2023,8,25,19,30,18.9,1.47,0.122,0.61,0,0,0,0,3,11.6,0,0,0,0,0.268,62.67,96.75,0.95,0.14,796,2.6,330,0.9
+11368,2023,8,25,20,0,18.3,1.49,0.112,0.61,0,0,0,0,0,11.3,0,0,0,0,0.268,63.83,102.02,0.95,0.14,796,2.6,328,0.9
+11369,2023,8,25,20,30,17.8,1.49,0.112,0.61,0,0,0,0,0,11.3,0,0,0,0,0.268,65.86,107.05,0.95,0.14,796,2.6,324,0.9
+11370,2023,8,25,21,0,17.3,1.5,0.106,0.61,0,0,0,0,0,11.1,0,0,0,0,0.268,67.01,111.79,0.95,0.14,796,2.6,320,0.9
+11371,2023,8,25,21,30,16.9,1.5,0.106,0.61,0,0,0,0,0,11.1,0,0,0,0,0.268,68.72,116.15,0.95,0.14,796,2.5,317,0.9
+11372,2023,8,25,22,0,16.4,1.51,0.102,0.61,0,0,0,0,0,11,0,0,0,0,0.268,70.24,120.05,0.95,0.14,796,2.5,314,0.9
+11373,2023,8,25,22,30,16.1,1.51,0.102,0.61,0,0,0,0,0,11,0,0,0,0,0.268,71.59,123.38,0.95,0.14,796,2.5,311,0.9
+11374,2023,8,25,23,0,15.7,1.51,0.098,0.61,0,0,0,0,0,10.8,0,0,0,0,0.268,72.71,126.02,0.95,0.14,796,2.5,308,0.9
+11375,2023,8,25,23,30,15.4,1.51,0.098,0.61,0,0,0,0,0,10.8,0,0,0,0,0.268,74.12,127.88,0.95,0.14,796,2.5,305,0.9
+11376,2023,8,26,0,0,15.1,1.52,0.094,0.61,0,0,0,0,0,10.7,0,0,0,0,0.267,74.87,128.85,0.95,0.14,796,2.5,303,0.8
+11377,2023,8,26,0,30,14.8,1.52,0.094,0.61,0,0,0,0,0,10.7,0,0,0,0,0.267,76.32,128.9,0.95,0.14,796,2.5,300,0.8
+11378,2023,8,26,1,0,14.5,1.52,0.088,0.61,0,0,0,0,0,10.5,0,0,0,0,0.267,77.13,128.01,0.95,0.14,796,2.5,297,0.7
+11379,2023,8,26,1,30,14.3,1.52,0.088,0.61,0,0,0,0,0,10.5,0,0,0,0,0.267,78.13,126.23,0.95,0.14,796,2.5,297,0.6
+11380,2023,8,26,2,0,14.1,1.53,0.082,0.61,0,0,0,0,0,10.4,0,0,0,0,0.267,78.58,123.65,0.95,0.14,796,2.5,297,0.6
+11381,2023,8,26,2,30,13.9,1.53,0.082,0.61,0,0,0,0,0,10.4,0,0,0,0,0.267,79.6,120.38,0.95,0.14,796,2.5,305,0.5
+11382,2023,8,26,3,0,13.7,1.55,0.077,0.61,0,0,0,0,0,10.4,0,0,0,0,0.268,80.22,116.53,0.95,0.14,797,2.4,312,0.4
+11383,2023,8,26,3,30,13.5,1.55,0.077,0.61,0,0,0,0,0,10.4,0,0,0,0,0.268,81.27,112.21,0.95,0.14,797,2.4,331,0.3
+11384,2023,8,26,4,0,13.3,1.56,0.073,0.61,0,0,0,0,0,10.3,0,0,0,0,0.268,81.82,107.51,0.95,0.14,797,2.4,350,0.3
+11385,2023,8,26,4,30,13.1,1.56,0.073,0.61,0,0,0,0,0,10.3,0,0,0,0,0.268,82.89,102.5,0.95,0.14,797,2.4,189,0.3
+11386,2023,8,26,5,0,12.9,1.58,0.069,0.61,0,0,0,0,0,10.2,0,0,0,0,0.268,83.51,97.26,0.95,0.14,797,2.4,27,0.3
+11387,2023,8,26,5,30,13.9,1.58,0.069,0.61,3,19,2,0,0,10.2,3,19,0,2,0.268,78.26,91.84,0.95,0.14,797,2.3,32,0.6
+11388,2023,8,26,6,0,14.9,1.6,0.065,0.61,25,282,44,0,0,10.3,25,282,0,44,0.267,73.81,86.14,0.95,0.14,798,2.3,36,0.8
+11389,2023,8,26,6,30,16.7,1.6,0.065,0.61,41,510,124,0,0,10.3,41,510,0,124,0.267,65.81,80.58,0.95,0.14,798,2.3,28,0.8
+11390,2023,8,26,7,0,18.5,1.62,0.061,0.61,51,651,220,0,0,10.5,51,651,0,220,0.267,59.78,74.92,0.95,0.14,798,2.3,19,0.8
+11391,2023,8,26,7,30,20,1.62,0.061,0.61,59,742,322,0,0,10.5,59,742,0,322,0.267,54.47,69.24,0.95,0.14,798,2.2,176,0.9
+11392,2023,8,26,8,0,21.6,1.63,0.057,0.61,64,806,423,0,0,10.2,64,806,0,423,0.266,48.4,63.59,0.95,0.14,798,2.2,334,1
+11393,2023,8,26,8,30,22.7,1.63,0.057,0.61,69,851,520,0,0,10.2,69,851,0,520,0.266,45.28,58.03,0.95,0.14,798,2.2,329,1.1
+11394,2023,8,26,9,0,23.8,1.65,0.053,0.61,72,886,610,0,0,9.6,72,886,0,610,0.266,40.46,52.61,0.95,0.14,797,2.1,324,1.1
+11395,2023,8,26,9,30,24.8,1.65,0.053,0.61,75,914,693,0,0,9.6,75,914,0,693,0.265,38.11,47.42,0.95,0.14,797,2.1,322,1.2
+11396,2023,8,26,10,0,25.8,1.67,0.048,0.61,76,935,764,0,0,8.9,76,935,0,764,0.265,34.24,42.58,0.95,0.14,797,2.1,320,1.2
+11397,2023,8,26,10,30,26.6,1.67,0.048,0.61,74,953,823,0,0,8.9,74,953,0,823,0.265,32.67,38.23,0.95,0.14,797,2.1,317,1.2
+11398,2023,8,26,11,0,27.5,1.86,0.035,0.61,72,969,870,0,0,8.1,72,969,0,870,0.265,29.51,34.58,0.95,0.14,797,2.1,315,1.2
+11399,2023,8,26,11,30,28.1,1.86,0.035,0.61,72,976,901,0,0,8.1,72,976,0,901,0.265,28.46,31.9,0.95,0.14,796,2,312,1.1
+11400,2023,8,26,12,0,28.8,1.87,0.033,0.61,71,981,917,0,0,7.5,71,981,0,917,0.265,26.19,30.44,0.95,0.14,796,2,310,1.1
+11401,2023,8,26,12,30,29.2,1.87,0.033,0.61,71,982,918,0,0,7.5,71,982,0,918,0.265,25.59,30.4,0.95,0.14,796,2,305,1.1
+11402,2023,8,26,13,0,29.6,1.88,0.032,0.61,71,980,904,0,0,7,71,980,0,904,0.265,24.11,31.78,0.95,0.14,795,2,301,1
+11403,2023,8,26,13,30,29.9,1.88,0.032,0.61,69,976,874,0,0,7,69,976,0,874,0.265,23.7,34.4,0.95,0.14,795,2,299,1
+11404,2023,8,26,14,0,30.1,1.98,0.028,0.61,66,970,830,0,0,6.5,66,970,0,830,0.265,22.73,38,0.95,0.14,795,2,298,0.9
+11405,2023,8,26,14,30,30.1,1.98,0.028,0.61,65,958,773,0,0,6.5,65,958,0,773,0.265,22.73,42.31,0.95,0.14,795,1.9,296,0.8
+11406,2023,8,26,15,0,30,1.97,0.028,0.61,63,943,704,0,0,6.1,121,803,0,667,0.265,22.13,47.14,0.95,0.14,794,1.9,294,0.7
+11407,2023,8,26,15,30,29.7,1.97,0.028,0.61,60,922,624,0,0,6.1,95,831,0,603,0.266,22.51,52.32,0.95,0.14,794,1.9,290,0.7
+11408,2023,8,26,16,0,29.4,1.96,0.028,0.61,57,894,534,0,0,5.7,172,535,0,458,0.266,22.28,57.73,0.95,0.14,794,1.9,286,0.6
+11409,2023,8,26,16,30,28.9,1.96,0.028,0.61,54,855,438,0,5,5.7,220,110,0,269,0.266,22.93,63.29,0.95,0.14,794,1.9,282,0.5
+11410,2023,8,26,17,0,28.3,1.93,0.029,0.61,48,801,336,0,7,5.5,85,9,0,88,0.266,23.44,68.95,0.95,0.14,794,1.9,277,0.4
+11411,2023,8,26,17,30,27,1.93,0.029,0.61,43,720,234,0,5,5.5,72,88,0,95,0.267,25.29,74.64,0.95,0.14,794,1.9,273,0.3
+11412,2023,8,26,18,0,25.7,1.9,0.032,0.61,35,593,135,0,0,8.9,56,405,18,124,0.267,34.66,80.31,0.95,0.14,794,1.9,269,0.1
+11413,2023,8,26,18,30,24.7,1.9,0.032,0.61,23,376,50,6,3,9,30,88,82,36,0.267,36.82,85.89,0.95,0.14,795,1.9,255,0.1
+11414,2023,8,26,19,0,23.8,1.88,0.034,0.61,3,32,2,2,3,8.2,1,0,29,1,0.268,36.93,91.6,0.96,0.14,795,1.9,242,0.1
+11415,2023,8,26,19,30,23.2,1.88,0.034,0.61,0,0,0,0,3,8.2,0,0,0,0,0.268,38.29,97.04,0.96,0.14,795,2,271,0.1
+11416,2023,8,26,20,0,22.7,1.87,0.035,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,39.22,102.31,0.96,0.14,795,2,301,0.1
+11417,2023,8,26,20,30,22.1,1.87,0.035,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,40.67,107.36,0.96,0.14,795,2,305,0.1
+11418,2023,8,26,21,0,21.6,1.86,0.037,0.61,0,0,0,0,0,8,0,0,0,0,0.268,41.72,112.1,0.96,0.14,795,2.1,309,0.2
+11419,2023,8,26,21,30,21.2,1.86,0.037,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,42.8,116.48,0.96,0.14,796,2.1,314,0.3
+11420,2023,8,26,22,0,20.9,1.86,0.038,0.61,0,0,0,0,0,8.3,0,0,0,0,0.268,44.42,120.39,0.96,0.14,796,2.1,320,0.4
+11421,2023,8,26,22,30,20.3,1.86,0.038,0.61,0,0,0,0,4,8.3,0,0,0,0,0.268,46.09,123.72,0.96,0.14,796,2.1,324,0.5
+11422,2023,8,26,23,0,19.7,1.85,0.039,0.61,0,0,0,0,4,8.4,0,0,0,0,0.268,48.16,126.38,0.96,0.14,796,2.2,328,0.7
+11423,2023,8,26,23,30,19.2,1.85,0.039,0.61,0,0,0,0,4,8.4,0,0,0,0,0.268,49.68,128.23,0.96,0.14,796,2.2,334,0.7
+11424,2023,8,27,0,0,18.6,1.85,0.04,0.61,0,0,0,0,4,8.4,0,0,0,0,0.267,51.37,129.21,0.96,0.14,796,2.2,339,0.7
+11425,2023,8,27,0,30,18.1,1.85,0.04,0.61,0,0,0,0,5,8.4,0,0,0,0,0.267,53,129.24,0.96,0.14,796,2.2,344,0.7
+11426,2023,8,27,1,0,17.6,1.85,0.041,0.61,0,0,0,0,3,8.3,0,0,0,0,0.267,54.52,128.34,0.96,0.14,796,2.2,350,0.7
+11427,2023,8,27,1,30,17.3,1.85,0.041,0.61,0,0,0,0,8,8.3,0,0,0,0,0.267,55.56,126.54,0.96,0.14,796,2.2,177,0.7
+11428,2023,8,27,2,0,17,1.83,0.044,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,56.97,123.94,0.96,0.14,796,2.3,5,0.6
+11429,2023,8,27,2,30,16.6,1.83,0.044,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,58.43,120.65,0.96,0.14,796,2.3,14,0.7
+11430,2023,8,27,3,0,16.3,1.81,0.047,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,59.46,116.78,0.96,0.14,796,2.3,23,0.7
+11431,2023,8,27,3,30,16.1,1.81,0.047,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,60.22,112.44,0.96,0.14,796,2.3,32,0.7
+11432,2023,8,27,4,0,15.9,1.77,0.053,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,61.19,107.72,0.97,0.14,796,2.3,40,0.7
+11433,2023,8,27,4,30,15.8,1.77,0.053,0.61,0,0,0,0,0,8.5,0,0,0,0,0.267,61.66,102.7,0.97,0.14,797,2.3,45,0.8
+11434,2023,8,27,5,0,15.6,1.75,0.058,0.61,0,0,0,0,0,8.6,0,0,0,0,0.268,62.96,97.45,0.97,0.14,797,2.2,50,0.8
+11435,2023,8,27,5,30,16.3,1.75,0.058,0.61,3,19,2,2,0,8.6,1,0,29,1,0.268,60.22,92.02,0.97,0.14,797,2.2,49,1.3
+11436,2023,8,27,6,0,17,1.74,0.06,0.61,23,288,42,6,3,8.9,24,24,93,26,0.268,58.85,86.31,0.97,0.14,797,2.2,49,1.7
+11437,2023,8,27,6,30,18.3,1.74,0.06,0.61,39,515,122,1,3,8.9,70,55,11,79,0.268,54.24,80.75,0.97,0.14,797,2.2,55,1.9
+11438,2023,8,27,7,0,19.6,1.75,0.06,0.61,51,652,219,0,3,8.3,125,171,0,169,0.269,48.15,75.09,0.97,0.14,797,2.2,61,2
+11439,2023,8,27,7,30,21.1,1.75,0.06,0.61,59,742,320,0,0,8.3,100,557,0,296,0.269,43.91,69.41,0.97,0.14,797,2.2,64,1.7
+11440,2023,8,27,8,0,22.5,1.77,0.059,0.61,65,803,420,0,0,7.8,80,759,0,415,0.269,38.77,63.77,0.97,0.14,797,2.2,68,1.5
+11441,2023,8,27,8,30,23.8,1.77,0.059,0.61,70,848,517,0,0,7.8,70,848,0,517,0.269,35.85,58.21,0.97,0.14,797,2.1,70,1
+11442,2023,8,27,9,0,25,1.8,0.057,0.61,73,883,607,0,0,7.8,73,883,0,607,0.268,33.41,52.8,0.96,0.14,797,2.1,72,0.5
+11443,2023,8,27,9,30,26,1.8,0.057,0.61,76,909,689,0,0,7.8,76,909,0,689,0.268,31.49,47.63,0.96,0.14,797,2.1,170,0.4
+11444,2023,8,27,10,0,27,1.82,0.053,0.61,78,930,760,0,0,7.9,78,930,0,760,0.268,29.91,42.8,0.96,0.14,797,2.1,269,0.3
+11445,2023,8,27,10,30,27.7,1.82,0.053,0.61,78,946,819,0,0,7.9,78,946,0,819,0.268,28.68,38.48,0.96,0.14,796,2.1,266,0.6
+11446,2023,8,27,11,0,28.5,1.88,0.047,0.61,78,960,866,0,0,7.9,78,960,0,866,0.268,27.38,34.86,0.97,0.14,796,2,262,0.8
+11447,2023,8,27,11,30,28.9,1.88,0.047,0.61,80,966,897,0,0,7.9,182,726,4,796,0.268,26.75,32.21,0.97,0.14,796,2,260,1
+11448,2023,8,27,12,0,29.4,1.86,0.047,0.61,80,969,913,0,3,7.7,334,280,7,575,0.268,25.72,30.78,0.97,0.14,795,2,258,1.2
+11449,2023,8,27,12,30,29.6,1.86,0.047,0.61,80,969,913,0,0,7.7,231,532,0,688,0.268,25.43,30.76,0.97,0.14,795,2,255,1.3
+11450,2023,8,27,13,0,29.9,1.83,0.049,0.61,80,965,897,0,0,7.5,202,615,0,723,0.268,24.58,32.13,0.97,0.14,795,2,252,1.4
+11451,2023,8,27,13,30,29.9,1.83,0.049,0.61,80,958,867,0,3,7.5,263,407,0,597,0.268,24.58,34.74,0.97,0.14,795,2,254,1.5
+11452,2023,8,27,14,0,29.9,1.79,0.052,0.61,80,947,823,0,8,7.1,189,584,0,647,0.268,23.89,38.33,0.97,0.14,794,2,255,1.6
+11453,2023,8,27,14,30,29.9,1.79,0.052,0.61,78,933,764,0,8,7.1,243,540,0,640,0.268,23.89,42.63,0.97,0.14,794,2,259,1.6
+11454,2023,8,27,15,0,29.9,1.77,0.056,0.61,77,913,694,0,8,6.6,243,335,0,470,0.268,23.11,47.45,0.97,0.14,794,2,263,1.7
+11455,2023,8,27,15,30,29.6,1.77,0.056,0.61,75,885,612,0,8,6.6,201,572,7,548,0.268,23.51,52.61,0.97,0.14,794,2,275,1.7
+11456,2023,8,27,16,0,29.2,1.72,0.064,0.61,72,847,521,0,8,6.2,163,586,7,473,0.268,23.45,58.02,0.97,0.14,794,2,287,1.8
+11457,2023,8,27,16,30,28.5,1.72,0.064,0.61,68,799,424,0,0,6.2,68,799,0,424,0.268,24.41,63.58,0.97,0.14,794,2,304,2.1
+11458,2023,8,27,17,0,27.8,1.69,0.071,0.61,63,731,322,0,0,6.2,67,711,0,319,0.268,25.31,69.23,0.98,0.13,794,2.1,320,2.3
+11459,2023,8,27,17,30,26.5,1.69,0.071,0.61,54,639,220,0,0,6.1,54,639,0,220,0.268,27.31,74.91,0.97,0.13,794,2.1,332,2.3
+11460,2023,8,27,18,0,25.2,1.68,0.074,0.61,43,497,124,2,0,7.7,57,370,29,118,0.268,32.74,80.58,0.97,0.13,794,2.1,344,2.3
+11461,2023,8,27,18,30,24.1,1.68,0.074,0.61,25,270,43,6,3,7.7,31,34,86,33,0.268,35,86.16,0.97,0.13,795,2.1,352,2.5
+11462,2023,8,27,19,0,23.1,1.71,0.076,0.61,3,17,2,1,0,7.6,1,9,11,1,0.268,36.85,91.89,0.97,0.13,795,2.1,359,2.7
+11463,2023,8,27,19,30,22.6,1.71,0.076,0.61,0,0,0,0,0,7.6,0,0,0,0,0.268,38.03,97.34,0.97,0.13,796,2.1,185,2.6
+11464,2023,8,27,20,0,22.1,1.74,0.075,0.61,0,0,0,0,0,7.4,0,0,0,0,0.268,38.66,102.61,0.97,0.13,796,2.1,10,2.5
+11465,2023,8,27,20,30,21.5,1.74,0.075,0.61,0,0,0,0,0,7.4,0,0,0,0,0.268,40.1,107.67,0.97,0.13,796,2.1,14,2.1
+11466,2023,8,27,21,0,20.8,1.77,0.072,0.61,0,0,0,0,0,7.6,0,0,0,0,0.268,42.63,112.42,0.97,0.13,796,2.1,19,1.7
+11467,2023,8,27,21,30,20.2,1.77,0.072,0.61,0,0,0,0,0,7.6,0,0,0,0,0.268,44.23,116.81,0.96,0.13,796,2,19,1.4
+11468,2023,8,27,22,0,19.6,1.81,0.064,0.61,0,0,0,1,0,7.9,0,0,57,0,0.268,46.72,120.73,0.96,0.13,796,2,20,1.1
+11469,2023,8,27,22,30,19.1,1.81,0.064,0.61,0,0,0,0,0,7.9,0,0,0,0,0.268,48.19,124.07,0.96,0.13,796,1.9,13,1
+11470,2023,8,27,23,0,18.6,1.84,0.054,0.61,0,0,0,0,0,7.6,0,0,0,0,0.268,48.87,126.73,0.95,0.13,796,1.8,6,0.9
+11471,2023,8,27,23,30,18.2,1.84,0.054,0.61,0,0,0,0,0,7.6,0,0,0,0,0.267,50.1,128.59,0.95,0.13,796,1.7,181,0.8
+11472,2023,8,28,0,0,17.8,1.86,0.047,0.61,0,0,0,0,0,7.3,0,0,0,0,0.267,50.32,129.56,0.95,0.13,796,1.7,356,0.8
+11473,2023,8,28,0,30,17.4,1.86,0.047,0.61,0,0,0,0,0,7.3,0,0,0,0,0.267,51.6,129.59,0.94,0.13,796,1.6,352,0.7
+11474,2023,8,28,1,0,17,1.86,0.041,0.61,0,0,0,0,0,7.2,0,0,0,0,0.266,52.61,128.67,0.94,0.13,796,1.6,349,0.7
+11475,2023,8,28,1,30,16.5,1.86,0.041,0.61,0,0,0,0,3,7.2,0,0,0,0,0.266,54.3,126.85,0.93,0.13,796,1.6,351,0.6
+11476,2023,8,28,2,0,16,1.86,0.038,0.61,0,0,0,0,0,7.4,0,0,0,0,0.267,56.56,124.24,0.93,0.13,796,1.6,352,0.6
+11477,2023,8,28,2,30,15.5,1.86,0.038,0.61,0,0,0,0,0,7.4,0,0,0,0,0.267,58.39,120.92,0.93,0.13,796,1.5,181,0.6
+11478,2023,8,28,3,0,15,1.85,0.036,0.61,0,0,0,0,0,7.6,0,0,0,0,0.267,61.1,117.03,0.93,0.13,796,1.5,9,0.5
+11479,2023,8,28,3,30,14.6,1.85,0.036,0.61,0,0,0,0,0,7.6,0,0,0,0,0.268,62.69,112.67,0.93,0.13,796,1.5,16,0.6
+11480,2023,8,28,4,0,14.1,1.83,0.035,0.61,0,0,0,0,0,7.8,0,0,0,0,0.268,65.96,107.94,0.93,0.13,796,1.5,24,0.6
+11481,2023,8,28,4,30,13.8,1.83,0.035,0.61,0,0,0,0,0,7.8,0,0,0,0,0.269,67.26,102.9,0.93,0.13,796,1.5,29,0.6
+11482,2023,8,28,5,0,13.4,1.82,0.035,0.61,0,0,0,0,0,8.2,0,0,0,0,0.269,70.84,97.64,0.93,0.13,797,1.5,34,0.7
+11483,2023,8,28,5,30,14.4,1.82,0.035,0.61,0,0,0,0,0,8.2,0,0,0,0,0.269,66.4,92.2,0.93,0.13,797,1.5,33,1.1
+11484,2023,8,28,6,0,15.3,1.81,0.036,0.61,22,321,42,0,0,8.8,22,292,7,40,0.27,65.29,86.47,0.93,0.13,797,1.5,33,1.5
+11485,2023,8,28,6,30,17.1,1.81,0.036,0.61,35,577,126,0,0,8.8,35,577,0,126,0.27,58.23,80.92,0.93,0.13,797,1.5,39,1.7
+11486,2023,8,28,7,0,18.8,1.81,0.037,0.61,45,709,225,0,0,8.7,45,709,0,225,0.271,51.77,75.26,0.93,0.13,797,1.5,45,1.9
+11487,2023,8,28,7,30,20.6,1.81,0.037,0.61,51,793,328,0,0,8.7,51,793,0,328,0.271,46.32,69.58,0.93,0.13,797,1.5,34,1.8
+11488,2023,8,28,8,0,22.4,1.8,0.038,0.61,57,849,430,0,0,7.2,57,849,0,430,0.27,37.52,63.94,0.93,0.13,797,1.5,22,1.6
+11489,2023,8,28,8,30,23.6,1.8,0.038,0.61,62,889,528,0,0,7.2,62,889,0,528,0.27,34.9,58.39,0.93,0.13,797,1.5,189,1.7
+11490,2023,8,28,9,0,24.8,1.79,0.039,0.61,65,918,618,0,0,6.3,65,918,0,618,0.269,30.6,52.99,0.93,0.13,797,1.5,356,1.7
+11491,2023,8,28,9,30,25.6,1.79,0.039,0.61,68,940,699,0,0,6.3,68,940,0,699,0.268,29.19,47.84,0.93,0.13,797,1.5,350,1.7
+11492,2023,8,28,10,0,26.5,1.78,0.039,0.61,71,957,771,0,0,5.8,71,957,0,771,0.267,26.7,43.03,0.93,0.13,797,1.5,345,1.7
+11493,2023,8,28,10,30,27.1,1.78,0.039,0.61,72,971,829,0,0,5.8,72,971,0,829,0.266,25.78,38.74,0.93,0.13,797,1.5,341,1.7
+11494,2023,8,28,11,0,27.8,1.82,0.038,0.61,73,981,875,0,0,5.3,73,981,0,875,0.265,23.86,35.15,0.93,0.13,797,1.5,337,1.7
+11495,2023,8,28,11,30,28.3,1.82,0.038,0.61,75,986,906,0,0,5.3,75,986,0,906,0.264,23.18,32.53,0.93,0.13,797,1.5,334,1.7
+11496,2023,8,28,12,0,28.8,1.81,0.038,0.61,74,989,921,0,0,4.7,74,989,0,921,0.263,21.6,31.13,0.94,0.13,796,1.5,331,1.7
+11497,2023,8,28,12,30,29.1,1.81,0.038,0.61,74,989,921,0,0,4.7,102,939,0,906,0.262,21.23,31.11,0.94,0.13,796,1.5,330,1.7
+11498,2023,8,28,13,0,29.5,1.8,0.038,0.61,74,986,906,0,3,4.1,335,451,0,715,0.261,19.88,32.49,0.94,0.13,796,1.5,330,1.7
+11499,2023,8,28,13,30,29.7,1.8,0.038,0.61,74,980,876,0,0,4.1,127,860,0,831,0.261,19.65,35.09,0.94,0.13,796,1.5,333,1.7
+11500,2023,8,28,14,0,29.9,1.78,0.039,0.61,73,971,831,0,0,3.5,149,814,0,785,0.26,18.66,38.67,0.94,0.13,796,1.5,336,1.7
+11501,2023,8,28,14,30,29.8,1.78,0.039,0.61,70,959,772,0,0,3.5,70,959,0,772,0.26,18.74,42.96,0.94,0.13,795,1.5,341,1.7
+11502,2023,8,28,15,0,29.8,1.75,0.039,0.61,68,941,701,0,0,2.9,113,846,0,682,0.259,18,47.75,0.94,0.13,795,1.5,347,1.7
+11503,2023,8,28,15,30,29.5,1.75,0.039,0.61,65,918,619,0,3,2.9,209,522,0,524,0.259,18.31,52.91,0.94,0.13,795,1.5,174,1.8
+11504,2023,8,28,16,0,29.2,1.71,0.041,0.61,63,886,528,0,0,2.5,126,666,0,476,0.259,18.02,58.31,0.94,0.13,795,1.5,1,1.9
+11505,2023,8,28,16,30,28.5,1.71,0.041,0.61,59,843,430,0,0,2.5,59,843,0,430,0.259,18.76,63.86,0.94,0.13,795,1.6,7,2
+11506,2023,8,28,17,0,27.9,1.65,0.044,0.61,53,782,327,0,0,2.2,53,782,0,327,0.259,19.12,69.51,0.94,0.14,795,1.6,14,2.1
+11507,2023,8,28,17,30,26.3,1.65,0.044,0.61,47,694,224,0,0,2.2,47,694,0,224,0.258,21,75.19,0.94,0.14,795,1.6,22,1.7
+11508,2023,8,28,18,0,24.6,1.6,0.047,0.61,37,553,125,0,0,5,37,553,0,125,0.258,28.16,80.86,0.94,0.14,795,1.6,30,1.2
+11509,2023,8,28,18,30,23.3,1.6,0.047,0.61,23,294,41,0,0,5,23,294,0,41,0.259,30.44,86.44,0.94,0.14,795,1.6,39,1.3
+11510,2023,8,28,19,0,22,1.57,0.049,0.61,0,0,0,0,0,4.6,0,0,0,0,0.259,32.14,92.18,0.95,0.14,796,1.6,48,1.4
+11511,2023,8,28,19,30,21.4,1.57,0.049,0.61,0,0,0,0,0,4.6,0,0,0,0,0.259,33.34,97.63,0.94,0.14,796,1.6,52,1.6
+11512,2023,8,28,20,0,20.7,1.56,0.048,0.61,0,0,0,0,0,4.6,0,0,0,0,0.259,34.85,102.92,0.94,0.14,796,1.6,55,1.7
+11513,2023,8,28,20,30,19.9,1.56,0.048,0.61,0,0,0,0,0,4.6,0,0,0,0,0.259,36.61,107.98,0.94,0.14,796,1.6,58,1.6
+11514,2023,8,28,21,0,19.1,1.57,0.047,0.61,0,0,0,0,0,5.3,0,0,0,0,0.26,40.21,112.75,0.94,0.14,797,1.6,61,1.5
+11515,2023,8,28,21,30,18.4,1.57,0.047,0.61,0,0,0,0,0,5.3,0,0,14,0,0.26,42,117.14,0.94,0.14,797,1.6,64,1.5
+11516,2023,8,28,22,0,17.7,1.6,0.046,0.61,0,0,0,1,0,5.7,0,0,71,0,0.26,45.16,121.07,0.94,0.14,797,1.6,66,1.4
+11517,2023,8,28,22,30,17.2,1.6,0.046,0.61,0,0,0,0,0,5.7,0,0,0,0,0.26,46.6,124.42,0.94,0.14,797,1.6,68,1.3
+11518,2023,8,28,23,0,16.6,1.62,0.044,0.61,0,0,0,0,0,5.9,0,0,0,0,0.26,49.33,127.09,0.94,0.14,797,1.6,69,1.3
+11519,2023,8,28,23,30,16.1,1.62,0.044,0.61,0,0,0,0,0,5.9,0,0,0,0,0.26,50.92,128.95,0.94,0.14,797,1.6,69,1.2
+11520,2023,8,29,0,0,15.7,1.65,0.043,0.61,0,0,0,0,0,6.2,0,0,0,0,0.26,53.08,129.92,0.94,0.14,797,1.6,68,1.1
+11521,2023,8,29,0,30,15.2,1.65,0.043,0.61,0,0,0,0,0,6.2,0,0,0,0,0.26,54.81,129.94,0.94,0.14,797,1.6,67,1.1
+11522,2023,8,29,1,0,14.8,1.67,0.042,0.61,0,0,0,0,0,6.3,0,0,0,0,0.26,56.84,129,0.94,0.14,797,1.6,66,1
+11523,2023,8,29,1,30,14.4,1.67,0.042,0.61,0,0,0,0,0,6.3,0,0,0,0,0.261,58.32,127.17,0.94,0.14,797,1.6,65,1.1
+11524,2023,8,29,2,0,14,1.7,0.041,0.61,0,0,0,0,0,6.5,0,0,0,0,0.261,60.44,124.53,0.94,0.14,797,1.6,64,1.1
+11525,2023,8,29,2,30,13.8,1.7,0.041,0.61,0,0,0,0,0,6.5,0,0,0,0,0.261,61.23,121.2,0.94,0.14,797,1.5,66,1.1
+11526,2023,8,29,3,0,13.5,1.71,0.04,0.61,0,0,0,0,0,6.6,0,0,0,0,0.261,63.22,117.29,0.94,0.14,797,1.5,68,1.2
+11527,2023,8,29,3,30,13.3,1.71,0.04,0.61,0,0,0,0,0,6.6,0,0,0,0,0.26,64.05,112.91,0.94,0.14,797,1.5,69,1.2
+11528,2023,8,29,4,0,13.1,1.72,0.039,0.61,0,0,0,0,0,6.9,0,0,0,0,0.26,65.86,108.15,0.93,0.14,797,1.5,70,1.2
+11529,2023,8,29,4,30,12.8,1.72,0.039,0.61,0,0,0,0,0,6.9,0,0,0,0,0.26,67.16,103.11,0.93,0.14,797,1.5,72,1.2
+11530,2023,8,29,5,0,12.6,1.73,0.039,0.61,0,0,0,0,0,7.1,0,0,0,0,0.26,68.97,97.83,0.93,0.14,797,1.5,73,1.2
+11531,2023,8,29,5,30,13.7,1.73,0.039,0.61,0,0,0,0,0,7.1,0,0,0,0,0.259,64.21,92.38,0.93,0.14,797,1.4,73,1.8
+11532,2023,8,29,6,0,14.8,1.74,0.038,0.61,22,310,40,0,0,7.3,22,310,0,40,0.259,60.87,86.64,0.93,0.14,798,1.4,73,2.3
+11533,2023,8,29,6,30,16.5,1.74,0.038,0.61,35,573,124,0,0,7.3,35,573,0,124,0.259,54.61,81.08,0.93,0.14,798,1.4,72,2.3
+11534,2023,8,29,7,0,18.2,1.74,0.037,0.61,44,711,223,0,0,7.3,44,711,0,223,0.259,48.86,75.42,0.93,0.14,798,1.4,72,2.4
+11535,2023,8,29,7,30,20.7,1.74,0.037,0.61,51,797,327,0,0,7.3,51,797,0,327,0.259,41.85,69.75,0.93,0.14,798,1.4,80,2.6
+11536,2023,8,29,8,0,23.3,1.74,0.035,0.61,56,857,430,0,0,4.8,56,857,0,430,0.259,30.04,64.11,0.93,0.14,798,1.3,88,2.8
+11537,2023,8,29,8,30,24.6,1.74,0.035,0.61,60,899,529,0,0,4.8,60,899,0,529,0.259,27.8,58.57,0.93,0.14,798,1.3,91,2.7
+11538,2023,8,29,9,0,25.9,1.74,0.035,0.61,63,929,620,0,0,3.3,63,929,0,620,0.259,23.14,53.19,0.93,0.14,798,1.3,94,2.5
+11539,2023,8,29,9,30,26.7,1.74,0.035,0.61,66,953,703,0,0,3.3,66,953,0,703,0.259,22.07,48.05,0.93,0.14,798,1.3,100,2.1
+11540,2023,8,29,10,0,27.4,1.75,0.034,0.61,68,971,775,0,0,2.8,68,971,0,775,0.259,20.54,43.27,0.93,0.14,798,1.3,106,1.7
+11541,2023,8,29,10,30,28,1.75,0.034,0.61,68,987,835,0,0,2.8,68,987,0,835,0.259,19.83,39,0.93,0.14,798,1.3,117,1.5
+11542,2023,8,29,11,0,28.6,1.87,0.026,0.61,66,1000,881,0,0,2.5,66,1000,0,881,0.259,18.72,35.44,0.94,0.14,797,1.2,129,1.2
+11543,2023,8,29,11,30,29.1,1.87,0.026,0.61,67,1007,913,0,0,2.5,67,1007,0,913,0.259,18.18,32.85,0.94,0.14,797,1.2,145,1.1
+11544,2023,8,29,12,0,29.5,1.88,0.025,0.61,67,1010,928,0,0,2.1,67,1010,0,928,0.259,17.32,31.47,0.93,0.14,797,1.2,161,1.1
+11545,2023,8,29,12,30,29.8,1.88,0.025,0.61,67,1011,929,0,0,2.1,67,1011,0,929,0.259,17,31.47,0.93,0.14,796,1.2,172,1.1
+11546,2023,8,29,13,0,30.1,1.89,0.025,0.61,66,1010,914,0,0,1.7,66,1010,0,914,0.259,16.19,32.85,0.93,0.14,796,1.2,183,1.2
+11547,2023,8,29,13,30,30.3,1.89,0.025,0.61,65,1004,883,0,0,1.7,65,1004,0,883,0.259,15.99,35.45,0.93,0.14,795,1.2,186,1.4
+11548,2023,8,29,14,0,30.4,1.84,0.026,0.61,65,996,839,0,0,1.2,65,996,0,839,0.259,15.39,39.01,0.93,0.14,795,1.1,188,1.5
+11549,2023,8,29,14,30,30.3,1.84,0.026,0.61,63,985,780,0,0,1.2,63,985,0,780,0.259,15.46,43.28,0.93,0.14,794,1.1,190,1.7
+11550,2023,8,29,15,0,30.2,1.85,0.025,0.61,61,970,709,0,0,0.7,61,970,0,709,0.258,15.02,48.07,0.93,0.14,794,1.1,191,1.9
+11551,2023,8,29,15,30,29.9,1.85,0.025,0.61,59,949,627,0,0,0.7,59,949,0,627,0.258,15.28,53.21,0.93,0.14,794,1.1,193,2.1
+11552,2023,8,29,16,0,29.5,1.86,0.025,0.61,55,922,535,0,0,0.3,55,922,0,535,0.258,15.11,58.6,0.93,0.14,794,1.1,195,2.3
+11553,2023,8,29,16,30,28.9,1.86,0.025,0.61,51,882,436,0,0,0.2,51,882,0,436,0.258,15.62,64.15,0.93,0.14,793,1.1,198,2.4
+11554,2023,8,29,17,0,28.3,1.85,0.025,0.61,47,826,332,0,0,0.1,47,826,0,332,0.258,15.99,69.79,0.93,0.14,793,1.1,200,2.4
+11555,2023,8,29,17,30,26.4,1.85,0.025,0.61,40,744,227,0,0,0.1,40,744,0,227,0.258,17.86,75.48,0.93,0.14,793,1.1,198,1.8
+11556,2023,8,29,18,0,24.6,1.83,0.026,0.61,32,610,126,0,0,3.5,32,610,0,126,0.258,25.4,81.15,0.93,0.14,793,1.1,196,1.2
+11557,2023,8,29,18,30,23.2,1.83,0.026,0.61,20,343,40,0,0,3.5,20,343,0,40,0.259,27.65,86.72,0.93,0.14,794,1.1,190,1.2
+11558,2023,8,29,19,0,21.8,1.84,0.027,0.61,0,0,0,0,0,3.2,0,0,0,0,0.259,29.46,92.47,0.93,0.14,794,1.1,183,1.2
+11559,2023,8,29,19,30,21.1,1.84,0.027,0.61,0,0,0,0,0,3.2,0,0,0,0,0.259,30.74,97.93,0.93,0.14,794,1.1,181,1.3
+11560,2023,8,29,20,0,20.3,1.85,0.028,0.61,0,0,0,0,0,2.8,0,0,0,0,0.259,31.51,103.22,0.94,0.14,794,1.2,179,1.4
+11561,2023,8,29,20,30,19.9,1.85,0.028,0.61,0,0,0,0,0,2.8,0,0,0,0,0.26,32.29,108.29,0.94,0.14,794,1.3,181,1.5
+11562,2023,8,29,21,0,19.4,1.85,0.031,0.61,0,0,0,0,0,2.6,0,0,0,0,0.26,32.64,113.07,0.94,0.14,794,1.3,182,1.6
+11563,2023,8,29,21,30,19.1,1.85,0.031,0.61,0,0,0,0,0,2.5,0,0,29,0,0.261,33.21,117.48,0.94,0.14,793,1.4,185,1.8
+11564,2023,8,29,22,0,18.8,1.85,0.033,0.61,0,0,0,1,0,2.5,0,0,86,0,0.261,33.69,121.42,0.95,0.14,793,1.4,187,2
+11565,2023,8,29,22,30,18.6,1.85,0.033,0.61,0,0,0,0,0,2.5,0,0,0,0,0.261,34.11,124.78,0.95,0.14,793,1.4,189,2.2
+11566,2023,8,29,23,0,18.4,1.85,0.036,0.61,0,0,0,0,0,2.4,0,0,0,0,0.262,34.48,127.45,0.95,0.14,793,1.5,191,2.4
+11567,2023,8,29,23,30,18.3,1.85,0.036,0.61,0,0,0,0,0,2.4,0,0,0,0,0.262,34.7,129.32,0.95,0.14,793,1.5,191,2.5
+11568,2023,8,30,0,0,18.1,1.85,0.04,0.61,0,0,0,0,0,2.3,0,0,0,0,0.262,34.85,130.28,0.95,0.14,793,1.6,192,2.7
+11569,2023,8,30,0,30,17.9,1.85,0.04,0.61,0,0,0,0,0,2.3,0,0,0,0,0.262,35.29,130.29,0.95,0.14,793,1.6,194,2.7
+11570,2023,8,30,1,0,17.8,1.83,0.043,0.61,0,0,0,0,0,2.3,0,0,0,0,0.263,35.32,129.34,0.96,0.14,793,1.6,197,2.8
+11571,2023,8,30,1,30,17.4,1.83,0.043,0.61,0,0,0,0,0,2.3,0,0,0,0,0.263,36.22,127.48,0.95,0.14,793,1.6,202,2.6
+11572,2023,8,30,2,0,17.1,1.81,0.044,0.61,0,0,0,0,0,2.4,0,0,0,0,0.264,37.36,124.82,0.95,0.14,792,1.6,207,2.4
+11573,2023,8,30,2,30,16.6,1.81,0.044,0.61,0,0,0,0,0,2.4,0,0,0,0,0.264,38.61,121.47,0.95,0.14,793,1.6,214,2.1
+11574,2023,8,30,3,0,16.2,1.78,0.044,0.61,0,0,0,0,0,2.9,0,0,0,0,0.265,40.91,117.54,0.95,0.14,793,1.6,221,1.8
+11575,2023,8,30,3,30,15.7,1.78,0.044,0.61,0,0,0,0,0,2.9,0,0,0,0,0.265,42.23,113.14,0.94,0.14,793,1.5,227,1.5
+11576,2023,8,30,4,0,15.3,1.75,0.044,0.61,0,0,0,0,0,3.4,0,0,0,0,0.266,44.75,108.37,0.94,0.14,793,1.5,232,1.3
+11577,2023,8,30,4,30,14.9,1.75,0.044,0.61,0,0,0,0,0,3.3,0,0,0,0,0.266,45.91,103.31,0.94,0.14,793,1.5,238,1.1
+11578,2023,8,30,5,0,14.6,1.72,0.047,0.61,0,0,0,0,0,3.8,0,0,0,0,0.267,48.16,98.02,0.93,0.14,793,1.5,243,1
+11579,2023,8,30,5,30,15.7,1.72,0.047,0.61,0,0,0,0,0,3.8,0,0,0,0,0.267,44.88,92.56,0.93,0.14,793,1.5,245,1
+11580,2023,8,30,6,0,16.8,1.7,0.051,0.61,22,276,37,0,0,4.1,22,276,0,37,0.267,42.95,86.81,0.93,0.14,793,1.5,247,1.1
+11581,2023,8,30,6,30,18.6,1.7,0.051,0.61,37,537,119,0,0,4.2,37,537,0,119,0.268,38.41,81.26,0.93,0.14,794,1.4,249,1.3
+11582,2023,8,30,7,0,20.4,1.69,0.052,0.61,48,678,217,0,0,4,48,678,0,217,0.268,34.08,75.59,0.93,0.14,794,1.4,250,1.4
+11583,2023,8,30,7,30,22.3,1.69,0.052,0.61,56,770,320,0,0,4.1,56,770,0,320,0.268,30.35,69.92,0.93,0.14,794,1.4,239,1.9
+11584,2023,8,30,8,0,24.2,1.68,0.051,0.61,62,832,423,0,0,3.2,62,832,0,423,0.268,25.54,64.29,0.93,0.14,794,1.4,229,2.4
+11585,2023,8,30,8,30,25.6,1.68,0.051,0.61,67,878,522,0,0,3.2,67,878,0,522,0.268,23.5,58.76,0.93,0.14,794,1.4,227,3
+11586,2023,8,30,9,0,27,1.68,0.048,0.61,70,913,614,0,0,2.3,70,913,0,614,0.268,20.21,53.39,0.92,0.14,794,1.3,225,3.6
+11587,2023,8,30,9,30,28.1,1.68,0.048,0.61,72,940,698,0,0,2.3,72,940,0,698,0.267,18.94,48.26,0.92,0.14,793,1.3,224,4
+11588,2023,8,30,10,0,29.1,1.67,0.044,0.61,73,962,771,0,0,1.3,73,962,0,771,0.267,16.66,43.5,0.92,0.14,793,1.2,224,4.5
+11589,2023,8,30,10,30,29.9,1.67,0.044,0.61,72,981,832,0,0,1.3,72,981,0,832,0.266,15.91,39.26,0.92,0.14,793,1.2,224,5
+11590,2023,8,30,11,0,30.7,1.88,0.034,0.61,71,998,881,0,0,0,71,998,0,881,0.266,13.88,35.73,0.92,0.14,792,1.1,224,5.4
+11591,2023,8,30,11,30,31.2,1.88,0.034,0.61,71,1006,913,0,0,0,71,1006,0,913,0.265,13.49,33.17,0.92,0.14,792,1.1,224,5.9
+11592,2023,8,30,12,0,31.7,1.88,0.033,0.61,71,1012,931,0,0,-1.5,71,1012,0,931,0.264,11.71,31.82,0.92,0.14,792,1,225,6.3
+11593,2023,8,30,12,30,31.9,1.88,0.033,0.61,72,1014,933,0,0,-1.5,72,1014,0,933,0.264,11.57,31.84,0.92,0.14,791,1,226,6.7
+11594,2023,8,30,13,0,32.1,1.87,0.032,0.61,71,1013,918,0,0,-3.1,71,1013,0,918,0.263,10.2,33.22,0.92,0.14,791,0.9,227,7
+11595,2023,8,30,13,30,32.2,1.87,0.032,0.61,69,1008,887,0,0,-3.1,69,1008,0,887,0.263,10.15,35.8,0.92,0.14,791,0.9,228,7.1
+11596,2023,8,30,14,0,32.2,1.9,0.032,0.61,68,1001,842,0,0,-4.3,68,1001,0,842,0.262,9.27,39.35,0.91,0.14,790,0.9,229,7.2
+11597,2023,8,30,14,30,32,1.9,0.032,0.61,67,989,783,0,0,-4.3,67,989,0,783,0.262,9.37,43.61,0.91,0.14,790,0.9,230,7.2
+11598,2023,8,30,15,0,31.9,1.9,0.033,0.61,65,972,711,0,0,-5.1,65,972,0,711,0.262,8.88,48.38,0.91,0.14,790,0.8,231,7.1
+11599,2023,8,30,15,30,31.4,1.9,0.033,0.61,62,950,627,0,0,-5.1,62,950,0,627,0.263,9.13,53.52,0.91,0.14,790,0.8,231,6.9
+11600,2023,8,30,16,0,31,1.89,0.035,0.61,60,918,534,0,0,-5.6,60,918,0,534,0.263,9,58.9,0.91,0.14,790,0.8,232,6.7
+11601,2023,8,30,16,30,30.2,1.89,0.035,0.61,55,876,433,0,0,-5.6,55,876,0,433,0.263,9.41,64.44,0.9,0.14,789,0.8,232,6.1
+11602,2023,8,30,17,0,29.5,1.89,0.037,0.61,50,816,328,0,0,-5.5,50,816,0,328,0.263,9.83,70.08,0.9,0.14,789,0.8,232,5.6
+11603,2023,8,30,17,30,27.2,1.89,0.037,0.61,44,728,223,0,0,-5.6,44,728,0,223,0.263,11.23,75.76,0.9,0.14,789,0.8,233,4.2
+11604,2023,8,30,18,0,24.9,1.86,0.038,0.61,34,584,121,0,0,-3.6,34,584,0,121,0.264,14.97,81.43,0.9,0.14,789,0.9,234,2.7
+11605,2023,8,30,18,30,23.1,1.86,0.038,0.61,21,309,37,0,0,-3.5,21,309,0,37,0.264,16.69,87,0.9,0.14,790,0.9,243,2.3
+11606,2023,8,30,19,0,21.3,1.82,0.04,0.61,0,0,0,0,0,-2,0,0,0,0,0.265,20.87,92.76,0.9,0.14,790,0.9,252,1.9
+11607,2023,8,30,19,30,20.6,1.82,0.04,0.61,0,0,0,0,0,-2,0,0,0,0,0.265,21.78,98.23,0.9,0.14,790,0.9,267,1.9
+11608,2023,8,30,20,0,20,1.78,0.042,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.266,24.23,103.53,0.9,0.14,791,0.9,281,1.8
+11609,2023,8,30,20,30,19.3,1.78,0.042,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.267,25.3,108.61,0.9,0.14,791,0.9,294,1.9
+11610,2023,8,30,21,0,18.7,1.74,0.043,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.267,27.53,113.4,0.9,0.14,791,0.9,307,2
+11611,2023,8,30,21,30,17.9,1.74,0.043,0.61,0,0,0,0,0,-0.4,0,0,29,0,0.268,28.95,117.82,0.9,0.14,791,0.9,315,1.8
+11612,2023,8,30,22,0,17.2,1.69,0.044,0.61,0,0,0,1,0,0.3,0,0,86,0,0.269,31.77,121.76,0.9,0.14,791,0.9,323,1.7
+11613,2023,8,30,22,30,16.6,1.69,0.044,0.61,0,0,0,0,0,0.2,0,0,0,0,0.269,32.99,125.14,0.9,0.14,791,0.8,332,1.5
+11614,2023,8,30,23,0,16,1.62,0.045,0.61,0,0,0,0,0,0.7,0,0,0,0,0.27,35.39,127.82,0.9,0.14,791,0.8,340,1.3
+11615,2023,8,30,23,30,15.7,1.62,0.045,0.61,0,0,0,0,0,0.7,0,0,0,0,0.271,36.07,129.68,0.9,0.14,791,0.8,172,1.2
+11616,2023,8,31,0,0,15.4,1.56,0.048,0.61,0,0,0,0,0,0.7,0,0,0,0,0.271,36.87,130.64,0.91,0.14,791,0.8,4,1.1
+11617,2023,8,31,0,30,15.3,1.56,0.048,0.61,0,0,0,0,0,0.7,0,0,0,0,0.272,37.11,130.64,0.91,0.14,791,0.9,17,1.1
+11618,2023,8,31,1,0,15.1,1.53,0.051,0.61,0,0,0,0,0,0.6,0,0,0,0,0.272,37.13,129.67,0.91,0.14,791,0.9,29,1.1
+11619,2023,8,31,1,30,14.9,1.53,0.051,0.61,0,0,0,0,0,0.6,0,0,0,0,0.272,37.61,127.8,0.91,0.14,791,0.9,38,1
+11620,2023,8,31,2,0,14.7,1.52,0.054,0.61,0,0,0,0,0,0.4,0,0,0,0,0.272,37.61,125.12,0.91,0.14,791,0.9,48,1
+11621,2023,8,31,2,30,14.5,1.52,0.054,0.61,0,0,0,0,0,0.4,0,0,0,0,0.273,38.09,121.74,0.91,0.14,791,0.9,51,0.9
+11622,2023,8,31,3,0,14.3,1.53,0.057,0.61,0,0,0,0,0,0.2,0,0,0,0,0.273,38.19,117.79,0.91,0.14,791,0.9,54,0.8
+11623,2023,8,31,3,30,14.1,1.53,0.057,0.61,0,0,0,0,0,0.2,0,0,0,0,0.273,38.68,113.37,0.91,0.14,791,0.9,49,0.8
+11624,2023,8,31,4,0,14,1.55,0.059,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,38.63,108.59,0.91,0.14,791,0.9,45,0.7
+11625,2023,8,31,4,30,13.7,1.55,0.059,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,39.38,103.51,0.91,0.14,791,0.9,39,0.6
+11626,2023,8,31,5,0,13.5,1.57,0.059,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,39.78,98.21,0.91,0.14,791,0.9,34,0.6
+11627,2023,8,31,5,30,14.2,1.57,0.059,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,38.02,92.75,0.91,0.14,791,0.9,35,0.5
+11628,2023,8,31,6,0,14.8,1.59,0.059,0.61,21,265,35,0,0,0.9,21,265,0,35,0.273,38.79,86.98,0.91,0.14,791,0.9,37,0.5
+11629,2023,8,31,6,30,16.8,1.59,0.059,0.61,38,537,118,0,0,0.9,38,537,0,118,0.273,34.19,81.42,0.91,0.14,792,0.9,100,0.5
+11630,2023,8,31,7,0,18.8,1.6,0.056,0.61,49,688,218,0,0,0.1,49,688,0,218,0.273,28.41,75.76,0.91,0.14,792,0.9,163,0.4
+11631,2023,8,31,7,30,20.9,1.6,0.056,0.61,56,783,323,0,0,0.1,56,783,0,323,0.272,24.96,70.09,0.91,0.14,792,0.9,190,1.6
+11632,2023,8,31,8,0,22.9,1.61,0.054,0.61,63,848,428,0,0,-0.8,63,848,0,428,0.272,20.63,64.47,0.91,0.14,792,0.9,217,2.8
+11633,2023,8,31,8,30,24.4,1.61,0.054,0.61,68,892,528,0,0,-0.8,68,892,0,528,0.271,18.85,58.94,0.91,0.14,792,0.9,222,3.6
+11634,2023,8,31,9,0,25.8,1.62,0.052,0.61,70,926,620,0,0,-1.4,70,926,0,620,0.271,16.65,53.58,0.91,0.14,792,0.9,226,4.4
+11635,2023,8,31,9,30,26.9,1.62,0.052,0.61,74,950,704,0,0,-1.4,74,950,0,704,0.27,15.59,48.48,0.91,0.14,791,0.9,228,4.9
+11636,2023,8,31,10,0,28.1,1.63,0.05,0.61,76,969,776,0,0,-1.9,76,969,0,776,0.27,14.01,43.74,0.91,0.14,791,0.9,229,5.4
+11637,2023,8,31,10,30,28.9,1.63,0.05,0.61,76,985,836,0,0,-1.9,76,985,0,836,0.269,13.37,39.52,0.91,0.14,791,0.9,228,5.6
+11638,2023,8,31,11,0,29.7,1.94,0.044,0.61,76,998,883,0,0,-2,76,998,0,883,0.268,12.65,36.03,0.91,0.14,791,0.9,227,5.9
+11639,2023,8,31,11,30,30.2,1.94,0.044,0.61,76,1004,913,0,0,-2,76,1004,0,913,0.268,12.29,33.5,0.91,0.14,791,0.9,225,6
+11640,2023,8,31,12,0,30.8,1.92,0.042,0.61,75,1006,927,0,0,-1.9,75,1006,0,927,0.268,11.98,32.17,0.91,0.14,791,1,223,6.1
+11641,2023,8,31,12,30,31.1,1.92,0.042,0.61,76,1006,927,0,0,-1.9,76,1006,0,927,0.268,11.76,32.2,0.91,0.14,790,1,222,6.2
+11642,2023,8,31,13,0,31.4,1.91,0.041,0.61,75,1002,910,0,0,-1.9,75,1002,0,910,0.267,11.58,33.59,0.91,0.14,790,1,221,6.3
+11643,2023,8,31,13,30,31.4,1.91,0.041,0.61,74,996,878,0,0,-1.9,74,996,0,878,0.267,11.58,36.16,0.91,0.14,790,1,221,6.3
+11644,2023,8,31,14,0,31.5,1.95,0.042,0.61,72,986,831,0,0,-2,72,986,0,831,0.267,11.48,39.69,0.9,0.14,789,1,221,6.2
+11645,2023,8,31,14,30,31.4,1.95,0.042,0.61,72,970,770,0,0,-2,72,970,0,770,0.267,11.54,43.94,0.9,0.14,789,1.1,220,6.1
+11646,2023,8,31,15,0,31.2,1.96,0.045,0.61,70,949,696,0,0,-1.7,70,949,0,696,0.268,11.85,48.7,0.9,0.14,789,1.1,220,6
+11647,2023,8,31,15,30,30.8,1.96,0.045,0.61,67,922,611,0,0,-1.7,67,922,0,611,0.268,12.12,53.83,0.9,0.14,789,1.2,218,5.8
+11648,2023,8,31,16,0,30.3,1.95,0.049,0.61,64,885,517,0,0,-1.1,64,885,0,517,0.268,13.1,59.2,0.9,0.14,789,1.2,217,5.6
+11649,2023,8,31,16,30,29.6,1.95,0.049,0.61,61,835,417,0,0,-1.1,61,835,0,417,0.267,13.62,64.73,0.91,0.14,788,1.3,214,5.2
+11650,2023,8,31,17,0,28.9,1.91,0.052,0.63,55,768,313,0,0,0,55,768,0,313,0.267,15.34,70.37,0.91,0.14,788,1.4,211,4.8
+11651,2023,8,31,17,30,26.9,1.91,0.052,0.63,47,669,208,0,0,0,47,669,0,208,0.267,17.22,76.05,0.92,0.14,788,1.4,205,3.6
+11652,2023,8,31,18,0,24.8,1.83,0.059,0.63,37,510,110,0,0,1.9,37,510,0,110,0.267,22.48,81.72,0.93,0.14,788,1.5,199,2.3
+11653,2023,8,31,18,30,23.6,1.83,0.059,0.63,19,220,29,0,0,2,19,220,0,29,0.267,24.18,87.28,0.93,0.14,789,1.6,193,2.3
+11654,2023,8,31,19,0,22.4,1.78,0.061,0.63,0,0,0,0,0,2.8,0,0,0,0,0.268,27.59,93.06,0.94,0.14,789,1.6,186,2.2
+11655,2023,8,31,19,30,22.1,1.78,0.061,0.63,0,0,0,0,0,2.8,0,0,0,0,0.268,28.1,98.54,0.94,0.14,789,1.7,184,2.4
+11656,2023,8,31,20,0,21.9,1.72,0.061,0.63,0,0,0,0,0,3.2,0,0,0,0,0.268,29.36,103.85,0.95,0.14,789,1.8,182,2.7
+11657,2023,8,31,20,30,21.7,1.72,0.061,0.63,0,0,0,0,5,3.2,0,0,0,0,0.268,29.72,108.93,0.96,0.14,789,1.8,183,2.8
+11658,2023,8,31,21,0,21.5,1.66,0.059,0.63,0,0,0,0,0,3.7,0,0,0,0,0.268,31.02,113.73,0.96,0.14,789,1.9,184,3
+11659,2023,8,31,21,30,21.2,1.66,0.059,0.63,0,0,0,0,0,3.7,0,0,43,0,0.268,31.59,118.16,0.96,0.14,789,1.9,186,2.9
+11660,2023,8,31,22,0,20.8,1.64,0.052,0.63,0,0,0,1,0,4,0,0,86,0,0.268,33.06,122.12,0.96,0.14,789,1.9,188,2.9
+11661,2023,8,31,22,30,20.5,1.64,0.052,0.63,0,0,0,0,0,4,0,0,0,0,0.269,33.67,125.5,0.96,0.14,789,1.9,191,2.8
+11662,2023,8,31,23,0,20.2,1.64,0.047,0.63,0,0,0,0,7,4.1,0,0,0,0,0.269,34.7,128.18,0.96,0.14,789,1.9,194,2.8
+11663,2023,8,31,23,30,19.8,1.64,0.047,0.63,0,0,0,0,8,4.1,0,0,0,0,0.269,35.57,130.05,0.96,0.14,789,1.9,197,2.6
+11664,2023,9,1,0,0,19.3,1.65,0.044,0.63,0,0,0,0,3,4.2,0,0,0,0,0.269,36.97,131.01,0.95,0.14,790,1.8,200,2.5
+11665,2023,9,1,0,30,18.9,1.65,0.044,0.63,0,0,0,0,8,4.2,0,0,0,0,0.269,37.9,130.99,0.95,0.14,790,1.8,203,2.4
+11666,2023,9,1,1,0,18.4,1.63,0.043,0.63,0,0,0,0,8,4.4,0,0,0,0,0.269,39.44,130.01,0.95,0.14,790,1.8,205,2.2
+11667,2023,9,1,1,30,17.9,1.63,0.043,0.63,0,0,0,0,7,4.4,0,0,0,0,0.269,40.69,128.12,0.95,0.14,790,1.9,210,2.2
+11668,2023,9,1,2,0,17.5,1.55,0.046,0.63,0,0,0,0,5,4.8,0,0,0,0,0.269,42.97,125.42,0.95,0.14,790,1.9,214,2.2
+11669,2023,9,1,2,30,17.2,1.55,0.046,0.63,0,0,0,0,3,4.8,0,0,0,0,0.27,43.79,122.02,0.95,0.14,790,2,218,2.1
+11670,2023,9,1,3,0,16.9,1.44,0.048,0.63,0,0,0,0,0,5.3,0,0,0,0,0.27,46.3,118.04,0.95,0.14,791,2,223,1.9
+11671,2023,9,1,3,30,16.8,1.44,0.048,0.63,0,0,0,0,8,5.3,0,0,0,0,0.27,46.54,113.61,0.95,0.14,790,2.1,223,1.7
+11672,2023,9,1,4,0,16.6,1.35,0.049,0.63,0,0,0,0,3,5.8,0,0,0,0,0.271,48.89,108.8,0.95,0.14,790,2.1,223,1.5
+11673,2023,9,1,4,30,16.4,1.35,0.049,0.63,0,0,0,0,7,5.8,0,0,0,0,0.272,49.58,103.71,0.96,0.14,791,2.2,212,1.6
+11674,2023,9,1,5,0,16.3,1.31,0.058,0.63,0,0,0,0,7,6.5,0,0,0,0,0.272,52.3,98.4,0.96,0.14,791,2.3,201,1.7
+11675,2023,9,1,5,30,16.3,1.31,0.058,0.63,0,0,0,1,8,6.5,0,0,14,0,0.273,52.37,92.93,0.96,0.14,792,2.4,191,2.8
+11676,2023,9,1,6,0,16.3,1.28,0.072,0.63,21,195,31,7,6,8.5,9,0,100,9,0.274,59.83,87.15,0.96,0.14,792,2.4,182,3.8
+11677,2023,9,1,6,30,16.5,1.28,0.072,0.63,40,449,106,2,6,8.5,17,0,29,17,0.275,59.15,81.6,0.96,0.14,793,2.5,178,4.2
+11678,2023,9,1,7,0,16.6,1.28,0.075,0.63,53,599,199,0,7,11,47,2,0,47,0.276,69.7,75.93,0.96,0.14,794,2.5,173,4.5
+11679,2023,9,1,7,30,17.1,1.28,0.075,0.63,62,701,299,0,7,11,81,16,0,86,0.276,67.53,70.27,0.96,0.14,794,2.5,173,4.6
+11680,2023,9,1,8,0,17.6,1.29,0.07,0.63,69,773,400,0,7,11.9,185,242,0,289,0.276,69.18,64.65,0.96,0.14,794,2.4,172,4.7
+11681,2023,9,1,8,30,18.4,1.29,0.07,0.63,74,823,496,0,8,11.9,193,389,0,393,0.276,65.8,59.13,0.96,0.14,794,2.4,174,4.1
+11682,2023,9,1,9,0,19.2,1.31,0.068,0.63,79,860,587,0,7,10.9,242,319,0,430,0.276,58.71,53.78,0.96,0.14,795,2.3,176,3.6
+11683,2023,9,1,9,30,20.6,1.31,0.068,0.63,83,887,668,1,8,10.9,260,263,18,434,0.277,53.78,48.7,0.96,0.14,794,2.3,187,3.2
+11684,2023,9,1,10,0,21.9,1.33,0.07,0.63,86,908,739,2,7,9.6,290,303,25,508,0.277,45.64,43.98,0.96,0.14,794,2.2,198,2.8
+11685,2023,9,1,10,30,23.1,1.33,0.07,0.63,88,924,798,1,3,9.6,329,368,14,612,0.277,42.44,39.79,0.96,0.14,794,2.2,207,2.9
+11686,2023,9,1,11,0,24.3,1.39,0.068,0.63,89,936,843,0,3,8.7,325,468,4,702,0.277,37.11,36.33,0.96,0.14,794,2.1,215,3
+11687,2023,9,1,11,30,24.9,1.39,0.068,0.63,88,947,875,0,8,8.7,258,550,0,715,0.277,35.81,33.83,0.96,0.14,794,2.1,217,3.3
+11688,2023,9,1,12,0,25.5,1.43,0.056,0.63,85,957,892,0,8,8.2,298,417,0,650,0.277,33.45,32.53,0.96,0.14,793,2.1,218,3.6
+11689,2023,9,1,12,30,25.9,1.43,0.056,0.63,81,962,892,0,8,8.2,235,614,0,752,0.277,32.67,32.57,0.96,0.14,793,2.1,217,3.8
+11690,2023,9,1,13,0,26.2,1.47,0.043,0.63,78,965,878,0,7,7.9,289,510,0,712,0.277,31.27,33.95,0.95,0.14,792,2.1,217,4
+11691,2023,9,1,13,30,26.3,1.47,0.043,0.63,77,957,846,0,7,7.9,329,386,0,639,0.277,31.08,36.52,0.95,0.14,792,2.1,222,4.3
+11692,2023,9,1,14,0,26.3,1.41,0.048,0.63,77,945,800,0,7,7.5,321,360,0,597,0.276,30.35,40.04,0.95,0.14,792,2.1,227,4.6
+11693,2023,9,1,14,30,25.8,1.41,0.048,0.63,77,928,741,0,7,7.5,307,106,0,383,0.276,31.25,44.28,0.96,0.14,792,2.1,233,4.7
+11694,2023,9,1,15,0,25.4,1.41,0.055,0.63,75,904,668,0,7,7.5,252,23,0,267,0.275,31.9,49.02,0.96,0.14,792,2.1,240,4.7
+11695,2023,9,1,15,30,24.7,1.41,0.055,0.63,71,880,587,0,7,7.5,252,52,0,282,0.275,33.25,54.14,0.96,0.14,792,2.1,247,4.5
+11696,2023,9,1,16,0,24.1,1.44,0.055,0.63,68,846,497,0,7,7.8,220,167,0,305,0.274,35.26,59.5,0.96,0.14,793,2.1,253,4.2
+11697,2023,9,1,16,30,23.4,1.44,0.055,0.63,62,801,400,0,7,7.8,179,119,0,229,0.274,36.77,65.03,0.96,0.14,793,2.1,261,3.8
+11698,2023,9,1,17,0,22.7,1.46,0.053,0.63,55,739,300,0,7,8.3,69,496,29,233,0.274,39.58,70.66,0.96,0.13,793,2,269,3.4
+11699,2023,9,1,17,30,21.7,1.46,0.053,0.63,47,644,199,0,8,8.2,48,543,43,176,0.274,42.06,76.34,0.96,0.13,793,2,280,2.7
+11700,2023,9,1,18,0,20.7,1.49,0.052,0.63,36,491,104,4,7,9,54,218,82,84,0.274,46.93,82.01,0.96,0.13,793,2,290,2
+11701,2023,9,1,18,30,19.9,1.49,0.052,0.63,18,203,27,6,7,9,17,2,86,17,0.274,49.36,87.56,0.96,0.13,794,2,299,1.7
+11702,2023,9,1,19,0,19.2,1.54,0.056,0.63,0,0,0,0,8,9.3,0,0,0,0,0.274,52.72,93.36,0.96,0.13,794,2,308,1.4
+11703,2023,9,1,19,30,18.8,1.54,0.056,0.63,0,0,0,0,3,9.3,0,0,0,0,0.274,54.12,98.84,0.96,0.13,795,2.1,308,1.2
+11704,2023,9,1,20,0,18.4,1.59,0.066,0.63,0,0,0,0,7,9.5,0,0,0,0,0.274,56.04,104.16,0.96,0.13,795,2.2,307,1
+11705,2023,9,1,20,30,18,1.59,0.066,0.63,0,0,0,0,7,9.5,0,0,0,0,0.274,57.46,109.25,0.97,0.13,795,2.2,302,0.9
+11706,2023,9,1,21,0,17.7,1.6,0.075,0.63,0,0,0,0,7,9.6,0,0,0,0,0.274,58.96,114.06,0.97,0.13,795,2.3,297,0.8
+11707,2023,9,1,21,30,17.5,1.6,0.075,0.63,0,0,0,0,7,9.6,0,0,43,0,0.274,59.71,118.5,0.97,0.13,795,2.3,295,0.7
+11708,2023,9,1,22,0,17.3,1.64,0.075,0.63,0,0,0,1,3,9.7,0,0,100,0,0.274,60.87,122.47,0.96,0.13,795,2.3,292,0.7
+11709,2023,9,1,22,30,17.2,1.64,0.075,0.63,0,0,0,0,3,9.7,0,0,14,0,0.274,61.26,125.86,0.96,0.13,795,2.3,286,0.6
+11710,2023,9,1,23,0,17.1,1.67,0.072,0.63,0,0,0,0,5,9.8,0,0,0,0,0.274,62.08,128.55,0.96,0.13,795,2.3,280,0.5
+11711,2023,9,1,23,30,16.9,1.67,0.072,0.63,0,0,0,0,5,9.8,0,0,0,0,0.274,62.95,130.42,0.96,0.13,796,2.3,254,0.5
+11712,2023,9,2,0,0,16.7,1.67,0.073,0.63,0,0,0,0,8,9.9,0,0,0,0,0.275,64.12,131.37,0.96,0.13,796,2.3,227,0.5
+11713,2023,9,2,0,30,16.4,1.67,0.073,0.63,0,0,0,0,8,9.9,0,0,0,0,0.275,65.35,131.35,0.96,0.13,796,2.3,221,0.6
+11714,2023,9,2,1,0,16.1,1.66,0.075,0.63,0,0,0,0,3,9.9,0,0,0,0,0.276,66.81,130.35,0.96,0.13,796,2.4,214,0.8
+11715,2023,9,2,1,30,15.7,1.66,0.075,0.63,0,0,0,0,0,9.9,0,0,0,0,0.276,68.53,128.44,0.97,0.13,796,2.4,213,0.8
+11716,2023,9,2,2,0,15.2,1.63,0.078,0.63,0,0,0,0,7,9.9,0,0,0,0,0.276,70.54,125.71,0.97,0.13,796,2.4,212,0.9
+11717,2023,9,2,2,30,15,1.63,0.078,0.63,0,0,0,0,8,9.9,0,0,0,0,0.277,71.45,122.29,0.97,0.13,796,2.5,208,0.9
+11718,2023,9,2,3,0,14.8,1.61,0.079,0.63,0,0,0,0,7,9.8,0,0,0,0,0.277,72.15,118.3,0.97,0.13,796,2.5,204,0.9
+11719,2023,9,2,3,30,14.6,1.61,0.079,0.63,0,0,0,0,7,9.8,0,0,0,0,0.277,73.08,113.84,0.97,0.13,796,2.5,203,0.9
+11720,2023,9,2,4,0,14.4,1.6,0.077,0.63,0,0,0,0,7,9.8,0,0,29,0,0.277,73.76,109.02,0.97,0.13,796,2.5,201,0.9
+11721,2023,9,2,4,30,14.3,1.6,0.077,0.63,0,0,0,0,5,9.8,0,0,0,0,0.277,74.24,103.91,0.96,0.13,796,2.5,199,0.9
+11722,2023,9,2,5,0,14.1,1.6,0.072,0.63,0,0,0,0,3,9.8,0,0,0,0,0.278,75.11,98.59,0.96,0.13,796,2.5,197,1
+11723,2023,9,2,5,30,15,1.6,0.072,0.63,0,0,0,1,4,9.8,0,0,14,0,0.278,70.97,93.11,0.96,0.13,797,2.5,194,1.1
+11724,2023,9,2,6,0,15.9,1.6,0.065,0.63,19,192,28,7,4,9.8,8,0,100,8,0.278,67.15,87.32,0.96,0.13,797,2.4,192,1.3
+11725,2023,9,2,6,30,17.3,1.6,0.065,0.63,37,472,105,3,4,9.8,21,0,43,21,0.278,61.45,81.77,0.96,0.13,797,2.4,195,2.1
+11726,2023,9,2,7,0,18.7,1.62,0.057,0.63,48,632,200,0,7,9.4,64,8,4,66,0.278,54.8,76.11,0.96,0.13,797,2.4,199,2.9
+11727,2023,9,2,7,30,19.7,1.62,0.057,0.63,57,730,301,0,7,9.4,133,67,0,155,0.278,51.5,70.44,0.96,0.13,797,2.3,203,3.3
+11728,2023,9,2,8,0,20.8,1.63,0.052,0.63,61,799,401,0,4,8.8,187,55,0,210,0.278,46.2,64.83,0.96,0.13,797,2.3,206,3.6
+11729,2023,9,2,8,30,21.7,1.63,0.052,0.63,66,846,498,0,0,8.8,176,511,0,437,0.278,43.73,59.32,0.96,0.13,797,2.3,208,3.9
+11730,2023,9,2,9,0,22.6,1.63,0.05,0.63,70,880,587,0,0,8.4,136,704,0,550,0.277,40.15,53.99,0.96,0.13,797,2.3,210,4.2
+11731,2023,9,2,9,30,23.4,1.63,0.05,0.63,73,906,668,0,0,8.4,82,886,0,664,0.276,38.26,48.92,0.96,0.13,797,2.3,212,4.4
+11732,2023,9,2,10,0,24.3,1.62,0.047,0.63,74,926,738,0,3,7.9,250,540,0,637,0.275,35.06,44.22,0.96,0.13,797,2.3,214,4.7
+11733,2023,9,2,10,30,24.9,1.62,0.047,0.63,75,942,796,0,0,7.9,118,835,0,757,0.275,33.83,40.06,0.96,0.13,797,2.4,216,4.8
+11734,2023,9,2,11,0,25.5,1.76,0.038,0.63,73,956,840,0,3,7.6,230,583,0,698,0.274,32.1,36.63,0.96,0.13,797,2.4,218,5
+11735,2023,9,2,11,30,26,1.76,0.038,0.63,74,962,870,0,0,7.6,182,734,0,789,0.273,31.13,34.16,0.96,0.13,796,2.4,220,5.1
+11736,2023,9,2,12,0,26.4,1.73,0.038,0.63,74,966,885,0,3,7.6,293,390,0,621,0.273,30.37,32.88,0.96,0.13,796,2.4,221,5.2
+11737,2023,9,2,12,30,26.6,1.73,0.038,0.63,74,965,884,0,3,7.6,347,244,0,552,0.272,30.02,32.94,0.95,0.13,796,2.4,223,5.2
+11738,2023,9,2,13,0,26.7,1.68,0.039,0.63,74,961,868,0,3,7.8,350,95,0,428,0.272,30.16,34.33,0.95,0.13,796,2.4,225,5.2
+11739,2023,9,2,13,30,26.7,1.68,0.039,0.63,74,954,837,0,3,7.7,282,252,0,484,0.272,30.12,36.89,0.95,0.13,795,2.4,227,5.1
+11740,2023,9,2,14,0,26.6,1.63,0.042,0.63,73,943,791,0,3,8,258,281,0,472,0.271,30.76,40.4,0.95,0.13,795,2.4,229,5.1
+11741,2023,9,2,14,30,26.3,1.63,0.042,0.63,72,927,732,0,0,8,168,508,0,530,0.271,31.31,44.61,0.95,0.13,795,2.4,230,5
+11742,2023,9,2,15,0,26,1.57,0.046,0.63,70,906,660,0,3,8.2,262,219,0,405,0.271,32.36,49.35,0.95,0.13,795,2.4,230,4.9
+11743,2023,9,2,15,30,25.5,1.57,0.046,0.63,68,879,579,0,3,8.2,253,226,0,384,0.271,33.33,54.45,0.95,0.13,795,2.4,231,4.8
+11744,2023,9,2,16,0,25,1.54,0.048,0.63,65,842,488,0,3,8.4,181,203,0,283,0.271,34.86,59.81,0.95,0.13,795,2.5,231,4.6
+11745,2023,9,2,16,30,24.4,1.54,0.048,0.63,59,795,391,0,3,8.4,169,374,7,325,0.271,36.13,65.33,0.95,0.13,795,2.5,232,4.4
+11746,2023,9,2,17,0,23.7,1.52,0.051,0.63,54,727,291,0,3,8.7,134,228,0,208,0.271,38.3,70.96,0.95,0.13,795,2.5,232,4.1
+11747,2023,9,2,17,30,22.8,1.52,0.051,0.63,46,629,191,0,0,8.7,46,629,0,191,0.271,40.43,76.64,0.95,0.13,795,2.5,233,3.4
+11748,2023,9,2,18,0,21.8,1.52,0.051,0.63,34,471,97,0,0,9,34,471,0,97,0.271,44.1,82.3,0.95,0.13,795,2.5,235,2.6
+11749,2023,9,2,18,30,21,1.52,0.051,0.63,17,187,24,0,0,9.1,17,187,0,24,0.272,46.37,87.85,0.95,0.13,796,2.5,237,2.1
+11750,2023,9,2,19,0,20.1,1.53,0.051,0.63,0,0,0,0,0,9.3,0,0,0,0,0.272,49.94,93.66,0.95,0.13,796,2.5,239,1.6
+11751,2023,9,2,19,30,19.6,1.53,0.051,0.63,0,0,0,0,0,9.3,0,0,0,0,0.272,51.5,99.15,0.95,0.13,796,2.5,239,1.6
+11752,2023,9,2,20,0,19.2,1.54,0.05,0.63,0,0,0,0,0,9.5,0,0,0,0,0.271,53.41,104.48,0.95,0.13,796,2.5,240,1.5
+11753,2023,9,2,20,30,18.7,1.54,0.05,0.63,0,0,0,0,0,9.5,0,0,0,0,0.271,55.1,109.58,0.95,0.13,796,2.5,240,1.4
+11754,2023,9,2,21,0,18.2,1.57,0.048,0.63,0,0,0,0,0,9.6,0,0,0,0,0.271,57.39,114.4,0.95,0.13,796,2.4,239,1.4
+11755,2023,9,2,21,30,17.7,1.57,0.048,0.63,0,0,0,0,0,9.6,0,0,43,0,0.271,59.22,118.85,0.95,0.13,796,2.4,238,1.3
+11756,2023,9,2,22,0,17.3,1.59,0.046,0.63,0,0,0,1,0,9.7,0,0,100,0,0.271,61.14,122.83,0.95,0.13,796,2.4,237,1.2
+11757,2023,9,2,22,30,16.9,1.59,0.046,0.63,0,0,0,0,0,9.7,0,0,14,0,0.271,62.7,126.23,0.95,0.13,796,2.3,235,1.2
+11758,2023,9,2,23,0,16.4,1.6,0.045,0.63,0,0,0,0,0,9.8,0,0,0,0,0.271,65.01,128.93,0.95,0.13,796,2.3,233,1.1
+11759,2023,9,2,23,30,16.1,1.6,0.045,0.63,0,0,0,0,0,9.8,0,0,0,0,0.271,66.26,130.8,0.95,0.13,796,2.3,230,1.1
+11760,2023,9,3,0,0,15.7,1.6,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,68.25,131.74,0.95,0.13,796,2.3,226,1
+11761,2023,9,3,0,30,15.4,1.6,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,69.57,131.71,0.95,0.13,796,2.3,221,1
+11762,2023,9,3,1,0,15.1,1.61,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,71.26,130.69,0.95,0.13,796,2.3,216,0.9
+11763,2023,9,3,1,30,14.9,1.61,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,72.18,128.76,0.95,0.13,796,2.3,211,0.9
+11764,2023,9,3,2,0,14.7,1.61,0.045,0.63,0,0,0,0,0,10,0,0,0,0,0.272,73.45,126.01,0.95,0.13,796,2.3,206,0.9
+11765,2023,9,3,2,30,14.6,1.61,0.045,0.63,0,0,0,0,0,10,0,0,0,0,0.272,73.83,122.57,0.95,0.13,795,2.3,201,0.9
+11766,2023,9,3,3,0,14.4,1.61,0.046,0.63,0,0,0,0,0,10,0,0,0,0,0.272,75.08,118.55,0.95,0.13,795,2.4,197,0.9
+11767,2023,9,3,3,30,14.2,1.61,0.046,0.63,0,0,0,0,0,10,0,0,0,0,0.273,76.06,114.07,0.96,0.13,795,2.4,194,0.9
+11768,2023,9,3,4,0,14.1,1.61,0.048,0.63,0,0,0,0,4,10.1,0,0,0,0,0.273,76.81,109.24,0.96,0.13,795,2.4,191,1
+11769,2023,9,3,4,30,14,1.61,0.048,0.63,0,0,0,0,4,10.1,0,0,0,0,0.274,77.3,104.12,0.96,0.13,795,2.5,190,1
+11770,2023,9,3,5,0,13.8,1.6,0.05,0.63,0,0,0,0,4,10.1,0,0,0,0,0.274,78.57,98.78,0.96,0.13,795,2.5,188,1
+11771,2023,9,3,5,30,14.8,1.6,0.05,0.63,0,0,0,0,4,10.1,0,0,0,0,0.274,73.66,93.29,0.96,0.13,795,2.5,190,1.2
+11772,2023,9,3,6,0,15.8,1.6,0.052,0.63,18,202,27,6,4,10.2,10,0,86,10,0.275,69.53,87.49,0.96,0.13,795,2.6,192,1.5
+11773,2023,9,3,6,30,17.3,1.6,0.052,0.63,36,481,103,3,4,10.2,53,3,43,53,0.276,63.23,81.94,0.96,0.13,795,2.6,196,2
+11774,2023,9,3,7,0,18.8,1.58,0.054,0.63,47,630,196,0,4,10.5,86,22,0,91,0.276,58.55,76.28,0.96,0.13,795,2.6,201,2.6
+11775,2023,9,3,7,30,19.6,1.58,0.054,0.63,56,721,295,0,8,10.5,136,109,0,172,0.277,55.65,70.61,0.97,0.13,794,2.6,203,3
+11776,2023,9,3,8,0,20.5,1.56,0.06,0.63,63,780,393,0,3,10.9,168,225,0,263,0.277,54.12,65.01,0.97,0.13,794,2.7,206,3.3
+11777,2023,9,3,8,30,20.7,1.56,0.06,0.63,71,821,488,1,3,10.9,184,236,11,304,0.277,53.46,59.51,0.97,0.13,794,2.7,206,3.6
+11778,2023,9,3,9,0,20.9,1.52,0.072,0.63,78,849,575,3,8,11.3,218,98,39,275,0.277,54.37,54.19,0.97,0.13,794,2.7,206,3.9
+11779,2023,9,3,9,30,21,1.52,0.072,0.63,82,874,654,6,8,11.3,282,143,86,376,0.277,54.04,49.14,0.97,0.13,794,2.7,207,4.3
+11780,2023,9,3,10,0,21.1,1.51,0.073,0.63,86,893,723,1,5,11.6,200,53,14,238,0.277,54.63,44.47,0.97,0.13,794,2.8,207,4.6
+11781,2023,9,3,10,30,21.3,1.51,0.073,0.63,86,912,781,0,8,11.6,118,5,0,122,0.276,53.9,40.33,0.97,0.13,793,2.8,210,4.9
+11782,2023,9,3,11,0,21.5,1.58,0.062,0.63,85,927,826,0,8,11.7,286,286,0,515,0.276,53.71,36.93,0.97,0.13,793,2.8,212,5.2
+11783,2023,9,3,11,30,21.8,1.58,0.062,0.63,85,936,856,0,3,11.7,329,397,0,656,0.276,52.74,34.49,0.97,0.13,793,2.7,215,5.3
+11784,2023,9,3,12,0,22,1.6,0.058,0.63,84,941,871,0,0,11.6,92,930,0,870,0.276,51.82,33.24,0.97,0.13,792,2.7,217,5.4
+11785,2023,9,3,12,30,22.5,1.6,0.058,0.63,83,944,872,0,0,11.6,138,841,0,841,0.275,50.28,33.31,0.97,0.13,792,2.7,217,5.5
+11786,2023,9,3,13,0,23,1.61,0.051,0.63,80,946,858,0,3,11.3,404,237,0,599,0.275,47.7,34.7,0.97,0.13,791,2.6,217,5.6
+11787,2023,9,3,13,30,23.4,1.61,0.051,0.63,77,943,828,0,4,11.3,321,49,0,360,0.275,46.56,37.26,0.97,0.13,791,2.6,216,5.7
+11788,2023,9,3,14,0,23.9,1.61,0.044,0.63,74,938,785,0,3,10.6,238,46,0,273,0.275,43.06,40.75,0.97,0.13,790,2.5,215,5.8
+11789,2023,9,3,14,30,24,1.61,0.044,0.63,70,928,727,0,3,10.6,155,469,0,487,0.276,42.8,44.95,0.96,0.13,790,2.4,214,5.8
+11790,2023,9,3,15,0,24.2,1.6,0.04,0.63,67,913,658,0,0,9.8,67,913,0,658,0.276,40.25,49.68,0.96,0.13,790,2.3,214,5.8
+11791,2023,9,3,15,30,24.1,1.6,0.04,0.63,64,891,578,0,0,9.8,64,891,0,578,0.277,40.49,54.77,0.96,0.13,790,2.3,214,5.7
+11792,2023,9,3,16,0,24,1.63,0.038,0.63,60,861,489,0,0,9,60,861,0,489,0.278,38.55,60.11,0.96,0.13,789,2.2,214,5.6
+11793,2023,9,3,16,30,23.7,1.63,0.038,0.63,54,819,392,0,0,9,75,742,0,381,0.278,39.25,65.63,0.95,0.13,789,2.1,214,5.4
+11794,2023,9,3,17,0,23.3,1.68,0.035,0.63,48,760,292,0,0,8.4,66,683,0,285,0.279,38.67,71.26,0.95,0.13,789,2.1,215,5.1
+11795,2023,9,3,17,30,22,1.68,0.035,0.63,41,666,192,0,0,8.4,41,666,0,192,0.279,41.83,76.93,0.95,0.13,789,2,213,3.9
+11796,2023,9,3,18,0,20.6,1.71,0.034,0.63,31,512,97,0,0,8.7,33,481,7,95,0.279,46.37,82.6,0.95,0.13,789,2,212,2.7
+11797,2023,9,3,18,30,19.5,1.71,0.034,0.63,15,187,21,0,0,8.7,14,172,4,20,0.28,49.62,88.13,0.95,0.13,789,2,210,2.3
+11798,2023,9,3,19,0,18.4,1.72,0.033,0.63,0,0,0,0,0,8.9,0,0,0,0,0.28,53.94,93.97,0.95,0.13,789,1.9,208,2
+11799,2023,9,3,19,30,18,1.72,0.033,0.63,0,0,0,0,0,8.9,0,0,0,0,0.281,55.31,99.46,0.95,0.13,789,1.9,207,2.1
+11800,2023,9,3,20,0,17.6,1.71,0.032,0.63,0,0,0,0,0,9,0,0,0,0,0.282,56.99,104.79,0.94,0.13,789,1.9,206,2.1
+11801,2023,9,3,20,30,17.2,1.71,0.032,0.63,0,0,0,0,0,9,0,0,0,0,0.282,58.44,109.91,0.94,0.13,789,1.9,207,2.2
+11802,2023,9,3,21,0,16.8,1.68,0.032,0.63,0,0,0,0,0,9.1,0,0,0,0,0.283,60.29,114.73,0.94,0.13,789,1.9,207,2.2
+11803,2023,9,3,21,30,16.3,1.68,0.032,0.63,0,0,0,1,0,9.1,0,0,57,0,0.284,62.23,119.19,0.94,0.13,789,1.9,208,2.1
+11804,2023,9,3,22,0,15.9,1.66,0.032,0.63,0,0,0,1,0,9.1,0,0,100,0,0.285,64.01,123.19,0.93,0.13,789,1.9,209,2
+11805,2023,9,3,22,30,15.4,1.66,0.032,0.63,0,0,0,0,0,9.1,0,0,14,0,0.285,66,126.6,0.93,0.13,788,1.9,209,1.9
+11806,2023,9,3,23,0,15,1.62,0.035,0.63,0,0,0,0,0,9.1,0,0,0,0,0.286,67.87,129.3,0.94,0.13,788,1.9,210,1.7
+11807,2023,9,3,23,30,14.7,1.62,0.035,0.63,0,0,0,0,0,9.1,0,0,0,0,0.287,69.19,131.17,0.94,0.13,788,1.9,212,1.6
+11808,2023,9,4,0,0,14.4,1.58,0.04,0.63,0,0,0,0,0,9.1,0,0,0,0,0.287,70.56,132.11,0.94,0.13,788,1.9,215,1.6
+11809,2023,9,4,0,30,14.1,1.58,0.04,0.63,0,0,0,0,0,9.1,0,0,0,0,0.288,71.85,132.07,0.94,0.13,787,1.8,215,1.4
+11810,2023,9,4,1,0,13.8,1.58,0.041,0.63,0,0,0,0,3,9.1,0,0,0,0,0.289,73.16,131.04,0.94,0.13,787,1.8,215,1.3
+11811,2023,9,4,1,30,13.5,1.58,0.041,0.63,0,0,0,0,0,9.1,0,0,0,0,0.289,74.59,129.08,0.94,0.13,787,1.8,209,1.2
+11812,2023,9,4,2,0,13.1,1.59,0.041,0.63,0,0,0,0,3,9,0,0,0,0,0.29,76.11,126.31,0.94,0.13,787,1.8,202,1.2
+11813,2023,9,4,2,30,12.9,1.59,0.041,0.63,0,0,0,0,5,9,0,0,0,0,0.291,77.01,122.84,0.95,0.13,786,1.8,203,1.3
+11814,2023,9,4,3,0,12.7,1.54,0.049,0.63,0,0,0,0,4,8.9,0,0,0,0,0.292,77.57,118.8,0.95,0.13,786,1.8,204,1.3
+11815,2023,9,4,3,30,12.9,1.54,0.049,0.63,0,0,0,0,0,8.9,0,0,0,0,0.293,76.57,114.31,0.95,0.13,786,1.8,204,1.5
+11816,2023,9,4,4,0,13.1,1.52,0.053,0.63,0,0,0,0,5,8.8,0,0,0,0,0.295,75.28,109.45,0.95,0.13,786,1.8,205,1.7
+11817,2023,9,4,4,30,13,1.52,0.053,0.63,0,0,0,0,0,8.8,0,0,0,0,0.296,75.77,104.32,0.94,0.13,786,1.8,204,1.8
+11818,2023,9,4,5,0,12.9,1.54,0.045,0.63,0,0,0,0,0,8.6,0,0,0,0,0.297,75.31,98.98,0.94,0.13,786,1.8,203,2
+11819,2023,9,4,5,30,13.5,1.54,0.045,0.63,0,0,0,0,4,8.6,0,0,0,0,0.298,72.42,93.48,0.94,0.13,786,1.8,203,2.7
+11820,2023,9,4,6,0,14.1,1.51,0.041,0.63,18,221,27,4,3,8.6,15,111,57,20,0.299,69.33,87.66,0.94,0.13,785,1.8,204,3.4
+11821,2023,9,4,6,30,15.3,1.51,0.041,0.63,34,513,104,0,0,8.6,34,513,0,104,0.3,64.18,82.11,0.94,0.13,785,1.8,212,4.5
+11822,2023,9,4,7,0,16.4,1.45,0.045,0.63,45,662,200,0,0,8.6,45,662,0,200,0.301,60.04,76.45,0.94,0.13,786,1.8,220,5.6
+11823,2023,9,4,7,30,16.9,1.45,0.045,0.63,54,752,301,0,0,8.6,61,714,0,296,0.302,58.17,70.79,0.95,0.13,786,1.8,228,6.5
+11824,2023,9,4,8,0,17.4,1.41,0.053,0.63,61,810,401,0,0,8,110,485,0,314,0.303,54.02,65.19,0.95,0.13,786,1.8,235,7.4
+11825,2023,9,4,8,30,17.4,1.41,0.053,0.63,67,856,499,0,5,8,155,69,0,190,0.305,54.02,59.7,0.95,0.13,786,1.7,237,7.3
+11826,2023,9,4,9,0,17.4,1.42,0.056,0.63,72,889,590,0,5,6.3,101,0,0,101,0.307,48.14,54.4,0.95,0.13,787,1.7,238,7.2
+11827,2023,9,4,9,30,17.8,1.42,0.056,0.63,75,920,674,0,0,6.3,130,670,0,566,0.307,46.94,49.36,0.94,0.13,787,1.6,237,7.1
+11828,2023,9,4,10,0,18.2,1.46,0.049,0.63,74,945,746,0,0,4.6,74,945,0,746,0.308,40.63,44.71,0.94,0.13,787,1.5,237,6.9
+11829,2023,9,4,10,30,18.8,1.46,0.049,0.63,76,963,807,0,0,4.6,76,963,0,807,0.307,39.14,40.61,0.94,0.13,787,1.5,235,7
+11830,2023,9,4,11,0,19.3,1.46,0.043,0.63,75,977,853,0,0,3.4,177,772,0,792,0.305,34.9,37.23,0.94,0.13,787,1.4,233,7
+11831,2023,9,4,11,30,19.7,1.46,0.043,0.63,76,984,884,0,0,3.4,153,840,0,843,0.303,34.05,34.83,0.93,0.13,787,1.4,231,7
+11832,2023,9,4,12,0,20.1,1.46,0.042,0.63,76,988,899,0,0,2.5,101,942,0,886,0.302,31.03,33.6,0.93,0.13,787,1.4,230,7
+11833,2023,9,4,12,30,20.4,1.46,0.042,0.63,77,987,898,0,3,2.5,286,584,0,772,0.301,30.46,33.69,0.93,0.13,787,1.4,231,7
+11834,2023,9,4,13,0,20.6,1.42,0.043,0.63,76,984,881,0,0,2,224,672,0,774,0.301,29.08,35.08,0.93,0.13,787,1.4,232,6.9
+11835,2023,9,4,13,30,20.7,1.42,0.043,0.63,74,980,850,0,0,2,84,961,0,845,0.301,28.9,37.63,0.93,0.13,787,1.4,234,6.8
+11836,2023,9,4,14,0,20.8,1.43,0.035,0.63,69,974,803,0,0,1.9,108,903,0,788,0.302,28.53,41.11,0.93,0.13,787,1.4,236,6.6
+11837,2023,9,4,14,30,20.6,1.43,0.035,0.63,67,960,742,0,0,1.9,194,686,0,677,0.302,28.88,45.3,0.93,0.13,787,1.4,239,6.4
+11838,2023,9,4,15,0,20.5,1.42,0.034,0.63,64,941,669,0,0,2.2,93,867,0,650,0.303,29.64,50.01,0.93,0.13,787,1.5,242,6.1
+11839,2023,9,4,15,30,20.1,1.42,0.034,0.63,62,914,585,0,0,2.2,87,848,0,572,0.304,30.38,55.09,0.92,0.13,787,1.5,247,5.8
+11840,2023,9,4,16,0,19.7,1.38,0.038,0.63,59,877,492,0,0,2.7,105,721,0,461,0.304,32.45,60.43,0.92,0.13,788,1.5,251,5.4
+11841,2023,9,4,16,30,19.1,1.38,0.038,0.63,55,826,392,0,3,2.7,153,444,0,334,0.305,33.68,65.94,0.92,0.13,788,1.5,259,4.9
+11842,2023,9,4,17,0,18.5,1.37,0.044,0.63,51,754,289,0,0,3.3,65,681,0,280,0.306,36.34,71.56,0.92,0.14,788,1.5,268,4.4
+11843,2023,9,4,17,30,17.3,1.37,0.044,0.63,44,648,187,0,0,3.3,44,648,0,187,0.307,39.18,77.23,0.92,0.14,788,1.5,279,3.3
+11844,2023,9,4,18,0,16.1,1.38,0.049,0.63,32,474,91,0,0,4.4,35,447,7,90,0.308,45.91,82.9,0.92,0.14,788,1.5,291,2.3
+11845,2023,9,4,18,30,15.1,1.38,0.049,0.63,14,157,18,4,4,4.5,12,58,54,14,0.309,49,88.41,0.92,0.14,789,1.5,306,2.1
+11846,2023,9,4,19,0,14.1,1.42,0.05,0.63,0,0,0,0,4,5.2,0,0,0,0,0.309,55.08,94.28,0.91,0.14,789,1.5,321,1.9
+11847,2023,9,4,19,30,13.5,1.42,0.05,0.63,0,0,0,0,0,5.2,0,0,0,0,0.309,57.33,99.77,0.91,0.14,790,1.5,326,2.1
+11848,2023,9,4,20,0,13,1.47,0.049,0.63,0,0,0,0,0,5.5,0,0,0,0,0.31,60.49,105.11,0.91,0.14,791,1.5,330,2.3
+11849,2023,9,4,20,30,12.4,1.47,0.049,0.63,0,0,0,0,0,5.5,0,0,0,0,0.309,62.91,110.24,0.91,0.14,791,1.5,331,2.2
+11850,2023,9,4,21,0,11.8,1.49,0.045,0.63,0,0,0,0,0,5.9,0,0,0,0,0.309,67.07,115.07,0.91,0.14,791,1.5,332,2.2
+11851,2023,9,4,21,30,11.3,1.49,0.045,0.63,0,0,0,1,0,5.9,0,0,57,0,0.308,69.31,119.54,0.91,0.14,791,1.5,332,2
+11852,2023,9,4,22,0,10.8,1.48,0.04,0.63,0,0,0,1,4,6.1,0,0,100,0,0.308,72.68,123.55,0.91,0.14,792,1.5,332,1.9
+11853,2023,9,4,22,30,10.4,1.48,0.04,0.63,0,0,0,0,4,6.1,0,0,14,0,0.307,74.63,126.97,0.91,0.14,792,1.4,334,1.6
+11854,2023,9,4,23,0,10,1.46,0.036,0.63,0,0,0,0,0,6.2,0,0,0,0,0.307,77.27,129.68,0.91,0.14,792,1.4,337,1.4
+11855,2023,9,4,23,30,9.5,1.46,0.036,0.63,0,0,0,0,0,6.2,0,0,0,0,0.306,79.9,131.55,0.91,0.14,792,1.4,340,1.2
+11856,2023,9,5,0,0,9.1,1.44,0.034,0.63,0,0,0,0,0,6.4,0,0,0,0,0.305,83.06,132.49,0.91,0.14,792,1.4,344,1.1
+11857,2023,9,5,0,30,8.7,1.44,0.034,0.63,0,0,0,0,0,6.4,0,0,0,0,0.304,85.33,132.43,0.91,0.14,792,1.4,349,1
+11858,2023,9,5,1,0,8.4,1.43,0.032,0.63,0,0,0,0,0,6.5,0,0,0,0,0.303,87.96,131.38,0.91,0.14,792,1.4,355,0.8
+11859,2023,9,5,1,30,8,1.43,0.032,0.63,0,0,0,0,0,6.5,0,0,0,0,0.303,90.37,129.41,0.91,0.14,792,1.4,185,0.8
+11860,2023,9,5,2,0,7.7,1.43,0.032,0.63,0,0,0,0,0,6.6,0,0,0,0,0.302,92.86,126.61,0.91,0.14,792,1.4,16,0.7
+11861,2023,9,5,2,30,7.4,1.43,0.032,0.63,0,0,0,0,0,6.6,0,0,0,0,0.301,94.78,123.12,0.91,0.14,792,1.4,28,0.7
+11862,2023,9,5,3,0,7.1,1.44,0.032,0.63,0,0,0,0,0,6.7,0,0,0,0,0.301,97.19,119.06,0.91,0.14,792,1.4,41,0.7
+11863,2023,9,5,3,30,6.9,1.44,0.032,0.63,0,0,0,0,0,6.7,0,0,0,0,0.3,98.53,114.54,0.92,0.14,792,1.4,50,0.7
+11864,2023,9,5,4,0,6.6,1.45,0.035,0.63,0,0,0,0,0,6.6,0,0,0,0,0.3,100,109.67,0.92,0.14,793,1.4,59,0.8
+11865,2023,9,5,4,30,6.4,1.45,0.035,0.63,0,0,0,0,0,6.4,0,0,0,0,0.299,100,104.52,0.93,0.14,793,1.4,64,0.8
+11866,2023,9,5,5,0,6.3,1.47,0.042,0.63,0,0,0,0,0,6.3,0,0,0,0,0.299,100,99.17,0.93,0.14,793,1.3,70,0.8
+11867,2023,9,5,5,30,7,1.47,0.042,0.63,0,0,0,0,0,6.7,0,0,0,0,0.299,98.2,93.66,0.94,0.14,793,1.3,70,1.4
+11868,2023,9,5,6,0,7.8,1.48,0.054,0.63,17,199,25,0,0,6.7,17,199,0,25,0.298,93.02,87.82,0.95,0.14,793,1.3,71,2
+11869,2023,9,5,6,30,8.9,1.48,0.054,0.63,36,491,102,0,0,6.8,36,491,0,102,0.298,86.45,82.28,0.95,0.14,794,1.3,73,2.4
+11870,2023,9,5,7,0,9.9,1.52,0.059,0.63,48,648,198,0,0,6.5,48,648,0,198,0.297,79.21,76.62,0.95,0.14,794,1.3,74,2.8
+11871,2023,9,5,7,30,11.2,1.52,0.059,0.63,57,752,302,0,0,6.5,57,752,0,302,0.296,72.66,70.97,0.95,0.14,794,1.3,74,2.6
+11872,2023,9,5,8,0,12.5,1.57,0.053,0.63,62,823,405,0,0,5.8,62,823,0,405,0.295,63.74,65.37,0.95,0.14,794,1.3,75,2.5
+11873,2023,9,5,8,30,13.9,1.57,0.053,0.63,66,875,505,0,0,5.8,66,875,0,505,0.294,58.19,59.89,0.94,0.14,794,1.2,75,2.1
+11874,2023,9,5,9,0,15.2,1.62,0.044,0.63,68,915,598,0,0,5,68,915,0,598,0.293,50.48,54.6,0.94,0.14,794,1.2,75,1.7
+11875,2023,9,5,9,30,16.4,1.62,0.044,0.63,69,943,680,0,0,5,116,785,0,625,0.292,46.77,49.59,0.93,0.14,794,1.2,81,1.3
+11876,2023,9,5,10,0,17.7,1.63,0.038,0.63,70,965,753,0,0,3.9,105,880,0,728,0.291,40,44.96,0.93,0.14,794,1.2,86,0.9
+11877,2023,9,5,10,30,18.7,1.63,0.038,0.63,69,984,813,0,0,3.9,107,900,0,787,0.29,37.57,40.88,0.93,0.14,794,1.2,128,0.7
+11878,2023,9,5,11,0,19.8,1.51,0.028,0.63,67,999,859,0,0,2.9,92,951,0,846,0.288,32.61,37.54,0.93,0.14,794,1.1,171,0.6
+11879,2023,9,5,11,30,20.7,1.51,0.028,0.63,68,1006,890,0,0,2.9,105,941,0,874,0.287,30.81,35.16,0.93,0.14,793,1.1,190,0.9
+11880,2023,9,5,12,0,21.5,1.51,0.025,0.63,67,1012,906,0,0,2.1,67,1012,0,906,0.286,27.69,33.96,0.93,0.14,793,1.1,208,1.3
+11881,2023,9,5,12,30,22.1,1.51,0.025,0.63,66,1014,906,0,0,2.1,66,1014,0,906,0.285,26.7,34.06,0.93,0.14,793,1.1,213,1.7
+11882,2023,9,5,13,0,22.7,1.5,0.023,0.63,64,1013,889,0,0,1.3,64,1013,0,889,0.284,24.37,35.46,0.93,0.14,793,1,218,2.2
+11883,2023,9,5,13,30,23,1.5,0.023,0.63,64,1007,858,0,0,1.3,64,1007,0,858,0.284,23.91,38,0.92,0.14,792,1,221,2.5
+11884,2023,9,5,14,0,23.4,1.51,0.024,0.63,63,999,812,0,0,0.5,63,999,0,812,0.283,22.09,41.47,0.92,0.14,792,1,225,2.8
+11885,2023,9,5,14,30,23.4,1.51,0.024,0.63,62,987,752,0,0,0.5,62,987,0,752,0.283,22.09,45.64,0.92,0.14,792,1,227,2.9
+11886,2023,9,5,15,0,23.5,1.43,0.023,0.63,59,970,678,0,0,-0.2,59,970,0,678,0.282,20.89,50.34,0.92,0.14,792,1,229,3.1
+11887,2023,9,5,15,30,23.2,1.43,0.023,0.63,56,947,594,0,0,-0.2,56,947,0,594,0.281,21.27,55.41,0.92,0.14,792,1,230,3.1
+11888,2023,9,5,16,0,22.9,1.37,0.022,0.63,52,916,500,0,0,-0.6,52,916,0,500,0.281,20.97,60.74,0.92,0.14,792,1,231,3.1
+11889,2023,9,5,16,30,22.3,1.37,0.022,0.63,48,873,400,0,0,-0.6,48,873,14,400,0.281,21.74,66.25,0.92,0.14,792,1,231,2.9
+11890,2023,9,5,17,0,21.7,1.32,0.022,0.63,44,810,296,0,0,-0.4,44,810,0,296,0.28,22.97,71.86,0.92,0.14,792,1,232,2.6
+11891,2023,9,5,17,30,19.8,1.32,0.022,0.63,37,713,191,0,0,-0.4,37,713,0,191,0.28,25.81,77.53,0.92,0.14,792,1,234,1.8
+11892,2023,9,5,18,0,18,1.3,0.021,0.63,28,549,93,0,0,3.6,28,549,0,93,0.281,38.28,83.19,0.92,0.14,792,1,236,1
+11893,2023,9,5,18,30,17.4,1.3,0.021,0.63,14,198,18,0,0,3.6,14,198,0,18,0.281,39.75,88.7,0.92,0.14,792,1,233,0.9
+11894,2023,9,5,19,0,16.9,1.3,0.022,0.63,0,0,0,0,0,2.5,0,0,0,0,0.281,38.05,94.59,0.92,0.14,792,1,230,0.8
+11895,2023,9,5,19,30,16.7,1.3,0.022,0.63,0,0,0,0,0,2.5,0,0,0,0,0.282,38.59,100.09,0.93,0.14,793,1.1,219,0.8
+11896,2023,9,5,20,0,16.4,1.32,0.024,0.63,0,0,0,0,0,1.9,0,0,0,0,0.282,37.59,105.44,0.93,0.14,793,1.1,208,0.8
+11897,2023,9,5,20,30,16,1.32,0.024,0.63,0,0,0,0,0,1.9,0,0,0,0,0.282,38.55,110.57,0.93,0.14,793,1.2,203,0.9
+11898,2023,9,5,21,0,15.5,1.34,0.026,0.63,0,0,0,0,0,1.8,0,0,0,0,0.282,39.57,115.42,0.94,0.14,793,1.2,198,1
+11899,2023,9,5,21,30,14.9,1.34,0.026,0.63,0,0,0,1,0,1.8,0,0,57,0,0.282,41.12,119.9,0.94,0.14,793,1.2,199,1.1
+11900,2023,9,5,22,0,14.3,1.35,0.028,0.63,0,0,0,1,0,1.9,0,0,57,0,0.282,43.12,123.91,0.94,0.14,793,1.3,200,1.2
+11901,2023,9,5,22,30,13.8,1.35,0.028,0.63,0,0,0,0,0,1.9,0,0,14,0,0.282,44.53,127.34,0.94,0.14,793,1.3,205,1.2
+11902,2023,9,5,23,0,13.3,1.35,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.282,46.19,130.05,0.94,0.14,793,1.3,210,1.2
+11903,2023,9,5,23,30,13,1.35,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.282,47.1,131.93,0.95,0.14,793,1.3,215,1.2
+11904,2023,9,6,0,0,12.7,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.282,48.42,132.86,0.95,0.14,793,1.3,221,1.2
+11905,2023,9,6,0,30,12.5,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.282,49.06,132.79,0.95,0.14,793,1.3,227,1.1
+11906,2023,9,6,1,0,12.2,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.281,49.97,131.73,0.95,0.14,793,1.3,234,1.1
+11907,2023,9,6,1,30,12,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.281,50.64,129.73,0.95,0.14,793,1.3,241,1.1
+11908,2023,9,6,2,0,11.7,1.36,0.031,0.63,0,0,0,0,0,2,0,0,0,0,0.281,51.49,126.91,0.95,0.14,793,1.3,247,1
+11909,2023,9,6,2,30,11.4,1.36,0.031,0.63,0,0,0,0,0,2,0,0,0,0,0.281,52.52,123.39,0.95,0.14,793,1.3,254,1
+11910,2023,9,6,3,0,11.2,1.37,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.281,53.1,119.31,0.94,0.14,793,1.3,261,1
+11911,2023,9,6,3,30,11,1.37,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.28,53.81,114.78,0.94,0.14,793,1.2,270,0.9
+11912,2023,9,6,4,0,10.8,1.38,0.029,0.63,0,0,0,0,0,1.9,0,0,0,0,0.28,54.35,109.89,0.94,0.14,793,1.2,278,0.8
+11913,2023,9,6,4,30,10.6,1.38,0.029,0.63,0,0,0,0,0,2,0,0,0,0,0.28,55.14,104.73,0.94,0.14,794,1.2,288,0.7
+11914,2023,9,6,5,0,10.5,1.39,0.028,0.63,0,0,0,0,0,1.9,0,0,0,0,0.28,55.34,99.36,0.94,0.14,794,1.1,298,0.6
+11915,2023,9,6,5,30,11.1,1.39,0.028,0.63,0,0,0,0,0,1.9,0,0,0,0,0.281,53.18,93.84,0.94,0.14,794,1.1,313,0.5
+11916,2023,9,6,6,0,11.7,1.4,0.028,0.63,16,243,25,0,0,3,16,243,0,25,0.281,55.12,87.99,0.93,0.14,794,1.1,328,0.4
+11917,2023,9,6,6,30,13.4,1.4,0.028,0.63,31,559,104,0,0,3,31,559,0,104,0.281,49.32,82.46,0.93,0.14,794,1.1,182,0.3
+11918,2023,9,6,7,0,15.1,1.41,0.027,0.63,40,714,203,0,0,2.5,40,714,0,203,0.282,42.55,76.8,0.93,0.14,794,1.1,37,0.3
+11919,2023,9,6,7,30,17.4,1.41,0.027,0.63,46,807,307,0,0,2.5,46,807,0,307,0.282,36.82,71.15,0.93,0.14,795,1.1,127,0.9
+11920,2023,9,6,8,0,19.7,1.43,0.027,0.63,52,868,411,0,0,2,52,868,0,411,0.281,30.79,65.56,0.93,0.14,795,1.1,217,1.4
+11921,2023,9,6,8,30,21,1.43,0.027,0.63,56,910,510,0,0,2,56,910,0,510,0.28,28.42,60.09,0.93,0.14,795,1.1,215,2.1
+11922,2023,9,6,9,0,22.3,1.44,0.027,0.63,59,942,602,0,0,1.4,59,942,0,602,0.279,25.24,54.81,0.93,0.14,795,1,213,2.7
+11923,2023,9,6,9,30,23.2,1.44,0.027,0.63,62,966,685,0,0,1.5,62,966,0,685,0.278,23.9,49.82,0.93,0.14,795,1,212,3.2
+11924,2023,9,6,10,0,24.1,1.44,0.027,0.63,64,984,757,0,0,0.8,64,984,0,757,0.277,21.63,45.21,0.93,0.14,794,1,212,3.6
+11925,2023,9,6,10,30,24.8,1.44,0.027,0.63,65,999,817,0,0,0.8,65,999,0,817,0.276,20.74,41.16,0.93,0.14,794,1,213,4
+11926,2023,9,6,11,0,25.6,1.37,0.023,0.63,65,1010,863,0,0,0.1,65,1010,0,863,0.275,18.79,37.85,0.93,0.14,794,1,214,4.4
+11927,2023,9,6,11,30,26.1,1.37,0.023,0.63,65,1017,893,0,0,0.1,65,1017,0,893,0.275,18.22,35.5,0.93,0.14,793,0.9,215,4.7
+11928,2023,9,6,12,0,26.7,1.37,0.022,0.63,66,1020,908,0,0,-0.6,66,1020,0,908,0.274,16.71,34.33,0.93,0.14,793,0.9,216,5
+11929,2023,9,6,12,30,27.1,1.37,0.022,0.63,65,1021,907,0,0,-0.6,65,1021,0,907,0.273,16.32,34.44,0.93,0.14,793,0.9,217,5.2
+11930,2023,9,6,13,0,27.4,1.38,0.021,0.63,64,1019,890,0,0,-1.4,64,1019,0,890,0.273,15.18,35.84,0.93,0.14,792,0.9,218,5.3
+11931,2023,9,6,13,30,27.6,1.38,0.021,0.63,64,1013,858,0,0,-1.4,64,1013,0,858,0.272,15,38.37,0.93,0.14,792,0.9,219,5.4
+11932,2023,9,6,14,0,27.8,1.43,0.022,0.63,62,1004,810,0,0,-2.1,62,1004,0,810,0.272,14.01,41.83,0.93,0.14,792,0.9,221,5.5
+11933,2023,9,6,14,30,27.7,1.43,0.022,0.63,60,992,749,0,0,-2.1,60,992,0,749,0.272,14.1,45.99,0.93,0.14,792,0.9,222,5.6
+11934,2023,9,6,15,0,27.6,1.45,0.021,0.63,58,976,676,0,0,-2.8,58,976,0,676,0.272,13.48,50.68,0.92,0.14,791,0.9,223,5.6
+11935,2023,9,6,15,30,27.2,1.45,0.021,0.63,55,954,592,0,0,-2.8,55,954,0,592,0.272,13.8,55.73,0.92,0.14,791,0.9,225,5.6
+11936,2023,9,6,16,0,26.7,1.47,0.021,0.63,52,922,498,0,0,-3.2,52,922,0,498,0.273,13.77,61.06,0.92,0.14,791,0.9,226,5.6
+11937,2023,9,6,16,30,25.9,1.47,0.021,0.63,48,878,397,0,0,-3.2,48,878,0,397,0.273,14.43,66.56,0.92,0.14,791,0.9,227,5.2
+11938,2023,9,6,17,0,25,1.47,0.021,0.63,43,814,292,0,0,-3.1,43,814,0,292,0.273,15.4,72.17,0.92,0.14,791,0.9,229,4.8
+11939,2023,9,6,17,30,22.5,1.47,0.021,0.63,36,716,187,0,0,-3.1,36,716,0,187,0.273,17.91,77.84,0.92,0.14,792,0.9,230,3.5
+11940,2023,9,6,18,0,20,1.44,0.021,0.63,28,547,90,0,0,-0.8,28,547,0,90,0.273,24.69,83.5,0.92,0.14,792,0.9,231,2.3
+11941,2023,9,6,18,30,18.6,1.44,0.021,0.63,13,184,16,0,0,-0.8,13,184,0,16,0.274,26.93,88.98,0.92,0.14,792,0.9,230,2
+11942,2023,9,6,19,0,17.1,1.41,0.022,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.274,31.15,94.9,0.92,0.14,792,0.9,229,1.7
+11943,2023,9,6,19,30,16.6,1.41,0.022,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.274,32.15,100.41,0.92,0.14,792,0.9,226,1.7
+11944,2023,9,6,20,0,16,1.4,0.023,0.63,0,0,0,0,0,0,0,0,0,0,0.274,33.56,105.76,0.92,0.14,793,0.9,224,1.7
+11945,2023,9,6,20,30,15.5,1.4,0.023,0.63,0,0,0,0,0,0,0,0,0,0,0.274,34.65,110.9,0.92,0.14,793,0.9,224,1.6
+11946,2023,9,6,21,0,15,1.41,0.025,0.63,0,0,0,0,0,0,0,0,0,0,0.275,35.81,115.76,0.92,0.14,793,1,224,1.6
+11947,2023,9,6,21,30,14.6,1.41,0.025,0.63,0,0,0,0,0,0,0,0,43,0,0.275,36.74,120.25,0.92,0.14,793,1,228,1.5
+11948,2023,9,6,22,0,14.1,1.41,0.027,0.63,0,0,0,0,0,0.2,0,0,29,0,0.275,38.49,124.27,0.92,0.14,793,1,233,1.3
+11949,2023,9,6,22,30,13.8,1.41,0.027,0.63,0,0,0,0,0,0.2,0,0,14,0,0.276,39.24,127.71,0.92,0.14,793,1,242,1.2
+11950,2023,9,6,23,0,13.4,1.4,0.028,0.63,0,0,0,0,0,0.4,0,0,0,0,0.276,40.87,130.44,0.92,0.14,793,1.1,251,1.1
+11951,2023,9,6,23,30,13.1,1.4,0.028,0.63,0,0,0,0,0,0.4,0,0,0,0,0.276,41.68,132.31,0.92,0.14,793,1.1,261,1
+11952,2023,9,7,0,0,12.9,1.38,0.029,0.63,0,0,0,0,0,0.5,0,0,0,0,0.277,42.59,133.24,0.92,0.14,793,1.1,272,0.9
+11953,2023,9,7,0,30,12.6,1.38,0.029,0.63,0,0,0,0,0,0.5,0,0,0,0,0.277,43.43,133.16,0.92,0.14,793,1.1,283,0.9
+11954,2023,9,7,1,0,12.3,1.37,0.029,0.63,0,0,0,0,0,0.6,0,0,0,0,0.278,44.82,132.07,0.92,0.14,793,1.1,295,0.8
+11955,2023,9,7,1,30,12,1.37,0.029,0.63,0,0,0,0,0,0.6,0,0,0,0,0.278,45.71,130.05,0.92,0.14,793,1.1,305,0.7
+11956,2023,9,7,2,0,11.7,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.279,47.08,127.21,0.91,0.14,793,1,316,0.7
+11957,2023,9,7,2,30,11.5,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.279,47.7,123.67,0.91,0.14,793,1,324,0.6
+11958,2023,9,7,3,0,11.3,1.37,0.028,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28,48.45,119.56,0.91,0.14,794,1,333,0.5
+11959,2023,9,7,3,30,11.2,1.37,0.028,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28,48.78,115.01,0.91,0.14,794,1,339,0.5
+11960,2023,9,7,4,0,11,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.281,49.37,110.1,0.91,0.14,794,0.9,345,0.5
+11961,2023,9,7,4,30,10.9,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.281,49.7,104.93,0.91,0.14,794,0.9,177,0.4
+11962,2023,9,7,5,0,10.7,1.38,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.282,50.3,99.55,0.91,0.14,794,0.9,10,0.3
+11963,2023,9,7,5,30,11.2,1.38,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.282,48.73,94.03,0.91,0.14,795,0.9,28,0.3
+11964,2023,9,7,6,0,11.7,1.4,0.03,0.63,15,206,22,0,0,1.5,15,206,0,22,0.282,49.64,88.16,0.91,0.14,795,0.9,45,0.3
+11965,2023,9,7,6,30,13.5,1.4,0.03,0.63,31,552,102,0,0,1.5,31,552,0,102,0.283,44.13,82.63,0.91,0.14,795,0.9,75,0.3
+11966,2023,9,7,7,0,15.3,1.41,0.031,0.63,41,707,200,0,0,0.9,41,707,0,200,0.283,37.64,76.98,0.91,0.14,795,0.9,106,0.4
+11967,2023,9,7,7,30,17.7,1.41,0.031,0.63,48,802,305,0,0,0.9,48,802,0,305,0.283,32.33,71.33,0.91,0.14,795,0.9,179,0.6
+11968,2023,9,7,8,0,20,1.42,0.032,0.63,54,864,409,0,0,0,54,864,0,409,0.282,26.11,65.74,0.91,0.14,795,0.9,252,0.9
+11969,2023,9,7,8,30,21.2,1.42,0.032,0.63,58,908,508,0,0,0,58,908,0,508,0.282,24.25,60.29,0.91,0.14,795,0.9,245,1.1
+11970,2023,9,7,9,0,22.5,1.43,0.032,0.63,61,940,600,0,0,-0.5,61,940,0,600,0.281,21.62,55.02,0.91,0.14,796,0.9,239,1.4
+11971,2023,9,7,9,30,23.3,1.43,0.032,0.63,64,964,683,0,0,-0.5,64,964,0,683,0.28,20.58,50.05,0.91,0.14,795,0.9,230,1.6
+11972,2023,9,7,10,0,24.1,1.43,0.032,0.63,67,981,755,0,0,-1,67,981,0,755,0.279,19.02,45.47,0.91,0.14,795,0.9,222,1.9
+11973,2023,9,7,10,30,24.8,1.43,0.032,0.63,67,998,815,0,0,-1,67,998,0,815,0.279,18.25,41.44,0.91,0.14,795,0.9,220,2.2
+11974,2023,9,7,11,0,25.4,1.41,0.025,0.63,65,1011,860,0,0,-1.6,65,1011,0,860,0.278,16.82,38.16,0.91,0.14,795,0.9,218,2.5
+11975,2023,9,7,11,30,25.9,1.41,0.025,0.63,66,1018,891,0,0,-1.6,66,1018,0,891,0.277,16.33,35.85,0.91,0.14,795,0.9,218,2.7
+11976,2023,9,7,12,0,26.4,1.44,0.024,0.63,66,1022,906,0,0,-2.3,66,1022,0,906,0.277,15.01,34.69,0.91,0.14,795,0.9,218,3
+11977,2023,9,7,12,30,26.7,1.44,0.024,0.63,66,1022,905,0,0,-2.3,66,1022,0,905,0.277,14.75,34.82,0.91,0.14,795,0.9,219,3.2
+11978,2023,9,7,13,0,27,1.46,0.024,0.63,65,1020,888,0,0,-3.1,65,1020,0,888,0.276,13.69,36.22,0.9,0.14,795,0.8,220,3.4
+11979,2023,9,7,13,30,27.1,1.46,0.024,0.63,63,1016,855,0,0,-3.1,63,1016,0,855,0.276,13.59,38.75,0.9,0.14,794,0.8,223,3.4
+11980,2023,9,7,14,0,27.2,1.49,0.021,0.63,60,1009,808,0,0,-3.8,60,1009,0,808,0.276,12.79,42.19,0.9,0.14,794,0.8,226,3.5
+11981,2023,9,7,14,30,27,1.49,0.021,0.63,59,997,747,0,0,-3.8,59,997,0,747,0.277,12.94,46.34,0.9,0.14,794,0.8,228,3.5
+11982,2023,9,7,15,0,26.9,1.53,0.021,0.63,57,981,674,0,0,-4.5,57,981,0,674,0.277,12.35,51.01,0.9,0.14,794,0.8,231,3.4
+11983,2023,9,7,15,30,26.4,1.53,0.021,0.63,54,958,589,0,0,-4.5,54,958,0,589,0.277,12.72,56.06,0.9,0.14,794,0.7,232,3.3
+11984,2023,9,7,16,0,26,1.56,0.021,0.63,51,926,495,0,0,-5.2,51,926,0,495,0.277,12.43,61.37,0.9,0.14,794,0.7,232,3.1
+11985,2023,9,7,16,30,25.1,1.56,0.021,0.63,48,882,394,0,0,-5.2,48,882,0,394,0.277,13.11,66.87,0.9,0.14,794,0.7,231,2.6
+11986,2023,9,7,17,0,24.3,1.59,0.022,0.63,43,817,289,0,0,-4,43,817,0,289,0.277,15.01,72.48,0.9,0.13,794,0.7,229,2.2
+11987,2023,9,7,17,30,22.2,1.59,0.022,0.63,36,716,183,0,0,-4,36,716,0,183,0.277,17.03,78.14,0.9,0.13,794,0.7,226,1.6
+11988,2023,9,7,18,0,20.1,1.62,0.022,0.63,27,543,86,0,0,-0.1,27,543,0,86,0.277,25.86,83.8,0.9,0.13,794,0.7,223,1
+11989,2023,9,7,18,30,19.6,1.62,0.022,0.63,11,154,13,0,0,-0.1,11,154,0,13,0.277,26.67,89.26,0.9,0.13,794,0.7,215,1
+11990,2023,9,7,19,0,19.1,1.64,0.023,0.63,0,0,0,0,0,-2,0,0,0,0,0.277,24,95.21,0.9,0.13,795,0.7,206,1
+11991,2023,9,7,19,30,18.6,1.64,0.023,0.63,0,0,0,0,0,-2,0,0,0,0,0.277,24.76,100.72,0.9,0.13,795,0.7,194,1.1
+11992,2023,9,7,20,0,18.2,1.65,0.023,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.277,24.14,106.09,0.9,0.13,795,0.7,182,1.2
+11993,2023,9,7,20,30,17.4,1.65,0.023,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.277,25.39,111.23,0.9,0.13,795,0.7,177,1.2
+11994,2023,9,7,21,0,16.6,1.66,0.024,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.277,26.64,116.1,0.9,0.13,795,0.7,172,1.3
+11995,2023,9,7,21,30,15.8,1.66,0.024,0.63,0,0,0,0,0,-2.7,0,0,43,0,0.277,28.03,120.61,0.9,0.13,795,0.7,174,1.4
+11996,2023,9,7,22,0,15.1,1.65,0.024,0.63,0,0,0,0,0,-2.9,0,0,29,0,0.277,28.92,124.64,0.9,0.13,795,0.7,176,1.4
+11997,2023,9,7,22,30,14.6,1.65,0.024,0.63,0,0,0,0,0,-2.9,0,0,14,0,0.277,29.86,128.09,0.91,0.13,795,0.7,180,1.4
+11998,2023,9,7,23,0,14.1,1.64,0.025,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.277,30.27,130.82,0.91,0.13,795,0.7,184,1.4
+11999,2023,9,7,23,30,13.7,1.64,0.025,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.276,31.06,132.7,0.91,0.13,795,0.8,187,1.4
+12000,2023,9,8,0,0,13.3,1.63,0.026,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.276,31.37,133.62,0.91,0.13,795,0.8,189,1.4
+12001,2023,9,8,0,30,13.1,1.63,0.026,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.275,31.79,133.53,0.91,0.13,795,0.8,187,1.4
+12002,2023,9,8,1,0,12.9,1.6,0.027,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.275,31.54,132.42,0.91,0.13,795,0.8,186,1.3
+12003,2023,9,8,1,30,12.8,1.6,0.027,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.275,31.75,130.38,0.91,0.13,795,0.8,181,1.3
+12004,2023,9,8,2,0,12.7,1.57,0.028,0.63,0,0,0,0,0,-4,0,0,0,0,0.276,30.95,127.51,0.91,0.13,795,0.8,177,1.3
+12005,2023,9,8,2,30,12.3,1.57,0.028,0.63,0,0,0,0,0,-4,0,0,0,0,0.277,31.77,123.95,0.91,0.13,795,0.8,171,1.3
+12006,2023,9,8,3,0,12,1.55,0.029,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.278,31.91,119.82,0.91,0.13,795,0.8,166,1.3
+12007,2023,9,8,3,30,11.5,1.55,0.029,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.279,32.98,115.24,0.91,0.13,795,0.8,167,1.4
+12008,2023,9,8,4,0,11.1,1.56,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.279,33.46,110.32,0.91,0.13,795,0.8,167,1.4
+12009,2023,9,8,4,30,10.8,1.56,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.281,34.17,105.13,0.91,0.13,796,0.8,171,1.4
+12010,2023,9,8,5,0,10.4,1.59,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.282,34.82,99.74,0.91,0.13,796,0.8,174,1.4
+12011,2023,9,8,5,30,11.1,1.59,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.282,33.24,94.21,0.91,0.13,796,0.8,177,1.4
+12012,2023,9,8,6,0,11.7,1.62,0.029,0.63,15,210,21,0,0,-3.7,15,210,0,21,0.283,33.86,88.33,0.9,0.13,796,0.7,180,1.3
+12013,2023,9,8,6,30,13.7,1.62,0.029,0.63,30,564,101,0,0,-3.7,30,564,0,101,0.284,29.71,82.81,0.9,0.13,796,0.7,186,1.8
+12014,2023,9,8,7,0,15.8,1.63,0.029,0.63,40,723,201,0,0,-4.7,40,723,0,201,0.284,24.14,77.15,0.9,0.13,796,0.7,191,2.2
+12015,2023,9,8,7,30,18,1.63,0.029,0.63,47,817,306,0,0,-4.6,47,817,0,306,0.284,21.04,71.51,0.9,0.13,797,0.7,206,2.7
+12016,2023,9,8,8,0,20.2,1.62,0.03,0.63,52,879,411,0,0,-4.7,52,879,0,411,0.284,18.3,65.93,0.9,0.13,797,0.7,220,3.2
+12017,2023,9,8,8,30,21.7,1.62,0.03,0.63,57,922,511,0,0,-4.7,57,922,0,511,0.283,16.69,60.48,0.9,0.13,797,0.7,223,3.5
+12018,2023,9,8,9,0,23.2,1.6,0.031,0.63,61,952,604,0,0,-3.8,61,952,0,604,0.283,16.31,55.24,0.9,0.13,797,0.7,226,3.7
+12019,2023,9,8,9,30,24.1,1.6,0.031,0.63,64,975,687,0,0,-3.8,64,975,0,687,0.282,15.46,50.28,0.9,0.13,797,0.7,226,4
+12020,2023,9,8,10,0,25,1.59,0.032,0.63,66,992,759,0,0,-3.8,66,992,0,759,0.282,14.63,45.72,0.9,0.13,797,0.7,227,4.2
+12021,2023,9,8,10,30,25.7,1.59,0.032,0.63,66,1008,818,0,0,-3.8,66,1008,0,818,0.281,14.03,41.73,0.9,0.13,797,0.7,229,4.4
+12022,2023,9,8,11,0,26.4,1.87,0.026,0.63,65,1020,863,0,0,-4.2,65,1020,0,863,0.281,13.07,38.48,0.9,0.13,796,0.7,230,4.6
+12023,2023,9,8,11,30,26.8,1.87,0.026,0.63,66,1025,893,0,0,-4.2,66,1025,0,893,0.281,12.77,36.19,0.9,0.13,796,0.7,232,4.7
+12024,2023,9,8,12,0,27.3,1.9,0.028,0.63,67,1026,907,0,0,-4.5,67,1026,0,907,0.281,12.1,35.06,0.9,0.13,796,0.7,233,4.8
+12025,2023,9,8,12,30,27.5,1.9,0.028,0.63,68,1023,904,0,0,-4.5,68,1023,0,904,0.281,11.96,35.2,0.9,0.13,796,0.7,234,4.8
+12026,2023,9,8,13,0,27.8,1.92,0.031,0.63,69,1017,885,0,0,-4.6,69,1017,0,885,0.28,11.63,36.61,0.9,0.13,796,0.8,235,4.8
+12027,2023,9,8,13,30,27.9,1.92,0.031,0.63,68,1008,850,0,0,-4.6,68,1008,0,850,0.28,11.57,39.13,0.9,0.13,796,0.8,235,4.8
+12028,2023,9,8,14,0,28,1.97,0.034,0.63,68,997,802,0,0,-4.7,68,997,0,802,0.28,11.45,42.56,0.9,0.13,795,0.8,236,4.7
+12029,2023,9,8,14,30,27.9,1.97,0.034,0.63,67,981,740,0,0,-4.7,67,981,0,740,0.28,11.52,46.7,0.9,0.13,795,0.8,235,4.7
+12030,2023,9,8,15,0,27.8,1.98,0.038,0.63,65,959,664,0,0,-4.8,65,959,0,664,0.28,11.52,51.36,0.9,0.13,795,0.8,234,4.6
+12031,2023,9,8,15,30,27.5,1.98,0.038,0.63,63,931,578,0,0,-4.8,63,931,0,578,0.28,11.72,56.39,0.9,0.13,795,0.8,233,4.5
+12032,2023,9,8,16,0,27.2,1.98,0.042,0.63,60,892,483,0,0,-5,60,892,0,483,0.28,11.72,61.7,0.9,0.13,795,0.9,231,4.4
+12033,2023,9,8,16,30,26.3,1.98,0.042,0.63,55,840,381,0,0,-5,55,840,0,381,0.28,12.35,67.18,0.9,0.13,795,0.9,229,3.9
+12034,2023,9,8,17,0,25.4,1.96,0.046,0.63,49,766,276,0,0,-4.2,49,766,0,276,0.28,13.8,72.79,0.9,0.14,795,0.9,228,3.3
+12035,2023,9,8,17,30,22.7,1.96,0.046,0.63,41,655,172,0,0,-4.2,41,655,0,172,0.28,16.22,78.45,0.9,0.14,795,0.9,225,2.4
+12036,2023,9,8,18,0,20,1.93,0.046,0.63,29,468,77,0,0,-1.4,29,468,0,77,0.28,23.63,84.1,0.9,0.14,795,0.9,223,1.6
+12037,2023,9,8,18,30,18.9,1.93,0.046,0.63,10,118,11,0,0,-1.4,10,118,0,11,0.28,25.29,89.54,0.9,0.14,795,0.9,226,1.6
+12038,2023,9,8,19,0,17.8,1.9,0.043,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.281,26.26,95.52,0.9,0.14,795,0.9,229,1.6
+12039,2023,9,8,19,30,17.2,1.9,0.043,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.281,27.3,101.04,0.9,0.14,796,0.9,237,1.6
+12040,2023,9,8,20,0,16.7,1.84,0.038,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.281,27.71,106.41,0.9,0.14,796,0.9,245,1.6
+12041,2023,9,8,20,30,16.1,1.84,0.038,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.281,28.79,111.57,0.91,0.14,796,0.9,256,1.5
+12042,2023,9,8,21,0,15.5,1.76,0.033,0.63,0,0,0,0,0,-2,0,0,0,0,0.281,30.12,116.45,0.91,0.14,796,0.9,267,1.5
+12043,2023,9,8,21,30,15,1.76,0.033,0.63,0,0,0,0,0,-2,0,0,43,0,0.281,31.1,120.96,0.91,0.14,796,0.9,280,1.4
+12044,2023,9,8,22,0,14.5,1.69,0.03,0.63,0,0,0,0,0,-1.6,0,0,14,0,0.281,33,125.01,0.91,0.14,796,0.9,294,1.4
+12045,2023,9,8,22,30,14,1.69,0.03,0.63,0,0,0,0,0,-1.6,0,0,14,0,0.282,34.08,128.47,0.91,0.14,796,0.9,307,1.4
+12046,2023,9,8,23,0,13.6,1.62,0.029,0.63,0,0,0,0,0,-1,0,0,0,0,0.282,36.52,131.2,0.91,0.14,796,0.9,319,1.3
+12047,2023,9,8,23,30,13.4,1.62,0.029,0.63,0,0,0,0,0,-1,0,0,0,0,0.282,37,133.08,0.91,0.14,796,0.9,326,1.4
+12048,2023,9,9,0,0,13.2,1.56,0.03,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.282,39.1,134,0.91,0.14,796,0.9,334,1.4
+12049,2023,9,9,0,30,13,1.56,0.03,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.283,39.61,133.89,0.91,0.14,796,0.9,339,1.3
+12050,2023,9,9,1,0,12.9,1.52,0.03,0.63,0,0,0,0,0,0,0,0,0,0,0.283,41.07,132.77,0.91,0.14,796,0.9,344,1.3
+12051,2023,9,9,1,30,12.8,1.52,0.03,0.63,0,0,0,0,0,0,0,0,0,0,0.283,41.34,130.71,0.91,0.14,796,0.9,350,1.2
+12052,2023,9,9,2,0,12.6,1.51,0.031,0.63,0,0,0,0,0,0.3,0,0,0,0,0.283,42.88,127.81,0.91,0.14,797,0.9,355,1.1
+12053,2023,9,9,2,30,12.3,1.51,0.031,0.63,0,0,0,0,0,0.3,0,0,0,0,0.283,43.73,124.22,0.91,0.14,797,0.9,184,1
+12054,2023,9,9,3,0,12,1.5,0.032,0.63,0,0,0,0,0,0.4,0,0,0,0,0.283,44.97,120.07,0.91,0.14,797,0.9,13,0.9
+12055,2023,9,9,3,30,11.7,1.5,0.032,0.63,0,0,0,0,0,0.4,0,0,0,0,0.282,45.87,115.48,0.91,0.14,797,0.9,22,0.9
+12056,2023,9,9,4,0,11.3,1.5,0.033,0.63,0,0,0,0,0,0.5,0,0,0,0,0.282,47.52,110.54,0.91,0.14,797,0.9,32,0.8
+12057,2023,9,9,4,30,11,1.5,0.033,0.63,0,0,0,0,0,0.5,0,0,0,0,0.282,48.48,105.34,0.91,0.14,797,0.9,40,0.8
+12058,2023,9,9,5,0,10.7,1.51,0.033,0.63,0,0,0,0,0,0.6,0,0,0,0,0.282,49.65,99.94,0.91,0.14,797,0.9,49,0.8
+12059,2023,9,9,5,30,11.2,1.51,0.033,0.63,0,0,0,0,0,0.6,0,0,0,0,0.281,48.03,94.4,0.91,0.14,797,0.9,58,0.7
+12060,2023,9,9,6,0,11.7,1.52,0.034,0.63,15,189,20,0,0,1,15,189,0,20,0.281,47.73,88.5,0.91,0.14,798,0.9,68,0.6
+12061,2023,9,9,6,30,13.5,1.52,0.034,0.63,31,531,96,0,0,1,31,531,0,96,0.281,42.43,82.98,0.91,0.14,798,0.9,87,0.8
+12062,2023,9,9,7,0,15.4,1.52,0.034,0.63,42,695,194,0,0,0.5,42,695,0,194,0.281,36.31,77.33,0.91,0.14,798,0.9,106,0.9
+12063,2023,9,9,7,30,17.7,1.52,0.034,0.63,49,794,298,0,0,0.5,49,794,0,298,0.28,31.39,71.69,0.91,0.14,798,0.9,143,1
+12064,2023,9,9,8,0,19.9,1.53,0.035,0.63,55,858,402,0,0,-0.8,55,858,0,402,0.279,24.84,66.12,0.91,0.14,798,0.9,180,1.1
+12065,2023,9,9,8,30,21.9,1.53,0.035,0.63,59,903,501,0,0,-0.8,59,903,0,501,0.279,21.97,60.69,0.91,0.14,798,0.9,201,1.4
+12066,2023,9,9,9,0,23.9,1.55,0.034,0.63,62,936,593,0,0,-2.8,62,936,0,593,0.278,16.76,55.45,0.91,0.14,798,0.9,222,1.8
+12067,2023,9,9,9,30,24.9,1.55,0.034,0.63,65,960,676,0,0,-2.8,65,960,0,676,0.277,15.79,50.51,0.91,0.14,798,0.9,227,2
+12068,2023,9,9,10,0,25.9,1.57,0.034,0.63,68,979,748,0,0,-3.5,68,979,0,748,0.276,14.13,45.98,0.91,0.14,798,0.9,233,2.2
+12069,2023,9,9,10,30,26.5,1.57,0.034,0.63,68,994,807,0,0,-3.5,68,994,0,807,0.276,13.64,42.01,0.91,0.14,798,0.9,235,2.2
+12070,2023,9,9,11,0,27.2,1.65,0.03,0.63,68,1006,852,0,0,-3.9,68,1006,0,852,0.275,12.73,38.8,0.91,0.14,797,0.9,236,2.3
+12071,2023,9,9,11,30,27.6,1.65,0.03,0.63,70,1011,882,0,0,-3.9,70,1011,0,882,0.274,12.43,36.54,0.91,0.14,797,0.9,236,2.3
+12072,2023,9,9,12,0,28.1,1.68,0.03,0.63,70,1014,896,0,0,-4.2,70,1014,0,896,0.273,11.83,35.43,0.91,0.14,797,0.9,237,2.3
+12073,2023,9,9,12,30,28.3,1.68,0.03,0.63,69,1014,894,0,0,-4.2,69,1014,0,894,0.273,11.69,35.59,0.91,0.14,797,0.9,235,2.2
+12074,2023,9,9,13,0,28.5,1.7,0.03,0.63,69,1010,876,0,0,-4.5,82,980,0,865,0.272,11.29,36.99,0.91,0.14,796,0.9,233,2.1
+12075,2023,9,9,13,30,28.5,1.7,0.03,0.63,68,1003,842,0,0,-4.5,68,1003,0,842,0.272,11.29,39.51,0.92,0.14,796,0.9,231,2.1
+12076,2023,9,9,14,0,28.5,1.7,0.031,0.63,68,992,794,0,0,-4.8,170,705,4,686,0.271,11.06,42.93,0.92,0.14,796,0.9,229,2.1
+12077,2023,9,9,14,30,28.2,1.7,0.031,0.63,66,976,731,0,0,-4.8,78,948,0,724,0.271,11.25,47.05,0.92,0.14,796,1,229,2.3
+12078,2023,9,9,15,0,28,1.66,0.035,0.63,65,953,656,0,0,-5,65,953,0,656,0.271,11.17,51.7,0.92,0.14,796,1,228,2.4
+12079,2023,9,9,15,30,27.5,1.66,0.035,0.63,64,921,569,0,0,-5,64,921,0,569,0.271,11.5,56.72,0.93,0.14,796,1,230,2.5
+12080,2023,9,9,16,0,27,1.57,0.044,0.63,62,878,474,0,0,-5.1,62,878,0,474,0.271,11.76,62.02,0.94,0.14,796,1,231,2.6
+12081,2023,9,9,16,30,25.9,1.57,0.044,0.63,58,820,372,0,0,-5.1,112,615,7,347,0.27,12.54,67.5,0.94,0.14,796,1.1,233,2.1
+12082,2023,9,9,17,0,24.9,1.49,0.053,0.63,53,737,267,0,0,-2.8,91,541,7,248,0.27,15.8,73.1,0.94,0.13,796,1.1,235,1.7
+12083,2023,9,9,17,30,23.3,1.49,0.053,0.63,44,612,163,1,0,-2.8,59,440,29,145,0.27,17.39,78.76,0.95,0.13,796,1.1,239,1.2
+12084,2023,9,9,18,0,21.7,1.46,0.06,0.63,31,404,70,7,8,0.5,49,24,100,51,0.27,24.49,84.41,0.95,0.13,796,1.1,242,0.7
+12085,2023,9,9,18,30,21.4,1.46,0.06,0.63,9,86,9,4,7,0.5,6,0,57,6,0.27,24.95,89.82,0.95,0.13,796,1.2,255,0.6
+12086,2023,9,9,19,0,21.2,1.43,0.068,0.63,0,0,0,0,7,-0.5,0,0,0,0,0.27,23.52,95.84,0.95,0.13,796,1.2,268,0.5
+12087,2023,9,9,19,30,21,1.43,0.068,0.63,0,0,0,0,6,-0.5,0,0,0,0,0.27,23.81,101.37,0.95,0.13,796,1.3,291,0.5
+12088,2023,9,9,20,0,20.8,1.42,0.073,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,23.51,106.74,0.95,0.13,796,1.3,314,0.5
+12089,2023,9,9,20,30,20.4,1.42,0.073,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,24.1,111.91,0.95,0.13,796,1.3,321,0.5
+12090,2023,9,9,21,0,20,1.42,0.077,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,24.75,116.8,0.95,0.13,796,1.4,328,0.5
+12091,2023,9,9,21,30,19.3,1.42,0.077,0.63,0,0,0,0,7,-0.8,0,0,43,0,0.27,25.85,121.32,0.95,0.13,796,1.4,327,0.5
+12092,2023,9,9,22,0,18.7,1.42,0.082,0.63,0,0,0,0,6,-0.3,0,0,14,0,0.27,27.8,125.38,0.96,0.13,796,1.4,325,0.6
+12093,2023,9,9,22,30,18,1.42,0.082,0.63,0,0,0,0,7,-0.3,0,0,14,0,0.27,29.01,128.85,0.96,0.13,795,1.5,322,0.6
+12094,2023,9,9,23,0,17.4,1.42,0.089,0.63,0,0,0,0,7,0.3,0,0,0,0,0.27,31.37,131.59,0.96,0.13,795,1.5,319,0.7
+12095,2023,9,9,23,30,16.9,1.42,0.089,0.63,0,0,0,0,7,0.3,0,0,0,0,0.271,32.42,133.47,0.96,0.13,796,1.6,316,0.8
+12096,2023,9,10,0,0,16.4,1.42,0.097,0.63,0,0,0,0,7,0.8,0,0,0,0,0.271,34.84,134.38,0.96,0.13,796,1.6,314,0.8
+12097,2023,9,10,0,30,16,1.42,0.097,0.63,0,0,0,0,7,0.8,0,0,0,0,0.27,35.74,134.26,0.96,0.13,796,1.7,310,0.9
+12098,2023,9,10,1,0,15.6,1.42,0.104,0.63,0,0,0,0,4,1.5,0,0,0,0,0.27,38.44,133.12,0.97,0.13,796,1.7,306,1
+12099,2023,9,10,1,30,15.3,1.42,0.104,0.63,0,0,0,0,4,1.5,0,0,0,0,0.27,39.19,131.03,0.97,0.13,796,1.8,302,1
+12100,2023,9,10,2,0,15,1.39,0.113,0.63,0,0,0,0,7,2.2,0,0,0,0,0.27,42.05,128.11,0.97,0.13,796,1.8,298,1
+12101,2023,9,10,2,30,14.7,1.39,0.113,0.63,0,0,0,0,7,2.2,0,0,0,0,0.27,42.92,124.5,0.97,0.13,797,1.9,299,0.9
+12102,2023,9,10,3,0,14.3,1.36,0.123,0.63,0,0,0,0,7,3,0,0,0,0,0.27,46.53,120.33,0.97,0.13,797,1.9,300,0.8
+12103,2023,9,10,3,30,14.1,1.36,0.123,0.63,0,0,0,0,7,3,0,0,0,0,0.271,47.13,115.71,0.97,0.13,797,1.9,320,0.6
+12104,2023,9,10,4,0,13.8,1.37,0.113,0.63,0,0,0,0,7,3.7,0,0,0,0,0.271,50.48,110.76,0.97,0.13,797,1.9,340,0.4
+12105,2023,9,10,4,30,13.5,1.37,0.113,0.63,0,0,0,0,7,3.7,0,0,0,0,0.272,51.47,105.54,0.97,0.13,797,1.9,209,0.5
+12106,2023,9,10,5,0,13.3,1.45,0.083,0.63,0,0,0,0,7,4.1,0,0,0,0,0.272,53.59,100.13,0.96,0.13,797,1.9,78,0.7
+12107,2023,9,10,5,30,13.4,1.45,0.083,0.63,0,0,0,0,7,4.1,0,0,0,0,0.273,53.24,94.58,0.96,0.13,797,1.8,90,1.1
+12108,2023,9,10,6,0,13.6,1.5,0.066,0.63,14,129,17,5,7,4.4,10,1,71,10,0.273,53.71,88.67,0.95,0.13,797,1.8,101,1.5
+12109,2023,9,10,6,30,14.6,1.5,0.066,0.63,35,437,87,4,3,4.4,52,124,57,67,0.274,50.35,83.16,0.95,0.13,797,1.7,103,1.9
+12110,2023,9,10,7,0,15.6,1.52,0.058,0.63,46,622,181,0,8,4.4,101,182,0,140,0.274,47.11,77.51,0.95,0.13,797,1.7,105,2.4
+12111,2023,9,10,7,30,16.7,1.52,0.058,0.63,55,732,283,0,8,4.4,127,138,7,170,0.274,43.93,71.87,0.95,0.13,797,1.7,99,2
+12112,2023,9,10,8,0,17.7,1.53,0.053,0.63,61,807,385,2,8,4.1,74,8,32,77,0.274,40.49,66.31,0.95,0.13,797,1.6,92,1.7
+12113,2023,9,10,8,30,18.5,1.53,0.053,0.63,65,857,482,0,8,4.1,183,198,7,279,0.274,38.51,60.89,0.94,0.13,797,1.6,78,1.3
+12114,2023,9,10,9,0,19.2,1.53,0.051,0.63,69,894,573,0,7,3.9,214,436,0,460,0.274,36.37,55.67,0.94,0.13,797,1.6,63,0.8
+12115,2023,9,10,9,30,20.1,1.53,0.051,0.63,72,921,655,0,8,3.9,191,584,0,560,0.275,34.4,50.75,0.94,0.13,797,1.6,205,0.7
+12116,2023,9,10,10,0,21,1.54,0.05,0.63,74,941,725,0,0,3.5,82,922,0,720,0.276,31.54,46.24,0.94,0.13,797,1.6,347,0.6
+12117,2023,9,10,10,30,21.9,1.54,0.05,0.63,75,959,784,0,0,3.5,75,959,0,784,0.276,29.85,42.3,0.94,0.13,797,1.5,320,0.7
+12118,2023,9,10,11,0,22.9,1.6,0.041,0.63,74,974,830,0,0,2.9,74,974,0,830,0.277,26.99,39.12,0.94,0.13,796,1.5,293,0.7
+12119,2023,9,10,11,30,23.7,1.6,0.041,0.63,74,980,858,0,0,2.9,185,722,0,762,0.277,25.73,36.89,0.94,0.13,796,1.5,274,0.9
+12120,2023,9,10,12,0,24.4,1.59,0.041,0.63,75,983,872,0,8,2.5,249,573,0,714,0.277,23.99,35.8,0.94,0.13,796,1.5,256,1
+12121,2023,9,10,12,30,24.8,1.59,0.041,0.63,75,983,871,0,8,2.5,236,607,0,727,0.277,23.39,35.97,0.94,0.13,795,1.5,250,1.2
+12122,2023,9,10,13,0,25.2,1.59,0.041,0.63,75,979,853,0,0,2.3,202,636,0,707,0.277,22.44,37.38,0.94,0.13,795,1.5,243,1.3
+12123,2023,9,10,13,30,25.2,1.59,0.041,0.63,75,971,820,0,3,2.3,300,178,0,437,0.277,22.44,39.89,0.94,0.13,795,1.5,244,1.4
+12124,2023,9,10,14,0,25.2,1.55,0.044,0.63,74,959,772,0,8,1.9,296,157,0,410,0.277,21.91,43.3,0.94,0.13,795,1.5,246,1.6
+12125,2023,9,10,14,30,25.1,1.55,0.044,0.63,73,943,711,0,6,1.9,262,100,0,330,0.277,22.02,47.41,0.94,0.13,794,1.5,252,1.6
+12126,2023,9,10,15,0,25,1.55,0.047,0.63,70,921,637,0,6,1.4,99,2,0,100,0.277,21.35,52.04,0.95,0.13,794,1.5,259,1.7
+12127,2023,9,10,15,30,24.7,1.55,0.047,0.63,68,891,552,0,6,1.4,49,1,0,50,0.277,21.73,57.06,0.95,0.13,794,1.5,271,1.7
+12128,2023,9,10,16,0,24.3,1.56,0.051,0.63,64,851,459,0,6,1,61,16,0,68,0.277,21.63,62.34,0.95,0.13,794,1.4,283,1.8
+12129,2023,9,10,16,30,23.7,1.56,0.051,0.63,59,795,359,0,6,1,58,1,0,58,0.278,22.42,67.82,0.95,0.13,794,1.5,298,1.8
+12130,2023,9,10,17,0,23,1.55,0.055,0.63,52,714,256,0,7,1,55,37,0,66,0.278,23.39,73.41,0.95,0.14,794,1.5,312,1.8
+12131,2023,9,10,17,30,21.4,1.55,0.055,0.63,43,589,155,1,7,1,63,100,14,82,0.278,25.77,79.07,0.95,0.14,794,1.5,327,1.4
+12132,2023,9,10,18,0,19.9,1.53,0.061,0.63,30,378,65,7,7,2.4,44,12,100,45,0.279,31.4,84.71,0.96,0.14,794,1.5,342,1
+12133,2023,9,10,18,30,19.1,1.53,0.061,0.63,6,59,6,3,8,2.4,4,0,43,4,0.279,33,90.09,0.96,0.14,794,1.5,176,1.2
+12134,2023,9,10,19,0,18.3,1.52,0.068,0.63,0,0,0,0,4,2.5,0,0,0,0,0.279,34.89,96.16,0.96,0.14,795,1.6,9,1.4
+12135,2023,9,10,19,30,17.7,1.52,0.068,0.63,0,0,0,0,5,2.5,0,0,0,0,0.279,36.23,101.69,0.96,0.14,795,1.6,21,1.7
+12136,2023,9,10,20,0,17,1.51,0.076,0.63,0,0,0,0,5,3.1,0,0,0,0,0.279,39.32,107.07,0.96,0.14,796,1.7,33,2.1
+12137,2023,9,10,20,30,16.4,1.51,0.076,0.63,0,0,0,0,4,3.1,0,0,0,0,0.279,40.84,112.25,0.96,0.14,796,1.7,38,2.2
+12138,2023,9,10,21,0,15.9,1.52,0.078,0.63,0,0,0,0,4,3.9,0,0,0,0,0.28,44.69,117.15,0.96,0.14,796,1.7,44,2.3
+12139,2023,9,10,21,30,15.4,1.52,0.078,0.63,0,0,0,0,4,3.9,0,0,29,0,0.28,46.14,121.68,0.96,0.14,796,1.7,47,2.2
+12140,2023,9,10,22,0,14.9,1.54,0.073,0.63,0,0,0,0,4,4.6,0,0,0,0,0.281,50.1,125.75,0.96,0.14,796,1.7,49,2
+12141,2023,9,10,22,30,14.4,1.54,0.073,0.63,0,0,0,0,5,4.6,0,0,0,0,0.281,51.73,129.23,0.96,0.14,796,1.6,48,1.7
+12142,2023,9,10,23,0,13.9,1.56,0.067,0.63,0,0,0,0,3,5,0,0,0,0,0.282,54.87,131.98,0.96,0.14,796,1.6,47,1.5
+12143,2023,9,10,23,30,13.4,1.56,0.067,0.63,0,0,0,0,0,5,0,0,0,0,0.284,56.68,133.86,0.95,0.14,796,1.6,44,1.3
+12144,2023,9,11,0,0,13,1.56,0.061,0.63,0,0,0,0,5,5.1,0,0,0,0,0.285,58.85,134.77,0.95,0.14,795,1.5,42,1.1
+12145,2023,9,11,0,30,12.5,1.56,0.061,0.63,0,0,0,0,5,5.1,0,0,0,0,0.286,60.8,134.63,0.95,0.14,795,1.5,40,1.1
+12146,2023,9,11,1,0,12,1.55,0.057,0.63,0,0,0,0,4,5.2,0,0,0,0,0.287,63.25,133.47,0.95,0.14,795,1.4,37,1.1
+12147,2023,9,11,1,30,11.6,1.55,0.057,0.63,0,0,0,0,3,5.2,0,0,0,0,0.287,64.93,131.36,0.95,0.14,795,1.4,38,1.1
+12148,2023,9,11,2,0,11.1,1.55,0.053,0.63,0,0,0,0,5,5.3,0,0,0,0,0.288,67.55,128.41,0.94,0.14,795,1.4,38,1.1
+12149,2023,9,11,2,30,10.7,1.55,0.053,0.63,0,0,0,0,0,5.3,0,0,0,0,0.288,69.37,124.78,0.94,0.14,795,1.3,40,1.1
+12150,2023,9,11,3,0,10.3,1.57,0.047,0.63,0,0,0,0,0,5.4,0,0,0,0,0.289,71.64,120.58,0.94,0.14,795,1.3,41,1.1
+12151,2023,9,11,3,30,10,1.57,0.047,0.63,0,0,0,0,0,5.4,0,0,0,0,0.289,73.09,115.95,0.93,0.14,795,1.3,42,1.1
+12152,2023,9,11,4,0,9.6,1.57,0.043,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,75.35,110.97,0.93,0.14,795,1.3,42,1.1
+12153,2023,9,11,4,30,9.3,1.57,0.043,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,76.88,105.74,0.93,0.14,795,1.2,42,1.2
+12154,2023,9,11,5,0,9.1,1.57,0.04,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,78.32,100.32,0.93,0.14,795,1.2,42,1.2
+12155,2023,9,11,5,30,9.6,1.57,0.04,0.63,0,0,0,0,0,5.5,0,0,0,0,0.29,75.83,94.77,0.93,0.14,796,1.2,41,1.5
+12156,2023,9,11,6,0,10.2,1.58,0.039,0.63,14,165,17,0,0,5.7,14,165,0,17,0.29,73.77,88.83,0.93,0.14,796,1.2,41,1.8
+12157,2023,9,11,6,30,11.9,1.58,0.039,0.63,30,496,88,0,0,5.7,30,496,0,88,0.291,65.92,83.33,0.93,0.14,796,1.2,43,2.2
+12158,2023,9,11,7,0,13.6,1.58,0.039,0.63,41,670,184,0,0,5.6,41,670,0,184,0.292,58.47,77.69,0.93,0.14,796,1.2,45,2.7
+12159,2023,9,11,7,30,15.6,1.58,0.039,0.63,49,773,287,0,0,5.6,49,773,0,287,0.292,51.41,72.06,0.93,0.14,796,1.2,49,2.9
+12160,2023,9,11,8,0,17.6,1.57,0.038,0.63,55,840,390,0,0,3.4,55,840,0,390,0.292,38.77,66.5,0.93,0.14,796,1.2,54,3.2
+12161,2023,9,11,8,30,18.7,1.57,0.038,0.63,60,887,489,0,0,3.4,60,887,29,489,0.291,36.19,61.09,0.93,0.14,796,1.2,53,3.1
+12162,2023,9,11,9,0,19.7,1.56,0.038,0.63,64,922,581,0,0,2.1,64,922,0,581,0.29,31.07,55.89,0.93,0.14,796,1.1,52,3.1
+12163,2023,9,11,9,30,20.5,1.56,0.038,0.63,67,947,663,0,0,2.1,67,947,0,663,0.289,29.58,50.99,0.93,0.14,796,1.1,51,3
+12164,2023,9,11,10,0,21.3,1.54,0.038,0.63,69,966,734,0,0,1.5,69,966,0,734,0.288,26.94,46.51,0.93,0.14,796,1.1,49,3
+12165,2023,9,11,10,30,21.9,1.54,0.038,0.63,71,981,793,0,0,1.5,71,981,0,793,0.287,25.97,42.59,0.93,0.14,796,1.1,48,2.9
+12166,2023,9,11,11,0,22.5,1.6,0.035,0.63,71,993,838,0,0,0.9,71,993,0,838,0.286,24.02,39.44,0.93,0.14,795,1.1,46,2.9
+12167,2023,9,11,11,30,23,1.6,0.035,0.63,72,1000,868,0,0,0.9,72,1000,0,868,0.285,23.31,37.24,0.92,0.14,795,1.1,45,2.8
+12168,2023,9,11,12,0,23.4,1.58,0.035,0.63,71,1003,881,0,0,0.4,71,1003,0,881,0.283,21.87,36.18,0.92,0.14,795,1.1,43,2.8
+12169,2023,9,11,12,30,23.6,1.58,0.035,0.63,72,1003,880,0,0,0.4,85,977,0,872,0.282,21.61,36.36,0.92,0.14,795,1,42,2.8
+12170,2023,9,11,13,0,23.9,1.56,0.034,0.63,71,1001,862,0,0,-0.1,152,735,0,733,0.28,20.51,37.77,0.92,0.14,794,1,41,2.8
+12171,2023,9,11,13,30,23.9,1.56,0.034,0.63,70,995,829,0,0,-0.1,106,900,0,793,0.28,20.51,40.27,0.92,0.14,794,1,40,2.8
+12172,2023,9,11,14,0,24,1.58,0.032,0.63,68,986,781,0,0,-0.5,108,853,0,725,0.279,19.72,43.67,0.92,0.14,794,1,39,2.8
+12173,2023,9,11,14,30,23.8,1.58,0.032,0.63,66,972,719,0,0,-0.5,66,972,0,719,0.279,19.96,47.77,0.92,0.14,794,1,38,2.9
+12174,2023,9,11,15,0,23.7,1.57,0.032,0.63,62,953,644,0,0,-1,62,953,0,644,0.279,19.42,52.39,0.92,0.14,793,1,37,2.9
+12175,2023,9,11,15,30,23.3,1.57,0.032,0.63,60,928,560,0,0,-1,60,928,0,560,0.279,19.89,57.39,0.92,0.14,793,1,37,3
+12176,2023,9,11,16,0,22.9,1.57,0.031,0.63,55,892,465,0,0,-1.3,55,892,0,465,0.28,19.92,62.67,0.92,0.14,793,1,38,3.1
+12177,2023,9,11,16,30,22.1,1.57,0.031,0.63,51,842,365,0,0,-1.3,51,842,0,365,0.28,20.91,68.14,0.92,0.14,793,1,39,3.1
+12178,2023,9,11,17,0,21.4,1.56,0.031,0.63,45,769,261,0,0,-1.4,45,769,0,261,0.28,21.68,73.72,0.92,0.14,793,1,39,3.1
+12179,2023,9,11,17,30,19.4,1.56,0.031,0.63,37,652,157,0,0,-1.4,37,652,0,157,0.28,24.52,79.38,0.92,0.14,793,1,40,2.3
+12180,2023,9,11,18,0,17.4,1.57,0.031,0.63,26,449,65,0,0,-0.2,26,449,0,65,0.281,30.27,85.02,0.92,0.14,794,1,40,1.5
+12181,2023,9,11,18,30,16.4,1.57,0.031,0.63,7,76,6,0,0,-0.2,7,76,0,6,0.281,32.24,90.84,0.92,0.14,794,1,39,1.5
+12182,2023,9,11,19,0,15.3,1.59,0.031,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.282,34.84,96.47,0.92,0.14,794,1,39,1.5
+12183,2023,9,11,19,30,14.8,1.59,0.031,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.282,35.97,102.01,0.92,0.14,794,1,39,1.6
+12184,2023,9,11,20,0,14.3,1.61,0.032,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.283,37.28,107.4,0.93,0.14,794,1,40,1.7
+12185,2023,9,11,20,30,13.8,1.61,0.032,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.283,38.5,112.59,0.93,0.14,794,1,41,1.8
+12186,2023,9,11,21,0,13.4,1.62,0.033,0.63,0,0,0,0,0,0,0,0,0,0,0.283,39.83,117.5,0.93,0.14,794,1.1,43,1.8
+12187,2023,9,11,21,30,12.9,1.62,0.033,0.63,0,0,0,0,0,0,0,0,29,0,0.283,41.15,122.04,0.93,0.14,794,1.1,45,1.7
+12188,2023,9,11,22,0,12.4,1.63,0.034,0.63,0,0,0,0,0,0.1,0,0,0,0,0.284,42.71,126.12,0.93,0.14,794,1.1,47,1.6
+12189,2023,9,11,22,30,11.9,1.63,0.034,0.63,0,0,0,0,0,0.1,0,0,0,0,0.284,44.13,129.61,0.93,0.14,794,1.1,50,1.5
+12190,2023,9,11,23,0,11.5,1.64,0.035,0.63,0,0,0,0,0,0.1,0,0,0,0,0.284,45.32,132.36,0.93,0.14,794,1.1,53,1.4
+12191,2023,9,11,23,30,11.1,1.64,0.035,0.63,0,0,0,0,0,0.1,0,0,0,0,0.283,46.54,134.25,0.93,0.14,794,1.1,57,1.3
+12192,2023,9,12,0,0,10.7,1.65,0.037,0.63,0,0,0,0,0,0.1,0,0,0,0,0.283,47.77,135.15,0.93,0.14,794,1.2,61,1.3
+12193,2023,9,12,0,30,10.4,1.65,0.037,0.63,0,0,0,0,0,0.1,0,0,0,0,0.283,48.73,135,0.94,0.14,794,1.2,65,1.2
+12194,2023,9,12,1,0,10.1,1.66,0.039,0.63,0,0,0,0,0,0.1,0,0,0,0,0.282,49.92,133.82,0.94,0.14,794,1.2,68,1.1
+12195,2023,9,12,1,30,9.9,1.66,0.039,0.63,0,0,0,0,0,0.1,0,0,0,0,0.283,50.59,131.69,0.94,0.14,794,1.2,70,1.1
+12196,2023,9,12,2,0,9.7,1.66,0.041,0.63,0,0,0,0,0,0.2,0,0,0,0,0.283,51.68,128.72,0.94,0.14,794,1.2,72,1.1
+12197,2023,9,12,2,30,9.5,1.66,0.041,0.63,0,0,0,0,0,0.2,0,0,0,0,0.283,52.38,125.05,0.94,0.14,794,1.2,72,1
+12198,2023,9,12,3,0,9.3,1.66,0.042,0.63,0,0,0,0,0,0.4,0,0,0,0,0.283,53.58,120.83,0.94,0.14,794,1.2,71,1
+12199,2023,9,12,3,30,9.2,1.66,0.042,0.63,0,0,0,0,0,0.4,0,0,0,0,0.284,53.94,116.18,0.94,0.14,794,1.2,69,1
+12200,2023,9,12,4,0,9,1.67,0.042,0.63,0,0,0,0,0,0.5,0,0,0,0,0.284,55.31,111.19,0.94,0.14,794,1.2,67,1
+12201,2023,9,12,4,30,8.8,1.67,0.042,0.63,0,0,0,0,0,0.5,0,0,0,0,0.285,56.06,105.95,0.94,0.14,794,1.2,65,1
+12202,2023,9,12,5,0,8.5,1.68,0.041,0.63,0,0,0,0,0,0.7,0,0,0,0,0.285,57.97,100.52,0.94,0.14,794,1.2,63,1
+12203,2023,9,12,5,30,9.1,1.68,0.041,0.63,0,0,0,0,0,0.7,0,0,0,0,0.285,55.68,94.95,0.94,0.14,794,1.1,60,1.2
+12204,2023,9,12,6,0,9.7,1.68,0.039,0.63,12,148,15,0,0,1,12,148,0,15,0.285,54.53,89,0.94,0.14,794,1.1,57,1.3
+12205,2023,9,12,6,30,11.5,1.68,0.039,0.63,31,498,87,0,0,1,31,498,0,87,0.285,48.38,83.51,0.93,0.14,794,1.1,56,1.9
+12206,2023,9,12,7,0,13.3,1.67,0.037,0.63,41,677,183,0,0,1.1,41,677,0,183,0.285,43.49,77.87,0.93,0.14,794,1,54,2.5
+12207,2023,9,12,7,30,15.6,1.67,0.037,0.63,48,782,287,0,0,1.1,48,782,0,287,0.285,37.5,72.24,0.93,0.14,794,1,55,2.6
+12208,2023,9,12,8,0,17.8,1.63,0.036,0.63,54,850,390,0,0,-0.2,54,850,0,390,0.285,29.6,66.7,0.93,0.14,794,1,56,2.7
+12209,2023,9,12,8,30,19.2,1.63,0.036,0.63,59,897,490,0,0,-0.2,59,897,0,490,0.284,27.12,61.3,0.93,0.14,794,1,56,2.7
+12210,2023,9,12,9,0,20.7,1.59,0.036,0.63,63,931,582,0,0,-1.3,63,931,0,582,0.284,22.84,56.11,0.93,0.14,794,1,57,2.6
+12211,2023,9,12,9,30,21.6,1.59,0.036,0.63,66,955,664,0,0,-1.3,66,955,0,664,0.283,21.62,51.23,0.93,0.14,794,1,56,2.3
+12212,2023,9,12,10,0,22.4,1.56,0.037,0.63,69,974,736,0,0,-1.7,69,974,0,736,0.282,19.9,46.77,0.93,0.14,793,1,54,2
+12213,2023,9,12,10,30,23,1.56,0.037,0.63,70,988,794,0,0,-1.7,70,988,0,794,0.282,19.19,42.89,0.93,0.14,793,1,48,1.8
+12214,2023,9,12,11,0,23.6,1.6,0.035,0.63,71,998,838,0,0,-2.2,71,998,0,838,0.281,17.9,39.76,0.93,0.14,793,1,42,1.6
+12215,2023,9,12,11,30,23.9,1.6,0.035,0.63,71,1004,867,0,0,-2.2,71,1004,0,867,0.28,17.58,37.59,0.93,0.14,793,1,34,1.5
+12216,2023,9,12,12,0,24.2,1.59,0.035,0.63,73,1006,881,0,0,-2.5,73,1006,0,881,0.279,16.84,36.55,0.93,0.14,792,1,26,1.5
+12217,2023,9,12,12,30,24.4,1.59,0.035,0.63,72,1006,878,0,0,-2.5,72,1006,0,878,0.279,16.64,36.75,0.93,0.14,792,1,17,1.3
+12218,2023,9,12,13,0,24.5,1.6,0.035,0.63,72,1002,860,0,0,-2.8,72,1002,0,860,0.278,16.24,38.16,0.93,0.14,792,1,8,1.2
+12219,2023,9,12,13,30,24.5,1.6,0.035,0.63,70,995,825,0,0,-2.8,70,995,0,825,0.278,16.24,40.65,0.93,0.14,792,1,182,0.9
+12220,2023,9,12,14,0,24.6,1.61,0.036,0.63,69,983,776,0,0,-3,69,983,0,776,0.277,15.83,44.04,0.93,0.14,791,1,355,0.7
+12221,2023,9,12,14,30,24.4,1.61,0.036,0.63,68,968,714,0,0,-3,68,968,0,714,0.277,16.02,48.13,0.94,0.14,791,1,201,0.5
+12222,2023,9,12,15,0,24.3,1.6,0.037,0.63,66,947,639,0,0,-3.4,66,947,0,639,0.277,15.71,52.74,0.94,0.14,791,1,47,0.3
+12223,2023,9,12,15,30,24,1.6,0.037,0.63,62,919,553,0,0,-3.4,62,919,0,553,0.277,15.99,57.73,0.94,0.14,791,1,83,0.5
+12224,2023,9,12,16,0,23.6,1.58,0.038,0.63,58,880,458,0,0,-3.7,58,880,0,458,0.278,16.04,63,0.94,0.14,791,1,120,0.6
+12225,2023,9,12,16,30,23,1.58,0.038,0.63,53,828,357,0,0,-3.7,53,828,0,357,0.278,16.63,68.46,0.94,0.14,791,1,133,0.7
+12226,2023,9,12,17,0,22.3,1.58,0.038,0.63,47,751,253,0,0,-2.3,47,751,0,253,0.278,19.19,74.04,0.94,0.15,791,1,145,0.8
+12227,2023,9,12,17,30,20.8,1.58,0.038,0.63,39,628,151,0,0,-2.3,39,628,0,151,0.278,21.03,79.69,0.94,0.15,791,1,154,0.8
+12228,2023,9,12,18,0,19.3,1.59,0.039,0.63,26,415,60,0,0,-1.4,26,415,0,60,0.279,24.68,85.33,0.94,0.15,791,1,162,0.7
+12229,2023,9,12,18,30,18.5,1.59,0.039,0.63,6,64,5,0,0,-1.4,6,64,0,5,0.279,25.94,91.15,0.94,0.15,791,1.1,175,0.9
+12230,2023,9,12,19,0,17.6,1.59,0.04,0.63,0,0,0,0,0,-1.9,0,0,0,0,0.28,26.48,96.79,0.94,0.15,791,1.1,187,1
+12231,2023,9,12,19,30,16.8,1.59,0.04,0.63,0,0,0,0,0,-1.9,0,0,0,0,0.28,27.89,102.34,0.94,0.15,792,1.1,200,1.1
+12232,2023,9,12,20,0,16.1,1.58,0.043,0.63,0,0,0,0,0,-1.4,0,0,0,0,0.28,30.32,107.73,0.94,0.15,792,1.1,212,1.2
+12233,2023,9,12,20,30,15.4,1.58,0.043,0.63,0,0,0,0,0,-1.4,0,0,0,0,0.28,31.7,112.93,0.94,0.15,792,1.1,223,1.3
+12234,2023,9,12,21,0,14.7,1.58,0.046,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28,36.44,117.85,0.94,0.15,792,1.2,234,1.4
+12235,2023,9,12,21,30,14.2,1.58,0.046,0.63,0,0,0,0,0,-0.1,0,0,29,0,0.279,37.63,122.41,0.94,0.15,792,1.2,241,1.5
+12236,2023,9,12,22,0,13.6,1.58,0.047,0.63,0,0,0,0,0,1.6,0,0,0,0,0.279,43.95,126.5,0.94,0.15,792,1.2,248,1.5
+12237,2023,9,12,22,30,13,1.58,0.047,0.63,0,0,0,0,0,1.6,0,0,0,0,0.279,45.7,129.99,0.94,0.15,792,1.2,253,1.6
+12238,2023,9,12,23,0,12.4,1.57,0.049,0.63,0,0,0,0,0,3.3,0,0,0,0,0.279,53.96,132.75,0.94,0.15,792,1.3,258,1.6
+12239,2023,9,12,23,30,12,1.57,0.049,0.63,0,0,0,0,0,3.3,0,0,0,0,0.278,55.39,134.64,0.94,0.15,792,1.3,263,1.5
+12240,2023,9,13,0,0,11.6,1.56,0.052,0.63,0,0,0,0,0,4.8,0,0,0,0,0.278,62.88,135.54,0.94,0.15,792,1.3,267,1.4
+12241,2023,9,13,0,30,11.3,1.56,0.052,0.63,0,0,0,0,0,4.8,0,0,0,0,0.278,64.13,135.38,0.94,0.15,792,1.4,268,1.3
+12242,2023,9,13,1,0,11.1,1.54,0.057,0.63,0,0,0,0,0,5.6,0,0,0,0,0.278,68.99,134.18,0.95,0.15,792,1.4,269,1.2
+12243,2023,9,13,1,30,10.9,1.54,0.057,0.63,0,0,0,0,0,5.6,0,0,0,0,0.278,69.91,132.01,0.95,0.15,792,1.4,269,1.1
+12244,2023,9,13,2,0,10.8,1.55,0.06,0.63,0,0,0,0,0,6,0,0,0,0,0.278,72.31,129.02,0.95,0.15,792,1.4,269,1
+12245,2023,9,13,2,30,10.8,1.55,0.06,0.63,0,0,0,0,8,6,0,0,0,0,0.278,72.31,125.33,0.95,0.15,792,1.5,266,1
+12246,2023,9,13,3,0,10.9,1.55,0.063,0.63,0,0,0,0,3,6.1,0,0,0,0,0.278,72.44,121.09,0.95,0.15,792,1.5,264,0.9
+12247,2023,9,13,3,30,10.8,1.55,0.063,0.63,0,0,0,0,4,6.1,0,0,0,0,0.278,72.92,116.41,0.95,0.15,792,1.5,255,0.9
+12248,2023,9,13,4,0,10.8,1.55,0.067,0.63,0,0,0,0,8,6.2,0,0,0,0,0.278,73.39,111.41,0.95,0.15,792,1.5,246,0.8
+12249,2023,9,13,4,30,10.6,1.55,0.067,0.63,0,0,0,0,8,6.2,0,0,0,0,0.278,74.37,106.15,0.95,0.15,792,1.5,238,0.9
+12250,2023,9,13,5,0,10.4,1.56,0.072,0.63,0,0,0,0,4,6.4,0,0,0,0,0.278,76.38,100.71,0.95,0.15,792,1.6,230,0.9
+12251,2023,9,13,5,30,10.7,1.56,0.072,0.63,0,0,0,0,4,6.4,0,0,0,0,0.278,74.87,95.14,0.95,0.15,792,1.6,226,0.9
+12252,2023,9,13,6,0,11.1,1.56,0.076,0.63,11,92,12,4,4,6.9,4,0,64,4,0.278,75.12,89.16,0.96,0.15,793,1.6,222,1
+12253,2023,9,13,6,30,12.4,1.56,0.076,0.63,35,393,78,5,5,6.9,42,5,75,43,0.278,68.96,83.69,0.96,0.15,793,1.6,225,1.5
+12254,2023,9,13,7,0,13.7,1.57,0.079,0.63,50,575,169,0,5,6.9,73,18,0,77,0.278,63.56,78.05,0.96,0.15,793,1.7,228,1.9
+12255,2023,9,13,7,30,15.2,1.57,0.079,0.63,61,690,269,0,5,6.9,67,5,0,69,0.277,57.7,72.43,0.96,0.15,793,1.7,238,2.1
+12256,2023,9,13,8,0,16.8,1.59,0.079,0.63,69,766,370,0,5,5.7,28,0,0,28,0.277,47.97,66.89,0.96,0.15,793,1.7,249,2.2
+12257,2023,9,13,8,30,18.1,1.59,0.079,0.63,75,821,467,0,8,5.7,78,3,0,79,0.277,44.2,61.5,0.96,0.15,793,1.7,254,2.2
+12258,2023,9,13,9,0,19.4,1.6,0.077,0.63,80,861,557,0,8,4.7,59,1,0,60,0.276,38.02,56.33,0.95,0.15,793,1.7,259,2.1
+12259,2023,9,13,9,30,20.3,1.6,0.077,0.63,84,890,638,0,8,4.7,135,16,0,145,0.275,35.92,51.47,0.95,0.15,792,1.7,258,2
+12260,2023,9,13,10,0,21.3,1.6,0.075,0.63,86,912,708,0,8,4.2,298,212,0,442,0.275,32.51,47.04,0.95,0.15,792,1.7,256,1.9
+12261,2023,9,13,10,30,21.9,1.6,0.075,0.63,87,932,767,0,0,4.2,254,577,0,675,0.274,31.34,43.18,0.95,0.15,792,1.7,252,1.9
+12262,2023,9,13,11,0,22.6,1.66,0.063,0.63,85,949,811,0,0,3.8,85,949,0,811,0.274,29.3,40.09,0.95,0.15,792,1.7,248,1.9
+12263,2023,9,13,11,30,22.9,1.66,0.063,0.63,87,955,840,0,0,3.8,87,955,0,840,0.273,28.74,37.94,0.95,0.15,791,1.7,246,2
+12264,2023,9,13,12,0,23.3,1.63,0.064,0.63,87,958,853,0,0,3.6,99,934,0,846,0.273,27.61,36.93,0.95,0.15,791,1.7,244,2
+12265,2023,9,13,12,30,23.4,1.63,0.064,0.63,87,957,850,0,3,3.6,280,474,0,658,0.272,27.44,37.14,0.95,0.15,791,1.7,244,2.1
+12266,2023,9,13,13,0,23.5,1.6,0.065,0.63,86,952,831,0,3,3.4,337,305,0,576,0.272,26.94,38.55,0.95,0.15,791,1.7,245,2.1
+12267,2023,9,13,13,30,23.4,1.6,0.065,0.63,84,946,798,0,0,3.4,222,648,0,711,0.272,27.07,41.04,0.95,0.15,790,1.7,248,2.1
+12268,2023,9,13,14,0,23.3,1.58,0.06,0.63,82,937,751,0,8,3.2,229,479,14,571,0.272,26.97,44.42,0.95,0.15,790,1.7,250,2.2
+12269,2023,9,13,14,30,23.1,1.58,0.06,0.63,79,921,689,0,7,3.2,195,47,0,226,0.273,27.3,48.49,0.95,0.15,790,1.7,255,2.1
+12270,2023,9,13,15,0,22.8,1.57,0.059,0.63,75,899,615,0,6,3.1,29,0,0,29,0.273,27.55,53.09,0.95,0.15,790,1.7,259,2.1
+12271,2023,9,13,15,30,22.4,1.57,0.059,0.63,71,868,530,0,6,3.1,48,2,0,49,0.274,28.22,58.07,0.95,0.15,790,1.7,264,2.1
+12272,2023,9,13,16,0,21.9,1.56,0.061,0.63,67,825,437,0,6,3.1,56,65,0,85,0.274,29.04,63.33,0.95,0.15,790,1.7,269,2.1
+12273,2023,9,13,16,30,21.3,1.56,0.061,0.63,61,764,338,0,6,3.1,79,4,0,80,0.274,30.13,68.78,0.95,0.15,790,1.7,275,2
+12274,2023,9,13,17,0,20.7,1.55,0.065,0.63,54,675,236,0,6,3.4,45,3,0,46,0.274,31.9,74.36,0.95,0.15,790,1.7,281,1.9
+12275,2023,9,13,17,30,19.4,1.55,0.065,0.63,43,541,137,2,6,3.4,34,7,29,35,0.275,34.56,80,0.95,0.15,790,1.7,289,1.5
+12276,2023,9,13,18,0,18.2,1.53,0.067,0.63,27,316,51,7,6,4.6,31,10,100,32,0.275,40.67,85.64,0.95,0.15,790,1.8,296,1
+12277,2023,9,13,18,30,17.6,1.53,0.067,0.63,4,23,3,2,7,4.6,1,0,29,1,0.275,42.28,91.47,0.95,0.15,791,1.8,304,1.1
+12278,2023,9,13,19,0,17,1.54,0.066,0.63,0,0,0,0,8,4.6,0,0,0,0,0.275,43.83,97.11,0.95,0.15,791,1.8,312,1.3
+12279,2023,9,13,19,30,16.6,1.54,0.066,0.63,0,0,0,0,8,4.6,0,0,0,0,0.275,44.95,102.66,0.95,0.15,791,1.8,318,1.5
+12280,2023,9,13,20,0,16.2,1.56,0.064,0.63,0,0,0,0,7,4.7,0,0,0,0,0.276,46.42,108.07,0.95,0.15,791,1.8,324,1.7
+12281,2023,9,13,20,30,15.7,1.56,0.064,0.63,0,0,0,0,7,4.7,0,0,0,0,0.276,47.92,113.27,0.94,0.15,791,1.8,328,1.8
+12282,2023,9,13,21,0,15.2,1.58,0.061,0.63,0,0,0,0,8,4.8,0,0,0,0,0.277,49.93,118.2,0.94,0.15,792,1.8,333,1.9
+12283,2023,9,13,21,30,14.6,1.58,0.061,0.63,0,0,0,0,3,4.8,0,0,14,0,0.278,51.89,122.77,0.94,0.15,792,1.8,338,1.8
+12284,2023,9,13,22,0,14.1,1.58,0.057,0.63,0,0,0,0,4,4.8,0,0,0,0,0.279,53.59,126.87,0.94,0.15,792,1.8,342,1.7
+12285,2023,9,13,22,30,13.5,1.58,0.057,0.63,0,0,0,0,3,4.8,0,0,0,0,0.279,55.65,130.38,0.94,0.15,791,1.8,347,1.5
+12286,2023,9,13,23,0,13,1.57,0.056,0.63,0,0,0,0,3,4.8,0,0,0,0,0.28,57.57,133.15,0.94,0.15,791,1.7,352,1.3
+12287,2023,9,13,23,30,12.7,1.57,0.056,0.63,0,0,0,0,3,4.8,0,0,0,0,0.279,58.78,135.03,0.94,0.15,792,1.8,356,1.2
+12288,2023,9,14,0,0,12.3,1.53,0.062,0.63,0,0,0,0,4,4.9,0,0,0,0,0.279,60.64,135.92,0.94,0.15,792,1.8,360,1.1
+12289,2023,9,14,0,30,12.3,1.53,0.062,0.63,0,0,0,0,5,4.9,0,0,0,0,0.279,60.64,135.75,0.95,0.15,792,1.8,181,1
+12290,2023,9,14,1,0,12.2,1.47,0.071,0.63,0,0,0,0,3,5.2,0,0,0,0,0.279,62.22,134.53,0.95,0.15,792,1.8,2,1
+12291,2023,9,14,1,30,12.2,1.47,0.071,0.63,0,0,0,0,5,5.2,0,0,0,0,0.279,62.22,132.34,0.95,0.15,792,1.8,3,1
+12292,2023,9,14,2,0,12.2,1.45,0.077,0.63,0,0,0,0,4,5.8,0,0,0,0,0.279,64.72,129.32,0.95,0.15,792,1.8,4,1
+12293,2023,9,14,2,30,12,1.45,0.077,0.63,0,0,0,0,5,5.8,0,0,0,0,0.279,65.58,125.61,0.95,0.15,792,1.8,7,1.2
+12294,2023,9,14,3,0,11.9,1.44,0.081,0.63,0,0,0,0,4,6.3,0,0,0,0,0.278,68.53,121.34,0.96,0.15,792,1.9,10,1.4
+12295,2023,9,14,3,30,11.6,1.44,0.081,0.63,0,0,0,0,4,6.3,0,0,0,0,0.279,69.89,116.65,0.96,0.15,792,1.9,13,1.5
+12296,2023,9,14,4,0,11.4,1.45,0.082,0.63,0,0,0,0,7,6.7,0,0,0,0,0.279,73.07,111.63,0.96,0.15,792,1.9,16,1.7
+12297,2023,9,14,4,30,11.2,1.45,0.082,0.63,0,0,0,0,7,6.8,0,0,0,0,0.279,74.14,106.35,0.96,0.15,793,1.8,19,1.7
+12298,2023,9,14,5,0,10.9,1.45,0.082,0.63,0,0,0,0,7,7.2,0,0,0,0,0.28,77.67,100.9,0.95,0.15,793,1.8,22,1.8
+12299,2023,9,14,5,30,10.9,1.45,0.082,0.63,0,0,0,0,7,7.2,0,0,0,0,0.28,77.67,95.33,0.95,0.15,793,1.8,26,1.9
+12300,2023,9,14,6,0,10.9,1.46,0.081,0.63,10,80,11,4,7,7.5,4,0,57,4,0.28,79.64,89.33,0.95,0.15,793,1.8,30,2.1
+12301,2023,9,14,6,30,11.5,1.46,0.081,0.63,34,371,74,5,7,7.5,30,1,71,30,0.28,76.54,83.87,0.95,0.15,793,1.8,34,2.3
+12302,2023,9,14,7,0,12.1,1.48,0.08,0.63,50,562,165,0,7,7.5,36,1,0,36,0.28,73.62,78.23,0.95,0.15,794,1.8,37,2.5
+12303,2023,9,14,7,30,12.9,1.48,0.08,0.63,61,684,265,0,7,7.5,21,0,0,21,0.28,69.87,72.62,0.95,0.15,794,1.7,38,2.4
+12304,2023,9,14,8,0,13.8,1.51,0.074,0.63,67,767,366,0,7,6.8,40,1,0,40,0.28,62.71,67.09,0.95,0.15,794,1.7,39,2.3
+12305,2023,9,14,8,30,14.8,1.51,0.074,0.63,73,824,464,0,7,6.8,194,36,0,211,0.28,58.79,61.71,0.95,0.15,794,1.7,37,2.2
+12306,2023,9,14,9,0,15.8,1.52,0.07,0.63,78,866,555,0,7,6,239,88,0,287,0.28,52.17,56.56,0.94,0.15,794,1.6,34,2
+12307,2023,9,14,9,30,16.6,1.52,0.07,0.63,81,897,637,0,7,6,239,48,0,269,0.279,49.58,51.72,0.94,0.15,794,1.6,29,2.1
+12308,2023,9,14,10,0,17.4,1.5,0.067,0.63,84,920,708,0,7,5.3,212,11,0,219,0.279,44.81,47.31,0.94,0.15,794,1.5,25,2.1
+12309,2023,9,14,10,30,17.9,1.5,0.067,0.63,88,933,765,0,7,5.3,263,48,0,298,0.279,43.42,43.48,0.95,0.15,794,1.5,22,2.2
+12310,2023,9,14,11,0,18.3,1.4,0.076,0.63,92,940,808,0,8,4.6,190,38,0,219,0.279,40.49,40.41,0.95,0.15,794,1.5,18,2.3
+12311,2023,9,14,11,30,18.6,1.4,0.076,0.63,93,948,837,0,8,4.6,332,211,0,498,0.278,39.69,38.3,0.95,0.15,793,1.5,18,2.4
+12312,2023,9,14,12,0,19,1.4,0.075,0.63,93,952,850,0,3,4.1,312,556,0,754,0.278,37.24,37.31,0.95,0.15,793,1.5,18,2.5
+12313,2023,9,14,12,30,19.1,1.4,0.075,0.63,94,951,848,0,3,4.1,343,370,0,636,0.278,37.01,37.53,0.95,0.15,793,1.5,20,2.5
+12314,2023,9,14,13,0,19.2,1.41,0.074,0.63,92,948,829,0,0,3.6,149,812,0,780,0.278,35.65,38.95,0.95,0.15,793,1.5,23,2.6
+12315,2023,9,14,13,30,19.2,1.41,0.074,0.63,88,944,796,0,0,3.6,223,612,0,682,0.278,35.65,41.43,0.95,0.15,793,1.5,26,2.6
+12316,2023,9,14,14,0,19.3,1.47,0.064,0.63,83,938,749,0,8,3.2,260,423,0,560,0.278,34.5,44.79,0.95,0.15,793,1.4,30,2.6
+12317,2023,9,14,14,30,19.1,1.47,0.064,0.63,80,922,687,0,0,3.2,125,820,14,665,0.278,34.93,48.85,0.94,0.15,793,1.4,35,2.7
+12318,2023,9,14,15,0,19,1.5,0.063,0.63,77,900,613,0,7,3,216,471,21,497,0.278,34.55,53.44,0.94,0.15,793,1.4,39,2.8
+12319,2023,9,14,15,30,18.6,1.5,0.063,0.63,72,870,528,0,7,3,179,536,0,460,0.279,35.42,58.41,0.94,0.15,793,1.4,43,3
+12320,2023,9,14,16,0,18.2,1.52,0.061,0.63,67,830,435,0,8,2.9,147,463,7,352,0.279,36.12,63.66,0.94,0.15,793,1.4,48,3.1
+12321,2023,9,14,16,30,17.6,1.52,0.061,0.63,59,773,335,0,7,2.9,76,242,0,162,0.28,37.5,69.1,0.94,0.15,793,1.4,49,3.3
+12322,2023,9,14,17,0,16.9,1.56,0.057,0.63,51,691,234,0,6,3.1,82,60,0,98,0.281,39.77,74.68,0.94,0.14,793,1.4,51,3.4
+12323,2023,9,14,17,30,15.7,1.56,0.057,0.63,40,561,134,2,6,3.1,48,78,29,61,0.281,42.98,80.32,0.94,0.14,794,1.4,52,2.9
+12324,2023,9,14,18,0,14.5,1.58,0.052,0.63,25,337,49,7,6,3.9,19,0,100,19,0.282,48.83,85.94,0.94,0.14,794,1.4,54,2.4
+12325,2023,9,14,18,30,13.7,1.58,0.052,0.63,3,25,2,2,7,3.9,1,0,29,1,0.283,51.42,91.79,0.94,0.14,794,1.4,56,2.5
+12326,2023,9,14,19,0,13,1.58,0.047,0.63,0,0,0,0,7,4.5,0,0,0,0,0.284,56.19,97.43,0.94,0.14,795,1.4,57,2.6
+12327,2023,9,14,19,30,12.5,1.58,0.047,0.63,0,0,0,0,7,4.5,0,0,0,0,0.285,58.05,102.99,0.94,0.14,795,1.5,56,2.7
+12328,2023,9,14,20,0,12,1.57,0.044,0.63,0,0,0,0,8,5,0,0,0,0,0.285,62.38,108.4,0.94,0.14,795,1.5,55,2.7
+12329,2023,9,14,20,30,11.4,1.57,0.044,0.63,0,0,0,0,0,5,0,0,0,0,0.286,64.89,113.61,0.94,0.14,795,1.5,51,2.6
+12330,2023,9,14,21,0,10.9,1.55,0.043,0.63,0,0,0,0,0,5.4,0,0,0,0,0.287,68.94,118.55,0.94,0.14,795,1.5,48,2.4
+12331,2023,9,14,21,30,10.4,1.55,0.043,0.63,0,0,0,0,0,5.4,0,0,14,0,0.287,71.27,123.13,0.94,0.14,795,1.5,44,2.2
+12332,2023,9,14,22,0,9.9,1.54,0.043,0.63,0,0,0,0,0,5.7,0,0,0,0,0.288,74.92,127.25,0.94,0.14,795,1.5,41,2
+12333,2023,9,14,22,30,9.5,1.54,0.043,0.63,0,0,0,0,0,5.7,0,0,0,0,0.288,76.95,130.76,0.94,0.14,795,1.5,37,1.9
+12334,2023,9,14,23,0,9.1,1.53,0.043,0.63,0,0,0,0,0,5.8,0,0,0,0,0.289,79.95,133.54,0.94,0.14,795,1.6,34,1.7
+12335,2023,9,14,23,30,8.8,1.53,0.043,0.63,0,0,0,0,0,5.8,0,0,0,0,0.289,81.58,135.43,0.94,0.14,795,1.6,30,1.7
+12336,2023,9,15,0,0,8.5,1.52,0.042,0.63,0,0,0,0,0,5.9,0,0,0,0,0.29,83.85,136.31,0.94,0.14,795,1.6,27,1.6
+12337,2023,9,15,0,30,8.2,1.52,0.042,0.63,0,0,0,0,0,5.9,0,0,0,0,0.291,85.57,136.12,0.94,0.14,795,1.5,23,1.7
+12338,2023,9,15,1,0,8,1.49,0.041,0.63,0,0,0,0,0,6,0,0,0,0,0.291,87.07,134.88,0.94,0.14,795,1.5,20,1.8
+12339,2023,9,15,1,30,7.7,1.49,0.041,0.63,0,0,0,0,0,6,0,0,0,0,0.292,88.86,132.67,0.94,0.14,795,1.5,18,1.9
+12340,2023,9,15,2,0,7.5,1.47,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.293,89.87,129.62,0.94,0.14,794,1.5,16,2
+12341,2023,9,15,2,30,7.3,1.47,0.04,0.63,0,0,0,0,0,6,0,0,0,0,0.294,91.22,125.88,0.94,0.14,795,1.5,16,2.1
+12342,2023,9,15,3,0,7.1,1.44,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.295,91.98,121.6,0.93,0.14,795,1.4,16,2.1
+12343,2023,9,15,3,30,6.9,1.44,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.295,93.24,116.88,0.93,0.14,795,1.4,17,2.1
+12344,2023,9,15,4,0,6.7,1.42,0.04,0.63,0,0,0,0,0,5.8,0,0,0,0,0.296,93.8,111.84,0.93,0.14,795,1.4,19,2.1
+12345,2023,9,15,4,30,6.4,1.42,0.04,0.63,0,0,0,0,0,5.8,0,0,0,0,0.296,95.75,106.56,0.94,0.14,795,1.4,20,2.1
+12346,2023,9,15,5,0,6.2,1.4,0.041,0.63,0,0,0,0,0,5.7,0,0,0,0,0.297,96.29,101.1,0.94,0.14,795,1.4,21,2.1
+12347,2023,9,15,5,30,6.6,1.4,0.041,0.63,0,0,0,0,0,5.7,0,0,0,0,0.297,93.68,95.51,0.94,0.14,795,1.3,22,2.4
+12348,2023,9,15,6,0,7,1.39,0.042,0.63,10,110,11,0,0,5.6,10,110,0,11,0.296,90.63,89.48,0.94,0.14,796,1.3,23,2.8
+12349,2023,9,15,6,30,8.7,1.39,0.042,0.63,30,453,77,0,0,5.6,30,453,0,77,0.296,80.75,84.05,0.94,0.14,796,1.3,27,3.3
+12350,2023,9,15,7,0,10.3,1.37,0.041,0.63,41,642,170,0,0,5.3,41,642,0,170,0.296,71.04,78.41,0.94,0.14,796,1.3,31,3.9
+12351,2023,9,15,7,30,12,1.37,0.041,0.63,49,755,272,0,0,5.3,49,755,0,272,0.295,63.48,72.8,0.93,0.14,796,1.3,35,4.2
+12352,2023,9,15,8,0,13.7,1.34,0.039,0.63,55,829,375,0,0,4.5,55,829,0,375,0.294,53.67,67.28,0.93,0.14,796,1.2,39,4.5
+12353,2023,9,15,8,30,14.9,1.34,0.039,0.63,60,879,474,0,0,4.5,60,879,0,474,0.293,49.68,61.92,0.93,0.14,796,1.2,40,4.5
+12354,2023,9,15,9,0,16.2,1.31,0.037,0.63,63,916,565,0,0,3.6,63,916,0,565,0.291,43.06,56.78,0.93,0.14,797,1.2,42,4.4
+12355,2023,9,15,9,30,17.3,1.31,0.037,0.63,66,944,648,0,0,3.6,66,944,0,648,0.291,40.12,51.96,0.93,0.14,796,1.2,41,4.1
+12356,2023,9,15,10,0,18.3,1.28,0.036,0.63,68,966,720,0,0,2.7,68,966,0,720,0.29,35.38,47.58,0.93,0.14,796,1.1,41,3.9
+12357,2023,9,15,10,30,19.1,1.28,0.036,0.63,68,984,778,0,0,2.7,68,984,0,778,0.289,33.66,43.78,0.92,0.14,796,1.1,38,3.7
+12358,2023,9,15,11,0,19.9,1.18,0.025,0.63,65,1000,823,0,0,1.9,65,1000,0,823,0.289,30.3,40.74,0.91,0.14,796,1.1,35,3.5
+12359,2023,9,15,11,30,20.5,1.18,0.025,0.63,65,1007,851,0,0,1.9,65,1007,0,851,0.288,29.2,38.66,0.91,0.14,796,1.1,31,3.4
+12360,2023,9,15,12,0,21.1,1.15,0.024,0.63,65,1011,865,0,0,1.2,65,1011,0,865,0.288,26.77,37.69,0.91,0.14,795,1,28,3.3
+12361,2023,9,15,12,30,21.4,1.15,0.024,0.63,65,1011,863,0,0,1.2,65,1011,0,863,0.288,26.28,37.92,0.91,0.14,795,1,26,3.3
+12362,2023,9,15,13,0,21.8,1.13,0.024,0.63,64,1008,844,0,0,0.6,64,1008,0,844,0.288,24.49,39.34,0.91,0.14,795,1,23,3.3
+12363,2023,9,15,13,30,21.9,1.13,0.024,0.63,65,1000,810,0,0,0.6,65,1000,0,810,0.288,24.34,41.82,0.91,0.14,795,1,23,3.4
+12364,2023,9,15,14,0,22,1.14,0.025,0.63,63,990,761,0,0,0,97,899,0,731,0.288,23.13,45.17,0.91,0.14,794,1,22,3.4
+12365,2023,9,15,14,30,21.9,1.14,0.025,0.63,61,976,698,0,0,0,124,793,0,642,0.288,23.27,49.22,0.91,0.14,794,1,23,3.5
+12366,2023,9,15,15,0,21.8,1.14,0.024,0.63,59,957,624,0,0,-0.6,68,927,0,616,0.288,22.51,53.79,0.91,0.14,794,1,24,3.5
+12367,2023,9,15,15,30,21.4,1.14,0.024,0.63,56,930,538,0,0,-0.6,64,903,0,532,0.289,23.06,58.75,0.91,0.14,794,1,26,3.5
+12368,2023,9,15,16,0,20.9,1.15,0.024,0.63,51,893,443,0,0,-0.9,51,893,0,443,0.289,23.18,63.99,0.91,0.14,794,0.9,28,3.5
+12369,2023,9,15,16,30,20.2,1.15,0.024,0.63,47,841,342,0,0,-0.9,47,841,0,342,0.289,24.19,69.43,0.91,0.14,794,0.9,30,3.2
+12370,2023,9,15,17,0,19.4,1.17,0.024,0.63,41,762,238,0,0,-0.9,41,762,0,238,0.289,25.39,75,0.91,0.14,794,0.9,31,3
+12371,2023,9,15,17,30,17.2,1.17,0.024,0.63,33,632,136,0,0,-0.9,33,632,0,136,0.289,29.17,80.63,0.91,0.14,795,0.9,31,2.1
+12372,2023,9,15,18,0,15.1,1.19,0.024,0.63,22,398,48,0,0,0.5,22,398,0,48,0.289,36.89,86.25,0.91,0.14,795,0.9,32,1.2
+12373,2023,9,15,18,30,14.2,1.19,0.024,0.63,3,32,2,0,0,0.5,3,32,0,2,0.289,39.09,92.11,0.91,0.14,795,0.9,31,1.2
+12374,2023,9,15,19,0,13.3,1.22,0.024,0.63,0,0,0,0,0,0.4,0,0,0,0,0.289,41.21,97.76,0.91,0.14,796,0.9,29,1.2
+12375,2023,9,15,19,30,12.8,1.22,0.024,0.63,0,0,0,0,0,0.4,0,0,0,0,0.289,42.58,103.32,0.91,0.14,796,0.9,28,1.2
+12376,2023,9,15,20,0,12.4,1.24,0.025,0.63,0,0,0,0,0,0.3,0,0,0,0,0.289,43.33,108.73,0.91,0.14,796,0.9,27,1.2
+12377,2023,9,15,20,30,12,1.24,0.025,0.63,0,0,0,0,0,0.3,0,0,0,0,0.289,44.48,113.95,0.91,0.14,796,0.9,27,1.2
+12378,2023,9,15,21,0,11.7,1.26,0.025,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,45.1,118.9,0.91,0.14,796,0.9,26,1.2
+12379,2023,9,15,21,30,11.4,1.26,0.025,0.63,0,0,0,0,0,0.2,0,0,14,0,0.289,46,123.5,0.91,0.14,796,0.9,26,1.2
+12380,2023,9,15,22,0,11,1.27,0.026,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,47.15,127.62,0.91,0.14,796,0.9,26,1.2
+12381,2023,9,15,22,30,10.8,1.27,0.026,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,47.78,131.15,0.91,0.14,796,0.9,27,1.1
+12382,2023,9,15,23,0,10.5,1.29,0.026,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,48.95,133.93,0.91,0.14,796,0.9,27,1.1
+12383,2023,9,15,23,30,10.2,1.29,0.026,0.63,0,0,0,0,0,0.2,0,0,0,0,0.29,49.94,135.82,0.91,0.14,796,0.9,27,1.1
+12384,2023,9,16,0,0,9.9,1.3,0.026,0.63,0,0,0,0,0,0.4,0,0,0,0,0.29,51.49,136.7,0.91,0.14,796,0.9,27,1
+12385,2023,9,16,0,30,9.6,1.3,0.026,0.63,0,0,0,0,0,0.4,0,0,0,0,0.291,52.53,136.5,0.91,0.14,796,0.9,26,1
+12386,2023,9,16,1,0,9.3,1.31,0.026,0.63,0,0,0,0,0,0.5,0,0,0,0,0.291,54.31,135.23,0.91,0.14,796,0.9,25,0.9
+12387,2023,9,16,1,30,9,1.31,0.026,0.63,0,0,0,0,0,0.5,0,0,0,0,0.292,55.42,133,0.91,0.14,796,0.9,26,0.9
+12388,2023,9,16,2,0,8.7,1.32,0.026,0.63,0,0,0,0,0,0.7,0,0,0,0,0.292,57.33,129.92,0.91,0.14,796,0.8,27,0.9
+12389,2023,9,16,2,30,8.4,1.32,0.026,0.63,0,0,0,0,0,0.7,0,0,0,0,0.293,58.5,126.16,0.91,0.14,796,0.8,32,0.8
+12390,2023,9,16,3,0,8.1,1.32,0.026,0.63,0,0,0,0,0,0.9,0,0,0,0,0.293,60.63,121.85,0.91,0.14,796,0.8,37,0.8
+12391,2023,9,16,3,30,7.8,1.32,0.026,0.63,0,0,0,0,0,1,0,0,0,0,0.293,61.96,117.11,0.91,0.14,797,0.8,42,0.8
+12392,2023,9,16,4,0,7.5,1.32,0.026,0.63,0,0,0,0,0,1.2,0,0,29,0,0.294,64.33,112.06,0.91,0.14,797,0.8,47,0.7
+12393,2023,9,16,4,30,7.2,1.32,0.026,0.63,0,0,0,0,0,1.2,0,0,0,0,0.294,65.66,106.76,0.91,0.14,797,0.8,50,0.7
+12394,2023,9,16,5,0,6.9,1.33,0.026,0.63,0,0,0,0,0,1.5,0,0,0,0,0.293,68.27,101.29,0.91,0.14,797,0.8,54,0.7
+12395,2023,9,16,5,30,7.2,1.33,0.026,0.63,0,0,0,0,0,1.5,0,0,0,0,0.293,66.88,95.7,0.91,0.14,797,0.8,57,0.6
+12396,2023,9,16,6,0,7.4,1.33,0.026,0.63,10,133,11,0,0,1.7,10,133,0,11,0.293,67.35,89.65,0.91,0.14,798,0.7,61,0.5
+12397,2023,9,16,6,30,9.2,1.33,0.026,0.63,28,512,79,0,0,1.7,28,512,0,79,0.293,59.63,84.23,0.91,0.14,798,0.7,68,0.7
+12398,2023,9,16,7,0,11,1.33,0.025,0.63,37,698,175,0,0,2,37,698,0,175,0.293,53.8,78.6,0.91,0.14,798,0.7,76,0.8
+12399,2023,9,16,7,30,13.3,1.33,0.025,0.63,45,805,280,0,0,2,45,805,0,280,0.292,46.26,72.99,0.9,0.14,798,0.7,67,0.8
+12400,2023,9,16,8,0,15.5,1.32,0.025,0.63,50,873,384,0,0,0.4,50,873,0,384,0.292,35.8,67.48,0.9,0.14,798,0.7,58,0.7
+12401,2023,9,16,8,30,17.1,1.32,0.025,0.63,53,919,483,0,0,0.4,53,919,0,483,0.291,32.34,62.13,0.9,0.14,798,0.7,57,0.7
+12402,2023,9,16,9,0,18.6,1.32,0.025,0.63,57,953,576,0,0,-1.8,57,953,0,576,0.29,25.04,57.01,0.9,0.14,798,0.7,55,0.6
+12403,2023,9,16,9,30,19.5,1.32,0.025,0.63,59,977,658,0,0,-1.8,59,977,0,658,0.289,23.68,52.21,0.9,0.14,798,0.7,85,0.5
+12404,2023,9,16,10,0,20.5,1.33,0.024,0.63,61,997,730,0,0,-3,61,997,0,730,0.288,20.38,47.85,0.9,0.14,798,0.7,115,0.3
+12405,2023,9,16,10,30,21.2,1.33,0.024,0.63,63,1012,790,0,0,-3,63,1012,0,790,0.287,19.52,44.08,0.9,0.14,798,0.7,148,0.4
+12406,2023,9,16,11,0,22,1.31,0.023,0.63,63,1023,834,0,0,-3.8,63,1023,0,834,0.286,17.44,41.07,0.9,0.14,798,0.6,182,0.5
+12407,2023,9,16,11,30,22.5,1.31,0.023,0.63,64,1030,864,0,0,-3.9,64,1030,0,864,0.285,16.9,39.02,0.9,0.14,797,0.6,192,0.6
+12408,2023,9,16,12,0,23.1,1.31,0.023,0.63,64,1033,877,0,0,-4.6,64,1033,0,877,0.284,15.39,38.07,0.9,0.14,797,0.6,202,0.7
+12409,2023,9,16,12,30,23.5,1.31,0.023,0.63,64,1032,874,0,0,-4.6,64,1032,0,874,0.283,15.02,38.32,0.9,0.14,797,0.6,208,0.7
+12410,2023,9,16,13,0,23.9,1.32,0.023,0.63,64,1029,855,0,0,-5.4,64,1029,0,855,0.282,13.86,39.74,0.9,0.14,796,0.6,214,0.8
+12411,2023,9,16,13,30,24,1.32,0.023,0.63,62,1023,820,0,0,-5.4,62,1023,0,820,0.282,13.77,42.21,0.9,0.14,796,0.6,216,0.9
+12412,2023,9,16,14,0,24.2,1.3,0.022,0.63,61,1013,770,0,0,-6,61,1013,0,770,0.282,12.94,45.55,0.9,0.14,796,0.6,218,0.9
+12413,2023,9,16,14,30,24.1,1.3,0.022,0.63,58,999,706,0,0,-6,58,999,0,706,0.282,13.01,49.59,0.9,0.14,796,0.6,217,1
+12414,2023,9,16,15,0,24,1.31,0.021,0.63,56,980,630,0,0,-6.6,56,980,0,630,0.282,12.52,54.14,0.9,0.14,795,0.6,216,1.1
+12415,2023,9,16,15,30,23.5,1.31,0.021,0.63,54,954,544,0,0,-6.6,54,954,0,544,0.282,12.9,59.09,0.9,0.14,795,0.6,215,1.2
+12416,2023,9,16,16,0,23.1,1.32,0.021,0.63,50,919,448,0,0,-7,50,919,0,448,0.283,12.8,64.32,0.9,0.14,795,0.6,215,1.2
+12417,2023,9,16,16,30,22.2,1.32,0.021,0.63,45,866,345,0,0,-7,45,866,0,345,0.283,13.51,69.75,0.9,0.14,795,0.6,214,1.1
+12418,2023,9,16,17,0,21.3,1.32,0.021,0.63,40,789,240,0,0,-4.8,40,789,0,240,0.284,16.96,75.32,0.9,0.12,795,0.5,214,1
+12419,2023,9,16,17,30,19.6,1.32,0.021,0.63,32,662,136,0,0,-4.8,32,662,0,136,0.284,18.82,80.95,0.9,0.12,795,0.5,215,0.8
+12420,2023,9,16,18,0,17.9,1.33,0.021,0.63,22,388,45,0,0,-3.6,22,388,0,45,0.285,22.88,86.56,0.9,0.12,796,0.5,216,0.6
+12421,2023,9,16,18,30,17.3,1.33,0.021,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.285,23.75,92.43,0.9,0.12,796,0.5,212,0.6
+12422,2023,9,16,19,0,16.8,1.32,0.021,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.286,22.75,98.08,0.9,0.12,796,0.5,209,0.6
+12423,2023,9,16,19,30,16.3,1.32,0.021,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.286,23.48,103.64,0.9,0.12,796,0.5,204,0.5
+12424,2023,9,16,20,0,15.9,1.32,0.02,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.287,23.68,109.07,0.9,0.12,796,0.5,198,0.5
+12425,2023,9,16,20,30,15.4,1.32,0.02,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.287,24.45,114.3,0.9,0.12,796,0.5,194,0.5
+12426,2023,9,16,21,0,14.9,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.288,24.99,119.26,0.9,0.12,796,0.5,190,0.6
+12427,2023,9,16,21,30,14.4,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,14,0,0.288,25.8,123.86,0.9,0.12,796,0.5,188,0.6
+12428,2023,9,16,22,0,14,1.32,0.02,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.288,26.17,128,0.9,0.12,796,0.5,187,0.7
+12429,2023,9,16,22,30,13.4,1.32,0.02,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.288,27.21,131.54,0.9,0.12,796,0.5,189,0.8
+12430,2023,9,16,23,0,12.7,1.32,0.02,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.288,28.65,134.33,0.9,0.12,796,0.5,191,0.9
+12431,2023,9,16,23,30,12.2,1.32,0.02,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.288,29.6,136.22,0.9,0.12,796,0.5,196,0.9
+12432,2023,9,17,0,0,11.6,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.287,30.97,137.09,0.9,0.12,796,0.6,201,1
+12433,2023,9,17,0,30,11,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.287,32.22,136.87,0.9,0.12,796,0.6,206,1
+12434,2023,9,17,1,0,10.5,1.33,0.02,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.286,33.42,135.59,0.9,0.12,796,0.6,211,1.1
+12435,2023,9,17,1,30,10.2,1.33,0.02,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.286,34.09,133.33,0.91,0.12,796,0.6,213,1.1
+12436,2023,9,17,2,0,9.9,1.34,0.021,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.286,34.89,130.22,0.91,0.12,796,0.6,215,1.1
+12437,2023,9,17,2,30,9.8,1.34,0.021,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.286,35.12,126.43,0.91,0.12,796,0.7,212,1.1
+12438,2023,9,17,3,0,9.6,1.34,0.021,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.286,36.06,122.1,0.91,0.12,796,0.7,210,1
+12439,2023,9,17,3,30,9.4,1.34,0.021,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.286,36.55,117.35,0.91,0.12,796,0.7,205,1
+12440,2023,9,17,4,0,9.2,1.36,0.022,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.287,37.63,112.27,0.92,0.12,796,0.8,201,1
+12441,2023,9,17,4,30,9,1.36,0.022,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.287,38.14,106.96,0.92,0.12,796,0.8,197,1.1
+12442,2023,9,17,5,0,8.7,1.37,0.023,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.288,39.47,101.48,0.92,0.12,796,0.8,194,1.1
+12443,2023,9,17,5,30,9,1.37,0.023,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.288,38.69,95.89,0.92,0.12,796,0.9,192,1.1
+12444,2023,9,17,6,0,9.2,1.38,0.024,0.63,10,128,10,0,0,-3.6,10,128,0,10,0.288,40.31,89.81,0.92,0.12,796,0.9,190,1.1
+12445,2023,9,17,6,30,11.2,1.38,0.024,0.63,26,499,75,0,0,-3.6,26,499,0,75,0.289,35.28,84.41,0.92,0.12,796,0.9,190,1.5
+12446,2023,9,17,7,0,13.2,1.4,0.024,0.63,36,687,170,0,0,-3.2,36,687,0,170,0.29,31.8,78.78,0.92,0.12,796,0.9,190,1.9
+12447,2023,9,17,7,30,15.4,1.4,0.024,0.63,43,792,272,0,0,-3.2,43,792,0,272,0.29,27.59,73.18,0.92,0.12,796,1,202,2.3
+12448,2023,9,17,8,0,17.6,1.42,0.024,0.63,48,858,374,0,0,-1.6,48,858,0,374,0.29,27.05,67.68,0.92,0.12,796,1,213,2.7
+12449,2023,9,17,8,30,19.1,1.42,0.024,0.63,53,905,473,0,0,-1.6,53,905,0,473,0.29,24.63,62.34,0.92,0.12,796,1,217,3.1
+12450,2023,9,17,9,0,20.7,1.46,0.023,0.63,56,939,564,0,0,0.7,56,939,0,564,0.29,26.47,57.24,0.92,0.12,797,1,221,3.6
+12451,2023,9,17,9,30,21.5,1.46,0.023,0.63,58,962,644,0,0,0.7,58,962,0,644,0.29,25.17,52.46,0.92,0.12,796,1.1,221,3.7
+12452,2023,9,17,10,0,22.2,1.48,0.023,0.63,61,979,714,0,0,1.4,61,979,0,714,0.29,25.24,48.13,0.92,0.12,796,1.1,222,3.7
+12453,2023,9,17,10,30,22.8,1.48,0.023,0.63,60,993,770,0,0,1.4,60,993,0,770,0.29,24.34,44.39,0.92,0.12,796,1.1,223,3.8
+12454,2023,9,17,11,0,23.4,1.55,0.019,0.63,59,1005,813,0,0,1.4,59,1005,0,813,0.29,23.54,41.41,0.92,0.12,796,1.1,223,3.8
+12455,2023,9,17,11,30,23.8,1.55,0.019,0.63,60,1010,841,0,0,1.4,60,1010,0,841,0.29,22.98,39.38,0.92,0.12,796,1.1,224,3.7
+12456,2023,9,17,12,0,24.2,1.58,0.019,0.63,60,1012,853,0,0,1.3,60,1012,0,853,0.29,22.26,38.45,0.92,0.12,795,1.1,225,3.7
+12457,2023,9,17,12,30,24.4,1.58,0.019,0.63,61,1010,849,0,0,1.3,61,1010,0,849,0.29,22,38.71,0.93,0.12,795,1.2,226,3.6
+12458,2023,9,17,13,0,24.7,1.61,0.02,0.63,60,1006,829,0,0,1.1,60,1006,0,829,0.29,21.33,40.13,0.93,0.12,795,1.2,228,3.6
+12459,2023,9,17,13,30,24.7,1.61,0.02,0.63,61,997,795,0,0,1.1,61,997,0,795,0.29,21.3,42.6,0.93,0.12,794,1.2,229,3.5
+12460,2023,9,17,14,0,24.8,1.5,0.025,0.63,62,983,746,0,0,0.9,62,983,0,746,0.29,20.85,45.93,0.93,0.12,794,1.2,231,3.5
+12461,2023,9,17,14,30,24.6,1.5,0.025,0.63,61,967,683,0,0,0.9,61,967,0,683,0.29,21.1,49.95,0.93,0.12,794,1.2,231,3.4
+12462,2023,9,17,15,0,24.4,1.5,0.026,0.63,58,945,607,0,0,0.7,58,945,0,607,0.29,21.03,54.5,0.93,0.12,794,1.2,232,3.3
+12463,2023,9,17,15,30,23.9,1.5,0.026,0.63,56,914,521,0,0,0.7,56,914,0,521,0.29,21.64,59.43,0.94,0.12,793,1.2,232,3.2
+12464,2023,9,17,16,0,23.5,1.5,0.029,0.63,53,872,426,0,0,0.5,53,872,0,426,0.29,21.96,64.66,0.94,0.12,793,1.2,231,3.2
+12465,2023,9,17,16,30,22.6,1.5,0.029,0.63,48,812,325,0,0,0.5,48,812,0,325,0.29,23.18,70.08,0.94,0.12,793,1.2,230,2.8
+12466,2023,9,17,17,0,21.7,1.51,0.033,0.63,43,722,222,0,0,0.9,43,722,0,222,0.29,25.22,75.64,0.95,0.12,793,1.3,228,2.4
+12467,2023,9,17,17,30,19.6,1.51,0.033,0.63,34,577,122,0,0,0.9,34,577,0,122,0.291,28.69,81.27,0.95,0.12,793,1.3,226,1.7
+12468,2023,9,17,18,0,17.5,1.52,0.038,0.63,21,299,37,0,0,2,21,299,0,37,0.291,35.44,86.87,0.95,0.12,793,1.3,224,1.1
+12469,2023,9,17,18,30,17,1.52,0.038,0.63,0,0,0,0,0,2.1,0,0,0,0,0.291,36.62,92.75,0.96,0.12,794,1.4,222,1.1
+12470,2023,9,17,19,0,16.4,1.53,0.045,0.63,0,0,0,0,0,1.7,0,0,0,0,0.291,37.03,98.4,0.96,0.12,794,1.4,220,1.1
+12471,2023,9,17,19,30,16,1.53,0.045,0.63,0,0,0,0,0,1.7,0,0,0,0,0.291,37.98,103.97,0.96,0.12,794,1.4,219,1.1
+12472,2023,9,17,20,0,15.7,1.52,0.052,0.63,0,0,0,0,3,1.6,0,0,0,0,0.291,38.38,109.4,0.97,0.12,794,1.5,218,1.2
+12473,2023,9,17,20,30,15.3,1.52,0.052,0.63,0,0,0,0,3,1.6,0,0,0,0,0.292,39.37,114.64,0.97,0.12,794,1.5,219,1.2
+12474,2023,9,17,21,0,15,1.52,0.057,0.63,0,0,0,0,5,1.5,0,0,0,0,0.292,39.89,119.61,0.97,0.12,794,1.5,220,1.2
+12475,2023,9,17,21,30,14.8,1.52,0.057,0.63,0,0,0,0,3,1.5,0,0,0,0,0.293,40.41,124.23,0.97,0.12,794,1.5,222,1.2
+12476,2023,9,17,22,0,14.5,1.53,0.057,0.63,0,0,0,0,5,1.4,0,0,0,0,0.293,40.97,128.38,0.97,0.12,794,1.5,224,1.2
+12477,2023,9,17,22,30,14.3,1.53,0.057,0.63,0,0,0,0,5,1.4,0,0,0,0,0.293,41.5,131.92,0.97,0.12,794,1.5,226,1.3
+12478,2023,9,17,23,0,14,1.54,0.054,0.63,0,0,0,0,5,1.3,0,0,0,0,0.294,42.07,134.72,0.96,0.12,793,1.5,228,1.3
+12479,2023,9,17,23,30,13.8,1.54,0.054,0.63,0,0,0,0,5,1.3,0,0,0,0,0.294,42.62,136.61,0.96,0.12,793,1.4,229,1.3
+12480,2023,9,18,0,0,13.5,1.54,0.05,0.63,0,0,0,0,3,1.3,0,0,0,0,0.294,43.34,137.48,0.96,0.12,793,1.4,230,1.3
+12481,2023,9,18,0,30,13.2,1.54,0.05,0.63,0,0,0,0,0,1.3,0,0,0,0,0.294,44.19,137.25,0.96,0.12,793,1.4,232,1.2
+12482,2023,9,18,1,0,13,1.55,0.047,0.63,0,0,0,0,0,1.3,0,0,0,0,0.295,44.76,135.94,0.96,0.12,793,1.4,233,1.2
+12483,2023,9,18,1,30,12.8,1.55,0.047,0.63,0,0,0,0,0,1.3,0,0,0,0,0.295,45.35,133.65,0.96,0.12,793,1.4,235,1.1
+12484,2023,9,18,2,0,12.6,1.56,0.045,0.63,0,0,0,0,0,1.2,0,0,0,0,0.295,45.89,130.52,0.96,0.12,793,1.4,237,1
+12485,2023,9,18,2,30,12.6,1.56,0.045,0.63,0,0,0,0,3,1.2,0,0,0,0,0.296,45.89,126.71,0.96,0.12,793,1.4,238,0.9
+12486,2023,9,18,3,0,12.5,1.56,0.044,0.63,0,0,0,0,0,1.2,0,0,0,0,0.296,45.98,122.35,0.96,0.12,793,1.4,240,0.9
+12487,2023,9,18,3,30,12.4,1.56,0.044,0.63,0,0,0,0,0,1.2,0,0,0,0,0.297,46.28,117.58,0.96,0.12,793,1.4,237,0.8
+12488,2023,9,18,4,0,12.4,1.56,0.043,0.63,0,0,0,0,0,1.1,0,0,0,0,0.297,45.97,112.49,0.96,0.12,793,1.4,235,0.7
+12489,2023,9,18,4,30,12.3,1.56,0.043,0.63,0,0,0,0,3,1.1,0,0,0,0,0.298,46.28,107.17,0.96,0.12,793,1.4,229,0.6
+12490,2023,9,18,5,0,12.3,1.55,0.042,0.63,0,0,0,0,3,1,0,0,0,0,0.298,45.98,101.68,0.95,0.12,793,1.3,223,0.5
+12491,2023,9,18,5,30,12.4,1.55,0.042,0.63,0,0,0,0,5,1,0,0,0,0,0.298,45.68,96.07,0.95,0.12,793,1.3,208,0.5
+12492,2023,9,18,6,0,12.5,1.55,0.042,0.63,7,74,7,4,3,1,2,0,57,2,0.298,45.51,89.98,0.95,0.12,793,1.3,193,0.5
+12493,2023,9,18,6,30,13.9,1.55,0.042,0.63,28,430,69,6,5,1,23,4,93,23,0.299,41.55,84.59,0.95,0.12,793,1.3,190,0.9
+12494,2023,9,18,7,0,15.2,1.54,0.043,0.63,41,624,160,2,7,1.1,50,25,21,55,0.299,38.28,78.97,0.96,0.12,793,1.4,187,1.2
+12495,2023,9,18,7,30,16.9,1.54,0.043,0.63,49,736,260,0,7,1.1,56,14,0,60,0.299,34.35,73.38,0.96,0.12,793,1.4,197,1.5
+12496,2023,9,18,8,0,18.7,1.53,0.047,0.63,57,806,360,0,7,1.3,101,91,4,135,0.298,31.13,67.89,0.96,0.12,793,1.5,207,1.8
+12497,2023,9,18,8,30,19.9,1.53,0.047,0.63,63,853,456,2,8,1.3,183,155,32,254,0.297,28.9,62.56,0.96,0.12,793,1.5,217,1.9
+12498,2023,9,18,9,0,21.1,1.53,0.053,0.63,69,884,544,0,8,1.9,245,139,7,320,0.296,28.07,57.47,0.97,0.12,793,1.6,226,2.1
+12499,2023,9,18,9,30,21.8,1.53,0.053,0.63,73,910,624,1,7,1.9,262,101,11,323,0.294,26.9,52.71,0.97,0.12,793,1.6,230,2.2
+12500,2023,9,18,10,0,22.5,1.55,0.055,0.63,76,928,692,2,8,2.8,266,159,36,372,0.293,27.46,48.4,0.97,0.12,793,1.7,234,2.3
+12501,2023,9,18,10,30,22.9,1.55,0.055,0.63,76,946,749,0,0,2.8,171,703,0,671,0.292,26.78,44.69,0.97,0.12,792,1.7,240,2.4
+12502,2023,9,18,11,0,23.3,1.63,0.045,0.63,75,962,793,0,7,3.7,295,404,0,596,0.29,27.77,41.74,0.96,0.12,792,1.7,246,2.4
+12503,2023,9,18,11,30,23.4,1.63,0.045,0.63,76,967,820,0,7,3.7,212,641,0,705,0.289,27.61,39.74,0.96,0.12,792,1.7,250,2.6
+12504,2023,9,18,12,0,23.5,1.64,0.048,0.63,77,968,831,0,8,4.4,198,676,0,725,0.288,28.82,38.83,0.96,0.12,791,1.7,254,2.7
+12505,2023,9,18,12,30,23.2,1.64,0.048,0.63,80,961,826,0,6,4.3,196,90,0,266,0.286,29.35,39.1,0.97,0.12,791,1.8,246,3
+12506,2023,9,18,13,0,22.9,1.59,0.057,0.63,82,950,804,0,7,5.3,52,0,0,52,0.284,31.84,40.53,0.97,0.12,791,1.9,239,3.2
+12507,2023,9,18,13,30,22.1,1.59,0.057,0.63,84,932,766,0,7,5.3,236,59,0,279,0.283,33.42,42.99,0.97,0.12,791,1.9,232,3.5
+12508,2023,9,18,14,0,21.3,1.53,0.079,0.63,88,906,714,0,7,6.1,280,36,0,305,0.282,37.33,46.31,0.98,0.12,791,2,226,3.7
+12509,2023,9,18,14,30,20.6,1.53,0.079,0.63,86,887,652,0,7,6.1,285,215,7,422,0.282,38.96,50.32,0.97,0.12,791,2,221,3.7
+12510,2023,9,18,15,0,19.9,1.57,0.079,0.63,82,862,578,0,6,6.4,257,176,7,358,0.282,41.49,54.85,0.97,0.12,791,1.9,217,3.7
+12511,2023,9,18,15,30,19.4,1.57,0.079,0.63,75,837,496,0,7,6.4,136,477,25,376,0.283,42.8,59.78,0.97,0.12,791,1.9,208,3.6
+12512,2023,9,18,16,0,19,1.63,0.064,0.63,67,803,406,0,7,6.5,101,632,54,368,0.283,44.01,64.99,0.97,0.12,790,1.8,198,3.6
+12513,2023,9,18,16,30,18.4,1.63,0.064,0.63,60,738,307,0,7,6.5,108,433,21,253,0.283,45.75,70.41,0.97,0.12,791,1.8,188,3.5
+12514,2023,9,18,17,0,17.8,1.63,0.066,0.63,51,642,207,0,7,6.9,68,483,46,185,0.284,48.86,75.96,0.97,0.12,791,1.8,177,3.5
+12515,2023,9,18,17,30,16.8,1.63,0.066,0.63,40,479,110,4,7,6.9,57,246,79,93,0.285,52.03,81.59,0.97,0.12,791,1.8,169,3.2
+12516,2023,9,18,18,0,15.8,1.58,0.081,0.63,21,204,31,7,7,7.9,21,3,100,21,0.285,59.2,87.18,0.98,0.12,791,1.9,161,2.8
+12517,2023,9,18,18,30,15.2,1.58,0.081,0.63,0,0,0,1,7,7.8,0,0,14,0,0.286,61.51,93.07,0.97,0.12,791,1.9,158,2.9
+12518,2023,9,18,19,0,14.5,1.59,0.081,0.63,0,0,0,0,6,8.6,0,0,0,0,0.287,67.84,98.72,0.97,0.12,791,1.9,154,2.9
+12519,2023,9,18,19,30,14.1,1.59,0.081,0.63,0,0,0,0,6,8.6,0,0,0,0,0.288,69.61,104.3,0.97,0.12,791,1.8,152,2.7
+12520,2023,9,18,20,0,13.6,1.63,0.073,0.63,0,0,0,0,7,8.9,0,0,0,0,0.288,73.39,109.74,0.97,0.12,791,1.8,150,2.5
+12521,2023,9,18,20,30,13.2,1.63,0.073,0.63,0,0,0,0,7,8.9,0,0,0,0,0.288,75.32,114.99,0.97,0.12,791,1.8,151,2
+12522,2023,9,18,21,0,12.7,1.62,0.07,0.63,0,0,0,0,7,8.9,0,0,0,0,0.289,77.57,119.97,0.97,0.12,791,1.8,153,1.5
+12523,2023,9,18,21,30,12.3,1.62,0.07,0.63,0,0,0,0,7,8.9,0,0,0,0,0.289,79.63,124.59,0.97,0.12,791,1.7,162,1.2
+12524,2023,9,18,22,0,11.9,1.61,0.069,0.63,0,0,0,0,6,8.7,0,0,0,0,0.289,80.73,128.75,0.96,0.12,791,1.7,170,1
+12525,2023,9,18,22,30,11.6,1.61,0.069,0.63,0,0,0,0,7,8.7,0,0,0,0,0.289,82.34,132.31,0.96,0.12,791,1.7,184,1
+12526,2023,9,18,23,0,11.2,1.61,0.069,0.63,0,0,0,0,7,8.5,0,0,0,0,0.289,83.57,135.12,0.96,0.12,791,1.7,197,1
+12527,2023,9,18,23,30,10.9,1.61,0.069,0.63,0,0,0,0,7,8.5,0,0,0,0,0.289,85.25,137.01,0.96,0.12,791,1.7,200,1
+12528,2023,9,19,0,0,10.5,1.62,0.068,0.63,0,0,0,0,7,8.4,0,0,0,0,0.29,86.77,137.87,0.96,0.12,791,1.7,203,1.1
+12529,2023,9,19,0,30,10.2,1.62,0.068,0.63,0,0,0,0,8,8.4,0,0,0,0,0.29,88.52,137.62,0.96,0.12,791,1.7,202,1.2
+12530,2023,9,19,1,0,9.8,1.63,0.067,0.63,0,0,0,0,8,8.3,0,0,0,0,0.29,90.32,136.3,0.96,0.12,791,1.7,201,1.2
+12531,2023,9,19,1,30,9.5,1.63,0.067,0.63,0,0,0,0,0,8.3,0,0,0,0,0.29,92.15,133.98,0.96,0.12,791,1.6,201,1.2
+12532,2023,9,19,2,0,9.1,1.63,0.065,0.63,0,0,0,0,0,8.3,0,0,0,0,0.291,94.67,130.82,0.96,0.12,791,1.6,202,1.2
+12533,2023,9,19,2,30,8.9,1.63,0.065,0.63,0,0,0,0,7,8.3,0,0,0,0,0.291,95.96,126.98,0.96,0.12,791,1.6,204,1.2
+12534,2023,9,19,3,0,8.6,1.62,0.064,0.63,0,0,0,0,8,8.3,0,0,0,0,0.291,98.19,122.6,0.96,0.12,791,1.6,206,1.1
+12535,2023,9,19,3,30,8.3,1.62,0.064,0.63,0,0,0,0,0,8.3,0,0,0,0,0.292,100,117.81,0.96,0.12,791,1.6,207,1.1
+12536,2023,9,19,4,0,8.1,1.6,0.064,0.63,0,0,0,0,0,8.1,0,0,0,0,0.293,100,112.71,0.96,0.12,791,1.5,208,1.1
+12537,2023,9,19,4,30,7.9,1.6,0.064,0.63,0,0,0,0,0,7.9,0,0,0,0,0.293,100,107.37,0.96,0.12,791,1.5,208,1
+12538,2023,9,19,5,0,7.8,1.57,0.064,0.63,0,0,0,0,0,7.8,0,0,0,0,0.294,100,101.87,0.96,0.12,791,1.5,208,1
+12539,2023,9,19,5,30,8.1,1.57,0.064,0.63,0,0,0,0,0,8.1,0,0,0,0,0.294,100,96.26,0.96,0.12,791,1.5,210,1.1
+12540,2023,9,19,6,0,8.4,1.55,0.066,0.63,6,56,6,0,0,8.3,6,56,0,6,0.294,99.09,90.13,0.96,0.12,791,1.5,213,1.3
+12541,2023,9,19,6,30,9.8,1.55,0.066,0.63,30,369,64,0,0,8.3,30,369,0,64,0.294,90.19,84.77,0.96,0.12,791,1.5,213,1.6
+12542,2023,9,19,7,0,11.3,1.54,0.066,0.63,45,573,153,0,0,8.2,45,573,0,153,0.295,81.13,79.16,0.96,0.12,791,1.5,213,1.9
+12543,2023,9,19,7,30,13.2,1.54,0.066,0.63,56,694,252,0,0,8.2,56,694,0,252,0.294,71.62,73.57,0.96,0.12,791,1.5,230,1.8
+12544,2023,9,19,8,0,15.1,1.52,0.067,0.63,64,773,352,0,0,7.2,68,752,0,349,0.294,59.26,68.09,0.95,0.12,791,1.5,247,1.8
+12545,2023,9,19,8,30,17,1.52,0.067,0.63,70,826,448,0,5,7.2,196,146,0,263,0.293,52.51,62.77,0.95,0.12,791,1.6,263,1.8
+12546,2023,9,19,9,0,18.9,1.5,0.07,0.63,75,864,537,0,3,4.3,280,134,0,352,0.293,38.15,57.7,0.95,0.12,791,1.6,279,1.8
+12547,2023,9,19,9,30,19.8,1.5,0.07,0.63,81,892,618,3,5,4.3,246,36,43,268,0.292,36.08,52.97,0.96,0.12,791,1.6,277,1.7
+12548,2023,9,19,10,0,20.7,1.48,0.073,0.63,84,912,686,2,8,3.1,289,235,29,444,0.291,31.4,48.68,0.96,0.12,791,1.6,275,1.6
+12549,2023,9,19,10,30,21.2,1.48,0.073,0.63,86,929,743,0,8,3.1,186,691,0,675,0.29,30.45,45,0.96,0.12,791,1.6,270,1.5
+12550,2023,9,19,11,0,21.7,1.54,0.067,0.63,86,943,786,0,8,2.7,205,649,0,687,0.289,28.69,42.08,0.96,0.12,791,1.6,264,1.5
+12551,2023,9,19,11,30,22,1.54,0.067,0.63,87,949,813,0,8,2.7,237,618,0,710,0.289,28.17,40.1,0.96,0.12,791,1.6,261,1.6
+12552,2023,9,19,12,0,22.2,1.53,0.069,0.63,88,951,825,0,0,2.5,159,827,0,800,0.288,27.3,39.22,0.96,0.12,790,1.6,258,1.6
+12553,2023,9,19,12,30,22.2,1.53,0.069,0.63,87,951,821,0,8,2.5,233,540,0,650,0.287,27.3,39.5,0.96,0.12,790,1.6,256,1.6
+12554,2023,9,19,13,0,22.3,1.55,0.067,0.63,87,947,802,0,7,2.3,282,165,0,407,0.286,26.89,40.93,0.96,0.12,790,1.6,255,1.6
+12555,2023,9,19,13,30,22.3,1.55,0.067,0.63,83,942,768,0,6,2.3,78,4,0,81,0.286,26.89,43.38,0.96,0.12,790,1.6,251,1.7
+12556,2023,9,19,14,0,22.3,1.61,0.059,0.63,79,934,720,0,6,2.3,33,0,0,33,0.286,26.73,46.69,0.95,0.12,790,1.6,248,1.7
+12557,2023,9,19,14,30,22.2,1.61,0.059,0.63,77,916,657,0,6,2.2,74,4,0,77,0.286,26.85,50.69,0.96,0.12,789,1.6,246,1.7
+12558,2023,9,19,15,0,22.1,1.61,0.059,0.63,73,892,582,0,7,2.1,119,202,14,234,0.286,26.75,55.21,0.96,0.12,789,1.6,243,1.8
+12559,2023,9,19,15,30,21.7,1.61,0.059,0.63,70,855,496,0,8,2.1,161,563,21,441,0.286,27.41,60.12,0.96,0.12,789,1.6,247,1.9
+12560,2023,9,19,16,0,21.2,1.56,0.067,0.63,67,803,402,0,8,2.1,116,625,43,377,0.286,28.35,65.33,0.96,0.12,789,1.6,251,2.1
+12561,2023,9,19,16,30,20.4,1.56,0.067,0.63,62,726,301,0,7,2.1,73,688,75,300,0.287,29.81,70.74,0.97,0.12,790,1.6,260,2
+12562,2023,9,19,17,0,19.5,1.49,0.083,0.63,54,611,199,0,7,3.1,51,603,64,194,0.287,33.65,76.28,0.97,0.12,790,1.7,269,1.9
+12563,2023,9,19,17,30,18.2,1.49,0.083,0.63,42,440,104,4,7,3.1,53,207,68,82,0.288,36.49,81.9,0.97,0.12,790,1.7,279,1.4
+12564,2023,9,19,18,0,16.8,1.45,0.098,0.63,19,157,26,6,6,4.1,16,1,86,16,0.288,42.77,87.48,0.97,0.12,790,1.7,290,0.9
+12565,2023,9,19,18,30,16.2,1.45,0.098,0.63,0,0,0,0,6,4.1,0,0,0,0,0.288,44.42,93.39,0.97,0.12,790,1.7,307,0.7
+12566,2023,9,19,19,0,15.5,1.53,0.092,0.63,0,0,0,0,6,4.4,0,0,0,0,0.288,47.5,99.05,0.97,0.12,791,1.7,324,0.5
+12567,2023,9,19,19,30,15.1,1.53,0.092,0.63,0,0,0,0,7,4.4,0,0,0,0,0.288,48.73,104.63,0.96,0.12,791,1.6,190,0.5
+12568,2023,9,19,20,0,14.7,1.65,0.067,0.63,0,0,0,0,7,4.2,0,0,0,0,0.288,49.29,110.07,0.96,0.12,791,1.6,55,0.6
+12569,2023,9,19,20,30,14.2,1.65,0.067,0.63,0,0,0,0,3,4.2,0,0,0,0,0.288,50.84,115.33,0.96,0.12,790,1.5,71,0.7
+12570,2023,9,19,21,0,13.6,1.67,0.056,0.63,0,0,0,0,3,4,0,0,0,0,0.288,52.3,120.32,0.96,0.12,790,1.5,87,0.9
+12571,2023,9,19,21,30,13.3,1.67,0.056,0.63,0,0,0,0,3,4,0,0,0,0,0.289,53.33,124.96,0.96,0.12,790,1.5,96,0.9
+12572,2023,9,19,22,0,12.9,1.61,0.056,0.63,0,0,0,0,0,3.9,0,0,0,0,0.289,54.3,129.13,0.96,0.12,790,1.5,104,0.9
+12573,2023,9,19,22,30,12.7,1.61,0.056,0.63,0,0,0,0,0,3.9,0,0,0,0,0.289,55.02,132.7,0.96,0.12,790,1.5,114,0.9
+12574,2023,9,19,23,0,12.5,1.54,0.059,0.63,0,0,0,0,0,3.8,0,0,0,0,0.288,55.24,135.51,0.96,0.12,790,1.5,124,0.9
+12575,2023,9,19,23,30,12.2,1.54,0.059,0.63,0,0,0,0,0,3.8,0,0,0,0,0.288,56.34,137.41,0.96,0.12,790,1.5,137,0.9
+12576,2023,9,20,0,0,11.8,1.51,0.055,0.63,0,0,0,0,0,3.6,0,0,0,0,0.288,57.11,138.26,0.96,0.12,790,1.5,150,0.9
+12577,2023,9,20,0,30,11.6,1.51,0.055,0.63,0,0,0,0,0,3.6,0,0,0,0,0.287,57.87,138,0.96,0.12,790,1.4,167,0.8
+12578,2023,9,20,1,0,11.4,1.46,0.054,0.63,0,0,0,0,0,3.3,0,0,0,0,0.287,57.69,136.65,0.96,0.12,790,1.4,184,0.7
+12579,2023,9,20,1,30,11.3,1.46,0.054,0.63,0,0,0,0,5,3.3,0,0,0,0,0.287,58.07,134.31,0.96,0.12,790,1.4,198,0.7
+12580,2023,9,20,2,0,11.1,1.42,0.056,0.63,0,0,0,0,4,3.1,0,0,0,0,0.287,57.79,131.12,0.96,0.12,789,1.4,213,0.7
+12581,2023,9,20,2,30,11,1.42,0.056,0.63,0,0,0,0,5,3.1,0,0,0,0,0.288,58.18,127.26,0.96,0.12,789,1.4,216,0.6
+12582,2023,9,20,3,0,10.9,1.43,0.052,0.63,0,0,0,0,5,2.7,0,0,0,0,0.289,57.01,122.85,0.95,0.12,789,1.3,219,0.6
+12583,2023,9,20,3,30,10.6,1.43,0.052,0.63,0,0,0,0,0,2.7,0,0,0,0,0.29,58.15,118.04,0.95,0.12,789,1.3,209,0.7
+12584,2023,9,20,4,0,10.4,1.45,0.047,0.63,0,0,0,0,0,2.3,0,0,0,0,0.291,57.11,112.92,0.95,0.12,789,1.2,200,0.8
+12585,2023,9,20,4,30,10.1,1.45,0.047,0.63,0,0,0,0,0,2.3,0,0,0,0,0.292,58.27,107.57,0.95,0.12,789,1.2,196,0.9
+12586,2023,9,20,5,0,9.7,1.45,0.044,0.63,0,0,0,0,0,1.8,0,0,0,0,0.292,57.74,102.06,0.95,0.12,789,1.2,192,1
+12587,2023,9,20,5,30,9.8,1.45,0.044,0.63,0,0,0,0,5,1.8,0,0,0,0,0.293,57.35,96.45,0.95,0.12,789,1.2,188,1.2
+12588,2023,9,20,6,0,9.8,1.44,0.042,0.63,6,68,6,1,0,1.4,6,60,11,6,0.293,56.03,90.3,0.94,0.12,789,1.1,184,1.3
+12589,2023,9,20,6,30,11.4,1.44,0.042,0.63,27,421,64,2,0,1.4,31,258,36,54,0.294,50.38,84.95,0.94,0.12,789,1.1,182,2
+12590,2023,9,20,7,0,13,1.42,0.04,0.63,39,631,156,0,0,1.2,42,612,0,155,0.295,44.47,79.34,0.94,0.12,789,1.1,180,2.8
+12591,2023,9,20,7,30,15.1,1.42,0.04,0.63,48,752,258,0,0,1.2,48,752,0,258,0.295,38.83,73.76,0.94,0.12,789,1.1,185,3.4
+12592,2023,9,20,8,0,17.1,1.38,0.038,0.63,54,830,361,0,0,-1,54,830,0,361,0.295,29.24,68.29,0.94,0.12,789,1.1,190,4.1
+12593,2023,9,20,8,30,18.6,1.38,0.038,0.63,58,883,459,0,0,-1,58,883,0,459,0.294,26.62,62.99,0.94,0.12,789,1,197,4.5
+12594,2023,9,20,9,0,20.1,1.34,0.036,0.63,62,921,551,0,0,-3,62,921,0,551,0.294,20.93,57.94,0.94,0.12,789,1,203,4.9
+12595,2023,9,20,9,30,21,1.34,0.036,0.63,65,950,634,0,0,-3,65,950,0,634,0.293,19.81,53.22,0.94,0.12,789,1,208,5
+12596,2023,9,20,10,0,21.9,1.29,0.034,0.63,67,972,705,0,0,-3.2,67,972,0,705,0.293,18.36,48.96,0.94,0.12,789,0.9,212,5.2
+12597,2023,9,20,10,30,22.6,1.29,0.034,0.63,67,990,763,0,0,-3.2,67,990,0,763,0.292,17.6,45.31,0.93,0.12,789,0.9,213,5.3
+12598,2023,9,20,11,0,23.2,1.26,0.026,0.63,65,1005,807,0,0,-3.4,65,1005,0,807,0.291,16.78,42.41,0.93,0.12,788,0.9,213,5.5
+12599,2023,9,20,11,30,23.7,1.26,0.026,0.63,65,1011,834,0,0,-3.4,120,875,0,786,0.291,16.28,40.46,0.93,0.12,788,0.9,213,5.5
+12600,2023,9,20,12,0,24.2,1.23,0.026,0.63,65,1013,846,0,0,-3.8,193,718,0,746,0.29,15.31,39.6,0.93,0.12,788,0.9,212,5.5
+12601,2023,9,20,12,30,24.4,1.23,0.026,0.63,65,1014,843,0,0,-3.8,134,847,0,784,0.289,15.11,39.89,0.93,0.12,787,0.9,211,5.4
+12602,2023,9,20,13,0,24.7,1.21,0.024,0.63,64,1012,824,0,0,-4.4,184,756,0,752,0.288,14.16,41.32,0.93,0.12,787,0.9,210,5.4
+12603,2023,9,20,13,30,24.7,1.21,0.024,0.63,63,1005,789,0,8,-4.4,199,718,0,717,0.288,14.16,43.77,0.93,0.12,787,0.9,210,5.5
+12604,2023,9,20,14,0,24.7,1.17,0.024,0.63,62,994,739,0,0,-5,119,870,0,712,0.288,13.54,47.07,0.94,0.12,786,0.9,209,5.6
+12605,2023,9,20,14,30,24.4,1.17,0.024,0.63,60,979,675,0,7,-5,222,504,0,539,0.288,13.78,51.06,0.94,0.12,786,0.9,210,5.7
+12606,2023,9,20,15,0,24.1,1.14,0.023,0.63,57,958,599,0,7,-5.5,169,528,0,468,0.288,13.61,55.57,0.94,0.12,786,0.9,210,5.8
+12607,2023,9,20,15,30,23.5,1.14,0.023,0.63,54,929,512,0,7,-5.5,157,580,7,443,0.288,14.1,60.47,0.94,0.12,786,0.9,210,5.8
+12608,2023,9,20,16,0,22.9,1.11,0.023,0.63,50,888,416,0,7,-5.6,200,168,0,269,0.289,14.44,65.66,0.94,0.12,786,0.9,210,5.8
+12609,2023,9,20,16,30,22,1.11,0.023,0.63,45,829,314,0,7,-5.6,111,280,11,202,0.289,15.25,71.07,0.94,0.12,786,0.9,210,5.3
+12610,2023,9,20,17,0,21.2,1.11,0.024,0.63,39,738,210,0,7,-5.3,88,291,11,155,0.289,16.41,76.61,0.94,0.12,786,0.9,210,4.8
+12611,2023,9,20,17,30,19.6,1.11,0.024,0.63,31,584,110,4,7,-5.3,52,230,57,83,0.289,18.11,82.22,0.94,0.12,786,0.9,209,3.9
+12612,2023,9,20,18,0,18.1,1.13,0.026,0.63,18,260,28,6,8,-4.6,18,5,86,18,0.289,21,87.79,0.94,0.12,786,0.9,207,3.1
+12613,2023,9,20,18,30,17.5,1.13,0.026,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.289,21.81,93.71,0.94,0.12,786,0.9,206,3.1
+12614,2023,9,20,19,0,16.9,1.15,0.029,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.289,22.79,99.37,0.94,0.12,787,0.9,204,3
+12615,2023,9,20,19,30,16.6,1.15,0.029,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.29,23.22,104.96,0.95,0.12,787,0.9,202,3.2
+12616,2023,9,20,20,0,16.4,1.13,0.034,0.63,0,0,0,0,3,-4.6,0,0,0,0,0.29,23.38,110.41,0.95,0.12,787,1,199,3.3
+12617,2023,9,20,20,30,16.3,1.13,0.034,0.63,0,0,0,0,8,-4.6,0,0,0,0,0.29,23.53,115.67,0.95,0.12,787,1,196,3.8
+12618,2023,9,20,21,0,16.3,1.12,0.039,0.63,0,0,0,0,8,-4.6,0,0,0,0,0.29,23.5,120.68,0.95,0.12,787,1,192,4.2
+12619,2023,9,20,21,30,16.2,1.12,0.039,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.29,23.65,125.33,0.95,0.12,787,1,190,4.5
+12620,2023,9,20,22,0,16,1.16,0.043,0.63,0,0,0,0,0,-4,0,0,0,0,0.29,25.01,129.51,0.95,0.12,787,1.1,187,4.8
+12621,2023,9,20,22,30,15.6,1.16,0.043,0.63,0,0,0,0,0,-4,0,0,0,0,0.289,25.66,133.09,0.95,0.12,787,1.1,184,4.6
+12622,2023,9,20,23,0,15.1,1.22,0.047,0.63,0,0,0,0,0,-3,0,0,0,0,0.289,28.59,135.91,0.95,0.12,787,1.1,182,4.4
+12623,2023,9,20,23,30,14.6,1.22,0.047,0.63,0,0,0,0,0,-3,0,0,0,0,0.29,29.53,137.81,0.95,0.12,787,1.1,179,3.9
+12624,2023,9,21,0,0,14.1,1.28,0.053,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.29,32.4,138.65,0.95,0.12,787,1.2,177,3.5
+12625,2023,9,21,0,30,13.5,1.28,0.053,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.29,33.68,138.38,0.95,0.12,787,1.2,176,3.1
+12626,2023,9,21,1,0,12.8,1.33,0.06,0.63,0,0,0,0,0,-1.7,0,0,0,0,0.29,36.51,137,0.95,0.12,787,1.2,174,2.7
+12627,2023,9,21,1,30,12.1,1.33,0.06,0.63,0,0,0,0,0,-1.7,0,0,0,0,0.289,38.22,134.64,0.94,0.12,787,1.1,175,2.4
+12628,2023,9,21,2,0,11.5,1.37,0.057,0.63,0,0,0,0,8,-1.4,0,0,0,0,0.289,40.75,131.42,0.94,0.12,787,1.1,176,2.2
+12629,2023,9,21,2,30,10.7,1.37,0.057,0.63,0,0,0,0,0,-1.4,0,0,0,0,0.289,42.96,127.53,0.93,0.12,787,1.1,177,2.1
+12630,2023,9,21,3,0,9.9,1.34,0.047,0.63,0,0,0,0,3,-1,0,0,0,0,0.289,46.81,123.1,0.92,0.12,787,1,177,2
+12631,2023,9,21,3,30,9.4,1.34,0.047,0.63,0,0,0,0,0,-1,0,0,0,0,0.289,48.4,118.27,0.92,0.12,787,1,178,2
+12632,2023,9,21,4,0,8.9,1.23,0.043,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.29,51.75,113.14,0.92,0.12,787,1,179,2
+12633,2023,9,21,4,30,8.7,1.23,0.043,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.29,52.45,107.78,0.92,0.12,787,1,183,2.1
+12634,2023,9,21,5,0,8.4,1.13,0.044,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.291,54.05,102.26,0.92,0.12,787,1,187,2.1
+12635,2023,9,21,5,30,8.6,1.13,0.044,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.291,53.32,96.64,0.92,0.12,787,1,188,2.2
+12636,2023,9,21,6,0,8.8,1.06,0.047,0.63,7,57,6,0,0,-0.3,7,57,0,6,0.291,52.84,90.96,0.92,0.12,788,1,189,2.2
+12637,2023,9,21,6,30,10.4,1.06,0.047,0.63,28,388,61,0,0,-0.3,28,388,0,61,0.291,47.47,85.13,0.92,0.12,788,1,189,2.9
+12638,2023,9,21,7,0,12,1,0.049,0.63,41,603,151,0,0,-0.3,41,603,0,151,0.291,42.6,79.53,0.92,0.12,788,1,188,3.5
+12639,2023,9,21,7,30,14,1,0.049,0.63,51,727,252,0,0,-0.3,59,679,0,247,0.291,37.39,73.96,0.93,0.12,788,1,192,4.3
+12640,2023,9,21,8,0,16,0.96,0.051,0.63,59,805,354,0,0,-0.9,59,805,0,354,0.291,31.57,68.5,0.93,0.12,788,1,196,5.1
+12641,2023,9,21,8,30,17.3,0.96,0.051,0.63,66,857,452,0,0,-0.9,66,857,0,452,0.291,29.08,63.21,0.93,0.12,788,1,197,5.7
+12642,2023,9,21,9,0,18.6,0.92,0.055,0.63,71,893,542,0,0,-0.8,71,893,0,542,0.291,26.95,58.17,0.93,0.12,788,1,198,6.3
+12643,2023,9,21,9,30,19.3,0.92,0.055,0.63,75,919,622,0,0,-0.8,126,740,0,566,0.291,25.8,53.48,0.93,0.12,788,1.1,198,6.6
+12644,2023,9,21,10,0,20,0.89,0.057,0.63,79,939,692,0,3,-0.7,318,195,0,445,0.29,24.95,49.25,0.93,0.12,788,1.1,198,6.8
+12645,2023,9,21,10,30,20.6,0.89,0.057,0.63,80,956,749,0,0,-0.7,166,765,0,701,0.29,24.05,45.62,0.92,0.12,788,1.1,198,6.8
+12646,2023,9,21,11,0,21.1,0.66,0.05,0.63,80,970,792,0,0,-0.9,196,728,0,731,0.289,22.98,42.75,0.92,0.12,788,1,198,6.8
+12647,2023,9,21,11,30,21.6,0.66,0.05,0.63,80,979,821,0,0,-0.9,80,979,0,821,0.289,22.29,40.83,0.92,0.12,788,1,198,6.8
+12648,2023,9,21,12,0,22.1,0.67,0.047,0.63,79,984,833,0,0,-1.4,79,984,0,833,0.288,20.85,39.98,0.91,0.12,788,1,199,6.7
+12649,2023,9,21,12,30,22.5,0.67,0.047,0.63,78,987,831,0,0,-1.4,78,987,0,831,0.288,20.35,40.29,0.91,0.12,788,1,199,6.6
+12650,2023,9,21,13,0,22.8,0.71,0.043,0.63,76,986,812,0,0,-2.2,138,832,0,759,0.287,18.77,41.72,0.91,0.12,787,0.9,199,6.5
+12651,2023,9,21,13,30,22.9,0.71,0.043,0.63,74,981,778,0,0,-2.2,85,950,0,767,0.287,18.66,44.16,0.91,0.12,787,0.9,199,6.4
+12652,2023,9,21,14,0,22.9,0.65,0.038,0.63,70,974,729,0,0,-3.4,125,832,0,688,0.287,17.12,47.46,0.9,0.12,787,0.9,200,6.3
+12653,2023,9,21,14,30,22.7,0.65,0.038,0.63,68,959,666,0,0,-3.4,87,911,0,655,0.288,17.33,51.43,0.9,0.12,787,0.8,201,6.2
+12654,2023,9,21,15,0,22.5,0.69,0.037,0.63,65,938,590,0,0,-4.6,99,842,0,571,0.288,16.04,55.93,0.9,0.12,786,0.8,202,6.1
+12655,2023,9,21,15,30,22,0.69,0.037,0.63,61,908,504,0,0,-4.6,61,908,0,504,0.289,16.53,60.82,0.9,0.12,786,0.8,203,5.9
+12656,2023,9,21,16,0,21.4,0.72,0.037,0.63,57,866,409,0,0,-5.6,73,799,0,398,0.289,15.88,66,0.9,0.12,786,0.7,204,5.8
+12657,2023,9,21,16,30,20.5,0.72,0.037,0.63,51,803,307,0,3,-5.6,119,447,0,262,0.29,16.78,71.4,0.9,0.12,786,0.7,206,5
+12658,2023,9,21,17,0,19.5,0.72,0.036,0.63,43,706,203,0,0,-6,56,573,0,186,0.291,17.3,76.93,0.9,0.12,787,0.7,207,4.3
+12659,2023,9,21,17,30,17.1,0.72,0.036,0.63,33,540,103,0,0,-6,33,540,0,103,0.291,20.1,82.54,0.9,0.12,787,0.7,210,3
+12660,2023,9,21,18,0,14.6,0.72,0.036,0.63,17,214,24,0,0,-5,17,214,0,24,0.292,25.47,88.09,0.9,0.12,787,0.7,213,1.7
+12661,2023,9,21,18,30,13.7,0.72,0.036,0.63,0,0,0,0,0,-5,0,0,0,0,0.293,27,94.03,0.9,0.12,787,0.7,216,1.5
+12662,2023,9,21,19,0,12.9,0.72,0.037,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.294,28.96,99.7,0.9,0.12,787,0.8,218,1.4
+12663,2023,9,21,19,30,12.6,0.72,0.037,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.295,29.57,105.28,0.91,0.12,788,0.8,215,1.3
+12664,2023,9,21,20,0,12.3,0.74,0.041,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.295,30.21,110.74,0.91,0.12,788,0.8,213,1.3
+12665,2023,9,21,20,30,12.1,0.74,0.041,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.296,30.61,116.02,0.91,0.12,788,0.8,203,1.3
+12666,2023,9,21,21,0,12,0.77,0.046,0.63,0,0,0,0,3,-4.8,0,0,0,0,0.296,30.53,121.03,0.92,0.12,788,0.9,194,1.3
+12667,2023,9,21,21,30,11.6,0.77,0.046,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.296,31.35,125.69,0.92,0.12,788,0.9,188,1.4
+12668,2023,9,21,22,0,11.2,0.8,0.056,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.296,31.98,129.89,0.93,0.12,787,0.9,182,1.5
+12669,2023,9,21,22,30,11.2,0.8,0.056,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.297,31.98,133.48,0.93,0.12,787,0.9,184,1.6
+12670,2023,9,21,23,0,11.2,0.82,0.063,0.63,0,0,0,0,8,-4.8,0,0,0,0,0.297,32.27,136.31,0.94,0.12,787,0.9,187,1.7
+12671,2023,9,21,23,30,11.1,0.82,0.063,0.63,0,0,0,0,5,-4.8,0,0,0,0,0.298,32.48,138.21,0.93,0.12,787,0.9,197,2
+12672,2023,9,22,0,0,11,0.86,0.059,0.63,0,0,0,0,5,-4.8,0,0,0,0,0.299,32.77,139.04,0.93,0.12,787,0.9,207,2.3
+12673,2023,9,22,0,30,10.7,0.86,0.059,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.299,33.47,138.75,0.93,0.12,788,0.9,216,2.7
+12674,2023,9,22,1,0,10.4,0.93,0.054,0.63,0,0,0,0,5,-4.2,0,0,0,0,0.299,35.55,137.36,0.92,0.12,788,0.9,224,3
+12675,2023,9,22,1,30,9.9,0.93,0.054,0.63,0,0,0,0,5,-4.2,0,0,0,0,0.298,36.75,134.96,0.93,0.12,788,0.9,229,3.1
+12676,2023,9,22,2,0,9.5,1.08,0.056,0.63,0,0,0,0,5,-2.6,0,0,0,0,0.297,42.57,131.72,0.93,0.12,788,0.9,234,3.2
+12677,2023,9,22,2,30,8.9,1.08,0.056,0.63,0,0,0,0,5,-2.6,0,0,0,0,0.297,44.37,127.8,0.93,0.12,789,0.9,235,2.8
+12678,2023,9,22,3,0,8.3,1.2,0.063,0.63,0,0,0,0,5,-0.9,0,0,0,0,0.296,52.49,123.35,0.94,0.12,789,0.9,236,2.3
+12679,2023,9,22,3,30,7.8,1.2,0.063,0.63,0,0,0,0,5,-0.9,0,0,0,0,0.296,54.3,118.5,0.94,0.12,789,0.9,232,1.9
+12680,2023,9,22,4,0,7.3,1.27,0.071,0.63,0,0,0,0,0,0.1,0,0,0,0,0.296,60.22,113.35,0.94,0.12,789,1,228,1.5
+12681,2023,9,22,4,30,7,1.27,0.071,0.63,0,0,0,0,0,0.1,0,0,0,0,0.297,61.47,107.98,0.94,0.12,789,1,220,1.5
+12682,2023,9,22,5,0,6.8,1.29,0.079,0.63,0,0,0,0,5,0.3,0,0,0,0,0.297,63.04,102.45,0.94,0.12,789,1,212,1.4
+12683,2023,9,22,5,30,7.2,1.29,0.079,0.63,0,0,0,0,5,0.3,0,0,0,0,0.298,61.34,96.82,0.94,0.12,789,1,209,1.5
+12684,2023,9,22,6,0,7.5,1.26,0.085,0.63,6,36,5,0,0,0,6,36,0,5,0.298,58.94,91.14,0.94,0.12,789,1,206,1.6
+12685,2023,9,22,6,30,9.5,1.26,0.085,0.63,31,311,56,1,0,0,30,203,11,47,0.298,51.49,85.32,0.94,0.12,789,1,208,2.5
+12686,2023,9,22,7,0,11.5,1.24,0.08,0.63,48,540,144,0,3,-0.3,88,80,0,102,0.298,44.05,79.72,0.94,0.12,789,1,211,3.4
+12687,2023,9,22,7,30,13.3,1.24,0.08,0.63,57,683,244,0,0,-0.3,89,508,0,228,0.297,39.15,74.15,0.93,0.12,789,1,214,4.1
+12688,2023,9,22,8,0,15.1,1.22,0.071,0.63,64,778,347,0,0,-0.7,64,778,0,347,0.296,33.94,68.7,0.93,0.12,789,1,218,4.8
+12689,2023,9,22,8,30,16.1,1.22,0.071,0.63,71,838,446,0,0,-0.7,71,838,0,446,0.295,31.84,63.43,0.93,0.12,789,1,219,5.3
+12690,2023,9,22,9,0,17.2,1.2,0.067,0.63,74,883,537,0,0,-1.1,74,883,0,537,0.295,28.72,58.41,0.93,0.12,789,0.9,219,5.8
+12691,2023,9,22,9,30,17.9,1.2,0.067,0.63,78,914,619,0,0,-1.1,78,914,0,619,0.294,27.48,53.74,0.93,0.12,789,0.9,219,6
+12692,2023,9,22,10,0,18.7,1.19,0.066,0.63,81,936,689,0,0,-1.6,81,936,0,689,0.294,25.21,49.53,0.93,0.12,789,0.9,219,6.2
+12693,2023,9,22,10,30,19.3,1.19,0.066,0.63,81,956,746,0,0,-1.6,81,956,0,746,0.294,24.28,45.93,0.92,0.12,789,1,219,6.4
+12694,2023,9,22,11,0,19.9,1.03,0.053,0.63,79,973,790,0,0,-2.2,79,973,0,790,0.294,22.44,43.09,0.91,0.12,788,1,220,6.6
+12695,2023,9,22,11,30,20.4,1.03,0.053,0.63,80,979,817,0,0,-2.2,80,979,0,817,0.294,21.76,41.19,0.91,0.12,788,1,221,6.9
+12696,2023,9,22,12,0,20.9,1.01,0.054,0.63,81,981,828,0,0,-2.8,81,981,0,828,0.294,20.17,40.37,0.91,0.12,788,1,223,7.2
+12697,2023,9,22,12,30,21.1,1.01,0.054,0.63,81,980,824,0,0,-2.8,81,980,0,824,0.294,19.93,40.69,0.92,0.12,788,1,224,7.4
+12698,2023,9,22,13,0,21.4,1.02,0.054,0.63,81,976,805,0,0,-3.4,116,843,0,741,0.294,18.69,42.12,0.92,0.12,787,0.9,226,7.7
+12699,2023,9,22,13,30,21.4,1.02,0.054,0.63,79,969,769,0,0,-3.4,123,871,0,744,0.294,18.69,44.56,0.91,0.12,787,0.9,228,7.9
+12700,2023,9,22,14,0,21.3,1,0.051,0.63,76,958,719,0,0,-3.8,224,604,0,629,0.294,18.23,47.84,0.91,0.12,787,0.9,230,8
+12701,2023,9,22,14,30,21,1,0.051,0.63,74,938,654,0,0,-3.8,201,594,0,568,0.294,18.57,51.8,0.91,0.12,787,0.9,234,8
+12702,2023,9,22,15,0,20.7,1.1,0.055,0.63,71,912,577,0,0,-4,71,912,0,577,0.294,18.67,56.28,0.92,0.12,787,0.9,237,7.9
+12703,2023,9,22,15,30,20.1,1.1,0.055,0.63,66,878,490,0,0,-4,66,878,0,490,0.294,19.37,61.16,0.92,0.12,787,0.9,242,7.8
+12704,2023,9,22,16,0,19.5,1.21,0.055,0.63,62,829,395,0,0,-3.7,62,829,0,395,0.294,20.53,66.34,0.92,0.12,788,1,247,7.6
+12705,2023,9,22,16,30,18.3,1.21,0.055,0.63,55,762,294,0,0,-3.7,55,762,0,294,0.294,22.13,71.72,0.92,0.12,788,1,255,7.2
+12706,2023,9,22,17,0,17.2,1.35,0.054,0.63,46,660,192,0,0,-2.9,46,660,0,192,0.294,25.22,77.25,0.92,0.12,788,1,263,6.8
+12707,2023,9,22,17,30,15.5,1.35,0.054,0.63,34,491,95,0,0,-2.9,34,491,0,95,0.294,28.13,82.86,0.92,0.12,789,1,271,5.9
+12708,2023,9,22,18,0,13.8,1.44,0.051,0.63,15,166,20,0,0,-2.3,15,166,0,20,0.294,32.79,88.39,0.92,0.12,790,0.9,280,5.1
+12709,2023,9,22,18,30,12.7,1.44,0.051,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.295,35.22,94.35,0.91,0.12,790,0.9,286,4.5
+12710,2023,9,22,19,0,11.5,1.46,0.046,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.295,37.2,100.02,0.91,0.12,791,0.8,293,3.9
+12711,2023,9,22,19,30,10.6,1.46,0.046,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.296,39.53,105.61,0.91,0.12,792,0.7,298,3.7
+12712,2023,9,22,20,0,9.8,1.44,0.04,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.297,38.57,111.08,0.9,0.12,792,0.7,302,3.4
+12713,2023,9,22,20,30,8.8,1.44,0.04,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.297,41.25,116.36,0.9,0.12,792,0.6,307,2.8
+12714,2023,9,22,21,0,7.9,1.42,0.035,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.298,41.59,121.38,0.9,0.12,793,0.6,311,2.2
+12715,2023,9,22,21,30,7,1.42,0.035,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.297,44.22,126.06,0.9,0.12,793,0.5,316,1.7
+12716,2023,9,22,22,0,6.1,1.41,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.297,45.97,130.27,0.9,0.12,793,0.5,321,1.1
+12717,2023,9,22,22,30,5.7,1.41,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.296,47.25,133.87,0.9,0.12,793,0.5,329,1
+12718,2023,9,22,23,0,5.3,1.42,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.295,48.08,136.7,0.9,0.12,793,0.5,337,0.9
+12719,2023,9,22,23,30,5.3,1.42,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.294,48.08,138.6,0.9,0.12,793,0.5,169,0.9
+12720,2023,9,23,0,0,5.2,1.41,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.293,48.35,139.44,0.9,0.12,793,0.5,2,0.8
+12721,2023,9,23,0,30,5.1,1.41,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.293,48.69,139.13,0.9,0.12,793,0.6,23,0.7
+12722,2023,9,23,1,0,4.9,1.41,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.292,49.64,137.71,0.9,0.12,793,0.6,45,0.6
+12723,2023,9,23,1,30,4.7,1.41,0.031,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.291,50.34,135.29,0.9,0.12,793,0.6,72,0.5
+12724,2023,9,23,2,0,4.6,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,51.03,132.02,0.9,0.12,793,0.6,99,0.5
+12725,2023,9,23,2,30,4.3,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,52.11,128.07,0.9,0.12,793,0.6,139,0.5
+12726,2023,9,23,3,0,4.1,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,52.74,123.6,0.9,0.12,793,0.6,179,0.5
+12727,2023,9,23,3,30,3.8,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,53.86,118.73,0.9,0.12,793,0.6,196,0.7
+12728,2023,9,23,4,0,3.5,1.43,0.032,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.291,54.55,113.56,0.9,0.12,793,0.6,213,0.8
+12729,2023,9,23,4,30,3.1,1.43,0.032,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.291,56.12,108.18,0.9,0.12,793,0.6,219,0.9
+12730,2023,9,23,5,0,2.8,1.43,0.031,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.291,56.74,102.65,0.9,0.12,793,0.6,225,1
+12731,2023,9,23,5,30,2.9,1.43,0.031,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.29,56.34,97.01,0.9,0.12,793,0.6,228,1
+12732,2023,9,23,6,0,3,1.42,0.031,0.63,4,41,3,0,0,-5,4,41,0,3,0.29,55.57,91.33,0.9,0.12,793,0.6,230,0.9
+12733,2023,9,23,6,30,4.9,1.42,0.031,0.63,25,448,60,0,0,-5,25,448,0,60,0.289,48.7,85.49,0.9,0.12,794,0.6,233,1.4
+12734,2023,9,23,7,0,6.7,1.41,0.03,0.63,37,664,153,0,0,-4.9,37,664,0,153,0.289,43.5,79.91,0.9,0.12,794,0.6,235,1.8
+12735,2023,9,23,7,30,8.4,1.41,0.03,0.63,44,785,256,0,0,-4.9,44,785,0,256,0.288,38.74,74.35,0.9,0.12,794,0.6,241,1.9
+12736,2023,9,23,8,0,10,1.4,0.03,0.63,50,861,360,0,0,-4.7,50,861,0,360,0.288,35.2,68.91,0.9,0.12,794,0.6,247,2
+12737,2023,9,23,8,30,11.2,1.4,0.03,0.63,55,913,460,0,0,-4.7,55,913,0,460,0.288,32.5,63.65,0.9,0.12,794,0.6,248,2.3
+12738,2023,9,23,9,0,12.5,1.39,0.029,0.63,58,951,553,0,0,-5.6,58,951,0,553,0.287,27.88,58.65,0.9,0.12,794,0.6,249,2.6
+12739,2023,9,23,9,30,13.5,1.39,0.029,0.63,61,978,636,0,0,-5.6,61,978,0,636,0.287,26.12,54,0.9,0.12,794,0.6,247,2.8
+12740,2023,9,23,10,0,14.5,1.38,0.029,0.63,63,998,707,0,0,-6.7,63,998,0,707,0.286,22.56,49.81,0.9,0.12,794,0.6,246,3.1
+12741,2023,9,23,10,30,15.3,1.38,0.029,0.63,64,1014,765,0,0,-6.7,64,1014,0,765,0.286,21.43,46.24,0.89,0.12,794,0.5,245,3.3
+12742,2023,9,23,11,0,16.1,1.37,0.027,0.63,64,1024,808,0,0,-7.6,64,1024,0,808,0.285,18.9,43.43,0.89,0.12,794,0.5,244,3.5
+12743,2023,9,23,11,30,16.8,1.37,0.027,0.63,65,1030,836,0,0,-7.6,65,1030,0,836,0.285,18.06,41.56,0.89,0.12,793,0.5,243,3.7
+12744,2023,9,23,12,0,17.4,1.36,0.027,0.63,65,1034,848,0,0,-8.4,65,1034,0,848,0.284,16.34,40.76,0.89,0.12,793,0.5,243,3.9
+12745,2023,9,23,12,30,17.9,1.36,0.027,0.63,65,1033,844,0,0,-8.4,65,1033,0,844,0.283,15.83,41.08,0.89,0.12,793,0.5,242,4
+12746,2023,9,23,13,0,18.3,1.35,0.026,0.63,65,1029,823,0,0,-9.1,65,1029,0,823,0.283,14.62,42.52,0.89,0.12,793,0.5,242,4
+12747,2023,9,23,13,30,18.5,1.35,0.026,0.63,64,1022,787,0,0,-9.2,64,1022,0,787,0.282,14.42,44.95,0.89,0.12,792,0.5,242,3.9
+12748,2023,9,23,14,0,18.7,1.32,0.025,0.63,61,1011,735,0,0,-9.7,61,1011,0,735,0.282,13.63,48.22,0.89,0.12,792,0.5,242,3.8
+12749,2023,9,23,14,30,18.7,1.32,0.025,0.63,59,996,670,0,0,-9.7,59,996,0,670,0.283,13.63,52.17,0.89,0.12,792,0.5,243,3.6
+12750,2023,9,23,15,0,18.7,1.32,0.025,0.63,56,974,592,0,0,-10.2,56,974,0,592,0.283,13.16,56.64,0.89,0.12,792,0.5,244,3.4
+12751,2023,9,23,15,30,18.4,1.32,0.025,0.63,54,944,504,0,0,-10.2,54,944,0,504,0.284,13.4,61.51,0.89,0.12,792,0.5,244,3
+12752,2023,9,23,16,0,18.1,1.31,0.024,0.63,49,901,406,0,0,-10.5,49,901,0,406,0.285,13.35,66.68,0.89,0.12,792,0.5,244,2.7
+12753,2023,9,23,16,30,17,1.31,0.024,0.63,44,840,303,0,0,-10.5,44,840,0,303,0.286,14.3,72.05,0.89,0.12,792,0.5,241,2
+12754,2023,9,23,17,0,16,1.3,0.024,0.63,38,745,198,0,0,-8.5,38,745,0,198,0.286,17.8,77.58,0.89,0.12,792,0.5,237,1.3
+12755,2023,9,23,17,30,14.6,1.3,0.024,0.63,29,581,98,0,0,-8.5,29,581,0,98,0.287,19.47,83.17,0.89,0.12,792,0.5,217,0.9
+12756,2023,9,23,18,0,13.1,1.31,0.024,0.63,14,212,19,0,0,-8,14,212,0,19,0.287,22.34,88.69,0.89,0.12,792,0.5,197,0.6
+12757,2023,9,23,18,30,12.9,1.31,0.024,0.63,0,0,0,0,0,-8,0,0,0,0,0.288,22.64,94.67,0.89,0.12,792,0.5,158,0.4
+12758,2023,9,23,19,0,12.7,1.31,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.288,21.93,100.34,0.89,0.12,792,0.5,118,0.3
+12759,2023,9,23,19,30,12.2,1.31,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.288,22.66,105.94,0.89,0.12,792,0.5,81,0.4
+12760,2023,9,23,20,0,11.7,1.33,0.024,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.288,23.39,111.41,0.89,0.12,793,0.5,43,0.5
+12761,2023,9,23,20,30,11.1,1.33,0.024,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.288,24.34,116.7,0.89,0.12,793,0.5,35,0.6
+12762,2023,9,23,21,0,10.4,1.34,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.289,25.66,121.74,0.89,0.12,793,0.5,27,0.7
+12763,2023,9,23,21,30,9.7,1.34,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.289,26.89,126.42,0.89,0.12,793,0.5,26,0.7
+12764,2023,9,23,22,0,9.1,1.35,0.025,0.63,0,0,0,0,0,-8,0,0,0,0,0.289,29.13,130.64,0.89,0.12,793,0.6,24,0.7
+12765,2023,9,23,22,30,8.5,1.35,0.025,0.63,0,0,0,0,8,-8,0,0,0,0,0.288,30.33,134.26,0.89,0.12,793,0.6,25,0.7
+12766,2023,9,23,23,0,8,1.37,0.025,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.288,32.82,137.1,0.89,0.12,793,0.6,26,0.7
+12767,2023,9,23,23,30,7.5,1.37,0.025,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.287,33.96,139,0.89,0.12,793,0.6,27,0.7
+12768,2023,9,24,0,0,7.1,1.39,0.026,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.287,36.46,139.83,0.89,0.12,793,0.6,29,0.7
+12769,2023,9,24,0,30,6.7,1.39,0.026,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.287,37.47,139.5,0.89,0.12,793,0.6,29,0.7
+12770,2023,9,24,1,0,6.3,1.4,0.026,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.287,39.98,138.06,0.89,0.12,793,0.6,29,0.8
+12771,2023,9,24,1,30,5.9,1.4,0.026,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.287,41.1,135.61,0.89,0.12,793,0.6,30,0.8
+12772,2023,9,24,2,0,5.4,1.41,0.026,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.287,43.91,132.32,0.89,0.12,793,0.6,30,0.8
+12773,2023,9,24,2,30,5.1,1.41,0.026,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.288,44.83,128.35,0.88,0.12,793,0.5,30,0.8
+12774,2023,9,24,3,0,4.8,1.41,0.026,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.289,47.12,123.85,0.88,0.12,793,0.5,31,0.8
+12775,2023,9,24,3,30,4.5,1.41,0.026,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.289,48.11,118.96,0.88,0.12,793,0.5,30,0.8
+12776,2023,9,24,4,0,4.3,1.41,0.026,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.29,49.89,113.78,0.88,0.12,793,0.5,30,0.8
+12777,2023,9,24,4,30,4.1,1.41,0.026,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.29,50.66,108.38,0.88,0.12,794,0.5,30,0.8
+12778,2023,9,24,5,0,3.9,1.41,0.026,0.63,0,0,0,0,0,-5,0,0,0,0,0.291,52.32,102.84,0.88,0.12,794,0.5,30,0.8
+12779,2023,9,24,5,30,4,1.41,0.026,0.63,0,0,0,0,0,-5,0,0,0,0,0.291,51.95,97.2,0.88,0.12,794,0.5,30,0.7
+12780,2023,9,24,6,0,4,1.41,0.026,0.63,4,42,3,0,0,-4.7,4,42,0,3,0.291,52.99,91.52,0.88,0.12,794,0.5,31,0.7
+12781,2023,9,24,6,30,5.9,1.41,0.026,0.63,23,461,58,0,0,-4.7,23,461,0,58,0.292,46.43,85.68,0.88,0.12,794,0.5,26,1
+12782,2023,9,24,7,0,7.9,1.41,0.025,0.63,35,680,152,0,0,-4.4,35,680,0,152,0.292,41.59,80.1,0.88,0.12,795,0.5,21,1.4
+12783,2023,9,24,7,30,10,1.41,0.025,0.63,43,801,256,0,0,-4.4,43,801,0,256,0.292,36.11,74.55,0.88,0.12,795,0.5,29,1.2
+12784,2023,9,24,8,0,12.2,1.4,0.025,0.63,48,876,360,0,0,-5,48,876,0,360,0.292,29.79,69.12,0.88,0.12,795,0.5,37,1
+12785,2023,9,24,8,30,14,1.4,0.025,0.63,52,929,461,0,0,-5,52,929,0,461,0.292,26.5,63.87,0.88,0.12,795,0.5,93,0.6
+12786,2023,9,24,9,0,15.8,1.39,0.025,0.63,55,966,554,0,0,-6.6,55,966,0,554,0.291,20.93,58.89,0.88,0.12,795,0.5,149,0.3
+12787,2023,9,24,9,30,16.9,1.39,0.025,0.63,58,994,639,0,0,-6.5,58,994,0,639,0.291,19.51,54.26,0.88,0.12,795,0.4,172,0.7
+12788,2023,9,24,10,0,18,1.37,0.025,0.63,60,1013,710,0,0,-8.1,60,1013,0,710,0.291,16.09,50.1,0.88,0.12,795,0.4,195,1.1
+12789,2023,9,24,10,30,18.9,1.37,0.025,0.63,61,1028,768,0,0,-8.1,61,1028,0,768,0.291,15.21,46.55,0.88,0.12,795,0.4,201,1.4
+12790,2023,9,24,11,0,19.7,1.39,0.022,0.63,61,1039,811,0,0,-9.5,61,1039,0,811,0.291,13.03,43.77,0.87,0.12,795,0.4,207,1.6
+12791,2023,9,24,11,30,20.3,1.39,0.022,0.63,61,1044,838,0,0,-9.5,61,1044,0,838,0.291,12.55,41.93,0.87,0.12,795,0.4,212,1.8
+12792,2023,9,24,12,0,20.9,1.4,0.022,0.63,61,1046,849,0,0,-10.7,61,1046,0,849,0.291,11.02,41.14,0.87,0.12,794,0.4,218,2
+12793,2023,9,24,12,30,21.3,1.4,0.022,0.63,62,1045,845,0,0,-10.7,62,1045,0,845,0.291,10.75,41.48,0.87,0.12,794,0.4,221,2.1
+12794,2023,9,24,13,0,21.7,1.39,0.022,0.63,62,1041,824,0,0,-11.7,62,1041,0,824,0.29,9.71,42.92,0.87,0.12,794,0.4,225,2.2
+12795,2023,9,24,13,30,21.8,1.39,0.022,0.63,60,1034,787,0,0,-11.7,60,1034,0,787,0.29,9.65,45.34,0.88,0.12,794,0.4,228,2.3
+12796,2023,9,24,14,0,21.9,1.38,0.022,0.63,59,1023,735,0,0,-12.4,59,1023,0,735,0.289,9.03,48.61,0.88,0.12,794,0.4,232,2.3
+12797,2023,9,24,14,30,21.7,1.38,0.022,0.63,57,1007,669,0,0,-12.4,57,1007,0,669,0.289,9.14,52.54,0.88,0.12,794,0.4,234,2.3
+12798,2023,9,24,15,0,21.6,1.35,0.022,0.63,55,985,591,0,0,-13.1,55,985,0,591,0.289,8.7,57,0.88,0.12,794,0.4,236,2.2
+12799,2023,9,24,15,30,21.1,1.35,0.022,0.63,52,957,503,0,0,-13.1,52,957,0,503,0.288,8.97,61.86,0.88,0.12,794,0.4,236,2.1
+12800,2023,9,24,16,0,20.6,1.32,0.022,0.63,48,917,406,0,0,-13.6,48,917,0,406,0.288,8.88,67.01,0.88,0.12,794,0.4,236,2.1
+12801,2023,9,24,16,30,19.2,1.32,0.022,0.63,43,856,302,0,0,-13.6,43,856,0,302,0.288,9.68,72.38,0.88,0.12,794,0.4,235,1.5
+12802,2023,9,24,17,0,17.8,1.29,0.022,0.63,37,762,197,0,0,-9.6,37,762,0,197,0.288,14.55,77.9,0.88,0.12,794,0.3,233,1
+12803,2023,9,24,17,30,16.3,1.29,0.022,0.63,28,594,95,0,0,-9.6,28,594,0,95,0.287,16,83.49,0.88,0.12,794,0.3,232,0.9
+12804,2023,9,24,18,0,14.8,1.28,0.022,0.63,13,204,17,0,0,-10.1,13,204,0,17,0.287,16.95,88.98,0.88,0.12,795,0.3,232,0.8
+12805,2023,9,24,18,30,14.4,1.28,0.022,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.286,17.39,94.99,0.88,0.12,795,0.4,228,0.6
+12806,2023,9,24,19,0,14.1,1.3,0.022,0.63,0,0,0,0,8,-11.1,0,0,0,0,0.285,16.37,100.66,0.88,0.12,795,0.4,223,0.5
+12807,2023,9,24,19,30,13.8,1.3,0.022,0.63,0,0,0,0,8,-11.1,0,0,0,0,0.284,16.69,106.27,0.89,0.12,795,0.4,204,0.4
+12808,2023,9,24,20,0,13.6,1.33,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.283,16.4,111.75,0.89,0.12,795,0.4,185,0.3
+12809,2023,9,24,20,30,13.1,1.33,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.282,16.94,117.04,0.89,0.12,795,0.4,173,0.3
+12810,2023,9,24,21,0,12.7,1.34,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.281,17.31,122.09,0.89,0.12,795,0.4,161,0.4
+12811,2023,9,24,21,30,12.2,1.34,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.28,17.89,126.79,0.89,0.12,795,0.4,163,0.5
+12812,2023,9,24,22,0,11.7,1.35,0.024,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.279,18.32,131.02,0.89,0.12,795,0.5,164,0.6
+12813,2023,9,24,22,30,11.1,1.35,0.024,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.278,19.06,134.65,0.89,0.12,795,0.5,171,0.6
+12814,2023,9,24,23,0,10.4,1.36,0.025,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.277,20.28,137.5,0.89,0.12,795,0.5,178,0.7
+12815,2023,9,24,23,30,10,1.36,0.025,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.276,20.83,139.4,0.9,0.12,795,0.5,186,0.8
+12816,2023,9,25,0,0,9.6,1.37,0.026,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.275,21.89,140.22,0.9,0.12,795,0.5,195,0.8
+12817,2023,9,25,0,30,9.2,1.37,0.026,0.63,0,0,0,0,0,-11.2,0,0,14,0,0.274,22.48,139.88,0.9,0.12,795,0.5,204,0.9
+12818,2023,9,25,1,0,8.9,1.38,0.026,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.274,23.52,138.41,0.9,0.12,795,0.5,212,0.9
+12819,2023,9,25,1,30,8.6,1.38,0.026,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.273,24,135.94,0.9,0.12,795,0.6,211,0.9
+12820,2023,9,25,2,0,8.4,1.39,0.027,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.272,25.09,132.61,0.9,0.12,795,0.6,209,0.9
+12821,2023,9,25,2,30,8.2,1.39,0.027,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.272,25.43,128.62,0.9,0.12,795,0.6,198,1
+12822,2023,9,25,3,0,7.9,1.4,0.028,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.271,27.45,124.1,0.9,0.12,796,0.6,188,1
+12823,2023,9,25,3,30,7.5,1.4,0.028,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.271,28.21,119.19,0.9,0.12,796,0.6,182,1.1
+12824,2023,9,25,4,0,7.1,1.39,0.029,0.63,0,0,0,0,0,-9,0,0,0,0,0.271,30.9,113.99,0.91,0.12,796,0.6,177,1.1
+12825,2023,9,25,4,30,6.8,1.39,0.029,0.63,0,0,0,0,0,-9,0,0,0,0,0.271,31.54,108.58,0.91,0.12,796,0.6,176,1.2
+12826,2023,9,25,5,0,6.5,1.38,0.03,0.63,0,0,0,0,0,-8,0,0,0,0,0.27,34.71,103.03,0.91,0.12,796,0.6,175,1.2
+12827,2023,9,25,5,30,6.5,1.38,0.03,0.63,0,0,0,0,0,-8,0,0,0,0,0.27,34.71,97.39,0.91,0.12,796,0.6,177,1.2
+12828,2023,9,25,6,0,6.5,1.37,0.03,0.63,4,37,3,0,0,-6.9,4,37,0,3,0.27,37.78,91.7,0.91,0.12,797,0.6,178,1.2
+12829,2023,9,25,6,30,8.7,1.37,0.03,0.63,24,429,55,0,0,-6.9,24,429,0,55,0.27,32.52,85.86,0.91,0.12,797,0.6,180,1.3
+12830,2023,9,25,7,0,10.8,1.35,0.03,0.63,36,656,147,0,0,-5.6,36,656,0,147,0.269,31.1,80.29,0.91,0.12,797,0.6,181,1.5
+12831,2023,9,25,7,30,12.7,1.35,0.03,0.63,44,780,249,0,0,-5.6,44,780,0,249,0.269,27.44,74.75,0.91,0.12,797,0.6,187,1.6
+12832,2023,9,25,8,0,14.7,1.34,0.03,0.63,50,857,353,0,0,-6,50,857,0,353,0.268,23.45,69.33,0.91,0.12,798,0.6,192,1.8
+12833,2023,9,25,8,30,16.9,1.34,0.03,0.63,55,909,452,0,0,-6,55,909,0,452,0.267,20.38,64.1,0.91,0.12,798,0.6,206,2
+12834,2023,9,25,9,0,19.1,1.33,0.03,0.63,59,946,544,0,0,-6.9,59,946,0,544,0.267,16.49,59.13,0.91,0.12,798,0.6,220,2.1
+12835,2023,9,25,9,30,20.1,1.33,0.03,0.63,62,972,626,0,0,-6.9,62,972,0,626,0.266,15.5,54.52,0.91,0.12,798,0.6,220,2.1
+12836,2023,9,25,10,0,21.1,1.32,0.029,0.63,64,992,696,0,0,-6.9,64,992,0,696,0.265,14.61,50.39,0.91,0.12,798,0.6,221,2
+12837,2023,9,25,10,30,21.8,1.32,0.029,0.63,65,1007,753,0,0,-6.9,65,1007,0,753,0.264,14,46.87,0.91,0.12,798,0.6,221,2
+12838,2023,9,25,11,0,22.4,1.29,0.026,0.63,65,1018,796,0,0,-7.3,65,1018,0,796,0.263,13.11,44.12,0.91,0.12,797,0.6,220,2
+12839,2023,9,25,11,30,22.9,1.29,0.026,0.63,65,1024,823,0,0,-7.3,65,1024,0,823,0.262,12.72,42.29,0.91,0.12,797,0.6,221,2
+12840,2023,9,25,12,0,23.4,1.28,0.026,0.63,66,1029,836,0,0,-7.7,66,1029,0,836,0.262,11.9,41.53,0.91,0.12,797,0.6,221,1.9
+12841,2023,9,25,12,30,23.7,1.28,0.026,0.63,66,1029,832,0,0,-7.7,66,1029,0,832,0.261,11.69,41.88,0.91,0.12,797,0.6,223,1.9
+12842,2023,9,25,13,0,24,1.28,0.026,0.63,65,1026,811,0,0,-8.2,65,1026,0,811,0.26,11.06,43.32,0.9,0.12,797,0.5,225,1.8
+12843,2023,9,25,13,30,24,1.28,0.026,0.63,63,1020,775,0,0,-8.2,63,1020,0,775,0.26,11.04,45.74,0.9,0.12,796,0.5,228,1.7
+12844,2023,9,25,14,0,24.1,1.27,0.025,0.63,61,1010,724,0,0,-8.7,61,1010,0,724,0.26,10.59,48.99,0.9,0.12,796,0.5,230,1.6
+12845,2023,9,25,14,30,23.9,1.27,0.025,0.63,60,994,659,0,0,-8.7,60,994,0,659,0.261,10.71,52.91,0.9,0.12,796,0.5,229,1.5
+12846,2023,9,25,15,0,23.7,1.27,0.024,0.63,57,972,581,0,0,-9.1,57,972,0,581,0.261,10.51,57.36,0.9,0.12,796,0.5,229,1.3
+12847,2023,9,25,15,30,23.2,1.27,0.024,0.63,53,941,492,0,0,-9.1,53,941,0,492,0.262,10.83,62.21,0.9,0.12,796,0.5,223,1.1
+12848,2023,9,25,16,0,22.6,1.29,0.024,0.63,50,897,395,0,0,-9.4,50,897,0,395,0.262,10.98,67.35,0.9,0.12,796,0.5,216,0.9
+12849,2023,9,25,16,30,21.4,1.29,0.024,0.63,45,836,293,0,0,-9.4,45,836,0,293,0.262,11.81,72.71,0.9,0.12,796,0.5,196,0.7
+12850,2023,9,25,17,0,20.2,1.3,0.024,0.63,37,738,188,0,0,-5.7,37,738,0,188,0.263,16.89,78.22,0.9,0.12,796,0.5,176,0.4
+12851,2023,9,25,17,30,18.6,1.3,0.024,0.63,28,565,89,0,0,-5.7,28,565,0,89,0.263,18.65,83.81,0.89,0.12,796,0.4,149,0.5
+12852,2023,9,25,18,0,17,1.32,0.023,0.63,12,161,14,0,0,-6.9,12,161,0,14,0.263,18.82,89.27,0.89,0.12,796,0.4,121,0.6
+12853,2023,9,25,18,30,16.2,1.32,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,19.8,95.31,0.89,0.12,796,0.4,113,0.8
+12854,2023,9,25,19,0,15.4,1.33,0.023,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.264,19.91,100.99,0.89,0.12,796,0.4,105,0.9
+12855,2023,9,25,19,30,14.7,1.33,0.023,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.264,20.82,106.59,0.89,0.12,796,0.4,106,1
+12856,2023,9,25,20,0,14.1,1.34,0.023,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.264,21.07,112.08,0.89,0.12,796,0.4,106,1.1
+12857,2023,9,25,20,30,13.6,1.34,0.023,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.263,21.77,117.39,0.89,0.12,796,0.4,110,1.1
+12858,2023,9,25,21,0,13.1,1.36,0.023,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.263,22.06,122.44,0.89,0.12,796,0.4,113,1.2
+12859,2023,9,25,21,30,12.7,1.36,0.023,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.263,22.65,127.15,0.88,0.12,796,0.4,117,1.2
+12860,2023,9,25,22,0,12.3,1.38,0.023,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.263,23.02,131.4,0.88,0.12,796,0.4,122,1.2
+12861,2023,9,25,22,30,11.9,1.38,0.023,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,23.63,135.03,0.88,0.12,796,0.4,126,1.2
+12862,2023,9,25,23,0,11.5,1.41,0.024,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,24.23,137.89,0.88,0.12,796,0.4,131,1.2
+12863,2023,9,25,23,30,11.3,1.41,0.024,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,24.55,139.8,0.88,0.12,796,0.4,136,1.2
+12864,2023,9,26,0,0,11,1.44,0.024,0.63,0,0,0,0,0,-8.2,0,0,0,0,0.261,25.15,140.61,0.88,0.12,796,0.4,140,1.2
+12865,2023,9,26,0,30,10.8,1.44,0.024,0.63,0,0,0,0,0,-8.2,0,0,0,0,0.261,25.49,140.26,0.88,0.12,796,0.4,146,1.2
+12866,2023,9,26,1,0,10.5,1.47,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.261,26.24,138.77,0.88,0.12,796,0.4,152,1.1
+12867,2023,9,26,1,30,10.1,1.47,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.261,26.95,136.26,0.88,0.12,796,0.4,155,1.1
+12868,2023,9,26,2,0,9.7,1.49,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,28.03,132.91,0.88,0.12,796,0.4,158,1.1
+12869,2023,9,26,2,30,9.3,1.49,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,28.79,128.88,0.88,0.12,796,0.4,157,1.1
+12870,2023,9,26,3,0,8.9,1.51,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,29.73,124.34,0.88,0.12,796,0.4,157,1.1
+12871,2023,9,26,3,30,8.6,1.51,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,30.33,119.42,0.88,0.12,796,0.4,157,1.1
+12872,2023,9,26,4,0,8.2,1.52,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,31.1,114.2,0.88,0.12,796,0.4,158,1
+12873,2023,9,26,4,30,7.9,1.52,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.262,31.74,108.79,0.88,0.12,796,0.4,158,1
+12874,2023,9,26,5,0,7.6,1.52,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.262,31.98,103.23,0.88,0.12,796,0.4,158,0.9
+12875,2023,9,26,5,30,7.6,1.52,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.262,31.98,97.58,0.88,0.12,796,0.4,156,0.9
+12876,2023,9,26,6,0,7.5,1.52,0.024,0.63,3,41,2,0,0,-8.2,3,41,0,2,0.262,31.89,91.89,0.88,0.12,796,0.4,155,0.8
+12877,2023,9,26,6,30,9.2,1.52,0.024,0.63,23,459,55,0,0,-8.2,23,459,0,55,0.262,28.43,86.05,0.89,0.12,796,0.4,151,0.9
+12878,2023,9,26,7,0,11,1.52,0.024,0.63,35,686,148,0,0,-7.7,35,686,0,148,0.263,26.13,80.48,0.89,0.12,797,0.4,148,1
+12879,2023,9,26,7,30,12.8,1.52,0.024,0.63,42,805,251,0,0,-7.7,42,805,0,251,0.263,23.21,74.95,0.89,0.12,797,0.5,146,1
+12880,2023,9,26,8,0,14.7,1.51,0.024,0.63,47,880,355,0,0,-8.7,47,880,0,355,0.263,19.08,69.54,0.89,0.12,797,0.5,143,1
+12881,2023,9,26,8,30,17.2,1.51,0.024,0.63,51,927,453,0,0,-8.7,51,927,0,453,0.262,16.27,64.32,0.89,0.12,797,0.5,173,1.2
+12882,2023,9,26,9,0,19.7,1.52,0.024,0.63,55,962,545,0,0,-8.9,55,962,0,545,0.262,13.67,59.38,0.89,0.12,797,0.5,203,1.3
+12883,2023,9,26,9,30,21,1.52,0.024,0.63,58,987,627,0,0,-8.9,58,987,0,627,0.262,12.6,54.79,0.89,0.12,796,0.5,205,1.5
+12884,2023,9,26,10,0,22.3,1.53,0.024,0.63,60,1006,697,0,0,-8.7,60,1006,0,697,0.262,11.81,50.68,0.89,0.12,796,0.5,206,1.7
+12885,2023,9,26,10,30,23,1.53,0.024,0.63,61,1020,754,0,0,-8.7,61,1020,0,754,0.261,11.32,47.19,0.89,0.12,796,0.5,205,1.8
+12886,2023,9,26,11,0,23.8,1.55,0.022,0.63,61,1030,796,0,0,-8.6,61,1030,0,796,0.261,10.89,44.46,0.89,0.12,796,0.5,205,1.9
+12887,2023,9,26,11,30,24.2,1.55,0.022,0.63,61,1036,823,0,0,-8.6,61,1036,0,823,0.26,10.62,42.66,0.89,0.12,795,0.5,206,2.1
+12888,2023,9,26,12,0,24.7,1.56,0.022,0.63,62,1038,834,0,0,-8.7,62,1038,0,834,0.26,10.25,41.91,0.89,0.12,795,0.5,208,2.2
+12889,2023,9,26,12,30,25,1.56,0.022,0.63,62,1037,829,0,0,-8.7,62,1037,0,829,0.259,10.07,42.27,0.89,0.12,795,0.5,211,2.3
+12890,2023,9,26,13,0,25.2,1.56,0.023,0.63,62,1032,808,0,0,-8.7,62,1032,29,808,0.259,9.89,43.71,0.89,0.12,794,0.5,214,2.4
+12891,2023,9,26,13,30,25.2,1.56,0.023,0.63,61,1024,771,0,0,-8.7,61,1024,0,771,0.258,9.89,46.13,0.89,0.12,794,0.5,220,2.4
+12892,2023,9,26,14,0,25.3,1.56,0.025,0.63,61,1011,719,0,0,-8.8,61,1011,0,719,0.258,9.8,49.37,0.89,0.12,794,0.5,226,2.5
+12893,2023,9,26,14,30,25,1.56,0.025,0.63,59,994,653,0,0,-8.8,59,994,0,653,0.258,9.98,53.28,0.89,0.12,794,0.5,232,2.6
+12894,2023,9,26,15,0,24.8,1.57,0.026,0.63,57,968,574,0,0,-8.9,57,968,0,574,0.257,9.98,57.72,0.89,0.12,793,0.5,237,2.7
+12895,2023,9,26,15,30,24.2,1.57,0.026,0.63,53,934,484,0,0,-8.9,53,934,0,484,0.257,10.35,62.55,0.89,0.12,793,0.6,241,2.7
+12896,2023,9,26,16,0,23.6,1.59,0.026,0.63,50,889,387,0,0,-9,50,889,0,387,0.256,10.67,67.69,0.89,0.12,793,0.6,244,2.6
+12897,2023,9,26,16,30,22,1.59,0.026,0.63,44,822,284,0,0,-9,44,822,0,284,0.256,11.76,73.04,0.89,0.12,793,0.6,247,1.9
+12898,2023,9,26,17,0,20.3,1.63,0.026,0.63,37,716,179,0,0,-6,37,716,0,179,0.255,16.42,78.55,0.89,0.12,794,0.6,250,1.3
+12899,2023,9,26,17,30,18.5,1.63,0.026,0.63,27,536,82,0,0,-6,27,536,0,82,0.255,18.36,84.12,0.89,0.12,794,0.6,255,1.2
+12900,2023,9,26,18,0,16.7,1.66,0.025,0.63,11,147,12,0,0,-6.2,11,147,0,12,0.255,20.24,89.56,0.89,0.12,794,0.6,259,1.1
+12901,2023,9,26,18,30,16.5,1.66,0.025,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.255,20.5,95.63,0.89,0.12,794,0.6,263,1
+12902,2023,9,26,19,0,16.3,1.68,0.023,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.255,20.09,101.31,0.89,0.12,794,0.6,266,1
+12903,2023,9,26,19,30,16.1,1.68,0.023,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.255,20.35,106.92,0.88,0.12,794,0.6,263,0.9
+12904,2023,9,26,20,0,16,1.68,0.022,0.63,0,0,0,0,0,-7,0,0,0,0,0.255,20.02,112.41,0.88,0.12,794,0.6,260,0.9
+12905,2023,9,26,20,30,15.7,1.68,0.022,0.63,0,0,0,0,0,-7,0,0,0,0,0.256,20.41,117.73,0.88,0.12,794,0.6,252,0.9
+12906,2023,9,26,21,0,15.4,1.67,0.021,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.256,20.38,122.79,0.88,0.12,794,0.6,244,0.9
+12907,2023,9,26,21,30,14.9,1.67,0.021,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.256,21.04,127.51,0.89,0.12,794,0.6,238,0.9
+12908,2023,9,26,22,0,14.4,1.66,0.021,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.256,21.47,131.77,0.89,0.12,794,0.6,231,1
+12909,2023,9,26,22,30,13.8,1.66,0.021,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.256,22.31,135.42,0.89,0.12,794,0.7,226,1
+12910,2023,9,26,23,0,13.2,1.65,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.256,23.09,138.29,0.89,0.12,794,0.7,222,1.1
+12911,2023,9,26,23,30,12.6,1.65,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.256,24.01,140.2,0.9,0.12,794,0.7,222,1.1
+12912,2023,9,27,0,0,12,1.64,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,24.88,141,0.9,0.12,794,0.7,223,1.2
+12913,2023,9,27,0,30,11.3,1.64,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,26.06,140.63,0.9,0.12,794,0.7,226,1.3
+12914,2023,9,27,1,0,10.7,1.62,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,27.07,139.12,0.9,0.12,793,0.7,229,1.4
+12915,2023,9,27,1,30,10.4,1.62,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,27.62,136.58,0.9,0.12,793,0.7,231,1.4
+12916,2023,9,27,2,0,10.1,1.59,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,28.29,133.2,0.9,0.12,793,0.7,232,1.4
+12917,2023,9,27,2,30,9.9,1.59,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.258,28.67,129.15,0.9,0.12,793,0.7,228,1.3
+12918,2023,9,27,3,0,9.7,1.56,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.258,29.13,124.59,0.9,0.12,793,0.8,223,1.2
+12919,2023,9,27,3,30,9.5,1.56,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.259,29.56,119.64,0.9,0.12,794,0.8,215,1.2
+12920,2023,9,27,4,0,9.3,1.54,0.024,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.26,30.01,114.42,0.9,0.12,794,0.8,206,1.1
+12921,2023,9,27,4,30,9,1.54,0.024,0.63,0,0,0,0,0,-7.4,0,0,14,0,0.26,30.62,108.99,0.9,0.12,794,0.8,199,1.1
+12922,2023,9,27,5,0,8.6,1.53,0.025,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.261,31.61,103.42,0.9,0.12,794,0.8,191,1.1
+12923,2023,9,27,5,30,8.6,1.53,0.025,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.261,31.61,97.77,0.9,0.12,794,0.8,187,1.2
+12924,2023,9,27,6,0,8.5,1.53,0.025,0.63,3,34,2,0,0,-7.2,3,34,0,2,0.261,32.22,92.08,0.9,0.12,794,0.8,182,1.2
+12925,2023,9,27,6,30,10.4,1.53,0.025,0.63,23,414,50,0,0,-7.2,23,414,0,50,0.261,28.36,86.23,0.91,0.12,794,0.8,178,1.4
+12926,2023,9,27,7,0,12.3,1.54,0.026,0.63,33,645,138,0,0,-6.5,33,645,0,138,0.262,26.27,80.67,0.91,0.12,794,0.8,174,1.6
+12927,2023,9,27,7,30,14.3,1.54,0.026,0.63,42,772,240,0,0,-6.5,42,772,0,240,0.261,23.07,75.15,0.91,0.12,794,0.8,178,1.9
+12928,2023,9,27,8,0,16.3,1.55,0.025,0.63,47,849,341,0,0,-6.6,47,849,0,341,0.261,20.17,69.75,0.91,0.12,794,0.8,182,2.2
+12929,2023,9,27,8,30,18.6,1.55,0.025,0.63,52,903,440,0,0,-6.6,52,903,0,440,0.26,17.45,64.55,0.91,0.12,794,0.8,194,2.8
+12930,2023,9,27,9,0,20.8,1.57,0.025,0.63,55,940,530,0,0,-5.3,55,940,0,530,0.26,16.77,59.62,0.91,0.12,794,0.8,205,3.4
+12931,2023,9,27,9,30,21.9,1.57,0.025,0.63,58,967,612,0,0,-5.4,58,967,0,612,0.259,15.66,55.06,0.91,0.12,793,0.8,206,3.7
+12932,2023,9,27,10,0,23,1.58,0.024,0.63,59,987,681,0,0,-5,59,987,0,681,0.259,15.09,50.97,0.91,0.12,793,0.8,206,4
+12933,2023,9,27,10,30,23.8,1.58,0.024,0.63,60,1002,737,0,0,-5,60,1002,0,737,0.258,14.38,47.5,0.91,0.12,793,0.8,208,4.2
+12934,2023,9,27,11,0,24.6,1.58,0.02,0.63,59,1014,778,0,0,-4.9,59,1014,0,778,0.257,13.78,44.81,0.9,0.12,792,0.8,209,4.5
+12935,2023,9,27,11,30,25.2,1.58,0.02,0.63,59,1020,805,0,0,-4.9,59,1020,0,805,0.257,13.29,43.03,0.9,0.12,792,0.8,211,4.6
+12936,2023,9,27,12,0,25.8,1.59,0.02,0.63,59,1022,815,0,0,-5,59,1022,0,815,0.256,12.69,42.3,0.9,0.12,792,0.8,212,4.8
+12937,2023,9,27,12,30,26.1,1.59,0.02,0.63,59,1021,810,0,0,-5,59,1021,0,810,0.255,12.45,42.67,0.9,0.12,791,0.8,214,4.9
+12938,2023,9,27,13,0,26.5,1.61,0.021,0.63,60,1016,789,0,0,-5.3,60,1016,14,789,0.254,11.92,44.11,0.9,0.12,791,0.8,216,5.1
+12939,2023,9,27,13,30,26.6,1.61,0.021,0.63,58,1008,752,0,0,-5.3,58,1008,0,752,0.255,11.83,46.52,0.9,0.12,790,0.8,217,5.1
+12940,2023,9,27,14,0,26.8,1.64,0.022,0.63,58,995,701,0,0,-5.6,58,995,0,701,0.255,11.47,49.75,0.9,0.12,790,0.8,219,5.2
+12941,2023,9,27,14,30,26.6,1.64,0.022,0.63,56,978,636,0,0,-5.6,56,978,0,636,0.255,11.61,53.65,0.9,0.12,790,0.8,220,5.2
+12942,2023,9,27,15,0,26.5,1.68,0.023,0.63,54,955,559,0,0,-5.8,54,955,0,559,0.256,11.47,58.08,0.9,0.12,789,0.8,221,5.2
+12943,2023,9,27,15,30,26,1.68,0.023,0.63,52,923,472,0,0,-5.8,52,923,0,472,0.257,11.81,62.9,0.9,0.12,789,0.8,223,5.1
+12944,2023,9,27,16,0,25.4,1.72,0.024,0.63,48,877,376,0,0,-6,48,877,0,376,0.257,12.12,68.03,0.9,0.12,789,0.8,224,5
+12945,2023,9,27,16,30,23.8,1.72,0.024,0.63,43,808,274,0,0,-6,43,808,0,274,0.258,13.33,73.37,0.9,0.12,789,0.8,225,3.9
+12946,2023,9,27,17,0,22.1,1.73,0.025,0.63,37,701,172,0,0,-5.3,37,701,0,172,0.258,15.59,78.87,0.9,0.12,789,0.7,226,2.9
+12947,2023,9,27,17,30,19.5,1.73,0.025,0.63,26,513,76,0,0,-5.2,26,513,0,76,0.259,18.31,84.44,0.89,0.12,790,0.7,226,2.3
+12948,2023,9,27,18,0,16.9,1.73,0.026,0.63,9,116,9,0,0,-4.9,9,116,0,9,0.26,22.19,89.84,0.89,0.12,790,0.7,227,1.8
+12949,2023,9,27,18,30,16.1,1.73,0.026,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.261,23.34,95.94,0.89,0.12,790,0.7,226,1.8
+12950,2023,9,27,19,0,15.4,1.72,0.027,0.63,0,0,0,0,0,-5,0,0,0,0,0.261,24.11,101.63,0.89,0.12,790,0.7,225,1.7
+12951,2023,9,27,19,30,14.9,1.72,0.027,0.63,0,0,0,0,0,-5,0,0,0,0,0.262,24.89,107.24,0.89,0.12,790,0.7,224,1.7
+12952,2023,9,27,20,0,14.3,1.73,0.026,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.262,25.48,112.74,0.89,0.12,790,0.7,223,1.7
+12953,2023,9,27,20,30,13.8,1.73,0.026,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.262,26.32,118.07,0.89,0.12,790,0.7,224,1.7
+12954,2023,9,27,21,0,13.4,1.73,0.026,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.262,26.65,123.14,0.89,0.12,790,0.7,225,1.7
+12955,2023,9,27,21,30,13,1.73,0.026,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.261,27.36,127.88,0.89,0.12,790,0.7,226,1.6
+12956,2023,9,27,22,0,12.6,1.73,0.025,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.261,27.87,132.15,0.89,0.12,790,0.7,227,1.6
+12957,2023,9,27,22,30,12.3,1.73,0.025,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.26,28.42,135.81,0.89,0.12,790,0.8,226,1.5
+12958,2023,9,27,23,0,12,1.72,0.024,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.259,28.83,138.69,0.89,0.12,790,0.8,226,1.4
+12959,2023,9,27,23,30,11.9,1.72,0.024,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.259,29.02,140.6,0.89,0.12,790,0.8,225,1.3
+12960,2023,9,28,0,0,11.8,1.72,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.04,141.39,0.89,0.12,790,0.8,223,1.2
+12961,2023,9,28,0,30,11.7,1.72,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.23,141.01,0.89,0.12,790,0.8,220,1.1
+12962,2023,9,28,1,0,11.7,1.71,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.11,139.47,0.9,0.12,790,0.8,217,1
+12963,2023,9,28,1,30,11.4,1.71,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.69,136.91,0.9,0.12,790,0.8,208,0.9
+12964,2023,9,28,2,0,11.2,1.69,0.026,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,30.19,133.5,0.9,0.12,790,0.8,199,0.8
+12965,2023,9,28,2,30,11,1.69,0.026,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.259,30.6,129.42,0.9,0.12,790,0.8,188,0.7
+12966,2023,9,28,3,0,10.7,1.67,0.027,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.259,31.58,124.84,0.9,0.12,790,0.8,177,0.6
+12967,2023,9,28,3,30,10.6,1.67,0.027,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.259,31.79,119.87,0.9,0.12,790,0.8,178,0.5
+12968,2023,9,28,4,0,10.4,1.66,0.028,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.26,32.72,114.63,0.9,0.12,790,0.8,178,0.4
+12969,2023,9,28,4,30,10,1.66,0.028,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.26,33.6,109.19,0.9,0.12,790,0.8,232,0.3
+12970,2023,9,28,5,0,9.7,1.66,0.029,0.63,0,0,0,0,0,-5,0,0,0,0,0.26,35.04,103.61,0.9,0.12,790,0.8,286,0.3
+12971,2023,9,28,5,30,9.5,1.66,0.029,0.63,0,0,0,0,0,-5,0,0,0,0,0.26,35.51,97.96,0.9,0.12,790,0.8,292,0.4
+12972,2023,9,28,6,0,9.3,1.66,0.03,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.261,37.13,92.27,0.9,0.12,790,0.8,298,0.5
+12973,2023,9,28,6,30,11,1.66,0.03,0.63,22,364,45,0,0,-4.6,22,364,0,45,0.261,33.15,86.42,0.9,0.12,790,0.8,277,0.6
+12974,2023,9,28,7,0,12.7,1.67,0.031,0.63,35,632,135,0,0,-3.9,35,632,0,135,0.261,31.17,80.87,0.9,0.12,790,0.8,256,0.7
+12975,2023,9,28,7,30,14.8,1.67,0.031,0.63,43,764,236,0,0,-3.9,43,764,0,236,0.261,27.2,75.35,0.9,0.12,790,0.7,243,1.3
+12976,2023,9,28,8,0,16.9,1.66,0.032,0.63,50,845,339,0,0,-4.8,50,845,0,339,0.26,22.32,69.97,0.9,0.12,790,0.7,230,1.9
+12977,2023,9,28,8,30,19,1.66,0.032,0.63,54,899,437,0,0,-4.8,54,899,0,437,0.26,19.57,64.78,0.9,0.12,790,0.7,227,2.7
+12978,2023,9,28,9,0,21.2,1.64,0.032,0.63,59,937,529,0,0,-6.5,59,937,0,529,0.259,14.93,59.87,0.9,0.12,790,0.7,224,3.6
+12979,2023,9,28,9,30,22.2,1.64,0.032,0.63,61,967,611,0,0,-6.5,61,967,0,611,0.259,14.05,55.32,0.9,0.12,790,0.7,222,4.1
+12980,2023,9,28,10,0,23.2,1.61,0.032,0.63,64,988,682,0,0,-7.5,64,988,0,682,0.258,12.24,51.26,0.9,0.12,789,0.6,221,4.6
+12981,2023,9,28,10,30,23.9,1.61,0.032,0.63,64,1005,739,0,0,-7.5,64,1005,0,739,0.258,11.74,47.82,0.9,0.12,789,0.6,221,4.9
+12982,2023,9,28,11,0,24.6,1.69,0.029,0.63,65,1016,782,0,0,-8.4,65,1016,0,782,0.257,10.55,45.15,0.9,0.12,789,0.6,222,5.3
+12983,2023,9,28,11,30,25,1.69,0.029,0.63,65,1022,808,0,0,-8.4,65,1022,0,808,0.256,10.28,43.4,0.9,0.12,788,0.6,222,5.5
+12984,2023,9,28,12,0,25.5,1.67,0.029,0.63,66,1024,819,0,0,-9.2,66,1024,0,819,0.256,9.38,42.69,0.9,0.12,788,0.6,222,5.7
+12985,2023,9,28,12,30,25.7,1.67,0.029,0.63,66,1023,813,0,0,-9.2,66,1023,0,813,0.255,9.27,43.07,0.9,0.12,788,0.6,222,5.8
+12986,2023,9,28,13,0,25.9,1.64,0.03,0.63,66,1018,792,0,0,-10,66,1018,0,792,0.254,8.61,44.51,0.91,0.12,787,0.6,222,5.9
+12987,2023,9,28,13,30,25.9,1.64,0.03,0.63,63,1011,754,0,0,-10,67,998,0,749,0.254,8.61,46.91,0.9,0.12,787,0.6,223,5.9
+12988,2023,9,28,14,0,25.8,1.72,0.028,0.63,61,1000,702,0,7,-10.7,151,761,0,639,0.253,8.2,50.14,0.9,0.12,787,0.6,223,5.9
+12989,2023,9,28,14,30,25.5,1.72,0.028,0.63,59,982,636,0,0,-10.7,95,876,0,610,0.253,8.34,54.02,0.9,0.12,787,0.6,223,5.9
+12990,2023,9,28,15,0,25.2,1.62,0.029,0.63,57,956,558,0,0,-11.3,110,796,0,527,0.253,8.1,58.43,0.9,0.12,786,0.6,223,5.8
+12991,2023,9,28,15,30,24.6,1.62,0.029,0.63,54,922,469,0,0,-11.3,65,891,0,466,0.253,8.4,63.25,0.9,0.12,786,0.6,222,5.6
+12992,2023,9,28,16,0,24,1.51,0.03,0.63,50,873,372,0,0,-11.7,50,873,0,372,0.253,8.43,68.36,0.9,0.12,786,0.6,222,5.4
+12993,2023,9,28,16,30,22.4,1.51,0.03,0.63,45,801,270,0,0,-11.7,45,801,0,270,0.254,9.3,73.7,0.9,0.12,787,0.6,221,4.4
+12994,2023,9,28,17,0,20.9,1.43,0.032,0.63,38,687,167,0,0,-11.1,38,687,0,167,0.254,10.66,79.19,0.9,0.11,787,0.6,220,3.3
+12995,2023,9,28,17,30,18.2,1.43,0.032,0.63,27,482,71,0,0,-11.1,27,482,0,71,0.255,12.6,84.75,0.9,0.11,787,0.6,219,2.6
+12996,2023,9,28,18,0,15.6,1.38,0.034,0.63,7,84,7,0,0,-10.4,7,84,0,7,0.255,15.71,90.12,0.9,0.11,787,0.6,218,2
+12997,2023,9,28,18,30,14.8,1.38,0.034,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.256,16.56,96.26,0.9,0.11,788,0.6,219,1.9
+12998,2023,9,28,19,0,14,1.34,0.038,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.256,17.23,101.95,0.9,0.11,788,0.7,220,1.9
+12999,2023,9,28,19,30,13.4,1.34,0.038,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.257,17.92,107.57,0.9,0.11,788,0.7,225,1.8
+13000,2023,9,28,20,0,12.8,1.28,0.041,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.257,18.9,113.07,0.91,0.11,788,0.7,230,1.7
+13001,2023,9,28,20,30,12.2,1.28,0.041,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.258,19.66,118.4,0.91,0.11,788,0.7,239,1.6
+13002,2023,9,28,21,0,11.7,1.2,0.045,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.258,22.06,123.49,0.91,0.11,788,0.7,249,1.5
+13003,2023,9,28,21,30,11.2,1.2,0.045,0.63,0,0,0,0,8,-9.3,0,0,0,0,0.258,22.8,128.24,0.91,0.11,788,0.7,264,1.3
+13004,2023,9,28,22,0,10.7,1.15,0.046,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.258,27.75,132.52,0.91,0.11,789,0.7,278,1.1
+13005,2023,9,28,22,30,10.4,1.15,0.046,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.258,28.31,136.2,0.91,0.11,789,0.7,294,0.9
+13006,2023,9,28,23,0,10.1,1.11,0.046,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.257,33.59,139.08,0.91,0.11,789,0.7,311,0.8
+13007,2023,9,28,23,30,9.8,1.11,0.046,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.257,34.27,140.99,0.91,0.11,789,0.7,335,0.7
+13008,2023,9,29,0,0,9.5,1.08,0.047,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.256,37.8,141.78,0.91,0.11,789,0.8,359,0.6
+13009,2023,9,29,0,30,9.1,1.08,0.047,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.255,38.83,141.38,0.91,0.11,789,0.8,201,0.6
+13010,2023,9,29,1,0,8.6,1.06,0.046,0.63,0,0,0,0,0,-3.8,0,0,0,0,0.254,41.44,139.82,0.91,0.11,789,0.8,43,0.7
+13011,2023,9,29,1,30,8.1,1.06,0.046,0.63,0,0,0,0,0,-3.8,0,0,0,0,0.254,42.87,137.23,0.91,0.11,789,0.8,53,0.9
+13012,2023,9,29,2,0,7.6,1.03,0.046,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.254,44.71,133.79,0.91,0.11,789,0.8,62,1
+13013,2023,9,29,2,30,7.3,1.03,0.046,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.254,45.64,129.69,0.91,0.11,789,0.8,67,1
+13014,2023,9,29,3,0,7,1,0.048,0.63,0,0,0,0,0,-3.8,0,0,0,0,0.255,45.99,125.08,0.91,0.11,789,0.8,72,1.1
+13015,2023,9,29,3,30,6.8,1,0.048,0.63,0,0,0,0,0,-3.8,0,0,0,0,0.255,46.62,120.1,0.92,0.11,789,0.8,74,1.1
+13016,2023,9,29,4,0,6.7,0.98,0.049,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.255,45.42,114.84,0.92,0.11,789,0.8,77,1.1
+13017,2023,9,29,4,30,6.7,0.98,0.049,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.256,45.42,109.39,0.92,0.11,789,0.8,78,1.1
+13018,2023,9,29,5,0,6.7,0.97,0.049,0.63,0,0,0,0,0,-5,0,0,0,0,0.256,43.13,103.81,0.92,0.11,789,0.8,80,1.1
+13019,2023,9,29,5,30,6.9,0.97,0.049,0.63,0,0,0,0,0,-5,0,0,0,0,0.257,42.55,98.15,0.92,0.11,789,0.8,82,1
+13020,2023,9,29,6,0,7.2,0.97,0.049,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.258,39.77,92.45,0.92,0.11,789,0.8,84,0.9
+13021,2023,9,29,6,30,9,0.97,0.049,0.63,24,289,41,0,0,-5.6,24,289,0,41,0.258,35.2,86.6,0.92,0.11,789,0.8,93,0.8
+13022,2023,9,29,7,0,10.8,0.96,0.05,0.63,40,567,128,0,0,-5.7,40,567,0,128,0.259,31.04,81.06,0.92,0.11,789,0.8,101,0.8
+13023,2023,9,29,7,30,12.7,0.96,0.05,0.63,50,711,227,0,0,-5.7,50,711,0,227,0.26,27.39,75.55,0.92,0.11,789,0.8,134,1
+13024,2023,9,29,8,0,14.7,0.96,0.053,0.63,57,798,328,0,0,-6.3,57,798,0,328,0.261,22.9,70.18,0.92,0.11,790,0.8,167,1.3
+13025,2023,9,29,8,30,17,0.96,0.053,0.63,65,855,426,0,0,-6.3,65,855,0,426,0.262,19.78,65.01,0.92,0.11,790,0.8,188,2.3
+13026,2023,9,29,9,0,19.3,0.93,0.057,0.63,70,893,515,0,0,-6.7,70,893,0,515,0.262,16.6,60.11,0.93,0.11,790,0.8,208,3.4
+13027,2023,9,29,9,30,20.5,0.93,0.057,0.63,75,921,595,0,0,-6.7,75,921,0,595,0.262,15.42,55.59,0.93,0.11,790,0.8,211,4
+13028,2023,9,29,10,0,21.6,0.91,0.06,0.63,79,941,664,0,0,-6.7,79,941,0,664,0.263,14.41,51.56,0.93,0.11,789,0.8,214,4.5
+13029,2023,9,29,10,30,22.4,0.91,0.06,0.63,79,962,721,0,0,-6.7,79,962,0,721,0.263,13.73,48.14,0.92,0.11,789,0.8,213,4.9
+13030,2023,9,29,11,0,23.2,0.85,0.048,0.63,76,981,764,0,0,-6.9,76,981,0,764,0.263,12.91,45.5,0.92,0.11,789,0.8,213,5.3
+13031,2023,9,29,11,30,23.7,0.85,0.048,0.63,77,990,792,0,0,-6.9,77,990,0,792,0.263,12.53,43.77,0.92,0.11,789,0.8,212,5.5
+13032,2023,9,29,12,0,24.3,0.85,0.045,0.63,76,995,803,0,0,-7.3,76,995,0,803,0.262,11.7,43.07,0.92,0.11,788,0.8,212,5.7
+13033,2023,9,29,12,30,24.6,0.85,0.045,0.63,75,996,798,0,0,-7.3,75,996,0,798,0.262,11.49,43.46,0.92,0.11,788,0.7,211,5.8
+13034,2023,9,29,13,0,25,0.84,0.042,0.63,74,993,777,0,0,-7.8,74,993,0,777,0.262,10.76,44.91,0.92,0.11,788,0.7,211,5.9
+13035,2023,9,29,13,30,25.1,0.84,0.042,0.63,72,987,741,0,0,-7.8,72,987,0,741,0.262,10.68,47.3,0.91,0.11,787,0.7,211,6
+13036,2023,9,29,14,0,25.2,0.73,0.037,0.63,69,977,690,0,0,-8.3,69,977,0,690,0.261,10.27,50.52,0.91,0.11,787,0.7,211,6
+13037,2023,9,29,14,30,25,0.73,0.037,0.63,66,959,624,0,0,-8.3,66,959,0,624,0.261,10.39,54.39,0.91,0.11,787,0.7,212,6
+13038,2023,9,29,15,0,24.8,0.71,0.035,0.63,62,934,546,0,0,-8.3,62,934,0,546,0.261,10.45,58.79,0.91,0.11,787,0.7,212,5.9
+13039,2023,9,29,15,30,24.3,0.71,0.035,0.63,58,900,458,0,0,-8.3,58,900,0,458,0.261,10.77,63.59,0.91,0.11,787,0.7,211,5.7
+13040,2023,9,29,16,0,23.7,0.71,0.033,0.63,53,850,362,0,0,-8.1,53,850,0,362,0.261,11.37,68.7,0.91,0.11,787,0.7,211,5.4
+13041,2023,9,29,16,30,22.1,0.71,0.033,0.63,46,777,260,0,0,-8.1,46,777,0,260,0.261,12.52,74.03,0.91,0.11,787,0.7,210,4.2
+13042,2023,9,29,17,0,20.5,0.81,0.03,0.63,37,662,158,0,0,-7.1,37,662,0,158,0.261,14.88,79.51,0.91,0.12,787,0.7,209,3
+13043,2023,9,29,17,30,17.9,0.81,0.03,0.63,26,457,65,0,0,-7.2,26,457,0,65,0.261,17.49,85.07,0.91,0.12,787,0.7,207,2.3
+13044,2023,9,29,18,0,15.4,0.99,0.026,0.63,7,78,6,0,0,-6.5,7,78,0,6,0.261,21.56,90.87,0.9,0.12,787,0.7,205,1.6
+13045,2023,9,29,18,30,14.7,0.99,0.026,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,22.55,96.58,0.91,0.12,787,0.7,201,1.6
+13046,2023,9,29,19,0,14,1.16,0.024,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,23.51,102.26,0.91,0.12,788,0.7,197,1.5
+13047,2023,9,29,19,30,13.5,1.16,0.024,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,24.28,107.89,0.91,0.12,788,0.7,193,1.5
+13048,2023,9,29,20,0,12.9,1.29,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,24.54,113.4,0.91,0.12,787,0.7,188,1.6
+13049,2023,9,29,20,30,12.5,1.29,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,25.19,118.74,0.91,0.12,787,0.7,186,1.7
+13050,2023,9,29,21,0,12.1,1.39,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.264,25,123.84,0.91,0.12,787,0.7,183,1.8
+13051,2023,9,29,21,30,11.7,1.39,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.264,25.66,128.6,0.91,0.12,787,0.7,181,1.8
+13052,2023,9,29,22,0,11.4,1.45,0.024,0.63,0,0,0,0,0,-7.6,0,0,0,0,0.264,25.67,132.89,0.91,0.12,787,0.7,178,1.8
+13053,2023,9,29,22,30,11.1,1.45,0.024,0.63,0,0,0,0,0,-7.6,0,0,0,0,0.264,26.19,136.58,0.91,0.12,787,0.7,176,1.9
+13054,2023,9,29,23,0,10.9,1.46,0.026,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.264,26.36,139.48,0.91,0.12,787,0.7,175,1.9
+13055,2023,9,29,23,30,10.7,1.46,0.026,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,26.71,141.39,0.91,0.12,787,0.7,175,2
+13056,2023,9,30,0,0,10.5,1.45,0.028,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,27.02,142.17,0.91,0.12,787,0.7,175,2.1
+13057,2023,9,30,0,30,10.4,1.45,0.028,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,27.2,141.75,0.91,0.12,787,0.7,178,2.2
+13058,2023,9,30,1,0,10.3,1.41,0.029,0.63,0,0,0,0,0,-7.6,0,0,0,0,0.265,27.57,140.17,0.91,0.12,787,0.7,181,2.4
+13059,2023,9,30,1,30,10.1,1.41,0.029,0.63,0,0,0,0,0,-7.6,0,0,0,0,0.266,27.94,137.55,0.91,0.12,787,0.6,185,2.4
+13060,2023,9,30,2,0,9.8,1.37,0.03,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.266,29.3,134.08,0.91,0.12,787,0.6,189,2.4
+13061,2023,9,30,2,30,9.4,1.37,0.03,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.266,30.1,129.95,0.9,0.12,787,0.6,192,2.3
+13062,2023,9,30,3,0,9,1.34,0.03,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.265,32.1,125.32,0.9,0.12,787,0.6,195,2.2
+13063,2023,9,30,3,30,8.6,1.34,0.03,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.265,32.97,120.32,0.9,0.12,787,0.6,197,2.2
+13064,2023,9,30,4,0,8.2,1.32,0.03,0.63,0,0,0,0,0,-6.3,0,0,29,0,0.265,35.13,115.05,0.9,0.12,787,0.6,198,2.2
+13065,2023,9,30,4,30,7.8,1.32,0.03,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.265,36.09,109.59,0.9,0.12,787,0.6,197,2.1
+13066,2023,9,30,5,0,7.4,1.32,0.03,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.265,38.18,104,0.9,0.12,787,0.6,195,2.1
+13067,2023,9,30,5,30,7.3,1.32,0.03,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.265,38.44,98.34,0.9,0.12,787,0.6,194,2.1
+13068,2023,9,30,6,0,7.2,1.32,0.03,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.265,39.44,92.64,0.9,0.12,788,0.6,193,2.1
+13069,2023,9,30,6,30,9.3,1.32,0.03,0.63,22,346,41,0,0,-5.7,22,346,0,41,0.264,34.21,86.79,0.9,0.12,788,0.7,192,2.7
+13070,2023,9,30,7,0,11.4,1.33,0.029,0.63,34,625,129,0,0,-5.6,34,625,0,129,0.264,29.95,81.26,0.9,0.12,788,0.7,192,3.4
+13071,2023,9,30,7,30,13.6,1.33,0.029,0.63,42,761,229,0,0,-5.6,42,761,0,229,0.264,25.94,75.76,0.91,0.12,788,0.7,192,3.8
+13072,2023,9,30,8,0,15.7,1.33,0.028,0.63,48,841,330,0,0,-6,48,841,0,330,0.263,21.92,70.4,0.91,0.12,788,0.8,192,4.1
+13073,2023,9,30,8,30,18,1.33,0.028,0.63,53,893,427,0,0,-6,53,893,0,427,0.262,18.96,65.24,0.91,0.12,788,0.8,194,5.3
+13074,2023,9,30,9,0,20.2,1.33,0.029,0.63,57,931,517,0,0,-8.1,57,931,0,517,0.261,14.05,60.36,0.91,0.12,788,0.8,196,6.4
+13075,2023,9,30,9,30,21.2,1.33,0.029,0.63,60,955,596,0,0,-8.1,154,628,4,506,0.26,13.22,55.86,0.91,0.12,788,0.9,197,6.8
+13076,2023,9,30,10,0,22.2,1.35,0.03,0.63,63,972,663,2,0,-8.2,147,620,21,530,0.259,12.36,51.85,0.92,0.12,788,0.9,198,7.2
+13077,2023,9,30,10,30,23,1.35,0.03,0.63,64,986,718,2,7,-8.2,245,123,29,327,0.259,11.78,48.46,0.92,0.12,788,0.9,198,7.3
+13078,2023,9,30,11,0,23.7,1.4,0.03,0.63,65,993,757,0,7,-7.3,211,86,7,271,0.258,12.12,45.84,0.92,0.12,787,1,198,7.4
+13079,2023,9,30,11,30,24.3,1.4,0.03,0.63,68,997,783,0,7,-7.3,269,235,4,438,0.258,11.7,44.14,0.92,0.12,787,1,197,7.4
+13080,2023,9,30,12,0,24.8,1.41,0.032,0.63,67,997,791,0,0,-6.3,170,650,4,642,0.258,12.21,43.46,0.93,0.12,787,1.1,197,7.5
+13081,2023,9,30,12,30,25.1,1.41,0.032,0.63,68,994,785,0,0,-6.3,180,706,0,689,0.258,11.98,43.86,0.93,0.12,786,1.1,196,7.4
+13082,2023,9,30,13,0,25.4,1.43,0.033,0.63,68,987,762,0,0,-5.5,145,756,0,677,0.258,12.52,45.3,0.93,0.12,786,1.1,196,7.4
+13083,2023,9,30,13,30,25.5,1.43,0.033,0.63,67,978,725,0,0,-5.5,82,935,0,711,0.259,12.44,47.69,0.93,0.12,786,1.1,195,7.3
+13084,2023,9,30,14,0,25.5,1.43,0.033,0.63,65,965,674,0,0,-4.9,71,950,0,670,0.26,13.04,50.9,0.93,0.12,786,1.1,194,7.3
+13085,2023,9,30,14,30,25.3,1.43,0.033,0.63,63,947,609,0,0,-4.9,63,947,0,609,0.26,13.18,54.76,0.93,0.12,785,1.1,194,7.2
+13086,2023,9,30,15,0,25.1,1.43,0.032,0.63,59,923,532,0,0,-4.6,59,923,0,532,0.261,13.68,59.15,0.93,0.12,785,1.1,194,7.2
+13087,2023,9,30,15,30,24.7,1.43,0.032,0.63,56,885,445,0,0,-4.6,88,767,0,425,0.261,14.01,63.94,0.93,0.12,785,1.1,195,6.9
+13088,2023,9,30,16,0,24.2,1.38,0.034,0.63,51,832,349,0,0,-4.5,54,819,7,347,0.262,14.58,69.03,0.93,0.12,785,1.1,195,6.6
+13089,2023,9,30,16,30,22.9,1.38,0.034,0.63,46,751,249,0,7,-4.5,93,338,7,184,0.262,15.77,74.35,0.94,0.12,785,1.1,195,5.4
+13090,2023,9,30,17,0,21.6,1.14,0.031,0.62,38,631,149,2,7,-4.1,43,172,29,73,0.262,17.55,79.83,0.95,0.12,785,1.1,195,4.2
+13091,2023,9,30,17,30,19.6,1.14,0.031,0.62,26,413,59,7,7,-4.1,32,4,100,32,0.263,19.84,85.38,0.95,0.12,785,1.2,195,3.1
+13092,2023,9,30,18,0,17.7,1.13,0.037,0.62,5,41,4,3,7,-3.6,2,0,43,2,0.263,23.21,91.19,0.96,0.12,785,1.2,196,2.1
+13093,2023,9,30,18,30,17.1,1.13,0.037,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.263,24.1,96.89,0.96,0.12,785,1.2,197,1.9
+13094,2023,9,30,19,0,16.6,1.13,0.039,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,25.14,102.58,0.96,0.12,784,1.2,199,1.7
+13095,2023,9,30,19,30,16.2,1.13,0.039,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,25.78,108.21,0.96,0.12,784,1.2,195,1.7
+13096,2023,9,30,20,0,15.9,1.06,0.05,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,26.25,113.73,0.97,0.12,784,1.3,191,1.7
+13097,2023,9,30,20,30,15.8,1.06,0.05,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.262,26.42,119.08,0.97,0.12,784,1.3,176,2.3
+13098,2023,9,30,21,0,15.8,1.02,0.056,0.62,0,0,0,0,6,-1.9,0,0,0,0,0.262,29.6,124.18,0.97,0.12,785,1.4,161,2.8
+13099,2023,9,30,21,30,15.4,1.02,0.056,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.262,30.37,128.95,0.96,0.12,785,1.4,156,3.5
+13100,2023,9,30,22,0,14.9,1.03,0.053,0.62,0,0,0,0,0,1.5,0,0,0,0,0.262,40.27,133.27,0.96,0.12,785,1.5,151,4.1
+13101,2023,9,30,22,30,14,1.03,0.053,0.62,0,0,0,0,3,1.5,0,0,0,0,0.263,42.67,136.96,0.96,0.12,785,1.5,151,4.2
+13102,2023,9,30,23,0,13.1,1.04,0.052,0.62,0,0,0,0,5,3.9,0,0,0,0,0.264,53.6,139.87,0.96,0.12,786,1.5,150,4.2
+13103,2023,9,30,23,30,12.5,1.04,0.052,0.62,0,0,0,0,5,3.9,0,0,0,0,0.265,55.75,141.79,0.96,0.12,786,1.5,152,3.8
+13104,2023,10,1,0,0,11.8,1.02,0.052,0.62,0,0,0,0,3,4.6,0,0,0,0,0.266,61.49,142.56,0.95,0.12,786,1.5,153,3.4
+13105,2023,10,1,0,30,11.5,1.02,0.052,0.62,0,0,0,0,5,4.6,0,0,0,0,0.266,62.72,142.13,0.96,0.12,786,1.5,159,3
+13106,2023,10,1,1,0,11.1,0.95,0.056,0.62,0,0,0,0,0,4.5,0,0,0,0,0.267,63.61,140.51,0.96,0.12,786,1.5,164,2.5
+13107,2023,10,1,1,30,11.1,0.95,0.056,0.62,0,0,0,0,0,4.5,0,0,0,0,0.268,63.61,137.87,0.96,0.12,786,1.5,169,2.4
+13108,2023,10,1,2,0,11.1,0.86,0.058,0.62,0,0,0,0,0,3.8,0,0,0,0,0.268,60.81,134.37,0.96,0.12,786,1.5,175,2.3
+13109,2023,10,1,2,30,11.2,0.86,0.058,0.62,0,0,0,0,3,3.8,0,0,0,0,0.269,60.4,130.22,0.96,0.12,786,1.5,179,2.4
+13110,2023,10,1,3,0,11.4,0.8,0.059,0.62,0,0,0,0,8,2.8,0,0,0,0,0.27,55.63,125.57,0.96,0.12,786,1.5,183,2.5
+13111,2023,10,1,3,30,11.4,0.8,0.059,0.62,0,0,0,0,5,2.8,0,0,0,0,0.27,55.63,120.55,0.96,0.12,786,1.5,186,2.5
+13112,2023,10,1,4,0,11.5,0.79,0.057,0.62,0,0,0,0,5,1.7,0,0,0,0,0.271,50.85,115.26,0.96,0.12,786,1.5,189,2.5
+13113,2023,10,1,4,30,11.3,0.79,0.057,0.62,0,0,0,0,5,1.7,0,0,0,0,0.272,51.52,109.79,0.95,0.12,786,1.4,190,2.5
+13114,2023,10,1,5,0,11.1,0.81,0.05,0.62,0,0,0,0,5,0.9,0,0,0,0,0.273,49.53,104.19,0.95,0.12,786,1.4,190,2.6
+13115,2023,10,1,5,30,10.9,0.81,0.05,0.62,0,0,0,0,4,0.9,0,0,0,0,0.274,50.19,98.53,0.95,0.12,786,1.4,190,2.7
+13116,2023,10,1,6,0,10.7,0.81,0.045,0.62,0,0,0,1,4,1,0,0,14,0,0.274,50.99,92.83,0.94,0.12,787,1.3,191,2.9
+13117,2023,10,1,6,30,12.1,0.81,0.045,0.62,21,257,35,7,8,1,15,0,100,15,0.275,46.49,86.97,0.94,0.12,787,1.3,194,3.7
+13118,2023,10,1,7,0,13.4,0.79,0.045,0.62,37,537,117,5,8,1.3,32,1,68,32,0.276,43.8,81.45,0.94,0.12,787,1.3,197,4.5
+13119,2023,10,1,7,30,14.6,0.79,0.045,0.62,48,684,214,5,8,1.3,67,13,71,70,0.276,40.53,75.96,0.94,0.12,787,1.3,200,5.4
+13120,2023,10,1,8,0,15.8,0.77,0.048,0.62,57,772,313,5,8,1.7,73,2,71,74,0.276,38.52,70.61,0.94,0.12,787,1.3,203,6.2
+13121,2023,10,1,8,30,16.5,0.77,0.048,0.62,63,832,408,3,5,1.7,86,1,43,86,0.277,36.85,65.47,0.94,0.12,787,1.4,203,6.7
+13122,2023,10,1,9,0,17.1,0.78,0.05,0.62,68,873,496,0,5,2,125,6,0,128,0.277,36.2,60.61,0.95,0.12,788,1.4,204,7.3
+13123,2023,10,1,9,30,17.6,0.78,0.05,0.62,72,902,575,2,5,2,268,70,25,307,0.277,35.08,56.13,0.95,0.12,788,1.4,205,7.5
+13124,2023,10,1,10,0,18.1,0.76,0.053,0.62,76,922,642,3,8,2.2,152,34,43,173,0.277,34.56,52.15,0.95,0.12,788,1.4,206,7.7
+13125,2023,10,1,10,30,18.4,0.76,0.053,0.62,78,938,696,0,5,2.2,242,63,4,284,0.278,33.92,48.78,0.95,0.12,788,1.4,207,7.9
+13126,2023,10,1,11,0,18.7,0.73,0.052,0.62,79,949,736,0,5,2.2,107,0,4,107,0.279,33.29,46.19,0.95,0.12,788,1.4,208,8.1
+13127,2023,10,1,11,30,18.9,0.73,0.052,0.62,81,954,761,0,5,2.2,236,183,0,367,0.279,32.88,44.51,0.95,0.12,788,1.4,208,8.1
+13128,2023,10,1,12,0,19,0.76,0.054,0.62,82,954,770,0,5,2,179,9,0,185,0.28,32.16,43.85,0.96,0.12,788,1.5,209,8.1
+13129,2023,10,1,12,30,19.1,0.76,0.054,0.62,82,954,765,0,5,2,99,0,0,99,0.28,31.96,44.25,0.96,0.12,788,1.5,210,7.9
+13130,2023,10,1,13,0,19.2,0.76,0.051,0.62,80,951,744,0,5,1.6,83,0,0,83,0.28,30.93,45.7,0.96,0.12,788,1.4,210,7.7
+13131,2023,10,1,13,30,19.2,0.76,0.051,0.62,78,942,707,0,5,1.6,194,15,0,204,0.28,30.93,48.08,0.96,0.12,788,1.4,213,7.3
+13132,2023,10,1,14,0,19.2,0.78,0.05,0.62,75,929,656,0,5,1.4,163,23,0,177,0.28,30.53,51.28,0.96,0.12,788,1.4,215,6.9
+13133,2023,10,1,14,30,18.9,0.78,0.05,0.62,74,905,591,0,5,1.4,85,96,0,140,0.279,31.11,55.13,0.96,0.12,788,1.4,218,6.6
+13134,2023,10,1,15,0,18.7,0.8,0.055,0.62,71,872,514,0,3,1.4,214,282,0,357,0.279,31.46,59.5,0.96,0.12,788,1.4,220,6.2
+13135,2023,10,1,15,30,18.2,0.8,0.055,0.62,65,833,427,0,5,1.4,211,235,0,313,0.279,32.46,64.28,0.96,0.12,788,1.4,222,5.7
+13136,2023,10,1,16,0,17.8,0.79,0.053,0.62,59,777,333,0,3,1.3,145,362,0,273,0.278,33.04,69.37,0.96,0.12,788,1.4,224,5.1
+13137,2023,10,1,16,30,16.9,0.79,0.053,0.62,51,695,235,0,3,1.3,99,424,0,211,0.278,34.97,74.68,0.96,0.12,788,1.4,228,4.2
+13138,2023,10,1,17,0,16.1,0.8,0.05,0.62,41,565,138,1,0,1.3,50,485,14,133,0.278,36.64,80.15,0.96,0.12,788,1.4,232,3.2
+13139,2023,10,1,17,30,14.3,0.8,0.05,0.62,27,328,52,5,3,1.3,31,107,68,39,0.278,41.17,85.68,0.96,0.12,789,1.4,243,2.2
+13140,2023,10,1,18,0,12.5,0.82,0.051,0.62,4,23,3,2,5,1.3,1,0,29,1,0.278,46.52,91.5,0.96,0.12,789,1.4,253,1.1
+13141,2023,10,1,18,30,12,0.82,0.051,0.62,0,0,0,0,5,1.3,0,0,0,0,0.278,48.07,97.21,0.96,0.12,789,1.4,261,1
+13142,2023,10,1,19,0,11.6,0.83,0.053,0.62,0,0,0,0,5,1.4,0,0,0,0,0.277,49.67,102.89,0.96,0.12,790,1.4,269,0.9
+13143,2023,10,1,19,30,11.6,0.83,0.053,0.62,0,0,0,0,5,1.4,0,0,0,0,0.277,49.67,108.53,0.96,0.12,790,1.5,271,0.9
+13144,2023,10,1,20,0,11.7,0.82,0.052,0.62,0,0,0,0,5,1.6,0,0,0,0,0.277,49.96,114.05,0.96,0.12,790,1.5,273,0.8
+13145,2023,10,1,20,30,11.8,0.82,0.052,0.62,0,0,0,0,0,1.6,0,0,0,0,0.277,49.63,119.41,0.96,0.12,790,1.5,274,0.7
+13146,2023,10,1,21,0,11.9,0.8,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.276,49.99,124.53,0.96,0.12,790,1.5,275,0.5
+13147,2023,10,1,21,30,11.8,0.8,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.276,50.32,129.31,0.96,0.12,790,1.5,250,0.3
+13148,2023,10,1,22,0,11.7,0.78,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.276,51.84,133.64,0.96,0.12,790,1.5,224,0.1
+13149,2023,10,1,22,30,11.5,0.78,0.054,0.62,0,0,0,0,4,2.1,0,0,0,0,0.276,52.53,137.35,0.96,0.12,790,1.6,165,0.3
+13150,2023,10,1,23,0,11.3,0.76,0.052,0.62,0,0,0,0,4,2.6,0,0,0,0,0.276,55.23,140.26,0.96,0.12,790,1.6,105,0.4
+13151,2023,10,1,23,30,10.9,0.76,0.052,0.62,0,0,0,0,5,2.6,0,0,0,0,0.276,56.71,142.18,0.96,0.12,790,1.6,107,0.6
+13152,2023,10,2,0,0,10.4,0.77,0.053,0.62,0,0,0,0,5,3.4,0,0,0,0,0.276,61.92,142.95,0.96,0.12,790,1.6,109,0.8
+13153,2023,10,2,0,30,10.1,0.77,0.053,0.62,0,0,0,0,4,3.4,0,0,0,0,0.276,63.17,142.5,0.96,0.12,790,1.7,116,1
+13154,2023,10,2,1,0,9.8,0.78,0.053,0.62,0,0,0,0,4,4.3,0,0,0,0,0.276,68.61,140.86,0.96,0.12,790,1.7,123,1.2
+13155,2023,10,2,1,30,9.6,0.78,0.053,0.62,0,0,0,0,5,4.3,0,0,0,0,0.276,69.45,138.19,0.96,0.12,789,1.7,124,1.4
+13156,2023,10,2,2,0,9.5,0.81,0.051,0.62,0,0,0,0,7,4.9,0,0,0,0,0.276,72.98,134.66,0.96,0.12,789,1.7,126,1.5
+13157,2023,10,2,2,30,9.3,0.81,0.051,0.62,0,0,0,0,8,4.9,0,0,0,0,0.276,73.97,130.48,0.95,0.12,789,1.7,125,1.7
+13158,2023,10,2,3,0,9.1,0.84,0.047,0.62,0,0,0,0,5,5.3,0,0,0,0,0.276,77.13,125.81,0.95,0.12,789,1.7,125,1.9
+13159,2023,10,2,3,30,8.8,0.84,0.047,0.62,0,0,0,0,5,5.3,0,0,0,0,0.276,78.7,120.77,0.95,0.12,789,1.7,124,1.9
+13160,2023,10,2,4,0,8.6,0.86,0.044,0.62,0,0,0,0,5,5.6,0,0,0,0,0.277,81.37,115.47,0.95,0.12,789,1.7,122,1.9
+13161,2023,10,2,4,30,8.5,0.86,0.044,0.62,0,0,0,0,4,5.6,0,0,0,0,0.277,81.92,109.99,0.95,0.12,789,1.7,121,1.8
+13162,2023,10,2,5,0,8.4,0.89,0.044,0.62,0,0,0,0,4,5.7,0,0,0,0,0.277,83.07,104.39,0.95,0.12,788,1.7,119,1.8
+13163,2023,10,2,5,30,8.4,0.89,0.044,0.62,0,0,0,0,5,5.7,0,0,0,0,0.277,83.07,98.72,0.95,0.12,788,1.7,123,1.7
+13164,2023,10,2,6,0,8.5,0.92,0.048,0.62,0,0,0,1,4,5.8,0,0,14,0,0.277,82.98,93.02,0.96,0.12,788,1.7,126,1.6
+13165,2023,10,2,6,30,9.7,0.92,0.048,0.62,22,230,33,7,5,5.8,6,0,100,6,0.277,76.55,87.16,0.96,0.12,788,1.7,132,2.1
+13166,2023,10,2,7,0,10.9,0.95,0.057,0.62,39,497,111,3,5,6.2,7,0,43,7,0.277,72.86,81.65,0.96,0.12,787,1.7,138,2.6
+13167,2023,10,2,7,30,11.5,0.95,0.057,0.62,52,636,204,0,7,6.2,5,0,0,5,0.277,70.02,76.17,0.97,0.12,787,1.8,156,3.2
+13168,2023,10,2,8,0,12.2,0.98,0.077,0.62,65,714,299,0,7,6.6,63,4,0,64,0.276,68.57,70.83,0.97,0.12,787,1.8,175,3.7
+13169,2023,10,2,8,30,12.3,0.98,0.077,0.62,73,774,392,0,6,6.6,43,1,0,43,0.276,68.21,65.7,0.97,0.12,788,1.8,189,4.7
+13170,2023,10,2,9,0,12.4,0.99,0.089,0.62,82,813,478,0,6,6.7,19,0,0,19,0.276,68.05,60.86,0.97,0.12,788,1.8,204,5.7
+13171,2023,10,2,9,30,12.2,0.99,0.089,0.62,86,852,557,0,6,6.7,44,0,0,44,0.276,68.95,56.41,0.97,0.12,788,1.7,210,6
+13172,2023,10,2,10,0,11.9,0.98,0.082,0.62,88,882,626,0,6,6.3,48,0,0,48,0.276,68.61,52.44,0.97,0.12,788,1.7,217,6.4
+13173,2023,10,2,10,30,12,0.98,0.082,0.62,85,917,685,0,6,6.3,146,22,0,160,0.277,68.24,49.11,0.96,0.12,789,1.6,219,6.7
+13174,2023,10,2,11,0,12,0.95,0.048,0.62,76,952,731,0,6,5.3,297,66,0,342,0.278,63.58,46.54,0.96,0.12,789,1.5,220,6.9
+13175,2023,10,2,11,30,12.6,0.95,0.048,0.62,73,969,760,0,6,5.3,224,41,0,253,0.279,61.12,44.88,0.95,0.12,789,1.4,217,7.3
+13176,2023,10,2,12,0,13.1,0.9,0.032,0.62,69,985,775,0,6,3.3,219,18,0,232,0.28,51.49,44.23,0.94,0.12,789,1.2,215,7.6
+13177,2023,10,2,12,30,13.6,0.9,0.032,0.62,66,992,772,0,6,3.3,280,91,0,345,0.281,49.84,44.65,0.92,0.12,789,1.1,215,7.9
+13178,2023,10,2,13,0,14.1,0.77,0.023,0.62,62,998,754,0,6,0.7,289,102,0,360,0.282,40,46.09,0.91,0.12,789,1,214,8.2
+13179,2023,10,2,13,30,14.4,0.77,0.023,0.62,62,992,720,0,9,0.7,144,2,0,145,0.284,39.23,48.47,0.92,0.12,789,0.9,216,8
+13180,2023,10,2,14,0,14.6,0.8,0.025,0.62,61,982,670,0,6,-1.6,227,153,0,322,0.285,32.81,51.66,0.92,0.12,788,0.8,217,7.7
+13181,2023,10,2,14,30,14.6,0.8,0.025,0.62,58,965,605,0,6,-1.6,181,10,0,187,0.287,32.81,55.49,0.92,0.12,788,0.8,220,7.3
+13182,2023,10,2,15,0,14.5,0.73,0.024,0.62,55,942,528,0,6,-3,215,37,0,234,0.289,29.76,59.86,0.92,0.12,788,0.7,222,6.8
+13183,2023,10,2,15,30,14.1,0.73,0.024,0.62,53,906,441,0,6,-3,198,59,0,223,0.291,30.54,64.62,0.92,0.12,788,0.7,225,6.4
+13184,2023,10,2,16,0,13.6,0.69,0.024,0.62,47,855,344,0,6,-3.8,161,38,0,174,0.293,29.74,69.7,0.91,0.12,788,0.7,227,5.9
+13185,2023,10,2,16,30,12.7,0.69,0.024,0.62,42,778,243,0,6,-3.8,87,117,0,117,0.296,31.53,75,0.91,0.12,788,0.7,228,5.1
+13186,2023,10,2,17,0,11.9,0.68,0.023,0.62,34,651,142,2,6,-3.8,58,85,29,72,0.298,33.25,80.46,0.91,0.12,788,0.7,230,4.2
+13187,2023,10,2,17,30,10.2,0.68,0.023,0.62,23,415,52,7,7,-3.8,30,6,100,30,0.3,37.21,85.99,0.91,0.12,788,0.7,232,3.1
+13188,2023,10,2,18,0,8.6,0.68,0.024,0.62,3,34,2,2,7,-3,1,0,29,1,0.303,43.93,91.81,0.91,0.12,788,0.7,234,2.1
+13189,2023,10,2,18,30,8,0.68,0.024,0.62,0,0,0,0,7,-3,0,0,0,0,0.305,45.75,97.52,0.91,0.12,788,0.7,237,2
+13190,2023,10,2,19,0,7.3,0.7,0.025,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.306,48.83,103.21,0.91,0.12,788,0.7,240,1.9
+13191,2023,10,2,19,30,6.9,0.7,0.025,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.307,50.19,108.84,0.91,0.12,788,0.8,244,1.9
+13192,2023,10,2,20,0,6.5,0.73,0.026,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.308,52.48,114.37,0.92,0.12,788,0.8,247,1.9
+13193,2023,10,2,20,30,6.1,0.73,0.026,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.308,53.94,119.74,0.92,0.12,788,0.8,250,1.9
+13194,2023,10,2,21,0,5.7,0.77,0.029,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.308,56.96,124.87,0.92,0.12,788,0.8,252,1.9
+13195,2023,10,2,21,30,5.3,0.77,0.029,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.308,58.56,129.66,0.92,0.12,788,0.8,252,1.8
+13196,2023,10,2,22,0,4.9,0.81,0.031,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.309,62.47,134,0.93,0.12,788,0.9,253,1.7
+13197,2023,10,2,22,30,4.5,0.81,0.031,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.309,64.23,137.73,0.93,0.12,788,0.9,251,1.5
+13198,2023,10,2,23,0,4.2,0.82,0.033,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.308,68.11,140.65,0.93,0.12,788,0.9,250,1.3
+13199,2023,10,2,23,30,3.9,0.82,0.033,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.308,69.55,142.58,0.93,0.12,788,0.9,248,1.2
+13200,2023,10,3,0,0,3.7,0.83,0.034,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.308,72.62,143.34,0.93,0.12,788,0.9,245,1.1
+13201,2023,10,3,0,30,3.5,0.83,0.034,0.62,0,0,0,0,4,-0.7,0,0,0,0,0.308,73.74,142.87,0.93,0.12,789,0.9,242,1.1
+13202,2023,10,3,1,0,3.3,0.84,0.035,0.62,0,0,0,0,4,-0.5,0,0,0,0,0.308,76.37,141.21,0.93,0.12,789,1,239,1
+13203,2023,10,3,1,30,3.1,0.84,0.035,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.308,77.46,138.5,0.93,0.12,789,1,236,1
+13204,2023,10,3,2,0,2.9,0.86,0.036,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.308,79.83,134.95,0.94,0.12,788,1,233,1
+13205,2023,10,3,2,30,2.7,0.86,0.036,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.308,80.97,130.74,0.94,0.12,788,1,232,1
+13206,2023,10,3,3,0,2.6,0.89,0.04,0.62,0,0,0,0,0,0,0,0,0,0,0.308,82.8,126.05,0.94,0.12,788,1,231,1.1
+13207,2023,10,3,3,30,2.7,0.89,0.04,0.62,0,0,0,0,0,0,0,0,0,0,0.308,82.32,120.99,0.94,0.12,789,1,229,1.1
+13208,2023,10,3,4,0,2.8,0.9,0.043,0.62,0,0,0,0,0,0.2,0,0,0,0,0.308,82.86,115.68,0.94,0.12,789,1,227,1.1
+13209,2023,10,3,4,30,2.8,0.9,0.043,0.62,0,0,0,0,0,0.2,0,0,0,0,0.308,82.86,110.19,0.94,0.12,789,1,225,1.1
+13210,2023,10,3,5,0,2.7,0.91,0.043,0.62,0,0,0,0,0,0.3,0,0,0,0,0.308,84.47,104.58,0.94,0.12,789,1,223,1.2
+13211,2023,10,3,5,30,2.6,0.91,0.043,0.62,0,0,0,0,0,0.3,0,0,0,0,0.308,85.07,98.91,0.94,0.12,789,1,221,1.2
+13212,2023,10,3,6,0,2.5,0.92,0.04,0.62,0,0,0,0,0,0.5,0,0,0,0,0.308,86.63,93.21,0.94,0.12,789,1,218,1.2
+13213,2023,10,3,6,30,3.7,0.92,0.04,0.62,20,242,31,3,0,0.5,18,90,39,22,0.308,79.59,87.34,0.94,0.12,789,1,219,1.7
+13214,2023,10,3,7,0,4.8,0.94,0.037,0.62,35,555,114,3,0,0.6,56,294,43,98,0.309,74.01,81.84,0.94,0.12,790,1,219,2.3
+13215,2023,10,3,7,30,6.4,0.94,0.037,0.62,44,709,211,0,0,0.6,68,547,0,197,0.308,66.25,76.38,0.94,0.12,790,1,228,2.5
+13216,2023,10,3,8,0,8,0.94,0.034,0.62,50,803,311,0,0,-0.5,50,803,0,311,0.307,54.83,71.05,0.93,0.12,790,1.1,237,2.7
+13217,2023,10,3,8,30,9,0.94,0.034,0.62,56,864,408,0,0,-0.5,56,864,0,408,0.305,51.24,65.94,0.93,0.12,790,1,240,3
+13218,2023,10,3,9,0,10,0.94,0.032,0.62,59,907,497,0,0,-1.5,74,858,0,488,0.304,44.65,61.12,0.93,0.12,790,1,242,3.2
+13219,2023,10,3,9,30,10.6,0.94,0.032,0.62,61,939,577,0,0,-1.5,71,912,0,572,0.303,42.9,56.68,0.93,0.12,790,1,242,3.4
+13220,2023,10,3,10,0,11.3,0.95,0.029,0.62,63,962,645,0,0,-2,63,962,0,645,0.302,39.52,52.74,0.93,0.12,790,1,242,3.5
+13221,2023,10,3,10,30,11.9,0.95,0.029,0.62,66,974,699,0,0,-2,66,974,0,699,0.301,37.99,49.43,0.93,0.12,790,1,241,3.5
+13222,2023,10,3,11,0,12.5,1.04,0.035,0.62,69,980,739,0,0,-2.3,81,956,0,734,0.3,35.64,46.89,0.94,0.12,790,1,240,3.6
+13223,2023,10,3,11,30,12.9,1.04,0.035,0.62,70,987,765,0,0,-2.3,254,554,0,644,0.298,34.73,45.25,0.94,0.12,790,1,239,3.6
+13224,2023,10,3,12,0,13.4,1.05,0.034,0.62,70,990,775,0,5,-2.4,292,441,0,606,0.296,33.5,44.62,0.94,0.12,790,1,238,3.6
+13225,2023,10,3,12,30,13.6,1.05,0.034,0.62,70,987,767,0,5,-2.4,263,387,0,536,0.294,33.07,45.04,0.94,0.12,790,1.1,239,3.6
+13226,2023,10,3,13,0,13.9,1.07,0.036,0.62,69,981,745,0,4,-2.3,168,4,0,171,0.291,32.64,46.48,0.94,0.12,790,1.1,239,3.7
+13227,2023,10,3,13,30,13.8,1.07,0.036,0.62,72,964,706,0,4,-2.3,81,0,0,81,0.289,32.85,48.86,0.95,0.12,790,1.1,243,3.5
+13228,2023,10,3,14,0,13.8,1.11,0.049,0.62,73,941,652,0,4,-2.1,114,0,0,114,0.287,33.16,52.03,0.95,0.12,790,1.1,247,3.4
+13229,2023,10,3,14,30,13.3,1.11,0.049,0.62,73,913,585,0,5,-2.1,145,5,0,148,0.286,34.25,55.86,0.96,0.12,790,1.1,257,3.3
+13230,2023,10,3,15,0,12.8,1.13,0.06,0.62,71,875,506,0,7,-1.7,53,1,0,53,0.284,36.52,60.21,0.96,0.12,790,1.2,266,3.2
+13231,2023,10,3,15,30,12.1,1.13,0.06,0.62,68,827,418,0,7,-1.7,24,0,0,24,0.284,38.24,64.96,0.96,0.12,790,1.2,278,3.2
+13232,2023,10,3,16,0,11.4,1.14,0.069,0.62,63,757,322,0,8,-0.7,59,11,0,63,0.283,43.05,70.03,0.97,0.12,790,1.2,289,3.1
+13233,2023,10,3,16,30,10.6,1.14,0.069,0.62,54,670,224,0,8,-0.7,34,4,0,35,0.284,45.39,75.32,0.96,0.12,790,1.2,301,2.7
+13234,2023,10,3,17,0,9.9,1.14,0.063,0.62,42,532,127,3,7,0.4,32,4,43,33,0.284,51.75,80.78,0.96,0.12,791,1.3,312,2.4
+13235,2023,10,3,17,30,9,1.14,0.063,0.62,25,293,44,7,8,0.4,23,2,100,23,0.285,54.97,86.29,0.96,0.12,791,1.2,326,1.7
+13236,2023,10,3,18,0,8.2,1.14,0.054,0.62,3,19,2,2,4,1.2,0,0,29,0,0.286,61.2,92.12,0.96,0.12,791,1.2,340,1
+13237,2023,10,3,18,30,7.8,1.14,0.054,0.62,0,0,0,0,4,1.2,0,0,0,0,0.286,62.88,97.83,0.96,0.12,791,1.2,174,0.8
+13238,2023,10,3,19,0,7.3,1.14,0.05,0.62,0,0,0,0,5,1.4,0,0,0,0,0.287,66.38,103.52,0.96,0.12,792,1.2,7,0.7
+13239,2023,10,3,19,30,7.1,1.14,0.05,0.62,0,0,0,0,5,1.4,0,0,0,0,0.287,67.3,109.16,0.95,0.12,792,1.2,19,0.7
+13240,2023,10,3,20,0,6.8,1.14,0.046,0.62,0,0,0,0,5,1.5,0,0,0,0,0.286,68.74,114.7,0.95,0.12,792,1.2,31,0.7
+13241,2023,10,3,20,30,6.5,1.14,0.046,0.62,0,0,0,0,5,1.5,0,0,0,0,0.286,70.17,120.07,0.95,0.12,792,1.2,36,0.6
+13242,2023,10,3,21,0,6.2,1.14,0.042,0.62,0,0,0,0,5,1.4,0,0,0,0,0.286,71.31,125.21,0.95,0.12,792,1.2,40,0.5
+13243,2023,10,3,21,30,5.9,1.14,0.042,0.62,0,0,0,0,5,1.4,0,0,0,0,0.285,72.8,130.02,0.95,0.12,792,1.2,30,0.5
+13244,2023,10,3,22,0,5.6,1.14,0.04,0.62,0,0,0,0,4,1.4,0,0,0,0,0.285,74.45,134.37,0.95,0.12,792,1.2,20,0.4
+13245,2023,10,3,22,30,5.2,1.14,0.04,0.62,0,0,0,0,4,1.4,0,0,0,0,0.285,76.54,138.11,0.95,0.12,792,1.2,186,0.4
+13246,2023,10,3,23,0,4.8,1.14,0.038,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,79.02,141.04,0.95,0.12,792,1.2,351,0.4
+13247,2023,10,3,23,30,4.6,1.14,0.038,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,80.13,142.97,0.95,0.12,792,1.2,344,0.4
+13248,2023,10,4,0,0,4.3,1.14,0.037,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,82.11,143.73,0.95,0.12,792,1.2,337,0.4
+13249,2023,10,4,0,30,4.2,1.14,0.037,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,82.69,143.24,0.95,0.12,792,1.2,333,0.4
+13250,2023,10,4,1,0,4,1.13,0.037,0.62,0,0,0,0,0,1.6,0,0,0,0,0.284,84.48,141.55,0.95,0.12,793,1.2,330,0.4
+13251,2023,10,4,1,30,4,1.13,0.037,0.62,0,0,0,0,0,1.6,0,0,0,0,0.284,84.48,138.82,0.95,0.12,793,1.2,331,0.4
+13252,2023,10,4,2,0,4.1,1.13,0.037,0.62,0,0,0,0,4,1.8,0,0,0,0,0.283,84.68,135.24,0.95,0.12,793,1.2,332,0.4
+13253,2023,10,4,2,30,4,1.13,0.037,0.62,0,0,0,0,4,1.8,0,0,0,0,0.283,85.27,131.01,0.95,0.12,793,1.2,334,0.4
+13254,2023,10,4,3,0,3.9,1.15,0.035,0.62,0,0,0,0,4,1.8,0,0,0,0,0.282,86.34,126.29,0.95,0.12,793,1.3,336,0.4
+13255,2023,10,4,3,30,3.8,1.15,0.035,0.62,0,0,0,0,0,1.8,0,0,0,0,0.282,86.95,121.22,0.95,0.12,793,1.3,338,0.4
+13256,2023,10,4,4,0,3.7,1.17,0.032,0.62,0,0,0,0,0,1.9,0,0,0,0,0.282,87.85,115.89,0.95,0.12,793,1.3,341,0.4
+13257,2023,10,4,4,30,3.7,1.17,0.032,0.62,0,0,0,0,0,1.9,0,0,0,0,0.283,87.85,110.39,0.95,0.12,793,1.3,341,0.4
+13258,2023,10,4,5,0,3.7,1.18,0.03,0.62,0,0,0,0,0,2,0,0,0,0,0.283,88.37,104.77,0.95,0.12,793,1.3,341,0.4
+13259,2023,10,4,5,30,3.7,1.18,0.03,0.62,0,0,0,0,0,2,0,0,0,0,0.283,88.37,99.1,0.95,0.12,793,1.3,339,0.5
+13260,2023,10,4,6,0,3.7,1.19,0.029,0.62,0,0,0,0,0,2.1,0,0,0,0,0.283,89.16,93.41,0.95,0.12,794,1.2,337,0.5
+13261,2023,10,4,6,30,4.6,1.19,0.029,0.62,19,258,30,0,0,2.1,19,258,0,30,0.284,83.72,87.52,0.95,0.12,794,1.2,336,0.9
+13262,2023,10,4,7,0,5.6,1.19,0.028,0.62,33,572,112,0,0,2.4,33,572,0,112,0.284,80.01,82.04,0.95,0.12,794,1.2,336,1.3
+13263,2023,10,4,7,30,6.8,1.19,0.028,0.62,41,722,209,0,0,2.4,66,548,0,193,0.284,73.67,76.58,0.95,0.12,794,1.2,335,1.5
+13264,2023,10,4,8,0,8,1.2,0.026,0.62,46,815,308,0,0,2.7,46,815,0,308,0.284,69.41,71.27,0.95,0.12,794,1.1,334,1.7
+13265,2023,10,4,8,30,9.2,1.2,0.026,0.62,52,874,405,0,0,2.7,52,874,0,405,0.283,64.01,66.17,0.95,0.12,794,1.1,323,1.7
+13266,2023,10,4,9,0,10.4,1.19,0.024,0.62,55,917,494,0,0,2.3,82,793,0,462,0.281,57.08,61.37,0.95,0.12,794,1.1,312,1.6
+13267,2023,10,4,9,30,11.3,1.19,0.024,0.62,57,948,574,0,0,2.3,88,818,0,534,0.279,53.77,56.96,0.94,0.12,794,1.1,301,1.8
+13268,2023,10,4,10,0,12.3,1.2,0.022,0.62,57,971,641,0,3,1.4,217,324,0,412,0.277,47.26,53.04,0.94,0.12,794,1.1,291,2
+13269,2023,10,4,10,30,13.1,1.2,0.022,0.62,58,988,696,0,4,1.4,157,7,0,162,0.274,44.86,49.75,0.94,0.12,794,1.1,289,2.2
+13270,2023,10,4,11,0,13.9,1.21,0.016,0.62,55,1001,735,0,4,0.5,214,7,0,219,0.272,40.01,47.23,0.93,0.12,794,1.1,286,2.3
+13271,2023,10,4,11,30,14.5,1.21,0.016,0.62,55,1008,760,0,4,0.5,360,104,0,433,0.27,38.49,45.62,0.92,0.12,794,1.1,286,2.4
+13272,2023,10,4,12,0,15.2,1.21,0.014,0.62,53,1012,769,0,3,-0.3,393,136,0,489,0.268,34.65,45,0.92,0.12,794,1.1,285,2.4
+13273,2023,10,4,12,30,15.7,1.21,0.014,0.62,53,1011,762,0,4,-0.3,307,30,0,328,0.266,33.51,45.43,0.91,0.12,793,1.1,287,2.4
+13274,2023,10,4,13,0,16.2,1.23,0.012,0.62,50,1008,739,0,4,-1.1,249,10,0,256,0.265,30.63,46.88,0.91,0.12,793,1.1,289,2.4
+13275,2023,10,4,13,30,16.5,1.23,0.012,0.62,53,994,702,0,4,-1.1,357,99,0,422,0.265,30.05,49.25,0.92,0.12,793,1.1,295,2.5
+13276,2023,10,4,14,0,16.8,1.25,0.021,0.62,57,974,651,0,4,-1.8,334,112,0,402,0.265,28.03,52.41,0.93,0.12,793,1.1,300,2.5
+13277,2023,10,4,14,30,16.8,1.25,0.021,0.62,56,954,586,0,5,-1.8,302,114,0,365,0.265,28.03,56.23,0.93,0.12,793,1.1,305,2.6
+13278,2023,10,4,15,0,16.8,1.26,0.021,0.62,52,928,508,0,3,-2.3,187,481,0,423,0.265,27.1,60.56,0.92,0.12,793,1.1,310,2.7
+13279,2023,10,4,15,30,16.4,1.26,0.021,0.62,49,891,421,0,0,-2.3,83,760,0,400,0.265,27.79,65.31,0.92,0.12,793,1.1,314,2.7
+13280,2023,10,4,16,0,16,1.28,0.021,0.62,45,837,326,0,3,-2.3,147,273,0,239,0.265,28.4,70.36,0.92,0.12,793,1.1,318,2.8
+13281,2023,10,4,16,30,14.8,1.28,0.021,0.62,39,757,227,0,3,-2.3,94,405,0,194,0.265,30.67,75.65,0.93,0.12,793,1.2,323,2.3
+13282,2023,10,4,17,0,13.6,1.3,0.021,0.62,32,626,129,3,4,-1,72,36,43,78,0.265,36.63,81.09,0.93,0.12,793,1.2,328,1.7
+13283,2023,10,4,17,30,12,1.3,0.021,0.62,21,355,42,7,3,-1,24,1,100,24,0.266,40.71,86.59,0.93,0.12,794,1.2,335,1.4
+13284,2023,10,4,18,0,10.4,1.3,0.022,0.62,0,0,0,1,3,-0.7,0,0,14,0,0.266,46.03,92.43,0.93,0.12,794,1.2,343,1.2
+13285,2023,10,4,18,30,9.8,1.3,0.022,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.266,47.97,98.13,0.93,0.12,795,1.2,346,1.3
+13286,2023,10,4,19,0,9.2,1.29,0.022,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.266,50.68,103.83,0.92,0.12,795,1.2,349,1.5
+13287,2023,10,4,19,30,8.6,1.29,0.022,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.266,52.84,109.47,0.92,0.12,796,1.2,349,1.6
+13288,2023,10,4,20,0,7.9,1.27,0.021,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.266,56.75,115.01,0.92,0.12,796,1.2,349,1.7
+13289,2023,10,4,20,30,7.4,1.27,0.021,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.266,58.71,120.4,0.92,0.12,796,1.2,349,1.7
+13290,2023,10,4,21,0,6.8,1.24,0.021,0.62,0,0,0,0,0,0.2,0,0,0,0,0.267,62.85,125.55,0.92,0.12,796,1.2,349,1.6
+13291,2023,10,4,21,30,6.3,1.24,0.021,0.62,0,0,0,0,0,0.2,0,0,0,0,0.267,65.13,130.37,0.92,0.12,797,1.2,349,1.6
+13292,2023,10,4,22,0,5.8,1.22,0.02,0.62,0,0,0,0,0,0.6,0,0,0,0,0.268,69.17,134.74,0.92,0.12,797,1.2,349,1.5
+13293,2023,10,4,22,30,5.3,1.22,0.02,0.62,0,0,0,0,4,0.6,0,0,0,0,0.268,71.61,138.49,0.92,0.12,797,1.1,351,1.4
+13294,2023,10,4,23,0,4.9,1.22,0.02,0.62,0,0,0,0,4,0.9,0,0,0,0,0.268,75.16,141.43,0.92,0.12,797,1.1,353,1.3
+13295,2023,10,4,23,30,4.5,1.22,0.02,0.62,0,0,0,0,3,0.9,0,0,0,0,0.268,77.28,143.37,0.91,0.12,797,1.1,355,1.2
+13296,2023,10,5,0,0,4.1,1.23,0.019,0.62,0,0,0,0,4,1,0,0,0,0,0.269,80.42,144.12,0.91,0.12,797,1.1,358,1.1
+13297,2023,10,5,0,30,3.8,1.23,0.019,0.62,0,0,0,0,4,1,0,0,0,0,0.269,82.13,143.61,0.91,0.12,797,1,182,1
+13298,2023,10,5,1,0,3.5,1.22,0.017,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,84.36,141.9,0.91,0.12,797,1,5,1
+13299,2023,10,5,1,30,3.3,1.22,0.017,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,85.56,139.13,0.91,0.12,797,1,7,0.9
+13300,2023,10,5,2,0,3,1.2,0.016,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,87.63,135.53,0.91,0.12,797,1,10,0.9
+13301,2023,10,5,2,30,2.9,1.2,0.016,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,88.25,131.27,0.91,0.12,797,1,12,0.8
+13302,2023,10,5,3,0,2.7,1.19,0.015,0.62,0,0,0,0,0,1.2,0,0,0,0,0.268,89.57,126.53,0.91,0.12,797,0.9,14,0.8
+13303,2023,10,5,3,30,2.6,1.19,0.015,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,90.21,121.44,0.92,0.12,797,0.9,17,0.8
+13304,2023,10,5,4,0,2.4,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,91.57,116.1,0.92,0.12,798,0.9,19,0.8
+13305,2023,10,5,4,30,2.3,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,92.22,110.59,0.92,0.12,798,0.9,21,0.8
+13306,2023,10,5,5,0,2.1,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,93.53,104.97,0.92,0.12,798,0.9,22,0.8
+13307,2023,10,5,5,30,2.1,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,93.53,99.29,0.92,0.12,798,1,23,0.8
+13308,2023,10,5,6,0,2.1,1.2,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,93.57,93.6,0.92,0.12,798,1,23,0.8
+13309,2023,10,5,6,30,3.7,1.2,0.014,0.62,17,294,29,0,0,1.2,17,294,0,29,0.267,83.56,87.71,0.92,0.12,798,1,23,1.1
+13310,2023,10,5,7,0,5.3,1.21,0.014,0.62,28,614,111,0,0,1.2,28,614,0,111,0.267,75,82.24,0.92,0.12,799,1,23,1.4
+13311,2023,10,5,7,30,7.2,1.21,0.014,0.62,35,756,208,0,0,1.2,35,756,0,208,0.267,65.81,76.79,0.92,0.12,799,1,27,1.8
+13312,2023,10,5,8,0,9,1.22,0.014,0.62,40,841,307,0,0,1,40,841,0,307,0.266,57.33,71.49,0.92,0.12,799,1,31,2.1
+13313,2023,10,5,8,30,10.5,1.22,0.014,0.62,44,895,402,0,0,1,44,895,0,402,0.266,51.86,66.41,0.92,0.12,799,1,34,2
+13314,2023,10,5,9,0,11.9,1.23,0.014,0.62,47,933,490,0,0,0.5,47,933,0,490,0.265,45.58,61.63,0.92,0.12,799,1,37,1.8
+13315,2023,10,5,9,30,12.9,1.23,0.014,0.62,48,961,568,0,0,0.5,48,961,0,568,0.264,42.69,57.23,0.92,0.12,799,1,32,1.6
+13316,2023,10,5,10,0,13.9,1.24,0.014,0.62,50,981,636,0,0,0.1,50,981,0,636,0.263,38.79,53.34,0.92,0.12,799,1,27,1.4
+13317,2023,10,5,10,30,14.7,1.24,0.014,0.62,53,993,690,0,0,0.1,53,993,0,690,0.263,36.84,50.08,0.92,0.12,799,1,17,1.3
+13318,2023,10,5,11,0,15.5,1.19,0.017,0.62,56,1001,731,0,0,-0.2,56,1001,0,731,0.262,34.17,47.58,0.93,0.12,799,1,6,1.2
+13319,2023,10,5,11,30,16.2,1.19,0.017,0.62,57,1006,756,0,0,-0.3,57,1006,0,756,0.261,32.64,45.98,0.92,0.12,798,1,177,1.2
+13320,2023,10,5,12,0,16.9,1.2,0.016,0.62,56,1009,765,0,0,-0.5,56,1009,0,765,0.261,30.62,45.38,0.92,0.12,798,1,347,1.3
+13321,2023,10,5,12,30,17.4,1.2,0.016,0.62,56,1008,758,0,0,-0.5,56,1008,0,758,0.26,29.67,45.82,0.92,0.12,798,1,344,1.4
+13322,2023,10,5,13,0,17.9,1.22,0.015,0.62,55,1004,736,0,0,-0.7,55,1004,0,736,0.259,28.31,47.27,0.92,0.12,797,1,341,1.5
+13323,2023,10,5,13,30,18.2,1.22,0.015,0.62,53,996,698,0,0,-0.7,53,996,0,698,0.259,27.78,49.63,0.92,0.12,797,1,339,1.4
+13324,2023,10,5,14,0,18.5,1.25,0.013,0.62,51,984,646,0,0,-0.9,51,984,0,646,0.258,26.86,52.78,0.91,0.12,797,1,338,1.4
+13325,2023,10,5,14,30,18.5,1.25,0.013,0.62,48,966,580,0,0,-0.9,48,966,0,580,0.259,26.86,56.59,0.91,0.12,797,1,335,1.3
+13326,2023,10,5,15,0,18.6,1.24,0.013,0.62,46,940,503,0,0,-1.2,46,940,0,503,0.259,26.19,60.91,0.91,0.12,796,1,332,1.3
+13327,2023,10,5,15,30,18.2,1.24,0.013,0.62,43,905,416,0,0,-1.2,43,905,0,416,0.259,26.85,65.65,0.91,0.12,796,1,332,1.2
+13328,2023,10,5,16,0,17.9,1.22,0.013,0.62,39,855,322,0,0,-1.4,39,855,0,322,0.26,27.01,70.69,0.91,0.12,796,1,332,1.2
+13329,2023,10,5,16,30,16.7,1.22,0.013,0.62,35,777,223,0,0,-1.4,35,777,0,223,0.26,29.13,75.97,0.9,0.12,796,1,168,0.8
+13330,2023,10,5,17,0,15.6,1.21,0.013,0.62,28,647,125,0,0,0.6,28,647,0,125,0.26,36.02,81.4,0.9,0.12,796,1,3,0.5
+13331,2023,10,5,17,30,14.2,1.21,0.013,0.62,19,373,39,0,0,0.6,19,373,0,39,0.261,39.46,86.89,0.9,0.12,797,1,33,0.6
+13332,2023,10,5,18,0,12.8,1.2,0.013,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.261,40.42,92.74,0.9,0.12,797,1,62,0.7
+13333,2023,10,5,18,30,12,1.2,0.013,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.261,42.6,98.44,0.9,0.12,797,0.9,72,0.8
+13334,2023,10,5,19,0,11.3,1.2,0.013,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.261,43.8,104.14,0.9,0.12,797,0.9,81,0.8
+13335,2023,10,5,19,30,10.7,1.2,0.013,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.262,45.64,109.78,0.9,0.12,798,1,83,0.9
+13336,2023,10,5,20,0,10.2,1.19,0.013,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.262,46.28,115.33,0.9,0.12,798,1,85,0.9
+13337,2023,10,5,20,30,9.7,1.19,0.013,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.262,47.85,120.72,0.9,0.12,798,1,81,0.9
+13338,2023,10,5,21,0,9.2,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,48.98,125.88,0.91,0.12,798,1,77,0.9
+13339,2023,10,5,21,30,8.7,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,50.65,130.72,0.91,0.12,798,1,74,0.9
+13340,2023,10,5,22,0,8.2,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,52.45,135.1,0.91,0.12,798,1,71,0.9
+13341,2023,10,5,22,30,7.9,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,53.52,138.86,0.91,0.12,798,1.1,66,0.8
+13342,2023,10,5,23,0,7.6,1.19,0.015,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.263,55.08,141.82,0.91,0.12,798,1.1,60,0.8
+13343,2023,10,5,23,30,7.2,1.19,0.015,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.263,56.6,143.76,0.91,0.12,798,1.1,51,0.8
+13344,2023,10,6,0,0,6.9,1.2,0.015,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.263,58.52,144.5,0.91,0.12,798,1.1,41,0.9
+13345,2023,10,6,0,30,6.4,1.2,0.015,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.264,60.56,143.98,0.91,0.12,798,1.1,35,0.9
+13346,2023,10,6,1,0,5.9,1.22,0.016,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.264,63.7,142.24,0.91,0.12,798,1.1,30,1
+13347,2023,10,6,1,30,5.5,1.22,0.016,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.264,65.49,139.45,0.91,0.12,798,1.1,27,1.1
+13348,2023,10,6,2,0,5.1,1.23,0.016,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.264,68.41,135.81,0.91,0.12,798,1.1,24,1.2
+13349,2023,10,6,2,30,4.8,1.23,0.016,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.265,69.85,131.53,0.91,0.12,798,1.1,22,1.4
+13350,2023,10,6,3,0,4.6,1.23,0.016,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.265,71.62,126.77,0.91,0.12,798,1.1,21,1.7
+13351,2023,10,6,3,30,4.2,1.23,0.016,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.265,73.75,121.66,0.91,0.12,799,1.1,21,1.9
+13352,2023,10,6,4,0,3.9,1.21,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.266,75.7,116.31,0.92,0.12,799,1.1,22,2.2
+13353,2023,10,6,4,30,3.6,1.21,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.266,77.32,110.79,0.92,0.12,799,1,24,2.3
+13354,2023,10,6,5,0,3.3,1.19,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.267,79.16,105.16,0.92,0.12,799,1,26,2.4
+13355,2023,10,6,5,30,3.1,1.19,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.267,80.28,99.48,0.92,0.12,799,1,27,2.5
+13356,2023,10,6,6,0,3,1.16,0.016,0.62,0,0,0,0,0,0.1,0,0,0,0,0.268,81.05,93.79,0.92,0.12,799,1,28,2.6
+13357,2023,10,6,6,30,4.3,1.16,0.016,0.62,17,278,27,0,0,0.1,17,278,0,27,0.269,73.97,87.89,0.92,0.12,799,1,29,3.2
+13358,2023,10,6,7,0,5.5,1.14,0.016,0.62,29,601,108,0,0,0.1,29,601,0,108,0.27,68.41,82.44,0.92,0.12,799,1,30,3.8
+13359,2023,10,6,7,30,7.4,1.14,0.016,0.62,37,749,205,0,0,0.1,37,749,0,205,0.272,60.04,77,0.92,0.12,799,1,38,4.1
+13360,2023,10,6,8,0,9.2,1.13,0.016,0.62,41,837,304,0,0,0.3,41,837,0,304,0.273,53.74,71.71,0.92,0.12,799,0.9,46,4.3
+13361,2023,10,6,8,30,10.9,1.13,0.016,0.62,46,894,400,0,0,0.3,46,894,0,400,0.274,47.98,66.65,0.92,0.12,799,0.9,50,4.2
+13362,2023,10,6,9,0,12.6,1.14,0.016,0.62,48,934,488,0,0,0.4,48,934,0,488,0.275,43.34,61.88,0.92,0.12,799,0.9,53,4
+13363,2023,10,6,9,30,13.7,1.14,0.016,0.62,50,962,567,0,0,0.5,50,962,0,567,0.276,40.34,57.51,0.92,0.12,799,0.9,51,3.9
+13364,2023,10,6,10,0,14.8,1.14,0.015,0.62,53,982,635,0,0,0.4,53,982,0,635,0.277,37.37,53.64,0.92,0.12,799,0.9,49,3.8
+13365,2023,10,6,10,30,15.6,1.14,0.015,0.62,52,998,688,0,0,0.4,52,998,0,688,0.278,35.5,50.4,0.92,0.12,799,0.9,48,3.8
+13366,2023,10,6,11,0,16.4,1.23,0.012,0.62,50,1010,727,0,0,0,50,1010,0,727,0.278,32.94,47.93,0.91,0.12,799,0.9,46,3.8
+13367,2023,10,6,11,30,17,1.23,0.012,0.62,50,1017,752,0,0,0.1,50,1017,0,752,0.278,31.71,46.35,0.91,0.12,799,0.9,46,3.8
+13368,2023,10,6,12,0,17.7,1.24,0.011,0.62,50,1021,762,0,0,-0.5,50,1021,0,762,0.279,29.06,45.77,0.91,0.12,798,0.9,45,3.8
+13369,2023,10,6,12,30,18.1,1.24,0.011,0.62,49,1020,755,0,0,-0.5,49,1020,0,755,0.278,28.34,46.21,0.9,0.12,798,0.9,44,3.8
+13370,2023,10,6,13,0,18.5,1.26,0.011,0.62,48,1015,732,0,0,-1.2,48,1015,0,732,0.278,26.34,47.66,0.9,0.12,798,0.9,44,3.8
+13371,2023,10,6,13,30,18.7,1.26,0.011,0.62,48,1007,695,0,0,-1.2,48,1007,0,695,0.278,26.01,50.01,0.9,0.12,798,0.8,42,3.8
+13372,2023,10,6,14,0,18.8,1.2,0.012,0.62,48,994,644,0,0,-1.8,48,994,0,644,0.277,24.67,53.16,0.9,0.12,797,0.8,40,3.8
+13373,2023,10,6,14,30,18.7,1.2,0.012,0.62,46,976,578,0,0,-1.8,46,976,0,578,0.277,24.82,56.95,0.9,0.12,797,0.8,38,3.8
+13374,2023,10,6,15,0,18.5,1.21,0.011,0.62,44,950,501,0,0,-2.4,44,950,0,501,0.277,24.05,61.26,0.9,0.12,797,0.8,36,3.8
+13375,2023,10,6,15,30,17.9,1.21,0.011,0.62,41,914,413,0,0,-2.4,41,914,0,413,0.276,24.97,65.98,0.9,0.12,797,0.8,34,3.9
+13376,2023,10,6,16,0,17.4,1.21,0.011,0.62,37,863,318,0,0,-2.9,37,863,0,318,0.276,24.84,71.02,0.9,0.12,797,0.8,33,3.9
+13377,2023,10,6,16,30,15.8,1.21,0.011,0.62,33,785,219,0,0,-2.9,33,785,0,219,0.276,27.48,76.28,0.9,0.12,797,0.8,31,3.3
+13378,2023,10,6,17,0,14.3,1.22,0.011,0.62,27,653,121,0,0,-2.8,27,653,0,121,0.276,30.65,81.71,0.9,0.12,797,0.8,29,2.7
+13379,2023,10,6,17,30,12.3,1.22,0.011,0.62,19,375,37,0,0,-2.8,19,375,0,37,0.276,34.91,87.19,0.9,0.12,797,0.7,29,2.4
+13380,2023,10,6,18,0,10.2,1.23,0.011,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.276,40.01,93.04,0.9,0.12,797,0.7,28,2.1
+13381,2023,10,6,18,30,9.6,1.23,0.011,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.276,41.7,98.75,0.9,0.12,798,0.7,30,2.3
+13382,2023,10,6,19,0,8.9,1.24,0.012,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.276,42.15,104.44,0.9,0.12,798,0.7,31,2.5
+13383,2023,10,6,19,30,8.2,1.24,0.012,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.276,44.19,110.09,0.9,0.12,798,0.7,34,2.5
+13384,2023,10,6,20,0,7.5,1.25,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,45.19,115.65,0.9,0.12,798,0.7,36,2.4
+13385,2023,10,6,20,30,6.9,1.25,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,47.08,121.05,0.9,0.12,798,0.7,39,2.3
+13386,2023,10,6,21,0,6.3,1.25,0.011,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.276,47.98,126.22,0.89,0.12,798,0.7,41,2.2
+13387,2023,10,6,21,30,5.7,1.25,0.011,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.276,50,131.06,0.89,0.12,798,0.6,43,2.1
+13388,2023,10,6,22,0,5.2,1.25,0.011,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.276,50.65,135.46,0.89,0.12,798,0.6,44,2
+13389,2023,10,6,22,30,4.7,1.25,0.011,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.276,52.45,139.24,0.89,0.12,798,0.6,45,1.8
+13390,2023,10,6,23,0,4.2,1.24,0.011,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.276,53.33,142.21,0.89,0.12,798,0.6,45,1.7
+13391,2023,10,6,23,30,3.8,1.24,0.011,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.275,54.85,144.15,0.89,0.12,798,0.6,45,1.7
+13392,2023,10,7,0,0,3.5,1.24,0.011,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.275,55.45,144.89,0.89,0.12,798,0.6,44,1.6
+13393,2023,10,7,0,30,3.1,1.24,0.011,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.275,57.04,144.34,0.89,0.12,798,0.6,44,1.5
+13394,2023,10,7,1,0,2.8,1.25,0.011,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.275,58.01,142.58,0.89,0.12,798,0.6,43,1.5
+13395,2023,10,7,1,30,2.6,1.25,0.011,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.274,58.83,139.76,0.89,0.12,798,0.6,43,1.4
+13396,2023,10,7,2,0,2.3,1.25,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.274,59.85,136.09,0.89,0.12,797,0.6,42,1.4
+13397,2023,10,7,2,30,2.2,1.25,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,60.28,131.79,0.89,0.12,797,0.6,41,1.4
+13398,2023,10,7,3,0,2.1,1.26,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,60.59,127,0.89,0.12,797,0.6,41,1.4
+13399,2023,10,7,3,30,2,1.26,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,61.02,121.88,0.89,0.12,797,0.7,40,1.3
+13400,2023,10,7,4,0,1.9,1.28,0.012,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.272,61.2,116.52,0.89,0.12,797,0.7,40,1.3
+13401,2023,10,7,4,30,1.9,1.28,0.012,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.272,61.2,110.99,0.89,0.12,797,0.7,39,1.3
+13402,2023,10,7,5,0,1.9,1.29,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.272,60.9,105.36,0.89,0.12,797,0.7,39,1.3
+13403,2023,10,7,5,30,1.9,1.29,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.272,60.9,99.67,0.89,0.12,797,0.7,39,1.2
+13404,2023,10,7,6,0,2,1.3,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.273,60.16,93.98,0.89,0.12,797,0.7,39,1.2
+13405,2023,10,7,6,30,3.8,1.3,0.013,0.62,16,293,26,0,0,-4.9,16,293,0,26,0.273,52.97,88.08,0.89,0.12,797,0.7,37,1.6
+13406,2023,10,7,7,0,5.6,1.31,0.013,0.62,26,621,106,0,0,-4.6,26,621,0,106,0.273,47.91,82.64,0.89,0.12,797,0.7,34,1.9
+13407,2023,10,7,7,30,7.4,1.31,0.013,0.62,34,767,204,0,0,-4.6,34,767,0,204,0.273,42.34,77.22,0.89,0.12,797,0.7,34,2
+13408,2023,10,7,8,0,9.2,1.32,0.013,0.62,39,854,304,0,0,-4.7,39,854,0,304,0.273,37.15,71.94,0.89,0.12,797,0.7,33,2
+13409,2023,10,7,8,30,11.3,1.32,0.013,0.62,42,911,400,0,0,-4.7,42,911,0,400,0.273,32.3,66.89,0.89,0.12,797,0.7,43,1.6
+13410,2023,10,7,9,0,13.5,1.33,0.014,0.62,46,949,489,0,0,-4.6,46,949,0,489,0.273,28.08,62.14,0.9,0.12,797,0.7,53,1.2
+13411,2023,10,7,9,30,15.2,1.33,0.014,0.62,48,977,569,0,0,-4.6,48,977,14,569,0.272,25.17,57.79,0.9,0.12,797,0.7,122,0.9
+13412,2023,10,7,10,0,16.9,1.34,0.014,0.62,51,996,637,0,0,-4.8,51,996,0,637,0.272,22.37,53.94,0.9,0.12,797,0.7,191,0.5
+13413,2023,10,7,10,30,18,1.34,0.014,0.62,51,1012,692,0,0,-4.8,51,1012,0,692,0.271,20.87,50.73,0.9,0.12,797,0.7,207,0.9
+13414,2023,10,7,11,0,19.1,1.38,0.013,0.62,52,1022,732,0,0,-4.9,52,1022,0,732,0.271,19.24,48.28,0.9,0.12,797,0.7,223,1.3
+13415,2023,10,7,11,30,19.7,1.38,0.013,0.62,52,1028,757,0,0,-4.9,52,1028,0,757,0.27,18.54,46.72,0.9,0.12,797,0.7,228,1.4
+13416,2023,10,7,12,0,20.4,1.39,0.013,0.62,52,1031,766,0,0,-5.2,52,1031,0,766,0.27,17.32,46.15,0.89,0.12,797,0.6,232,1.5
+13417,2023,10,7,12,30,20.7,1.39,0.013,0.62,52,1031,760,0,0,-5.3,52,1031,0,760,0.269,16.99,46.6,0.89,0.12,796,0.6,235,1.5
+13418,2023,10,7,13,0,21,1.4,0.013,0.62,50,1027,737,0,0,-5.7,50,1027,0,737,0.268,16.09,48.05,0.89,0.12,796,0.6,237,1.5
+13419,2023,10,7,13,30,21.1,1.4,0.013,0.62,52,1017,700,0,0,-5.7,52,1017,0,700,0.267,15.99,50.4,0.9,0.12,796,0.6,242,1.4
+13420,2023,10,7,14,0,21.2,1.25,0.016,0.62,52,1001,647,0,0,-6.3,52,1001,0,647,0.267,15.24,53.53,0.9,0.12,796,0.6,246,1.3
+13421,2023,10,7,14,30,21,1.25,0.016,0.62,51,982,581,0,0,-6.3,51,982,0,581,0.266,15.41,57.31,0.9,0.12,795,0.6,253,1.2
+13422,2023,10,7,15,0,20.9,1.26,0.016,0.62,47,956,502,0,0,-6.9,47,956,0,502,0.266,14.77,61.61,0.9,0.12,795,0.6,259,1.1
+13423,2023,10,7,15,30,20.3,1.26,0.016,0.62,45,918,414,0,0,-6.9,45,918,0,414,0.265,15.32,66.32,0.9,0.12,795,0.6,264,0.9
+13424,2023,10,7,16,0,19.8,1.26,0.016,0.62,41,866,318,0,0,-7.3,41,866,0,318,0.265,15.34,71.34,0.9,0.12,795,0.6,269,0.8
+13425,2023,10,7,16,30,18.4,1.26,0.016,0.62,36,786,218,0,0,-7.3,36,786,0,218,0.264,16.74,76.6,0.9,0.12,795,0.6,272,0.6
+13426,2023,10,7,17,0,17,1.26,0.016,0.62,29,649,119,0,0,-4,29,649,0,119,0.263,23.52,82.02,0.9,0.12,795,0.6,276,0.3
+13427,2023,10,7,17,30,16,1.26,0.016,0.62,19,322,33,0,0,-4,19,322,0,33,0.263,25.06,87.48,0.9,0.12,795,0.5,144,0.2
+13428,2023,10,7,18,0,14.9,1.26,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.263,24.5,93.35,0.9,0.12,795,0.5,12,0.2
+13429,2023,10,7,18,30,14.4,1.26,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.262,25.3,99.05,0.9,0.12,795,0.5,24,0.3
+13430,2023,10,7,19,0,13.9,1.25,0.016,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.262,24.17,104.74,0.9,0.12,795,0.5,36,0.5
+13431,2023,10,7,19,30,13.2,1.25,0.016,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.261,25.3,110.4,0.9,0.12,795,0.5,39,0.6
+13432,2023,10,7,20,0,12.5,1.26,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.261,26.25,115.96,0.9,0.12,795,0.5,41,0.7
+13433,2023,10,7,20,30,11.7,1.26,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,27.67,121.37,0.9,0.12,795,0.5,47,0.8
+13434,2023,10,7,21,0,11,1.26,0.017,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,28.85,126.55,0.9,0.12,795,0.5,53,0.9
+13435,2023,10,7,21,30,10.3,1.26,0.017,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,30.23,131.41,0.9,0.12,795,0.5,58,1
+13436,2023,10,7,22,0,9.6,1.27,0.018,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,31.7,135.82,0.9,0.12,795,0.5,63,1.1
+13437,2023,10,7,22,30,9.1,1.27,0.018,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,32.78,139.61,0.9,0.12,795,0.5,68,1.1
+13438,2023,10,7,23,0,8.6,1.29,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,34.05,142.59,0.9,0.12,796,0.5,73,1.1
+13439,2023,10,7,23,30,8.3,1.29,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,34.74,144.54,0.9,0.12,796,0.6,79,1.1
+13440,2023,10,8,0,0,8,1.31,0.02,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.258,35.69,145.27,0.9,0.12,796,0.6,84,1.1
+13441,2023,10,8,0,30,7.8,1.31,0.02,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.258,36.18,144.71,0.9,0.12,796,0.6,89,1
+13442,2023,10,8,1,0,7.5,1.35,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.258,37.17,142.92,0.9,0.12,796,0.6,95,0.9
+13443,2023,10,8,1,30,7.4,1.35,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.259,37.42,140.07,0.9,0.12,796,0.6,98,0.8
+13444,2023,10,8,2,0,7.3,1.39,0.023,0.62,0,0,0,0,0,-6,0,0,0,0,0.259,38.15,136.38,0.9,0.12,795,0.6,102,0.7
+13445,2023,10,8,2,30,7.2,1.39,0.023,0.62,0,0,0,0,0,-6,0,0,0,0,0.26,38.41,132.04,0.9,0.12,795,0.6,100,0.6
+13446,2023,10,8,3,0,7.1,1.45,0.026,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.261,39.08,127.24,0.9,0.12,795,0.6,97,0.5
+13447,2023,10,8,3,30,6.9,1.45,0.026,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.262,39.62,122.1,0.89,0.12,795,0.6,89,0.5
+13448,2023,10,8,4,0,6.8,1.5,0.028,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.262,40.31,116.72,0.89,0.12,795,0.6,80,0.4
+13449,2023,10,8,4,30,6.6,1.5,0.028,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.263,40.87,111.19,0.89,0.12,795,0.6,72,0.4
+13450,2023,10,8,5,0,6.5,1.54,0.029,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.264,41.57,105.55,0.89,0.12,795,0.6,64,0.4
+13451,2023,10,8,5,30,6.3,1.54,0.029,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.264,42.15,99.87,0.89,0.12,795,0.6,61,0.4
+13452,2023,10,8,6,0,6.1,1.57,0.03,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.265,43.17,94.18,0.89,0.12,795,0.6,57,0.4
+13453,2023,10,8,6,30,7,1.57,0.03,0.62,15,219,22,0,0,-5.5,15,219,0,22,0.265,40.59,88.27,0.89,0.12,795,0.6,54,0.4
+13454,2023,10,8,7,0,8,1.59,0.03,0.62,31,579,103,0,0,-4.2,31,579,0,103,0.265,41.73,82.84,0.89,0.12,795,0.6,51,0.4
+13455,2023,10,8,7,30,9.6,1.59,0.03,0.62,40,737,200,0,0,-4.2,40,737,0,200,0.266,37.47,77.43,0.89,0.12,795,0.6,65,0.4
+13456,2023,10,8,8,0,11.3,1.59,0.029,0.62,47,830,301,0,0,-4.9,47,830,0,301,0.266,31.89,72.16,0.89,0.12,795,0.6,80,0.5
+13457,2023,10,8,8,30,13.6,1.59,0.029,0.62,52,891,398,0,0,-4.9,52,891,0,398,0.266,27.43,67.13,0.89,0.12,795,0.6,152,0.7
+13458,2023,10,8,9,0,15.9,1.58,0.028,0.62,55,934,488,0,0,-5.9,55,934,0,488,0.266,21.82,62.4,0.89,0.12,795,0.6,224,0.8
+13459,2023,10,8,9,30,17.5,1.58,0.028,0.62,57,964,567,0,0,-5.9,57,964,29,567,0.266,19.72,58.07,0.89,0.12,795,0.6,229,1.3
+13460,2023,10,8,10,0,19.2,1.57,0.027,0.62,59,986,635,0,0,-6.3,59,986,0,635,0.266,17.25,54.25,0.89,0.12,795,0.6,234,1.7
+13461,2023,10,8,10,30,20,1.57,0.027,0.62,60,1002,690,0,0,-6.3,60,1002,0,690,0.266,16.42,51.05,0.89,0.12,795,0.6,235,1.9
+13462,2023,10,8,11,0,20.8,1.68,0.023,0.62,59,1015,730,0,0,-6.3,59,1015,0,730,0.266,15.65,48.63,0.89,0.12,795,0.6,235,2
+13463,2023,10,8,11,30,21.3,1.68,0.023,0.62,60,1021,755,0,0,-6.3,60,1021,0,755,0.266,15.15,47.09,0.89,0.12,794,0.6,236,2.2
+13464,2023,10,8,12,0,21.9,1.65,0.022,0.62,60,1024,764,0,0,-6.5,60,1024,0,764,0.266,14.32,46.53,0.89,0.12,794,0.6,238,2.3
+13465,2023,10,8,12,30,22.2,1.65,0.022,0.62,59,1023,757,0,0,-6.5,59,1023,0,757,0.266,14.06,46.99,0.89,0.12,794,0.6,239,2.3
+13466,2023,10,8,13,0,22.4,1.62,0.02,0.62,58,1019,734,0,0,-7,58,1019,0,734,0.265,13.4,48.43,0.89,0.12,793,0.6,240,2.3
+13467,2023,10,8,13,30,22.5,1.62,0.02,0.62,56,1010,695,0,0,-7,56,1010,0,695,0.265,13.32,50.78,0.89,0.12,793,0.6,240,2.3
+13468,2023,10,8,14,0,22.5,1.57,0.019,0.62,54,998,642,0,0,-7.5,54,998,0,642,0.265,12.81,53.9,0.9,0.12,793,0.6,241,2.3
+13469,2023,10,8,14,30,22.3,1.57,0.019,0.62,52,981,577,0,0,-7.5,52,981,0,577,0.264,12.97,57.67,0.9,0.12,793,0.6,241,2.2
+13470,2023,10,8,15,0,22,1.56,0.018,0.62,50,956,499,0,0,-8,50,956,0,499,0.264,12.7,61.96,0.9,0.12,792,0.6,242,2.1
+13471,2023,10,8,15,30,21.4,1.56,0.018,0.62,46,920,411,0,0,-8,46,920,0,411,0.264,13.18,66.65,0.9,0.12,792,0.5,240,1.9
+13472,2023,10,8,16,0,20.8,1.56,0.017,0.62,42,866,314,0,0,-8.1,42,866,0,314,0.263,13.59,71.67,0.9,0.12,792,0.5,238,1.7
+13473,2023,10,8,16,30,18.9,1.56,0.017,0.62,36,785,214,0,0,-8.1,36,785,0,214,0.263,15.28,76.92,0.9,0.12,792,0.5,232,1.2
+13474,2023,10,8,17,0,17.1,1.56,0.016,0.62,29,643,115,0,0,-4,29,643,0,115,0.263,23.32,82.33,0.9,0.12,792,0.5,226,0.7
+13475,2023,10,8,17,30,16,1.56,0.016,0.62,18,312,30,0,0,-4,18,312,0,30,0.263,25,87.77,0.9,0.12,792,0.5,219,0.7
+13476,2023,10,8,18,0,15,1.58,0.016,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.263,22.88,93.65,0.9,0.12,792,0.5,213,0.7
+13477,2023,10,8,18,30,14.7,1.58,0.016,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.263,23.33,99.35,0.9,0.12,792,0.5,215,0.6
+13478,2023,10,8,19,0,14.5,1.59,0.016,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.263,22.71,105.05,0.9,0.12,792,0.5,218,0.6
+13479,2023,10,8,19,30,14.1,1.59,0.016,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.263,23.3,110.7,0.9,0.12,792,0.5,232,0.5
+13480,2023,10,8,20,0,13.7,1.61,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.263,23.42,116.27,0.9,0.12,792,0.5,246,0.4
+13481,2023,10,8,20,30,13.3,1.61,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.263,24.03,121.68,0.9,0.12,792,0.6,269,0.4
+13482,2023,10,8,21,0,12.8,1.63,0.017,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,24.22,126.88,0.9,0.12,792,0.6,293,0.4
+13483,2023,10,8,21,30,12.3,1.63,0.017,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,25.02,131.75,0.9,0.12,792,0.6,305,0.4
+13484,2023,10,8,22,0,11.8,1.65,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,25.66,136.17,0.9,0.12,792,0.6,316,0.4
+13485,2023,10,8,22,30,11.3,1.65,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,26.52,139.98,0.9,0.12,792,0.6,323,0.5
+13486,2023,10,8,23,0,10.8,1.66,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,27.39,142.97,0.89,0.12,792,0.6,329,0.5
+13487,2023,10,8,23,30,10.4,1.66,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,28.13,144.92,0.89,0.12,792,0.6,336,0.5
+13488,2023,10,9,0,0,9.9,1.67,0.019,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,29.16,145.65,0.89,0.12,791,0.6,342,0.5
+13489,2023,10,9,0,30,9.5,1.67,0.019,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,29.95,145.07,0.89,0.12,791,0.6,348,0.5
+13490,2023,10,9,1,0,9,1.68,0.019,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,31.23,143.26,0.89,0.12,791,0.6,353,0.5
+13491,2023,10,9,1,30,8.6,1.68,0.019,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,32.08,140.38,0.89,0.12,791,0.6,177,0.5
+13492,2023,10,9,2,0,8.2,1.69,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.264,33.36,136.66,0.89,0.12,791,0.6,1,0.6
+13493,2023,10,9,2,30,7.7,1.69,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.264,34.52,132.3,0.89,0.12,791,0.6,5,0.6
+13494,2023,10,9,3,0,7.3,1.7,0.021,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.265,36.25,127.48,0.89,0.12,791,0.6,10,0.6
+13495,2023,10,9,3,30,6.8,1.7,0.021,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.265,37.51,122.32,0.89,0.12,791,0.6,12,0.6
+13496,2023,10,9,4,0,6.4,1.7,0.021,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.265,39.67,116.93,0.89,0.12,791,0.6,14,0.6
+13497,2023,10,9,4,30,6,1.7,0.021,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.265,40.78,111.39,0.89,0.12,791,0.6,14,0.6
+13498,2023,10,9,5,0,5.6,1.7,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.266,43.39,105.75,0.89,0.12,791,0.6,15,0.6
+13499,2023,10,9,5,30,5.3,1.7,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.266,44.3,100.06,0.89,0.12,791,0.6,15,0.6
+13500,2023,10,9,6,0,5.1,1.69,0.022,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.266,46.29,94.37,0.88,0.12,791,0.6,16,0.6
+13501,2023,10,9,6,30,6.3,1.69,0.022,0.62,15,230,21,0,0,-5.5,15,230,0,21,0.266,42.6,88.45,0.88,0.12,791,0.6,19,0.5
+13502,2023,10,9,7,0,7.6,1.67,0.021,0.62,29,597,101,0,0,-4.5,29,597,0,101,0.266,41.88,83.05,0.88,0.12,791,0.6,23,0.5
+13503,2023,10,9,7,30,9.6,1.67,0.021,0.62,37,754,198,0,0,-4.5,37,754,0,198,0.266,36.59,77.64,0.88,0.12,791,0.6,28,0.7
+13504,2023,10,9,8,0,11.5,1.64,0.02,0.62,42,846,298,0,0,-5,42,846,0,298,0.266,31.11,72.39,0.88,0.12,791,0.6,34,0.9
+13505,2023,10,9,8,30,14,1.64,0.02,0.62,46,909,396,0,0,-5,46,909,0,396,0.265,26.42,67.37,0.88,0.12,791,0.6,31,0.9
+13506,2023,10,9,9,0,16.4,1.61,0.018,0.62,49,953,487,0,0,-6.3,49,953,0,487,0.265,20.53,62.66,0.88,0.12,791,0.5,27,1
+13507,2023,10,9,9,30,17.8,1.61,0.018,0.62,52,984,568,0,0,-6.3,52,984,29,568,0.265,18.8,58.35,0.88,0.12,791,0.5,20,0.8
+13508,2023,10,9,10,0,19.1,1.58,0.017,0.62,52,1005,635,0,0,-7.7,52,1005,0,635,0.264,15.59,54.55,0.88,0.12,791,0.5,14,0.7
+13509,2023,10,9,10,30,19.8,1.58,0.017,0.62,53,1020,690,0,0,-7.7,53,1020,0,690,0.264,14.91,51.38,0.87,0.12,790,0.5,178,0.7
+13510,2023,10,9,11,0,20.6,1.66,0.015,0.62,52,1031,729,0,0,-8.7,52,1031,0,729,0.264,13.12,48.97,0.87,0.12,790,0.5,343,0.7
+13511,2023,10,9,11,30,21.1,1.66,0.015,0.62,53,1037,754,0,0,-8.7,53,1037,0,754,0.263,12.72,47.45,0.87,0.12,790,0.5,337,0.7
+13512,2023,10,9,12,0,21.6,1.64,0.015,0.62,52,1039,762,0,0,-9.5,52,1039,0,762,0.263,11.6,46.91,0.87,0.12,790,0.5,331,0.8
+13513,2023,10,9,12,30,21.8,1.64,0.015,0.62,52,1038,755,0,0,-9.5,52,1038,0,755,0.263,11.45,47.37,0.87,0.12,789,0.5,328,0.9
+13514,2023,10,9,13,0,22.1,1.63,0.014,0.62,52,1033,732,0,0,-10.1,52,1033,0,732,0.263,10.74,48.82,0.87,0.12,789,0.5,326,0.9
+13515,2023,10,9,13,30,22.1,1.63,0.014,0.62,53,1020,693,0,0,-10.1,53,1020,0,693,0.262,10.74,51.16,0.88,0.12,789,0.5,323,1
+13516,2023,10,9,14,0,22.1,1.07,0.02,0.62,56,1002,641,0,0,-10.5,56,1002,0,641,0.262,10.36,54.27,0.89,0.12,788,0.5,321,1
+13517,2023,10,9,14,30,21.9,1.07,0.02,0.62,54,982,574,0,0,-10.5,54,982,0,574,0.262,10.49,58.02,0.89,0.12,788,0.5,319,1.1
+13518,2023,10,9,15,0,21.6,1.07,0.02,0.62,51,954,494,0,0,-10.8,51,954,0,494,0.263,10.44,62.3,0.89,0.12,788,0.5,317,1.1
+13519,2023,10,9,15,30,21.1,1.07,0.02,0.62,47,915,405,0,0,-10.8,47,915,0,405,0.262,10.77,66.99,0.89,0.12,788,0.5,317,1
+13520,2023,10,9,16,0,20.6,1.07,0.02,0.62,43,858,308,0,0,-10.6,43,858,0,308,0.262,11.25,71.99,0.89,0.12,787,0.5,317,0.9
+13521,2023,10,9,16,30,19.3,1.07,0.02,0.62,38,770,208,0,0,-10.6,38,770,0,208,0.262,12.19,77.23,0.89,0.12,787,0.5,313,0.6
+13522,2023,10,9,17,0,18.1,1.08,0.02,0.62,30,619,109,0,0,-6.4,30,619,0,109,0.262,18.32,82.63,0.89,0.12,787,0.5,309,0.2
+13523,2023,10,9,17,30,17.2,1.08,0.02,0.62,17,282,27,0,0,-6.4,17,282,0,27,0.263,19.38,88.06,0.89,0.12,787,0.5,239,0.2
+13524,2023,10,9,18,0,16.3,1.09,0.019,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.263,17.86,93.95,0.89,0.12,787,0.5,170,0.2
+13525,2023,10,9,18,30,15.7,1.09,0.019,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.263,18.56,99.64,0.89,0.12,787,0.5,169,0.4
+13526,2023,10,9,19,0,15.1,1.1,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.263,18.4,105.34,0.89,0.12,787,0.5,168,0.5
+13527,2023,10,9,19,30,14.4,1.1,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.263,19.25,111,0.89,0.12,787,0.5,180,0.6
+13528,2023,10,9,20,0,13.8,1.12,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.263,19.83,116.57,0.89,0.12,787,0.5,192,0.7
+13529,2023,10,9,20,30,13.3,1.12,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.262,20.49,122,0.89,0.12,787,0.5,205,0.8
+13530,2023,10,9,21,0,12.7,1.14,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.262,20.71,127.2,0.89,0.12,787,0.5,218,1
+13531,2023,10,9,21,30,12,1.14,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.262,21.68,132.09,0.89,0.12,787,0.5,225,1
+13532,2023,10,9,22,0,11.3,1.17,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.261,22.65,136.53,0.89,0.12,787,0.5,232,1.1
+13533,2023,10,9,22,30,10.7,1.17,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.261,23.57,140.35,0.89,0.12,787,0.5,235,1.2
+13534,2023,10,9,23,0,10,1.2,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.261,24.32,143.35,0.89,0.12,786,0.5,238,1.2
+13535,2023,10,9,23,30,9.5,1.2,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.261,25.14,145.31,0.89,0.12,786,0.5,238,1.3
+13536,2023,10,10,0,0,8.9,1.24,0.019,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.262,25.92,146.03,0.89,0.12,786,0.5,239,1.3
+13537,2023,10,10,0,30,8.4,1.24,0.019,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.262,26.81,145.44,0.89,0.12,786,0.5,238,1.3
+13538,2023,10,10,1,0,7.8,1.29,0.019,0.62,0,0,0,0,0,-9.7,0,0,0,0,0.262,27.68,143.6,0.89,0.12,786,0.5,237,1.3
+13539,2023,10,10,1,30,7.5,1.29,0.019,0.62,0,0,0,0,0,-9.7,0,0,0,0,0.263,28.25,140.69,0.89,0.12,786,0.5,231,1.2
+13540,2023,10,10,2,0,7.1,1.35,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.263,28.9,136.94,0.89,0.12,786,0.5,226,1.2
+13541,2023,10,10,2,30,6.8,1.35,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.264,29.5,132.56,0.89,0.12,786,0.5,215,1.2
+13542,2023,10,10,3,0,6.5,1.42,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.265,30.21,127.71,0.89,0.12,785,0.6,205,1.2
+13543,2023,10,10,3,30,6.1,1.42,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.266,31.05,122.54,0.89,0.12,785,0.6,198,1.3
+13544,2023,10,10,4,0,5.7,1.48,0.02,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.267,32.47,117.14,0.89,0.12,785,0.6,190,1.3
+13545,2023,10,10,4,30,5.4,1.48,0.02,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.268,33.15,111.59,0.89,0.12,785,0.6,185,1.4
+13546,2023,10,10,5,0,5.1,1.51,0.021,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.269,34.98,105.94,0.9,0.12,785,0.6,180,1.4
+13547,2023,10,10,5,30,5,1.51,0.021,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.269,35.22,100.25,0.9,0.12,785,0.7,178,1.4
+13548,2023,10,10,6,0,4.8,1.52,0.024,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.27,37.34,94.56,0.91,0.12,785,0.7,176,1.5
+13549,2023,10,10,6,30,6.3,1.52,0.024,0.62,15,207,20,0,0,-8.6,15,207,0,20,0.271,33.66,88.64,0.91,0.12,785,0.7,174,1.5
+13550,2023,10,10,7,0,7.8,1.52,0.027,0.62,30,563,96,0,0,-7,30,563,0,96,0.272,34.23,83.25,0.92,0.12,786,0.7,172,1.6
+13551,2023,10,10,7,30,9.9,1.52,0.027,0.62,39,718,190,0,5,-7,75,201,0,117,0.272,29.71,77.86,0.92,0.12,786,0.8,177,2.1
+13552,2023,10,10,8,0,11.9,1.51,0.032,0.62,48,808,289,0,5,-7.1,113,10,4,116,0.272,25.85,72.62,0.92,0.12,786,0.8,182,2.6
+13553,2023,10,10,8,30,14,1.51,0.032,0.62,54,865,383,0,5,-7.1,184,119,0,229,0.272,22.54,67.61,0.93,0.12,786,0.9,194,3.2
+13554,2023,10,10,9,0,16.2,1.5,0.039,0.62,59,901,469,2,8,-6.2,175,288,29,306,0.272,20.91,62.92,0.93,0.12,786,0.9,206,3.7
+13555,2023,10,10,9,30,17.5,1.5,0.039,0.62,65,924,546,1,3,-6.2,213,426,36,435,0.271,19.23,58.63,0.94,0.12,785,1,211,4.2
+13556,2023,10,10,10,0,18.8,1.47,0.051,0.62,71,936,610,0,0,-5.3,71,936,0,610,0.27,19.06,54.85,0.95,0.12,785,1,216,4.6
+13557,2023,10,10,10,30,19.2,1.47,0.051,0.62,73,950,662,0,0,-5.3,73,950,0,662,0.27,18.59,51.71,0.95,0.12,785,1.1,217,4.7
+13558,2023,10,10,11,0,19.7,1.44,0.053,0.62,76,958,700,1,0,-4,166,718,11,634,0.269,19.86,49.32,0.95,0.12,785,1.1,218,4.9
+13559,2023,10,10,11,30,19.9,1.44,0.053,0.62,77,962,723,0,5,-4,248,509,0,590,0.268,19.59,47.82,0.95,0.12,784,1.2,216,4.9
+13560,2023,10,10,12,0,20.1,1.46,0.053,0.62,77,962,730,0,5,-2.6,314,276,0,501,0.268,21.49,47.29,0.95,0.12,784,1.2,215,4.9
+13561,2023,10,10,12,30,20.3,1.46,0.053,0.62,75,964,723,0,8,-2.6,286,395,0,552,0.267,21.23,47.76,0.94,0.12,784,1.2,214,4.9
+13562,2023,10,10,13,0,20.5,1.52,0.045,0.62,72,962,701,0,0,-1.6,175,673,0,615,0.266,22.57,49.2,0.94,0.12,783,1.2,213,4.8
+13563,2023,10,10,13,30,20.6,1.52,0.045,0.62,69,955,663,0,0,-1.6,176,661,0,587,0.265,22.43,51.53,0.94,0.12,783,1.2,214,4.7
+13564,2023,10,10,14,0,20.8,1.57,0.038,0.62,65,945,612,0,0,-1.3,65,945,0,612,0.264,22.61,54.64,0.93,0.12,782,1.2,215,4.5
+13565,2023,10,10,14,30,20.7,1.57,0.038,0.62,63,924,547,0,0,-1.3,63,924,0,547,0.263,22.75,58.38,0.93,0.12,782,1.2,215,4.3
+13566,2023,10,10,15,0,20.6,1.57,0.037,0.62,59,895,470,0,0,-1.6,59,895,0,470,0.262,22.4,62.64,0.93,0.12,782,1.1,216,4.2
+13567,2023,10,10,15,30,20.2,1.57,0.037,0.62,55,850,383,0,0,-1.6,55,850,0,383,0.261,22.93,67.32,0.93,0.12,781,1.1,216,4
+13568,2023,10,10,16,0,19.7,1.54,0.04,0.62,50,785,289,0,0,-2.1,50,785,0,289,0.26,22.9,72.31,0.94,0.12,781,1.1,215,3.8
+13569,2023,10,10,16,30,17.7,1.54,0.04,0.62,44,682,191,0,0,-2.1,56,573,0,180,0.26,25.94,77.54,0.94,0.12,781,1.1,213,2.7
+13570,2023,10,10,17,0,15.8,1.51,0.047,0.62,33,508,96,0,0,-1.4,35,491,0,95,0.259,30.84,82.93,0.95,0.12,781,1.1,211,1.6
+13571,2023,10,10,17,30,14.3,1.51,0.047,0.62,15,176,20,0,0,-1.4,15,176,4,20,0.258,33.95,88.34,0.95,0.12,781,1.2,207,1.5
+13572,2023,10,10,18,0,12.8,1.46,0.059,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.258,36.79,94.24,0.96,0.12,781,1.2,203,1.4
+13573,2023,10,10,18,30,12.5,1.46,0.059,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.257,37.52,99.94,0.96,0.12,781,1.2,202,1.4
+13574,2023,10,10,19,0,12.1,1.38,0.076,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.256,38.5,105.64,0.96,0.12,781,1.2,200,1.4
+13575,2023,10,10,19,30,12.1,1.38,0.076,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.255,38.5,111.3,0.97,0.12,781,1.3,201,1.5
+13576,2023,10,10,20,0,12,1.31,0.101,0.62,0,0,0,0,8,-1.4,0,0,0,0,0.254,39.37,116.88,0.97,0.12,781,1.3,202,1.6
+13577,2023,10,10,20,30,12,1.31,0.101,0.62,0,0,0,0,8,-1.4,0,0,0,0,0.254,39.32,122.31,0.97,0.12,780,1.4,202,1.8
+13578,2023,10,10,21,0,11.9,1.31,0.116,0.62,0,0,0,0,8,-1,0,0,0,0,0.253,40.91,127.52,0.97,0.12,780,1.4,202,1.9
+13579,2023,10,10,21,30,11.7,1.31,0.116,0.62,0,0,0,0,8,-1,0,0,0,0,0.253,41.45,132.42,0.97,0.12,780,1.5,201,1.9
+13580,2023,10,10,22,0,11.5,1.35,0.117,0.62,0,0,0,0,5,-0.3,0,0,0,0,0.253,44.02,136.88,0.96,0.12,780,1.5,199,2
+13581,2023,10,10,22,30,11.2,1.35,0.117,0.62,0,0,0,0,8,-0.3,0,0,0,0,0.252,44.9,140.72,0.96,0.12,780,1.5,198,2.1
+13582,2023,10,10,23,0,10.9,1.41,0.117,0.62,0,0,0,0,5,0.3,0,0,0,0,0.252,47.8,143.73,0.96,0.12,779,1.4,197,2.1
+13583,2023,10,10,23,30,10.5,1.41,0.117,0.62,0,0,0,0,5,0.3,0,0,0,0,0.251,49.09,145.69,0.96,0.12,779,1.4,197,2.2
+13584,2023,10,11,0,0,10.1,1.46,0.111,0.62,0,0,0,0,4,0.5,0,0,0,0,0.251,51.5,146.41,0.96,0.12,779,1.4,198,2.3
+13585,2023,10,11,0,30,9.8,1.46,0.111,0.62,0,0,0,0,5,0.5,0,0,0,0,0.25,52.55,145.8,0.95,0.12,779,1.4,200,2.3
+13586,2023,10,11,1,0,9.5,1.45,0.108,0.62,0,0,0,0,5,0.5,0,0,0,0,0.25,53.3,143.93,0.95,0.12,778,1.3,202,2.2
+13587,2023,10,11,1,30,9.3,1.45,0.108,0.62,0,0,0,0,5,0.5,0,0,0,0,0.249,54.02,141,0.95,0.12,778,1.3,204,2.2
+13588,2023,10,11,2,0,9.2,1.42,0.102,0.62,0,0,0,0,5,0.2,0,0,0,0,0.249,53.37,137.22,0.95,0.12,778,1.3,207,2.1
+13589,2023,10,11,2,30,8.9,1.42,0.102,0.62,0,0,0,0,4,0.2,0,0,0,0,0.249,54.46,132.81,0.95,0.12,778,1.3,210,1.9
+13590,2023,10,11,3,0,8.6,1.41,0.085,0.62,0,0,0,0,4,-0.2,0,0,0,0,0.249,54.06,127.95,0.95,0.12,777,1.2,213,1.8
+13591,2023,10,11,3,30,8.4,1.41,0.085,0.62,0,0,0,0,5,-0.2,0,0,0,0,0.249,54.87,122.76,0.95,0.12,778,1.2,216,1.7
+13592,2023,10,11,4,0,8.1,1.36,0.077,0.62,0,0,0,0,4,-0.5,0,0,0,0,0.248,54.47,117.35,0.95,0.12,778,1.2,218,1.5
+13593,2023,10,11,4,30,8.1,1.36,0.077,0.62,0,0,0,0,5,-0.5,0,0,0,0,0.249,54.47,111.79,0.95,0.12,778,1.2,218,1.6
+13594,2023,10,11,5,0,8,1.32,0.07,0.62,0,0,0,0,5,-0.9,0,0,0,0,0.249,53.41,106.14,0.95,0.12,778,1.2,218,1.6
+13595,2023,10,11,5,30,7.7,1.32,0.07,0.62,0,0,0,0,3,-0.9,0,0,0,0,0.25,54.44,100.45,0.94,0.12,777,1.2,219,1.7
+13596,2023,10,11,6,0,7.4,1.27,0.062,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.251,54.41,94.76,0.94,0.12,777,1.1,220,1.7
+13597,2023,10,11,6,30,8.4,1.27,0.062,0.62,14,136,17,2,0,-1.2,12,63,32,13,0.252,50.84,88.83,0.94,0.12,777,1.1,219,2.2
+13598,2023,10,11,7,0,9.3,1.22,0.057,0.62,34,458,86,1,0,-1.4,37,409,14,84,0.252,47.26,83.46,0.94,0.12,777,1.1,218,2.6
+13599,2023,10,11,7,30,10.7,1.22,0.057,0.62,47,640,179,0,0,-1.4,66,313,0,131,0.254,43.05,78.07,0.94,0.12,777,1.1,221,3.1
+13600,2023,10,11,8,0,12.1,1.18,0.056,0.62,55,750,276,2,5,-1.7,107,13,36,111,0.255,38.4,72.85,0.94,0.12,777,1,224,3.6
+13601,2023,10,11,8,30,13.3,1.18,0.056,0.62,62,821,371,3,8,-1.7,175,115,39,218,0.256,35.51,67.86,0.94,0.12,777,1,225,3.9
+13602,2023,10,11,9,0,14.5,1.16,0.055,0.62,66,871,459,4,8,-2.3,135,54,54,159,0.256,31.33,63.18,0.93,0.12,777,1,226,4.2
+13603,2023,10,11,9,30,15.4,1.16,0.055,0.62,69,906,537,4,8,-2.3,122,8,71,126,0.257,29.54,58.91,0.93,0.12,776,1,224,4.7
+13604,2023,10,11,10,0,16.2,1.16,0.053,0.62,71,932,604,2,8,-2.9,162,231,21,294,0.257,26.84,55.15,0.93,0.12,776,1,222,5.1
+13605,2023,10,11,10,30,16.8,1.16,0.053,0.62,75,947,658,1,8,-2.9,139,44,18,166,0.258,25.84,52.03,0.93,0.12,776,1,222,5.6
+13606,2023,10,11,11,0,17.5,1.13,0.057,0.62,77,956,696,0,8,-3.1,162,16,0,172,0.258,24.36,49.67,0.94,0.12,776,1,222,6
+13607,2023,10,11,11,30,17.6,1.13,0.057,0.62,82,955,719,0,6,-3.1,101,3,0,103,0.26,24.17,48.19,0.94,0.12,775,1,223,6.3
+13608,2023,10,11,12,0,17.8,1.09,0.073,0.62,88,946,725,0,6,-2.7,42,0,0,42,0.261,24.71,47.67,0.95,0.12,775,1,224,6.6
+13609,2023,10,11,12,30,17.3,1.09,0.073,0.62,89,938,715,0,6,-2.7,53,0,0,53,0.261,25.5,48.14,0.95,0.12,775,1.1,228,6.7
+13610,2023,10,11,13,0,16.8,1.08,0.083,0.62,92,923,690,0,8,-1.7,116,9,0,122,0.262,28.19,49.58,0.96,0.12,775,1.1,232,6.8
+13611,2023,10,11,13,30,16.1,1.08,0.083,0.62,88,914,652,0,7,-1.7,162,20,0,174,0.263,29.46,51.91,0.96,0.12,775,1.1,239,6.7
+13612,2023,10,11,14,0,15.4,1.16,0.076,0.62,83,900,599,0,7,-1,191,98,0,247,0.265,32.48,55,0.96,0.12,775,1.1,246,6.6
+13613,2023,10,11,14,30,14.6,1.16,0.076,0.62,77,880,534,0,8,-1,209,452,0,444,0.266,34.19,58.73,0.96,0.12,775,1.1,258,6.3
+13614,2023,10,11,15,0,13.8,1.19,0.065,0.62,71,854,459,0,6,-1.4,174,86,0,213,0.268,35.15,62.98,0.95,0.12,775,1.1,269,6
+13615,2023,10,11,15,30,12.8,1.19,0.065,0.62,63,816,373,0,6,-1.4,66,45,0,83,0.268,37.51,67.64,0.95,0.12,775,1.1,282,5.8
+13616,2023,10,11,16,0,11.8,1.22,0.05,0.62,54,761,281,0,4,-1.5,130,129,0,169,0.269,39.57,72.62,0.94,0.12,776,1,294,5.5
+13617,2023,10,11,16,30,10.6,1.22,0.05,0.62,45,662,184,0,0,-1.5,60,414,0,147,0.27,42.83,77.84,0.94,0.12,776,1,305,5.1
+13618,2023,10,11,17,0,9.3,1.19,0.044,0.62,33,496,91,2,0,-0.9,40,383,29,85,0.27,48.96,83.23,0.94,0.12,777,1,316,4.7
+13619,2023,10,11,17,30,8.2,1.19,0.044,0.62,14,162,18,4,7,-0.9,12,46,57,13,0.271,52.73,88.61,0.94,0.12,777,1,323,4.5
+13620,2023,10,11,18,0,7.1,1.14,0.042,0.62,0,0,0,0,7,0,0,0,0,0,0.272,60.83,94.53,0.94,0.12,778,1,330,4.2
+13621,2023,10,11,18,30,6.5,1.14,0.042,0.62,0,0,0,0,6,0,0,0,0,0,0.273,63.39,100.23,0.94,0.12,778,1,329,4.1
+13622,2023,10,11,19,0,5.8,1.07,0.042,0.62,0,0,0,0,6,0.5,0,0,0,0,0.274,68.78,105.93,0.94,0.12,778,1,328,4.1
+13623,2023,10,11,19,30,5.3,1.07,0.042,0.62,0,0,0,0,6,0.5,0,0,0,0,0.274,71.21,111.6,0.94,0.12,778,1,327,3.8
+13624,2023,10,11,20,0,4.9,1.02,0.045,0.62,0,0,0,0,6,0.7,0,0,0,0,0.275,74,117.18,0.94,0.12,779,1.1,325,3.6
+13625,2023,10,11,20,30,4.6,1.02,0.045,0.62,0,0,0,0,6,0.7,0,0,0,0,0.275,75.57,122.62,0.94,0.12,779,1.1,323,3.3
+13626,2023,10,11,21,0,4.3,1,0.047,0.62,0,0,0,0,6,0.6,0,0,0,0,0.275,77.07,127.84,0.94,0.12,779,1.1,322,3.1
+13627,2023,10,11,21,30,4,1,0.047,0.62,0,0,0,0,9,0.6,0,0,0,0,0.275,78.71,132.75,0.94,0.12,779,1.1,319,3
+13628,2023,10,11,22,0,3.8,1,0.047,0.62,0,0,0,0,6,0.6,0,0,0,0,0.275,79.81,137.22,0.94,0.12,779,1.1,316,2.9
+13629,2023,10,11,22,30,3.5,1,0.047,0.62,0,0,0,0,6,0.6,0,0,0,0,0.276,81.4,141.08,0.94,0.12,778,1.1,312,2.9
+13630,2023,10,11,23,0,3.3,1,0.047,0.62,0,0,0,0,6,0.6,0,0,0,0,0.276,82.53,144.11,0.94,0.12,778,1,308,2.8
+13631,2023,10,11,23,30,3,1,0.047,0.62,0,0,0,0,7,0.6,0,0,0,0,0.276,84.29,146.07,0.94,0.12,778,1,304,2.9
+13632,2023,10,12,0,0,2.8,0.98,0.048,0.62,0,0,0,0,7,0.5,0,0,0,0,0.276,84.72,146.79,0.94,0.12,778,1,300,2.9
+13633,2023,10,12,0,30,2.6,0.98,0.048,0.62,0,0,0,0,7,0.5,0,0,0,0,0.276,85.93,146.16,0.94,0.12,778,1,297,2.9
+13634,2023,10,12,1,0,2.5,0.96,0.046,0.62,0,0,0,0,7,0.3,0,0,0,0,0.276,85.18,144.27,0.94,0.12,778,1,293,2.8
+13635,2023,10,12,1,30,2.4,0.96,0.046,0.62,0,0,0,0,6,0.3,0,0,0,0,0.276,85.79,141.3,0.94,0.12,778,1,292,2.7
+13636,2023,10,12,2,0,2.3,0.94,0.044,0.62,0,0,0,0,7,0,0,0,0,0,0.276,84.85,137.5,0.94,0.12,778,1,290,2.6
+13637,2023,10,12,2,30,2.2,0.94,0.044,0.62,0,0,0,0,7,0,0,0,0,0,0.276,85.46,133.06,0.94,0.12,778,1,290,2.5
+13638,2023,10,12,3,0,2.1,0.93,0.042,0.62,0,0,0,0,7,-0.1,0,0,0,0,0.277,85.2,128.18,0.94,0.12,778,1,289,2.5
+13639,2023,10,12,3,30,2,0.93,0.042,0.62,0,0,0,0,8,-0.1,0,0,0,0,0.276,85.81,122.98,0.94,0.12,778,1,288,2.5
+13640,2023,10,12,4,0,1.8,0.94,0.039,0.62,0,0,0,0,4,-0.2,0,0,0,0,0.276,86.38,117.55,0.94,0.12,778,1,286,2.5
+13641,2023,10,12,4,30,1.7,0.94,0.039,0.62,0,0,0,0,8,-0.2,0,0,0,0,0.276,87.11,111.98,0.94,0.12,779,1,287,2.6
+13642,2023,10,12,5,0,1.6,0.96,0.037,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.275,86.4,106.33,0.94,0.12,779,1,287,2.7
+13643,2023,10,12,5,30,1.6,0.96,0.037,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.274,86.4,100.64,0.94,0.12,779,1,291,2.8
+13644,2023,10,12,6,0,1.6,1,0.035,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.274,85.99,94.95,0.94,0.12,779,1,294,2.9
+13645,2023,10,12,6,30,2,1,0.035,0.62,12,151,15,5,7,-0.5,3,0,71,3,0.273,83.57,89,0.94,0.12,779,1,292,3.1
+13646,2023,10,12,7,0,2.3,1.06,0.031,0.62,29,512,86,5,7,-0.5,18,0,71,18,0.273,81.75,83.66,0.94,0.12,780,1,290,3.4
+13647,2023,10,12,7,30,2.9,1.06,0.031,0.62,40,689,180,0,7,-0.5,50,2,0,50,0.272,78.35,78.29,0.94,0.12,780,1,289,3.9
+13648,2023,10,12,8,0,3.5,1.1,0.031,0.62,46,792,277,0,7,-0.8,44,1,0,44,0.272,73.68,73.07,0.94,0.12,780,1,289,4.3
+13649,2023,10,12,8,30,4,1.1,0.031,0.62,52,855,371,0,7,-0.8,48,0,14,48,0.272,71.13,68.1,0.94,0.12,780,1,291,4.7
+13650,2023,10,12,9,0,4.5,1.12,0.032,0.62,56,898,458,0,7,-1,103,3,0,104,0.272,67.29,63.44,0.94,0.12,780,1,293,5.2
+13651,2023,10,12,9,30,4.8,1.12,0.032,0.62,60,930,536,0,7,-1,108,2,0,109,0.271,65.89,59.19,0.94,0.12,780,1.1,295,5.2
+13652,2023,10,12,10,0,5.1,1.14,0.03,0.62,61,954,602,0,7,-1,112,1,0,113,0.27,64.93,55.46,0.94,0.12,780,1.1,296,5.3
+13653,2023,10,12,10,30,5.2,1.14,0.03,0.62,64,967,655,0,6,-0.9,106,1,0,107,0.269,64.56,52.36,0.94,0.12,781,1.1,299,5.4
+13654,2023,10,12,11,0,5.3,1.07,0.034,0.62,67,974,693,0,6,-0.6,123,1,0,124,0.269,65.63,50.02,0.94,0.12,781,1.1,301,5.4
+13655,2023,10,12,11,30,5.2,1.07,0.034,0.62,66,982,716,0,7,-0.6,118,0,0,118,0.269,66.09,48.55,0.93,0.12,781,1.1,304,5.5
+13656,2023,10,12,12,0,5.1,1.13,0.03,0.62,65,986,724,0,7,-0.3,121,0,0,121,0.268,67.92,48.04,0.93,0.12,781,1.1,307,5.6
+13657,2023,10,12,12,30,5.1,1.13,0.03,0.62,64,986,717,0,7,-0.3,139,1,0,140,0.268,67.92,48.52,0.93,0.12,781,1.1,311,5.7
+13658,2023,10,12,13,0,5,1.2,0.026,0.62,62,983,694,0,7,-0.1,170,3,0,172,0.268,69.4,49.96,0.92,0.12,782,1.1,315,5.8
+13659,2023,10,12,13,30,5,1.2,0.026,0.62,59,974,655,0,7,-0.1,149,2,0,150,0.267,69.4,52.28,0.92,0.12,782,1.1,319,5.7
+13660,2023,10,12,14,0,5,1.25,0.024,0.62,57,960,603,0,7,-0.1,142,17,0,152,0.266,69.81,55.36,0.92,0.12,782,1.1,323,5.6
+13661,2023,10,12,14,30,5,1.25,0.024,0.62,56,936,537,0,6,0,120,9,0,125,0.266,69.9,59.08,0.93,0.12,783,1.2,328,5.4
+13662,2023,10,12,15,0,4.9,1.24,0.026,0.62,54,903,459,0,8,0,176,35,0,192,0.265,70.54,63.32,0.93,0.12,783,1.2,333,5.3
+13663,2023,10,12,15,30,4.7,1.24,0.026,0.62,50,860,373,0,8,0,88,5,0,90,0.265,71.62,67.97,0.93,0.12,784,1.1,340,5.2
+13664,2023,10,12,16,0,4.5,1.25,0.027,0.62,45,796,279,0,8,-0.1,12,0,0,12,0.264,72.16,72.94,0.93,0.12,784,1.1,347,5
+13665,2023,10,12,16,30,4,1.25,0.027,0.62,38,696,181,0,8,-0.1,16,0,0,16,0.263,74.82,78.15,0.92,0.12,785,1.1,175,4.7
+13666,2023,10,12,17,0,3.5,1.28,0.029,0.62,29,523,88,6,7,-0.2,7,0,86,7,0.263,76.68,83.52,0.92,0.12,786,1.1,2,4.4
+13667,2023,10,12,17,30,2.9,1.28,0.029,0.62,14,178,17,5,7,-0.2,4,0,71,4,0.263,80,88.88,0.91,0.12,786,1.1,7,4.3
+13668,2023,10,12,18,0,2.4,1.34,0.03,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.263,81.84,94.82,0.9,0.12,787,1.1,11,4.1
+13669,2023,10,12,18,30,2,1.34,0.03,0.62,0,0,0,0,8,-0.4,0,0,0,0,0.264,84.2,100.52,0.91,0.12,787,1.1,15,4.4
+13670,2023,10,12,19,0,1.5,1.38,0.033,0.62,0,0,0,0,4,-0.7,0,0,0,0,0.265,85.21,106.22,0.91,0.12,788,1,19,4.6
+13671,2023,10,12,19,30,1.1,1.38,0.033,0.62,0,0,0,0,4,-0.7,0,0,0,0,0.267,87.69,111.89,0.91,0.12,788,1,21,4.5
+13672,2023,10,12,20,0,0.6,1.4,0.034,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.268,88.25,117.48,0.92,0.12,789,1,23,4.4
+13673,2023,10,12,20,30,0.1,1.4,0.034,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.269,91.5,122.92,0.92,0.12,789,1,25,4.2
+13674,2023,10,12,21,0,-0.3,1.41,0.034,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.27,90.74,128.16,0.93,0.12,789,0.9,26,3.9
+13675,2023,10,12,21,30,-0.7,1.41,0.034,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.27,93.42,133.08,0.93,0.12,789,0.9,27,3.4
+13676,2023,10,12,22,0,-1.2,1.4,0.032,0.62,0,0,0,0,4,-2,0,0,0,0,0.27,94.12,137.57,0.93,0.12,790,0.9,27,3
+13677,2023,10,12,22,30,-1.5,1.4,0.032,0.62,0,0,0,0,4,-2,0,0,0,0,0.271,96.21,141.44,0.93,0.12,790,0.9,27,2.5
+13678,2023,10,12,23,0,-1.9,1.38,0.03,0.62,0,0,0,0,4,-2.2,0,0,0,0,0.271,97.5,144.48,0.93,0.12,790,0.9,27,2.1
+13679,2023,10,12,23,30,-2.3,1.38,0.03,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.271,100,146.45,0.93,0.12,790,0.9,27,1.9
+13680,2023,10,13,0,0,-2.6,1.37,0.028,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.271,100,147.16,0.93,0.12,791,0.9,27,1.6
+13681,2023,10,13,0,30,-2.8,1.37,0.028,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.271,100,146.52,0.93,0.12,791,0.9,27,1.5
+13682,2023,10,13,1,0,-3,1.36,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,144.6,0.93,0.12,791,0.9,27,1.5
+13683,2023,10,13,1,30,-3,1.36,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,141.61,0.93,0.12,791,0.8,26,1.7
+13684,2023,10,13,2,0,-3,1.35,0.026,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,137.77,0.93,0.12,791,0.8,25,1.9
+13685,2023,10,13,2,30,-3,1.35,0.026,0.62,0,0,0,0,0,-3,0,0,0,0,0.27,100,133.31,0.93,0.12,791,0.8,27,2.1
+13686,2023,10,13,3,0,-3,1.34,0.024,0.62,0,0,0,0,0,-3,0,0,0,0,0.269,100,128.41,0.93,0.12,792,0.7,28,2.3
+13687,2023,10,13,3,30,-3.1,1.34,0.024,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.268,100,123.19,0.93,0.12,792,0.7,32,2.4
+13688,2023,10,13,4,0,-3.1,1.33,0.023,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.266,100,117.76,0.93,0.12,792,0.7,35,2.5
+13689,2023,10,13,4,30,-3.2,1.33,0.023,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.264,100,112.18,0.93,0.12,792,0.6,39,2.5
+13690,2023,10,13,5,0,-3.3,1.31,0.021,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.261,100,106.53,0.93,0.12,792,0.6,43,2.5
+13691,2023,10,13,5,30,-3.4,1.31,0.021,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.259,100,100.83,0.92,0.12,792,0.6,46,2.4
+13692,2023,10,13,6,0,-3.6,1.31,0.02,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.257,100,95.15,0.92,0.12,793,0.6,48,2.3
+13693,2023,10,13,6,30,-2.8,1.31,0.02,0.62,12,166,14,1,0,-3.2,10,107,14,12,0.256,97.28,89.17,0.92,0.12,793,0.6,52,2.6
+13694,2023,10,13,7,0,-2,1.32,0.018,0.62,27,571,88,4,4,-3,41,114,50,53,0.254,92.81,83.86,0.92,0.12,793,0.6,55,2.9
+13695,2023,10,13,7,30,-0.5,1.32,0.018,0.62,35,741,183,0,4,-3,96,11,0,98,0.253,83.15,78.5,0.91,0.12,793,0.6,60,3.4
+13696,2023,10,13,8,0,1,1.34,0.017,0.62,41,840,282,0,0,-3.3,104,459,0,236,0.252,72.83,73.3,0.91,0.12,794,0.6,64,3.9
+13697,2023,10,13,8,30,2.1,1.34,0.017,0.62,44,902,377,0,0,-3.3,57,854,0,372,0.252,67.32,68.34,0.91,0.12,794,0.6,65,4
+13698,2023,10,13,9,0,3.2,1.33,0.016,0.62,48,944,466,0,0,-3.8,48,944,29,466,0.253,60.26,63.7,0.91,0.12,794,0.6,66,4.1
+13699,2023,10,13,9,30,4.1,1.33,0.016,0.62,49,974,544,0,0,-3.8,49,974,0,544,0.253,56.56,59.47,0.91,0.12,794,0.6,66,4
+13700,2023,10,13,10,0,5,1.34,0.016,0.62,51,995,611,0,0,-4,51,995,0,611,0.253,52.38,55.76,0.9,0.12,794,0.6,66,3.8
+13701,2023,10,13,10,30,5.8,1.34,0.016,0.62,55,1006,665,0,0,-4,55,1006,0,665,0.253,49.49,52.68,0.91,0.12,793,0.6,66,3.6
+13702,2023,10,13,11,0,6.6,1.04,0.022,0.62,59,1012,705,0,0,-4.2,59,1012,0,705,0.254,45.92,50.36,0.92,0.12,793,0.6,66,3.4
+13703,2023,10,13,11,30,7.3,1.04,0.022,0.62,60,1018,729,0,0,-4.2,60,1018,0,729,0.253,43.78,48.91,0.91,0.12,793,0.6,66,3.1
+13704,2023,10,13,12,0,8,1.05,0.02,0.62,59,1018,735,0,0,-4.5,249,529,0,600,0.253,40.87,48.41,0.91,0.12,793,0.7,66,2.9
+13705,2023,10,13,12,30,8.4,1.05,0.02,0.62,59,1016,727,0,4,-4.5,353,76,0,403,0.253,39.78,48.9,0.91,0.12,793,0.7,67,2.7
+13706,2023,10,13,13,0,8.9,1.07,0.019,0.62,58,1011,703,0,4,-4.8,300,38,0,324,0.252,37.65,50.34,0.91,0.12,793,0.7,67,2.5
+13707,2023,10,13,13,30,9.1,1.07,0.019,0.62,58,997,663,0,4,-4.8,209,7,0,213,0.252,37.14,52.65,0.91,0.12,793,0.7,67,2.4
+13708,2023,10,13,14,0,9.3,0.87,0.025,0.62,59,976,609,0,4,-5.1,160,0,0,160,0.252,35.8,55.72,0.92,0.12,793,0.7,68,2.2
+13709,2023,10,13,14,30,9.1,0.87,0.025,0.62,57,955,543,0,4,-5.1,160,1,0,161,0.251,36.29,59.43,0.92,0.12,793,0.7,67,2.2
+13710,2023,10,13,15,0,9,0.89,0.024,0.62,53,925,464,0,4,-5.3,163,2,0,164,0.251,35.89,63.65,0.92,0.12,793,0.7,67,2.2
+13711,2023,10,13,15,30,8.5,0.89,0.024,0.62,49,883,376,0,4,-5.3,131,2,0,132,0.251,37.13,68.29,0.92,0.12,793,0.7,67,2.2
+13712,2023,10,13,16,0,8,0.9,0.024,0.62,45,820,281,0,4,-5.4,121,11,0,124,0.251,38.28,73.25,0.92,0.12,793,0.7,67,2.2
+13713,2023,10,13,16,30,6.5,0.9,0.024,0.62,38,719,182,0,4,-5.4,76,5,0,77,0.251,42.41,78.45,0.92,0.12,793,0.7,67,1.7
+13714,2023,10,13,17,0,4.9,0.9,0.023,0.62,28,545,87,6,4,-2.9,49,6,86,50,0.251,57.13,83.81,0.92,0.12,793,0.7,68,1.1
+13715,2023,10,13,17,30,3.6,0.9,0.023,0.62,12,152,14,1,0,-2.9,10,80,18,11,0.251,62.57,89.14,0.92,0.12,793,0.6,69,1.1
+13716,2023,10,13,18,0,2.2,0.91,0.023,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.251,65.99,95.11,0.92,0.12,794,0.6,70,1.1
+13717,2023,10,13,18,30,1.7,0.91,0.023,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.251,68.39,100.8,0.92,0.12,794,0.6,71,1.2
+13718,2023,10,13,19,0,1.2,0.93,0.023,0.62,0,0,0,0,0,-4,0,0,0,0,0.25,68.28,106.51,0.92,0.12,794,0.6,71,1.2
+13719,2023,10,13,19,30,0.8,0.93,0.023,0.62,0,0,0,0,0,-4,0,0,0,0,0.25,70.27,112.18,0.92,0.12,794,0.6,72,1.2
+13720,2023,10,13,20,0,0.4,0.95,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.25,69.9,117.77,0.92,0.12,794,0.6,72,1.3
+13721,2023,10,13,20,30,0.1,0.95,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.25,71.43,123.22,0.92,0.12,794,0.6,74,1.2
+13722,2023,10,13,21,0,-0.2,0.98,0.024,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.251,70.77,128.47,0.92,0.12,794,0.6,76,1.2
+13723,2023,10,13,21,30,-0.4,0.98,0.024,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.251,71.81,133.41,0.93,0.12,794,0.6,78,1.2
+13724,2023,10,13,22,0,-0.6,1.01,0.026,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.252,70.87,137.91,0.93,0.12,794,0.7,80,1.2
+13725,2023,10,13,22,30,-0.8,1.01,0.026,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.252,71.91,141.8,0.93,0.12,794,0.7,83,1.1
+13726,2023,10,13,23,0,-0.9,1.03,0.028,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.253,71,144.85,0.93,0.12,794,0.7,86,1.1
+13727,2023,10,13,23,30,-0.9,1.03,0.028,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.253,71,146.83,0.93,0.12,794,0.7,89,1.1
+13728,2023,10,14,0,0,-1,1.05,0.03,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.254,70.61,147.53,0.93,0.12,794,0.7,92,1
+13729,2023,10,14,0,30,-0.7,1.05,0.03,0.62,0,0,0,0,8,-5.7,0,0,0,0,0.254,69.17,146.87,0.94,0.12,795,0.7,98,0.9
+13730,2023,10,14,1,0,-0.5,1.06,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.255,69.19,144.93,0.94,0.12,795,0.7,103,0.8
+13731,2023,10,14,1,30,-0.3,1.06,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.256,68.19,141.91,0.94,0.12,795,0.7,110,0.8
+13732,2023,10,14,2,0,0,1.08,0.033,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.256,68.17,138.05,0.94,0.12,795,0.8,118,0.7
+13733,2023,10,14,2,30,0,1.08,0.033,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.257,68.17,133.56,0.93,0.12,795,0.8,123,0.7
+13734,2023,10,14,3,0,0,1.11,0.029,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.257,67.21,128.64,0.93,0.12,795,0.7,127,0.7
+13735,2023,10,14,3,30,-0.2,1.11,0.029,0.62,0,0,0,0,0,-5.4,0,0,29,0,0.258,68.19,123.41,0.92,0.12,795,0.7,132,0.7
+13736,2023,10,14,4,0,-0.4,1.13,0.024,0.62,0,0,0,0,0,-6.1,0,0,14,0,0.258,65.22,117.96,0.92,0.12,795,0.7,136,0.8
+13737,2023,10,14,4,30,-0.3,1.13,0.024,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.259,64.75,112.38,0.91,0.12,795,0.7,140,0.7
+13738,2023,10,14,5,0,-0.3,1.12,0.023,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.259,62.46,106.72,0.91,0.12,795,0.7,144,0.7
+13739,2023,10,14,5,30,-0.3,1.12,0.023,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.259,62.54,101.03,0.92,0.12,796,0.7,143,0.6
+13740,2023,10,14,6,0,-0.2,1.12,0.025,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.258,61.53,95.35,0.92,0.12,796,0.7,142,0.6
+13741,2023,10,14,6,30,0.6,1.12,0.025,0.62,11,141,13,0,0,-6.7,11,141,0,13,0.258,58.07,89.35,0.92,0.12,796,0.7,133,0.5
+13742,2023,10,14,7,0,1.4,1.11,0.027,0.62,29,525,83,0,0,-5.2,29,525,0,83,0.257,61.48,84.06,0.92,0.12,796,0.7,124,0.4
+13743,2023,10,14,7,30,2.9,1.11,0.027,0.62,39,701,176,0,0,-5.2,43,657,0,172,0.257,55.25,78.72,0.92,0.12,796,0.7,140,0.5
+13744,2023,10,14,8,0,4.3,1.1,0.03,0.62,47,801,274,0,0,-5.6,55,760,0,270,0.256,48.58,73.53,0.93,0.12,797,0.7,156,0.6
+13745,2023,10,14,8,30,5.9,1.1,0.03,0.62,53,864,368,0,0,-5.6,53,864,0,368,0.255,43.47,68.59,0.93,0.12,797,0.7,185,0.9
+13746,2023,10,14,9,0,7.6,1.07,0.035,0.62,58,904,455,0,0,-5.1,94,781,7,437,0.253,40.08,63.97,0.94,0.12,797,0.7,215,1.2
+13747,2023,10,14,9,30,8.3,1.07,0.035,0.62,63,931,532,0,0,-5.1,130,742,7,504,0.253,38.22,59.76,0.94,0.12,797,0.8,221,1.4
+13748,2023,10,14,10,0,9,1.07,0.039,0.62,67,950,597,0,0,-5,154,729,7,561,0.252,36.82,56.06,0.94,0.12,797,0.8,228,1.5
+13749,2023,10,14,10,30,9.4,1.07,0.039,0.62,67,970,651,0,0,-5,75,951,0,647,0.252,35.84,53.01,0.94,0.12,797,0.8,229,1.6
+13750,2023,10,14,11,0,9.8,1.24,0.032,0.62,66,984,689,0,0,-5,211,648,0,621,0.252,34.94,50.71,0.94,0.12,797,0.9,231,1.6
+13751,2023,10,14,11,30,10.2,1.24,0.032,0.62,66,990,712,0,5,-5,314,444,0,604,0.253,34.02,49.27,0.93,0.12,797,0.9,229,1.6
+13752,2023,10,14,12,0,10.7,1.29,0.029,0.62,65,994,720,0,5,-5,292,468,0,600,0.253,32.89,48.79,0.93,0.12,797,0.9,228,1.7
+13753,2023,10,14,12,30,11.4,1.29,0.029,0.62,64,994,712,0,8,-5,267,474,0,576,0.253,31.4,49.28,0.92,0.12,797,0.9,227,1.7
+13754,2023,10,14,13,0,12.1,1.31,0.024,0.62,60,991,688,0,8,-5.1,175,655,0,590,0.253,29.78,50.71,0.92,0.12,797,0.9,226,1.8
+13755,2023,10,14,13,30,12.4,1.31,0.024,0.62,59,982,650,0,0,-5.1,194,633,0,575,0.252,29.2,53.02,0.92,0.12,797,0.9,227,1.9
+13756,2023,10,14,14,0,12.8,1.26,0.024,0.62,58,968,598,0,0,-5.3,154,707,0,549,0.251,27.92,56.08,0.92,0.12,797,0.9,227,1.9
+13757,2023,10,14,14,30,12.7,1.26,0.024,0.62,55,948,532,0,0,-5.3,154,643,0,478,0.25,28.1,59.77,0.91,0.12,797,0.9,227,1.9
+13758,2023,10,14,15,0,12.6,1.3,0.021,0.62,51,919,454,0,0,-5.5,51,919,0,454,0.249,27.82,63.99,0.91,0.12,797,0.9,227,2
+13759,2023,10,14,15,30,12.1,1.3,0.021,0.62,47,876,366,0,0,-5.5,47,876,0,366,0.249,28.75,68.61,0.91,0.12,797,0.9,225,1.9
+13760,2023,10,14,16,0,11.7,1.3,0.02,0.62,42,812,272,0,0,-5.4,42,812,0,272,0.248,29.79,73.56,0.91,0.12,797,0.9,223,1.8
+13761,2023,10,14,16,30,10.1,1.3,0.02,0.62,35,710,174,0,0,-5.4,35,710,0,174,0.247,33.12,78.75,0.91,0.12,797,0.9,210,1.2
+13762,2023,10,14,17,0,8.4,1.29,0.022,0.62,28,530,82,1,0,-2.3,30,473,14,79,0.247,46.88,84.1,0.91,0.12,797,0.9,196,0.6
+13763,2023,10,14,17,30,7.4,1.29,0.022,0.62,11,146,13,1,0,-2.3,9,88,14,10,0.247,50.17,89.4,0.92,0.12,797,0.9,178,0.7
+13764,2023,10,14,18,0,6.3,1.24,0.025,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.246,48.35,95.4,0.92,0.12,797,0.9,159,0.8
+13765,2023,10,14,18,30,6,1.24,0.025,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.245,49.36,101.09,0.92,0.12,797,0.9,151,0.9
+13766,2023,10,14,19,0,5.7,1.22,0.023,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.244,50.19,106.79,0.92,0.12,797,0.9,143,0.9
+13767,2023,10,14,19,30,5.3,1.22,0.023,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.242,51.6,112.46,0.92,0.12,797,0.9,135,0.9
+13768,2023,10,14,20,0,4.9,1.23,0.02,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.241,50.22,118.06,0.91,0.12,798,0.9,127,0.9
+13769,2023,10,14,20,30,4.7,1.23,0.02,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.241,50.92,123.52,0.91,0.12,798,0.9,119,0.9
+13770,2023,10,14,21,0,4.4,1.24,0.02,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.24,50.26,128.78,0.91,0.12,798,0.9,110,0.8
+13771,2023,10,14,21,30,4.4,1.24,0.02,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.24,50.26,133.73,0.91,0.12,798,0.9,104,0.7
+13772,2023,10,14,22,0,4.3,1.24,0.019,0.62,0,0,0,0,0,-5.3,0,0,0,0,0.241,49.59,138.25,0.91,0.12,798,0.9,97,0.7
+13773,2023,10,14,22,30,4.2,1.24,0.019,0.62,0,0,0,0,0,-5.3,0,0,0,0,0.241,49.94,142.15,0.91,0.12,798,0.9,96,0.6
+13774,2023,10,14,23,0,4,1.24,0.019,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.241,50.12,145.22,0.91,0.12,798,0.9,95,0.5
+13775,2023,10,14,23,30,3.9,1.24,0.019,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.241,50.53,147.21,0.91,0.12,799,0.9,87,0.5
+13776,2023,10,15,0,0,3.7,1.24,0.019,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.241,50.62,147.91,0.91,0.12,799,0.9,79,0.5
+13777,2023,10,15,0,30,3.6,1.24,0.019,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.241,50.97,147.23,0.91,0.12,799,0.9,79,0.5
+13778,2023,10,15,1,0,3.4,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.24,51.12,145.26,0.91,0.12,799,0.9,79,0.4
+13779,2023,10,15,1,30,3.3,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.24,51.48,142.21,0.91,0.12,799,0.9,89,0.4
+13780,2023,10,15,2,0,3.1,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.239,51.87,138.32,0.91,0.12,799,0.9,98,0.3
+13781,2023,10,15,2,30,2.9,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.239,52.6,133.81,0.91,0.12,799,0.9,104,0.3
+13782,2023,10,15,3,0,2.7,1.27,0.019,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.239,53.01,128.87,0.91,0.12,799,0.9,109,0.3
+13783,2023,10,15,3,30,2.5,1.27,0.019,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.24,53.84,123.62,0.91,0.12,800,1,100,0.2
+13784,2023,10,15,4,0,2.3,1.28,0.018,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.241,54.03,118.17,0.91,0.12,800,1,92,0.2
+13785,2023,10,15,4,30,2.1,1.28,0.018,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.242,54.8,112.58,0.91,0.12,800,1,69,0.2
+13786,2023,10,15,5,0,2,1.28,0.019,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.243,54.96,106.92,0.91,0.12,800,1,47,0.2
+13787,2023,10,15,5,30,1.7,1.28,0.019,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.244,56.15,101.22,0.91,0.12,800,1,45,0.3
+13788,2023,10,15,6,0,1.5,1.26,0.019,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.245,56.99,95.54,0.92,0.12,800,1,43,0.3
+13789,2023,10,15,6,30,2.2,1.26,0.019,0.62,11,143,12,0,0,-6.1,11,143,0,12,0.245,54.21,89.53,0.92,0.12,800,1,39,0.3
+13790,2023,10,15,7,0,2.9,1.26,0.019,0.62,27,524,79,0,0,-4.3,27,524,0,79,0.245,59.21,84.27,0.92,0.12,800,1,35,0.4
+13791,2023,10,15,7,30,4.5,1.26,0.019,0.62,35,702,170,0,0,-4.3,35,702,0,170,0.245,52.98,78.94,0.92,0.12,801,1,40,0.6
+13792,2023,10,15,8,0,6,1.26,0.019,0.62,41,804,266,0,0,-4.8,41,804,0,266,0.245,46.01,73.76,0.92,0.12,801,1,45,0.9
+13793,2023,10,15,8,30,8.1,1.26,0.019,0.62,45,869,359,0,0,-4.7,45,869,0,359,0.245,39.86,68.83,0.92,0.12,801,1,55,0.8
+13794,2023,10,15,9,0,10.3,1.27,0.018,0.62,49,912,446,0,0,-4.8,49,912,0,446,0.244,34.13,64.23,0.91,0.12,801,1,65,0.7
+13795,2023,10,15,9,30,12,1.27,0.018,0.62,51,943,522,0,0,-4.8,51,943,0,522,0.244,30.5,60.04,0.91,0.12,801,1.1,60,0.6
+13796,2023,10,15,10,0,13.6,1.27,0.018,0.62,54,965,588,0,0,-4.7,54,965,0,588,0.244,27.72,56.37,0.91,0.12,801,1.1,54,0.6
+13797,2023,10,15,10,30,14.5,1.27,0.018,0.62,54,981,640,0,0,-4.7,54,981,0,640,0.243,26.16,53.33,0.91,0.12,801,1.1,47,0.7
+13798,2023,10,15,11,0,15.4,1.36,0.015,0.62,54,993,678,0,0,-4.6,54,993,0,678,0.243,24.87,51.05,0.91,0.12,801,1.1,40,0.8
+13799,2023,10,15,11,30,16,1.36,0.015,0.62,54,998,700,0,0,-4.6,54,998,0,700,0.242,23.91,49.63,0.91,0.12,800,1.1,42,0.8
+13800,2023,10,15,12,0,16.6,1.37,0.015,0.62,54,1000,708,0,0,-4.6,54,1000,0,708,0.242,23.09,49.16,0.91,0.12,800,1.1,43,0.9
+13801,2023,10,15,12,30,17,1.37,0.015,0.62,53,997,699,0,0,-4.6,53,997,0,699,0.242,22.52,49.65,0.91,0.12,800,1.1,41,0.9
+13802,2023,10,15,13,0,17.4,1.38,0.016,0.62,53,990,675,0,0,-4.6,53,990,0,675,0.242,21.99,51.08,0.91,0.12,799,1.2,39,0.9
+13803,2023,10,15,13,30,17.6,1.38,0.016,0.62,52,980,637,0,0,-4.6,52,980,0,637,0.242,21.72,53.38,0.91,0.12,799,1.2,41,0.9
+13804,2023,10,15,14,0,17.7,1.4,0.016,0.62,51,964,584,0,0,-4.5,51,964,0,584,0.242,21.64,56.43,0.91,0.12,799,1.2,44,0.9
+13805,2023,10,15,14,30,17.6,1.4,0.016,0.62,50,942,519,0,0,-4.5,50,942,0,519,0.242,21.78,60.12,0.91,0.12,799,1.2,52,1
+13806,2023,10,15,15,0,17.4,1.42,0.016,0.62,47,912,442,0,0,-4.5,47,912,0,442,0.242,22.1,64.32,0.91,0.12,799,1.2,60,1
+13807,2023,10,15,15,30,16.9,1.42,0.016,0.62,43,868,355,0,0,-4.5,51,844,7,354,0.242,22.81,68.93,0.9,0.12,799,1.2,70,1.1
+13808,2023,10,15,16,0,16.3,1.44,0.015,0.62,39,804,262,0,0,-3.5,39,804,0,262,0.242,25.59,73.87,0.9,0.12,799,1.2,80,1.1
+13809,2023,10,15,16,30,14.3,1.44,0.015,0.62,32,703,166,0,0,-3.5,48,582,11,159,0.242,29.09,79.05,0.9,0.12,799,1.2,91,1
+13810,2023,10,15,17,0,12.2,1.44,0.015,0.62,25,525,76,2,0,0.8,34,350,36,68,0.242,45.59,84.39,0.9,0.12,799,1.2,103,0.9
+13811,2023,10,15,17,30,10.9,1.44,0.015,0.62,10,144,11,3,8,0.8,8,67,39,8,0.242,49.67,89.66,0.9,0.12,799,1.1,105,1
+13812,2023,10,15,18,0,9.6,1.43,0.015,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.242,47.01,95.68,0.9,0.12,799,1.1,107,1.2
+13813,2023,10,15,18,30,9,1.43,0.015,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.242,48.94,101.36,0.9,0.12,799,1.1,106,1.2
+13814,2023,10,15,19,0,8.4,1.43,0.015,0.62,0,0,0,0,8,-1.7,0,0,0,0,0.242,48.89,107.07,0.9,0.12,800,1.1,105,1.2
+13815,2023,10,15,19,30,8.1,1.43,0.015,0.62,0,0,0,0,8,-1.7,0,0,0,0,0.242,49.89,112.74,0.9,0.12,800,1.1,101,1.2
+13816,2023,10,15,20,0,7.8,1.44,0.015,0.62,0,0,0,0,8,-2.3,0,0,0,0,0.242,48.96,118.35,0.9,0.12,800,1.1,97,1.1
+13817,2023,10,15,20,30,7.5,1.44,0.015,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.242,49.97,123.82,0.9,0.12,800,1.1,91,1.1
+13818,2023,10,15,21,0,7.3,1.44,0.015,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.242,48.9,129.08,0.9,0.12,800,1.2,85,1.1
+13819,2023,10,15,21,30,7,1.44,0.015,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.242,49.92,134.05,0.9,0.12,800,1.2,82,1
+13820,2023,10,15,22,0,6.7,1.42,0.016,0.62,0,0,0,0,0,-3,0,0,0,0,0.242,50.09,138.58,0.9,0.12,800,1.2,78,1
+13821,2023,10,15,22,30,6.5,1.42,0.016,0.62,0,0,0,0,0,-3,0,0,0,0,0.241,50.78,142.5,0.9,0.12,800,1.2,78,1
+13822,2023,10,15,23,0,6.3,1.4,0.016,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.241,50.84,145.59,0.9,0.12,800,1.2,77,1
+13823,2023,10,15,23,30,6,1.4,0.016,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.241,51.84,147.58,0.9,0.12,799,1.2,79,0.9
+13824,2023,10,16,0,0,5.8,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,52.19,148.28,0.9,0.12,799,1.3,80,0.9
+13825,2023,10,16,0,30,5.5,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,53.28,147.58,0.9,0.12,799,1.3,81,0.9
+13826,2023,10,16,1,0,5.2,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,54.06,145.59,0.9,0.12,799,1.3,82,0.8
+13827,2023,10,16,1,30,5.1,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,54.44,142.51,0.9,0.12,799,1.3,85,0.8
+13828,2023,10,16,2,0,5,1.4,0.016,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.241,54.22,138.59,0.9,0.12,799,1.3,88,0.8
+13829,2023,10,16,2,30,5,1.4,0.016,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.241,54.22,134.06,0.9,0.12,799,1.3,92,0.8
+13830,2023,10,16,3,0,5.1,1.41,0.016,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,53.2,129.1,0.9,0.12,799,1.3,95,0.8
+13831,2023,10,16,3,30,5.1,1.41,0.016,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,53.2,123.84,0.9,0.12,799,1.2,95,0.7
+13832,2023,10,16,4,0,5.2,1.43,0.016,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.24,52.09,118.37,0.9,0.12,799,1.2,95,0.6
+13833,2023,10,16,4,30,5.3,1.43,0.016,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.239,51.73,112.78,0.9,0.12,799,1.2,88,0.5
+13834,2023,10,16,5,0,5.4,1.43,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.239,50.71,107.11,0.9,0.12,799,1.2,81,0.4
+13835,2023,10,16,5,30,5.4,1.43,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.239,50.71,101.42,0.9,0.12,799,1.1,64,0.3
+13836,2023,10,16,6,0,5.4,1.43,0.015,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.238,50.1,95.74,0.9,0.12,799,1.1,47,0.3
+13837,2023,10,16,6,30,6,1.43,0.015,0.62,10,144,11,0,0,-4.2,10,144,0,11,0.238,48.07,89.72,0.9,0.12,799,1.1,25,0.2
+13838,2023,10,16,7,0,6.5,1.42,0.015,0.62,24,528,75,0,0,-2.5,24,528,0,75,0.237,52.61,84.48,0.9,0.12,799,1.1,3,0.2
+13839,2023,10,16,7,30,8.1,1.42,0.015,0.62,33,706,166,0,0,-2.5,33,706,0,166,0.237,47.17,79.15,0.9,0.12,799,1.1,177,0.2
+13840,2023,10,16,8,0,9.6,1.4,0.015,0.62,38,808,261,0,0,-3.1,38,808,0,261,0.236,40.87,73.99,0.9,0.12,799,1.1,351,0.3
+13841,2023,10,16,8,30,11.5,1.4,0.015,0.62,43,872,354,0,0,-3.1,43,872,0,354,0.235,36.02,69.08,0.9,0.12,799,1.1,296,0.3
+13842,2023,10,16,9,0,13.4,1.38,0.016,0.62,47,916,441,0,0,-3.3,47,916,0,441,0.235,31.15,64.49,0.9,0.12,799,1.1,241,0.3
+13843,2023,10,16,9,30,15.3,1.38,0.016,0.62,49,947,518,0,0,-3.3,49,947,0,518,0.234,27.56,60.32,0.9,0.12,799,1,219,0.6
+13844,2023,10,16,10,0,17.3,1.35,0.016,0.62,51,969,583,0,0,-3.2,51,969,0,583,0.234,24.48,56.67,0.9,0.12,799,1,197,1
+13845,2023,10,16,10,30,18.2,1.35,0.016,0.62,51,986,635,0,0,-3.2,51,986,0,635,0.233,23.11,53.66,0.9,0.12,798,1,203,1.2
+13846,2023,10,16,11,0,19.1,1.46,0.013,0.62,49,998,672,0,0,-2.8,49,998,0,672,0.233,22.63,51.39,0.89,0.12,798,1.1,210,1.3
+13847,2023,10,16,11,30,19.7,1.46,0.013,0.62,50,1003,695,0,0,-2.8,50,1003,0,695,0.233,21.8,49.99,0.9,0.12,798,1.1,218,1.4
+13848,2023,10,16,12,0,20.3,1.43,0.013,0.62,51,1005,703,0,0,-2.5,51,1005,0,703,0.232,21.45,49.52,0.9,0.12,797,1.1,226,1.5
+13849,2023,10,16,12,30,20.6,1.43,0.013,0.62,51,1003,695,0,0,-2.5,51,1003,0,695,0.232,21.06,50.02,0.9,0.12,797,1.1,232,1.6
+13850,2023,10,16,13,0,20.9,1.42,0.013,0.62,50,997,671,0,0,-2.4,50,997,0,671,0.231,20.84,51.45,0.9,0.12,797,1.1,238,1.7
+13851,2023,10,16,13,30,20.9,1.42,0.013,0.62,53,983,634,0,0,-2.4,53,983,0,634,0.231,20.82,53.74,0.9,0.12,796,1.1,241,1.7
+13852,2023,10,16,14,0,21,1.16,0.02,0.62,55,962,582,0,0,-2.5,55,962,0,582,0.231,20.51,56.78,0.91,0.12,796,1.1,244,1.7
+13853,2023,10,16,14,30,20.7,1.16,0.02,0.62,53,940,516,0,0,-2.5,53,940,0,516,0.231,20.89,60.46,0.91,0.12,796,1,244,1.7
+13854,2023,10,16,15,0,20.4,1.2,0.02,0.62,49,910,439,0,0,-2.7,49,910,0,439,0.231,20.94,64.64,0.91,0.12,796,1,244,1.7
+13855,2023,10,16,15,30,19.6,1.2,0.02,0.62,45,866,352,0,0,-2.7,45,866,0,352,0.231,21.97,69.24,0.9,0.12,795,1,244,1.5
+13856,2023,10,16,16,0,18.8,1.23,0.019,0.62,40,802,259,0,0,-1.2,40,802,0,259,0.232,25.77,74.17,0.9,0.12,795,1,243,1.2
+13857,2023,10,16,16,30,16.8,1.23,0.019,0.62,34,699,163,0,0,-1.2,34,699,0,163,0.232,29.22,79.34,0.9,0.12,795,1,247,1
+13858,2023,10,16,17,0,14.9,1.27,0.018,0.62,25,515,73,0,0,1.6,25,515,0,73,0.232,40.64,84.67,0.9,0.12,795,0.9,251,0.7
+13859,2023,10,16,17,30,14.1,1.27,0.018,0.62,8,99,8,0,0,1.6,8,99,0,8,0.233,42.79,89.91,0.9,0.12,795,0.9,255,0.6
+13860,2023,10,16,18,0,13.4,1.3,0.017,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.234,36.23,95.95,0.9,0.12,795,0.9,259,0.6
+13861,2023,10,16,18,30,13,1.3,0.017,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.235,37.19,101.64,0.9,0.12,795,0.9,258,0.4
+13862,2023,10,16,19,0,12.6,1.31,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.235,36.09,107.34,0.9,0.12,795,0.8,257,0.3
+13863,2023,10,16,19,30,12.2,1.31,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.236,37.05,113.02,0.89,0.12,795,0.8,197,0.2
+13864,2023,10,16,20,0,11.9,1.31,0.016,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.237,37.08,118.63,0.89,0.12,795,0.8,137,0.2
+13865,2023,10,16,20,30,11.4,1.31,0.016,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.237,38.32,124.11,0.89,0.12,795,0.8,129,0.3
+13866,2023,10,16,21,0,10.9,1.31,0.015,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.237,39.74,129.39,0.89,0.12,795,0.8,121,0.4
+13867,2023,10,16,21,30,10.4,1.31,0.015,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.238,41.08,134.36,0.89,0.12,795,0.8,125,0.5
+13868,2023,10,16,22,0,10,1.3,0.015,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.238,42.69,138.91,0.9,0.12,795,0.8,129,0.5
+13869,2023,10,16,22,30,9.7,1.3,0.015,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.238,43.55,142.85,0.9,0.12,795,0.8,139,0.5
+13870,2023,10,16,23,0,9.3,1.29,0.015,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.239,45.33,145.95,0.9,0.12,794,0.8,150,0.5
+13871,2023,10,16,23,30,9.1,1.29,0.015,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.239,45.94,147.95,0.9,0.12,794,0.8,162,0.5
+13872,2023,10,17,0,0,8.8,1.28,0.015,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.24,47.38,148.64,0.9,0.12,794,0.8,174,0.5
+13873,2023,10,17,0,30,8.4,1.28,0.015,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.241,48.68,147.93,0.9,0.12,794,0.8,177,0.6
+13874,2023,10,17,1,0,8,1.28,0.015,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.242,50.34,145.92,0.9,0.12,794,0.8,180,0.6
+13875,2023,10,17,1,30,7.6,1.28,0.015,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.244,51.73,142.81,0.9,0.12,794,0.8,185,0.7
+13876,2023,10,17,2,0,7.1,1.28,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.245,54.12,138.86,0.9,0.12,794,0.8,190,0.9
+13877,2023,10,17,2,30,6.6,1.28,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.247,56,134.31,0.9,0.12,794,0.7,197,1
+13878,2023,10,17,3,0,6.1,1.28,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.249,58.04,129.33,0.9,0.12,793,0.7,204,1.1
+13879,2023,10,17,3,30,5.6,1.28,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.25,60.08,124.05,0.9,0.12,793,0.7,211,1.2
+13880,2023,10,17,4,0,5.1,1.29,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.251,61.99,118.58,0.9,0.12,793,0.7,218,1.2
+13881,2023,10,17,4,30,4.8,1.29,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.252,63.29,112.98,0.9,0.12,793,0.7,222,1.2
+13882,2023,10,17,5,0,4.5,1.29,0.016,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.254,63.93,107.31,0.9,0.12,794,0.7,227,1.3
+13883,2023,10,17,5,30,4.2,1.29,0.016,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.256,65.28,101.61,0.9,0.12,794,0.7,228,1.3
+13884,2023,10,17,6,0,4,1.31,0.016,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.257,65.28,95.94,0.9,0.12,794,0.7,230,1.3
+13885,2023,10,17,6,30,5,1.31,0.016,0.62,8,104,8,0,0,-1.9,8,104,0,8,0.259,60.87,89.9,0.89,0.12,794,0.7,228,1.2
+13886,2023,10,17,7,0,6.1,1.33,0.016,0.62,25,530,74,0,0,-1,25,530,0,74,0.26,60.44,84.68,0.89,0.12,794,0.7,226,1.1
+13887,2023,10,17,7,30,8.1,1.33,0.016,0.62,33,713,165,0,0,-1,33,713,0,165,0.259,52.72,79.37,0.89,0.12,794,0.8,225,1.6
+13888,2023,10,17,8,0,10.2,1.34,0.017,0.62,39,816,261,0,0,-1.3,39,816,0,261,0.258,44.86,74.23,0.89,0.12,794,0.8,224,2.1
+13889,2023,10,17,8,30,12.1,1.34,0.017,0.62,44,879,354,0,0,-1.3,44,879,0,354,0.257,39.56,69.33,0.89,0.12,794,0.8,229,2.4
+13890,2023,10,17,9,0,14,1.35,0.018,0.62,48,922,441,0,0,-2.4,48,922,0,441,0.256,32.08,64.76,0.9,0.12,794,0.8,235,2.6
+13891,2023,10,17,9,30,15.9,1.35,0.018,0.62,51,952,518,0,0,-2.4,51,952,0,518,0.255,28.4,60.61,0.9,0.12,794,0.8,239,2.9
+13892,2023,10,17,10,0,17.7,1.34,0.02,0.62,54,971,583,0,0,-4.1,60,952,0,579,0.254,22.26,56.98,0.9,0.12,794,0.8,243,3.2
+13893,2023,10,17,10,30,18.6,1.34,0.02,0.62,55,986,635,0,0,-4.1,66,954,0,627,0.253,21.04,53.98,0.9,0.12,794,0.9,242,3.3
+13894,2023,10,17,11,0,19.6,1.48,0.018,0.62,56,996,673,0,8,-4.7,131,765,0,605,0.253,18.94,51.74,0.91,0.12,793,0.9,241,3.4
+13895,2023,10,17,11,30,20,1.48,0.018,0.62,56,1001,695,0,8,-4.7,202,614,0,594,0.252,18.48,50.35,0.91,0.12,793,0.9,242,3.5
+13896,2023,10,17,12,0,20.5,1.53,0.019,0.62,56,1002,702,0,8,-4.9,160,754,0,646,0.251,17.63,49.89,0.91,0.12,793,1,243,3.7
+13897,2023,10,17,12,30,20.6,1.53,0.019,0.62,55,1000,693,0,8,-4.9,221,574,0,587,0.251,17.52,50.39,0.91,0.12,793,1,244,3.8
+13898,2023,10,17,13,0,20.7,1.56,0.019,0.62,56,994,670,0,7,-5.1,233,521,0,555,0.25,17.25,51.82,0.91,0.12,792,1,245,3.8
+13899,2023,10,17,13,30,20.8,1.56,0.019,0.62,53,985,631,0,7,-5.1,167,622,0,532,0.251,17.14,54.1,0.91,0.12,792,1,244,3.9
+13900,2023,10,17,14,0,20.8,1.71,0.017,0.62,50,972,578,0,0,-5.1,67,923,0,568,0.251,17.1,57.13,0.91,0.12,792,0.9,244,4
+13901,2023,10,17,14,30,20.8,1.71,0.017,0.62,48,952,513,0,0,-5.1,85,826,0,488,0.251,17.08,60.79,0.9,0.12,791,0.9,242,3.9
+13902,2023,10,17,15,0,20.7,1.8,0.015,0.62,44,924,435,0,0,-5,44,924,0,435,0.252,17.33,64.97,0.9,0.12,791,0.9,239,3.8
+13903,2023,10,17,15,30,19.9,1.8,0.015,0.62,41,882,349,0,0,-5,41,882,0,349,0.252,18.21,69.56,0.9,0.12,791,0.8,236,3.1
+13904,2023,10,17,16,0,19.1,1.83,0.014,0.62,37,818,256,0,0,-2.2,37,818,0,256,0.251,23.53,74.47,0.9,0.12,791,0.8,232,2.3
+13905,2023,10,17,16,30,16.7,1.83,0.014,0.62,31,712,159,0,0,-2.2,31,712,0,159,0.251,27.35,79.63,0.9,0.12,791,0.8,229,1.8
+13906,2023,10,17,17,0,14.2,1.8,0.014,0.62,23,523,69,0,0,0.5,23,523,0,69,0.25,39.29,84.95,0.9,0.12,791,0.8,226,1.3
+13907,2023,10,17,17,30,13.1,1.8,0.014,0.62,7,101,7,0,0,0.5,7,101,0,7,0.25,42.19,90.15,0.89,0.12,791,0.9,240,1.3
+13908,2023,10,17,18,0,12,1.73,0.016,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.25,40.92,96.23,0.89,0.12,791,0.9,254,1.3
+13909,2023,10,17,18,30,11.2,1.73,0.016,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.251,43.13,101.91,0.88,0.12,791,0.9,274,1.3
+13910,2023,10,17,19,0,10.4,1.65,0.019,0.62,0,0,0,0,0,-1,0,0,0,0,0.252,45.07,107.62,0.88,0.12,792,0.9,294,1.3
+13911,2023,10,17,19,30,9.7,1.65,0.019,0.62,0,0,0,0,0,-1,0,0,0,0,0.252,47.23,113.3,0.88,0.12,792,0.9,307,1.3
+13912,2023,10,17,20,0,9,1.53,0.02,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.253,48.86,118.91,0.87,0.12,792,0.9,319,1.3
+13913,2023,10,17,20,30,8.6,1.53,0.02,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.253,50.2,124.4,0.88,0.12,792,0.9,325,1.3
+13914,2023,10,17,21,0,8.3,1.34,0.02,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.254,50.4,129.68,0.88,0.12,793,0.9,331,1.3
+13915,2023,10,17,21,30,8.1,1.34,0.02,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.254,51.09,134.68,0.88,0.12,793,0.9,333,1.2
+13916,2023,10,17,22,0,7.9,1.18,0.018,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,50.99,139.24,0.89,0.12,793,0.9,334,1.2
+13917,2023,10,17,22,30,7.7,1.18,0.018,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.254,51.68,143.19,0.89,0.12,793,0.9,337,1.1
+13918,2023,10,17,23,0,7.4,1.09,0.017,0.62,0,0,0,0,7,-1.7,0,0,0,0,0.254,52.63,146.31,0.89,0.12,793,1,341,1.1
+13919,2023,10,17,23,30,7.2,1.09,0.017,0.62,0,0,0,0,7,-1.7,0,0,0,0,0.254,53.36,148.32,0.89,0.12,793,1,343,1
+13920,2023,10,18,0,0,7.1,1.05,0.015,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.253,53.9,149.01,0.89,0.12,793,1,345,0.9
+13921,2023,10,18,0,30,6.9,1.05,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,54.64,148.28,0.89,0.12,793,1,342,0.9
+13922,2023,10,18,1,0,6.7,1.04,0.014,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.253,55.48,146.24,0.89,0.12,793,1,339,0.8
+13923,2023,10,18,1,30,6.5,1.04,0.014,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,56.32,143.1,0.89,0.12,794,1,339,0.8
+13924,2023,10,18,2,0,6.3,1.06,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,57,139.13,0.89,0.12,794,1.1,338,0.7
+13925,2023,10,18,2,30,6.3,1.06,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,57,134.55,0.9,0.12,794,1.1,339,0.7
+13926,2023,10,18,3,0,6.3,1.06,0.016,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.254,57.39,129.56,0.9,0.12,794,1,339,0.6
+13927,2023,10,18,3,30,6.1,1.06,0.016,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.255,58.19,124.27,0.9,0.12,794,1,341,0.5
+13928,2023,10,18,4,0,6,1.06,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.255,58.5,118.78,0.9,0.12,794,1,344,0.4
+13929,2023,10,18,4,30,5.7,1.06,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.256,59.72,113.17,0.89,0.12,794,1.1,182,0.5
+13930,2023,10,18,5,0,5.4,1.07,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,60.54,107.5,0.89,0.12,794,1.1,20,0.6
+13931,2023,10,18,5,30,5.1,1.07,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,61.89,101.81,0.89,0.12,795,1.1,29,0.7
+13932,2023,10,18,6,0,4.8,1.08,0.014,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,63.29,96.14,0.89,0.12,795,1.2,38,0.9
+13933,2023,10,18,6,30,5.6,1.08,0.014,0.62,7,96,7,0,0,-1.6,7,96,0,7,0.256,59.87,90.07,0.89,0.12,795,1.2,47,0.7
+13934,2023,10,18,7,0,6.3,1.1,0.014,0.62,23,505,68,0,0,-0.4,23,505,0,68,0.256,62.01,84.89,0.88,0.12,795,1.2,56,0.6
+13935,2023,10,18,7,30,8.2,1.1,0.014,0.62,31,692,156,0,0,-0.4,31,692,0,156,0.256,54.47,79.59,0.88,0.12,795,1.2,51,0.7
+13936,2023,10,18,8,0,10.1,1.12,0.013,0.62,36,797,250,0,0,-0.4,36,797,0,250,0.256,48.19,74.46,0.88,0.12,796,1.2,46,0.8
+13937,2023,10,18,8,30,11.9,1.12,0.013,0.62,41,864,342,0,0,-0.4,41,864,0,342,0.255,42.78,69.58,0.88,0.12,796,1.2,195,1.3
+13938,2023,10,18,9,0,13.8,1.14,0.013,0.62,43,908,426,0,0,0.6,43,908,0,426,0.255,40.52,65.02,0.88,0.12,796,1.2,345,1.9
+13939,2023,10,18,9,30,15.1,1.14,0.013,0.62,45,940,502,0,0,0.6,45,940,0,502,0.254,37.26,60.89,0.88,0.12,796,1.2,340,2.3
+13940,2023,10,18,10,0,16.5,1.15,0.012,0.62,46,962,566,0,0,0.3,143,674,0,507,0.252,33.24,57.28,0.88,0.12,796,1.2,336,2.7
+13941,2023,10,18,10,30,17.4,1.15,0.012,0.62,46,978,617,0,0,0.3,113,785,0,571,0.251,31.41,54.3,0.86,0.12,796,1.3,333,2.7
+13942,2023,10,18,11,0,18.3,1.52,0.01,0.62,46,990,654,0,0,-0.1,46,990,0,654,0.25,29,52.08,0.84,0.12,795,1.3,329,2.7
+13943,2023,10,18,11,30,19.1,1.52,0.01,0.62,45,996,676,0,0,0,45,996,0,676,0.249,27.59,50.7,0.84,0.12,795,1.3,324,2.8
+13944,2023,10,18,12,0,19.8,1.52,0.01,0.62,46,998,684,0,0,-0.1,46,998,0,684,0.248,26.4,50.25,0.85,0.12,795,1.3,319,2.8
+13945,2023,10,18,12,30,20.2,1.52,0.01,0.62,46,996,676,0,0,-0.1,46,996,0,676,0.247,25.76,50.76,0.85,0.12,795,1.3,320,3
+13946,2023,10,18,13,0,20.7,1.5,0.01,0.62,45,990,652,0,0,0,45,990,0,652,0.246,25.07,52.19,0.85,0.12,794,1.3,320,3.2
+13947,2023,10,18,13,30,20.9,1.5,0.01,0.62,47,978,615,0,0,0,47,978,0,615,0.246,24.77,54.46,0.87,0.12,794,1.3,323,3.3
+13948,2023,10,18,14,0,21.1,1.15,0.013,0.62,46,961,563,0,0,0,46,961,0,563,0.245,24.5,57.48,0.89,0.12,794,1.3,325,3.4
+13949,2023,10,18,14,30,20.9,1.15,0.013,0.62,45,939,498,0,0,0,45,939,0,498,0.245,24.8,61.13,0.89,0.12,794,1.2,327,3.3
+13950,2023,10,18,15,0,20.8,1.11,0.013,0.62,43,907,422,0,0,0,43,907,0,422,0.246,24.88,65.29,0.89,0.12,794,1.2,330,3.3
+13951,2023,10,18,15,30,20.1,1.11,0.013,0.62,40,862,337,0,0,0,40,862,0,337,0.245,25.98,69.86,0.89,0.12,794,1.2,333,2.9
+13952,2023,10,18,16,0,19.4,1.1,0.013,0.62,36,795,245,0,0,0.9,36,795,0,245,0.245,29.04,74.77,0.89,0.12,794,1.2,337,2.4
+13953,2023,10,18,16,30,17.1,1.1,0.013,0.62,30,687,150,0,0,0.9,30,687,0,150,0.245,33.57,79.92,0.89,0.12,795,1.2,348,1.7
+13954,2023,10,18,17,0,14.8,1.13,0.012,0.62,22,493,63,0,0,3,22,493,0,63,0.245,45.09,85.23,0.88,0.12,795,1.2,359,1.1
+13955,2023,10,18,17,30,13.8,1.13,0.012,0.62,7,91,6,0,0,3,7,91,0,6,0.245,48.1,90.88,0.88,0.12,795,1.2,186,1.1
+13956,2023,10,18,18,0,12.7,1.17,0.011,0.62,0,0,0,0,0,2,0,0,0,0,0.246,48.08,96.5,0.88,0.12,795,1.2,13,1.1
+13957,2023,10,18,18,30,12.2,1.17,0.011,0.62,0,0,0,0,0,2,0,0,0,0,0.246,49.75,102.18,0.88,0.12,796,1.2,13,1.1
+13958,2023,10,18,19,0,11.7,1.23,0.011,0.62,0,0,0,0,0,1.6,0,0,0,0,0.246,50.1,107.88,0.87,0.12,796,1.2,13,1
+13959,2023,10,18,19,30,11.2,1.23,0.011,0.62,0,0,0,0,0,1.6,0,0,0,0,0.247,51.78,113.57,0.87,0.12,796,1.1,11,1
+13960,2023,10,18,20,0,10.6,1.27,0.01,0.62,0,0,0,0,0,1.4,0,0,0,0,0.247,52.82,119.18,0.87,0.12,796,1.1,9,1
+13961,2023,10,18,20,30,10.1,1.27,0.01,0.62,0,0,0,0,0,1.4,0,0,0,0,0.247,54.6,124.68,0.87,0.12,796,1.1,6,0.9
+13962,2023,10,18,21,0,9.7,1.29,0.011,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,55.29,129.98,0.87,0.12,796,1.1,3,0.9
+13963,2023,10,18,21,30,9.2,1.29,0.011,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,57.25,134.98,0.87,0.12,797,1,2,0.9
+13964,2023,10,18,22,0,8.8,1.32,0.011,0.62,0,0,0,0,0,1,0,0,0,0,0.246,58.19,139.56,0.87,0.12,797,1,1,0.9
+13965,2023,10,18,22,30,8.3,1.32,0.011,0.62,0,0,0,0,0,1,0,0,0,0,0.246,60.18,143.53,0.88,0.12,797,1,1,0.9
+13966,2023,10,18,23,0,7.9,1.36,0.012,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,61.12,146.66,0.88,0.12,797,1,1,0.9
+13967,2023,10,18,23,30,7.5,1.36,0.012,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,62.8,148.69,0.88,0.12,797,1,2,0.9
+13968,2023,10,19,0,0,7.1,1.39,0.012,0.62,0,0,0,0,0,0.8,0,0,0,0,0.246,64.33,149.37,0.88,0.12,797,1,2,0.9
+13969,2023,10,19,0,30,6.7,1.39,0.012,0.62,0,0,0,0,0,0.8,0,0,0,0,0.246,66.12,148.63,0.88,0.12,797,0.9,3,1
+13970,2023,10,19,1,0,6.3,1.41,0.013,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,68.19,146.56,0.88,0.12,797,0.9,3,1
+13971,2023,10,19,1,30,6,1.41,0.013,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,69.61,143.39,0.88,0.12,797,0.9,4,1
+13972,2023,10,19,2,0,5.7,1.41,0.013,0.62,0,0,0,0,0,1,0,0,0,0,0.246,71.52,139.4,0.88,0.12,797,0.9,5,0.9
+13973,2023,10,19,2,30,5.5,1.41,0.013,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,72.51,134.8,0.88,0.12,797,0.9,6,0.9
+13974,2023,10,19,3,0,5.2,1.39,0.013,0.62,0,0,0,0,0,1,0,0,0,0,0.246,74.51,129.78,0.88,0.12,797,0.8,7,0.8
+13975,2023,10,19,3,30,5,1.39,0.013,0.62,0,0,0,0,0,1,0,0,0,0,0.246,75.56,124.48,0.88,0.12,797,0.8,8,0.8
+13976,2023,10,19,4,0,4.8,1.36,0.012,0.62,0,0,0,0,0,1.1,0,0,0,0,0.246,77.13,118.99,0.88,0.12,797,0.8,9,0.8
+13977,2023,10,19,4,30,4.6,1.36,0.012,0.62,0,0,0,0,0,1.1,0,0,0,0,0.247,78.21,113.37,0.88,0.12,797,0.7,10,0.8
+13978,2023,10,19,5,0,4.4,1.33,0.012,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,79.74,107.7,0.88,0.12,797,0.7,11,0.7
+13979,2023,10,19,5,30,4.3,1.33,0.012,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,80.3,102,0.88,0.12,797,0.7,13,0.7
+13980,2023,10,19,6,0,4.1,1.3,0.012,0.62,0,0,0,0,0,1.3,0,0,0,0,0.248,81.7,96.33,0.88,0.12,797,0.7,15,0.7
+13981,2023,10,19,6,30,4.8,1.3,0.012,0.62,7,103,7,0,0,1.3,7,103,0,7,0.248,77.9,90.25,0.88,0.12,798,0.6,17,0.7
+13982,2023,10,19,7,0,5.5,1.28,0.012,0.62,22,534,68,0,0,1.5,22,534,0,68,0.248,75.4,85.1,0.88,0.12,798,0.6,20,0.6
+13983,2023,10,19,7,30,7.2,1.28,0.012,0.62,31,724,159,0,0,1.5,31,724,0,159,0.248,67.08,79.81,0.88,0.12,798,0.6,19,1
+13984,2023,10,19,8,0,8.9,1.28,0.012,0.62,36,830,255,0,0,1.7,36,830,0,255,0.248,60.75,74.69,0.88,0.12,798,0.6,18,1.4
+13985,2023,10,19,8,30,10.7,1.28,0.012,0.62,40,896,349,0,0,1.7,40,896,0,349,0.247,53.86,69.82,0.88,0.12,798,0.6,11,1.5
+13986,2023,10,19,9,0,12.4,1.28,0.012,0.62,43,941,436,0,0,1.3,43,941,0,436,0.246,46.55,65.29,0.88,0.12,798,0.6,4,1.7
+13987,2023,10,19,9,30,14,1.28,0.012,0.62,44,972,513,0,0,1.3,44,972,0,513,0.246,41.95,61.17,0.87,0.12,798,0.6,180,1.7
+13988,2023,10,19,10,0,15.6,1.28,0.011,0.62,45,994,578,0,0,0,45,994,0,578,0.245,34.47,57.58,0.87,0.12,798,0.6,356,1.8
+13989,2023,10,19,10,30,16.9,1.28,0.011,0.62,46,1010,631,0,0,0,46,1010,0,631,0.244,31.74,54.62,0.86,0.12,798,0.6,354,1.8
+13990,2023,10,19,11,0,18.2,1.42,0.01,0.62,45,1021,668,0,0,-1.7,45,1021,0,668,0.243,25.78,52.41,0.85,0.12,798,0.6,352,1.8
+13991,2023,10,19,11,30,19.1,1.42,0.01,0.62,46,1027,691,0,0,-1.7,46,1027,0,691,0.242,24.37,51.06,0.85,0.12,798,0.6,350,1.8
+13992,2023,10,19,12,0,20.1,1.43,0.01,0.62,46,1029,699,0,0,-3.5,46,1029,0,699,0.241,20.19,50.62,0.85,0.12,798,0.6,349,1.7
+13993,2023,10,19,12,30,20.7,1.43,0.01,0.62,46,1027,691,0,0,-3.5,46,1027,0,691,0.241,19.43,51.12,0.85,0.12,797,0.6,346,1.7
+13994,2023,10,19,13,0,21.3,1.43,0.01,0.62,45,1023,667,0,0,-4.8,45,1023,0,667,0.24,16.89,52.55,0.85,0.12,797,0.6,344,1.6
+13995,2023,10,19,13,30,21.6,1.43,0.01,0.62,44,1013,628,0,0,-4.8,44,1013,0,628,0.24,16.59,54.81,0.85,0.12,797,0.6,342,1.5
+13996,2023,10,19,14,0,21.8,1.3,0.01,0.62,44,999,576,0,0,-5.9,44,999,0,576,0.239,15.08,57.82,0.86,0.12,796,0.6,339,1.3
+13997,2023,10,19,14,30,21.7,1.3,0.01,0.62,42,977,509,0,0,-5.9,42,977,0,509,0.239,15.17,61.46,0.86,0.12,796,0.6,330,1.1
+13998,2023,10,19,15,0,21.6,1.28,0.01,0.62,39,946,430,0,0,-6.6,39,946,0,430,0.239,14.55,65.61,0.86,0.12,796,0.6,321,0.9
+13999,2023,10,19,15,30,20.9,1.28,0.01,0.62,37,901,343,0,0,-6.6,37,901,0,343,0.238,15.18,70.17,0.86,0.12,796,0.6,290,0.6
+14000,2023,10,19,16,0,20.2,1.27,0.01,0.62,33,834,248,0,0,-2.1,33,834,0,248,0.238,22.18,75.06,0.86,0.12,796,0.6,259,0.2
+14001,2023,10,19,16,30,18.4,1.27,0.01,0.62,29,725,152,0,0,-2.1,29,725,0,152,0.238,24.79,80.2,0.86,0.12,796,0.6,216,0.5
+14002,2023,10,19,17,0,16.6,1.26,0.01,0.62,21,528,62,0,0,-1.6,21,528,0,62,0.237,28.89,85.5,0.86,0.12,796,0.6,173,0.8
+14003,2023,10,19,17,30,15.4,1.26,0.01,0.62,6,76,4,0,0,-1.6,6,76,0,4,0.237,31.18,91.15,0.86,0.12,796,0.6,172,0.9
+14004,2023,10,19,18,0,14.1,1.25,0.01,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.237,30.64,96.77,0.86,0.12,796,0.6,172,1.1
+14005,2023,10,19,18,30,13.2,1.25,0.01,0.62,0,0,0,0,0,-3,0,0,0,0,0.237,32.48,102.45,0.86,0.12,796,0.6,174,1.1
+14006,2023,10,19,19,0,12.4,1.24,0.011,0.62,0,0,0,0,0,-3,0,0,0,0,0.237,34.08,108.15,0.86,0.12,796,0.6,176,1.1
+14007,2023,10,19,19,30,11.6,1.24,0.011,0.62,0,0,0,0,0,-3,0,0,0,0,0.237,35.91,113.83,0.86,0.12,796,0.6,178,1.1
+14008,2023,10,19,20,0,10.8,1.24,0.011,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.237,37.6,119.46,0.86,0.12,796,0.6,181,1.1
+14009,2023,10,19,20,30,10.2,1.24,0.011,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.238,39.13,124.96,0.86,0.12,796,0.6,184,1.1
+14010,2023,10,19,21,0,9.6,1.23,0.011,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.238,40.45,130.27,0.86,0.12,796,0.6,187,1
+14011,2023,10,19,21,30,9.1,1.23,0.011,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.238,41.83,135.28,0.86,0.12,796,0.6,189,1
+14012,2023,10,19,22,0,8.6,1.23,0.011,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.238,42.45,139.88,0.86,0.12,796,0.6,191,1
+14013,2023,10,19,22,30,8.2,1.23,0.011,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.238,43.61,143.87,0.86,0.12,796,0.6,193,1
+14014,2023,10,19,23,0,7.9,1.23,0.011,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.238,43.97,147.02,0.86,0.12,796,0.6,194,1
+14015,2023,10,19,23,30,7.6,1.23,0.011,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.238,44.88,149.05,0.86,0.12,796,0.6,195,1
+14016,2023,10,20,0,0,7.4,1.22,0.012,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.239,44.55,149.73,0.87,0.12,796,0.6,196,1
+14017,2023,10,20,0,30,7.2,1.22,0.012,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.239,45.16,148.97,0.87,0.12,796,0.6,197,0.9
+14018,2023,10,20,1,0,7.1,1.2,0.012,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.239,44.35,146.88,0.87,0.12,796,0.6,198,0.9
+14019,2023,10,20,1,30,7,1.2,0.012,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.239,44.65,143.68,0.87,0.12,796,0.6,201,0.8
+14020,2023,10,20,2,0,6.9,1.18,0.012,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.24,43.72,139.66,0.87,0.12,795,0.6,205,0.8
+14021,2023,10,20,2,30,6.9,1.18,0.012,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.241,43.72,135.04,0.87,0.12,795,0.6,211,0.8
+14022,2023,10,20,3,0,6.9,1.16,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.242,42.7,130.01,0.87,0.12,795,0.5,218,0.8
+14023,2023,10,20,3,30,6.7,1.16,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.243,43.29,124.69,0.87,0.12,795,0.5,222,0.9
+14024,2023,10,20,4,0,6.6,1.15,0.013,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.244,42.74,119.19,0.88,0.12,795,0.5,227,0.9
+14025,2023,10,20,4,30,6.4,1.15,0.013,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.245,43.33,113.57,0.88,0.12,795,0.5,229,0.9
+14026,2023,10,20,5,0,6.2,1.13,0.014,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.246,43.34,107.89,0.88,0.12,795,0.5,231,1
+14027,2023,10,20,5,30,6.1,1.13,0.014,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.248,43.64,102.2,0.88,0.12,795,0.5,232,1
+14028,2023,10,20,6,0,5.9,1.13,0.014,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.249,43.83,96.53,0.88,0.12,795,0.5,233,1
+14029,2023,10,20,6,30,6.5,1.13,0.014,0.62,8,99,6,0,0,-5.5,8,99,0,6,0.25,42.05,90.93,0.88,0.12,795,0.5,233,0.9
+14030,2023,10,20,7,0,7.1,1.14,0.014,0.62,23,527,66,0,0,-3.9,23,527,0,66,0.251,45.65,85.3,0.87,0.12,796,0.5,233,0.9
+14031,2023,10,20,7,30,9.1,1.14,0.014,0.62,31,724,156,0,0,-3.8,31,724,0,156,0.252,39.86,80.03,0.87,0.12,796,0.5,232,1.1
+14032,2023,10,20,8,0,11.2,1.14,0.013,0.62,37,832,253,0,0,-4,37,832,0,253,0.253,34.37,74.92,0.87,0.12,796,0.5,231,1.3
+14033,2023,10,20,8,30,12.9,1.14,0.013,0.62,41,899,347,0,0,-3.9,41,899,0,347,0.253,30.74,70.07,0.87,0.12,796,0.5,234,1.4
+14034,2023,10,20,9,0,14.6,1.15,0.013,0.62,44,944,435,0,0,-4.8,44,944,0,435,0.253,25.74,65.55,0.87,0.12,796,0.5,236,1.6
+14035,2023,10,20,9,30,16.3,1.15,0.013,0.62,46,976,512,0,0,-4.8,46,976,0,512,0.253,23.09,61.46,0.87,0.12,796,0.5,238,1.8
+14036,2023,10,20,10,0,18,1.16,0.013,0.62,47,998,578,0,0,-5,47,998,0,578,0.253,20.53,57.88,0.87,0.12,795,0.5,239,2
+14037,2023,10,20,10,30,19,1.16,0.013,0.62,47,1015,630,0,0,-5,47,1015,0,630,0.253,19.29,54.95,0.86,0.12,795,0.5,237,2.1
+14038,2023,10,20,11,0,20,1.31,0.01,0.62,46,1028,668,0,0,-5,46,1028,0,668,0.254,18.04,52.75,0.86,0.12,795,0.5,235,2.2
+14039,2023,10,20,11,30,20.7,1.31,0.01,0.62,47,1033,691,0,0,-5,47,1033,0,691,0.254,17.26,51.41,0.86,0.12,794,0.5,234,2.4
+14040,2023,10,20,12,0,21.4,1.34,0.01,0.62,46,1034,697,0,0,-5.2,46,1034,0,697,0.254,16.39,50.98,0.86,0.12,794,0.5,233,2.5
+14041,2023,10,20,12,30,21.7,1.34,0.01,0.62,46,1029,687,0,0,-5.2,46,1029,0,687,0.253,16.09,51.48,0.86,0.12,794,0.6,234,2.5
+14042,2023,10,20,13,0,22,1.36,0.01,0.62,46,1023,663,0,0,-5.3,46,1023,0,663,0.253,15.68,52.9,0.86,0.12,793,0.6,235,2.6
+14043,2023,10,20,13,30,22.1,1.36,0.01,0.62,46,1012,624,0,0,-5.3,46,1012,0,624,0.253,15.58,55.16,0.87,0.12,793,0.6,234,2.5
+14044,2023,10,20,14,0,22.2,1.33,0.011,0.62,45,996,570,0,0,-5.3,45,996,0,570,0.253,15.41,58.16,0.87,0.12,793,0.6,233,2.5
+14045,2023,10,20,14,30,22,1.33,0.011,0.62,44,973,504,0,0,-5.3,44,973,0,504,0.253,15.58,61.78,0.87,0.12,792,0.6,231,2.4
+14046,2023,10,20,15,0,21.7,1.35,0.012,0.62,41,941,425,0,0,-5.3,41,941,0,425,0.253,15.89,65.92,0.87,0.12,792,0.6,228,2.2
+14047,2023,10,20,15,30,20.7,1.35,0.012,0.62,39,895,338,0,0,-5.3,39,895,0,338,0.253,16.89,70.47,0.87,0.12,792,0.6,224,1.7
+14048,2023,10,20,16,0,19.7,1.39,0.012,0.62,34,826,243,0,0,-0.2,34,826,0,243,0.253,26.29,75.35,0.87,0.12,792,0.6,220,1.2
+14049,2023,10,20,16,30,18,1.39,0.012,0.62,29,713,147,0,0,-0.2,29,713,0,147,0.253,29.23,80.48,0.87,0.12,792,0.6,212,1
+14050,2023,10,20,17,0,16.2,1.43,0.012,0.62,21,508,58,0,0,-0.4,21,508,0,58,0.253,32.17,85.77,0.87,0.12,792,0.6,205,0.8
+14051,2023,10,20,17,30,15.7,1.43,0.012,0.62,4,50,3,0,0,-0.5,4,50,0,3,0.254,33.21,91.42,0.87,0.12,792,0.6,190,0.8
+14052,2023,10,20,18,0,15.1,1.47,0.012,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.254,28.75,97.03,0.87,0.12,792,0.6,176,0.7
+14053,2023,10,20,18,30,14.6,1.47,0.012,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.254,29.69,102.71,0.87,0.12,792,0.6,158,0.8
+14054,2023,10,20,19,0,14,1.5,0.013,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.254,30.07,108.41,0.87,0.12,792,0.6,140,0.8
+14055,2023,10,20,19,30,13.4,1.5,0.013,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.253,31.27,114.1,0.87,0.12,792,0.6,129,0.8
+14056,2023,10,20,20,0,12.8,1.53,0.013,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.253,32.34,119.72,0.87,0.12,792,0.6,117,0.9
+14057,2023,10,20,20,30,12.2,1.53,0.013,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.253,33.63,125.23,0.87,0.12,792,0.6,114,0.8
+14058,2023,10,20,21,0,11.6,1.56,0.013,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.253,34.71,130.55,0.87,0.12,791,0.6,111,0.8
+14059,2023,10,20,21,30,11.3,1.56,0.013,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.253,35.4,135.58,0.87,0.12,791,0.6,111,0.8
+14060,2023,10,20,22,0,11,1.58,0.014,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.253,35.12,140.2,0.88,0.12,791,0.7,111,0.7
+14061,2023,10,20,22,30,10.9,1.58,0.014,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.253,35.35,144.2,0.88,0.12,791,0.7,111,0.7
+14062,2023,10,20,23,0,10.7,1.59,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.254,35.26,147.37,0.88,0.12,791,0.7,111,0.6
+14063,2023,10,20,23,30,10.5,1.59,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.254,35.73,149.41,0.88,0.12,791,0.7,108,0.6
+14064,2023,10,21,0,0,10.2,1.58,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.254,36.24,150.09,0.88,0.12,791,0.7,106,0.5
+14065,2023,10,21,0,30,10,1.58,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.255,36.73,149.32,0.88,0.12,791,0.7,103,0.5
+14066,2023,10,21,1,0,9.7,1.57,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.255,37.23,147.2,0.89,0.12,791,0.8,99,0.5
+14067,2023,10,21,1,30,9.4,1.57,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.256,37.98,143.97,0.89,0.12,791,0.8,96,0.4
+14068,2023,10,21,2,0,9.2,1.55,0.017,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.256,38.23,139.92,0.89,0.12,791,0.8,93,0.3
+14069,2023,10,21,2,30,8.7,1.55,0.017,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.256,39.54,135.28,0.89,0.12,791,0.8,49,0.2
+14070,2023,10,21,3,0,8.3,1.52,0.018,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.257,40.24,130.23,0.89,0.12,790,0.8,6,0.2
+14071,2023,10,21,3,30,7.8,1.52,0.018,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.257,41.62,124.9,0.89,0.12,790,0.8,163,0.2
+14072,2023,10,21,4,0,7.3,1.5,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.257,42.34,119.39,0.89,0.12,790,0.8,320,0.3
+14073,2023,10,21,4,30,6.8,1.5,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.257,43.81,113.77,0.89,0.12,790,0.8,321,0.3
+14074,2023,10,21,5,0,6.3,1.48,0.02,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.257,44.94,108.09,0.89,0.12,790,0.8,322,0.4
+14075,2023,10,21,5,30,6.1,1.48,0.02,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.257,45.62,102.39,0.89,0.12,791,0.8,325,0.4
+14076,2023,10,21,6,0,5.9,1.47,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.257,45.81,96.73,0.89,0.12,791,0.8,328,0.4
+14077,2023,10,21,6,30,6.4,1.47,0.022,0.62,8,80,6,0,0,-4.9,8,80,0,6,0.257,44.26,91.14,0.89,0.12,791,0.8,330,0.4
+14078,2023,10,21,7,0,6.9,1.45,0.023,0.62,23,467,60,0,0,-3.7,23,467,0,60,0.257,46.98,85.51,0.9,0.12,791,0.8,332,0.3
+14079,2023,10,21,7,30,8.6,1.45,0.023,0.62,34,671,148,0,0,-3.6,34,671,0,148,0.256,41.85,80.25,0.9,0.12,791,0.8,341,0.2
+14080,2023,10,21,8,0,10.2,1.44,0.025,0.62,42,784,243,0,0,-4.1,42,784,0,243,0.256,36.47,75.16,0.9,0.12,791,0.8,350,0.2
+14081,2023,10,21,8,30,11.7,1.44,0.025,0.62,47,854,335,0,0,-4,47,854,0,335,0.256,33.02,70.32,0.9,0.12,791,0.8,277,0.3
+14082,2023,10,21,9,0,13.1,1.43,0.027,0.62,52,899,420,0,0,-4.4,52,899,0,420,0.256,29.26,65.82,0.9,0.12,791,0.9,203,0.5
+14083,2023,10,21,9,30,14.9,1.43,0.027,0.62,55,931,496,0,0,-4.4,83,838,0,480,0.257,26.04,61.74,0.91,0.12,791,0.9,209,1.1
+14084,2023,10,21,10,0,16.7,1.44,0.028,0.62,59,953,561,0,0,-4.1,140,715,0,517,0.257,23.77,58.19,0.91,0.12,791,0.9,215,1.8
+14085,2023,10,21,10,30,18,1.44,0.028,0.62,59,972,613,0,0,-4.1,148,744,0,572,0.257,21.88,55.26,0.91,0.12,790,0.9,217,2.2
+14086,2023,10,21,11,0,19.2,1.54,0.026,0.62,60,982,650,0,0,-3.8,68,961,0,645,0.258,20.78,53.09,0.9,0.12,790,1,220,2.5
+14087,2023,10,21,11,30,20,1.54,0.026,0.62,61,987,672,0,0,-3.8,61,987,0,672,0.258,19.78,51.76,0.9,0.12,790,1,222,2.7
+14088,2023,10,21,12,0,20.7,1.57,0.028,0.62,62,986,678,0,0,-3.5,62,986,0,678,0.259,19.33,51.33,0.91,0.12,790,1,224,2.8
+14089,2023,10,21,12,30,21.1,1.57,0.028,0.62,62,982,669,0,0,-3.6,62,982,0,669,0.259,18.84,51.84,0.91,0.12,789,1,226,2.9
+14090,2023,10,21,13,0,21.6,1.59,0.03,0.62,62,973,644,0,0,-3.3,117,826,0,611,0.258,18.69,53.26,0.91,0.12,789,1.1,227,3
+14091,2023,10,21,13,30,21.7,1.59,0.03,0.62,61,959,604,0,8,-3.3,202,379,0,417,0.258,18.55,55.51,0.91,0.12,788,1.1,229,3
+14092,2023,10,21,14,0,21.7,1.54,0.032,0.62,59,939,550,0,0,-2.9,105,743,0,493,0.258,19.09,58.5,0.91,0.12,788,1.1,230,3
+14093,2023,10,21,14,30,21.5,1.54,0.032,0.62,57,912,484,0,0,-2.9,100,766,0,458,0.258,19.33,62.11,0.91,0.12,788,1.1,232,3
+14094,2023,10,21,15,0,21.2,1.55,0.033,0.62,54,875,407,0,0,-2.6,98,688,0,375,0.257,20.14,66.23,0.91,0.12,788,1.1,234,2.9
+14095,2023,10,21,15,30,20.2,1.55,0.033,0.62,49,822,320,0,0,-2.6,94,521,0,266,0.257,21.41,70.77,0.92,0.12,788,1.1,237,2.3
+14096,2023,10,21,16,0,19.2,1.55,0.035,0.62,44,741,228,0,0,0.8,82,490,0,204,0.257,29.14,75.64,0.92,0.12,788,1.1,239,1.7
+14097,2023,10,21,16,30,17.1,1.55,0.035,0.62,36,611,134,2,3,0.8,81,118,29,100,0.257,33.23,80.76,0.92,0.12,788,1.1,251,1.4
+14098,2023,10,21,17,0,15,1.53,0.038,0.62,23,383,50,7,8,1.8,35,17,100,36,0.257,40.89,86.03,0.92,0.12,788,1.1,263,1.2
+14099,2023,10,21,17,30,14.1,1.53,0.038,0.62,3,31,2,2,3,1.8,1,0,29,1,0.257,43.33,91.68,0.93,0.12,788,1.2,278,1.2
+14100,2023,10,21,18,0,13.2,1.5,0.043,0.62,0,0,0,0,5,0.5,0,0,0,0,0.257,41.81,97.29,0.94,0.12,788,1.2,293,1.3
+14101,2023,10,21,18,30,12.6,1.5,0.043,0.62,0,0,0,0,5,0.5,0,0,0,0,0.257,43.48,102.96,0.94,0.12,788,1.2,309,1.6
+14102,2023,10,21,19,0,12.1,1.49,0.045,0.62,0,0,0,0,8,0.8,0,0,0,0,0.257,46,108.67,0.94,0.12,788,1.2,324,2
+14103,2023,10,21,19,30,11.4,1.49,0.045,0.62,0,0,0,0,3,0.8,0,0,0,0,0.258,48.17,114.35,0.94,0.12,788,1.2,331,2.5
+14104,2023,10,21,20,0,10.7,1.52,0.042,0.62,0,0,0,0,5,2.3,0,0,0,0,0.258,56.1,119.98,0.93,0.12,789,1.2,338,3.1
+14105,2023,10,21,20,30,9.8,1.52,0.042,0.62,0,0,0,0,8,2.3,0,0,0,0,0.258,59.57,125.5,0.93,0.12,789,1.2,343,2.8
+14106,2023,10,21,21,0,8.9,1.57,0.035,0.62,0,0,0,0,8,3.8,0,0,0,0,0.258,70.46,130.83,0.93,0.12,789,1.2,348,2.6
+14107,2023,10,21,21,30,8.1,1.57,0.035,0.62,0,0,0,0,0,3.8,0,0,0,0,0.258,74.37,135.88,0.92,0.12,789,1.2,177,2
+14108,2023,10,21,22,0,7.3,1.56,0.034,0.62,0,0,0,0,0,4.4,0,0,0,0,0.258,82.08,140.51,0.92,0.12,789,1.2,6,1.4
+14109,2023,10,21,22,30,7,1.56,0.034,0.62,0,0,0,0,0,4.4,0,0,0,0,0.258,83.78,144.53,0.93,0.12,789,1.2,19,1.2
+14110,2023,10,21,23,0,6.7,1.53,0.038,0.62,0,0,0,0,0,4.7,0,0,0,0,0.257,87.11,147.71,0.93,0.12,789,1.2,32,1
+14111,2023,10,21,23,30,6.5,1.53,0.038,0.62,0,0,0,0,0,4.7,0,0,0,0,0.256,88.31,149.76,0.92,0.12,789,1.2,43,1
+14112,2023,10,22,0,0,6.3,1.54,0.037,0.62,0,0,0,0,0,4.8,0,0,0,0,0.255,89.97,150.44,0.92,0.12,789,1.2,55,1
+14113,2023,10,22,0,30,6.2,1.54,0.037,0.62,0,0,0,0,5,4.8,0,0,0,0,0.254,90.59,149.66,0.91,0.12,789,1.2,64,0.9
+14114,2023,10,22,1,0,6,1.57,0.031,0.62,0,0,0,0,0,4.7,0,0,0,0,0.253,91.29,147.51,0.9,0.12,789,1.2,72,0.9
+14115,2023,10,22,1,30,5.9,1.57,0.031,0.62,0,0,0,0,0,4.7,0,0,0,0,0.253,91.81,144.26,0.89,0.12,788,1.2,79,0.9
+14116,2023,10,22,2,0,5.8,1.57,0.029,0.62,0,0,0,0,0,4.4,0,0,0,0,0.253,90.78,140.18,0.89,0.12,788,1.2,86,0.8
+14117,2023,10,22,2,30,5.8,1.57,0.029,0.62,0,0,0,0,0,4.4,0,0,0,0,0.254,90.78,135.52,0.89,0.12,788,1.1,87,0.7
+14118,2023,10,22,3,0,5.8,1.57,0.028,0.62,0,0,0,0,0,4.1,0,0,0,0,0.255,88.63,130.45,0.89,0.12,788,1.1,88,0.6
+14119,2023,10,22,3,30,5.7,1.57,0.028,0.62,0,0,0,0,0,4.1,0,0,0,0,0.255,89.25,125.11,0.89,0.12,788,1.1,71,0.5
+14120,2023,10,22,4,0,5.7,1.57,0.027,0.62,0,0,0,0,0,3.7,0,0,0,0,0.256,87.24,119.59,0.89,0.12,788,1.1,55,0.4
+14121,2023,10,22,4,30,5.5,1.57,0.027,0.62,0,0,0,0,0,3.7,0,0,0,0,0.256,88.45,113.96,0.89,0.12,788,1,36,0.4
+14122,2023,10,22,5,0,5.3,1.57,0.026,0.62,0,0,0,0,0,3.4,0,0,0,0,0.257,87.76,108.28,0.88,0.12,788,1,17,0.4
+14123,2023,10,22,5,30,5.1,1.57,0.026,0.62,0,0,0,0,0,3.4,0,0,0,0,0.258,88.99,102.59,0.88,0.12,788,1,10,0.4
+14124,2023,10,22,6,0,4.9,1.57,0.026,0.62,0,0,0,0,0,3.1,0,0,0,0,0.258,88.23,96.93,0.88,0.12,788,1,4,0.4
+14125,2023,10,22,6,30,5.4,1.57,0.026,0.62,4,41,3,0,0,3.1,4,41,0,3,0.259,85.33,91.34,0.88,0.12,789,1,8,0.4
+14126,2023,10,22,7,0,5.9,1.56,0.025,0.62,23,444,56,0,0,3,23,444,0,56,0.259,81.89,85.72,0.88,0.12,789,1,12,0.4
+14127,2023,10,22,7,30,7.5,1.56,0.025,0.62,33,656,142,0,0,3,33,656,0,142,0.26,73.39,80.47,0.88,0.12,789,0.9,24,0.5
+14128,2023,10,22,8,0,9.2,1.55,0.025,0.62,42,775,237,0,0,2.9,42,775,0,237,0.26,64.86,75.39,0.88,0.12,789,0.9,36,0.6
+14129,2023,10,22,8,30,11.2,1.55,0.025,0.62,46,850,329,0,0,2.9,46,850,0,329,0.261,56.76,70.57,0.88,0.12,789,0.9,159,0.4
+14130,2023,10,22,9,0,13.3,1.54,0.024,0.62,50,900,415,0,0,2.2,50,900,0,415,0.261,46.9,66.08,0.89,0.12,789,0.9,283,0.2
+14131,2023,10,22,9,30,14.9,1.54,0.024,0.62,53,935,492,0,0,2.2,53,935,0,492,0.262,42.29,62.02,0.89,0.12,789,0.9,258,0.6
+14132,2023,10,22,10,0,16.6,1.52,0.023,0.62,55,960,557,0,0,-0.2,55,960,0,557,0.262,32.05,58.49,0.89,0.12,788,0.9,233,1
+14133,2023,10,22,10,30,17.4,1.52,0.023,0.62,56,979,609,0,0,-0.1,56,979,0,609,0.263,30.47,55.58,0.88,0.12,788,0.9,230,1.2
+14134,2023,10,22,11,0,18.1,1.61,0.021,0.62,55,993,647,0,0,-1.4,55,993,0,647,0.263,26.53,53.42,0.88,0.12,788,0.8,226,1.5
+14135,2023,10,22,11,30,18.6,1.61,0.021,0.62,56,999,670,0,0,-1.5,56,999,0,670,0.263,25.68,52.1,0.88,0.12,787,0.8,225,1.7
+14136,2023,10,22,12,0,19.1,1.57,0.021,0.62,57,1002,678,0,0,-2.4,57,1002,0,678,0.263,23.15,51.69,0.88,0.12,787,0.8,225,1.9
+14137,2023,10,22,12,30,19.4,1.57,0.021,0.62,56,1000,669,0,0,-2.4,56,1000,0,669,0.263,22.73,52.2,0.89,0.12,787,0.8,224,2.1
+14138,2023,10,22,13,0,19.6,1.53,0.022,0.62,56,992,645,0,0,-3.3,56,992,0,645,0.263,21.1,53.61,0.89,0.12,786,0.8,223,2.3
+14139,2023,10,22,13,30,19.7,1.53,0.022,0.62,56,979,606,0,0,-3.3,56,979,0,606,0.262,20.97,55.85,0.89,0.12,786,0.8,222,2.4
+14140,2023,10,22,14,0,19.7,1.39,0.024,0.62,55,960,552,0,0,-3.7,55,960,0,552,0.262,20.26,58.83,0.9,0.12,786,0.8,220,2.5
+14141,2023,10,22,14,30,19.5,1.39,0.024,0.62,53,935,486,0,0,-3.8,53,935,0,486,0.261,20.48,62.43,0.9,0.12,785,0.8,219,2.5
+14142,2023,10,22,15,0,19.2,1.39,0.025,0.62,50,899,408,0,0,-3.9,50,899,0,408,0.261,20.71,66.54,0.9,0.12,785,0.8,217,2.5
+14143,2023,10,22,15,30,18.4,1.39,0.025,0.62,46,848,321,0,0,-3.9,64,762,0,311,0.261,21.77,71.07,0.9,0.12,785,0.8,213,2.1
+14144,2023,10,22,16,0,17.6,1.39,0.025,0.62,40,771,228,0,8,-0.7,101,343,0,184,0.261,28.85,75.92,0.9,0.12,785,0.8,209,1.6
+14145,2023,10,22,16,30,15.9,1.39,0.025,0.62,34,644,134,3,8,-0.7,65,315,50,114,0.261,32.13,81.03,0.9,0.12,785,0.8,203,1.4
+14146,2023,10,22,17,0,14.1,1.37,0.026,0.62,22,411,49,6,8,0.2,29,41,86,32,0.262,38.54,86.29,0.9,0.12,785,0.8,196,1.1
+14147,2023,10,22,17,30,13.3,1.37,0.026,0.62,3,34,2,0,0,0.2,3,34,0,2,0.262,40.59,91.94,0.9,0.12,785,0.9,189,1.2
+14148,2023,10,22,18,0,12.5,1.32,0.029,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,38.49,97.54,0.91,0.12,785,0.9,182,1.3
+14149,2023,10,22,18,30,11.8,1.32,0.029,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,40.3,103.22,0.91,0.12,785,0.9,178,1.3
+14150,2023,10,22,19,0,11.1,1.27,0.031,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.263,42.12,108.92,0.91,0.12,785,0.9,174,1.4
+14151,2023,10,22,19,30,10.7,1.27,0.031,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,43.25,114.61,0.91,0.12,785,0.9,173,1.4
+14152,2023,10,22,20,0,10.3,1.25,0.033,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.263,44.92,120.24,0.91,0.12,785,0.9,172,1.4
+14153,2023,10,22,20,30,10.1,1.25,0.033,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.263,45.52,125.77,0.91,0.12,785,0.9,173,1.4
+14154,2023,10,22,21,0,9.9,1.26,0.033,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.263,46.86,131.11,0.91,0.12,784,0.9,174,1.4
+14155,2023,10,22,21,30,9.7,1.26,0.033,0.62,0,0,0,0,8,-0.9,0,0,0,0,0.263,47.5,136.17,0.91,0.12,784,0.9,176,1.4
+14156,2023,10,22,22,0,9.5,1.3,0.033,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.262,48.32,140.81,0.91,0.12,784,0.9,178,1.4
+14157,2023,10,22,22,30,9.3,1.3,0.033,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.262,48.97,144.86,0.91,0.12,784,0.9,180,1.4
+14158,2023,10,22,23,0,9,1.38,0.033,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.262,49.27,148.05,0.91,0.12,784,0.9,182,1.4
+14159,2023,10,22,23,30,8.8,1.38,0.033,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.262,49.94,150.12,0.91,0.12,784,0.9,181,1.4
+14160,2023,10,23,0,0,8.7,1.48,0.033,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.261,49.53,150.79,0.91,0.12,784,0.9,180,1.4
+14161,2023,10,23,0,30,8.3,1.48,0.033,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.261,50.89,149.99,0.91,0.12,784,0.9,178,1.4
+14162,2023,10,23,1,0,8,1.56,0.034,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.261,50.51,147.82,0.91,0.12,784,0.9,176,1.4
+14163,2023,10,23,1,30,7.6,1.56,0.034,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.26,51.84,144.55,0.91,0.12,783,1,176,1.4
+14164,2023,10,23,2,0,7.1,1.6,0.035,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.26,51.79,140.44,0.91,0.12,783,1,176,1.5
+14165,2023,10,23,2,30,6.7,1.6,0.035,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.26,53.23,135.76,0.91,0.12,783,1,177,1.5
+14166,2023,10,23,3,0,6.3,1.58,0.039,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.26,53.3,130.68,0.91,0.12,783,1,177,1.5
+14167,2023,10,23,3,30,6,1.58,0.039,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.26,54.41,125.32,0.92,0.12,783,1,178,1.5
+14168,2023,10,23,4,0,5.7,1.53,0.043,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.261,54.66,119.79,0.92,0.12,783,1,178,1.5
+14169,2023,10,23,4,30,5.5,1.53,0.043,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.261,55.42,114.16,0.92,0.12,783,1,179,1.5
+14170,2023,10,23,5,0,5.2,1.46,0.047,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.261,55.91,108.47,0.93,0.12,783,1,179,1.5
+14171,2023,10,23,5,30,5.1,1.46,0.047,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.262,56.3,102.78,0.93,0.12,783,1,180,1.5
+14172,2023,10,23,6,0,4.9,1.41,0.05,0.62,0,0,0,0,5,-3,0,0,0,0,0.262,56.68,97.13,0.93,0.12,784,1,181,1.5
+14173,2023,10,23,6,30,5.6,1.41,0.05,0.62,4,29,3,2,3,-3,1,7,25,1,0.261,53.99,91.55,0.92,0.12,784,1,181,1.5
+14174,2023,10,23,7,0,6.4,1.39,0.048,0.62,25,366,51,7,4,-2.5,27,8,96,28,0.261,53.08,85.93,0.92,0.12,784,1,182,1.6
+14175,2023,10,23,7,30,8,1.39,0.048,0.62,39,597,135,1,0,-2.5,52,451,14,125,0.26,47.59,80.7,0.92,0.12,784,1,186,2
+14176,2023,10,23,8,0,9.6,1.4,0.044,0.62,47,731,228,0,0,-2.9,56,655,0,219,0.259,41.42,75.63,0.91,0.12,784,1,191,2.3
+14177,2023,10,23,8,30,11.5,1.4,0.044,0.62,53,815,321,0,0,-2.9,53,815,0,321,0.258,36.51,70.82,0.91,0.12,784,0.9,197,2.9
+14178,2023,10,23,9,0,13.5,1.42,0.041,0.62,57,872,407,0,0,-3.2,57,872,0,407,0.257,31.33,66.35,0.9,0.12,784,0.9,204,3.4
+14179,2023,10,23,9,30,15.2,1.42,0.041,0.62,61,910,484,0,0,-3.2,83,824,0,466,0.256,28.08,62.3,0.9,0.12,784,0.9,207,3.8
+14180,2023,10,23,10,0,16.9,1.42,0.039,0.62,63,939,550,0,0,-2.5,63,939,0,550,0.255,26.5,58.79,0.9,0.12,784,0.9,210,4.3
+14181,2023,10,23,10,30,17.7,1.42,0.039,0.62,63,964,603,0,0,-2.5,63,964,0,603,0.254,25.2,55.9,0.9,0.12,784,0.8,211,4.7
+14182,2023,10,23,11,0,18.6,1.23,0.029,0.62,61,982,642,0,0,-1.9,61,982,0,642,0.254,24.91,53.76,0.9,0.12,784,0.8,211,5.1
+14183,2023,10,23,11,30,19,1.23,0.029,0.62,62,989,665,0,0,-1.9,62,989,0,665,0.253,24.3,52.45,0.9,0.12,784,0.8,212,5.4
+14184,2023,10,23,12,0,19.4,1.17,0.028,0.62,62,991,672,0,0,-1.9,62,991,0,672,0.253,23.6,52.04,0.9,0.12,784,0.8,212,5.6
+14185,2023,10,23,12,30,19.6,1.17,0.028,0.62,62,988,663,0,0,-1.9,113,836,0,621,0.253,23.28,52.55,0.9,0.12,783,0.9,213,5.7
+14186,2023,10,23,13,0,19.8,1.16,0.028,0.62,61,981,638,0,0,-2.1,69,956,0,631,0.253,22.8,53.96,0.91,0.12,783,0.9,213,5.7
+14187,2023,10,23,13,30,19.7,1.16,0.028,0.62,60,967,598,0,0,-2.1,63,933,0,582,0.252,22.94,56.2,0.91,0.12,783,0.9,213,5.7
+14188,2023,10,23,14,0,19.7,1.13,0.027,0.62,58,949,544,0,0,-2.2,58,949,0,544,0.252,22.76,59.16,0.91,0.12,783,0.9,213,5.6
+14189,2023,10,23,14,30,19.4,1.13,0.027,0.62,55,923,478,0,0,-2.2,55,923,0,478,0.253,23.18,62.74,0.91,0.12,783,0.9,213,5.6
+14190,2023,10,23,15,0,19.1,1.09,0.027,0.62,51,887,400,0,0,-2.4,51,887,0,400,0.253,23.28,66.84,0.91,0.12,783,0.9,214,5.5
+14191,2023,10,23,15,30,18.4,1.09,0.027,0.62,47,834,314,0,0,-2.4,61,755,0,302,0.253,24.31,71.36,0.91,0.12,783,0.9,215,5.1
+14192,2023,10,23,16,0,17.7,1.01,0.027,0.62,42,752,221,0,3,-2.2,87,273,0,152,0.253,25.64,76.2,0.91,0.12,783,0.9,217,4.6
+14193,2023,10,23,16,30,15.4,1.01,0.027,0.62,34,621,128,0,0,-2.3,41,330,0,91,0.254,29.66,81.3,0.91,0.12,783,0.9,219,3.4
+14194,2023,10,23,17,0,13.1,0.99,0.027,0.62,22,351,43,0,0,-0.8,22,316,7,41,0.254,38.24,86.54,0.91,0.12,783,0.9,221,2.3
+14195,2023,10,23,17,30,11.9,0.99,0.027,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.255,41.36,92.2,0.91,0.12,783,0.9,223,2.1
+14196,2023,10,23,18,0,10.7,0.99,0.026,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.256,44.79,97.79,0.91,0.12,784,0.9,225,2
+14197,2023,10,23,18,30,10.1,0.99,0.026,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.257,46.61,103.46,0.9,0.12,784,0.9,226,1.9
+14198,2023,10,23,19,0,9.5,1.02,0.028,0.62,0,0,0,0,0,-1,0,0,0,0,0.257,47.83,109.17,0.9,0.12,784,0.8,228,1.9
+14199,2023,10,23,19,30,8.9,1.02,0.028,0.62,0,0,0,0,0,-1,0,0,0,0,0.258,49.79,114.86,0.9,0.12,784,0.8,229,1.8
+14200,2023,10,23,20,0,8.4,1.09,0.034,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.258,50.55,120.5,0.9,0.12,785,0.8,231,1.7
+14201,2023,10,23,20,30,8,1.09,0.034,0.62,0,0,0,0,3,-1.3,0,0,0,0,0.258,51.93,126.03,0.9,0.12,785,0.8,234,1.6
+14202,2023,10,23,21,0,7.6,1.16,0.043,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.259,52.16,131.38,0.9,0.12,785,0.8,237,1.6
+14203,2023,10,23,21,30,7.2,1.16,0.043,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.259,53.6,136.45,0.9,0.12,785,0.8,243,1.5
+14204,2023,10,23,22,0,6.9,1.24,0.051,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.26,53.68,141.11,0.9,0.12,785,0.8,249,1.4
+14205,2023,10,23,22,30,6.6,1.24,0.051,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.26,54.79,145.18,0.9,0.12,785,0.7,260,1.3
+14206,2023,10,23,23,0,6.2,1.3,0.058,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.26,56.17,148.39,0.9,0.12,785,0.7,270,1.1
+14207,2023,10,23,23,30,6,1.3,0.058,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.261,56.95,150.47,0.9,0.12,785,0.7,282,1.1
+14208,2023,10,24,0,0,5.7,1.36,0.061,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.261,59.29,151.14,0.9,0.12,785,0.7,293,1
+14209,2023,10,24,0,30,5.5,1.36,0.061,0.62,0,0,0,0,5,-1.6,0,0,0,0,0.261,60.19,150.33,0.9,0.12,786,0.7,306,0.9
+14210,2023,10,24,1,0,5.3,1.4,0.062,0.62,0,0,0,0,4,-1,0,0,0,0,0.262,63.88,148.14,0.9,0.12,786,0.7,319,0.8
+14211,2023,10,24,1,30,5.1,1.4,0.062,0.62,0,0,0,0,0,-1,0,0,0,0,0.262,64.78,144.83,0.9,0.12,786,0.8,331,0.8
+14212,2023,10,24,2,0,4.9,1.44,0.063,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.262,69.26,140.7,0.9,0.12,786,0.8,343,0.7
+14213,2023,10,24,2,30,4.5,1.44,0.063,0.62,0,0,0,0,4,-0.3,0,0,0,0,0.263,71.22,136,0.9,0.12,786,0.8,351,0.7
+14214,2023,10,24,3,0,4.2,1.47,0.064,0.62,0,0,0,0,0,0.3,0,0,0,0,0.263,75.97,130.9,0.9,0.12,786,0.8,358,0.8
+14215,2023,10,24,3,30,3.9,1.47,0.064,0.62,0,0,0,0,0,0.3,0,0,0,0,0.264,77.59,125.53,0.9,0.12,786,0.8,359,0.8
+14216,2023,10,24,4,0,3.5,1.5,0.067,0.62,0,0,0,0,0,0.9,0,0,0,0,0.264,82.92,119.99,0.9,0.12,786,0.8,360,0.9
+14217,2023,10,24,4,30,3.3,1.5,0.067,0.62,0,0,0,0,0,0.9,0,0,0,0,0.265,84.2,114.36,0.9,0.12,787,0.8,359,1
+14218,2023,10,24,5,0,3.1,1.52,0.069,0.62,0,0,0,0,0,1.4,0,0,0,0,0.265,88.78,108.67,0.9,0.12,787,0.8,358,1.1
+14219,2023,10,24,5,30,2.7,1.52,0.069,0.62,0,0,0,0,0,1.4,0,0,0,0,0.265,91.33,102.98,0.9,0.12,787,0.8,180,1.2
+14220,2023,10,24,6,0,2.4,1.52,0.069,0.62,0,0,0,0,0,1.9,0,0,0,0,0.266,96.44,97.33,0.9,0.12,787,0.8,2,1.2
+14221,2023,10,24,6,30,2.9,1.52,0.069,0.62,3,23,2,0,0,1.9,3,23,0,2,0.265,93.08,91.75,0.91,0.12,787,0.8,4,1.4
+14222,2023,10,24,7,0,3.5,1.5,0.066,0.62,26,324,48,0,0,2.3,26,324,0,48,0.265,92.14,86.13,0.91,0.12,788,0.8,6,1.6
+14223,2023,10,24,7,30,4.9,1.5,0.066,0.62,41,562,130,0,0,2.3,41,562,0,130,0.265,83.54,80.91,0.91,0.12,788,0.8,11,2
+14224,2023,10,24,8,0,6.4,1.47,0.061,0.62,51,703,223,0,5,2.7,107,208,0,158,0.265,77.42,75.86,0.91,0.12,788,0.8,16,2.4
+14225,2023,10,24,8,30,8.1,1.47,0.061,0.62,58,792,315,0,5,2.7,190,65,0,211,0.264,68.94,71.06,0.91,0.12,788,0.8,14,2.2
+14226,2023,10,24,9,0,9.9,1.45,0.055,0.62,62,853,401,0,0,2.3,106,681,0,376,0.264,59.02,66.61,0.91,0.12,788,0.8,12,2
+14227,2023,10,24,9,30,11.4,1.45,0.055,0.62,66,893,477,0,0,2.3,66,893,0,477,0.264,53.42,62.58,0.91,0.12,788,0.8,169,1.4
+14228,2023,10,24,10,0,12.8,1.43,0.052,0.62,69,923,543,0,0,0.7,117,755,0,505,0.263,43.6,59.08,0.91,0.12,788,0.8,325,0.8
+14229,2023,10,24,10,30,13.9,1.43,0.052,0.62,66,955,597,0,7,0.7,195,508,0,477,0.263,40.6,56.22,0.91,0.12,788,0.8,285,1.3
+14230,2023,10,24,11,0,15.1,1.33,0.026,0.62,60,985,638,0,7,-0.9,209,508,0,507,0.263,33.32,54.09,0.9,0.12,788,0.8,244,1.8
+14231,2023,10,24,11,30,15.7,1.33,0.026,0.62,60,992,660,0,7,-0.9,247,428,0,506,0.263,32.03,52.79,0.9,0.12,787,0.8,238,2.3
+14232,2023,10,24,12,0,16.4,1.33,0.025,0.62,60,994,667,0,7,-2.1,180,653,0,579,0.264,28.17,52.38,0.9,0.12,787,0.8,231,2.8
+14233,2023,10,24,12,30,16.7,1.33,0.025,0.62,60,992,658,0,0,-2.1,120,806,0,606,0.263,27.6,52.9,0.9,0.12,786,0.8,227,3.2
+14234,2023,10,24,13,0,17,1.32,0.025,0.62,59,986,634,0,7,-2.8,162,659,0,547,0.263,25.64,54.3,0.9,0.12,786,0.8,224,3.6
+14235,2023,10,24,13,30,17.1,1.32,0.025,0.62,57,975,595,0,7,-2.8,168,620,0,510,0.263,25.48,56.53,0.9,0.12,786,0.8,223,3.8
+14236,2023,10,24,14,0,17.1,1.31,0.025,0.62,56,957,542,0,0,-3.4,87,847,0,517,0.263,24.4,59.48,0.9,0.12,786,0.8,222,4
+14237,2023,10,24,14,30,16.8,1.31,0.025,0.62,54,932,476,0,0,-3.4,54,932,0,476,0.264,24.87,63.06,0.9,0.12,786,0.8,222,3.9
+14238,2023,10,24,15,0,16.6,1.33,0.024,0.62,50,897,398,0,0,-4,50,897,0,398,0.264,24.17,67.14,0.9,0.12,786,0.8,223,3.9
+14239,2023,10,24,15,30,15.8,1.33,0.024,0.62,45,846,311,0,0,-4,45,846,0,311,0.264,25.43,71.64,0.9,0.12,786,0.8,222,3.3
+14240,2023,10,24,16,0,15.1,1.34,0.023,0.62,40,767,219,0,0,-3.6,40,767,0,219,0.264,27.35,76.48,0.9,0.12,786,0.8,220,2.7
+14241,2023,10,24,16,30,12.9,1.34,0.023,0.62,31,638,125,0,0,-3.6,31,638,0,125,0.264,31.53,81.56,0.9,0.12,786,0.7,214,1.9
+14242,2023,10,24,17,0,10.7,1.35,0.022,0.62,20,367,41,0,0,-1.4,20,367,0,41,0.264,43.08,86.79,0.89,0.12,786,0.7,208,1.2
+14243,2023,10,24,17,30,10,1.35,0.022,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.263,45.14,92.45,0.89,0.12,786,0.7,201,1.2
+14244,2023,10,24,18,0,9.3,1.37,0.022,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.262,43.71,98.04,0.89,0.12,786,0.7,194,1.3
+14245,2023,10,24,18,30,8.8,1.37,0.022,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.261,45.21,103.71,0.9,0.12,786,0.7,192,1.3
+14246,2023,10,24,19,0,8.3,1.38,0.023,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.261,46.14,109.41,0.9,0.12,787,0.8,190,1.3
+14247,2023,10,24,19,30,7.8,1.38,0.023,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.26,47.73,115.1,0.9,0.12,787,0.8,191,1.4
+14248,2023,10,24,20,0,7.3,1.39,0.024,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.26,48.92,120.75,0.9,0.12,787,0.8,191,1.4
+14249,2023,10,24,20,30,6.8,1.39,0.024,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.26,50.62,126.28,0.9,0.12,787,0.8,194,1.4
+14250,2023,10,24,21,0,6.2,1.42,0.027,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.26,52.43,131.64,0.9,0.12,787,0.8,196,1.5
+14251,2023,10,24,21,30,5.8,1.42,0.027,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.261,53.9,136.73,0.9,0.12,787,0.8,198,1.5
+14252,2023,10,24,22,0,5.4,1.47,0.032,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.262,55.34,141.41,0.9,0.12,787,0.8,199,1.5
+14253,2023,10,24,22,30,5.1,1.47,0.032,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.263,56.5,145.49,0.9,0.12,787,0.8,200,1.6
+14254,2023,10,24,23,0,4.8,1.53,0.038,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.264,57.59,148.73,0.9,0.12,787,0.8,200,1.6
+14255,2023,10,24,23,30,4.5,1.53,0.038,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.264,58.8,150.81,0.9,0.12,787,0.8,200,1.6
+14256,2023,10,25,0,0,4.3,1.53,0.04,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.264,59.5,151.49,0.91,0.12,787,0.8,199,1.6
+14257,2023,10,25,0,30,4,1.53,0.04,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.262,60.76,150.66,0.9,0.12,787,0.7,197,1.6
+14258,2023,10,25,1,0,3.8,1.47,0.033,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.26,61.41,148.44,0.9,0.12,787,0.7,195,1.6
+14259,2023,10,25,1,30,3.6,1.47,0.033,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.259,62.28,145.11,0.9,0.12,787,0.7,191,1.6
+14260,2023,10,25,2,0,3.4,1.35,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.258,62.92,140.96,0.9,0.12,787,0.7,188,1.6
+14261,2023,10,25,2,30,3.2,1.35,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.257,63.82,136.23,0.9,0.12,787,0.7,186,1.7
+14262,2023,10,25,3,0,3,1.25,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.257,64.28,131.12,0.89,0.12,787,0.7,185,1.7
+14263,2023,10,25,3,30,2.8,1.25,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.257,65.11,125.74,0.89,0.12,786,0.7,187,1.7
+14264,2023,10,25,4,0,2.7,1.21,0.019,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.256,64.94,120.19,0.89,0.12,786,0.7,188,1.8
+14265,2023,10,25,4,30,2.5,1.21,0.019,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.257,65.95,114.55,0.89,0.12,787,0.7,191,1.8
+14266,2023,10,25,5,0,2.3,1.21,0.02,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.257,66.3,108.86,0.9,0.12,787,0.7,194,1.8
+14267,2023,10,25,5,30,2.1,1.21,0.02,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.257,67.25,103.17,0.9,0.12,787,0.7,194,1.8
+14268,2023,10,25,6,0,1.9,1.23,0.02,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.257,67.91,97.53,0.9,0.12,787,0.7,194,1.8
+14269,2023,10,25,6,30,2.7,1.23,0.02,0.62,3,38,2,0,0,-3.4,3,38,0,2,0.256,64.15,91.95,0.9,0.12,787,0.7,193,1.9
+14270,2023,10,25,7,0,3.5,1.25,0.02,0.62,21,434,49,0,0,-3.1,21,434,0,49,0.256,61.87,86.34,0.9,0.12,787,0.7,191,2
+14271,2023,10,25,7,30,5.5,1.25,0.02,0.62,32,660,134,0,0,-3.1,32,660,0,134,0.257,53.8,81.14,0.9,0.12,787,0.7,193,2.6
+14272,2023,10,25,8,0,7.4,1.26,0.02,0.62,40,784,228,0,0,-2.7,40,784,0,228,0.257,48.69,76.09,0.9,0.12,787,0.7,195,3.3
+14273,2023,10,25,8,30,9.3,1.26,0.02,0.62,44,860,320,0,0,-2.7,44,860,0,320,0.256,42.82,71.31,0.9,0.12,787,0.7,204,4.1
+14274,2023,10,25,9,0,11.3,1.27,0.021,0.62,49,909,406,0,0,-3.4,49,909,0,406,0.256,35.49,66.87,0.9,0.12,787,0.7,213,4.9
+14275,2023,10,25,9,30,12.5,1.27,0.021,0.62,51,943,481,0,0,-3.4,51,943,0,481,0.255,32.8,62.86,0.9,0.12,787,0.7,216,5.4
+14276,2023,10,25,10,0,13.8,1.26,0.021,0.62,53,965,545,0,0,-4.3,53,965,0,545,0.255,28.34,59.38,0.9,0.12,787,0.8,219,5.9
+14277,2023,10,25,10,30,14.5,1.26,0.021,0.62,54,982,596,0,0,-4.3,54,982,0,596,0.254,27.08,56.53,0.9,0.12,787,0.8,219,6.1
+14278,2023,10,25,11,0,15.2,1.49,0.017,0.62,52,997,632,0,0,-4.6,52,997,0,632,0.253,25.26,54.41,0.89,0.12,787,0.8,219,6.3
+14279,2023,10,25,11,30,15.7,1.49,0.017,0.62,53,1002,654,0,0,-4.6,103,864,0,621,0.252,24.44,53.13,0.89,0.12,786,0.8,218,6.3
+14280,2023,10,25,12,0,16.2,1.48,0.016,0.62,53,1003,660,0,8,-4.9,174,645,7,565,0.252,23.21,52.73,0.9,0.12,786,0.9,218,6.4
+14281,2023,10,25,12,30,16.5,1.48,0.016,0.62,53,1000,651,1,7,-4.9,208,519,18,519,0.251,22.77,53.25,0.9,0.12,786,0.9,219,6.4
+14282,2023,10,25,13,0,16.8,1.46,0.016,0.62,53,991,626,0,8,-5.1,138,728,0,559,0.25,21.93,54.65,0.9,0.12,785,0.9,219,6.4
+14283,2023,10,25,13,30,16.8,1.46,0.016,0.62,50,980,586,0,7,-5.1,200,505,0,476,0.249,21.93,56.86,0.9,0.12,785,0.9,219,6.4
+14284,2023,10,25,14,0,16.9,1.48,0.016,0.62,49,963,533,0,7,-5.3,198,459,0,429,0.248,21.47,59.81,0.9,0.12,785,0.9,219,6.4
+14285,2023,10,25,14,30,16.7,1.48,0.016,0.62,46,938,467,0,7,-5.3,210,321,0,354,0.249,21.74,63.36,0.9,0.12,785,0.9,218,6.3
+14286,2023,10,25,15,0,16.5,1.48,0.016,0.62,44,902,390,0,7,-5.4,172,359,0,310,0.249,21.79,67.44,0.9,0.12,785,0.9,217,6.2
+14287,2023,10,25,15,30,15.9,1.48,0.016,0.62,41,849,304,0,7,-5.4,137,326,0,238,0.249,22.63,71.93,0.9,0.12,785,0.9,215,5.8
+14288,2023,10,25,16,0,15.2,1.48,0.017,0.62,37,770,213,0,7,-5.2,100,100,0,123,0.25,24.16,76.75,0.9,0.12,785,0.9,213,5.3
+14289,2023,10,25,16,30,13.2,1.48,0.017,0.62,29,637,120,4,7,-5.2,65,45,57,71,0.251,27.49,81.82,0.9,0.12,785,0.9,208,4.2
+14290,2023,10,25,17,0,11.1,1.46,0.018,0.62,19,362,38,7,6,-3.9,22,4,100,22,0.251,34.62,87.04,0.9,0.12,785,0.9,204,3.1
+14291,2023,10,25,17,30,10.2,1.46,0.018,0.62,0,0,0,1,6,-3.9,0,0,14,0,0.252,36.75,92.7,0.91,0.12,785,0.9,201,3.2
+14292,2023,10,25,18,0,9.3,1.44,0.019,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.253,40.21,98.28,0.91,0.12,785,0.9,198,3.3
+14293,2023,10,25,18,30,8.8,1.44,0.019,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.254,41.59,103.95,0.91,0.12,785,0.9,195,3.3
+14294,2023,10,25,19,0,8.4,1.42,0.02,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.256,43.77,109.65,0.91,0.12,785,0.9,193,3.3
+14295,2023,10,25,19,30,7.7,1.42,0.02,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.257,45.9,115.34,0.91,0.12,785,0.9,190,3
+14296,2023,10,25,20,0,7.1,1.39,0.02,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.258,48.89,120.99,0.91,0.12,785,0.9,188,2.8
+14297,2023,10,25,20,30,6.7,1.39,0.02,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.259,50.24,126.53,0.91,0.12,785,1,188,2.7
+14298,2023,10,25,21,0,6.4,1.34,0.022,0.62,0,0,0,0,7,-2.8,0,0,0,0,0.259,51.63,131.9,0.91,0.12,785,1,188,2.6
+14299,2023,10,25,21,30,6.1,1.34,0.022,0.62,0,0,0,0,8,-2.9,0,0,0,0,0.26,52.64,137,0.92,0.12,784,1,188,2.6
+14300,2023,10,25,22,0,5.9,1.3,0.023,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.261,53.38,141.7,0.92,0.12,784,1,189,2.6
+14301,2023,10,25,22,30,5.6,1.3,0.023,0.62,0,0,0,0,8,-2.9,0,0,0,0,0.261,54.5,145.8,0.92,0.12,784,1,190,2.6
+14302,2023,10,25,23,0,5.3,1.26,0.024,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.261,55.55,149.06,0.92,0.12,784,1,191,2.6
+14303,2023,10,25,23,30,4.9,1.26,0.024,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.261,57.11,151.15,0.92,0.12,784,1.1,192,2.7
+14304,2023,10,26,0,0,4.6,1.23,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.261,57.97,151.83,0.92,0.12,784,1.1,193,2.7
+14305,2023,10,26,0,30,4.3,1.23,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.261,59.2,150.99,0.92,0.12,784,1.1,193,2.8
+14306,2023,10,26,1,0,4,1.19,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.261,59.82,148.75,0.92,0.12,784,1.1,194,2.8
+14307,2023,10,26,1,30,3.7,1.19,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.262,61.1,145.39,0.92,0.12,784,1.1,194,2.8
+14308,2023,10,26,2,0,3.4,1.14,0.034,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.262,61.7,141.21,0.93,0.12,784,1.1,193,2.8
+14309,2023,10,26,2,30,3.2,1.14,0.034,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.263,62.57,136.47,0.93,0.12,784,1.2,193,2.8
+14310,2023,10,26,3,0,3,1.13,0.043,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.264,63.02,131.33,0.94,0.12,784,1.2,193,2.8
+14311,2023,10,26,3,30,3,1.13,0.043,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.265,63.02,125.95,0.94,0.12,784,1.2,194,2.8
+14312,2023,10,26,4,0,3,1.14,0.058,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.266,63.71,120.39,0.95,0.12,784,1.2,194,2.8
+14313,2023,10,26,4,30,3.1,1.14,0.058,0.62,0,0,0,0,5,-3.2,0,0,0,0,0.267,63.26,114.75,0.95,0.12,784,1.3,195,2.9
+14314,2023,10,26,5,0,3.3,1.15,0.08,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.268,64.94,109.06,0.96,0.12,784,1.3,196,3
+14315,2023,10,26,5,30,3.2,1.15,0.08,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.269,65.4,103.37,0.96,0.12,784,1.3,197,3.1
+14316,2023,10,26,6,0,3.2,1.15,0.094,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.27,69.43,97.72,0.96,0.12,784,1.3,199,3.2
+14317,2023,10,26,6,30,3.5,1.15,0.094,0.62,0,0,0,2,5,-1.9,0,0,29,0,0.271,67.98,92.16,0.96,0.12,784,1.2,200,3.4
+14318,2023,10,26,7,0,3.7,1.17,0.102,0.62,26,202,38,7,5,-1,8,0,100,8,0.272,71.24,86.54,0.96,0.12,784,1.2,202,3.6
+14319,2023,10,26,7,30,4.5,1.17,0.102,0.62,49,436,114,2,5,-1,38,6,36,39,0.273,67.36,81.36,0.96,0.12,784,1.2,208,4
+14320,2023,10,26,8,0,5.3,1.17,0.122,0.62,67,569,201,1,5,0.1,25,2,14,25,0.273,68.96,76.33,0.97,0.12,785,1.2,213,4.5
+14321,2023,10,26,8,30,6.1,1.17,0.122,0.62,78,667,289,0,4,0.1,11,0,0,11,0.274,65.25,71.56,0.97,0.12,785,1.2,224,4.9
+14322,2023,10,26,9,0,7,1.16,0.125,0.62,87,734,372,0,5,1,34,0,0,34,0.274,65.6,67.14,0.97,0.12,785,1.1,236,5.2
+14323,2023,10,26,9,30,7.3,1.16,0.125,0.62,91,793,449,0,5,1,49,0,0,49,0.275,64.27,63.14,0.97,0.12,785,1.1,248,5.2
+14324,2023,10,26,10,0,7.6,1.15,0.103,0.62,91,842,516,0,5,1,62,0,0,62,0.276,62.95,59.68,0.96,0.12,786,1.1,261,5.2
+14325,2023,10,26,10,30,7.8,1.15,0.103,0.62,86,889,572,0,4,1,75,0,0,75,0.277,62.1,56.84,0.96,0.12,786,1,268,5.3
+14326,2023,10,26,11,0,8,1.18,0.058,0.62,76,935,616,0,4,-0.2,65,0,0,65,0.278,56.27,54.74,0.95,0.12,786,1,274,5.4
+14327,2023,10,26,11,30,8.3,1.18,0.058,0.62,74,950,640,0,5,-0.2,65,0,0,65,0.279,55.21,53.46,0.94,0.12,787,0.9,271,5.7
+14328,2023,10,26,12,0,8.6,1.23,0.048,0.62,72,962,650,0,5,-2.4,45,0,0,45,0.28,45.87,53.07,0.94,0.12,787,0.8,268,6
+14329,2023,10,26,12,30,8.9,1.23,0.048,0.62,68,974,646,0,5,-2.4,50,0,0,50,0.281,44.96,53.59,0.92,0.12,787,0.7,263,6.4
+14330,2023,10,26,13,0,9.2,1.29,0.03,0.62,62,985,627,0,5,-6.2,40,0,0,40,0.283,33.1,54.98,0.91,0.12,787,0.6,259,6.8
+14331,2023,10,26,13,30,9.2,1.29,0.03,0.62,57,987,592,0,5,-6.2,55,1,0,56,0.284,33.15,57.19,0.9,0.12,788,0.5,261,7
+14332,2023,10,26,14,0,9.1,1.28,0.018,0.62,51,988,543,0,7,-11,121,4,0,123,0.285,22.95,60.12,0.88,0.12,788,0.4,264,7.1
+14333,2023,10,26,14,30,8.5,1.28,0.018,0.62,47,973,479,0,5,-11,86,1,0,86,0.286,23.9,63.67,0.88,0.12,788,0.3,272,6.8
+14334,2023,10,26,15,0,7.9,1.21,0.015,0.62,43,947,402,0,4,-14.4,103,7,0,106,0.287,18.94,67.73,0.88,0.12,789,0.3,279,6.4
+14335,2023,10,26,15,30,6.8,1.21,0.015,0.62,40,896,314,0,4,-14.4,105,6,0,107,0.288,20.41,72.2,0.88,0.12,789,0.3,288,5.6
+14336,2023,10,26,16,0,5.8,1.16,0.015,0.62,35,824,220,0,4,-15.3,81,9,0,83,0.289,20.3,77.01,0.88,0.12,789,0.3,296,4.9
+14337,2023,10,26,16,30,3.9,1.16,0.015,0.62,29,695,125,4,4,-15.3,58,56,50,66,0.29,23.2,82.08,0.88,0.12,790,0.2,305,3.4
+14338,2023,10,26,17,0,2,1.14,0.015,0.62,20,405,39,7,4,-11.8,20,1,100,20,0.291,35.3,87.27,0.88,0.11,790,0.2,314,1.9
+14339,2023,10,26,17,30,0.9,1.14,0.015,0.62,0,0,0,1,4,-11.8,0,0,14,0,0.291,38.24,92.94,0.88,0.11,791,0.2,326,1.5
+14340,2023,10,26,18,0,-0.1,1.15,0.016,0.62,0,0,0,0,4,-10.6,0,0,0,0,0.292,45.1,98.52,0.88,0.11,791,0.3,339,1.2
+14341,2023,10,26,18,30,-0.6,1.15,0.016,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.292,46.77,104.18,0.89,0.11,791,0.3,173,1.2
+14342,2023,10,26,19,0,-1.1,1.16,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.293,47.04,109.88,0.89,0.11,791,0.3,7,1.2
+14343,2023,10,26,19,30,-1.8,1.16,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.294,49.58,115.58,0.89,0.11,792,0.3,15,1.3
+14344,2023,10,26,20,0,-2.5,1.15,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.295,52.86,121.23,0.89,0.11,792,0.3,23,1.3
+14345,2023,10,26,20,30,-3,1.15,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.295,54.86,126.78,0.89,0.11,792,0.3,26,1.3
+14346,2023,10,26,21,0,-3.6,1.14,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.296,57.96,132.16,0.89,0.11,792,0.3,30,1.3
+14347,2023,10,26,21,30,-4,1.14,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.297,59.72,137.27,0.89,0.11,792,0.3,32,1.2
+14348,2023,10,26,22,0,-4.4,1.17,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.297,61.54,141.99,0.89,0.11,792,0.3,34,1.1
+14349,2023,10,26,22,30,-4.7,1.17,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.297,62.95,146.11,0.89,0.11,792,0.3,36,1.1
+14350,2023,10,26,23,0,-5,1.19,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.297,63.68,149.38,0.89,0.11,792,0.3,38,1.1
+14351,2023,10,26,23,30,-5.3,1.19,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.297,65.15,151.49,0.89,0.11,792,0.3,40,1.1
+14352,2023,10,27,0,0,-5.5,1.2,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.297,65.3,152.17,0.9,0.11,791,0.3,42,1.1
+14353,2023,10,27,0,30,-5.7,1.2,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.296,66.3,151.32,0.9,0.11,791,0.3,42,1
+14354,2023,10,27,1,0,-5.9,1.22,0.016,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,66.45,149.05,0.9,0.11,791,0.3,43,1
+14355,2023,10,27,1,30,-6.1,1.22,0.016,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,67.47,145.67,0.9,0.11,791,0.3,42,1
+14356,2023,10,27,2,0,-6.2,1.22,0.016,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.296,67.32,141.46,0.9,0.11,791,0.3,41,1
+14357,2023,10,27,2,30,-6.4,1.22,0.016,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.296,68.35,136.7,0.9,0.11,791,0.3,40,0.9
+14358,2023,10,27,3,0,-6.5,1.22,0.017,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.296,69.11,131.55,0.9,0.11,791,0.3,39,0.9
+14359,2023,10,27,3,30,-6.6,1.22,0.017,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.296,69.64,126.15,0.9,0.11,791,0.3,40,0.9
+14360,2023,10,27,4,0,-6.7,1.22,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,70.71,120.59,0.9,0.11,791,0.4,41,0.9
+14361,2023,10,27,4,30,-6.8,1.22,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,71.25,114.94,0.9,0.11,791,0.4,44,0.9
+14362,2023,10,27,5,0,-6.9,1.21,0.018,0.62,0,0,0,0,0,-11,0,0,0,0,0.296,72.56,109.25,0.91,0.11,792,0.4,46,0.8
+14363,2023,10,27,5,30,-6.9,1.21,0.018,0.62,0,0,0,0,0,-11,0,0,0,0,0.297,72.56,103.57,0.91,0.11,792,0.4,47,0.8
+14364,2023,10,27,6,0,-7,1.19,0.019,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.298,74.03,97.92,0.91,0.11,792,0.4,49,0.8
+14365,2023,10,27,6,30,-6.3,1.19,0.019,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.299,70.16,92.36,0.91,0.11,792,0.4,44,1.1
+14366,2023,10,27,7,0,-5.7,1.18,0.021,0.62,22,394,44,0,0,-10.5,22,394,0,44,0.3,69.1,86.74,0.91,0.11,792,0.4,40,1.4
+14367,2023,10,27,7,30,-4.1,1.18,0.021,0.62,32,669,130,0,0,-10.5,33,617,0,123,0.301,61.24,81.57,0.91,0.11,792,0.4,50,1.3
+14368,2023,10,27,8,0,-2.5,1.2,0.021,0.62,39,798,224,0,4,-10.6,92,258,0,152,0.302,53.67,76.56,0.91,0.11,792,0.4,59,1.2
+14369,2023,10,27,8,30,-1,1.2,0.021,0.62,45,875,318,0,4,-10.6,169,107,0,202,0.302,48.07,71.81,0.91,0.11,792,0.4,103,0.9
+14370,2023,10,27,9,0,0.6,1.2,0.021,0.62,48,926,404,0,4,-11,164,377,0,309,0.302,41.58,67.4,0.91,0.11,792,0.4,148,0.6
+14371,2023,10,27,9,30,2.2,1.2,0.021,0.62,52,962,482,0,4,-11,208,337,0,359,0.302,37.03,63.42,0.91,0.11,791,0.4,186,1.4
+14372,2023,10,27,10,0,3.8,1.19,0.02,0.62,53,987,547,0,4,-11,242,366,0,425,0.301,33.16,59.97,0.91,0.11,791,0.4,224,2.2
+14373,2023,10,27,10,30,5.2,1.19,0.02,0.62,54,1005,599,0,0,-11,103,865,0,572,0.301,30.07,57.15,0.91,0.11,791,0.4,228,2.9
+14374,2023,10,27,11,0,6.6,1.22,0.019,0.62,55,1017,637,0,0,-10.4,55,1017,0,637,0.3,28.63,55.06,0.91,0.11,791,0.4,232,3.7
+14375,2023,10,27,11,30,7.5,1.22,0.019,0.62,55,1024,660,0,0,-10.4,55,1024,0,660,0.299,26.89,53.8,0.9,0.11,790,0.4,233,4.2
+14376,2023,10,27,12,0,8.3,1.24,0.018,0.62,55,1026,667,0,0,-9.8,55,1026,0,667,0.298,26.58,53.41,0.9,0.11,790,0.4,235,4.6
+14377,2023,10,27,12,30,8.8,1.24,0.018,0.62,54,1024,657,0,0,-9.8,54,1024,0,657,0.298,25.69,53.93,0.9,0.11,790,0.4,236,4.8
+14378,2023,10,27,13,0,9.3,1.23,0.019,0.62,55,1016,633,0,0,-9.5,55,1016,0,633,0.297,25.56,55.32,0.9,0.11,790,0.4,238,5
+14379,2023,10,27,13,30,9.4,1.23,0.019,0.62,54,1000,591,0,0,-9.5,54,1000,0,591,0.297,25.36,57.52,0.91,0.11,789,0.5,239,4.9
+14380,2023,10,27,14,0,9.5,1.16,0.021,0.62,54,977,536,0,0,-9.2,54,977,0,536,0.296,25.7,60.44,0.91,0.11,789,0.5,240,4.8
+14381,2023,10,27,14,30,9.4,1.16,0.021,0.62,51,947,467,0,0,-9.2,51,947,0,467,0.297,25.88,63.97,0.91,0.11,789,0.5,239,4.5
+14382,2023,10,27,15,0,9.2,1.16,0.023,0.62,48,907,388,0,0,-9,48,907,0,388,0.297,26.79,68.01,0.92,0.11,789,0.5,239,4.2
+14383,2023,10,27,15,30,8.5,1.16,0.023,0.62,45,849,301,0,0,-9,54,806,0,297,0.297,28.08,72.48,0.92,0.11,789,0.5,237,3.3
+14384,2023,10,27,16,0,7.7,1.15,0.026,0.62,40,760,207,0,8,-7.6,95,362,0,175,0.297,32.93,77.28,0.92,0.11,789,0.5,236,2.5
+14385,2023,10,27,16,30,5.9,1.15,0.026,0.62,32,609,113,1,0,-7.6,48,383,21,99,0.297,37.26,82.33,0.93,0.11,789,0.6,232,1.7
+14386,2023,10,27,17,0,4.1,1.15,0.029,0.62,19,280,31,6,7,-5.5,21,6,93,21,0.297,49.6,87.51,0.93,0.11,789,0.6,228,1
+14387,2023,10,27,17,30,3.9,1.15,0.029,0.62,0,0,0,0,7,-5.5,0,0,7,0,0.296,50.3,93.18,0.93,0.11,789,0.6,223,1
+14388,2023,10,27,18,0,3.7,1.16,0.032,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.295,48.13,98.76,0.93,0.11,789,0.6,218,0.9
+14389,2023,10,27,18,30,3.6,1.16,0.032,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.295,48.47,104.41,0.93,0.11,789,0.6,221,0.8
+14390,2023,10,27,19,0,3.4,1.19,0.035,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.294,48.56,110.11,0.93,0.11,789,0.7,224,0.6
+14391,2023,10,27,19,30,3.1,1.19,0.035,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.294,49.6,115.81,0.94,0.11,789,0.7,251,0.5
+14392,2023,10,27,20,0,2.8,1.2,0.042,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,50.5,121.46,0.94,0.11,789,0.7,278,0.3
+14393,2023,10,27,20,30,2.4,1.2,0.042,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,51.95,127.02,0.95,0.11,789,0.8,312,0.4
+14394,2023,10,27,21,0,2,1.17,0.055,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,53.45,132.41,0.96,0.11,789,0.8,345,0.4
+14395,2023,10,27,21,30,1.8,1.17,0.055,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.293,54.22,137.54,0.96,0.11,789,0.8,177,0.5
+14396,2023,10,27,22,0,1.6,1.16,0.059,0.62,0,0,0,0,7,-6,0,0,0,0,0.292,57.13,142.27,0.96,0.11,788,0.8,8,0.5
+14397,2023,10,27,22,30,1.4,1.16,0.059,0.62,0,0,0,0,7,-6,0,0,0,0,0.292,57.96,146.41,0.96,0.11,788,0.9,12,0.5
+14398,2023,10,27,23,0,1.2,1.15,0.065,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.292,59.41,149.7,0.96,0.11,788,0.9,16,0.6
+14399,2023,10,27,23,30,1,1.15,0.065,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.292,60.27,151.83,0.96,0.11,788,0.9,15,0.7
+14400,2023,10,28,0,0,0.7,1.15,0.067,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.292,60.46,152.51,0.96,0.11,788,0.9,14,0.8
+14401,2023,10,28,0,30,0.5,1.15,0.067,0.62,0,0,0,0,6,-6.1,0,0,0,0,0.292,61.34,151.64,0.96,0.11,788,0.9,11,0.9
+14402,2023,10,28,1,0,0.3,1.14,0.063,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.292,59.74,149.35,0.96,0.11,788,0.9,9,1.1
+14403,2023,10,28,1,30,0,1.14,0.063,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.292,61.05,145.94,0.95,0.11,788,0.8,7,1.3
+14404,2023,10,28,2,0,-0.3,1.14,0.059,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.292,59.69,141.72,0.95,0.11,788,0.8,5,1.5
+14405,2023,10,28,2,30,-0.8,1.14,0.059,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.292,61.9,136.93,0.95,0.11,788,0.8,8,1.6
+14406,2023,10,28,3,0,-1.3,1.13,0.056,0.62,0,0,0,0,7,-7.8,0,0,0,0,0.292,61.15,131.77,0.95,0.11,788,0.8,10,1.6
+14407,2023,10,28,3,30,-1.6,1.13,0.056,0.62,0,0,0,0,8,-7.8,0,0,29,0,0.291,62.51,126.36,0.95,0.11,788,0.8,13,1.7
+14408,2023,10,28,4,0,-1.9,1.12,0.055,0.62,0,0,0,0,7,-8.2,0,0,14,0,0.291,62.21,120.79,0.95,0.11,788,0.8,16,1.8
+14409,2023,10,28,4,30,-2.1,1.12,0.055,0.62,0,0,0,0,8,-8.2,0,0,0,0,0.291,63.13,115.14,0.95,0.11,788,0.8,19,2
+14410,2023,10,28,5,0,-2.2,1.11,0.057,0.62,0,0,0,0,4,-8.2,0,0,0,0,0.291,63.61,109.45,0.95,0.11,788,0.8,21,2.1
+14411,2023,10,28,5,30,-2.4,1.11,0.057,0.62,0,0,0,0,4,-8.2,0,0,0,0,0.293,64.56,103.76,0.95,0.11,788,0.7,24,2.3
+14412,2023,10,28,6,0,-2.6,1.1,0.055,0.62,0,0,0,0,4,-8,0,0,0,0,0.294,66.19,98.12,0.95,0.11,789,0.7,28,2.4
+14413,2023,10,28,6,30,-2.5,1.1,0.055,0.62,0,0,0,1,4,-8,0,0,14,0,0.296,65.7,92.57,0.94,0.11,789,0.7,31,2.8
+14414,2023,10,28,7,0,-2.4,1.1,0.047,0.62,22,285,37,7,4,-7.9,5,0,100,5,0.297,66.12,86.95,0.94,0.11,789,0.7,35,3.2
+14415,2023,10,28,7,30,-1.8,1.1,0.047,0.62,37,570,118,3,4,-7.9,11,0,43,11,0.296,63.25,81.8,0.94,0.11,789,0.7,37,3.6
+14416,2023,10,28,8,0,-1.3,1.1,0.041,0.62,46,724,211,0,5,-7.6,7,0,0,7,0.296,62.11,76.79,0.93,0.11,789,0.7,39,4
+14417,2023,10,28,8,30,-0.5,1.1,0.041,0.62,52,817,304,0,5,-7.6,17,0,0,17,0.294,58.66,72.05,0.93,0.11,790,0.6,40,4
+14418,2023,10,28,9,0,0.3,1.11,0.038,0.62,57,877,390,0,5,-8.1,53,0,0,53,0.292,53.37,67.66,0.93,0.11,790,0.6,41,4
+14419,2023,10,28,9,30,1,1.11,0.038,0.62,60,917,466,0,5,-8.1,135,0,0,135,0.29,50.74,63.7,0.93,0.11,790,0.6,38,3.8
+14420,2023,10,28,10,0,1.6,1.12,0.037,0.62,62,945,531,0,5,-8.3,173,2,0,174,0.287,47.92,60.26,0.93,0.11,790,0.6,34,3.5
+14421,2023,10,28,10,30,2.2,1.12,0.037,0.62,64,967,584,0,7,-8.3,197,15,0,205,0.285,45.85,57.46,0.93,0.11,789,0.6,29,3.4
+14422,2023,10,28,11,0,2.8,1.19,0.033,0.62,64,982,622,0,7,-8.4,179,9,0,184,0.284,43.59,55.38,0.93,0.11,789,0.6,23,3.2
+14423,2023,10,28,11,30,3.1,1.19,0.033,0.62,64,989,644,0,7,-8.4,223,24,0,237,0.284,42.68,54.13,0.93,0.11,789,0.6,18,3.2
+14424,2023,10,28,12,0,3.5,1.2,0.033,0.62,65,991,651,0,7,-8.6,237,24,0,251,0.284,40.7,53.74,0.93,0.11,789,0.6,13,3.2
+14425,2023,10,28,12,30,3.5,1.2,0.033,0.62,65,988,642,0,7,-8.6,160,4,0,162,0.285,40.7,54.26,0.93,0.11,789,0.6,11,3.2
+14426,2023,10,28,13,0,3.6,1.21,0.033,0.62,64,980,617,0,7,-9,174,8,0,179,0.285,39.17,55.65,0.93,0.11,789,0.6,9,3.2
+14427,2023,10,28,13,30,3.4,1.21,0.033,0.62,62,967,577,0,7,-9,162,6,0,165,0.286,39.72,57.84,0.93,0.11,789,0.6,12,3.2
+14428,2023,10,28,14,0,3.3,1.22,0.033,0.62,60,948,523,0,6,-9.4,89,1,0,89,0.287,38.77,60.74,0.93,0.11,789,0.6,14,3.2
+14429,2023,10,28,14,30,3,1.22,0.033,0.62,57,921,457,0,6,-9.4,108,10,0,112,0.288,39.6,64.26,0.93,0.11,789,0.6,20,3.2
+14430,2023,10,28,15,0,2.6,1.23,0.034,0.62,53,881,379,0,7,-9.8,93,10,0,97,0.289,39.69,68.3,0.93,0.11,789,0.6,26,3.2
+14431,2023,10,28,15,30,2.1,1.23,0.034,0.62,49,822,293,0,7,-9.8,95,29,0,104,0.29,41.13,72.75,0.93,0.11,789,0.6,31,3.3
+14432,2023,10,28,16,0,1.5,1.24,0.035,0.62,42,732,200,0,8,-9.9,62,242,0,114,0.291,42.33,77.54,0.93,0.11,789,0.6,37,3.4
+14433,2023,10,28,16,30,0.7,1.24,0.035,0.62,33,581,108,5,7,-9.9,41,110,71,55,0.292,44.83,82.57,0.93,0.11,789,0.5,40,3.4
+14434,2023,10,28,17,0,-0.2,1.24,0.037,0.62,19,259,29,6,7,-9.8,15,1,86,15,0.294,48.53,87.73,0.94,0.11,790,0.5,44,3.3
+14435,2023,10,28,17,30,-0.8,1.24,0.037,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.296,50.7,93.41,0.94,0.11,790,0.5,45,3.4
+14436,2023,10,28,18,0,-1.5,1.25,0.039,0.62,0,0,0,0,7,-9.7,0,0,0,0,0.297,53.63,98.99,0.94,0.11,790,0.5,46,3.4
+14437,2023,10,28,18,30,-2,1.25,0.039,0.62,0,0,0,0,7,-9.7,0,0,0,0,0.298,55.71,104.64,0.94,0.11,791,0.5,45,3.5
+14438,2023,10,28,19,0,-2.5,1.26,0.04,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.299,56.77,110.34,0.94,0.11,791,0.5,44,3.5
+14439,2023,10,28,19,30,-3,1.26,0.04,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.3,58.91,116.03,0.94,0.11,791,0.5,42,3.5
+14440,2023,10,28,20,0,-3.5,1.26,0.041,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.3,59.52,121.69,0.94,0.11,791,0.5,40,3.4
+14441,2023,10,28,20,30,-3.8,1.26,0.041,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.3,60.87,127.25,0.94,0.11,791,0.5,38,3.3
+14442,2023,10,28,21,0,-4.1,1.26,0.042,0.62,0,0,0,0,8,-10.6,0,0,0,0,0.3,60.58,132.65,0.94,0.11,791,0.5,36,3.3
+14443,2023,10,28,21,30,-4.5,1.26,0.042,0.62,0,0,0,0,4,-10.6,0,0,0,0,0.299,62.43,137.79,0.94,0.11,791,0.5,33,3.2
+14444,2023,10,28,22,0,-4.8,1.27,0.041,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.297,62.24,142.54,0.94,0.11,791,0.5,30,3.1
+14445,2023,10,28,22,30,-5.2,1.27,0.041,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.296,64.23,146.71,0.94,0.11,792,0.5,27,3.1
+14446,2023,10,28,23,0,-5.6,1.28,0.039,0.62,0,0,0,0,4,-11.2,0,0,0,0,0.295,64.43,150.02,0.94,0.11,792,0.5,23,3.1
+14447,2023,10,28,23,30,-5.9,1.28,0.039,0.62,0,0,0,0,4,-11.2,0,0,0,0,0.293,65.91,152.16,0.94,0.11,792,0.4,21,3.3
+14448,2023,10,29,0,0,-6.3,1.28,0.039,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.292,66.03,152.84,0.94,0.11,792,0.4,19,3.5
+14449,2023,10,29,0,30,-6.5,1.28,0.039,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.29,67.05,151.96,0.94,0.11,792,0.4,19,3.7
+14450,2023,10,29,1,0,-6.7,1.28,0.038,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.289,66.48,149.65,0.94,0.11,792,0.4,20,3.9
+14451,2023,10,29,1,30,-6.8,1.28,0.038,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.289,66.99,146.21,0.94,0.11,792,0.4,20,4.1
+14452,2023,10,29,2,0,-7,1.27,0.039,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.289,67.08,141.96,0.94,0.11,792,0.4,20,4.3
+14453,2023,10,29,2,30,-6.9,1.27,0.039,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.289,66.56,137.16,0.94,0.11,792,0.4,22,4.6
+14454,2023,10,29,3,0,-6.9,1.25,0.04,0.62,0,0,0,0,4,-12.2,0,0,0,0,0.289,66.05,131.98,0.94,0.11,792,0.4,23,4.9
+14455,2023,10,29,3,30,-6.9,1.25,0.04,0.62,0,0,0,0,0,-12.2,0,0,0,0,0.289,66.13,126.56,0.94,0.11,793,0.4,24,5
+14456,2023,10,29,4,0,-6.8,1.23,0.041,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.289,65.01,120.99,0.95,0.11,793,0.4,24,5.1
+14457,2023,10,29,4,30,-6.8,1.23,0.041,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.289,65.01,115.33,0.94,0.11,793,0.4,26,5.3
+14458,2023,10,29,5,0,-6.8,1.21,0.041,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.289,63.77,109.64,0.94,0.11,794,0.4,27,5.5
+14459,2023,10,29,5,30,-6.8,1.21,0.041,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.29,63.77,103.96,0.94,0.11,794,0.4,29,5.6
+14460,2023,10,29,6,0,-6.8,1.21,0.037,0.62,0,0,0,0,0,-13,0,0,0,0,0.291,61.48,98.32,0.94,0.11,794,0.4,30,5.8
+14461,2023,10,29,6,30,-6.7,1.21,0.037,0.62,0,0,0,0,0,-13,0,0,0,0,0.292,61.09,92.77,0.93,0.11,795,0.4,32,6
+14462,2023,10,29,7,0,-6.6,1.2,0.032,0.62,21,344,38,0,0,-13.5,21,344,0,38,0.292,57.81,87.15,0.93,0.11,795,0.4,33,6.2
+14463,2023,10,29,7,30,-6,1.2,0.032,0.62,34,643,123,0,0,-13.5,34,643,0,123,0.292,55.29,82.01,0.93,0.11,796,0.3,35,6.5
+14464,2023,10,29,8,0,-5.3,1.19,0.026,0.62,41,790,218,0,0,-14.3,41,790,0,218,0.292,49.15,77.02,0.92,0.11,796,0.3,36,6.9
+14465,2023,10,29,8,30,-4.6,1.19,0.026,0.62,46,875,312,0,0,-14.3,46,875,0,312,0.292,46.62,72.3,0.92,0.11,796,0.3,37,6.9
+14466,2023,10,29,9,0,-4,1.18,0.022,0.62,49,932,399,0,0,-15,49,932,0,399,0.291,42.27,67.92,0.91,0.11,797,0.3,37,7
+14467,2023,10,29,9,30,-3.3,1.18,0.022,0.62,51,970,477,0,0,-15,51,970,0,477,0.292,40.11,63.97,0.91,0.11,797,0.3,36,6.8
+14468,2023,10,29,10,0,-2.7,1.2,0.018,0.62,52,998,543,0,0,-15.2,52,998,0,543,0.293,37.54,60.56,0.91,0.11,797,0.3,34,6.6
+14469,2023,10,29,10,30,-2.2,1.2,0.018,0.62,54,1020,598,0,0,-15.2,54,1020,0,598,0.295,36.18,57.76,0.91,0.11,797,0.3,33,6.4
+14470,2023,10,29,11,0,-1.7,1.18,0.019,0.62,56,1037,640,0,0,-15.4,56,1037,0,640,0.298,34.31,55.7,0.91,0.11,797,0.2,31,6.2
+14471,2023,10,29,11,30,-1.3,1.18,0.019,0.62,55,1047,664,0,0,-15.4,55,1047,0,664,0.301,33.32,54.45,0.91,0.11,797,0.2,31,6
+14472,2023,10,29,12,0,-0.9,1.2,0.018,0.62,56,1049,671,0,0,-15.6,56,1049,0,671,0.303,31.76,54.08,0.9,0.11,797,0.2,30,5.9
+14473,2023,10,29,12,30,-0.7,1.2,0.018,0.62,54,1048,661,0,0,-15.6,104,911,0,632,0.305,31.3,54.59,0.9,0.11,797,0.2,30,5.7
+14474,2023,10,29,13,0,-0.5,1.22,0.016,0.62,53,1042,636,0,0,-15.9,142,791,0,585,0.306,30.16,55.97,0.9,0.11,796,0.2,29,5.5
+14475,2023,10,29,13,30,-0.4,1.22,0.016,0.62,51,1031,595,0,0,-15.9,90,915,0,573,0.305,29.94,58.15,0.89,0.11,796,0.2,29,5.3
+14476,2023,10,29,14,0,-0.4,1.24,0.015,0.62,49,1014,540,0,0,-16.3,49,1014,0,540,0.304,29.04,61.05,0.89,0.11,797,0.2,29,5.1
+14477,2023,10,29,14,30,-0.6,1.24,0.015,0.62,46,989,471,0,0,-16.3,46,989,0,471,0.301,29.47,64.56,0.89,0.11,797,0.2,29,4.9
+14478,2023,10,29,15,0,-0.8,1.26,0.015,0.62,44,954,392,0,0,-16.8,44,954,0,392,0.299,28.69,68.58,0.89,0.11,797,0.2,29,4.7
+14479,2023,10,29,15,30,-1.4,1.26,0.015,0.62,40,901,303,0,0,-16.8,40,901,0,303,0.297,29.98,73.01,0.89,0.11,797,0.2,30,4.3
+14480,2023,10,29,16,0,-2,1.27,0.014,0.62,35,819,208,0,0,-17.3,35,819,0,208,0.294,30.08,77.79,0.89,0.11,797,0.2,30,3.9
+14481,2023,10,29,16,30,-3.9,1.27,0.014,0.62,27,680,112,0,0,-17.3,27,680,0,112,0.293,34.64,82.81,0.89,0.11,797,0.2,33,2.8
+14482,2023,10,29,17,0,-5.8,1.28,0.014,0.62,18,338,30,0,0,-16.2,18,338,0,30,0.291,43.76,87.95,0.89,0.12,797,0.2,35,1.6
+14483,2023,10,29,17,30,-6.6,1.28,0.014,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.289,46.58,93.64,0.89,0.12,798,0.2,40,1.4
+14484,2023,10,29,18,0,-7.4,1.3,0.014,0.62,0,0,0,0,0,-16,0,0,0,0,0.287,50.11,99.21,0.89,0.12,798,0.2,44,1.2
+14485,2023,10,29,18,30,-7.6,1.3,0.014,0.62,0,0,0,0,0,-16,0,0,0,0,0.285,50.89,104.86,0.89,0.12,798,0.2,48,1.2
+14486,2023,10,29,19,0,-7.8,1.31,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.283,51.46,110.55,0.89,0.12,798,0.2,52,1.1
+14487,2023,10,29,19,30,-7.9,1.31,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.282,51.86,116.25,0.89,0.12,798,0.2,57,1.1
+14488,2023,10,29,20,0,-8,1.32,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.281,52.23,121.91,0.89,0.12,798,0.2,63,1
+14489,2023,10,29,20,30,-8,1.32,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.281,52.3,127.48,0.89,0.12,799,0.2,69,1
+14490,2023,10,29,21,0,-8.1,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,53.05,132.89,0.89,0.12,799,0.2,76,0.9
+14491,2023,10,29,21,30,-8.1,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,53.05,138.05,0.89,0.12,799,0.2,83,0.9
+14492,2023,10,29,22,0,-8.1,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,52.87,142.81,0.89,0.12,799,0.2,90,0.8
+14493,2023,10,29,22,30,-8,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.279,52.46,147,0.89,0.12,799,0.2,97,0.8
+14494,2023,10,29,23,0,-8,1.32,0.013,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.279,51.79,150.33,0.89,0.12,798,0.2,103,0.7
+14495,2023,10,29,23,30,-7.9,1.32,0.013,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.279,51.39,152.49,0.89,0.12,798,0.2,112,0.6
+14496,2023,10,30,0,0,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,50.92,153.17,0.89,0.12,798,0.2,120,0.5
+14497,2023,10,30,0,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,50.92,152.28,0.89,0.12,798,0.2,134,0.4
+14498,2023,10,30,1,0,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,51.08,149.95,0.89,0.12,798,0.2,149,0.4
+14499,2023,10,30,1,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.08,146.48,0.89,0.12,798,0.2,166,0.3
+14500,2023,10,30,2,0,-7.9,1.3,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.02,142.21,0.89,0.12,798,0.2,182,0.3
+14501,2023,10,30,2,30,-7.9,1.3,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.02,137.39,0.88,0.12,798,0.2,193,0.3
+14502,2023,10,30,3,0,-7.9,1.28,0.012,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28,51.76,132.2,0.88,0.12,797,0.2,203,0.3
+14503,2023,10,30,3,30,-7.9,1.28,0.012,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28,51.76,126.77,0.89,0.12,797,0.2,206,0.3
+14504,2023,10,30,4,0,-7.9,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.8,121.19,0.89,0.12,797,0.2,208,0.3
+14505,2023,10,30,4,30,-7.8,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.39,115.53,0.89,0.12,797,0.2,206,0.3
+14506,2023,10,30,5,0,-7.8,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.42,109.83,0.89,0.12,797,0.2,205,0.3
+14507,2023,10,30,5,30,-7.8,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.42,104.15,0.89,0.12,797,0.2,202,0.3
+14508,2023,10,30,6,0,-7.7,1.27,0.012,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.28,52.67,98.52,0.89,0.12,797,0.2,199,0.3
+14509,2023,10,30,6,30,-7.2,1.27,0.012,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.28,50.67,92.98,0.89,0.12,797,0.2,207,0.4
+14510,2023,10,30,7,0,-6.8,1.27,0.012,0.62,19,372,36,0,0,-16.9,19,372,0,36,0.28,44.48,87.35,0.89,0.12,797,0.2,214,0.6
+14511,2023,10,30,7,30,-5.2,1.27,0.012,0.62,28,704,123,0,0,-16.9,28,704,0,123,0.28,39.42,82.23,0.89,0.12,798,0.2,232,0.8
+14512,2023,10,30,8,0,-3.7,1.27,0.012,0.62,34,826,216,0,0,-18,34,826,0,216,0.28,32.09,77.26,0.89,0.12,798,0.3,250,1.1
+14513,2023,10,30,8,30,-2.2,1.27,0.012,0.62,38,897,307,0,0,-18,38,897,0,307,0.279,28.71,72.54,0.89,0.12,798,0.3,265,1.4
+14514,2023,10,30,9,0,-0.8,1.28,0.012,0.62,42,948,394,0,0,-18.3,42,948,0,394,0.278,25.23,68.18,0.89,0.12,798,0.3,280,1.7
+14515,2023,10,30,9,30,0.2,1.28,0.012,0.62,44,982,471,0,0,-18.3,44,982,0,471,0.277,23.47,64.25,0.89,0.12,798,0.3,284,1.9
+14516,2023,10,30,10,0,1.2,1.28,0.012,0.62,45,1007,536,0,0,-18.3,45,1007,0,536,0.276,21.84,60.85,0.89,0.12,798,0.3,289,2.1
+14517,2023,10,30,10,30,2.1,1.28,0.012,0.62,47,1023,588,0,0,-18.3,47,1023,0,588,0.275,20.48,58.07,0.89,0.12,798,0.3,291,2.1
+14518,2023,10,30,11,0,3,1.28,0.012,0.62,48,1035,626,0,0,-18,48,1035,0,626,0.274,19.62,56.02,0.89,0.12,798,0.3,293,2.2
+14519,2023,10,30,11,30,3.7,1.28,0.012,0.62,49,1041,649,0,0,-18.1,49,1041,0,649,0.272,18.65,54.78,0.89,0.12,797,0.3,294,2.2
+14520,2023,10,30,12,0,4.4,1.29,0.012,0.62,48,1043,655,0,0,-17.8,48,1043,0,655,0.27,18.21,54.4,0.89,0.12,797,0.3,296,2.3
+14521,2023,10,30,12,30,4.8,1.29,0.012,0.62,48,1041,646,0,0,-17.8,48,1041,0,646,0.269,17.69,54.92,0.89,0.12,796,0.3,298,2.3
+14522,2023,10,30,13,0,5.3,1.29,0.011,0.62,47,1035,621,0,0,-17.3,47,1035,0,621,0.267,17.79,56.29,0.89,0.12,796,0.3,300,2.3
+14523,2023,10,30,13,30,5.4,1.29,0.011,0.62,47,1022,581,0,0,-17.3,47,1022,0,581,0.266,17.66,58.47,0.89,0.12,796,0.3,304,2.3
+14524,2023,10,30,14,0,5.6,1.25,0.012,0.62,45,1001,525,0,0,-16.8,45,1001,0,525,0.265,18.24,61.35,0.89,0.12,796,0.3,309,2.3
+14525,2023,10,30,14,30,5.4,1.25,0.012,0.62,43,976,458,0,0,-16.8,43,976,0,458,0.265,18.49,64.84,0.89,0.12,796,0.3,314,2.2
+14526,2023,10,30,15,0,5.1,1.25,0.012,0.62,40,937,378,0,0,-16.2,40,937,0,378,0.264,19.8,68.85,0.89,0.12,796,0.4,320,2.1
+14527,2023,10,30,15,30,3.9,1.25,0.012,0.62,37,883,291,0,0,-16.2,37,883,0,291,0.264,21.53,73.28,0.89,0.12,796,0.4,328,1.5
+14528,2023,10,30,16,0,2.6,1.25,0.012,0.62,33,797,198,0,0,-11.6,33,797,0,198,0.264,34.41,78.04,0.89,0.12,796,0.4,336,0.9
+14529,2023,10,30,16,30,1,1.25,0.012,0.62,26,652,105,0,0,-11.6,26,652,0,105,0.264,38.57,83.05,0.89,0.12,796,0.4,172,0.9
+14530,2023,10,30,17,0,-0.6,1.26,0.012,0.62,15,270,24,0,0,-14.2,15,270,0,24,0.264,35,88.17,0.89,0.11,796,0.4,8,1
+14531,2023,10,30,17,30,-1.2,1.26,0.012,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.263,36.57,93.87,0.89,0.11,796,0.4,17,1
+14532,2023,10,30,18,0,-1.8,1.25,0.011,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.263,36.81,99.43,0.88,0.11,797,0.4,27,1.1
+14533,2023,10,30,18,30,-2.2,1.25,0.011,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.262,37.92,105.08,0.88,0.11,797,0.4,33,1.1
+14534,2023,10,30,19,0,-2.6,1.24,0.011,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.261,39.78,110.77,0.88,0.11,797,0.4,39,1.1
+14535,2023,10,30,19,30,-2.7,1.24,0.011,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.261,40.08,116.47,0.88,0.11,797,0.4,43,1
+14536,2023,10,30,20,0,-2.9,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.26,41.13,122.13,0.88,0.11,797,0.4,47,0.9
+14537,2023,10,30,20,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.259,41.44,127.71,0.88,0.11,797,0.4,52,0.9
+14538,2023,10,30,21,0,-3.1,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,41.8,133.13,0.89,0.11,798,0.4,56,0.8
+14539,2023,10,30,21,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,41.49,138.29,0.89,0.11,798,0.4,60,0.7
+14540,2023,10,30,22,0,-3,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,41.71,143.08,0.89,0.11,798,0.4,64,0.6
+14541,2023,10,30,22,30,-3.1,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.02,147.28,0.89,0.11,798,0.4,83,0.5
+14542,2023,10,30,23,0,-3.1,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.14,150.63,0.89,0.11,798,0.4,102,0.4
+14543,2023,10,30,23,30,-3.3,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.77,152.81,0.89,0.11,798,0.4,129,0.4
+14544,2023,10,31,0,0,-3.4,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.87,153.5,0.89,0.11,797,0.4,156,0.5
+14545,2023,10,31,0,30,-3.4,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.87,152.59,0.89,0.11,797,0.4,166,0.5
+14546,2023,10,31,1,0,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,43.28,150.24,0.89,0.11,798,0.4,176,0.5
+14547,2023,10,31,1,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.258,43.28,146.75,0.89,0.11,798,0.4,179,0.5
+14548,2023,10,31,2,0,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,43.07,142.46,0.89,0.11,798,0.4,182,0.5
+14549,2023,10,31,2,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,43.07,137.61,0.89,0.11,798,0.4,182,0.5
+14550,2023,10,31,3,0,-3.6,1.21,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.259,43.59,132.41,0.89,0.11,798,0.4,183,0.6
+14551,2023,10,31,3,30,-3.7,1.21,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.259,43.92,126.97,0.89,0.11,798,0.4,186,0.6
+14552,2023,10,31,4,0,-3.8,1.21,0.011,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.259,44.6,121.38,0.89,0.11,798,0.4,188,0.7
+14553,2023,10,31,4,30,-4,1.21,0.011,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.259,45.27,115.72,0.89,0.11,798,0.4,191,0.8
+14554,2023,10,31,5,0,-4.1,1.21,0.01,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.259,46.36,110.03,0.89,0.11,798,0.4,193,0.8
+14555,2023,10,31,5,30,-4.3,1.21,0.01,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.259,47.06,104.35,0.89,0.11,798,0.5,195,0.9
+14556,2023,10,31,6,0,-4.4,1.21,0.01,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.259,47.79,98.72,0.89,0.11,798,0.5,197,0.9
+14557,2023,10,31,6,30,-4,1.21,0.01,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.258,46.38,93.18,0.89,0.11,798,0.5,199,0.9
+14558,2023,10,31,7,0,-3.6,1.21,0.01,0.62,18,339,32,0,0,-12.8,18,339,0,32,0.258,48.94,87.56,0.89,0.11,798,0.5,201,1
+14559,2023,10,31,7,30,-2.1,1.21,0.01,0.62,26,664,113,0,0,-12.8,26,664,0,113,0.258,43.83,82.45,0.89,0.11,799,0.5,206,1.5
+14560,2023,10,31,8,0,-0.5,1.21,0.01,0.62,31,797,204,0,0,-14.2,31,797,0,204,0.257,34.64,77.49,0.89,0.11,799,0.5,210,2
+14561,2023,10,31,8,30,0.8,1.21,0.01,0.62,36,877,295,0,0,-14.2,36,877,0,295,0.257,31.53,72.79,0.89,0.11,799,0.5,221,2.3
+14562,2023,10,31,9,0,2.2,1.22,0.01,0.62,39,928,380,0,0,-14.2,39,928,0,380,0.256,28.59,68.44,0.89,0.11,799,0.5,231,2.5
+14563,2023,10,31,9,30,3.1,1.22,0.01,0.62,40,964,455,0,0,-14.2,40,964,0,455,0.255,26.82,64.52,0.89,0.11,799,0.5,236,2.5
+14564,2023,10,31,10,0,4,1.23,0.01,0.62,43,988,520,0,0,-14,43,988,0,520,0.255,25.66,61.14,0.89,0.11,799,0.5,240,2.5
+14565,2023,10,31,10,30,4.7,1.23,0.01,0.62,44,1005,571,0,0,-14,44,1005,0,571,0.254,24.44,58.37,0.89,0.11,799,0.5,243,2.5
+14566,2023,10,31,11,0,5.5,1.23,0.01,0.62,46,1016,609,0,0,-13.8,46,1016,0,609,0.254,23.46,56.33,0.9,0.11,798,0.5,246,2.4
+14567,2023,10,31,11,30,6.1,1.23,0.01,0.62,46,1023,631,0,0,-13.8,46,1023,0,631,0.253,22.5,55.1,0.9,0.11,798,0.5,249,2.4
+14568,2023,10,31,12,0,6.8,1.24,0.01,0.62,45,1025,637,0,0,-13.5,45,1025,0,637,0.252,21.98,54.73,0.9,0.11,798,0.5,252,2.3
+14569,2023,10,31,12,30,7.2,1.24,0.01,0.62,45,1022,628,0,0,-13.5,45,1022,0,628,0.251,21.39,55.24,0.9,0.11,798,0.5,253,2.2
+14570,2023,10,31,13,0,7.7,1.25,0.01,0.62,45,1016,604,0,0,-13.1,45,1016,0,604,0.249,21.35,56.61,0.9,0.11,797,0.5,255,2.1
+14571,2023,10,31,13,30,7.8,1.25,0.01,0.62,44,1003,564,0,0,-13.1,44,1003,0,564,0.248,21.21,58.77,0.9,0.11,797,0.5,252,2
+14572,2023,10,31,14,0,8,1.26,0.01,0.62,43,985,511,0,0,-12.7,43,985,0,511,0.247,21.65,61.64,0.9,0.11,797,0.5,250,1.8
+14573,2023,10,31,14,30,7.9,1.26,0.01,0.62,40,960,444,0,0,-12.7,40,960,0,444,0.246,21.79,65.13,0.9,0.11,797,0.5,240,1.6
+14574,2023,10,31,15,0,7.7,1.26,0.01,0.62,38,922,367,0,0,-12.1,38,922,0,367,0.245,23.02,69.12,0.9,0.11,797,0.5,230,1.5
+14575,2023,10,31,15,30,6.2,1.26,0.01,0.62,35,867,281,0,0,-12.2,35,867,0,281,0.245,25.51,73.53,0.9,0.11,797,0.5,214,1.2
+14576,2023,10,31,16,0,4.7,1.25,0.011,0.62,32,780,190,0,0,-8.1,32,780,0,190,0.245,39,78.28,0.9,0.11,797,0.5,198,0.9
+14577,2023,10,31,16,30,2.8,1.25,0.011,0.62,25,633,99,0,0,-8.1,25,633,0,99,0.245,44.51,83.29,0.9,0.11,796,0.5,191,1.1
+14578,2023,10,31,17,0,0.9,1.24,0.011,0.61,15,255,22,0,0,-11.4,15,255,0,22,0.245,39.23,88.38,0.9,0.11,796,0.5,184,1.3
+14579,2023,10,31,17,30,0.2,1.24,0.011,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.245,41.26,94.09,0.9,0.11,796,0.5,182,1.3
+14580,2023,10,31,18,0,-0.4,1.23,0.012,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.245,40.13,99.64,0.91,0.11,796,0.5,181,1.4
+14581,2023,10,31,18,30,-0.8,1.23,0.012,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.245,41.31,105.29,0.91,0.11,796,0.5,184,1.3
+14582,2023,10,31,19,0,-1.1,1.22,0.012,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.244,41.7,110.98,0.91,0.11,796,0.4,186,1.3
+14583,2023,10,31,19,30,-1.2,1.22,0.012,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.244,42,116.68,0.91,0.11,796,0.4,192,1.3
+14584,2023,10,31,20,0,-1.3,1.22,0.013,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.243,41.93,122.35,0.91,0.11,796,0.4,198,1.2
+14585,2023,10,31,20,30,-1.4,1.22,0.013,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.243,42.24,127.93,0.91,0.11,796,0.4,205,1.2
+14586,2023,10,31,21,0,-1.5,1.23,0.013,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.242,42.45,133.35,0.91,0.11,796,0.4,211,1.1
+14587,2023,10,31,21,30,-1.6,1.23,0.013,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.241,42.76,138.53,0.91,0.11,796,0.4,215,1.1
+14588,2023,10,31,22,0,-1.7,1.24,0.013,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.24,43.02,143.34,0.91,0.11,796,0.4,219,1.1
+14589,2023,10,31,22,30,-1.9,1.24,0.013,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.24,43.66,147.56,0.91,0.11,796,0.5,217,1.1
+14590,2023,10,31,23,0,-2.1,1.24,0.013,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.239,44.52,150.94,0.91,0.11,796,0.5,216,1.2
+14591,2023,10,31,23,30,-2.3,1.24,0.013,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.239,45.18,153.13,0.91,0.11,796,0.5,212,1.2
+14592,2023,11,1,0,0,-2.6,1.24,0.013,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.239,46.66,153.82,0.91,0.11,796,0.5,209,1.2
+14593,2023,11,1,0,30,-2.8,1.24,0.013,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.24,47.36,152.9,0.91,0.11,796,0.5,206,1.3
+14594,2023,11,1,1,0,-3.1,1.23,0.014,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.241,49.24,150.53,0.92,0.11,795,0.5,203,1.3
+14595,2023,11,1,1,30,-3.2,1.23,0.014,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.241,49.61,147.02,0.92,0.11,795,0.5,203,1.3
+14596,2023,11,1,2,0,-3.3,1.23,0.015,0.61,0,0,0,0,7,-11.9,0,0,0,0,0.242,51.48,142.7,0.92,0.11,795,0.5,202,1.3
+14597,2023,11,1,2,30,-3.3,1.23,0.015,0.61,0,0,0,0,7,-11.9,0,0,0,0,0.243,51.48,137.84,0.92,0.11,795,0.5,202,1.3
+14598,2023,11,1,3,0,-3.4,1.24,0.014,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.243,53.3,132.62,0.92,0.11,795,0.5,202,1.3
+14599,2023,11,1,3,30,-3.5,1.24,0.014,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.244,53.7,127.17,0.91,0.11,795,0.5,203,1.3
+14600,2023,11,1,4,0,-3.6,1.26,0.013,0.61,0,0,0,0,7,-11.2,0,0,0,0,0.244,55.55,121.58,0.91,0.11,795,0.5,203,1.3
+14601,2023,11,1,4,30,-3.7,1.26,0.013,0.61,0,0,0,0,0,-11.2,0,0,0,0,0.245,55.97,115.91,0.91,0.11,795,0.5,205,1.3
+14602,2023,11,1,5,0,-3.8,1.25,0.014,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.246,57.63,110.22,0.91,0.11,795,0.5,207,1.2
+14603,2023,11,1,5,30,-3.9,1.25,0.014,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.248,58.06,104.54,0.92,0.11,795,0.5,209,1.2
+14604,2023,11,1,6,0,-3.9,1.22,0.015,0.61,0,0,0,0,7,-10.7,0,0,0,0,0.249,59.28,98.92,0.92,0.11,795,0.5,211,1.2
+14605,2023,11,1,6,30,-3.4,1.22,0.015,0.61,0,0,0,0,7,-10.7,0,0,0,0,0.25,57.1,93.39,0.92,0.11,795,0.5,211,1.2
+14606,2023,11,1,7,0,-2.8,1.21,0.015,0.61,18,313,30,6,8,-9.9,18,6,86,18,0.251,58.32,87.76,0.92,0.11,795,0.5,212,1.1
+14607,2023,11,1,7,30,-1.1,1.21,0.015,0.61,28,639,110,4,7,-9.8,66,31,57,70,0.251,51.52,82.67,0.92,0.11,796,0.5,214,1.6
+14608,2023,11,1,8,0,0.6,1.21,0.016,0.61,36,778,201,0,7,-9.8,87,22,0,92,0.252,45.79,77.72,0.92,0.11,796,0.5,216,2.2
+14609,2023,11,1,8,30,2.1,1.21,0.016,0.61,41,861,292,0,7,-9.8,136,48,0,150,0.251,41.12,73.04,0.92,0.11,796,0.5,218,2.4
+14610,2023,11,1,9,0,3.5,1.22,0.016,0.61,45,916,378,0,7,-10.8,162,43,0,178,0.25,34.23,68.7,0.92,0.11,796,0.5,220,2.7
+14611,2023,11,1,9,30,4.9,1.22,0.016,0.61,47,951,452,0,6,-10.8,169,34,0,183,0.249,31.04,64.8,0.92,0.11,796,0.5,223,3.1
+14612,2023,11,1,10,0,6.3,1.23,0.016,0.61,50,977,517,0,6,-12.8,194,27,0,207,0.248,24.1,61.42,0.92,0.11,796,0.5,226,3.5
+14613,2023,11,1,10,30,7.2,1.23,0.016,0.61,51,995,568,0,7,-12.8,239,103,0,293,0.247,22.63,58.67,0.93,0.11,795,0.5,228,3.5
+14614,2023,11,1,11,0,8.1,1.26,0.015,0.61,51,1008,605,0,7,-12.8,232,367,0,434,0.246,21.24,56.64,0.93,0.11,795,0.5,230,3.6
+14615,2023,11,1,11,30,8.7,1.26,0.015,0.61,52,1012,626,0,7,-12.8,247,294,0,414,0.245,20.39,55.42,0.93,0.11,795,0.6,234,3.6
+14616,2023,11,1,12,0,9.3,1.26,0.016,0.61,53,1013,633,0,7,-12.5,238,121,0,307,0.245,20.1,55.05,0.93,0.11,795,0.6,237,3.6
+14617,2023,11,1,12,30,9.6,1.26,0.016,0.61,53,1010,624,0,7,-12.5,214,32,0,232,0.245,19.67,55.56,0.94,0.11,794,0.6,239,3.6
+14618,2023,11,1,13,0,9.9,1.24,0.018,0.61,54,1001,600,0,7,-12.3,210,25,0,224,0.245,19.59,56.92,0.94,0.11,794,0.6,241,3.5
+14619,2023,11,1,13,30,9.8,1.24,0.018,0.61,53,985,559,0,7,-12.3,174,14,0,181,0.247,19.72,59.08,0.94,0.11,794,0.6,241,3.4
+14620,2023,11,1,14,0,9.7,1.23,0.02,0.61,53,964,506,0,6,-12.3,189,31,0,204,0.248,19.92,61.94,0.94,0.11,794,0.6,240,3.2
+14621,2023,11,1,14,30,9.4,1.23,0.02,0.61,50,934,439,0,7,-12.3,191,65,0,218,0.25,20.32,65.4,0.94,0.11,794,0.6,236,3
+14622,2023,11,1,15,0,9.1,1.22,0.02,0.61,46,894,361,0,7,-11.7,128,22,0,136,0.252,21.7,69.39,0.94,0.11,793,0.6,232,2.7
+14623,2023,11,1,15,30,7.6,1.22,0.02,0.61,42,833,275,0,7,-11.7,83,19,0,88,0.254,24.02,73.79,0.94,0.11,793,0.6,225,2
+14624,2023,11,1,16,0,6.1,1.19,0.021,0.61,37,740,184,0,7,-7.5,83,82,0,99,0.256,37.12,78.52,0.94,0.11,793,0.6,219,1.2
+14625,2023,11,1,16,30,4.4,1.19,0.021,0.61,28,582,94,6,7,-7.5,36,20,86,38,0.257,41.76,83.51,0.94,0.11,793,0.6,212,1.3
+14626,2023,11,1,17,0,2.8,1.19,0.02,0.61,15,220,20,5,7,-9,9,0,71,9,0.258,41.52,88.59,0.93,0.11,793,0.6,204,1.3
+14627,2023,11,1,17,30,2,1.19,0.02,0.61,0,0,0,0,8,-9,0,0,0,0,0.259,43.95,94.3,0.93,0.11,793,0.6,203,1.4
+14628,2023,11,1,18,0,1.3,1.2,0.019,0.61,0,0,0,0,5,-10.2,0,0,0,0,0.259,42.03,99.85,0.93,0.11,793,0.6,201,1.4
+14629,2023,11,1,18,30,0.9,1.2,0.019,0.61,0,0,0,0,5,-10.2,0,0,0,0,0.26,43.26,105.49,0.93,0.11,793,0.6,204,1.4
+14630,2023,11,1,19,0,0.5,1.2,0.019,0.61,0,0,0,0,4,-10.7,0,0,0,0,0.261,42.89,111.18,0.93,0.11,794,0.6,207,1.3
+14631,2023,11,1,19,30,0.4,1.2,0.019,0.61,0,0,0,0,4,-10.7,0,0,0,0,0.262,43.2,116.88,0.93,0.11,794,0.6,212,1.3
+14632,2023,11,1,20,0,0.2,1.18,0.021,0.61,0,0,0,0,8,-10.9,0,0,0,0,0.263,43.22,122.55,0.93,0.11,794,0.6,216,1.2
+14633,2023,11,1,20,30,0.2,1.18,0.021,0.61,0,0,0,0,7,-10.9,0,0,0,0,0.263,43.22,128.14,0.94,0.11,794,0.6,215,1.2
+14634,2023,11,1,21,0,0.2,1.16,0.023,0.61,0,0,0,0,7,-10.6,0,0,0,0,0.264,44.12,133.58,0.94,0.11,794,0.6,213,1.1
+14635,2023,11,1,21,30,0.2,1.16,0.023,0.61,0,0,0,0,7,-10.6,0,0,0,0,0.263,44.12,138.77,0.94,0.11,794,0.6,209,1.1
+14636,2023,11,1,22,0,0.3,1.16,0.024,0.61,0,0,0,0,7,-10.3,0,0,0,0,0.263,44.89,143.59,0.94,0.11,794,0.6,204,1.1
+14637,2023,11,1,22,30,0.2,1.16,0.024,0.61,0,0,0,0,8,-10.3,0,0,0,0,0.261,45.22,147.83,0.94,0.11,794,0.7,202,1.1
+14638,2023,11,1,23,0,0,1.18,0.023,0.61,0,0,0,0,4,-10.1,0,0,0,0,0.26,46.62,151.23,0.94,0.11,794,0.7,199,1.2
+14639,2023,11,1,23,30,-0.2,1.18,0.023,0.61,0,0,0,0,0,-10.1,0,0,0,0,0.26,47.3,153.44,0.93,0.11,794,0.7,203,1.1
+14640,2023,11,2,0,0,-0.4,1.19,0.021,0.61,0,0,0,0,0,-10.1,0,0,0,0,0.259,47.85,154.14,0.93,0.11,794,0.7,206,1.1
+14641,2023,11,2,0,30,-0.7,1.19,0.021,0.61,0,0,0,0,0,-10.1,0,0,0,0,0.26,48.85,153.21,0.92,0.11,793,0.7,205,1.2
+14642,2023,11,2,1,0,-1,1.21,0.018,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.26,49.21,150.82,0.92,0.11,793,0.7,204,1.3
+14643,2023,11,2,1,30,-1.4,1.21,0.018,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.259,50.67,147.28,0.91,0.11,793,0.7,203,1.3
+14644,2023,11,2,2,0,-1.8,1.22,0.017,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.259,50.03,142.94,0.91,0.11,793,0.7,202,1.3
+14645,2023,11,2,2,30,-2,1.22,0.017,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.257,50.77,138.06,0.91,0.11,793,0.7,206,1.2
+14646,2023,11,2,3,0,-2.1,1.26,0.015,0.61,0,0,0,0,0,-11,0,0,0,0,0.256,50.72,132.83,0.91,0.11,793,0.7,209,1.1
+14647,2023,11,2,3,30,-2.2,1.26,0.015,0.61,0,0,0,0,0,-11,0,0,0,0,0.253,51.09,127.37,0.91,0.11,793,0.7,213,1.1
+14648,2023,11,2,4,0,-2.3,1.31,0.013,0.61,0,0,0,0,0,-11,0,0,0,0,0.25,51.19,121.78,0.9,0.11,794,0.7,216,1
+14649,2023,11,2,4,30,-2.3,1.31,0.013,0.61,0,0,0,0,0,-11,0,0,0,0,0.249,51.19,116.11,0.9,0.11,794,0.7,215,1
+14650,2023,11,2,5,0,-2.4,1.33,0.012,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.247,51.32,110.41,0.9,0.11,794,0.7,213,1
+14651,2023,11,2,5,30,-2.5,1.33,0.012,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.247,51.7,104.74,0.9,0.11,794,0.8,211,1
+14652,2023,11,2,6,0,-2.5,1.34,0.011,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.246,51.67,99.12,0.9,0.11,794,0.8,209,1
+14653,2023,11,2,6,30,-2.1,1.34,0.011,0.61,0,0,0,0,8,-11.1,0,0,0,0,0.245,50.17,93.59,0.9,0.11,794,0.8,206,1
+14654,2023,11,2,7,0,-1.7,1.33,0.01,0.61,16,303,27,6,8,-10.3,17,21,82,18,0.245,52.08,87.96,0.9,0.11,795,0.8,203,1
+14655,2023,11,2,7,30,0.1,1.33,0.01,0.61,25,622,102,4,8,-10.3,53,243,57,83,0.244,45.67,82.89,0.9,0.11,795,0.9,200,1.6
+14656,2023,11,2,8,0,1.9,1.31,0.011,0.61,32,759,190,0,0,-10.4,32,759,0,190,0.244,39.73,77.95,0.9,0.11,795,0.9,198,2.1
+14657,2023,11,2,8,30,3.5,1.31,0.011,0.61,36,842,278,0,8,-10.4,101,443,0,228,0.244,35.47,73.28,0.91,0.11,795,0.9,201,2.4
+14658,2023,11,2,9,0,5.2,1.3,0.011,0.61,39,895,360,0,3,-11,157,382,0,294,0.244,29.97,68.96,0.91,0.11,795,1,204,2.6
+14659,2023,11,2,9,30,7,1.3,0.011,0.61,42,931,434,0,0,-11,42,931,0,434,0.243,26.48,65.07,0.91,0.11,795,1,211,2.9
+14660,2023,11,2,10,0,8.8,1.32,0.011,0.61,43,956,496,0,0,-12,133,657,0,444,0.243,21.65,61.71,0.9,0.11,795,1,217,3.2
+14661,2023,11,2,10,30,10,1.32,0.011,0.61,43,973,545,0,0,-12,67,905,0,534,0.242,19.98,58.97,0.9,0.11,795,1,221,3.4
+14662,2023,11,2,11,0,11.2,1.33,0.011,0.61,44,984,581,0,0,-11.6,44,984,0,581,0.241,18.98,56.95,0.9,0.11,795,1,225,3.7
+14663,2023,11,2,11,30,12,1.33,0.011,0.61,46,989,603,0,0,-11.6,216,527,0,513,0.241,17.98,55.73,0.9,0.11,794,1.1,228,4
+14664,2023,11,2,12,0,12.7,1.33,0.011,0.61,46,990,609,0,0,-10.3,199,561,0,518,0.241,19.05,55.37,0.91,0.11,794,1.1,230,4.2
+14665,2023,11,2,12,30,13.2,1.33,0.011,0.61,47,985,600,0,7,-10.3,189,540,0,492,0.241,18.44,55.88,0.91,0.11,794,1.1,232,4.3
+14666,2023,11,2,13,0,13.6,1.32,0.013,0.61,48,975,576,0,7,-9,202,444,0,442,0.241,19.95,57.23,0.91,0.11,794,1.1,234,4.4
+14667,2023,11,2,13,30,13.8,1.32,0.013,0.61,50,959,538,0,6,-9,172,197,0,272,0.241,19.7,59.38,0.91,0.11,794,1.1,234,4.3
+14668,2023,11,2,14,0,13.9,1.37,0.019,0.61,50,935,486,0,0,-8,66,883,0,478,0.242,21.15,62.22,0.91,0.11,793,1.1,234,4.2
+14669,2023,11,2,14,30,13.7,1.37,0.019,0.61,48,907,422,0,0,-8,99,716,0,394,0.241,21.43,65.68,0.91,0.11,793,1.1,231,4
+14670,2023,11,2,15,0,13.6,1.37,0.019,0.61,46,866,347,0,0,-7.3,86,682,0,323,0.241,22.77,69.65,0.91,0.11,793,1.1,229,3.7
+14671,2023,11,2,15,30,12.2,1.37,0.019,0.61,41,806,263,0,8,-7.3,101,162,0,146,0.241,24.94,74.03,0.92,0.11,793,1.1,222,2.8
+14672,2023,11,2,16,0,10.8,1.38,0.02,0.61,35,711,174,0,8,-4.7,50,17,0,53,0.24,33.49,78.76,0.92,0.11,793,1.1,216,1.9
+14673,2023,11,2,16,30,8.3,1.38,0.02,0.61,27,548,87,6,8,-4.7,42,30,82,45,0.241,39.6,83.74,0.92,0.11,793,1.1,209,1.7
+14674,2023,11,2,17,0,5.8,1.38,0.021,0.61,14,198,18,4,3,-4.8,10,29,64,11,0.241,46.4,88.8,0.92,0.11,793,1.1,203,1.5
+14675,2023,11,2,17,30,5.1,1.38,0.021,0.61,0,0,0,0,8,-4.8,0,0,0,0,0.242,48.71,94.51,0.92,0.11,793,1.1,203,1.6
+14676,2023,11,2,18,0,4.3,1.36,0.023,0.61,0,0,0,0,5,-5.5,0,0,0,0,0.243,49.07,100.06,0.92,0.11,793,1.1,204,1.6
+14677,2023,11,2,18,30,3.9,1.36,0.023,0.61,0,0,0,0,7,-5.5,0,0,0,0,0.244,50.46,105.69,0.92,0.11,793,1.1,206,1.7
+14678,2023,11,2,19,0,3.5,1.33,0.027,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.245,50.86,111.38,0.93,0.11,793,1.2,208,1.8
+14679,2023,11,2,19,30,3.3,1.33,0.027,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.247,51.58,117.08,0.93,0.11,793,1.2,210,1.8
+14680,2023,11,2,20,0,3.1,1.32,0.028,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.248,51.87,122.75,0.93,0.11,793,1.2,212,1.8
+14681,2023,11,2,20,30,2.8,1.32,0.028,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.25,52.98,128.35,0.93,0.11,793,1.2,211,1.8
+14682,2023,11,2,21,0,2.5,1.33,0.025,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.251,52.89,133.79,0.92,0.11,794,1.2,210,1.8
+14683,2023,11,2,21,30,2.2,1.33,0.025,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.253,53.96,139,0.92,0.11,793,1.2,209,1.8
+14684,2023,11,2,22,0,1.9,1.35,0.023,0.61,0,0,0,0,0,-6.6,0,0,0,0,0.254,53.45,143.83,0.92,0.11,793,1.2,207,1.7
+14685,2023,11,2,22,30,1.8,1.35,0.023,0.61,0,0,0,0,0,-6.6,0,0,0,0,0.256,53.83,148.1,0.92,0.11,793,1.2,210,1.7
+14686,2023,11,2,23,0,1.6,1.37,0.022,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.257,53.5,151.52,0.92,0.11,793,1.2,212,1.6
+14687,2023,11,2,23,30,1.5,1.37,0.022,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.258,53.89,153.75,0.92,0.11,793,1.2,214,1.6
+14688,2023,11,3,0,0,1.4,1.37,0.023,0.61,0,0,0,0,0,-7.1,0,0,0,0,0.259,53.11,154.46,0.92,0.11,794,1.2,216,1.5
+14689,2023,11,3,0,30,1.2,1.37,0.023,0.61,0,0,0,0,0,-7.1,0,0,0,0,0.259,53.87,153.52,0.92,0.11,794,1.2,216,1.5
+14690,2023,11,3,1,0,1,1.36,0.024,0.61,0,0,0,0,0,-7.4,0,0,0,0,0.259,53.38,151.1,0.92,0.11,794,1.3,216,1.4
+14691,2023,11,3,1,30,1.1,1.36,0.024,0.61,0,0,0,0,0,-7.4,0,0,0,0,0.259,53,147.54,0.92,0.11,794,1.3,219,1.4
+14692,2023,11,3,2,0,1.1,1.32,0.028,0.61,0,0,0,0,7,-7.4,0,0,0,0,0.259,53.07,143.18,0.93,0.11,794,1.3,222,1.3
+14693,2023,11,3,2,30,1.2,1.32,0.028,0.61,0,0,0,0,7,-7.4,0,0,0,0,0.26,52.69,138.28,0.93,0.11,794,1.3,224,1.2
+14694,2023,11,3,3,0,1.4,1.31,0.03,0.61,0,0,0,0,6,-7.1,0,0,0,0,0.26,53.05,133.04,0.93,0.11,794,1.4,226,1.1
+14695,2023,11,3,3,30,1.4,1.31,0.03,0.61,0,0,0,0,7,-7.1,0,0,0,0,0.261,53.05,127.57,0.93,0.11,794,1.3,228,1.1
+14696,2023,11,3,4,0,1.4,1.31,0.028,0.61,0,0,0,0,7,-7.1,0,0,0,0,0.262,53.09,121.97,0.93,0.11,795,1.3,230,1
+14697,2023,11,3,4,30,1.6,1.31,0.028,0.61,0,0,0,0,8,-7.1,0,0,0,0,0.264,52.34,116.3,0.93,0.11,795,1.3,234,1
+14698,2023,11,3,5,0,1.7,1.29,0.025,0.61,0,0,0,0,5,-7,0,0,0,0,0.265,52.61,110.6,0.93,0.11,795,1.3,238,1
+14699,2023,11,3,5,30,1.9,1.29,0.025,0.61,0,0,0,0,4,-7,0,0,0,0,0.267,51.87,104.93,0.93,0.11,795,1.2,238,0.9
+14700,2023,11,3,6,0,2.1,1.27,0.023,0.61,0,0,0,0,4,-6.8,0,0,0,0,0.268,51.82,99.32,0.93,0.11,795,1.2,238,0.8
+14701,2023,11,3,6,30,2.3,1.27,0.023,0.61,0,0,0,0,4,-6.8,0,0,0,0,0.269,51.09,93.8,0.93,0.11,795,1.1,233,0.8
+14702,2023,11,3,7,0,2.6,1.25,0.022,0.61,16,250,24,1,0,-6.5,16,242,14,24,0.271,51.3,88.17,0.93,0.11,795,1.1,227,0.8
+14703,2023,11,3,7,30,3.9,1.25,0.022,0.61,29,565,97,0,0,-6.5,29,565,0,97,0.271,46.81,83.11,0.92,0.11,795,1.1,218,1
+14704,2023,11,3,8,0,5.3,1.24,0.022,0.61,37,718,184,0,0,-6,59,532,0,168,0.272,44.05,78.19,0.92,0.11,795,1.1,209,1.2
+14705,2023,11,3,8,30,7,1.24,0.022,0.61,43,809,272,0,8,-6,115,363,0,218,0.272,39.18,73.52,0.92,0.11,795,1.1,230,1.1
+14706,2023,11,3,9,0,8.7,1.24,0.021,0.61,46,868,354,0,0,-3.6,117,546,0,311,0.272,41.67,69.21,0.92,0.11,796,1.1,250,1.1
+14707,2023,11,3,9,30,10.1,1.24,0.021,0.61,50,905,428,0,8,-3.6,170,420,0,345,0.272,37.89,65.34,0.93,0.11,795,1.1,263,1.4
+14708,2023,11,3,10,0,11.5,1.23,0.023,0.61,53,930,490,0,8,-0.4,191,410,0,384,0.272,43.94,61.99,0.93,0.11,795,1.1,276,1.7
+14709,2023,11,3,10,30,12.2,1.23,0.023,0.61,53,952,540,0,7,-0.4,182,487,0,431,0.272,41.96,59.26,0.93,0.11,795,1.1,271,1.8
+14710,2023,11,3,11,0,12.8,1.17,0.019,0.61,55,966,577,0,7,0.2,212,419,0,439,0.272,42.09,57.26,0.94,0.11,795,1.1,265,2
+14711,2023,11,3,11,30,13.2,1.17,0.019,0.61,54,973,598,0,8,0.2,175,601,0,511,0.271,41.01,56.04,0.94,0.11,795,1.1,261,2.1
+14712,2023,11,3,12,0,13.6,1.16,0.019,0.61,55,975,605,0,7,0.4,166,657,0,536,0.27,40.34,55.68,0.94,0.11,794,1.1,257,2.3
+14713,2023,11,3,12,30,13.9,1.16,0.019,0.61,56,971,596,0,8,0.4,132,749,0,549,0.27,39.57,56.19,0.94,0.11,794,1.1,256,2.4
+14714,2023,11,3,13,0,14.1,1.15,0.021,0.61,56,961,572,0,0,0.3,67,925,0,564,0.269,38.92,57.53,0.94,0.11,794,1.1,255,2.5
+14715,2023,11,3,13,30,14,1.15,0.021,0.61,55,946,533,0,8,0.3,124,724,0,490,0.27,39.18,59.67,0.94,0.11,794,1.1,258,2.5
+14716,2023,11,3,14,0,14,1.14,0.026,0.61,54,922,480,0,0,0.1,113,710,0,441,0.27,38.66,62.5,0.95,0.11,794,1.1,260,2.5
+14717,2023,11,3,14,30,13.7,1.14,0.026,0.61,52,892,416,0,0,0.1,102,702,0,388,0.27,39.42,65.95,0.95,0.11,794,1.1,260,2.3
+14718,2023,11,3,15,0,13.4,1.15,0.026,0.61,49,849,341,0,8,-0.1,96,638,14,315,0.271,39.64,69.9,0.95,0.11,794,1.1,259,2.1
+14719,2023,11,3,15,30,12.5,1.15,0.026,0.61,44,787,257,0,7,-0.1,101,424,14,216,0.271,42.03,74.28,0.95,0.11,794,1.1,251,1.4
+14720,2023,11,3,16,0,11.7,1.16,0.025,0.61,37,691,169,0,7,1.4,99,143,0,126,0.271,49.38,78.99,0.94,0.11,794,1,242,0.8
+14721,2023,11,3,16,30,10.8,1.16,0.025,0.61,28,527,83,5,8,1.4,52,97,71,62,0.272,52.41,83.96,0.94,0.11,794,1,228,0.6
+14722,2023,11,3,17,0,10,1.2,0.022,0.61,12,170,15,1,0,0.2,12,170,11,15,0.273,50.49,88.99,0.93,0.11,794,1,214,0.4
+14723,2023,11,3,17,30,9.4,1.2,0.022,0.61,0,0,0,0,7,0.2,0,0,0,0,0.273,52.56,94.71,0.93,0.11,794,1,274,0.4
+14724,2023,11,3,18,0,8.9,1.21,0.021,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.272,51.83,100.25,0.93,0.11,794,1,334,0.3
+14725,2023,11,3,18,30,8,1.21,0.021,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.271,55.08,105.89,0.93,0.11,794,1,345,0.5
+14726,2023,11,3,19,0,7.1,1.2,0.022,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.27,57.26,111.57,0.93,0.11,794,0.9,356,0.7
+14727,2023,11,3,19,30,6.3,1.2,0.022,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.269,60.56,117.27,0.92,0.11,795,0.9,180,0.8
+14728,2023,11,3,20,0,5.5,1.18,0.022,0.61,0,0,0,0,7,-0.8,0,0,14,0,0.269,63.7,122.95,0.92,0.11,795,0.9,4,0.8
+14729,2023,11,3,20,30,4.9,1.18,0.022,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.268,66.41,128.55,0.92,0.11,795,0.9,8,0.9
+14730,2023,11,3,21,0,4.2,1.17,0.021,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.268,69.82,134,0.92,0.11,795,0.9,13,1
+14731,2023,11,3,21,30,3.7,1.17,0.021,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.268,72.31,139.22,0.92,0.11,795,0.9,17,1
+14732,2023,11,3,22,0,3.3,1.16,0.022,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.269,74.81,144.07,0.92,0.11,796,0.9,22,1.1
+14733,2023,11,3,22,30,3,1.16,0.022,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.269,76.41,148.36,0.92,0.11,796,0.9,28,1.1
+14734,2023,11,3,23,0,2.8,1.14,0.021,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.269,77.9,151.81,0.92,0.11,796,0.8,34,1
+14735,2023,11,3,23,30,2.7,1.14,0.021,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.269,78.46,154.05,0.92,0.11,796,0.8,45,1
+14736,2023,11,4,0,0,2.7,1.13,0.021,0.61,0,0,0,0,0,-0.6,0,0,0,0,0.27,78.67,154.77,0.92,0.11,796,0.8,56,0.9
+14737,2023,11,4,0,30,2.6,1.13,0.021,0.61,0,0,0,0,0,-0.6,0,0,0,0,0.27,79.23,153.82,0.92,0.11,796,0.8,71,0.8
+14738,2023,11,4,1,0,2.5,1.11,0.021,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.269,79.56,151.38,0.92,0.11,796,0.8,87,0.7
+14739,2023,11,4,1,30,2.3,1.11,0.021,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.269,80.7,147.8,0.92,0.11,796,0.8,102,0.8
+14740,2023,11,4,2,0,2.1,1.12,0.019,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.268,81.25,143.42,0.91,0.11,796,0.8,117,0.8
+14741,2023,11,4,2,30,1.7,1.12,0.019,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.267,83.6,138.5,0.91,0.11,796,0.8,127,0.8
+14742,2023,11,4,3,0,1.3,1.12,0.018,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.266,85.18,133.25,0.91,0.11,796,0.8,137,0.9
+14743,2023,11,4,3,30,1,1.12,0.018,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.266,87.03,127.77,0.91,0.11,796,0.8,144,0.9
+14744,2023,11,4,4,0,0.7,1.11,0.018,0.61,0,0,0,0,0,-1,0,0,0,0,0.266,88.07,122.17,0.92,0.11,796,0.8,151,1
+14745,2023,11,4,4,30,0.4,1.11,0.018,0.61,0,0,0,0,0,-1,0,0,0,0,0.266,90,116.49,0.92,0.11,796,0.8,156,1
+14746,2023,11,4,5,0,0.2,1.11,0.017,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.266,90.43,110.8,0.92,0.11,796,0.8,161,1
+14747,2023,11,4,5,30,-0.2,1.11,0.017,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.266,93.09,105.13,0.92,0.11,796,0.8,162,1.1
+14748,2023,11,4,6,0,-0.5,1.11,0.017,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.266,94.22,99.52,0.92,0.11,796,0.8,163,1.1
+14749,2023,11,4,6,30,-0.3,1.11,0.017,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.266,92.98,94,0.92,0.11,797,0.8,165,1.1
+14750,2023,11,4,7,0,-0.1,1.12,0.016,0.61,15,227,21,3,0,-1.4,14,79,43,16,0.265,90.84,88.36,0.92,0.11,797,0.8,166,1.1
+14751,2023,11,4,7,30,1.9,1.12,0.016,0.61,27,585,95,3,8,-1.4,52,199,43,75,0.265,78.67,83.33,0.92,0.11,797,0.9,168,1.4
+14752,2023,11,4,8,0,3.9,1.14,0.016,0.61,34,736,182,0,0,-1.4,52,585,0,170,0.264,68.55,78.41,0.92,0.11,797,0.9,169,1.8
+14753,2023,11,4,8,30,5.6,1.14,0.016,0.61,40,823,270,0,0,-1.4,44,798,0,267,0.263,60.89,73.77,0.92,0.11,797,0.9,177,1.9
+14754,2023,11,4,9,0,7.3,1.15,0.016,0.61,43,881,352,0,0,-1.2,43,881,0,352,0.263,54.66,69.47,0.92,0.11,797,0.9,186,2
+14755,2023,11,4,9,30,8.9,1.15,0.016,0.61,46,920,426,0,0,-1.2,46,920,0,426,0.262,49.04,65.61,0.92,0.11,797,0.9,201,2.2
+14756,2023,11,4,10,0,10.5,1.16,0.016,0.61,48,946,488,0,0,-1.6,48,946,0,488,0.261,42.86,62.27,0.92,0.11,797,1,216,2.5
+14757,2023,11,4,10,30,11.5,1.16,0.016,0.61,49,966,538,0,0,-1.6,49,966,0,538,0.26,40.06,59.56,0.92,0.11,796,1,223,2.6
+14758,2023,11,4,11,0,12.5,1.09,0.012,0.61,47,981,573,0,0,-1.9,47,981,0,573,0.259,36.65,57.56,0.92,0.11,796,1,230,2.8
+14759,2023,11,4,11,30,13.1,1.09,0.012,0.61,48,986,594,0,0,-1.9,48,986,0,594,0.259,35.24,56.35,0.92,0.11,796,1,232,3
+14760,2023,11,4,12,0,13.8,1.1,0.013,0.61,48,988,601,0,0,-2.1,48,988,0,601,0.258,33.36,55.99,0.92,0.11,796,1,233,3.2
+14761,2023,11,4,12,30,14.2,1.1,0.013,0.61,48,985,592,0,0,-2.1,48,985,0,592,0.257,32.47,56.49,0.92,0.11,795,1,232,3.3
+14762,2023,11,4,13,0,14.6,1.1,0.014,0.61,49,977,569,0,0,-2,49,977,0,569,0.257,31.76,57.83,0.92,0.11,795,1,232,3.5
+14763,2023,11,4,13,30,14.7,1.1,0.014,0.61,49,962,531,0,0,-2,49,962,0,531,0.256,31.56,59.96,0.92,0.11,795,1,231,3.6
+14764,2023,11,4,14,0,14.8,1.14,0.017,0.61,49,940,479,0,0,-2,49,940,0,479,0.256,31.5,62.78,0.92,0.11,794,1,231,3.7
+14765,2023,11,4,14,30,14.5,1.14,0.017,0.61,47,913,415,0,0,-2,47,913,0,415,0.255,32.11,66.21,0.92,0.11,794,0.9,230,3.6
+14766,2023,11,4,15,0,14.2,1.14,0.016,0.61,44,873,340,0,0,-1.9,44,873,0,340,0.255,32.98,70.15,0.92,0.11,794,0.9,229,3.6
+14767,2023,11,4,15,30,13.1,1.14,0.016,0.61,39,811,256,0,0,-1.9,39,811,0,256,0.254,35.42,74.51,0.93,0.11,794,0.9,227,2.8
+14768,2023,11,4,16,0,11.9,1.15,0.017,0.61,33,714,167,0,0,-0.4,59,514,11,155,0.254,42.62,79.21,0.93,0.11,794,0.9,224,2
+14769,2023,11,4,16,30,10,1.15,0.017,0.61,26,544,81,5,8,-0.4,46,101,68,56,0.255,48.33,84.17,0.93,0.11,794,0.9,218,1.6
+14770,2023,11,4,17,0,8.1,1.16,0.019,0.61,11,155,13,3,0,-0.5,10,109,43,12,0.255,54.51,89.18,0.93,0.11,794,0.9,213,1.2
+14771,2023,11,4,17,30,7.7,1.16,0.019,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.256,56.02,94.91,0.93,0.11,794,0.9,207,1.2
+14772,2023,11,4,18,0,7.4,1.18,0.02,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.257,56.4,100.45,0.93,0.11,794,0.9,201,1.2
+14773,2023,11,4,18,30,7.1,1.18,0.02,0.61,0,0,0,0,7,-0.7,0,0,0,0,0.258,57.57,106.08,0.93,0.11,794,0.9,200,1.2
+14774,2023,11,4,19,0,6.8,1.21,0.02,0.61,0,0,0,0,7,-1,0,0,0,0,0.259,57.73,111.76,0.93,0.11,794,0.9,198,1.3
+14775,2023,11,4,19,30,6.6,1.21,0.02,0.61,0,0,0,0,7,-1,0,0,0,0,0.259,58.53,117.46,0.93,0.11,794,0.9,199,1.3
+14776,2023,11,4,20,0,6.3,1.25,0.022,0.61,0,0,0,0,6,-1.3,0,0,0,0,0.26,58.42,123.14,0.93,0.11,794,0.9,199,1.4
+14777,2023,11,4,20,30,6.2,1.25,0.022,0.61,0,0,0,0,7,-1.3,0,0,0,0,0.26,58.82,128.74,0.93,0.11,794,1,200,1.5
+14778,2023,11,4,21,0,6.1,1.31,0.026,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.26,58.16,134.21,0.93,0.11,793,1,200,1.5
+14779,2023,11,4,21,30,6.1,1.31,0.026,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.26,58.16,139.44,0.93,0.11,793,1,200,1.6
+14780,2023,11,4,22,0,6.1,1.37,0.029,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.26,57.28,144.31,0.93,0.11,793,1.1,201,1.7
+14781,2023,11,4,22,30,5.6,1.37,0.029,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.26,59.29,148.62,0.93,0.11,793,1.1,201,1.8
+14782,2023,11,4,23,0,5.1,1.44,0.03,0.61,0,0,0,0,7,-2.1,0,0,0,0,0.259,59.79,152.09,0.92,0.11,793,1.1,200,1.9
+14783,2023,11,4,23,30,4.7,1.44,0.03,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.258,61.48,154.35,0.92,0.11,793,1.1,199,2
+14784,2023,11,5,0,0,4.3,1.48,0.029,0.61,0,0,0,0,0,-2.4,0,0,0,0,0.257,61.83,155.07,0.92,0.11,793,1.1,197,2.1
+14785,2023,11,5,0,30,4.1,1.48,0.029,0.61,0,0,0,0,0,-2.4,0,0,0,0,0.257,62.63,154.12,0.92,0.11,792,1.1,196,2.1
+14786,2023,11,5,1,0,3.9,1.48,0.03,0.61,0,0,0,0,8,-2.6,0,0,0,0,0.256,62.58,151.66,0.92,0.11,792,1.1,195,2.2
+14787,2023,11,5,1,30,3.9,1.48,0.03,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.256,62.58,148.05,0.92,0.11,792,1.1,194,2.2
+14788,2023,11,5,2,0,3.8,1.48,0.03,0.61,0,0,0,0,7,-2.8,0,0,0,0,0.257,62.15,143.65,0.92,0.11,792,1.1,193,2.2
+14789,2023,11,5,2,30,3.8,1.48,0.03,0.61,0,0,0,0,7,-2.8,0,0,0,0,0.258,62.07,138.72,0.92,0.11,791,1.1,194,2.2
+14790,2023,11,5,3,0,3.7,1.46,0.033,0.61,0,0,0,0,7,-3,0,0,0,0,0.259,61.46,133.45,0.92,0.11,791,1.1,194,2.2
+14791,2023,11,5,3,30,3.7,1.46,0.033,0.61,0,0,0,0,7,-3,0,0,0,0,0.26,61.46,127.97,0.92,0.11,791,1,196,2.1
+14792,2023,11,5,4,0,3.7,1.41,0.036,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.261,60.49,122.36,0.92,0.11,791,1,198,2.1
+14793,2023,11,5,4,30,3.8,1.41,0.036,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.262,60.07,116.68,0.92,0.11,791,1,199,2
+14794,2023,11,5,5,0,3.9,1.37,0.038,0.61,0,0,0,0,7,-3.3,0,0,0,0,0.263,59.22,110.99,0.92,0.11,791,1,200,2
+14795,2023,11,5,5,30,3.8,1.37,0.038,0.61,0,0,0,0,7,-3.3,0,0,0,0,0.264,59.64,105.32,0.92,0.11,791,1,200,2
+14796,2023,11,5,6,0,3.8,1.34,0.04,0.61,0,0,0,0,7,-3.4,0,0,0,0,0.265,59.49,99.71,0.92,0.11,791,1,200,2
+14797,2023,11,5,6,30,4,1.34,0.04,0.61,0,0,0,0,6,-3.4,0,0,0,0,0.266,58.66,94.21,0.92,0.11,791,1,198,2.1
+14798,2023,11,5,7,0,4.3,1.34,0.042,0.61,15,173,19,5,7,-3.3,10,1,71,10,0.267,57.59,88.56,0.92,0.11,791,1,197,2.1
+14799,2023,11,5,7,30,5.6,1.34,0.042,0.61,32,501,88,5,7,-3.3,49,15,71,51,0.268,52.62,83.55,0.92,0.11,791,1,197,2.6
+14800,2023,11,5,8,0,6.9,1.34,0.043,0.61,42,666,173,0,7,-3.3,99,193,0,137,0.269,48.15,78.65,0.92,0.11,791,1,196,3.1
+14801,2023,11,5,8,30,8.3,1.34,0.043,0.61,50,767,261,0,0,-3.3,106,368,0,207,0.27,43.77,74.01,0.92,0.11,791,1,197,3.5
+14802,2023,11,5,9,0,9.8,1.37,0.042,0.61,54,833,343,0,7,-3.6,157,268,0,250,0.271,38.76,69.72,0.92,0.11,790,1,199,3.8
+14803,2023,11,5,9,30,11.7,1.37,0.042,0.61,58,878,417,0,7,-3.6,181,256,0,286,0.271,34.17,65.87,0.92,0.11,790,1,206,4.4
+14804,2023,11,5,10,0,13.6,1.39,0.04,0.61,61,910,480,0,7,-6.3,153,461,0,366,0.272,24.54,62.55,0.92,0.11,790,1,214,5
+14805,2023,11,5,10,30,14.8,1.39,0.04,0.61,58,943,532,0,0,-6.3,82,869,0,518,0.271,22.71,59.85,0.92,0.11,790,1,219,5.2
+14806,2023,11,5,11,0,16,1.35,0.019,0.61,53,972,570,0,0,-8.9,120,752,7,520,0.271,17.25,57.86,0.93,0.11,789,1,224,5.4
+14807,2023,11,5,11,30,16.4,1.35,0.019,0.61,55,975,591,0,0,-8.9,144,731,0,546,0.271,16.82,56.65,0.93,0.11,789,1,226,5.5
+14808,2023,11,5,12,0,16.8,1.3,0.024,0.61,58,973,598,0,0,-8.6,58,973,0,598,0.27,16.75,56.29,0.94,0.11,789,1,228,5.6
+14809,2023,11,5,12,30,16.9,1.3,0.024,0.61,59,968,589,0,7,-8.6,180,574,0,494,0.269,16.64,56.79,0.94,0.11,789,1,229,5.5
+14810,2023,11,5,13,0,17,1.31,0.028,0.61,59,959,565,0,7,-7.6,204,482,0,458,0.268,17.9,58.13,0.94,0.11,788,1,229,5.5
+14811,2023,11,5,13,30,17,1.31,0.028,0.61,57,944,526,0,7,-7.6,213,400,0,412,0.268,17.9,60.24,0.94,0.11,788,0.9,230,5.5
+14812,2023,11,5,14,0,16.9,1.31,0.031,0.61,57,921,474,0,7,-6.7,190,415,0,378,0.267,19.27,63.05,0.93,0.11,788,0.9,231,5.5
+14813,2023,11,5,14,30,16.7,1.31,0.031,0.61,54,889,409,0,7,-6.7,183,342,0,320,0.267,19.52,66.47,0.93,0.11,788,0.9,231,5.1
+14814,2023,11,5,15,0,16.4,1.32,0.034,0.61,51,841,333,0,7,-5.8,156,276,0,249,0.266,21.31,70.4,0.93,0.11,788,0.9,232,4.7
+14815,2023,11,5,15,30,15,1.32,0.034,0.61,46,770,249,0,7,-5.8,124,205,0,178,0.266,23.31,74.75,0.93,0.11,788,0.9,230,3.7
+14816,2023,11,5,16,0,13.7,1.31,0.037,0.61,39,659,160,1,0,-3.7,62,451,14,145,0.266,29.67,79.43,0.93,0.11,788,0.9,229,2.6
+14817,2023,11,5,16,30,11.9,1.31,0.037,0.61,29,474,75,7,8,-3.7,53,35,100,56,0.266,33.36,84.38,0.93,0.11,788,0.9,230,2.3
+14818,2023,11,5,17,0,10,1.28,0.04,0.61,11,119,12,4,7,-3.1,8,17,50,8,0.266,39.63,89.37,0.93,0.11,788,0.9,230,2
+14819,2023,11,5,17,30,9.5,1.28,0.04,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,40.98,95.11,0.93,0.11,788,0.9,233,1.9
+14820,2023,11,5,18,0,9,1.26,0.041,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.266,42.07,100.64,0.93,0.11,788,0.9,236,1.9
+14821,2023,11,5,18,30,8.7,1.26,0.041,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.266,42.98,106.26,0.93,0.11,789,0.9,238,1.8
+14822,2023,11,5,19,0,8.4,1.27,0.041,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,44.1,111.94,0.93,0.11,789,0.9,240,1.6
+14823,2023,11,5,19,30,8.2,1.27,0.041,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,44.7,117.64,0.93,0.11,789,0.9,239,1.5
+14824,2023,11,5,20,0,8,1.29,0.04,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.267,45.45,123.32,0.93,0.11,789,0.9,237,1.3
+14825,2023,11,5,20,30,8,1.29,0.04,0.61,0,0,0,0,6,-3.1,0,0,0,0,0.267,45.45,128.93,0.93,0.11,789,0.9,232,1.3
+14826,2023,11,5,21,0,7.9,1.32,0.041,0.61,0,0,0,0,6,-3.4,0,0,0,0,0.267,44.63,134.4,0.93,0.11,788,0.9,227,1.2
+14827,2023,11,5,21,30,7.8,1.32,0.041,0.61,0,0,0,0,6,-3.4,0,0,0,0,0.267,44.94,139.65,0.93,0.11,788,0.9,219,1.2
+14828,2023,11,5,22,0,7.6,1.36,0.04,0.61,0,0,0,0,6,-4,0,0,0,0,0.267,43.79,144.54,0.92,0.11,788,0.8,211,1.2
+14829,2023,11,5,22,30,7.3,1.36,0.04,0.61,0,0,0,0,6,-4,0,0,0,0,0.267,44.7,148.87,0.92,0.11,788,0.8,205,1.3
+14830,2023,11,5,23,0,7,1.38,0.04,0.61,0,0,0,0,6,-4.7,0,0,0,0,0.267,43.21,152.36,0.92,0.11,788,0.8,198,1.3
+14831,2023,11,5,23,30,6.6,1.38,0.04,0.61,0,0,0,0,6,-4.7,0,0,0,0,0.267,44.35,154.65,0.92,0.11,787,0.8,196,1.4
+14832,2023,11,6,0,0,6.2,1.39,0.04,0.61,0,0,0,0,6,-5.3,0,0,0,0,0.267,43.65,155.38,0.92,0.11,787,0.8,194,1.4
+14833,2023,11,6,0,30,5.9,1.39,0.04,0.61,0,0,0,0,6,-5.3,0,0,0,0,0.267,44.57,154.41,0.92,0.11,787,0.8,195,1.5
+14834,2023,11,6,1,0,5.6,1.38,0.041,0.61,0,0,0,0,7,-5.5,0,0,0,0,0.266,44.79,151.94,0.93,0.11,787,0.8,196,1.6
+14835,2023,11,6,1,30,5.4,1.38,0.041,0.61,0,0,0,0,6,-5.5,0,0,0,0,0.266,45.41,148.31,0.93,0.11,787,0.8,195,1.7
+14836,2023,11,6,2,0,5.3,1.37,0.042,0.61,0,0,0,0,6,-5.6,0,0,0,0,0.265,45.21,143.89,0.93,0.11,787,0.9,195,1.7
+14837,2023,11,6,2,30,5.1,1.37,0.042,0.61,0,0,0,0,7,-5.6,0,0,0,0,0.264,45.84,138.94,0.93,0.11,787,0.9,194,1.7
+14838,2023,11,6,3,0,5,1.37,0.043,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.264,45.93,133.66,0.93,0.11,787,0.9,193,1.8
+14839,2023,11,6,3,30,4.8,1.37,0.043,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.263,46.57,128.17,0.93,0.11,787,0.9,193,1.8
+14840,2023,11,6,4,0,4.7,1.37,0.043,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.263,46.55,122.55,0.93,0.11,787,0.9,193,1.8
+14841,2023,11,6,4,30,4.6,1.37,0.043,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.262,46.88,116.87,0.93,0.11,787,0.9,191,1.8
+14842,2023,11,6,5,0,4.5,1.4,0.042,0.61,0,0,0,0,7,-6,0,0,0,0,0.262,46.47,111.18,0.92,0.11,787,0.9,190,1.9
+14843,2023,11,6,5,30,4.3,1.4,0.042,0.61,0,0,0,0,7,-6,0,0,0,0,0.262,47.12,105.51,0.92,0.11,787,0.9,190,2
+14844,2023,11,6,6,0,4,1.44,0.042,0.61,0,0,0,0,6,-6.4,0,0,0,0,0.262,46.76,99.91,0.92,0.11,787,0.9,190,2
+14845,2023,11,6,6,30,4,1.44,0.042,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.261,46.76,94.41,0.91,0.11,787,0.9,193,2
+14846,2023,11,6,7,0,4.1,1.48,0.044,0.61,13,168,17,5,7,-6.6,10,1,71,10,0.261,45.71,88.76,0.91,0.11,787,0.9,195,2.1
+14847,2023,11,6,7,30,5.4,1.48,0.044,0.61,31,492,84,5,7,-6.6,50,12,71,51,0.26,41.75,83.77,0.91,0.11,787,0.9,198,2.6
+14848,2023,11,6,8,0,6.7,1.49,0.049,0.61,43,655,169,0,7,-7,88,40,0,96,0.26,37.02,78.87,0.91,0.11,787,0.9,200,3.1
+14849,2023,11,6,8,30,7.6,1.49,0.049,0.61,52,753,256,0,8,-7,107,396,0,214,0.259,34.81,74.25,0.91,0.11,787,0.9,200,3.3
+14850,2023,11,6,9,0,8.5,1.5,0.055,0.61,58,815,337,0,0,-7.2,100,584,4,300,0.259,32.24,69.97,0.91,0.11,787,0.9,200,3.6
+14851,2023,11,6,9,30,9.5,1.5,0.055,0.61,63,858,410,1,7,-7.2,187,292,18,305,0.258,30.14,66.14,0.91,0.11,787,0.9,204,4.1
+14852,2023,11,6,10,0,10.5,1.51,0.058,0.61,67,886,472,2,7,-7.2,194,291,21,327,0.257,28.18,62.83,0.91,0.11,787,1,207,4.6
+14853,2023,11,6,10,30,11.3,1.51,0.058,0.61,69,912,523,1,7,-7.2,216,359,18,395,0.256,26.73,60.13,0.92,0.11,787,1,210,5
+14854,2023,11,6,11,0,12.1,1.48,0.052,0.61,69,930,560,0,7,-7,227,370,0,422,0.255,25.7,58.15,0.92,0.11,787,1,214,5.4
+14855,2023,11,6,11,30,12.7,1.48,0.052,0.61,71,935,581,0,7,-7,253,209,0,367,0.254,24.71,56.95,0.92,0.11,787,1,216,5.6
+14856,2023,11,6,12,0,13.2,1.45,0.058,0.61,74,934,588,0,7,-6.7,251,300,0,416,0.253,24.41,56.59,0.92,0.11,786,0.9,218,5.8
+14857,2023,11,6,12,30,13.3,1.45,0.058,0.61,74,928,578,0,7,-6.7,257,258,0,397,0.252,24.26,57.09,0.92,0.11,786,0.9,219,5.8
+14858,2023,11,6,13,0,13.4,1.43,0.064,0.61,74,916,554,0,7,-6.9,256,115,0,316,0.252,23.76,58.42,0.92,0.11,786,0.9,220,5.8
+14859,2023,11,6,13,30,13.4,1.43,0.064,0.61,68,913,517,0,7,-6.9,226,301,0,374,0.251,23.76,60.52,0.92,0.11,786,0.9,219,5.5
+14860,2023,11,6,14,0,13.5,1.38,0.041,0.61,60,908,468,0,7,-7.2,200,163,0,273,0.25,23.06,63.32,0.92,0.11,785,0.9,219,5.2
+14861,2023,11,6,14,30,13.5,1.38,0.041,0.61,56,883,405,0,8,-7.2,129,474,14,316,0.25,23.06,66.72,0.92,0.11,785,0.9,218,4.8
+14862,2023,11,6,15,0,13.5,1.43,0.032,0.61,50,846,330,0,0,-7.1,86,693,4,316,0.249,23.23,70.64,0.92,0.11,785,0.9,216,4.4
+14863,2023,11,6,15,30,12.7,1.43,0.032,0.61,44,784,247,0,0,-7.1,67,640,7,233,0.249,24.48,74.97,0.92,0.11,785,0.8,214,3.6
+14864,2023,11,6,16,0,11.8,1.43,0.028,0.61,37,684,160,1,3,-6,78,200,21,114,0.248,28.2,79.65,0.92,0.11,785,0.8,211,2.8
+14865,2023,11,6,16,30,10,1.43,0.028,0.61,27,506,75,7,8,-6.1,47,20,100,49,0.248,31.77,84.58,0.92,0.11,785,0.8,208,2.6
+14866,2023,11,6,17,0,8.1,1.37,0.027,0.61,10,135,11,4,7,-6,6,1,57,6,0.249,36.19,89.54,0.92,0.11,784,0.8,204,2.3
+14867,2023,11,6,17,30,7.7,1.37,0.027,0.61,0,0,0,0,7,-6,0,0,0,0,0.249,37.19,95.3,0.92,0.11,784,0.8,203,2.5
+14868,2023,11,6,18,0,7.3,1.37,0.03,0.61,0,0,0,0,7,-6.6,0,0,0,0,0.249,36.55,100.82,0.92,0.11,784,0.8,202,2.7
+14869,2023,11,6,18,30,7.2,1.37,0.03,0.61,0,0,0,0,3,-6.6,0,0,0,0,0.25,36.8,106.44,0.91,0.11,784,0.8,204,3
+14870,2023,11,6,19,0,7.1,1.49,0.044,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.25,35.33,112.12,0.91,0.11,784,0.8,205,3.3
+14871,2023,11,6,19,30,7.1,1.49,0.044,0.61,0,0,0,0,5,-7.2,0,0,0,0,0.25,35.33,117.82,0.9,0.11,784,0.8,208,3.6
+14872,2023,11,6,20,0,7.2,1.65,0.066,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.25,33.24,123.5,0.9,0.11,784,0.8,212,3.9
+14873,2023,11,6,20,30,7.3,1.65,0.066,0.61,0,0,0,0,5,-7.9,0,0,0,0,0.251,33.02,129.11,0.9,0.11,784,0.8,216,4.1
+14874,2023,11,6,21,0,7.4,1.7,0.077,0.61,0,0,0,0,5,-8.7,0,0,0,0,0.251,30.89,134.59,0.9,0.11,784,0.8,220,4.3
+14875,2023,11,6,21,30,7.2,1.7,0.077,0.61,0,0,0,0,0,-8.7,0,0,0,0,0.251,31.31,139.85,0.9,0.11,784,0.8,222,4.2
+14876,2023,11,6,22,0,7,1.59,0.066,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.251,30.79,144.76,0.9,0.11,784,0.8,225,4
+14877,2023,11,6,22,30,6.6,1.59,0.066,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.251,31.64,149.11,0.9,0.11,784,0.8,227,3.7
+14878,2023,11,6,23,0,6.2,1.4,0.052,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.251,33.1,152.63,0.91,0.11,784,0.8,228,3.4
+14879,2023,11,6,23,30,5.8,1.4,0.052,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.252,34.03,154.94,0.91,0.11,784,0.8,227,3
+14880,2023,11,7,0,0,5.3,1.26,0.047,0.61,0,0,0,0,5,-8,0,0,0,0,0.252,37.54,155.67,0.91,0.11,784,0.8,225,2.6
+14881,2023,11,7,0,30,5,1.26,0.047,0.61,0,0,0,0,0,-8,0,0,0,0,0.252,38.33,154.71,0.91,0.11,784,0.8,221,2.5
+14882,2023,11,7,1,0,4.7,1.18,0.045,0.61,0,0,0,0,0,-7.3,0,0,0,0,0.252,41.35,152.21,0.91,0.11,784,0.8,218,2.3
+14883,2023,11,7,1,30,4.4,1.18,0.045,0.61,0,0,0,0,0,-7.3,0,0,0,0,0.252,42.22,148.56,0.91,0.11,784,0.9,216,2.2
+14884,2023,11,7,2,0,4.2,1.13,0.044,0.61,0,0,0,0,8,-7,0,0,0,0,0.252,44.07,144.12,0.92,0.11,784,0.9,215,2.1
+14885,2023,11,7,2,30,3.9,1.13,0.044,0.61,0,0,0,0,0,-7,0,0,0,0,0.252,45.01,139.16,0.92,0.11,784,0.9,214,2
+14886,2023,11,7,3,0,3.7,1.1,0.043,0.61,0,0,0,0,0,-6.7,0,0,0,0,0.252,46.63,133.87,0.92,0.11,784,0.9,213,2
+14887,2023,11,7,3,30,3.5,1.1,0.043,0.61,0,0,0,0,5,-6.7,0,0,0,0,0.253,47.29,128.37,0.92,0.11,784,0.9,213,1.9
+14888,2023,11,7,4,0,3.4,1.09,0.042,0.61,0,0,0,0,5,-6.4,0,0,0,0,0.253,48.82,122.75,0.93,0.11,784,0.9,213,1.8
+14889,2023,11,7,4,30,3.3,1.09,0.042,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.253,49.17,117.06,0.93,0.11,784,0.9,214,1.7
+14890,2023,11,7,5,0,3.3,1.12,0.043,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.253,51.1,111.37,0.93,0.11,785,0.9,215,1.6
+14891,2023,11,7,5,30,3.2,1.12,0.043,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.253,51.46,105.71,0.93,0.11,785,1,218,1.5
+14892,2023,11,7,6,0,3.2,1.13,0.046,0.61,0,0,0,0,7,-5.3,0,0,0,0,0.254,53.58,100.11,0.94,0.11,785,1,221,1.3
+14893,2023,11,7,6,30,3.3,1.13,0.046,0.61,0,0,0,0,7,-5.3,0,0,0,0,0.254,53.21,94.61,0.94,0.11,785,1,225,1.2
+14894,2023,11,7,7,0,3.4,1.15,0.052,0.61,14,136,16,5,7,-4.7,5,0,71,5,0.254,55.45,88.95,0.94,0.11,785,1,230,1
+14895,2023,11,7,7,30,4.1,1.15,0.052,0.61,33,447,80,5,7,-4.7,18,0,71,18,0.254,52.86,83.98,0.95,0.11,786,1,227,1.1
+14896,2023,11,7,8,0,4.8,1.16,0.057,0.61,46,620,163,0,7,-4,9,0,0,9,0.254,52.95,79.1,0.95,0.11,786,1,224,1.1
+14897,2023,11,7,8,30,5.6,1.16,0.057,0.61,54,728,249,0,7,-4,12,0,0,12,0.255,50.09,74.49,0.95,0.11,786,1,226,1.4
+14898,2023,11,7,9,0,6.3,1.18,0.058,0.61,61,797,331,0,7,-4.2,59,1,0,59,0.255,47.16,70.23,0.95,0.11,786,1,227,1.6
+14899,2023,11,7,9,30,7.4,1.18,0.058,0.61,65,850,405,0,7,-4.2,167,47,0,186,0.255,43.73,66.4,0.95,0.11,786,1,225,2.3
+14900,2023,11,7,10,0,8.5,1.21,0.052,0.61,67,889,469,0,7,-4.1,227,179,0,308,0.256,40.7,63.1,0.94,0.11,786,1,222,2.9
+14901,2023,11,7,10,30,9.7,1.21,0.052,0.61,66,921,521,0,7,-4.1,246,132,0,311,0.256,37.5,60.42,0.94,0.11,785,0.9,224,3.8
+14902,2023,11,7,11,0,10.8,1.31,0.037,0.61,64,948,560,0,7,-4.6,251,170,0,340,0.256,33.6,58.44,0.94,0.11,785,0.9,226,4.6
+14903,2023,11,7,11,30,11.7,1.31,0.037,0.61,64,958,582,0,8,-4.6,224,405,0,443,0.255,31.66,57.25,0.93,0.11,785,0.9,228,5.2
+14904,2023,11,7,12,0,12.6,1.35,0.034,0.61,64,962,589,0,8,-5,204,476,0,464,0.254,29.02,56.89,0.93,0.11,784,0.9,230,5.9
+14905,2023,11,7,12,30,12.9,1.35,0.034,0.61,63,960,581,0,8,-5,220,111,0,280,0.254,28.45,57.38,0.94,0.11,784,0.9,232,6.2
+14906,2023,11,7,13,0,13.2,1.36,0.035,0.61,61,952,556,0,8,-4.9,215,174,0,305,0.253,28.09,58.7,0.94,0.11,784,0.9,235,6.6
+14907,2023,11,7,13,30,13,1.36,0.035,0.61,61,936,518,0,8,-4.9,225,139,0,293,0.253,28.46,60.79,0.94,0.11,784,0.9,239,6.5
+14908,2023,11,7,14,0,12.9,1.4,0.035,0.61,58,914,465,0,8,-4.4,186,333,7,334,0.252,29.81,63.58,0.95,0.11,784,0.9,243,6.5
+14909,2023,11,7,14,30,12.4,1.4,0.035,0.61,57,877,400,0,0,-4.4,89,734,7,376,0.252,30.8,66.97,0.95,0.11,784,0.9,250,6
+14910,2023,11,7,15,0,11.9,1.34,0.041,0.61,53,823,323,0,8,-3.4,139,371,0,261,0.252,34.21,70.87,0.96,0.11,784,0.9,257,5.5
+14911,2023,11,7,15,30,10.9,1.34,0.041,0.61,50,740,239,0,7,-3.4,121,260,0,187,0.252,36.54,75.19,0.96,0.11,784,1,275,4.7
+14912,2023,11,7,16,0,9.8,1.26,0.052,0.61,42,611,150,1,7,-2.1,84,147,14,110,0.252,43.39,79.86,0.97,0.11,784,1,293,3.8
+14913,2023,11,7,16,30,8.1,1.26,0.052,0.61,31,394,67,7,7,-2.1,46,20,100,48,0.252,48.72,84.77,0.97,0.11,785,1,317,3.9
+14914,2023,11,7,17,0,6.4,1.21,0.073,0.61,9,73,9,4,5,-0.8,5,0,57,5,0.252,59.99,89.71,0.97,0.11,785,1.1,341,3.9
+14915,2023,11,7,17,30,5.2,1.21,0.073,0.61,0,0,0,0,5,-0.8,0,0,0,0,0.253,65.26,95.48,0.97,0.11,786,1.1,172,4.6
+14916,2023,11,7,18,0,4,1.21,0.079,0.61,0,0,0,0,5,-0.7,0,0,0,0,0.253,71.5,100.99,0.97,0.11,786,1.1,3,5.3
+14917,2023,11,7,18,30,3.2,1.21,0.079,0.61,0,0,0,0,5,-0.7,0,0,0,0,0.254,75.64,106.61,0.97,0.11,786,1,8,5.1
+14918,2023,11,7,19,0,2.4,1.21,0.072,0.61,0,0,0,0,7,-1.2,0,0,0,0,0.255,77.07,112.29,0.97,0.11,787,1,14,5
+14919,2023,11,7,19,30,2,1.21,0.072,0.61,0,0,0,0,7,-1.2,0,0,0,0,0.257,79.29,117.99,0.97,0.11,787,1,17,4.6
+14920,2023,11,7,20,0,1.7,1.2,0.071,0.61,0,0,0,0,7,-1.8,0,0,0,0,0.258,77.49,123.67,0.97,0.11,787,1,21,4.1
+14921,2023,11,7,20,30,1.4,1.2,0.071,0.61,0,0,0,0,4,-1.8,0,0,0,0,0.26,79.17,129.29,0.97,0.11,787,0.9,20,3.7
+14922,2023,11,7,21,0,1.2,1.19,0.067,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.261,78.82,134.78,0.97,0.11,787,0.9,20,3.2
+14923,2023,11,7,21,30,1,1.19,0.067,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.263,79.96,140.05,0.97,0.11,787,0.9,15,2.9
+14924,2023,11,7,22,0,0.8,1.18,0.064,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.265,81.09,144.97,0.97,0.11,787,0.9,11,2.6
+14925,2023,11,7,22,30,0.5,1.18,0.064,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.266,82.86,149.35,0.97,0.11,787,0.9,6,2.4
+14926,2023,11,7,23,0,0.3,1.17,0.061,0.61,0,0,0,0,4,-2,0,0,0,0,0.267,84.53,152.89,0.97,0.11,787,0.9,0,2.2
+14927,2023,11,7,23,30,0.1,1.17,0.061,0.61,0,0,0,0,4,-2,0,0,0,0,0.268,85.76,155.22,0.97,0.11,787,0.9,175,2.3
+14928,2023,11,8,0,0,0,1.16,0.057,0.61,0,0,0,0,4,-2,0,0,0,0,0.268,86.69,155.97,0.97,0.11,787,0.9,350,2.3
+14929,2023,11,8,0,30,-0.2,1.16,0.057,0.61,0,0,0,0,4,-2,0,0,0,0,0.269,87.96,154.99,0.97,0.11,787,0.9,346,2.4
+14930,2023,11,8,1,0,-0.3,1.15,0.055,0.61,0,0,0,0,4,-1.9,0,0,0,0,0.269,89.22,152.48,0.97,0.11,788,0.8,341,2.5
+14931,2023,11,8,1,30,-0.3,1.15,0.055,0.61,0,0,0,0,4,-1.9,0,0,0,0,0.27,89.22,148.81,0.96,0.11,788,0.8,337,2.6
+14932,2023,11,8,2,0,-0.4,1.16,0.051,0.61,0,0,0,0,4,-1.9,0,0,0,0,0.27,89.51,144.35,0.96,0.11,788,0.8,332,2.8
+14933,2023,11,8,2,30,-0.4,1.16,0.051,0.61,0,0,0,0,5,-1.9,0,0,0,0,0.27,89.51,139.37,0.96,0.11,788,0.8,330,2.8
+14934,2023,11,8,3,0,-0.5,1.19,0.044,0.61,0,0,0,0,5,-2.2,0,0,0,0,0.27,88.42,134.07,0.96,0.11,788,0.8,328,2.8
+14935,2023,11,8,3,30,-0.5,1.19,0.044,0.61,0,0,0,0,5,-2.2,0,0,0,0,0.271,88.53,128.56,0.95,0.11,789,0.8,329,2.7
+14936,2023,11,8,4,0,-0.6,1.22,0.036,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.271,86.19,122.94,0.95,0.11,789,0.7,330,2.6
+14937,2023,11,8,4,30,-0.8,1.22,0.036,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.272,87.45,117.25,0.95,0.11,789,0.7,333,2.5
+14938,2023,11,8,5,0,-1.1,1.24,0.032,0.61,0,0,0,0,8,-3.2,0,0,0,0,0.273,85.32,111.56,0.94,0.11,789,0.7,335,2.5
+14939,2023,11,8,5,30,-1.4,1.24,0.032,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.274,87.33,105.9,0.94,0.11,790,0.7,336,2.6
+14940,2023,11,8,6,0,-1.7,1.28,0.029,0.61,0,0,0,0,7,-3.9,0,0,0,0,0.274,85.25,100.31,0.94,0.11,790,0.6,338,2.6
+14941,2023,11,8,6,30,-1.9,1.28,0.029,0.61,0,0,0,0,7,-3.9,0,0,0,0,0.274,86.51,94.82,0.94,0.11,790,0.6,341,2.9
+14942,2023,11,8,7,0,-2,1.32,0.027,0.61,12,152,14,5,7,-4.4,5,0,71,5,0.274,83.52,89.13,0.93,0.11,791,0.6,345,3.3
+14943,2023,11,8,7,30,-1.3,1.32,0.027,0.61,28,538,82,6,8,-4.4,36,5,86,37,0.274,79.33,84.2,0.93,0.11,791,0.6,348,3.8
+14944,2023,11,8,8,0,-0.6,1.34,0.025,0.61,37,712,169,0,7,-4.6,90,58,0,101,0.273,74.29,79.33,0.93,0.11,792,0.6,352,4.2
+14945,2023,11,8,8,30,0.6,1.34,0.025,0.61,43,812,257,0,5,-4.6,140,104,0,167,0.273,68.1,74.72,0.93,0.11,792,0.6,178,4.4
+14946,2023,11,8,9,0,1.7,1.36,0.023,0.61,47,879,341,0,5,-5.4,186,53,4,204,0.272,59.48,70.47,0.92,0.11,792,0.6,3,4.6
+14947,2023,11,8,9,30,2.7,1.36,0.023,0.61,50,924,416,0,0,-5.4,150,496,0,347,0.271,55.39,66.66,0.92,0.11,792,0.6,10,4.5
+14948,2023,11,8,10,0,3.7,1.37,0.021,0.61,52,956,481,0,0,-6.6,52,956,0,481,0.271,46.89,63.37,0.92,0.11,792,0.6,17,4.3
+14949,2023,11,8,10,30,4.2,1.37,0.021,0.61,54,976,532,0,0,-6.6,85,847,0,500,0.271,45.28,60.7,0.92,0.11,792,0.5,20,4.1
+14950,2023,11,8,11,0,4.6,1.32,0.023,0.61,57,988,570,0,0,-7.3,165,564,0,458,0.271,41.63,58.73,0.92,0.11,792,0.5,23,3.9
+14951,2023,11,8,11,30,4.9,1.32,0.023,0.61,57,996,592,0,0,-7.3,149,698,0,524,0.271,40.77,57.54,0.92,0.11,792,0.5,23,3.8
+14952,2023,11,8,12,0,5.2,1.29,0.024,0.61,58,998,599,0,0,-7.8,58,998,0,599,0.272,38.57,57.18,0.92,0.11,792,0.5,24,3.7
+14953,2023,11,8,12,30,5.4,1.29,0.024,0.61,58,995,590,0,0,-7.8,58,995,0,590,0.272,38.04,57.67,0.92,0.11,792,0.5,23,3.7
+14954,2023,11,8,13,0,5.6,1.27,0.024,0.61,56,987,565,0,0,-8.1,66,958,0,560,0.272,36.53,58.98,0.92,0.11,792,0.5,22,3.6
+14955,2023,11,8,13,30,5.6,1.27,0.024,0.61,56,971,526,0,0,-8.1,73,914,0,515,0.273,36.53,61.06,0.92,0.11,792,0.5,19,3.6
+14956,2023,11,8,14,0,5.6,1.17,0.027,0.61,56,946,473,0,0,-8.6,62,914,0,465,0.273,35.35,63.83,0.92,0.11,792,0.5,16,3.5
+14957,2023,11,8,14,30,5.5,1.17,0.027,0.61,52,918,408,0,0,-8.5,118,567,0,338,0.274,35.64,67.21,0.92,0.11,793,0.5,12,3.5
+14958,2023,11,8,15,0,5.4,1.16,0.026,0.61,48,879,333,0,4,-9.1,82,20,0,88,0.275,34.25,71.1,0.91,0.11,793,0.4,9,3.5
+14959,2023,11,8,15,30,4.8,1.16,0.026,0.61,43,815,248,0,4,-9.1,70,99,7,95,0.276,35.7,75.41,0.91,0.11,793,0.4,5,3.1
+14960,2023,11,8,16,0,4.2,1.15,0.025,0.61,36,708,158,0,4,-9.2,22,214,0,59,0.276,36.95,80.06,0.91,0.11,793,0.4,2,2.7
+14961,2023,11,8,16,30,2.3,1.15,0.025,0.61,26,518,72,2,0,-9.2,31,366,32,63,0.277,42.25,84.96,0.91,0.11,793,0.4,179,2
+14962,2023,11,8,17,0,0.4,1.14,0.026,0.61,8,98,8,1,0,-8.4,6,49,14,6,0.277,51.82,89.85,0.9,0.11,794,0.4,355,1.3
+14963,2023,11,8,17,30,-0.3,1.14,0.026,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.278,54.51,95.65,0.9,0.11,794,0.4,354,1.4
+14964,2023,11,8,18,0,-1,1.12,0.026,0.61,0,0,0,0,0,-9,0,0,0,0,0.278,54.51,101.17,0.9,0.11,794,0.4,352,1.4
+14965,2023,11,8,18,30,-1.5,1.12,0.026,0.61,0,0,0,0,0,-9,0,0,0,0,0.279,56.54,106.78,0.9,0.11,794,0.3,351,1.4
+14966,2023,11,8,19,0,-2,1.08,0.027,0.61,0,0,0,0,0,-9.5,0,0,0,0,0.28,56.54,112.45,0.9,0.11,794,0.3,350,1.4
+14967,2023,11,8,19,30,-2.5,1.08,0.027,0.61,0,0,0,0,0,-9.5,0,0,0,0,0.281,58.74,118.15,0.9,0.11,795,0.3,350,1.4
+14968,2023,11,8,20,0,-2.9,1.04,0.028,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.281,58.74,123.84,0.9,0.11,795,0.3,350,1.4
+14969,2023,11,8,20,30,-3.3,1.04,0.028,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.282,60.51,129.46,0.9,0.11,795,0.3,350,1.3
+14970,2023,11,8,21,0,-3.7,0.99,0.03,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.283,60.74,134.96,0.9,0.11,795,0.3,351,1.3
+14971,2023,11,8,21,30,-4.1,0.99,0.03,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.284,62.59,140.24,0.9,0.11,795,0.3,350,1.3
+14972,2023,11,8,22,0,-4.4,0.95,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.285,63.06,145.18,0.9,0.11,795,0.3,350,1.3
+14973,2023,11,8,22,30,-4.8,0.95,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.286,64.99,149.58,0.9,0.11,795,0.3,350,1.3
+14974,2023,11,8,23,0,-5.1,0.93,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.287,66.13,153.15,0.9,0.11,795,0.3,350,1.4
+14975,2023,11,8,23,30,-5.4,0.93,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.289,67.65,155.5,0.9,0.11,795,0.3,352,1.4
+14976,2023,11,9,0,0,-5.7,0.93,0.031,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,69.08,156.26,0.9,0.11,795,0.3,353,1.3
+14977,2023,11,9,0,30,-6,0.93,0.031,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,70.76,155.28,0.9,0.11,796,0.3,354,1.3
+14978,2023,11,9,1,0,-6.2,0.93,0.03,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,71.72,152.75,0.9,0.11,796,0.3,356,1.3
+14979,2023,11,9,1,30,-6.4,0.93,0.03,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,72.83,149.05,0.9,0.11,796,0.3,178,1.2
+14980,2023,11,9,2,0,-6.5,0.92,0.029,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,73.23,144.57,0.9,0.11,796,0.3,0,1.2
+14981,2023,11,9,2,30,-6.6,0.92,0.029,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,73.79,139.58,0.9,0.11,796,0.3,2,1.1
+14982,2023,11,9,3,0,-6.7,0.91,0.028,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,74.33,134.27,0.9,0.11,796,0.3,3,1.1
+14983,2023,11,9,3,30,-6.7,0.91,0.028,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.33,128.76,0.9,0.11,796,0.3,4,1.1
+14984,2023,11,9,4,0,-6.8,0.9,0.026,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.95,123.13,0.89,0.11,796,0.3,6,1
+14985,2023,11,9,4,30,-6.8,0.9,0.026,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.95,117.44,0.89,0.11,796,0.3,8,1
+14986,2023,11,9,5,0,-6.8,0.89,0.025,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.94,111.75,0.89,0.11,796,0.3,10,0.9
+14987,2023,11,9,5,30,-6.8,0.89,0.025,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.94,106.09,0.89,0.11,796,0.3,13,0.9
+14988,2023,11,9,6,0,-6.9,0.89,0.024,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,75.51,100.5,0.89,0.11,796,0.3,16,0.9
+14989,2023,11,9,6,30,-6.5,0.89,0.024,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.289,73.23,95.02,0.89,0.11,796,0.3,20,0.9
+14990,2023,11,9,7,0,-6.1,0.89,0.023,0.61,11,158,13,0,0,-10.5,11,158,0,13,0.289,71.26,89.32,0.89,0.11,796,0.3,23,0.9
+14991,2023,11,9,7,30,-4.6,0.89,0.023,0.61,27,561,82,0,0,-10.5,27,561,0,82,0.289,63.6,84.41,0.89,0.11,796,0.3,22,1.6
+14992,2023,11,9,8,0,-3,0.91,0.023,0.61,36,738,170,0,0,-10.7,36,738,0,170,0.288,55.38,79.55,0.89,0.11,797,0.3,22,2.3
+14993,2023,11,9,8,30,-1.5,0.91,0.023,0.61,43,838,260,0,0,-10.7,43,838,0,260,0.288,49.57,74.96,0.89,0.11,797,0.3,19,2.8
+14994,2023,11,9,9,0,-0.1,0.93,0.023,0.61,47,902,345,0,0,-12.4,47,902,0,345,0.287,39.04,70.72,0.89,0.11,797,0.3,16,3.3
+14995,2023,11,9,9,30,0.8,0.93,0.023,0.61,51,944,421,0,0,-12.4,51,944,0,421,0.287,36.59,66.92,0.9,0.11,797,0.3,19,3.3
+14996,2023,11,9,10,0,1.6,0.95,0.023,0.61,54,973,486,0,0,-13.2,54,973,0,486,0.286,32.35,63.64,0.9,0.11,797,0.3,21,3.3
+14997,2023,11,9,10,30,2.2,0.95,0.023,0.61,55,995,538,0,0,-13.2,55,995,0,538,0.286,30.96,60.97,0.89,0.11,796,0.3,23,3.2
+14998,2023,11,9,11,0,2.8,1.11,0.02,0.61,55,1010,575,0,0,-13.5,55,1010,0,575,0.286,29.11,59.01,0.89,0.11,796,0.3,24,3
+14999,2023,11,9,11,30,3.3,1.11,0.02,0.61,56,1018,598,0,0,-13.5,56,1018,0,598,0.287,28.1,57.83,0.89,0.11,796,0.3,24,2.9
+15000,2023,11,9,12,0,3.7,1.14,0.021,0.61,56,1020,604,0,0,-13.6,56,1020,0,604,0.287,27.01,57.47,0.89,0.11,795,0.3,24,2.8
+15001,2023,11,9,12,30,4,1.14,0.021,0.61,55,1017,595,0,0,-13.6,55,1017,0,595,0.288,26.45,57.95,0.89,0.11,795,0.3,22,2.7
+15002,2023,11,9,13,0,4.3,1.17,0.021,0.61,55,1009,571,0,0,-13.7,55,1009,0,571,0.288,25.75,59.25,0.89,0.11,795,0.3,20,2.6
+15003,2023,11,9,13,30,4.3,1.17,0.021,0.61,53,997,531,0,0,-13.7,53,997,0,531,0.288,25.71,61.32,0.89,0.11,794,0.3,20,2.6
+15004,2023,11,9,14,0,4.4,1.24,0.019,0.61,51,978,478,0,0,-13.8,51,978,0,478,0.287,25.4,64.08,0.89,0.11,794,0.3,20,2.5
+15005,2023,11,9,14,30,4.2,1.24,0.019,0.61,47,949,411,0,0,-13.8,47,949,0,411,0.287,25.75,67.45,0.89,0.11,794,0.3,23,2.4
+15006,2023,11,9,15,0,4,1.24,0.018,0.61,44,905,334,0,0,-13.8,44,905,0,334,0.287,25.92,71.32,0.89,0.11,794,0.3,25,2.4
+15007,2023,11,9,15,30,3,1.24,0.018,0.61,39,841,248,0,0,-13.8,39,841,0,248,0.287,27.81,75.62,0.89,0.11,794,0.3,33,1.8
+15008,2023,11,9,16,0,2,1.22,0.018,0.61,33,738,158,0,0,-11.5,33,738,0,158,0.286,36.22,80.25,0.89,0.11,794,0.3,40,1.3
+15009,2023,11,9,16,30,0.3,1.22,0.018,0.61,24,553,71,0,0,-11.5,24,553,0,71,0.287,40.92,85.14,0.89,0.11,794,0.3,57,1.2
+15010,2023,11,9,17,0,-1.5,1.21,0.017,0.61,8,110,8,0,0,-12.3,8,110,0,8,0.288,43.54,90.01,0.88,0.11,794,0.3,74,1.2
+15011,2023,11,9,17,30,-2,1.21,0.017,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.288,45.17,95.83,0.88,0.11,794,0.3,84,1.2
+15012,2023,11,9,18,0,-2.6,1.21,0.016,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,44.97,101.33,0.88,0.11,794,0.3,93,1.2
+15013,2023,11,9,18,30,-3,1.21,0.016,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,46.33,106.94,0.88,0.11,794,0.3,100,1.2
+15014,2023,11,9,19,0,-3.4,1.21,0.016,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.289,46.71,112.61,0.88,0.11,795,0.3,108,1.2
+15015,2023,11,9,19,30,-3.6,1.21,0.016,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.289,47.41,118.31,0.88,0.11,795,0.3,114,1.2
+15016,2023,11,9,20,0,-3.8,1.21,0.015,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.289,47.33,124,0.88,0.11,795,0.2,121,1.1
+15017,2023,11,9,20,30,-3.8,1.21,0.015,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.29,47.27,129.62,0.88,0.11,794,0.2,130,1.1
+15018,2023,11,9,21,0,-3.9,1.21,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.29,47.26,135.13,0.88,0.11,794,0.2,139,1
+15019,2023,11,9,21,30,-3.9,1.21,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.29,47.26,140.43,0.88,0.11,794,0.2,150,0.9
+15020,2023,11,9,22,0,-4,1.21,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.291,47.36,145.38,0.88,0.11,794,0.2,161,0.9
+15021,2023,11,9,22,30,-4.1,1.21,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.291,47.71,149.8,0.88,0.11,794,0.2,171,0.8
+15022,2023,11,9,23,0,-4.2,1.21,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.292,47.82,153.4,0.88,0.11,794,0.2,182,0.8
+15023,2023,11,9,23,30,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.292,48.19,155.77,0.88,0.11,794,0.2,189,0.8
+15024,2023,11,10,0,0,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.7,0,0,0,0,0.292,47.94,156.54,0.88,0.11,794,0.2,196,0.8
+15025,2023,11,10,0,30,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.7,0,0,0,0,0.293,47.94,155.56,0.88,0.11,794,0.2,202,0.8
+15026,2023,11,10,1,0,-4.3,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.67,153.01,0.88,0.11,793,0.2,209,0.8
+15027,2023,11,10,1,30,-4.2,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.32,149.3,0.88,0.11,793,0.2,214,0.7
+15028,2023,11,10,2,0,-4.2,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.25,144.8,0.88,0.11,793,0.2,219,0.7
+15029,2023,11,10,2,30,-4.1,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.9,139.8,0.88,0.11,793,0.2,219,0.7
+15030,2023,11,10,3,0,-4.1,1.19,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.87,134.47,0.88,0.11,793,0.2,219,0.6
+15031,2023,11,10,3,30,-4,1.19,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.52,128.95,0.89,0.11,793,0.2,214,0.6
+15032,2023,11,10,4,0,-3.9,1.18,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.15,123.32,0.89,0.11,793,0.2,209,0.6
+15033,2023,11,10,4,30,-3.9,1.18,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.15,117.63,0.89,0.11,793,0.2,201,0.6
+15034,2023,11,10,5,0,-3.9,1.17,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.17,111.94,0.89,0.11,793,0.2,193,0.6
+15035,2023,11,10,5,30,-4,1.17,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.295,46.51,106.29,0.89,0.11,793,0.2,189,0.7
+15036,2023,11,10,6,0,-4.1,1.16,0.015,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.295,46.88,100.7,0.89,0.11,793,0.2,185,0.7
+15037,2023,11,10,6,30,-4,1.16,0.015,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.296,46.53,95.22,0.89,0.11,793,0.2,185,0.7
+15038,2023,11,10,7,0,-3.9,1.15,0.016,0.61,11,177,13,0,0,-13.3,10,143,7,11,0.296,48.2,89.5,0.89,0.11,793,0.2,184,0.7
+15039,2023,11,10,7,30,-2.7,1.15,0.016,0.61,25,600,81,2,0,-13.3,33,400,36,71,0.296,44.08,84.62,0.9,0.11,793,0.2,190,1
+15040,2023,11,10,8,0,-1.4,1.13,0.017,0.61,33,770,170,0,0,-13.4,33,770,0,170,0.297,39.64,79.78,0.9,0.11,794,0.2,195,1.2
+15041,2023,11,10,8,30,0.1,1.13,0.017,0.61,40,866,261,0,0,-13.4,55,752,0,247,0.298,35.54,75.19,0.9,0.11,794,0.2,205,1.7
+15042,2023,11,10,9,0,1.5,1.12,0.018,0.61,44,925,346,0,0,-14.1,44,925,0,346,0.299,30.22,70.97,0.9,0.11,794,0.2,216,2.1
+15043,2023,11,10,9,30,2.6,1.12,0.018,0.61,49,965,423,0,0,-14.1,49,965,0,423,0.301,27.94,67.17,0.91,0.11,794,0.2,219,2.5
+15044,2023,11,10,10,0,3.8,1.11,0.02,0.61,51,993,488,0,0,-15.3,112,750,0,442,0.303,23.41,63.9,0.91,0.11,794,0.2,223,2.8
+15045,2023,11,10,10,30,4.4,1.11,0.02,0.61,53,1012,540,0,0,-15.3,141,704,0,480,0.306,22.42,61.25,0.91,0.11,793,0.2,225,3
+15046,2023,11,10,11,0,5,1.12,0.021,0.61,56,1023,578,0,0,-15.8,129,789,0,532,0.308,20.56,59.29,0.91,0.11,793,0.2,227,3.2
+15047,2023,11,10,11,30,5.3,1.12,0.021,0.61,57,1030,601,0,8,-15.8,153,694,0,520,0.309,20.13,58.11,0.92,0.11,793,0.2,230,3.4
+15048,2023,11,10,12,0,5.6,1.11,0.022,0.61,57,1028,606,0,7,-16.2,163,661,0,516,0.31,19.13,57.75,0.92,0.11,793,0.2,233,3.5
+15049,2023,11,10,12,30,5.6,1.11,0.022,0.61,58,1020,595,0,7,-16.2,159,673,0,513,0.31,19.1,58.23,0.92,0.11,792,0.3,235,3.5
+15050,2023,11,10,13,0,5.6,1.12,0.024,0.61,57,1005,567,0,7,-16.5,165,628,0,484,0.311,18.65,59.52,0.92,0.11,792,0.3,238,3.6
+15051,2023,11,10,13,30,5.5,1.12,0.024,0.61,56,988,526,0,7,-16.5,109,798,0,489,0.311,18.78,61.58,0.93,0.11,792,0.3,239,3.5
+15052,2023,11,10,14,0,5.3,1.15,0.025,0.61,54,965,472,0,0,-16.6,80,863,0,454,0.311,18.83,64.33,0.93,0.11,792,0.3,241,3.4
+15053,2023,11,10,14,30,4.9,1.15,0.025,0.61,52,933,406,0,0,-16.6,52,933,0,406,0.312,19.36,67.68,0.93,0.11,792,0.3,240,3
+15054,2023,11,10,15,0,4.5,1.17,0.026,0.61,48,886,329,0,0,-15.9,59,830,0,322,0.312,21.2,71.54,0.93,0.11,792,0.3,240,2.6
+15055,2023,11,10,15,30,2.9,1.17,0.026,0.61,43,817,243,0,0,-15.9,55,737,14,236,0.312,23.72,75.82,0.93,0.11,792,0.3,236,1.8
+15056,2023,11,10,16,0,1.3,1.18,0.026,0.61,36,707,153,2,8,-11.8,67,412,39,135,0.312,36.91,80.45,0.93,0.11,792,0.3,232,1
+15057,2023,11,10,16,30,0.3,1.18,0.026,0.61,25,510,67,7,7,-11.8,39,12,100,40,0.313,39.67,85.32,0.93,0.11,792,0.3,224,1.1
+15058,2023,11,10,17,0,-0.7,1.19,0.026,0.61,7,94,7,3,7,-14.4,4,0,43,4,0.314,34.72,90.16,0.93,0.11,792,0.3,217,1.1
+15059,2023,11,10,17,30,-0.8,1.19,0.026,0.61,0,0,0,0,7,-14.4,0,0,0,0,0.315,34.98,95.99,0.93,0.11,792,0.3,213,1.1
+15060,2023,11,10,18,0,-0.9,1.2,0.024,0.61,0,0,0,0,7,-15.1,0,0,0,0,0.316,33.09,101.49,0.93,0.11,792,0.3,209,1.1
+15061,2023,11,10,18,30,-1.1,1.2,0.024,0.61,0,0,0,0,7,-15.1,0,0,0,0,0.316,33.58,107.09,0.92,0.11,792,0.3,212,1.1
+15062,2023,11,10,19,0,-1.4,1.21,0.021,0.61,0,0,0,0,7,-15.5,0,0,0,0,0.316,33.38,112.76,0.92,0.11,792,0.3,215,1.1
+15063,2023,11,10,19,30,-1.6,1.21,0.021,0.61,0,0,0,0,7,-15.5,0,0,0,0,0.317,33.92,118.46,0.92,0.11,793,0.3,221,1
+15064,2023,11,10,20,0,-1.9,1.2,0.019,0.61,0,0,0,0,7,-15.7,0,0,0,0,0.317,34,124.15,0.91,0.11,793,0.3,227,1
+15065,2023,11,10,20,30,-2.1,1.2,0.019,0.61,0,0,0,0,7,-15.7,0,0,0,0,0.317,34.51,129.78,0.91,0.11,793,0.3,229,1
+15066,2023,11,10,21,0,-2.3,1.16,0.018,0.61,0,0,0,0,5,-15.7,0,0,0,0,0.317,34.95,135.3,0.91,0.11,793,0.3,231,0.9
+15067,2023,11,10,21,30,-2.4,1.16,0.018,0.61,0,0,0,0,5,-15.7,0,0,0,0,0.317,35.21,140.6,0.91,0.11,793,0.3,228,0.9
+15068,2023,11,10,22,0,-2.6,1.13,0.018,0.61,0,0,0,0,0,-15.7,0,0,0,0,0.317,35.7,145.58,0.91,0.11,793,0.3,225,0.9
+15069,2023,11,10,22,30,-2.8,1.13,0.018,0.61,0,0,0,0,0,-15.7,0,0,0,0,0.317,36.24,150.02,0.9,0.11,793,0.3,220,0.9
+15070,2023,11,10,23,0,-3,1.14,0.016,0.61,0,0,0,0,0,-15.5,0,0,0,0,0.316,37.38,153.64,0.9,0.11,792,0.3,215,1
+15071,2023,11,10,23,30,-3.2,1.14,0.016,0.61,0,0,0,0,0,-15.5,0,0,0,0,0.316,37.94,156.04,0.9,0.11,792,0.3,213,1
+15072,2023,11,11,0,0,-3.3,1.16,0.015,0.61,0,0,0,0,0,-15.4,0,0,0,0,0.316,38.57,156.82,0.9,0.11,792,0.3,210,1
+15073,2023,11,11,0,30,-3.5,1.16,0.015,0.61,0,0,0,0,0,-15.4,0,0,0,0,0.315,39.15,155.83,0.9,0.11,792,0.3,212,1
+15074,2023,11,11,1,0,-3.6,1.15,0.015,0.61,0,0,0,0,0,-15.3,0,0,0,0,0.315,39.81,153.27,0.9,0.11,792,0.3,214,0.9
+15075,2023,11,11,1,30,-3.7,1.15,0.015,0.61,0,0,0,0,0,-15.3,0,0,0,0,0.314,40.11,149.54,0.9,0.11,792,0.3,216,0.9
+15076,2023,11,11,2,0,-3.7,1.15,0.017,0.61,0,0,0,0,0,-15.2,0,0,0,0,0.313,40.41,145.02,0.9,0.11,793,0.3,219,0.9
+15077,2023,11,11,2,30,-3.8,1.15,0.017,0.61,0,0,0,0,0,-15.2,0,0,0,0,0.312,40.71,140.01,0.9,0.11,793,0.3,219,0.8
+15078,2023,11,11,3,0,-3.8,1.17,0.017,0.61,0,0,0,0,0,-15.1,0,0,0,0,0.31,41.11,134.67,0.9,0.11,793,0.3,219,0.8
+15079,2023,11,11,3,30,-3.8,1.17,0.017,0.61,0,0,0,0,0,-15.1,0,0,29,0,0.308,41.11,129.15,0.9,0.11,793,0.3,218,0.8
+15080,2023,11,11,4,0,-3.9,1.19,0.018,0.61,0,0,0,0,0,-15,0,0,14,0,0.307,41.97,123.51,0.91,0.11,793,0.3,217,0.8
+15081,2023,11,11,4,30,-3.9,1.19,0.018,0.61,0,0,0,0,0,-15,0,0,0,0,0.305,41.97,117.82,0.91,0.11,793,0.3,217,0.8
+15082,2023,11,11,5,0,-4,1.22,0.018,0.61,0,0,0,0,0,-14.8,0,0,0,0,0.302,42.83,112.13,0.91,0.11,793,0.3,216,0.8
+15083,2023,11,11,5,30,-4,1.22,0.018,0.61,0,0,0,0,0,-14.8,0,0,0,0,0.301,42.83,106.48,0.91,0.11,793,0.4,215,0.9
+15084,2023,11,11,6,0,-4.1,1.21,0.019,0.61,0,0,0,0,0,-14.6,0,0,0,0,0.299,43.7,100.9,0.91,0.11,793,0.4,214,0.9
+15085,2023,11,11,6,30,-4,1.21,0.019,0.61,0,0,0,0,7,-14.6,0,0,0,0,0.299,43.42,95.42,0.91,0.11,794,0.4,210,0.9
+15086,2023,11,11,7,0,-3.8,1.21,0.019,0.61,10,151,11,4,7,-13.9,6,1,57,6,0.298,45.36,89.69,0.91,0.11,794,0.4,207,1
+15087,2023,11,11,7,30,-2.3,1.21,0.019,0.61,26,548,75,6,7,-13.9,42,11,86,43,0.296,40.57,84.83,0.91,0.11,794,0.4,209,1.5
+15088,2023,11,11,8,0,-0.7,1.21,0.019,0.61,34,728,160,0,7,-14.4,69,13,0,71,0.294,34.8,80,0.91,0.11,794,0.4,211,2
+15089,2023,11,11,8,30,0.8,1.21,0.019,0.61,40,831,249,0,7,-14.3,124,83,0,145,0.292,31.25,75.43,0.91,0.11,795,0.4,217,2.3
+15090,2023,11,11,9,0,2.3,1.22,0.018,0.61,43,896,332,0,7,-15.5,123,467,0,273,0.29,25.42,71.21,0.91,0.11,795,0.4,224,2.6
+15091,2023,11,11,9,30,3.7,1.22,0.018,0.61,47,939,407,0,0,-15.5,91,740,0,375,0.289,23.02,67.43,0.91,0.11,795,0.4,228,2.9
+15092,2023,11,11,10,0,5.1,1.23,0.017,0.61,49,969,471,0,8,-16.4,192,371,0,354,0.287,19.46,64.17,0.91,0.11,795,0.4,232,3.2
+15093,2023,11,11,10,30,5.9,1.23,0.017,0.61,50,989,522,0,8,-16.4,204,381,0,386,0.286,18.41,61.52,0.91,0.11,795,0.4,234,3.4
+15094,2023,11,11,11,0,6.7,1.42,0.014,0.61,49,1003,557,0,0,-16,191,565,0,477,0.285,17.98,59.57,0.9,0.11,795,0.4,236,3.7
+15095,2023,11,11,11,30,7.2,1.42,0.014,0.61,50,1008,578,0,0,-16,57,988,0,575,0.283,17.35,58.39,0.91,0.11,794,0.5,236,3.8
+15096,2023,11,11,12,0,7.7,1.43,0.014,0.61,50,1007,583,0,0,-15.5,110,853,0,562,0.282,17.52,58.02,0.91,0.11,794,0.5,237,4
+15097,2023,11,11,12,30,8,1.43,0.014,0.61,49,1004,574,0,0,-15.5,58,980,0,570,0.281,17.17,58.5,0.91,0.11,794,0.5,238,4
+15098,2023,11,11,13,0,8.2,1.44,0.015,0.61,49,996,550,0,0,-15.1,89,876,0,530,0.28,17.56,59.78,0.91,0.11,794,0.5,238,4
+15099,2023,11,11,13,30,8.2,1.44,0.015,0.61,47,982,511,0,8,-15.1,96,814,0,480,0.279,17.56,61.83,0.91,0.11,794,0.5,237,4
+15100,2023,11,11,14,0,8.3,1.45,0.014,0.61,46,962,459,0,7,-14.7,134,604,0,393,0.279,17.97,64.57,0.91,0.11,794,0.5,235,3.9
+15101,2023,11,11,14,30,7.9,1.45,0.014,0.61,43,932,394,0,7,-14.7,133,514,0,326,0.278,18.47,67.9,0.91,0.11,794,0.5,230,3.5
+15102,2023,11,11,15,0,7.5,1.47,0.014,0.61,41,886,318,0,7,-14,139,313,0,237,0.277,20.09,71.75,0.91,0.11,794,0.5,225,3.2
+15103,2023,11,11,15,30,5.4,1.47,0.014,0.61,37,817,234,0,7,-14,120,215,0,172,0.276,23.21,76.02,0.91,0.11,794,0.6,217,2.3
+15104,2023,11,11,16,0,3.2,1.47,0.015,0.61,31,709,146,2,7,-10.6,85,175,29,113,0.276,35.56,80.63,0.92,0.11,794,0.6,210,1.4
+15105,2023,11,11,16,30,1.3,1.47,0.015,0.61,22,516,63,7,7,-10.6,40,51,96,44,0.276,40.7,85.49,0.91,0.11,794,0.6,206,1.5
+15106,2023,11,11,17,0,-0.6,1.47,0.016,0.61,7,97,6,3,7,-12.4,3,0,43,3,0.276,40.6,90.3,0.91,0.11,794,0.6,203,1.6
+15107,2023,11,11,17,30,-1,1.47,0.016,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.276,41.8,96.15,0.91,0.11,794,0.5,205,1.6
+15108,2023,11,11,18,0,-1.4,1.46,0.019,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.275,41.74,101.64,0.91,0.11,794,0.5,206,1.6
+15109,2023,11,11,18,30,-1.6,1.46,0.019,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.275,42.36,107.24,0.91,0.11,794,0.5,210,1.6
+15110,2023,11,11,19,0,-1.7,1.45,0.023,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.275,42.49,112.91,0.91,0.11,795,0.5,214,1.6
+15111,2023,11,11,19,30,-1.7,1.45,0.023,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.276,42.49,118.6,0.91,0.11,795,0.5,217,1.6
+15112,2023,11,11,20,0,-1.7,1.41,0.028,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.276,42.8,124.3,0.91,0.11,795,0.5,221,1.7
+15113,2023,11,11,20,30,-1.6,1.41,0.028,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.276,42.49,129.93,0.91,0.11,795,0.5,223,1.6
+15114,2023,11,11,21,0,-1.6,1.39,0.032,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.276,42.69,135.45,0.9,0.11,795,0.5,224,1.6
+15115,2023,11,11,21,30,-1.7,1.39,0.032,0.61,0,0,0,0,7,-12.7,0,0,0,0,0.276,43,140.77,0.9,0.11,795,0.5,221,1.6
+15116,2023,11,11,22,0,-1.9,1.42,0.028,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.277,43.08,145.76,0.89,0.11,795,0.5,218,1.5
+15117,2023,11,11,22,30,-2.3,1.42,0.028,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.276,44.37,150.23,0.88,0.11,795,0.4,214,1.5
+15118,2023,11,11,23,0,-2.6,1.46,0.023,0.61,0,0,0,0,7,-13.1,0,0,0,0,0.276,44.4,153.87,0.88,0.11,796,0.4,210,1.5
+15119,2023,11,11,23,30,-2.8,1.46,0.023,0.61,0,0,0,0,7,-13.1,0,0,0,0,0.276,45.07,156.3,0.88,0.11,796,0.4,207,1.5
+15120,2023,11,12,0,0,-3,1.45,0.021,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.275,45.54,157.1,0.88,0.11,796,0.4,203,1.5
+15121,2023,11,12,0,30,-3.1,1.45,0.021,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.274,45.88,156.11,0.88,0.11,796,0.4,202,1.4
+15122,2023,11,12,1,0,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.274,46.49,153.53,0.88,0.11,796,0.4,201,1.4
+15123,2023,11,12,1,30,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.273,46.49,149.78,0.88,0.11,796,0.4,202,1.3
+15124,2023,11,12,2,0,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13,0,0,0,0,0.273,46.92,145.24,0.88,0.11,796,0.4,202,1.2
+15125,2023,11,12,2,30,-3.1,1.44,0.02,0.61,0,0,0,0,0,-13,0,0,0,0,0.273,46.57,140.21,0.88,0.11,796,0.5,202,1.2
+15126,2023,11,12,3,0,-3,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,46.71,134.87,0.88,0.11,797,0.5,203,1.1
+15127,2023,11,12,3,30,-2.9,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,46.36,129.34,0.88,0.11,797,0.5,202,1.1
+15128,2023,11,12,4,0,-2.7,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,45.73,123.7,0.88,0.11,797,0.5,200,1
+15129,2023,11,12,4,30,-2.6,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,45.39,118.01,0.88,0.11,797,0.5,200,0.9
+15130,2023,11,12,5,0,-2.4,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,44.81,112.32,0.88,0.11,797,0.5,199,0.8
+15131,2023,11,12,5,30,-2.3,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.273,44.48,106.67,0.88,0.11,797,0.5,199,0.8
+15132,2023,11,12,6,0,-2.2,1.45,0.019,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.274,44.39,101.09,0.88,0.11,797,0.5,198,0.7
+15133,2023,11,12,6,30,-2.1,1.45,0.019,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.274,44.06,95.62,0.88,0.11,797,0.5,195,0.6
+15134,2023,11,12,7,0,-1.9,1.46,0.018,0.61,8,106,8,0,0,-12.4,8,106,0,8,0.274,44.52,89.87,0.88,0.11,798,0.5,193,0.6
+15135,2023,11,12,7,30,-0.6,1.46,0.018,0.61,24,538,71,0,0,-12.4,24,538,0,71,0.274,40.48,85.04,0.88,0.11,798,0.5,198,0.6
+15136,2023,11,12,8,0,0.7,1.47,0.018,0.61,32,722,155,0,0,-11.1,32,722,0,155,0.274,40.74,80.22,0.88,0.11,798,0.5,204,0.6
+15137,2023,11,12,8,30,2.1,1.47,0.018,0.61,38,826,243,0,0,-11.1,38,826,0,243,0.273,36.85,75.66,0.88,0.11,798,0.5,206,0.8
+15138,2023,11,12,9,0,3.6,1.48,0.017,0.61,43,894,327,0,0,-12.6,43,894,0,327,0.272,29.52,71.45,0.87,0.11,798,0.4,209,0.9
+15139,2023,11,12,9,30,5.3,1.48,0.017,0.61,46,938,402,0,0,-12.6,46,938,0,402,0.272,26.21,67.68,0.87,0.11,798,0.4,203,1.2
+15140,2023,11,12,10,0,7.1,1.47,0.017,0.61,48,969,466,0,0,-12.8,48,969,0,466,0.271,22.76,64.43,0.87,0.11,798,0.4,197,1.5
+15141,2023,11,12,10,30,8.2,1.47,0.017,0.61,49,991,517,0,0,-12.8,49,991,0,517,0.27,21.12,61.79,0.87,0.11,798,0.4,203,1.7
+15142,2023,11,12,11,0,9.4,1.65,0.015,0.61,49,1005,554,0,0,-12.9,49,1005,0,554,0.27,19.39,59.84,0.86,0.11,798,0.4,208,1.8
+15143,2023,11,12,11,30,10.1,1.65,0.015,0.61,49,1013,576,0,0,-12.9,49,1013,0,576,0.269,18.5,58.66,0.86,0.11,798,0.4,212,1.8
+15144,2023,11,12,12,0,10.8,1.66,0.014,0.61,48,1016,582,0,0,-13.2,48,1016,0,582,0.269,17.17,58.3,0.86,0.11,798,0.4,216,1.9
+15145,2023,11,12,12,30,11.2,1.66,0.014,0.61,49,1013,574,0,0,-13.2,49,1013,0,574,0.268,16.7,58.76,0.86,0.11,797,0.4,218,1.8
+15146,2023,11,12,13,0,11.6,1.66,0.014,0.61,48,1005,550,0,0,-13.5,48,1005,0,550,0.268,15.83,60.04,0.86,0.11,797,0.4,219,1.8
+15147,2023,11,12,13,30,11.7,1.66,0.014,0.61,47,991,511,0,0,-13.5,47,991,0,511,0.267,15.72,62.08,0.86,0.11,797,0.4,218,1.6
+15148,2023,11,12,14,0,11.7,1.68,0.015,0.61,45,970,458,0,0,-13.8,45,970,0,458,0.267,15.43,64.8,0.86,0.11,797,0.4,217,1.5
+15149,2023,11,12,14,30,11.3,1.68,0.015,0.61,43,939,393,0,0,-13.8,43,939,0,393,0.267,15.82,68.12,0.86,0.11,796,0.4,218,1.2
+15150,2023,11,12,15,0,10.8,1.68,0.016,0.61,41,894,318,0,0,-11.9,41,894,0,318,0.267,19.07,71.95,0.86,0.11,796,0.4,219,0.9
+15151,2023,11,12,15,30,9.6,1.68,0.016,0.61,37,825,234,0,0,-11.9,37,825,0,234,0.267,20.65,76.21,0.86,0.11,796,0.4,246,0.7
+15152,2023,11,12,16,0,8.3,1.66,0.017,0.61,31,715,145,0,0,-9.7,31,715,0,145,0.267,26.96,80.81,0.86,0.11,796,0.4,274,0.5
+15153,2023,11,12,16,30,7.1,1.66,0.017,0.61,23,519,62,0,0,-9.7,23,519,0,62,0.267,29.25,85.66,0.86,0.11,796,0.4,305,0.6
+15154,2023,11,12,17,0,5.8,1.64,0.018,0.61,8,97,6,0,0,-12.7,8,97,0,6,0.267,25.07,90.96,0.86,0.11,796,0.4,336,0.7
+15155,2023,11,12,17,30,5.2,1.64,0.018,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.267,26.14,96.3,0.86,0.11,796,0.4,174,0.9
+15156,2023,11,12,18,0,4.5,1.62,0.018,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.267,26.51,101.79,0.86,0.11,796,0.4,12,1
+15157,2023,11,12,18,30,3.9,1.62,0.018,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.268,27.65,107.38,0.86,0.11,796,0.4,27,1
+15158,2023,11,12,19,0,3.2,1.6,0.017,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.268,28.99,113.05,0.86,0.11,796,0.4,42,1.1
+15159,2023,11,12,19,30,2.9,1.6,0.017,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.269,29.61,118.74,0.86,0.11,796,0.4,58,1
+15160,2023,11,12,20,0,2.7,1.58,0.017,0.61,0,0,0,0,0,-13,0,0,0,0,0.27,30.32,124.44,0.87,0.11,796,0.4,73,1
+15161,2023,11,12,20,30,2.5,1.58,0.017,0.61,0,0,0,0,0,-13,0,0,0,0,0.27,30.76,130.08,0.87,0.11,796,0.4,97,0.9
+15162,2023,11,12,21,0,2.3,1.55,0.018,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.271,31.61,135.61,0.87,0.11,796,0.4,120,0.9
+15163,2023,11,12,21,30,1.8,1.55,0.018,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.271,32.76,140.94,0.87,0.11,796,0.4,144,1
+15164,2023,11,12,22,0,1.3,1.52,0.019,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.271,34.23,145.94,0.88,0.11,796,0.4,168,1.1
+15165,2023,11,12,22,30,0.8,1.52,0.019,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.271,35.48,150.43,0.88,0.11,796,0.4,177,1.2
+15166,2023,11,12,23,0,0.2,1.5,0.019,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.271,37.25,154.1,0.87,0.11,796,0.4,186,1.4
+15167,2023,11,12,23,30,-0.2,1.5,0.019,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.271,38.34,156.55,0.87,0.11,796,0.4,189,1.5
+15168,2023,11,13,0,0,-0.6,1.5,0.019,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.271,39.94,157.37,0.87,0.11,796,0.4,191,1.6
+15169,2023,11,13,0,30,-0.9,1.5,0.019,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.271,40.82,156.37,0.87,0.11,796,0.4,193,1.7
+15170,2023,11,13,1,0,-1.2,1.49,0.019,0.61,0,0,0,0,7,-12.5,0,0,0,0,0.271,42.03,153.78,0.87,0.11,796,0.4,195,1.7
+15171,2023,11,13,1,30,-1.4,1.49,0.019,0.61,0,0,0,0,7,-12.5,0,0,0,0,0.272,42.65,150.01,0.87,0.11,796,0.4,196,1.7
+15172,2023,11,13,2,0,-1.6,1.48,0.019,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.273,43.64,145.46,0.87,0.11,796,0.4,198,1.6
+15173,2023,11,13,2,30,-1.8,1.48,0.019,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.274,44.29,140.42,0.87,0.11,796,0.4,198,1.6
+15174,2023,11,13,3,0,-2,1.46,0.019,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.276,45.33,135.07,0.87,0.11,796,0.4,199,1.6
+15175,2023,11,13,3,30,-2.1,1.46,0.019,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.277,45.67,129.53,0.87,0.11,796,0.4,199,1.6
+15176,2023,11,13,4,0,-2.3,1.45,0.02,0.61,0,0,0,0,7,-12.2,0,0,0,0,0.278,46.77,123.89,0.87,0.11,796,0.4,199,1.6
+15177,2023,11,13,4,30,-2.4,1.45,0.02,0.61,0,0,0,0,7,-12.2,0,0,0,0,0.28,47.12,118.2,0.87,0.11,796,0.4,198,1.6
+15178,2023,11,13,5,0,-2.5,1.43,0.02,0.61,0,0,0,0,7,-12,0,0,0,0,0.281,47.96,112.51,0.88,0.11,796,0.4,198,1.6
+15179,2023,11,13,5,30,-2.5,1.43,0.02,0.61,0,0,0,0,7,-12,0,0,0,0,0.282,47.96,106.86,0.88,0.11,796,0.4,197,1.6
+15180,2023,11,13,6,0,-2.5,1.41,0.021,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.284,48.28,101.29,0.88,0.11,796,0.4,197,1.6
+15181,2023,11,13,6,30,-2.2,1.41,0.021,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.285,47.22,95.82,0.88,0.11,796,0.4,196,1.6
+15182,2023,11,13,7,0,-1.9,1.38,0.022,0.61,7,100,7,0,0,-11.7,6,73,7,6,0.286,47.11,90.05,0.88,0.11,796,0.4,196,1.6
+15183,2023,11,13,7,30,0,1.38,0.022,0.61,25,522,68,4,7,-11.7,37,210,64,54,0.286,41.01,85.25,0.88,0.11,796,0.4,195,1.8
+15184,2023,11,13,8,0,2,1.37,0.023,0.61,34,711,152,0,0,-10.9,34,711,0,152,0.287,37.88,80.44,0.88,0.11,797,0.4,193,2.1
+15185,2023,11,13,8,30,3.6,1.37,0.023,0.61,41,816,240,0,0,-10.9,41,816,0,240,0.286,33.83,75.89,0.87,0.11,797,0.4,195,2.7
+15186,2023,11,13,9,0,5.2,1.38,0.022,0.61,45,882,322,0,0,-11.4,45,882,0,322,0.286,29.05,71.69,0.87,0.11,797,0.4,196,3.2
+15187,2023,11,13,9,30,7,1.38,0.022,0.61,49,927,397,0,0,-11.4,49,927,0,397,0.284,25.63,67.93,0.87,0.11,796,0.4,203,4.3
+15188,2023,11,13,10,0,8.7,1.39,0.022,0.61,51,958,461,0,0,-11.5,51,958,0,461,0.283,22.72,64.68,0.87,0.11,796,0.4,209,5.3
+15189,2023,11,13,10,30,9.8,1.39,0.022,0.61,52,981,512,0,0,-11.5,52,981,0,512,0.282,21.1,62.05,0.86,0.11,796,0.4,211,5.9
+15190,2023,11,13,11,0,11,1.55,0.02,0.61,52,997,549,0,0,-11,82,909,0,535,0.281,20.18,60.11,0.85,0.11,796,0.4,213,6.6
+15191,2023,11,13,11,30,11.6,1.55,0.02,0.61,53,1004,571,0,0,-11,53,1004,0,571,0.28,19.37,58.93,0.86,0.11,795,0.4,213,6.5
+15192,2023,11,13,12,0,12.2,1.56,0.02,0.61,54,1007,579,0,0,-10.7,54,1007,0,579,0.279,19.12,58.56,0.87,0.11,795,0.4,214,6.5
+15193,2023,11,13,12,30,12.5,1.56,0.02,0.61,53,1004,570,0,0,-10.7,53,1004,0,570,0.277,18.75,59.02,0.88,0.11,795,0.4,214,6.4
+15194,2023,11,13,13,0,12.9,1.56,0.02,0.61,52,994,545,0,7,-10.6,153,634,0,467,0.276,18.46,60.29,0.89,0.11,794,0.4,214,6.3
+15195,2023,11,13,13,30,13,1.56,0.02,0.61,51,982,507,0,7,-10.6,197,417,0,391,0.275,18.34,62.32,0.88,0.11,794,0.4,213,6.1
+15196,2023,11,13,14,0,13,1.61,0.017,0.61,48,965,455,0,7,-10.5,130,633,0,397,0.274,18.5,65.03,0.88,0.11,794,0.4,213,5.8
+15197,2023,11,13,14,30,12.6,1.61,0.017,0.61,45,936,390,0,0,-10.5,79,789,4,370,0.274,18.99,68.34,0.88,0.11,794,0.4,213,5.3
+15198,2023,11,13,15,0,12.2,1.59,0.015,0.61,40,893,314,0,7,-10.2,124,442,4,259,0.273,19.95,72.15,0.88,0.11,793,0.4,213,4.8
+15199,2023,11,13,15,30,10,1.59,0.015,0.61,36,826,230,0,7,-10.2,106,155,0,142,0.273,23.08,76.4,0.89,0.11,793,0.4,215,3.5
+15200,2023,11,13,16,0,7.8,1.55,0.014,0.61,30,718,142,2,6,-8.1,56,8,32,57,0.272,31.54,80.99,0.89,0.11,793,0.4,216,2.2
+15201,2023,11,13,16,30,5.5,1.55,0.014,0.61,22,519,60,7,6,-8.1,26,2,100,26,0.272,36.92,85.82,0.9,0.11,793,0.4,219,2
+15202,2023,11,13,17,0,3.2,1.47,0.015,0.61,4,53,3,3,6,-8.4,2,0,43,2,0.271,42.41,91.12,0.91,0.11,793,0.4,221,1.8
+15203,2023,11,13,17,30,2.9,1.47,0.015,0.61,0,0,0,0,6,-8.4,0,0,0,0,0.271,43.37,96.45,0.91,0.11,794,0.4,221,1.7
+15204,2023,11,13,18,0,2.6,1.4,0.017,0.61,0,0,0,0,6,-8.3,0,0,0,0,0.271,44.47,101.93,0.92,0.11,794,0.4,221,1.6
+15205,2023,11,13,18,30,2.6,1.4,0.017,0.61,0,0,0,0,6,-8.3,0,0,0,0,0.271,44.47,107.52,0.92,0.11,794,0.4,217,1.5
+15206,2023,11,13,19,0,2.5,1.34,0.019,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.271,45.45,113.18,0.92,0.11,794,0.5,214,1.5
+15207,2023,11,13,19,30,2.4,1.34,0.019,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.272,45.77,118.88,0.92,0.11,794,0.5,211,1.5
+15208,2023,11,13,20,0,2.3,1.33,0.02,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.272,46.09,124.57,0.92,0.11,794,0.5,208,1.5
+15209,2023,11,13,20,30,1.9,1.33,0.02,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.273,47.43,130.22,0.92,0.11,794,0.5,206,1.5
+15210,2023,11,13,21,0,1.6,1.34,0.019,0.61,0,0,0,0,6,-8.4,0,0,0,0,0.274,47.48,135.75,0.92,0.11,794,0.5,203,1.5
+15211,2023,11,13,21,30,1.2,1.34,0.019,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.275,48.86,141.09,0.92,0.11,794,0.5,201,1.5
+15212,2023,11,13,22,0,0.9,1.33,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.275,49.12,146.12,0.92,0.11,794,0.5,198,1.5
+15213,2023,11,13,22,30,0.7,1.33,0.019,0.61,0,0,0,0,6,-8.6,0,0,0,0,0.276,49.83,150.63,0.92,0.11,794,0.5,197,1.5
+15214,2023,11,13,23,0,0.5,1.34,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.277,50.51,154.33,0.92,0.11,794,0.5,196,1.5
+15215,2023,11,13,23,30,0.4,1.34,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.277,50.88,156.8,0.92,0.11,794,0.5,196,1.5
+15216,2023,11,14,0,0,0.3,1.35,0.019,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.278,51.54,157.63,0.92,0.11,794,0.5,196,1.5
+15217,2023,11,14,0,30,0.3,1.35,0.019,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.277,51.54,156.64,0.92,0.11,794,0.6,197,1.5
+15218,2023,11,14,1,0,0.3,1.35,0.02,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.277,52.13,154.03,0.92,0.11,794,0.6,197,1.5
+15219,2023,11,14,1,30,0.2,1.35,0.02,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.277,52.51,150.25,0.92,0.11,794,0.6,195,1.5
+15220,2023,11,14,2,0,0.2,1.35,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,52.75,145.68,0.92,0.11,794,0.6,194,1.5
+15221,2023,11,14,2,30,0.1,1.35,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,53.13,140.62,0.92,0.11,794,0.6,192,1.5
+15222,2023,11,14,3,0,0.1,1.36,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,53.13,135.26,0.92,0.11,794,0.6,190,1.5
+15223,2023,11,14,3,30,-0.2,1.36,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.278,54.23,129.72,0.92,0.11,793,0.6,190,1.6
+15224,2023,11,14,4,0,-0.5,1.39,0.021,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.278,54.32,124.07,0.92,0.11,793,0.6,189,1.6
+15225,2023,11,14,4,30,-0.6,1.39,0.021,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.28,54.71,118.38,0.92,0.11,793,0.6,189,1.6
+15226,2023,11,14,5,0,-0.7,1.41,0.02,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.281,53.7,112.7,0.91,0.11,793,0.6,188,1.6
+15227,2023,11,14,5,30,-0.8,1.41,0.02,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.282,54.1,107.05,0.91,0.11,793,0.6,189,1.6
+15228,2023,11,14,6,0,-0.9,1.44,0.019,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.283,53,101.48,0.91,0.11,793,0.6,191,1.6
+15229,2023,11,14,6,30,-0.9,1.44,0.019,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.283,53,96.02,0.9,0.11,793,0.6,193,1.6
+15230,2023,11,14,7,0,-0.8,1.46,0.018,0.61,6,96,6,0,0,-9.5,6,96,0,6,0.283,51.92,90.23,0.9,0.11,794,0.6,196,1.6
+15231,2023,11,14,7,30,1.2,1.46,0.018,0.61,23,506,63,0,0,-9.5,23,506,0,63,0.283,44.92,85.46,0.9,0.11,794,0.6,199,1.8
+15232,2023,11,14,8,0,3.3,1.46,0.018,0.61,32,696,145,0,0,-8.6,32,696,0,145,0.282,41.21,80.66,0.9,0.11,794,0.6,202,2.1
+15233,2023,11,14,8,30,4.9,1.46,0.018,0.61,38,803,231,0,0,-8.6,38,803,0,231,0.282,36.84,76.12,0.9,0.11,794,0.6,208,2.5
+15234,2023,11,14,9,0,6.5,1.46,0.018,0.61,43,872,313,0,0,-8.4,43,872,0,313,0.282,33.49,71.93,0.89,0.11,794,0.6,213,2.9
+15235,2023,11,14,9,30,8.3,1.46,0.018,0.61,45,919,387,0,0,-8.4,45,919,0,387,0.281,29.62,68.17,0.89,0.11,794,0.6,219,3.6
+15236,2023,11,14,10,0,10,1.45,0.018,0.61,48,951,451,0,0,-6.6,48,951,0,451,0.281,30.38,64.94,0.89,0.11,794,0.6,224,4.3
+15237,2023,11,14,10,30,10.9,1.45,0.018,0.61,49,974,502,0,0,-6.6,49,974,0,502,0.28,28.61,62.31,0.89,0.11,794,0.5,227,4.5
+15238,2023,11,14,11,0,11.7,1.57,0.017,0.61,50,991,540,0,0,-5.5,50,991,0,540,0.279,29.5,60.37,0.89,0.11,794,0.5,229,4.7
+15239,2023,11,14,11,30,12.2,1.57,0.017,0.61,51,998,562,0,0,-5.5,51,998,0,562,0.278,28.55,59.19,0.89,0.11,794,0.5,230,4.7
+15240,2023,11,14,12,0,12.6,1.56,0.017,0.61,51,1000,569,0,0,-5.5,51,1000,0,569,0.278,27.99,58.82,0.89,0.11,794,0.5,231,4.7
+15241,2023,11,14,12,30,12.8,1.56,0.017,0.61,50,998,560,0,0,-5.5,50,998,0,560,0.278,27.62,59.28,0.89,0.11,794,0.5,232,4.7
+15242,2023,11,14,13,0,13,1.55,0.017,0.61,49,990,536,0,0,-6,49,990,0,536,0.278,26.22,60.54,0.89,0.11,793,0.5,232,4.6
+15243,2023,11,14,13,30,13,1.55,0.017,0.61,49,975,498,0,0,-6,49,975,0,498,0.278,26.22,62.55,0.89,0.11,793,0.5,233,4.5
+15244,2023,11,14,14,0,13,1.45,0.017,0.61,47,953,446,0,0,-6.6,47,953,0,446,0.279,24.98,65.25,0.89,0.11,793,0.5,233,4.4
+15245,2023,11,14,14,30,12.6,1.45,0.017,0.61,45,922,382,0,0,-6.6,45,922,0,382,0.279,25.64,68.54,0.89,0.11,793,0.5,232,4.1
+15246,2023,11,14,15,0,12.3,1.43,0.017,0.61,42,875,307,0,0,-7,42,875,0,307,0.279,25.34,72.35,0.89,0.11,793,0.5,231,3.8
+15247,2023,11,14,15,30,10.5,1.43,0.017,0.61,37,804,224,0,0,-7,37,804,0,224,0.28,28.53,76.58,0.9,0.11,793,0.5,228,2.7
+15248,2023,11,14,16,0,8.7,1.42,0.018,0.61,31,690,137,0,0,-5.1,31,690,0,137,0.281,37.35,81.16,0.9,0.11,793,0.5,226,1.6
+15249,2023,11,14,16,30,6.8,1.42,0.018,0.61,22,486,56,0,0,-5.1,22,486,0,56,0.282,42.5,85.98,0.9,0.11,793,0.5,221,1.5
+15250,2023,11,14,17,0,4.9,1.43,0.018,0.61,4,48,3,0,0,-6,4,48,0,3,0.283,45.18,91.27,0.9,0.11,793,0.5,216,1.4
+15251,2023,11,14,17,30,4.5,1.43,0.018,0.61,0,0,0,0,0,-6,0,0,0,0,0.283,46.46,96.59,0.9,0.11,793,0.5,212,1.5
+15252,2023,11,14,18,0,4,1.46,0.019,0.61,0,0,0,0,0,-6.5,0,0,0,0,0.284,46.48,102.07,0.9,0.11,793,0.5,209,1.5
+15253,2023,11,14,18,30,3.6,1.46,0.019,0.61,0,0,0,0,0,-6.4,0,0,0,0,0.283,47.86,107.65,0.9,0.11,794,0.5,209,1.5
+15254,2023,11,14,19,0,3.1,1.5,0.02,0.61,0,0,0,0,0,-6.6,0,0,0,0,0.283,48.83,113.31,0.9,0.11,794,0.5,208,1.5
+15255,2023,11,14,19,30,2.7,1.5,0.02,0.61,0,0,0,0,7,-6.6,0,0,0,0,0.282,50.23,119,0.89,0.11,794,0.5,208,1.5
+15256,2023,11,14,20,0,2.3,1.53,0.021,0.61,0,0,0,0,7,-6.7,0,0,0,0,0.282,51.47,124.7,0.89,0.11,794,0.5,207,1.5
+15257,2023,11,14,20,30,1.9,1.53,0.021,0.61,0,0,0,0,7,-6.7,0,0,0,0,0.281,52.96,130.35,0.89,0.11,794,0.5,205,1.5
+15258,2023,11,14,21,0,1.6,1.54,0.021,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.281,54.7,135.89,0.89,0.11,794,0.5,204,1.5
+15259,2023,11,14,21,30,1.4,1.54,0.021,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.281,55.49,141.24,0.9,0.11,794,0.5,201,1.4
+15260,2023,11,14,22,0,1.1,1.52,0.022,0.61,0,0,0,0,7,-6.3,0,0,0,0,0.281,57.57,146.28,0.9,0.11,794,0.5,199,1.4
+15261,2023,11,14,22,30,0.9,1.52,0.022,0.61,0,0,0,0,0,-6.3,0,0,0,0,0.281,58.4,150.82,0.9,0.11,794,0.5,196,1.4
+15262,2023,11,14,23,0,0.7,1.47,0.022,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.281,60.01,154.54,0.9,0.11,794,0.6,193,1.4
+15263,2023,11,14,23,30,0.6,1.47,0.022,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28,60.45,157.04,0.9,0.11,794,0.6,190,1.4
+15264,2023,11,15,0,0,0.4,1.43,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.28,61.71,157.89,0.9,0.11,794,0.6,188,1.4
+15265,2023,11,15,0,30,0.3,1.43,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.28,62.16,156.9,0.91,0.11,794,0.6,186,1.4
+15266,2023,11,15,1,0,0.2,1.4,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.28,62.62,154.28,0.91,0.11,794,0.6,185,1.4
+15267,2023,11,15,1,30,0.2,1.4,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.281,62.62,150.48,0.91,0.11,794,0.6,184,1.3
+15268,2023,11,15,2,0,0.2,1.37,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.282,62.5,145.9,0.92,0.11,794,0.6,184,1.3
+15269,2023,11,15,2,30,0.4,1.37,0.022,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.283,61.6,140.83,0.92,0.11,794,0.7,185,1.2
+15270,2023,11,15,3,0,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.284,61.01,135.46,0.92,0.11,794,0.7,185,1.2
+15271,2023,11,15,3,30,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.284,61.01,129.91,0.92,0.11,794,0.7,185,1.2
+15272,2023,11,15,4,0,0.5,1.38,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.285,60.81,124.26,0.92,0.11,794,0.8,185,1.2
+15273,2023,11,15,4,30,0.5,1.38,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.286,60.81,118.57,0.92,0.11,794,0.8,186,1.2
+15274,2023,11,15,5,0,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.286,60.69,112.88,0.93,0.11,794,0.8,187,1.1
+15275,2023,11,15,5,30,0.4,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.286,61.13,107.24,0.93,0.11,794,0.8,190,1.2
+15276,2023,11,15,6,0,0.4,1.36,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.286,61.11,101.67,0.93,0.11,794,0.8,193,1.2
+15277,2023,11,15,6,30,0.4,1.36,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.286,61.11,96.22,0.93,0.11,794,0.8,196,1.2
+15278,2023,11,15,7,0,0.4,1.35,0.024,0.61,7,81,6,0,0,-6.2,7,81,0,6,0.285,61.42,90.92,0.93,0.11,794,0.8,200,1.3
+15279,2023,11,15,7,30,1.9,1.35,0.024,0.61,23,459,58,0,0,-6.1,23,459,0,58,0.285,55.22,85.67,0.93,0.11,795,0.8,199,1.3
+15280,2023,11,15,8,0,3.5,1.36,0.024,0.61,34,658,138,1,0,-5.2,50,354,14,106,0.284,52.94,80.88,0.93,0.11,795,0.8,198,1.2
+15281,2023,11,15,8,30,5,1.36,0.024,0.61,41,771,223,4,7,-5.2,107,277,50,172,0.282,47.67,76.34,0.93,0.11,795,0.8,198,1.5
+15282,2023,11,15,9,0,6.6,1.36,0.024,0.61,45,842,303,0,7,-5.3,148,198,0,209,0.281,42.49,72.16,0.93,0.11,795,0.8,197,1.8
+15283,2023,11,15,9,30,8.3,1.36,0.024,0.61,49,889,376,0,7,-5.3,180,226,0,263,0.28,37.85,68.41,0.93,0.11,795,0.8,203,2.3
+15284,2023,11,15,10,0,10,1.38,0.024,0.61,52,922,439,0,7,-3.9,212,145,0,273,0.279,37.39,65.19,0.93,0.11,795,0.8,208,2.7
+15285,2023,11,15,10,30,11.2,1.38,0.024,0.61,53,947,489,0,7,-3.9,233,162,0,308,0.278,34.48,62.56,0.93,0.11,794,0.8,210,3.4
+15286,2023,11,15,11,0,12.4,1.58,0.019,0.61,52,965,525,0,7,-2.7,246,190,0,339,0.277,34.95,60.63,0.93,0.11,794,0.8,211,4
+15287,2023,11,15,11,30,12.9,1.58,0.019,0.61,52,973,547,0,7,-2.7,243,210,0,350,0.274,33.83,59.45,0.93,0.11,794,0.8,213,4.3
+15288,2023,11,15,12,0,13.4,1.57,0.019,0.61,53,975,554,0,7,-2.3,242,122,0,305,0.272,33.74,59.08,0.93,0.11,793,0.8,215,4.6
+15289,2023,11,15,12,30,13.6,1.57,0.019,0.61,52,973,545,0,7,-2.3,208,413,0,417,0.271,33.31,59.53,0.93,0.11,793,0.8,216,4.7
+15290,2023,11,15,13,0,13.7,1.58,0.018,0.61,50,966,522,0,7,-2,194,430,0,404,0.269,33.7,60.78,0.93,0.11,792,0.8,217,4.9
+15291,2023,11,15,13,30,13.7,1.58,0.018,0.61,50,952,485,0,7,-2,196,258,0,314,0.269,33.7,62.78,0.92,0.11,792,0.8,218,4.9
+15292,2023,11,15,14,0,13.8,1.45,0.018,0.61,48,930,434,0,0,-2,111,677,0,392,0.269,33.58,65.46,0.92,0.11,792,0.8,219,4.9
+15293,2023,11,15,14,30,13.5,1.45,0.018,0.61,45,898,371,0,7,-2,117,562,0,321,0.269,34.2,68.74,0.92,0.11,791,0.8,220,4.7
+15294,2023,11,15,15,0,13.2,1.41,0.018,0.61,42,850,297,0,0,-2.2,85,606,0,267,0.269,34.44,72.54,0.92,0.11,791,0.8,221,4.6
+15295,2023,11,15,15,30,11.6,1.41,0.018,0.61,37,779,216,0,8,-2.2,66,589,14,201,0.269,38.25,76.75,0.92,0.11,791,0.8,221,3.4
+15296,2023,11,15,16,0,9.9,1.36,0.018,0.61,31,665,131,3,7,-1.6,64,348,50,117,0.27,44.53,81.32,0.92,0.11,791,0.8,221,2.1
+15297,2023,11,15,16,30,7.8,1.36,0.018,0.61,22,455,53,7,7,-1.6,36,21,100,37,0.271,51.3,86.13,0.93,0.11,791,0.7,219,1.9
+15298,2023,11,15,17,0,5.7,1.28,0.02,0.61,4,42,3,2,7,-2.2,2,0,29,2,0.272,56.91,91.41,0.93,0.11,791,0.7,216,1.6
+15299,2023,11,15,17,30,5.5,1.28,0.02,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.272,57.71,96.73,0.93,0.11,791,0.7,214,1.7
+15300,2023,11,15,18,0,5.3,1.26,0.021,0.61,0,0,0,0,6,-2.3,0,0,0,0,0.273,57.97,102.2,0.93,0.11,791,0.7,213,1.8
+15301,2023,11,15,18,30,4.8,1.26,0.021,0.61,0,0,0,0,6,-2.3,0,0,0,0,0.273,60.02,107.77,0.93,0.11,791,0.7,214,1.8
+15302,2023,11,15,19,0,4.2,1.27,0.02,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.274,61.98,113.43,0.92,0.11,791,0.7,216,1.9
+15303,2023,11,15,19,30,3.8,1.27,0.02,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.275,63.74,119.12,0.92,0.11,791,0.7,215,1.9
+15304,2023,11,15,20,0,3.4,1.27,0.021,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.276,65.07,124.82,0.92,0.11,791,0.7,215,1.9
+15305,2023,11,15,20,30,3,1.27,0.021,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.276,66.94,130.47,0.92,0.11,791,0.7,213,1.8
+15306,2023,11,15,21,0,2.6,1.28,0.021,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.277,68.54,136.02,0.93,0.11,791,0.7,211,1.8
+15307,2023,11,15,21,30,2.4,1.28,0.021,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.278,69.52,141.39,0.93,0.11,791,0.8,209,1.7
+15308,2023,11,15,22,0,2.2,1.29,0.023,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.278,70.17,146.44,0.93,0.11,790,0.8,206,1.7
+15309,2023,11,15,22,30,2.2,1.29,0.023,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.279,70.17,151,0.93,0.11,790,0.9,204,1.7
+15310,2023,11,15,23,0,2.2,1.3,0.025,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.279,69.84,154.75,0.93,0.11,790,1,202,1.8
+15311,2023,11,15,23,30,2.3,1.3,0.025,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.28,69.34,157.28,0.94,0.11,790,1.1,201,1.8
+15312,2023,11,16,0,0,2.3,1.3,0.027,0.61,0,0,0,0,7,-2.8,0,0,0,0,0.28,68.94,158.14,0.94,0.11,790,1.2,200,1.8
+15313,2023,11,16,0,30,2.6,1.3,0.027,0.61,0,0,0,0,7,-2.8,0,0,0,0,0.281,67.4,157.15,0.94,0.11,789,1.3,200,1.8
+15314,2023,11,16,1,0,2.8,1.3,0.029,0.61,0,0,0,0,7,-2.9,0,0,0,0,0.282,66.22,154.52,0.94,0.11,789,1.4,200,1.8
+15315,2023,11,16,1,30,3.1,1.3,0.029,0.61,0,0,0,0,6,-2.9,0,0,0,0,0.283,64.83,150.7,0.94,0.11,789,1.4,201,1.9
+15316,2023,11,16,2,0,3.4,1.29,0.031,0.61,0,0,0,0,6,-2.8,0,0,0,0,0.285,63.98,146.11,0.95,0.11,789,1.4,203,2
+15317,2023,11,16,2,30,3.6,1.29,0.031,0.61,0,0,0,0,6,-2.8,0,0,0,0,0.287,63.08,141.03,0.95,0.11,789,1.4,206,2.2
+15318,2023,11,16,3,0,3.8,1.29,0.03,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.289,63.71,135.65,0.95,0.11,789,1.5,209,2.4
+15319,2023,11,16,3,30,3.8,1.29,0.03,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.291,63.71,130.1,0.95,0.11,789,1.5,210,2.5
+15320,2023,11,16,4,0,3.9,1.27,0.032,0.61,0,0,0,0,6,-1.7,0,0,0,0,0.293,66.69,124.44,0.95,0.11,788,1.5,210,2.5
+15321,2023,11,16,4,30,3.8,1.27,0.032,0.61,0,0,0,0,6,-1.7,0,0,0,0,0.295,67.16,118.75,0.95,0.11,788,1.5,209,2.6
+15322,2023,11,16,5,0,3.7,1.26,0.033,0.61,0,0,0,0,9,-0.5,0,0,0,0,0.297,73.95,113.07,0.95,0.11,788,1.5,208,2.7
+15323,2023,11,16,5,30,3.4,1.26,0.033,0.61,0,0,0,0,6,-0.5,0,0,0,0,0.299,75.52,107.42,0.95,0.11,788,1.5,203,2.7
+15324,2023,11,16,6,0,3.1,1.31,0.027,0.61,0,0,0,0,6,0.3,0,0,0,0,0.301,81.83,101.86,0.94,0.11,788,1.5,199,2.6
+15325,2023,11,16,6,30,2.7,1.31,0.027,0.61,0,0,0,0,6,0.3,0,0,0,0,0.301,84.18,96.41,0.94,0.11,788,1.4,197,2.5
+15326,2023,11,16,7,0,2.3,1.35,0.022,0.61,4,41,3,3,6,0.6,1,0,43,1,0.302,88.44,91.12,0.93,0.11,788,1.4,195,2.5
+15327,2023,11,16,7,30,3.5,1.35,0.022,0.61,22,425,53,7,7,0.6,13,0,100,13,0.301,81.35,85.87,0.94,0.11,789,1.4,199,2.9
+15328,2023,11,16,8,0,4.7,1.31,0.026,0.61,33,619,129,4,7,1.5,15,0,50,15,0.3,79.59,81.09,0.95,0.11,789,1.4,203,3.4
+15329,2023,11,16,8,30,5.3,1.31,0.026,0.61,43,720,210,0,4,1.5,45,26,0,51,0.299,76.34,76.56,0.95,0.11,789,1.4,214,3.8
+15330,2023,11,16,9,0,5.8,1.23,0.043,0.61,52,776,287,0,7,2.4,16,0,0,16,0.297,78.91,72.39,0.96,0.11,789,1.4,225,4.2
+15331,2023,11,16,9,30,6.1,1.23,0.043,0.61,57,829,359,0,4,2.4,29,0,7,29,0.297,77.29,68.65,0.96,0.11,789,1.4,234,4.4
+15332,2023,11,16,10,0,6.4,1.23,0.045,0.61,61,865,421,0,4,2.9,56,0,0,56,0.296,78.51,65.43,0.96,0.11,789,1.3,242,4.6
+15333,2023,11,16,10,30,7.6,1.23,0.045,0.61,60,903,473,0,4,2.9,40,0,0,40,0.294,72.32,62.81,0.95,0.11,789,1.2,247,4.5
+15334,2023,11,16,11,0,8.7,1.37,0.03,0.61,59,935,514,0,4,3.2,133,6,0,136,0.293,68.31,60.88,0.95,0.11,789,1.1,252,4.5
+15335,2023,11,16,11,30,9.7,1.37,0.03,0.61,58,949,537,0,4,3.2,222,176,0,311,0.291,63.87,59.71,0.94,0.11,789,1,253,4.5
+15336,2023,11,16,12,0,10.7,1.38,0.025,0.61,57,957,545,0,0,2.6,163,563,0,450,0.289,57.4,59.33,0.94,0.11,789,1,255,4.5
+15337,2023,11,16,12,30,11,1.38,0.025,0.61,56,958,538,0,0,2.6,188,482,0,431,0.288,56.27,59.77,0.94,0.11,789,0.9,253,4.5
+15338,2023,11,16,13,0,11.4,1.39,0.022,0.61,54,954,516,0,0,1.7,95,811,0,488,0.287,51.23,61.01,0.93,0.11,789,0.9,252,4.4
+15339,2023,11,16,13,30,11.4,1.39,0.022,0.61,54,935,478,0,0,1.7,112,695,0,428,0.286,51.16,63,0.93,0.11,788,0.9,252,4.4
+15340,2023,11,16,14,0,11.5,1.17,0.027,0.61,53,908,427,0,4,0.4,142,243,0,242,0.285,46.4,65.67,0.93,0.11,788,0.9,252,4.4
+15341,2023,11,16,14,30,11.4,1.17,0.027,0.61,51,875,365,0,0,0.4,126,340,0,248,0.285,46.7,68.94,0.93,0.11,788,0.9,253,4.1
+15342,2023,11,16,15,0,11.3,1.19,0.027,0.61,47,826,292,0,0,-0.7,89,594,0,265,0.284,43.55,72.72,0.93,0.11,788,0.8,255,3.8
+15343,2023,11,16,15,30,9.9,1.19,0.027,0.61,41,750,211,0,0,-0.6,41,750,0,211,0.284,47.86,76.92,0.93,0.11,789,0.8,257,2.7
+15344,2023,11,16,16,0,8.6,1.19,0.027,0.61,33,626,126,0,0,0.9,33,626,0,126,0.283,58.38,81.48,0.93,0.11,789,0.8,259,1.5
+15345,2023,11,16,16,30,6.9,1.19,0.027,0.61,23,407,49,0,0,0.9,23,407,0,49,0.283,65.54,86.27,0.93,0.11,789,0.8,269,1.4
+15346,2023,11,16,17,0,5.2,1.19,0.027,0.61,3,35,2,0,0,-0.4,3,35,0,2,0.283,67.28,91.55,0.93,0.11,789,0.9,278,1.3
+15347,2023,11,16,17,30,4.5,1.19,0.027,0.61,0,0,0,0,4,-0.4,0,0,0,0,0.282,70.64,96.86,0.93,0.11,789,0.9,290,1.3
+15348,2023,11,16,18,0,3.8,1.22,0.027,0.61,0,0,0,0,4,-0.8,0,0,0,0,0.282,71.68,102.32,0.93,0.11,790,0.8,302,1.3
+15349,2023,11,16,18,30,3.2,1.22,0.027,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.282,74.78,107.89,0.93,0.11,790,0.8,311,1.3
+15350,2023,11,16,19,0,2.5,1.29,0.026,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.281,76.32,113.54,0.93,0.11,790,0.8,320,1.3
+15351,2023,11,16,19,30,2.2,1.29,0.026,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.282,78.07,119.24,0.92,0.11,791,0.8,331,1.3
+15352,2023,11,16,20,0,1.9,1.35,0.024,0.61,0,0,0,0,4,-1.4,0,0,0,0,0.282,78.95,124.93,0.92,0.11,791,0.8,342,1.2
+15353,2023,11,16,20,30,1.7,1.35,0.024,0.61,0,0,0,0,4,-1.4,0,0,0,0,0.283,80.08,130.59,0.92,0.11,791,0.7,177,1.2
+15354,2023,11,16,21,0,1.5,1.38,0.023,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.284,81.51,136.15,0.92,0.11,791,0.7,12,1.2
+15355,2023,11,16,21,30,1.2,1.38,0.023,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.284,83.28,141.52,0.92,0.11,791,0.7,23,1.1
+15356,2023,11,16,22,0,0.9,1.39,0.022,0.61,0,0,0,0,4,-1.2,0,0,0,0,0.285,85.65,146.59,0.92,0.11,791,0.7,33,1.1
+15357,2023,11,16,22,30,0.7,1.39,0.022,0.61,0,0,0,0,4,-1.2,0,0,0,0,0.286,86.89,151.17,0.92,0.11,791,0.7,37,1.1
+15358,2023,11,16,23,0,0.4,1.39,0.022,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.286,89.55,154.95,0.92,0.11,792,0.7,41,1
+15359,2023,11,16,23,30,0.2,1.39,0.022,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.286,90.85,157.51,0.92,0.11,792,0.7,41,1
+15360,2023,11,17,0,0,0,1.39,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.286,92.73,158.39,0.92,0.11,792,0.7,41,1
+15361,2023,11,17,0,30,-0.1,1.39,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.286,93.4,157.4,0.92,0.11,792,0.7,40,0.9
+15362,2023,11,17,1,0,-0.2,1.39,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.286,94.51,154.76,0.92,0.11,792,0.7,38,0.8
+15363,2023,11,17,1,30,-0.3,1.39,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.286,95.2,150.93,0.92,0.11,792,0.6,34,0.8
+15364,2023,11,17,2,0,-0.5,1.38,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.285,96.81,146.32,0.92,0.11,792,0.6,29,0.8
+15365,2023,11,17,2,30,-0.7,1.38,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.285,98.23,141.23,0.92,0.11,792,0.6,25,0.8
+15366,2023,11,17,3,0,-0.9,1.38,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.285,99.7,135.84,0.92,0.11,792,0.6,20,0.8
+15367,2023,11,17,3,30,-1.2,1.38,0.022,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.285,100,130.28,0.92,0.11,792,0.6,21,0.8
+15368,2023,11,17,4,0,-1.5,1.38,0.022,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.285,100,124.63,0.92,0.11,792,0.6,21,0.8
+15369,2023,11,17,4,30,-1.7,1.38,0.022,0.61,0,0,0,0,0,-1.7,0,0,0,0,0.285,100,118.93,0.92,0.11,792,0.6,25,0.8
+15370,2023,11,17,5,0,-2,1.38,0.022,0.61,0,0,0,0,0,-2,0,0,0,0,0.286,100,113.25,0.92,0.11,792,0.6,29,0.8
+15371,2023,11,17,5,30,-2.1,1.38,0.022,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.286,100,107.61,0.92,0.11,793,0.5,36,0.8
+15372,2023,11,17,6,0,-2.2,1.38,0.021,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.286,100,102.05,0.92,0.11,793,0.5,42,0.8
+15373,2023,11,17,6,30,-2.2,1.38,0.021,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.286,100,96.61,0.91,0.11,793,0.5,43,0.8
+15374,2023,11,17,7,0,-2.1,1.38,0.02,0.61,4,46,3,0,0,-2.1,4,46,0,3,0.285,100,91.32,0.91,0.11,793,0.5,43,0.9
+15375,2023,11,17,7,30,-0.9,1.38,0.02,0.61,23,473,55,0,0,-1.5,23,473,0,55,0.285,95.41,86.07,0.91,0.11,794,0.5,43,1
+15376,2023,11,17,8,0,0.3,1.38,0.02,0.61,32,680,135,0,0,-1.5,32,680,0,135,0.284,87.49,81.3,0.91,0.11,794,0.5,43,1.2
+15377,2023,11,17,8,30,1.8,1.38,0.02,0.61,38,796,220,0,0,-1.5,38,796,0,220,0.284,78.55,76.78,0.91,0.11,794,0.5,50,1.1
+15378,2023,11,17,9,0,3.2,1.39,0.019,0.61,43,868,302,0,0,-1.7,43,868,0,302,0.283,70.43,72.62,0.91,0.11,794,0.5,57,1.1
+15379,2023,11,17,9,30,5,1.39,0.019,0.61,46,916,376,0,0,-1.7,46,916,0,376,0.282,62.09,68.89,0.91,0.11,794,0.5,58,0.7
+15380,2023,11,17,10,0,6.8,1.39,0.018,0.61,48,948,439,0,0,-3.2,48,948,0,439,0.282,49.09,65.67,0.9,0.11,794,0.5,58,0.3
+15381,2023,11,17,10,30,8.1,1.39,0.018,0.61,49,971,489,0,0,-3.2,49,971,0,489,0.282,44.93,63.06,0.9,0.11,794,0.5,152,0.6
+15382,2023,11,17,11,0,9.4,1.45,0.017,0.61,50,986,526,0,0,-4.7,50,986,0,526,0.282,36.61,61.13,0.9,0.11,794,0.5,246,0.9
+15383,2023,11,17,11,30,10,1.45,0.017,0.61,50,995,548,0,0,-4.7,50,995,0,548,0.283,35.17,59.95,0.9,0.11,794,0.5,246,1.3
+15384,2023,11,17,12,0,10.6,1.47,0.016,0.61,50,997,555,0,0,-5.2,50,997,0,555,0.284,32.58,59.58,0.9,0.11,793,0.5,247,1.6
+15385,2023,11,17,12,30,10.9,1.47,0.016,0.61,50,995,547,0,0,-5.2,50,995,0,547,0.285,31.93,60.01,0.9,0.11,793,0.5,247,1.9
+15386,2023,11,17,13,0,11.3,1.5,0.016,0.61,49,987,524,0,0,-5.4,83,856,0,495,0.286,30.7,61.24,0.9,0.11,793,0.5,248,2.1
+15387,2023,11,17,13,30,11.3,1.5,0.016,0.61,49,970,486,0,0,-5.4,79,841,0,458,0.286,30.7,63.22,0.9,0.11,793,0.5,246,2.1
+15388,2023,11,17,14,0,11.3,1.21,0.02,0.61,50,943,435,0,0,-5.4,50,943,0,435,0.287,30.64,65.88,0.91,0.11,793,0.5,245,2.1
+15389,2023,11,17,14,30,10.9,1.21,0.02,0.61,47,910,371,0,0,-5.4,47,910,0,371,0.287,31.46,69.13,0.91,0.11,793,0.5,244,2.1
+15390,2023,11,17,15,0,10.5,1.23,0.02,0.61,43,861,296,0,0,-5.2,43,861,0,296,0.287,32.86,72.89,0.91,0.11,793,0.5,242,2
+15391,2023,11,17,15,30,9.2,1.23,0.02,0.61,38,785,213,0,0,-5.2,38,785,0,213,0.286,35.85,77.09,0.91,0.11,793,0.6,245,1.4
+15392,2023,11,17,16,0,7.8,1.26,0.019,0.61,30,663,127,0,0,-2.4,30,663,0,127,0.286,48.37,81.62,0.91,0.11,793,0.6,247,0.8
+15393,2023,11,17,16,30,6.8,1.26,0.019,0.61,21,445,49,0,0,-2.4,21,445,0,49,0.285,51.79,86.41,0.91,0.11,793,0.6,253,0.8
+15394,2023,11,17,17,0,5.8,1.28,0.019,0.61,3,41,2,0,0,-4.1,3,41,0,2,0.285,49,91.68,0.91,0.11,793,0.6,259,0.7
+15395,2023,11,17,17,30,5.5,1.28,0.019,0.61,0,0,0,0,0,-4.1,0,0,0,0,0.284,50.02,96.98,0.91,0.11,793,0.6,259,0.4
+15396,2023,11,17,18,0,5.3,1.31,0.018,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.283,49.65,102.44,0.91,0.11,793,0.6,259,0.2
+15397,2023,11,17,18,30,4.8,1.31,0.018,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.282,51.4,108.01,0.91,0.11,793,0.6,180,0.4
+15398,2023,11,17,19,0,4.3,1.32,0.017,0.61,0,0,0,0,0,-4.6,0,0,0,0,0.281,52.42,113.65,0.91,0.11,793,0.6,101,0.5
+15399,2023,11,17,19,30,3.6,1.32,0.017,0.61,0,0,0,0,0,-4.6,0,0,0,0,0.28,54.99,119.34,0.91,0.11,792,0.6,105,0.7
+15400,2023,11,17,20,0,2.9,1.33,0.017,0.61,0,0,0,0,0,-4.8,0,0,0,0,0.28,56.94,125.04,0.91,0.11,792,0.6,110,0.9
+15401,2023,11,17,20,30,2.4,1.33,0.017,0.61,0,0,0,0,0,-4.8,0,0,0,0,0.28,59,130.7,0.91,0.11,792,0.6,116,1
+15402,2023,11,17,21,0,1.9,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,60.57,136.26,0.91,0.11,792,0.6,122,1.1
+15403,2023,11,17,21,30,1.7,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,61.44,141.65,0.91,0.11,792,0.6,130,1.1
+15404,2023,11,17,22,0,1.5,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,62.36,146.74,0.91,0.11,792,0.6,137,1.1
+15405,2023,11,17,22,30,1.3,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,63.26,151.34,0.91,0.11,792,0.7,148,1.1
+15406,2023,11,17,23,0,1.1,1.33,0.015,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28,65.28,155.14,0.91,0.11,792,0.7,158,1.1
+15407,2023,11,17,23,30,0.9,1.33,0.015,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28,66.23,157.73,0.91,0.11,792,0.7,167,1.1
+15408,2023,11,18,0,0,0.6,1.34,0.015,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.28,69.82,158.64,0.91,0.11,791,0.7,176,1.1
+15409,2023,11,18,0,30,0.3,1.34,0.015,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.28,71.35,157.65,0.91,0.11,791,0.7,180,1.2
+15410,2023,11,18,1,0,0,1.36,0.014,0.61,0,0,0,0,0,-3.8,0,0,0,0,0.28,75.8,155,0.91,0.11,791,0.7,184,1.2
+15411,2023,11,18,1,30,-0.2,1.36,0.014,0.61,0,0,0,0,0,-3.8,0,0,0,0,0.28,76.91,151.15,0.91,0.11,791,0.7,185,1.2
+15412,2023,11,18,2,0,-0.5,1.38,0.014,0.61,0,0,0,0,0,-3.3,0,0,0,0,0.28,81.57,146.53,0.91,0.11,791,0.7,186,1.3
+15413,2023,11,18,2,30,-0.6,1.38,0.014,0.61,0,0,0,0,0,-3.3,0,0,0,0,0.279,82.17,141.42,0.91,0.11,791,0.7,185,1.3
+15414,2023,11,18,3,0,-0.7,1.41,0.014,0.61,0,0,0,0,0,-2.9,0,0,0,0,0.279,85.26,136.03,0.91,0.11,791,0.7,184,1.3
+15415,2023,11,18,3,30,-0.8,1.41,0.014,0.61,0,0,0,0,0,-2.9,0,0,0,0,0.279,85.77,130.47,0.91,0.11,790,0.7,183,1.3
+15416,2023,11,18,4,0,-0.9,1.43,0.013,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,87.93,124.81,0.91,0.11,790,0.7,182,1.3
+15417,2023,11,18,4,30,-1,1.43,0.013,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,88.58,119.12,0.91,0.11,790,0.7,181,1.4
+15418,2023,11,18,5,0,-1.1,1.44,0.013,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,89.61,113.43,0.91,0.11,790,0.7,181,1.4
+15419,2023,11,18,5,30,-1.2,1.44,0.013,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,90.27,107.8,0.91,0.11,790,0.7,182,1.4
+15420,2023,11,18,6,0,-1.3,1.43,0.013,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.279,90.27,102.24,0.91,0.11,790,0.7,182,1.4
+15421,2023,11,18,6,30,-1.1,1.43,0.013,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.279,88.96,96.8,0.91,0.11,790,0.7,185,1.4
+15422,2023,11,18,7,0,-1,1.41,0.014,0.61,4,45,3,0,0,-2.8,4,45,0,3,0.278,87.55,91.52,0.91,0.11,790,0.7,188,1.4
+15423,2023,11,18,7,30,0.9,1.41,0.014,0.61,21,466,51,0,0,-2.8,21,466,0,51,0.278,76.28,86.27,0.91,0.11,790,0.7,190,1.5
+15424,2023,11,18,8,0,2.7,1.39,0.015,0.61,29,670,128,0,0,-2.5,31,648,4,127,0.278,68.63,81.51,0.91,0.11,790,0.7,191,1.7
+15425,2023,11,18,8,30,4.2,1.39,0.015,0.61,36,781,212,0,0,-2.5,36,781,0,212,0.278,61.75,77,0.91,0.11,790,0.8,196,2
+15426,2023,11,18,9,0,5.7,1.37,0.017,0.61,41,848,291,0,0,-2.1,64,720,0,276,0.278,57.12,72.85,0.92,0.11,790,0.8,201,2.3
+15427,2023,11,18,9,30,7.6,1.37,0.017,0.61,45,895,364,0,0,-2.1,85,678,0,327,0.278,50.07,69.12,0.92,0.11,789,0.8,206,3.2
+15428,2023,11,18,10,0,9.4,1.37,0.018,0.61,47,925,425,0,7,-1.3,178,330,0,313,0.279,47.23,65.91,0.92,0.11,789,0.8,211,4
+15429,2023,11,18,10,30,10.1,1.37,0.018,0.61,49,945,474,0,8,-1.3,179,438,0,376,0.28,45.07,63.3,0.92,0.11,789,0.9,214,4.3
+15430,2023,11,18,11,0,10.8,1.41,0.019,0.61,51,958,510,0,7,-1.1,227,253,0,348,0.281,43.45,61.38,0.92,0.11,788,0.9,217,4.7
+15431,2023,11,18,11,30,10.8,1.41,0.019,0.61,52,965,532,0,7,-1.1,240,123,0,301,0.282,43.45,60.2,0.93,0.11,788,0.9,220,4.6
+15432,2023,11,18,12,0,10.8,1.41,0.02,0.61,53,966,539,0,7,-1.2,69,1,0,70,0.284,43.25,59.81,0.93,0.11,787,0.9,223,4.5
+15433,2023,11,18,12,30,10.7,1.41,0.02,0.61,53,962,531,0,7,-1.2,182,71,0,217,0.285,43.54,60.24,0.93,0.11,787,0.9,226,4.4
+15434,2023,11,18,13,0,10.5,1.4,0.023,0.61,54,949,507,0,7,-1.4,184,100,0,232,0.287,43.65,61.46,0.94,0.11,787,0.9,229,4.3
+15435,2023,11,18,13,30,10.2,1.4,0.023,0.61,53,929,469,0,7,-1.4,92,11,0,97,0.289,44.47,63.43,0.94,0.11,786,1,229,4.2
+15436,2023,11,18,14,0,9.9,1.33,0.029,0.61,53,899,418,0,7,-1.5,136,48,0,155,0.29,45.08,66.07,0.95,0.11,786,1,230,4.1
+15437,2023,11,18,14,30,9.3,1.33,0.029,0.61,52,858,355,0,7,-1.5,178,135,0,226,0.292,46.92,69.31,0.95,0.11,786,1,229,3.4
+15438,2023,11,18,15,0,8.7,1.28,0.035,0.61,48,798,281,0,7,-0.9,108,54,0,124,0.293,50.85,73.06,0.96,0.11,787,1,228,2.8
+15439,2023,11,18,15,30,7.6,1.28,0.035,0.61,43,716,201,0,7,-0.9,85,55,0,97,0.294,54.79,77.24,0.96,0.11,787,1,227,2
+15440,2023,11,18,16,0,6.4,1.25,0.037,0.61,35,583,118,3,7,0.3,59,45,43,65,0.295,64.84,81.77,0.96,0.11,787,1,226,1.2
+15441,2023,11,18,16,30,5.5,1.25,0.037,0.61,23,349,44,7,7,0.3,19,1,100,19,0.296,69,86.54,0.96,0.11,787,1,227,1.2
+15442,2023,11,18,17,0,4.6,1.23,0.042,0.61,3,25,2,2,6,-0.4,1,0,29,1,0.296,70.16,91.81,0.96,0.11,787,1,228,1.1
+15443,2023,11,18,17,30,4.2,1.23,0.042,0.61,0,0,0,0,6,-0.4,0,0,0,0,0.296,72.15,97.1,0.97,0.11,787,1,230,1.2
+15444,2023,11,18,18,0,3.8,1.22,0.045,0.61,0,0,0,0,6,-0.6,0,0,0,0,0.296,72.76,102.55,0.97,0.11,787,1,232,1.2
+15445,2023,11,18,18,30,3.4,1.22,0.045,0.61,0,0,0,0,7,-0.6,0,0,0,0,0.295,74.84,108.11,0.97,0.11,787,1,234,1.3
+15446,2023,11,18,19,0,3,1.24,0.043,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.295,75.77,113.76,0.97,0.11,787,1,235,1.3
+15447,2023,11,18,19,30,2.7,1.24,0.043,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.294,77.39,119.45,0.97,0.11,787,1,235,1.3
+15448,2023,11,18,20,0,2.4,1.25,0.039,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.294,78.68,125.14,0.96,0.11,787,1,234,1.4
+15449,2023,11,18,20,30,2.2,1.25,0.039,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.295,79.81,130.81,0.96,0.11,787,1,232,1.4
+15450,2023,11,18,21,0,2,1.26,0.034,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.295,80.96,136.37,0.96,0.11,787,1,229,1.4
+15451,2023,11,18,21,30,1.8,1.26,0.034,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.297,82.13,141.77,0.96,0.11,787,0.9,227,1.5
+15452,2023,11,18,22,0,1.5,1.27,0.029,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,83.92,146.88,0.95,0.11,787,0.9,225,1.6
+15453,2023,11,18,22,30,1.3,1.27,0.029,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,85.13,151.5,0.95,0.11,787,0.9,225,1.6
+15454,2023,11,18,23,0,1,1.26,0.026,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.299,86.86,155.33,0.95,0.11,787,0.9,224,1.6
+15455,2023,11,18,23,30,0.7,1.26,0.026,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,88.75,157.95,0.95,0.11,787,0.9,224,1.7
+15456,2023,11,19,0,0,0.4,1.25,0.026,0.61,0,0,0,0,4,-1,0,0,0,0,0.298,90.49,158.87,0.95,0.11,786,0.9,225,1.7
+15457,2023,11,19,0,30,0.2,1.25,0.026,0.61,0,0,0,0,4,-1,0,0,0,0,0.297,91.8,157.89,0.95,0.11,786,0.9,225,1.6
+15458,2023,11,19,1,0,-0.1,1.21,0.028,0.61,0,0,0,0,4,-1,0,0,0,0,0.296,93.89,155.23,0.96,0.11,786,0.9,225,1.6
+15459,2023,11,19,1,30,-0.3,1.21,0.028,0.61,0,0,0,0,4,-1,0,0,0,0,0.296,95.26,151.37,0.96,0.11,786,1,225,1.5
+15460,2023,11,19,2,0,-0.5,1.19,0.031,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.296,96.89,146.73,0.96,0.11,786,1,225,1.4
+15461,2023,11,19,2,30,-0.5,1.19,0.031,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.296,96.89,141.62,0.96,0.11,786,1,224,1.3
+15462,2023,11,19,3,0,-0.6,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.296,97.98,136.22,0.96,0.11,786,1,223,1.1
+15463,2023,11,19,3,30,-0.5,1.17,0.034,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.295,97.15,130.65,0.96,0.11,785,1,215,1
+15464,2023,11,19,4,0,-0.4,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.295,96.73,124.99,0.96,0.11,785,1,207,0.9
+15465,2023,11,19,4,30,-0.4,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.294,96.73,119.3,0.96,0.11,785,1,184,0.9
+15466,2023,11,19,5,0,-0.4,1.18,0.032,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.293,96.87,113.61,0.96,0.11,785,1,161,0.9
+15467,2023,11,19,5,30,-0.9,1.18,0.032,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.293,100,107.98,0.96,0.11,784,1,147,1.1
+15468,2023,11,19,6,0,-1.3,1.17,0.03,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.293,100,102.43,0.95,0.11,784,1,133,1.2
+15469,2023,11,19,6,30,-1.3,1.17,0.03,0.61,0,0,0,0,8,-1.3,0,0,0,0,0.293,100,96.99,0.96,0.11,784,1,133,1.2
+15470,2023,11,19,7,0,-1.3,1.14,0.032,0.61,3,30,2,2,4,-1.3,1,0,21,1,0.292,100,91.72,0.96,0.11,784,1,132,1.2
+15471,2023,11,19,7,30,-0.5,1.14,0.032,0.61,22,368,45,7,4,-0.7,23,0,100,23,0.292,98.58,86.47,0.96,0.11,784,1,134,1.1
+15472,2023,11,19,8,0,0.2,1.12,0.036,0.61,35,588,120,2,4,-0.1,58,245,21,93,0.292,97.91,81.72,0.96,0.11,784,1,136,1
+15473,2023,11,19,8,30,0.7,1.12,0.036,0.61,44,715,202,0,4,-0.1,89,302,0,156,0.292,94.44,77.22,0.96,0.11,784,1,130,1.1
+15474,2023,11,19,9,0,1.2,1.11,0.038,0.61,50,793,281,0,3,0.3,119,375,0,228,0.291,93.83,73.07,0.96,0.11,784,1,123,1.2
+15475,2023,11,19,9,30,1.4,1.11,0.038,0.61,55,845,353,0,3,0.3,169,312,0,279,0.292,92.5,69.35,0.96,0.11,784,1,117,1.3
+15476,2023,11,19,10,0,1.6,1.12,0.039,0.61,58,881,414,0,0,0.5,163,458,0,348,0.292,92.43,66.15,0.97,0.11,784,1,111,1.3
+15477,2023,11,19,10,30,1.9,1.12,0.039,0.61,60,907,464,0,8,0.5,235,231,0,338,0.292,90.47,63.54,0.97,0.11,784,1,105,1.3
+15478,2023,11,19,11,0,2.1,1.12,0.038,0.61,62,924,501,0,8,0.6,206,377,0,385,0.292,89.7,61.61,0.97,0.11,784,1,99,1.2
+15479,2023,11,19,11,30,2.4,1.12,0.038,0.61,62,934,523,0,8,0.6,194,272,0,328,0.291,87.69,60.44,0.97,0.11,783,1,90,1.2
+15480,2023,11,19,12,0,2.7,1.14,0.036,0.61,62,940,531,0,8,0.5,179,159,0,258,0.291,85.5,60.05,0.97,0.11,783,1,81,1.1
+15481,2023,11,19,12,30,3.2,1.14,0.036,0.61,60,942,524,0,8,0.5,145,54,0,172,0.291,82.53,60.47,0.96,0.11,783,1,71,1.4
+15482,2023,11,19,13,0,3.7,1.17,0.029,0.61,57,940,503,0,7,0.2,169,192,0,260,0.291,77.81,61.68,0.96,0.11,783,0.9,62,1.6
+15483,2023,11,19,13,30,4.1,1.17,0.029,0.61,55,928,467,0,8,0.2,180,364,0,342,0.292,75.66,63.63,0.95,0.11,783,0.9,55,2
+15484,2023,11,19,14,0,4.5,1.2,0.024,0.61,51,909,417,0,8,-0.3,143,274,0,253,0.292,70.82,66.26,0.95,0.11,782,0.9,48,2.3
+15485,2023,11,19,14,30,4.6,1.2,0.024,0.61,47,878,355,0,7,-0.3,136,156,0,191,0.293,70.33,69.49,0.95,0.11,782,0.9,40,2.6
+15486,2023,11,19,15,0,4.7,1.24,0.021,0.61,43,831,283,0,7,-1,133,66,0,152,0.293,66.69,73.22,0.94,0.11,783,0.9,33,2.8
+15487,2023,11,19,15,30,3.8,1.24,0.021,0.61,39,753,203,0,7,-1,104,226,0,153,0.294,71.02,77.39,0.94,0.11,783,0.9,25,2.2
+15488,2023,11,19,16,0,2.8,1.27,0.022,0.61,32,626,120,4,7,-1.2,66,160,57,89,0.294,74.79,81.91,0.95,0.11,783,0.9,18,1.6
+15489,2023,11,19,16,30,1.7,1.27,0.022,0.61,21,365,42,7,8,-1.2,25,6,100,25,0.294,80.88,86.66,0.95,0.11,783,0.9,11,1.5
+15490,2023,11,19,17,0,0.6,1.28,0.026,0.61,0,0,0,2,7,-2,0,0,29,0,0.295,82.45,91.93,0.95,0.11,784,0.9,5,1.4
+15491,2023,11,19,17,30,0.5,1.28,0.026,0.61,0,0,0,0,7,-2,0,0,0,0,0.295,83.04,97.21,0.95,0.11,784,0.9,180,1.5
+15492,2023,11,19,18,0,0.4,1.27,0.029,0.61,0,0,0,0,7,-2,0,0,0,0,0.295,83.72,102.65,0.96,0.11,784,0.9,355,1.7
+15493,2023,11,19,18,30,0.3,1.27,0.029,0.61,0,0,0,0,8,-2,0,0,0,0,0.295,84.43,108.21,0.96,0.11,785,0.9,351,1.9
+15494,2023,11,19,19,0,0.3,1.26,0.032,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.295,86.91,113.85,0.96,0.11,785,0.9,347,2.1
+15495,2023,11,19,19,30,0.2,1.26,0.032,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.295,87.54,119.54,0.96,0.11,785,0.9,344,2.3
+15496,2023,11,19,20,0,0.1,1.25,0.033,0.61,0,0,0,0,7,-1.2,0,0,0,0,0.296,90.64,125.24,0.95,0.11,786,0.9,341,2.5
+15497,2023,11,19,20,30,-0.1,1.25,0.033,0.61,0,0,0,0,8,-1.2,0,0,0,0,0.296,91.97,130.9,0.95,0.11,786,0.9,340,2.6
+15498,2023,11,19,21,0,-0.3,1.27,0.033,0.61,0,0,0,0,8,-1.2,0,0,0,0,0.296,93.45,136.48,0.95,0.11,786,0.9,338,2.8
+15499,2023,11,19,21,30,-0.6,1.27,0.033,0.61,0,0,0,0,8,-1.2,0,0,0,0,0.295,95.63,141.89,0.94,0.11,787,0.9,338,3
+15500,2023,11,19,22,0,-0.9,1.31,0.029,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.295,94.23,147,0.94,0.11,787,0.9,338,3.2
+15501,2023,11,19,22,30,-1.2,1.31,0.029,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.295,96.32,151.65,0.93,0.11,787,0.9,338,3.4
+15502,2023,11,19,23,0,-1.6,1.34,0.026,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.294,92.17,155.51,0.93,0.11,787,0.9,337,3.6
+15503,2023,11,19,23,30,-2.2,1.34,0.026,0.61,0,0,0,0,5,-2.7,0,0,0,0,0.294,96.46,158.16,0.92,0.11,788,0.9,338,3.4
+15504,2023,11,20,0,0,-2.7,1.35,0.024,0.61,0,0,0,0,5,-3.4,0,0,0,0,0.293,94.6,159.1,0.92,0.11,788,0.8,339,3.2
+15505,2023,11,20,0,30,-3.1,1.35,0.024,0.61,0,0,0,0,4,-3.4,0,0,0,0,0.293,97.45,158.13,0.92,0.11,788,0.8,340,3.1
+15506,2023,11,20,1,0,-3.5,1.37,0.022,0.61,0,0,0,0,0,-4,0,0,0,0,0.292,96.56,155.46,0.92,0.11,788,0.8,342,3
+15507,2023,11,20,1,30,-3.6,1.37,0.022,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,97.41,151.58,0.92,0.11,789,0.8,345,3.1
+15508,2023,11,20,2,0,-3.8,1.4,0.022,0.61,0,0,0,0,4,-4.1,0,0,0,0,0.292,97.45,146.93,0.92,0.11,789,0.8,348,3.1
+15509,2023,11,20,2,30,-3.7,1.4,0.022,0.61,0,0,0,0,4,-4.1,0,0,0,0,0.292,96.84,141.81,0.92,0.11,790,0.8,349,3.3
+15510,2023,11,20,3,0,-3.6,1.42,0.024,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,97.19,136.4,0.93,0.11,790,0.8,351,3.4
+15511,2023,11,20,3,30,-3.4,1.42,0.024,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,95.75,130.83,0.93,0.11,790,0.8,352,3.6
+15512,2023,11,20,4,0,-3.1,1.41,0.026,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.293,96.3,125.17,0.93,0.11,791,0.8,353,3.8
+15513,2023,11,20,4,30,-2.5,1.41,0.026,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.293,92.11,119.48,0.93,0.11,791,0.9,355,4.4
+15514,2023,11,20,5,0,-1.9,1.36,0.028,0.61,0,0,0,0,4,-3,0,0,0,0,0.293,92.09,113.8,0.93,0.11,792,0.9,357,5.1
+15515,2023,11,20,5,30,-1.6,1.36,0.028,0.61,0,0,0,0,4,-3,0,0,0,0,0.294,90.08,108.16,0.93,0.11,792,0.9,179,5.3
+15516,2023,11,20,6,0,-1.3,1.33,0.03,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.295,91.45,102.61,0.94,0.11,793,0.9,1,5.4
+15517,2023,11,20,6,30,-1.1,1.33,0.03,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.296,90.12,97.19,0.93,0.11,793,0.9,5,5.3
+15518,2023,11,20,7,0,-0.8,1.33,0.027,0.61,0,0,0,2,4,-2.2,0,0,29,0,0.297,90.38,91.91,0.93,0.11,794,0.9,8,5.2
+15519,2023,11,20,7,30,-0.3,1.33,0.027,0.61,21,366,42,7,4,-2.2,7,0,100,7,0.299,87.15,86.66,0.93,0.11,794,0.9,11,5
+15520,2023,11,20,8,0,0.2,1.4,0.02,0.61,31,635,120,3,4,-2,20,0,43,20,0.3,85.32,81.92,0.92,0.11,795,0.8,15,4.9
+15521,2023,11,20,8,30,1.1,1.4,0.02,0.61,37,760,202,0,4,-2,60,2,0,60,0.301,79.96,77.43,0.91,0.11,795,0.8,18,5.3
+15522,2023,11,20,9,0,2.1,1.43,0.017,0.61,41,842,283,0,4,-2.1,104,29,0,112,0.302,73.92,73.29,0.91,0.11,795,0.8,21,5.7
+15523,2023,11,20,9,30,3.1,1.43,0.017,0.61,43,893,355,0,4,-2,144,12,0,148,0.301,68.95,69.57,0.9,0.11,796,0.8,24,5.8
+15524,2023,11,20,10,0,4,1.42,0.016,0.61,46,927,417,0,4,-2.7,129,4,0,131,0.3,61.8,66.38,0.9,0.11,796,0.8,27,5.9
+15525,2023,11,20,10,30,4.5,1.42,0.016,0.61,46,952,467,0,4,-2.7,175,19,0,183,0.299,59.75,63.77,0.9,0.11,797,0.8,25,5.8
+15526,2023,11,20,11,0,5,1.44,0.013,0.61,45,970,503,0,4,-3.3,174,6,0,177,0.298,54.93,61.85,0.89,0.11,797,0.7,22,5.6
+15527,2023,11,20,11,30,5.3,1.44,0.013,0.61,46,979,526,0,4,-3.3,166,3,0,167,0.297,53.8,60.67,0.89,0.11,797,0.7,19,5.6
+15528,2023,11,20,12,0,5.6,1.43,0.013,0.61,47,983,534,0,4,-3.8,95,0,0,95,0.295,50.64,60.27,0.9,0.11,797,0.7,17,5.5
+15529,2023,11,20,12,30,5.7,1.43,0.013,0.61,46,981,526,0,4,-3.8,58,0,0,58,0.295,50.3,60.69,0.9,0.11,797,0.7,15,5.5
+15530,2023,11,20,13,0,5.9,1.42,0.012,0.61,45,973,503,0,4,-4.3,64,0,0,64,0.294,47.81,61.89,0.9,0.11,797,0.7,13,5.5
+15531,2023,11,20,13,30,5.9,1.42,0.012,0.61,45,957,467,0,4,-4.3,42,0,0,42,0.294,47.87,63.83,0.91,0.11,798,0.7,13,5.3
+15532,2023,11,20,14,0,5.9,1.33,0.015,0.61,46,934,419,0,4,-4.9,50,0,0,50,0.293,45.99,66.45,0.91,0.11,798,0.7,13,5.2
+15533,2023,11,20,14,30,5.6,1.33,0.015,0.61,43,903,357,0,4,-4.9,49,0,0,49,0.293,46.95,69.66,0.91,0.11,798,0.6,13,4.8
+15534,2023,11,20,15,0,5.4,1.31,0.017,0.61,40,852,284,0,4,-5.3,47,0,0,47,0.293,45.99,73.38,0.92,0.11,798,0.6,13,4.5
+15535,2023,11,20,15,30,4.3,1.31,0.017,0.61,36,776,204,0,4,-5.3,37,0,0,37,0.293,49.65,77.53,0.92,0.11,798,0.6,14,3.5
+15536,2023,11,20,16,0,3.3,1.29,0.017,0.61,30,653,120,4,4,-5.1,29,0,57,29,0.293,54.02,82.04,0.92,0.11,798,0.6,14,2.6
+15537,2023,11,20,16,30,1.4,1.29,0.017,0.61,20,393,42,7,4,-5.1,11,0,100,11,0.293,61.91,86.78,0.92,0.11,799,0.6,15,2
+15538,2023,11,20,17,0,-0.6,1.28,0.017,0.61,0,0,0,2,4,-5.5,0,0,29,0,0.293,69.41,92.04,0.92,0.11,799,0.6,16,1.5
+15539,2023,11,20,17,30,-1.1,1.28,0.017,0.61,0,0,0,0,4,-5.5,0,0,0,0,0.292,71.99,97.32,0.92,0.11,799,0.6,18,1.4
+15540,2023,11,20,18,0,-1.7,1.25,0.017,0.61,0,0,0,0,4,-6,0,0,0,0,0.292,72.26,102.75,0.92,0.11,800,0.6,19,1.4
+15541,2023,11,20,18,30,-2.1,1.25,0.017,0.61,0,0,0,0,4,-6,0,0,0,0,0.292,74.42,108.3,0.92,0.11,800,0.6,20,1.4
+15542,2023,11,20,19,0,-2.6,1.23,0.017,0.61,0,0,0,0,4,-6.3,0,0,0,0,0.293,75.42,113.94,0.92,0.11,800,0.6,22,1.4
+15543,2023,11,20,19,30,-3,1.23,0.017,0.61,0,0,0,0,4,-6.3,0,0,0,0,0.293,77.69,119.63,0.92,0.11,800,0.6,23,1.3
+15544,2023,11,20,20,0,-3.4,1.2,0.017,0.61,0,0,0,0,0,-6.6,0,0,0,0,0.292,78.75,125.33,0.92,0.11,801,0.6,24,1.3
+15545,2023,11,20,20,30,-3.7,1.2,0.017,0.61,0,0,0,0,0,-6.6,0,0,0,0,0.291,80.54,131,0.92,0.11,801,0.6,25,1.2
+15546,2023,11,20,21,0,-4,1.18,0.017,0.61,0,0,0,0,4,-6.7,0,0,0,0,0.29,81.36,136.58,0.92,0.11,801,0.6,26,1.2
+15547,2023,11,20,21,30,-4.3,1.18,0.017,0.61,0,0,0,0,0,-6.7,0,0,0,0,0.29,83.22,141.99,0.92,0.11,801,0.6,28,1.1
+15548,2023,11,20,22,0,-4.6,1.16,0.017,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.289,84.56,147.13,0.92,0.11,801,0.5,30,1.1
+15549,2023,11,20,22,30,-4.7,1.16,0.017,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.288,85.2,151.79,0.92,0.11,801,0.5,34,1.1
+15550,2023,11,20,23,0,-4.9,1.15,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.287,86.14,155.68,0.92,0.11,801,0.5,37,1
+15551,2023,11,20,23,30,-5.1,1.15,0.017,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.286,87.56,158.36,0.92,0.11,802,0.5,40,1
+15552,2023,11,21,0,0,-5.3,1.15,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.286,88.65,159.33,0.92,0.11,802,0.5,43,1
+15553,2023,11,21,0,30,-5.4,1.15,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.286,89.32,158.36,0.92,0.11,802,0.5,43,1
+15554,2023,11,21,1,0,-5.5,1.14,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.286,89.85,155.68,0.92,0.11,802,0.5,43,1
+15555,2023,11,21,1,30,-5.5,1.14,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.286,89.85,151.79,0.92,0.11,802,0.5,38,1
+15556,2023,11,21,2,0,-5.5,1.14,0.016,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.286,89.76,147.13,0.92,0.11,802,0.5,34,0.9
+15557,2023,11,21,2,30,-5.5,1.14,0.016,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.285,89.76,142,0.92,0.11,802,0.5,28,0.9
+15558,2023,11,21,3,0,-5.5,1.13,0.015,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.285,89.84,136.59,0.92,0.11,802,0.5,22,0.9
+15559,2023,11,21,3,30,-5.5,1.13,0.015,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.284,89.84,131.01,0.92,0.11,802,0.5,20,0.9
+15560,2023,11,21,4,0,-5.5,1.13,0.014,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.283,90.03,125.35,0.91,0.11,802,0.5,18,0.9
+15561,2023,11,21,4,30,-5.4,1.13,0.014,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.283,89.35,119.65,0.91,0.11,802,0.5,19,0.8
+15562,2023,11,21,5,0,-5.4,1.12,0.013,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.282,89.52,113.97,0.91,0.11,802,0.5,20,0.8
+15563,2023,11,21,5,30,-5.3,1.12,0.013,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.282,88.84,108.34,0.91,0.11,802,0.5,19,0.7
+15564,2023,11,21,6,0,-5.2,1.11,0.013,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.281,88.27,102.8,0.91,0.11,802,0.5,18,0.6
+15565,2023,11,21,6,30,-5.1,1.11,0.013,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.28,87.6,97.37,0.91,0.11,802,0.5,16,0.6
+15566,2023,11,21,7,0,-4.9,1.1,0.012,0.61,0,0,0,0,0,-6.8,0,0,0,0,0.28,86.46,92.11,0.91,0.11,802,0.5,15,0.5
+15567,2023,11,21,7,30,-3.7,1.1,0.012,0.61,19,414,42,0,0,-6.8,19,414,0,42,0.279,79.1,86.85,0.91,0.11,803,0.5,14,0.6
+15568,2023,11,21,8,0,-2.5,1.1,0.012,0.61,27,675,120,0,0,-6.7,27,675,0,120,0.278,72.81,82.12,0.91,0.11,803,0.5,14,0.7
+15569,2023,11,21,8,30,-1.2,1.1,0.012,0.61,33,796,203,0,0,-6.7,33,796,0,203,0.277,66.16,77.64,0.91,0.11,803,0.5,186,0.7
+15570,2023,11,21,9,0,0.2,1.1,0.011,0.61,37,870,284,0,0,-7.1,37,870,0,284,0.276,57.8,73.5,0.91,0.11,803,0.5,358,0.6
+15571,2023,11,21,9,30,1,1.1,0.011,0.61,40,919,357,0,0,-7.1,40,919,0,357,0.275,54.56,69.79,0.91,0.11,803,0.5,358,0.6
+15572,2023,11,21,10,0,1.9,1.11,0.011,0.61,41,952,419,0,0,-7.3,41,952,0,419,0.274,50.39,66.6,0.91,0.11,803,0.5,358,0.6
+15573,2023,11,21,10,30,2.6,1.11,0.011,0.61,42,973,469,0,0,-7.3,42,973,0,469,0.274,47.95,64,0.9,0.11,803,0.5,180,0.5
+15574,2023,11,21,11,0,3.2,1.16,0.01,0.61,43,986,505,0,0,-7.4,43,986,0,505,0.273,45.6,62.08,0.9,0.11,803,0.6,2,0.5
+15575,2023,11,21,11,30,3.7,1.16,0.01,0.61,43,992,526,0,0,-7.4,43,992,0,526,0.273,44.02,60.89,0.9,0.11,803,0.6,175,0.3
+15576,2023,11,21,12,0,4.1,1.16,0.011,0.61,45,992,533,0,0,-7.6,45,992,0,533,0.273,42.36,60.5,0.9,0.11,803,0.6,348,0.2
+15577,2023,11,21,12,30,4.5,1.16,0.011,0.61,44,989,525,0,0,-7.6,44,989,0,525,0.272,41.14,60.9,0.9,0.11,802,0.6,277,0.2
+15578,2023,11,21,13,0,4.8,1.14,0.011,0.61,44,980,503,0,0,-7.8,44,980,0,503,0.271,39.58,62.09,0.9,0.11,802,0.6,206,0.3
+15579,2023,11,21,13,30,4.9,1.14,0.011,0.61,43,966,466,0,0,-7.8,43,966,0,466,0.269,39.3,64.02,0.9,0.11,802,0.6,208,0.5
+15580,2023,11,21,14,0,5,1.13,0.011,0.61,41,944,416,0,0,-8,41,944,0,416,0.268,38.57,66.62,0.9,0.11,802,0.6,209,0.7
+15581,2023,11,21,14,30,4.8,1.13,0.011,0.61,39,911,353,0,0,-8,39,911,0,353,0.267,39.11,69.82,0.9,0.11,802,0.6,211,0.7
+15582,2023,11,21,15,0,4.6,1.14,0.011,0.61,37,862,281,0,0,-8,37,862,0,281,0.266,39.55,73.53,0.9,0.11,801,0.6,212,0.8
+15583,2023,11,21,15,30,3.4,1.14,0.011,0.61,33,788,201,0,0,-8,33,788,0,201,0.265,43.02,77.67,0.9,0.11,801,0.6,210,0.6
+15584,2023,11,21,16,0,2.3,1.16,0.011,0.61,27,667,118,0,0,-6.5,27,667,0,118,0.265,52.25,82.16,0.9,0.11,801,0.6,208,0.5
+15585,2023,11,21,16,30,1.2,1.16,0.011,0.61,19,405,41,0,0,-6.5,19,405,0,41,0.265,56.52,86.89,0.9,0.11,801,0.6,206,0.5
+15586,2023,11,21,17,0,0.1,1.18,0.011,0.61,0,0,0,0,0,-8,0,0,0,0,0.265,54.57,92.15,0.9,0.11,801,0.6,204,0.5
+15587,2023,11,21,17,30,-0.4,1.18,0.011,0.61,0,0,0,0,0,-8,0,0,0,0,0.265,56.58,97.42,0.9,0.11,801,0.6,203,0.5
+15588,2023,11,21,18,0,-0.8,1.2,0.012,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.266,57.09,102.84,0.91,0.11,801,0.6,201,0.5
+15589,2023,11,21,18,30,-1.2,1.2,0.012,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.265,58.78,108.39,0.91,0.11,801,0.6,203,0.5
+15590,2023,11,21,19,0,-1.6,1.22,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.265,60.64,114.03,0.9,0.11,801,0.6,205,0.4
+15591,2023,11,21,19,30,-1.9,1.22,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.265,61.99,119.71,0.9,0.11,801,0.6,214,0.4
+15592,2023,11,21,20,0,-2.2,1.23,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.265,63.6,125.41,0.9,0.11,801,0.6,223,0.3
+15593,2023,11,21,20,30,-2.3,1.23,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.266,64.07,131.08,0.9,0.11,801,0.6,232,0.3
+15594,2023,11,21,21,0,-2.5,1.24,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.266,65.11,136.67,0.9,0.11,801,0.6,240,0.3
+15595,2023,11,21,21,30,-2.6,1.24,0.013,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.267,65.59,142.09,0.9,0.11,801,0.6,238,0.3
+15596,2023,11,21,22,0,-2.7,1.24,0.014,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.267,65.93,147.24,0.9,0.11,800,0.6,235,0.3
+15597,2023,11,21,22,30,-2.7,1.24,0.014,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.268,65.93,151.93,0.91,0.11,800,0.6,223,0.3
+15598,2023,11,21,23,0,-2.7,1.24,0.015,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.268,65.75,155.84,0.91,0.11,800,0.6,210,0.3
+15599,2023,11,21,23,30,-2.8,1.24,0.015,0.61,0,0,0,0,7,-8.2,0,0,0,0,0.269,66.24,158.55,0.91,0.11,800,0.6,204,0.4
+15600,2023,11,22,0,0,-2.8,1.23,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.269,65.93,159.55,0.91,0.11,799,0.5,199,0.5
+15601,2023,11,22,0,30,-2.9,1.23,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.27,66.42,158.59,0.91,0.11,799,0.5,200,0.6
+15602,2023,11,22,1,0,-3,1.24,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.27,66.66,155.9,0.91,0.11,799,0.5,201,0.6
+15603,2023,11,22,1,30,-3.2,1.24,0.016,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.271,67.66,152,0.91,0.11,799,0.5,203,0.7
+15604,2023,11,22,2,0,-3.3,1.25,0.015,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.272,67.9,147.33,0.91,0.11,799,0.5,205,0.8
+15605,2023,11,22,2,30,-3.4,1.25,0.015,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.272,68.33,142.19,0.91,0.11,798,0.5,209,0.9
+15606,2023,11,22,3,0,-3.6,1.25,0.014,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.273,69.26,136.77,0.91,0.11,798,0.5,212,1
+15607,2023,11,22,3,30,-3.8,1.25,0.014,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.273,70.3,131.19,0.91,0.11,798,0.5,219,1
+15608,2023,11,22,4,0,-4,1.27,0.013,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.273,71.44,125.53,0.9,0.11,798,0.5,226,1
+15609,2023,11,22,4,30,-4.1,1.27,0.013,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.274,71.98,119.83,0.9,0.11,798,0.5,232,1
+15610,2023,11,22,5,0,-4.2,1.28,0.013,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.274,72.79,114.15,0.9,0.11,798,0.5,239,1
+15611,2023,11,22,5,30,-4.2,1.28,0.013,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.275,72.79,108.52,0.9,0.11,798,0.5,242,1
+15612,2023,11,22,6,0,-4.2,1.28,0.012,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.276,73.16,102.98,0.9,0.11,798,0.5,245,1
+15613,2023,11,22,6,30,-4,1.28,0.012,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,72.07,97.56,0.9,0.11,798,0.5,245,0.9
+15614,2023,11,22,7,0,-3.9,1.28,0.012,0.61,0,0,0,0,0,-8.2,0,0,0,0,0.277,72.2,92.3,0.9,0.11,798,0.5,245,0.8
+15615,2023,11,22,7,30,-2.5,1.28,0.012,0.61,19,405,40,0,0,-8.2,19,405,0,40,0.277,65.05,87.04,0.9,0.11,798,0.5,241,1.1
+15616,2023,11,22,8,0,-1.2,1.28,0.012,0.61,27,667,116,0,0,-7.6,27,667,0,116,0.276,61.75,82.33,0.9,0.11,798,0.5,238,1.3
+15617,2023,11,22,8,30,0.1,1.28,0.012,0.61,33,791,199,0,0,-7.6,33,791,0,199,0.275,56.1,77.85,0.9,0.11,797,0.5,231,1.5
+15618,2023,11,22,9,0,1.4,1.29,0.012,0.61,37,866,280,0,0,-7.8,37,866,0,280,0.275,50.3,73.71,0.9,0.11,797,0.5,224,1.7
+15619,2023,11,22,9,30,2.7,1.29,0.012,0.61,39,916,352,0,0,-7.8,39,916,0,352,0.274,45.85,70.01,0.9,0.11,797,0.5,223,2
+15620,2023,11,22,10,0,4.1,1.29,0.011,0.61,41,949,415,0,0,-8.4,41,949,0,415,0.273,39.78,66.82,0.9,0.11,797,0.5,221,2.3
+15621,2023,11,22,10,30,5.1,1.29,0.011,0.61,43,974,466,0,0,-8.4,43,974,0,466,0.272,37.05,64.23,0.9,0.11,796,0.5,222,2.5
+15622,2023,11,22,11,0,6,1.35,0.011,0.61,43,989,503,0,8,-8.8,155,608,0,438,0.271,33.7,62.3,0.9,0.11,796,0.5,223,2.8
+15623,2023,11,22,11,30,6.7,1.35,0.011,0.61,44,998,526,0,3,-8.8,166,604,0,458,0.27,32.08,61.12,0.9,0.11,795,0.5,225,3
+15624,2023,11,22,12,0,7.3,1.36,0.011,0.61,45,1000,534,0,7,-9,156,589,0,444,0.269,30.46,60.71,0.9,0.11,795,0.5,227,3.2
+15625,2023,11,22,12,30,7.6,1.36,0.011,0.61,44,998,526,0,7,-9,147,614,0,444,0.268,29.81,61.11,0.9,0.11,794,0.5,229,3.3
+15626,2023,11,22,13,0,7.8,1.37,0.011,0.61,43,990,503,0,0,-9.1,79,868,0,483,0.268,29.18,62.29,0.9,0.11,794,0.5,231,3.4
+15627,2023,11,22,13,30,7.9,1.37,0.011,0.61,43,975,467,0,0,-9.1,50,949,0,463,0.268,28.94,64.2,0.9,0.11,793,0.5,232,3.4
+15628,2023,11,22,14,0,7.9,1.15,0.012,0.61,42,951,417,0,0,-9.1,42,951,0,417,0.268,28.84,66.79,0.9,0.11,793,0.5,233,3.4
+15629,2023,11,22,14,30,7.4,1.15,0.012,0.61,40,918,354,0,0,-9.1,40,918,0,354,0.269,29.84,69.98,0.9,0.11,793,0.5,232,3
+15630,2023,11,22,15,0,6.9,1.13,0.012,0.61,37,869,281,0,0,-8.2,37,869,0,281,0.269,33.25,73.67,0.9,0.11,793,0.5,231,2.6
+15631,2023,11,22,15,30,4.7,1.13,0.012,0.61,33,794,201,0,0,-8.2,33,794,0,201,0.27,38.66,77.8,0.9,0.11,792,0.5,228,2
+15632,2023,11,22,16,0,2.5,1.11,0.012,0.61,28,673,118,0,0,-6.5,30,643,7,116,0.271,51.45,82.28,0.9,0.11,792,0.5,225,1.3
+15633,2023,11,22,16,30,1.2,1.11,0.012,0.61,19,407,40,0,0,-6.5,19,407,0,40,0.272,56.45,86.99,0.9,0.11,792,0.5,223,1.4
+15634,2023,11,22,17,0,-0.1,1.07,0.013,0.61,0,0,0,0,0,-8.7,0,0,0,0,0.273,52.39,92.25,0.9,0.11,792,0.5,222,1.5
+15635,2023,11,22,17,30,-0.4,1.07,0.013,0.61,0,0,0,0,0,-8.7,0,0,0,0,0.274,53.54,97.51,0.9,0.11,792,0.5,222,1.4
+15636,2023,11,22,18,0,-0.6,1.02,0.013,0.61,0,0,0,0,0,-9,0,0,0,0,0.274,52.88,102.93,0.9,0.11,792,0.4,223,1.4
+15637,2023,11,22,18,30,-0.7,1.02,0.013,0.61,0,0,0,0,0,-9,0,0,0,0,0.275,53.27,108.47,0.9,0.11,792,0.4,225,1.3
+15638,2023,11,22,19,0,-0.8,0.98,0.014,0.61,0,0,0,0,0,-9.2,0,0,0,0,0.276,53.07,114.1,0.9,0.11,792,0.4,227,1.3
+15639,2023,11,22,19,30,-0.8,0.98,0.014,0.61,0,0,0,0,0,-9.2,0,0,0,0,0.276,53.07,119.79,0.9,0.11,792,0.4,229,1.1
+15640,2023,11,22,20,0,-0.9,0.95,0.016,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.276,53.83,125.49,0.91,0.11,791,0.4,232,1
+15641,2023,11,22,20,30,-0.8,0.95,0.016,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.276,53.44,131.16,0.91,0.11,791,0.4,231,0.8
+15642,2023,11,22,21,0,-0.7,0.93,0.017,0.61,0,0,0,0,0,-9,0,0,0,0,0.277,53.62,136.75,0.91,0.11,791,0.5,231,0.7
+15643,2023,11,22,21,30,-0.8,0.93,0.017,0.61,0,0,0,0,0,-9,0,0,0,0,0.277,54.02,142.19,0.91,0.11,791,0.5,218,0.5
+15644,2023,11,22,22,0,-0.9,0.95,0.019,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.277,55.22,147.35,0.92,0.11,791,0.5,206,0.4
+15645,2023,11,22,22,30,-0.9,0.95,0.019,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.278,55.22,152.05,0.92,0.11,791,0.5,193,0.4
+15646,2023,11,22,23,0,-0.9,0.97,0.021,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.278,56.44,156,0.92,0.11,790,0.5,179,0.4
+15647,2023,11,22,23,30,-0.9,0.97,0.021,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.277,56.44,158.74,0.92,0.11,790,0.5,177,0.4
+15648,2023,11,23,0,0,-0.9,1,0.023,0.61,0,0,0,0,7,-8.1,0,0,0,0,0.277,58.22,159.76,0.93,0.11,790,0.5,174,0.4
+15649,2023,11,23,0,30,-0.9,1,0.023,0.61,0,0,0,0,7,-8.1,0,0,0,0,0.276,58.15,158.81,0.93,0.11,789,0.6,183,0.4
+15650,2023,11,23,1,0,-1,1.01,0.024,0.61,0,0,0,0,7,-8,0,0,0,0,0.275,59.13,156.12,0.93,0.11,789,0.6,191,0.4
+15651,2023,11,23,1,30,-1.1,1.01,0.024,0.61,0,0,0,0,7,-8,0,0,0,0,0.274,59.57,152.21,0.93,0.11,789,0.6,197,0.5
+15652,2023,11,23,2,0,-1.2,1.01,0.024,0.61,0,0,0,0,7,-7.9,0,0,0,0,0.274,60.54,147.53,0.93,0.11,789,0.6,203,0.5
+15653,2023,11,23,2,30,-1.3,1.01,0.024,0.61,0,0,0,0,7,-7.9,0,0,0,0,0.275,60.91,142.38,0.93,0.11,788,0.5,197,0.5
+15654,2023,11,23,3,0,-1.5,1.01,0.024,0.61,0,0,0,0,7,-7.6,0,0,0,0,0.275,62.94,136.95,0.93,0.11,788,0.5,191,0.5
+15655,2023,11,23,3,30,-1.5,1.01,0.024,0.61,0,0,0,0,7,-7.6,0,0,0,0,0.276,62.94,131.37,0.93,0.11,788,0.6,177,0.5
+15656,2023,11,23,4,0,-1.4,1.03,0.025,0.61,0,0,0,0,7,-7.3,0,0,0,0,0.278,63.93,125.7,0.93,0.11,788,0.6,164,0.6
+15657,2023,11,23,4,30,-1.4,1.03,0.025,0.61,0,0,0,0,7,-7.3,0,0,0,0,0.279,63.93,120.01,0.94,0.11,788,0.6,158,0.6
+15658,2023,11,23,5,0,-1.4,1.05,0.027,0.61,0,0,0,0,7,-7.1,0,0,0,0,0.281,65.31,114.33,0.94,0.11,787,0.6,152,0.7
+15659,2023,11,23,5,30,-1.5,1.05,0.027,0.61,0,0,0,0,6,-7.1,0,0,0,0,0.282,65.79,108.7,0.94,0.11,787,0.6,148,0.7
+15660,2023,11,23,6,0,-1.5,1.07,0.028,0.61,0,0,0,0,6,-6.9,0,0,0,0,0.284,66.68,103.16,0.94,0.11,787,0.6,145,0.7
+15661,2023,11,23,6,30,-1.6,1.07,0.028,0.61,0,0,0,0,7,-6.9,0,0,0,0,0.285,67.17,97.75,0.94,0.11,787,0.6,141,0.6
+15662,2023,11,23,7,0,-1.6,1.08,0.029,0.61,0,0,0,1,7,-6.7,0,0,14,0,0.287,67.96,92.49,0.94,0.11,787,0.6,137,0.6
+15663,2023,11,23,7,30,-1.1,1.08,0.029,0.61,20,327,36,7,7,-6.7,20,2,100,20,0.288,65.51,87.23,0.94,0.11,787,0.6,121,0.5
+15664,2023,11,23,8,0,-0.7,1.09,0.029,0.61,32,599,110,3,7,-6,60,14,43,62,0.289,67.28,82.52,0.94,0.11,787,0.6,104,0.4
+15665,2023,11,23,8,30,-0.2,1.09,0.029,0.61,41,736,193,0,7,-6,100,53,0,111,0.289,64.8,78.05,0.94,0.11,786,0.6,86,0.6
+15666,2023,11,23,9,0,0.4,1.1,0.028,0.61,45,819,272,0,7,-6.1,138,163,0,183,0.289,61.63,73.92,0.94,0.11,786,0.7,68,0.8
+15667,2023,11,23,9,30,0.9,1.1,0.028,0.61,50,873,345,0,7,-6.1,172,234,0,251,0.288,59.45,70.23,0.94,0.11,786,0.7,71,1
+15668,2023,11,23,10,0,1.5,1.12,0.028,0.61,53,910,408,0,7,-6.6,194,74,0,223,0.287,54.79,67.04,0.94,0.11,786,0.7,74,1.1
+15669,2023,11,23,10,30,2,1.12,0.028,0.61,55,934,458,0,6,-6.6,201,50,0,223,0.286,52.87,64.45,0.94,0.11,786,0.7,77,1.1
+15670,2023,11,23,11,0,2.5,1.13,0.027,0.61,56,949,494,0,6,-6.8,182,21,0,192,0.285,50.24,62.52,0.94,0.11,785,0.7,80,1.2
+15671,2023,11,23,11,30,2.9,1.13,0.027,0.61,57,958,517,0,6,-6.8,198,29,0,212,0.284,48.83,61.33,0.94,0.11,785,0.7,82,1.2
+15672,2023,11,23,12,0,3.2,1.14,0.027,0.61,57,961,524,0,6,-6.9,200,25,0,212,0.283,47.41,60.92,0.94,0.11,784,0.7,84,1.2
+15673,2023,11,23,12,30,3.3,1.14,0.027,0.61,57,958,517,0,6,-6.9,190,20,0,200,0.284,47.08,61.31,0.94,0.11,784,0.7,80,1.3
+15674,2023,11,23,13,0,3.4,1.15,0.027,0.61,57,949,495,0,6,-6.8,193,26,0,205,0.284,47.23,62.48,0.94,0.11,784,0.7,76,1.3
+15675,2023,11,23,13,30,3.3,1.15,0.027,0.61,55,933,458,0,6,-6.8,173,26,0,184,0.285,47.51,64.38,0.94,0.11,783,0.7,71,1.2
+15676,2023,11,23,14,0,3.1,1.15,0.028,0.61,53,908,408,0,6,-5.5,143,22,0,152,0.286,53.21,66.96,0.95,0.11,783,0.7,65,1
+15677,2023,11,23,14,30,2.5,1.15,0.028,0.61,50,872,346,0,6,-5.5,113,12,0,117,0.288,55.52,70.13,0.95,0.11,783,0.7,58,0.9
+15678,2023,11,23,15,0,2,1.16,0.028,0.61,46,818,274,0,7,-4.8,142,52,0,156,0.289,60.83,73.81,0.95,0.11,783,0.7,50,0.8
+15679,2023,11,23,15,30,1.3,1.16,0.028,0.61,40,735,194,0,7,-4.8,94,109,0,117,0.29,63.95,77.93,0.95,0.11,783,0.7,46,0.9
+15680,2023,11,23,16,0,0.6,1.16,0.029,0.61,33,599,112,4,6,-5.5,56,26,57,59,0.291,63.89,82.39,0.95,0.11,783,0.7,42,1
+15681,2023,11,23,16,30,0.2,1.16,0.029,0.61,20,330,37,7,6,-5.5,18,1,100,18,0.292,65.77,87.09,0.95,0.11,783,0.7,39,1.1
+15682,2023,11,23,17,0,-0.1,1.17,0.03,0.61,0,0,0,1,7,-5.8,0,0,14,0,0.293,65.5,92.34,0.95,0.65,782,0.7,36,1.2
+15683,2023,11,23,17,30,-0.2,1.17,0.03,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.293,65.97,97.59,0.95,0.65,782,0.7,36,1.2
+15684,2023,11,23,18,0,-0.3,1.17,0.032,0.61,0,0,0,0,6,-5.6,0,0,0,0,0.293,67.31,103.01,0.95,0.65,782,0.8,35,1.2
+15685,2023,11,23,18,30,-0.4,1.17,0.032,0.61,0,0,0,0,6,-5.6,0,0,0,0,0.293,67.8,108.55,0.95,0.65,782,0.8,37,1.1
+15686,2023,11,23,19,0,-0.5,1.17,0.033,0.61,0,0,0,0,6,-5.3,0,0,0,0,0.293,69.93,114.17,0.95,0.65,782,0.8,39,1.1
+15687,2023,11,23,19,30,-0.6,1.17,0.033,0.61,0,0,0,0,6,-5.3,0,0,0,0,0.294,70.44,119.86,0.95,0.65,782,0.8,45,1.1
+15688,2023,11,23,20,0,-0.8,1.17,0.036,0.61,0,0,0,0,7,-4.9,0,0,0,0,0.294,73.62,125.55,0.96,0.65,782,0.8,51,1
+15689,2023,11,23,20,30,-0.9,1.17,0.036,0.61,0,0,0,0,6,-4.9,0,0,0,0,0.295,74.16,131.23,0.96,0.65,782,0.8,58,1
+15690,2023,11,23,21,0,-1.1,1.16,0.041,0.61,0,0,0,0,6,-4.4,0,0,0,0,0.296,78.02,136.83,0.96,0.65,782,0.8,66,1
+15691,2023,11,23,21,30,-1.1,1.16,0.041,0.61,0,0,0,0,6,-4.4,0,0,0,0,0.297,78.02,142.27,0.96,0.65,782,0.8,76,1
+15692,2023,11,23,22,0,-1.2,1.15,0.045,0.61,0,0,0,0,6,-4,0,0,0,0,0.298,81.02,147.45,0.96,0.65,782,0.8,85,1
+15693,2023,11,23,22,30,-1.3,1.15,0.045,0.61,0,0,0,0,6,-4,0,0,0,0,0.299,81.61,152.17,0.96,0.65,782,0.8,94,1.1
+15694,2023,11,23,23,0,-1.3,1.14,0.059,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.299,83.45,156.15,0.97,0.65,782,0.8,103,1.2
+15695,2023,11,23,23,30,-1.4,1.14,0.059,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.299,84.06,158.92,0.97,0.65,782,0.8,110,1.3
+15696,2023,11,24,0,0,-1.5,1.14,0.069,0.61,0,0,0,0,7,-3.4,0,0,0,0,0.299,86.91,159.97,0.97,0.65,782,0.9,116,1.3
+15697,2023,11,24,0,30,-1.5,1.14,0.069,0.61,0,0,0,0,7,-3.4,0,0,0,0,0.299,86.91,159.02,0.97,0.65,782,0.9,119,1.3
+15698,2023,11,24,1,0,-1.6,1.14,0.073,0.61,0,0,0,0,7,-2.9,0,0,0,0,0.299,90.52,156.33,0.97,0.65,782,0.9,121,1.4
+15699,2023,11,24,1,30,-1.6,1.14,0.073,0.61,0,0,0,0,7,-2.9,0,0,0,0,0.299,90.52,152.41,0.97,0.65,782,0.9,120,1.3
+15700,2023,11,24,2,0,-1.7,1.14,0.089,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.3,93.64,147.72,0.98,0.65,782,0.9,119,1.3
+15701,2023,11,24,2,30,-1.8,1.14,0.089,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.301,94.34,142.56,0.98,0.65,782,0.9,118,1.2
+15702,2023,11,24,3,0,-1.8,1.14,0.093,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.302,95.67,137.13,0.98,0.65,782,0.9,116,1.2
+15703,2023,11,24,3,30,-1.9,1.14,0.093,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.303,96.37,131.54,0.98,0.65,782,0.9,115,1.1
+15704,2023,11,24,4,0,-2,1.12,0.089,0.61,0,0,0,0,6,-2.3,0,0,0,0,0.304,97.6,125.87,0.97,0.65,782,0.8,114,1
+15705,2023,11,24,4,30,-2,1.12,0.089,0.61,0,0,0,0,6,-2.3,0,0,0,0,0.305,97.6,120.18,0.98,0.65,782,0.8,111,1
+15706,2023,11,24,5,0,-2,1.12,0.104,0.61,0,0,0,0,6,-2.3,0,0,0,0,0.306,97.57,114.5,0.98,0.65,782,0.8,108,1
+15707,2023,11,24,5,30,-2.1,1.12,0.104,0.61,0,0,0,0,7,-2.3,0,0,0,0,0.307,98.29,108.88,0.98,0.65,782,0.8,105,1
+15708,2023,11,24,6,0,-2.1,1.11,0.116,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.308,97.76,103.34,0.98,0.65,782,0.8,101,1
+15709,2023,11,24,6,30,-2.1,1.11,0.116,0.61,0,0,0,0,7,-2.4,0,0,0,0,0.309,97.76,97.93,0.98,0.65,782,0.8,99,1.1
+15710,2023,11,24,7,0,-2.1,1.11,0.116,0.61,0,0,0,1,7,-2.5,0,0,14,0,0.31,97,92.67,0.98,0.65,782,0.8,97,1.1
+15711,2023,11,24,7,30,-1.7,1.11,0.116,0.61,23,138,29,7,7,-2.5,12,0,100,12,0.31,94.18,87.41,0.98,0.65,782,0.8,103,1.5
+15712,2023,11,24,8,0,-1.3,1.12,0.132,0.61,50,362,96,4,7,-2.4,29,0,57,29,0.311,91.93,82.72,0.98,0.65,782,0.8,108,1.8
+15713,2023,11,24,8,30,-0.8,1.12,0.132,0.61,68,524,175,0,7,-2.4,29,0,0,29,0.311,88.74,78.25,0.98,0.65,783,0.8,125,2.2
+15714,2023,11,24,9,0,-0.2,1.13,0.126,0.61,82,633,255,0,7,-2.4,50,1,0,50,0.31,84.81,74.13,0.97,0.65,783,0.8,143,2.6
+15715,2023,11,24,9,30,0.4,1.13,0.126,0.61,91,715,330,0,7,-2.4,109,6,0,111,0.31,81.2,70.44,0.97,0.65,783,0.8,160,3.3
+15716,2023,11,24,10,0,1.1,1.11,0.105,0.61,93,780,395,0,7,-2.9,76,1,0,76,0.31,74.69,67.25,0.97,0.65,783,0.8,177,4
+15717,2023,11,24,10,30,1.7,1.11,0.105,0.61,98,817,448,0,7,-2.9,120,1,0,120,0.311,71.54,64.66,0.97,0.65,783,0.8,184,4.4
+15718,2023,11,24,11,0,2.2,1.1,0.099,0.61,101,841,486,0,7,-3.5,121,1,0,121,0.311,66.2,62.73,0.96,0.65,783,0.8,192,4.8
+15719,2023,11,24,11,30,2.6,1.1,0.099,0.61,101,858,510,0,7,-3.5,103,0,0,103,0.313,64.34,61.54,0.96,0.65,783,0.8,195,4.9
+15720,2023,11,24,12,0,2.9,1.08,0.091,0.61,100,868,519,0,7,-3.8,98,0,0,98,0.314,61.42,61.12,0.96,0.65,783,0.7,197,5
+15721,2023,11,24,12,30,2.8,1.08,0.091,0.61,99,865,512,0,7,-3.8,85,0,0,85,0.317,61.78,61.5,0.96,0.65,782,0.7,196,4.7
+15722,2023,11,24,13,0,2.8,1.06,0.09,0.61,97,853,489,0,7,-3.9,196,22,0,206,0.319,61.19,62.66,0.96,0.65,782,0.8,195,4.4
+15723,2023,11,24,13,30,2.5,1.06,0.09,0.61,97,819,449,0,7,-3.9,151,8,0,154,0.322,62.5,64.55,0.96,0.65,782,0.8,189,3.8
+15724,2023,11,24,14,0,2.3,1.05,0.113,0.61,97,769,396,0,7,-3.8,132,22,0,141,0.324,64.31,67.11,0.97,0.65,782,0.8,183,3.2
+15725,2023,11,24,14,30,1.8,1.05,0.113,0.61,91,713,332,0,7,-3.8,178,32,0,189,0.325,66.64,70.27,0.97,0.65,782,0.8,164,2.4
+15726,2023,11,24,15,0,1.4,1.04,0.126,0.61,83,632,258,0,7,-3.1,150,33,0,159,0.326,71.97,73.94,0.97,0.65,782,0.8,146,1.7
+15727,2023,11,24,15,30,0.4,1.04,0.126,0.61,70,528,179,0,7,-3.1,102,15,0,105,0.325,77.43,78.04,0.97,0.65,783,0.8,109,1.5
+15728,2023,11,24,16,0,-0.6,1.04,0.128,0.61,51,371,99,4,8,-3.1,62,25,54,65,0.325,83.38,82.5,0.97,0.65,783,0.8,72,1.4
+15729,2023,11,24,16,30,-1.5,1.04,0.128,0.61,24,135,31,6,7,-3.1,16,3,93,16,0.324,89.05,87.19,0.98,0.65,783,0.8,57,2.3
+15730,2023,11,24,17,0,-2.3,1.06,0.155,0.61,0,0,0,1,4,-3.6,0,0,14,0,0.324,90.75,92.43,0.98,0.8,783,0.8,43,3.2
+15731,2023,11,24,17,30,-2.9,1.06,0.155,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.324,94.99,97.67,0.98,0.8,784,0.8,38,3.8
+15732,2023,11,24,18,0,-3.5,1.09,0.167,0.61,0,0,0,0,4,-4.6,0,0,0,0,0.324,91.96,103.08,0.98,0.8,784,0.8,33,4.5
+15733,2023,11,24,18,30,-4.1,1.09,0.167,0.61,0,0,0,0,4,-4.6,0,0,0,0,0.325,96.19,108.62,0.98,0.8,784,0.7,30,5.1
+15734,2023,11,24,19,0,-4.7,1.12,0.151,0.61,0,0,0,0,4,-6.4,0,0,0,0,0.325,87.78,114.24,0.98,0.8,784,0.7,27,5.8
+15735,2023,11,24,19,30,-5.3,1.12,0.151,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.326,91.97,119.92,0.98,0.8,785,0.7,26,6.1
+15736,2023,11,24,20,0,-6,1.13,0.147,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.326,83.07,125.62,0.98,0.8,785,0.7,24,6.3
+15737,2023,11,24,20,30,-6.4,1.13,0.147,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.325,85.65,131.29,0.98,0.8,785,0.7,22,6.4
+15738,2023,11,24,21,0,-6.7,1.12,0.148,0.61,0,0,0,0,6,-9.8,0,0,0,0,0.325,78.57,136.9,0.98,0.8,785,0.7,21,6.4
+15739,2023,11,24,21,30,-7,1.12,0.148,0.61,0,0,0,0,6,-9.8,0,0,0,0,0.323,80.4,142.35,0.98,0.8,785,0.7,19,6.4
+15740,2023,11,24,22,0,-7.2,1.11,0.145,0.61,0,0,0,0,6,-10.5,0,0,0,0,0.322,77.02,147.54,0.98,0.8,785,0.7,17,6.3
+15741,2023,11,24,22,30,-7.3,1.11,0.145,0.61,0,0,0,0,9,-10.5,0,0,0,0,0.321,77.61,152.29,0.98,0.8,785,0.7,17,6.3
+15742,2023,11,24,23,0,-7.4,1.11,0.146,0.61,0,0,0,0,9,-11,0,0,0,0,0.319,75.52,156.29,0.98,0.8,785,0.7,16,6.3
+15743,2023,11,24,23,30,-7.5,1.11,0.146,0.61,0,0,0,0,9,-11,0,0,0,0,0.317,76.11,159.09,0.98,0.8,785,0.7,15,6.2
+15744,2023,11,25,0,0,-7.5,1.11,0.141,0.61,0,0,0,0,9,-11.3,0,0,0,0,0.316,74.29,160.17,0.98,0.8,785,0.7,14,6.1
+15745,2023,11,25,0,30,-7.6,1.11,0.141,0.61,0,0,0,0,9,-11.3,0,0,0,0,0.314,74.86,159.23,0.98,0.8,785,0.6,14,5.9
+15746,2023,11,25,1,0,-7.6,1.11,0.131,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.312,73.44,156.54,0.98,0.8,785,0.6,13,5.7
+15747,2023,11,25,1,30,-7.7,1.11,0.131,0.61,0,0,0,0,6,-11.5,0,0,0,0,0.311,74.01,152.61,0.98,0.8,785,0.6,12,5.5
+15748,2023,11,25,2,0,-7.8,1.12,0.137,0.61,0,0,0,0,9,-11.9,0,0,0,0,0.31,72.53,147.91,0.98,0.8,786,0.6,11,5.4
+15749,2023,11,25,2,30,-8,1.12,0.137,0.61,0,0,0,0,9,-11.9,0,0,0,0,0.309,73.67,142.74,0.98,0.8,786,0.6,11,5.2
+15750,2023,11,25,3,0,-8.1,1.12,0.139,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.309,71.58,137.31,0.98,0.8,786,0.6,11,5.1
+15751,2023,11,25,3,30,-8.3,1.12,0.139,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.309,72.7,131.72,0.98,0.8,786,0.6,11,5.1
+15752,2023,11,25,4,0,-8.5,1.11,0.13,0.61,0,0,0,0,7,-12.9,0,0,0,0,0.309,70.53,126.05,0.98,0.8,786,0.6,11,5
+15753,2023,11,25,4,30,-8.6,1.11,0.13,0.61,0,0,0,0,6,-12.9,0,0,0,0,0.309,71.18,120.35,0.98,0.8,787,0.6,12,5
+15754,2023,11,25,5,0,-8.8,1.12,0.119,0.61,0,0,0,0,7,-13.5,0,0,0,0,0.308,68.55,114.68,0.98,0.8,787,0.6,13,5
+15755,2023,11,25,5,30,-9,1.12,0.119,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.308,69.63,109.05,0.98,0.8,787,0.5,13,5
+15756,2023,11,25,6,0,-9.2,1.15,0.103,0.61,0,0,0,0,4,-14.2,0,0,0,0,0.308,66.9,103.52,0.98,0.8,787,0.5,14,4.9
+15757,2023,11,25,6,30,-9.5,1.15,0.103,0.61,0,0,0,0,4,-14.2,0,0,0,0,0.308,68.5,98.11,0.97,0.8,787,0.5,14,4.8
+15758,2023,11,25,7,0,-9.8,1.19,0.082,0.61,0,0,0,1,4,-15,0,0,14,0,0.308,65.93,92.86,0.97,0.8,788,0.5,15,4.8
+15759,2023,11,25,7,30,-9.6,1.19,0.082,0.61,20,204,29,7,4,-15,9,0,100,9,0.306,64.9,87.58,0.97,0.8,788,0.5,16,4.8
+15760,2023,11,25,8,0,-9.4,1.23,0.064,0.61,40,509,103,4,4,-15.1,29,0,57,29,0.305,63.47,82.91,0.97,0.8,788,0.5,16,4.9
+15761,2023,11,25,8,30,-8.8,1.23,0.064,0.61,52,678,188,0,4,-15,40,0,0,40,0.302,60.63,78.45,0.96,0.8,789,0.5,18,5
+15762,2023,11,25,9,0,-8.2,1.25,0.05,0.61,60,791,274,0,5,-14.7,43,0,0,43,0.299,59.59,74.33,0.96,0.8,789,0.4,19,5.1
+15763,2023,11,25,9,30,-7.5,1.25,0.05,0.61,66,859,351,0,5,-14.7,105,0,0,105,0.296,56.45,70.64,0.96,0.8,789,0.4,20,4.9
+15764,2023,11,25,10,0,-6.8,1.26,0.04,0.61,69,908,417,0,7,-14.1,96,0,0,96,0.293,56.07,67.46,0.95,0.8,789,0.4,21,4.8
+15765,2023,11,25,10,30,-6.1,1.26,0.04,0.61,70,941,470,0,7,-14.1,194,12,0,199,0.291,53.15,64.87,0.95,0.8,789,0.4,21,4.5
+15766,2023,11,25,11,0,-5.4,1.23,0.03,0.61,71,966,510,0,8,-13.4,247,18,7,255,0.289,53.31,62.94,0.95,0.8,789,0.4,20,4.2
+15767,2023,11,25,11,30,-4.9,1.23,0.03,0.61,72,976,534,0,4,-13.4,322,31,0,337,0.287,51.33,61.74,0.95,0.8,789,0.4,18,4
+15768,2023,11,25,12,0,-4.4,1.23,0.028,0.61,72,982,543,0,4,-12.7,364,65,0,395,0.286,52.23,61.32,0.95,0.8,789,0.4,16,3.7
+15769,2023,11,25,12,30,-4,1.23,0.028,0.61,70,979,534,0,4,-12.7,283,10,0,288,0.284,50.69,61.69,0.95,0.8,789,0.4,13,3.5
+15770,2023,11,25,13,0,-3.7,1.25,0.026,0.61,68,970,511,0,4,-12.3,291,16,0,298,0.283,51.19,62.83,0.95,0.8,789,0.5,10,3.3
+15771,2023,11,25,13,30,-3.6,1.25,0.026,0.61,64,957,473,0,4,-12.3,260,80,0,294,0.281,50.81,64.71,0.95,0.8,789,0.5,8,3.2
+15772,2023,11,25,14,0,-3.5,1.27,0.021,0.61,59,937,421,0,4,-12.1,203,2,0,204,0.28,51.27,67.26,0.95,0.8,789,0.5,5,3
+15773,2023,11,25,14,30,-3.7,1.27,0.021,0.61,54,904,357,0,4,-12.1,126,0,0,126,0.28,52.05,70.41,0.94,0.8,789,0.5,5,2.8
+15774,2023,11,25,15,0,-3.8,1.33,0.019,0.61,48,857,283,0,4,-11.8,101,0,0,101,0.279,53.85,74.06,0.94,0.8,790,0.4,5,2.6
+15775,2023,11,25,15,30,-4.6,1.33,0.019,0.61,40,784,201,0,4,-11.8,49,105,0,71,0.279,57.18,78.15,0.94,0.8,790,0.4,8,2.1
+15776,2023,11,25,16,0,-5.4,1.38,0.017,0.61,31,658,116,0,0,-12.6,31,658,0,116,0.279,57.03,82.59,0.94,0.8,790,0.4,11,1.7
+15777,2023,11,25,16,30,-6.5,1.38,0.017,0.61,20,386,38,0,0,-12.6,20,373,4,38,0.28,62.01,87.27,0.94,0.8,790,0.4,25,1.2
+15778,2023,11,25,17,0,-7.5,1.39,0.017,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.281,65.75,92.51,0.94,0.8,791,0.4,39,0.8
+15779,2023,11,25,17,30,-7.7,1.39,0.017,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.282,66.78,97.75,0.94,0.8,791,0.4,53,0.7
+15780,2023,11,25,18,0,-7.9,1.36,0.019,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.283,67.06,103.15,0.93,0.8,791,0.4,67,0.6
+15781,2023,11,25,18,30,-8.1,1.36,0.019,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.285,68.2,108.68,0.93,0.8,792,0.4,93,0.5
+15782,2023,11,25,19,0,-8.3,1.29,0.021,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.287,68.55,114.3,0.93,0.8,792,0.3,118,0.5
+15783,2023,11,25,19,30,-8.6,1.29,0.021,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.288,70.17,119.97,0.93,0.8,792,0.3,139,0.7
+15784,2023,11,25,20,0,-8.9,1.23,0.021,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.29,68.91,125.67,0.92,0.8,792,0.3,159,0.9
+15785,2023,11,25,20,30,-9.2,1.23,0.021,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.289,70.55,131.35,0.92,0.8,792,0.3,166,1.1
+15786,2023,11,25,21,0,-9.4,1.18,0.022,0.61,0,0,0,0,0,-14.1,0,0,0,0,0.288,68.77,136.96,0.92,0.8,792,0.3,173,1.4
+15787,2023,11,25,21,30,-9.6,1.18,0.022,0.61,0,0,0,0,0,-14.1,0,0,0,0,0.285,69.95,142.42,0.92,0.8,793,0.3,178,1.3
+15788,2023,11,25,22,0,-9.8,1.15,0.022,0.61,0,0,0,0,4,-14.1,0,0,0,0,0.283,71.11,147.63,0.93,0.8,793,0.3,182,1.2
+15789,2023,11,25,22,30,-9.8,1.15,0.022,0.61,0,0,0,0,4,-14.1,0,0,0,0,0.281,71.11,152.39,0.93,0.8,793,0.3,185,1.1
+15790,2023,11,25,23,0,-9.8,1.15,0.023,0.61,0,0,0,0,4,-14,0,0,0,0,0.279,71.3,156.42,0.93,0.8,793,0.3,188,1
+15791,2023,11,25,23,30,-9.7,1.15,0.023,0.61,0,0,0,0,4,-14,0,0,0,0,0.278,70.74,159.26,0.93,0.8,793,0.3,190,0.9
+15792,2023,11,26,0,0,-9.6,1.16,0.025,0.61,0,0,0,0,4,-14,0,0,0,0,0.278,70.47,160.36,0.93,0.8,793,0.3,192,0.8
+15793,2023,11,26,0,30,-9.6,1.16,0.025,0.61,0,0,0,0,4,-14,0,0,0,0,0.277,70.47,159.44,0.93,0.8,793,0.3,192,0.7
+15794,2023,11,26,1,0,-9.6,1.18,0.026,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.85,156.74,0.93,0.8,793,0.3,192,0.6
+15795,2023,11,26,1,30,-9.5,1.18,0.026,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.3,152.8,0.93,0.8,793,0.3,191,0.7
+15796,2023,11,26,2,0,-9.5,1.2,0.026,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.82,148.09,0.93,0.8,794,0.3,189,0.7
+15797,2023,11,26,2,30,-9.4,1.2,0.026,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.276,70.26,142.92,0.93,0.8,794,0.3,190,0.8
+15798,2023,11,26,3,0,-9.4,1.21,0.026,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.276,71.07,137.48,0.92,0.8,794,0.3,191,0.9
+15799,2023,11,26,3,30,-9.4,1.21,0.026,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.276,71.07,131.89,0.92,0.8,794,0.3,194,1
+15800,2023,11,26,4,0,-9.3,1.23,0.025,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.276,70.09,126.22,0.92,0.8,794,0.3,196,1.1
+15801,2023,11,26,4,30,-9.3,1.23,0.025,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.276,70.09,120.52,0.92,0.8,794,0.3,197,1.1
+15802,2023,11,26,5,0,-9.3,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.276,70.02,114.85,0.92,0.8,794,0.3,198,1.2
+15803,2023,11,26,5,30,-9.4,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.58,109.23,0.92,0.8,794,0.3,198,1.2
+15804,2023,11,26,6,0,-9.4,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.56,103.7,0.92,0.8,794,0.3,198,1.2
+15805,2023,11,26,6,30,-9.5,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,71.12,98.29,0.92,0.8,794,0.3,198,1.2
+15806,2023,11,26,7,0,-9.5,1.24,0.023,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.4,93.04,0.92,0.8,794,0.3,199,1.1
+15807,2023,11,26,7,30,-8.8,1.24,0.023,0.61,19,309,31,2,0,-13.9,15,169,29,22,0.277,66.64,87.76,0.92,0.8,794,0.3,205,1.3
+15808,2023,11,26,8,0,-8.1,1.23,0.023,0.61,32,632,108,3,4,-13.5,36,130,39,52,0.276,65.1,83.09,0.92,0.8,794,0.3,212,1.5
+15809,2023,11,26,8,30,-6.9,1.23,0.023,0.61,42,772,194,0,4,-13.5,75,0,0,75,0.275,59.33,78.64,0.92,0.8,794,0.3,222,1.5
+15810,2023,11,26,9,0,-5.8,1.22,0.024,0.61,50,855,278,0,4,-12,118,0,0,118,0.274,61.76,74.53,0.92,0.8,794,0.3,232,1.5
+15811,2023,11,26,9,30,-4.9,1.22,0.024,0.61,56,909,354,0,4,-12,162,1,0,162,0.273,57.69,70.84,0.92,0.8,794,0.3,241,1.5
+15812,2023,11,26,10,0,-3.9,1.21,0.024,0.61,61,945,420,0,4,-11.2,197,1,0,197,0.272,56.72,67.66,0.92,0.8,794,0.3,251,1.5
+15813,2023,11,26,10,30,-3.3,1.21,0.024,0.61,64,970,473,0,4,-11.2,222,1,0,222,0.272,54.24,65.07,0.92,0.8,794,0.3,256,1.5
+15814,2023,11,26,11,0,-2.7,1.21,0.024,0.61,67,986,512,0,4,-10.8,271,4,0,273,0.271,53.85,63.14,0.92,0.8,794,0.3,262,1.5
+15815,2023,11,26,11,30,-2.4,1.21,0.024,0.61,68,995,536,0,4,-10.8,314,13,0,320,0.271,52.67,61.94,0.92,0.8,794,0.3,262,1.5
+15816,2023,11,26,12,0,-2,1.21,0.024,0.61,69,998,545,0,4,-10.5,314,8,0,318,0.27,52.27,61.51,0.92,0.8,793,0.3,262,1.5
+15817,2023,11,26,12,30,-1.9,1.21,0.024,0.61,68,996,538,0,4,-10.5,295,4,0,297,0.27,51.88,61.87,0.92,0.8,793,0.3,259,1.6
+15818,2023,11,26,13,0,-1.7,1.22,0.024,0.61,67,987,515,0,4,-10.4,261,2,0,262,0.269,51.42,63,0.92,0.8,793,0.3,255,1.6
+15819,2023,11,26,13,30,-1.6,1.22,0.024,0.61,64,972,477,0,4,-10.4,230,1,0,230,0.268,51.04,64.87,0.92,0.8,793,0.3,254,1.7
+15820,2023,11,26,14,0,-1.6,1.23,0.024,0.61,61,948,425,0,4,-10.6,203,1,0,203,0.268,50.51,67.41,0.92,0.8,792,0.3,252,1.7
+15821,2023,11,26,14,30,-1.8,1.23,0.024,0.61,56,912,360,0,4,-10.6,151,0,0,151,0.268,51.25,70.54,0.92,0.8,792,0.3,253,1.7
+15822,2023,11,26,15,0,-2.1,1.25,0.025,0.61,51,859,285,0,4,-10.4,122,0,0,122,0.268,53.02,74.18,0.92,0.8,792,0.3,255,1.7
+15823,2023,11,26,15,30,-3.1,1.25,0.025,0.61,43,779,202,0,4,-10.4,73,268,0,128,0.268,57.1,78.26,0.92,0.8,792,0.3,248,1.3
+15824,2023,11,26,16,0,-4,1.27,0.024,0.61,34,647,116,0,0,-10.7,34,647,0,116,0.269,59.74,82.69,0.92,0.8,792,0.3,241,1
+15825,2023,11,26,16,30,-5.2,1.27,0.024,0.61,20,369,37,0,0,-10.7,20,369,7,37,0.27,65.39,87.35,0.91,0.8,792,0.3,227,1
+15826,2023,11,26,17,0,-6.4,1.27,0.023,0.61,0,0,0,0,0,-11.6,0,0,7,0,0.272,66.81,92.58,0.91,0.8,792,0.3,212,1
+15827,2023,11,26,17,30,-6.8,1.27,0.023,0.61,0,0,0,0,4,-11.5,0,0,0,0,0.273,68.98,97.82,0.91,0.8,793,0.3,211,1
+15828,2023,11,26,18,0,-7.1,1.27,0.021,0.61,0,0,0,0,4,-11.7,0,0,0,0,0.274,69.46,103.21,0.91,0.8,793,0.3,209,1.1
+15829,2023,11,26,18,30,-7.4,1.27,0.021,0.61,0,0,0,0,4,-11.7,0,0,0,0,0.275,71.08,108.73,0.91,0.8,793,0.3,211,1.1
+15830,2023,11,26,19,0,-7.7,1.27,0.019,0.61,0,0,0,0,4,-12.1,0,0,0,0,0.276,70.71,114.35,0.91,0.8,793,0.3,213,1.2
+15831,2023,11,26,19,30,-8,1.27,0.019,0.61,0,0,0,0,4,-12.1,0,0,0,0,0.277,72.37,120.03,0.91,0.8,793,0.3,213,1.2
+15832,2023,11,26,20,0,-8.3,1.28,0.019,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.278,72.13,125.72,0.91,0.8,794,0.3,212,1.2
+15833,2023,11,26,20,30,-8.6,1.28,0.019,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.279,73.84,131.4,0.91,0.8,794,0.3,209,1.2
+15834,2023,11,26,21,0,-8.8,1.29,0.019,0.61,0,0,0,0,4,-12.7,0,0,0,0,0.281,73.29,137.02,0.91,0.8,794,0.3,206,1.2
+15835,2023,11,26,21,30,-9,1.29,0.019,0.61,0,0,0,0,4,-12.7,0,0,0,0,0.283,74.44,142.49,0.91,0.8,794,0.3,205,1.1
+15836,2023,11,26,22,0,-9.1,1.29,0.019,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.284,74.14,147.7,0.91,0.8,794,0.3,205,1
+15837,2023,11,26,22,30,-9.2,1.29,0.019,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.285,74.73,152.49,0.91,0.8,794,0.3,204,1
+15838,2023,11,26,23,0,-9.2,1.3,0.02,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.287,74.29,156.55,0.91,0.8,795,0.3,202,0.9
+15839,2023,11,26,23,30,-9.3,1.3,0.02,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.287,74.88,159.41,0.91,0.8,795,0.3,200,0.8
+15840,2023,11,27,0,0,-9.3,1.31,0.02,0.61,0,0,0,0,8,-13,0,0,0,0,0.287,74.3,160.54,0.91,0.8,795,0.3,198,0.7
+15841,2023,11,27,0,30,-9.4,1.31,0.02,0.61,0,0,0,0,8,-13,0,0,0,0,0.287,74.89,159.64,0.91,0.8,795,0.3,193,0.6
+15842,2023,11,27,1,0,-9.5,1.3,0.02,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.287,74.62,156.94,0.91,0.8,795,0.3,188,0.6
+15843,2023,11,27,1,30,-9.6,1.3,0.02,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.288,75.2,153,0.91,0.8,795,0.4,187,0.6
+15844,2023,11,27,2,0,-9.7,1.3,0.019,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.288,75.32,148.28,0.91,0.8,795,0.4,185,0.6
+15845,2023,11,27,2,30,-9.7,1.3,0.019,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.288,75.32,143.1,0.91,0.8,795,0.4,189,0.6
+15846,2023,11,27,3,0,-9.8,1.31,0.019,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.288,75.85,137.65,0.91,0.8,795,0.4,193,0.6
+15847,2023,11,27,3,30,-9.8,1.31,0.019,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.289,75.85,132.06,0.91,0.8,795,0.4,193,0.5
+15848,2023,11,27,4,0,-9.8,1.31,0.018,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.289,75.96,126.38,0.91,0.8,795,0.4,193,0.5
+15849,2023,11,27,4,30,-9.8,1.31,0.018,0.61,0,0,0,0,4,-13.2,0,0,0,0,0.289,75.96,120.69,0.9,0.8,795,0.4,181,0.5
+15850,2023,11,27,5,0,-9.9,1.32,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.289,76.45,115.02,0.9,0.8,795,0.4,170,0.4
+15851,2023,11,27,5,30,-10,1.32,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.288,77.05,109.4,0.9,0.8,795,0.3,161,0.5
+15852,2023,11,27,6,0,-10,1.31,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.287,76.91,103.87,0.9,0.8,796,0.3,153,0.7
+15853,2023,11,27,6,30,-10.2,1.31,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.285,78.13,98.47,0.9,0.8,796,0.3,155,0.8
+15854,2023,11,27,7,0,-10.3,1.3,0.016,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.283,78.44,93.22,0.9,0.8,796,0.3,156,0.9
+15855,2023,11,27,7,30,-9.5,1.3,0.016,0.61,17,323,29,4,4,-13.3,12,91,57,15,0.281,73.65,87.93,0.9,0.8,796,0.3,162,0.9
+15856,2023,11,27,8,0,-8.8,1.3,0.016,0.61,29,650,105,4,4,-13.1,32,72,54,40,0.279,71.2,83.28,0.9,0.8,796,0.3,168,1
+15857,2023,11,27,8,30,-7.3,1.3,0.016,0.61,37,788,190,0,4,-13.1,57,0,0,57,0.277,63.37,78.83,0.9,0.8,796,0.3,181,1.1
+15858,2023,11,27,9,0,-5.8,1.3,0.015,0.61,45,870,274,0,4,-12.3,95,0,0,95,0.275,59.92,74.72,0.9,0.8,797,0.3,194,1.2
+15859,2023,11,27,9,30,-4.9,1.3,0.015,0.61,50,924,350,0,4,-12.3,122,0,0,122,0.273,55.97,71.04,0.9,0.8,797,0.3,203,1.3
+15860,2023,11,27,10,0,-4,1.29,0.015,0.61,53,960,415,0,4,-12.1,165,0,0,165,0.272,53.14,67.86,0.9,0.8,797,0.3,211,1.4
+15861,2023,11,27,10,30,-3.4,1.29,0.015,0.61,56,984,468,0,4,-12.1,202,0,0,202,0.271,50.81,65.27,0.9,0.8,797,0.3,216,1.5
+15862,2023,11,27,11,0,-2.7,1.25,0.015,0.61,59,999,507,0,4,-11.7,258,2,0,259,0.269,50.08,63.34,0.9,0.8,797,0.3,221,1.7
+15863,2023,11,27,11,30,-2.2,1.25,0.015,0.61,60,1008,531,0,4,-11.7,300,7,0,303,0.268,48.2,62.13,0.9,0.8,796,0.3,226,1.7
+15864,2023,11,27,12,0,-1.7,1.24,0.014,0.61,60,1012,540,0,4,-11.3,315,12,0,321,0.266,48.09,61.7,0.9,0.8,796,0.3,232,1.8
+15865,2023,11,27,12,30,-1.3,1.24,0.014,0.61,59,1010,532,0,4,-11.3,331,24,0,342,0.265,46.7,62.05,0.91,0.8,796,0.3,234,1.7
+15866,2023,11,27,13,0,-1,1.23,0.013,0.61,57,1003,510,0,4,-11,273,159,0,345,0.263,46.8,63.17,0.91,0.8,796,0.3,237,1.6
+15867,2023,11,27,13,30,-0.8,1.23,0.013,0.61,54,989,472,0,4,-11,206,326,0,344,0.263,46.12,65.02,0.91,0.8,796,0.3,236,1.5
+15868,2023,11,27,14,0,-0.7,1.2,0.013,0.61,52,967,421,0,0,-10.8,64,897,0,407,0.262,46.35,67.54,0.91,0.8,795,0.3,234,1.4
+15869,2023,11,27,14,30,-0.8,1.2,0.013,0.61,48,933,357,0,0,-10.8,48,933,0,357,0.263,46.68,70.66,0.9,0.8,795,0.3,230,1.4
+15870,2023,11,27,15,0,-1,1.16,0.013,0.61,43,883,282,0,0,-10.4,43,883,0,282,0.264,48.9,74.29,0.9,0.8,795,0.3,226,1.3
+15871,2023,11,27,15,30,-2,1.16,0.013,0.61,37,806,200,0,0,-10.4,37,806,0,200,0.266,52.69,78.36,0.9,0.8,796,0.3,218,1.1
+15872,2023,11,27,16,0,-3,1.12,0.013,0.61,29,676,114,0,0,-10,29,676,0,114,0.267,58.37,82.77,0.9,0.8,796,0.3,210,0.8
+15873,2023,11,27,16,30,-4.1,1.12,0.013,0.61,19,398,37,0,0,-10,19,398,0,37,0.269,63.37,87.42,0.9,0.8,796,0.3,206,0.9
+15874,2023,11,27,17,0,-5.1,1.1,0.014,0.61,0,0,0,0,0,-11.2,0,0,0,0,0.271,62.04,92.65,0.9,0.8,796,0.3,201,1
+15875,2023,11,27,17,30,-5.5,1.1,0.014,0.61,0,0,0,0,0,-11.2,0,0,0,0,0.273,63.95,97.88,0.91,0.8,796,0.3,203,1
+15876,2023,11,27,18,0,-5.8,1.09,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.274,64.67,103.27,0.91,0.8,796,0.4,204,1
+15877,2023,11,27,18,30,-6.1,1.09,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.275,66.25,108.78,0.91,0.8,797,0.4,208,1
+15878,2023,11,27,19,0,-6.5,1.08,0.014,0.61,0,0,0,0,4,-11.7,0,0,0,0,0.275,66.78,114.4,0.91,0.8,797,0.4,211,1
+15879,2023,11,27,19,30,-6.8,1.08,0.014,0.61,0,0,0,0,4,-11.7,0,0,0,0,0.276,68.33,120.07,0.91,0.8,797,0.4,214,1
+15880,2023,11,27,20,0,-7.1,1.08,0.015,0.61,0,0,0,0,4,-12.1,0,0,0,0,0.276,67.76,125.77,0.91,0.8,797,0.4,218,1
+15881,2023,11,27,20,30,-7.3,1.08,0.015,0.61,0,0,0,0,4,-12.1,0,0,0,0,0.276,68.81,131.45,0.91,0.8,797,0.4,219,1
+15882,2023,11,27,21,0,-7.5,1.1,0.016,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.276,68.17,137.07,0.91,0.8,797,0.4,220,1
+15883,2023,11,27,21,30,-7.8,1.1,0.016,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.277,69.77,142.54,0.91,0.8,797,0.4,218,1
+15884,2023,11,27,22,0,-8,1.11,0.016,0.61,0,0,0,0,4,-12.6,0,0,0,0,0.277,69.58,147.78,0.91,0.8,797,0.4,216,1.1
+15885,2023,11,27,22,30,-8.2,1.11,0.016,0.61,0,0,0,0,4,-12.6,0,0,0,0,0.278,70.67,152.58,0.91,0.8,797,0.4,214,1.1
+15886,2023,11,27,23,0,-8.4,1.12,0.016,0.61,0,0,0,0,4,-12.8,0,0,0,0,0.279,70.72,156.66,0.91,0.8,797,0.4,212,1.1
+15887,2023,11,27,23,30,-8.6,1.12,0.016,0.61,0,0,0,0,4,-12.8,0,0,0,0,0.279,71.83,159.56,0.91,0.8,797,0.4,211,1.2
+15888,2023,11,28,0,0,-8.7,1.13,0.016,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28,71.47,160.72,0.91,0.8,797,0.4,210,1.2
+15889,2023,11,28,0,30,-8.9,1.13,0.016,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28,72.6,159.83,0.91,0.8,797,0.4,210,1.2
+15890,2023,11,28,1,0,-9.1,1.12,0.016,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.28,72.55,157.14,0.91,0.8,797,0.3,210,1.3
+15891,2023,11,28,1,30,-9.3,1.12,0.016,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.279,73.7,153.18,0.91,0.8,797,0.3,210,1.3
+15892,2023,11,28,2,0,-9.4,1.11,0.015,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.279,73.06,148.46,0.9,0.8,797,0.3,210,1.3
+15893,2023,11,28,2,30,-9.6,1.11,0.015,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.279,74.22,143.27,0.9,0.8,797,0.3,210,1.3
+15894,2023,11,28,3,0,-9.7,1.11,0.015,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.279,73.81,137.82,0.9,0.8,797,0.3,209,1.3
+15895,2023,11,28,3,30,-9.8,1.11,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.279,74.39,132.23,0.9,0.8,797,0.3,209,1.2
+15896,2023,11,28,4,0,-9.9,1.1,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.279,74.07,126.55,0.9,0.8,797,0.3,209,1.2
+15897,2023,11,28,4,30,-10,1.1,0.015,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.28,74.66,120.86,0.9,0.8,797,0.2,209,1.2
+15898,2023,11,28,5,0,-10.1,1.1,0.014,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.281,74.38,115.18,0.9,0.8,797,0.2,209,1.1
+15899,2023,11,28,5,30,-10.1,1.1,0.014,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.283,74.38,109.57,0.9,0.8,797,0.2,209,1.1
+15900,2023,11,28,6,0,-10.2,1.1,0.014,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.284,74.05,104.04,0.9,0.8,797,0.2,210,1.1
+15901,2023,11,28,6,30,-10.2,1.1,0.014,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.285,74.05,98.64,0.9,0.8,797,0.2,211,1
+15902,2023,11,28,7,0,-10.2,1.1,0.014,0.61,0,0,0,0,4,-14.1,0,0,0,0,0.286,73.2,93.4,0.9,0.8,797,0.2,213,1
+15903,2023,11,28,7,30,-9,1.1,0.014,0.61,17,329,28,2,0,-14.1,14,227,21,22,0.287,66.6,88.1,0.9,0.8,797,0.2,216,1.1
+15904,2023,11,28,8,0,-7.9,1.1,0.014,0.61,28,664,104,2,0,-13.1,28,372,21,70,0.287,66.05,83.46,0.9,0.8,798,0.2,219,1.2
+15905,2023,11,28,8,30,-6.2,1.1,0.014,0.61,37,803,190,0,4,-13.1,62,27,0,67,0.287,57.95,79.02,0.9,0.8,798,0.2,220,1.4
+15906,2023,11,28,9,0,-4.6,1.1,0.014,0.61,43,886,274,0,4,-12,105,0,0,105,0.288,56.43,74.91,0.9,0.8,798,0.2,222,1.7
+15907,2023,11,28,9,30,-3.3,1.1,0.014,0.61,48,939,350,0,4,-12,159,1,0,159,0.288,51.19,71.23,0.9,0.8,798,0.2,225,1.9
+15908,2023,11,28,10,0,-1.9,1.1,0.014,0.61,52,974,416,0,4,-11.1,205,2,0,206,0.288,49.3,68.06,0.9,0.8,798,0.2,229,2.2
+15909,2023,11,28,10,30,-1,1.1,0.014,0.61,56,996,470,0,4,-11.1,264,7,0,267,0.288,46.15,65.46,0.9,0.8,798,0.2,228,2.2
+15910,2023,11,28,11,0,-0.2,1,0.015,0.61,60,1010,510,0,4,-10.6,326,28,0,338,0.289,45.44,63.53,0.9,0.8,797,0.2,227,2.3
+15911,2023,11,28,11,30,0.5,1,0.015,0.61,61,1019,534,0,4,-10.6,323,203,0,417,0.289,43.19,62.32,0.9,0.8,797,0.2,227,2.3
+15912,2023,11,28,12,0,1.1,1.01,0.015,0.61,61,1023,543,0,4,-10.3,296,320,0,447,0.29,42.22,61.87,0.9,0.8,797,0.2,226,2.3
+15913,2023,11,28,12,30,1.4,1.01,0.015,0.61,60,1021,536,0,4,-10.4,249,457,0,462,0.291,41.27,62.21,0.9,0.8,796,0.2,227,2.3
+15914,2023,11,28,13,0,1.8,1.02,0.015,0.61,59,1013,514,0,0,-10.3,69,978,0,508,0.291,40.35,63.32,0.9,0.8,796,0.2,228,2.2
+15915,2023,11,28,13,30,1.7,1.02,0.015,0.61,56,999,476,0,0,-10.3,56,999,0,476,0.292,40.64,65.16,0.9,0.8,796,0.2,225,2.1
+15916,2023,11,28,14,0,1.7,1.09,0.014,0.61,52,978,424,0,0,-10.1,52,978,0,424,0.293,41.15,67.67,0.9,0.8,796,0.2,222,2
+15917,2023,11,28,14,30,1.3,1.09,0.014,0.61,49,944,360,0,0,-10.1,49,944,0,360,0.294,42.29,70.78,0.9,0.8,795,0.2,218,1.7
+15918,2023,11,28,15,0,0.9,1.1,0.013,0.61,43,895,284,0,0,-9.4,43,895,0,284,0.295,46.27,74.4,0.9,0.8,795,0.2,214,1.5
+15919,2023,11,28,15,30,-0.4,1.1,0.013,0.61,37,818,201,0,0,-9.4,37,818,0,201,0.295,50.83,78.45,0.9,0.8,795,0.2,215,1.1
+15920,2023,11,28,16,0,-1.6,1.1,0.013,0.61,29,689,115,0,0,-10,29,689,0,115,0.296,52.81,82.85,0.9,0.8,795,0.2,216,0.7
+15921,2023,11,28,16,30,-2.3,1.1,0.013,0.61,18,360,34,0,0,-10,18,360,0,34,0.296,55.61,87.49,0.9,0.8,795,0.2,215,0.6
+15922,2023,11,28,17,0,-3.1,1.1,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.297,52.56,92.72,0.9,0.78,795,0.2,214,0.5
+15923,2023,11,28,17,30,-3.4,1.1,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.296,53.75,97.93,0.9,0.78,795,0.2,213,0.4
+15924,2023,11,28,18,0,-3.8,1.11,0.014,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.296,54.72,103.31,0.9,0.78,795,0.2,213,0.3
+15925,2023,11,28,18,30,-4.1,1.11,0.014,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.296,55.96,108.83,0.9,0.78,795,0.2,263,0.2
+15926,2023,11,28,19,0,-4.5,1.12,0.014,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.296,56.85,114.44,0.9,0.78,795,0.2,314,0.2
+15927,2023,11,28,19,30,-4.9,1.12,0.014,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.296,58.59,120.11,0.9,0.78,795,0.2,322,0.2
+15928,2023,11,28,20,0,-5.2,1.13,0.014,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.296,58.38,125.8,0.9,0.78,794,0.2,330,0.3
+15929,2023,11,28,20,30,-5.4,1.13,0.014,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.296,59.27,131.49,0.9,0.78,794,0.2,325,0.4
+15930,2023,11,28,21,0,-5.6,1.14,0.014,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.296,58.47,137.11,0.9,0.78,794,0.2,319,0.5
+15931,2023,11,28,21,30,-5.8,1.14,0.014,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.296,59.29,142.6,0.9,0.78,793,0.2,312,0.5
+15932,2023,11,28,22,0,-5.9,1.16,0.013,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.296,58.52,147.84,0.9,0.78,793,0.2,305,0.5
+15933,2023,11,28,22,30,-6.1,1.16,0.013,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.296,59.42,152.66,0.9,0.78,793,0.2,293,0.5
+15934,2023,11,28,23,0,-6.3,1.16,0.012,0.61,0,0,0,0,0,-13,0,0,0,0,0.296,59.02,156.77,0.9,0.78,793,0.2,281,0.6
+15935,2023,11,28,23,30,-6.5,1.16,0.012,0.61,0,0,0,0,0,-13,0,0,0,0,0.296,59.86,159.71,0.9,0.78,792,0.2,268,0.6
+15936,2023,11,29,0,0,-6.7,1.15,0.012,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.295,59.4,160.9,0.9,0.78,792,0.2,256,0.7
+15937,2023,11,29,0,30,-6.9,1.15,0.012,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.295,60.32,160.02,0.9,0.78,792,0.2,248,0.7
+15938,2023,11,29,1,0,-7.1,1.14,0.011,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.295,60.13,157.33,0.9,0.78,792,0.2,240,0.8
+15939,2023,11,29,1,30,-7.5,1.14,0.011,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.295,61.93,153.37,0.9,0.78,791,0.2,232,0.9
+15940,2023,11,29,2,0,-7.9,1.14,0.011,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.295,63.05,148.64,0.9,0.78,791,0.2,225,1
+15941,2023,11,29,2,30,-8.4,1.14,0.011,0.61,0,0,0,0,4,-13.7,0,0,0,0,0.296,65.55,143.45,0.9,0.78,791,0.2,222,1.1
+15942,2023,11,29,3,0,-8.9,1.14,0.011,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.296,67.7,137.99,0.9,0.78,791,0.2,219,1.2
+15943,2023,11,29,3,30,-9.3,1.14,0.011,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.296,69.85,132.39,0.9,0.78,791,0.2,218,1.2
+15944,2023,11,29,4,0,-9.7,1.15,0.011,0.61,0,0,0,0,4,-13.9,0,0,29,0,0.297,71.59,126.72,0.9,0.78,791,0.2,218,1.2
+15945,2023,11,29,4,30,-10,1.15,0.011,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.297,73.21,121.02,0.9,0.78,790,0.2,218,1.3
+15946,2023,11,29,5,0,-10.4,1.17,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.297,74.98,115.35,0.9,0.78,790,0.2,218,1.3
+15947,2023,11,29,5,30,-10.6,1.17,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,76.18,109.73,0.9,0.78,790,0.2,218,1.3
+15948,2023,11,29,6,0,-10.8,1.19,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,77.13,104.21,0.9,0.78,790,0.2,219,1.3
+15949,2023,11,29,6,30,-10.9,1.19,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,77.75,98.81,0.9,0.78,790,0.2,219,1.3
+15950,2023,11,29,7,0,-11.1,1.21,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.299,79.11,93.58,0.9,0.78,790,0.2,220,1.3
+15951,2023,11,29,7,30,-9.7,1.21,0.011,0.61,15,284,24,2,0,-14,12,119,36,16,0.298,70.8,88.27,0.9,0.78,790,0.2,223,1.4
+15952,2023,11,29,8,0,-8.4,1.22,0.011,0.61,26,670,100,3,4,-13.2,32,211,46,55,0.298,68.24,83.64,0.9,0.78,790,0.2,225,1.6
+15953,2023,11,29,8,30,-6.8,1.22,0.011,0.61,35,807,186,0,4,-13.2,26,0,0,26,0.298,60.3,79.2,0.9,0.78,790,0.2,225,1.9
+15954,2023,11,29,9,0,-5.2,1.23,0.012,0.61,42,888,270,0,4,-12,56,0,7,56,0.297,58.67,75.1,0.9,0.78,790,0.2,224,2.2
+15955,2023,11,29,9,30,-3.8,1.23,0.012,0.61,46,940,346,0,4,-12,118,0,0,118,0.297,52.8,71.42,0.91,0.78,790,0.2,225,2.5
+15956,2023,11,29,10,0,-2.4,1.23,0.013,0.61,51,968,410,0,4,-11.4,198,2,0,199,0.296,50.02,68.24,0.91,0.78,789,0.3,227,2.8
+15957,2023,11,29,10,30,-1.4,1.23,0.013,0.61,54,983,459,0,4,-11.4,253,9,0,257,0.295,46.47,65.65,0.91,0.78,789,0.3,227,3
+15958,2023,11,29,11,0,-0.3,1.24,0.014,0.61,57,998,499,0,4,-11.1,300,21,0,309,0.294,44.06,63.71,0.91,0.78,789,0.3,227,3.2
+15959,2023,11,29,11,30,0.4,1.24,0.014,0.61,58,1007,523,0,4,-11.1,337,60,0,365,0.293,41.83,62.5,0.91,0.78,788,0.3,227,3.3
+15960,2023,11,29,12,0,1.1,1.25,0.014,0.61,58,1010,532,0,4,-11,349,73,0,383,0.292,40.17,62.04,0.91,0.78,787,0.3,228,3.5
+15961,2023,11,29,12,30,1.5,1.25,0.014,0.61,59,1005,525,0,4,-11,315,32,0,330,0.292,39.03,62.37,0.92,0.78,787,0.3,229,3.5
+15962,2023,11,29,13,0,1.8,1.25,0.016,0.61,58,987,499,0,8,-11,242,24,0,253,0.291,38.17,63.47,0.92,0.78,787,0.4,231,3.6
+15963,2023,11,29,13,30,1.7,1.25,0.016,0.61,57,970,462,0,4,-11,235,86,0,271,0.291,38.39,65.3,0.92,0.78,786,0.4,232,3.5
+15964,2023,11,29,14,0,1.5,1.24,0.017,0.61,55,945,412,0,4,-10.9,224,19,0,231,0.291,39.25,67.8,0.93,0.78,786,0.4,234,3.4
+15965,2023,11,29,14,30,1,1.24,0.017,0.61,51,909,349,0,4,-10.9,159,352,0,274,0.292,40.68,70.89,0.93,0.78,786,0.4,234,2.9
+15966,2023,11,29,15,0,0.4,1.24,0.018,0.61,46,857,275,0,4,-10.2,140,292,0,218,0.294,45.04,74.49,0.93,0.78,786,0.4,235,2.5
+15967,2023,11,29,15,30,-0.6,1.24,0.018,0.61,39,772,193,0,0,-10.2,70,427,0,155,0.296,48.43,78.53,0.93,0.78,786,0.5,233,1.8
+15968,2023,11,29,16,0,-1.6,1.24,0.018,0.61,31,633,109,5,8,-9.3,53,159,71,73,0.297,55.76,82.93,0.93,0.78,785,0.5,231,1.2
+15969,2023,11,29,16,30,-2.2,1.24,0.018,0.61,19,315,32,6,4,-9.3,17,51,89,19,0.3,58.27,87.55,0.93,0.78,785,0.5,227,0.9
+15970,2023,11,29,17,0,-2.8,1.25,0.018,0.61,0,0,0,1,0,-9.4,0,0,14,0,0.302,60.53,92.77,0.93,0.74,785,0.5,222,0.7
+15971,2023,11,29,17,30,-3.1,1.25,0.018,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.305,61.9,97.98,0.93,0.74,785,0.5,218,0.7
+15972,2023,11,29,18,0,-3.3,1.28,0.018,0.61,0,0,0,0,0,-9.7,0,0,0,0,0.307,61.39,103.36,0.93,0.74,785,0.5,213,0.6
+15973,2023,11,29,18,30,-3.7,1.28,0.018,0.61,0,0,0,0,0,-9.7,0,0,0,0,0.309,63.25,108.86,0.93,0.74,785,0.5,214,0.6
+15974,2023,11,29,19,0,-4,1.3,0.018,0.61,0,0,0,0,8,-10.2,0,0,0,0,0.311,62.15,114.47,0.93,0.74,785,0.5,215,0.5
+15975,2023,11,29,19,30,-4.4,1.3,0.018,0.61,0,0,0,0,8,-10.2,0,0,0,0,0.312,64.05,120.14,0.92,0.74,785,0.5,216,0.5
+15976,2023,11,29,20,0,-4.7,1.32,0.017,0.61,0,0,0,0,8,-10.6,0,0,0,0,0.313,63.46,125.84,0.92,0.74,785,0.5,218,0.5
+15977,2023,11,29,20,30,-4.9,1.32,0.017,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.314,64.34,131.52,0.92,0.74,784,0.5,222,0.5
+15978,2023,11,29,21,0,-5.2,1.34,0.017,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.314,64.48,137.15,0.92,0.74,784,0.5,226,0.5
+15979,2023,11,29,21,30,-5.4,1.34,0.017,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.315,65.47,142.64,0.92,0.74,784,0.5,233,0.4
+15980,2023,11,29,22,0,-5.6,1.33,0.018,0.61,0,0,0,0,5,-11.1,0,0,0,0,0.315,65.06,147.89,0.93,0.74,784,0.5,240,0.4
+15981,2023,11,29,22,30,-5.7,1.33,0.018,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.315,65.56,152.74,0.93,0.74,784,0.5,247,0.4
+15982,2023,11,29,23,0,-5.9,1.33,0.019,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.315,65.31,156.87,0.93,0.74,784,0.5,254,0.4
+15983,2023,11,29,23,30,-6,1.33,0.019,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.315,65.73,159.84,0.93,0.74,783,0.5,262,0.3
+15984,2023,11,30,0,0,-6.1,1.34,0.019,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.315,64.96,161.06,0.93,0.74,783,0.5,270,0.3
+15985,2023,11,30,0,30,-6.2,1.34,0.019,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.315,65.46,160.21,0.93,0.74,783,0.5,304,0.2
+15986,2023,11,30,1,0,-6.4,1.34,0.019,0.61,0,0,0,0,4,-11.9,0,0,0,0,0.315,65.21,157.51,0.93,0.74,783,0.5,338,0.1
+15987,2023,11,30,1,30,-6.4,1.34,0.019,0.61,0,0,0,0,4,-11.9,0,0,0,0,0.315,65.21,153.55,0.93,0.74,783,0.5,199,0.2
+15988,2023,11,30,2,0,-6.5,1.34,0.02,0.61,0,0,0,0,0,-12,0,0,0,0,0.315,64.72,148.81,0.93,0.74,782,0.5,59,0.3
+15989,2023,11,30,2,30,-6.4,1.34,0.02,0.61,0,0,0,0,0,-12,0,0,0,0,0.315,64.23,143.62,0.93,0.74,782,0.6,68,0.3
+15990,2023,11,30,3,0,-6.4,1.32,0.021,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.315,63.8,138.16,0.94,0.74,782,0.6,77,0.4
+15991,2023,11,30,3,30,-6.3,1.32,0.021,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.315,63.32,132.56,0.94,0.74,782,0.6,77,0.4
+15992,2023,11,30,4,0,-6.2,1.31,0.022,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.315,63.04,126.88,0.94,0.74,782,0.6,77,0.5
+15993,2023,11,30,4,30,-6.1,1.31,0.022,0.61,0,0,0,0,7,-12.1,0,0,0,0,0.316,62.56,121.19,0.94,0.74,782,0.6,72,0.5
+15994,2023,11,30,5,0,-6,1.31,0.023,0.61,0,0,0,0,7,-12,0,0,0,0,0.316,62.64,115.51,0.94,0.74,782,0.6,68,0.5
+15995,2023,11,30,5,30,-6,1.31,0.023,0.61,0,0,0,0,7,-12,0,0,0,0,0.315,62.64,109.9,0.94,0.74,782,0.6,61,0.6
+15996,2023,11,30,6,0,-6,1.33,0.022,0.61,0,0,0,0,7,-12,0,0,0,0,0.314,62.57,104.38,0.94,0.74,782,0.6,55,0.6
+15997,2023,11,30,6,30,-5.9,1.33,0.022,0.61,0,0,0,0,7,-12,0,0,0,0,0.312,62.09,98.98,0.94,0.74,782,0.6,44,0.5
+15998,2023,11,30,7,0,-5.9,1.34,0.023,0.61,0,0,0,0,7,-12.1,0,0,0,0,0.309,61.74,93.75,0.94,0.74,782,0.6,34,0.5
+15999,2023,11,30,7,30,-5.3,1.34,0.023,0.61,15,219,21,6,7,-12.1,8,0,86,8,0.307,58.99,88.44,0.94,0.74,782,0.6,194,0.6
+16000,2023,11,30,8,0,-4.7,1.33,0.025,0.61,30,567,91,5,7,-11,22,0,71,22,0.304,61.19,83.82,0.94,0.74,782,0.6,354,0.7
+16001,2023,11,30,8,30,-3.9,1.33,0.025,0.61,40,716,172,0,7,-11,40,0,0,40,0.303,57.62,79.38,0.95,0.74,782,0.6,346,1
+16002,2023,11,30,9,0,-3.1,1.33,0.028,0.61,49,803,253,0,7,-10.7,108,17,0,112,0.302,55.83,75.28,0.95,0.74,782,0.6,337,1.3
+16003,2023,11,30,9,30,-2.1,1.33,0.028,0.61,56,857,327,0,8,-10.7,163,34,0,174,0.301,51.85,71.6,0.95,0.74,782,0.6,326,1.3
+16004,2023,11,30,10,0,-1.1,1.34,0.036,0.61,64,890,391,0,8,-9.9,197,20,7,204,0.3,51.28,68.43,0.95,0.74,782,0.6,315,1.3
+16005,2023,11,30,10,30,-0.3,1.34,0.036,0.61,70,909,442,0,4,-9.9,188,2,0,189,0.299,48.31,65.83,0.95,0.74,781,0.6,302,1.4
+16006,2023,11,30,11,0,0.5,1.37,0.047,0.61,75,917,479,0,4,-9.1,175,0,0,175,0.298,48.53,63.89,0.95,0.74,781,0.7,289,1.4
+16007,2023,11,30,11,30,0.9,1.37,0.047,0.61,80,920,502,0,5,-9.1,258,13,0,264,0.298,47.15,62.67,0.96,0.74,781,0.7,286,1.5
+16008,2023,11,30,12,0,1.2,1.38,0.058,0.61,83,913,509,0,5,-8.2,275,20,0,284,0.298,49.65,62.21,0.96,0.74,781,0.7,282,1.5
+16009,2023,11,30,12,30,1.3,1.38,0.058,0.61,84,906,502,0,5,-8.2,270,10,0,275,0.299,49.23,62.53,0.96,0.74,780,0.7,282,1.6
+16010,2023,11,30,13,0,1.4,1.35,0.065,0.61,85,890,480,0,5,-7.5,221,20,0,230,0.3,51.48,63.62,0.96,0.74,780,0.7,281,1.6
+16011,2023,11,30,13,30,1.2,1.35,0.065,0.61,82,869,443,0,5,-7.5,289,46,0,308,0.301,52.22,65.43,0.96,0.74,780,0.7,286,1.6
+16012,2023,11,30,14,0,0.9,1.32,0.069,0.61,78,837,393,0,5,-7,250,67,0,275,0.302,55.56,67.91,0.97,0.74,780,0.7,290,1.6
+16013,2023,11,30,14,30,0.5,1.32,0.069,0.61,73,790,330,0,0,-7,139,394,0,267,0.302,57.19,70.99,0.97,0.74,780,0.7,300,1.5
+16014,2023,11,30,15,0,0.1,1.31,0.075,0.61,66,720,257,0,0,-6.4,78,651,0,251,0.302,61.48,74.58,0.97,0.74,780,0.7,310,1.3
+16015,2023,11,30,15,30,-0.7,1.31,0.075,0.61,55,623,178,0,4,-6.4,73,198,0,112,0.301,65.16,78.61,0.97,0.74,780,0.7,322,1
+16016,2023,11,30,16,0,-1.5,1.33,0.077,0.61,41,468,98,5,4,-5.9,30,0,71,30,0.3,72.14,83,0.96,0.74,780,0.7,334,0.6
+16017,2023,11,30,16,30,-2,1.33,0.077,0.61,20,192,28,7,8,-5.9,16,0,100,16,0.3,74.94,87.61,0.96,0.74,781,0.7,346,0.6
+16018,2023,11,30,17,0,-2.6,1.35,0.075,0.63,0,0,0,1,7,-6.4,0,0,14,0,0.3,75.34,92.82,0.96,0.75,781,0.7,357,0.6
+16019,2023,11,30,17,30,-2.8,1.35,0.075,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.299,76.46,98.02,0.96,0.75,781,0.6,187,0.6
+16020,2023,11,30,18,0,-3.1,1.38,0.071,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.299,76.16,103.39,0.95,0.75,781,0.6,16,0.7
+16021,2023,11,30,18,30,-3.3,1.38,0.071,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.299,77.3,108.9,0.95,0.75,781,0.6,23,0.6
+16022,2023,11,30,19,0,-3.6,1.38,0.067,0.63,0,0,0,0,4,-7,0,0,0,0,0.299,77.46,114.5,0.95,0.75,782,0.6,30,0.6
+16023,2023,11,30,19,30,-3.7,1.38,0.067,0.63,0,0,0,0,4,-7,0,0,0,0,0.299,78.04,120.16,0.95,0.75,782,0.6,41,0.5
+16024,2023,11,30,20,0,-3.7,1.36,0.067,0.63,0,0,0,0,7,-7,0,0,0,0,0.299,77.59,125.86,0.95,0.75,782,0.6,52,0.5
+16025,2023,11,30,20,30,-3.8,1.36,0.067,0.63,0,0,0,0,7,-7,0,0,0,0,0.299,78.17,131.55,0.95,0.75,782,0.6,69,0.5
+16026,2023,11,30,21,0,-3.9,1.36,0.066,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,79.64,137.18,0.95,0.75,782,0.6,86,0.4
+16027,2023,11,30,21,30,-4.1,1.36,0.066,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,80.84,142.68,0.95,0.75,782,0.6,98,0.5
+16028,2023,11,30,22,0,-4.2,1.37,0.064,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.3,80.01,147.94,0.95,0.75,782,0.6,111,0.5
+16029,2023,11,30,22,30,-4.5,1.37,0.064,0.63,0,0,0,0,0,-7.1,0,0,0,0,0.3,81.84,152.8,0.95,0.75,782,0.6,120,0.6
+16030,2023,11,30,23,0,-4.8,1.38,0.065,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,83.29,156.97,0.95,0.75,782,0.6,128,0.6
+16031,2023,11,30,23,30,-5.1,1.38,0.065,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.3,85.2,159.96,0.95,0.75,782,0.6,133,0.7
+16032,2023,12,1,0,0,-5.3,1.39,0.069,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,86.66,161.22,0.95,0.75,782,0.6,138,0.7
+16033,2023,12,1,0,30,-5.6,1.39,0.069,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,88.54,160.38,0.95,0.75,781,0.6,140,0.7
+16034,2023,12,1,1,0,-5.8,1.39,0.075,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.3,90.71,157.69,0.95,0.75,781,0.6,142,0.8
+16035,2023,12,1,1,30,-5.9,1.39,0.075,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.3,91.4,153.73,0.95,0.75,781,0.6,144,0.7
+16036,2023,12,1,2,0,-6.1,1.39,0.084,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,93.75,148.98,0.96,0.75,781,0.6,145,0.7
+16037,2023,12,1,2,30,-6.1,1.39,0.084,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.301,93.75,143.78,0.96,0.75,781,0.6,151,0.5
+16038,2023,12,1,3,0,-6.2,1.39,0.091,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.302,95.16,138.32,0.96,0.75,781,0.6,158,0.4
+16039,2023,12,1,3,30,-6.2,1.39,0.091,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.303,95.16,132.72,0.96,0.75,781,0.6,175,0.3
+16040,2023,12,1,4,0,-6.3,1.38,0.095,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.304,95.83,127.04,0.96,0.75,781,0.6,192,0.2
+16041,2023,12,1,4,30,-6.3,1.38,0.095,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.305,95.83,121.35,0.96,0.75,781,0.6,203,0.2
+16042,2023,12,1,5,0,-6.4,1.39,0.096,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.306,96.02,115.68,0.96,0.75,781,0.6,214,0.2
+16043,2023,12,1,5,30,-6.5,1.39,0.096,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.307,96.75,110.06,0.96,0.75,781,0.6,207,0.2
+16044,2023,12,1,6,0,-6.7,1.4,0.093,0.63,0,0,0,0,7,-7,0,0,0,0,0.309,97.58,104.54,0.96,0.75,782,0.6,200,0.2
+16045,2023,12,1,6,30,-6.8,1.4,0.093,0.63,0,0,0,0,7,-7,0,0,0,0,0.311,98.33,99.15,0.96,0.75,782,0.5,198,0.3
+16046,2023,12,1,7,0,-6.9,1.4,0.092,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.313,97.88,93.92,0.96,0.75,782,0.5,195,0.4
+16047,2023,12,1,7,30,-6.5,1.4,0.092,0.63,15,122,18,5,7,-7.2,11,0,71,11,0.316,94.92,88.6,0.96,0.75,782,0.5,195,0.8
+16048,2023,12,1,8,0,-6.1,1.41,0.095,0.63,40,404,82,5,7,-7.1,54,11,71,55,0.318,92.51,83.99,0.96,0.75,782,0.5,196,1.2
+16049,2023,12,1,8,30,-5.2,1.41,0.095,0.63,56,577,161,0,7,-7.1,96,23,0,100,0.321,86.39,79.56,0.95,0.75,782,0.5,198,1.6
+16050,2023,12,1,9,0,-4.3,1.43,0.095,0.63,69,686,241,0,7,-6.9,153,59,0,168,0.324,81.91,75.46,0.95,0.75,782,0.5,201,2
+16051,2023,12,1,9,30,-3.6,1.43,0.095,0.63,78,760,316,0,7,-6.9,174,43,0,187,0.328,77.72,71.78,0.95,0.75,782,0.5,205,2.4
+16052,2023,12,1,10,0,-2.8,1.48,0.09,0.63,84,813,381,0,7,-7.1,231,84,0,262,0.332,72.23,68.61,0.95,0.75,782,0.5,209,2.7
+16053,2023,12,1,10,30,-2.3,1.48,0.09,0.63,91,840,433,0,7,-7.1,264,174,0,335,0.336,69.61,66.01,0.95,0.75,782,0.5,214,3.1
+16054,2023,12,1,11,0,-1.8,1.5,0.1,0.63,98,854,472,0,7,-7.3,275,208,0,366,0.339,66.28,64.06,0.95,0.75,782,0.5,219,3.5
+16055,2023,12,1,11,30,-1.6,1.5,0.1,0.63,104,857,495,0,4,-7.3,298,287,0,429,0.341,65.31,62.84,0.95,0.75,782,0.5,222,3.8
+16056,2023,12,1,12,0,-1.3,1.52,0.12,0.63,109,849,503,0,8,-7.3,279,334,0,434,0.343,63.54,62.37,0.95,0.75,781,0.5,226,4.1
+16057,2023,12,1,12,30,-1.2,1.52,0.12,0.63,114,831,495,0,7,-7.3,290,300,0,428,0.342,63.08,62.68,0.95,0.75,781,0.5,227,4.2
+16058,2023,12,1,13,0,-1.1,1.56,0.15,0.63,118,801,472,0,7,-7.4,303,234,0,406,0.341,62.36,63.75,0.95,0.75,781,0.5,228,4.3
+16059,2023,12,1,13,30,-1.1,1.56,0.15,0.63,121,753,433,0,7,-7.4,285,234,0,382,0.337,62.36,65.55,0.95,0.75,781,0.5,228,4.3
+16060,2023,12,1,14,0,-1.1,1.57,0.209,0.63,124,682,379,0,7,-7.4,248,274,0,351,0.333,62.47,68.02,0.95,0.75,781,0.5,228,4.3
+16061,2023,12,1,14,30,-1.3,1.57,0.209,0.63,119,605,315,0,7,-7.4,207,298,0,304,0.327,63.39,71.09,0.95,0.75,781,0.5,227,4.1
+16062,2023,12,1,15,0,-1.5,1.6,0.274,0.63,110,495,241,0,7,-7.3,151,321,0,236,0.322,64.5,74.66,0.95,0.75,781,0.5,227,3.9
+16063,2023,12,1,15,30,-2,1.6,0.274,0.63,89,371,162,0,0,-7.3,89,371,21,162,0.32,66.92,78.68,0.95,0.75,781,0.6,224,3.4
+16064,2023,12,1,16,0,-2.4,1.63,0.345,0.63,59,210,84,0,0,-7.4,59,210,0,84,0.317,68.74,83.06,0.95,0.75,781,0.6,222,2.9
+16065,2023,12,1,16,30,-2.8,1.63,0.345,0.63,19,59,21,0,0,-7.4,19,59,0,21,0.319,70.81,87.66,0.95,0.75,781,0.6,218,2.6
+16066,2023,12,1,17,0,-3.2,1.6,0.419,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.32,73.55,92.86,0.95,0.78,781,0.6,215,2.3
+16067,2023,12,1,17,30,-3.4,1.6,0.419,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.32,74.75,98.06,0.95,0.78,782,0.6,215,2.3
+16068,2023,12,1,18,0,-3.6,1.59,0.413,0.63,0,0,0,0,7,-7,0,0,0,0,0.321,77.2,103.42,0.95,0.78,782,0.6,215,2.2
+16069,2023,12,1,18,30,-3.9,1.59,0.413,0.63,0,0,0,0,5,-7,0,0,0,0,0.321,78.95,108.92,0.94,0.78,782,0.6,221,2.2
+16070,2023,12,1,19,0,-4.1,1.63,0.302,0.63,0,0,0,0,5,-7.2,0,0,0,0,0.321,79.12,114.52,0.94,0.78,782,0.5,227,2.1
+16071,2023,12,1,19,30,-4.6,1.63,0.302,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.322,82.16,120.18,0.93,0.78,782,0.5,234,1.9
+16072,2023,12,1,20,0,-5.1,1.64,0.181,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.323,82.09,125.88,0.93,0.78,782,0.5,240,1.8
+16073,2023,12,1,20,30,-5.4,1.64,0.181,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.325,83.98,131.57,0.92,0.78,782,0.5,240,1.8
+16074,2023,12,1,21,0,-5.8,1.62,0.102,0.63,0,0,0,0,5,-8.1,0,0,0,0,0.327,83.57,137.2,0.92,0.78,783,0.4,240,1.7
+16075,2023,12,1,21,30,-6,1.62,0.102,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.329,84.86,142.71,0.92,0.78,783,0.4,235,1.8
+16076,2023,12,1,22,0,-6.2,1.57,0.068,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.331,83.26,147.98,0.92,0.78,783,0.4,231,2
+16077,2023,12,1,22,30,-6.2,1.57,0.068,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.332,83.26,152.86,0.93,0.78,783,0.4,230,2.3
+16078,2023,12,1,23,0,-6.3,1.49,0.054,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.332,81.65,157.05,0.93,0.78,783,0.4,229,2.7
+16079,2023,12,1,23,30,-6.4,1.49,0.054,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.333,82.27,160.08,0.93,0.78,783,0.4,229,2.9
+16080,2023,12,2,0,0,-6.4,1.4,0.046,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.333,81.1,161.37,0.94,0.78,783,0.5,229,3.2
+16081,2023,12,2,0,30,-6.5,1.4,0.046,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.334,81.83,160.55,0.94,0.78,784,0.4,229,3.2
+16082,2023,12,2,1,0,-6.6,1.32,0.04,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.335,81.11,157.87,0.94,0.78,784,0.4,228,3.3
+16083,2023,12,2,1,30,-6.7,1.32,0.04,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.335,81.73,153.9,0.94,0.78,784,0.4,228,3.1
+16084,2023,12,2,2,0,-6.9,1.32,0.031,0.63,0,0,0,0,7,-9.7,0,0,0,0,0.336,80.47,149.15,0.93,0.78,784,0.4,229,2.9
+16085,2023,12,2,2,30,-7.2,1.32,0.031,0.63,0,0,0,0,7,-9.7,0,0,0,0,0.337,82.35,143.95,0.92,0.78,784,0.4,230,2.7
+16086,2023,12,2,3,0,-7.6,1.34,0.021,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.337,81.15,138.48,0.91,0.78,784,0.3,231,2.5
+16087,2023,12,2,3,30,-8.1,1.34,0.021,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.338,84.36,132.88,0.91,0.78,784,0.3,232,2.3
+16088,2023,12,2,4,0,-8.6,1.32,0.017,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.338,83.88,127.2,0.91,0.78,785,0.3,232,2.2
+16089,2023,12,2,4,30,-8.9,1.32,0.017,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.339,85.87,121.5,0.91,0.78,785,0.3,233,2.2
+16090,2023,12,2,5,0,-9.2,1.31,0.017,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.339,85.24,115.83,0.91,0.78,785,0.3,234,2.1
+16091,2023,12,2,5,30,-9.4,1.31,0.017,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.34,86.59,110.22,0.91,0.78,785,0.3,235,2
+16092,2023,12,2,6,0,-9.5,1.3,0.017,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.34,86.3,104.71,0.91,0.78,786,0.4,237,2
+16093,2023,12,2,6,30,-9.6,1.3,0.017,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.341,86.98,99.31,0.91,0.78,786,0.3,238,1.9
+16094,2023,12,2,7,0,-9.6,1.31,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.341,87.15,94.08,0.91,0.78,786,0.3,240,1.9
+16095,2023,12,2,7,30,-8.6,1.31,0.017,0.63,14,241,19,0,0,-11.3,14,241,0,19,0.341,80.58,88.75,0.91,0.78,786,0.3,242,2.2
+16096,2023,12,2,8,0,-7.6,1.32,0.016,0.63,27,611,89,0,0,-10.7,27,611,0,89,0.341,78.57,84.16,0.91,0.78,787,0.3,245,2.6
+16097,2023,12,2,8,30,-6,1.32,0.016,0.63,36,762,172,0,0,-10.7,38,746,0,171,0.34,69.49,79.73,0.92,0.78,787,0.3,253,2.8
+16098,2023,12,2,9,0,-4.4,1.33,0.017,0.63,44,850,255,0,7,-10,80,626,21,235,0.339,64.71,75.63,0.92,0.78,787,0.3,261,3.1
+16099,2023,12,2,9,30,-3.3,1.33,0.017,0.63,49,906,330,0,7,-10,78,762,14,314,0.338,59.59,71.96,0.92,0.78,787,0.3,270,3.4
+16100,2023,12,2,10,0,-2.1,1.35,0.019,0.63,54,939,394,0,0,-10.9,74,862,0,386,0.337,50.77,68.78,0.93,0.78,787,0.4,279,3.7
+16101,2023,12,2,10,30,-1.5,1.35,0.019,0.63,59,954,444,0,0,-10.9,59,954,0,444,0.336,48.58,66.18,0.93,0.78,787,0.4,278,3.8
+16102,2023,12,2,11,0,-0.9,1.33,0.023,0.63,64,967,484,0,0,-11.3,64,967,0,484,0.334,45.38,64.23,0.94,0.78,787,0.4,276,3.9
+16103,2023,12,2,11,30,-0.6,1.33,0.023,0.63,68,969,508,0,0,-11.3,68,969,0,508,0.333,44.39,63,0.95,0.78,787,0.4,268,3.9
+16104,2023,12,2,12,0,-0.3,1.25,0.036,0.63,74,960,517,0,0,-10.7,74,960,0,517,0.332,45.39,62.52,0.96,0.78,787,0.4,260,3.9
+16105,2023,12,2,12,30,-0.2,1.25,0.036,0.63,77,942,507,0,0,-10.7,77,942,0,507,0.331,45.01,62.82,0.96,0.78,786,0.5,248,4.1
+16106,2023,12,2,13,0,-0.1,1.22,0.052,0.63,79,917,483,0,7,-9.8,134,745,0,462,0.331,47.99,63.88,0.96,0.78,786,0.5,237,4.2
+16107,2023,12,2,13,30,-0.3,1.22,0.052,0.63,81,884,445,0,5,-9.8,176,220,0,267,0.332,48.69,65.67,0.97,0.78,786,0.5,229,4.4
+16108,2023,12,2,14,0,-0.4,1.18,0.077,0.63,83,833,393,0,4,-8.8,107,0,0,107,0.332,53.24,68.12,0.97,0.78,786,0.5,221,4.6
+16109,2023,12,2,14,30,-0.7,1.18,0.077,0.63,79,773,328,0,4,-8.8,91,0,0,91,0.333,54.42,71.17,0.97,0.78,786,0.6,216,4.7
+16110,2023,12,2,15,0,-1.1,1.13,0.093,0.63,72,687,253,0,5,-7.7,90,13,0,93,0.335,61.06,74.74,0.97,0.78,786,0.6,211,4.8
+16111,2023,12,2,15,30,-1.4,1.13,0.093,0.63,59,592,174,0,0,-7.7,66,488,0,161,0.336,62.41,78.75,0.97,0.78,786,0.6,211,4.7
+16112,2023,12,2,16,0,-1.8,1.14,0.084,0.63,42,442,95,4,7,-6.8,55,204,64,79,0.338,68.54,83.11,0.97,0.78,785,0.6,210,4.6
+16113,2023,12,2,16,30,-2.1,1.14,0.084,0.63,20,175,27,7,6,-6.8,17,0,100,17,0.34,70.07,87.7,0.97,0.78,785,0.6,211,4.6
+16114,2023,12,2,17,0,-2.4,1.19,0.065,0.63,0,0,0,1,6,-6.5,0,0,14,0,0.342,73.59,92.9,0.97,0.68,785,0.6,212,4.7
+16115,2023,12,2,17,30,-2.5,1.19,0.065,0.63,0,0,0,0,6,-6.5,0,0,0,0,0.343,74.13,98.09,0.97,0.68,785,0.6,216,5.3
+16116,2023,12,2,18,0,-2.6,1.27,0.045,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.343,75.41,103.45,0.96,0.68,785,0.6,220,5.9
+16117,2023,12,2,18,30,-2.9,1.27,0.045,0.63,0,0,0,0,6,-6.4,0,0,0,0,0.344,77.1,108.94,0.96,0.68,785,0.6,222,5.9
+16118,2023,12,2,19,0,-3.2,1.35,0.031,0.63,0,0,0,0,6,-6.4,0,0,0,0,0.345,78.82,114.53,0.95,0.68,785,0.6,223,5.9
+16119,2023,12,2,19,30,-3.4,1.35,0.031,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.346,79.9,120.19,0.95,0.68,784,0.6,224,5.9
+16120,2023,12,2,20,0,-3.7,1.35,0.027,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.346,81.02,125.89,0.95,0.68,784,0.6,225,6
+16121,2023,12,2,20,30,-3.5,1.35,0.027,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.346,79.82,131.58,0.95,0.68,784,0.6,226,6.1
+16122,2023,12,2,21,0,-3.4,1.29,0.028,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.347,79.7,137.21,0.96,0.68,784,0.6,227,6.2
+16123,2023,12,2,21,30,-3.2,1.29,0.028,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.347,78.52,142.73,0.96,0.68,784,0.6,225,6
+16124,2023,12,2,22,0,-3.1,1.27,0.026,0.63,0,0,0,0,7,-6.1,0,0,0,0,0.347,79.69,148.02,0.95,0.68,784,0.7,223,5.9
+16125,2023,12,2,22,30,-3,1.27,0.026,0.63,0,0,0,0,7,-6.1,0,0,0,0,0.347,79.1,152.91,0.95,0.68,784,0.7,223,5.9
+16126,2023,12,2,23,0,-2.9,1.29,0.025,0.63,0,0,0,0,7,-5.8,0,0,0,0,0.348,80.33,157.13,0.95,0.68,784,0.7,224,5.9
+16127,2023,12,2,23,30,-2.8,1.29,0.025,0.63,0,0,0,0,7,-5.8,0,0,0,0,0.348,79.74,160.19,0.95,0.68,784,0.7,226,5.9
+16128,2023,12,3,0,0,-2.7,1.28,0.025,0.63,0,0,0,0,6,-5.7,0,0,0,0,0.349,80.02,161.51,0.95,0.68,784,0.7,229,5.9
+16129,2023,12,3,0,30,-2.6,1.28,0.025,0.63,0,0,0,0,6,-5.7,0,0,0,0,0.349,79.33,160.72,0.95,0.68,783,0.7,231,5.7
+16130,2023,12,3,1,0,-2.5,1.27,0.025,0.63,0,0,0,0,6,-5.4,0,0,0,0,0.35,80.21,158.04,0.95,0.68,783,0.7,234,5.4
+16131,2023,12,3,1,30,-2.5,1.27,0.025,0.63,0,0,0,0,6,-5.4,0,0,0,0,0.35,80.21,154.07,0.95,0.68,783,0.7,238,5
+16132,2023,12,3,2,0,-2.5,1.26,0.027,0.63,0,0,0,0,7,-5,0,0,0,0,0.35,82.83,149.32,0.95,0.68,784,0.7,243,4.6
+16133,2023,12,3,2,30,-2.5,1.26,0.027,0.63,0,0,0,0,6,-5,0,0,0,0,0.349,82.83,144.11,0.95,0.68,784,0.7,248,3.9
+16134,2023,12,3,3,0,-2.6,1.23,0.028,0.63,0,0,0,0,6,-4.7,0,0,0,0,0.348,85.75,138.64,0.95,0.68,784,0.7,252,3.3
+16135,2023,12,3,3,30,-2.7,1.23,0.028,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.347,86.39,133.03,0.95,0.68,784,0.7,252,2.6
+16136,2023,12,3,4,0,-2.9,1.23,0.027,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.346,88.65,127.36,0.94,0.68,784,0.7,251,1.9
+16137,2023,12,3,4,30,-3,1.23,0.027,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.343,89.43,121.66,0.94,0.68,785,0.7,255,1.6
+16138,2023,12,3,5,0,-3.1,1.24,0.026,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.341,90.74,115.99,0.94,0.68,785,0.7,260,1.4
+16139,2023,12,3,5,30,-3.3,1.24,0.026,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.338,92.11,110.38,0.94,0.68,785,0.7,275,1.2
+16140,2023,12,3,6,0,-3.4,1.25,0.026,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.336,92.73,104.87,0.94,0.68,786,0.7,290,1
+16141,2023,12,3,6,30,-3.5,1.25,0.026,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.334,93.42,99.48,0.94,0.68,786,0.7,304,0.8
+16142,2023,12,3,7,0,-3.6,1.26,0.025,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.332,92.68,94.25,0.94,0.68,787,0.7,318,0.7
+16143,2023,12,3,7,30,-3.3,1.26,0.025,0.63,13,195,17,5,7,-4.6,6,0,71,6,0.331,90.63,88.91,0.93,0.68,787,0.7,335,0.6
+16144,2023,12,3,8,0,-3,1.29,0.023,0.63,28,538,81,6,7,-4.7,31,1,86,31,0.33,88.16,84.32,0.93,0.68,788,0.7,352,0.5
+16145,2023,12,3,8,30,-2.4,1.29,0.023,0.63,37,699,160,0,6,-4.7,30,1,0,30,0.329,84.32,79.9,0.93,0.68,788,0.7,355,0.8
+16146,2023,12,3,9,0,-1.7,1.31,0.022,0.63,45,796,240,0,6,-4.7,44,0,0,44,0.329,79.87,75.8,0.93,0.68,789,0.7,357,1.2
+16147,2023,12,3,9,30,-1.2,1.31,0.022,0.63,50,857,313,0,6,-4.7,61,0,0,61,0.329,76.99,72.13,0.93,0.68,789,0.7,349,1.5
+16148,2023,12,3,10,0,-0.7,1.32,0.022,0.63,55,897,377,0,7,-5.2,143,22,0,151,0.329,71.45,68.95,0.93,0.68,789,0.7,341,1.9
+16149,2023,12,3,10,30,-0.1,1.32,0.022,0.63,57,924,428,0,7,-5.2,150,7,0,153,0.329,68.4,66.34,0.93,0.68,789,0.8,332,2
+16150,2023,12,3,11,0,0.4,1.35,0.02,0.63,59,941,466,0,7,-5.2,186,19,0,194,0.328,66.27,64.39,0.93,0.68,789,0.8,323,2.2
+16151,2023,12,3,11,30,0.8,1.35,0.02,0.63,60,950,489,0,7,-5.2,218,34,0,233,0.328,64.39,63.15,0.93,0.68,789,0.8,317,2.2
+16152,2023,12,3,12,0,1.3,1.35,0.02,0.63,61,954,499,0,7,-4.8,215,27,0,227,0.328,63.85,62.66,0.93,0.68,789,0.8,311,2.3
+16153,2023,12,3,12,30,1.6,1.35,0.02,0.63,61,951,493,0,7,-4.8,252,66,0,282,0.326,62.49,62.95,0.93,0.68,789,0.8,306,2.2
+16154,2023,12,3,13,0,1.8,1.34,0.019,0.63,58,941,471,0,7,-4.3,220,37,0,236,0.325,63.93,64,0.93,0.68,789,0.9,301,2.1
+16155,2023,12,3,13,30,1.7,1.34,0.019,0.63,56,925,435,0,7,-4.3,165,25,0,175,0.323,64.38,65.78,0.92,0.68,789,0.9,288,1.8
+16156,2023,12,3,14,0,1.6,1.33,0.017,0.63,52,902,387,0,7,-3.5,151,23,0,160,0.321,68.8,68.22,0.92,0.68,789,0.9,276,1.4
+16157,2023,12,3,14,30,1.1,1.33,0.017,0.63,47,867,326,0,7,-3.5,147,34,0,158,0.319,71.31,71.25,0.92,0.68,789,0.9,247,1.1
+16158,2023,12,3,15,0,0.6,1.34,0.015,0.63,42,814,255,0,7,-2.5,50,2,0,51,0.318,79.58,74.81,0.92,0.68,789,1,218,0.9
+16159,2023,12,3,15,30,-0.1,1.34,0.015,0.63,36,730,178,0,7,-2.5,54,4,0,55,0.316,83.82,78.8,0.92,0.68,790,1,209,1
+16160,2023,12,3,16,0,-0.7,1.31,0.015,0.63,28,594,99,5,7,-2.7,32,0,71,32,0.315,86.59,83.16,0.93,0.68,790,1,200,1.2
+16161,2023,12,3,16,30,-0.9,1.31,0.015,0.63,16,292,28,7,7,-2.7,10,0,100,10,0.314,87.87,87.74,0.93,0.68,790,1,202,1.5
+16162,2023,12,3,17,0,-1.1,1.31,0.015,0.63,0,0,0,1,4,-2.5,0,0,14,0,0.313,90.49,92.93,0.93,0.65,790,1,203,1.8
+16163,2023,12,3,17,30,-0.9,1.31,0.015,0.63,0,0,0,0,4,-2.5,0,0,0,0,0.312,89.18,98.11,0.93,0.65,790,1.1,208,2.1
+16164,2023,12,3,18,0,-0.8,1.33,0.012,0.63,0,0,0,0,4,-1.9,0,0,0,0,0.311,92.45,103.46,0.93,0.65,790,1.1,212,2.4
+16165,2023,12,3,18,30,-0.6,1.33,0.012,0.63,0,0,0,0,5,-1.9,0,0,0,0,0.308,91.12,108.95,0.92,0.65,790,1.1,216,2.6
+16166,2023,12,3,19,0,-0.5,1.35,0.011,0.63,0,0,0,0,4,-1.4,0,0,0,0,0.305,93.93,114.54,0.92,0.65,790,1.1,219,2.8
+16167,2023,12,3,19,30,-0.5,1.35,0.011,0.63,0,0,0,0,4,-1.4,0,0,0,0,0.304,93.93,120.2,0.93,0.65,790,1.1,223,2.8
+16168,2023,12,3,20,0,-0.5,1.28,0.016,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.302,95.71,125.9,0.94,0.65,790,1.1,227,2.8
+16169,2023,12,3,20,30,-0.7,1.28,0.016,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.301,97.11,131.59,0.94,0.65,790,1.1,229,2.6
+16170,2023,12,3,21,0,-0.8,1.26,0.022,0.63,0,0,0,0,7,-1.2,0,0,0,0,0.301,97.39,137.22,0.95,0.65,790,1.1,231,2.3
+16171,2023,12,3,21,30,-1,1.26,0.022,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.302,98.95,142.74,0.95,0.65,791,1,229,2.1
+16172,2023,12,3,22,0,-1.2,1.29,0.024,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.303,99.05,148.04,0.95,0.65,791,1,227,1.9
+16173,2023,12,3,22,30,-1.4,1.29,0.024,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.303,100,152.96,0.94,0.65,791,1,228,1.8
+16174,2023,12,3,23,0,-1.7,1.31,0.021,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.304,100,157.19,0.94,0.65,791,0.9,230,1.7
+16175,2023,12,3,23,30,-2,1.31,0.021,0.63,0,0,0,0,4,-2,0,0,0,0,0.304,100,160.29,0.93,0.65,791,0.9,232,1.6
+16176,2023,12,4,0,0,-2.4,1.37,0.014,0.63,0,0,0,0,4,-2.4,0,0,0,0,0.304,100,161.65,0.92,0.65,791,0.9,235,1.5
+16177,2023,12,4,0,30,-2.6,1.37,0.014,0.63,0,0,0,0,4,-2.6,0,0,0,0,0.303,100,160.88,0.91,0.65,792,0.9,233,1.4
+16178,2023,12,4,1,0,-2.9,1.39,0.012,0.63,0,0,0,0,8,-2.9,0,0,0,0,0.302,100,158.21,0.9,0.65,792,0.9,232,1.4
+16179,2023,12,4,1,30,-3,1.39,0.012,0.63,0,0,0,0,4,-3,0,0,0,0,0.302,100,154.23,0.9,0.65,792,0.8,228,1.4
+16180,2023,12,4,2,0,-3.2,1.37,0.011,0.63,0,0,0,0,4,-3.2,0,0,0,0,0.301,100,149.48,0.9,0.65,792,0.8,224,1.5
+16181,2023,12,4,2,30,-3.4,1.37,0.011,0.63,0,0,0,0,4,-3.4,0,0,0,0,0.302,100,144.27,0.91,0.65,792,0.8,222,1.5
+16182,2023,12,4,3,0,-3.6,1.36,0.011,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.302,100,138.8,0.91,0.65,792,0.8,221,1.6
+16183,2023,12,4,3,30,-3.7,1.36,0.011,0.63,0,0,0,0,4,-3.7,0,0,0,0,0.303,100,133.19,0.91,0.65,792,0.8,222,1.6
+16184,2023,12,4,4,0,-3.7,1.35,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.304,100,127.51,0.91,0.65,792,0.8,224,1.5
+16185,2023,12,4,4,30,-3.7,1.35,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.305,100,121.82,0.91,0.65,792,0.8,227,1.5
+16186,2023,12,4,5,0,-3.7,1.34,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.306,100,116.15,0.91,0.65,793,0.8,230,1.5
+16187,2023,12,4,5,30,-3.6,1.34,0.012,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.307,100,110.54,0.91,0.65,793,0.8,230,1.4
+16188,2023,12,4,6,0,-3.5,1.34,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.308,100,105.02,0.92,0.65,793,0.8,231,1.4
+16189,2023,12,4,6,30,-3.4,1.34,0.012,0.63,0,0,0,0,8,-3.4,0,0,0,0,0.309,100,99.63,0.92,0.65,793,0.8,230,1.4
+16190,2023,12,4,7,0,-3.4,1.36,0.012,0.63,0,0,0,0,8,-3.4,0,0,0,0,0.31,100,94.41,0.92,0.65,793,0.8,228,1.4
+16191,2023,12,4,7,30,-2.4,1.36,0.012,0.63,11,172,14,5,7,-2.6,7,0,71,7,0.311,98.61,89.05,0.91,0.65,793,0.8,227,1.5
+16192,2023,12,4,8,0,-1.5,1.41,0.012,0.63,24,562,78,6,7,-2,36,2,86,36,0.311,96.56,84.48,0.91,0.65,794,0.8,227,1.5
+16193,2023,12,4,8,30,-0.1,1.41,0.012,0.63,32,717,156,1,7,-2,61,11,18,63,0.312,87.19,80.06,0.91,0.65,794,0.8,229,1.7
+16194,2023,12,4,9,0,1.2,1.43,0.012,0.63,38,808,234,4,4,-0.9,85,9,50,87,0.312,85.65,75.97,0.91,0.65,794,0.8,231,1.9
+16195,2023,12,4,9,30,2.4,1.43,0.012,0.63,44,865,307,1,7,-0.9,141,18,18,146,0.312,78.62,72.29,0.91,0.65,794,0.8,245,2
+16196,2023,12,4,10,0,3.5,1.41,0.015,0.63,49,902,371,0,7,-0.7,159,334,0,278,0.312,73.89,69.11,0.92,0.65,795,0.8,259,2
+16197,2023,12,4,10,30,4.4,1.41,0.015,0.63,53,927,423,0,0,-0.7,66,861,0,409,0.312,69.37,66.5,0.92,0.65,795,0.8,275,2.4
+16198,2023,12,4,11,0,5.3,1.35,0.018,0.63,57,941,462,0,0,-1.1,138,623,0,406,0.312,63.31,64.54,0.93,0.65,795,0.8,290,2.7
+16199,2023,12,4,11,30,5.7,1.35,0.018,0.63,58,952,486,0,8,-1.1,209,302,0,345,0.312,61.51,63.29,0.92,0.65,794,0.8,294,3
+16200,2023,12,4,12,0,6.1,1.38,0.017,0.63,59,957,496,0,8,-1.6,255,146,0,322,0.312,57.93,62.8,0.92,0.65,794,0.8,297,3.3
+16201,2023,12,4,12,30,6.3,1.38,0.017,0.63,57,956,490,0,4,-1.6,270,99,0,315,0.312,57.14,63.08,0.92,0.65,794,0.8,297,3.4
+16202,2023,12,4,13,0,6.5,1.43,0.015,0.63,56,949,470,0,8,-1.9,231,288,0,357,0.311,54.81,64.11,0.92,0.65,794,0.8,297,3.4
+16203,2023,12,4,13,30,6.4,1.43,0.015,0.63,54,932,435,0,7,-1.9,223,162,0,289,0.311,55.18,65.88,0.92,0.65,794,0.8,300,3.4
+16204,2023,12,4,14,0,6.4,1.4,0.016,0.63,52,907,387,0,7,-2.1,204,57,0,225,0.311,54.67,68.31,0.93,0.65,794,0.8,303,3.4
+16205,2023,12,4,14,30,5.6,1.4,0.016,0.63,48,872,327,0,4,-2.1,121,12,0,125,0.311,57.77,71.33,0.93,0.65,794,0.8,307,2.7
+16206,2023,12,4,15,0,4.8,1.39,0.016,0.63,43,820,257,0,4,-1.2,85,60,0,101,0.31,65.18,74.87,0.92,0.65,795,0.8,311,2
+16207,2023,12,4,15,30,3.2,1.39,0.016,0.63,36,739,179,0,0,-1.2,73,435,0,157,0.309,72.92,78.85,0.92,0.65,795,0.8,315,1.7
+16208,2023,12,4,16,0,1.5,1.4,0.015,0.63,28,606,100,5,7,-2.2,62,47,71,68,0.308,76.34,83.2,0.92,0.65,795,0.8,318,1.4
+16209,2023,12,4,16,30,0.5,1.4,0.015,0.63,16,300,28,6,7,-2.2,17,2,93,17,0.307,82.13,87.77,0.92,0.65,796,0.8,325,1.4
+16210,2023,12,4,17,0,-0.5,1.42,0.015,0.63,0,0,0,0,7,-2.8,0,0,7,0,0.306,84.57,92.95,0.92,0.65,796,0.8,332,1.4
+16211,2023,12,4,17,30,-0.8,1.42,0.015,0.63,0,0,0,0,7,-2.8,0,0,0,0,0.306,86.55,98.13,0.92,0.65,797,0.8,336,1.3
+16212,2023,12,4,18,0,-1.2,1.42,0.015,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.305,90.83,103.47,0.92,0.65,797,0.7,341,1.2
+16213,2023,12,4,18,30,-1.3,1.42,0.015,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.305,91.49,108.96,0.92,0.65,797,0.7,339,1.1
+16214,2023,12,4,19,0,-1.4,1.42,0.014,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.304,94.3,114.54,0.92,0.65,797,0.7,336,1
+16215,2023,12,4,19,30,-1.4,1.42,0.014,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.304,94.3,120.2,0.92,0.65,797,0.7,333,0.9
+16216,2023,12,4,20,0,-1.4,1.42,0.014,0.63,0,0,0,0,7,-2,0,0,0,0,0.303,96.02,125.89,0.92,0.65,798,0.7,330,0.7
+16217,2023,12,4,20,30,-1.5,1.42,0.014,0.63,0,0,0,0,7,-2,0,0,0,0,0.303,96.73,131.59,0.92,0.65,798,0.7,329,0.6
+16218,2023,12,4,21,0,-1.7,1.42,0.013,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.303,98.8,137.23,0.92,0.65,798,0.7,328,0.5
+16219,2023,12,4,21,30,-1.8,1.42,0.013,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.303,99.53,142.75,0.92,0.65,798,0.7,341,0.4
+16220,2023,12,4,22,0,-2,1.43,0.013,0.63,0,0,0,0,0,-2,0,0,0,0,0.303,100,148.06,0.92,0.65,798,0.8,355,0.3
+16221,2023,12,4,22,30,-2.3,1.43,0.013,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.303,100,152.99,0.92,0.65,798,0.8,206,0.3
+16222,2023,12,4,23,0,-2.5,1.42,0.013,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.303,100,157.25,0.92,0.65,798,0.8,58,0.4
+16223,2023,12,4,23,30,-2.7,1.42,0.013,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.303,100,160.39,0.92,0.65,798,0.8,76,0.5
+16224,2023,12,5,0,0,-2.9,1.39,0.013,0.63,0,0,0,0,0,-2.9,0,0,0,0,0.302,100,161.77,0.92,0.65,798,0.9,95,0.6
+16225,2023,12,5,0,30,-3,1.39,0.013,0.63,0,0,0,0,0,-3,0,0,0,0,0.302,100,161.03,0.92,0.65,798,0.9,103,0.6
+16226,2023,12,5,1,0,-3.1,1.37,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,158.37,0.93,0.65,798,0.9,112,0.7
+16227,2023,12,5,1,30,-3.1,1.37,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,154.4,0.92,0.65,798,0.9,123,0.7
+16228,2023,12,5,2,0,-3.1,1.38,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,149.64,0.92,0.65,798,0.9,133,0.7
+16229,2023,12,5,2,30,-3,1.38,0.014,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,100,144.42,0.92,0.65,798,0.9,146,0.7
+16230,2023,12,5,3,0,-2.9,1.38,0.014,0.63,0,0,0,0,0,-2.9,0,0,0,0,0.303,100,138.95,0.92,0.65,798,0.9,159,0.7
+16231,2023,12,5,3,30,-3,1.38,0.014,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,100,133.34,0.92,0.65,798,0.9,169,0.8
+16232,2023,12,5,4,0,-3,1.39,0.013,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,99.97,127.66,0.91,0.65,798,0.8,178,0.8
+16233,2023,12,5,4,30,-3.1,1.39,0.013,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,121.97,0.91,0.65,799,0.8,181,0.8
+16234,2023,12,5,5,0,-3.1,1.39,0.012,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.303,98.88,116.3,0.91,0.65,799,0.8,183,0.9
+16235,2023,12,5,5,30,-3.2,1.39,0.012,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.302,99.62,110.69,0.91,0.65,799,0.8,184,0.9
+16236,2023,12,5,6,0,-3.3,1.39,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.302,98.21,105.18,0.91,0.65,799,0.8,185,0.9
+16237,2023,12,5,6,30,-3.4,1.39,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.301,98.95,99.79,0.91,0.65,799,0.8,185,0.9
+16238,2023,12,5,7,0,-3.5,1.39,0.011,0.63,0,0,0,0,0,-3.8,0,0,0,0,0.301,97.45,94.57,0.91,0.65,799,0.8,186,1
+16239,2023,12,5,7,30,-2.5,1.39,0.011,0.63,11,169,13,0,0,-3.8,11,169,0,13,0.3,90.47,89.19,0.9,0.65,799,0.8,186,1.1
+16240,2023,12,5,8,0,-1.5,1.4,0.011,0.63,23,558,75,0,0,-3.6,23,558,0,75,0.3,85.71,84.64,0.9,0.65,799,0.8,187,1.3
+16241,2023,12,5,8,30,-0.1,1.4,0.011,0.63,31,718,153,0,0,-3.6,31,718,0,153,0.3,77.38,80.22,0.9,0.65,799,0.8,189,1.8
+16242,2023,12,5,9,0,1.3,1.41,0.01,0.63,37,811,231,0,0,-2.7,37,811,0,231,0.3,74.71,76.13,0.9,0.65,800,0.8,191,2.3
+16243,2023,12,5,9,30,2.5,1.41,0.01,0.63,41,872,304,0,0,-2.7,41,872,0,304,0.3,68.58,72.45,0.9,0.65,800,0.8,199,2.4
+16244,2023,12,5,10,0,3.8,1.41,0.01,0.63,44,912,367,0,0,-1.8,44,912,0,367,0.3,66.68,69.27,0.9,0.65,800,0.8,207,2.6
+16245,2023,12,5,10,30,4.8,1.41,0.01,0.63,48,938,420,0,0,-1.8,48,938,0,420,0.3,62.1,66.66,0.9,0.65,799,0.7,214,2.8
+16246,2023,12,5,11,0,5.9,1.32,0.012,0.63,51,954,459,0,0,-1.7,51,954,0,459,0.3,58.18,64.69,0.9,0.65,799,0.7,221,3
+16247,2023,12,5,11,30,6.4,1.32,0.012,0.63,53,964,484,0,0,-1.7,53,964,0,484,0.3,56.21,63.43,0.9,0.65,799,0.7,223,3
+16248,2023,12,5,12,0,6.9,1.32,0.012,0.63,53,969,494,0,0,-1.9,53,969,0,494,0.3,53.4,62.93,0.9,0.65,799,0.7,225,3
+16249,2023,12,5,12,30,7.2,1.32,0.012,0.63,53,967,489,0,0,-1.9,53,967,0,489,0.301,52.32,63.19,0.9,0.65,799,0.7,225,2.9
+16250,2023,12,5,13,0,7.5,1.31,0.012,0.63,52,959,469,0,0,-2.1,52,959,0,469,0.301,50.6,64.22,0.9,0.65,798,0.7,226,2.8
+16251,2023,12,5,13,30,7.4,1.31,0.012,0.63,51,942,435,0,0,-2.1,51,942,0,435,0.301,50.94,65.97,0.9,0.65,798,0.7,225,2.6
+16252,2023,12,5,14,0,7.4,1.13,0.015,0.63,51,914,388,0,0,-2,51,914,0,388,0.301,51.27,68.39,0.9,0.65,798,0.7,225,2.3
+16253,2023,12,5,14,30,6.4,1.13,0.015,0.63,47,881,328,0,0,-2,47,881,0,328,0.3,54.9,71.4,0.9,0.65,798,0.7,220,1.7
+16254,2023,12,5,15,0,5.4,1.15,0.015,0.63,42,831,258,0,0,-0.5,42,831,0,258,0.299,65.77,74.93,0.9,0.65,798,0.7,216,1
+16255,2023,12,5,15,30,4.1,1.15,0.015,0.63,36,751,181,0,0,-0.5,36,751,0,181,0.299,72,78.9,0.9,0.65,798,0.6,212,1.1
+16256,2023,12,5,16,0,2.8,1.15,0.015,0.63,28,617,101,0,0,-2.9,28,617,0,101,0.298,66.14,83.23,0.9,0.65,798,0.6,208,1.2
+16257,2023,12,5,16,30,2.1,1.15,0.015,0.63,17,306,29,4,7,-2.9,19,111,64,23,0.298,69.59,87.79,0.9,0.65,799,0.6,207,1.3
+16258,2023,12,5,17,0,1.4,1.16,0.014,0.63,0,0,0,0,7,-3.8,0,0,0,0,0.297,68.48,92.97,0.9,0.65,799,0.6,206,1.4
+16259,2023,12,5,17,30,1.1,1.16,0.014,0.63,0,0,0,0,7,-3.8,0,0,0,0,0.296,69.97,98.14,0.9,0.65,799,0.6,208,1.4
+16260,2023,12,5,18,0,0.9,1.17,0.014,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.295,69.46,103.48,0.9,0.65,799,0.6,211,1.3
+16261,2023,12,5,18,30,0.6,1.17,0.014,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.294,70.98,108.96,0.9,0.65,799,0.5,215,1.3
+16262,2023,12,5,19,0,0.3,1.17,0.013,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.293,71.12,114.54,0.9,0.65,799,0.5,218,1.3
+16263,2023,12,5,19,30,0.1,1.17,0.013,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.292,72.15,120.2,0.89,0.65,799,0.5,221,1.3
+16264,2023,12,5,20,0,-0.1,1.17,0.013,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.291,72.16,125.89,0.89,0.65,799,0.5,224,1.2
+16265,2023,12,5,20,30,-0.3,1.17,0.013,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.29,73.22,131.58,0.89,0.65,799,0.5,225,1.2
+16266,2023,12,5,21,0,-0.4,1.17,0.012,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.29,73.13,137.23,0.89,0.65,799,0.5,226,1.2
+16267,2023,12,5,21,30,-0.5,1.17,0.012,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.289,73.66,142.76,0.89,0.65,799,0.5,223,1.2
+16268,2023,12,5,22,0,-0.6,1.17,0.012,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.288,73.67,148.08,0.89,0.65,799,0.5,221,1.1
+16269,2023,12,5,22,30,-0.8,1.17,0.012,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.287,74.75,153.02,0.89,0.65,799,0.4,216,1.1
+16270,2023,12,5,23,0,-0.9,1.17,0.012,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.286,74.62,157.31,0.89,0.65,798,0.4,212,1.1
+16271,2023,12,5,23,30,-1.1,1.17,0.012,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.286,75.72,160.47,0.89,0.65,798,0.4,208,1.2
+16272,2023,12,6,0,0,-1.3,1.17,0.012,0.63,0,0,0,0,0,-5,0,0,0,0,0.285,76.09,161.89,0.89,0.65,798,0.4,203,1.2
+16273,2023,12,6,0,30,-1.6,1.17,0.012,0.63,0,0,0,0,0,-5,0,0,0,0,0.284,77.79,161.17,0.89,0.65,798,0.4,200,1.2
+16274,2023,12,6,1,0,-1.8,1.18,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.283,78.02,158.52,0.89,0.65,798,0.4,197,1.3
+16275,2023,12,6,1,30,-2,1.18,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.282,79.17,154.55,0.89,0.65,798,0.4,196,1.3
+16276,2023,12,6,2,0,-2.2,1.2,0.012,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.281,79.36,149.79,0.89,0.65,798,0.4,195,1.3
+16277,2023,12,6,2,30,-2.4,1.2,0.012,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.28,80.54,144.58,0.89,0.65,798,0.4,196,1.3
+16278,2023,12,6,3,0,-2.5,1.21,0.011,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,80.16,139.1,0.89,0.65,798,0.4,198,1.3
+16279,2023,12,6,3,30,-2.6,1.21,0.011,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,80.65,133.49,0.89,0.65,797,0.4,200,1.3
+16280,2023,12,6,4,0,-2.7,1.23,0.011,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.278,80.31,127.81,0.89,0.65,797,0.4,202,1.3
+16281,2023,12,6,4,30,-2.8,1.23,0.011,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.278,80.91,122.12,0.89,0.65,797,0.4,205,1.3
+16282,2023,12,6,5,0,-3,1.24,0.011,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.278,81.33,116.45,0.89,0.65,797,0.4,207,1.3
+16283,2023,12,6,5,30,-3.1,1.24,0.011,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.278,81.94,110.84,0.88,0.65,797,0.4,209,1.3
+16284,2023,12,6,6,0,-3.2,1.26,0.011,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.278,81.7,105.33,0.88,0.65,797,0.4,210,1.3
+16285,2023,12,6,6,30,-3.2,1.26,0.011,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.278,81.7,99.94,0.88,0.65,797,0.4,211,1.3
+16286,2023,12,6,7,0,-3.3,1.28,0.01,0.63,0,0,0,0,0,-6,0,0,0,0,0.278,81.55,94.72,0.88,0.65,797,0.4,212,1.3
+16287,2023,12,6,7,30,-2.4,1.28,0.01,0.63,11,185,13,0,0,-6,11,185,0,13,0.277,76.28,89.33,0.88,0.65,797,0.4,211,1.2
+16288,2023,12,6,8,0,-1.6,1.3,0.01,0.63,23,603,78,0,0,-5.4,23,603,0,78,0.277,75.27,84.79,0.88,0.65,797,0.3,209,1.1
+16289,2023,12,6,8,30,0,1.3,0.01,0.63,31,762,158,0,0,-5.4,31,762,0,158,0.277,66.97,80.37,0.88,0.65,797,0.3,207,1.6
+16290,2023,12,6,9,0,1.7,1.32,0.01,0.63,37,853,239,0,0,-4.7,37,853,0,239,0.277,62.53,76.28,0.88,0.65,797,0.3,206,2
+16291,2023,12,6,9,30,2.8,1.32,0.01,0.63,41,910,313,0,0,-4.7,41,910,0,313,0.276,57.75,72.6,0.88,0.65,796,0.4,210,2.4
+16292,2023,12,6,10,0,4,1.33,0.01,0.63,45,948,378,0,0,-4.4,45,948,0,378,0.275,54.46,69.42,0.88,0.65,796,0.4,215,2.7
+16293,2023,12,6,10,30,5,1.33,0.01,0.63,47,972,430,0,0,-4.4,47,972,0,430,0.275,50.79,66.8,0.88,0.65,796,0.4,216,3.2
+16294,2023,12,6,11,0,6,1.33,0.01,0.63,49,986,468,0,0,-4.5,49,986,0,468,0.274,47.01,64.83,0.88,0.65,795,0.4,218,3.6
+16295,2023,12,6,11,30,6.5,1.33,0.01,0.63,50,996,493,0,0,-4.5,50,996,0,493,0.273,45.42,63.57,0.87,0.65,795,0.4,217,3.9
+16296,2023,12,6,12,0,7,1.34,0.01,0.63,50,1000,503,0,0,-4.8,50,1000,0,503,0.273,42.72,63.05,0.87,0.65,794,0.4,217,4.2
+16297,2023,12,6,12,30,7.2,1.34,0.01,0.63,50,998,498,0,0,-4.8,50,998,0,498,0.273,42.14,63.31,0.87,0.65,794,0.4,216,4.3
+16298,2023,12,6,13,0,7.4,1.36,0.01,0.63,49,990,478,0,0,-4.9,49,990,0,478,0.272,41.26,64.32,0.87,0.65,793,0.4,216,4.4
+16299,2023,12,6,13,30,7.2,1.36,0.01,0.63,48,975,444,0,0,-4.9,48,975,0,444,0.272,41.83,66.06,0.88,0.65,793,0.4,216,4.2
+16300,2023,12,6,14,0,7,1.33,0.011,0.63,47,951,396,0,0,-4.7,47,951,0,396,0.272,43.09,68.46,0.89,0.65,792,0.4,215,4
+16301,2023,12,6,14,30,5.9,1.33,0.011,0.63,43,917,335,0,0,-4.7,43,917,0,335,0.273,46.47,71.46,0.89,0.65,792,0.4,216,2.9
+16302,2023,12,6,15,0,4.8,1.35,0.012,0.63,40,865,264,0,0,-3.1,40,865,0,264,0.273,56.55,74.98,0.89,0.65,792,0.4,216,1.9
+16303,2023,12,6,15,30,2.7,1.35,0.012,0.63,34,785,185,0,0,-3.1,34,785,0,185,0.273,65.54,78.94,0.89,0.65,792,0.4,214,1.7
+16304,2023,12,6,16,0,0.5,1.37,0.012,0.63,26,652,103,0,0,-4.4,26,652,0,103,0.274,69.51,83.26,0.89,0.65,791,0.4,213,1.5
+16305,2023,12,6,16,30,-0.5,1.37,0.012,0.63,17,332,30,0,0,-4.4,17,332,0,30,0.274,74.73,87.81,0.89,0.65,791,0.4,210,1.5
+16306,2023,12,6,17,0,-1.5,1.39,0.013,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.275,74.63,92.98,0.89,0.65,791,0.4,208,1.6
+16307,2023,12,6,17,30,-1.8,1.39,0.013,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.276,76.3,98.14,0.89,0.65,791,0.4,206,1.6
+16308,2023,12,6,18,0,-2.1,1.4,0.014,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.276,77.61,103.48,0.9,0.65,791,0.4,203,1.6
+16309,2023,12,6,18,30,-2.4,1.4,0.014,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.276,79.35,108.95,0.9,0.65,791,0.4,201,1.6
+16310,2023,12,6,19,0,-2.6,1.41,0.015,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.277,80.17,114.53,0.9,0.65,790,0.4,200,1.7
+16311,2023,12,6,19,30,-2.7,1.41,0.015,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.277,80.76,120.18,0.91,0.65,790,0.4,197,1.8
+16312,2023,12,6,20,0,-2.7,1.41,0.016,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.277,80.72,125.88,0.91,0.65,790,0.4,195,1.9
+16313,2023,12,6,20,30,-2.6,1.41,0.016,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.277,80.12,131.57,0.91,0.65,790,0.5,194,2
+16314,2023,12,6,21,0,-2.4,1.4,0.017,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.277,78.93,137.22,0.92,0.65,789,0.5,193,2.1
+16315,2023,12,6,21,30,-2.3,1.4,0.017,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.277,78.35,142.75,0.92,0.65,789,0.6,193,2.2
+16316,2023,12,6,22,0,-2.1,1.39,0.018,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.277,77.2,148.08,0.92,0.65,789,0.7,193,2.2
+16317,2023,12,6,22,30,-1.9,1.39,0.018,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.278,75.98,153.04,0.92,0.65,788,0.8,193,2.3
+16318,2023,12,6,23,0,-1.7,1.35,0.019,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,75.17,157.35,0.92,0.65,788,0.8,193,2.3
+16319,2023,12,6,23,30,-1.5,1.35,0.019,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,74.08,160.55,0.93,0.65,788,0.8,192,2.3
+16320,2023,12,7,0,0,-1.3,1.33,0.021,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.28,72.99,162.01,0.93,0.65,787,0.9,191,2.4
+16321,2023,12,7,0,30,-1.2,1.33,0.021,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.28,72.46,161.31,0.93,0.65,787,0.9,191,2.4
+16322,2023,12,7,1,0,-1.2,1.35,0.021,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.281,72.08,158.67,0.92,0.65,786,0.9,191,2.5
+16323,2023,12,7,1,30,-1.1,1.35,0.021,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.281,71.55,154.71,0.92,0.65,786,0.8,191,2.5
+16324,2023,12,7,2,0,-1,1.34,0.021,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.282,70.57,149.94,0.92,0.65,786,0.8,191,2.5
+16325,2023,12,7,2,30,-0.9,1.34,0.021,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.284,69.97,144.73,0.92,0.65,785,0.8,192,2.5
+16326,2023,12,7,3,0,-0.8,1.32,0.022,0.63,0,0,0,0,0,-5.8,0,0,0,0,0.286,69.12,139.25,0.92,0.65,785,0.8,193,2.6
+16327,2023,12,7,3,30,-0.7,1.32,0.022,0.63,0,0,0,0,0,-5.8,0,0,0,0,0.289,68.62,133.64,0.92,0.65,785,0.8,194,2.7
+16328,2023,12,7,4,0,-0.7,1.31,0.025,0.63,0,0,0,0,5,-5.9,0,0,0,0,0.292,67.95,127.96,0.92,0.65,784,0.8,196,2.8
+16329,2023,12,7,4,30,-0.8,1.31,0.025,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.294,68.44,122.26,0.92,0.65,784,0.8,198,3
+16330,2023,12,7,5,0,-1,1.27,0.028,0.63,0,0,0,0,4,-6.1,0,0,0,0,0.295,68.11,116.6,0.93,0.65,784,0.7,200,3.1
+16331,2023,12,7,5,30,-1.2,1.27,0.028,0.63,0,0,0,0,4,-6.1,0,0,0,0,0.297,69.11,110.99,0.93,0.65,784,0.7,203,3.3
+16332,2023,12,7,6,0,-1.3,1.24,0.027,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.298,68.66,105.48,0.93,0.65,784,0.7,205,3.4
+16333,2023,12,7,6,30,-1.4,1.24,0.027,0.63,0,0,0,0,4,-6.3,0,0,0,0,0.299,69.17,100.09,0.92,0.65,784,0.6,210,3.5
+16334,2023,12,7,7,0,-1.4,1.24,0.026,0.63,0,0,0,0,4,-6.3,0,0,0,0,0.3,69.31,94.87,0.92,0.65,785,0.6,214,3.5
+16335,2023,12,7,7,30,-0.6,1.24,0.026,0.63,10,135,11,1,0,-6.3,9,102,18,10,0.3,65.37,89.48,0.93,0.65,785,0.6,222,3.8
+16336,2023,12,7,8,0,0.2,1.25,0.028,0.63,27,501,71,2,0,-5.6,35,353,32,66,0.299,64.91,84.94,0.93,0.65,785,0.6,229,4.1
+16337,2023,12,7,8,30,1.4,1.25,0.028,0.63,38,678,150,0,0,-5.6,38,554,0,129,0.298,59.54,80.52,0.93,0.65,785,0.6,234,4.4
+16338,2023,12,7,9,0,2.6,1.27,0.027,0.63,46,784,230,2,4,-4.8,94,150,21,129,0.298,58.29,76.43,0.93,0.65,785,0.6,239,4.7
+16339,2023,12,7,9,30,3.7,1.27,0.027,0.63,51,857,305,1,4,-4.8,130,20,14,136,0.298,53.94,72.75,0.92,0.65,785,0.6,245,4.9
+16340,2023,12,7,10,0,4.8,1.29,0.022,0.63,54,908,371,1,4,-4.2,178,56,18,198,0.297,51.98,69.56,0.92,0.65,785,0.5,251,5.1
+16341,2023,12,7,10,30,5.4,1.29,0.022,0.63,56,939,424,2,4,-4.2,176,24,21,185,0.298,49.86,66.94,0.91,0.65,785,0.5,255,5.5
+16342,2023,12,7,11,0,6.1,1.23,0.018,0.63,57,964,465,0,4,-5.4,188,3,0,189,0.299,43.39,64.97,0.91,0.65,785,0.5,259,5.9
+16343,2023,12,7,11,30,6.2,1.23,0.018,0.63,58,981,493,0,4,-5.4,241,36,0,257,0.3,43.1,63.69,0.91,0.65,785,0.4,258,6.1
+16344,2023,12,7,12,0,6.3,1.17,0.016,0.63,57,990,504,0,5,-7.7,284,216,14,381,0.301,35.88,63.17,0.91,0.65,785,0.4,257,6.3
+16345,2023,12,7,12,30,6.2,1.17,0.016,0.63,57,988,499,0,5,-7.7,284,220,14,382,0.302,36.13,63.41,0.91,0.65,785,0.4,257,6.2
+16346,2023,12,7,13,0,6.2,1.17,0.015,0.63,54,981,478,0,7,-8.9,194,488,11,405,0.303,32.97,64.41,0.91,0.65,785,0.4,256,6.1
+16347,2023,12,7,13,30,5.9,1.17,0.015,0.63,53,964,443,0,0,-8.9,55,958,0,443,0.303,33.66,66.13,0.91,0.65,785,0.4,257,5.8
+16348,2023,12,7,14,0,5.6,1.19,0.015,0.63,51,938,394,0,0,-9.2,51,938,0,394,0.304,33.65,68.52,0.92,0.65,784,0.5,259,5.5
+16349,2023,12,7,14,30,4.9,1.19,0.015,0.63,47,902,333,0,0,-9.2,47,902,0,333,0.305,35.37,71.51,0.92,0.65,785,0.5,262,4.6
+16350,2023,12,7,15,0,4.1,1.21,0.015,0.63,43,849,262,0,0,-8.5,43,849,0,262,0.305,39.56,75.02,0.92,0.65,785,0.5,265,3.7
+16351,2023,12,7,15,30,2.1,1.21,0.015,0.63,36,768,183,0,0,-8.5,36,768,0,183,0.307,45.56,78.97,0.92,0.65,785,0.5,270,2.9
+16352,2023,12,7,16,0,0.1,1.22,0.015,0.63,28,632,102,0,0,-7.8,28,632,0,102,0.308,55.17,83.28,0.92,0.65,785,0.5,275,2
+16353,2023,12,7,16,30,-1.1,1.22,0.015,0.63,17,316,29,1,0,-7.8,17,304,14,29,0.309,60.21,87.82,0.92,0.65,785,0.5,280,1.9
+16354,2023,12,7,17,0,-2.2,1.23,0.015,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.31,61.68,92.99,0.92,0.1,785,0.5,286,1.8
+16355,2023,12,7,17,30,-2.1,1.23,0.015,0.63,0,0,0,0,6,-8.6,0,0,0,0,0.31,61.22,98.14,0.92,0.1,785,0.5,290,1.8
+16356,2023,12,7,18,0,-2,1.23,0.016,0.63,0,0,0,0,6,-8.3,0,0,0,0,0.31,61.9,103.47,0.93,0.1,786,0.5,294,1.7
+16357,2023,12,7,18,30,-2,1.23,0.016,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.311,61.9,108.94,0.93,0.1,786,0.4,297,1.6
+16358,2023,12,7,19,0,-2,1.22,0.017,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.312,62.87,114.52,0.93,0.1,786,0.4,300,1.5
+16359,2023,12,7,19,30,-2.1,1.22,0.017,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.315,63.34,120.17,0.93,0.1,786,0.4,302,1.4
+16360,2023,12,7,20,0,-2.2,1.21,0.017,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.317,64.81,125.86,0.93,0.1,786,0.4,304,1.2
+16361,2023,12,7,20,30,-2.2,1.21,0.017,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.319,64.81,131.55,0.93,0.1,786,0.4,303,1.1
+16362,2023,12,7,21,0,-2.2,1.19,0.016,0.63,0,0,0,0,6,-7.9,0,0,0,0,0.322,64.93,137.2,0.93,0.1,785,0.4,302,1
+16363,2023,12,7,21,30,-2.1,1.19,0.016,0.63,0,0,0,0,6,-7.9,0,0,0,0,0.324,64.45,142.74,0.93,0.1,785,0.4,295,1
+16364,2023,12,7,22,0,-1.9,1.18,0.017,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.325,62.62,148.08,0.93,0.1,785,0.4,289,0.9
+16365,2023,12,7,22,30,-1.7,1.18,0.017,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.326,61.7,153.05,0.93,0.1,785,0.4,278,0.8
+16366,2023,12,7,23,0,-1.6,1.19,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.327,59.95,157.39,0.92,0.1,785,0.4,267,0.7
+16367,2023,12,7,23,30,-1.7,1.19,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.329,60.39,160.62,0.92,0.1,785,0.4,250,0.6
+16368,2023,12,8,0,0,-1.8,1.22,0.013,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.33,58.48,162.11,0.91,0.1,784,0.4,234,0.6
+16369,2023,12,8,0,30,-2,1.22,0.013,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.332,59.34,161.44,0.91,0.1,784,0.4,215,0.6
+16370,2023,12,8,1,0,-2.2,1.22,0.012,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.334,59.2,158.82,0.91,0.1,784,0.4,196,0.6
+16371,2023,12,8,1,30,-2.3,1.22,0.012,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.335,59.64,154.85,0.91,0.1,784,0.4,187,0.7
+16372,2023,12,8,2,0,-2.4,1.21,0.012,0.63,0,0,0,0,0,-9,0,0,0,0,0.335,60.4,150.09,0.91,0.1,784,0.4,177,0.7
+16373,2023,12,8,2,30,-2.6,1.21,0.012,0.63,0,0,0,0,7,-9,0,0,0,0,0.336,61.22,144.87,0.91,0.1,783,0.4,171,0.8
+16374,2023,12,8,3,0,-2.8,1.2,0.012,0.63,0,0,0,0,7,-8.7,0,0,0,0,0.336,63.7,139.4,0.91,0.1,783,0.4,164,0.8
+16375,2023,12,8,3,30,-3,1.2,0.012,0.63,0,0,0,0,7,-8.7,0,0,0,0,0.337,64.65,133.78,0.92,0.1,783,0.4,162,0.8
+16376,2023,12,8,4,0,-3.3,1.17,0.016,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.338,68.07,128.1,0.93,0.1,783,0.5,161,0.8
+16377,2023,12,8,4,30,-3.3,1.17,0.016,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.34,68.07,122.41,0.94,0.1,783,0.5,173,0.8
+16378,2023,12,8,5,0,-3.3,1.12,0.023,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.341,71.73,116.74,0.95,0.1,783,0.5,185,0.7
+16379,2023,12,8,5,30,-3.3,1.12,0.023,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.342,71.73,111.14,0.95,0.1,783,0.5,203,0.8
+16380,2023,12,8,6,0,-3.4,1.09,0.029,0.63,0,0,0,0,6,-6.8,0,0,0,0,0.344,77.26,105.62,0.96,0.1,783,0.6,220,0.8
+16381,2023,12,8,6,30,-3.4,1.09,0.029,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.344,77.26,100.24,0.96,0.1,783,0.6,225,1.1
+16382,2023,12,8,7,0,-3.4,1.09,0.033,0.63,0,0,0,0,7,-6.1,0,0,0,0,0.344,81.71,95.02,0.96,0.1,783,0.6,230,1.4
+16383,2023,12,8,7,30,-3.4,1.09,0.033,0.63,9,115,10,4,7,-6.1,5,0,57,5,0.344,81.71,89.6,0.96,0.1,783,0.6,238,1.8
+16384,2023,12,8,8,0,-3.4,1.12,0.037,0.63,28,461,67,7,7,-5.4,30,2,100,30,0.345,86.01,85.09,0.96,0.1,783,0.6,247,2.2
+16385,2023,12,8,8,30,-3.1,1.12,0.037,0.63,38,643,142,1,7,-5.4,77,122,14,97,0.346,84.1,80.67,0.96,0.1,783,0.6,261,2.8
+16386,2023,12,8,9,0,-2.8,1.15,0.04,0.63,45,748,219,0,7,-5.2,95,23,0,100,0.347,83.7,76.58,0.95,0.1,783,0.6,275,3.3
+16387,2023,12,8,9,30,-2.3,1.15,0.04,0.63,51,822,293,0,7,-5.2,147,66,0,166,0.35,80.66,72.89,0.95,0.1,783,0.6,289,4.2
+16388,2023,12,8,10,0,-1.9,1.17,0.037,0.63,54,874,357,0,7,-6,167,61,0,188,0.352,73.39,69.7,0.95,0.1,783,0.5,304,5
+16389,2023,12,8,10,30,-1.6,1.17,0.037,0.63,56,912,411,0,7,-6,169,49,0,188,0.354,71.79,67.08,0.94,0.1,783,0.5,310,5.6
+16390,2023,12,8,11,0,-1.4,1.2,0.029,0.63,55,939,451,0,6,-7.8,150,16,0,157,0.355,61.67,65.09,0.94,0.1,783,0.5,316,6.1
+16391,2023,12,8,11,30,-1.2,1.2,0.029,0.63,55,957,477,0,6,-7.8,139,9,0,143,0.355,60.77,63.81,0.93,0.1,783,0.5,315,6.3
+16392,2023,12,8,12,0,-1.1,1.21,0.022,0.63,53,974,491,0,6,-9.8,155,12,0,160,0.355,51.75,63.28,0.92,0.1,783,0.4,313,6.4
+16393,2023,12,8,12,30,-1.1,1.21,0.022,0.63,52,976,487,0,6,-9.8,145,8,0,149,0.356,51.75,63.51,0.92,0.1,783,0.4,312,6.3
+16394,2023,12,8,13,0,-1,1.22,0.018,0.63,49,972,468,0,6,-11.3,115,3,0,116,0.357,45.39,64.49,0.92,0.1,783,0.4,311,6.2
+16395,2023,12,8,13,30,-1.1,1.22,0.018,0.63,47,958,434,0,6,-11.3,103,3,0,104,0.359,45.73,66.2,0.92,0.1,783,0.4,311,6
+16396,2023,12,8,14,0,-1.3,1.23,0.017,0.63,46,934,387,0,6,-12.1,76,1,0,76,0.36,43.68,68.58,0.92,0.1,784,0.4,312,5.9
+16397,2023,12,8,14,30,-1.7,1.23,0.017,0.63,43,899,327,0,6,-12.1,66,3,0,67,0.362,44.99,71.56,0.92,0.1,784,0.4,313,5.7
+16398,2023,12,8,15,0,-2.1,1.23,0.017,0.63,39,846,257,0,7,-12.2,90,12,0,93,0.363,45.82,75.05,0.92,0.1,784,0.4,314,5.5
+16399,2023,12,8,15,30,-2.6,1.23,0.017,0.63,34,763,180,0,7,-12.2,59,6,0,60,0.364,47.61,78.99,0.92,0.1,785,0.4,314,5.1
+16400,2023,12,8,16,0,-3.2,1.24,0.018,0.63,27,627,100,6,7,-12,36,2,86,36,0.365,50.71,83.29,0.92,0.1,785,0.4,315,4.7
+16401,2023,12,8,16,30,-3.6,1.24,0.018,0.63,17,311,29,6,7,-12,15,1,86,15,0.366,52.31,87.82,0.92,0.1,786,0.4,315,4.4
+16402,2023,12,8,17,0,-4,1.26,0.018,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.366,55.52,92.98,0.92,0.79,786,0.4,315,4.1
+16403,2023,12,8,17,30,-4.3,1.26,0.018,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.365,56.86,98.13,0.92,0.79,787,0.4,315,4
+16404,2023,12,8,18,0,-4.5,1.27,0.018,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.365,59.46,103.46,0.92,0.79,787,0.4,316,3.9
+16405,2023,12,8,18,30,-4.8,1.27,0.018,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.363,60.82,108.92,0.92,0.79,787,0.4,317,3.9
+16406,2023,12,8,19,0,-5.1,1.27,0.018,0.63,0,0,0,0,7,-11,0,0,0,0,0.362,63.37,114.49,0.92,0.79,788,0.4,318,3.8
+16407,2023,12,8,19,30,-5.4,1.27,0.018,0.63,0,0,0,0,7,-11,0,0,0,0,0.362,64.82,120.14,0.92,0.79,788,0.4,319,3.8
+16408,2023,12,8,20,0,-5.7,1.26,0.019,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.361,66.94,125.83,0.92,0.79,788,0.4,321,3.8
+16409,2023,12,8,20,30,-5.8,1.26,0.019,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.36,67.45,131.53,0.92,0.79,788,0.4,322,4
+16410,2023,12,8,21,0,-6,1.24,0.023,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.36,69.27,137.18,0.93,0.79,789,0.4,324,4.1
+16411,2023,12,8,21,30,-6.1,1.24,0.023,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.36,69.8,142.73,0.93,0.79,789,0.4,324,4.3
+16412,2023,12,8,22,0,-6.2,1.2,0.028,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.359,71.75,148.07,0.94,0.79,789,0.4,325,4.6
+16413,2023,12,8,22,30,-6.2,1.2,0.028,0.63,0,0,0,0,5,-10.5,0,0,0,0,0.36,71.84,153.06,0.95,0.79,790,0.4,328,4.5
+16414,2023,12,8,23,0,-6.3,1.17,0.038,0.63,0,0,0,0,5,-10,0,0,0,0,0.36,75.06,157.42,0.96,0.79,790,0.5,331,4.5
+16415,2023,12,8,23,30,-6.3,1.17,0.038,0.63,0,0,0,0,8,-10,0,0,0,0,0.36,75.06,160.67,0.96,0.79,790,0.5,335,4.4
+16416,2023,12,9,0,0,-6.2,1.16,0.044,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.361,78.01,162.21,0.96,0.79,790,0.5,340,4.3
+16417,2023,12,9,0,30,-6.2,1.16,0.044,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.361,78.11,161.57,0.96,0.79,791,0.5,347,4.2
+16418,2023,12,9,1,0,-6.1,1.15,0.041,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.362,80.91,158.96,0.96,0.79,791,0.5,355,4.1
+16419,2023,12,9,1,30,-6,1.15,0.041,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.363,80.39,155,0.96,0.79,792,0.5,182,3.8
+16420,2023,12,9,2,0,-5.9,1.17,0.035,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.364,81.69,150.24,0.96,0.79,792,0.5,8,3.6
+16421,2023,12,9,2,30,-5.9,1.17,0.035,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.366,81.69,145.02,0.95,0.79,792,0.4,15,3.4
+16422,2023,12,9,3,0,-5.9,1.2,0.029,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.368,80.27,139.54,0.95,0.79,793,0.4,22,3.1
+16423,2023,12,9,3,30,-6.2,1.2,0.029,0.63,0,0,0,0,7,-8.7,0,0,0,0,0.37,82.13,133.93,0.95,0.79,793,0.4,27,2.7
+16424,2023,12,9,4,0,-6.6,1.25,0.022,0.63,0,0,0,0,8,-9.6,0,0,0,0,0.371,79.4,128.24,0.94,0.79,793,0.4,32,2.2
+16425,2023,12,9,4,30,-7,1.25,0.022,0.63,0,0,0,0,8,-9.6,0,0,0,0,0.372,81.98,122.55,0.94,0.79,794,0.4,29,1.9
+16426,2023,12,9,5,0,-7.4,1.29,0.018,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.373,81.19,116.88,0.93,0.79,794,0.4,26,1.7
+16427,2023,12,9,5,30,-7.7,1.29,0.018,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.374,83.2,111.28,0.93,0.79,795,0.4,17,1.5
+16428,2023,12,9,6,0,-8,1.31,0.017,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.375,83.95,105.77,0.92,0.79,795,0.4,7,1.4
+16429,2023,12,9,6,30,-8.1,1.31,0.017,0.63,0,0,0,0,8,-10.2,0,0,0,0,0.377,84.71,100.38,0.92,0.79,796,0.4,179,1.3
+16430,2023,12,9,7,0,-8.3,1.32,0.016,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.378,85.37,95.16,0.92,0.79,796,0.4,351,1.3
+16431,2023,12,9,7,30,-7.5,1.32,0.016,0.63,10,158,11,4,7,-10.3,6,0,57,6,0.379,80.24,89.72,0.92,0.79,796,0.4,350,1.6
+16432,2023,12,9,8,0,-6.7,1.33,0.016,0.63,24,552,70,7,5,-10.4,39,2,100,39,0.38,74.89,85.22,0.92,0.79,797,0.4,348,2
+16433,2023,12,9,8,30,-5.8,1.33,0.016,0.63,33,725,149,1,5,-10.4,96,75,14,108,0.38,69.91,80.81,0.92,0.79,797,0.4,351,2.2
+16434,2023,12,9,9,0,-4.9,1.35,0.015,0.63,41,828,231,0,5,-10.8,151,102,0,174,0.38,63.1,76.71,0.92,0.79,798,0.3,354,2.4
+16435,2023,12,9,9,30,-4.6,1.35,0.015,0.63,46,893,307,0,4,-10.8,146,378,0,256,0.377,61.69,73.03,0.92,0.79,798,0.3,355,2.2
+16436,2023,12,9,10,0,-4.4,1.36,0.014,0.63,50,936,373,0,4,-11.7,239,98,0,273,0.374,56.67,69.84,0.92,0.79,798,0.3,356,2.1
+16437,2023,12,9,10,30,-4.2,1.36,0.014,0.63,55,961,427,0,4,-11.7,228,352,0,364,0.369,55.83,67.21,0.92,0.79,798,0.3,352,2
+16438,2023,12,9,11,0,-4.1,1.32,0.018,0.63,60,976,469,0,4,-12.5,290,232,0,387,0.365,52.24,65.21,0.93,0.79,798,0.3,347,2
+16439,2023,12,9,11,30,-4,1.32,0.018,0.63,61,988,495,0,4,-12.5,290,299,0,421,0.361,51.85,63.92,0.93,0.79,798,0.3,344,1.9
+16440,2023,12,9,12,0,-3.8,1.32,0.017,0.63,61,993,506,0,5,-13,271,390,0,446,0.357,48.99,63.38,0.93,0.79,798,0.3,341,1.8
+16441,2023,12,9,12,30,-3.7,1.32,0.017,0.63,59,993,501,0,4,-13,333,125,0,389,0.355,48.63,63.6,0.92,0.79,798,0.3,339,1.7
+16442,2023,12,9,13,0,-3.7,1.33,0.015,0.63,57,987,481,0,4,-13.3,284,268,7,399,0.353,47.16,64.57,0.92,0.79,798,0.3,337,1.6
+16443,2023,12,9,13,30,-3.6,1.33,0.015,0.63,55,973,447,0,5,-13.3,231,346,0,370,0.353,46.81,66.27,0.92,0.79,798,0.3,331,1.6
+16444,2023,12,9,14,0,-3.5,1.34,0.014,0.63,51,951,398,0,0,-13.7,153,486,0,330,0.353,45,68.63,0.92,0.79,798,0.3,324,1.6
+16445,2023,12,9,14,30,-3.6,1.34,0.014,0.63,47,918,337,0,0,-13.7,66,787,0,315,0.353,45.34,71.59,0.91,0.79,798,0.3,320,1.6
+16446,2023,12,9,15,0,-3.7,1.35,0.012,0.63,41,870,265,0,0,-14.1,41,870,0,265,0.352,44.21,75.08,0.91,0.79,798,0.3,316,1.5
+16447,2023,12,9,15,30,-4.2,1.35,0.012,0.63,35,799,187,0,0,-14.1,35,799,0,187,0.352,45.9,79,0.91,0.79,798,0.3,308,1.2
+16448,2023,12,9,16,0,-4.7,1.36,0.011,0.63,27,679,106,0,0,-13.9,27,679,0,106,0.351,48.72,83.29,0.9,0.79,798,0.2,301,0.9
+16449,2023,12,9,16,30,-5.4,1.36,0.011,0.63,17,356,31,1,0,-13.9,17,287,14,28,0.35,51.43,87.82,0.9,0.79,799,0.2,274,0.7
+16450,2023,12,9,17,0,-6.1,1.36,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.349,53.58,92.98,0.9,0.8,799,0.2,247,0.6
+16451,2023,12,9,17,30,-6.5,1.36,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.348,55.24,98.12,0.9,0.8,799,0.2,236,0.7
+16452,2023,12,9,18,0,-6.9,1.37,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.346,56.7,103.44,0.89,0.8,799,0.2,225,0.8
+16453,2023,12,9,18,30,-7.3,1.37,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.345,58.47,108.9,0.89,0.8,799,0.2,220,0.9
+16454,2023,12,9,19,0,-7.7,1.38,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.344,60.65,114.47,0.89,0.8,799,0.3,214,1.1
+16455,2023,12,9,19,30,-8.1,1.38,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.343,62.56,120.11,0.89,0.8,799,0.3,213,1.2
+16456,2023,12,9,20,0,-8.5,1.38,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.341,63.24,125.8,0.89,0.8,799,0.3,212,1.3
+16457,2023,12,9,20,30,-8.8,1.38,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.34,64.74,131.5,0.9,0.8,799,0.3,211,1.4
+16458,2023,12,9,21,0,-9,1.37,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.339,65.34,137.15,0.9,0.8,799,0.3,210,1.5
+16459,2023,12,9,21,30,-9.3,1.37,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.338,66.89,142.7,0.9,0.8,799,0.3,207,1.6
+16460,2023,12,9,22,0,-9.5,1.36,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.338,67.69,148.06,0.9,0.8,799,0.4,204,1.7
+16461,2023,12,9,22,30,-9.7,1.36,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.337,68.67,153.06,0.9,0.8,798,0.4,200,1.8
+16462,2023,12,9,23,0,-9.9,1.34,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.336,69.92,157.44,0.9,0.8,798,0.4,197,1.9
+16463,2023,12,9,23,30,-10,1.34,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.334,70.48,160.73,0.91,0.8,798,0.4,195,2
+16464,2023,12,10,0,0,-10.1,1.31,0.01,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.331,71.11,162.29,0.91,0.8,797,0.4,193,2.2
+16465,2023,12,10,0,30,-10.1,1.31,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.329,71.11,161.69,0.92,0.8,797,0.5,194,2.3
+16466,2023,12,10,1,0,-10.1,1.27,0.013,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.327,71.41,159.09,0.93,0.8,797,0.5,195,2.5
+16467,2023,12,10,1,30,-10,1.27,0.013,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.324,70.85,155.14,0.93,0.8,797,0.5,197,2.4
+16468,2023,12,10,2,0,-9.9,1.26,0.016,0.63,0,0,0,0,6,-14.2,0,0,0,0,0.322,70.81,150.38,0.93,0.8,797,0.6,199,2.3
+16469,2023,12,10,2,30,-9.6,1.26,0.016,0.63,0,0,0,0,7,-14.2,0,0,0,0,0.32,69.15,145.16,0.93,0.8,797,0.6,199,2.4
+16470,2023,12,10,3,0,-9.3,1.27,0.016,0.63,0,0,0,0,0,-14,0,0,0,0,0.318,68.82,139.68,0.93,0.8,797,0.7,198,2.5
+16471,2023,12,10,3,30,-9.3,1.27,0.016,0.63,0,0,0,0,4,-14,0,0,0,0,0.317,68.74,134.06,0.93,0.8,796,0.7,195,2.4
+16472,2023,12,10,4,0,-9.4,1.29,0.015,0.63,0,0,0,0,4,-13.9,0,0,0,0,0.316,69.55,128.38,0.93,0.8,796,0.7,192,2.3
+16473,2023,12,10,4,30,-9.4,1.29,0.015,0.63,0,0,0,0,4,-13.9,0,0,0,0,0.317,69.55,122.69,0.92,0.8,796,0.7,192,2.2
+16474,2023,12,10,5,0,-9.5,1.29,0.014,0.63,0,0,0,0,7,-14,0,0,0,0,0.317,69.74,117.02,0.92,0.8,796,0.7,192,2.1
+16475,2023,12,10,5,30,-9.4,1.29,0.014,0.63,0,0,0,0,7,-14,0,0,0,0,0.318,69.19,111.42,0.92,0.8,796,0.7,194,2.2
+16476,2023,12,10,6,0,-9.4,1.29,0.015,0.63,0,0,0,0,7,-14.1,0,0,0,0,0.318,68.41,105.91,0.92,0.8,796,0.7,197,2.3
+16477,2023,12,10,6,30,-9.2,1.29,0.015,0.63,0,0,0,0,5,-14.1,0,0,0,0,0.319,67.43,100.52,0.93,0.8,797,0.7,197,2.4
+16478,2023,12,10,7,0,-9,1.27,0.016,0.63,0,0,0,0,4,-14.1,0,0,0,0,0.321,66.43,95.3,0.93,0.8,797,0.7,198,2.5
+16479,2023,12,10,7,30,-8.3,1.27,0.016,0.63,8,99,8,4,7,-14.1,4,0,57,4,0.322,62.9,89.84,0.93,0.8,797,0.7,197,2.9
+16480,2023,12,10,8,0,-7.5,1.25,0.018,0.63,24,505,65,7,7,-13.7,26,0,100,26,0.323,60.92,85.36,0.93,0.8,797,0.7,197,3.4
+16481,2023,12,10,8,30,-6.4,1.25,0.018,0.63,34,683,142,2,8,-13.7,67,13,29,69,0.325,55.98,80.94,0.93,0.8,797,0.7,197,3.7
+16482,2023,12,10,9,0,-5.3,1.25,0.019,0.63,42,786,221,0,4,-13.6,121,7,0,123,0.326,52,76.85,0.93,0.8,797,0.7,198,4
+16483,2023,12,10,9,30,-4,1.25,0.019,0.63,49,850,295,1,4,-13.6,132,5,18,133,0.327,47.15,73.16,0.93,0.8,797,0.7,201,4.2
+16484,2023,12,10,10,0,-2.7,1.25,0.019,0.63,53,893,359,3,4,-14.3,158,6,39,160,0.328,40.61,69.96,0.93,0.8,797,0.7,204,4.5
+16485,2023,12,10,10,30,-1.6,1.25,0.019,0.63,57,922,412,0,5,-14.3,203,11,0,207,0.328,37.4,67.33,0.93,0.8,796,0.7,208,4.6
+16486,2023,12,10,11,0,-0.5,1.26,0.018,0.63,59,941,452,0,4,-14.5,226,5,0,228,0.328,33.9,65.33,0.93,0.8,796,0.7,212,4.7
+16487,2023,12,10,11,30,0.2,1.26,0.018,0.63,60,954,478,1,4,-14.5,226,12,11,231,0.328,32.18,64.03,0.93,0.8,795,0.7,216,4.7
+16488,2023,12,10,12,0,1,1.27,0.017,0.63,60,960,489,0,8,-13.3,123,4,4,125,0.328,33.54,63.47,0.93,0.8,795,0.7,220,4.8
+16489,2023,12,10,12,30,1.4,1.27,0.017,0.63,60,959,485,0,7,-13.3,192,19,0,200,0.328,32.6,63.68,0.93,0.8,795,0.7,223,4.7
+16490,2023,12,10,13,0,1.8,1.28,0.017,0.63,59,952,467,0,7,-11.9,263,108,0,309,0.328,35.52,64.64,0.93,0.8,794,0.7,227,4.6
+16491,2023,12,10,13,30,1.8,1.28,0.017,0.63,57,938,434,0,7,-11.9,248,196,0,327,0.328,35.52,66.32,0.93,0.8,794,0.6,225,4.5
+16492,2023,12,10,14,0,1.8,1.27,0.017,0.63,54,914,386,0,7,-10.9,232,187,0,300,0.328,38.35,68.68,0.93,0.8,794,0.6,224,4.3
+16493,2023,12,10,14,30,1.3,1.27,0.017,0.63,50,878,327,0,7,-10.9,165,340,0,272,0.328,39.74,71.62,0.93,0.8,794,0.6,219,4
+16494,2023,12,10,15,0,0.8,1.27,0.017,0.63,45,825,257,0,7,-10.2,147,232,0,207,0.328,43.62,75.1,0.93,0.8,794,0.6,213,3.6
+16495,2023,12,10,15,30,-0.5,1.27,0.017,0.63,38,744,180,0,7,-10.2,112,47,0,121,0.329,47.92,79.01,0.93,0.8,794,0.6,207,3
+16496,2023,12,10,16,0,-1.9,1.27,0.017,0.63,29,609,100,6,7,-10,63,13,86,65,0.329,53.84,83.3,0.93,0.8,793,0.6,201,2.3
+16497,2023,12,10,16,30,-2.7,1.27,0.017,0.63,18,300,29,6,7,-10,19,3,86,19,0.33,57.12,87.81,0.93,0.8,793,0.6,199,2.4
+16498,2023,12,10,17,0,-3.5,1.27,0.017,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.331,58,92.96,0.93,0.74,793,0.6,196,2.4
+16499,2023,12,10,17,30,-3.8,1.27,0.017,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.331,59.31,98.1,0.93,0.74,793,0.6,195,2.5
+16500,2023,12,10,18,0,-4.1,1.28,0.017,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.331,59.39,103.41,0.93,0.74,793,0.6,194,2.6
+16501,2023,12,10,18,30,-4.4,1.28,0.017,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.332,60.74,108.87,0.93,0.74,793,0.6,193,2.6
+16502,2023,12,10,19,0,-4.7,1.28,0.018,0.63,0,0,0,0,6,-11.1,0,0,0,0,0.332,60.94,114.43,0.93,0.74,793,0.6,192,2.6
+16503,2023,12,10,19,30,-5.1,1.28,0.018,0.63,0,0,0,0,6,-11.1,0,0,0,0,0.332,62.81,120.08,0.94,0.74,793,0.6,191,2.4
+16504,2023,12,10,20,0,-5.4,1.29,0.017,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.332,63.42,125.77,0.94,0.74,793,0.7,190,2.2
+16505,2023,12,10,20,30,-5.8,1.29,0.017,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.332,65.38,131.46,0.94,0.74,793,0.7,191,2
+16506,2023,12,10,21,0,-6.1,1.29,0.017,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.332,66.16,137.12,0.94,0.74,793,0.7,191,1.9
+16507,2023,12,10,21,30,-6.3,1.29,0.017,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.332,67.18,142.67,0.94,0.74,793,0.7,193,1.7
+16508,2023,12,10,22,0,-6.4,1.3,0.016,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.333,66.69,148.04,0.93,0.74,793,0.7,195,1.6
+16509,2023,12,10,22,30,-6.6,1.3,0.016,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.333,67.72,153.05,0.93,0.74,793,0.7,195,1.4
+16510,2023,12,10,23,0,-6.7,1.3,0.014,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.333,67.35,157.45,0.93,0.74,793,0.8,195,1.3
+16511,2023,12,10,23,30,-6.8,1.3,0.014,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.333,67.87,160.77,0.93,0.74,793,0.8,197,1.2
+16512,2023,12,11,0,0,-6.8,1.29,0.013,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.333,67.43,162.37,0.93,0.74,793,0.8,199,1.1
+16513,2023,12,11,0,30,-6.8,1.29,0.013,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.333,67.43,161.8,0.93,0.74,793,0.8,201,1
+16514,2023,12,11,1,0,-6.7,1.28,0.013,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.334,67.02,159.22,0.93,0.74,793,0.8,204,0.8
+16515,2023,12,11,1,30,-6.7,1.28,0.013,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.334,67.02,155.27,0.93,0.74,793,0.8,199,0.8
+16516,2023,12,11,2,0,-6.7,1.27,0.012,0.63,0,0,0,0,4,-11.8,0,0,0,0,0.334,66.92,150.51,0.93,0.74,793,0.8,193,0.8
+16517,2023,12,11,2,30,-6.7,1.27,0.012,0.63,0,0,0,0,8,-11.8,0,0,0,0,0.334,66.92,145.29,0.93,0.74,793,0.8,187,0.8
+16518,2023,12,11,3,0,-6.7,1.27,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.334,66.12,139.82,0.93,0.74,793,0.8,180,0.8
+16519,2023,12,11,3,30,-6.7,1.27,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.333,66.12,134.2,0.93,0.74,793,0.8,175,0.8
+16520,2023,12,11,4,0,-6.7,1.26,0.013,0.63,0,0,0,0,4,-12.2,0,0,29,0,0.332,64.94,128.52,0.93,0.74,793,0.8,170,0.8
+16521,2023,12,11,4,30,-6.7,1.26,0.013,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.331,64.94,122.83,0.94,0.74,793,0.8,164,0.8
+16522,2023,12,11,5,0,-6.7,1.24,0.014,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.33,64.3,117.16,0.94,0.74,793,0.8,159,0.8
+16523,2023,12,11,5,30,-6.6,1.24,0.014,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.328,63.81,111.55,0.94,0.74,793,0.8,155,0.8
+16524,2023,12,11,6,0,-6.6,1.24,0.015,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.327,64.07,106.04,0.94,0.74,793,0.8,152,0.8
+16525,2023,12,11,6,30,-6.4,1.24,0.015,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.325,63.09,100.66,0.94,0.74,793,0.8,151,0.8
+16526,2023,12,11,7,0,-6.3,1.24,0.015,0.63,0,0,0,0,7,-12,0,0,0,0,0.324,63.8,95.44,0.94,0.74,793,0.8,149,0.7
+16527,2023,12,11,7,30,-5.6,1.24,0.015,0.63,7,97,7,4,6,-12,3,0,57,3,0.322,60.49,89.96,0.94,0.74,793,0.8,157,0.7
+16528,2023,12,11,8,0,-5,1.25,0.016,0.63,23,495,62,7,7,-11.6,36,3,100,36,0.321,59.7,85.49,0.94,0.74,793,0.8,164,0.8
+16529,2023,12,11,8,30,-4,1.25,0.016,0.63,33,676,138,1,8,-11.6,67,11,18,69,0.32,55.37,81.08,0.94,0.74,793,0.8,173,0.9
+16530,2023,12,11,9,0,-3.1,1.26,0.016,0.63,40,781,216,0,7,-11.7,98,18,0,102,0.318,51.31,76.98,0.94,0.74,793,0.8,181,1.1
+16531,2023,12,11,9,30,-1.8,1.26,0.016,0.63,45,848,289,0,7,-11.7,130,24,0,137,0.317,46.6,73.29,0.93,0.74,793,0.8,194,1.3
+16532,2023,12,11,10,0,-0.4,1.3,0.014,0.63,49,895,354,0,7,-11.5,135,11,0,139,0.316,42.74,70.09,0.93,0.74,793,0.8,207,1.6
+16533,2023,12,11,10,30,0.4,1.3,0.014,0.63,54,924,408,0,8,-11.5,216,63,0,240,0.314,40.33,67.44,0.93,0.74,793,0.8,212,1.7
+16534,2023,12,11,11,0,1.3,1.25,0.016,0.63,56,943,448,0,5,-10.6,269,64,0,296,0.313,40.75,65.44,0.94,0.74,793,0.7,218,1.8
+16535,2023,12,11,11,30,1.8,1.25,0.016,0.63,58,956,475,0,8,-10.6,237,318,0,376,0.312,39.27,64.13,0.94,0.74,792,0.7,221,1.8
+16536,2023,12,11,12,0,2.2,1.25,0.016,0.63,59,961,487,0,7,-9.7,261,267,0,380,0.311,41.05,63.56,0.94,0.74,792,0.7,224,1.8
+16537,2023,12,11,12,30,2.4,1.25,0.016,0.63,59,962,484,0,7,-9.7,277,225,0,377,0.31,40.47,63.75,0.94,0.74,792,0.7,227,1.8
+16538,2023,12,11,13,0,2.6,1.26,0.016,0.63,57,956,466,0,7,-9.2,269,169,0,341,0.309,41.59,64.7,0.94,0.74,792,0.6,230,1.8
+16539,2023,12,11,13,30,2.5,1.26,0.016,0.63,56,941,433,0,8,-9.2,215,220,0,303,0.309,41.83,66.37,0.94,0.74,791,0.6,231,1.6
+16540,2023,12,11,14,0,2.5,1.22,0.018,0.63,53,917,386,0,0,-9,123,645,0,357,0.308,42.5,68.71,0.93,0.74,791,0.6,231,1.4
+16541,2023,12,11,14,30,2.1,1.22,0.018,0.63,49,883,327,0,0,-9,55,856,0,324,0.309,43.73,71.65,0.93,0.74,791,0.6,228,1
+16542,2023,12,11,15,0,1.7,1.25,0.015,0.63,43,834,257,0,0,-7.7,43,834,0,257,0.309,49.87,75.11,0.92,0.74,791,0.6,226,0.6
+16543,2023,12,11,15,30,1,1.25,0.015,0.63,36,757,180,0,0,-7.7,36,757,0,180,0.31,52.44,79.02,0.92,0.74,791,0.6,221,0.4
+16544,2023,12,11,16,0,0.2,1.26,0.013,0.63,27,630,101,0,0,-8.8,27,630,0,101,0.31,50.67,83.29,0.91,0.74,791,0.5,216,0.1
+16545,2023,12,11,16,30,-0.5,1.26,0.013,0.63,17,318,29,0,0,-8.8,17,318,0,29,0.311,53.31,87.8,0.91,0.74,791,0.5,141,0.3
+16546,2023,12,11,17,0,-1.1,1.26,0.012,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.312,51.61,92.94,0.9,0.1,791,0.5,66,0.6
+16547,2023,12,11,17,30,-1.8,1.26,0.012,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.313,54.33,98.07,0.9,0.1,791,0.5,66,0.8
+16548,2023,12,11,18,0,-2.4,1.26,0.012,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.314,57.93,103.38,0.9,0.1,791,0.5,66,1
+16549,2023,12,11,18,30,-2.9,1.26,0.012,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.314,60.12,108.83,0.9,0.1,791,0.5,67,1
+16550,2023,12,11,19,0,-3.3,1.26,0.012,0.63,0,0,0,0,0,-9.2,0,0,0,0,0.315,63.85,114.4,0.9,0.1,791,0.5,68,1.1
+16551,2023,12,11,19,30,-3.6,1.26,0.012,0.63,0,0,0,0,0,-9.2,0,0,0,0,0.315,65.3,120.04,0.9,0.1,791,0.5,70,1.1
+16552,2023,12,11,20,0,-3.9,1.25,0.012,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.316,68.11,125.72,0.91,0.1,791,0.5,71,1.1
+16553,2023,12,11,20,30,-4.1,1.25,0.012,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.316,69.14,131.42,0.91,0.1,791,0.5,72,1
+16554,2023,12,11,21,0,-4.3,1.25,0.014,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.316,72.05,137.08,0.92,0.1,791,0.5,74,1
+16555,2023,12,11,21,30,-4.6,1.25,0.014,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.315,73.69,142.64,0.92,0.1,791,0.5,74,1
+16556,2023,12,11,22,0,-4.8,1.22,0.016,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.314,77.44,148.01,0.93,0.1,791,0.5,75,1
+16557,2023,12,11,22,30,-4.9,1.22,0.016,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.313,78.03,153.04,0.93,0.1,791,0.5,75,1
+16558,2023,12,11,23,0,-5.1,1.21,0.016,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.312,82.36,157.45,0.93,0.1,791,0.5,76,1
+16559,2023,12,11,23,30,-5.1,1.21,0.016,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.311,82.25,160.8,0.93,0.1,790,0.5,76,1
+16560,2023,12,12,0,0,-5.2,1.21,0.017,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.31,85.03,162.45,0.94,0.1,790,0.5,76,1
+16561,2023,12,12,0,30,-5.3,1.21,0.017,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.309,85.68,161.9,0.94,0.1,790,0.5,76,1
+16562,2023,12,12,1,0,-5.4,1.2,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.309,86.94,159.34,0.94,0.1,790,0.5,75,1
+16563,2023,12,12,1,30,-5.4,1.2,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.308,86.94,155.4,0.94,0.1,790,0.5,75,1
+16564,2023,12,12,2,0,-5.4,1.19,0.02,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.308,86.78,150.64,0.94,0.1,790,0.5,75,1
+16565,2023,12,12,2,30,-5.4,1.19,0.02,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.308,86.78,145.43,0.94,0.1,790,0.5,74,1
+16566,2023,12,12,3,0,-5.3,1.18,0.022,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.308,85.53,139.95,0.94,0.1,790,0.6,73,0.9
+16567,2023,12,12,3,30,-5.3,1.18,0.022,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.308,85.53,134.33,0.94,0.1,790,0.6,71,0.9
+16568,2023,12,12,4,0,-5.3,1.16,0.023,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.308,84.4,128.65,0.94,0.1,789,0.6,69,0.9
+16569,2023,12,12,4,30,-5.2,1.16,0.023,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.309,83.76,122.96,0.94,0.1,789,0.6,67,0.9
+16570,2023,12,12,5,0,-5.2,1.14,0.024,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.31,82.66,117.29,0.94,0.1,789,0.6,65,0.8
+16571,2023,12,12,5,30,-5,1.14,0.024,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.311,81.41,111.69,0.94,0.1,789,0.6,63,0.8
+16572,2023,12,12,6,0,-4.9,1.13,0.025,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.311,79.7,106.17,0.94,0.1,789,0.6,60,0.8
+16573,2023,12,12,6,30,-4.8,1.13,0.025,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.312,79.1,100.79,0.94,0.1,789,0.6,58,0.9
+16574,2023,12,12,7,0,-4.6,1.13,0.025,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.313,76.64,95.57,0.94,0.1,789,0.6,55,0.9
+16575,2023,12,12,7,30,-4.1,1.13,0.025,0.63,7,88,7,3,7,-8.1,3,0,43,3,0.314,73.81,90.08,0.94,0.1,789,0.6,48,1.1
+16576,2023,12,12,8,0,-3.6,1.13,0.025,0.63,25,476,61,4,7,-7.9,30,3,100,30,0.314,71.84,85.62,0.94,0.1,789,0.6,40,1.3
+16577,2023,12,12,8,30,-2.8,1.13,0.025,0.63,34,667,136,1,7,-7.9,49,6,29,50,0.315,67.69,81.2,0.94,0.1,789,0.6,38,1.7
+16578,2023,12,12,9,0,-2,1.15,0.024,0.63,41,777,214,0,7,-7.5,63,5,0,64,0.316,66.01,77.1,0.94,0.1,789,0.6,36,2.1
+16579,2023,12,12,9,30,-1.2,1.15,0.024,0.63,45,846,287,0,7,-7.5,116,20,0,122,0.316,62.24,73.41,0.94,0.1,789,0.6,37,2.2
+16580,2023,12,12,10,0,-0.4,1.17,0.024,0.63,49,892,351,0,7,-7.7,115,9,0,118,0.317,57.68,70.2,0.94,0.1,790,0.6,38,2.3
+16581,2023,12,12,10,30,0.5,1.17,0.024,0.63,51,922,403,0,7,-7.7,144,15,0,150,0.318,54.04,67.55,0.94,0.1,790,0.6,40,2.4
+16582,2023,12,12,11,0,1.4,1.18,0.023,0.63,52,941,442,0,6,-7.8,189,40,0,206,0.318,50.58,65.54,0.94,0.1,789,0.6,42,2.6
+16583,2023,12,12,11,30,2,1.18,0.023,0.63,53,951,467,0,7,-7.8,213,62,0,240,0.318,48.46,64.22,0.94,0.1,789,0.6,44,2.7
+16584,2023,12,12,12,0,2.5,1.19,0.024,0.63,54,955,478,0,7,-7.7,234,151,0,301,0.319,46.83,63.64,0.94,0.1,789,0.6,46,2.9
+16585,2023,12,12,12,30,2.7,1.19,0.024,0.63,55,953,475,0,7,-7.7,233,210,0,326,0.319,46.17,63.82,0.94,0.1,789,0.6,46,3
+16586,2023,12,12,13,0,3,1.2,0.024,0.63,54,945,457,0,7,-7.4,204,337,0,348,0.318,46.35,64.76,0.94,0.1,789,0.6,46,3.1
+16587,2023,12,12,13,30,2.9,1.2,0.024,0.63,52,930,424,0,8,-7.4,190,319,0,318,0.318,46.68,66.42,0.93,0.1,789,0.6,46,3.1
+16588,2023,12,12,14,0,2.9,1.22,0.024,0.63,50,905,378,0,8,-6.5,171,303,0,281,0.318,50.15,68.74,0.93,0.1,789,0.6,45,3.1
+16589,2023,12,12,14,30,2.4,1.22,0.024,0.63,47,869,320,0,8,-6.5,154,169,0,207,0.318,51.96,71.67,0.93,0.1,789,0.6,43,2.8
+16590,2023,12,12,15,0,1.9,1.23,0.023,0.63,43,815,252,0,8,-4.8,87,194,0,137,0.318,60.94,75.12,0.93,0.1,789,0.6,42,2.4
+16591,2023,12,12,15,30,0.8,1.23,0.023,0.63,37,731,176,0,7,-4.8,85,179,0,119,0.318,65.93,79.01,0.93,0.1,789,0.6,40,2.4
+16592,2023,12,12,16,0,-0.3,1.24,0.023,0.63,29,593,98,6,7,-4.8,60,82,86,70,0.318,71.8,83.28,0.93,0.1,789,0.6,38,2.4
+16593,2023,12,12,16,30,-0.9,1.24,0.023,0.63,17,286,28,7,7,-4.8,17,3,100,17,0.319,75.1,87.78,0.93,0.1,790,0.6,38,2.8
+16594,2023,12,12,17,0,-1.5,1.24,0.022,0.63,0,0,0,1,7,-4.4,0,0,14,0,0.319,80.7,92.91,0.93,0.1,790,0.6,38,3.2
+16595,2023,12,12,17,30,-1.7,1.24,0.022,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.319,81.9,98.04,0.92,0.1,790,0.6,39,3.5
+16596,2023,12,12,18,0,-1.9,1.23,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.32,85.65,103.34,0.92,0.1,790,0.6,39,3.7
+16597,2023,12,12,18,30,-2.1,1.23,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.321,86.92,108.79,0.92,0.1,790,0.6,40,3.8
+16598,2023,12,12,19,0,-2.3,1.23,0.022,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.322,88.62,114.35,0.92,0.1,790,0.6,40,3.8
+16599,2023,12,12,19,30,-2.5,1.23,0.022,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.323,89.94,119.99,0.92,0.1,790,0.6,41,3.8
+16600,2023,12,12,20,0,-2.7,1.23,0.023,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.324,90.42,125.68,0.92,0.1,791,0.6,42,3.8
+16601,2023,12,12,20,30,-2.9,1.23,0.023,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.325,91.77,131.37,0.92,0.1,791,0.6,41,3.7
+16602,2023,12,12,21,0,-3.1,1.21,0.024,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.325,91.12,137.03,0.92,0.1,791,0.6,40,3.6
+16603,2023,12,12,21,30,-3.2,1.21,0.024,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.326,91.81,142.6,0.92,0.1,791,0.6,40,3.5
+16604,2023,12,12,22,0,-3.4,1.19,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.326,90.5,147.98,0.92,0.1,791,0.6,39,3.4
+16605,2023,12,12,22,30,-3.4,1.19,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.326,90.5,153.02,0.92,0.1,791,0.6,38,3.4
+16606,2023,12,12,23,0,-3.5,1.18,0.025,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.327,88.91,157.45,0.92,0.1,792,0.6,37,3.4
+16607,2023,12,12,23,30,-3.6,1.18,0.025,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.328,89.57,160.83,0.92,0.1,792,0.6,37,3.4
+16608,2023,12,13,0,0,-3.7,1.18,0.026,0.63,0,0,0,0,7,-5.3,0,0,0,0,0.329,88.35,162.51,0.93,0.1,792,0.6,36,3.4
+16609,2023,12,13,0,30,-3.9,1.18,0.026,0.63,0,0,0,0,7,-5.3,0,0,0,0,0.33,89.68,162,0.93,0.1,792,0.7,35,3.3
+16610,2023,12,13,1,0,-4,1.17,0.028,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.331,88.78,159.46,0.93,0.1,792,0.7,35,3.2
+16611,2023,12,13,1,30,-4,1.17,0.028,0.63,0,0,0,0,7,-5.6,0,0,0,0,0.332,88.78,155.53,0.93,0.1,792,0.7,35,3.1
+16612,2023,12,13,2,0,-4.1,1.16,0.029,0.63,0,0,0,0,7,-5.8,0,0,0,0,0.333,88.25,150.77,0.93,0.1,792,0.7,34,3
+16613,2023,12,13,2,30,-4,1.16,0.029,0.63,0,0,0,0,7,-5.8,0,0,0,0,0.333,87.59,145.56,0.93,0.1,792,0.7,33,3
+16614,2023,12,13,3,0,-4,1.15,0.029,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.333,86.38,140.08,0.93,0.1,792,0.7,33,3.1
+16615,2023,12,13,3,30,-4.1,1.15,0.029,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.333,87.03,134.46,0.93,0.1,792,0.7,31,3.1
+16616,2023,12,13,4,0,-4.1,1.13,0.029,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.333,85.47,128.78,0.93,0.1,792,0.7,30,3.2
+16617,2023,12,13,4,30,-4.2,1.13,0.029,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.334,86.11,123.09,0.93,0.1,792,0.7,30,3.3
+16618,2023,12,13,5,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.334,84.09,117.42,0.93,0.1,792,0.7,30,3.3
+16619,2023,12,13,5,30,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.335,84.19,111.82,0.93,0.1,793,0.7,30,3.3
+16620,2023,12,13,6,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.336,82.34,106.3,0.93,0.1,793,0.7,31,3.3
+16621,2023,12,13,6,30,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.336,82.34,100.92,0.93,0.1,793,0.7,31,3.3
+16622,2023,12,13,7,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-7,0,0,0,0,0.336,81.11,95.69,0.93,0.1,793,0.8,32,3.3
+16623,2023,12,13,7,30,-3.8,1.12,0.03,0.63,6,76,6,1,0,-7,4,27,18,4,0.336,78.71,90.18,0.93,0.1,793,0.8,34,3.4
+16624,2023,12,13,8,0,-3.5,1.14,0.029,0.63,24,438,57,2,0,-6.8,28,312,36,51,0.336,77.78,85.74,0.93,0.1,794,0.8,36,3.4
+16625,2023,12,13,8,30,-2.6,1.14,0.029,0.63,34,636,130,0,0,-6.8,34,636,0,130,0.336,72.75,81.33,0.93,0.1,794,0.8,37,3.4
+16626,2023,12,13,9,0,-1.8,1.18,0.027,0.63,41,752,207,0,0,-6.4,41,752,0,207,0.336,71.02,77.22,0.92,0.1,794,0.8,38,3.4
+16627,2023,12,13,9,30,-0.6,1.18,0.027,0.63,45,826,279,0,0,-6.4,45,826,0,279,0.337,65.05,73.52,0.92,0.1,794,0.7,40,3.4
+16628,2023,12,13,10,0,0.6,1.21,0.023,0.63,48,877,343,0,0,-5.4,48,877,0,343,0.337,64.29,70.31,0.92,0.1,794,0.7,42,3.3
+16629,2023,12,13,10,30,2,1.21,0.023,0.63,50,911,396,0,0,-5.4,76,793,0,378,0.338,58.15,67.65,0.91,0.1,794,0.7,48,3.1
+16630,2023,12,13,11,0,3.5,1.23,0.021,0.63,50,934,435,0,7,-4.8,129,638,0,392,0.338,54.63,65.63,0.91,0.1,793,0.7,54,3
+16631,2023,12,13,11,30,4.5,1.23,0.021,0.63,51,946,461,0,7,-4.8,195,131,0,252,0.339,50.93,64.3,0.9,0.1,793,0.7,64,2.8
+16632,2023,12,13,12,0,5.5,1.22,0.02,0.63,50,952,472,0,7,-4.4,183,422,7,370,0.339,48.97,63.71,0.9,0.1,793,0.7,74,2.6
+16633,2023,12,13,12,30,5.8,1.22,0.02,0.63,51,950,469,0,0,-4.4,115,696,0,421,0.339,47.96,63.88,0.9,0.1,793,0.7,77,2.3
+16634,2023,12,13,13,0,6.1,1.22,0.021,0.63,50,942,451,0,0,-4.3,91,792,0,428,0.34,47.33,64.8,0.91,0.1,792,0.7,80,2.1
+16635,2023,12,13,13,30,6,1.22,0.021,0.63,49,925,419,0,0,-4.3,66,858,0,409,0.34,47.66,66.45,0.91,0.1,792,0.7,77,1.9
+16636,2023,12,13,14,0,5.8,1.2,0.023,0.63,48,899,374,0,0,-4,48,899,0,374,0.34,49.3,68.76,0.91,0.1,792,0.7,74,1.7
+16637,2023,12,13,14,30,4.9,1.2,0.023,0.63,45,861,316,0,0,-4,45,861,0,316,0.34,52.47,71.68,0.91,0.1,792,0.7,63,1.3
+16638,2023,12,13,15,0,4,1.18,0.024,0.63,42,805,249,0,7,-2.6,101,416,0,208,0.34,62.07,75.12,0.92,0.1,792,0.7,52,0.9
+16639,2023,12,13,15,30,2.4,1.18,0.024,0.63,37,718,174,0,7,-2.6,81,41,0,89,0.34,69.49,79,0.92,0.1,792,0.7,48,1.1
+16640,2023,12,13,16,0,0.9,1.16,0.025,0.63,29,576,97,4,7,-4.1,39,173,54,59,0.34,69.31,83.26,0.92,0.1,792,0.7,44,1.2
+16641,2023,12,13,16,30,0.3,1.16,0.025,0.63,17,272,28,0,0,-4.1,17,272,0,28,0.34,72.47,87.76,0.92,0.1,793,0.7,46,1.2
+16642,2023,12,13,17,0,-0.3,1.15,0.027,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.339,73.96,92.88,0.93,0.1,793,0.7,48,1.3
+16643,2023,12,13,17,30,-0.5,1.15,0.027,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.338,75.05,98,0.93,0.1,793,0.7,44,1.3
+16644,2023,12,13,18,0,-0.6,1.16,0.026,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.337,76.74,103.3,0.93,0.1,793,0.7,40,1.2
+16645,2023,12,13,18,30,-1,1.16,0.026,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.336,79.02,108.74,0.92,0.1,793,0.7,37,1.3
+16646,2023,12,13,19,0,-1.4,1.18,0.025,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.336,81.88,114.3,0.92,0.1,794,0.7,33,1.3
+16647,2023,12,13,19,30,-1.6,1.18,0.025,0.63,0,0,0,0,7,-4.1,0,0,0,0,0.335,82.99,119.94,0.92,0.1,793,0.7,31,1.3
+16648,2023,12,13,20,0,-1.9,1.2,0.025,0.63,0,0,0,0,0,-4,0,0,0,0,0.335,85.53,125.62,0.92,0.1,793,0.7,29,1.3
+16649,2023,12,13,20,30,-2.2,1.2,0.025,0.63,0,0,0,0,0,-4,0,0,0,0,0.335,87.44,131.32,0.92,0.1,793,0.7,28,1.3
+16650,2023,12,13,21,0,-2.5,1.22,0.024,0.63,0,0,0,0,5,-3.9,0,0,0,0,0.335,89.77,136.98,0.92,0.1,793,0.7,27,1.3
+16651,2023,12,13,21,30,-2.7,1.22,0.024,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.335,91.11,142.55,0.92,0.1,793,0.7,28,1.3
+16652,2023,12,13,22,0,-3,1.24,0.023,0.63,0,0,0,0,7,-4,0,0,0,0,0.336,93.09,147.94,0.91,0.1,793,0.7,28,1.3
+16653,2023,12,13,22,30,-3.1,1.24,0.023,0.63,0,0,0,0,7,-4,0,0,0,0,0.336,93.79,152.99,0.91,0.1,793,0.7,27,1.3
+16654,2023,12,13,23,0,-3.1,1.24,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.336,93.26,157.44,0.91,0.1,793,0.7,26,1.2
+16655,2023,12,13,23,30,-3.2,1.24,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.337,93.95,160.85,0.92,0.1,793,0.7,24,1.2
+16656,2023,12,14,0,0,-3.2,1.23,0.025,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.337,92.96,162.56,0.92,0.1,793,0.7,22,1.2
+16657,2023,12,14,0,30,-3.2,1.23,0.025,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.338,92.96,162.08,0.92,0.1,793,0.8,23,1.2
+16658,2023,12,14,1,0,-3.2,1.21,0.027,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.338,92.11,159.57,0.92,0.1,793,0.8,24,1.2
+16659,2023,12,14,1,30,-3.1,1.21,0.027,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.339,91.43,155.65,0.92,0.1,793,0.8,30,1.2
+16660,2023,12,14,2,0,-3.1,1.2,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.339,90.7,150.9,0.92,0.1,793,0.8,36,1.2
+16661,2023,12,14,2,30,-3.3,1.2,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.338,92.06,145.68,0.92,0.1,793,0.8,41,1.3
+16662,2023,12,14,3,0,-3.4,1.21,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.338,91.85,140.21,0.92,0.1,793,0.8,46,1.3
+16663,2023,12,14,3,30,-3.7,1.21,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.337,93.93,134.59,0.92,0.1,793,0.8,48,1.1
+16664,2023,12,14,4,0,-3.9,1.22,0.028,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.336,94.44,128.91,0.92,0.1,793,0.8,50,1
+16665,2023,12,14,4,30,-4.1,1.22,0.028,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.336,95.87,123.21,0.92,0.1,793,0.8,44,0.9
+16666,2023,12,14,5,0,-4.3,1.23,0.026,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.336,96.57,117.55,0.92,0.1,793,0.7,37,0.8
+16667,2023,12,14,5,30,-4.7,1.23,0.026,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.336,99.52,111.94,0.91,0.1,793,0.7,24,0.9
+16668,2023,12,14,6,0,-5.1,1.24,0.024,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.337,100,106.43,0.91,0.1,793,0.7,11,1
+16669,2023,12,14,6,30,-5.5,1.24,0.024,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.336,100,101.04,0.91,0.1,793,0.7,12,1
+16670,2023,12,14,7,0,-5.8,1.23,0.023,0.63,0,0,0,0,0,-5.8,0,0,0,0,0.335,100,95.82,0.91,0.1,793,0.6,13,1
+16671,2023,12,14,7,30,-5.2,1.23,0.023,0.63,6,80,6,0,0,-5.3,6,80,0,6,0.333,99.22,90.29,0.91,0.1,793,0.6,35,1.1
+16672,2023,12,14,8,0,-4.5,1.21,0.027,0.63,23,452,56,0,0,-5.6,23,452,0,56,0.331,91.99,85.86,0.92,0.1,794,0.6,57,1.2
+16673,2023,12,14,8,30,-3.5,1.21,0.027,0.63,34,644,130,0,0,-5.6,34,644,0,130,0.329,85.34,81.44,0.92,0.1,794,0.6,76,1.2
+16674,2023,12,14,9,0,-2.5,1.21,0.03,0.63,42,753,207,0,0,-4.7,42,753,0,207,0.327,84.58,77.33,0.93,0.1,794,0.6,94,1.3
+16675,2023,12,14,9,30,-1.6,1.21,0.03,0.63,47,827,280,0,0,-4.7,47,827,0,280,0.325,79.15,73.63,0.92,0.1,794,0.6,76,0.8
+16676,2023,12,14,10,0,-0.6,1.22,0.028,0.63,50,878,344,0,0,-4.3,50,878,0,344,0.324,75.86,70.41,0.92,0.1,794,0.6,58,0.3
+16677,2023,12,14,10,30,0.1,1.22,0.028,0.63,52,911,397,0,0,-4.3,52,911,0,397,0.322,72.1,67.75,0.92,0.1,794,0.6,186,1
+16678,2023,12,14,11,0,0.9,1.17,0.025,0.63,53,933,437,0,0,-4.7,53,933,0,437,0.321,66.22,65.72,0.92,0.1,794,0.6,314,1.7
+16679,2023,12,14,11,30,1.4,1.17,0.025,0.63,54,947,463,0,0,-4.7,54,947,0,463,0.319,63.8,64.38,0.91,0.1,793,0.6,311,2.2
+16680,2023,12,14,12,0,1.9,1.16,0.023,0.63,53,955,475,0,0,-5.3,53,955,0,475,0.318,59.04,63.77,0.91,0.1,793,0.6,308,2.6
+16681,2023,12,14,12,30,2.3,1.16,0.023,0.63,52,955,472,0,0,-5.3,52,955,0,472,0.317,57.38,63.93,0.91,0.1,793,0.6,305,2.7
+16682,2023,12,14,13,0,2.7,1.15,0.021,0.63,51,950,455,0,0,-5.9,51,950,0,455,0.316,53,64.84,0.91,0.1,792,0.6,303,2.7
+16683,2023,12,14,13,30,3,1.15,0.021,0.63,50,937,424,0,0,-5.9,50,937,0,424,0.315,51.88,66.48,0.91,0.1,792,0.6,299,2.6
+16684,2023,12,14,14,0,3.2,1.17,0.019,0.63,46,917,378,0,0,-6.5,46,917,0,378,0.314,49.09,68.78,0.91,0.1,792,0.6,296,2.4
+16685,2023,12,14,14,30,2.8,1.17,0.019,0.63,43,883,321,0,0,-6.5,43,883,0,321,0.313,50.56,71.68,0.91,0.1,793,0.6,284,1.7
+16686,2023,12,14,15,0,2.4,1.15,0.018,0.63,40,830,253,0,0,-4.8,40,830,0,253,0.312,58.81,75.11,0.9,0.1,793,0.6,272,1
+16687,2023,12,14,15,30,1.1,1.15,0.018,0.63,35,749,178,0,0,-4.8,35,749,0,178,0.311,64.53,78.99,0.9,0.1,793,0.6,258,1
+16688,2023,12,14,16,0,-0.2,1.13,0.018,0.63,27,616,100,0,0,-6.2,27,616,0,100,0.31,63.99,83.24,0.9,0.1,793,0.5,244,1
+16689,2023,12,14,16,30,-1,1.13,0.018,0.63,17,306,29,0,0,-6.2,17,306,0,29,0.31,67.92,87.73,0.9,0.1,794,0.5,240,1
+16690,2023,12,14,17,0,-1.8,1.1,0.017,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.309,69.02,92.84,0.9,0.1,794,0.5,236,1.1
+16691,2023,12,14,17,30,-2.1,1.1,0.017,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.309,70.56,97.95,0.9,0.1,794,0.5,236,1.1
+16692,2023,12,14,18,0,-2.4,1.08,0.017,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.309,73.4,103.25,0.89,0.1,795,0.5,237,1
+16693,2023,12,14,18,30,-2.6,1.08,0.017,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.31,74.5,108.69,0.89,0.1,795,0.5,239,1
+16694,2023,12,14,19,0,-2.8,1.08,0.017,0.63,0,0,0,0,0,-6.4,0,0,0,0,0.31,76.51,114.25,0.89,0.1,795,0.5,242,1
+16695,2023,12,14,19,30,-3,1.08,0.017,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.312,77.75,119.88,0.89,0.1,796,0.5,245,0.9
+16696,2023,12,14,20,0,-3.2,1.1,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.313,79.48,125.57,0.89,0.1,796,0.5,248,0.9
+16697,2023,12,14,20,30,-3.3,1.1,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.315,80.07,131.26,0.89,0.1,796,0.5,249,0.9
+16698,2023,12,14,21,0,-3.4,1.12,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.317,80.68,136.93,0.89,0.1,796,0.4,251,0.9
+16699,2023,12,14,21,30,-3.5,1.12,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.319,81.28,142.5,0.89,0.1,796,0.4,250,0.8
+16700,2023,12,14,22,0,-3.7,1.14,0.016,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.322,81.89,147.89,0.88,0.1,796,0.4,250,0.8
+16701,2023,12,14,22,30,-3.9,1.14,0.016,0.63,0,0,0,0,0,-6.3,0,0,0,0,0.323,83.13,152.95,0.88,0.1,796,0.4,250,0.8
+16702,2023,12,14,23,0,-4.1,1.16,0.015,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.324,83.26,157.42,0.88,0.1,796,0.4,251,0.8
+16703,2023,12,14,23,30,-4.3,1.16,0.015,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.324,84.52,160.86,0.88,0.1,796,0.4,253,0.8
+16704,2023,12,15,0,0,-4.5,1.18,0.015,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.324,84.6,162.61,0.88,0.1,796,0.4,256,0.7
+16705,2023,12,15,0,30,-4.7,1.18,0.015,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.324,85.89,162.17,0.88,0.1,796,0.4,259,0.7
+16706,2023,12,15,1,0,-4.9,1.2,0.015,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.324,86.23,159.67,0.88,0.1,796,0.4,261,0.6
+16707,2023,12,15,1,30,-4.9,1.2,0.015,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.325,86.23,155.76,0.88,0.1,796,0.4,260,0.5
+16708,2023,12,15,2,0,-4.9,1.21,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.325,85.86,151.02,0.88,0.1,797,0.4,258,0.4
+16709,2023,12,15,2,30,-5,1.21,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.326,86.52,145.8,0.88,0.1,797,0.4,255,0.3
+16710,2023,12,15,3,0,-5,1.22,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.327,86.4,140.33,0.88,0.1,797,0.4,252,0.3
+16711,2023,12,15,3,30,-5,1.22,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.328,86.4,134.71,0.88,0.1,797,0.4,266,0.2
+16712,2023,12,15,4,0,-5.1,1.23,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.328,86.86,129.03,0.88,0.1,797,0.4,281,0.1
+16713,2023,12,15,4,30,-5,1.23,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.329,86.21,123.34,0.88,0.1,797,0.4,172,0.1
+16714,2023,12,15,5,0,-5,1.24,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.33,86.27,117.67,0.88,0.1,798,0.4,63,0.1
+16715,2023,12,15,5,30,-5.1,1.24,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.331,86.93,112.06,0.88,0.1,798,0.4,143,0.1
+16716,2023,12,15,6,0,-5.2,1.24,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.331,87.66,106.55,0.88,0.1,798,0.4,223,0.1
+16717,2023,12,15,6,30,-5.4,1.24,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.329,89,101.16,0.88,0.1,798,0.4,267,0.2
+16718,2023,12,15,7,0,-5.5,1.23,0.014,0.63,0,0,0,0,0,-7,0,0,0,0,0.328,89.35,95.94,0.88,0.1,799,0.4,310,0.3
+16719,2023,12,15,7,30,-5,1.23,0.014,0.63,8,98,6,0,0,-7,8,98,0,6,0.325,86.03,90.91,0.88,0.1,799,0.4,330,0.3
+16720,2023,12,15,8,0,-4.6,1.23,0.014,0.63,21,514,57,0,0,-6.9,21,514,0,57,0.322,83.98,85.97,0.88,0.1,799,0.4,350,0.3
+16721,2023,12,15,8,30,-3.3,1.23,0.014,0.63,29,703,132,0,0,-6.9,29,703,0,132,0.321,76.28,81.55,0.88,0.1,800,0.4,186,0.5
+16722,2023,12,15,9,0,-2,1.24,0.013,0.63,35,811,211,0,0,-6.6,35,811,0,211,0.321,70.75,77.44,0.88,0.1,800,0.4,22,0.7
+16723,2023,12,15,9,30,-0.7,1.24,0.013,0.63,38,878,284,0,0,-6.6,38,878,0,284,0.322,64.32,73.73,0.88,0.1,800,0.4,11,0.9
+16724,2023,12,15,10,0,0.5,1.25,0.013,0.63,40,923,348,0,0,-7.6,40,923,0,348,0.323,54.53,70.51,0.88,0.1,800,0.4,0,1.1
+16725,2023,12,15,10,30,1.5,1.25,0.013,0.63,43,952,402,0,0,-7.6,43,952,0,402,0.324,50.75,67.84,0.88,0.1,800,0.4,172,1.2
+16726,2023,12,15,11,0,2.6,1.29,0.012,0.63,44,972,442,0,0,-8.9,44,972,0,442,0.325,42.39,65.8,0.87,0.1,800,0.4,344,1.4
+16727,2023,12,15,11,30,3.1,1.29,0.012,0.63,44,984,468,0,0,-8.9,44,984,0,468,0.327,40.87,64.45,0.87,0.1,799,0.4,340,1.2
+16728,2023,12,15,12,0,3.6,1.31,0.012,0.63,44,989,480,0,0,-9.9,44,989,0,480,0.328,36.48,63.83,0.87,0.1,799,0.4,337,1
+16729,2023,12,15,12,30,3.9,1.31,0.012,0.63,44,988,477,0,0,-9.9,44,988,0,477,0.328,35.72,63.98,0.87,0.1,799,0.4,322,0.9
+16730,2023,12,15,13,0,4.1,1.31,0.012,0.63,42,981,459,0,0,-10.6,42,981,0,459,0.329,33.54,64.87,0.87,0.1,799,0.4,308,0.9
+16731,2023,12,15,13,30,4.1,1.31,0.012,0.63,43,968,429,0,0,-10.6,43,968,0,429,0.329,33.54,66.49,0.88,0.1,799,0.4,298,0.8
+16732,2023,12,15,14,0,4.1,1.1,0.014,0.63,43,946,385,0,0,-10.8,43,946,0,385,0.329,32.82,68.78,0.88,0.1,799,0.4,287,0.8
+16733,2023,12,15,14,30,3.6,1.1,0.014,0.63,40,918,329,0,0,-10.8,40,918,0,329,0.329,34,71.67,0.88,0.1,799,0.3,262,0.6
+16734,2023,12,15,15,0,3.1,1.1,0.013,0.63,37,868,260,0,0,-7.8,37,868,0,260,0.329,44.7,75.09,0.88,0.1,799,0.3,238,0.4
+16735,2023,12,15,15,30,2.3,1.1,0.013,0.63,32,789,183,0,0,-7.8,32,789,0,183,0.329,47.31,78.96,0.88,0.1,799,0.3,219,0.4
+16736,2023,12,15,16,0,1.6,1.1,0.013,0.63,26,659,104,0,0,-10,26,659,0,104,0.328,41.83,83.2,0.88,0.1,799,0.3,200,0.4
+16737,2023,12,15,16,30,1.1,1.1,0.013,0.63,17,338,31,0,0,-10,17,338,0,31,0.329,43.35,87.69,0.88,0.1,799,0.3,170,0.4
+16738,2023,12,15,17,0,0.6,1.12,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.329,42.27,92.8,0.88,0.1,799,0.3,140,0.4
+16739,2023,12,15,17,30,0,1.12,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.328,44.14,97.9,0.89,0.1,799,0.3,141,0.7
+16740,2023,12,15,18,0,-0.6,1.13,0.016,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.328,46.87,103.2,0.89,0.1,799,0.3,141,0.9
+16741,2023,12,15,18,30,-1.2,1.13,0.016,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.327,48.97,108.64,0.9,0.1,799,0.3,150,1
+16742,2023,12,15,19,0,-1.8,1.13,0.016,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.326,52.56,114.19,0.9,0.1,799,0.3,160,1.1
+16743,2023,12,15,19,30,-1.9,1.13,0.016,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.327,52.95,119.82,0.9,0.1,799,0.3,175,1.1
+16744,2023,12,15,20,0,-2,1.13,0.016,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.327,53.85,125.5,0.9,0.1,799,0.3,190,1
+16745,2023,12,15,20,30,-2,1.13,0.016,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.327,53.85,131.2,0.89,0.1,799,0.3,208,1
+16746,2023,12,15,21,0,-1.9,1.14,0.016,0.63,0,0,0,0,7,-10,0,0,0,0,0.328,53.89,136.87,0.89,0.1,799,0.3,227,1
+16747,2023,12,15,21,30,-1.9,1.14,0.016,0.63,0,0,0,0,0,-10,0,0,0,0,0.328,53.89,142.44,0.9,0.1,799,0.3,232,0.9
+16748,2023,12,15,22,0,-1.9,1.16,0.016,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.329,54.48,147.84,0.9,0.1,799,0.3,237,0.9
+16749,2023,12,15,22,30,-2.1,1.16,0.016,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,55.29,152.91,0.89,0.1,799,0.3,234,0.9
+16750,2023,12,15,23,0,-2.3,1.18,0.014,0.63,0,0,0,0,0,-10,0,0,0,0,0.33,55.57,157.4,0.88,0.1,799,0.4,230,1
+16751,2023,12,15,23,30,-2.6,1.18,0.014,0.63,0,0,0,0,0,-10,0,0,0,0,0.33,56.81,160.86,0.88,0.1,799,0.4,226,1
+16752,2023,12,16,0,0,-3,1.18,0.014,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.33,57.13,162.65,0.88,0.1,798,0.4,223,1.1
+16753,2023,12,16,0,30,-3.3,1.18,0.014,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.33,58.42,162.24,0.88,0.1,798,0.4,220,1.1
+16754,2023,12,16,1,0,-3.7,1.17,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.33,59.26,159.77,0.88,0.1,798,0.4,218,1.2
+16755,2023,12,16,1,30,-4,1.17,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.329,60.61,155.87,0.88,0.1,798,0.4,215,1.2
+16756,2023,12,16,2,0,-4.3,1.16,0.014,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.329,61.38,151.13,0.88,0.1,798,0.4,213,1.2
+16757,2023,12,16,2,30,-4.7,1.16,0.014,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.328,63.26,145.92,0.89,0.1,798,0.4,212,1.2
+16758,2023,12,16,3,0,-5,1.16,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.327,63.91,140.45,0.89,0.1,797,0.4,211,1.2
+16759,2023,12,16,3,30,-5.3,1.16,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.327,65.37,134.83,0.89,0.1,797,0.4,211,1.2
+16760,2023,12,16,4,0,-5.5,1.15,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.326,65.53,129.15,0.89,0.1,797,0.4,211,1.2
+16761,2023,12,16,4,30,-5.8,1.15,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.325,67.05,123.45,0.89,0.1,797,0.4,211,1.2
+16762,2023,12,16,5,0,-6,1.15,0.014,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.324,67.43,117.79,0.89,0.1,798,0.4,211,1.2
+16763,2023,12,16,5,30,-6.1,1.15,0.014,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.322,67.95,112.18,0.89,0.1,798,0.4,209,1.2
+16764,2023,12,16,6,0,-6.3,1.15,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.321,68.17,106.67,0.89,0.1,798,0.4,208,1.2
+16765,2023,12,16,6,30,-6.5,1.15,0.014,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.32,69.23,101.28,0.89,0.1,798,0.4,207,1.2
+16766,2023,12,16,7,0,-6.7,1.15,0.013,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.318,69.31,96.05,0.89,0.1,798,0.4,205,1.2
+16767,2023,12,16,7,30,-5.9,1.15,0.013,0.63,4,53,3,0,0,-11.4,4,53,0,3,0.316,65.2,91.02,0.89,0.1,798,0.4,205,1.2
+16768,2023,12,16,8,0,-5.2,1.16,0.013,0.63,21,512,56,0,0,-10.7,21,512,0,56,0.315,65.34,86.07,0.89,0.1,798,0.4,205,1.1
+16769,2023,12,16,8,30,-3.4,1.16,0.013,0.63,29,704,131,0,0,-10.7,29,704,0,131,0.314,57.07,81.66,0.89,0.1,798,0.4,208,1.7
+16770,2023,12,16,9,0,-1.7,1.18,0.012,0.63,34,813,209,0,0,-10.3,34,813,0,209,0.312,51.89,77.54,0.89,0.1,798,0.4,210,2.3
+16771,2023,12,16,9,30,-0.3,1.18,0.012,0.63,37,880,282,0,0,-10.3,37,880,0,282,0.311,46.85,73.83,0.89,0.1,798,0.4,216,2.6
+16772,2023,12,16,10,0,1.1,1.2,0.012,0.63,40,924,347,0,0,-9.9,40,924,0,347,0.31,43.54,70.6,0.89,0.1,798,0.4,221,3
+16773,2023,12,16,10,30,2.3,1.2,0.012,0.63,41,955,400,0,0,-10,41,955,0,400,0.308,39.91,67.92,0.89,0.1,797,0.4,226,3.3
+16774,2023,12,16,11,0,3.4,1.41,0.011,0.63,42,975,441,0,0,-10,83,785,7,404,0.307,36.86,65.87,0.89,0.1,797,0.4,231,3.7
+16775,2023,12,16,11,30,4,1.41,0.011,0.63,43,987,468,0,7,-10,179,380,0,343,0.306,35.29,64.51,0.89,0.1,796,0.4,232,3.8
+16776,2023,12,16,12,0,4.6,1.46,0.011,0.63,43,993,480,0,7,-10,163,520,0,392,0.304,33.73,63.88,0.89,0.1,796,0.4,233,3.9
+16777,2023,12,16,12,30,4.9,1.46,0.011,0.63,42,992,477,0,7,-10,132,638,0,412,0.304,33.04,64.01,0.89,0.1,796,0.4,233,3.9
+16778,2023,12,16,13,0,5.1,1.49,0.01,0.63,41,986,459,0,0,-10.1,70,865,0,437,0.303,32.34,64.9,0.88,0.1,795,0.4,234,3.9
+16779,2023,12,16,13,30,5,1.49,0.01,0.63,41,972,428,0,0,-10.1,61,901,0,420,0.303,32.57,66.51,0.88,0.1,795,0.4,233,3.7
+16780,2023,12,16,14,0,4.9,1.52,0.01,0.63,38,950,382,0,0,-10,68,832,0,369,0.303,33.07,68.78,0.88,0.1,795,0.4,233,3.5
+16781,2023,12,16,14,30,4,1.52,0.01,0.63,37,916,325,0,7,-10,122,510,0,282,0.304,35.22,71.66,0.88,0.1,795,0.4,231,2.7
+16782,2023,12,16,15,0,3,1.49,0.01,0.63,34,866,257,0,7,-7.8,109,429,0,220,0.304,44.79,75.07,0.89,0.1,795,0.4,229,1.9
+16783,2023,12,16,15,30,1.2,1.49,0.01,0.63,31,787,182,0,7,-7.9,91,335,0,155,0.306,50.92,78.93,0.89,0.1,795,0.4,223,1.5
+16784,2023,12,16,16,0,-0.6,1.45,0.011,0.63,25,657,103,6,7,-8.3,64,81,86,74,0.307,55.92,83.17,0.9,0.1,795,0.4,218,1.2
+16785,2023,12,16,16,30,-1.2,1.45,0.011,0.63,17,341,31,7,7,-8.3,19,4,100,19,0.308,58.42,87.65,0.9,0.1,795,0.4,216,1.2
+16786,2023,12,16,17,0,-1.7,1.42,0.012,0.63,0,0,0,1,7,-9.5,0,0,14,0,0.31,55.1,92.75,0.9,0.1,795,0.4,214,1.3
+16787,2023,12,16,17,30,-1.9,1.42,0.012,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.311,55.92,97.85,0.91,0.1,795,0.4,214,1.2
+16788,2023,12,16,18,0,-2,1.39,0.013,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.313,56.48,103.14,0.91,0.1,795,0.4,215,1.1
+16789,2023,12,16,18,30,-2.1,1.39,0.013,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.314,56.9,108.57,0.91,0.1,795,0.4,216,1.1
+16790,2023,12,16,19,0,-2.3,1.38,0.014,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.315,58,114.12,0.91,0.1,795,0.4,217,1.1
+16791,2023,12,16,19,30,-2.5,1.38,0.014,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.315,58.86,119.75,0.91,0.1,795,0.4,215,1.1
+16792,2023,12,16,20,0,-2.7,1.42,0.013,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.315,59.23,125.44,0.9,0.1,795,0.4,213,1.1
+16793,2023,12,16,20,30,-2.8,1.42,0.013,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.315,59.67,131.13,0.9,0.1,795,0.4,212,1.1
+16794,2023,12,16,21,0,-3,1.45,0.011,0.63,0,0,0,0,0,-9.7,0,0,0,0,0.315,59.9,136.8,0.89,0.1,795,0.4,210,1.2
+16795,2023,12,16,21,30,-3.1,1.45,0.011,0.63,0,0,0,0,0,-9.7,0,0,0,0,0.315,60.35,142.38,0.89,0.1,795,0.4,210,1.2
+16796,2023,12,16,22,0,-3.2,1.45,0.011,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.314,60.33,147.78,0.88,0.1,795,0.4,210,1.2
+16797,2023,12,16,22,30,-3.3,1.45,0.011,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.314,60.79,152.86,0.89,0.1,795,0.4,211,1.2
+16798,2023,12,16,23,0,-3.4,1.42,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.314,60.94,157.37,0.89,0.1,795,0.4,211,1.2
+16799,2023,12,16,23,30,-3.6,1.42,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.314,61.85,160.85,0.88,0.1,795,0.4,212,1.2
+16800,2023,12,17,0,0,-3.8,1.4,0.01,0.63,0,0,0,0,0,-10,0,0,0,0,0.313,61.86,162.68,0.88,0.1,795,0.4,213,1.2
+16801,2023,12,17,0,30,-4,1.4,0.01,0.63,0,0,0,0,0,-10,0,0,0,0,0.313,62.8,162.3,0.88,0.1,795,0.4,215,1.2
+16802,2023,12,17,1,0,-4.2,1.38,0.01,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.313,62.76,159.86,0.88,0.1,795,0.4,217,1.1
+16803,2023,12,17,1,30,-4.3,1.38,0.01,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.313,63.24,155.97,0.88,0.1,795,0.4,221,1
+16804,2023,12,17,2,0,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.313,63.12,151.24,0.88,0.1,795,0.3,225,0.9
+16805,2023,12,17,2,30,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.314,63.12,146.03,0.88,0.1,795,0.3,230,0.8
+16806,2023,12,17,3,0,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.314,62.64,140.56,0.88,0.1,795,0.3,236,0.7
+16807,2023,12,17,3,30,-4.5,1.35,0.011,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.315,63.11,134.95,0.87,0.1,795,0.3,241,0.5
+16808,2023,12,17,4,0,-4.6,1.37,0.01,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.315,62.87,129.26,0.87,0.1,795,0.3,246,0.4
+16809,2023,12,17,4,30,-4.6,1.37,0.01,0.63,0,0,0,0,0,-10.6,0,0,0,0,0.315,62.87,123.57,0.87,0.1,795,0.3,250,0.3
+16810,2023,12,17,5,0,-4.7,1.37,0.01,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.315,62.94,117.9,0.86,0.1,795,0.3,255,0.2
+16811,2023,12,17,5,30,-4.8,1.37,0.01,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.315,63.49,112.29,0.86,0.1,796,0.3,147,0.1
+16812,2023,12,17,6,0,-4.9,1.36,0.01,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.316,63.64,106.78,0.86,0.1,796,0.3,39,0.1
+16813,2023,12,17,6,30,-5,1.36,0.01,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.316,64.12,101.39,0.86,0.1,796,0.3,184,0.1
+16814,2023,12,17,7,0,-5.2,1.35,0.01,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.316,64.55,96.16,0.86,0.1,796,0.3,329,0.1
+16815,2023,12,17,7,30,-4.8,1.35,0.01,0.63,4,56,3,0,0,-10.8,4,56,0,3,0.316,62.62,91.13,0.86,0.1,796,0.3,307,0.2
+16816,2023,12,17,8,0,-4.3,1.33,0.01,0.63,19,535,55,0,0,-10.4,19,535,0,55,0.316,62.51,86.18,0.86,0.1,797,0.3,285,0.2
+16817,2023,12,17,8,30,-2.9,1.33,0.01,0.63,26,724,130,0,0,-10.4,26,724,0,130,0.316,56.3,81.76,0.86,0.1,797,0.3,272,0.3
+16818,2023,12,17,9,0,-1.4,1.32,0.01,0.63,31,830,209,0,0,-9.5,31,830,0,209,0.316,54.19,77.64,0.86,0.1,797,0.3,258,0.5
+16819,2023,12,17,9,30,-0.1,1.32,0.01,0.63,35,896,283,0,0,-9.5,35,896,0,283,0.316,49.29,73.92,0.86,0.1,797,0.3,263,0.6
+16820,2023,12,17,10,0,1.2,1.32,0.01,0.63,38,940,349,0,0,-10.2,38,940,0,349,0.315,42.52,70.68,0.86,0.1,798,0.3,268,0.7
+16821,2023,12,17,10,30,2.5,1.32,0.01,0.63,41,966,403,0,0,-10.2,41,966,0,403,0.315,38.7,67.99,0.88,0.1,797,0.3,283,0.9
+16822,2023,12,17,11,0,3.7,0.92,0.013,0.63,44,982,445,0,0,-11,44,982,0,445,0.315,33.22,65.93,0.89,0.1,797,0.3,297,1.1
+16823,2023,12,17,11,30,4.5,0.92,0.013,0.63,45,994,472,0,0,-11,45,994,0,472,0.315,31.41,64.56,0.89,0.1,797,0.3,303,1.2
+16824,2023,12,17,12,0,5.2,0.91,0.013,0.63,45,1000,485,0,0,-11.7,45,1000,0,485,0.315,28.24,63.92,0.89,0.1,796,0.3,309,1.3
+16825,2023,12,17,12,30,5.5,0.91,0.013,0.63,46,999,483,0,0,-11.7,46,999,0,483,0.315,27.66,64.04,0.89,0.1,796,0.3,321,1.1
+16826,2023,12,17,13,0,5.9,0.92,0.012,0.63,45,992,465,0,0,-12.3,45,992,0,465,0.315,25.69,64.92,0.89,0.1,796,0.3,332,1
+16827,2023,12,17,13,30,5.9,0.92,0.012,0.63,44,978,434,0,0,-12.3,44,978,0,434,0.315,25.69,66.51,0.89,0.1,796,0.3,338,0.9
+16828,2023,12,17,14,0,5.8,0.89,0.013,0.63,42,955,388,0,0,-12.1,42,955,0,388,0.315,26.24,68.78,0.89,0.1,796,0.3,344,0.7
+16829,2023,12,17,14,30,5.2,0.89,0.013,0.63,40,922,330,0,0,-12.1,40,922,0,330,0.314,27.35,71.65,0.89,0.1,796,0.3,327,0.5
+16830,2023,12,17,15,0,4.6,0.91,0.012,0.63,36,872,261,0,0,-9.1,36,872,0,261,0.313,36.31,75.04,0.89,0.1,796,0.3,310,0.3
+16831,2023,12,17,15,30,3.8,0.91,0.012,0.63,32,795,185,0,0,-9.1,32,795,0,185,0.313,38.4,78.9,0.89,0.1,796,0.3,295,0.2
+16832,2023,12,17,16,0,3,0.93,0.012,0.63,26,665,106,0,0,-11.8,26,665,0,106,0.312,32.77,83.12,0.89,0.1,796,0.3,281,0.2
+16833,2023,12,17,16,30,2.5,0.93,0.012,0.63,18,345,32,0,0,-11.8,18,345,0,32,0.312,33.95,87.6,0.89,0.1,796,0.3,177,0.3
+16834,2023,12,17,17,0,2,0.95,0.012,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.311,33.3,92.69,0.89,0.1,796,0.3,73,0.4
+16835,2023,12,17,17,30,1.5,0.95,0.012,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.311,34.51,97.79,0.89,0.1,796,0.3,79,0.6
+16836,2023,12,17,18,0,1,0.95,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.31,35.83,103.07,0.89,0.1,796,0.3,84,0.8
+16837,2023,12,17,18,30,0.6,0.95,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.31,36.88,108.5,0.88,0.1,796,0.3,93,0.8
+16838,2023,12,17,19,0,0.1,0.95,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.309,38.96,114.05,0.88,0.1,796,0.3,101,0.9
+16839,2023,12,17,19,30,-0.1,0.95,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.31,39.52,119.68,0.88,0.1,796,0.3,115,0.8
+16840,2023,12,17,20,0,-0.3,0.96,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.311,40.38,125.36,0.88,0.1,796,0.3,130,0.7
+16841,2023,12,17,20,30,-0.5,0.96,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.313,40.97,131.06,0.88,0.1,796,0.3,157,0.6
+16842,2023,12,17,21,0,-0.7,0.97,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.315,41.48,136.73,0.88,0.1,796,0.3,184,0.6
+16843,2023,12,17,21,30,-0.9,0.97,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.317,42.09,142.31,0.88,0.1,796,0.3,201,0.6
+16844,2023,12,17,22,0,-1,0.98,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.32,42.22,147.72,0.89,0.1,796,0.3,219,0.5
+16845,2023,12,17,22,30,-1.1,0.98,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.322,42.53,152.81,0.89,0.1,796,0.3,217,0.5
+16846,2023,12,17,23,0,-1.2,0.99,0.01,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.323,42.85,157.33,0.89,0.1,796,0.3,215,0.4
+16847,2023,12,17,23,30,-1.4,0.99,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.323,43.49,160.84,0.89,0.1,796,0.3,205,0.4
+16848,2023,12,18,0,0,-1.6,1.01,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,43.7,162.7,0.9,0.1,796,0.3,195,0.4
+16849,2023,12,18,0,30,-1.8,1.01,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,44.29,162.36,0.9,0.1,795,0.3,182,0.5
+16850,2023,12,18,1,0,-2,1.04,0.012,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.322,45.13,159.94,0.9,0.1,795,0.3,169,0.5
+16851,2023,12,18,1,30,-2.3,1.04,0.012,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.323,46.15,156.07,0.91,0.1,795,0.3,166,0.6
+16852,2023,12,18,2,0,-2.6,1.06,0.014,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.324,47.23,151.34,0.91,0.1,795,0.3,164,0.7
+16853,2023,12,18,2,30,-2.9,1.06,0.014,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.325,48.3,146.14,0.92,0.1,795,0.3,167,0.7
+16854,2023,12,18,3,0,-3.2,1.07,0.016,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.326,49.2,140.67,0.92,0.1,795,0.3,170,0.8
+16855,2023,12,18,3,30,-3.5,1.07,0.016,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.328,50.32,135.06,0.92,0.1,795,0.3,177,0.8
+16856,2023,12,18,4,0,-3.8,1.08,0.016,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.329,51.84,129.38,0.92,0.1,795,0.3,185,0.8
+16857,2023,12,18,4,30,-4,1.08,0.016,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.33,52.62,123.68,0.92,0.1,795,0.3,189,0.9
+16858,2023,12,18,5,0,-4.2,1.08,0.017,0.63,0,0,0,0,0,-12,0,0,0,0,0.331,54.55,118.01,0.92,0.1,795,0.3,194,0.9
+16859,2023,12,18,5,30,-4.4,1.08,0.017,0.63,0,0,0,0,0,-12,0,0,0,0,0.332,55.37,112.4,0.92,0.1,795,0.3,193,1
+16860,2023,12,18,6,0,-4.6,1.08,0.018,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.332,57.48,106.89,0.93,0.1,795,0.3,193,1
+16861,2023,12,18,6,30,-4.7,1.08,0.018,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.332,57.84,101.5,0.93,0.1,794,0.3,190,1.1
+16862,2023,12,18,7,0,-4.9,1.08,0.018,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.333,59.52,96.27,0.93,0.1,794,0.3,187,1.1
+16863,2023,12,18,7,30,-4.4,1.08,0.018,0.63,4,49,3,3,7,-11.6,1,0,43,1,0.331,57.32,91.23,0.93,0.1,794,0.3,187,1.1
+16864,2023,12,18,8,0,-4,1.09,0.018,0.63,22,492,54,7,7,-10.7,23,1,100,23,0.33,59.8,86.27,0.93,0.1,794,0.3,188,1.1
+16865,2023,12,18,8,30,-2.8,1.09,0.018,0.63,30,695,129,3,7,-10.7,66,22,43,69,0.328,54.68,81.85,0.93,0.1,794,0.3,193,1.3
+16866,2023,12,18,9,0,-1.6,1.11,0.018,0.63,37,808,209,0,7,-9.8,101,36,0,109,0.326,53.71,77.73,0.93,0.1,794,0.3,198,1.5
+16867,2023,12,18,9,30,-0.7,1.11,0.018,0.63,41,878,283,0,7,-9.8,146,84,0,169,0.324,50.29,74.01,0.93,0.1,794,0.3,205,1.7
+16868,2023,12,18,10,0,0.3,1.13,0.017,0.63,44,926,349,0,7,-10.2,172,177,0,230,0.323,45.25,70.76,0.92,0.1,794,0.3,212,2
+16869,2023,12,18,10,30,1.3,1.13,0.017,0.63,47,956,404,0,7,-10.2,203,121,0,248,0.321,42.05,68.06,0.92,0.1,793,0.3,217,2.5
+16870,2023,12,18,11,0,2.4,1.13,0.017,0.63,48,976,445,0,7,-10,175,60,0,199,0.32,39.56,65.99,0.92,0.1,793,0.3,222,3
+16871,2023,12,18,11,30,3.2,1.13,0.017,0.63,49,989,473,0,7,-10,226,88,0,264,0.318,37.38,64.61,0.92,0.1,793,0.3,222,3.4
+16872,2023,12,18,12,0,3.9,1.14,0.016,0.63,49,995,486,0,7,-10.1,241,127,0,297,0.316,35.3,63.96,0.92,0.1,792,0.3,222,3.8
+16873,2023,12,18,12,30,4.2,1.14,0.016,0.63,50,993,484,0,7,-10.1,219,225,0,317,0.315,34.57,64.07,0.92,0.1,792,0.3,221,3.9
+16874,2023,12,18,13,0,4.5,1.13,0.018,0.63,50,985,467,0,6,-10.2,163,67,0,191,0.314,33.65,64.93,0.93,0.1,791,0.3,221,4.1
+16875,2023,12,18,13,30,4,1.13,0.018,0.63,49,968,435,0,6,-10.2,134,10,0,138,0.313,34.85,66.51,0.93,0.1,791,0.3,221,3.6
+16876,2023,12,18,14,0,3.6,1.13,0.019,0.63,47,938,387,0,6,-9.2,94,3,0,95,0.312,38.69,68.76,0.93,0.1,791,0.4,221,3.1
+16877,2023,12,18,14,30,2.6,1.13,0.019,0.63,45,899,328,0,6,-9.2,64,1,0,64,0.311,41.52,71.62,0.93,0.1,791,0.4,218,2.4
+16878,2023,12,18,15,0,1.7,1.14,0.019,0.63,41,846,260,0,6,-8,55,2,0,56,0.311,48.6,75.01,0.93,0.1,791,0.4,216,1.8
+16879,2023,12,18,15,30,0.7,1.14,0.019,0.63,36,766,184,0,6,-8,36,0,0,36,0.311,52.21,78.85,0.93,0.1,791,0.4,212,1.6
+16880,2023,12,18,16,0,-0.4,1.16,0.018,0.63,28,627,104,6,6,-8,28,1,86,28,0.31,56.61,83.07,0.93,0.1,790,0.5,209,1.4
+16881,2023,12,18,16,30,-1,1.16,0.018,0.63,18,314,31,7,6,-8,12,0,100,12,0.311,59.14,87.55,0.93,0.1,790,0.5,208,1.4
+16882,2023,12,18,17,0,-1.7,1.17,0.019,0.63,0,0,0,1,6,-8.7,0,0,14,0,0.312,59.01,92.63,0.93,0.1,790,0.5,206,1.4
+16883,2023,12,18,17,30,-2,1.17,0.019,0.63,0,0,0,0,6,-8.7,0,0,0,0,0.313,60.32,97.72,0.92,0.1,790,0.5,206,1.4
+16884,2023,12,18,18,0,-2.2,1.19,0.018,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.314,59.9,103,0.92,0.1,790,0.5,205,1.4
+16885,2023,12,18,18,30,-2.5,1.19,0.018,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.315,61.24,108.43,0.92,0.1,790,0.5,206,1.4
+16886,2023,12,18,19,0,-2.7,1.2,0.017,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.316,60.93,113.98,0.91,0.1,790,0.5,206,1.4
+16887,2023,12,18,19,30,-2.9,1.2,0.017,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.317,61.84,119.6,0.91,0.1,790,0.5,208,1.5
+16888,2023,12,18,20,0,-3.1,1.22,0.017,0.63,0,0,0,0,8,-9.4,0,0,0,0,0.318,61.62,125.28,0.91,0.1,790,0.5,209,1.5
+16889,2023,12,18,20,30,-3.2,1.22,0.017,0.63,0,0,0,0,8,-9.4,0,0,0,0,0.319,62.08,130.98,0.91,0.1,790,0.5,211,1.5
+16890,2023,12,18,21,0,-3.3,1.22,0.017,0.63,0,0,0,0,5,-9.5,0,0,0,0,0.319,62.08,136.65,0.91,0.1,790,0.5,212,1.6
+16891,2023,12,18,21,30,-3.4,1.22,0.017,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.32,62.54,142.23,0.91,0.1,790,0.5,213,1.6
+16892,2023,12,18,22,0,-3.5,1.22,0.018,0.63,0,0,0,0,4,-9.6,0,0,0,0,0.321,62.45,147.65,0.91,0.1,790,0.5,213,1.6
+16893,2023,12,18,22,30,-3.7,1.22,0.018,0.63,0,0,0,0,5,-9.6,0,0,0,0,0.322,63.39,152.74,0.91,0.1,790,0.5,212,1.6
+16894,2023,12,18,23,0,-3.9,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.323,63.56,157.28,0.91,0.1,789,0.5,210,1.7
+16895,2023,12,18,23,30,-4,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.324,64.03,160.82,0.91,0.1,789,0.5,209,1.7
+16896,2023,12,19,0,0,-4.1,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.325,64.33,162.71,0.91,0.1,789,0.5,207,1.7
+16897,2023,12,19,0,30,-4.2,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.326,64.81,162.41,0.91,0.1,789,0.5,206,1.7
+16898,2023,12,19,1,0,-4.3,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.327,65.53,160.02,0.91,0.1,789,0.5,205,1.8
+16899,2023,12,19,1,30,-4.4,1.22,0.018,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.328,66.03,156.16,0.91,0.1,789,0.5,203,1.8
+16900,2023,12,19,2,0,-4.4,1.23,0.018,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.328,66.23,151.44,0.91,0.1,789,0.5,201,1.8
+16901,2023,12,19,2,30,-4.5,1.23,0.018,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,66.73,146.25,0.9,0.1,789,0.5,200,1.8
+16902,2023,12,19,3,0,-4.6,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,67.17,140.78,0.9,0.1,789,0.5,198,1.8
+16903,2023,12,19,3,30,-4.8,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,68.19,135.16,0.9,0.1,789,0.5,198,1.8
+16904,2023,12,19,4,0,-4.9,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,68.34,129.48,0.9,0.1,788,0.5,198,1.8
+16905,2023,12,19,4,30,-5.1,1.24,0.017,0.63,0,0,0,0,8,-9.8,0,0,0,0,0.329,69.46,123.79,0.91,0.1,789,0.6,197,1.8
+16906,2023,12,19,5,0,-5.2,1.25,0.017,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,69.53,118.12,0.91,0.1,789,0.6,197,1.8
+16907,2023,12,19,5,30,-5.3,1.25,0.017,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,70.06,112.51,0.91,0.1,789,0.6,197,1.8
+16908,2023,12,19,6,0,-5.4,1.27,0.017,0.63,0,0,0,0,0,-10,0,0,0,0,0.329,70.05,106.99,0.91,0.1,789,0.6,196,1.7
+16909,2023,12,19,6,30,-5.5,1.27,0.017,0.63,0,0,0,0,0,-10,0,0,0,0,0.329,70.58,101.6,0.91,0.1,789,0.6,196,1.7
+16910,2023,12,19,7,0,-5.5,1.28,0.017,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.329,69.92,96.37,0.91,0.1,789,0.6,196,1.7
+16911,2023,12,19,7,30,-4.6,1.28,0.017,0.63,4,45,3,0,0,-10.1,4,45,0,3,0.328,65.31,91.33,0.91,0.1,789,0.6,195,1.7
+16912,2023,12,19,8,0,-3.7,1.29,0.016,0.63,21,462,50,5,4,-9.6,21,114,68,28,0.328,63.67,86.36,0.91,0.1,789,0.6,194,1.6
+16913,2023,12,19,8,30,-1.8,1.29,0.016,0.63,29,660,122,3,4,-9.6,53,2,43,53,0.328,55.37,81.94,0.91,0.1,790,0.7,195,2.1
+16914,2023,12,19,9,0,0,1.3,0.016,0.63,35,772,198,0,4,-9.1,78,3,0,79,0.328,50.28,77.81,0.91,0.1,790,0.7,196,2.6
+16915,2023,12,19,9,30,1.3,1.3,0.016,0.63,39,842,270,0,8,-9.1,141,103,4,169,0.328,45.79,74.08,0.91,0.1,790,0.7,200,2.7
+16916,2023,12,19,10,0,2.7,1.31,0.016,0.63,42,889,334,0,8,-8.7,163,76,4,188,0.327,42.68,70.83,0.91,0.1,790,0.7,203,2.8
+16917,2023,12,19,10,30,4.1,1.31,0.016,0.63,45,920,388,0,8,-8.7,178,48,0,196,0.327,38.67,68.12,0.91,0.1,790,0.7,207,3.2
+16918,2023,12,19,11,0,5.5,1.25,0.017,0.63,47,939,428,0,5,-8.5,174,8,0,177,0.326,35.82,66.04,0.92,0.1,789,0.7,211,3.7
+16919,2023,12,19,11,30,6.2,1.25,0.017,0.63,49,949,455,0,4,-8.5,171,4,0,173,0.325,34.13,64.65,0.92,0.1,789,0.8,212,3.7
+16920,2023,12,19,12,0,6.9,1.24,0.017,0.63,49,954,467,0,4,-7.9,157,8,0,161,0.323,33.9,63.99,0.92,0.1,789,0.8,214,3.8
+16921,2023,12,19,12,30,7.1,1.24,0.017,0.63,49,952,465,0,8,-8,194,200,0,281,0.322,33.4,64.08,0.92,0.1,788,0.8,214,3.7
+16922,2023,12,19,13,0,7.3,1.24,0.018,0.63,49,944,449,0,8,-7.4,187,344,0,333,0.321,34.49,64.93,0.92,0.1,788,0.8,215,3.7
+16923,2023,12,19,13,30,7.1,1.24,0.018,0.63,48,928,418,0,8,-7.4,154,429,0,325,0.321,34.97,66.5,0.92,0.1,788,0.8,216,3.3
+16924,2023,12,19,14,0,6.8,1.13,0.019,0.63,46,904,374,0,8,-6.7,126,525,0,316,0.32,37.65,68.74,0.92,0.1,788,0.8,217,3
+16925,2023,12,19,14,30,5.4,1.13,0.019,0.63,44,869,318,0,7,-6.7,123,448,0,264,0.318,41.46,71.59,0.92,0.1,788,0.8,219,2.1
+16926,2023,12,19,15,0,4.1,1.17,0.018,0.63,40,818,252,0,7,-4.5,109,386,0,209,0.317,53.66,74.97,0.92,0.1,788,0.8,221,1.3
+16927,2023,12,19,15,30,2.6,1.17,0.018,0.63,35,738,178,0,7,-4.5,101,210,0,142,0.316,59.64,78.8,0.92,0.1,788,0.8,222,1.2
+16928,2023,12,19,16,0,1.1,1.2,0.018,0.63,28,609,102,6,7,-6.3,62,32,86,66,0.315,57.68,83.02,0.92,0.1,788,0.7,223,1.2
+16929,2023,12,19,16,30,0.6,1.2,0.018,0.63,18,345,33,7,7,-6.3,19,3,100,19,0.315,59.79,87.49,0.92,0.1,788,0.7,223,1.2
+16930,2023,12,19,17,0,0.2,1.23,0.018,0.63,0,0,0,1,7,-7.3,0,0,14,0,0.314,57.23,92.56,0.92,0.1,788,0.7,222,1.1
+16931,2023,12,19,17,30,0,1.23,0.018,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.314,58.06,97.65,0.92,0.1,788,0.7,220,1.1
+16932,2023,12,19,18,0,-0.2,1.25,0.019,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.313,58.62,102.93,0.92,0.1,788,0.7,218,1
+16933,2023,12,19,18,30,-0.5,1.25,0.019,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.314,59.91,108.35,0.92,0.1,788,0.7,214,1
+16934,2023,12,19,19,0,-0.7,1.27,0.02,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.314,61.12,113.9,0.92,0.1,788,0.8,210,1
+16935,2023,12,19,19,30,-0.9,1.27,0.02,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.315,62.02,119.52,0.92,0.1,788,0.8,207,1
+16936,2023,12,19,20,0,-1,1.29,0.021,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.315,63.08,125.2,0.92,0.1,788,0.8,204,1.1
+16937,2023,12,19,20,30,-1.1,1.29,0.021,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.316,63.54,130.9,0.92,0.1,788,0.8,202,1.1
+16938,2023,12,19,21,0,-1.1,1.3,0.023,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.316,63.78,136.57,0.92,0.1,788,0.8,200,1.2
+16939,2023,12,19,21,30,-1.1,1.3,0.023,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.317,63.86,142.15,0.92,0.1,789,0.8,200,1.2
+16940,2023,12,19,22,0,-1.1,1.32,0.023,0.63,0,0,0,0,7,-7,0,0,0,0,0.317,64.16,147.57,0.92,0.1,789,0.8,200,1.2
+16941,2023,12,19,22,30,-1.2,1.32,0.023,0.63,0,0,0,0,7,-7,0,0,0,0,0.317,64.63,152.68,0.92,0.1,789,0.8,201,1.2
+16942,2023,12,19,23,0,-1.3,1.32,0.022,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.317,64.49,157.23,0.92,0.1,789,0.8,202,1.2
+16943,2023,12,19,23,30,-1.3,1.32,0.022,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.317,64.49,160.79,0.92,0.1,789,0.8,202,1.3
+16944,2023,12,20,0,0,-1.4,1.32,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.7,162.71,0.92,0.1,789,0.8,202,1.3
+16945,2023,12,20,0,30,-1.4,1.32,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.7,162.45,0.92,0.1,789,0.8,202,1.3
+16946,2023,12,20,1,0,-1.4,1.31,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.79,160.09,0.92,0.1,789,0.8,201,1.3
+16947,2023,12,20,1,30,-1.4,1.31,0.021,0.63,0,0,0,0,6,-7.2,0,0,0,0,0.319,64.79,156.25,0.92,0.1,789,0.8,199,1.3
+16948,2023,12,20,2,0,-1.4,1.31,0.022,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.319,65.04,151.54,0.92,0.1,789,0.8,197,1.3
+16949,2023,12,20,2,30,-1.4,1.31,0.022,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.319,65.04,146.34,0.92,0.1,789,0.8,196,1.2
+16950,2023,12,20,3,0,-1.4,1.3,0.023,0.63,0,0,0,0,0,-7,0,0,0,0,0.319,65.43,140.88,0.92,0.1,789,0.8,194,1.2
+16951,2023,12,20,3,30,-1.6,1.3,0.023,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,66.4,135.27,0.92,0.1,789,0.8,195,1.2
+16952,2023,12,20,4,0,-1.7,1.31,0.024,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,67.16,129.59,0.92,0.1,789,0.8,196,1.2
+16953,2023,12,20,4,30,-1.8,1.31,0.024,0.63,0,0,0,0,4,-7,0,0,0,0,0.32,67.66,123.89,0.92,0.1,789,0.8,199,1.2
+16954,2023,12,20,5,0,-1.9,1.33,0.023,0.63,0,0,0,0,8,-6.9,0,0,0,0,0.321,68.67,118.22,0.91,0.1,790,0.7,202,1.2
+16955,2023,12,20,5,30,-2,1.33,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.321,69.17,112.61,0.91,0.1,790,0.7,205,1.2
+16956,2023,12,20,6,0,-2.2,1.34,0.023,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.321,70.57,107.09,0.91,0.1,790,0.7,207,1.2
+16957,2023,12,20,6,30,-2.2,1.34,0.023,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.32,70.57,101.7,0.91,0.1,790,0.7,209,1.2
+16958,2023,12,20,7,0,-2.2,1.35,0.023,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.32,70.95,96.46,0.91,0.1,790,0.7,210,1.1
+16959,2023,12,20,7,30,-1.7,1.35,0.023,0.63,4,39,3,0,0,-6.8,4,39,0,3,0.319,68.39,91.42,0.91,0.1,790,0.7,209,1.1
+16960,2023,12,20,8,0,-1.1,1.35,0.024,0.63,21,423,47,0,0,-6.1,21,423,0,47,0.318,68.65,86.45,0.91,0.1,790,0.7,208,1
+16961,2023,12,20,8,30,0.3,1.35,0.024,0.63,32,627,119,1,4,-6.1,56,223,11,87,0.318,62.08,82.02,0.91,0.1,791,0.8,206,1.2
+16962,2023,12,20,9,0,1.6,1.34,0.026,0.63,39,742,195,0,5,-5.3,79,4,0,80,0.318,60.1,77.89,0.92,0.1,791,0.8,204,1.5
+16963,2023,12,20,9,30,2.7,1.34,0.026,0.63,44,812,266,2,5,-5.3,101,14,21,105,0.318,55.57,74.15,0.92,0.1,791,0.8,207,1.8
+16964,2023,12,20,10,0,3.7,1.32,0.029,0.63,49,858,330,1,8,-5.2,156,62,14,176,0.317,52.22,70.89,0.93,0.1,791,0.8,210,2.1
+16965,2023,12,20,10,30,4.7,1.32,0.029,0.63,52,890,383,0,8,-5.2,176,103,0,214,0.317,48.69,68.18,0.93,0.1,791,0.8,212,2.6
+16966,2023,12,20,11,0,5.7,1.3,0.032,0.63,56,908,424,0,8,-5.5,189,300,0,311,0.317,44.39,66.09,0.93,0.1,791,0.8,214,3.1
+16967,2023,12,20,11,30,6,1.3,0.032,0.63,57,919,450,0,8,-5.5,182,387,0,348,0.316,43.48,64.68,0.94,0.1,791,0.9,216,3.1
+16968,2023,12,20,12,0,6.2,1.28,0.033,0.63,58,924,463,0,8,-5.3,164,484,0,376,0.316,43.58,64,0.94,0.1,790,0.9,219,3.1
+16969,2023,12,20,12,30,6,1.28,0.033,0.63,58,922,461,0,7,-5.3,167,466,0,371,0.315,44.19,64.09,0.94,0.1,790,0.9,222,2.9
+16970,2023,12,20,13,0,5.8,1.28,0.033,0.63,57,913,444,0,7,-4.8,183,390,0,348,0.314,46.57,64.92,0.94,0.1,790,0.9,226,2.7
+16971,2023,12,20,13,30,5,1.28,0.033,0.63,56,898,414,0,7,-4.8,155,457,0,337,0.314,49.22,66.48,0.94,0.1,790,0.9,234,2
+16972,2023,12,20,14,0,4.2,1.27,0.033,0.63,53,873,370,0,7,-3.2,150,438,0,309,0.314,58.66,68.71,0.94,0.1,790,0.9,243,1.3
+16973,2023,12,20,14,30,3.3,1.27,0.033,0.63,50,837,315,0,7,-3.2,157,249,0,236,0.315,62.49,71.55,0.94,0.1,790,0.9,254,1.1
+16974,2023,12,20,15,0,2.3,1.28,0.032,0.63,46,782,249,0,7,-3.3,135,91,0,159,0.316,66.53,74.92,0.94,0.1,790,0.9,265,1
+16975,2023,12,20,15,30,1.6,1.28,0.032,0.63,39,698,175,0,7,-3.3,103,61,0,115,0.318,69.93,78.75,0.94,0.1,790,0.9,275,1
+16976,2023,12,20,16,0,0.9,1.28,0.031,0.63,31,562,100,6,7,-4.4,46,7,86,47,0.319,67.65,82.96,0.94,0.1,790,1,285,1
+16977,2023,12,20,16,30,0.7,1.28,0.031,0.63,18,302,32,7,7,-4.4,16,1,100,16,0.32,68.72,87.42,0.94,0.1,791,1,292,1
+16978,2023,12,20,17,0,0.4,1.29,0.03,0.63,0,0,0,1,7,-4.9,0,0,14,0,0.321,67.41,92.49,0.94,0.11,791,1,300,1
+16979,2023,12,20,17,30,0.5,1.29,0.03,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.321,66.92,97.57,0.94,0.11,791,1,301,0.9
+16980,2023,12,20,18,0,0.6,1.28,0.031,0.63,0,0,0,0,8,-5.1,0,0,0,0,0.321,65.57,102.85,0.94,0.11,791,1,302,0.8
+16981,2023,12,20,18,30,0.6,1.28,0.031,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.321,65.57,108.27,0.94,0.11,791,1,293,0.7
+16982,2023,12,20,19,0,0.7,1.28,0.031,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.321,65.14,113.81,0.94,0.11,791,1,285,0.7
+16983,2023,12,20,19,30,0.6,1.28,0.031,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.321,65.61,119.44,0.94,0.11,791,1,272,0.7
+16984,2023,12,20,20,0,0.6,1.27,0.032,0.63,0,0,0,0,7,-5,0,0,0,0,0.321,66.23,125.11,0.94,0.11,792,1,258,0.7
+16985,2023,12,20,20,30,0.5,1.27,0.032,0.63,0,0,0,0,7,-5,0,0,0,0,0.321,66.71,130.81,0.94,0.11,792,1,250,0.7
+16986,2023,12,20,21,0,0.4,1.27,0.032,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.321,68.11,136.48,0.94,0.11,792,1,241,0.7
+16987,2023,12,20,21,30,0.2,1.27,0.032,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.321,69.1,142.07,0.94,0.11,792,1,239,0.8
+16988,2023,12,20,22,0,0.1,1.29,0.031,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.321,70.12,147.49,0.94,0.11,792,1,236,0.8
+16989,2023,12,20,22,30,-0.2,1.29,0.031,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.321,71.66,152.6,0.94,0.11,792,1,236,0.8
+16990,2023,12,20,23,0,-0.4,1.33,0.027,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.321,72.8,157.17,0.93,0.11,792,1,236,0.9
+16991,2023,12,20,23,30,-0.6,1.33,0.027,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.322,73.87,160.75,0.93,0.11,792,1,235,0.9
+16992,2023,12,21,0,0,-0.8,1.36,0.025,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.322,75.09,162.71,0.93,0.11,792,1,233,1
+16993,2023,12,21,0,30,-1,1.36,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.323,76.2,162.48,0.92,0.11,792,0.9,231,1
+16994,2023,12,21,1,0,-1.3,1.37,0.024,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.323,78.02,160.15,0.92,0.11,792,0.9,228,1
+16995,2023,12,21,1,30,-1.4,1.37,0.024,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.325,78.6,156.33,0.92,0.11,792,0.9,226,1
+16996,2023,12,21,2,0,-1.5,1.38,0.022,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.326,79.38,151.63,0.92,0.11,793,0.9,225,1
+16997,2023,12,21,2,30,-1.5,1.38,0.022,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.327,79.38,146.44,0.92,0.11,793,0.9,225,1
+16998,2023,12,21,3,0,-1.6,1.39,0.022,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.328,80.06,140.98,0.92,0.11,793,0.9,225,1
+16999,2023,12,21,3,30,-1.6,1.39,0.022,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.329,80.06,135.37,0.92,0.11,793,0.9,226,1
+17000,2023,12,21,4,0,-1.7,1.38,0.021,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.329,80.73,129.69,0.92,0.11,793,0.9,228,1
+17001,2023,12,21,4,30,-1.8,1.38,0.021,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.33,81.33,123.99,0.92,0.11,793,0.9,227,1
+17002,2023,12,21,5,0,-1.9,1.37,0.021,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.33,81.99,118.32,0.92,0.11,793,0.9,226,1
+17003,2023,12,21,5,30,-2,1.37,0.021,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.33,82.7,112.71,0.92,0.11,794,0.9,224,1
+17004,2023,12,21,6,0,-2.1,1.36,0.021,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,83.33,107.19,0.92,0.11,794,0.9,223,1
+17005,2023,12,21,6,30,-2.2,1.36,0.021,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,83.95,101.79,0.92,0.11,794,0.9,220,1
+17006,2023,12,21,7,0,-2.3,1.35,0.022,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,84.56,96.55,0.92,0.11,794,0.9,218,1
+17007,2023,12,21,7,30,-1.8,1.35,0.022,0.63,3,38,2,2,4,-4.5,0,0,29,0,0.329,81.6,91.51,0.92,0.11,795,0.9,218,0.9
+17008,2023,12,21,8,0,-1.4,1.34,0.023,0.63,21,413,46,4,4,-4.3,22,171,64,32,0.329,80.73,86.53,0.92,0.11,795,0.9,218,0.9
+17009,2023,12,21,8,30,-0.2,1.34,0.023,0.63,31,621,116,2,0,-4.3,37,335,21,83,0.328,73.96,82.1,0.93,0.11,795,0.9,220,1.3
+17010,2023,12,21,9,0,1.1,1.34,0.024,0.63,38,739,192,0,4,-4,90,58,0,102,0.328,68.9,77.96,0.93,0.11,795,0.9,223,1.8
+17011,2023,12,21,9,30,2.3,1.34,0.024,0.63,44,813,265,0,4,-4,147,53,0,161,0.326,63.32,74.22,0.93,0.11,796,0.9,224,2.2
+17012,2023,12,21,10,0,3.5,1.33,0.025,0.63,48,862,329,0,4,-3,147,13,0,151,0.325,62.63,70.95,0.93,0.11,796,0.8,226,2.7
+17013,2023,12,21,10,30,4.2,1.33,0.025,0.63,50,898,383,0,4,-3,173,23,0,182,0.323,59.63,68.22,0.93,0.11,796,0.8,228,2.9
+17014,2023,12,21,11,0,5,1.33,0.023,0.63,52,922,425,0,4,-2.3,226,222,0,316,0.32,59.41,66.12,0.93,0.11,795,0.8,231,3.2
+17015,2023,12,21,11,30,5.4,1.33,0.023,0.63,52,936,452,0,4,-2.3,172,511,0,390,0.318,57.79,64.7,0.93,0.11,795,0.8,232,3.4
+17016,2023,12,21,12,0,5.8,1.35,0.022,0.63,53,943,466,0,0,-2,63,911,0,462,0.316,57.47,64.02,0.93,0.11,795,0.8,234,3.5
+17017,2023,12,21,12,30,5.9,1.35,0.022,0.63,52,944,464,0,0,-2,52,944,0,464,0.314,57.07,64.09,0.93,0.11,795,0.8,235,3.6
+17018,2023,12,21,13,0,6,1.36,0.021,0.63,52,937,449,0,0,-1.8,52,937,0,449,0.313,57.21,64.91,0.93,0.11,794,0.8,236,3.6
+17019,2023,12,21,13,30,5.8,1.36,0.021,0.63,49,923,418,0,0,-1.8,49,923,0,418,0.312,58.01,66.45,0.93,0.11,794,0.8,237,3.4
+17020,2023,12,21,14,0,5.6,1.37,0.021,0.63,48,900,375,0,0,-1.8,48,900,0,375,0.312,59.06,68.67,0.93,0.11,794,0.8,237,3.3
+17021,2023,12,21,14,30,4.8,1.37,0.021,0.63,45,868,320,0,0,-1.8,45,868,0,320,0.311,62.44,71.5,0.92,0.11,794,0.8,238,2.5
+17022,2023,12,21,15,0,3.9,1.39,0.02,0.63,40,818,254,0,0,-1.5,40,818,0,254,0.311,67.95,74.86,0.92,0.11,794,0.8,238,1.8
+17023,2023,12,21,15,30,2.2,1.39,0.02,0.63,36,740,181,0,0,-1.5,36,740,0,181,0.311,76.62,78.69,0.92,0.11,794,0.7,239,1.5
+17024,2023,12,21,16,0,0.4,1.41,0.019,0.63,28,612,104,0,0,-2,28,612,0,104,0.311,84.04,82.89,0.92,0.11,794,0.7,240,1.2
+17025,2023,12,21,16,30,-0.1,1.41,0.019,0.63,19,353,35,0,0,-2,19,353,0,35,0.312,87.24,87.35,0.92,0.11,795,0.7,239,1.2
+17026,2023,12,21,17,0,-0.6,1.42,0.019,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.312,89.81,92.41,0.92,0.12,795,0.7,238,1.2
+17027,2023,12,21,17,30,-0.6,1.42,0.019,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.313,89.81,97.49,0.92,0.12,795,0.7,236,1.1
+17028,2023,12,21,18,0,-0.5,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.313,89.11,102.76,0.92,0.12,795,0.7,233,1
+17029,2023,12,21,18,30,-0.4,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.314,88.46,108.18,0.92,0.12,795,0.7,229,0.9
+17030,2023,12,21,19,0,-0.4,1.41,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.314,88.46,113.72,0.92,0.12,795,0.7,224,0.8
+17031,2023,12,21,19,30,-0.4,1.41,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.315,88.46,119.35,0.92,0.12,795,0.7,216,0.7
+17032,2023,12,21,20,0,-0.5,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.316,89.11,125.02,0.92,0.12,795,0.7,208,0.7
+17033,2023,12,21,20,30,-0.7,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.317,90.42,130.72,0.92,0.12,795,0.7,203,0.7
+17034,2023,12,21,21,0,-0.8,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.318,91.05,136.39,0.92,0.12,795,0.7,197,0.8
+17035,2023,12,21,21,30,-1,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.319,92.39,141.98,0.92,0.12,795,0.7,196,0.8
+17036,2023,12,21,22,0,-1.2,1.42,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.321,93.73,147.41,0.92,0.12,795,0.7,195,0.9
+17037,2023,12,21,22,30,-1.4,1.42,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.322,95.11,152.53,0.92,0.12,795,0.7,196,0.9
+17038,2023,12,21,23,0,-1.6,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.323,96.38,157.1,0.92,0.12,795,0.7,197,1
+17039,2023,12,21,23,30,-1.8,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.324,97.68,160.7,0.92,0.12,794,0.7,199,1
+17040,2023,12,22,0,0,-2,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.325,98.92,162.7,0.92,0.12,794,0.7,201,1
+17041,2023,12,22,0,30,-2.1,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.325,99.65,162.51,0.92,0.12,794,0.7,203,1
+17042,2023,12,22,1,0,-2.3,1.41,0.02,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.326,100,160.2,0.92,0.12,794,0.7,205,1
+17043,2023,12,22,1,30,-2.3,1.41,0.02,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.327,100,156.4,0.92,0.12,794,0.7,205,1
+17044,2023,12,22,2,0,-2.4,1.4,0.021,0.63,0,0,0,0,0,-2.4,0,0,0,0,0.327,100,151.71,0.93,0.12,794,0.7,204,1
+17045,2023,12,22,2,30,-2.5,1.4,0.021,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.328,100,146.53,0.93,0.12,794,0.7,203,0.9
+17046,2023,12,22,3,0,-2.5,1.36,0.024,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.329,100,141.07,0.93,0.12,794,0.7,201,0.9
+17047,2023,12,22,3,30,-2.6,1.36,0.024,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.33,100,135.46,0.94,0.12,794,0.7,202,0.9
+17048,2023,12,22,4,0,-2.6,1.32,0.027,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.331,100,129.78,0.94,0.12,793,0.7,202,1
+17049,2023,12,22,4,30,-2.7,1.32,0.027,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.332,100,124.09,0.94,0.12,794,0.8,203,1
+17050,2023,12,22,5,0,-2.8,1.3,0.028,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.333,100,118.41,0.94,0.12,794,0.8,204,1
+17051,2023,12,22,5,30,-2.8,1.3,0.028,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.334,100,112.8,0.94,0.12,794,0.8,206,1
+17052,2023,12,22,6,0,-2.8,1.3,0.029,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.336,100,107.28,0.94,0.12,794,0.8,208,1.1
+17053,2023,12,22,6,30,-2.8,1.3,0.029,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.337,100,101.88,0.94,0.12,794,0.8,208,1
+17054,2023,12,22,7,0,-2.8,1.32,0.027,0.63,0,0,0,0,4,-2.8,0,0,0,0,0.339,99.96,96.64,0.94,0.12,794,0.8,209,1
+17055,2023,12,22,7,30,-2.2,1.32,0.027,0.63,3,36,2,2,4,-2.8,0,0,29,0,0.34,95.62,91.59,0.93,0.12,794,0.8,207,0.9
+17056,2023,12,22,8,0,-1.6,1.35,0.024,0.63,21,408,45,7,5,-2.9,14,0,100,14,0.341,90.78,86.61,0.93,0.12,793,0.8,204,0.8
+17057,2023,12,22,8,30,-0.6,1.35,0.024,0.63,30,621,115,3,4,-2.9,41,22,39,44,0.342,84.38,82.17,0.93,0.12,793,0.8,196,1
+17058,2023,12,22,9,0,0.5,1.37,0.022,0.63,38,744,192,0,4,-2.8,96,7,0,97,0.343,78.37,78.03,0.93,0.12,793,0.8,189,1.1
+17059,2023,12,22,9,30,1.8,1.37,0.022,0.63,42,819,264,1,4,-2.8,114,9,14,116,0.344,71.39,74.28,0.93,0.12,793,0.8,194,1.8
+17060,2023,12,22,10,0,3.1,1.36,0.022,0.63,45,868,328,2,4,-2.6,126,7,32,128,0.345,66.4,71,0.93,0.12,793,0.8,200,2.6
+17061,2023,12,22,10,30,3.9,1.36,0.022,0.63,49,899,382,0,4,-2.6,183,18,0,190,0.345,62.77,68.26,0.94,0.12,793,0.8,206,3.2
+17062,2023,12,22,11,0,4.6,1.33,0.025,0.63,52,918,423,0,4,-2.7,215,28,0,226,0.346,59.25,66.15,0.94,0.12,792,0.8,211,3.7
+17063,2023,12,22,11,30,4.9,1.33,0.025,0.63,53,930,450,2,4,-2.7,219,36,21,234,0.346,58.03,64.72,0.94,0.12,792,0.8,214,3.9
+17064,2023,12,22,12,0,5.2,1.33,0.025,0.63,54,936,464,1,7,-2.6,107,8,14,111,0.346,57.17,64.02,0.94,0.12,791,0.8,217,4.1
+17065,2023,12,22,12,30,5.3,1.33,0.025,0.63,53,937,463,0,7,-2.6,169,74,0,201,0.346,56.78,64.08,0.94,0.12,791,0.8,219,4.1
+17066,2023,12,22,13,0,5.5,1.35,0.024,0.63,52,932,448,0,7,-2.3,169,306,0,299,0.346,57.08,64.89,0.94,0.12,790,0.8,220,4.2
+17067,2023,12,22,13,30,5.4,1.35,0.024,0.63,51,918,418,0,7,-2.3,155,424,0,325,0.346,57.48,66.42,0.94,0.12,790,0.8,220,4
+17068,2023,12,22,14,0,5.3,1.37,0.023,0.63,49,896,375,0,7,-2.1,152,358,0,282,0.345,58.91,68.63,0.94,0.12,790,0.8,220,3.8
+17069,2023,12,22,14,30,4.3,1.37,0.023,0.63,45,860,319,0,7,-2.1,113,470,0,263,0.345,63.08,71.45,0.94,0.12,789,0.8,220,2.8
+17070,2023,12,22,15,0,3.4,1.37,0.024,0.63,43,806,254,0,7,-1.7,56,749,50,252,0.344,69.04,74.8,0.94,0.12,789,0.8,219,1.8
+17071,2023,12,22,15,30,2,1.37,0.024,0.63,37,726,180,0,7,-1.7,66,534,29,171,0.344,76.24,78.62,0.94,0.12,789,0.8,216,1.4
+17072,2023,12,22,16,0,0.5,1.36,0.024,0.63,29,596,104,5,7,-2.2,65,138,71,82,0.343,82.03,82.81,0.94,0.12,789,0.8,214,1.1
+17073,2023,12,22,16,30,0.3,1.36,0.024,0.63,19,338,35,7,7,-2.2,22,5,100,22,0.343,83.23,87.27,0.94,0.12,789,0.8,210,1
+17074,2023,12,22,17,0,0,1.37,0.022,0.63,0,0,0,1,7,-2.4,0,0,14,0,0.342,84.18,92.32,0.94,0.12,789,0.8,205,0.9
+17075,2023,12,22,17,30,-0.1,1.37,0.022,0.63,0,0,0,0,7,-2.4,0,0,0,0,0.342,84.69,97.4,0.94,0.12,788,0.8,196,0.8
+17076,2023,12,22,18,0,-0.2,1.37,0.022,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.342,84.67,102.67,0.94,0.12,788,0.9,186,0.6
+17077,2023,12,22,18,30,-0.3,1.37,0.022,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.341,85.29,108.09,0.95,0.12,788,0.9,184,0.6
+17078,2023,12,22,19,0,-0.5,1.35,0.024,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.34,85.86,113.63,0.95,0.12,788,0.9,182,0.5
+17079,2023,12,22,19,30,-0.5,1.35,0.024,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,85.86,119.25,0.95,0.12,788,1,187,0.5
+17080,2023,12,22,20,0,-0.5,1.31,0.026,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,85.53,124.93,0.96,0.12,787,1,191,0.5
+17081,2023,12,22,20,30,-0.4,1.31,0.026,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,84.91,130.62,0.96,0.12,787,1,194,0.4
+17082,2023,12,22,21,0,-0.2,1.27,0.031,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.339,84.33,136.29,0.97,0.12,787,1.1,197,0.4
+17083,2023,12,22,21,30,-0.2,1.27,0.031,0.63,0,0,0,0,6,-2.5,0,0,0,0,0.34,84.33,141.89,0.97,0.12,787,1.1,214,0.3
+17084,2023,12,22,22,0,-0.2,1.23,0.036,0.63,0,0,0,0,6,-2.3,0,0,0,0,0.341,85.66,147.31,0.97,0.12,786,1.1,231,0.2
+17085,2023,12,22,22,30,-0.4,1.23,0.036,0.63,0,0,0,0,6,-2.3,0,0,0,0,0.342,86.92,152.44,0.97,0.12,786,1.1,219,0.3
+17086,2023,12,22,23,0,-0.6,1.21,0.045,0.63,0,0,0,0,6,-2,0,0,0,0,0.344,90.1,157.03,0.97,0.12,786,1.1,208,0.4
+17087,2023,12,22,23,30,-0.7,1.21,0.045,0.63,0,0,0,0,7,-2,0,0,0,0,0.345,90.76,160.65,0.97,0.12,786,1.1,196,0.4
+17088,2023,12,23,0,0,-0.8,1.23,0.05,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.346,93.05,162.68,0.98,0.12,785,1.1,184,0.5
+17089,2023,12,23,0,30,-0.9,1.23,0.05,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.345,93.74,162.53,0.97,0.12,785,1.1,178,0.5
+17090,2023,12,23,1,0,-1,1.23,0.048,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.345,94.96,160.25,0.97,0.12,785,1.1,172,0.6
+17091,2023,12,23,1,30,-1.1,1.23,0.048,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.342,95.53,156.47,0.98,0.12,784,1.1,176,0.7
+17092,2023,12,23,2,0,-1.2,1.22,0.052,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.34,96.63,151.79,0.98,0.12,784,1.1,179,0.8
+17093,2023,12,23,2,30,-1.4,1.22,0.052,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.339,98.05,146.61,0.98,0.12,784,1.1,182,0.8
+17094,2023,12,23,3,0,-1.5,1.22,0.053,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.338,99.21,141.16,0.98,0.12,784,1.1,185,0.9
+17095,2023,12,23,3,30,-1.6,1.22,0.053,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.338,99.81,135.55,0.98,0.12,783,1.1,188,0.9
+17096,2023,12,23,4,0,-1.7,1.21,0.051,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.337,100,129.87,0.98,0.12,783,1.1,191,0.9
+17097,2023,12,23,4,30,-1.7,1.21,0.051,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.338,100,124.18,0.98,0.12,783,1.1,198,0.9
+17098,2023,12,23,5,0,-1.7,1.21,0.055,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.338,100,118.5,0.98,0.12,783,1.1,204,0.9
+17099,2023,12,23,5,30,-1.8,1.21,0.055,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.338,100,112.89,0.98,0.12,783,1.1,211,0.9
+17100,2023,12,23,6,0,-1.8,1.2,0.058,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.337,100,107.37,0.98,0.12,783,1,217,0.9
+17101,2023,12,23,6,30,-1.8,1.2,0.058,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.336,100,101.96,0.98,0.12,783,1,220,1
+17102,2023,12,23,7,0,-1.9,1.19,0.057,0.63,0,0,0,0,4,-1.9,0,0,0,0,0.336,100,96.72,0.98,0.12,783,1,223,1
+17103,2023,12,23,7,30,-1.6,1.19,0.057,0.63,3,19,2,2,8,-1.6,0,0,29,0,0.334,100,91.67,0.98,0.12,783,1,227,1.2
+17104,2023,12,23,8,0,-1.3,1.19,0.062,0.63,23,286,40,7,7,-1.3,18,1,100,18,0.333,100,86.68,0.98,0.12,783,1,230,1.3
+17105,2023,12,23,8,30,-1,1.19,0.062,0.63,39,507,107,3,8,-1.3,62,12,43,64,0.332,98.12,82.24,0.98,0.12,783,1,236,1.6
+17106,2023,12,23,9,0,-0.6,1.18,0.067,0.63,50,636,181,0,7,-1.1,99,20,0,103,0.33,96.1,78.09,0.98,0.12,783,1,241,1.8
+17107,2023,12,23,9,30,-0.2,1.18,0.067,0.63,58,719,252,0,7,-1.1,132,35,0,141,0.329,93.34,74.33,0.98,0.12,783,1,251,1.8
+17108,2023,12,23,10,0,0.1,1.15,0.071,0.63,64,774,315,0,7,-1,140,23,0,147,0.328,92.46,71.04,0.98,0.12,783,1,261,1.8
+17109,2023,12,23,10,30,0.5,1.15,0.071,0.63,68,814,369,0,7,-1,167,30,0,178,0.326,89.71,68.3,0.98,0.12,782,1,277,2
+17110,2023,12,23,11,0,0.9,1.13,0.07,0.63,71,842,411,0,6,-0.9,155,22,0,164,0.325,87.56,66.17,0.98,0.12,782,1,293,2.1
+17111,2023,12,23,11,30,1.1,1.13,0.07,0.63,73,855,438,0,7,-0.9,181,32,0,195,0.324,86.31,64.73,0.98,0.12,782,1,307,2.6
+17112,2023,12,23,12,0,1.2,1.12,0.076,0.63,76,858,452,0,7,-1.2,207,43,0,226,0.324,83.83,64.02,0.98,0.12,782,1,320,3
+17113,2023,12,23,12,30,1.1,1.12,0.076,0.63,74,864,452,0,7,-1.2,226,68,0,256,0.324,84.43,64.06,0.97,0.12,782,0.9,327,3.5
+17114,2023,12,23,13,0,1,1.1,0.068,0.63,72,862,438,0,7,-2.1,213,56,0,237,0.325,80.07,64.86,0.97,0.12,781,0.9,335,3.9
+17115,2023,12,23,13,30,0.6,1.1,0.068,0.63,69,848,409,0,7,-2,214,78,0,245,0.326,82.51,66.38,0.97,0.12,782,0.9,339,4.1
+17116,2023,12,23,14,0,0.3,1.1,0.064,0.63,65,827,367,0,7,-3.2,202,85,0,233,0.327,77.09,68.58,0.97,0.12,782,0.9,343,4.3
+17117,2023,12,23,14,30,-0.1,1.1,0.064,0.63,60,797,314,0,7,-3.2,170,154,0,219,0.328,79.36,71.39,0.97,0.12,782,0.8,345,4.1
+17118,2023,12,23,15,0,-0.5,1.1,0.053,0.63,53,750,250,0,7,-4.4,125,76,0,145,0.33,75.19,74.74,0.97,0.12,782,0.8,346,3.8
+17119,2023,12,23,15,30,-1,1.1,0.053,0.63,44,680,179,0,7,-4.3,87,12,0,89,0.331,78.08,78.54,0.96,0.12,783,0.7,348,3.4
+17120,2023,12,23,16,0,-1.6,1.11,0.038,0.63,33,563,104,5,7,-5.8,32,1,71,32,0.332,73.11,82.73,0.96,0.12,783,0.7,349,3.1
+17121,2023,12,23,16,30,-2.1,1.11,0.038,0.63,20,306,35,7,7,-5.8,13,0,100,13,0.334,75.85,87.19,0.96,0.12,783,0.7,348,3.1
+17122,2023,12,23,17,0,-2.5,1.13,0.033,0.63,0,0,0,1,7,-7.6,0,0,14,0,0.335,67.95,92.23,0.96,0.8,784,0.6,348,3.1
+17123,2023,12,23,17,30,-2.8,1.13,0.033,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.337,69.48,97.31,0.95,0.8,784,0.6,344,3.4
+17124,2023,12,23,18,0,-3,1.14,0.029,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.338,61.59,102.57,0.95,0.8,785,0.6,340,3.7
+17125,2023,12,23,18,30,-3.4,1.14,0.029,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.34,63.45,107.99,0.95,0.8,785,0.5,337,4
+17126,2023,12,23,19,0,-3.7,1.17,0.026,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.341,58.06,113.53,0.94,0.8,785,0.5,334,4.2
+17127,2023,12,23,19,30,-4.1,1.17,0.026,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.342,59.9,119.15,0.94,0.8,786,0.5,333,4.2
+17128,2023,12,23,20,0,-4.5,1.22,0.023,0.63,0,0,0,0,4,-11.3,0,0,0,0,0.343,58.87,124.83,0.94,0.8,786,0.5,333,4.2
+17129,2023,12,23,20,30,-5,1.22,0.023,0.63,0,0,0,0,8,-11.3,0,0,0,0,0.344,61.14,130.52,0.93,0.8,786,0.5,334,4.2
+17130,2023,12,23,21,0,-5.4,1.27,0.021,0.63,0,0,0,0,8,-11.2,0,0,0,0,0.345,63.9,136.19,0.93,0.8,787,0.5,335,4.3
+17131,2023,12,23,21,30,-5.7,1.27,0.021,0.63,0,0,0,0,4,-11.2,0,0,0,0,0.346,65.37,141.79,0.93,0.8,787,0.4,336,4.1
+17132,2023,12,23,22,0,-6,1.29,0.02,0.63,0,0,0,0,4,-10.5,0,0,0,0,0.347,70.51,147.22,0.92,0.8,787,0.4,337,3.9
+17133,2023,12,23,22,30,-6.2,1.29,0.02,0.63,0,0,0,0,4,-10.5,0,0,0,0,0.347,71.59,152.35,0.92,0.8,787,0.4,338,3.8
+17134,2023,12,23,23,0,-6.4,1.3,0.02,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.347,75.14,156.95,0.92,0.8,787,0.4,339,3.7
+17135,2023,12,23,23,30,-6.6,1.3,0.02,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.347,76.3,160.59,0.92,0.8,787,0.4,340,3.7
+17136,2023,12,24,0,0,-6.7,1.32,0.021,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.346,77.82,162.65,0.92,0.8,788,0.4,341,3.7
+17137,2023,12,24,0,30,-7,1.32,0.021,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.345,79.64,162.53,0.92,0.8,788,0.4,342,3.5
+17138,2023,12,24,1,0,-7.2,1.34,0.02,0.63,0,0,0,0,4,-10,0,0,0,0,0.344,80.43,160.29,0.92,0.8,788,0.4,342,3.3
+17139,2023,12,24,1,30,-7.6,1.34,0.02,0.63,0,0,0,0,4,-10,0,0,0,0,0.344,82.96,156.53,0.92,0.8,788,0.4,343,3.1
+17140,2023,12,24,2,0,-7.9,1.35,0.021,0.63,0,0,0,0,4,-10.2,0,0,0,0,0.344,83.74,151.86,0.92,0.8,788,0.4,345,2.8
+17141,2023,12,24,2,30,-8,1.35,0.021,0.63,0,0,0,0,4,-10.2,0,0,0,0,0.345,84.39,146.69,0.93,0.8,788,0.4,346,2.8
+17142,2023,12,24,3,0,-8.2,1.34,0.022,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.345,84.87,141.24,0.93,0.8,788,0.4,347,2.8
+17143,2023,12,24,3,30,-8.3,1.34,0.022,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.346,85.64,135.64,0.93,0.8,789,0.4,349,2.9
+17144,2023,12,24,4,0,-8.3,1.34,0.022,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.347,85.09,129.96,0.93,0.8,789,0.4,351,2.9
+17145,2023,12,24,4,30,-8.4,1.34,0.022,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.349,85.75,124.26,0.93,0.8,789,0.4,353,2.9
+17146,2023,12,24,5,0,-8.4,1.33,0.021,0.63,0,0,0,0,4,-10.6,0,0,0,0,0.35,84.32,118.59,0.93,0.8,789,0.4,356,2.9
+17147,2023,12,24,5,30,-8.5,1.33,0.021,0.63,0,0,0,0,4,-10.6,0,0,0,0,0.35,84.98,112.97,0.93,0.8,789,0.3,357,2.9
+17148,2023,12,24,6,0,-8.6,1.32,0.02,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.351,83.11,107.45,0.93,0.8,790,0.3,358,2.8
+17149,2023,12,24,6,30,-8.8,1.32,0.02,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.351,84.42,102.04,0.93,0.8,790,0.3,179,2.8
+17150,2023,12,24,7,0,-8.9,1.31,0.018,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.352,81.64,96.79,0.93,0.8,790,0.3,0,2.7
+17151,2023,12,24,7,30,-8.5,1.31,0.018,0.63,3,44,2,2,5,-11.5,1,0,29,1,0.352,79.13,91.74,0.93,0.8,790,0.3,3,3.1
+17152,2023,12,24,8,0,-8.1,1.29,0.018,0.63,21,465,48,7,5,-11.7,24,0,100,24,0.352,75.17,86.73,0.93,0.8,791,0.3,5,3.4
+17153,2023,12,24,8,30,-7.2,1.29,0.018,0.63,32,679,123,4,5,-11.7,57,2,64,57,0.353,70.11,82.3,0.93,0.8,791,0.3,7,3.8
+17154,2023,12,24,9,0,-6.4,1.28,0.019,0.63,40,797,204,1,8,-11.7,68,3,14,69,0.353,66.29,78.14,0.93,0.8,791,0.3,9,4.1
+17155,2023,12,24,9,30,-5.9,1.28,0.019,0.63,47,870,281,0,5,-11.6,74,0,4,74,0.354,63.89,74.37,0.93,0.8,792,0.3,9,4.1
+17156,2023,12,24,10,0,-5.4,1.3,0.018,0.63,52,919,350,0,5,-12,137,2,0,138,0.354,59.7,71.07,0.93,0.8,792,0.3,9,4.2
+17157,2023,12,24,10,30,-5.2,1.3,0.018,0.63,56,950,407,0,5,-12,209,4,0,210,0.354,58.8,68.32,0.93,0.8,792,0.3,6,4.1
+17158,2023,12,24,11,0,-4.9,1.24,0.019,0.63,59,970,451,0,5,-12.5,239,6,0,241,0.354,55.43,66.18,0.93,0.8,792,0.3,3,4
+17159,2023,12,24,11,30,-4.8,1.24,0.019,0.63,61,983,481,0,5,-12.5,228,4,0,230,0.354,55.01,64.73,0.93,0.8,792,0.3,179,3.9
+17160,2023,12,24,12,0,-4.6,1.26,0.018,0.63,61,990,495,0,5,-13.1,153,0,0,153,0.353,51.68,64,0.93,0.8,791,0.3,355,3.9
+17161,2023,12,24,12,30,-4.6,1.26,0.018,0.63,61,991,495,0,8,-13.1,213,24,0,224,0.353,51.68,64.04,0.93,0.8,791,0.3,354,3.8
+17162,2023,12,24,13,0,-4.5,1.27,0.017,0.63,60,985,479,0,8,-13.6,255,43,0,273,0.352,49.22,64.82,0.93,0.8,791,0.3,353,3.7
+17163,2023,12,24,13,30,-4.5,1.27,0.017,0.63,56,973,447,0,8,-13.6,225,28,4,236,0.352,49.22,66.33,0.92,0.8,791,0.3,352,3.5
+17164,2023,12,24,14,0,-4.5,1.28,0.016,0.63,53,953,402,0,8,-13.9,199,29,0,210,0.352,47.76,68.52,0.92,0.8,791,0.3,352,3.2
+17165,2023,12,24,14,30,-4.8,1.28,0.016,0.63,49,922,344,0,5,-13.9,173,26,0,181,0.352,48.86,71.32,0.92,0.8,791,0.3,351,2.9
+17166,2023,12,24,15,0,-5,1.29,0.014,0.63,44,875,275,0,8,-14.2,143,168,0,187,0.352,48.34,74.66,0.91,0.8,791,0.3,350,2.6
+17167,2023,12,24,15,30,-5.6,1.29,0.014,0.63,37,803,198,0,0,-14.2,59,552,0,169,0.352,50.58,78.46,0.91,0.8,791,0.3,350,2.1
+17168,2023,12,24,16,0,-6.3,1.28,0.014,0.63,29,689,117,2,0,-14.6,40,542,21,109,0.352,51.7,82.65,0.91,0.8,791,0.3,349,1.6
+17169,2023,12,24,16,30,-7,1.28,0.014,0.63,19,428,41,1,0,-14.6,20,383,14,39,0.352,54.55,87.1,0.91,0.8,791,0.2,350,1.2
+17170,2023,12,24,17,0,-7.7,1.28,0.015,0.63,0,0,0,0,0,-14,0,0,4,0,0.352,60.75,92.14,0.91,0.8,791,0.2,351,0.8
+17171,2023,12,24,17,30,-8,1.28,0.015,0.63,0,0,0,0,4,-14,0,0,0,0,0.352,62.18,97.21,0.91,0.8,791,0.2,347,0.7
+17172,2023,12,24,18,0,-8.3,1.27,0.016,0.63,0,0,0,0,4,-14.3,0,0,0,0,0.352,62.19,102.47,0.91,0.8,791,0.2,342,0.6
+17173,2023,12,24,18,30,-8.5,1.27,0.016,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.351,63.16,107.89,0.91,0.8,791,0.2,329,0.6
+17174,2023,12,24,19,0,-8.8,1.24,0.017,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.351,63.15,113.42,0.9,0.8,792,0.2,316,0.5
+17175,2023,12,24,19,30,-9,1.24,0.017,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.35,64.15,119.04,0.9,0.8,792,0.2,304,0.5
+17176,2023,12,24,20,0,-9.2,1.17,0.017,0.63,0,0,0,0,0,-15,0,0,0,0,0.35,62.53,124.72,0.9,0.8,792,0.2,292,0.5
+17177,2023,12,24,20,30,-9.4,1.17,0.017,0.63,0,0,0,0,0,-15,0,0,0,0,0.349,63.52,130.42,0.9,0.8,792,0.2,283,0.5
+17178,2023,12,24,21,0,-9.6,1.1,0.017,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.349,62.63,136.09,0.9,0.8,792,0.2,273,0.4
+17179,2023,12,24,21,30,-9.8,1.1,0.017,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.348,63.63,141.68,0.89,0.8,792,0.2,265,0.4
+17180,2023,12,24,22,0,-10.1,1.02,0.017,0.63,0,0,0,0,0,-15.6,0,0,0,0,0.348,64.34,147.12,0.89,0.8,792,0.2,256,0.4
+17181,2023,12,24,22,30,-10.4,1.02,0.017,0.63,0,0,0,0,0,-15.6,0,0,0,0,0.348,65.89,152.26,0.89,0.8,792,0.2,252,0.5
+17182,2023,12,24,23,0,-10.8,0.97,0.017,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.348,67.38,156.86,0.89,0.8,792,0.2,247,0.6
+17183,2023,12,24,23,30,-11.2,0.97,0.017,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.348,69.57,160.52,0.89,0.8,792,0.2,253,0.6
+17184,2023,12,25,0,0,-11.5,0.94,0.018,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.349,70.71,162.61,0.89,0.8,792,0.2,258,0.6
+17185,2023,12,25,0,30,-11.8,0.94,0.018,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.349,72.43,162.53,0.89,0.8,792,0.2,264,0.6
+17186,2023,12,25,1,0,-12.1,0.94,0.018,0.63,0,0,0,0,0,-15.9,0,0,0,0,0.349,73.47,160.32,0.89,0.8,791,0.2,270,0.7
+17187,2023,12,25,1,30,-12.4,0.94,0.018,0.63,0,0,0,0,0,-15.9,0,0,0,0,0.349,75.27,156.58,0.89,0.8,791,0.2,269,0.6
+17188,2023,12,25,2,0,-12.6,0.95,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.349,75.97,151.93,0.89,0.8,791,0.2,267,0.6
+17189,2023,12,25,2,30,-12.9,0.95,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.349,77.84,146.77,0.89,0.8,791,0.2,265,0.7
+17190,2023,12,25,3,0,-13.1,0.96,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.349,78.77,141.32,0.89,0.8,791,0.2,263,0.7
+17191,2023,12,25,3,30,-13.4,0.96,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.349,80.72,135.72,0.88,0.8,791,0.2,263,0.7
+17192,2023,12,25,4,0,-13.7,0.97,0.016,0.63,0,0,0,0,0,-16.1,0,0,29,0,0.349,82.19,130.04,0.88,0.8,791,0.2,263,0.8
+17193,2023,12,25,4,30,-13.9,0.97,0.016,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.35,83.55,124.34,0.88,0.8,791,0.2,265,0.8
+17194,2023,12,25,5,0,-14.1,0.99,0.015,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.35,84.12,118.67,0.88,0.8,791,0.2,268,0.8
+17195,2023,12,25,5,30,-14.3,0.99,0.015,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.35,85.51,113.05,0.88,0.8,791,0.2,271,0.8
+17196,2023,12,25,6,0,-14.4,1,0.015,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.351,85.29,107.52,0.88,0.8,791,0.2,275,0.8
+17197,2023,12,25,6,30,-14.5,1,0.015,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.35,85.99,102.12,0.88,0.8,791,0.2,280,0.8
+17198,2023,12,25,7,0,-14.6,1.01,0.015,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.35,85.84,96.86,0.88,0.8,791,0.2,284,0.7
+17199,2023,12,25,7,30,-13.8,1.01,0.015,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.35,80.49,91.8,0.88,0.8,792,0.2,284,0.8
+17200,2023,12,25,8,0,-13,1.02,0.015,0.63,20,441,45,0,0,-16.3,20,441,0,45,0.349,75.97,86.79,0.88,0.8,792,0.2,283,0.9
+17201,2023,12,25,8,30,-11.5,1.02,0.015,0.63,30,703,124,0,0,-16.3,30,703,0,124,0.349,67.33,82.35,0.88,0.8,792,0.2,301,1.3
+17202,2023,12,25,9,0,-10,1.02,0.015,0.63,39,822,207,0,0,-15.8,39,822,0,207,0.349,62.71,78.18,0.88,0.8,792,0.2,319,1.8
+17203,2023,12,25,9,30,-8.7,1.02,0.015,0.63,45,894,285,0,0,-15.8,45,894,0,285,0.348,56.63,74.41,0.88,0.8,792,0.2,325,2.6
+17204,2023,12,25,10,0,-7.3,1.03,0.014,0.63,49,941,354,0,0,-15.9,49,941,0,354,0.348,50.41,71.1,0.88,0.8,792,0.2,332,3.4
+17205,2023,12,25,10,30,-6.3,1.03,0.014,0.63,53,973,412,0,0,-15.9,53,973,0,412,0.347,46.69,68.34,0.88,0.8,792,0.2,334,3.7
+17206,2023,12,25,11,0,-5.3,1.03,0.014,0.63,55,994,456,0,0,-16.3,55,994,0,456,0.346,41.75,66.19,0.88,0.8,791,0.2,337,4.1
+17207,2023,12,25,11,30,-4.7,1.03,0.014,0.63,56,1007,486,0,0,-16.3,56,1007,0,486,0.345,39.89,64.72,0.88,0.8,791,0.2,338,4.3
+17208,2023,12,25,12,0,-4,1.06,0.014,0.63,56,1014,501,0,0,-16.8,56,1014,0,501,0.343,36.38,63.99,0.88,0.8,791,0.2,340,4.4
+17209,2023,12,25,12,30,-3.6,1.06,0.014,0.63,56,1014,501,0,0,-16.8,56,1014,0,501,0.342,35.26,64,0.89,0.8,790,0.2,341,4.5
+17210,2023,12,25,13,0,-3.3,1.1,0.014,0.63,56,1008,486,0,0,-17.2,56,1008,0,486,0.34,33.34,64.78,0.89,0.8,790,0.2,342,4.6
+17211,2023,12,25,13,30,-3.3,1.1,0.014,0.63,55,995,455,0,0,-17.2,55,995,0,455,0.339,33.34,66.28,0.89,0.8,790,0.2,344,4.5
+17212,2023,12,25,14,0,-3.3,1.13,0.014,0.63,51,974,409,0,0,-17.4,51,974,0,409,0.338,32.85,68.46,0.89,0.8,790,0.2,347,4.4
+17213,2023,12,25,14,30,-3.7,1.13,0.014,0.63,48,942,351,0,0,-17.4,48,942,0,351,0.336,33.85,71.25,0.89,0.8,790,0.2,350,4.2
+17214,2023,12,25,15,0,-4.1,1.17,0.014,0.63,43,895,281,0,0,-17.6,43,895,0,281,0.335,34.11,74.58,0.89,0.8,790,0.2,353,3.9
+17215,2023,12,25,15,30,-5.4,1.17,0.014,0.63,37,822,203,0,0,-17.6,37,822,0,203,0.334,37.62,78.37,0.9,0.8,790,0.2,355,2.9
+17216,2023,12,25,16,0,-6.7,1.2,0.014,0.63,30,703,121,0,0,-17.2,30,703,0,121,0.334,42.92,82.55,0.9,0.8,790,0.2,357,1.9
+17217,2023,12,25,16,30,-7.7,1.2,0.014,0.63,20,439,43,0,0,-17.2,20,439,0,43,0.333,46.36,87.01,0.9,0.8,790,0.2,356,1.5
+17218,2023,12,25,17,0,-8.8,1.22,0.013,0.63,0,0,0,0,0,-17,0,0,0,0,0.333,51.66,92.04,0.89,0.8,790,0.2,355,1.1
+17219,2023,12,25,17,30,-9.1,1.22,0.013,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.333,52.95,97.11,0.89,0.8,791,0.2,346,1
+17220,2023,12,25,18,0,-9.4,1.23,0.013,0.63,0,0,0,0,0,-17.7,0,0,0,0,0.333,51.07,102.37,0.89,0.8,791,0.2,337,0.9
+17221,2023,12,25,18,30,-9.9,1.23,0.013,0.63,0,0,0,0,0,-17.7,0,0,0,0,0.333,53.12,107.78,0.89,0.8,791,0.2,325,0.9
+17222,2023,12,25,19,0,-10.4,1.22,0.012,0.63,0,0,0,0,0,-18.1,0,0,0,0,0.334,53.24,113.32,0.89,0.8,791,0.2,312,0.9
+17223,2023,12,25,19,30,-10.8,1.22,0.012,0.63,0,0,0,0,0,-18.1,0,0,0,0,0.334,54.96,118.94,0.89,0.8,791,0.2,307,0.9
+17224,2023,12,25,20,0,-11.3,1.21,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,56.12,124.61,0.89,0.8,791,0.2,302,1
+17225,2023,12,25,20,30,-11.6,1.21,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.336,57.49,130.31,0.88,0.8,791,0.2,302,1
+17226,2023,12,25,21,0,-12,1.2,0.012,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.336,59.21,135.98,0.88,0.8,791,0.2,302,1.1
+17227,2023,12,25,21,30,-12.3,1.2,0.012,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.336,60.66,141.58,0.88,0.8,791,0.2,303,1.1
+17228,2023,12,25,22,0,-12.6,1.22,0.012,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.337,62.14,147.01,0.88,0.8,791,0.2,305,1.2
+17229,2023,12,25,22,30,-12.9,1.22,0.012,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.336,63.66,152.16,0.88,0.8,791,0.2,306,1.2
+17230,2023,12,25,23,0,-13.2,1.25,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.336,65.52,156.77,0.87,0.8,791,0.2,307,1.2
+17231,2023,12,25,23,30,-13.4,1.25,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,66.5,160.45,0.87,0.8,790,0.2,309,1.2
+17232,2023,12,26,0,0,-13.6,1.27,0.013,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,67.74,162.56,0.87,0.8,790,0.2,310,1.2
+17233,2023,12,26,0,30,-13.7,1.27,0.013,0.63,0,0,0,0,7,-18.3,0,0,0,0,0.334,68.29,162.52,0.87,0.8,790,0.2,313,1.1
+17234,2023,12,26,1,0,-13.9,1.28,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.333,69.63,160.35,0.87,0.8,790,0.2,316,1.1
+17235,2023,12,26,1,30,-14,1.28,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.333,70.2,156.63,0.87,0.8,790,0.2,317,1
+17236,2023,12,26,2,0,-14.1,1.29,0.011,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.332,70.68,151.99,0.87,0.8,790,0.3,318,1
+17237,2023,12,26,2,30,-14.1,1.29,0.011,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.332,70.68,146.84,0.87,0.8,790,0.3,317,1
+17238,2023,12,26,3,0,-14.1,1.29,0.011,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.331,69.85,141.39,0.87,0.8,790,0.3,316,0.9
+17239,2023,12,26,3,30,-14.1,1.29,0.011,0.63,0,0,0,0,0,-18.4,0,0,0,0,0.331,69.85,135.79,0.87,0.8,790,0.3,316,0.9
+17240,2023,12,26,4,0,-14.1,1.29,0.01,0.63,0,0,0,0,0,-18.6,0,0,0,0,0.331,68.71,130.12,0.87,0.8,790,0.3,317,0.9
+17241,2023,12,26,4,30,-14,1.29,0.01,0.63,0,0,0,0,0,-18.6,0,0,0,0,0.332,68.24,124.42,0.87,0.8,791,0.3,319,0.8
+17242,2023,12,26,5,0,-13.8,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,66.53,118.75,0.87,0.8,791,0.3,322,0.8
+17243,2023,12,26,5,30,-13.7,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,65.99,113.13,0.87,0.8,791,0.3,326,0.7
+17244,2023,12,26,6,0,-13.6,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,65.3,107.6,0.87,0.8,791,0.3,330,0.6
+17245,2023,12,26,6,30,-13.5,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,64.77,102.18,0.87,0.8,791,0.3,333,0.5
+17246,2023,12,26,7,0,-13.4,1.29,0.01,0.63,0,0,0,0,0,-18.8,0,0,0,0,0.332,64.05,96.93,0.87,0.8,791,0.3,335,0.5
+17247,2023,12,26,7,30,-12.5,1.29,0.01,0.63,0,0,0,0,0,-18.8,0,0,0,0,0.331,59.54,91.86,0.87,0.8,791,0.3,323,0.4
+17248,2023,12,26,8,0,-11.6,1.29,0.01,0.63,19,441,43,0,0,-18.1,19,441,0,43,0.331,58.52,86.84,0.86,0.8,791,0.4,311,0.4
+17249,2023,12,26,8,30,-10.3,1.29,0.01,0.63,28,696,120,0,0,-18.1,28,696,0,120,0.33,52.76,82.39,0.86,0.8,791,0.4,305,0.5
+17250,2023,12,26,9,0,-9,1.29,0.01,0.63,34,810,199,0,0,-17.7,34,810,0,199,0.329,49.33,78.22,0.86,0.8,791,0.4,300,0.5
+17251,2023,12,26,9,30,-7.7,1.29,0.01,0.63,39,880,275,0,0,-17.7,39,880,0,275,0.329,44.58,74.44,0.86,0.8,791,0.4,303,0.8
+17252,2023,12,26,10,0,-6.4,1.29,0.01,0.63,43,926,343,0,0,-17.5,43,926,0,343,0.328,40.9,71.12,0.86,0.8,791,0.4,306,1
+17253,2023,12,26,10,30,-5.3,1.29,0.01,0.63,47,958,400,0,0,-17.5,47,958,0,400,0.327,37.61,68.35,0.86,0.8,791,0.4,303,1.2
+17254,2023,12,26,11,0,-4.2,1.15,0.01,0.63,49,978,444,0,0,-17.4,49,978,0,444,0.327,35.03,66.19,0.87,0.8,791,0.4,299,1.4
+17255,2023,12,26,11,30,-3.3,1.15,0.01,0.63,51,991,474,0,0,-17.4,51,991,0,474,0.326,32.75,64.71,0.87,0.8,791,0.4,297,1.6
+17256,2023,12,26,12,0,-2.4,1.14,0.01,0.63,51,997,489,0,0,-17.3,51,997,0,489,0.326,30.98,63.96,0.87,0.8,790,0.4,295,1.9
+17257,2023,12,26,12,30,-1.8,1.14,0.01,0.63,51,998,489,0,0,-17.3,51,998,0,489,0.326,29.64,63.97,0.87,0.8,790,0.4,297,2
+17258,2023,12,26,13,0,-1.1,1.13,0.01,0.63,51,994,475,0,0,-17,51,994,0,475,0.326,28.67,64.73,0.87,0.8,790,0.4,299,2.1
+17259,2023,12,26,13,30,-0.7,1.13,0.01,0.63,50,981,446,0,0,-17,50,981,0,446,0.326,27.84,66.22,0.88,0.8,790,0.3,303,2.1
+17260,2023,12,26,14,0,-0.4,0.94,0.012,0.63,50,959,403,0,0,-16.6,50,959,0,403,0.327,28.39,68.38,0.88,0.8,790,0.3,307,2.1
+17261,2023,12,26,14,30,-0.6,0.94,0.012,0.63,46,930,346,0,0,-16.6,46,930,0,346,0.327,28.81,71.17,0.88,0.8,790,0.3,308,1.6
+17262,2023,12,26,15,0,-0.9,0.93,0.012,0.63,42,883,278,0,0,-14.7,42,883,0,278,0.327,34.41,74.49,0.88,0.8,790,0.3,308,1.2
+17263,2023,12,26,15,30,-2.2,0.93,0.012,0.63,36,811,201,0,0,-14.7,36,811,0,201,0.327,37.85,78.28,0.88,0.8,790,0.3,306,0.9
+17264,2023,12,26,16,0,-3.4,0.92,0.012,0.63,29,692,120,0,0,-14.3,29,692,0,120,0.327,42.74,82.46,0.88,0.8,790,0.3,304,0.6
+17265,2023,12,26,16,30,-4.3,0.92,0.012,0.63,20,429,43,0,0,-14.3,20,429,0,43,0.328,45.78,86.91,0.88,0.8,791,0.3,300,0.6
+17266,2023,12,26,17,0,-5.2,0.9,0.012,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.328,41.86,91.93,0.88,0.8,791,0.3,296,0.6
+17267,2023,12,26,17,30,-5.7,0.9,0.012,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.328,43.48,97,0.88,0.8,791,0.3,294,0.6
+17268,2023,12,26,18,0,-6.3,0.89,0.012,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.328,44.7,102.26,0.88,0.8,792,0.3,291,0.6
+17269,2023,12,26,18,30,-6.8,0.89,0.012,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.328,46.45,107.67,0.88,0.8,792,0.3,293,0.6
+17270,2023,12,26,19,0,-7.4,0.89,0.012,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.328,47.84,113.2,0.88,0.8,792,0.3,294,0.6
+17271,2023,12,26,19,30,-7.9,0.89,0.012,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.327,49.72,118.82,0.87,0.8,792,0.3,302,0.7
+17272,2023,12,26,20,0,-8.3,0.91,0.012,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.327,50.35,124.5,0.87,0.8,792,0.3,310,0.7
+17273,2023,12,26,20,30,-8.7,0.91,0.012,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.327,51.95,130.19,0.87,0.8,792,0.3,320,0.7
+17274,2023,12,26,21,0,-9.1,0.95,0.012,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.326,53.21,135.87,0.87,0.8,793,0.3,329,0.7
+17275,2023,12,26,21,30,-9.5,0.95,0.012,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.326,54.91,141.47,0.87,0.8,793,0.3,335,0.7
+17276,2023,12,26,22,0,-9.8,0.99,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,55.78,146.9,0.87,0.8,793,0.3,340,0.7
+17277,2023,12,26,22,30,-10.2,0.99,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,57.57,152.05,0.87,0.8,793,0.3,344,0.7
+17278,2023,12,26,23,0,-10.5,1.03,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,58.97,156.67,0.87,0.8,793,0.3,347,0.7
+17279,2023,12,26,23,30,-10.8,1.03,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,60.4,160.37,0.87,0.8,793,0.3,348,0.6
+17280,2023,12,27,0,0,-11,1.06,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,61.51,162.51,0.86,0.8,793,0.3,348,0.6
+17281,2023,12,27,0,30,-11.2,1.06,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,62.49,162.51,0.86,0.8,793,0.2,350,0.6
+17282,2023,12,27,1,0,-11.4,1.09,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.325,63.67,160.36,0.86,0.8,793,0.2,352,0.6
+17283,2023,12,27,1,30,-11.4,1.09,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.325,63.67,156.67,0.86,0.8,793,0.2,354,0.5
+17284,2023,12,27,2,0,-11.4,1.11,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.325,63.86,152.05,0.86,0.8,794,0.2,356,0.5
+17285,2023,12,27,2,30,-11.3,1.11,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.325,63.35,146.9,0.87,0.8,794,0.2,354,0.4
+17286,2023,12,27,3,0,-11.2,1.11,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.324,62.54,141.46,0.87,0.8,794,0.2,352,0.4
+17287,2023,12,27,3,30,-11.2,1.11,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.324,62.54,135.86,0.87,0.8,794,0.2,178,0.3
+17288,2023,12,27,4,0,-11.2,1.09,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.323,62.18,130.19,0.87,0.8,794,0.2,3,0.3
+17289,2023,12,27,4,30,-11.2,1.09,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.323,62.18,124.49,0.87,0.8,794,0.2,17,0.4
+17290,2023,12,27,5,0,-11.3,1.08,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,62.52,118.82,0.87,0.8,794,0.2,31,0.5
+17291,2023,12,27,5,30,-11.4,1.08,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,63.02,113.2,0.87,0.8,794,0.2,39,0.6
+17292,2023,12,27,6,0,-11.6,1.07,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,64.3,107.66,0.87,0.8,794,0.2,47,0.7
+17293,2023,12,27,6,30,-11.7,1.07,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,64.81,102.25,0.87,0.8,794,0.2,49,0.7
+17294,2023,12,27,7,0,-11.8,1.08,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.322,65.66,96.99,0.87,0.8,794,0.2,51,0.8
+17295,2023,12,27,7,30,-11.2,1.08,0.01,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.322,62.58,91.92,0.87,0.8,794,0.2,56,0.7
+17296,2023,12,27,8,0,-10.6,1.09,0.01,0.63,19,445,43,1,0,-16.2,19,338,18,37,0.322,63.65,86.89,0.87,0.8,795,0.3,61,0.6
+17297,2023,12,27,8,30,-9.1,1.09,0.01,0.63,28,701,120,1,0,-16.2,32,634,11,115,0.322,56.55,82.44,0.87,0.8,795,0.3,70,0.8
+17298,2023,12,27,9,0,-7.7,1.11,0.01,0.63,35,817,201,0,0,-15.3,35,817,0,201,0.321,54.59,78.26,0.87,0.8,795,0.3,79,0.9
+17299,2023,12,27,9,30,-6.4,1.11,0.01,0.63,40,889,278,0,0,-15.3,40,889,0,278,0.321,49.39,74.47,0.87,0.8,795,0.3,78,0.7
+17300,2023,12,27,10,0,-5.1,1.12,0.01,0.63,45,935,347,0,0,-14.4,45,935,0,347,0.32,48.16,71.14,0.87,0.8,795,0.3,76,0.5
+17301,2023,12,27,10,30,-3.9,1.12,0.01,0.63,49,963,404,0,0,-14.4,49,963,0,404,0.319,44,68.35,0.88,0.8,795,0.3,183,0.5
+17302,2023,12,27,11,0,-2.6,0.9,0.013,0.63,53,977,448,0,0,-13.5,53,977,0,448,0.318,43,66.18,0.89,0.8,794,0.3,291,0.5
+17303,2023,12,27,11,30,-1.7,0.9,0.013,0.63,56,987,478,0,0,-13.5,56,987,0,478,0.317,40.24,64.69,0.89,0.8,794,0.4,285,0.8
+17304,2023,12,27,12,0,-0.8,0.91,0.013,0.63,56,989,491,0,0,-12.2,56,989,0,491,0.316,41.86,63.93,0.89,0.8,794,0.4,279,1.1
+17305,2023,12,27,12,30,-0.2,0.91,0.013,0.63,55,990,490,0,0,-12.2,55,990,0,490,0.316,40.07,63.92,0.89,0.8,794,0.4,278,1
+17306,2023,12,27,13,0,0.5,0.92,0.012,0.63,54,984,475,0,0,-10.9,54,984,0,475,0.316,42.04,64.67,0.89,0.8,794,0.4,276,0.9
+17307,2023,12,27,13,30,0.6,0.92,0.012,0.63,52,972,445,0,0,-10.9,52,972,0,445,0.316,41.73,66.15,0.89,0.8,794,0.4,276,0.7
+17308,2023,12,27,14,0,0.8,0.94,0.012,0.63,50,951,401,0,0,-10.3,50,951,0,401,0.317,43.24,68.31,0.89,0.8,794,0.4,276,0.5
+17309,2023,12,27,14,30,0.5,0.94,0.012,0.63,46,920,344,0,0,-10.3,46,920,0,344,0.318,44.18,71.08,0.89,0.8,794,0.4,267,0.4
+17310,2023,12,27,15,0,0.3,0.97,0.012,0.63,42,872,276,0,0,-9.8,42,872,0,276,0.318,46.55,74.4,0.89,0.8,794,0.4,259,0.2
+17311,2023,12,27,15,30,-0.7,0.97,0.012,0.63,36,801,200,0,0,-9.8,36,801,0,200,0.319,50.05,78.18,0.89,0.8,794,0.4,212,0.3
+17312,2023,12,27,16,0,-1.7,1,0.011,0.63,29,684,120,0,0,-9.6,29,684,0,120,0.319,54.84,82.36,0.89,0.8,794,0.4,165,0.4
+17313,2023,12,27,16,30,-2.5,1,0.011,0.63,19,428,43,0,0,-9.6,19,428,0,43,0.32,58.18,86.81,0.89,0.8,794,0.4,170,0.5
+17314,2023,12,27,17,0,-3.3,1.03,0.011,0.63,0,0,0,0,0,-11,0,0,0,0,0.321,55.06,91.82,0.89,0.8,794,0.4,175,0.6
+17315,2023,12,27,17,30,-3.8,1.03,0.011,0.63,0,0,0,0,0,-11,0,0,0,0,0.321,57.15,96.89,0.89,0.8,794,0.4,182,0.7
+17316,2023,12,27,18,0,-4.4,1.05,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.321,58.31,102.15,0.89,0.8,794,0.4,189,0.7
+17317,2023,12,27,18,30,-4.9,1.05,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.322,60.55,107.56,0.89,0.8,794,0.4,195,0.7
+17318,2023,12,27,19,0,-5.4,1.06,0.011,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.322,61.36,113.09,0.89,0.8,794,0.4,201,0.7
+17319,2023,12,27,19,30,-5.7,1.06,0.011,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.323,62.77,118.71,0.89,0.8,794,0.4,200,0.6
+17320,2023,12,27,20,0,-6,1.07,0.011,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,62.6,124.38,0.89,0.8,794,0.3,199,0.6
+17321,2023,12,27,20,30,-6.3,1.07,0.011,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,64.05,130.08,0.89,0.8,794,0.3,187,0.6
+17322,2023,12,27,21,0,-6.5,1.07,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,62.74,135.75,0.89,0.8,794,0.3,174,0.6
+17323,2023,12,27,21,30,-6.8,1.07,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,64.2,141.35,0.89,0.8,794,0.3,165,0.6
+17324,2023,12,27,22,0,-7.1,1.08,0.011,0.63,0,0,0,0,0,-13,0,0,0,0,0.323,62.98,146.79,0.89,0.8,794,0.3,157,0.7
+17325,2023,12,27,22,30,-7.4,1.08,0.011,0.63,0,0,0,0,0,-13,0,0,0,0,0.323,64.45,151.94,0.89,0.8,794,0.3,161,0.7
+17326,2023,12,27,23,0,-7.6,1.08,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.322,62.91,156.57,0.89,0.8,794,0.2,165,0.7
+17327,2023,12,27,23,30,-7.8,1.08,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.322,63.89,160.28,0.89,0.8,794,0.2,174,0.7
+17328,2023,12,28,0,0,-7.9,1.08,0.011,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.322,62.59,162.45,0.89,0.8,794,0.2,184,0.7
+17329,2023,12,28,0,30,-8,1.08,0.011,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.323,63.08,162.48,0.89,0.8,794,0.2,193,0.7
+17330,2023,12,28,1,0,-8.2,1.08,0.011,0.63,0,0,0,0,0,-14,0,0,0,0,0.323,63.01,160.37,0.89,0.8,794,0.2,202,0.6
+17331,2023,12,28,1,30,-8.3,1.08,0.011,0.63,0,0,0,0,0,-14,0,0,0,0,0.323,63.5,156.7,0.89,0.8,794,0.2,203,0.5
+17332,2023,12,28,2,0,-8.5,1.08,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.323,64.05,152.1,0.89,0.8,794,0.2,205,0.4
+17333,2023,12,28,2,30,-8.6,1.08,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.322,64.55,146.96,0.89,0.8,794,0.2,208,0.4
+17334,2023,12,28,3,0,-8.8,1.09,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.322,65.17,141.53,0.89,0.8,794,0.2,211,0.3
+17335,2023,12,28,3,30,-8.9,1.09,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.322,65.68,135.93,0.89,0.8,794,0.2,235,0.2
+17336,2023,12,28,4,0,-9.1,1.11,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.321,66.24,130.26,0.88,0.8,794,0.2,260,0.2
+17337,2023,12,28,4,30,-9.3,1.11,0.01,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.321,67.37,124.56,0.88,0.8,795,0.2,291,0.2
+17338,2023,12,28,5,0,-9.4,1.13,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,67.53,118.88,0.88,0.8,795,0.2,322,0.2
+17339,2023,12,28,5,30,-9.5,1.13,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,68.06,113.26,0.88,0.8,795,0.2,339,0.2
+17340,2023,12,28,6,0,-9.6,1.16,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,68.45,107.72,0.88,0.8,795,0.2,355,0.1
+17341,2023,12,28,6,30,-9.7,1.16,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.32,69,102.31,0.88,0.8,795,0.2,318,0.1
+17342,2023,12,28,7,0,-9.8,1.18,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.32,69.63,97.04,0.88,0.8,795,0.2,280,0.1
+17343,2023,12,28,7,30,-9.3,1.18,0.01,0.63,0,0,0,1,0,-14.3,0,0,18,0,0.319,66.95,91.97,0.89,0.8,795,0.2,257,0.2
+17344,2023,12,28,8,0,-8.9,1.2,0.01,0.63,20,456,44,2,0,-14,20,383,25,41,0.318,66.81,86.93,0.89,0.8,795,0.2,234,0.3
+17345,2023,12,28,8,30,-7.5,1.2,0.01,0.63,28,719,122,2,0,-13.9,54,420,36,109,0.317,60,82.47,0.89,0.8,796,0.2,226,0.6
+17346,2023,12,28,9,0,-6,1.21,0.01,0.63,35,835,204,0,0,-12.8,70,580,0,188,0.316,58.8,78.29,0.89,0.8,796,0.2,218,1
+17347,2023,12,28,9,30,-4.8,1.21,0.01,0.63,41,905,283,0,0,-12.8,81,681,0,263,0.315,53.68,74.48,0.89,0.8,796,0.2,222,1.1
+17348,2023,12,28,10,0,-3.6,1.23,0.011,0.63,46,951,353,0,0,-12.6,61,886,0,347,0.314,49.83,71.15,0.9,0.8,796,0.2,226,1.2
+17349,2023,12,28,10,30,-2.6,1.23,0.011,0.63,49,982,411,0,0,-12.6,61,936,0,406,0.312,46.26,68.35,0.9,0.8,796,0.2,229,1.3
+17350,2023,12,28,11,0,-1.5,1.25,0.011,0.63,52,1002,457,0,0,-12.1,52,1002,0,457,0.311,44.48,66.17,0.9,0.8,796,0.2,231,1.3
+17351,2023,12,28,11,30,-0.8,1.25,0.011,0.63,54,1015,488,0,0,-12.1,75,947,0,480,0.31,42.26,64.66,0.9,0.8,796,0.2,233,1.3
+17352,2023,12,28,12,0,-0.1,1.27,0.011,0.63,54,1020,503,0,0,-11.7,113,841,0,483,0.308,41.35,63.88,0.9,0.8,796,0.2,235,1.3
+17353,2023,12,28,12,30,0.2,1.27,0.011,0.63,54,1017,502,0,7,-11.7,192,610,0,461,0.307,40.46,63.86,0.9,0.8,796,0.2,233,1.3
+17354,2023,12,28,13,0,0.6,1.29,0.011,0.63,54,1008,486,0,7,-11.4,195,570,0,439,0.306,40.35,64.6,0.9,0.8,796,0.3,231,1.3
+17355,2023,12,28,13,30,0.7,1.29,0.011,0.63,53,992,455,0,0,-11.4,111,796,0,434,0.305,40.06,66.07,0.9,0.8,796,0.3,231,1.2
+17356,2023,12,28,14,0,0.8,1.04,0.013,0.63,51,964,409,0,0,-11.3,51,964,0,409,0.305,39.99,68.22,0.9,0.8,796,0.3,230,1.1
+17357,2023,12,28,14,30,0.6,1.04,0.013,0.63,47,932,351,0,0,-11.3,50,921,0,350,0.305,40.57,70.99,0.9,0.8,796,0.3,225,1
+17358,2023,12,28,15,0,0.3,1.05,0.013,0.63,43,886,283,0,0,-10.1,58,811,0,277,0.306,45.65,74.3,0.9,0.8,796,0.3,221,0.8
+17359,2023,12,28,15,30,-0.9,1.05,0.013,0.63,38,815,206,0,0,-10.1,38,815,11,206,0.306,49.81,78.08,0.9,0.8,796,0.3,209,0.8
+17360,2023,12,28,16,0,-2,1.06,0.013,0.63,30,699,124,0,0,-10.3,30,699,7,124,0.306,53.25,82.25,0.9,0.8,796,0.3,198,0.8
+17361,2023,12,28,16,30,-2.7,1.06,0.013,0.63,20,487,48,2,0,-10.3,24,369,32,45,0.306,56.08,86.7,0.9,0.8,796,0.3,196,0.9
+17362,2023,12,28,17,0,-3.5,1.07,0.013,0.63,3,47,2,2,0,-11.7,1,0,29,1,0.307,52.99,91.71,0.9,0.75,796,0.3,195,0.9
+17363,2023,12,28,17,30,-3.8,1.07,0.013,0.63,0,0,0,0,0,-11.7,0,0,0,0,0.307,54.19,96.77,0.9,0.75,796,0.3,198,0.9
+17364,2023,12,28,18,0,-4.2,1.08,0.013,0.63,0,0,0,0,0,-12,0,0,0,0,0.307,54.38,102.03,0.9,0.75,796,0.4,201,0.9
+17365,2023,12,28,18,30,-4.5,1.08,0.013,0.63,0,0,0,0,0,-12,0,0,0,0,0.307,55.62,107.44,0.9,0.75,796,0.4,207,0.9
+17366,2023,12,28,19,0,-4.8,1.08,0.013,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.308,55.2,112.97,0.9,0.75,796,0.4,213,0.9
+17367,2023,12,28,19,30,-5,1.08,0.013,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.308,56.04,118.59,0.9,0.75,796,0.4,214,0.8
+17368,2023,12,28,20,0,-5.1,1.08,0.012,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.308,55.39,124.26,0.9,0.75,797,0.4,214,0.8
+17369,2023,12,28,20,30,-5.2,1.08,0.012,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.309,55.81,129.96,0.9,0.75,797,0.4,208,0.8
+17370,2023,12,28,21,0,-5.4,1.07,0.012,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.309,55.69,135.63,0.9,0.75,797,0.4,202,0.8
+17371,2023,12,28,21,30,-5.5,1.07,0.012,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.309,56.04,141.23,0.9,0.75,796,0.4,198,0.8
+17372,2023,12,28,22,0,-5.6,1.06,0.011,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.31,55.39,146.67,0.9,0.75,796,0.4,193,0.9
+17373,2023,12,28,22,30,-5.7,1.06,0.011,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.311,55.81,151.82,0.9,0.75,796,0.4,192,0.9
+17374,2023,12,28,23,0,-5.8,1.06,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.311,55.09,156.46,0.9,0.75,796,0.4,190,0.9
+17375,2023,12,28,23,30,-5.8,1.06,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.312,55.09,160.18,0.9,0.75,796,0.4,190,0.8
+17376,2023,12,29,0,0,-5.8,1.06,0.011,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.313,53.92,162.38,0.9,0.75,796,0.4,189,0.8
+17377,2023,12,29,0,30,-5.9,1.06,0.011,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.314,54.33,162.45,0.9,0.75,796,0.4,188,0.8
+17378,2023,12,29,1,0,-6,1.07,0.011,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.314,53.6,160.38,0.9,0.75,796,0.4,186,0.8
+17379,2023,12,29,1,30,-6.1,1.07,0.011,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.315,54.01,156.73,0.9,0.75,796,0.4,187,0.8
+17380,2023,12,29,2,0,-6.2,1.07,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.315,53.44,152.14,0.9,0.75,797,0.4,189,0.7
+17381,2023,12,29,2,30,-6.4,1.07,0.01,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.315,54.26,147.01,0.89,0.75,797,0.4,194,0.7
+17382,2023,12,29,3,0,-6.6,1.07,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.315,54.21,141.58,0.89,0.75,797,0.4,200,0.7
+17383,2023,12,29,3,30,-6.8,1.07,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.316,55.05,135.99,0.89,0.75,797,0.4,202,0.7
+17384,2023,12,29,4,0,-7,1.08,0.01,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.316,54.98,130.32,0.89,0.75,797,0.4,204,0.7
+17385,2023,12,29,4,30,-7.3,1.08,0.01,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.316,56.26,124.62,0.89,0.75,797,0.4,204,0.7
+17386,2023,12,29,5,0,-7.5,1.09,0.01,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.316,56,118.94,0.89,0.75,797,0.4,204,0.7
+17387,2023,12,29,5,30,-7.8,1.09,0.01,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.316,57.32,113.32,0.9,0.75,797,0.4,205,0.8
+17388,2023,12,29,6,0,-8,1.09,0.011,0.63,0,0,0,0,0,-15.1,0,0,0,0,0.316,56.88,107.78,0.9,0.75,797,0.4,207,0.8
+17389,2023,12,29,6,30,-8.2,1.09,0.011,0.63,0,0,0,0,0,-15.1,0,0,0,0,0.316,57.77,102.36,0.9,0.75,797,0.4,208,0.8
+17390,2023,12,29,7,0,-8.4,1.1,0.011,0.63,0,0,0,0,0,-15.3,0,0,0,0,0.316,57.35,97.09,0.9,0.75,797,0.4,210,0.9
+17391,2023,12,29,7,30,-7.9,1.1,0.011,0.63,0,0,0,0,0,-15.3,0,0,0,0,0.315,55.17,92.01,0.9,0.75,797,0.4,213,0.8
+17392,2023,12,29,8,0,-7.4,1.1,0.011,0.63,19,421,41,0,0,-14.3,19,421,0,41,0.314,57.84,86.97,0.9,0.75,797,0.4,216,0.8
+17393,2023,12,29,8,30,-5.9,1.1,0.011,0.63,28,681,117,0,0,-14.3,28,681,0,117,0.314,51.62,82.5,0.9,0.75,798,0.4,216,1
+17394,2023,12,29,9,0,-4.5,1.1,0.011,0.63,35,800,197,0,0,-13.6,35,800,0,197,0.314,49.09,78.31,0.9,0.75,798,0.4,217,1.2
+17395,2023,12,29,9,30,-3.2,1.1,0.011,0.63,40,874,274,0,0,-13.6,40,874,0,274,0.313,44.54,74.5,0.9,0.75,798,0.4,222,1.3
+17396,2023,12,29,10,0,-2,1.1,0.01,0.63,44,922,342,0,0,-12.2,44,922,0,342,0.313,45.66,71.15,0.9,0.75,798,0.4,226,1.5
+17397,2023,12,29,10,30,-0.7,1.1,0.01,0.63,49,950,400,0,0,-12.2,49,950,0,400,0.313,41.46,68.34,0.9,0.75,797,0.4,228,1.7
+17398,2023,12,29,11,0,0.5,0.76,0.015,0.63,56,965,446,0,0,-10.1,56,965,0,446,0.313,45.07,66.14,0.91,0.75,797,0.4,230,2
+17399,2023,12,29,11,30,1.1,0.76,0.015,0.63,57,979,477,0,0,-10.1,57,979,0,477,0.313,43.17,64.62,0.91,0.75,797,0.4,228,2
+17400,2023,12,29,12,0,1.7,0.77,0.014,0.63,57,986,492,0,0,-9.1,57,986,0,492,0.312,44.4,63.84,0.91,0.75,796,0.4,226,2.1
+17401,2023,12,29,12,30,2.1,0.77,0.014,0.63,57,987,493,0,0,-9.1,57,987,0,493,0.313,43.15,63.8,0.91,0.75,796,0.4,224,2.1
+17402,2023,12,29,13,0,2.4,0.8,0.014,0.63,56,981,478,0,0,-8.7,56,981,0,478,0.313,43.74,64.53,0.91,0.75,796,0.4,222,2.1
+17403,2023,12,29,13,30,2.4,0.8,0.014,0.63,55,968,449,0,0,-8.7,55,968,0,449,0.313,43.74,65.99,0.91,0.75,796,0.4,219,2.1
+17404,2023,12,29,14,0,2.5,0.82,0.014,0.63,52,948,405,0,0,-8.6,52,948,0,405,0.313,43.93,68.13,0.91,0.75,796,0.4,217,2.1
+17405,2023,12,29,14,30,2,0.82,0.014,0.63,49,916,349,0,0,-8.6,49,916,0,349,0.312,45.46,70.89,0.91,0.75,795,0.4,216,1.8
+17406,2023,12,29,15,0,1.5,0.85,0.014,0.63,44,870,281,0,0,-7.5,44,870,0,281,0.311,51.18,74.19,0.91,0.75,795,0.4,216,1.6
+17407,2023,12,29,15,30,0.2,0.85,0.014,0.63,38,799,205,0,0,-7.5,38,799,0,205,0.311,56.2,77.97,0.91,0.75,795,0.4,219,1.2
+17408,2023,12,29,16,0,-1.1,0.87,0.014,0.63,31,682,124,0,0,-8.1,31,682,0,124,0.31,58.95,82.13,0.91,0.75,795,0.4,223,0.9
+17409,2023,12,29,16,30,-1.6,0.87,0.014,0.63,21,472,49,0,0,-8.1,21,472,0,49,0.309,61.15,86.59,0.91,0.75,795,0.4,227,0.9
+17410,2023,12,29,17,0,-2.2,0.89,0.013,0.63,3,45,2,0,0,-9.5,3,45,0,2,0.309,57.47,91.59,0.9,0.74,795,0.4,231,0.9
+17411,2023,12,29,17,30,-2.6,0.89,0.013,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.307,59.19,96.65,0.9,0.74,795,0.4,237,0.9
+17412,2023,12,29,18,0,-3,0.9,0.013,0.63,0,0,0,0,0,-10,0,0,0,0,0.306,58.47,101.9,0.9,0.74,795,0.4,242,0.9
+17413,2023,12,29,18,30,-3.5,0.9,0.013,0.63,0,0,0,0,0,-10,0,0,0,0,0.305,60.69,107.31,0.9,0.74,795,0.4,246,0.9
+17414,2023,12,29,19,0,-4,0.9,0.013,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.303,61.06,112.84,0.9,0.74,795,0.4,250,0.9
+17415,2023,12,29,19,30,-4.4,0.9,0.013,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.302,62.92,118.46,0.9,0.74,795,0.4,248,0.9
+17416,2023,12,29,20,0,-4.9,0.89,0.012,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.301,63.49,124.14,0.9,0.74,795,0.4,246,1
+17417,2023,12,29,20,30,-5.1,0.89,0.012,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.301,64.46,129.83,0.9,0.74,795,0.4,241,1
+17418,2023,12,29,21,0,-5.4,0.89,0.012,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.301,64.21,135.51,0.9,0.74,795,0.4,237,1.1
+17419,2023,12,29,21,30,-5.5,0.89,0.012,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.301,64.7,141.1,0.9,0.74,795,0.4,232,1.1
+17420,2023,12,29,22,0,-5.7,0.9,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.302,63.91,146.55,0.9,0.74,794,0.4,228,1.2
+17421,2023,12,29,22,30,-5.8,0.9,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.302,64.4,151.7,0.9,0.74,794,0.4,224,1.2
+17422,2023,12,29,23,0,-5.9,0.91,0.011,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.302,62.96,156.34,0.9,0.74,794,0.4,221,1.3
+17423,2023,12,29,23,30,-6,0.91,0.011,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.303,63.44,160.08,0.9,0.74,794,0.4,219,1.3
+17424,2023,12,30,0,0,-6.2,0.94,0.011,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.303,62.56,162.3,0.9,0.74,794,0.4,218,1.3
+17425,2023,12,30,0,30,-6.3,0.94,0.011,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.304,63.04,162.41,0.9,0.74,794,0.4,216,1.4
+17426,2023,12,30,1,0,-6.5,0.97,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.304,62.3,160.37,0.9,0.74,794,0.4,215,1.4
+17427,2023,12,30,1,30,-6.6,0.97,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.304,62.78,156.75,0.9,0.74,794,0.4,212,1.4
+17428,2023,12,30,2,0,-6.8,1.02,0.011,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.305,62.27,152.18,0.9,0.74,794,0.4,209,1.4
+17429,2023,12,30,2,30,-7,1.02,0.011,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.305,63.23,147.06,0.9,0.74,794,0.4,206,1.4
+17430,2023,12,30,3,0,-7.2,1.06,0.012,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.305,62.84,141.64,0.9,0.74,793,0.4,203,1.4
+17431,2023,12,30,3,30,-7.4,1.06,0.012,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.305,63.82,136.05,0.91,0.74,793,0.4,200,1.4
+17432,2023,12,30,4,0,-7.5,1.1,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.305,63.03,130.38,0.91,0.74,793,0.5,198,1.4
+17433,2023,12,30,4,30,-7.6,1.1,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.306,63.52,124.68,0.91,0.74,793,0.5,194,1.4
+17434,2023,12,30,5,0,-7.6,1.14,0.013,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.306,61.87,119,0.91,0.74,793,0.5,191,1.3
+17435,2023,12,30,5,30,-7.6,1.14,0.013,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.306,61.87,113.37,0.91,0.74,793,0.5,187,1.3
+17436,2023,12,30,6,0,-7.7,1.17,0.013,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.306,60.17,107.83,0.91,0.74,793,0.5,184,1.3
+17437,2023,12,30,6,30,-7.6,1.17,0.013,0.63,0,0,0,0,0,-14.1,0,0,0,0,0.306,59.7,102.41,0.91,0.74,793,0.5,182,1.3
+17438,2023,12,30,7,0,-7.5,1.19,0.013,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.307,57.57,97.13,0.91,0.74,793,0.5,180,1.3
+17439,2023,12,30,7,30,-6.7,1.19,0.013,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.307,54.13,92.05,0.91,0.74,793,0.5,182,1.3
+17440,2023,12,30,8,0,-5.8,1.21,0.013,0.63,20,404,41,0,0,-13.4,20,404,0,41,0.307,55.05,87,0.92,0.74,793,0.5,184,1.2
+17441,2023,12,30,8,30,-4.3,1.21,0.013,0.63,30,662,116,0,0,-13.4,30,662,0,116,0.307,49.14,82.52,0.92,0.74,793,0.5,189,1.6
+17442,2023,12,30,9,0,-2.8,1.23,0.014,0.63,38,782,196,0,0,-12.6,38,782,0,196,0.307,46.79,78.32,0.92,0.74,793,0.5,194,2
+17443,2023,12,30,9,30,-1.7,1.23,0.014,0.63,44,855,272,0,0,-12.6,44,855,0,272,0.306,43.14,74.5,0.92,0.74,793,0.5,201,2.2
+17444,2023,12,30,10,0,-0.7,1.24,0.015,0.63,48,902,340,0,0,-12.3,48,902,0,340,0.306,41.12,71.14,0.92,0.74,793,0.5,208,2.5
+17445,2023,12,30,10,30,0.6,1.24,0.015,0.63,52,934,397,0,0,-12.3,52,934,0,397,0.306,37.42,68.32,0.92,0.74,793,0.5,214,2.9
+17446,2023,12,30,11,0,1.8,1.22,0.016,0.63,55,955,442,0,0,-11.9,55,955,0,442,0.306,35.46,66.11,0.93,0.74,793,0.5,220,3.4
+17447,2023,12,30,11,30,2.5,1.22,0.016,0.63,57,969,473,0,0,-11.9,57,969,0,473,0.306,33.7,64.58,0.93,0.74,792,0.5,221,3.5
+17448,2023,12,30,12,0,3.1,1.23,0.016,0.63,58,975,489,0,0,-11.7,58,975,0,489,0.305,32.9,63.78,0.93,0.74,792,0.5,223,3.6
+17449,2023,12,30,12,30,3.3,1.23,0.016,0.63,58,976,490,0,0,-11.7,65,951,0,486,0.305,32.4,63.73,0.93,0.74,791,0.5,223,3.5
+17450,2023,12,30,13,0,3.6,1.24,0.015,0.63,57,971,476,0,7,-11.5,213,459,0,411,0.305,32.19,64.45,0.92,0.74,791,0.5,223,3.4
+17451,2023,12,30,13,30,3.4,1.24,0.015,0.63,55,959,447,0,7,-11.5,260,215,0,348,0.306,32.64,65.9,0.92,0.74,791,0.5,223,3.2
+17452,2023,12,30,14,0,3.3,1.15,0.015,0.63,53,939,404,0,7,-11.2,233,248,0,326,0.306,33.73,68.03,0.92,0.74,791,0.5,222,3.1
+17453,2023,12,30,14,30,2.6,1.15,0.015,0.63,49,909,348,0,7,-11.2,213,141,0,259,0.307,35.44,70.78,0.92,0.74,791,0.5,223,2.4
+17454,2023,12,30,15,0,1.9,1.19,0.014,0.63,44,864,281,0,7,-8.6,167,168,0,213,0.307,45.67,74.08,0.91,0.74,791,0.5,223,1.7
+17455,2023,12,30,15,30,0.6,1.19,0.014,0.63,38,794,205,0,7,-8.6,132,104,0,154,0.308,50.13,77.85,0.92,0.74,791,0.5,224,1.4
+17456,2023,12,30,16,0,-0.7,1.2,0.014,0.63,30,680,125,3,7,-8.9,65,262,43,101,0.308,53.66,82.01,0.92,0.74,790,0.5,225,1.1
+17457,2023,12,30,16,30,-1,1.2,0.014,0.63,21,475,50,7,7,-8.9,32,6,100,32,0.308,54.92,86.47,0.92,0.74,791,0.5,224,1
+17458,2023,12,30,17,0,-1.3,1.21,0.014,0.63,4,46,3,2,7,-10.1,1,0,29,1,0.309,51.23,91.46,0.92,0.65,791,0.5,223,1
+17459,2023,12,30,17,30,-1.3,1.21,0.014,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.309,51.17,96.52,0.92,0.65,790,0.5,220,0.9
+17460,2023,12,30,18,0,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.309,49.43,101.78,0.93,0.65,790,0.5,218,0.8
+17461,2023,12,30,18,30,-1.3,1.2,0.015,0.63,0,0,0,0,8,-10.5,0,0,0,0,0.309,49.43,107.19,0.93,0.65,790,0.5,215,0.7
+17462,2023,12,30,19,0,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.31,48.1,112.72,0.93,0.65,790,0.5,212,0.6
+17463,2023,12,30,19,30,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.309,48.1,118.33,0.93,0.65,790,0.5,205,0.5
+17464,2023,12,30,20,0,-1.3,1.21,0.015,0.63,0,0,0,0,0,-11,0,0,0,0,0.309,47.5,124.01,0.93,0.65,790,0.5,199,0.5
+17465,2023,12,30,20,30,-1.2,1.21,0.015,0.63,0,0,0,0,0,-11,0,0,0,0,0.309,47.16,129.7,0.93,0.65,790,0.5,188,0.4
+17466,2023,12,30,21,0,-1.2,1.22,0.015,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.308,47.08,135.38,0.93,0.65,790,0.5,176,0.3
+17467,2023,12,30,21,30,-1.2,1.22,0.015,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.308,47.08,140.98,0.93,0.65,790,0.6,164,0.3
+17468,2023,12,30,22,0,-1.1,1.23,0.016,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.308,46.33,146.42,0.93,0.65,790,0.6,152,0.3
+17469,2023,12,30,22,30,-1.1,1.23,0.016,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.307,46.33,151.58,0.93,0.65,790,0.6,137,0.3
+17470,2023,12,30,23,0,-1.1,1.23,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.307,46.05,156.22,0.93,0.65,790,0.6,122,0.3
+17471,2023,12,30,23,30,-1,1.23,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.307,45.71,159.97,0.94,0.65,790,0.7,106,0.3
+17472,2023,12,31,0,0,-1,1.21,0.019,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.307,45.82,162.21,0.94,0.65,790,0.7,89,0.3
+17473,2023,12,31,0,30,-0.9,1.21,0.019,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.307,45.49,162.35,0.94,0.65,790,0.7,75,0.4
+17474,2023,12,31,1,0,-0.9,1.21,0.021,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.307,45.38,160.35,0.94,0.65,789,0.7,62,0.4
+17475,2023,12,31,1,30,-1,1.21,0.021,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.307,45.77,156.76,0.94,0.65,790,0.7,59,0.5
+17476,2023,12,31,2,0,-1.1,1.21,0.021,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.307,46.3,152.21,0.94,0.65,790,0.7,57,0.5
+17477,2023,12,31,2,30,-1.3,1.21,0.021,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.308,46.99,147.1,0.94,0.65,790,0.7,56,0.6
+17478,2023,12,31,3,0,-1.6,1.23,0.02,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.308,48,141.68,0.94,0.65,790,0.7,55,0.7
+17479,2023,12,31,3,30,-1.9,1.23,0.02,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.308,49,136.1,0.94,0.65,789,0.7,55,0.7
+17480,2023,12,31,4,0,-2.2,1.25,0.019,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.308,50.27,130.43,0.94,0.65,789,0.7,55,0.8
+17481,2023,12,31,4,30,-2.5,1.25,0.019,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.309,51.39,124.73,0.93,0.65,789,0.7,54,0.8
+17482,2023,12,31,5,0,-2.8,1.26,0.018,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.309,52.86,119.05,0.93,0.65,789,0.7,53,0.9
+17483,2023,12,31,5,30,-3.1,1.26,0.018,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.31,54.05,113.42,0.93,0.65,789,0.7,52,0.9
+17484,2023,12,31,6,0,-3.4,1.28,0.017,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.31,55.27,107.88,0.93,0.65,789,0.7,50,0.9
+17485,2023,12,31,6,30,-3.6,1.28,0.017,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.311,56.11,102.45,0.92,0.65,789,0.6,47,0.9
+17486,2023,12,31,7,0,-3.8,1.3,0.015,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.311,56.62,97.17,0.92,0.65,789,0.6,43,0.9
+17487,2023,12,31,7,30,-3.4,1.3,0.015,0.63,0,0,0,2,7,-11.1,0,0,29,0,0.311,55.02,92.08,0.92,0.65,790,0.6,38,0.8
+17488,2023,12,31,8,0,-3,1.31,0.015,0.63,20,391,40,7,7,-9.9,19,0,100,19,0.311,58.98,87.02,0.92,0.65,790,0.6,32,0.7
+17489,2023,12,31,8,30,-1.9,1.31,0.015,0.63,30,649,114,4,7,-9.9,59,158,57,80,0.312,54.37,82.54,0.92,0.65,790,0.6,24,0.9
+17490,2023,12,31,9,0,-0.7,1.31,0.015,0.63,37,771,193,0,0,-9.3,69,541,0,178,0.313,52.31,78.33,0.92,0.65,790,0.6,15,1.1
+17491,2023,12,31,9,30,0.3,1.31,0.015,0.63,43,844,269,0,7,-9.3,101,499,0,234,0.314,48.65,74.5,0.92,0.65,790,0.6,187,1
+17492,2023,12,31,10,0,1.4,1.3,0.016,0.63,49,892,337,2,7,-9.6,175,141,36,221,0.314,43.69,71.13,0.92,0.65,791,0.6,359,0.9
+17493,2023,12,31,10,30,2.5,1.3,0.016,0.63,52,924,394,0,7,-9.6,166,478,0,343,0.315,40.39,68.3,0.92,0.65,791,0.6,318,0.9
+17494,2023,12,31,11,0,3.5,1.23,0.018,0.63,56,944,439,0,7,-9,201,294,0,320,0.316,39.66,66.07,0.93,0.65,791,0.6,277,0.9
+17495,2023,12,31,11,30,3.9,1.23,0.018,0.63,57,958,469,0,7,-9,185,443,7,376,0.316,38.51,64.53,0.93,0.65,790,0.6,266,1.2
+17496,2023,12,31,12,0,4.3,1.24,0.018,0.63,59,965,486,0,7,-8.3,251,130,0,309,0.317,39.59,63.71,0.93,0.65,790,0.6,254,1.5
+17497,2023,12,31,12,30,4.4,1.24,0.018,0.63,58,965,486,0,7,-8.3,231,96,0,274,0.318,39.32,63.66,0.93,0.65,790,0.6,250,1.7
+17498,2023,12,31,13,0,4.5,1.26,0.018,0.63,58,959,473,0,7,-8,224,379,0,388,0.319,39.97,64.36,0.93,0.65,790,0.6,245,1.8
+17499,2023,12,31,13,30,4.3,1.26,0.018,0.63,58,942,444,0,7,-8,171,545,11,394,0.32,40.53,65.8,0.93,0.65,790,0.6,241,1.8
+17500,2023,12,31,14,0,4.2,0.97,0.023,0.63,57,915,401,0,0,-7.5,88,808,4,392,0.321,42.28,67.92,0.93,0.65,790,0.6,236,1.7
+17501,2023,12,31,14,30,3.3,0.97,0.023,0.63,53,884,346,0,0,-7.5,58,865,0,344,0.322,45.1,70.67,0.93,0.65,791,0.6,232,1.3
+17502,2023,12,31,15,0,2.5,0.99,0.021,0.63,47,838,279,0,0,-5,47,838,0,279,0.323,57.7,73.96,0.93,0.65,791,0.6,229,0.8
+17503,2023,12,31,15,30,1.6,0.99,0.021,0.63,41,767,204,0,0,-5,41,767,0,204,0.323,61.52,77.73,0.93,0.65,791,0.6,225,0.8
+17504,2023,12,31,16,0,0.6,1.02,0.02,0.63,33,651,125,0,0,-7.4,33,651,0,125,0.324,55.12,81.89,0.93,0.65,791,0.6,221,0.8
+17505,2023,12,31,16,30,0.6,1.02,0.02,0.63,22,443,50,4,0,-7.4,29,258,50,45,0.324,55.12,86.35,0.93,0.65,791,0.6,221,0.8
+17506,2023,12,31,17,0,-0.9,1.19,0.027,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.27,100,91.3,0.96,0.65,781,1.1,193,1.6
+17507,2023,12,31,17,30,-1.1,1.19,0.027,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.271,100,96.36,0.96,0.65,781,1.1,187,1.6
+17508,2023,12,31,18,0,-1.2,1.19,0.027,0.63,0,0,0,0,7,-1.2,0,0,0,0,0.272,100,101.61,0.96,0.65,781,1.1,180,1.6
+17509,2023,12,31,18,30,-1.4,1.19,0.027,0.63,0,0,0,0,7,-1.4,0,0,0,0,0.272,100,107.02,0.96,0.65,780,1.1,175,1.6
+17510,2023,12,31,19,0,-1.6,1.19,0.025,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.273,100,112.55,0.95,0.65,780,1.1,169,1.7
+17511,2023,12,31,19,30,-1.7,1.19,0.025,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.273,100,118.17,0.95,0.65,780,1.1,171,1.8
+17512,2023,12,31,20,0,-1.8,1.18,0.028,0.63,0,0,0,0,4,-1.8,0,0,0,0,0.274,100,123.84,0.96,0.65,780,1.1,172,1.9
+17513,2023,12,31,20,30,-1.8,1.18,0.028,0.63,0,0,0,0,8,-1.8,0,0,0,0,0.274,100,129.54,0.96,0.65,780,1.1,175,2
+17514,2023,12,31,21,0,-1.8,1.19,0.026,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.274,100,135.21,0.96,0.65,780,1.1,177,2.2
+17515,2023,12,31,21,30,-1.8,1.19,0.026,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.274,100,140.81,0.96,0.65,780,1.1,181,2.3
+17516,2023,12,31,22,0,-1.9,1.2,0.022,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.274,100,146.25,0.95,0.65,780,1.1,185,2.4
+17517,2023,12,31,22,30,-1.7,1.2,0.022,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.275,100,151.41,0.96,0.65,780,1.1,188,2.6
+17518,2023,12,31,23,0,-1.5,1.2,0.025,0.63,0,0,0,0,7,-1.5,0,0,0,0,0.276,100,156.06,0.96,0.65,780,1.1,192,2.8
+17519,2023,12,31,23,30,-1.4,1.2,0.025,0.63,0,0,0,0,7,-1.4,0,0,0,0,0.277,100,159.82,0.96,0.65,780,1.1,194,2.9
diff --git a/pvlib/data/test_goes4_2023_5min.csv b/pvlib/data/test_goes4_2023_5min.csv
new file mode 100644
index 0000000000..59e54e4730
--- /dev/null
+++ b/pvlib/data/test_goes4_2023_5min.csv
@@ -0,0 +1,289 @@
+,Year,Month,Day,Hour,Minute,Temperature,Alpha,AOD,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed
+2023-01-01 00:00:00-07:00,2023,1,1,0,0,-1.9,1.2,0.024,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.278,100,162.11,0.96,0.65,769,1,196,3
+2023-01-01 00:05:00-07:00,2023,1,1,0,5,-1.9,1.2,0.024,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.278,100,162.3,0.96,0.65,769,1,196,3
+2023-01-01 00:10:00-07:00,2023,1,1,0,10,-1.9,1.2,0.024,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.278,100,162.42,0.96,0.65,769,1,196,3
+2023-01-01 00:15:00-07:00,2023,1,1,0,15,-1.9,1.2,0.024,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.278,100,162.49,0.96,0.65,769,1,196,3
+2023-01-01 00:20:00-07:00,2023,1,1,0,20,-1.8,1.2,0.024,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.278,100,162.49,0.96,0.65,769,1,196,3
+2023-01-01 00:25:00-07:00,2023,1,1,0,25,-1.8,1.2,0.024,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.278,100,162.43,0.96,0.65,769,1,196,3.1
+2023-01-01 00:30:00-07:00,2023,1,1,0,30,-1.8,1.2,0.024,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.279,100,162.3,0.96,0.65,769,1,195,3.1
+2023-01-01 00:35:00-07:00,2023,1,1,0,35,-1.8,1.18,0.025,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.279,100,162.11,0.96,0.65,769,1.1,195,3.1
+2023-01-01 00:40:00-07:00,2023,1,1,0,40,-1.8,1.18,0.025,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.279,100,161.87,0.96,0.65,769,1.1,195,3.1
+2023-01-01 00:45:00-07:00,2023,1,1,0,45,-1.8,1.18,0.025,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.279,100,161.56,0.96,0.65,769,1.1,195,3.1
+2023-01-01 00:50:00-07:00,2023,1,1,0,50,-1.8,1.18,0.025,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.279,100,161.21,0.96,0.65,769,1.1,195,3.1
+2023-01-01 00:55:00-07:00,2023,1,1,0,55,-1.8,1.18,0.025,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.28,100,160.8,0.96,0.65,769,1.1,195,3.1
+2023-01-01 01:00:00-07:00,2023,1,1,1,0,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,160.34,0.96,0.65,769,1.1,195,3.1
+2023-01-01 01:05:00-07:00,2023,1,1,1,5,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,159.84,0.96,0.65,769,1.1,194,3.1
+2023-01-01 01:10:00-07:00,2023,1,1,1,10,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,159.3,0.96,0.65,769,1.1,194,3.1
+2023-01-01 01:15:00-07:00,2023,1,1,1,15,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,158.72,0.96,0.65,769,1.1,193,3.1
+2023-01-01 01:20:00-07:00,2023,1,1,1,20,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,158.11,0.96,0.65,769,1.1,193,3.1
+2023-01-01 01:25:00-07:00,2023,1,1,1,25,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.28,100,157.46,0.96,0.65,769,1.1,192,3.1
+2023-01-01 01:30:00-07:00,2023,1,1,1,30,-1.7,1.18,0.025,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.281,100,156.78,0.96,0.65,769,1.1,192,3.2
+2023-01-01 01:35:00-07:00,2023,1,1,1,35,-1.7,1.18,0.026,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.281,100,156.08,0.96,0.65,769,1.1,191,3.2
+2023-01-01 01:40:00-07:00,2023,1,1,1,40,-1.7,1.18,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.281,100,155.35,0.96,0.65,769,1.1,191,3.2
+2023-01-01 01:45:00-07:00,2023,1,1,1,45,-1.7,1.18,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.281,100,154.6,0.96,0.65,769,1.1,191,3.2
+2023-01-01 01:50:00-07:00,2023,1,1,1,50,-1.7,1.18,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.281,100,153.84,0.96,0.65,769,1.1,190,3.2
+2023-01-01 01:55:00-07:00,2023,1,1,1,55,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.281,100,153.05,0.96,0.65,769,1.1,190,3.2
+2023-01-01 02:00:00-07:00,2023,1,1,2,0,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.281,100,152.24,0.96,0.65,769,1.1,189,3.2
+2023-01-01 02:05:00-07:00,2023,1,1,2,5,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.281,100,151.43,0.96,0.65,769,1.1,189,3.2
+2023-01-01 02:10:00-07:00,2023,1,1,2,10,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.281,100,150.59,0.96,0.65,769,1.1,189,3.2
+2023-01-01 02:15:00-07:00,2023,1,1,2,15,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,149.75,0.96,0.65,769,1.1,188,3.2
+2023-01-01 02:20:00-07:00,2023,1,1,2,20,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,148.89,0.96,0.65,769,1.1,188,3.3
+2023-01-01 02:25:00-07:00,2023,1,1,2,25,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,148.02,0.96,0.65,769,1.1,188,3.3
+2023-01-01 02:30:00-07:00,2023,1,1,2,30,-1.6,1.18,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,147.15,0.96,0.65,769,1.1,187,3.3
+2023-01-01 02:35:00-07:00,2023,1,1,2,35,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,146.26,0.95,0.65,769,1.1,187,3.3
+2023-01-01 02:40:00-07:00,2023,1,1,2,40,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,145.37,0.95,0.65,769,1.1,187,3.3
+2023-01-01 02:45:00-07:00,2023,1,1,2,45,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,144.47,0.95,0.65,769,1.1,186,3.3
+2023-01-01 02:50:00-07:00,2023,1,1,2,50,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,143.57,0.95,0.65,769,1.1,186,3.3
+2023-01-01 02:55:00-07:00,2023,1,1,2,55,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.282,100,142.66,0.95,0.65,769,1.1,186,3.3
+2023-01-01 03:00:00-07:00,2023,1,1,3,0,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.283,100,141.74,0.95,0.65,769,1,186,3.3
+2023-01-01 03:05:00-07:00,2023,1,1,3,5,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.283,100,140.82,0.95,0.65,769,1,185,3.4
+2023-01-01 03:10:00-07:00,2023,1,1,3,10,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.283,100,139.89,0.95,0.65,769,1,185,3.4
+2023-01-01 03:15:00-07:00,2023,1,1,3,15,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.283,100,138.96,0.95,0.65,769,1,185,3.4
+2023-01-01 03:20:00-07:00,2023,1,1,3,20,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.283,100,138.03,0.95,0.65,769,1,185,3.4
+2023-01-01 03:25:00-07:00,2023,1,1,3,25,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.284,100,137.09,0.95,0.65,769,1,185,3.4
+2023-01-01 03:30:00-07:00,2023,1,1,3,30,-1.6,1.2,0.024,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.284,100,136.16,0.95,0.65,769,1,184,3.4
+2023-01-01 03:35:00-07:00,2023,1,1,3,35,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.284,100,135.22,0.95,0.65,769,1,184,3.4
+2023-01-01 03:40:00-07:00,2023,1,1,3,40,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.284,100,134.27,0.95,0.65,769,1,184,3.4
+2023-01-01 03:45:00-07:00,2023,1,1,3,45,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.285,100,133.33,0.95,0.65,769,1,184,3.5
+2023-01-01 03:50:00-07:00,2023,1,1,3,50,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.285,100,132.38,0.95,0.65,769,1,184,3.5
+2023-01-01 03:55:00-07:00,2023,1,1,3,55,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.285,100,131.43,0.95,0.65,769,1,184,3.5
+2023-01-01 04:00:00-07:00,2023,1,1,4,0,-1.7,1.2,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.285,100,130.49,0.95,0.65,769,1,183,3.5
+2023-01-01 04:05:00-07:00,2023,1,1,4,5,-1.7,1.2,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.286,100,129.54,0.95,0.65,769,1,183,3.5
+2023-01-01 04:10:00-07:00,2023,1,1,4,10,-1.7,1.2,0.026,0.63,0,0,0,0,7,-1.7,0,0,0,0,0.286,100,128.59,0.95,0.65,769,1,183,3.5
+2023-01-01 04:15:00-07:00,2023,1,1,4,15,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.286,100,127.64,0.95,0.65,769,1,183,3.5
+2023-01-01 04:20:00-07:00,2023,1,1,4,20,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.287,100,126.69,0.95,0.65,769,1,183,3.6
+2023-01-01 04:25:00-07:00,2023,1,1,4,25,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.287,100,125.74,0.95,0.65,769,1,183,3.6
+2023-01-01 04:30:00-07:00,2023,1,1,4,30,-1.6,1.2,0.026,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.287,100,124.79,0.95,0.65,769,1,183,3.6
+2023-01-01 04:35:00-07:00,2023,1,1,4,35,-1.6,1.21,0.03,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.287,100,123.84,0.95,0.65,769,1,183,3.6
+2023-01-01 04:40:00-07:00,2023,1,1,4,40,-1.6,1.21,0.03,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.288,100,122.89,0.95,0.65,769,1,183,3.6
+2023-01-01 04:45:00-07:00,2023,1,1,4,45,-1.6,1.21,0.03,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.288,100,121.94,0.95,0.65,769,1,183,3.6
+2023-01-01 04:50:00-07:00,2023,1,1,4,50,-1.6,1.21,0.03,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.288,100,120.99,0.95,0.65,769,1,183,3.7
+2023-01-01 04:55:00-07:00,2023,1,1,4,55,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.289,100,120.05,0.95,0.65,769,1,183,3.7
+2023-01-01 05:00:00-07:00,2023,1,1,5,0,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.289,100,119.1,0.95,0.65,769,1,183,3.7
+2023-01-01 05:05:00-07:00,2023,1,1,5,5,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.289,100,118.16,0.95,0.65,769,1,183,3.7
+2023-01-01 05:10:00-07:00,2023,1,1,5,10,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.29,100,117.22,0.95,0.65,769,1,183,3.7
+2023-01-01 05:15:00-07:00,2023,1,1,5,15,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.29,100,116.28,0.95,0.65,769,1,183,3.7
+2023-01-01 05:20:00-07:00,2023,1,1,5,20,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.29,100,115.34,0.95,0.65,769,1,183,3.7
+2023-01-01 05:25:00-07:00,2023,1,1,5,25,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.29,100,114.4,0.95,0.65,769,1,183,3.7
+2023-01-01 05:30:00-07:00,2023,1,1,5,30,-1.6,1.21,0.03,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.29,100,113.47,0.95,0.65,769,1,183,3.7
+2023-01-01 05:35:00-07:00,2023,1,1,5,35,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.291,100,112.54,0.95,0.65,769,1,184,3.7
+2023-01-01 05:40:00-07:00,2023,1,1,5,40,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.291,100,111.61,0.95,0.65,769,1,184,3.7
+2023-01-01 05:45:00-07:00,2023,1,1,5,45,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.291,100,110.68,0.95,0.65,769,1,184,3.7
+2023-01-01 05:50:00-07:00,2023,1,1,5,50,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.291,100,109.76,0.95,0.65,769,1,184,3.7
+2023-01-01 05:55:00-07:00,2023,1,1,5,55,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.292,100,108.84,0.95,0.65,769,1,184,3.7
+2023-01-01 06:00:00-07:00,2023,1,1,6,0,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.292,100,107.92,0.95,0.65,769,1,184,3.8
+2023-01-01 06:05:00-07:00,2023,1,1,6,5,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.292,100,107.01,0.95,0.65,769,1,184,3.8
+2023-01-01 06:10:00-07:00,2023,1,1,6,10,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.292,100,106.09,0.95,0.65,769,1,184,3.7
+2023-01-01 06:15:00-07:00,2023,1,1,6,15,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.292,100,105.19,0.95,0.65,769,1,184,3.7
+2023-01-01 06:20:00-07:00,2023,1,1,6,20,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,104.28,0.95,0.65,769,1,184,3.7
+2023-01-01 06:25:00-07:00,2023,1,1,6,25,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,103.38,0.95,0.65,769,1,184,3.7
+2023-01-01 06:30:00-07:00,2023,1,1,6,30,-1.6,1.22,0.029,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,102.48,0.95,0.65,769,1,183,3.7
+2023-01-01 06:35:00-07:00,2023,1,1,6,35,-1.6,1.22,0.027,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,101.59,0.95,0.65,769,1,183,3.7
+2023-01-01 06:40:00-07:00,2023,1,1,6,40,-1.6,1.22,0.027,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,100.7,0.95,0.65,769,1,183,3.7
+2023-01-01 06:45:00-07:00,2023,1,1,6,45,-1.6,1.22,0.027,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.293,100,99.82,0.95,0.65,769,1,183,3.7
+2023-01-01 06:50:00-07:00,2023,1,1,6,50,-1.6,1.22,0.027,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.294,100,98.94,0.95,0.65,769,1,183,3.7
+2023-01-01 06:55:00-07:00,2023,1,1,6,55,-1.6,1.22,0.027,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.294,100,98.07,0.95,0.65,769,1,183,3.7
+2023-01-01 07:00:00-07:00,2023,1,1,7,0,-1.6,1.22,0.027,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.294,100,97.2,0.95,0.65,769,1,183,3.7
+2023-01-01 07:05:00-07:00,2023,1,1,7,5,-1.6,1.22,0.027,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.294,100,96.33,0.95,0.65,769,1,183,3.7
+2023-01-01 07:10:00-07:00,2023,1,1,7,10,-1.5,1.22,0.027,0.63,0,0,0,0,9,-1.5,0,0,0,0,0.294,100,95.48,0.95,0.65,769,1,183,3.8
+2023-01-01 07:15:00-07:00,2023,1,1,7,15,-1.5,1.22,0.027,0.63,0,0,0,0,9,-1.5,0,0,0,0,0.294,100,94.62,0.95,0.65,769,1,184,3.8
+2023-01-01 07:20:00-07:00,2023,1,1,7,20,-1.5,1.22,0.027,0.63,0,0,0,0,9,-1.5,0,0,0,0,0.294,100,93.78,0.95,0.65,770,1,184,3.8
+2023-01-01 07:25:00-07:00,2023,1,1,7,25,-1.4,1.22,0.027,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.294,100,92.93,0.95,0.65,770,1,184,3.8
+2023-01-01 07:30:00-07:00,2023,1,1,7,30,-1.4,1.22,0.027,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.294,100,92.1,0.95,0.65,770,1,184,3.8
+2023-01-01 07:35:00-07:00,2023,1,1,7,35,-1.4,1.23,0.026,0.63,0,0,0,0,9,-1.4,0,0,0,0,0.294,100,91.27,0.95,0.65,770,1,184,3.9
+2023-01-01 07:40:00-07:00,2023,1,1,7,40,-1.3,1.23,0.026,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.295,100,90.01,0.95,0.65,770,1,184,3.9
+2023-01-01 07:45:00-07:00,2023,1,1,7,45,-1.3,1.23,0.026,0.63,0,0,0,7,6,-1.3,0,0,7,0,0.295,100,89.29,0.95,0.65,770,1,184,3.9
+2023-01-01 07:50:00-07:00,2023,1,1,7,50,-1.2,1.23,0.026,0.63,13,261,19,7,6,-1.2,6,0,7,6,0.295,100,88.55,0.95,0.65,770,1,184,3.9
+2023-01-01 07:55:00-07:00,2023,1,1,7,55,-1.2,1.23,0.026,0.63,15,320,28,7,6,-1.2,10,0,7,10,0.295,100,87.8,0.95,0.65,770,1,184,3.9
+2023-01-01 08:00:00-07:00,2023,1,1,8,0,-1.2,1.23,0.026,0.63,18,373,37,7,6,-1.2,13,0,7,13,0.295,100,87.04,0.95,0.65,770,1,184,4
+2023-01-01 08:05:00-07:00,2023,1,1,8,5,-1.1,1.23,0.026,0.63,21,421,48,7,6,-1.1,17,0,7,17,0.295,100,86.28,0.95,0.65,770,1,185,4
+2023-01-01 08:10:00-07:00,2023,1,1,8,10,-1,1.23,0.026,0.63,23,464,59,7,6,-1,19,0,7,19,0.295,100,85.52,0.95,0.65,770,1,185,4
+2023-01-01 08:15:00-07:00,2023,1,1,8,15,-1,1.23,0.026,0.63,26,503,71,7,6,-1,25,0,7,25,0.295,100,84.77,0.95,0.65,770,1,185,4.1
+2023-01-01 08:20:00-07:00,2023,1,1,8,20,-0.9,1.23,0.026,0.63,28,538,84,7,6,-0.9,29,0,7,29,0.295,100,84.02,0.95,0.65,770,1,185,4.1
+2023-01-01 08:25:00-07:00,2023,1,1,8,25,-0.8,1.23,0.026,0.63,30,569,96,7,6,-0.8,30,0,7,30,0.295,100,83.28,0.95,0.65,770,1,186,4.2
+2023-01-01 08:30:00-07:00,2023,1,1,8,30,-0.7,1.23,0.026,0.63,32,598,109,7,6,-0.7,31,0,7,31,0.295,99.87,82.54,0.95,0.65,770,1,186,4.2
+2023-01-01 08:35:00-07:00,2023,1,1,8,35,-0.7,1.24,0.024,0.63,33,630,123,0,6,-0.7,28,0,0,28,0.295,100,81.82,0.95,0.65,770,1,186,4.2
+2023-01-01 08:40:00-07:00,2023,1,1,8,40,-0.6,1.24,0.024,0.63,35,653,136,0,6,-0.6,44,1,0,44,0.295,100,81.1,0.95,0.65,770,1,186,4.3
+2023-01-01 08:45:00-07:00,2023,1,1,8,45,-0.5,1.24,0.024,0.63,36,675,149,0,6,-0.5,18,0,0,18,0.295,100,80.39,0.95,0.65,770,1,187,4.3
+2023-01-01 08:50:00-07:00,2023,1,1,8,50,-0.5,1.24,0.024,0.63,38,695,162,0,6,-0.5,23,0,0,23,0.295,100,79.69,0.95,0.65,770,1,187,4.4
+2023-01-01 08:55:00-07:00,2023,1,1,8,55,-0.4,1.24,0.024,0.63,39,713,175,0,6,-0.4,32,0,0,32,0.295,100,79,0.95,0.65,770,1,187,4.4
+2023-01-01 09:00:00-07:00,2023,1,1,9,0,-0.3,1.24,0.024,0.63,41,730,188,0,6,-0.4,12,0,0,12,0.295,99.58,78.32,0.95,0.65,770,1,187,4.4
+2023-01-01 09:05:00-07:00,2023,1,1,9,5,-0.2,1.24,0.024,0.63,42,745,201,0,6,-0.4,32,0,0,32,0.295,98.86,77.65,0.95,0.65,770,1,187,4.4
+2023-01-01 09:10:00-07:00,2023,1,1,9,10,-0.2,1.24,0.024,0.63,43,760,214,0,6,-0.4,13,0,0,13,0.294,98.86,76.99,0.95,0.65,770,1,188,4.4
+2023-01-01 09:15:00-07:00,2023,1,1,9,15,-0.1,1.24,0.024,0.63,44,773,227,0,6,-0.4,37,0,0,37,0.294,98.15,76.34,0.95,0.65,770,1,188,4.5
+2023-01-01 09:20:00-07:00,2023,1,1,9,20,0,1.24,0.024,0.63,46,786,239,0,6,-0.4,40,0,0,40,0.294,97.44,75.71,0.95,0.65,770,1,188,4.5
+2023-01-01 09:25:00-07:00,2023,1,1,9,25,0,1.24,0.024,0.63,47,797,252,0,6,-0.4,44,0,0,44,0.294,97.44,75.08,0.95,0.65,770,1,188,4.5
+2023-01-01 09:30:00-07:00,2023,1,1,9,30,0.1,1.24,0.024,0.63,48,808,264,0,6,-0.4,41,0,0,41,0.294,96.74,74.47,0.95,0.65,770,1,188,4.5
+2023-01-01 09:35:00-07:00,2023,1,1,9,35,0.1,1.25,0.022,0.63,48,822,276,0,6,0,44,0,0,44,0.294,99.05,73.87,0.95,0.65,770,1,189,4.5
+2023-01-01 09:40:00-07:00,2023,1,1,9,40,0.2,1.25,0.022,0.63,49,832,288,0,6,0,48,0,0,48,0.294,98.34,73.29,0.95,0.65,770,1,189,4.5
+2023-01-01 09:45:00-07:00,2023,1,1,9,45,0.3,1.25,0.022,0.63,50,840,299,0,6,0,57,0,0,57,0.294,97.63,72.72,0.95,0.65,770,1,189,4.5
+2023-01-01 09:50:00-07:00,2023,1,1,9,50,0.3,1.25,0.022,0.63,50,849,310,0,6,0,55,0,0,55,0.293,97.63,72.16,0.95,0.65,770,1,189,4.5
+2023-01-01 09:55:00-07:00,2023,1,1,9,55,0.4,1.25,0.022,0.63,51,856,321,0,6,0,118,5,0,120,0.293,96.93,71.62,0.94,0.65,770,1,189,4.5
+2023-01-01 10:00:00-07:00,2023,1,1,10,0,0.5,1.25,0.022,0.63,52,863,332,0,6,0,82,1,0,82,0.293,96.23,71.09,0.94,0.65,770,1,189,4.5
+2023-01-01 10:05:00-07:00,2023,1,1,10,5,0.5,1.25,0.022,0.63,53,870,342,0,6,0,67,1,0,67,0.293,96.23,70.57,0.94,0.65,770,1,189,4.5
+2023-01-01 10:10:00-07:00,2023,1,1,10,10,0.6,1.25,0.022,0.63,53,876,352,0,7,0,109,2,0,110,0.293,95.54,70.07,0.94,0.65,770,1,189,4.6
+2023-01-01 10:15:00-07:00,2023,1,1,10,15,0.7,1.25,0.022,0.63,54,882,362,0,7,0,119,3,0,120,0.293,94.85,69.59,0.94,0.65,770,1,189,4.6
+2023-01-01 10:20:00-07:00,2023,1,1,10,20,0.7,1.25,0.022,0.63,55,888,371,0,7,0,132,5,0,134,0.293,94.85,69.12,0.94,0.65,770,1,189,4.6
+2023-01-01 10:25:00-07:00,2023,1,1,10,25,0.8,1.25,0.022,0.63,55,893,380,0,7,0,173,20,0,180,0.292,94.17,68.67,0.94,0.65,770,1,189,4.6
+2023-01-01 10:30:00-07:00,2023,1,1,10,30,0.9,1.25,0.022,0.63,56,898,389,0,7,0,150,12,0,154,0.292,93.5,68.24,0.94,0.65,770,1,190,4.6
+2023-01-01 10:35:00-07:00,2023,1,1,10,35,0.9,1.26,0.02,0.63,55,906,397,0,7,0.2,188,36,0,202,0.292,95.4,67.82,0.94,0.65,770,1,190,4.6
+2023-01-01 10:40:00-07:00,2023,1,1,10,40,1,1.26,0.02,0.63,56,910,405,0,7,0.2,170,20,0,178,0.292,94.71,67.42,0.94,0.65,770,1,190,4.6
+2023-01-01 10:45:00-07:00,2023,1,1,10,45,1,1.26,0.02,0.63,56,914,413,0,7,0.2,166,10,0,170,0.292,94.59,67.04,0.94,0.65,769,1,190,4.6
+2023-01-01 10:50:00-07:00,2023,1,1,10,50,1.1,1.26,0.02,0.63,57,918,420,0,7,0.2,148,5,0,150,0.292,93.91,66.67,0.94,0.65,769,1,190,4.6
+2023-01-01 10:55:00-07:00,2023,1,1,10,55,1.2,1.26,0.02,0.63,57,921,427,0,7,0.2,187,15,0,193,0.292,93.24,66.33,0.94,0.65,769,1,190,4.6
+2023-01-01 11:00:00-07:00,2023,1,1,11,0,1.2,1.26,0.02,0.63,57,924,433,0,7,0.2,209,42,0,226,0.291,93.24,66,0.94,0.65,769,1,190,4.6
+2023-01-01 11:05:00-07:00,2023,1,1,11,5,1.3,1.26,0.02,0.63,58,927,439,0,7,0.2,99,1,0,99,0.291,92.58,65.69,0.94,0.65,769,1,190,4.6
+2023-01-01 11:10:00-07:00,2023,1,1,11,10,1.3,1.26,0.02,0.63,58,930,445,0,7,0.2,188,22,0,197,0.291,92.58,65.4,0.94,0.65,769,1,190,4.6
+2023-01-01 11:15:00-07:00,2023,1,1,11,15,1.4,1.26,0.02,0.63,58,932,450,0,7,0.2,228,27,0,239,0.291,91.92,65.13,0.94,0.65,769,1,190,4.6
+2023-01-01 11:20:00-07:00,2023,1,1,11,20,1.4,1.26,0.02,0.63,59,934,455,0,6,0.2,138,2,0,139,0.291,91.92,64.88,0.94,0.65,769,1,190,4.6
+2023-01-01 11:25:00-07:00,2023,1,1,11,25,1.5,1.26,0.02,0.63,59,936,460,0,6,0.2,128,2,0,128,0.29,91.26,64.65,0.94,0.65,769,1,190,4.6
+2023-01-01 11:30:00-07:00,2023,1,1,11,30,1.5,1.26,0.02,0.63,59,938,464,0,7,0.2,236,32,0,249,0.29,91.26,64.44,0.94,0.65,769,1,190,4.6
+2023-01-01 11:35:00-07:00,2023,1,1,11,35,1.6,1.27,0.02,0.63,59,940,468,0,6,0.5,113,1,0,113,0.29,92.07,64.25,0.94,0.65,769,1,190,4.6
+2023-01-01 11:40:00-07:00,2023,1,1,11,40,1.6,1.27,0.02,0.63,60,941,471,0,7,0.5,191,18,0,198,0.29,92.07,64.08,0.94,0.65,769,1,190,4.5
+2023-01-01 11:45:00-07:00,2023,1,1,11,45,1.7,1.27,0.02,0.63,60,942,474,0,7,0.5,205,23,0,215,0.29,91.41,63.93,0.95,0.65,769,1,190,4.5
+2023-01-01 11:50:00-07:00,2023,1,1,11,50,1.7,1.27,0.02,0.63,60,944,477,0,7,0.5,187,10,0,192,0.289,91.41,63.8,0.95,0.65,769,1,190,4.5
+2023-01-01 11:55:00-07:00,2023,1,1,11,55,1.8,1.27,0.02,0.63,60,945,479,0,7,0.4,157,4,0,159,0.289,90.64,63.69,0.95,0.65,768,1,190,4.5
+2023-01-01 12:00:00-07:00,2023,1,1,12,0,1.8,1.27,0.02,0.63,60,945,480,0,7,0.4,159,4,0,161,0.289,90.64,63.61,0.95,0.65,768,1,190,4.5
+2023-01-01 12:05:00-07:00,2023,1,1,12,5,1.8,1.27,0.02,0.63,60,946,482,0,7,0.4,145,3,0,146,0.289,90.64,63.54,0.95,0.65,768,1,189,4.4
+2023-01-01 12:10:00-07:00,2023,1,1,12,10,1.8,1.27,0.02,0.63,60,946,483,0,7,0.4,131,2,0,132,0.289,90.64,63.5,0.95,0.65,768,1,189,4.4
+2023-01-01 12:15:00-07:00,2023,1,1,12,15,1.9,1.27,0.02,0.63,60,947,483,0,7,0.4,114,1,0,114,0.289,90,63.47,0.95,0.65,768,1,189,4.3
+2023-01-01 12:20:00-07:00,2023,1,1,12,20,1.9,1.27,0.02,0.63,60,947,483,0,7,0.4,208,17,0,216,0.289,90,63.47,0.95,0.65,768,1,188,4.2
+2023-01-01 12:25:00-07:00,2023,1,1,12,25,1.9,1.27,0.02,0.63,60,946,483,0,7,0.4,60,0,0,60,0.289,90,63.49,0.95,0.65,768,1,188,4.2
+2023-01-01 12:30:00-07:00,2023,1,1,12,30,1.9,1.27,0.02,0.63,60,946,482,0,7,0.4,61,0,0,61,0.288,90,63.53,0.95,0.65,768,1,188,4.1
+2023-01-01 12:35:00-07:00,2023,1,1,12,35,1.9,1.26,0.02,0.63,60,945,481,0,7,0.6,56,0,0,56,0.288,91.05,63.6,0.95,0.65,768,1,187,4
+2023-01-01 12:40:00-07:00,2023,1,1,12,40,2,1.26,0.02,0.63,60,945,479,0,7,0.6,83,0,0,83,0.288,90.4,63.68,0.95,0.65,768,1,187,4
+2023-01-01 12:45:00-07:00,2023,1,1,12,45,2,1.26,0.02,0.63,60,944,477,0,7,0.6,192,14,0,198,0.288,90.4,63.78,0.95,0.65,768,1,187,3.9
+2023-01-01 12:50:00-07:00,2023,1,1,12,50,2,1.26,0.02,0.63,60,943,475,0,7,0.6,166,7,0,169,0.288,90.4,63.91,0.95,0.65,768,1,187,3.8
+2023-01-01 12:55:00-07:00,2023,1,1,12,55,2,1.26,0.02,0.63,60,942,472,0,7,0.6,179,13,0,185,0.288,90.28,64.06,0.95,0.65,767,1,186,3.8
+2023-01-01 13:00:00-07:00,2023,1,1,13,0,2,1.26,0.02,0.63,60,940,469,0,7,0.6,142,4,0,144,0.288,90.28,64.22,0.95,0.65,767,1,186,3.7
+2023-01-01 13:05:00-07:00,2023,1,1,13,5,2,1.26,0.02,0.63,59,939,465,0,6,0.6,82,0,0,82,0.288,90.28,64.41,0.95,0.65,767,1,185,3.6
+2023-01-01 13:10:00-07:00,2023,1,1,13,10,2,1.26,0.02,0.63,59,937,461,0,7,0.6,133,3,0,134,0.287,90.28,64.62,0.95,0.65,767,1,183,3.5
+2023-01-01 13:15:00-07:00,2023,1,1,13,15,2,1.26,0.02,0.63,59,935,456,0,7,0.6,192,21,0,201,0.287,90.28,64.85,0.95,0.65,767,1,182,3.5
+2023-01-01 13:20:00-07:00,2023,1,1,13,20,1.9,1.26,0.02,0.63,59,933,452,0,7,0.6,241,49,0,262,0.287,90.93,65.09,0.95,0.65,767,1,181,3.4
+2023-01-01 13:25:00-07:00,2023,1,1,13,25,1.9,1.26,0.02,0.63,58,931,446,0,7,0.6,235,44,0,253,0.287,90.93,65.36,0.95,0.65,767,1,180,3.3
+2023-01-01 13:30:00-07:00,2023,1,1,13,30,1.9,1.26,0.02,0.63,58,928,440,0,7,0.6,247,65,0,273,0.287,90.93,65.65,0.95,0.65,767,1,178,3.2
+2023-01-01 13:35:00-07:00,2023,1,1,13,35,1.9,1.23,0.021,0.63,58,923,435,0,6,0.7,107,1,0,107,0.287,91.95,65.95,0.95,0.65,767,1,177,3.2
+2023-01-01 13:40:00-07:00,2023,1,1,13,40,1.9,1.23,0.021,0.63,58,920,428,0,7,0.7,213,27,0,223,0.287,91.95,66.28,0.95,0.65,767,1,176,3.1
+2023-01-01 13:45:00-07:00,2023,1,1,13,45,1.8,1.23,0.021,0.63,57,917,421,0,7,0.7,172,18,0,179,0.286,92.61,66.62,0.95,0.65,767,1,175,3
+2023-01-01 13:50:00-07:00,2023,1,1,13,50,1.8,1.23,0.021,0.63,57,913,414,0,7,0.7,222,50,0,242,0.286,92.61,66.99,0.95,0.65,767,1,173,2.9
+2023-01-01 13:55:00-07:00,2023,1,1,13,55,1.8,1.23,0.021,0.63,56,909,406,0,6,0.7,135,4,0,136,0.286,92.61,67.37,0.95,0.65,767,1,172,2.8
+2023-01-01 14:00:00-07:00,2023,1,1,14,0,1.8,1.23,0.021,0.63,56,905,399,0,6,0.7,173,15,0,179,0.286,92.61,67.76,0.95,0.65,767,1,171,2.8
+2023-01-01 14:05:00-07:00,2023,1,1,14,5,1.7,1.23,0.021,0.63,55,901,390,0,6,0.7,226,49,0,244,0.286,93.27,68.18,0.95,0.65,767,1,168,2.7
+2023-01-01 14:10:00-07:00,2023,1,1,14,10,1.5,1.23,0.021,0.63,55,896,382,0,6,0.7,189,18,0,195,0.286,94.61,68.61,0.95,0.65,767,1,165,2.6
+2023-01-01 14:15:00-07:00,2023,1,1,14,15,1.4,1.23,0.021,0.63,54,887,371,0,6,0.7,168,14,0,173,0.286,95.29,69.06,0.95,0.65,767,1.1,163,2.5
+2023-01-01 14:20:00-07:00,2023,1,1,14,20,1.3,1.23,0.021,0.63,54,881,362,0,7,0.7,218,114,0,258,0.286,95.98,69.53,0.95,0.65,767,1.1,160,2.4
+2023-01-01 14:25:00-07:00,2023,1,1,14,25,1.2,1.23,0.021,0.63,53,875,352,0,7,0.7,207,192,0,272,0.286,96.67,70.01,0.95,0.65,767,1.1,158,2.3
+2023-01-01 14:30:00-07:00,2023,1,1,14,30,1,1.23,0.021,0.63,52,869,342,0,7,0.7,198,205,0,267,0.286,98.07,70.5,0.95,0.65,767,1.1,155,2.2
+2023-01-01 14:35:00-07:00,2023,1,1,14,35,0.9,1.2,0.023,0.63,53,859,332,0,7,0.6,200,114,0,237,0.286,97.93,71.02,0.96,0.65,767,1.1,152,2.2
+2023-01-01 14:40:00-07:00,2023,1,1,14,40,0.8,1.2,0.023,0.63,52,852,321,0,7,0.6,188,64,0,208,0.286,98.63,71.54,0.96,0.65,767,1.1,150,2.1
+2023-01-01 14:45:00-07:00,2023,1,1,14,45,0.6,1.2,0.023,0.63,51,844,311,0,7,0.6,185,82,0,211,0.286,100,72.08,0.96,0.65,767,1.1,147,2
+2023-01-01 14:50:00-07:00,2023,1,1,14,50,0.5,1.2,0.023,0.63,50,836,300,0,7,0.5,182,126,0,220,0.286,100,72.64,0.96,0.65,767,1.1,145,1.9
+2023-01-01 14:55:00-07:00,2023,1,1,14,55,0.4,1.2,0.023,0.63,49,827,288,0,7,0.4,175,107,0,206,0.286,100,73.21,0.96,0.65,767,1.1,142,1.8
+2023-01-01 15:00:00-07:00,2023,1,1,15,0,0.3,1.2,0.023,0.63,48,818,277,0,7,0.3,170,114,0,202,0.286,100,73.79,0.96,0.65,767,1.1,139,1.7
+2023-01-01 15:05:00-07:00,2023,1,1,15,5,0.2,1.2,0.023,0.63,47,808,265,0,7,0.2,163,88,0,187,0.286,100,74.39,0.96,0.65,767,1.1,138,1.7
+2023-01-01 15:10:00-07:00,2023,1,1,15,10,0.1,1.2,0.023,0.63,46,797,253,0,7,0.1,152,52,0,166,0.286,100,75,0.96,0.65,767,1.1,136,1.8
+2023-01-01 15:15:00-07:00,2023,1,1,15,15,0,1.2,0.023,0.63,45,786,240,0,7,0,136,27,0,142,0.287,100,75.62,0.96,0.65,767,1.1,135,1.8
+2023-01-01 15:20:00-07:00,2023,1,1,15,20,0,1.2,0.023,0.63,44,773,228,0,7,0,120,16,0,124,0.287,100,76.26,0.96,0.65,767,1.1,133,1.8
+2023-01-01 15:25:00-07:00,2023,1,1,15,25,-0.1,1.2,0.023,0.63,43,760,215,0,6,-0.1,74,2,0,74,0.287,100,76.9,0.96,0.65,767,1.1,132,1.8
+2023-01-01 15:30:00-07:00,2023,1,1,15,30,-0.2,1.2,0.023,0.63,42,746,202,0,6,-0.2,52,0,0,52,0.287,100,77.56,0.96,0.65,767,1.1,130,1.8
+2023-01-01 15:35:00-07:00,2023,1,1,15,35,-0.3,1.18,0.023,0.63,40,731,190,0,6,-0.3,46,0,0,46,0.287,100,78.23,0.96,0.65,767,1.1,128,1.8
+2023-01-01 15:40:00-07:00,2023,1,1,15,40,-0.4,1.18,0.023,0.63,39,714,176,0,6,-0.4,41,0,0,41,0.287,100,78.91,0.96,0.65,767,1.1,127,1.8
+2023-01-01 15:45:00-07:00,2023,1,1,15,45,-0.4,1.18,0.023,0.63,38,696,164,0,6,-0.4,38,0,0,38,0.288,100,79.59,0.96,0.65,767,1.1,125,1.9
+2023-01-01 15:50:00-07:00,2023,1,1,15,50,-0.5,1.18,0.023,0.63,36,676,150,0,6,-0.5,34,0,0,34,0.288,100,80.29,0.96,0.65,767,1.1,124,1.9
+2023-01-01 15:55:00-07:00,2023,1,1,15,55,-0.6,1.18,0.023,0.63,35,655,137,0,6,-0.6,30,0,0,30,0.288,100,81,0.96,0.65,767,1.1,122,1.9
+2023-01-01 16:00:00-07:00,2023,1,1,16,0,-0.7,1.18,0.023,0.63,33,632,124,7,6,-0.7,36,0,7,36,0.288,100,81.72,0.96,0.65,767,1.1,121,1.9
+2023-01-01 16:05:00-07:00,2023,1,1,16,5,-0.7,1.18,0.023,0.63,31,606,111,7,6,-0.7,40,1,7,40,0.289,100,82.44,0.96,0.65,767,1.1,121,1.9
+2023-01-01 16:10:00-07:00,2023,1,1,16,10,-0.7,1.18,0.023,0.63,29,578,98,7,6,-0.7,31,0,7,31,0.289,100,83.18,0.96,0.65,767,1.1,121,2
+2023-01-01 16:15:00-07:00,2023,1,1,16,15,-0.7,1.18,0.023,0.63,27,547,85,7,6,-0.7,25,0,7,25,0.289,100,83.92,0.96,0.65,767,1.1,122,2
+2023-01-01 16:20:00-07:00,2023,1,1,16,20,-0.7,1.18,0.023,0.63,25,513,73,7,6,-0.7,26,0,7,26,0.289,100,84.67,0.96,0.65,767,1.1,122,2
+2023-01-01 16:25:00-07:00,2023,1,1,16,25,-0.8,1.18,0.023,0.63,23,475,61,7,6,-0.8,22,0,7,22,0.29,100,85.42,0.96,0.65,767,1.1,123,2.1
+2023-01-01 16:30:00-07:00,2023,1,1,16,30,-0.8,1.18,0.023,0.63,21,433,50,7,6,-0.8,18,0,7,18,0.29,100,86.18,0.96,0.65,767,1.1,123,2.1
+2023-01-01 16:35:00-07:00,2023,1,1,16,35,-0.8,1.19,0.024,0.63,18,383,39,7,6,-0.8,16,0,7,16,0.29,100,86.94,0.96,0.65,767,1.1,123,2.1
+2023-01-01 16:40:00-07:00,2023,1,1,16,40,-0.8,1.19,0.024,0.63,16,330,29,7,6,-0.8,12,0,7,12,0.29,100,87.7,0.96,0.65,767,1.1,124,2.1
+2023-01-01 16:45:00-07:00,2023,1,1,16,45,-0.8,1.19,0.024,0.63,13,273,20,7,6,-0.8,9,0,7,9,0.291,100,88.45,0.96,0.65,767,1.1,124,2.2
+2023-01-01 16:50:00-07:00,2023,1,1,16,50,-0.8,1.19,0.024,0.63,0,0,0,7,6,-0.8,0,0,7,0,0.291,100,89.19,0.96,0.65,767,1.1,125,2.2
+2023-01-01 16:55:00-07:00,2023,1,1,16,55,-0.9,1.19,0.024,0.63,0,0,0,7,6,-0.9,0,0,7,0,0.291,100,89.91,0.96,0.65,767,1.1,125,2.2
+2023-01-01 17:00:00-07:00,2023,1,1,17,0,-0.9,1.19,0.024,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,91.16,0.96,0.69,767,1.1,125,2.2
+2023-01-01 17:05:00-07:00,2023,1,1,17,5,-0.9,1.19,0.024,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,91.99,0.96,0.69,767,1.1,126,2.2
+2023-01-01 17:10:00-07:00,2023,1,1,17,10,-0.9,1.19,0.024,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,92.82,0.96,0.69,767,1.1,126,2.2
+2023-01-01 17:15:00-07:00,2023,1,1,17,15,-0.9,1.19,0.024,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,93.66,0.96,0.69,767,1.1,126,2.1
+2023-01-01 17:20:00-07:00,2023,1,1,17,20,-0.9,1.19,0.024,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,94.51,0.96,0.69,767,1.1,127,2.1
+2023-01-01 17:25:00-07:00,2023,1,1,17,25,-1,1.19,0.024,0.63,0,0,0,0,6,-1,0,0,0,0,0.292,100,95.36,0.96,0.69,767,1.1,127,2
+2023-01-01 17:30:00-07:00,2023,1,1,17,30,-1,1.19,0.024,0.63,0,0,0,0,6,-1,0,0,0,0,0.293,100,96.22,0.96,0.69,767,1.1,127,2
+2023-01-01 17:35:00-07:00,2023,1,1,17,35,-1,1.2,0.022,0.63,0,0,0,0,6,-1,0,0,0,0,0.293,100,97.08,0.96,0.69,767,1.1,128,1.9
+2023-01-01 17:40:00-07:00,2023,1,1,17,40,-1,1.2,0.022,0.63,0,0,0,0,6,-1,0,0,0,0,0.293,100,97.95,0.96,0.69,767,1.1,128,1.9
+2023-01-01 17:45:00-07:00,2023,1,1,17,45,-1,1.2,0.022,0.63,0,0,0,0,6,-1,0,0,0,0,0.293,100,98.82,0.96,0.69,767,1.1,128,1.9
+2023-01-01 17:50:00-07:00,2023,1,1,17,50,-1,1.2,0.022,0.63,0,0,0,0,6,-1,0,0,0,0,0.293,100,99.7,0.96,0.69,767,1.1,129,1.8
+2023-01-01 17:55:00-07:00,2023,1,1,17,55,-1.1,1.2,0.022,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.294,100,100.58,0.96,0.69,767,1.1,129,1.8
+2023-01-01 18:00:00-07:00,2023,1,1,18,0,-1.1,1.2,0.022,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.294,100,101.47,0.96,0.69,767,1.1,129,1.7
+2023-01-01 18:05:00-07:00,2023,1,1,18,5,-1.1,1.2,0.022,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.294,100,102.36,0.96,0.69,767,1.1,129,1.7
+2023-01-01 18:10:00-07:00,2023,1,1,18,10,-1.1,1.2,0.022,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.294,100,103.26,0.96,0.69,767,1.1,128,1.6
+2023-01-01 18:15:00-07:00,2023,1,1,18,15,-1.1,1.2,0.022,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.294,100,104.16,0.96,0.69,767,1.1,127,1.6
+2023-01-01 18:20:00-07:00,2023,1,1,18,20,-1.2,1.2,0.022,0.63,0,0,0,0,6,-1.2,0,0,0,0,0.294,100,105.06,0.96,0.69,767,1.1,126,1.6
+2023-01-01 18:25:00-07:00,2023,1,1,18,25,-1.2,1.2,0.022,0.63,0,0,0,0,6,-1.2,0,0,0,0,0.295,100,105.97,0.96,0.69,767,1.1,126,1.5
+2023-01-01 18:30:00-07:00,2023,1,1,18,30,-1.2,1.2,0.022,0.63,0,0,0,0,6,-1.2,0,0,0,0,0.295,100,106.88,0.96,0.69,767,1.1,125,1.5
+2023-01-01 18:35:00-07:00,2023,1,1,18,35,-1.2,1.2,0.02,0.63,0,0,0,0,6,-1.2,0,0,0,0,0.295,100,107.79,0.96,0.69,767,1.1,124,1.4
+2023-01-01 18:40:00-07:00,2023,1,1,18,40,-1.3,1.2,0.02,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.295,100,108.71,0.96,0.69,767,1.1,123,1.4
+2023-01-01 18:45:00-07:00,2023,1,1,18,45,-1.3,1.2,0.02,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.295,100,109.63,0.96,0.69,767,1.1,123,1.3
+2023-01-01 18:50:00-07:00,2023,1,1,18,50,-1.3,1.2,0.02,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.295,100,110.56,0.96,0.69,767,1.1,122,1.3
+2023-01-01 18:55:00-07:00,2023,1,1,18,55,-1.3,1.2,0.02,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.296,100,111.48,0.96,0.69,767,1.1,121,1.2
+2023-01-01 19:00:00-07:00,2023,1,1,19,0,-1.3,1.2,0.02,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.296,100,112.41,0.96,0.69,767,1.1,120,1.2
+2023-01-01 19:05:00-07:00,2023,1,1,19,5,-1.4,1.2,0.02,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.296,100,113.34,0.96,0.69,767,1.1,119,1.2
+2023-01-01 19:10:00-07:00,2023,1,1,19,10,-1.4,1.2,0.02,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.296,100,114.28,0.96,0.69,767,1.1,118,1.2
+2023-01-01 19:15:00-07:00,2023,1,1,19,15,-1.4,1.2,0.02,0.63,0,0,0,0,7,-1.4,0,0,0,0,0.296,100,115.21,0.96,0.69,767,1.1,117,1.1
+2023-01-01 19:20:00-07:00,2023,1,1,19,20,-1.4,1.2,0.02,0.63,0,0,0,0,7,-1.4,0,0,0,0,0.296,100,116.15,0.96,0.69,767,1.1,115,1.1
+2023-01-01 19:25:00-07:00,2023,1,1,19,25,-1.4,1.2,0.02,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.296,100,117.09,0.96,0.69,767,1.1,114,1.1
+2023-01-01 19:30:00-07:00,2023,1,1,19,30,-1.5,1.2,0.02,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,118.03,0.96,0.69,767,1.1,113,1.1
+2023-01-01 19:35:00-07:00,2023,1,1,19,35,-1.5,1.18,0.026,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,118.97,0.96,0.69,767,1.1,112,1.1
+2023-01-01 19:40:00-07:00,2023,1,1,19,40,-1.5,1.18,0.026,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,119.92,0.96,0.69,767,1.1,110,1.1
+2023-01-01 19:45:00-07:00,2023,1,1,19,45,-1.5,1.18,0.026,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,120.86,0.96,0.69,767,1.1,109,1
+2023-01-01 19:50:00-07:00,2023,1,1,19,50,-1.5,1.18,0.026,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,121.81,0.96,0.69,767,1.1,108,1
+2023-01-01 19:55:00-07:00,2023,1,1,19,55,-1.5,1.18,0.026,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.297,100,122.76,0.96,0.69,767,1.1,107,1
+2023-01-01 20:00:00-07:00,2023,1,1,20,0,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,123.71,0.96,0.69,767,1.1,106,1
+2023-01-01 20:05:00-07:00,2023,1,1,20,5,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,124.65,0.96,0.69,767,1.1,105,1
+2023-01-01 20:10:00-07:00,2023,1,1,20,10,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,125.6,0.96,0.69,766,1.1,105,0.9
+2023-01-01 20:15:00-07:00,2023,1,1,20,15,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,126.55,0.96,0.69,766,1.1,104,0.9
+2023-01-01 20:20:00-07:00,2023,1,1,20,20,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,127.5,0.96,0.69,766,1.1,104,0.9
+2023-01-01 20:25:00-07:00,2023,1,1,20,25,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,128.45,0.96,0.69,766,1.1,104,0.9
+2023-01-01 20:30:00-07:00,2023,1,1,20,30,-1.6,1.18,0.026,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.297,100,129.4,0.96,0.69,766,1.1,103,0.9
+2023-01-01 20:35:00-07:00,2023,1,1,20,35,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,130.35,0.96,0.69,766,1.1,103,0.9
+2023-01-01 20:40:00-07:00,2023,1,1,20,40,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,131.3,0.96,0.69,766,1.1,103,0.8
+2023-01-01 20:45:00-07:00,2023,1,1,20,45,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,132.25,0.96,0.69,766,1.1,102,0.8
+2023-01-01 20:50:00-07:00,2023,1,1,20,50,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,133.19,0.96,0.69,766,1.1,102,0.8
+2023-01-01 20:55:00-07:00,2023,1,1,20,55,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,134.14,0.96,0.69,766,1.1,102,0.8
+2023-01-01 21:00:00-07:00,2023,1,1,21,0,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,135.08,0.96,0.69,766,1,101,0.8
+2023-01-01 21:05:00-07:00,2023,1,1,21,5,-1.7,1.17,0.027,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.297,100,136.02,0.96,0.69,766,1,101,0.8
+2023-01-01 21:10:00-07:00,2023,1,1,21,10,-1.8,1.17,0.027,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.297,100,136.96,0.96,0.69,766,1,100,0.8
+2023-01-01 21:15:00-07:00,2023,1,1,21,15,-1.8,1.17,0.027,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.297,100,137.89,0.96,0.69,766,1,100,0.7
+2023-01-01 21:20:00-07:00,2023,1,1,21,20,-1.8,1.17,0.027,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.297,100,138.82,0.96,0.69,766,1,99,0.7
+2023-01-01 21:25:00-07:00,2023,1,1,21,25,-1.8,1.17,0.027,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.297,100,139.75,0.96,0.69,766,1,99,0.7
+2023-01-01 21:30:00-07:00,2023,1,1,21,30,-1.8,1.17,0.027,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.296,100,140.68,0.95,0.69,766,1,98,0.7
+2023-01-01 21:35:00-07:00,2023,1,1,21,35,-1.8,1.18,0.023,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.296,100,141.6,0.95,0.69,766,1,98,0.7
+2023-01-01 21:40:00-07:00,2023,1,1,21,40,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,142.52,0.95,0.69,766,1,97,0.7
+2023-01-01 21:45:00-07:00,2023,1,1,21,45,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,143.43,0.95,0.69,766,1,97,0.6
+2023-01-01 21:50:00-07:00,2023,1,1,21,50,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,144.33,0.95,0.69,766,1,96,0.6
+2023-01-01 21:55:00-07:00,2023,1,1,21,55,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,145.23,0.95,0.69,766,1,96,0.6
+2023-01-01 22:00:00-07:00,2023,1,1,22,0,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,146.12,0.95,0.69,766,1,95,0.6
+2023-01-01 22:05:00-07:00,2023,1,1,22,5,-1.9,1.18,0.023,0.63,0,0,0,0,9,-1.9,0,0,0,0,0.296,100,147.01,0.95,0.69,766,1,94,0.6
+2023-01-01 22:10:00-07:00,2023,1,1,22,10,-2,1.18,0.023,0.63,0,0,0,0,9,-2,0,0,0,0,0.296,100,147.89,0.95,0.69,766,1,93,0.6
+2023-01-01 22:15:00-07:00,2023,1,1,22,15,-2,1.18,0.023,0.63,0,0,0,0,9,-2,0,0,0,0,0.296,100,148.75,0.95,0.69,766,1,92,0.6
+2023-01-01 22:20:00-07:00,2023,1,1,22,20,-2,1.18,0.023,0.63,0,0,0,0,9,-2,0,0,0,0,0.296,100,149.61,0.95,0.69,766,1,90,0.5
+2023-01-01 22:25:00-07:00,2023,1,1,22,25,-2,1.18,0.023,0.63,0,0,0,0,9,-2,0,0,0,0,0.296,100,150.45,0.95,0.69,766,1,89,0.5
+2023-01-01 22:30:00-07:00,2023,1,1,22,30,-2,1.18,0.023,0.63,0,0,0,0,6,-2,0,0,0,0,0.296,100,151.29,0.95,0.69,766,1,88,0.5
+2023-01-01 22:35:00-07:00,2023,1,1,22,35,-2,1.19,0.026,0.63,0,0,0,0,6,-2,0,0,0,0,0.296,100,152.11,0.95,0.69,766,1,87,0.5
+2023-01-01 22:40:00-07:00,2023,1,1,22,40,-2,1.19,0.026,0.63,0,0,0,0,9,-2,0,0,0,0,0.296,100,152.91,0.95,0.69,766,1,85,0.5
+2023-01-01 22:45:00-07:00,2023,1,1,22,45,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,153.7,0.95,0.69,766,1,84,0.5
+2023-01-01 22:50:00-07:00,2023,1,1,22,50,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,154.47,0.95,0.69,766,1,83,0.5
+2023-01-01 22:55:00-07:00,2023,1,1,22,55,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,155.22,0.95,0.69,766,1,82,0.5
+2023-01-01 23:00:00-07:00,2023,1,1,23,0,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,155.94,0.95,0.69,766,1,81,0.4
+2023-01-01 23:05:00-07:00,2023,1,1,23,5,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,156.65,0.95,0.69,766,1,80,0.4
+2023-01-01 23:10:00-07:00,2023,1,1,23,10,-2.1,1.19,0.026,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.296,100,157.32,0.95,0.69,766,1,79,0.4
+2023-01-01 23:15:00-07:00,2023,1,1,23,15,-2.1,1.19,0.026,0.63,0,0,0,0,9,-2.1,0,0,0,0,0.296,100,157.97,0.95,0.69,766,1,78,0.4
+2023-01-01 23:20:00-07:00,2023,1,1,23,20,-2.2,1.19,0.026,0.63,0,0,0,0,9,-2.2,0,0,0,0,0.296,100,158.59,0.95,0.69,766,1,77,0.4
+2023-01-01 23:25:00-07:00,2023,1,1,23,25,-2.2,1.19,0.026,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,159.17,0.95,0.69,766,1,76,0.4
+2023-01-01 23:30:00-07:00,2023,1,1,23,30,-2.2,1.19,0.026,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,159.71,0.95,0.69,766,1,75,0.4
+2023-01-01 23:35:00-07:00,2023,1,1,23,35,-2.2,1.2,0.024,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,160.22,0.95,0.69,766,1,74,0.4
+2023-01-01 23:40:00-07:00,2023,1,1,23,40,-2.2,1.2,0.024,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,160.68,0.95,0.69,766,1,73,0.4
+2023-01-01 23:45:00-07:00,2023,1,1,23,45,-2.2,1.2,0.024,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,161.09,0.95,0.69,766,1,72,0.3
+2023-01-01 23:50:00-07:00,2023,1,1,23,50,-2.2,1.2,0.024,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,161.45,0.95,0.69,766,1,71,0.3
+2023-01-01 23:55:00-07:00,2023,1,1,23,55,-2.2,1.2,0.024,0.63,0,0,0,0,6,-2.2,0,0,0,0,0.296,100,161.76,0.95,0.69,766,1,70,0.3
diff --git a/pvlib/data/test_goes4_tmy-2023.csv b/pvlib/data/test_goes4_tmy-2023.csv
new file mode 100644
index 0000000000..f42ea2d67f
--- /dev/null
+++ b/pvlib/data/test_goes4_tmy-2023.csv
@@ -0,0 +1,8761 @@
+,Year,Month,Day,Hour,Minute,Temperature,Alpha,AOD,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed
+0,2020,1,1,0,30,-11.4,1.38,0.015,0.63,0,0,0,0,4,-15.1,0,0,0,0,0.318,73.85,162.3,0.93,0.8,787,0.8,199,2.9
+1,2020,1,1,1,30,-11.3,1.37,0.016,0.63,0,0,0,0,7,-15.2,0,0,0,0,0.317,72.94,156.77,0.92,0.8,786,0.9,197,3.3
+2,2020,1,1,2,30,-11.6,1.41,0.015,0.63,0,0,0,0,7,-15.1,0,0,0,0,0.316,75,147.14,0.92,0.8,785,0.9,196,3.3
+3,2020,1,1,3,30,-11.8,1.43,0.014,0.63,0,0,0,0,7,-15.4,0,0,0,0,0.315,74.68,136.14,0.92,0.8,785,0.9,198,3.2
+4,2020,1,1,4,30,-11.7,1.39,0.015,0.63,0,0,0,0,7,-15.5,0,0,0,0,0.315,73.52,124.78,0.93,0.8,785,0.9,200,3.3
+5,2020,1,1,5,30,-11.2,1.34,0.018,0.63,0,0,0,0,7,-15.1,0,0,0,0,0.314,72.67,113.47,0.94,0.8,785,0.9,197,3.4
+6,2020,1,1,6,30,-10.6,1.3,0.02,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.314,73.25,102.49,0.94,0.8,784,0.9,192,3.5
+7,2020,1,1,7,30,-10.1,1.32,0.017,0.63,0,0,0,2,6,-13.7,0,0,29,0,0.315,74.9,92.11,0.93,0.8,784,0.9,191,3.9
+8,2020,1,1,8,30,-8.9,1.37,0.013,0.63,29,638,112,7,7,-12.9,39,1,100,39,0.317,72.97,82.55,0.93,0.8,783,0.9,193,4.6
+9,2020,1,1,9,30,-7.3,1.37,0.012,0.63,43,838,267,3,7,-11.4,100,4,46,101,0.318,72.43,74.49,0.93,0.8,783,0.8,197,5.3
+10,2020,1,1,10,30,-6,1.37,0.014,0.63,53,916,392,0,4,-9.7,218,244,7,308,0.32,74.85,68.26,0.93,0.8,782,0.8,203,5.8
+11,2020,1,1,11,30,-5,1.33,0.018,0.63,60,952,470,0,4,-8.3,205,120,0,257,0.322,77.64,64.47,0.93,0.8,781,0.8,207,5.9
+12,2020,1,1,12,30,-4.4,1.32,0.02,0.63,62,959,489,0,6,-7.3,192,194,4,278,0.326,80.38,63.57,0.94,0.8,780,0.7,207,5.9
+13,2020,1,1,13,30,-3.9,1.3,0.02,0.63,59,944,448,0,6,-6.6,182,15,0,188,0.33,81.43,65.69,0.94,0.8,779,0.7,207,5.9
+14,2020,1,1,14,30,-3.7,1.3,0.019,0.63,52,891,349,0,7,-6.1,192,155,0,244,0.332,83.2,70.55,0.95,0.8,778,0.7,207,5.7
+15,2020,1,1,15,30,-4.3,1.28,0.018,0.63,41,771,207,7,4,-6,67,0,100,67,0.333,87.98,77.6,0.95,0.8,778,0.7,212,4.8
+16,2020,1,1,16,30,-5.5,1.26,0.021,0.63,22,463,53,7,7,-6.1,23,0,100,23,0.337,95.68,86.21,0.94,0.8,779,0.6,216,3.7
+17,2020,1,1,17,30,-7,1.35,0.017,0.63,0,0,0,0,7,-7,0,0,0,0,0.341,99.65,96.26,0.91,0.8,778,0.5,217,3
+18,2020,1,1,18,30,-8.3,1.38,0.012,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.345,100,106.92,0.9,0.8,779,0.5,223,2.7
+19,2020,1,1,19,30,-8.9,1.38,0.011,0.63,0,0,0,0,4,-9,0,0,0,0,0.348,99.12,118.06,0.9,0.8,779,0.5,231,2.4
+20,2020,1,1,20,30,-9.2,1.36,0.011,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.347,97.49,129.43,0.9,0.8,779,0.5,237,2.3
+21,2020,1,1,21,30,-9.1,1.33,0.012,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.343,94.68,140.71,0.9,0.8,779,0.5,240,2.1
+22,2020,1,1,22,30,-8.7,1.27,0.012,0.63,0,0,0,0,4,-9.7,0,0,0,0,0.34,92.17,151.31,0.91,0.8,779,0.5,242,2
+23,2020,1,1,23,30,-8.1,1.23,0.012,0.63,0,0,0,0,4,-9.4,0,0,0,0,0.339,90.28,159.73,0.91,0.8,779,0.5,246,1.8
+24,2020,1,2,0,30,-7.7,1.21,0.012,0.63,0,0,0,0,4,-9,0,0,0,0,0.338,90.04,162.23,0.91,0.8,779,0.5,255,1.6
+25,2020,1,2,1,30,-7.7,1.21,0.011,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.337,91.29,156.77,0.91,0.8,779,0.5,267,1.4
+26,2020,1,2,2,30,-7.9,1.22,0.011,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.337,92.44,147.16,0.9,0.8,780,0.5,284,1.4
+27,2020,1,2,3,30,-8.4,1.26,0.01,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.336,93.77,136.18,0.89,0.8,780,0.5,304,1.7
+28,2020,1,2,4,30,-8.9,1.3,0.01,0.63,0,0,0,0,6,-9.6,0,0,0,0,0.336,94.55,124.82,0.88,0.8,780,0.5,316,2
+29,2020,1,2,5,30,-9.6,1.33,0.01,0.63,0,0,0,0,7,-10,0,0,0,0,0.337,96.76,113.51,0.87,0.8,781,0.5,323,2
+30,2020,1,2,6,30,-10.1,1.37,0.01,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.339,97.88,102.52,0.87,0.8,781,0.4,326,1.8
+31,2020,1,2,7,30,-9.9,1.39,0.01,0.63,0,0,0,1,4,-10.6,0,0,18,0,0.341,94.62,92.12,0.87,0.8,781,0.4,322,1.6
+32,2020,1,2,8,30,-8,1.4,0.01,0.63,27,685,116,6,4,-10.5,54,128,82,71,0.342,82.18,82.56,0.87,0.8,782,0.4,314,1.8
+33,2020,1,2,9,30,-4.8,1.42,0.01,0.63,39,878,274,0,0,-8.7,39,878,0,274,0.342,74.18,74.47,0.87,0.8,783,0.4,317,2.8
+34,2020,1,2,10,30,-2.4,1.44,0.01,0.63,46,964,404,0,0,-7.2,46,964,0,404,0.343,69.34,68.22,0.87,0.8,784,0.4,324,4.1
+35,2020,1,2,11,30,-1.3,1.42,0.01,0.63,51,1002,484,0,0,-7.7,63,970,14,482,0.343,61.85,64.41,0.87,0.8,784,0.3,323,4.3
+36,2020,1,2,12,30,-1,1.42,0.01,0.63,52,1010,503,0,4,-8.3,263,373,4,430,0.343,57.79,63.48,0.88,0.8,783,0.3,316,4
+37,2020,1,2,13,30,-1,1.38,0.01,0.63,50,988,458,0,7,-8.7,269,133,0,324,0.342,56.05,65.58,0.89,0.8,784,0.4,309,3.7
+38,2020,1,2,14,30,-1.7,1.38,0.01,0.63,44,934,357,0,7,-8.6,190,106,0,226,0.342,59.22,70.42,0.89,0.8,784,0.4,306,3.1
+39,2020,1,2,15,30,-3.3,1.39,0.01,0.63,36,822,214,7,7,-8.4,126,23,100,131,0.344,68,77.47,0.89,0.8,784,0.4,303,2
+40,2020,1,2,16,30,-5.4,1.4,0.01,0.63,20,527,56,7,7,-9.6,21,0,100,21,0.345,72.42,86.08,0.89,0.8,785,0.4,298,1.4
+41,2020,1,2,17,30,-6.8,1.4,0.01,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.344,71.05,96.12,0.9,0.8,786,0.4,293,1.3
+42,2020,1,2,18,30,-7.8,1.41,0.01,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.343,73.66,106.78,0.9,0.8,787,0.4,289,1.3
+43,2020,1,2,19,30,-8.6,1.42,0.01,0.63,0,0,0,0,7,-12,0,0,0,0,0.342,76.15,117.92,0.9,0.8,788,0.5,290,1.3
+44,2020,1,2,20,30,-9,1.41,0.01,0.63,0,0,0,0,7,-12.1,0,0,0,0,0.342,78.12,129.29,0.91,0.8,788,0.5,300,1.2
+45,2020,1,2,21,30,-9.3,1.39,0.011,0.63,0,0,0,0,4,-12,0,0,0,0,0.341,80.74,140.57,0.91,0.8,789,0.5,308,1.1
+46,2020,1,2,22,30,-9.7,1.38,0.011,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.34,84.82,151.17,0.91,0.8,789,0.5,307,1
+47,2020,1,2,23,30,-10.2,1.36,0.011,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.337,89.59,159.6,0.91,0.8,790,0.5,301,1
+48,2020,1,3,0,30,-10.4,1.36,0.01,0.63,0,0,0,0,4,-11.4,0,0,0,0,0.334,92.09,162.15,0.91,0.8,790,0.5,291,0.9
+49,2020,1,3,1,30,-10.6,1.36,0.01,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.333,94.99,156.76,0.91,0.8,791,0.5,273,0.9
+50,2020,1,3,2,30,-10.8,1.38,0.01,0.63,0,0,0,0,4,-11.2,0,0,0,0,0.332,96.58,147.19,0.9,0.8,791,0.5,251,1
+51,2020,1,3,3,30,-11.2,1.4,0.01,0.63,0,0,0,0,4,-11.5,0,0,0,0,0.33,97.71,136.22,0.9,0.8,791,0.6,235,1.2
+52,2020,1,3,4,30,-11.8,1.4,0.01,0.63,0,0,0,0,4,-11.9,0,0,0,0,0.326,98.91,124.86,0.9,0.8,791,0.6,225,1.4
+53,2020,1,3,5,30,-12.2,1.41,0.01,0.63,0,0,0,0,4,-12.5,0,0,0,0,0.321,97.57,113.54,0.9,0.8,791,0.6,219,1.6
+54,2020,1,3,6,30,-12.4,1.43,0.01,0.63,0,0,0,0,4,-13,0,0,0,0,0.315,95.61,102.54,0.9,0.8,792,0.7,214,1.7
+55,2020,1,3,7,30,-11.3,1.43,0.01,0.63,0,0,0,1,4,-13.2,0,0,18,0,0.311,85.78,92.14,0.9,0.8,792,0.7,208,2
+56,2020,1,3,8,30,-8.5,1.42,0.01,0.63,27,655,112,7,4,-12.5,58,1,100,58,0.309,73.11,82.55,0.9,0.8,793,0.7,202,2.8
+57,2020,1,3,9,30,-5.2,1.43,0.01,0.63,40,852,268,2,4,-9.9,86,0,29,86,0.308,69.65,74.45,0.9,0.8,794,0.7,205,3.3
+58,2020,1,3,10,30,-2.5,1.46,0.01,0.63,48,936,396,0,4,-8,185,2,0,186,0.305,66.13,68.18,0.9,0.8,794,0.6,223,3.5
+59,2020,1,3,11,30,-0.5,1.46,0.011,0.63,53,970,473,0,4,-6.7,290,37,0,306,0.304,62.94,64.33,0.9,0.8,794,0.6,242,3.3
+60,2020,1,3,12,30,0.5,1.46,0.012,0.63,55,975,492,0,4,-5.7,216,509,29,444,0.304,63.15,63.38,0.9,0.8,794,0.7,253,2.7
+61,2020,1,3,13,30,1,1.47,0.012,0.63,53,956,450,1,0,-5.1,97,814,18,435,0.303,63.73,65.46,0.9,0.8,793,0.7,259,2.3
+62,2020,1,3,14,30,0.9,1.45,0.012,0.63,46,909,353,0,0,-5,66,817,0,342,0.302,64.91,70.29,0.9,0.8,794,0.7,256,1.8
+63,2020,1,3,15,30,-0.9,1.45,0.011,0.63,37,803,213,1,0,-4.5,49,726,11,208,0.301,76.59,77.33,0.9,0.8,794,0.6,240,1.3
+64,2020,1,3,16,30,-3.7,1.45,0.011,0.63,21,510,57,1,0,-6.9,23,415,18,52,0.301,78.68,85.94,0.89,0.8,794,0.6,222,1.3
+65,2020,1,3,17,30,-5.6,1.46,0.011,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.3,76.08,95.97,0.89,0.8,795,0.6,217,1.5
+66,2020,1,3,18,30,-6.7,1.46,0.011,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.299,79.75,106.63,0.9,0.8,796,0.6,215,1.5
+67,2020,1,3,19,30,-7.6,1.45,0.012,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.297,84.38,117.78,0.9,0.8,796,0.6,212,1.5
+68,2020,1,3,20,30,-8.5,1.43,0.013,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.295,89.4,129.15,0.91,0.8,797,0.7,208,1.6
+69,2020,1,3,21,30,-9.1,1.41,0.013,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.294,92.7,140.42,0.91,0.8,797,0.7,205,1.7
+70,2020,1,3,22,30,-9.6,1.41,0.012,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.293,96.16,151.02,0.9,0.8,797,0.7,200,1.8
+71,2020,1,3,23,30,-10,1.41,0.012,0.63,0,0,0,0,0,-10.1,0,0,0,0,0.293,98.84,159.46,0.9,0.8,797,0.7,192,1.9
+72,2020,1,4,0,30,-10.3,1.39,0.012,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.293,99.64,162.07,0.91,0.8,797,0.7,186,2
+73,2020,1,4,1,30,-10.5,1.39,0.012,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.292,97.71,156.74,0.91,0.8,797,0.6,184,2
+74,2020,1,4,2,30,-10.8,1.4,0.012,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.292,95.85,147.2,0.91,0.8,796,0.6,186,2
+75,2020,1,4,3,30,-11,1.39,0.012,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.293,94.18,136.25,0.91,0.8,796,0.6,191,2
+76,2020,1,4,4,30,-10.9,1.36,0.014,0.63,0,0,0,0,7,-12,0,0,0,0,0.294,91.95,124.89,0.92,0.8,796,0.5,198,2.1
+77,2020,1,4,5,30,-10.8,1.33,0.015,0.63,0,0,0,0,0,-11.9,0,0,0,0,0.295,91.48,113.57,0.92,0.8,796,0.5,206,2.1
+78,2020,1,4,6,30,-11,1.34,0.014,0.63,0,0,0,0,0,-11.9,0,0,0,0,0.296,93.01,102.56,0.91,0.8,797,0.5,211,2.2
+79,2020,1,4,7,30,-10.4,1.34,0.014,0.63,0,0,0,1,7,-12.1,0,0,14,0,0.296,87.5,92.15,0.91,0.8,797,0.5,209,2.5
+80,2020,1,4,8,30,-8.1,1.37,0.013,0.63,29,670,116,7,7,-11.4,70,10,100,71,0.296,76.95,82.54,0.91,0.8,797,0.5,207,3.3
+81,2020,1,4,9,30,-5.1,1.39,0.013,0.63,43,870,277,2,7,-9.2,155,41,29,166,0.296,72.74,74.42,0.91,0.8,796,0.4,208,4.3
+82,2020,1,4,10,30,-2.7,1.39,0.013,0.63,51,949,405,0,7,-7.5,217,330,0,340,0.294,69.42,68.12,0.91,0.8,795,0.5,211,5.4
+83,2020,1,4,11,30,-1.1,1.38,0.013,0.63,56,984,483,0,7,-6.5,175,609,7,440,0.293,66.98,64.25,0.91,0.8,794,0.5,213,6.3
+84,2020,1,4,12,30,0,1.38,0.013,0.63,57,987,501,0,7,-5.9,148,712,18,468,0.293,64.32,63.28,0.91,0.8,793,0.5,215,6.8
+85,2020,1,4,13,30,0.5,1.36,0.014,0.63,55,968,459,0,0,-5.6,89,858,0,447,0.293,63.48,65.34,0.91,0.8,793,0.5,216,6.8
+86,2020,1,4,14,30,0.3,1.31,0.015,0.63,51,917,362,0,0,-5.5,84,784,14,350,0.294,65.22,70.15,0.92,0.8,793,0.5,217,6
+87,2020,1,4,15,30,-1.2,1.29,0.016,0.63,41,804,219,2,0,-5.4,70,607,36,205,0.295,73.14,77.18,0.92,0.8,794,0.5,217,4.3
+88,2020,1,4,16,30,-4,1.29,0.016,0.63,23,510,60,0,0,-6.3,23,487,4,59,0.296,84.19,85.8,0.92,0.8,794,0.5,216,2.8
+89,2020,1,4,17,30,-6,1.28,0.015,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.296,86.17,95.83,0.91,0.8,795,0.5,216,2.1
+90,2020,1,4,18,30,-7,1.27,0.015,0.63,0,0,0,0,0,-8.7,0,0,0,0,0.293,87.97,106.49,0.91,0.8,796,0.5,217,1.8
+91,2020,1,4,19,30,-7.7,1.3,0.015,0.63,0,0,0,0,0,-9,0,0,0,0,0.29,90.22,117.64,0.91,0.8,797,0.4,220,1.6
+92,2020,1,4,20,30,-8.3,1.32,0.015,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.288,92.34,129.01,0.91,0.8,797,0.4,227,1.6
+93,2020,1,4,21,30,-8.7,1.33,0.015,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.287,93.99,140.28,0.91,0.8,798,0.4,230,1.6
+94,2020,1,4,22,30,-9.1,1.33,0.014,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.285,96.4,150.88,0.91,0.8,798,0.3,229,1.5
+95,2020,1,4,23,30,-9.2,1.33,0.013,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.283,97.3,159.32,0.91,0.8,798,0.3,225,1.4
+96,2020,1,5,0,30,-9,1.33,0.013,0.63,0,0,0,0,0,-9.4,0,0,0,0,0.282,97.24,161.98,0.9,0.8,798,0.3,213,1.2
+97,2020,1,5,1,30,-9.1,1.33,0.013,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.281,99.32,156.72,0.91,0.8,798,0.3,189,1.1
+98,2020,1,5,2,30,-9.7,1.33,0.013,0.63,0,0,0,0,4,-9.7,0,0,0,0,0.281,100,147.21,0.91,0.8,798,0.3,161,1.1
+99,2020,1,5,3,30,-10.6,1.31,0.014,0.63,0,0,0,0,4,-10.6,0,0,0,0,0.281,100,136.27,0.92,0.8,798,0.4,137,1.1
+100,2020,1,5,4,30,-11.4,1.3,0.015,0.63,0,0,0,0,8,-11.4,0,0,0,0,0.282,100,124.91,0.92,0.8,797,0.4,123,1.1
+101,2020,1,5,5,30,-11.9,1.28,0.018,0.63,0,0,0,0,7,-11.9,0,0,0,0,0.283,100,113.59,0.93,0.8,797,0.4,121,1.2
+102,2020,1,5,6,30,-12,1.27,0.019,0.63,0,0,0,0,7,-12,0,0,0,0,0.285,100,102.57,0.94,0.8,796,0.4,124,1.4
+103,2020,1,5,7,30,-11.2,1.26,0.019,0.63,0,0,0,1,8,-12,0,0,18,0,0.287,93.74,92.15,0.94,0.8,796,0.4,137,1.5
+104,2020,1,5,8,30,-9.2,1.25,0.02,0.63,33,657,118,7,7,-11.6,71,8,100,72,0.289,82.84,82.53,0.93,0.8,796,0.4,162,1.4
+105,2020,1,5,9,30,-6.3,1.27,0.019,0.63,47,861,279,4,4,-9.8,142,62,50,159,0.291,76.02,74.38,0.93,0.8,795,0.4,199,1.8
+106,2020,1,5,10,30,-3.3,1.26,0.018,0.63,56,942,408,4,7,-7.9,123,46,50,140,0.295,70.24,68.06,0.93,0.8,794,0.4,223,3.2
+107,2020,1,5,11,30,-1.2,1.22,0.019,0.63,63,969,485,0,4,-6.4,222,470,18,427,0.301,67.84,64.16,0.93,0.8,793,0.5,227,4.7
+108,2020,1,5,12,30,-0.3,1.18,0.021,0.63,66,971,504,0,7,-5.9,217,494,4,440,0.308,66.02,63.16,0.93,0.8,792,0.5,229,5.2
+109,2020,1,5,13,30,-0.1,1.14,0.024,0.63,65,948,463,1,0,-5.7,107,756,14,424,0.312,65.79,65.2,0.94,0.8,792,0.5,233,5.2
+110,2020,1,5,14,30,-0.4,1.12,0.028,0.63,60,884,362,2,4,-5.7,208,240,21,290,0.315,67.58,70.01,0.94,0.8,791,0.6,237,4.5
+111,2020,1,5,15,30,-1.8,1.1,0.033,0.63,48,756,218,6,4,-5.6,122,183,82,163,0.319,75.46,77.04,0.95,0.8,791,0.6,238,3.1
+112,2020,1,5,16,30,-3.9,1.12,0.034,0.63,26,446,60,7,4,-6.3,21,0,100,21,0.326,83.62,85.65,0.94,0.8,792,0.6,242,2.1
+113,2020,1,5,17,30,-5.3,1.17,0.032,0.63,0,0,0,0,4,-7.4,0,0,0,0,0.334,85.34,95.68,0.93,0.8,792,0.5,258,2.1
+114,2020,1,5,18,30,-6.4,1.26,0.024,0.63,0,0,0,0,4,-7.8,0,0,0,0,0.338,90.11,106.34,0.92,0.8,793,0.4,281,2.2
+115,2020,1,5,19,30,-7.9,1.33,0.017,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.337,93.66,117.49,0.9,0.8,794,0.3,297,1.9
+116,2020,1,5,20,30,-9,1.35,0.016,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.337,93.58,128.86,0.9,0.8,794,0.3,297,1.6
+117,2020,1,5,21,30,-9.7,1.36,0.016,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.34,94.99,140.13,0.9,0.8,795,0.3,282,1.4
+118,2020,1,5,22,30,-10.4,1.37,0.016,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.345,98.01,150.72,0.9,0.8,795,0.3,260,1.4
+119,2020,1,5,23,30,-11.2,1.38,0.015,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.349,100,159.17,0.91,0.8,796,0.3,241,1.6
+120,2020,1,6,0,30,-11.9,1.34,0.013,0.63,0,0,0,0,4,-11.9,0,0,0,0,0.352,100,161.88,0.91,0.8,796,0.3,226,1.9
+121,2020,1,6,1,30,-12.4,1.28,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.353,100,156.69,0.91,0.8,796,0.4,222,2.2
+122,2020,1,6,2,30,-12.5,1.25,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.352,99.61,147.22,0.91,0.8,796,0.4,227,2.4
+123,2020,1,6,3,30,-12.3,1.25,0.013,0.63,0,0,0,0,4,-12.9,0,0,0,0,0.351,95.32,136.29,0.91,0.8,796,0.3,234,2.4
+124,2020,1,6,4,30,-12.2,1.26,0.014,0.63,0,0,0,0,0,-13,0,0,0,0,0.352,93.59,124.93,0.91,0.8,796,0.3,240,2.3
+125,2020,1,6,5,30,-12.4,1.27,0.015,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.353,94.69,113.6,0.91,0.8,797,0.3,248,2
+126,2020,1,6,6,30,-12.7,1.27,0.015,0.63,0,0,0,0,0,-13.2,0,0,0,0,0.352,95.79,102.58,0.91,0.8,797,0.3,253,1.7
+127,2020,1,6,7,30,-12,1.27,0.015,0.63,0,0,0,0,0,-13.4,0,0,7,0,0.35,89.6,92.14,0.91,0.8,798,0.3,249,1.7
+128,2020,1,6,8,30,-9.3,1.27,0.015,0.63,30,682,119,3,0,-13,44,428,39,100,0.347,74.61,82.51,0.91,0.8,798,0.3,241,2
+129,2020,1,6,9,30,-5.9,1.27,0.014,0.63,43,881,281,0,0,-11.3,43,881,0,281,0.344,65.78,74.34,0.91,0.8,799,0.3,251,2.5
+130,2020,1,6,10,30,-3.3,1.27,0.013,0.63,52,961,412,0,0,-10.6,52,961,0,412,0.34,57.22,67.99,0.91,0.8,799,0.3,266,2.8
+131,2020,1,6,11,30,-1.9,1.25,0.013,0.63,55,988,487,0,0,-10.9,55,988,0,487,0.337,50.3,64.07,0.91,0.8,799,0.4,265,2.8
+132,2020,1,6,12,30,-0.9,1.23,0.011,0.63,55,998,507,0,0,-10.9,55,998,0,507,0.334,46.76,63.04,0.91,0.8,798,0.4,251,3.1
+133,2020,1,6,13,30,-0.5,1.22,0.011,0.63,52,979,465,0,0,-10.4,52,979,0,465,0.333,47.29,65.07,0.91,0.8,798,0.4,236,3.4
+134,2020,1,6,14,30,-0.8,1.22,0.011,0.63,48,929,368,0,0,-9.7,64,844,0,355,0.332,51.05,69.86,0.92,0.8,797,0.5,226,3.5
+135,2020,1,6,15,30,-2.9,1.22,0.012,0.63,39,817,224,6,7,-9.5,114,348,79,193,0.331,60.24,76.88,0.92,0.8,797,0.5,218,2.8
+136,2020,1,6,16,30,-5.9,1.24,0.013,0.63,22,530,64,6,4,-10.7,35,62,86,40,0.329,68.9,85.5,0.92,0.8,797,0.5,212,2.2
+137,2020,1,6,17,30,-7.7,1.26,0.014,0.63,0,0,0,0,4,-12.5,0,0,0,0,0.326,68.6,95.52,0.92,0.8,797,0.5,214,2.5
+138,2020,1,6,18,30,-8.3,1.28,0.016,0.63,0,0,0,0,4,-12.8,0,0,0,0,0.324,69.97,106.19,0.92,0.8,797,0.5,216,2.8
+139,2020,1,6,19,30,-8.8,1.3,0.017,0.63,0,0,0,0,4,-12.7,0,0,0,0,0.324,73.51,117.34,0.92,0.8,797,0.5,216,2.9
+140,2020,1,6,20,30,-9.3,1.33,0.018,0.63,0,0,0,0,4,-12.6,0,0,0,0,0.324,76.81,128.71,0.92,0.8,797,0.6,213,2.9
+141,2020,1,6,21,30,-9.7,1.35,0.017,0.63,0,0,0,0,4,-12.7,0,0,0,0,0.325,78.96,139.97,0.92,0.8,797,0.6,210,3
+142,2020,1,6,22,30,-10.1,1.34,0.015,0.63,0,0,0,0,4,-12.7,0,0,0,0,0.326,80.97,150.57,0.91,0.8,797,0.6,207,3
+143,2020,1,6,23,30,-10.5,1.32,0.015,0.63,0,0,0,0,4,-12.9,0,0,0,0,0.326,82.4,159.02,0.91,0.8,797,0.6,203,2.8
+144,2020,1,7,0,30,-10.8,1.31,0.015,0.63,0,0,0,0,4,-13.1,0,0,0,0,0.326,82.86,161.77,0.92,0.8,797,0.6,200,2.7
+145,2020,1,7,1,30,-11,1.3,0.016,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.324,82.42,156.65,0.91,0.8,798,0.6,196,2.6
+146,2020,1,7,2,30,-11.2,1.29,0.015,0.63,0,0,0,0,4,-13.8,0,0,0,0,0.322,81.37,147.21,0.91,0.8,798,0.6,193,2.5
+147,2020,1,7,3,30,-11.5,1.29,0.015,0.63,0,0,0,0,4,-14.2,0,0,0,0,0.319,80.63,136.3,0.91,0.8,798,0.6,192,2.5
+148,2020,1,7,4,30,-11.7,1.28,0.014,0.63,0,0,0,0,4,-14.6,0,0,0,0,0.318,79.28,124.95,0.91,0.8,798,0.5,193,2.4
+149,2020,1,7,5,30,-12,1.27,0.014,0.63,0,0,0,0,0,-14.9,0,0,0,0,0.318,79.03,113.61,0.91,0.8,798,0.5,194,2.3
+150,2020,1,7,6,30,-12.1,1.27,0.014,0.63,0,0,0,0,0,-15.2,0,0,0,0,0.317,77.68,102.58,0.91,0.8,798,0.5,194,2.2
+151,2020,1,7,7,30,-11.2,1.27,0.013,0.63,0,0,0,0,0,-15.5,0,0,0,0,0.316,70.81,92.13,0.91,0.8,798,0.5,194,2.6
+152,2020,1,7,8,30,-8.5,1.27,0.012,0.63,29,667,116,0,0,-14.7,29,667,0,116,0.314,60.72,82.48,0.91,0.8,798,0.5,197,3.2
+153,2020,1,7,9,30,-5.2,1.28,0.012,0.63,42,864,276,0,0,-12.5,42,864,0,276,0.311,56.58,74.29,0.91,0.8,798,0.5,203,3.8
+154,2020,1,7,10,30,-2.3,1.29,0.012,0.63,51,945,406,0,0,-10.5,51,945,0,406,0.309,53.18,67.92,0.91,0.8,797,0.5,213,4.7
+155,2020,1,7,11,30,-0.3,1.31,0.012,0.63,55,981,486,0,0,-8.9,55,981,0,486,0.307,52.3,63.96,0.91,0.8,796,0.5,220,5.2
+156,2020,1,7,12,30,0.6,1.36,0.013,0.63,57,988,507,0,0,-7.8,57,988,0,507,0.306,53.55,62.92,0.91,0.8,795,0.5,223,5
+157,2020,1,7,13,30,1.1,1.39,0.014,0.63,56,971,468,0,0,-7,56,971,0,468,0.305,54.57,64.92,0.91,0.8,795,0.5,224,4.7
+158,2020,1,7,14,30,0.8,1.4,0.015,0.63,52,920,371,0,0,-6.7,52,920,0,371,0.302,57.47,69.7,0.92,0.8,794,0.5,222,4
+159,2020,1,7,15,30,-1.3,1.39,0.017,0.63,42,809,228,0,0,-6.5,42,809,0,228,0.298,67.68,76.72,0.92,0.8,794,0.5,217,2.7
+160,2020,1,7,16,30,-4.3,1.38,0.019,0.63,24,524,67,0,0,-7.8,24,524,0,67,0.295,76.8,85.34,0.92,0.8,794,0.5,209,1.9
+161,2020,1,7,17,30,-6.2,1.38,0.019,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.295,75.63,95.36,0.92,0.79,793,0.5,205,1.9
+162,2020,1,7,18,30,-7,1.37,0.017,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.294,76.33,106.03,0.92,0.79,793,0.5,204,1.9
+163,2020,1,7,19,30,-7.6,1.35,0.016,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.295,77.16,117.18,0.92,0.79,793,0.5,206,1.9
+164,2020,1,7,20,30,-8,1.33,0.016,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.297,77.1,128.55,0.92,0.79,792,0.5,209,1.8
+165,2020,1,7,21,30,-8.2,1.32,0.016,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.298,76.22,139.82,0.92,0.79,791,0.5,210,1.8
+166,2020,1,7,22,30,-8.4,1.31,0.017,0.63,0,0,0,0,4,-12,0,0,0,0,0.298,75.52,150.41,0.92,0.79,790,0.5,209,1.7
+167,2020,1,7,23,30,-8.4,1.29,0.018,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.298,74,158.86,0.93,0.79,789,0.5,205,1.7
+168,2020,1,8,0,30,-8.2,1.27,0.018,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.299,72.53,161.65,0.93,0.79,788,0.5,201,1.7
+169,2020,1,8,1,30,-8.2,1.26,0.018,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.3,72.94,156.6,0.93,0.79,787,0.5,198,1.8
+170,2020,1,8,2,30,-8.3,1.26,0.018,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.301,73.75,147.2,0.93,0.79,787,0.5,193,1.9
+171,2020,1,8,3,30,-8.1,1.24,0.02,0.63,0,0,0,0,4,-11.9,0,0,0,0,0.301,73.9,136.3,0.93,0.79,786,0.5,187,2.1
+172,2020,1,8,4,30,-7.6,1.23,0.022,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.305,75.34,124.96,0.93,0.79,785,0.5,183,2.3
+173,2020,1,8,5,30,-7.5,1.23,0.023,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.311,79.31,113.62,0.93,0.79,784,0.5,183,2.4
+174,2020,1,8,6,30,-8,1.24,0.022,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.319,84.46,102.58,0.92,0.79,784,0.5,185,2.4
+175,2020,1,8,7,30,-7.9,1.26,0.022,0.63,0,0,0,2,7,-10.4,0,0,29,0,0.327,82,92.11,0.92,0.79,783,0.5,189,2.6
+176,2020,1,8,8,30,-6,1.27,0.022,0.63,32,645,117,7,7,-10.3,62,5,100,63,0.333,71.5,82.45,0.92,0.79,783,0.5,196,3.3
+177,2020,1,8,9,30,-3.4,1.28,0.023,0.63,49,849,280,2,7,-9.1,101,549,43,250,0.337,64.75,74.23,0.92,0.79,783,0.5,207,4.5
+178,2020,1,8,10,30,-1.1,1.31,0.023,0.63,59,932,411,0,0,-8.5,68,901,0,408,0.339,57.4,67.83,0.91,0.79,782,0.5,218,5.8
+179,2020,1,8,11,30,0.5,1.36,0.025,0.63,66,959,489,0,0,-8.3,89,884,0,479,0.341,51.67,63.85,0.91,0.79,781,0.5,227,6.2
+180,2020,1,8,12,30,1.3,1.41,0.031,0.63,72,955,509,0,7,-8.2,182,625,0,468,0.342,49.12,62.78,0.92,0.79,780,0.5,233,5.7
+181,2020,1,8,13,30,1.6,1.44,0.044,0.63,79,908,466,1,7,-8,196,542,14,427,0.344,49.02,64.77,0.93,0.79,779,0.5,238,4.9
+182,2020,1,8,14,30,1,1.41,0.073,0.63,87,784,361,0,7,-7.5,181,414,21,326,0.346,53.09,69.54,0.95,0.79,779,0.6,247,3.7
+183,2020,1,8,15,30,-0.6,1.35,0.136,0.63,83,549,211,6,4,-6.8,90,2,89,90,0.349,63.08,76.56,0.97,0.79,779,0.6,259,2.3
+184,2020,1,8,16,30,-2.5,1.32,0.204,0.63,41,192,57,7,4,-6.3,29,0,100,29,0.352,75.23,85.18,0.97,0.79,780,0.6,273,1.5
+185,2020,1,8,17,30,-3.5,1.35,0.218,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.354,80.06,95.2,0.97,0.8,780,0.6,284,1.3
+186,2020,1,8,18,30,-4.5,1.45,0.159,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.355,84.3,105.87,0.95,0.8,781,0.5,289,1.3
+187,2020,1,8,19,30,-5.6,1.54,0.085,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.356,85.91,117.02,0.93,0.8,781,0.4,294,1.4
+188,2020,1,8,20,30,-6.5,1.54,0.044,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.358,86,128.39,0.92,0.8,782,0.4,298,1.4
+189,2020,1,8,21,30,-7.4,1.51,0.028,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.359,87.03,139.66,0.91,0.8,782,0.4,298,1.4
+190,2020,1,8,22,30,-8,1.48,0.023,0.63,0,0,0,0,0,-9.7,0,0,0,0,0.36,87.73,150.24,0.91,0.8,782,0.4,297,1.4
+191,2020,1,8,23,30,-8.5,1.43,0.023,0.63,0,0,0,0,0,-10,0,0,0,0,0.36,89.11,158.7,0.92,0.8,782,0.4,290,1.3
+192,2020,1,9,0,30,-8.7,1.38,0.024,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.361,89.26,161.52,0.92,0.8,782,0.4,271,1.1
+193,2020,1,9,1,30,-9,1.37,0.022,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.363,90.47,156.54,0.92,0.8,782,0.4,243,1.1
+194,2020,1,9,2,30,-9.5,1.35,0.021,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.364,93.34,147.19,0.92,0.8,782,0.4,213,1.1
+195,2020,1,9,3,30,-10.2,1.35,0.022,0.63,0,0,0,0,4,-10.5,0,0,0,0,0.367,97.46,136.3,0.92,0.8,782,0.4,193,1.2
+196,2020,1,9,4,30,-10.9,1.37,0.023,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.373,100,124.96,0.91,0.8,782,0.4,182,1.3
+197,2020,1,9,5,30,-11.5,1.38,0.021,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.378,100,113.62,0.92,0.8,782,0.4,181,1.3
+198,2020,1,9,6,30,-11.4,1.36,0.024,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.379,100,102.57,0.93,0.8,783,0.4,183,1.3
+199,2020,1,9,7,30,-10.5,1.33,0.027,0.63,0,0,0,2,4,-11,0,0,29,0,0.38,95.78,92.09,0.93,0.8,783,0.4,184,1.7
+200,2020,1,9,8,30,-8.7,1.33,0.027,0.63,33,639,118,7,4,-10.9,71,2,100,71,0.379,84.18,82.4,0.93,0.8,783,0.4,184,2.1
+201,2020,1,9,9,30,-5.8,1.36,0.025,0.63,49,850,281,2,7,-9.6,162,42,29,173,0.377,74.74,74.17,0.92,0.8,783,0.4,195,2.7
+202,2020,1,9,10,30,-3.3,1.38,0.023,0.63,59,938,414,0,7,-8.9,230,201,7,306,0.375,65.29,67.74,0.92,0.8,783,0.4,214,3.3
+203,2020,1,9,11,30,-2.2,1.39,0.023,0.63,66,973,496,0,7,-9.2,295,166,0,368,0.373,58.91,63.74,0.92,0.8,782,0.4,231,3.7
+204,2020,1,9,12,30,-1.9,1.37,0.026,0.63,68,978,517,0,7,-9.1,281,145,0,348,0.372,57.71,62.64,0.93,0.8,782,0.4,244,3.7
+205,2020,1,9,13,30,-2,1.36,0.028,0.63,67,958,478,0,7,-9,228,33,0,242,0.37,58.99,64.61,0.94,0.8,782,0.4,251,3.3
+206,2020,1,9,14,30,-2.3,1.34,0.031,0.63,61,907,380,0,7,-8.8,118,9,0,121,0.368,61.17,69.38,0.94,0.8,782,0.4,254,2.6
+207,2020,1,9,15,30,-3.3,1.35,0.03,0.63,48,800,236,6,7,-8.8,133,36,86,141,0.365,65.98,76.39,0.94,0.8,782,0.4,248,1.5
+208,2020,1,9,16,30,-4.4,1.37,0.027,0.63,26,528,72,7,7,-9.2,37,2,100,37,0.363,69.27,85.02,0.93,0.8,783,0.4,230,0.8
+209,2020,1,9,17,30,-5.1,1.4,0.024,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.363,66.35,95.04,0.92,0.8,783,0.4,209,0.7
+210,2020,1,9,18,30,-5.7,1.44,0.02,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.364,67.05,105.71,0.92,0.8,783,0.4,202,0.6
+211,2020,1,9,19,30,-6.4,1.46,0.018,0.63,0,0,0,0,4,-11,0,0,0,0,0.366,69.94,116.86,0.92,0.8,783,0.4,213,0.7
+212,2020,1,9,20,30,-7.2,1.47,0.017,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.367,73.76,128.24,0.92,0.8,784,0.4,228,0.9
+213,2020,1,9,21,30,-7.9,1.48,0.017,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.369,77.01,139.5,0.92,0.8,784,0.4,233,1
+214,2020,1,9,22,30,-8.5,1.48,0.017,0.63,0,0,0,0,4,-11.4,0,0,0,0,0.371,79.87,150.08,0.92,0.8,784,0.4,235,1.2
+215,2020,1,9,23,30,-9,1.46,0.018,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.373,82.33,158.53,0.92,0.8,784,0.4,243,1.2
+216,2020,1,10,0,30,-9.3,1.43,0.02,0.63,0,0,0,0,4,-11.5,0,0,0,0,0.377,84.17,161.39,0.92,0.8,784,0.4,254,1.2
+217,2020,1,10,1,30,-9.4,1.4,0.022,0.63,0,0,0,0,4,-11.4,0,0,0,0,0.382,85.04,156.48,0.93,0.8,784,0.4,275,1.2
+218,2020,1,10,2,30,-9.3,1.35,0.025,0.63,0,0,0,0,4,-11.2,0,0,0,0,0.384,86.03,147.16,0.93,0.8,784,0.4,306,1.4
+219,2020,1,10,3,30,-9.3,1.31,0.026,0.63,0,0,0,0,4,-11,0,0,0,0,0.384,87.42,136.29,0.92,0.8,785,0.4,330,1.7
+220,2020,1,10,4,30,-9.8,1.32,0.021,0.63,0,0,0,0,4,-11.3,0,0,0,0,0.383,88.92,124.95,0.91,0.8,785,0.3,341,2.1
+221,2020,1,10,5,30,-10.8,1.35,0.018,0.63,0,0,0,0,4,-12.3,0,0,0,0,0.384,88.43,113.61,0.9,0.8,786,0.3,344,2.3
+222,2020,1,10,6,30,-12,1.36,0.016,0.63,0,0,0,0,4,-13.6,0,0,0,0,0.385,87.74,102.55,0.89,0.8,787,0.3,346,2.1
+223,2020,1,10,7,30,-12.1,1.36,0.015,0.63,0,0,0,2,4,-14.6,0,0,29,0,0.384,81.85,92.06,0.89,0.8,788,0.3,344,2.3
+224,2020,1,10,8,30,-10.4,1.35,0.015,0.63,30,705,124,7,4,-14.7,60,1,100,60,0.383,70.52,82.35,0.89,0.8,790,0.2,341,3.3
+225,2020,1,10,9,30,-8.4,1.37,0.014,0.63,43,901,290,2,4,-14,127,438,29,247,0.38,64.23,74.1,0.88,0.8,791,0.2,343,4.3
+226,2020,1,10,10,30,-7.4,1.38,0.013,0.63,50,984,424,0,0,-14.8,150,590,0,374,0.377,55.36,67.64,0.87,0.8,791,0.2,346,4.5
+227,2020,1,10,11,30,-6.8,1.41,0.011,0.63,53,1022,507,0,0,-16.1,53,1022,0,507,0.374,47.67,63.61,0.87,0.8,791,0.2,344,4.2
+228,2020,1,10,12,30,-6.4,1.41,0.01,0.63,53,1031,529,0,0,-17.1,53,1031,0,529,0.373,42.45,62.49,0.87,0.8,790,0.2,339,4
+229,2020,1,10,13,30,-6.2,1.41,0.01,0.63,51,1016,489,0,0,-18,51,1016,0,489,0.372,38.86,64.44,0.87,0.8,791,0.2,338,3.6
+230,2020,1,10,14,30,-6.5,1.41,0.01,0.63,46,972,391,0,0,-18.5,46,972,0,391,0.37,37.96,69.2,0.87,0.8,791,0.2,339,2.7
+231,2020,1,10,15,30,-7.6,1.41,0.01,0.63,36,875,245,1,0,-18.5,47,813,11,241,0.368,41.29,76.21,0.88,0.8,791,0.2,341,1.6
+232,2020,1,10,16,30,-9.1,1.41,0.01,0.63,24,618,79,2,0,-20.3,31,460,29,72,0.366,39.87,84.85,0.89,0.8,791,0.2,182,0.7
+233,2020,1,10,17,30,-10.3,1.4,0.012,0.63,0,0,0,0,0,-20.9,0,0,0,0,0.364,41.46,94.87,0.89,0.8,791,0.2,86,0.5
+234,2020,1,10,18,30,-11.5,1.4,0.013,0.63,0,0,0,0,0,-21.6,0,0,0,0,0.363,43.11,105.54,0.89,0.8,791,0.3,159,0.9
+235,2020,1,10,19,30,-12.8,1.41,0.012,0.63,0,0,0,0,7,-21,0,0,0,0,0.362,50.32,116.7,0.89,0.8,791,0.3,174,1.3
+236,2020,1,10,20,30,-13.8,1.4,0.012,0.63,0,0,0,0,0,-20.9,0,0,0,0,0.362,55.03,128.07,0.89,0.8,791,0.4,181,1.5
+237,2020,1,10,21,30,-14.6,1.39,0.011,0.63,0,0,0,0,0,-21.1,0,0,0,0,0.36,57.54,139.33,0.88,0.8,790,0.4,179,1.8
+238,2020,1,10,22,30,-15,1.36,0.011,0.63,0,0,0,0,0,-21.2,0,0,0,0,0.359,59.36,149.9,0.88,0.8,790,0.4,179,2.2
+239,2020,1,10,23,30,-15.3,1.33,0.012,0.63,0,0,0,0,0,-20.8,0,0,0,0,0.359,62.76,158.35,0.88,0.8,789,0.4,179,2.7
+240,2020,1,11,0,30,-15.6,1.32,0.012,0.63,0,0,0,0,0,-20.3,0,0,0,0,0.36,67.46,161.25,0.88,0.8,789,0.4,179,3
+241,2020,1,11,1,30,-15.7,1.32,0.013,0.63,0,0,0,0,0,-19.7,0,0,0,0,0.36,71.65,156.4,0.89,0.8,788,0.4,181,3.1
+242,2020,1,11,2,30,-15.6,1.3,0.015,0.63,0,0,0,0,0,-19.1,0,0,0,0,0.36,74.31,147.13,0.9,0.8,788,0.5,183,3
+243,2020,1,11,3,30,-15.3,1.26,0.019,0.63,0,0,0,0,0,-18.8,0,0,0,0,0.359,74.87,136.28,0.92,0.8,787,0.5,184,3
+244,2020,1,11,4,30,-14.8,1.23,0.022,0.63,0,0,0,0,4,-18.4,0,0,0,0,0.358,74.33,124.94,0.93,0.8,787,0.5,184,3
+245,2020,1,11,5,30,-14.3,1.22,0.024,0.63,0,0,0,0,7,-18,0,0,0,0,0.359,73.69,113.59,0.93,0.8,786,0.5,185,3
+246,2020,1,11,6,30,-14.1,1.24,0.023,0.63,0,0,0,0,7,-17.6,0,0,0,0,0.361,74.69,102.53,0.92,0.8,786,0.5,191,3
+247,2020,1,11,7,30,-13.1,1.27,0.02,0.63,0,0,0,2,4,-17.6,0,0,29,0,0.364,68.96,92.02,0.92,0.8,786,0.5,198,3.1
+248,2020,1,11,8,30,-10.6,1.24,0.022,0.63,33,641,119,7,7,-16.6,59,4,100,60,0.366,61.46,82.3,0.93,0.8,786,0.5,202,3.4
+249,2020,1,11,9,30,-8.1,1.24,0.023,0.63,49,843,281,6,7,-15,136,15,82,140,0.368,57.77,74.02,0.93,0.8,786,0.5,204,4
+250,2020,1,11,10,30,-6.1,1.24,0.023,0.63,59,929,414,0,4,-13.8,225,336,0,353,0.37,54.66,67.54,0.93,0.8,785,0.5,209,4.8
+251,2020,1,11,11,30,-4.5,1.21,0.024,0.63,65,972,499,0,4,-12.4,293,196,0,381,0.37,53.92,63.48,0.92,0.8,784,0.5,215,5.2
+252,2020,1,11,12,30,-3.4,1.25,0.022,0.63,64,988,523,0,7,-11.2,289,102,0,336,0.371,54.74,62.34,0.92,0.8,783,0.4,217,5.2
+253,2020,1,11,13,30,-2.8,1.28,0.02,0.63,62,973,484,0,4,-10.3,295,32,0,309,0.373,56.42,64.27,0.92,0.8,783,0.4,216,4.9
+254,2020,1,11,14,30,-2.9,1.29,0.021,0.63,56,924,387,0,4,-9.7,180,9,0,183,0.375,59.63,69.02,0.93,0.8,782,0.4,213,4.3
+255,2020,1,11,15,30,-4.1,1.28,0.023,0.63,46,812,242,6,4,-9.4,84,6,86,85,0.377,66.82,76.04,0.94,0.8,782,0.4,206,3.2
+256,2020,1,11,16,30,-6,1.25,0.026,0.63,28,524,77,7,4,-9.7,29,0,100,29,0.38,74.88,84.68,0.94,0.8,783,0.5,197,2.1
+257,2020,1,11,17,30,-7.1,1.22,0.032,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.383,77.03,94.7,0.95,0.8,783,0.5,194,2
+258,2020,1,11,18,30,-7.5,1.19,0.034,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.386,78.56,105.38,0.95,0.8,783,0.5,199,2.2
+259,2020,1,11,19,30,-7.8,1.18,0.032,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.388,80.14,116.54,0.95,0.8,783,0.5,206,2.2
+260,2020,1,11,20,30,-8,1.18,0.031,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.39,81.15,127.91,0.94,0.8,783,0.5,211,2
+261,2020,1,11,21,30,-8.4,1.19,0.026,0.63,0,0,0,0,6,-10.7,0,0,0,0,0.392,83.5,139.17,0.93,0.8,783,0.5,212,1.8
+262,2020,1,11,22,30,-9,1.19,0.02,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.394,86.3,149.73,0.92,0.8,783,0.4,218,1.7
+263,2020,1,11,23,30,-9.7,1.2,0.017,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.395,88.97,158.17,0.92,0.8,783,0.4,227,1.6
+264,2020,1,12,0,30,-10.3,1.2,0.014,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.393,91.43,161.1,0.91,0.8,783,0.4,237,1.5
+265,2020,1,12,1,30,-10.8,1.21,0.013,0.63,0,0,0,0,8,-11.7,0,0,0,0,0.39,93.33,156.32,0.9,0.8,784,0.4,245,1.4
+266,2020,1,12,2,30,-11.2,1.24,0.012,0.63,0,0,0,0,0,-11.9,0,0,0,0,0.386,94.87,147.09,0.9,0.8,784,0.4,250,1.3
+267,2020,1,12,3,30,-11.4,1.27,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.382,95.44,136.26,0.9,0.8,784,0.4,251,1
+268,2020,1,12,4,30,-11.5,1.28,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.379,95.86,124.93,0.9,0.8,784,0.4,235,0.8
+269,2020,1,12,5,30,-11.6,1.27,0.013,0.63,0,0,0,0,4,-11.9,0,0,0,0,0.377,97.39,113.57,0.9,0.8,785,0.4,202,0.8
+270,2020,1,12,6,30,-12.2,1.28,0.013,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.375,100,102.5,0.91,0.8,785,0.4,180,1
+271,2020,1,12,7,30,-12,1.26,0.014,0.63,0,0,0,2,0,-12.2,0,0,21,0,0.372,98.12,91.98,0.92,0.8,785,0.4,179,1.6
+272,2020,1,12,8,30,-10,1.24,0.019,0.63,33,658,122,7,8,-12.3,78,17,100,80,0.372,83.11,82.24,0.94,0.8,786,0.4,183,2.3
+273,2020,1,12,9,30,-7.5,1.21,0.024,0.63,51,850,286,1,7,-10.7,159,75,14,180,0.375,77.71,73.94,0.95,0.8,786,0.4,190,2.8
+274,2020,1,12,10,30,-6.2,1.18,0.025,0.63,62,930,419,0,7,-9.8,229,173,0,295,0.378,75.48,67.43,0.95,0.8,786,0.4,199,3.4
+275,2020,1,12,11,30,-5.8,1.15,0.028,0.63,69,962,501,0,7,-9.7,229,80,0,265,0.379,73.98,63.34,0.95,0.8,785,0.5,208,4
+276,2020,1,12,12,30,-5.6,1.14,0.03,0.63,72,971,525,0,7,-9.5,217,7,0,220,0.378,73.73,62.17,0.95,0.8,784,0.4,216,4.5
+277,2020,1,12,13,30,-5.5,1.11,0.032,0.63,71,952,487,0,7,-9.4,270,35,0,285,0.376,73.82,64.1,0.96,0.8,784,0.4,222,4.8
+278,2020,1,12,14,30,-5.5,1.08,0.038,0.63,67,893,389,0,4,-9.4,222,29,0,232,0.376,74.27,68.84,0.96,0.8,784,0.4,226,4.8
+279,2020,1,12,15,30,-5.9,1.08,0.042,0.63,54,779,244,5,4,-9.3,112,4,71,113,0.378,77.12,75.85,0.96,0.8,784,0.4,225,4.1
+280,2020,1,12,16,30,-7.2,1.1,0.04,0.63,30,509,79,7,4,-9.4,41,0,100,41,0.378,84.11,84.5,0.96,0.8,784,0.4,219,3
+281,2020,1,12,17,30,-8.8,1.15,0.034,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.375,87.9,94.52,0.95,0.8,784,0.4,211,2.3
+282,2020,1,12,18,30,-10,1.18,0.029,0.63,0,0,0,0,4,-11.3,0,0,0,0,0.371,90.42,105.21,0.94,0.8,785,0.4,206,2.3
+283,2020,1,12,19,30,-10.8,1.19,0.025,0.63,0,0,0,0,4,-11.9,0,0,0,0,0.372,91.91,116.37,0.94,0.8,784,0.3,206,2.4
+284,2020,1,12,20,30,-11.4,1.18,0.024,0.63,0,0,0,0,4,-12.2,0,0,0,0,0.374,93.95,127.74,0.94,0.8,784,0.3,207,2.5
+285,2020,1,12,21,30,-11.6,1.16,0.026,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.378,94.11,139,0.94,0.8,784,0.3,207,2.6
+286,2020,1,12,22,30,-11.5,1.16,0.027,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.382,93.81,149.55,0.94,0.8,784,0.3,205,2.5
+287,2020,1,12,23,30,-11.1,1.16,0.027,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.385,91.79,157.98,0.95,0.8,784,0.3,200,2.4
+288,2020,1,13,0,30,-10.7,1.17,0.027,0.63,0,0,0,0,7,-12,0,0,0,0,0.388,90.06,160.95,0.95,0.8,783,0.4,194,2.5
+289,2020,1,13,1,30,-10.2,1.17,0.03,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.392,88,156.24,0.96,0.8,783,0.4,187,2.7
+290,2020,1,13,2,30,-9.4,1.11,0.04,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.394,84.47,147.05,0.96,0.8,782,0.5,183,3
+291,2020,1,13,3,30,-8.6,1.01,0.053,0.63,0,0,0,0,4,-11,0,0,0,0,0.395,83.01,136.23,0.97,0.8,781,0.5,184,3.3
+292,2020,1,13,4,30,-8,0.97,0.062,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.396,84.04,124.9,0.97,0.8,781,0.5,189,3.6
+293,2020,1,13,5,30,-7.5,0.97,0.068,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.395,85.54,113.55,0.97,0.8,781,0.5,198,3.9
+294,2020,1,13,6,30,-7.5,1,0.06,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.394,89.36,102.47,0.96,0.8,782,0.5,208,4.1
+295,2020,1,13,7,30,-7.1,1.08,0.039,0.63,0,0,0,2,4,-8.9,0,0,29,0,0.394,86.86,91.93,0.94,0.8,782,0.4,216,4.8
+296,2020,1,13,8,30,-5.7,1.17,0.025,0.63,33,665,124,2,0,-8.7,44,513,25,114,0.393,79.24,82.17,0.92,0.8,783,0.3,222,5.9
+297,2020,1,13,9,30,-3.8,1.21,0.019,0.63,46,879,291,0,0,-7.9,103,593,0,268,0.391,73.17,73.84,0.91,0.8,784,0.3,228,6.5
+298,2020,1,13,10,30,-2.2,1.23,0.017,0.63,56,960,426,0,0,-7.4,56,960,0,426,0.387,67.31,67.31,0.91,0.8,784,0.3,239,7.2
+299,2020,1,13,11,30,-1.4,1.23,0.017,0.63,61,995,510,0,0,-8.7,61,995,0,510,0.383,57.39,63.19,0.91,0.8,784,0.3,247,7.6
+300,2020,1,13,12,30,-1.1,1.21,0.018,0.63,62,1005,534,0,0,-10.3,62,1005,0,534,0.38,49.79,62,0.91,0.8,784,0.3,248,7.6
+301,2020,1,13,13,30,-1.1,1.24,0.017,0.63,59,990,494,0,0,-10.8,162,688,7,465,0.379,47.86,63.91,0.91,0.8,785,0.3,246,7.4
+302,2020,1,13,14,30,-1.6,1.25,0.016,0.63,53,939,395,1,4,-10.8,143,597,18,360,0.377,49.5,68.65,0.91,0.8,785,0.4,241,6.7
+303,2020,1,13,15,30,-2.8,1.28,0.018,0.63,45,834,251,0,0,-10.6,45,834,0,251,0.374,54.79,75.67,0.92,0.8,785,0.4,235,5.5
+304,2020,1,13,16,30,-5,1.32,0.02,0.63,27,573,84,2,0,-10.8,34,451,25,79,0.372,63.79,84.32,0.92,0.8,785,0.4,227,4
+305,2020,1,13,17,30,-7.1,1.33,0.023,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.37,69.41,94.34,0.92,0.78,786,0.4,220,2.9
+306,2020,1,13,18,30,-8.4,1.31,0.024,0.63,0,0,0,0,4,-12.4,0,0,0,0,0.368,72.79,105.03,0.92,0.78,786,0.4,211,2.4
+307,2020,1,13,19,30,-9.1,1.27,0.025,0.63,0,0,0,0,4,-12.9,0,0,0,0,0.368,74.14,116.2,0.92,0.78,785,0.4,203,2.3
+308,2020,1,13,20,30,-9.3,1.2,0.025,0.63,0,0,0,0,4,-12.9,0,0,0,0,0.369,74.87,127.57,0.93,0.78,785,0.4,200,2.5
+309,2020,1,13,21,30,-9.1,1.13,0.026,0.63,0,0,0,0,4,-12.6,0,0,0,0,0.37,75.77,138.82,0.93,0.78,785,0.5,199,2.9
+310,2020,1,13,22,30,-8.8,1.1,0.026,0.63,0,0,0,0,4,-11.8,0,0,0,0,0.369,78.64,149.37,0.93,0.78,785,0.5,200,3.3
+311,2020,1,13,23,30,-8.5,1.07,0.024,0.63,0,0,0,0,0,-11,0,0,0,0,0.368,82.16,157.79,0.92,0.78,784,0.5,200,3.8
+312,2020,1,14,0,30,-8.5,1.08,0.023,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.367,86.17,160.78,0.92,0.78,784,0.5,201,4
+313,2020,1,14,1,30,-8.5,1.1,0.021,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.364,87.58,156.14,0.91,0.78,784,0.4,201,4
+314,2020,1,14,2,30,-8.5,1.13,0.02,0.63,0,0,0,0,4,-10.2,0,0,0,0,0.361,87.68,147,0.91,0.78,784,0.4,201,3.8
+315,2020,1,14,3,30,-8.6,1.15,0.021,0.63,0,0,0,0,7,-10.2,0,0,0,0,0.358,88.19,136.2,0.92,0.78,783,0.4,199,3.6
+316,2020,1,14,4,30,-8.4,1.17,0.024,0.63,0,0,0,0,4,-10.2,0,0,0,0,0.357,86.87,124.88,0.92,0.78,783,0.5,196,3.7
+317,2020,1,14,5,30,-7.8,1.21,0.03,0.63,0,0,0,0,0,-10,0,0,0,0,0.357,84.27,113.52,0.93,0.78,783,0.5,195,3.8
+318,2020,1,14,6,30,-7.2,1.26,0.037,0.63,0,0,0,0,0,-9.6,0,0,0,0,0.358,82.64,102.42,0.93,0.78,783,0.5,197,4.2
+319,2020,1,14,7,30,-6,1.31,0.044,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.36,77.33,91.87,0.93,0.78,783,0.5,201,5
+320,2020,1,14,8,30,-4.2,1.36,0.043,0.63,37,602,120,2,0,-8.6,48,468,21,112,0.363,71.46,82.1,0.93,0.78,783,0.5,204,5.9
+321,2020,1,14,9,30,-2,1.39,0.036,0.63,54,831,287,0,0,-7.5,61,796,7,284,0.364,65.94,73.75,0.92,0.78,783,0.5,209,7
+322,2020,1,14,10,30,0.1,1.38,0.03,0.63,62,933,424,0,0,-6.6,62,933,0,424,0.363,60.76,67.18,0.91,0.78,783,0.4,217,7.8
+323,2020,1,14,11,30,1.6,1.35,0.026,0.63,66,977,509,0,0,-6.1,66,977,0,509,0.361,56.48,63.04,0.91,0.78,782,0.4,224,8.1
+324,2020,1,14,12,30,2.3,1.28,0.024,0.63,67,988,533,0,0,-6.2,67,988,0,533,0.358,53.54,61.83,0.92,0.78,782,0.4,230,8.4
+325,2020,1,14,13,30,2.5,1.23,0.024,0.63,65,970,494,0,0,-6.6,65,970,0,494,0.357,51.17,63.72,0.92,0.78,781,0.4,235,8.5
+326,2020,1,14,14,30,2,1.2,0.026,0.63,59,914,395,0,0,-6.9,59,914,0,395,0.357,51.73,68.46,0.92,0.78,781,0.5,237,7.9
+327,2020,1,14,15,30,0.5,1.19,0.029,0.63,49,800,250,0,0,-6.8,49,800,0,250,0.36,58.2,75.48,0.92,0.78,782,0.5,239,6.4
+328,2020,1,14,16,30,-1.8,1.16,0.033,0.63,31,520,84,0,0,-6.8,31,520,0,84,0.362,68.76,84.14,0.92,0.78,783,0.5,242,4.6
+329,2020,1,14,17,30,-3.5,1.09,0.039,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.361,74.21,94.16,0.93,0.8,784,0.5,251,3.5
+330,2020,1,14,18,30,-4.3,1.06,0.044,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.36,77.11,104.86,0.93,0.8,785,0.5,265,2.9
+331,2020,1,14,19,30,-5.4,1.09,0.04,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.363,81.06,116.03,0.92,0.8,785,0.4,275,2.3
+332,2020,1,14,20,30,-6.7,1.15,0.03,0.63,0,0,0,0,4,-9,0,0,0,0,0.363,83.94,127.4,0.92,0.8,786,0.4,279,1.9
+333,2020,1,14,21,30,-7.9,1.21,0.022,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.358,85.4,138.65,0.92,0.8,787,0.3,277,1.5
+334,2020,1,14,22,30,-8.5,1.27,0.018,0.63,0,0,0,0,4,-10.7,0,0,0,0,0.351,84.11,149.18,0.91,0.8,787,0.3,266,1.3
+335,2020,1,14,23,30,-9,1.28,0.015,0.63,0,0,0,0,4,-11.2,0,0,0,0,0.346,84.19,157.6,0.91,0.8,788,0.3,243,1.3
+336,2020,1,15,0,30,-9.5,1.26,0.013,0.63,0,0,0,0,4,-11.4,0,0,0,0,0.342,85.71,160.61,0.91,0.8,788,0.3,225,1.4
+337,2020,1,15,1,30,-10,1.26,0.012,0.63,0,0,0,0,0,-11.6,0,0,0,0,0.338,88.32,156.04,0.91,0.8,788,0.3,222,1.4
+338,2020,1,15,2,30,-10.5,1.26,0.013,0.63,0,0,0,0,0,-11.6,0,0,0,0,0.335,91.33,146.94,0.92,0.8,789,0.3,224,1.4
+339,2020,1,15,3,30,-10.7,1.24,0.015,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.336,91.56,136.16,0.92,0.8,789,0.3,226,1.4
+340,2020,1,15,4,30,-10.9,1.26,0.016,0.63,0,0,0,0,0,-12,0,0,0,0,0.337,91.81,124.84,0.92,0.8,789,0.3,226,1.4
+341,2020,1,15,5,30,-11.1,1.28,0.016,0.63,0,0,0,0,0,-12.1,0,0,0,0,0.339,92.23,113.48,0.92,0.8,789,0.3,228,1.4
+342,2020,1,15,6,30,-11.1,1.33,0.017,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.341,91.62,102.38,0.92,0.8,790,0.3,231,1.4
+343,2020,1,15,7,30,-10,1.36,0.017,0.63,3,45,2,1,8,-12.2,3,22,14,2,0.343,83.99,91.81,0.92,0.8,791,0.3,236,1.3
+344,2020,1,15,8,30,-7.6,1.39,0.017,0.63,33,694,129,7,4,-11.7,83,39,96,88,0.343,72.33,82.02,0.91,0.8,791,0.3,238,1.4
+345,2020,1,15,9,30,-4.5,1.41,0.017,0.63,47,886,297,0,4,-10.4,143,383,7,251,0.342,63.34,73.64,0.91,0.8,792,0.3,238,1.8
+346,2020,1,15,10,30,-1.9,1.42,0.017,0.63,57,960,431,0,0,-10.7,87,847,0,417,0.341,51.01,67.05,0.91,0.8,792,0.4,239,2.5
+347,2020,1,15,11,30,-0.5,1.45,0.018,0.63,61,993,514,0,0,-11.2,61,993,0,514,0.339,44.35,62.88,0.91,0.8,792,0.4,239,2.9
+348,2020,1,15,12,30,0.2,1.46,0.018,0.63,63,998,537,0,0,-10.6,63,998,0,537,0.336,43.96,61.65,0.91,0.8,792,0.4,237,2.9
+349,2020,1,15,13,30,0.6,1.47,0.018,0.63,62,986,501,0,0,-10.3,62,986,0,501,0.333,43.96,63.53,0.91,0.8,791,0.4,237,2.6
+350,2020,1,15,14,30,0.4,1.47,0.019,0.63,56,946,406,0,0,-9.7,108,757,0,388,0.33,46.69,68.26,0.91,0.8,791,0.4,235,1.9
+351,2020,1,15,15,30,-0.7,1.46,0.019,0.63,45,850,261,0,0,-9.4,45,850,0,261,0.328,51.72,75.28,0.91,0.8,791,0.4,210,0.8
+352,2020,1,15,16,30,-2.8,1.45,0.019,0.63,28,608,92,6,4,-10.9,55,153,79,71,0.325,53.5,83.95,0.91,0.8,792,0.4,133,0.6
+353,2020,1,15,17,30,-5.2,1.44,0.019,0.63,0,0,0,0,4,-12.4,0,0,0,0,0.322,57.2,93.98,0.91,0.78,792,0.4,80,1.2
+354,2020,1,15,18,30,-6.9,1.42,0.019,0.63,0,0,0,0,4,-12.5,0,0,0,0,0.318,64.51,104.68,0.9,0.78,792,0.4,83,1.4
+355,2020,1,15,19,30,-7.9,1.39,0.019,0.63,0,0,0,0,8,-12.6,0,0,0,0,0.316,69.12,115.85,0.9,0.78,792,0.4,89,1.5
+356,2020,1,15,20,30,-8.4,1.34,0.02,0.63,0,0,0,0,4,-12.3,0,0,0,0,0.315,73.22,127.23,0.9,0.78,792,0.4,97,1.4
+357,2020,1,15,21,30,-8.6,1.29,0.02,0.63,0,0,0,0,7,-12,0,0,0,0,0.314,76.6,138.47,0.9,0.78,792,0.4,107,1.3
+358,2020,1,15,22,30,-8.8,1.25,0.02,0.63,0,0,0,0,8,-11.7,0,0,0,0,0.314,79.71,149,0.91,0.78,792,0.4,120,1.3
+359,2020,1,15,23,30,-8.9,1.22,0.021,0.63,0,0,0,0,8,-11.5,0,0,0,0,0.313,81.28,157.4,0.91,0.78,792,0.4,131,1.3
+360,2020,1,16,0,30,-8.9,1.2,0.023,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.311,81.52,160.43,0.92,0.78,791,0.4,140,1.2
+361,2020,1,16,1,30,-8.8,1.19,0.024,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.311,81.01,155.92,0.92,0.78,791,0.4,148,1.4
+362,2020,1,16,2,30,-8.6,1.2,0.025,0.63,0,0,0,0,8,-11.5,0,0,0,0,0.31,79.81,146.87,0.92,0.78,791,0.4,155,1.6
+363,2020,1,16,3,30,-8.6,1.21,0.025,0.63,0,0,0,0,8,-11.5,0,0,0,0,0.31,79.74,136.11,0.92,0.78,791,0.4,160,1.6
+364,2020,1,16,4,30,-8.6,1.24,0.025,0.63,0,0,0,0,8,-11.6,0,0,0,0,0.31,78.94,124.8,0.92,0.78,791,0.4,165,1.6
+365,2020,1,16,5,30,-8.7,1.27,0.024,0.63,0,0,0,0,8,-12,0,0,0,0,0.31,77.2,113.43,0.92,0.78,791,0.4,168,1.6
+366,2020,1,16,6,30,-8.9,1.31,0.022,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.311,74.67,102.32,0.91,0.78,791,0.4,171,1.6
+367,2020,1,16,7,30,-7.9,1.32,0.02,0.63,3,43,2,2,8,-13.3,3,22,21,2,0.31,65.4,91.74,0.9,0.78,791,0.4,173,1.7
+368,2020,1,16,8,30,-5.2,1.33,0.019,0.63,32,688,129,7,8,-12.7,83,85,96,95,0.309,55.78,81.93,0.9,0.78,791,0.4,179,2.3
+369,2020,1,16,9,30,-2,1.33,0.018,0.63,47,881,297,1,0,-11.2,73,759,14,288,0.307,49.33,73.53,0.89,0.78,791,0.4,190,3.1
+370,2020,1,16,10,30,0.9,1.33,0.017,0.63,56,957,431,0,0,-9.3,56,957,0,431,0.304,46.3,66.91,0.89,0.78,791,0.4,203,4.3
+371,2020,1,16,11,30,2.9,1.33,0.018,0.63,62,992,517,0,0,-7.4,62,992,0,517,0.3,46.87,62.71,0.9,0.78,790,0.4,210,5.7
+372,2020,1,16,12,30,4.1,1.33,0.019,0.63,64,1000,542,0,0,-6.2,64,1000,0,542,0.296,46.94,61.46,0.9,0.78,789,0.4,211,6.3
+373,2020,1,16,13,30,4.7,1.33,0.019,0.63,62,979,501,0,0,-5.7,62,979,0,501,0.292,46.88,63.33,0.9,0.78,789,0.5,209,6.4
+374,2020,1,16,14,30,4.4,1.33,0.02,0.63,56,933,405,0,7,-5.5,119,694,14,378,0.29,48.7,68.06,0.91,0.78,788,0.5,208,5.6
+375,2020,1,16,15,30,2.4,1.32,0.02,0.63,46,835,261,4,7,-5.1,150,236,57,211,0.289,57.63,75.08,0.91,0.78,788,0.5,208,4.2
+376,2020,1,16,16,30,-0.7,1.3,0.021,0.63,30,590,94,7,7,-5.5,59,10,100,60,0.289,69.86,83.76,0.92,0.78,788,0.5,206,3.1
+377,2020,1,16,17,30,-2.4,1.29,0.022,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.293,72.5,93.79,0.92,0.71,788,0.5,200,2.6
+378,2020,1,16,18,30,-2.8,1.29,0.022,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.297,74.33,104.5,0.92,0.71,788,0.5,192,2.4
+379,2020,1,16,19,30,-2.8,1.29,0.022,0.63,0,0,0,0,7,-6.6,0,0,0,0,0.301,75.31,115.68,0.92,0.71,787,0.5,186,2.6
+380,2020,1,16,20,30,-2.7,1.29,0.023,0.63,0,0,0,0,4,-6.1,0,0,0,0,0.303,77.47,127.05,0.93,0.71,787,0.5,185,2.9
+381,2020,1,16,21,30,-2.8,1.28,0.024,0.63,0,0,0,0,7,-5.3,0,0,0,0,0.305,82.72,138.29,0.93,0.71,786,0.5,188,3
+382,2020,1,16,22,30,-3,1.3,0.026,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.307,89.26,148.8,0.93,0.71,786,0.6,193,3
+383,2020,1,16,23,30,-3.2,1.32,0.031,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.31,94.89,157.19,0.93,0.71,785,0.6,196,2.9
+384,2020,1,17,0,30,-3.3,1.34,0.034,0.63,0,0,0,0,4,-3.4,0,0,0,0,0.312,98.97,160.25,0.94,0.71,785,0.7,195,2.9
+385,2020,1,17,1,30,-3.4,1.36,0.034,0.63,0,0,0,0,6,-3.4,0,0,0,0,0.314,100,155.8,0.94,0.71,784,0.7,191,2.9
+386,2020,1,17,2,30,-3.5,1.35,0.034,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.317,100,146.8,0.95,0.71,783,0.7,190,2.8
+387,2020,1,17,3,30,-3.5,1.31,0.036,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.324,100,136.06,0.95,0.71,783,0.7,191,2.9
+388,2020,1,17,4,30,-3.4,1.28,0.04,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.331,98.74,124.75,0.96,0.71,782,0.7,190,3.3
+389,2020,1,17,5,30,-3.2,1.25,0.045,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.336,97.39,113.38,0.96,0.71,782,0.7,188,4
+390,2020,1,17,6,30,-3,1.23,0.047,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.341,96.11,102.26,0.96,0.71,781,0.6,187,4.5
+391,2020,1,17,7,30,-2.6,1.19,0.047,0.63,3,22,2,2,6,-3.5,1,0,29,1,0.349,93.41,91.67,0.96,0.71,781,0.6,190,5.2
+392,2020,1,17,8,30,-2.1,1.11,0.059,0.63,43,543,120,7,7,-3.3,42,1,100,42,0.358,91.38,81.84,0.97,0.71,781,0.6,207,5.9
+393,2020,1,17,9,30,-1.8,1.09,0.067,0.63,64,771,284,0,4,-3.4,145,92,0,171,0.363,88.6,73.41,0.96,0.71,781,0.6,250,6.7
+394,2020,1,17,10,30,-1.9,1.14,0.052,0.63,71,898,425,0,7,-5.7,206,140,0,261,0.368,75.21,66.76,0.95,0.71,782,0.5,294,8
+395,2020,1,17,11,30,-1.9,1.16,0.037,0.63,70,968,516,0,6,-9.3,176,15,0,183,0.373,56.95,62.54,0.94,0.71,783,0.4,305,8.4
+396,2020,1,17,12,30,-1.7,1.19,0.025,0.63,65,1002,547,0,7,-11.1,269,322,7,424,0.374,48.59,61.26,0.93,0.71,784,0.3,298,8
+397,2020,1,17,13,30,-1.6,1.24,0.018,0.63,57,1002,510,0,6,-11.9,189,6,0,192,0.371,45.41,63.12,0.91,0.71,785,0.3,294,7.6
+398,2020,1,17,14,30,-2,1.31,0.013,0.63,48,968,413,0,7,-12.4,212,229,0,298,0.361,44.74,67.85,0.88,0.71,787,0.3,294,7.2
+399,2020,1,17,15,30,-3.1,1.36,0.01,0.63,38,882,268,4,4,-12.8,152,242,57,215,0.347,47.15,74.88,0.87,0.71,788,0.3,295,6.3
+400,2020,1,17,16,30,-5.1,1.34,0.01,0.63,25,659,99,7,4,-13,59,2,100,59,0.332,53.92,83.56,0.87,0.71,790,0.3,298,4.8
+401,2020,1,17,17,30,-7.1,1.32,0.01,0.63,0,0,0,0,4,-13.5,0,0,0,0,0.321,60.49,93.6,0.88,0.8,791,0.3,301,3.5
+402,2020,1,17,18,30,-8.4,1.31,0.01,0.63,0,0,0,0,7,-13.5,0,0,0,0,0.315,66.39,104.32,0.89,0.8,792,0.3,301,2.9
+403,2020,1,17,19,30,-9.5,1.29,0.01,0.63,0,0,0,0,4,-13.6,0,0,0,0,0.312,71.97,115.5,0.89,0.8,793,0.3,298,2.4
+404,2020,1,17,20,30,-10.3,1.27,0.01,0.63,0,0,0,0,4,-13.7,0,0,0,0,0.31,75.95,126.87,0.9,0.8,794,0.2,296,2
+405,2020,1,17,21,30,-10.7,1.25,0.011,0.63,0,0,0,0,4,-13.8,0,0,0,0,0.308,77.9,138.11,0.9,0.8,794,0.2,295,1.6
+406,2020,1,17,22,30,-10.8,1.24,0.011,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.307,78.41,148.61,0.91,0.8,795,0.3,285,1.3
+407,2020,1,17,23,30,-11.1,1.22,0.012,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.304,79.95,156.98,0.92,0.8,795,0.3,263,1.2
+408,2020,1,18,0,30,-11.5,1.2,0.013,0.63,0,0,0,0,8,-14,0,0,0,0,0.302,81.68,160.05,0.92,0.8,795,0.3,249,1.3
+409,2020,1,18,1,30,-11.6,1.2,0.015,0.63,0,0,0,0,8,-14.2,0,0,0,0,0.301,80.71,155.68,0.93,0.8,796,0.4,244,1.3
+410,2020,1,18,2,30,-11.5,1.2,0.016,0.63,0,0,0,0,8,-14.2,0,0,0,0,0.3,80.1,146.72,0.93,0.8,796,0.4,236,1.2
+411,2020,1,18,3,30,-11.5,1.2,0.016,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.302,79.66,136,0.93,0.8,796,0.4,228,1.1
+412,2020,1,18,4,30,-11.6,1.21,0.016,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.304,80.07,124.7,0.93,0.8,796,0.5,213,1
+413,2020,1,18,5,30,-12.1,1.22,0.016,0.63,0,0,0,0,7,-14.4,0,0,0,0,0.309,82.88,113.33,0.93,0.8,796,0.5,195,1.1
+414,2020,1,18,6,30,-12.5,1.22,0.018,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.313,84.95,102.2,0.93,0.8,797,0.5,184,1.1
+415,2020,1,18,7,30,-11.8,1.23,0.018,0.63,4,43,3,2,6,-14.6,1,0,29,1,0.315,80,91.59,0.93,0.8,797,0.5,178,1.6
+416,2020,1,18,8,30,-9.5,1.23,0.018,0.63,34,670,130,7,6,-14.2,46,1,100,46,0.315,68.58,81.73,0.93,0.8,797,0.5,179,2.3
+417,2020,1,18,9,30,-6.3,1.25,0.018,0.63,49,860,296,0,7,-12.9,180,60,0,197,0.315,59.35,73.28,0.93,0.8,797,0.6,201,2.7
+418,2020,1,18,10,30,-3.8,1.26,0.019,0.63,58,942,432,0,7,-13.2,254,227,0,344,0.315,48.16,66.61,0.92,0.8,798,0.6,226,2.9
+419,2020,1,18,11,30,-2.5,1.27,0.018,0.63,63,979,517,0,7,-13.3,290,263,0,412,0.314,43.14,62.36,0.92,0.8,797,0.6,235,2.9
+420,2020,1,18,12,30,-1.6,1.28,0.018,0.63,63,993,544,0,7,-12.9,198,612,0,494,0.312,41.72,61.06,0.91,0.8,797,0.5,235,2.8
+421,2020,1,18,13,30,-1.2,1.28,0.016,0.63,61,981,508,0,7,-12.4,186,566,0,444,0.311,42.3,62.9,0.91,0.8,797,0.5,230,2.6
+422,2020,1,18,14,30,-1.3,1.25,0.017,0.63,56,938,413,0,0,-11.7,132,643,7,377,0.309,45.12,67.63,0.91,0.8,797,0.5,226,2.5
+423,2020,1,18,15,30,-2.6,1.2,0.018,0.63,46,843,269,2,7,-10.8,112,479,36,239,0.308,53.17,74.67,0.91,0.8,797,0.5,219,2
+424,2020,1,18,16,30,-4.9,1.18,0.018,0.63,29,610,100,7,4,-11.1,60,1,100,60,0.307,61.83,83.36,0.91,0.8,798,0.5,210,1.4
+425,2020,1,18,17,30,-6.6,1.17,0.019,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.307,62.55,93.41,0.9,0.8,798,0.5,202,1.3
+426,2020,1,18,18,30,-7.3,1.18,0.019,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.307,62.38,104.13,0.9,0.8,798,0.5,200,1.2
+427,2020,1,18,19,30,-7.7,1.19,0.019,0.63,0,0,0,0,0,-13.7,0,0,0,0,0.308,61.95,115.32,0.9,0.8,798,0.5,198,1
+428,2020,1,18,20,30,-8,1.22,0.02,0.63,0,0,0,0,0,-14,0,0,0,0,0.309,62.02,126.69,0.9,0.8,799,0.5,190,0.8
+429,2020,1,18,21,30,-8.3,1.24,0.02,0.63,0,0,0,0,0,-14.2,0,0,0,0,0.311,62.64,137.92,0.9,0.8,799,0.5,177,0.8
+430,2020,1,18,22,30,-8.8,1.25,0.019,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.313,64.58,148.41,0.9,0.8,799,0.5,168,0.9
+431,2020,1,18,23,30,-9.2,1.24,0.018,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.312,66.04,156.76,0.89,0.8,799,0.5,163,1
+432,2020,1,19,0,30,-9.5,1.23,0.016,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.31,67.11,159.85,0.88,0.8,799,0.5,157,0.9
+433,2020,1,19,1,30,-9.7,1.22,0.016,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.307,67.81,155.54,0.88,0.8,799,0.5,150,0.8
+434,2020,1,19,2,30,-10,1.23,0.016,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.304,69.35,146.63,0.88,0.8,799,0.4,143,0.6
+435,2020,1,19,3,30,-10.2,1.23,0.017,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.303,70.95,135.93,0.88,0.8,800,0.4,136,0.4
+436,2020,1,19,4,30,-10.5,1.22,0.018,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.303,73.28,124.64,0.89,0.8,800,0.4,124,0.4
+437,2020,1,19,5,30,-10.8,1.2,0.018,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.303,75.17,113.27,0.88,0.8,800,0.4,123,0.4
+438,2020,1,19,6,30,-11,1.19,0.017,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.303,75.93,102.13,0.88,0.8,800,0.4,141,0.4
+439,2020,1,19,7,30,-10.3,1.17,0.017,0.63,4,46,3,0,0,-14.5,4,46,7,3,0.303,71.51,91.5,0.88,0.8,801,0.4,148,0.5
+440,2020,1,19,8,30,-8.1,1.16,0.017,0.63,34,689,134,0,0,-13.8,35,666,4,132,0.304,63.31,81.63,0.88,0.8,801,0.4,147,0.7
+441,2020,1,19,9,30,-5.5,1.17,0.018,0.63,48,878,303,0,0,-12.5,48,878,0,303,0.306,57.8,73.15,0.88,0.8,801,0.4,147,0.8
+442,2020,1,19,10,30,-3.2,1.19,0.017,0.63,57,959,440,0,0,-11.4,57,959,0,440,0.307,53.14,66.45,0.88,0.8,801,0.4,105,0.6
+443,2020,1,19,11,30,-1.4,1.22,0.017,0.63,61,995,526,0,0,-10.5,61,995,0,526,0.308,50.03,62.17,0.88,0.8,800,0.4,40,0.5
+444,2020,1,19,12,30,-0.2,1.26,0.017,0.63,62,1006,552,0,0,-9.4,62,1006,0,552,0.307,49.83,60.85,0.87,0.8,800,0.4,25,0.7
+445,2020,1,19,13,30,0.4,1.29,0.016,0.63,60,993,516,0,0,-8.6,60,993,0,516,0.304,50.95,62.69,0.87,0.8,800,0.4,49,0.6
+446,2020,1,19,14,30,0.5,1.29,0.016,0.63,54,953,420,0,0,-8.3,54,953,0,420,0.303,51.62,67.41,0.86,0.8,800,0.4,79,0.7
+447,2020,1,19,15,30,-0.7,1.31,0.015,0.63,44,866,276,0,0,-7.9,44,866,0,276,0.3,58.16,74.46,0.85,0.8,800,0.4,111,0.8
+448,2020,1,19,16,30,-3.1,1.3,0.014,0.63,28,654,106,0,0,-7.7,28,654,0,106,0.297,70.3,83.16,0.85,0.8,799,0.4,129,1
+449,2020,1,19,17,30,-4.8,1.29,0.014,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.294,69.71,93.22,0.85,0.79,800,0.3,139,1.1
+450,2020,1,19,18,30,-5.5,1.29,0.014,0.63,0,0,0,0,4,-10,0,0,0,0,0.289,70.73,103.94,0.85,0.79,800,0.3,161,1
+451,2020,1,19,19,30,-5.9,1.29,0.014,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.286,70.55,115.14,0.85,0.79,800,0.3,176,0.9
+452,2020,1,19,20,30,-6.2,1.28,0.014,0.63,0,0,0,0,8,-10.6,0,0,0,0,0.283,70.84,126.51,0.85,0.79,800,0.3,159,0.8
+453,2020,1,19,21,30,-6.7,1.28,0.014,0.63,0,0,0,0,8,-10.7,0,0,0,0,0.28,73.29,137.73,0.85,0.79,800,0.3,137,0.9
+454,2020,1,19,22,30,-7.1,1.28,0.014,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.277,75.47,148.21,0.85,0.79,800,0.3,140,1
+455,2020,1,19,23,30,-7.4,1.29,0.013,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.274,77.26,156.54,0.85,0.79,799,0.3,143,0.9
+456,2020,1,20,0,30,-7.6,1.29,0.013,0.63,0,0,0,0,8,-10.7,0,0,0,0,0.272,78.32,159.65,0.85,0.79,799,0.3,124,0.9
+457,2020,1,20,1,30,-8,1.29,0.013,0.63,0,0,0,0,8,-10.9,0,0,0,0,0.271,79.78,155.4,0.85,0.79,799,0.3,105,0.9
+458,2020,1,20,2,30,-8.5,1.28,0.014,0.63,0,0,0,0,8,-11.2,0,0,0,0,0.27,81,146.53,0.86,0.79,799,0.3,99,0.9
+459,2020,1,20,3,30,-8.9,1.27,0.015,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.269,80.8,135.86,0.87,0.79,799,0.2,96,0.8
+460,2020,1,20,4,30,-9.3,1.26,0.015,0.63,0,0,0,0,7,-12.1,0,0,0,0,0.268,79.83,124.57,0.88,0.79,799,0.2,99,0.9
+461,2020,1,20,5,30,-9.5,1.26,0.015,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.267,76.72,113.2,0.88,0.79,798,0.2,105,0.9
+462,2020,1,20,6,30,-9.5,1.25,0.015,0.63,0,0,0,0,7,-13.7,0,0,0,0,0.267,71.64,102.05,0.89,0.79,798,0.3,113,0.9
+463,2020,1,20,7,30,-8.6,1.24,0.016,0.63,4,50,3,2,8,-14.6,1,0,29,1,0.267,62.14,91.41,0.89,0.79,798,0.3,131,0.6
+464,2020,1,20,8,30,-6.7,1.24,0.016,0.63,34,714,139,7,7,-14.4,72,13,100,74,0.267,54.45,81.52,0.9,0.79,798,0.3,177,0.5
+465,2020,1,20,9,30,-4.7,1.24,0.017,0.63,49,898,311,0,7,-14.1,196,89,0,222,0.267,47.98,73.01,0.91,0.79,798,0.3,225,0.4
+466,2020,1,20,10,30,-2.5,1.22,0.018,0.63,57,976,450,0,7,-12.6,271,118,0,318,0.267,45.93,66.28,0.91,0.79,798,0.3,226,0.9
+467,2020,1,20,11,30,-0.5,1.23,0.017,0.63,62,1000,532,0,7,-11.1,295,312,0,442,0.267,44.49,61.97,0.91,0.79,797,0.4,210,1.9
+468,2020,1,20,12,30,0.8,1.23,0.016,0.63,64,1009,559,0,6,-10.3,345,154,0,421,0.266,43.3,60.63,0.91,0.79,797,0.4,209,2.5
+469,2020,1,20,13,30,1.5,1.21,0.017,0.63,62,988,519,0,6,-9.7,250,19,0,259,0.265,43.22,62.46,0.91,0.79,796,0.5,209,2.8
+470,2020,1,20,14,30,1.4,1.2,0.017,0.63,57,945,423,0,6,-9.3,194,16,0,200,0.264,44.98,67.19,0.91,0.79,795,0.5,212,2.6
+471,2020,1,20,15,30,0.1,1.19,0.017,0.63,47,845,277,3,7,-8.2,139,30,43,147,0.263,53.73,74.24,0.92,0.79,795,0.6,217,1.9
+472,2020,1,20,16,30,-1.6,1.17,0.019,0.63,31,611,106,7,6,-7.7,39,1,100,39,0.261,63.35,82.96,0.93,0.79,795,0.7,219,1.3
+473,2020,1,20,17,30,-2.4,1.17,0.02,0.63,0,0,0,0,7,-8.2,0,0,7,0,0.26,64.48,93.02,0.94,0.7,795,0.8,217,1.3
+474,2020,1,20,18,30,-2.6,1.17,0.022,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.26,66.01,103.76,0.94,0.7,795,0.9,213,1.3
+475,2020,1,20,19,30,-2.7,1.19,0.022,0.63,0,0,0,0,7,-7.8,0,0,0,0,0.263,68.05,114.95,0.94,0.7,794,1,206,1.3
+476,2020,1,20,20,30,-2.8,1.2,0.024,0.63,0,0,0,0,6,-7.3,0,0,0,0,0.267,70.88,126.33,0.95,0.7,794,1.1,199,1.2
+477,2020,1,20,21,30,-3,1.21,0.027,0.63,0,0,0,0,6,-7,0,0,0,0,0.27,73.95,137.54,0.95,0.7,793,1.1,198,1.1
+478,2020,1,20,22,30,-3.2,1.21,0.031,0.63,0,0,0,0,6,-6.7,0,0,0,0,0.272,76.5,148.01,0.95,0.7,793,1.1,200,1.1
+479,2020,1,20,23,30,-3.4,1.21,0.033,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.274,79.06,156.32,0.95,0.7,793,1.1,202,1
+480,2020,1,21,0,30,-3.6,1.24,0.033,0.63,0,0,0,0,6,-6.6,0,0,0,0,0.277,79.43,159.43,0.95,0.7,792,1,204,0.9
+481,2020,1,21,1,30,-3.8,1.24,0.037,0.63,0,0,0,0,6,-6.9,0,0,0,0,0.277,79.2,155.24,0.95,0.7,791,1,210,1
+482,2020,1,21,2,30,-4,1.24,0.042,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.276,79.32,146.43,0.96,0.7,791,1,217,1.1
+483,2020,1,21,3,30,-4.1,1.25,0.047,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.275,79.11,135.78,0.96,0.7,791,0.9,220,1.2
+484,2020,1,21,4,30,-4.3,1.27,0.046,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.276,79.26,124.5,0.96,0.7,790,0.9,221,1.3
+485,2020,1,21,5,30,-4.4,1.27,0.047,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.278,79.24,113.12,0.96,0.7,790,0.9,220,1.4
+486,2020,1,21,6,30,-4.3,1.26,0.049,0.63,0,0,0,0,6,-7.4,0,0,0,0,0.279,79.06,101.96,0.96,0.7,790,0.9,216,1.4
+487,2020,1,21,7,30,-3.6,1.26,0.048,0.63,4,29,3,2,6,-7.2,1,0,36,1,0.28,76.12,91.31,0.96,0.7,789,0.9,213,1.6
+488,2020,1,21,8,30,-2.2,1.26,0.048,0.63,41,580,128,7,6,-6.3,30,0,100,30,0.281,73.56,81.4,0.96,0.7,789,0.9,210,2.2
+489,2020,1,21,9,30,-0.8,1.26,0.048,0.63,61,787,293,0,6,-5.5,115,6,0,117,0.281,70.58,72.87,0.96,0.7,789,1,209,3.1
+490,2020,1,21,10,30,0.3,1.25,0.048,0.63,73,876,428,0,7,-4.3,207,19,0,215,0.28,71.3,66.11,0.96,0.7,788,1,213,3.7
+491,2020,1,21,11,30,1,1.25,0.049,0.63,79,915,512,0,7,-3.2,234,17,0,242,0.279,73.41,61.77,0.96,0.7,788,1,219,4.2
+492,2020,1,21,12,30,1.3,1.23,0.051,0.63,82,925,539,0,7,-2.6,309,81,0,349,0.28,75.12,60.41,0.96,0.7,787,1,223,4.3
+493,2020,1,21,13,30,1.3,1.23,0.051,0.63,80,909,504,0,4,-2.3,319,179,0,402,0.282,76.7,62.23,0.96,0.7,787,1,225,4
+494,2020,1,21,14,30,1.1,1.23,0.053,0.63,74,856,409,0,4,-2.2,234,16,0,240,0.283,78.35,66.96,0.96,0.7,786,1,229,3.5
+495,2020,1,21,15,30,0,1.22,0.058,0.63,63,742,267,3,4,-2.2,137,14,43,141,0.282,85.38,74.02,0.97,0.7,786,1,231,2.4
+496,2020,1,21,16,30,-1.4,1.21,0.065,0.63,41,479,101,7,7,-2.2,31,0,100,31,0.282,94.38,82.76,0.97,0.7,786,1,228,1.4
+497,2020,1,21,17,30,-2.3,1.21,0.073,0.63,0,0,0,1,7,-2.5,0,0,14,0,0.284,98.8,92.82,0.97,0.72,787,0.9,226,1.2
+498,2020,1,21,18,30,-2.8,1.22,0.078,0.63,0,0,0,0,7,-2.8,0,0,0,0,0.29,100,103.56,0.97,0.72,787,0.9,231,1.2
+499,2020,1,21,19,30,-3.3,1.23,0.078,0.63,0,0,0,0,4,-3.3,0,0,0,0,0.296,100,114.77,0.97,0.72,787,0.9,242,1.2
+500,2020,1,21,20,30,-3.7,1.23,0.08,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.3,100,126.14,0.97,0.72,787,0.8,253,1.2
+501,2020,1,21,21,30,-4.1,1.26,0.073,0.63,0,0,0,0,4,-4.1,0,0,0,0,0.301,100,137.35,0.96,0.72,787,0.8,261,1.1
+502,2020,1,21,22,30,-4.7,1.31,0.06,0.63,0,0,0,0,4,-4.7,0,0,0,0,0.3,100,147.8,0.96,0.72,787,0.7,267,1
+503,2020,1,21,23,30,-5.1,1.33,0.054,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.3,100,156.09,0.95,0.72,787,0.7,269,1
+504,2020,1,22,0,30,-5.4,1.35,0.05,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.301,100,159.21,0.95,0.72,787,0.7,267,1.1
+505,2020,1,22,1,30,-5.7,1.35,0.049,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.304,100,155.08,0.95,0.72,787,0.7,264,1.2
+506,2020,1,22,2,30,-6,1.33,0.049,0.63,0,0,0,0,7,-6,0,0,0,0,0.307,100,146.32,0.95,0.72,787,0.7,261,1.1
+507,2020,1,22,3,30,-6.3,1.33,0.044,0.63,0,0,0,0,7,-6.3,0,0,0,0,0.311,100,135.69,0.95,0.72,787,0.7,255,1
+508,2020,1,22,4,30,-6.6,1.35,0.039,0.63,0,0,0,0,7,-6.6,0,0,0,0,0.316,100,124.42,0.94,0.72,787,0.7,249,1
+509,2020,1,22,5,30,-6.9,1.36,0.038,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.322,100,113.04,0.94,0.72,787,0.7,244,1.1
+510,2020,1,22,6,30,-7.1,1.36,0.035,0.63,0,0,0,0,4,-7.1,0,0,0,0,0.328,100,101.87,0.93,0.72,788,0.6,237,1.1
+511,2020,1,22,7,30,-6.5,1.37,0.031,0.63,4,40,3,3,4,-7,1,0,43,1,0.332,96.07,91.2,0.93,0.72,788,0.6,223,1.3
+512,2020,1,22,8,30,-4.5,1.37,0.031,0.63,37,643,135,7,4,-6.5,71,1,100,71,0.335,85.94,81.27,0.94,0.72,788,0.6,227,1.6
+513,2020,1,22,9,30,-1.9,1.35,0.033,0.63,55,833,302,0,4,-5.3,179,168,0,229,0.337,77.54,72.72,0.94,0.72,789,0.7,256,2
+514,2020,1,22,10,30,0.2,1.35,0.033,0.63,66,916,440,0,4,-4.5,251,227,7,344,0.337,70.61,65.93,0.94,0.72,789,0.7,283,2.6
+515,2020,1,22,11,30,1.3,1.33,0.034,0.63,73,955,528,0,7,-4.2,204,33,0,220,0.336,66.67,61.57,0.94,0.72,788,0.6,296,3.3
+516,2020,1,22,12,30,1.7,1.29,0.038,0.63,75,965,555,0,7,-4.6,156,13,0,162,0.334,62.86,60.19,0.94,0.72,788,0.6,301,3.8
+517,2020,1,22,13,30,1.9,1.3,0.033,0.63,69,960,520,0,4,-5.3,164,1,0,164,0.332,58.82,62,0.93,0.72,788,0.6,306,4
+518,2020,1,22,14,30,1.8,1.35,0.026,0.63,59,928,426,0,4,-5.9,203,44,0,220,0.329,56.59,66.73,0.92,0.72,788,0.6,312,3.8
+519,2020,1,22,15,30,0.4,1.37,0.022,0.63,49,847,285,2,4,-6.2,165,70,29,185,0.326,61.2,73.8,0.92,0.72,789,0.6,320,2.9
+520,2020,1,22,16,30,-1.9,1.36,0.022,0.63,32,634,114,2,0,-6.8,40,508,21,106,0.324,69.37,82.55,0.92,0.72,790,0.5,330,1.9
+521,2020,1,22,17,30,-3.3,1.34,0.023,0.63,0,0,0,1,7,-8.1,0,0,14,0,0.322,69.67,92.62,0.92,0.74,790,0.5,339,1.7
+522,2020,1,22,18,30,-4.1,1.35,0.023,0.63,0,0,0,0,6,-8.4,0,0,0,0,0.32,71.95,103.37,0.93,0.74,791,0.5,341,1.7
+523,2020,1,22,19,30,-4.7,1.35,0.023,0.63,0,0,0,0,6,-8.6,0,0,0,0,0.318,74.09,114.58,0.94,0.74,792,0.6,341,1.7
+524,2020,1,22,20,30,-5,1.33,0.025,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.316,76,125.96,0.94,0.74,792,0.6,342,1.6
+525,2020,1,22,21,30,-5.3,1.35,0.023,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.316,79.34,137.16,0.93,0.74,792,0.6,351,1.2
+526,2020,1,22,22,30,-5.8,1.37,0.019,0.63,0,0,0,0,7,-8.2,0,0,0,0,0.318,83.45,147.59,0.93,0.74,793,0.6,188,0.9
+527,2020,1,22,23,30,-6.2,1.36,0.019,0.63,0,0,0,0,8,-8.2,0,0,0,0,0.319,85.52,155.86,0.92,0.74,793,0.6,25,0.8
+528,2020,1,23,0,30,-6.5,1.33,0.02,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.318,87.18,158.99,0.93,0.74,793,0.7,42,0.8
+529,2020,1,23,1,30,-6.7,1.31,0.021,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.317,88.62,154.92,0.93,0.74,793,0.7,57,0.7
+530,2020,1,23,2,30,-7,1.29,0.022,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.317,90.42,146.2,0.94,0.74,793,0.7,58,0.6
+531,2020,1,23,3,30,-7.2,1.26,0.023,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.318,91.4,135.6,0.94,0.74,793,0.7,49,0.4
+532,2020,1,23,4,30,-7.4,1.25,0.025,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.319,92.37,124.34,0.94,0.74,793,0.7,191,0.3
+533,2020,1,23,5,30,-7.6,1.23,0.026,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.319,93.78,112.95,0.94,0.74,793,0.7,314,0.3
+534,2020,1,23,6,30,-7.8,1.23,0.024,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.318,95.35,101.78,0.93,0.74,794,0.7,280,0.4
+535,2020,1,23,7,30,-6.9,1.22,0.022,0.63,4,44,3,3,7,-8.4,1,0,43,1,0.316,89.2,91.09,0.93,0.74,794,0.7,269,0.6
+536,2020,1,23,8,30,-4.7,1.21,0.022,0.63,36,665,138,7,4,-7.9,54,0,100,54,0.316,78.23,81.14,0.93,0.74,794,0.7,273,1.2
+537,2020,1,23,9,30,-2.2,1.21,0.021,0.63,50,853,306,0,4,-6.7,132,18,0,137,0.315,71.21,72.56,0.93,0.74,794,0.7,283,1.9
+538,2020,1,23,10,30,-0.1,1.22,0.021,0.63,62,930,444,0,4,-5.7,156,1,0,156,0.315,66.1,65.74,0.93,0.74,794,0.7,298,2.5
+539,2020,1,23,11,30,1.3,1.15,0.025,0.63,68,964,530,0,4,-4.9,236,17,0,244,0.315,63.49,61.35,0.93,0.74,794,0.7,312,2.8
+540,2020,1,23,12,30,2.2,1.19,0.022,0.63,67,977,556,0,4,-4.5,284,59,0,314,0.314,61.38,59.95,0.93,0.74,793,0.8,322,3
+541,2020,1,23,13,30,2.7,1.24,0.02,0.63,63,967,521,0,4,-4.2,295,45,0,316,0.314,60.31,61.76,0.93,0.74,793,0.8,327,3.1
+542,2020,1,23,14,30,2.6,1.29,0.018,0.63,56,928,426,0,4,-4.1,202,6,0,204,0.314,61.3,66.49,0.92,0.74,792,0.8,328,2.9
+543,2020,1,23,15,30,1.4,1.32,0.017,0.63,46,840,284,2,4,-3.7,154,172,21,203,0.315,69.03,73.57,0.92,0.74,792,0.8,326,1.8
+544,2020,1,23,16,30,-0.5,1.34,0.017,0.63,31,632,115,3,0,-3.9,43,319,46,86,0.316,77.82,82.33,0.92,0.74,792,0.8,321,0.9
+545,2020,1,23,17,30,-1.7,1.34,0.017,0.63,0,0,0,0,4,-5.1,0,0,7,0,0.318,77.64,92.42,0.91,0.72,792,0.8,314,0.8
+546,2020,1,23,18,30,-2.3,1.36,0.016,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.319,80.56,103.18,0.91,0.72,792,0.8,307,0.7
+547,2020,1,23,19,30,-2.8,1.36,0.015,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.32,83.72,114.39,0.91,0.72,792,0.8,303,0.6
+548,2020,1,23,20,30,-3.1,1.35,0.015,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.321,85.92,125.77,0.91,0.72,792,0.8,299,0.6
+549,2020,1,23,21,30,-3.4,1.34,0.015,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.321,87.84,136.96,0.91,0.72,792,0.8,293,0.5
+550,2020,1,23,22,30,-3.8,1.33,0.015,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.321,89.85,147.38,0.9,0.72,792,0.8,296,0.5
+551,2020,1,23,23,30,-4.2,1.31,0.015,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.322,91.73,155.62,0.9,0.72,792,0.7,321,0.3
+552,2020,1,24,0,30,-4.8,1.29,0.015,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.322,94.94,158.75,0.9,0.72,792,0.7,185,0.3
+553,2020,1,24,1,30,-5.2,1.27,0.014,0.63,0,0,0,0,0,-5.6,0,0,0,0,0.322,96.75,154.74,0.9,0.72,792,0.7,44,0.3
+554,2020,1,24,2,30,-5.6,1.26,0.014,0.63,0,0,0,0,0,-5.8,0,0,0,0,0.322,98.69,146.08,0.9,0.72,792,0.7,107,0.2
+555,2020,1,24,3,30,-5.9,1.26,0.015,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.323,100,135.5,0.91,0.72,792,0.6,168,0.3
+556,2020,1,24,4,30,-6.3,1.25,0.016,0.63,0,0,0,0,4,-6.3,0,0,0,0,0.324,100,124.24,0.92,0.72,791,0.6,176,0.6
+557,2020,1,24,5,30,-6.8,1.24,0.017,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.326,100,112.86,0.92,0.72,791,0.6,170,1
+558,2020,1,24,6,30,-7.3,1.24,0.018,0.63,0,0,0,0,0,-7.3,0,0,0,0,0.326,100,101.67,0.92,0.72,791,0.6,168,1.3
+559,2020,1,24,7,30,-6.5,1.25,0.018,0.63,7,87,6,2,0,-6.5,3,20,25,3,0.327,100,90.97,0.92,0.72,791,0.7,172,1.5
+560,2020,1,24,8,30,-4.2,1.26,0.019,0.63,34,677,140,6,4,-6.1,68,55,93,77,0.327,86.3,81,0.93,0.72,791,0.7,183,1.9
+561,2020,1,24,9,30,-1.4,1.26,0.02,0.63,49,858,309,1,7,-5.3,149,367,14,260,0.328,74.91,72.39,0.93,0.72,791,0.7,204,2.6
+562,2020,1,24,10,30,1.1,1.25,0.02,0.63,59,935,446,0,7,-4.4,205,434,0,385,0.329,66.83,65.55,0.94,0.72,791,0.7,223,3.4
+563,2020,1,24,11,30,2.2,1.23,0.021,0.63,65,965,531,0,7,-4.2,299,243,0,416,0.33,62.66,61.13,0.94,0.72,790,0.8,234,3.8
+564,2020,1,24,12,30,2,1.2,0.023,0.63,68,971,558,0,7,-4.3,314,268,0,449,0.332,63.22,59.72,0.95,0.72,789,0.8,242,3.9
+565,2020,1,24,13,30,1.1,1.19,0.025,0.63,67,953,522,0,7,-4,295,53,0,320,0.335,68.62,61.51,0.95,0.72,789,0.9,246,3.6
+566,2020,1,24,14,30,0.2,1.18,0.027,0.63,62,909,428,0,7,-3.6,207,48,0,226,0.337,75.39,66.25,0.95,0.72,789,0.9,244,3.1
+567,2020,1,24,15,30,-0.8,1.2,0.026,0.63,50,822,286,2,4,-3.4,154,107,29,185,0.34,82.35,73.34,0.94,0.72,789,0.9,237,2.3
+568,2020,1,24,16,30,-2.2,1.22,0.024,0.63,34,615,118,7,4,-3.6,48,1,100,48,0.343,90.44,82.12,0.94,0.72,789,0.9,228,1.5
+569,2020,1,24,17,30,-3.3,1.23,0.023,0.63,0,0,0,1,7,-4,0,0,14,0,0.345,94.75,92.21,0.94,0.72,789,0.9,222,1.2
+570,2020,1,24,18,30,-3.6,1.22,0.023,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.348,95.78,102.98,0.94,0.72,789,0.9,224,1.4
+571,2020,1,24,19,30,-3.8,1.21,0.023,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.35,96.59,114.2,0.94,0.72,789,0.8,231,1.5
+572,2020,1,24,20,30,-4,1.2,0.022,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.351,97.52,125.58,0.93,0.72,789,0.8,238,1.3
+573,2020,1,24,21,30,-4.2,1.2,0.021,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.352,98.28,136.77,0.93,0.72,789,0.8,249,1.1
+574,2020,1,24,22,30,-4.6,1.22,0.02,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.353,100,147.16,0.92,0.72,789,0.8,265,1
+575,2020,1,24,23,30,-5,1.24,0.019,0.63,0,0,0,0,0,-5,0,0,0,0,0.355,100,155.38,0.92,0.72,789,0.7,282,1
+576,2020,1,25,0,30,-5.4,1.26,0.018,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.358,100,158.51,0.91,0.72,790,0.6,290,0.9
+577,2020,1,25,1,30,-5.7,1.26,0.017,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.359,100,154.56,0.91,0.72,790,0.6,292,0.9
+578,2020,1,25,2,30,-6.1,1.26,0.017,0.63,0,0,0,0,0,-6.1,0,0,0,0,0.358,100,145.94,0.91,0.72,790,0.6,290,0.8
+579,2020,1,25,3,30,-6.4,1.25,0.016,0.63,0,0,0,0,0,-6.4,0,0,0,0,0.357,100,135.39,0.91,0.72,790,0.6,285,0.7
+580,2020,1,25,4,30,-6.6,1.25,0.016,0.63,0,0,0,0,0,-6.6,0,0,0,0,0.356,100,124.15,0.91,0.72,790,0.6,276,0.6
+581,2020,1,25,5,30,-6.8,1.25,0.017,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.353,100,112.76,0.91,0.72,791,0.6,258,0.4
+582,2020,1,25,6,30,-6.9,1.26,0.018,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.348,100,101.56,0.92,0.72,791,0.6,232,0.4
+583,2020,1,25,7,30,-6,1.26,0.018,0.63,7,89,6,3,4,-6,2,0,43,2,0.344,100,90.85,0.92,0.72,792,0.6,219,0.5
+584,2020,1,25,8,30,-3.8,1.26,0.02,0.63,35,684,144,7,4,-5.3,62,0,100,62,0.34,89.05,80.86,0.92,0.72,792,0.6,234,0.9
+585,2020,1,25,9,30,-1.1,1.28,0.021,0.63,51,866,315,0,0,-4.4,71,767,0,305,0.337,78.45,72.22,0.92,0.72,792,0.6,262,1.3
+586,2020,1,25,10,30,1.1,1.31,0.021,0.63,60,942,453,1,4,-3.8,265,242,14,366,0.335,69.79,65.35,0.92,0.72,792,0.6,273,1.8
+587,2020,1,25,11,30,2.3,1.21,0.024,0.63,67,975,541,0,7,-3.9,239,15,0,246,0.334,63.57,60.91,0.92,0.72,792,0.6,267,2.4
+588,2020,1,25,12,30,2.9,1.24,0.024,0.63,69,980,567,0,7,-4.3,295,71,0,331,0.334,59.12,59.47,0.92,0.72,792,0.7,262,3.1
+589,2020,1,25,13,30,3.1,1.25,0.027,0.63,69,959,530,1,0,-4.7,125,791,14,505,0.333,56.46,61.26,0.93,0.72,791,0.7,262,3.4
+590,2020,1,25,14,30,2.5,1.24,0.031,0.63,64,915,436,0,0,-5.1,64,915,0,436,0.332,57.12,66.01,0.94,0.72,791,0.7,261,2.8
+591,2020,1,25,15,30,0.9,1.24,0.031,0.63,53,831,294,1,0,-4.8,95,601,14,270,0.33,65.68,73.11,0.93,0.72,791,0.7,249,1.7
+592,2020,1,25,16,30,-1.1,1.25,0.025,0.63,34,632,123,7,6,-4.5,43,1,100,43,0.328,77.81,81.9,0.93,0.72,791,0.7,239,1.2
+593,2020,1,25,17,30,-2.1,1.24,0.023,0.63,0,0,0,2,6,-5.8,0,0,29,0,0.327,75.84,92.01,0.93,0.7,791,0.7,234,1.2
+594,2020,1,25,18,30,-2.4,1.23,0.023,0.63,0,0,0,0,6,-5.8,0,0,0,0,0.325,77.72,102.79,0.92,0.7,791,0.7,229,1.1
+595,2020,1,25,19,30,-2.6,1.23,0.021,0.63,0,0,0,0,6,-5.7,0,0,0,0,0.325,79.02,114.01,0.92,0.7,791,0.7,223,1
+596,2020,1,25,20,30,-2.9,1.23,0.019,0.63,0,0,0,0,7,-6,0,0,0,0,0.325,79,125.39,0.91,0.7,792,0.7,211,0.9
+597,2020,1,25,21,30,-3.5,1.24,0.018,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.324,79.47,136.57,0.91,0.7,792,0.6,198,1
+598,2020,1,25,22,30,-4.2,1.24,0.017,0.63,0,0,0,0,4,-6.8,0,0,0,0,0.323,82.16,146.94,0.91,0.7,792,0.6,191,1.1
+599,2020,1,25,23,30,-4.8,1.25,0.018,0.63,0,0,0,0,4,-7,0,0,0,0,0.322,84.87,155.13,0.91,0.7,792,0.6,188,1.2
+600,2020,1,26,0,30,-5.1,1.24,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.32,85.37,158.27,0.91,0.7,792,0.6,189,1.3
+601,2020,1,26,1,30,-5.1,1.23,0.022,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.32,84.42,154.37,0.92,0.7,792,0.6,189,1.4
+602,2020,1,26,2,30,-5,1.22,0.024,0.63,0,0,0,0,7,-7.3,0,0,0,0,0.319,83.65,145.8,0.92,0.7,792,0.6,189,1.5
+603,2020,1,26,3,30,-5.4,1.23,0.024,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.319,85.94,135.28,0.92,0.7,791,0.6,192,1.5
+604,2020,1,26,4,30,-5.9,1.23,0.023,0.63,0,0,0,0,8,-7.4,0,0,0,0,0.318,89.05,124.04,0.92,0.7,791,0.6,195,1.5
+605,2020,1,26,5,30,-6.4,1.23,0.022,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.317,92.25,112.65,0.92,0.7,791,0.7,195,1.4
+606,2020,1,26,6,30,-6.7,1.23,0.022,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.315,94.71,101.45,0.91,0.7,792,0.7,192,1.3
+607,2020,1,26,7,30,-5.6,1.24,0.022,0.63,6,87,6,3,4,-7.3,2,0,43,2,0.314,87.82,90.22,0.91,0.7,792,0.7,189,1.7
+608,2020,1,26,8,30,-3.2,1.24,0.023,0.63,36,675,145,7,4,-6.7,76,1,100,76,0.313,76.74,80.71,0.91,0.7,792,0.7,193,2.3
+609,2020,1,26,9,30,-0.5,1.25,0.024,0.63,52,851,314,1,4,-5.8,169,319,18,267,0.312,67.18,72.05,0.92,0.7,792,0.8,207,2.8
+610,2020,1,26,10,30,1.8,1.26,0.024,0.63,61,930,452,0,0,-5.1,129,693,0,420,0.311,60,65.14,0.92,0.7,791,0.8,219,3.1
+611,2020,1,26,11,30,3.1,1.29,0.023,0.63,65,965,538,0,7,-4.7,215,527,0,473,0.31,56.56,60.67,0.92,0.7,791,0.9,226,3.1
+612,2020,1,26,12,30,3.9,1.27,0.022,0.63,67,974,565,0,7,-4.4,196,600,25,503,0.309,54.51,59.22,0.92,0.7,790,0.9,231,3.2
+613,2020,1,26,13,30,4.3,1.25,0.021,0.63,65,959,530,0,7,-4.2,228,19,0,237,0.309,53.9,61.01,0.92,0.7,789,0.9,232,3.1
+614,2020,1,26,14,30,4,1.06,0.025,0.63,62,914,437,0,7,-4,153,597,0,398,0.309,55.89,65.76,0.93,0.7,789,0.9,227,2.8
+615,2020,1,26,15,30,2.3,1.06,0.027,0.63,52,822,294,1,7,-3.6,138,331,14,235,0.309,65.25,72.88,0.93,0.7,788,0.9,218,1.9
+616,2020,1,26,16,30,-0.2,1.06,0.029,0.63,35,613,124,7,4,-3.4,38,0,100,38,0.309,79.05,81.68,0.93,0.7,788,0.9,211,1.3
+617,2020,1,26,17,30,-1.5,1.05,0.028,0.63,3,31,2,2,4,-4.6,0,0,29,0,0.31,79.26,91.8,0.93,0.67,788,0.9,211,1.4
+618,2020,1,26,18,30,-2.1,1.05,0.026,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.311,81.81,102.59,0.93,0.67,788,0.9,213,1.4
+619,2020,1,26,19,30,-2.5,1.04,0.026,0.63,0,0,0,0,8,-4.9,0,0,0,0,0.312,83.28,113.82,0.93,0.67,788,0.9,210,1.4
+620,2020,1,26,20,30,-2.7,1.05,0.027,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.313,83.74,125.19,0.93,0.67,788,0.9,209,1.6
+621,2020,1,26,21,30,-2.5,1.06,0.029,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.313,82.1,136.37,0.94,0.67,788,0.9,215,1.9
+622,2020,1,26,22,30,-2,1.06,0.036,0.63,0,0,0,0,7,-5,0,0,0,0,0.313,79.8,146.72,0.95,0.67,788,0.9,223,2.2
+623,2020,1,26,23,30,-1.9,1.06,0.048,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.313,81.33,154.88,0.96,0.67,788,1,225,2.2
+624,2020,1,27,0,30,-2.1,1.05,0.063,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.314,85.53,158.02,0.97,0.67,787,1,221,2.1
+625,2020,1,27,1,30,-2.3,1.04,0.069,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.316,90.04,154.17,0.97,0.67,787,1,214,2.1
+626,2020,1,27,2,30,-2.5,1.04,0.075,0.63,0,0,0,0,7,-3.4,0,0,0,0,0.32,93.7,145.65,0.97,0.67,787,1,215,2.2
+627,2020,1,27,3,30,-2.8,1.05,0.073,0.63,0,0,0,0,7,-3.3,0,0,0,0,0.324,96.69,135.16,0.97,0.67,787,1,225,2.2
+628,2020,1,27,4,30,-3,1.06,0.062,0.63,0,0,0,0,6,-3.3,0,0,0,0,0.328,98.06,123.93,0.96,0.67,787,0.9,247,1.9
+629,2020,1,27,5,30,-3,1.09,0.055,0.63,0,0,0,0,6,-3.4,0,0,0,0,0.33,97.26,112.54,0.96,0.67,787,0.9,276,1.8
+630,2020,1,27,6,30,-3,1.11,0.042,0.63,0,0,0,0,6,-3.6,0,0,0,0,0.332,95.84,101.33,0.95,0.67,788,0.8,297,1.9
+631,2020,1,27,7,30,-2.7,1.13,0.03,0.63,7,87,7,3,6,-3.9,3,0,43,3,0.333,91.26,90.11,0.94,0.67,788,0.7,301,2.1
+632,2020,1,27,8,30,-1.8,1.16,0.024,0.63,36,680,148,7,7,-4.1,46,1,100,46,0.333,84.45,80.55,0.93,0.67,789,0.7,304,2.9
+633,2020,1,27,9,30,-0.7,1.2,0.02,0.63,50,871,321,0,7,-4.6,191,55,0,208,0.333,75.16,71.86,0.92,0.67,789,0.6,313,4.5
+634,2020,1,27,10,30,0.4,1.23,0.018,0.63,57,953,461,0,4,-5.4,263,262,0,374,0.334,65.3,64.93,0.91,0.67,789,0.6,318,5.6
+635,2020,1,27,11,30,1.4,1.23,0.017,0.63,61,993,551,0,7,-5.9,316,71,0,351,0.335,58.29,60.44,0.91,0.67,789,0.5,322,6.2
+636,2020,1,27,12,30,2.1,1.25,0.016,0.63,62,1007,581,0,7,-6.8,285,377,7,479,0.336,51.68,58.96,0.9,0.67,789,0.5,324,6.5
+637,2020,1,27,13,30,2.3,1.28,0.015,0.63,58,1006,550,0,0,-8.1,58,1006,0,550,0.337,46.16,60.75,0.89,0.67,789,0.4,325,6.7
+638,2020,1,27,14,30,1.8,1.32,0.014,0.63,52,974,456,0,0,-9,59,954,0,454,0.339,44.43,65.51,0.87,0.67,790,0.4,326,6.5
+639,2020,1,27,15,30,0,1.31,0.013,0.63,44,903,313,0,0,-9.3,44,903,0,313,0.341,49.6,72.64,0.87,0.67,790,0.3,326,5.5
+640,2020,1,27,16,30,-2.8,1.3,0.013,0.63,30,719,137,7,4,-9.2,91,52,100,99,0.344,61.21,81.46,0.87,0.67,791,0.3,326,4
+641,2020,1,27,17,30,-4.9,1.27,0.013,0.63,4,50,3,1,0,-9.7,1,0,14,1,0.347,69.03,91.59,0.87,0.78,792,0.3,326,3.2
+642,2020,1,27,18,30,-5.7,1.25,0.013,0.63,0,0,0,0,4,-9.4,0,0,0,0,0.349,75.15,102.39,0.88,0.78,793,0.3,329,2.8
+643,2020,1,27,19,30,-6.1,1.24,0.014,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.348,81.39,113.62,0.88,0.78,793,0.4,331,2.2
+644,2020,1,27,20,30,-6.3,1.24,0.016,0.63,0,0,0,0,0,-8.2,0,0,0,0,0.346,86.31,125,0.89,0.78,793,0.4,331,1.5
+645,2020,1,27,21,30,-6.6,1.24,0.018,0.63,0,0,0,0,4,-7.8,0,0,0,0,0.345,91.09,136.16,0.89,0.78,793,0.4,321,1.1
+646,2020,1,27,22,30,-7,1.22,0.018,0.63,0,0,0,0,4,-7.6,0,0,0,0,0.345,95.52,146.5,0.9,0.78,793,0.4,305,0.9
+647,2020,1,27,23,30,-7.5,1.2,0.019,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.344,99.73,154.63,0.9,0.78,793,0.4,289,0.8
+648,2020,1,28,0,30,-7.9,1.17,0.019,0.63,0,0,0,0,4,-7.9,0,0,0,0,0.344,100,157.76,0.9,0.78,793,0.4,281,0.9
+649,2020,1,28,1,30,-8,1.16,0.018,0.63,0,0,0,0,4,-8,0,0,0,0,0.344,100,153.97,0.9,0.78,794,0.3,278,0.8
+650,2020,1,28,2,30,-8,1.14,0.018,0.63,0,0,0,0,4,-8,0,0,0,0,0.343,100,145.5,0.9,0.78,793,0.3,262,0.5
+651,2020,1,28,3,30,-8.1,1.14,0.018,0.63,0,0,0,0,4,-8.1,0,0,0,0,0.342,100,135.03,0.9,0.78,793,0.3,210,0.5
+652,2020,1,28,4,30,-8.3,1.14,0.018,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.342,100,123.81,0.9,0.78,793,0.3,173,0.7
+653,2020,1,28,5,30,-8.5,1.16,0.018,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.341,100,112.42,0.9,0.78,793,0.3,170,0.8
+654,2020,1,28,6,30,-8.6,1.18,0.019,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.339,100,101.2,0.9,0.78,793,0.3,167,1
+655,2020,1,28,7,30,-7.5,1.21,0.019,0.63,8,105,8,4,4,-8.6,3,0,50,3,0.337,91.57,89.98,0.9,0.78,793,0.4,166,1.4
+656,2020,1,28,8,30,-5.1,1.24,0.019,0.63,36,723,157,0,0,-8.2,36,723,0,157,0.337,79.03,80.39,0.9,0.78,793,0.4,175,1.8
+657,2020,1,28,9,30,-2.7,1.27,0.018,0.63,50,890,330,0,0,-7.7,85,732,0,315,0.336,68.74,71.67,0.9,0.78,793,0.5,205,1.6
+658,2020,1,28,10,30,-0.9,1.3,0.017,0.63,60,960,470,0,0,-8.2,60,960,0,470,0.335,57.92,64.71,0.91,0.78,792,0.5,244,1.4
+659,2020,1,28,11,30,0.5,1.24,0.021,0.63,69,984,558,0,0,-8.3,69,984,0,558,0.336,51.57,60.19,0.92,0.78,792,0.6,259,1.7
+660,2020,1,28,12,30,1.4,1.23,0.027,0.63,75,980,584,0,7,-7.7,210,635,0,540,0.337,50.68,58.7,0.93,0.78,791,0.6,250,1.9
+661,2020,1,28,13,30,1.5,1.21,0.036,0.63,78,953,548,0,7,-7.4,169,706,7,517,0.337,51.65,60.48,0.94,0.78,790,0.6,235,2.2
+662,2020,1,28,14,30,1.1,1.19,0.046,0.63,75,896,450,0,7,-7.3,198,474,11,396,0.338,53.58,65.25,0.95,0.78,790,0.7,222,2.2
+663,2020,1,28,15,30,0,1.16,0.052,0.63,63,797,304,0,7,-6.8,199,118,0,235,0.34,60.29,72.4,0.95,0.78,790,0.7,207,1.6
+664,2020,1,28,16,30,-1.7,1.15,0.05,0.63,42,592,132,7,7,-6,63,3,100,63,0.342,72.72,81.24,0.95,0.78,790,0.7,190,1.2
+665,2020,1,28,17,30,-2.9,1.14,0.044,0.63,4,30,3,2,7,-7.1,1,0,29,1,0.344,72.87,91.38,0.94,0.72,790,0.7,178,1.3
+666,2020,1,28,18,30,-3.4,1.14,0.04,0.63,0,0,0,0,8,-7.9,0,0,0,0,0.345,71.2,102.19,0.95,0.72,789,0.7,175,1.4
+667,2020,1,28,19,30,-3.6,1.13,0.041,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.344,69.58,113.43,0.95,0.72,789,0.7,176,1.6
+668,2020,1,28,20,30,-3.5,1.12,0.043,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.344,68.09,124.8,0.95,0.72,789,0.7,180,1.7
+669,2020,1,28,21,30,-3.5,1.12,0.045,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.345,67.46,135.96,0.95,0.72,789,0.7,183,1.9
+670,2020,1,28,22,30,-3.7,1.13,0.047,0.63,0,0,0,0,7,-8.7,0,0,0,0,0.349,68.23,146.27,0.95,0.72,789,0.7,187,1.8
+671,2020,1,28,23,30,-3.8,1.13,0.048,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.353,69.08,154.37,0.95,0.72,789,0.7,190,1.7
+672,2020,1,29,0,30,-4.1,1.13,0.047,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.356,71.56,157.5,0.95,0.72,789,0.6,192,1.5
+673,2020,1,29,1,30,-4.4,1.14,0.043,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.359,73.55,153.75,0.94,0.72,789,0.6,195,1.3
+674,2020,1,29,2,30,-5,1.15,0.037,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.36,77.02,145.34,0.93,0.72,789,0.6,200,1.1
+675,2020,1,29,3,30,-5.5,1.16,0.03,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.361,78.9,134.89,0.92,0.72,789,0.6,208,0.7
+676,2020,1,29,4,30,-6,1.17,0.025,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.362,81.15,123.69,0.92,0.72,789,0.5,226,0.4
+677,2020,1,29,5,30,-6.6,1.18,0.022,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.362,84.46,112.3,0.92,0.72,789,0.5,137,0.2
+678,2020,1,29,6,30,-7,1.19,0.021,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.363,87.26,101.07,0.92,0.72,790,0.5,44,0.3
+679,2020,1,29,7,30,-6.2,1.2,0.02,0.63,8,102,8,3,4,-8.7,5,25,46,5,0.363,82.5,89.85,0.92,0.72,790,0.5,58,0.4
+680,2020,1,29,8,30,-4,1.21,0.02,0.63,36,710,157,2,0,-8.1,46,519,25,134,0.362,72.93,80.22,0.92,0.72,791,0.5,32,0.8
+681,2020,1,29,9,30,-1.7,1.21,0.02,0.63,52,883,332,2,4,-6.8,171,258,36,253,0.364,68.33,71.48,0.92,0.72,791,0.5,3,1.6
+682,2020,1,29,10,30,0,1.21,0.02,0.63,60,962,474,0,4,-6,296,80,0,330,0.365,63.78,64.49,0.92,0.72,791,0.5,179,2.4
+683,2020,1,29,11,30,0.9,1.22,0.019,0.63,63,998,563,0,4,-6.1,339,53,0,366,0.365,59.59,59.94,0.91,0.72,790,0.5,353,2.9
+684,2020,1,29,12,30,1.2,1.24,0.017,0.63,63,1010,592,0,4,-6.5,287,6,0,290,0.364,56.66,58.44,0.91,0.72,790,0.5,349,3.2
+685,2020,1,29,13,30,1.2,1.25,0.016,0.63,60,1000,557,0,4,-7,322,36,0,340,0.363,54.45,60.21,0.9,0.72,789,0.5,349,3.3
+686,2020,1,29,14,30,0.9,1.27,0.015,0.63,55,968,464,0,4,-7.4,134,0,0,134,0.363,53.91,64.99,0.9,0.72,789,0.5,355,3.3
+687,2020,1,29,15,30,-0.3,1.27,0.014,0.63,46,892,319,0,4,-7.6,149,8,0,151,0.362,58.06,72.15,0.9,0.72,789,0.5,182,2.5
+688,2020,1,29,16,30,-2.5,1.26,0.014,0.63,32,715,144,7,4,-7.3,41,0,100,41,0.359,69.78,81.01,0.9,0.72,790,0.4,7,1.5
+689,2020,1,29,17,30,-4.1,1.27,0.013,0.63,4,53,3,3,4,-8.2,1,0,43,1,0.353,73.18,91.16,0.9,0.76,790,0.4,9,1.2
+690,2020,1,29,18,30,-4.6,1.29,0.012,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.349,74.65,101.99,0.89,0.76,790,0.4,4,1.2
+691,2020,1,29,19,30,-5,1.29,0.011,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.347,76.22,113.23,0.88,0.76,791,0.4,178,1
+692,2020,1,29,20,30,-5.3,1.29,0.01,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.345,77.46,124.61,0.88,0.76,791,0.4,353,0.8
+693,2020,1,29,21,30,-5.7,1.3,0.01,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.344,79.89,135.75,0.88,0.76,791,0.4,330,0.5
+694,2020,1,29,22,30,-6.2,1.3,0.01,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.342,82.96,146.04,0.88,0.76,791,0.4,301,0.5
+695,2020,1,29,23,30,-6.7,1.3,0.01,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.339,86.17,154.11,0.88,0.76,791,0.4,284,0.6
+696,2020,1,30,0,30,-7,1.28,0.01,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.336,87.62,157.23,0.89,0.76,790,0.3,263,0.6
+697,2020,1,30,1,30,-7.3,1.27,0.01,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.334,89.12,153.53,0.89,0.76,790,0.3,234,0.6
+698,2020,1,30,2,30,-7.6,1.27,0.011,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.333,90.38,145.17,0.89,0.76,790,0.4,211,0.7
+699,2020,1,30,3,30,-7.8,1.27,0.011,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.331,90.65,134.75,0.9,0.76,789,0.4,206,0.8
+700,2020,1,30,4,30,-7.8,1.25,0.011,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.329,89.93,123.56,0.91,0.76,789,0.5,215,0.8
+701,2020,1,30,5,30,-7.4,1.24,0.012,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.328,87.12,112.17,0.92,0.76,789,0.6,222,0.9
+702,2020,1,30,6,30,-6.9,1.21,0.013,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.327,85.42,100.93,0.93,0.76,789,0.7,218,1.2
+703,2020,1,30,7,30,-6.1,1.16,0.013,0.63,10,145,11,4,6,-8.5,4,0,57,4,0.327,83.18,89.72,0.93,0.76,790,0.7,213,2
+704,2020,1,30,8,30,-5.1,1.14,0.016,0.63,36,706,158,7,6,-7.9,42,0,100,42,0.329,80.81,80.05,0.94,0.76,790,0.7,222,2.9
+705,2020,1,30,9,30,-3.4,1.16,0.019,0.63,51,875,332,0,6,-7.4,96,4,0,97,0.332,73.71,71.28,0.93,0.76,790,0.7,258,3.3
+706,2020,1,30,10,30,-1.2,1.19,0.017,0.63,58,957,474,2,7,-6.8,115,3,21,116,0.334,65.92,64.26,0.91,0.76,790,0.6,302,4.3
+707,2020,1,30,11,30,0.3,1.19,0.016,0.63,62,994,564,0,4,-6.2,313,21,0,324,0.335,61.81,59.68,0.9,0.76,790,0.6,324,5.6
+708,2020,1,30,12,30,0.9,1.2,0.015,0.63,63,1005,593,0,4,-5.8,315,130,0,384,0.336,61.1,58.16,0.89,0.76,790,0.6,334,6.8
+709,2020,1,30,13,30,0.9,1.17,0.014,0.63,60,1002,562,0,4,-5.9,299,46,0,322,0.336,60.42,59.94,0.89,0.76,791,0.5,343,7.6
+710,2020,1,30,14,30,0.4,1.22,0.015,0.63,56,967,469,0,4,-6.9,114,0,0,114,0.335,58.03,64.73,0.9,0.76,791,0.5,353,7.4
+711,2020,1,30,15,30,-0.7,1.2,0.015,0.63,47,900,326,0,4,-7.9,96,1,0,96,0.334,58.06,71.91,0.9,0.76,792,0.4,187,5.8
+712,2020,1,30,16,30,-3.1,1.17,0.014,0.63,33,726,149,7,4,-8.5,43,0,100,43,0.335,66.39,80.78,0.9,0.76,793,0.4,18,3.5
+713,2020,1,30,17,30,-5.4,1.25,0.013,0.63,8,105,6,3,4,-9.3,2,0,43,2,0.336,73.99,90.95,0.89,0.8,794,0.3,25,2.1
+714,2020,1,30,18,30,-6.8,1.29,0.012,0.63,0,0,0,0,4,-10.1,0,0,0,0,0.336,77.17,101.78,0.89,0.8,795,0.3,25,1.7
+715,2020,1,30,19,30,-7.8,1.29,0.012,0.63,0,0,0,0,4,-10.7,0,0,0,0,0.335,79.93,113.03,0.89,0.8,795,0.3,19,1.4
+716,2020,1,30,20,30,-8.7,1.28,0.011,0.63,0,0,0,0,4,-11,0,0,0,0,0.334,83.48,124.41,0.89,0.8,795,0.3,12,1.1
+717,2020,1,30,21,30,-9.3,1.26,0.011,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.334,86.09,135.54,0.89,0.8,796,0.3,9,1
+718,2020,1,30,22,30,-9.9,1.25,0.01,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.335,89.83,145.81,0.89,0.8,796,0.3,7,0.8
+719,2020,1,30,23,30,-10.4,1.23,0.01,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.336,93.7,153.85,0.89,0.8,796,0.3,10,0.6
+720,2020,1,31,0,30,-10.7,1.21,0.01,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.336,95.91,156.96,0.89,0.8,796,0.4,15,0.4
+721,2020,1,31,1,30,-10.9,1.22,0.01,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.334,95.93,153.31,0.89,0.8,796,0.4,108,0.4
+722,2020,1,31,2,30,-11.1,1.22,0.01,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.332,94.71,144.99,0.89,0.8,795,0.4,198,0.8
+723,2020,1,31,3,30,-11.5,1.25,0.01,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.33,94.48,134.6,0.89,0.8,795,0.4,197,1.2
+724,2020,1,31,4,30,-11.7,1.26,0.01,0.63,0,0,0,0,7,-12.7,0,0,0,0,0.328,92.52,123.42,0.89,0.8,795,0.4,196,1.4
+725,2020,1,31,5,30,-11.8,1.26,0.01,0.63,0,0,0,0,7,-13.1,0,0,0,0,0.327,90.36,112.03,0.89,0.8,795,0.4,199,1.5
+726,2020,1,31,6,30,-11.5,1.26,0.01,0.63,0,0,0,0,6,-13.4,0,0,0,0,0.327,85.64,100.78,0.89,0.8,795,0.4,204,1.5
+727,2020,1,31,7,30,-9.6,1.27,0.01,0.63,11,171,12,4,7,-13.6,7,0,57,7,0.326,72.53,89.57,0.9,0.8,796,0.4,203,1.8
+728,2020,1,31,8,30,-6.5,1.25,0.012,0.63,34,746,165,7,6,-12.8,57,1,100,57,0.325,60.9,79.87,0.91,0.8,796,0.5,202,2.2
+729,2020,1,31,9,30,-3.4,1.28,0.011,0.63,45,904,338,0,6,-11.8,65,0,0,65,0.325,52.12,71.07,0.9,0.8,796,0.6,233,2.1
+730,2020,1,31,10,30,-0.5,1.29,0.01,0.63,52,968,476,0,6,-11.4,116,1,0,116,0.324,43.55,64.02,0.89,0.8,796,0.6,283,2.3
+731,2020,1,31,11,30,1.6,1.29,0.01,0.63,56,996,563,0,6,-10.6,289,100,0,340,0.324,39.88,59.42,0.9,0.8,796,0.7,312,2.8
+732,2020,1,31,12,30,2.9,1.28,0.011,0.63,60,999,591,0,6,-9.3,288,240,0,416,0.324,40.21,57.89,0.9,0.8,795,0.8,325,3.2
+733,2020,1,31,13,30,3.6,1.27,0.012,0.63,60,984,557,0,6,-7.6,260,378,7,451,0.324,43.75,59.66,0.91,0.8,795,0.8,334,3.5
+734,2020,1,31,14,30,3.5,1.29,0.013,0.63,55,944,462,1,7,-5.9,163,608,36,425,0.323,50.36,64.46,0.91,0.8,795,0.9,339,3.6
+735,2020,1,31,15,30,2.2,1.31,0.013,0.63,47,865,319,3,4,-4.5,178,313,43,276,0.322,61.01,71.66,0.91,0.8,796,0.9,344,2.7
+736,2020,1,31,16,30,-0.3,1.31,0.014,0.63,34,683,146,7,4,-3.8,91,45,96,98,0.322,76.99,80.56,0.92,0.8,796,1,175,1.5
+737,2020,1,31,17,30,-2,1.31,0.017,0.62,6,91,6,3,7,-5.1,4,0,43,4,0.324,79.63,90.24,0.92,0.68,796,0.9,5,1
+738,2020,1,31,18,30,-2.6,1.29,0.019,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.325,82.69,101.58,0.92,0.68,797,0.9,5,0.7
+739,2020,1,31,19,30,-3,1.29,0.018,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.326,84.7,112.84,0.92,0.68,797,0.9,181,0.5
+740,2020,1,31,20,30,-3.1,1.3,0.018,0.62,0,0,0,0,4,-5.3,0,0,0,0,0.326,84.77,124.21,0.91,0.68,798,0.9,185,0.5
+741,2020,1,31,21,30,-3.2,1.33,0.015,0.62,0,0,0,0,4,-5.3,0,0,0,0,0.327,85.29,135.34,0.91,0.68,798,0.9,26,0.3
+742,2020,1,31,22,30,-3.5,1.3,0.015,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.327,87.79,145.58,0.92,0.68,798,0.9,108,0.3
+743,2020,1,31,23,30,-4.1,1.26,0.017,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.325,91.36,153.58,0.92,0.68,798,0.9,179,0.7
+744,2020,2,1,0,30,-4.7,1.25,0.019,0.62,0,0,0,0,6,-5.5,0,0,0,0,0.323,94.22,156.68,0.92,0.68,798,0.8,188,1
+745,2020,2,1,1,30,-5.5,1.27,0.017,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.321,98.27,153.07,0.91,0.68,798,0.7,197,1.3
+746,2020,2,1,2,30,-6.1,1.29,0.017,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.32,100,144.81,0.91,0.68,798,0.7,204,1.5
+747,2020,2,1,3,30,-6.3,1.29,0.019,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.32,98.6,134.45,0.91,0.68,798,0.6,209,1.5
+748,2020,2,1,4,30,-6.5,1.29,0.019,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.319,97.19,123.28,0.9,0.68,798,0.5,209,1.6
+749,2020,2,1,5,30,-6.8,1.28,0.018,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.318,96.5,111.89,0.9,0.68,798,0.5,211,1.5
+750,2020,2,1,6,30,-6.8,1.28,0.017,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.317,93.65,100.63,0.9,0.68,798,0.5,211,1.5
+751,2020,2,1,7,30,-5.1,1.28,0.016,0.62,10,161,12,4,6,-8,6,0,57,6,0.315,80.2,89.43,0.89,0.68,798,0.6,205,1.7
+752,2020,2,1,8,30,-2,1.28,0.015,0.62,35,731,166,7,6,-7.2,77,7,100,78,0.313,67.45,79.68,0.89,0.68,799,0.6,200,2.4
+753,2020,2,1,9,30,1,1.29,0.015,0.62,48,894,341,0,6,-6.4,109,9,0,112,0.31,57.57,70.86,0.89,0.68,799,0.6,209,3.1
+754,2020,2,1,10,30,3.9,1.29,0.015,0.62,56,966,483,0,6,-5.4,259,129,0,316,0.307,50.56,63.78,0.89,0.68,799,0.6,223,3.8
+755,2020,2,1,11,30,5.9,1.27,0.015,0.62,60,1006,576,0,6,-6,298,333,0,469,0.304,42.03,59.15,0.89,0.68,798,0.5,229,4.2
+756,2020,2,1,12,30,7.1,1.26,0.015,0.62,62,1023,610,0,7,-6.8,225,611,0,552,0.302,36.45,57.6,0.89,0.68,798,0.4,229,4.5
+757,2020,2,1,13,30,7.5,1.24,0.015,0.62,60,1015,577,0,7,-7.3,248,508,0,507,0.303,34.2,59.38,0.89,0.68,797,0.4,224,4.6
+758,2020,2,1,14,30,6.8,1.23,0.015,0.62,55,981,482,0,7,-7.4,199,528,0,429,0.305,35.61,64.19,0.89,0.68,797,0.4,216,4
+759,2020,2,1,15,30,4.2,1.22,0.015,0.62,47,908,336,0,7,-6.2,170,328,0,275,0.306,46.9,71.41,0.89,0.68,797,0.4,206,2.7
+760,2020,2,1,16,30,0.3,1.22,0.014,0.62,33,739,157,7,7,-5.3,98,50,100,106,0.306,65.98,80.33,0.88,0.68,797,0.4,200,2
+761,2020,2,1,17,30,-1.8,1.21,0.013,0.62,7,110,7,3,8,-7.6,5,1,43,5,0.306,64.54,90.05,0.88,0.65,797,0.4,200,2
+762,2020,2,1,18,30,-2.4,1.21,0.013,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.306,65.95,101.37,0.88,0.65,797,0.4,201,1.9
+763,2020,2,1,19,30,-2.8,1.21,0.013,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.305,67.96,112.64,0.88,0.65,796,0.4,201,2
+764,2020,2,1,20,30,-3.1,1.23,0.013,0.62,0,0,0,0,4,-7.8,0,0,0,0,0.305,69.96,124.01,0.88,0.65,796,0.4,199,2.3
+765,2020,2,1,21,30,-3.1,1.23,0.013,0.62,0,0,0,0,4,-7.7,0,0,0,0,0.306,70.7,135.12,0.88,0.65,796,0.4,196,2.5
+766,2020,2,1,22,30,-3.2,1.23,0.013,0.62,0,0,0,0,4,-7.6,0,0,0,0,0.306,71.61,145.35,0.88,0.65,795,0.4,194,2.7
+767,2020,2,1,23,30,-3.3,1.22,0.014,0.62,0,0,0,0,4,-7.6,0,0,0,0,0.306,72.08,153.31,0.88,0.65,795,0.4,194,2.9
+768,2020,2,2,0,30,-3.5,1.23,0.014,0.62,0,0,0,0,4,-7.7,0,0,0,0,0.305,72.58,156.39,0.88,0.65,794,0.4,194,3
+769,2020,2,2,1,30,-3.7,1.23,0.014,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.304,72.64,152.83,0.88,0.65,793,0.4,194,3
+770,2020,2,2,2,30,-4,1.23,0.013,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.304,73.08,144.62,0.88,0.65,792,0.4,193,3.1
+771,2020,2,2,3,30,-4.4,1.23,0.013,0.62,0,0,0,0,4,-8.3,0,0,0,0,0.305,74.23,134.29,0.88,0.65,791,0.4,191,3.1
+772,2020,2,2,4,30,-4.8,1.23,0.014,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.306,75.44,123.13,0.88,0.65,791,0.4,190,3.1
+773,2020,2,2,5,30,-5.2,1.23,0.014,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.308,76.21,111.74,0.88,0.65,790,0.4,189,3
+774,2020,2,2,6,30,-5.3,1.23,0.014,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.31,74.78,100.47,0.89,0.65,789,0.5,187,2.9
+775,2020,2,2,7,30,-3.7,1.23,0.015,0.62,11,170,13,0,0,-9.4,11,170,0,13,0.312,64.51,89.28,0.89,0.65,788,0.5,186,3.3
+776,2020,2,2,8,30,-0.8,1.23,0.015,0.62,36,746,172,0,0,-8.9,36,746,0,172,0.313,54.06,79.49,0.9,0.65,788,0.5,189,4
+777,2020,2,2,9,30,2.1,1.23,0.017,0.62,50,903,349,0,0,-8.5,75,781,0,334,0.315,45.31,70.64,0.9,0.65,787,0.5,195,5
+778,2020,2,2,10,30,4.7,1.22,0.018,0.62,59,970,491,0,0,-8.7,59,970,0,491,0.316,37.3,63.53,0.9,0.65,786,0.5,202,6.3
+779,2020,2,2,11,30,6.3,1.04,0.022,0.62,66,1004,585,0,0,-9.1,66,1004,0,585,0.316,32.36,58.88,0.91,0.65,784,0.5,206,7.1
+780,2020,2,2,12,30,7.2,1.03,0.021,0.62,67,1018,617,0,0,-9.3,67,1018,0,617,0.314,29.91,57.32,0.9,0.65,783,0.4,207,7.4
+781,2020,2,2,13,30,7.6,1.06,0.02,0.62,65,1010,584,0,0,-9.3,65,1010,0,584,0.311,29.11,59.09,0.9,0.65,781,0.4,206,7.5
+782,2020,2,2,14,30,7.4,1.09,0.02,0.62,59,977,489,0,0,-9,59,977,0,489,0.308,30.25,63.92,0.9,0.65,780,0.4,206,7
+783,2020,2,2,15,30,5.4,1.11,0.02,0.62,51,901,342,0,0,-8,51,901,0,342,0.307,37.32,71.16,0.9,0.65,779,0.4,204,5.7
+784,2020,2,2,16,30,2,1.09,0.021,0.62,37,714,160,0,0,-7,37,714,0,160,0.307,51.46,80.1,0.91,0.65,778,0.5,202,4.3
+785,2020,2,2,17,30,-0.3,1.08,0.024,0.62,8,98,8,1,0,-7,8,98,14,8,0.309,60.72,89.88,0.92,0.67,777,0.5,196,3.8
+786,2020,2,2,18,30,-0.9,1.11,0.028,0.62,0,0,0,0,8,-6.7,0,0,0,0,0.31,64.63,101.17,0.93,0.67,776,0.6,190,3.5
+787,2020,2,2,19,30,-1,1.14,0.031,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.313,66.86,112.44,0.93,0.67,776,0.6,183,3.5
+788,2020,2,2,20,30,-0.9,1.17,0.033,0.62,0,0,0,0,6,-6,0,0,0,0,0.316,68.47,123.81,0.94,0.67,775,0.7,175,3.7
+789,2020,2,2,21,30,-0.7,1.18,0.035,0.62,0,0,0,0,6,-5.6,0,0,0,0,0.319,69.67,134.91,0.93,0.67,774,0.7,171,4
+790,2020,2,2,22,30,-0.4,1.18,0.033,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.322,70.01,145.11,0.93,0.67,773,0.6,174,4.4
+791,2020,2,2,23,30,-0.3,1.16,0.032,0.62,0,0,0,0,6,-5,0,0,0,0,0.325,70.76,153.03,0.92,0.67,772,0.6,181,4.9
+792,2020,2,3,0,30,-0.2,1.11,0.035,0.62,0,0,0,0,7,-4.8,0,0,0,0,0.328,71.12,156.1,0.92,0.67,772,0.6,184,5.2
+793,2020,2,3,1,30,-0.3,1.08,0.037,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.332,71.87,152.59,0.92,0.67,771,0.6,186,5.7
+794,2020,2,3,2,30,-0.5,1.08,0.042,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.336,72.02,144.42,0.93,0.67,771,0.6,192,6.2
+795,2020,2,3,3,30,-0.6,1.09,0.055,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.339,71.67,134.12,0.94,0.67,770,0.7,199,6.4
+796,2020,2,3,4,30,-1,1.05,0.074,0.62,0,0,0,0,8,-4.9,0,0,0,0,0.343,75.12,122.97,0.96,0.67,770,0.7,202,5.7
+797,2020,2,3,5,30,-1.6,1.02,0.1,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.35,81.87,111.58,0.96,0.67,770,0.7,206,5
+798,2020,2,3,6,30,-2.1,1.01,0.1,0.62,0,0,0,0,4,-4,0,0,0,0,0.357,87,100.31,0.96,0.67,770,0.6,216,4.6
+799,2020,2,3,7,30,-2.5,1.01,0.08,0.62,11,99,13,5,7,-4.5,6,0,71,6,0.363,86.34,89.13,0.95,0.67,770,0.6,234,4.3
+800,2020,2,3,8,30,-2.3,1.02,0.066,0.62,50,635,168,7,7,-6,51,0,100,51,0.367,75.55,79.29,0.95,0.67,771,0.5,248,4
+801,2020,2,3,9,30,-1.8,1.04,0.053,0.62,65,849,350,0,7,-8.4,101,1,0,101,0.369,60.88,70.41,0.94,0.67,771,0.4,246,3.8
+802,2020,2,3,10,30,-1.1,1.05,0.043,0.62,73,946,498,0,7,-10,209,12,0,214,0.369,50.94,63.28,0.94,0.67,771,0.4,232,4.4
+803,2020,2,3,11,30,-0.8,1.04,0.037,0.62,76,989,591,0,7,-11,230,6,0,233,0.37,46.11,58.6,0.94,0.67,770,0.4,227,5.4
+804,2020,2,3,12,30,-1,1.01,0.033,0.62,76,1011,626,0,7,-11.8,253,8,0,257,0.371,43.85,57.02,0.94,0.67,770,0.3,232,6
+805,2020,2,3,13,30,-1.7,1.01,0.031,0.62,73,1006,594,0,7,-12.4,293,117,0,354,0.374,43.97,58.8,0.94,0.67,770,0.3,242,5.8
+806,2020,2,3,14,30,-2.8,1.02,0.032,0.62,69,965,497,0,7,-12.7,284,108,0,332,0.378,46.55,63.64,0.95,0.67,771,0.3,257,5.1
+807,2020,2,3,15,30,-4.3,1.04,0.037,0.62,61,873,347,0,4,-12.9,230,74,0,254,0.382,51.27,70.9,0.95,0.67,772,0.3,277,4.4
+808,2020,2,3,16,30,-6.1,1.06,0.047,0.62,47,658,163,7,4,-13.2,62,0,100,62,0.385,57.4,79.86,0.96,0.67,774,0.3,298,4.4
+809,2020,2,3,17,30,-7.6,1.07,0.063,0.62,10,93,11,4,7,-13.6,5,0,57,5,0.389,62.31,89.68,0.97,0.8,775,0.3,313,4.7
+810,2020,2,3,18,30,-8.6,1.06,0.075,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.391,65.41,100.96,0.97,0.8,776,0.3,320,4.8
+811,2020,2,3,19,30,-9.2,1.07,0.076,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.394,65.73,112.24,0.97,0.8,776,0.3,321,4.4
+812,2020,2,3,20,30,-9.5,1.09,0.076,0.62,0,0,0,0,7,-14.9,0,0,0,0,0.396,64.88,123.61,0.97,0.8,777,0.3,317,3.9
+813,2020,2,3,21,30,-9.6,1.11,0.078,0.62,0,0,0,0,7,-15.1,0,0,0,0,0.398,63.99,134.7,0.97,0.8,777,0.3,310,3.5
+814,2020,2,3,22,30,-9.6,1.11,0.08,0.62,0,0,0,0,8,-15.2,0,0,0,0,0.401,63.52,144.87,0.97,0.8,778,0.3,306,3.4
+815,2020,2,3,23,30,-9.6,1.11,0.082,0.62,0,0,0,0,8,-15.2,0,0,0,0,0.404,63.45,152.76,0.97,0.8,778,0.3,308,3.3
+816,2020,2,4,0,30,-9.8,1.11,0.082,0.62,0,0,0,0,8,-15.2,0,0,0,0,0.408,64.54,155.81,0.97,0.8,779,0.3,314,3.3
+817,2020,2,4,1,30,-9.9,1.11,0.081,0.62,0,0,0,0,8,-15.2,0,0,0,0,0.412,65.49,152.33,0.97,0.8,779,0.3,326,3.7
+818,2020,2,4,2,30,-10,1.1,0.085,0.62,0,0,0,0,8,-14.9,0,0,0,0,0.417,67.18,144.22,0.97,0.8,780,0.3,344,4.4
+819,2020,2,4,3,30,-10.1,1.07,0.093,0.62,0,0,0,0,8,-14.7,0,0,0,0,0.421,69.29,133.94,0.97,0.8,781,0.3,181,5.5
+820,2020,2,4,4,30,-10.4,1.06,0.095,0.62,0,0,0,0,8,-14.7,0,0,0,0,0.425,70.91,122.81,0.97,0.8,781,0.3,11,6.8
+821,2020,2,4,5,30,-10.8,1.04,0.094,0.62,0,0,0,0,8,-15,0,0,0,0,0.428,70.94,111.42,0.97,0.8,782,0.3,16,7.8
+822,2020,2,4,6,30,-11.2,1.04,0.088,0.62,0,0,0,0,8,-15.6,0,0,0,0,0.428,70.15,100.14,0.97,0.8,783,0.3,19,8.2
+823,2020,2,4,7,30,-11.3,1.05,0.075,0.62,14,146,17,5,8,-16.1,9,0,71,9,0.425,67.45,88.95,0.97,0.8,784,0.2,21,8.6
+824,2020,2,4,8,30,-10.8,1.08,0.059,0.62,51,693,182,7,4,-16.5,104,48,100,113,0.421,62.68,79.09,0.96,0.8,784,0.2,25,9
+825,2020,2,4,9,30,-10,1.11,0.047,0.62,67,889,368,0,4,-17.1,194,179,0,255,0.416,56.1,70.18,0.95,0.8,785,0.2,29,9.1
+826,2020,2,4,10,30,-9.1,1.13,0.041,0.62,77,973,518,0,4,-17.6,173,37,4,190,0.41,49.99,63.02,0.95,0.8,786,0.2,30,8.8
+827,2020,2,4,11,30,-8.5,1.12,0.039,0.62,83,1010,613,0,4,-17.8,183,2,0,184,0.403,46.93,58.32,0.95,0.8,786,0.2,30,8.2
+828,2020,2,4,12,30,-8,1.11,0.038,0.62,83,1022,644,0,4,-17.9,423,141,4,500,0.398,45.05,56.73,0.95,0.8,786,0.2,28,7.6
+829,2020,2,4,13,30,-8,1.1,0.036,0.62,80,1013,609,0,4,-17.9,248,572,7,547,0.396,44.69,58.51,0.95,0.8,786,0.2,25,6.9
+830,2020,2,4,14,30,-8.3,1.1,0.034,0.62,72,982,512,1,4,-18.1,269,403,18,450,0.398,45.2,63.36,0.95,0.8,786,0.2,21,6.3
+831,2020,2,4,15,30,-9.1,1.1,0.031,0.62,59,911,361,3,4,-18.3,223,191,39,286,0.402,47.23,70.64,0.95,0.8,786,0.2,18,5.6
+832,2020,2,4,16,30,-10.4,1.1,0.028,0.62,40,748,175,7,4,-18.6,100,3,100,101,0.404,50.84,79.62,0.94,0.8,787,0.2,16,4.5
+833,2020,2,4,17,30,-11.7,1.12,0.024,0.62,12,161,13,4,8,-19.5,7,0,57,7,0.405,52.21,89.47,0.93,0.8,787,0.2,15,3.3
+834,2020,2,4,18,30,-12.4,1.15,0.02,0.62,0,0,0,0,8,-19.5,0,0,0,0,0.405,55.3,100.76,0.93,0.8,787,0.2,11,2.2
+835,2020,2,4,19,30,-13,1.18,0.018,0.62,0,0,0,0,8,-19.1,0,0,0,0,0.407,60.35,112.04,0.92,0.8,787,0.2,180,1.4
+836,2020,2,4,20,30,-13.6,1.21,0.016,0.62,0,0,0,0,8,-18.8,0,0,0,0,0.409,65.07,123.41,0.91,0.8,788,0.2,343,0.8
+837,2020,2,4,21,30,-14.2,1.25,0.014,0.62,0,0,0,0,8,-18.8,0,0,0,0,0.407,68.22,134.48,0.9,0.8,788,0.2,299,0.5
+838,2020,2,4,22,30,-14.8,1.27,0.013,0.62,0,0,0,0,0,-19.2,0,0,0,0,0.402,69.36,144.63,0.9,0.8,788,0.2,252,0.5
+839,2020,2,4,23,30,-15.4,1.29,0.012,0.62,0,0,0,0,0,-19.4,0,0,0,0,0.399,71.63,152.47,0.9,0.8,787,0.2,230,0.8
+840,2020,2,5,0,30,-15.9,1.31,0.011,0.62,0,0,0,0,0,-19.5,0,0,0,0,0.397,73.77,155.51,0.9,0.8,787,0.2,213,1
+841,2020,2,5,1,30,-16.3,1.33,0.012,0.62,0,0,0,0,8,-19.6,0,0,0,0,0.398,75.67,152.07,0.9,0.8,787,0.2,198,1.3
+842,2020,2,5,2,30,-16.3,1.32,0.013,0.62,0,0,0,0,7,-19.7,0,0,0,0,0.402,75.19,144,0.91,0.8,786,0.2,190,1.6
+843,2020,2,5,3,30,-16.1,1.29,0.015,0.62,0,0,0,0,7,-19.6,0,0,0,0,0.405,74.22,133.76,0.92,0.8,786,0.3,188,2
+844,2020,2,5,4,30,-15.9,1.25,0.017,0.62,0,0,0,0,7,-19.6,0,0,0,0,0.409,73.08,122.64,0.93,0.8,786,0.3,188,2.3
+845,2020,2,5,5,30,-15.6,1.2,0.02,0.62,0,0,0,0,7,-19.7,0,0,0,0,0.413,70.96,111.25,0.93,0.8,786,0.3,188,2.4
+846,2020,2,5,6,30,-15.1,1.16,0.021,0.62,0,0,0,0,7,-19.4,0,0,0,0,0.418,69.54,99.97,0.93,0.8,786,0.3,199,2.2
+847,2020,2,5,7,30,-13.8,1.15,0.02,0.62,15,232,20,5,4,-18.9,8,0,71,8,0.421,65.18,88.77,0.93,0.8,786,0.3,229,1.9
+848,2020,2,5,8,30,-12,1.15,0.019,0.62,38,770,187,7,4,-18.1,101,2,100,101,0.422,60.7,78.88,0.92,0.8,786,0.3,272,2
+849,2020,2,5,9,30,-10.1,1.16,0.018,0.62,53,924,370,0,4,-17.2,242,40,4,256,0.418,56.28,69.95,0.92,0.8,786,0.3,309,2.7
+850,2020,2,5,10,30,-8.4,1.2,0.019,0.62,63,992,517,0,4,-16.2,264,33,0,279,0.411,53.35,62.76,0.92,0.8,786,0.3,329,3.5
+851,2020,2,5,11,30,-6.9,1.24,0.019,0.62,68,1024,610,0,4,-15.4,405,173,0,497,0.402,50.77,58.03,0.92,0.8,785,0.3,336,3.9
+852,2020,2,5,12,30,-5.7,1.26,0.019,0.62,69,1034,641,0,4,-14.7,372,358,0,570,0.394,49.06,56.43,0.92,0.8,785,0.3,338,4.4
+853,2020,2,5,13,30,-5,1.27,0.02,0.62,68,1019,605,0,4,-14.2,347,313,14,512,0.388,48.48,58.21,0.92,0.8,784,0.4,338,4.7
+854,2020,2,5,14,30,-4.8,1.29,0.019,0.62,62,979,505,0,4,-13.9,243,413,7,430,0.378,49.14,63.08,0.92,0.8,784,0.4,337,4.7
+855,2020,2,5,15,30,-5.3,1.28,0.02,0.62,53,907,358,2,4,-13.5,204,254,21,289,0.364,52.72,70.38,0.93,0.8,784,0.4,336,4.2
+856,2020,2,5,16,30,-6.9,1.28,0.021,0.62,39,744,176,7,4,-13.3,94,2,100,94,0.349,60.1,79.39,0.93,0.8,783,0.4,334,2.8
+857,2020,2,5,17,30,-8.5,1.31,0.021,0.62,12,165,14,4,4,-13.3,5,0,57,5,0.336,68.13,89.28,0.93,0.8,783,0.4,329,1.3
+858,2020,2,5,18,30,-9.4,1.31,0.023,0.62,0,0,0,0,4,-13.3,0,0,0,0,0.324,73.28,100.55,0.93,0.8,784,0.5,315,0.9
+859,2020,2,5,19,30,-10.1,1.33,0.021,0.62,0,0,0,0,4,-13.3,0,0,0,0,0.315,77.65,111.84,0.93,0.8,784,0.5,295,0.9
+860,2020,2,5,20,30,-10.4,1.33,0.019,0.62,0,0,0,0,4,-13.2,0,0,0,0,0.309,79.69,123.2,0.93,0.8,784,0.5,272,1
+861,2020,2,5,21,30,-10.4,1.32,0.019,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.305,81.82,134.27,0.93,0.8,784,0.5,243,1.1
+862,2020,2,5,22,30,-10.4,1.31,0.018,0.62,0,0,0,0,4,-12.5,0,0,0,0,0.302,84.66,144.38,0.93,0.8,784,0.6,220,1.4
+863,2020,2,5,23,30,-10.4,1.3,0.017,0.62,0,0,0,0,4,-12.1,0,0,0,0,0.3,87.43,152.19,0.93,0.8,783,0.6,215,1.7
+864,2020,2,6,0,30,-10.3,1.28,0.018,0.62,0,0,0,0,4,-11.7,0,0,0,0,0.299,89.25,155.21,0.94,0.8,783,0.6,216,2
+865,2020,2,6,1,30,-10.2,1.27,0.02,0.62,0,0,0,0,7,-11.5,0,0,0,0,0.298,90.07,151.81,0.94,0.8,782,0.6,213,2.2
+866,2020,2,6,2,30,-10,1.27,0.019,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.297,89.45,143.79,0.94,0.8,782,0.7,209,2.5
+867,2020,2,6,3,30,-9.8,1.27,0.018,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.296,88.42,133.57,0.94,0.8,781,0.7,209,2.8
+868,2020,2,6,4,30,-9.5,1.26,0.018,0.62,0,0,0,0,6,-11.3,0,0,0,0,0.297,86.65,122.47,0.94,0.8,781,0.7,210,3
+869,2020,2,6,5,30,-9.4,1.27,0.018,0.62,0,0,0,0,6,-11.2,0,0,0,0,0.299,86.72,111.08,0.94,0.8,781,0.7,210,3
+870,2020,2,6,6,30,-9.2,1.29,0.016,0.62,0,0,0,0,6,-11,0,0,0,0,0.302,86.84,99.79,0.93,0.8,781,0.7,211,3
+871,2020,2,6,7,30,-8.3,1.3,0.014,0.62,14,234,20,5,6,-10.6,9,0,71,9,0.304,83.33,88.6,0.93,0.8,781,0.7,213,3.3
+872,2020,2,6,8,30,-6.8,1.32,0.013,0.62,36,756,185,7,7,-9.7,69,3,100,70,0.307,79.59,78.67,0.92,0.8,781,0.7,223,3.8
+873,2020,2,6,9,30,-4.5,1.32,0.013,0.62,49,903,362,1,7,-8.5,132,17,18,138,0.31,73.43,69.71,0.92,0.8,781,0.8,252,4.2
+874,2020,2,6,10,30,-1.7,1.3,0.013,0.62,57,970,505,0,7,-6.8,194,13,0,200,0.31,68.17,62.49,0.92,0.8,781,0.8,287,5.1
+875,2020,2,6,11,30,0.6,1.29,0.013,0.62,63,1001,597,0,7,-5.2,208,6,0,211,0.31,65.02,57.74,0.92,0.8,781,0.7,307,6.3
+876,2020,2,6,12,30,1.8,1.27,0.015,0.62,66,1010,629,0,7,-4.5,377,158,0,465,0.311,63.14,56.12,0.93,0.8,780,0.7,315,7.2
+877,2020,2,6,13,30,2,1.27,0.016,0.62,64,999,595,0,4,-4.4,322,318,7,491,0.313,62.69,57.91,0.93,0.8,780,0.7,318,7.5
+878,2020,2,6,14,30,1.7,1.28,0.015,0.62,59,967,501,0,7,-4.4,188,11,0,193,0.312,63.88,62.8,0.92,0.8,780,0.7,319,7.1
+879,2020,2,6,15,30,0.9,1.28,0.014,0.62,49,899,355,0,7,-4.2,174,45,0,189,0.309,68.69,70.13,0.92,0.8,781,0.7,318,6
+880,2020,2,6,16,30,-0.4,1.29,0.013,0.62,36,745,176,7,6,-4,51,0,100,51,0.305,76.56,79.15,0.92,0.8,781,0.7,318,5
+881,2020,2,6,17,30,-1.7,1.3,0.012,0.62,11,176,14,5,6,-4.2,4,0,71,4,0.302,82.93,89.1,0.91,0.66,781,0.7,318,4.3
+882,2020,2,6,18,30,-2.8,1.35,0.011,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.301,89.18,100.34,0.9,0.66,782,0.7,317,3.8
+883,2020,2,6,19,30,-3.8,1.39,0.01,0.62,0,0,0,0,7,-4.6,0,0,0,0,0.301,94.49,111.63,0.89,0.66,782,0.7,313,3.1
+884,2020,2,6,20,30,-4.5,1.41,0.01,0.62,0,0,0,0,7,-4.8,0,0,0,0,0.303,97.99,123,0.9,0.66,782,0.8,307,2.4
+885,2020,2,6,21,30,-4.5,1.4,0.01,0.62,0,0,0,0,4,-4.8,0,0,0,0,0.304,97.55,134.05,0.9,0.66,782,0.8,302,2
+886,2020,2,6,22,30,-4.3,1.41,0.01,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.306,97.4,144.14,0.9,0.66,782,0.8,298,2
+887,2020,2,6,23,30,-4,1.39,0.01,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.308,96.38,151.9,0.9,0.66,782,0.8,296,2
+888,2020,2,7,0,30,-4,1.39,0.011,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.312,97.07,154.9,0.89,0.66,782,0.8,293,2
+889,2020,2,7,1,30,-4.2,1.41,0.01,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.314,97.51,151.53,0.88,0.66,781,0.8,287,2.1
+890,2020,2,7,2,30,-4.2,1.39,0.01,0.62,0,0,0,0,4,-4.8,0,0,0,0,0.312,95.83,143.56,0.88,0.66,781,0.8,282,2.3
+891,2020,2,7,3,30,-4,1.36,0.01,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.31,93.72,133.38,0.89,0.66,781,0.8,282,2.6
+892,2020,2,7,4,30,-3.7,1.31,0.01,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.309,91.23,122.28,0.9,0.66,781,0.8,285,2.9
+893,2020,2,7,5,30,-3.4,1.3,0.01,0.62,0,0,0,0,4,-5,0,0,0,0,0.306,88.82,110.9,0.9,0.66,781,0.8,287,3.1
+894,2020,2,7,6,30,-3.1,1.3,0.01,0.62,0,0,0,0,4,-5,0,0,0,0,0.303,86.62,99.6,0.91,0.66,782,0.8,288,3.3
+895,2020,2,7,7,30,-1.4,1.28,0.01,0.62,14,245,21,4,4,-4.8,12,95,50,15,0.303,77.91,88.42,0.91,0.66,782,0.8,290,3.9
+896,2020,2,7,8,30,1,1.27,0.011,0.62,34,762,187,2,0,-3.5,54,539,29,162,0.304,71.66,78.45,0.91,0.66,783,0.8,292,4.9
+897,2020,2,7,9,30,3,1.28,0.01,0.62,44,908,363,0,0,-2.7,57,867,7,361,0.307,66.32,69.46,0.91,0.66,783,0.8,297,6.2
+898,2020,2,7,10,30,4.4,1.3,0.01,0.62,51,974,505,0,0,-2.6,51,974,0,505,0.311,60.51,62.21,0.9,0.66,783,0.8,303,7.7
+899,2020,2,7,11,30,5.1,1.32,0.01,0.62,54,1006,595,0,0,-3.1,54,1006,0,595,0.315,55.38,57.44,0.89,0.66,784,0.8,309,8.6
+900,2020,2,7,12,30,5.2,1.33,0.01,0.62,56,1014,626,0,0,-3.9,104,914,29,618,0.318,51.79,55.81,0.89,0.66,784,0.8,312,8.8
+901,2020,2,7,13,30,5.1,1.34,0.01,0.62,54,1004,592,0,7,-4.3,257,494,0,522,0.321,50.8,57.6,0.88,0.66,784,0.8,313,8.3
+902,2020,2,7,14,30,4.5,1.35,0.01,0.62,50,973,499,0,7,-4.3,222,406,0,409,0.321,53.01,62.52,0.88,0.66,784,0.8,315,7.3
+903,2020,2,7,15,30,3.2,1.35,0.01,0.62,42,905,354,0,7,-3.7,186,307,0,292,0.321,60.35,69.86,0.88,0.66,785,0.8,318,5.5
+904,2020,2,7,16,30,0.7,1.3,0.01,0.62,32,753,177,7,4,-3.1,86,8,100,88,0.32,75.59,78.92,0.9,0.66,786,0.8,320,3.5
+905,2020,2,7,17,30,-1.2,1.26,0.01,0.62,14,227,18,5,7,-4,5,0,71,5,0.319,81.4,88.89,0.91,0.65,786,0.8,316,2.4
+906,2020,2,7,18,30,-1.9,1.2,0.011,0.62,0,0,0,0,4,-4.1,0,0,0,0,0.319,84.76,100.13,0.92,0.65,787,0.8,306,1.8
+907,2020,2,7,19,30,-2.2,1.13,0.013,0.62,0,0,0,0,4,-4,0,0,0,0,0.318,87.21,111.43,0.92,0.65,788,0.8,290,1.4
+908,2020,2,7,20,30,-2.4,1.09,0.015,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.316,89.31,122.79,0.92,0.65,788,0.8,267,1.2
+909,2020,2,7,21,30,-2.7,1.08,0.017,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.315,91.18,133.83,0.92,0.65,788,0.8,245,1.3
+910,2020,2,7,22,30,-3.2,1.08,0.017,0.62,0,0,0,0,7,-4.1,0,0,0,0,0.312,93.29,143.89,0.92,0.65,788,0.8,230,1.4
+911,2020,2,7,23,30,-3.8,1.08,0.017,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.308,95.96,151.61,0.92,0.65,788,0.7,219,1.6
+912,2020,2,8,0,30,-4.2,1.08,0.018,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.305,98.22,154.59,0.92,0.65,787,0.7,208,1.7
+913,2020,2,8,1,30,-4.3,1.06,0.02,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.303,99.96,151.25,0.93,0.65,787,0.7,200,2
+914,2020,2,8,2,30,-4.4,1.04,0.02,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.3,100,143.33,0.93,0.65,787,0.7,196,2.2
+915,2020,2,8,3,30,-4.7,1.01,0.021,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.299,100,133.18,0.93,0.65,786,0.7,195,2.3
+916,2020,2,8,4,30,-5.2,0.96,0.019,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.298,100,122.1,0.92,0.65,786,0.6,194,2.4
+917,2020,2,8,5,30,-5.6,0.92,0.018,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.297,100,110.72,0.92,0.65,786,0.6,192,2.7
+918,2020,2,8,6,30,-5.5,0.9,0.016,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.294,100,99.41,0.91,0.65,785,0.6,189,3.4
+919,2020,2,8,7,30,-4,0.88,0.016,0.62,16,242,23,0,0,-5.4,16,242,0,23,0.293,90.02,88.23,0.91,0.65,784,0.6,189,4.5
+920,2020,2,8,8,30,-1.2,0.83,0.017,0.62,39,759,194,0,0,-4.1,39,759,0,194,0.295,80.4,78.22,0.91,0.65,784,0.6,194,5.5
+921,2020,2,8,9,30,1.9,0.72,0.02,0.62,55,900,374,0,0,-3,55,900,0,374,0.298,70.07,69.21,0.92,0.65,783,0.6,204,6.7
+922,2020,2,8,10,30,4.4,0.64,0.023,0.62,68,952,516,0,0,-2.7,68,952,0,516,0.301,60.1,61.93,0.92,0.65,782,0.7,214,7.9
+923,2020,2,8,11,30,6,0.55,0.036,0.62,79,969,605,0,0,-2.8,79,969,0,605,0.305,53.33,57.14,0.92,0.65,781,0.7,222,8.6
+924,2020,2,8,12,30,7.1,0.56,0.038,0.62,82,978,636,0,0,-3.3,82,978,0,636,0.31,47.42,55.5,0.92,0.65,780,0.7,231,9
+925,2020,2,8,13,30,7.7,0.6,0.037,0.62,77,977,605,0,0,-4.6,77,977,0,605,0.314,41.52,57.3,0.92,0.65,779,0.6,241,8.8
+926,2020,2,8,14,30,7.2,0.72,0.031,0.62,67,955,512,0,0,-5.9,67,955,0,512,0.316,38.75,62.23,0.91,0.65,779,0.6,257,8.2
+927,2020,2,8,15,30,5.3,0.84,0.024,0.62,54,892,365,0,0,-6.4,54,892,0,365,0.317,42.77,69.6,0.9,0.65,779,0.6,277,7.1
+928,2020,2,8,16,30,1.8,0.94,0.022,0.62,39,744,185,5,4,-5.9,92,265,68,144,0.32,56.78,78.68,0.89,0.65,780,0.6,298,5.6
+929,2020,2,8,17,30,-1.4,1.07,0.02,0.62,15,222,20,5,4,-6.4,10,0,71,10,0.322,68.82,88.69,0.89,0.76,782,0.5,317,4.5
+930,2020,2,8,18,30,-3.1,1.15,0.018,0.62,0,0,0,0,4,-7.5,0,0,0,0,0.323,71.51,99.92,0.89,0.76,783,0.5,332,3.9
+931,2020,2,8,19,30,-4.3,1.16,0.018,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.323,72.9,111.23,0.9,0.76,783,0.4,340,3.1
+932,2020,2,8,20,30,-5,1.16,0.018,0.62,0,0,0,0,4,-8.9,0,0,0,0,0.323,74.18,122.59,0.9,0.76,784,0.4,349,2.1
+933,2020,2,8,21,30,-5.2,1.15,0.018,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.323,75.38,133.61,0.91,0.76,784,0.4,179,1.6
+934,2020,2,8,22,30,-5.4,1.15,0.018,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.322,76.1,143.64,0.91,0.76,785,0.4,6,1.6
+935,2020,2,8,23,30,-5.7,1.16,0.02,0.62,0,0,0,0,7,-9,0,0,0,0,0.321,77.62,151.32,0.92,0.76,785,0.4,12,2
+936,2020,2,9,0,30,-5.9,1.15,0.022,0.62,0,0,0,0,7,-9,0,0,0,0,0.321,78.51,154.27,0.93,0.76,785,0.4,21,2.7
+937,2020,2,9,1,30,-6.1,1.14,0.025,0.62,0,0,0,0,7,-9,0,0,0,0,0.321,79.72,150.97,0.93,0.76,785,0.4,32,3.4
+938,2020,2,9,2,30,-6.1,1.14,0.03,0.62,0,0,0,0,7,-9,0,0,0,0,0.322,79.8,143.09,0.94,0.76,785,0.4,42,3.9
+939,2020,2,9,3,30,-6.2,1.14,0.033,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.322,80.12,132.97,0.94,0.76,786,0.4,47,4.4
+940,2020,2,9,4,30,-6.3,1.11,0.034,0.62,0,0,0,0,7,-9.2,0,0,0,0,0.322,79.98,121.91,0.95,0.76,786,0.4,47,4.8
+941,2020,2,9,5,30,-6.5,1.08,0.038,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.323,80.01,110.53,0.95,0.76,787,0.4,42,5.2
+942,2020,2,9,6,30,-6.7,1.06,0.04,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.323,78.83,99.21,0.95,0.76,787,0.4,38,5.5
+943,2020,2,9,7,30,-6.5,1.06,0.039,0.62,19,243,27,6,7,-10.1,11,0,86,11,0.323,75.61,88.03,0.95,0.76,788,0.4,37,6.2
+944,2020,2,9,8,30,-5.7,1.05,0.039,0.62,48,733,201,7,4,-10.2,96,4,100,97,0.326,70.47,77.99,0.94,0.76,788,0.4,40,7.1
+945,2020,2,9,9,30,-4.6,1.06,0.038,0.62,64,893,385,0,4,-10.8,197,18,0,203,0.329,62.13,68.95,0.94,0.76,788,0.4,43,7.3
+946,2020,2,9,10,30,-3.3,1.06,0.035,0.62,73,968,533,0,4,-11.4,315,229,0,424,0.331,53.55,61.65,0.94,0.76,789,0.4,43,6.8
+947,2020,2,9,11,30,-2,1.07,0.032,0.62,78,1006,628,0,4,-11.8,340,358,0,536,0.331,47.16,56.83,0.93,0.76,788,0.4,42,6.1
+948,2020,2,9,12,30,-1,1.1,0.028,0.62,77,1023,661,0,7,-12,371,291,0,537,0.331,43.2,55.18,0.92,0.76,788,0.4,38,5.3
+949,2020,2,9,13,30,-0.6,1.12,0.025,0.62,72,1021,628,0,4,-12.2,341,354,0,534,0.331,41.02,56.98,0.91,0.76,788,0.4,33,4.5
+950,2020,2,9,14,30,-0.8,1.15,0.022,0.62,65,998,534,0,4,-12.6,340,184,0,427,0.331,40.53,61.94,0.9,0.76,788,0.3,26,3.9
+951,2020,2,9,15,30,-1.7,1.16,0.02,0.62,53,934,383,0,4,-12.8,241,185,0,306,0.332,42.54,69.34,0.89,0.76,788,0.3,22,3.1
+952,2020,2,9,16,30,-3.8,1.17,0.017,0.62,38,792,197,7,4,-13.2,130,71,100,144,0.333,48.27,78.44,0.89,0.76,788,0.3,27,1.9
+953,2020,2,9,17,30,-5.5,1.18,0.015,0.62,15,256,22,5,4,-11.8,13,0,71,13,0.335,61.23,88.48,0.88,0.8,788,0.3,42,1
+954,2020,2,9,18,30,-6.2,1.19,0.013,0.62,0,0,0,0,4,-12.2,0,0,0,0,0.336,62.61,99.71,0.87,0.8,789,0.2,61,0.8
+955,2020,2,9,19,30,-6.7,1.21,0.012,0.62,0,0,0,0,0,-12.7,0,0,0,0,0.337,62.47,111.02,0.87,0.8,789,0.2,82,0.6
+956,2020,2,9,20,30,-7.2,1.22,0.012,0.62,0,0,0,0,0,-13,0,0,0,0,0.337,63.04,122.38,0.87,0.8,789,0.2,99,0.3
+957,2020,2,9,21,30,-7.6,1.23,0.012,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.337,64.66,133.39,0.87,0.8,789,0.2,209,0.2
+958,2020,2,9,22,30,-7.9,1.24,0.012,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.336,65.89,143.38,0.87,0.8,789,0.2,319,0.3
+959,2020,2,9,23,30,-8.4,1.25,0.013,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.335,68.2,151.02,0.87,0.8,789,0.2,334,0.5
+960,2020,2,10,0,30,-8.8,1.24,0.013,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.335,69.56,153.95,0.88,0.8,789,0.2,349,0.5
+961,2020,2,10,1,30,-9.2,1.24,0.014,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.336,71.02,150.68,0.88,0.8,789,0.3,195,0.5
+962,2020,2,10,2,30,-9.7,1.25,0.014,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.337,73.24,142.85,0.89,0.8,788,0.3,65,0.4
+963,2020,2,10,3,30,-10.2,1.27,0.015,0.62,0,0,0,0,0,-13.6,0,0,0,0,0.337,76.04,132.76,0.89,0.8,788,0.3,111,0.5
+964,2020,2,10,4,30,-10.7,1.28,0.016,0.62,0,0,0,0,8,-13.6,0,0,0,0,0.337,79.05,121.71,0.89,0.8,788,0.3,129,0.6
+965,2020,2,10,5,30,-11.1,1.27,0.017,0.62,0,0,0,0,8,-13.6,0,0,0,0,0.338,81.61,110.33,0.9,0.8,788,0.3,130,0.6
+966,2020,2,10,6,30,-11.1,1.24,0.018,0.62,0,0,0,0,4,-13.6,0,0,0,0,0.339,81.57,99.01,0.9,0.8,788,0.3,126,0.6
+967,2020,2,10,7,30,-9.8,1.22,0.019,0.62,18,309,30,6,7,-13.6,12,0,86,12,0.341,73.96,87.82,0.91,0.8,788,0.4,99,0.6
+968,2020,2,10,8,30,-7.2,1.21,0.021,0.62,43,778,208,7,7,-13.1,91,7,100,92,0.342,62.86,77.76,0.92,0.8,788,0.4,213,1
+969,2020,2,10,9,30,-5,1.19,0.024,0.62,59,915,392,0,6,-12.6,157,10,0,161,0.343,55.18,68.69,0.93,0.8,789,0.4,347,2.1
+970,2020,2,10,10,30,-3.9,1.18,0.028,0.62,73,975,540,0,7,-12.4,293,343,0,457,0.345,51.67,61.36,0.94,0.8,789,0.4,342,3
+971,2020,2,10,11,30,-3.6,1.17,0.032,0.62,81,1002,634,0,7,-12,353,176,0,450,0.347,52.22,56.51,0.94,0.8,789,0.4,344,3.6
+972,2020,2,10,12,30,-4,1.16,0.035,0.62,84,1009,665,0,7,-11.8,369,273,0,526,0.349,54.67,54.85,0.95,0.8,788,0.4,347,4
+973,2020,2,10,13,30,-4.6,1.15,0.036,0.62,82,997,630,0,7,-11.8,302,367,7,504,0.352,56.94,56.67,0.95,0.8,788,0.4,351,4.4
+974,2020,2,10,14,30,-5.1,1.15,0.036,0.62,75,964,533,0,0,-12.1,101,902,21,529,0.356,58.09,61.64,0.95,0.8,788,0.4,356,4.7
+975,2020,2,10,15,30,-5.7,1.17,0.034,0.62,62,900,384,0,0,-12.4,85,804,0,372,0.36,59.09,69.07,0.94,0.8,789,0.4,182,4.9
+976,2020,2,10,16,30,-6.5,1.19,0.03,0.62,44,764,200,7,4,-12.9,125,171,100,160,0.364,60.46,78.19,0.93,0.8,789,0.3,11,4.5
+977,2020,2,10,17,30,-7.5,1.22,0.026,0.62,17,238,24,6,4,-13.3,13,0,86,13,0.366,63.43,88.27,0.92,0.8,790,0.3,21,3.9
+978,2020,2,10,18,30,-8.6,1.27,0.023,0.62,0,0,0,0,4,-13.2,0,0,0,0,0.367,69.64,99.5,0.92,0.8,791,0.3,27,3.6
+979,2020,2,10,19,30,-9.6,1.31,0.021,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.367,75.84,110.82,0.91,0.8,791,0.3,30,3.5
+980,2020,2,10,20,30,-10.5,1.34,0.019,0.62,0,0,0,0,4,-13.1,0,0,0,0,0.366,81.17,122.17,0.91,0.8,792,0.3,30,3.4
+981,2020,2,10,21,30,-11.3,1.36,0.017,0.62,0,0,0,0,4,-13.4,0,0,0,0,0.366,84.62,133.16,0.9,0.8,792,0.2,30,3.2
+982,2020,2,10,22,30,-12,1.37,0.016,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.367,86.54,143.13,0.89,0.8,792,0.2,32,3.2
+983,2020,2,10,23,30,-12.7,1.37,0.015,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.37,87.83,150.72,0.89,0.8,792,0.2,35,3
+984,2020,2,11,0,30,-13.4,1.37,0.014,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.372,89.8,153.62,0.88,0.8,792,0.2,34,2.6
+985,2020,2,11,1,30,-14.1,1.37,0.013,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.372,92.03,150.39,0.88,0.8,792,0.2,31,2.2
+986,2020,2,11,2,30,-14.7,1.36,0.013,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.368,93.6,142.6,0.88,0.8,792,0.2,30,2
+987,2020,2,11,3,30,-15.1,1.36,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.36,93.8,132.54,0.88,0.8,791,0.2,30,1.6
+988,2020,2,11,4,30,-15.5,1.37,0.011,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.352,94.73,121.51,0.88,0.8,791,0.1,25,1.4
+989,2020,2,11,5,30,-15.8,1.37,0.011,0.62,0,0,0,0,0,-16.4,0,0,0,0,0.346,95.32,110.13,0.88,0.8,792,0.1,19,1.2
+990,2020,2,11,6,30,-15.5,1.38,0.01,0.62,0,0,0,0,0,-16.5,0,0,0,0,0.341,91.65,98.81,0.88,0.8,792,0.1,20,1.2
+991,2020,2,11,7,30,-13.8,1.38,0.01,0.62,18,380,34,0,0,-16.6,18,380,0,34,0.34,79.43,87.61,0.88,0.8,792,0.2,25,1.5
+992,2020,2,11,8,30,-10.8,1.4,0.01,0.62,35,845,218,1,0,-16.1,50,731,14,208,0.341,64.96,77.52,0.88,0.8,792,0.2,26,1.9
+993,2020,2,11,9,30,-7.7,1.42,0.01,0.62,46,975,405,0,0,-16.2,46,975,0,405,0.343,50.47,68.42,0.88,0.8,791,0.2,19,2.1
+994,2020,2,11,10,30,-5.6,1.43,0.01,0.62,55,1034,555,0,0,-17,61,1016,0,553,0.345,40.21,61.06,0.88,0.8,791,0.2,13,1.8
+995,2020,2,11,11,30,-4.1,1.48,0.01,0.62,59,1062,650,0,0,-17,59,1062,0,650,0.345,36.07,56.2,0.87,0.8,790,0.2,176,1.2
+996,2020,2,11,12,30,-2.9,1.49,0.01,0.62,60,1070,681,0,0,-16.9,60,1070,0,681,0.345,33.07,54.53,0.88,0.8,789,0.2,317,1
+997,2020,2,11,13,30,-2,1.48,0.01,0.62,59,1060,646,0,0,-16.9,59,1060,0,646,0.344,30.91,56.35,0.89,0.8,788,0.2,277,1.3
+998,2020,2,11,14,30,-1.4,1.43,0.01,0.62,54,1018,542,0,0,-17,71,976,11,539,0.343,29.4,61.35,0.9,0.8,787,0.3,253,1.9
+999,2020,2,11,15,30,-1.8,1.37,0.01,0.62,47,955,392,0,7,-16.7,201,342,7,325,0.344,31.09,68.8,0.9,0.8,787,0.3,234,2.1
+1000,2020,2,11,16,30,-3.7,1.33,0.01,0.62,35,816,205,7,7,-15.6,122,28,100,128,0.347,39.05,77.95,0.9,0.8,786,0.3,217,1.6
+1001,2020,2,11,17,30,-5.7,1.26,0.01,0.62,17,323,28,6,6,-13.3,11,0,86,11,0.352,55.22,88.06,0.9,0.8,787,0.4,207,1.3
+1002,2020,2,11,18,30,-6.8,1.13,0.013,0.62,0,0,0,0,7,-14,0,0,0,0,0.357,56.49,99.29,0.91,0.8,786,0.4,205,1.3
+1003,2020,2,11,19,30,-7.2,1.05,0.018,0.62,0,0,0,0,4,-14.7,0,0,0,0,0.362,55.2,110.62,0.91,0.8,786,0.5,202,1.2
+1004,2020,2,11,20,30,-7,1.07,0.019,0.62,0,0,0,0,0,-15,0,0,0,0,0.367,52.69,121.96,0.91,0.8,786,0.4,200,1
+1005,2020,2,11,21,30,-6.8,1.14,0.018,0.62,0,0,0,0,0,-15.3,0,0,0,0,0.368,50.63,132.94,0.9,0.8,786,0.4,200,0.8
+1006,2020,2,11,22,30,-6.7,1.16,0.017,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.368,48.63,142.87,0.9,0.8,786,0.4,215,0.5
+1007,2020,2,11,23,30,-6.8,1.15,0.017,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.367,47.59,150.42,0.91,0.8,786,0.4,257,0.4
+1008,2020,2,12,0,30,-7.1,1.12,0.018,0.62,0,0,0,0,0,-16,0,0,0,0,0.368,49.27,153.3,0.91,0.8,786,0.4,296,0.5
+1009,2020,2,12,1,30,-7.5,1.09,0.019,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.371,52.59,150.08,0.92,0.8,785,0.4,309,0.6
+1010,2020,2,12,2,30,-7.9,1.04,0.022,0.62,0,0,0,0,4,-15,0,0,0,0,0.374,56.71,142.34,0.93,0.8,785,0.4,311,0.6
+1011,2020,2,12,3,30,-8.3,1,0.025,0.62,0,0,0,0,7,-14.3,0,0,0,0,0.378,61.77,132.32,0.94,0.8,785,0.4,312,0.7
+1012,2020,2,12,4,30,-8.8,0.98,0.028,0.62,0,0,0,0,4,-13.7,0,0,0,0,0.384,67.91,121.3,0.94,0.8,785,0.4,315,0.8
+1013,2020,2,12,5,30,-9.3,0.97,0.029,0.62,0,0,0,0,4,-12.9,0,0,0,0,0.391,74.86,109.93,0.94,0.8,785,0.4,320,0.9
+1014,2020,2,12,6,30,-9.2,0.98,0.03,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.396,77.94,98.59,0.94,0.8,786,0.4,330,1
+1015,2020,2,12,7,30,-7.8,1,0.028,0.62,20,299,34,6,4,-11.8,17,34,93,19,0.398,72.7,87.4,0.93,0.8,786,0.4,340,1.6
+1016,2020,2,12,8,30,-5.4,1.03,0.027,0.62,45,773,215,6,4,-10.8,103,1,86,103,0.4,65.62,77.27,0.93,0.8,787,0.4,346,3
+1017,2020,2,12,9,30,-3.6,1.07,0.025,0.62,59,918,401,0,4,-9.9,174,5,0,176,0.401,61.52,68.15,0.93,0.8,787,0.4,354,4
+1018,2020,2,12,10,30,-2.3,1.09,0.024,0.62,69,986,550,0,4,-9.9,232,29,0,246,0.401,55.8,60.77,0.93,0.8,787,0.4,184,4
+1019,2020,2,12,11,30,-1.7,1.11,0.023,0.62,73,1021,646,0,4,-10.5,392,298,0,559,0.4,51,55.87,0.93,0.8,787,0.4,10,3.5
+1020,2020,2,12,12,30,-1.4,1.13,0.022,0.62,75,1032,679,0,4,-11.2,331,533,0,643,0.398,47.24,54.2,0.93,0.8,787,0.4,12,3.1
+1021,2020,2,12,13,30,-1.5,1.14,0.022,0.62,72,1024,644,0,0,-11.7,179,780,7,615,0.398,45.59,56.03,0.93,0.8,787,0.4,13,2.9
+1022,2020,2,12,14,30,-1.9,1.16,0.021,0.62,66,994,547,0,4,-12.1,348,220,0,454,0.399,45.6,61.05,0.92,0.8,787,0.4,13,2.7
+1023,2020,2,12,15,30,-2.4,1.18,0.02,0.62,56,930,396,0,4,-12.3,265,64,0,288,0.4,46.66,68.53,0.92,0.8,787,0.4,15,2.4
+1024,2020,2,12,16,30,-3.7,1.19,0.019,0.62,41,791,209,7,4,-12.4,115,3,100,116,0.401,51.02,77.71,0.92,0.8,787,0.4,27,1.5
+1025,2020,2,12,17,30,-5,1.21,0.018,0.62,18,314,30,4,4,-10.9,16,0,100,16,0.4,63.27,87.85,0.92,0.78,787,0.3,50,0.9
+1026,2020,2,12,18,30,-5.8,1.23,0.019,0.62,0,0,0,4,4,-11.2,0,0,100,0,0.398,65.51,99.08,0.92,0.78,787,0.4,70,0.8
+1027,2020,2,12,19,30,-6.3,1.24,0.018,0.62,0,0,0,4,4,-11.9,0,0,100,0,0.396,64.72,110.41,0.92,0.78,788,0.4,91,0.6
+1028,2020,2,12,20,30,-6.7,1.24,0.017,0.62,0,0,0,4,4,-12.1,0,0,100,0,0.393,65.41,121.75,0.92,0.78,788,0.4,117,0.4
+1029,2020,2,12,21,30,-7,1.24,0.017,0.62,0,0,0,4,4,-12.2,0,0,100,0,0.392,66.24,132.71,0.92,0.78,788,0.4,220,0.2
+1030,2020,2,12,22,30,-7.4,1.24,0.017,0.62,0,0,0,4,4,-12.3,0,0,100,0,0.39,67.93,142.61,0.92,0.78,788,0.4,311,0.4
+1031,2020,2,12,23,30,-7.7,1.23,0.018,0.62,0,0,0,4,4,-12.4,0,0,100,0,0.389,69.08,150.11,0.92,0.78,788,0.4,305,0.5
+1032,2020,2,13,0,30,-8,1.24,0.018,0.62,0,0,0,4,4,-12.3,0,0,100,0,0.388,71.08,152.96,0.92,0.78,788,0.4,276,0.6
+1033,2020,2,13,1,30,-8.5,1.25,0.017,0.62,0,0,0,4,4,-12.3,0,0,100,0,0.386,74.24,149.78,0.92,0.78,788,0.4,249,0.7
+1034,2020,2,13,2,30,-9.1,1.25,0.016,0.62,0,0,0,4,4,-12.4,0,0,100,0,0.385,77.22,142.08,0.92,0.78,787,0.4,242,0.9
+1035,2020,2,13,3,30,-9.5,1.24,0.016,0.62,0,0,0,4,4,-12.4,0,0,100,0,0.384,79.29,132.09,0.92,0.78,787,0.4,245,0.9
+1036,2020,2,13,4,30,-9.8,1.22,0.017,0.62,0,0,0,4,4,-12.5,0,0,100,0,0.384,80.96,121.08,0.92,0.78,787,0.4,251,0.8
+1037,2020,2,13,5,30,-9.9,1.19,0.018,0.62,0,0,0,4,7,-12.4,0,0,100,0,0.384,81.95,109.72,0.92,0.78,788,0.4,255,0.7
+1038,2020,2,13,6,30,-9.7,1.17,0.018,0.62,0,0,0,4,6,-12.3,0,0,100,0,0.383,81.41,98.38,0.92,0.78,788,0.4,256,0.5
+1039,2020,2,13,7,30,-8.4,1.16,0.017,0.62,20,380,39,4,7,-12,16,0,100,16,0.382,75.17,87.18,0.92,0.78,789,0.5,240,0.6
+1040,2020,2,13,8,30,-6,1.16,0.017,0.62,41,794,219,4,7,-11.3,83,2,100,83,0.381,65.97,77.02,0.92,0.78,789,0.5,261,0.9
+1041,2020,2,13,9,30,-3.5,1.16,0.016,0.62,53,929,403,4,7,-10.8,175,8,100,178,0.38,57.18,67.88,0.91,0.78,789,0.5,306,1.6
+1042,2020,2,13,10,30,-1.5,1.17,0.015,0.62,63,988,550,4,7,-11,285,24,100,297,0.378,48.31,60.46,0.92,0.78,789,0.5,317,2.1
+1043,2020,2,13,11,30,0,0.95,0.02,0.62,70,1014,644,4,7,-11.4,366,53,100,396,0.376,41.9,55.55,0.92,0.78,789,0.5,316,2.4
+1044,2020,2,13,12,30,1.2,0.99,0.018,0.62,70,1026,675,4,7,-11.6,397,58,100,431,0.37,37.8,53.86,0.92,0.78,788,0.5,313,2.4
+1045,2020,2,13,13,30,1.9,1.03,0.015,0.62,67,1018,641,4,7,-11.4,368,55,100,399,0.363,36.57,55.71,0.92,0.78,788,0.5,308,2.5
+1046,2020,2,13,14,30,2.2,0.94,0.017,0.62,61,986,543,4,7,-11.3,291,28,100,305,0.356,36.27,60.75,0.91,0.78,788,0.5,298,2.6
+1047,2020,2,13,15,30,1.5,0.97,0.015,0.62,51,923,393,4,7,-10.9,188,12,100,192,0.348,39.27,68.27,0.91,0.78,787,0.6,284,2.1
+1048,2020,2,13,16,30,-0.8,0.99,0.014,0.62,39,781,208,4,7,-8.6,86,4,100,87,0.342,55.55,77.47,0.91,0.78,787,0.6,260,1.3
+1049,2020,2,13,17,30,-2.8,0.98,0.015,0.62,18,311,31,4,4,-9.6,15,0,100,15,0.337,59.53,87.64,0.91,0.7,788,0.6,236,1.2
+1050,2020,2,13,18,30,-3.6,0.97,0.016,0.62,0,0,0,4,4,-10.1,0,0,100,0,0.334,60.77,98.87,0.91,0.7,788,0.6,224,1.3
+1051,2020,2,13,19,30,-3.9,0.93,0.017,0.62,0,0,0,4,4,-10,0,0,100,0,0.333,62.47,110.21,0.91,0.7,789,0.6,218,1.3
+1052,2020,2,13,20,30,-4.3,0.9,0.017,0.62,0,0,0,4,4,-10,0,0,100,0,0.332,64.42,121.54,0.91,0.7,789,0.6,209,1.3
+1053,2020,2,13,21,30,-4.9,0.88,0.017,0.62,0,0,0,4,4,-10.3,0,0,100,0,0.331,66.05,132.48,0.91,0.7,789,0.6,199,1.4
+1054,2020,2,13,22,30,-5.7,0.86,0.016,0.62,0,0,0,4,4,-10.6,0,0,100,0,0.328,68.49,142.35,0.91,0.7,789,0.6,192,1.7
+1055,2020,2,13,23,30,-6.4,0.86,0.016,0.62,0,0,0,4,4,-10.8,0,0,100,0,0.325,70.91,149.8,0.9,0.7,789,0.5,192,1.9
+1056,2020,2,14,0,30,-7.1,0.85,0.016,0.62,0,0,0,4,4,-10.9,0,0,100,0,0.321,74.24,152.63,0.9,0.7,789,0.5,194,2.1
+1057,2020,2,14,1,30,-7.6,0.85,0.016,0.62,0,0,0,4,4,-10.9,0,0,100,0,0.32,77.03,149.47,0.9,0.7,789,0.4,192,2.3
+1058,2020,2,14,2,30,-8,0.87,0.016,0.62,0,0,0,4,4,-11,0,0,100,0,0.32,79.21,141.82,0.9,0.7,788,0.4,188,2.4
+1059,2020,2,14,3,30,-8.3,0.89,0.016,0.62,0,0,0,4,4,-11,0,0,100,0,0.321,80.6,131.85,0.9,0.7,788,0.4,184,2.4
+1060,2020,2,14,4,30,-8.5,0.91,0.016,0.62,0,0,0,4,4,-11.2,0,0,100,0,0.324,80.74,120.86,0.9,0.7,788,0.4,181,2.5
+1061,2020,2,14,5,30,-8.7,0.93,0.016,0.62,0,0,0,4,7,-11.5,0,0,100,0,0.326,80.3,109.5,0.9,0.7,788,0.4,181,2.6
+1062,2020,2,14,6,30,-8.1,0.95,0.016,0.62,0,0,0,4,6,-11.8,0,0,100,0,0.327,74.86,98.16,0.9,0.7,788,0.4,183,2.8
+1063,2020,2,14,7,30,-5.7,0.97,0.017,0.62,21,394,42,4,7,-11.7,16,0,100,16,0.327,62.52,86.96,0.9,0.7,788,0.4,187,3.7
+1064,2020,2,14,8,30,-2.1,0.97,0.017,0.62,42,808,227,4,7,-10.8,90,4,100,91,0.329,51.55,76.77,0.9,0.7,788,0.4,196,4.9
+1065,2020,2,14,9,30,1.4,0.97,0.017,0.62,55,940,413,4,7,-9.6,192,14,100,197,0.331,43.7,67.6,0.9,0.7,788,0.4,208,6.4
+1066,2020,2,14,10,30,4.1,0.96,0.017,0.62,63,1009,565,4,7,-9.6,304,33,100,320,0.333,36.09,60.16,0.9,0.7,788,0.3,218,7.7
+1067,2020,2,14,11,30,5.6,0.94,0.018,0.62,68,1040,661,4,7,-9.7,376,66,100,414,0.334,32.2,55.22,0.9,0.7,787,0.3,223,8.1
+1068,2020,2,14,12,30,6.4,0.92,0.019,0.62,71,1046,693,4,7,-9.8,405,71,100,447,0.334,30.38,53.52,0.9,0.7,786,0.3,226,8.2
+1069,2020,2,14,13,30,6.7,0.9,0.02,0.62,69,1036,658,4,7,-9.8,375,69,100,414,0.335,29.69,55.38,0.9,0.7,786,0.3,226,8.2
+1070,2020,2,14,14,30,6.5,0.87,0.021,0.62,67,1000,560,4,7,-9.9,310,37,100,328,0.335,30.01,60.45,0.91,0.7,785,0.3,225,7.7
+1071,2020,2,14,15,30,5.2,0.85,0.023,0.62,58,925,405,4,7,-9.7,196,16,100,202,0.332,33.16,68,0.91,0.7,785,0.4,222,6.3
+1072,2020,2,14,16,30,1.9,0.85,0.025,0.62,45,774,216,4,7,-8.9,91,4,100,92,0.329,44.67,77.23,0.92,0.7,785,0.4,220,4.3
+1073,2020,2,14,17,30,-0.7,0.88,0.029,0.62,20,286,33,1,7,-8.8,22,2,100,22,0.329,54.28,87.43,0.92,0.7,785,0.5,224,3
+1074,2020,2,14,18,30,-1.2,0.91,0.033,0.62,0,0,0,1,7,-8.5,0,0,100,0,0.332,57.71,98.66,0.93,0.7,786,0.5,236,2.4
+1075,2020,2,14,19,30,-1.3,0.93,0.037,0.62,0,0,0,1,7,-7.9,0,0,100,0,0.337,60.97,110,0.93,0.7,786,0.6,256,1.9
+1076,2020,2,14,20,30,-1.8,0.94,0.038,0.62,0,0,0,1,7,-7.2,0,0,100,0,0.341,66.48,121.33,0.92,0.7,787,0.6,282,1.6
+1077,2020,2,14,21,30,-2.4,0.96,0.038,0.62,0,0,0,1,7,-7.1,0,0,100,0,0.344,70.35,132.26,0.92,0.7,788,0.5,311,1.6
+1078,2020,2,14,22,30,-2.9,0.99,0.038,0.62,0,0,0,1,7,-6.7,0,0,100,0,0.347,75.06,142.09,0.92,0.7,788,0.5,334,1.7
+1079,2020,2,14,23,30,-3.4,1.02,0.036,0.62,0,0,0,1,7,-6.4,0,0,100,0,0.35,79.48,149.49,0.92,0.7,788,0.5,349,1.9
+1080,2020,2,15,0,30,-3.9,1.04,0.035,0.62,0,0,0,1,7,-6.4,0,0,100,0,0.353,82.76,152.29,0.92,0.7,789,0.5,356,2
+1081,2020,2,15,1,30,-4.8,1.06,0.029,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.357,86.18,149.15,0.91,0.7,789,0.4,182,1.8
+1082,2020,2,15,2,30,-5.9,1.07,0.024,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.361,88.84,141.54,0.91,0.7,789,0.4,13,1.3
+1083,2020,2,15,3,30,-6.7,1.09,0.023,0.62,0,0,0,0,7,-8.2,0,0,0,0,0.364,89.4,131.61,0.92,0.7,789,0.4,23,1
+1084,2020,2,15,4,30,-7,1.1,0.024,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.368,88.04,120.64,0.92,0.7,789,0.3,39,0.8
+1085,2020,2,15,5,30,-7.1,1.12,0.024,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.371,87.51,109.28,0.92,0.7,789,0.3,70,0.7
+1086,2020,2,15,6,30,-7,1.14,0.019,0.62,0,0,0,0,8,-8.8,0,0,0,0,0.371,86.86,97.93,0.9,0.7,789,0.3,115,0.6
+1087,2020,2,15,7,30,-5.6,1.15,0.015,0.62,22,429,46,4,0,-8.6,21,114,57,28,0.367,79.55,86.73,0.89,0.7,790,0.3,183,0.9
+1088,2020,2,15,8,30,-2.9,1.17,0.015,0.62,40,831,234,5,7,-9.4,131,51,71,143,0.361,61.08,76.51,0.9,0.7,790,0.3,238,2
+1089,2020,2,15,9,30,-0.6,1.17,0.016,0.62,54,943,418,0,6,-10.9,142,6,0,144,0.354,45.8,67.32,0.91,0.7,790,0.4,253,3.4
+1090,2020,2,15,10,30,0.8,1.17,0.019,0.62,65,995,565,0,6,-11.7,268,51,0,294,0.346,38.56,59.84,0.93,0.7,790,0.4,251,4.2
+1091,2020,2,15,11,30,1.9,1.18,0.023,0.62,74,1012,656,0,6,-12.5,268,10,0,274,0.34,33.64,54.88,0.93,0.7,789,0.5,248,4.8
+1092,2020,2,15,12,30,2.8,1.14,0.028,0.62,78,1017,687,0,6,-12.8,319,115,0,388,0.338,30.69,53.18,0.94,0.7,789,0.5,246,5.2
+1093,2020,2,15,13,30,3.4,1.13,0.027,0.62,75,1008,652,1,0,-12.8,172,775,32,616,0.337,29.4,55.05,0.93,0.7,788,0.5,245,5.5
+1094,2020,2,15,14,30,3.4,1.12,0.026,0.62,69,972,553,2,7,-12.5,176,681,36,515,0.336,30.27,60.15,0.94,0.7,788,0.6,247,5.2
+1095,2020,2,15,15,30,2.2,1.12,0.029,0.62,61,900,402,0,7,-11.6,193,399,14,344,0.335,35.34,67.72,0.94,0.7,788,0.6,250,3.7
+1096,2020,2,15,16,30,0,1.11,0.03,0.62,46,756,216,7,7,-8.9,86,11,100,88,0.332,51.29,76.98,0.94,0.7,788,0.6,255,2
+1097,2020,2,15,17,30,-1.5,1.1,0.03,0.62,22,319,37,7,7,-8.3,13,0,100,13,0.329,59.76,87.22,0.95,0.66,788,0.7,264,1.6
+1098,2020,2,15,18,30,-1.7,1.11,0.032,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.328,61.75,98.45,0.95,0.66,789,0.7,271,1.4
+1099,2020,2,15,19,30,-1.7,1.12,0.032,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.327,65.36,109.79,0.95,0.66,789,0.7,267,1.2
+1100,2020,2,15,20,30,-1.7,1.14,0.028,0.62,0,0,0,0,4,-6.9,0,0,0,0,0.325,67.46,121.12,0.94,0.66,789,0.7,248,1
+1101,2020,2,15,21,30,-2,1.15,0.026,0.62,0,0,0,0,7,-6.8,0,0,0,0,0.324,69.94,132.03,0.94,0.66,789,0.7,222,0.9
+1102,2020,2,15,22,30,-2.4,1.16,0.025,0.62,0,0,0,0,4,-6.3,0,0,0,0,0.324,74.76,141.82,0.94,0.66,789,0.8,203,0.9
+1103,2020,2,15,23,30,-2.6,1.16,0.024,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.325,77.85,149.18,0.94,0.66,789,0.8,195,1
+1104,2020,2,16,0,30,-2.8,1.17,0.025,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.325,79.96,151.94,0.94,0.66,789,0.8,198,1
+1105,2020,2,16,1,30,-2.9,1.17,0.028,0.62,0,0,0,0,7,-5.6,0,0,0,0,0.325,81.67,148.83,0.94,0.66,788,0.8,204,1.2
+1106,2020,2,16,2,30,-3,1.18,0.033,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.327,83.45,141.27,0.95,0.66,788,0.8,207,1.4
+1107,2020,2,16,3,30,-3.3,1.19,0.036,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.329,85.48,131.36,0.94,0.66,788,0.8,209,1.6
+1108,2020,2,16,4,30,-3.5,1.22,0.033,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.33,86.06,120.41,0.94,0.66,787,0.8,214,1.7
+1109,2020,2,16,5,30,-3.6,1.23,0.027,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.329,85.34,109.05,0.94,0.66,787,0.9,220,1.8
+1110,2020,2,16,6,30,-3.1,1.22,0.027,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.327,82.03,97.7,0.94,0.66,787,0.9,223,2
+1111,2020,2,16,7,30,-2.3,1.22,0.024,0.62,22,372,45,7,7,-5.5,16,0,100,16,0.324,78.87,86.5,0.94,0.66,787,0.9,220,2.7
+1112,2020,2,16,8,30,-1.4,1.23,0.022,0.62,44,770,227,5,7,-5.1,81,5,71,82,0.324,76.16,76.25,0.94,0.66,787,0.9,216,3.8
+1113,2020,2,16,9,30,-0.4,1.24,0.023,0.62,58,900,409,0,7,-4.6,206,29,0,217,0.325,73.31,67.03,0.94,0.66,787,0.9,218,4.9
+1114,2020,2,16,10,30,1.1,1.26,0.024,0.62,67,960,554,0,7,-4.3,300,64,0,332,0.327,67.21,59.53,0.94,0.66,786,0.9,222,5.8
+1115,2020,2,16,11,30,2.6,1.27,0.026,0.62,75,985,646,0,7,-4,310,196,0,424,0.33,61.69,54.54,0.95,0.66,785,0.9,228,6.4
+1116,2020,2,16,12,30,3.6,1.25,0.032,0.62,80,989,677,0,7,-3.8,318,135,0,400,0.33,58.44,52.84,0.95,0.66,785,0.9,234,6.5
+1117,2020,2,16,13,30,4.3,1.25,0.033,0.62,78,979,643,0,7,-3.6,179,4,0,181,0.329,56.3,54.72,0.95,0.66,784,0.9,240,5.9
+1118,2020,2,16,14,30,4.6,1.25,0.032,0.62,70,951,548,0,7,-3.5,168,4,0,170,0.328,55.59,59.85,0.95,0.66,784,0.9,248,4.7
+1119,2020,2,16,15,30,3.6,1.24,0.027,0.62,58,895,401,0,4,-3.4,93,11,0,97,0.327,60.43,67.45,0.94,0.66,784,0.9,260,3
+1120,2020,2,16,16,30,1.3,1.25,0.022,0.62,42,772,219,7,4,-2.9,56,0,100,56,0.326,73.5,76.74,0.92,0.66,784,0.8,272,2
+1121,2020,2,16,17,30,-0.8,1.27,0.017,0.62,20,378,40,7,4,-4.3,12,0,100,12,0.325,77.05,87.01,0.91,0.72,785,0.7,281,2
+1122,2020,2,16,18,30,-1.9,1.24,0.014,0.62,0,0,0,0,8,-5.2,0,0,0,0,0.325,77.96,98.24,0.9,0.72,785,0.6,282,1.9
+1123,2020,2,16,19,30,-2.6,1.18,0.015,0.62,0,0,0,0,4,-5.6,0,0,0,0,0.326,79.75,109.59,0.89,0.72,786,0.6,279,1.7
+1124,2020,2,16,20,30,-3.2,1.14,0.017,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.327,81.67,120.91,0.9,0.72,786,0.5,273,1.5
+1125,2020,2,16,21,30,-3.6,1.13,0.02,0.62,0,0,0,0,4,-6,0,0,0,0,0.328,83.74,131.79,0.9,0.72,786,0.5,267,1.4
+1126,2020,2,16,22,30,-3.9,1.12,0.021,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.328,86.05,141.55,0.91,0.72,786,0.5,264,1.3
+1127,2020,2,16,23,30,-4.2,1.11,0.023,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.327,88.6,148.86,0.91,0.72,786,0.5,266,1.2
+1128,2020,2,17,0,30,-4.6,1.11,0.026,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.326,91.3,151.6,0.92,0.72,786,0.5,274,1
+1129,2020,2,17,1,30,-5,1.09,0.028,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.325,93.74,148.5,0.92,0.72,787,0.5,284,1
+1130,2020,2,17,2,30,-5.4,1.07,0.029,0.62,0,0,0,0,4,-6,0,0,0,0,0.324,95.84,140.98,0.92,0.72,787,0.5,295,1
+1131,2020,2,17,3,30,-5.8,1.05,0.031,0.62,0,0,0,0,4,-6.2,0,0,0,0,0.324,97.08,131.11,0.92,0.72,787,0.4,307,1
+1132,2020,2,17,4,30,-6.3,1.03,0.031,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.325,97.5,120.17,0.92,0.72,787,0.4,316,1.1
+1133,2020,2,17,5,30,-6.8,0.99,0.03,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.325,95.83,108.82,0.91,0.72,787,0.3,325,1.2
+1134,2020,2,17,6,30,-6.9,0.96,0.028,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.326,89.66,97.47,0.9,0.72,787,0.3,334,1.2
+1135,2020,2,17,7,30,-5.6,0.93,0.026,0.62,25,465,55,7,7,-8.9,29,1,100,29,0.327,77.31,86.25,0.89,0.72,788,0.2,335,2
+1136,2020,2,17,8,30,-3.9,0.93,0.026,0.62,47,833,249,4,7,-11.1,123,12,61,126,0.329,57.26,75.98,0.89,0.72,788,0.2,328,3.5
+1137,2020,2,17,9,30,-2.8,0.95,0.025,0.62,61,962,441,0,7,-14.4,175,15,0,181,0.331,40.54,66.73,0.89,0.72,788,0.2,321,4
+1138,2020,2,17,10,30,-1.8,0.98,0.024,0.62,70,1022,593,0,7,-16.1,307,93,0,355,0.334,32.79,59.21,0.9,0.72,788,0.2,313,3.9
+1139,2020,2,17,11,30,-0.9,1.01,0.025,0.62,75,1049,689,0,4,-17,460,92,0,514,0.338,28.43,54.2,0.89,0.72,788,0.2,303,3.8
+1140,2020,2,17,12,30,-0.1,1.02,0.025,0.62,77,1057,721,0,4,-17.6,467,199,0,588,0.342,25.42,52.49,0.89,0.72,787,0.2,294,4
+1141,2020,2,17,13,30,0.3,1.02,0.025,0.62,75,1047,685,0,4,-18,422,138,7,502,0.347,23.8,54.39,0.89,0.72,787,0.2,290,4.3
+1142,2020,2,17,14,30,0.3,1.03,0.026,0.62,70,1015,585,0,4,-18.2,347,140,0,418,0.352,23.54,59.54,0.9,0.72,786,0.2,294,4.6
+1143,2020,2,17,15,30,-0.6,1.04,0.028,0.62,63,950,431,0,4,-17.9,289,104,0,329,0.357,25.73,67.18,0.91,0.72,786,0.2,306,4.9
+1144,2020,2,17,16,30,-2.7,1.05,0.029,0.62,47,814,237,6,4,-17.3,147,84,86,167,0.362,31.7,76.5,0.91,0.72,787,0.2,322,4.5
+1145,2020,2,17,17,30,-4.7,1.08,0.028,0.62,23,393,45,7,4,-16,26,0,100,26,0.366,40.75,86.79,0.91,0.8,787,0.2,337,3.7
+1146,2020,2,17,18,30,-5.8,1.13,0.027,0.62,0,0,0,0,7,-15.7,0,0,0,0,0.369,45.63,98.03,0.91,0.8,788,0.2,346,3.1
+1147,2020,2,17,19,30,-6.3,1.15,0.026,0.62,0,0,0,0,7,-15.2,0,0,0,0,0.371,49.25,109.38,0.91,0.8,789,0.2,349,2.6
+1148,2020,2,17,20,30,-6.9,1.17,0.024,0.62,0,0,0,0,7,-14.8,0,0,0,0,0.373,53.4,120.69,0.91,0.8,789,0.2,348,1.9
+1149,2020,2,17,21,30,-7.7,1.18,0.022,0.62,0,0,0,0,7,-14,0,0,0,0,0.374,60.55,131.56,0.91,0.8,790,0.2,345,1.3
+1150,2020,2,17,22,30,-8.6,1.17,0.021,0.62,0,0,0,0,4,-13.6,0,0,0,0,0.373,67.25,141.28,0.91,0.8,790,0.2,341,1.1
+1151,2020,2,17,23,30,-9.3,1.16,0.02,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.371,71.42,148.54,0.9,0.8,790,0.2,336,1.1
+1152,2020,2,18,0,30,-9.8,1.14,0.019,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.367,74.67,151.24,0.9,0.8,791,0.2,334,1.1
+1153,2020,2,18,1,30,-10.3,1.13,0.019,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.362,78.48,148.17,0.9,0.8,791,0.2,333,1.1
+1154,2020,2,18,2,30,-10.7,1.13,0.02,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.356,81.75,140.69,0.9,0.8,791,0.2,335,1.2
+1155,2020,2,18,3,30,-11,1.14,0.02,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.352,84.33,130.86,0.9,0.8,792,0.2,340,1.2
+1156,2020,2,18,4,30,-11.4,1.16,0.021,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.348,87.2,119.93,0.91,0.8,792,0.2,350,1.1
+1157,2020,2,18,5,30,-11.8,1.16,0.022,0.62,0,0,0,0,0,-13.1,0,0,0,0,0.346,89.81,108.59,0.91,0.8,792,0.2,181,1
+1158,2020,2,18,6,30,-11.4,1.16,0.023,0.62,0,0,0,0,0,-13.2,0,0,0,0,0.343,86.44,97.23,0.91,0.8,793,0.2,12,0.9
+1159,2020,2,18,7,30,-9.6,1.15,0.024,0.62,25,494,59,7,4,-13.2,29,0,100,29,0.341,75.02,86.01,0.91,0.8,793,0.2,15,0.9
+1160,2020,2,18,8,30,-7,1.14,0.023,0.62,47,844,255,4,4,-13.4,124,359,50,213,0.34,60.4,75.71,0.91,0.8,793,0.2,28,0.7
+1161,2020,2,18,9,30,-5.1,1.12,0.023,0.62,61,967,448,0,4,-15.1,207,405,0,369,0.34,45.38,66.44,0.91,0.8,793,0.2,106,0.4
+1162,2020,2,18,10,30,-3.8,1.11,0.023,0.62,72,1023,601,0,4,-15.9,297,390,0,499,0.339,38.43,58.88,0.92,0.8,793,0.2,183,0.8
+1163,2020,2,18,11,30,-2.8,1.11,0.026,0.62,81,1047,698,0,0,-16.1,81,1047,0,698,0.338,35.12,53.86,0.92,0.8,792,0.2,205,1.4
+1164,2020,2,18,12,30,-2,1.07,0.029,0.62,83,1053,729,0,7,-16.2,241,719,0,682,0.338,32.84,52.14,0.92,0.8,791,0.2,217,1.9
+1165,2020,2,18,13,30,-1.5,1.06,0.03,0.62,82,1042,694,0,7,-16.4,217,737,0,650,0.338,31.16,54.05,0.92,0.8,791,0.2,224,2.2
+1166,2020,2,18,14,30,-1.3,1.05,0.031,0.62,76,1006,591,0,4,-16.7,279,516,0,543,0.337,30.02,59.24,0.92,0.8,790,0.2,227,2.3
+1167,2020,2,18,15,30,-1.6,1.04,0.032,0.62,66,939,434,0,0,-16.8,136,684,0,404,0.337,30.41,66.91,0.92,0.8,790,0.3,229,2.2
+1168,2020,2,18,16,30,-2.8,1.03,0.032,0.62,50,800,240,6,4,-16.6,155,63,86,170,0.337,33.67,76.25,0.92,0.8,790,0.3,227,1.4
+1169,2020,2,18,17,30,-3.9,1.02,0.032,0.62,24,377,47,7,4,-13.5,26,1,100,26,0.336,47.19,86.57,0.92,0.79,790,0.3,208,0.6
+1170,2020,2,18,18,30,-4.2,1.02,0.032,0.62,0,0,0,0,4,-14.7,0,0,0,0,0.334,43.7,97.82,0.92,0.79,790,0.3,179,0.5
+1171,2020,2,18,19,30,-4.4,1.03,0.032,0.62,0,0,0,0,4,-15.3,0,0,0,0,0.332,42.43,109.17,0.93,0.79,790,0.3,174,0.4
+1172,2020,2,18,20,30,-4.7,1.05,0.034,0.62,0,0,0,0,4,-15.7,0,0,0,0,0.329,42.02,120.48,0.93,0.79,790,0.3,211,0.3
+1173,2020,2,18,21,30,-4.9,1.05,0.036,0.62,0,0,0,0,4,-15.6,0,0,0,0,0.329,42.99,131.33,0.93,0.79,790,0.3,258,0.4
+1174,2020,2,18,22,30,-5.2,1.04,0.036,0.62,0,0,0,0,4,-15,0,0,0,0,0.329,45.99,141.01,0.93,0.79,790,0.3,278,0.4
+1175,2020,2,18,23,30,-5.4,1.04,0.037,0.62,0,0,0,0,7,-14.7,0,0,0,0,0.329,47.84,148.22,0.93,0.79,790,0.3,284,0.5
+1176,2020,2,19,0,30,-5.8,1.03,0.039,0.62,0,0,0,0,7,-14.5,0,0,0,0,0.328,50.43,150.89,0.93,0.79,790,0.3,287,0.5
+1177,2020,2,19,1,30,-6.2,1.03,0.04,0.62,0,0,0,0,7,-14.2,0,0,0,0,0.327,53.1,147.84,0.93,0.79,790,0.3,295,0.6
+1178,2020,2,19,2,30,-7,1.04,0.038,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.326,57.67,140.4,0.92,0.79,790,0.3,312,0.7
+1179,2020,2,19,3,30,-8.1,1.05,0.034,0.62,0,0,0,0,7,-14.2,0,0,0,0,0.327,61.64,130.59,0.92,0.79,790,0.3,332,0.8
+1180,2020,2,19,4,30,-9.2,1.05,0.031,0.62,0,0,0,0,7,-14.7,0,0,0,0,0.328,64.53,119.69,0.91,0.79,790,0.3,343,0.9
+1181,2020,2,19,5,30,-10.2,1.05,0.029,0.62,0,0,0,0,7,-15.1,0,0,0,0,0.332,67.22,108.35,0.91,0.79,791,0.3,348,1.1
+1182,2020,2,19,6,30,-10.4,1.05,0.027,0.62,0,0,0,0,8,-15.6,0,0,0,0,0.336,65.78,96.98,0.9,0.79,791,0.3,351,1.9
+1183,2020,2,19,7,30,-9.3,1.06,0.025,0.62,25,486,61,7,8,-15.5,36,2,100,36,0.341,60.65,85.76,0.9,0.79,792,0.3,354,2.9
+1184,2020,2,19,8,30,-7,1.07,0.024,0.62,48,837,258,0,0,-15.9,59,772,0,253,0.344,49.27,75.44,0.9,0.79,792,0.3,356,3.4
+1185,2020,2,19,9,30,-4.7,1.1,0.024,0.62,62,968,454,0,4,-15.7,165,610,0,412,0.343,41.77,66.14,0.9,0.79,792,0.2,354,3.5
+1186,2020,2,19,10,30,-3.1,1.13,0.023,0.62,71,1026,606,0,4,-15.4,268,471,0,514,0.342,38.05,58.55,0.9,0.79,793,0.2,350,3.6
+1187,2020,2,19,11,30,-2,1.16,0.023,0.62,77,1053,703,0,0,-15.3,77,1053,0,703,0.342,35.39,53.51,0.9,0.79,793,0.2,350,3.9
+1188,2020,2,19,12,30,-1.5,1.18,0.024,0.62,79,1061,735,0,0,-15.5,79,1061,0,735,0.343,33.59,51.78,0.9,0.79,793,0.2,353,4.2
+1189,2020,2,19,13,30,-1.4,1.2,0.024,0.62,76,1052,699,0,0,-16,76,1052,0,699,0.346,32.06,53.71,0.9,0.79,793,0.2,179,4.4
+1190,2020,2,19,14,30,-1.8,1.21,0.023,0.62,70,1024,598,0,0,-16.6,70,1024,0,598,0.351,31.23,58.93,0.89,0.79,793,0.2,5,4.5
+1191,2020,2,19,15,30,-2.8,1.22,0.022,0.62,60,966,443,0,0,-17.3,88,855,0,427,0.355,31.76,66.63,0.89,0.79,793,0.2,11,4.6
+1192,2020,2,19,16,30,-4.6,1.23,0.021,0.62,45,843,249,6,4,-17.9,152,187,86,197,0.36,34.62,76.01,0.89,0.79,794,0.2,18,4.3
+1193,2020,2,19,17,30,-6.6,1.22,0.02,0.62,23,490,54,7,4,-17.7,31,1,100,31,0.364,41,86.35,0.89,0.8,795,0.2,28,3.9
+1194,2020,2,19,18,30,-8.1,1.21,0.019,0.62,0,0,0,0,0,-16.9,0,0,0,0,0.365,49.05,97.61,0.88,0.8,796,0.2,37,3.8
+1195,2020,2,19,19,30,-9.4,1.2,0.017,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.364,58.19,108.96,0.88,0.8,796,0.1,43,3.5
+1196,2020,2,19,20,30,-10.5,1.2,0.017,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.363,66.87,120.27,0.88,0.8,797,0.1,50,2.9
+1197,2020,2,19,21,30,-11.3,1.19,0.016,0.62,0,0,0,0,0,-15.2,0,0,0,0,0.362,73.01,131.09,0.88,0.8,797,0.1,58,2.3
+1198,2020,2,19,22,30,-12,1.17,0.017,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.362,77.85,140.74,0.89,0.8,798,0.1,62,1.7
+1199,2020,2,19,23,30,-12.7,1.16,0.018,0.62,0,0,0,0,0,-15.1,0,0,0,0,0.361,82.35,147.89,0.89,0.8,798,0.1,61,1.3
+1200,2020,2,20,0,30,-13.2,1.14,0.02,0.62,0,0,0,0,0,-15.2,0,0,0,0,0.36,85.07,150.53,0.9,0.8,798,0.1,60,1.1
+1201,2020,2,20,1,30,-13.8,1.14,0.021,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.358,87.88,147.5,0.9,0.8,798,0.1,64,1.2
+1202,2020,2,20,2,30,-14.3,1.13,0.022,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.355,89.17,140.1,0.9,0.8,798,0.1,73,1.5
+1203,2020,2,20,3,30,-14.9,1.13,0.022,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.353,89.23,130.33,0.91,0.8,799,0.1,79,1.8
+1204,2020,2,20,4,30,-15.5,1.13,0.023,0.62,0,0,0,0,0,-17,0,0,0,0,0.351,88.51,119.44,0.91,0.8,799,0.1,77,1.8
+1205,2020,2,20,5,30,-16.1,1.12,0.023,0.62,0,0,0,0,0,-17.8,0,0,0,0,0.351,86.62,108.1,0.91,0.8,799,0.1,66,1.8
+1206,2020,2,20,6,30,-16.1,1.11,0.024,0.62,0,0,0,0,0,-18.8,0,0,0,0,0.35,79.88,96.73,0.91,0.8,800,0.1,56,2
+1207,2020,2,20,7,30,-14.9,1.11,0.023,0.62,26,548,69,0,0,-19.4,26,548,0,69,0.347,68.44,85.5,0.9,0.8,800,0.1,50,2
+1208,2020,2,20,8,30,-12.5,1.12,0.022,0.62,48,879,273,0,0,-18.8,48,879,0,273,0.344,59.47,75.16,0.89,0.8,801,0.1,42,1.9
+1209,2020,2,20,9,30,-9.6,1.13,0.02,0.62,60,1000,469,0,0,-18.1,74,955,0,465,0.339,49.85,65.83,0.89,0.8,801,0.1,39,1.5
+1210,2020,2,20,10,30,-7,1.12,0.019,0.62,68,1056,624,0,0,-18.5,127,927,0,615,0.334,39.48,58.22,0.88,0.8,801,0.1,55,1
+1211,2020,2,20,11,30,-4.9,1.11,0.018,0.62,72,1084,722,0,0,-19,72,1084,0,722,0.329,32.14,53.15,0.88,0.8,800,0.1,87,0.8
+1212,2020,2,20,12,30,-3.2,1.11,0.017,0.62,73,1092,754,0,0,-19.3,73,1092,0,754,0.325,27.65,51.42,0.87,0.8,800,0.1,113,0.9
+1213,2020,2,20,13,30,-2,1.11,0.017,0.62,71,1084,718,0,0,-19.5,71,1084,0,718,0.321,24.93,53.37,0.87,0.8,799,0.1,124,1
+1214,2020,2,20,14,30,-1.3,1.11,0.017,0.62,66,1057,616,0,0,-19.4,66,1057,0,616,0.317,23.87,58.62,0.87,0.8,799,0.1,130,1
+1215,2020,2,20,15,30,-1.4,1.12,0.017,0.62,57,1001,458,0,0,-19.1,88,887,0,444,0.314,24.53,66.36,0.87,0.8,799,0.1,134,0.8
+1216,2020,2,20,16,30,-2.7,1.12,0.017,0.62,44,880,260,3,4,-18.2,105,490,39,226,0.312,29.3,75.76,0.87,0.8,799,0.1,101,0.5
+1217,2020,2,20,17,30,-4.3,1.11,0.017,0.62,23,532,59,2,0,-16.1,27,369,29,52,0.31,39.2,86.13,0.87,0.76,799,0.1,54,0.5
+1218,2020,2,20,18,30,-5.4,1.11,0.018,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.31,43.89,97.4,0.87,0.76,799,0.1,39,0.7
+1219,2020,2,20,19,30,-6.1,1.11,0.018,0.62,0,0,0,0,0,-15.6,0,0,0,0,0.31,47.13,108.76,0.87,0.76,799,0.1,40,0.7
+1220,2020,2,20,20,30,-6.6,1.12,0.018,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.31,48.42,120.05,0.87,0.76,799,0.2,53,0.5
+1221,2020,2,20,21,30,-7,1.13,0.018,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.309,50.75,130.86,0.86,0.76,799,0.2,108,0.3
+1222,2020,2,20,22,30,-7.5,1.14,0.018,0.62,0,0,0,0,0,-15.6,0,0,0,0,0.307,52.2,140.46,0.86,0.76,798,0.2,171,0.4
+1223,2020,2,20,23,30,-8.1,1.14,0.017,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.306,53.94,147.57,0.86,0.76,798,0.2,184,0.7
+1224,2020,2,21,0,30,-8.8,1.13,0.017,0.62,0,0,0,0,0,-15.6,0,0,0,0,0.305,57.82,150.17,0.86,0.76,798,0.2,178,1
+1225,2020,2,21,1,30,-9.4,1.13,0.017,0.62,0,0,0,0,0,-15.2,0,0,0,0,0.304,62.75,147.16,0.86,0.76,797,0.2,178,1.2
+1226,2020,2,21,2,30,-9.9,1.14,0.017,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.304,67.7,139.8,0.86,0.76,797,0.2,183,1.2
+1227,2020,2,21,3,30,-10.3,1.15,0.017,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.305,71.48,130.05,0.86,0.76,797,0.2,189,1.3
+1228,2020,2,21,4,30,-10.6,1.16,0.017,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.307,74.04,119.18,0.86,0.76,797,0.2,196,1.3
+1229,2020,2,21,5,30,-10.9,1.17,0.017,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.309,75.64,107.86,0.86,0.76,797,0.2,204,1.3
+1230,2020,2,21,6,30,-10.4,1.18,0.018,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.31,71.73,96.48,0.86,0.76,797,0.2,211,1.3
+1231,2020,2,21,7,30,-7.9,1.18,0.018,0.62,25,542,70,1,0,-14.2,28,478,14,68,0.311,60.59,85.25,0.87,0.76,798,0.3,216,1.5
+1232,2020,2,21,8,30,-4.2,1.18,0.019,0.62,46,852,268,0,0,-13.6,46,852,0,268,0.313,47.94,74.88,0.87,0.76,798,0.3,220,2.2
+1233,2020,2,21,9,30,-0.9,1.18,0.019,0.62,58,967,459,0,0,-13.9,141,706,0,433,0.315,36.72,65.53,0.87,0.76,797,0.3,222,3.1
+1234,2020,2,21,10,30,2,1.19,0.019,0.62,67,1021,610,0,7,-13.8,207,675,0,566,0.317,29.96,57.89,0.88,0.76,797,0.3,221,4.1
+1235,2020,2,21,11,30,4.1,1.18,0.019,0.62,72,1036,698,0,0,-13.3,111,934,0,676,0.319,26.89,52.8,0.88,0.76,796,0.4,222,4.9
+1236,2020,2,21,12,30,5.3,1.16,0.02,0.62,76,1041,730,0,0,-12.4,91,1012,4,727,0.319,26.66,51.06,0.89,0.76,795,0.4,225,5.3
+1237,2020,2,21,13,30,5.8,1.14,0.023,0.62,77,1024,693,2,7,-11.3,364,331,32,563,0.318,28.02,53.03,0.9,0.76,794,0.5,228,5.2
+1238,2020,2,21,14,30,5.6,0.98,0.028,0.62,75,983,591,4,7,-10.3,343,244,50,471,0.318,30.73,58.31,0.91,0.76,794,0.5,231,4.6
+1239,2020,2,21,15,30,4.3,0.97,0.03,0.62,65,919,438,3,4,-9.4,239,320,46,369,0.317,36.21,66.08,0.91,0.76,793,0.5,235,3.2
+1240,2020,2,21,16,30,1.4,0.96,0.032,0.62,51,784,247,0,0,-6.9,51,784,0,247,0.316,54.05,75.52,0.91,0.76,793,0.5,238,1.7
+1241,2020,2,21,17,30,-0.7,0.96,0.033,0.62,26,420,56,0,0,-7.7,26,409,4,55,0.314,59.08,85.92,0.91,0.65,794,0.5,237,1.3
+1242,2020,2,21,18,30,-1.2,0.96,0.033,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.313,57.13,97.19,0.91,0.65,794,0.5,233,1.2
+1243,2020,2,21,19,30,-1.7,0.97,0.033,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.313,59.95,108.55,0.91,0.65,794,0.5,227,1.2
+1244,2020,2,21,20,30,-2.3,0.98,0.033,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.313,63.99,119.83,0.91,0.65,794,0.5,220,1.2
+1245,2020,2,21,21,30,-2.9,0.99,0.032,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.314,68.41,130.62,0.91,0.65,794,0.5,215,1.3
+1246,2020,2,21,22,30,-3.4,1,0.031,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.315,71.67,140.19,0.91,0.65,793,0.5,212,1.4
+1247,2020,2,21,23,30,-4,1,0.031,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.316,75.44,147.24,0.91,0.65,793,0.5,212,1.5
+1248,2020,2,22,0,30,-4.5,1.02,0.03,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.316,79.2,149.81,0.91,0.65,793,0.5,215,1.5
+1249,2020,2,22,1,30,-4.8,1.03,0.03,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.316,82.09,146.81,0.91,0.65,793,0.5,218,1.4
+1250,2020,2,22,2,30,-5.1,1.05,0.029,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.315,84.53,139.49,0.91,0.65,793,0.5,224,1.3
+1251,2020,2,22,3,30,-5.2,1.07,0.029,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.313,85,129.78,0.91,0.65,793,0.5,230,1.1
+1252,2020,2,22,4,30,-5,1.08,0.029,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.311,83.11,118.92,0.91,0.65,793,0.5,231,0.8
+1253,2020,2,22,5,30,-4.9,1.09,0.029,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.31,81.69,107.6,0.91,0.65,792,0.5,215,0.6
+1254,2020,2,22,6,30,-4.4,1.09,0.029,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.309,78.18,96.23,0.91,0.65,792,0.5,180,0.4
+1255,2020,2,22,7,30,-2.5,1.09,0.028,0.62,28,495,71,3,0,-7.3,27,286,39,52,0.307,69.32,84.99,0.91,0.65,792,0.5,158,0.6
+1256,2020,2,22,8,30,0.4,1.1,0.028,0.62,50,813,266,3,4,-6.5,148,32,43,157,0.306,60.05,74.59,0.91,0.65,792,0.5,177,0.9
+1257,2020,2,22,9,30,3.8,1.1,0.028,0.62,63,929,452,1,4,-6.7,243,35,18,258,0.304,46.16,65.22,0.91,0.65,792,0.6,207,1.4
+1258,2020,2,22,10,30,6.5,1.11,0.028,0.62,72,984,600,4,4,-8.3,335,224,61,455,0.303,33.86,57.55,0.91,0.65,791,0.6,221,2
+1259,2020,2,22,11,30,7.9,1.1,0.029,0.62,79,1008,693,2,4,-8.7,270,617,25,646,0.301,29.77,52.44,0.92,0.65,790,0.6,232,2.5
+1260,2020,2,22,12,30,8.3,1.1,0.031,0.62,81,1014,723,0,7,-8.5,205,743,21,676,0.3,29.56,50.7,0.92,0.65,790,0.6,239,2.9
+1261,2020,2,22,13,30,7.9,1.11,0.033,0.62,79,1004,688,0,7,-8.1,277,538,7,603,0.299,31.3,52.69,0.93,0.65,789,0.6,245,3.1
+1262,2020,2,22,14,30,6.8,1.13,0.033,0.62,75,970,589,0,7,-7.6,314,136,0,386,0.298,34.98,58,0.93,0.65,789,0.7,250,2.4
+1263,2020,2,22,15,30,4.8,1.14,0.035,0.62,66,903,436,0,7,-5.4,209,41,0,226,0.298,47.67,65.81,0.93,0.65,788,0.7,260,1.4
+1264,2020,2,22,16,30,3,1.14,0.037,0.62,52,768,247,5,6,-4.5,75,1,71,75,0.299,57.73,75.28,0.94,0.65,788,0.7,271,0.8
+1265,2020,2,22,17,30,2.3,1.14,0.037,0.62,27,412,58,7,6,-7.3,19,0,100,19,0.301,48.96,85.71,0.94,0.65,788,0.7,279,0.6
+1266,2020,2,22,18,30,1.9,1.15,0.039,0.62,0,0,0,0,6,-8,0,0,0,0,0.303,47.85,96.97,0.94,0.65,788,0.7,153,0.4
+1267,2020,2,22,19,30,1,1.15,0.039,0.62,0,0,0,0,6,-7.8,0,0,0,0,0.305,51.83,108.34,0.94,0.65,788,0.7,29,0.8
+1268,2020,2,22,20,30,0.3,1.15,0.038,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.306,57,119.62,0.94,0.65,787,0.7,41,1.1
+1269,2020,2,22,21,30,-0.1,1.15,0.036,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.307,61.53,130.38,0.94,0.65,787,0.8,52,1.2
+1270,2020,2,22,22,30,0,1.14,0.036,0.62,0,0,0,0,7,-6,0,0,0,0,0.308,64.01,139.91,0.95,0.65,787,0.8,62,1.1
+1271,2020,2,22,23,30,0.1,1.14,0.04,0.62,0,0,0,0,7,-5.3,0,0,0,0,0.307,66.93,146.91,0.95,0.65,786,0.9,62,1
+1272,2020,2,23,0,30,-0.4,1.14,0.044,0.62,0,0,0,0,6,-4.3,0,0,0,0,0.307,74.76,149.45,0.95,0.65,786,0.9,51,1.1
+1273,2020,2,23,1,30,-1,1.13,0.048,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.307,82.23,146.46,0.96,0.65,786,0.9,43,1.3
+1274,2020,2,23,2,30,-1.3,1.13,0.05,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.308,85.8,139.18,0.96,0.65,786,0.9,44,1.4
+1275,2020,2,23,3,30,-1.4,1.13,0.051,0.62,0,0,0,0,7,-3,0,0,0,0,0.31,89.09,129.5,0.96,0.65,786,0.9,46,1.4
+1276,2020,2,23,4,30,-1.4,1.13,0.052,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.311,91.25,118.66,0.96,0.65,786,0.9,45,1.3
+1277,2020,2,23,5,30,-1.3,1.13,0.055,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.31,91.4,107.35,0.96,0.65,786,0.9,35,1.1
+1278,2020,2,23,6,30,-1,1.14,0.054,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.31,88.89,95.97,0.96,0.65,786,0.9,18,1
+1279,2020,2,23,7,30,0.1,1.15,0.05,0.62,31,430,71,7,7,-2.4,24,0,100,24,0.308,83.11,84.72,0.96,0.65,787,0.8,178,1.4
+1280,2020,2,23,8,30,1.5,1.15,0.048,0.62,57,760,263,3,7,-2.8,128,30,43,136,0.307,73.09,74.31,0.95,0.65,787,0.8,347,2
+1281,2020,2,23,9,30,3,1.15,0.046,0.62,71,897,452,0,7,-3.6,237,325,0,375,0.306,62.09,64.9,0.95,0.65,787,0.7,351,2.1
+1282,2020,2,23,10,30,4.7,1.16,0.043,0.62,80,966,603,0,0,-4.5,110,891,7,593,0.309,51.37,57.21,0.94,0.65,787,0.6,178,2
+1283,2020,2,23,11,30,6,1.16,0.04,0.62,83,1005,701,2,7,-5.5,189,776,36,666,0.314,43.64,52.07,0.93,0.65,787,0.6,175,2.1
+1284,2020,2,23,12,30,7.1,1.16,0.035,0.62,81,1023,734,0,0,-6.6,85,1015,0,733,0.319,37.21,50.34,0.92,0.65,787,0.5,343,2.3
+1285,2020,2,23,13,30,7.8,1.17,0.029,0.62,77,1026,704,2,0,-7.9,111,959,21,697,0.324,31.89,52.34,0.91,0.65,786,0.4,335,2.7
+1286,2020,2,23,14,30,7.9,1.15,0.029,0.62,72,998,605,0,0,-9.3,72,998,0,605,0.327,28.47,57.69,0.91,0.65,786,0.4,332,3
+1287,2020,2,23,15,30,6.6,1.15,0.028,0.62,62,950,455,0,0,-10.3,62,950,0,455,0.329,28.84,65.54,0.9,0.65,787,0.3,329,2.4
+1288,2020,2,23,16,30,3.4,1.14,0.027,0.62,48,832,263,0,0,-7.1,48,832,0,263,0.327,46.02,75.03,0.9,0.65,787,0.3,320,1.5
+1289,2020,2,23,17,30,0.3,1.12,0.026,0.62,26,502,65,0,0,-9.8,26,502,0,65,0.323,46.79,85.49,0.9,0.71,788,0.3,310,1.3
+1290,2020,2,23,18,30,-1.1,1.09,0.024,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.318,47.64,96.76,0.9,0.71,788,0.3,302,1.4
+1291,2020,2,23,19,30,-1.8,1.06,0.024,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.317,50.6,108.13,0.91,0.71,788,0.4,293,1.3
+1292,2020,2,23,20,30,-2.1,1.06,0.025,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.317,51.95,119.4,0.91,0.71,788,0.4,269,1.2
+1293,2020,2,23,21,30,-2.9,1.08,0.027,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.318,55.98,130.14,0.92,0.71,788,0.4,232,1.3
+1294,2020,2,23,22,30,-3.8,1.09,0.028,0.62,0,0,0,0,0,-9.7,0,0,0,0,0.319,63.49,139.63,0.92,0.71,787,0.4,210,1.9
+1295,2020,2,23,23,30,-3.9,1.08,0.028,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.321,66.12,146.57,0.91,0.71,787,0.4,204,2.9
+1296,2020,2,24,0,30,-3.9,1.11,0.03,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.324,68.19,149.08,0.92,0.71,786,0.4,203,4
+1297,2020,2,24,1,30,-3.9,1.19,0.041,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.325,71.36,146.11,0.92,0.71,785,0.5,214,4.2
+1298,2020,2,24,2,30,-3.4,1.17,0.05,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.326,71.42,138.86,0.92,0.71,785,0.5,248,4.4
+1299,2020,2,24,3,30,-3.3,1.09,0.033,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.33,68.06,129.21,0.9,0.71,786,0.3,284,5.5
+1300,2020,2,24,4,30,-4,1.03,0.02,0.62,0,0,0,0,7,-10.5,0,0,0,0,0.335,60.81,118.39,0.89,0.71,787,0.2,301,6.2
+1301,2020,2,24,5,30,-4.9,1.01,0.014,0.62,0,0,0,0,7,-12.7,0,0,0,0,0.341,54.26,107.09,0.89,0.71,788,0.2,308,6.1
+1302,2020,2,24,6,30,-4.9,1.02,0.013,0.62,0,0,0,0,4,-12.6,0,0,0,0,0.347,54.78,95.7,0.89,0.71,789,0.2,310,6.2
+1303,2020,2,24,7,30,-3.8,1.02,0.013,0.62,26,611,85,4,4,-12.3,45,242,64,68,0.354,51.87,84.45,0.89,0.71,789,0.2,313,7.3
+1304,2020,2,24,8,30,-2.6,1.03,0.013,0.62,43,886,287,0,0,-13.3,43,886,0,287,0.361,43.65,74.01,0.9,0.71,790,0.2,318,8.5
+1305,2020,2,24,9,30,-2,1.02,0.015,0.62,55,989,480,0,0,-15.7,55,989,0,480,0.368,34.31,64.58,0.9,0.71,790,0.2,321,8.6
+1306,2020,2,24,10,30,-1.7,1.01,0.016,0.62,64,1042,634,0,0,-16.8,64,1042,0,634,0.373,30.69,56.86,0.91,0.71,790,0.2,321,8.2
+1307,2020,2,24,11,30,-1.5,1.01,0.016,0.62,69,1066,730,0,0,-17.3,69,1066,0,730,0.376,28.84,51.71,0.91,0.71,790,0.2,320,7.6
+1308,2020,2,24,12,30,-1.4,1.01,0.017,0.62,73,1072,762,0,0,-17.6,73,1072,0,762,0.379,27.89,49.97,0.91,0.71,789,0.2,318,7.1
+1309,2020,2,24,13,30,-1.6,1,0.018,0.62,72,1063,726,0,0,-17.7,189,775,0,666,0.381,28.04,52,0.91,0.71,789,0.2,317,6.9
+1310,2020,2,24,14,30,-1.9,0.99,0.018,0.62,66,1033,623,0,4,-17.7,317,357,4,509,0.383,28.8,57.38,0.91,0.71,789,0.2,319,6.8
+1311,2020,2,24,15,30,-2.7,0.99,0.019,0.62,58,975,466,2,4,-17.5,240,323,21,375,0.385,30.98,65.26,0.91,0.71,789,0.2,322,6.7
+1312,2020,2,24,16,30,-3.7,0.98,0.019,0.62,46,855,270,4,4,-17.2,157,246,61,222,0.387,34.27,74.79,0.91,0.71,790,0.3,325,6.2
+1313,2020,2,24,17,30,-4.6,0.98,0.019,0.62,25,536,69,7,4,-16.6,44,2,100,44,0.389,38.53,85.27,0.91,0.8,790,0.3,328,5.3
+1314,2020,2,24,18,30,-5.3,0.99,0.018,0.62,0,0,0,0,4,-15.7,0,0,0,0,0.39,43.72,96.55,0.91,0.8,791,0.3,328,4.6
+1315,2020,2,24,19,30,-5.6,1,0.018,0.62,0,0,0,0,4,-14.9,0,0,0,0,0.39,48.13,107.92,0.91,0.8,791,0.3,327,4.1
+1316,2020,2,24,20,30,-5.9,1,0.017,0.62,0,0,0,0,4,-13.9,0,0,0,0,0.39,53.37,119.18,0.91,0.8,791,0.3,328,3.7
+1317,2020,2,24,21,30,-6.1,1,0.017,0.62,0,0,0,0,7,-13,0,0,0,0,0.39,58.25,129.9,0.91,0.8,791,0.3,329,3.5
+1318,2020,2,24,22,30,-6.4,1.01,0.016,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.391,63.18,139.35,0.91,0.8,791,0.3,331,3.5
+1319,2020,2,24,23,30,-6.8,1.02,0.016,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.393,67.58,146.24,0.91,0.8,791,0.3,334,3.6
+1320,2020,2,25,0,30,-7.2,1.03,0.015,0.62,0,0,0,0,7,-11.6,0,0,0,0,0.397,70.85,148.71,0.91,0.8,791,0.3,339,3.9
+1321,2020,2,25,1,30,-7.6,1.04,0.015,0.62,0,0,0,0,6,-11.5,0,0,0,0,0.4,73.44,145.75,0.91,0.8,791,0.3,345,4.3
+1322,2020,2,25,2,30,-7.8,1.04,0.018,0.62,0,0,0,0,9,-11.4,0,0,0,0,0.401,75.12,138.54,0.93,0.8,792,0.3,353,4.7
+1323,2020,2,25,3,30,-8,1.06,0.024,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.4,76.74,128.92,0.94,0.8,793,0.3,188,5.4
+1324,2020,2,25,4,30,-8.5,1.1,0.025,0.62,0,0,0,0,7,-12.1,0,0,0,0,0.398,74.99,118.12,0.93,0.8,794,0.3,20,5.7
+1325,2020,2,25,5,30,-9.4,1.16,0.022,0.62,0,0,0,0,7,-13.7,0,0,0,0,0.395,71.08,106.82,0.93,0.8,795,0.3,23,5.1
+1326,2020,2,25,6,30,-9.8,1.21,0.021,0.62,0,0,0,0,6,-14.5,0,0,0,0,0.39,68.3,95.44,0.93,0.8,796,0.2,23,4.7
+1327,2020,2,25,7,30,-9,1.25,0.02,0.62,29,602,90,7,4,-14.8,29,0,100,29,0.385,62.82,84.18,0.92,0.8,797,0.2,25,5.3
+1328,2020,2,25,8,30,-7.4,1.25,0.02,0.62,48,880,295,6,7,-15.6,103,3,86,104,0.38,51.77,73.72,0.92,0.8,797,0.2,28,6
+1329,2020,2,25,9,30,-5.8,1.24,0.019,0.62,61,988,490,2,4,-16.7,162,3,29,163,0.377,42.07,64.26,0.92,0.8,798,0.2,28,6
+1330,2020,2,25,10,30,-4.4,1.22,0.019,0.62,70,1039,643,0,4,-17,421,193,0,527,0.374,36.68,56.51,0.92,0.8,798,0.2,26,5.6
+1331,2020,2,25,11,30,-3.5,1.21,0.019,0.62,76,1063,740,0,4,-17.1,467,51,0,499,0.371,34.03,51.34,0.92,0.8,798,0.2,22,5.2
+1332,2020,2,25,12,30,-3.1,1.18,0.02,0.62,79,1069,772,0,4,-17.2,270,701,46,724,0.366,32.74,49.6,0.93,0.8,798,0.2,18,4.8
+1333,2020,2,25,13,30,-3,1.18,0.021,0.62,77,1061,735,1,4,-17.4,291,651,43,695,0.362,32.04,51.65,0.93,0.8,798,0.2,15,4.5
+1334,2020,2,25,14,30,-3.1,1.17,0.02,0.62,71,1034,633,0,4,-17.6,272,512,11,550,0.359,31.72,57.07,0.93,0.8,798,0.2,14,4.3
+1335,2020,2,25,15,30,-3.5,1.18,0.02,0.62,62,980,476,0,0,-17.8,119,773,0,446,0.355,32.11,64.98,0.93,0.8,798,0.2,13,4.1
+1336,2020,2,25,16,30,-4.6,1.19,0.02,0.62,48,867,279,4,4,-18,153,229,57,214,0.352,34.25,74.54,0.92,0.8,798,0.2,16,3.3
+1337,2020,2,25,17,30,-6.3,1.19,0.02,0.62,27,560,75,7,4,-17.2,46,2,100,46,0.349,41.9,85.05,0.92,0.8,798,0.2,28,1.9
+1338,2020,2,25,18,30,-7.6,1.18,0.02,0.62,0,0,0,0,4,-14.7,0,0,0,0,0.346,56.57,96.34,0.92,0.8,799,0.2,47,1.1
+1339,2020,2,25,19,30,-8.3,1.16,0.02,0.62,0,0,0,0,4,-14.6,0,0,0,0,0.344,60.53,107.72,0.91,0.8,799,0.2,65,0.9
+1340,2020,2,25,20,30,-8.7,1.14,0.021,0.62,0,0,0,0,4,-15,0,0,0,0,0.344,60.34,118.97,0.91,0.8,799,0.2,96,0.7
+1341,2020,2,25,21,30,-9.2,1.13,0.021,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.346,60.12,129.65,0.91,0.8,799,0.2,148,0.7
+1342,2020,2,25,22,30,-9.8,1.13,0.021,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.346,61.81,139.06,0.91,0.8,799,0.2,193,0.9
+1343,2020,2,25,23,30,-10.4,1.1,0.02,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.344,64.48,145.9,0.91,0.8,799,0.2,209,1.1
+1344,2020,2,26,0,30,-10.9,1.04,0.02,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.34,66.54,148.34,0.91,0.8,799,0.3,214,1.3
+1345,2020,2,26,1,30,-11.4,1,0.02,0.62,0,0,0,0,0,-16,0,0,0,0,0.336,68.64,145.39,0.91,0.8,799,0.3,216,1.4
+1346,2020,2,26,2,30,-11.7,0.98,0.02,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.334,69.55,138.22,0.91,0.8,798,0.3,217,1.3
+1347,2020,2,26,3,30,-11.9,0.99,0.021,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.333,70.07,128.63,0.91,0.8,798,0.3,212,1.2
+1348,2020,2,26,4,30,-12,0.99,0.022,0.62,0,0,0,0,0,-16.4,0,0,0,0,0.333,69.74,117.85,0.91,0.8,798,0.3,202,1.3
+1349,2020,2,26,5,30,-12.2,0.99,0.024,0.62,0,0,0,0,0,-16.5,0,0,0,0,0.333,70.15,106.55,0.92,0.8,798,0.4,190,1.4
+1350,2020,2,26,6,30,-11.5,1.01,0.027,0.62,0,0,0,0,8,-16.6,0,0,0,0,0.334,65.94,95.17,0.92,0.8,798,0.4,180,1.7
+1351,2020,2,26,7,30,-9.2,1.03,0.028,0.62,31,545,89,6,4,-16.3,46,58,89,52,0.336,56.33,83.9,0.92,0.8,798,0.5,186,2.2
+1352,2020,2,26,8,30,-6.1,1.01,0.027,0.62,52,829,289,0,0,-16.3,60,791,0,286,0.338,44.42,73.42,0.92,0.8,799,0.5,220,2.3
+1353,2020,2,26,9,30,-3.2,0.98,0.027,0.62,67,939,480,0,7,-15.8,230,422,7,415,0.343,37.18,63.94,0.92,0.8,798,0.5,258,2.3
+1354,2020,2,26,10,30,-0.8,0.95,0.028,0.62,78,991,630,0,7,-14.5,286,475,0,551,0.348,34.75,56.16,0.92,0.8,798,0.5,276,2.6
+1355,2020,2,26,11,30,1.2,0.91,0.031,0.62,86,1015,725,0,7,-12.8,391,216,0,527,0.35,34.33,50.97,0.93,0.8,798,0.5,282,2.9
+1356,2020,2,26,12,30,2.6,0.93,0.032,0.62,88,1021,755,1,7,-11.4,336,276,14,516,0.35,34.96,49.22,0.93,0.8,797,0.5,281,3.1
+1357,2020,2,26,13,30,3.4,0.95,0.032,0.62,86,1008,716,0,0,-10.4,86,1008,0,716,0.349,35.75,51.3,0.93,0.8,796,0.6,279,3.4
+1358,2020,2,26,14,30,3.4,0.99,0.033,0.62,80,974,614,0,0,-9.8,80,974,0,614,0.348,37.3,56.76,0.93,0.8,795,0.6,279,3.6
+1359,2020,2,26,15,30,2.7,1.04,0.037,0.62,72,905,459,0,0,-9.4,72,905,0,459,0.346,40.48,64.71,0.94,0.8,795,0.6,279,3.1
+1360,2020,2,26,16,30,0.6,1.07,0.045,0.62,59,766,266,0,0,-8.3,66,732,7,264,0.343,51.22,74.3,0.94,0.8,795,0.6,277,1.9
+1361,2020,2,26,17,30,-1.4,1.09,0.05,0.62,32,426,70,7,4,-7,37,1,100,37,0.34,65.42,84.83,0.95,0.67,795,0.6,274,1
+1362,2020,2,26,18,30,-2,1.09,0.05,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.337,67.02,96.13,0.95,0.67,796,0.7,269,0.9
+1363,2020,2,26,19,30,-2.4,1.1,0.05,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.336,69.75,107.51,0.94,0.67,796,0.7,257,0.8
+1364,2020,2,26,20,30,-2.8,1.11,0.05,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.337,71.58,118.75,0.94,0.67,796,0.7,243,0.9
+1365,2020,2,26,21,30,-3.2,1.11,0.045,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.338,72.23,129.41,0.93,0.67,796,0.6,239,1
+1366,2020,2,26,22,30,-3.7,1.1,0.04,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.338,72.76,138.78,0.92,0.67,796,0.6,242,1.1
+1367,2020,2,26,23,30,-4.2,1.08,0.038,0.62,0,0,0,0,4,-8.2,0,0,0,0,0.337,73.81,145.56,0.92,0.67,796,0.6,246,1.1
+1368,2020,2,27,0,30,-4.6,1.07,0.035,0.62,0,0,0,0,4,-8.4,0,0,0,0,0.335,74.66,147.96,0.91,0.67,796,0.5,251,1
+1369,2020,2,27,1,30,-5,1.05,0.033,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.332,74.84,145.03,0.91,0.67,796,0.5,255,0.8
+1370,2020,2,27,2,30,-5.4,1.02,0.03,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.331,74.9,137.89,0.91,0.67,796,0.5,251,0.7
+1371,2020,2,27,3,30,-5.7,1.01,0.028,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.331,74.05,128.33,0.9,0.67,796,0.4,244,0.8
+1372,2020,2,27,4,30,-6.1,1,0.027,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.331,74.58,117.57,0.9,0.67,796,0.4,242,0.9
+1373,2020,2,27,5,30,-6.6,0.97,0.026,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.329,76,106.28,0.9,0.67,796,0.4,242,1
+1374,2020,2,27,6,30,-6.1,0.95,0.024,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.327,72.08,94.89,0.9,0.67,796,0.4,238,1.2
+1375,2020,2,27,7,30,-3.7,0.97,0.024,0.62,31,585,96,2,0,-9.7,35,428,29,83,0.326,63.22,83.62,0.91,0.67,797,0.4,243,1.7
+1376,2020,2,27,8,30,-0.8,0.98,0.025,0.62,51,850,298,0,0,-9.7,51,850,0,298,0.327,50.98,73.12,0.91,0.67,797,0.4,268,2.3
+1377,2020,2,27,9,30,1.4,0.98,0.024,0.62,63,958,489,0,7,-9.6,231,228,0,332,0.328,43.86,63.61,0.91,0.67,797,0.4,287,2.6
+1378,2020,2,27,10,30,3.1,0.99,0.023,0.62,72,1010,640,0,7,-10.1,206,680,0,588,0.328,37.18,55.81,0.91,0.67,797,0.4,290,2.9
+1379,2020,2,27,11,30,4.4,0.94,0.026,0.62,78,1033,734,0,0,-11.3,155,863,7,703,0.327,30.98,50.59,0.91,0.67,797,0.4,292,3.2
+1380,2020,2,27,12,30,5.4,0.94,0.025,0.62,79,1041,764,0,7,-12.4,359,485,0,678,0.327,26.44,48.85,0.91,0.67,796,0.4,295,3.5
+1381,2020,2,27,13,30,6,0.94,0.025,0.62,78,1031,728,0,7,-13.2,238,701,7,680,0.327,23.84,50.95,0.92,0.67,796,0.4,297,3.7
+1382,2020,2,27,14,30,6,0.97,0.028,0.62,75,999,627,0,7,-13.6,296,374,0,503,0.329,23.03,56.44,0.92,0.67,796,0.4,299,3.8
+1383,2020,2,27,15,30,4.9,0.97,0.032,0.62,68,935,471,1,4,-13.5,251,366,14,409,0.332,24.96,64.44,0.93,0.67,796,0.4,300,2.9
+1384,2020,2,27,16,30,2.2,0.98,0.036,0.62,54,812,277,2,4,-9.7,121,452,32,245,0.334,40.88,74.06,0.93,0.67,796,0.4,298,1.5
+1385,2020,2,27,17,30,-0.3,0.98,0.033,0.62,29,508,77,2,0,-9.5,33,396,21,70,0.334,49.76,84.61,0.92,0.65,796,0.4,291,1.1
+1386,2020,2,27,18,30,-1.5,0.95,0.028,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.331,47.31,95.92,0.91,0.65,796,0.4,289,1.1
+1387,2020,2,27,19,30,-2,0.95,0.026,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.327,49.53,107.3,0.9,0.65,797,0.4,292,1
+1388,2020,2,27,20,30,-2,0.98,0.025,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.324,50.57,118.53,0.9,0.65,797,0.4,300,0.9
+1389,2020,2,27,21,30,-1.9,1.02,0.026,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.322,51.23,129.17,0.89,0.65,798,0.4,303,0.7
+1390,2020,2,27,22,30,-1.9,1.05,0.027,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.321,52.15,138.49,0.89,0.65,798,0.4,291,0.6
+1391,2020,2,27,23,30,-2.2,1.06,0.027,0.62,0,0,0,0,0,-10.1,0,0,0,0,0.32,54.61,145.22,0.89,0.65,798,0.4,275,0.6
+1392,2020,2,28,0,30,-2.5,1.06,0.027,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.319,57.09,147.58,0.89,0.65,798,0.4,270,0.7
+1393,2020,2,28,1,30,-2.7,1.08,0.026,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.317,59.14,144.66,0.89,0.65,798,0.4,273,0.7
+1394,2020,2,28,2,30,-3,1.09,0.026,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.315,61.38,137.55,0.89,0.65,798,0.4,274,0.7
+1395,2020,2,28,3,30,-3.2,1.11,0.026,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.313,62.63,128.03,0.89,0.65,798,0.4,271,0.6
+1396,2020,2,28,4,30,-3.5,1.12,0.026,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.313,63.87,117.28,0.89,0.65,798,0.4,263,0.5
+1397,2020,2,28,5,30,-3.6,1.14,0.026,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.312,62.94,106.01,0.89,0.65,798,0.4,248,0.5
+1398,2020,2,28,6,30,-3,1.15,0.026,0.62,0,0,0,0,0,-10,0,0,0,0,0.312,58.29,94.61,0.89,0.65,798,0.4,212,0.5
+1399,2020,2,28,7,30,-1.1,1.17,0.026,0.62,32,590,100,0,0,-8.9,32,590,0,100,0.312,55.39,83.34,0.88,0.65,798,0.4,182,0.8
+1400,2020,2,28,8,30,1.6,1.18,0.026,0.62,51,854,303,0,0,-9.4,51,854,0,303,0.313,43.86,72.81,0.88,0.65,798,0.4,199,1.2
+1401,2020,2,28,9,30,3.9,1.19,0.026,0.62,63,960,495,0,0,-9.4,63,960,0,495,0.315,37.23,63.28,0.88,0.65,798,0.4,222,1.9
+1402,2020,2,28,10,30,5.5,1.19,0.025,0.62,72,1011,645,0,0,-9.1,72,1011,0,645,0.317,33.98,55.45,0.89,0.65,798,0.4,227,2.8
+1403,2020,2,28,11,30,6.7,1.18,0.026,0.62,76,1036,739,0,0,-9,76,1036,0,739,0.322,31.53,50.22,0.89,0.65,797,0.4,229,3.6
+1404,2020,2,28,12,30,7.4,1.17,0.025,0.62,77,1043,769,0,0,-9.1,77,1043,0,769,0.326,29.98,48.47,0.89,0.65,796,0.4,231,4
+1405,2020,2,28,13,30,7.7,1.16,0.025,0.62,75,1035,732,0,0,-9.2,75,1035,0,732,0.328,29.07,50.6,0.89,0.65,796,0.4,234,4.2
+1406,2020,2,28,14,30,7.5,1.14,0.025,0.62,70,1010,633,0,0,-9.4,70,1010,0,633,0.328,29.01,56.13,0.89,0.65,795,0.4,235,4.1
+1407,2020,2,28,15,30,6.3,1.1,0.024,0.62,62,960,480,0,0,-9.4,62,960,0,480,0.328,31.42,64.16,0.9,0.65,795,0.4,233,3.2
+1408,2020,2,28,16,30,3,1.06,0.025,0.62,49,849,286,0,0,-7.2,53,832,0,285,0.328,47.1,73.82,0.91,0.65,795,0.3,224,1.9
+1409,2020,2,28,17,30,0.4,1,0.054,0.62,33,434,76,7,4,-0.7,28,0,100,28,0.289,92.57,84.35,0.95,0.65,784,0.9,241,1.8
+1410,2020,2,28,18,30,-0.1,0.99,0.044,0.62,0,0,0,0,4,-1.4,0,0,0,0,0.292,90.87,95.66,0.94,0.65,785,0.9,236,1.9
+1411,2020,2,28,19,30,-0.2,0.99,0.037,0.62,0,0,0,0,4,-1.8,0,0,0,0,0.294,88.99,107.04,0.94,0.65,785,0.8,233,2
+1412,2020,2,28,20,30,-0.7,0.97,0.031,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.294,90.57,118.26,0.93,0.65,784,0.8,231,2
+1413,2020,2,28,21,30,-1.3,0.97,0.029,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.294,91.67,128.86,0.94,0.65,784,0.9,230,1.8
+1414,2020,2,28,22,30,-1.2,0.99,0.035,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.295,90.71,138.13,0.95,0.65,784,0.9,228,1.9
+1415,2020,2,28,23,30,-1,1.01,0.044,0.62,0,0,0,0,7,-1.8,0,0,0,0,0.295,94.58,144.8,0.95,0.65,784,0.9,225,2.3
+1416,2019,3,1,0,30,-1.2,1.02,0.051,0.62,0,0,0,0,7,-1.4,0,0,0,0,0.294,98.25,147.11,0.95,0.65,784,0.9,225,2.5
+1417,2019,3,1,1,30,-1.3,1.02,0.048,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.291,99.67,144.2,0.95,0.65,785,0.9,239,2.4
+1418,2019,3,1,2,30,-1.7,1.05,0.046,0.62,0,0,0,0,7,-1.7,0,0,0,0,0.288,100,137.14,0.95,0.65,785,0.8,259,2.1
+1419,2019,3,1,3,30,-2.1,1.05,0.039,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.288,100,127.65,0.94,0.65,785,0.7,281,1.9
+1420,2019,3,1,4,30,-2.6,1.03,0.033,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.291,100,116.93,0.93,0.65,786,0.6,304,2
+1421,2019,3,1,5,30,-3.2,1,0.029,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.295,98.53,105.66,0.92,0.65,787,0.5,318,1.8
+1422,2019,3,1,6,30,-3,0.98,0.024,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.297,90.01,94.26,0.92,0.65,787,0.5,320,1.8
+1423,2019,3,1,7,30,-1.4,0.97,0.023,0.62,32,612,107,6,4,-4.7,29,47,93,35,0.296,78.18,82.98,0.92,0.65,788,0.4,319,2.4
+1424,2019,3,1,8,30,0.1,0.97,0.023,0.62,51,868,313,0,4,-5.5,135,12,7,139,0.296,66.16,72.43,0.92,0.65,788,0.4,313,2.8
+1425,2019,3,1,9,30,1.6,0.97,0.022,0.62,62,972,505,0,4,-6.3,202,558,0,456,0.295,55.8,62.87,0.91,0.65,788,0.4,297,2.9
+1426,2019,3,1,10,30,3.1,0.96,0.019,0.62,68,1023,655,0,0,-6.9,141,858,0,633,0.293,47.79,55.01,0.91,0.65,788,0.4,279,3
+1427,2019,3,1,11,30,4.4,0.93,0.019,0.62,73,1046,749,0,4,-7.6,297,631,4,705,0.291,41.24,49.75,0.91,0.65,788,0.4,263,3.2
+1428,2019,3,1,12,30,5.4,0.87,0.021,0.62,77,1045,776,0,7,-8.1,195,818,25,742,0.289,37.01,48,0.91,0.65,787,0.5,250,3.6
+1429,2019,3,1,13,30,6.1,0.83,0.024,0.62,81,1022,736,2,4,-8.4,265,612,36,657,0.286,34.62,50.16,0.92,0.65,786,0.5,242,4.1
+1430,2019,3,1,14,30,6.1,0.75,0.038,0.62,84,973,632,2,4,-8.2,363,289,25,526,0.282,35.02,55.74,0.94,0.65,785,0.6,241,4.6
+1431,2019,3,1,15,30,4.8,0.75,0.051,0.62,80,891,473,0,7,-7.4,118,15,0,125,0.279,40.82,63.83,0.95,0.65,785,0.6,242,3.6
+1432,2019,3,1,16,30,2.4,0.77,0.06,0.62,65,745,276,3,6,-4.4,100,23,43,107,0.276,60.78,73.52,0.95,0.65,785,0.7,238,2
+1433,2019,3,1,17,30,0.8,0.8,0.063,0.62,37,405,78,7,6,-3.3,29,0,100,29,0.274,74.27,84.13,0.95,0.65,785,0.8,231,1.4
+1434,2019,3,1,18,30,0.3,0.85,0.066,0.62,0,0,0,0,6,-3.2,0,0,0,0,0.272,77.47,95.46,0.95,0.65,785,0.8,226,1.2
+1435,2019,3,1,19,30,0.2,0.88,0.068,0.62,0,0,0,0,6,-2.8,0,0,0,0,0.269,80.47,106.83,0.95,0.65,785,0.9,218,1.2
+1436,2019,3,1,20,30,0,0.91,0.073,0.62,0,0,0,0,6,-2.5,0,0,0,0,0.266,83.51,118.04,0.96,0.65,785,0.9,211,1.2
+1437,2019,3,1,21,30,-0.4,0.92,0.08,0.62,0,0,0,0,6,-2,0,0,0,0,0.264,89.26,128.62,0.96,0.65,784,1,210,1.1
+1438,2019,3,1,22,30,-0.9,0.93,0.083,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.262,95.16,137.84,0.96,0.65,784,1,220,1
+1439,2019,3,1,23,30,-1.2,0.97,0.097,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.26,99.16,144.45,0.96,0.65,783,1,237,1
+1440,2019,3,2,0,30,-1.3,0.97,0.101,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.258,100,146.73,0.96,0.65,783,1,251,1
+1441,2019,3,2,1,30,-1.5,0.94,0.098,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.256,100,143.83,0.96,0.65,783,1,261,1.1
+1442,2019,3,2,2,30,-1.8,0.96,0.102,0.62,0,0,0,0,4,-1.8,0,0,0,0,0.255,100,136.8,0.96,0.65,784,0.9,275,1.1
+1443,2019,3,2,3,30,-2.3,0.97,0.088,0.62,0,0,0,0,4,-2.3,0,0,0,0,0.257,100,127.34,0.96,0.65,785,0.9,300,1.1
+1444,2019,3,2,4,30,-2.7,0.97,0.069,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.26,100,116.64,0.95,0.65,785,0.8,330,0.9
+1445,2019,3,2,5,30,-3,0.99,0.065,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.263,98.85,105.37,0.95,0.65,786,0.8,179,0.8
+1446,2019,3,2,6,30,-2.7,1.01,0.059,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.264,94.06,93.98,0.96,0.65,786,0.8,23,1.3
+1447,2019,3,2,7,30,-1.9,1.02,0.056,0.62,40,504,104,7,4,-3.8,33,0,100,33,0.266,86.57,82.69,0.96,0.65,787,0.8,39,2
+1448,2019,3,2,8,30,-0.9,1.04,0.056,0.62,65,782,305,0,4,-4.4,87,0,0,87,0.269,77.38,72.12,0.96,0.65,786,0.8,47,2
+1449,2019,3,2,9,30,0.3,1.05,0.054,0.62,79,897,493,0,7,-4.6,118,1,0,118,0.272,69.5,62.53,0.95,0.65,786,0.8,39,1.4
+1450,2019,3,2,10,30,1.5,1.04,0.052,0.62,91,952,642,0,7,-4.7,185,5,0,188,0.276,63.3,54.64,0.96,0.65,785,0.8,164,0.8
+1451,2019,3,2,11,30,2.5,1.03,0.057,0.62,100,974,734,0,6,-4.4,323,11,0,330,0.278,60.35,49.37,0.96,0.65,785,0.8,282,0.8
+1452,2019,3,2,12,30,3.1,1.04,0.062,0.62,103,978,762,0,6,-4.1,389,27,0,407,0.279,59.12,47.62,0.96,0.65,784,0.9,266,1
+1453,2019,3,2,13,30,2.9,1.03,0.061,0.62,101,964,723,0,6,-3.7,338,14,0,347,0.28,61.69,49.81,0.96,0.65,783,0.9,287,0.8
+1454,2019,3,2,14,30,1.9,1.03,0.064,0.62,96,929,623,0,6,-3.3,243,7,0,247,0.282,68.26,55.43,0.97,0.65,782,0.9,165,0.7
+1455,2019,3,2,15,30,0.6,1.03,0.067,0.62,84,865,469,0,6,-2.9,153,3,0,154,0.284,77.21,63.55,0.97,0.65,782,0.9,31,1.3
+1456,2019,3,2,16,30,-0.8,1.02,0.065,0.62,65,736,277,3,6,-2.6,67,1,43,67,0.285,87.64,73.28,0.97,0.65,781,0.9,42,2.1
+1457,2019,3,2,17,30,-2.1,1.03,0.067,0.62,38,418,82,7,6,-2.9,25,0,100,25,0.286,94.55,83.92,0.97,0.79,781,0.9,43,2.9
+1458,2019,3,2,18,30,-2.9,1.04,0.065,0.62,0,0,0,0,6,-3.4,0,0,0,0,0.287,96.17,95.25,0.97,0.79,781,0.9,40,3.7
+1459,2019,3,2,19,30,-3.5,1.05,0.059,0.62,0,0,0,0,6,-4.2,0,0,0,0,0.289,95.07,106.62,0.97,0.79,781,0.9,37,4.4
+1460,2019,3,2,20,30,-4.2,1.05,0.058,0.62,0,0,0,0,7,-5.1,0,0,0,0,0.291,93.53,117.81,0.97,0.79,782,0.8,34,4.3
+1461,2019,3,2,21,30,-5,1.06,0.057,0.62,0,0,0,0,7,-6,0,0,0,0,0.296,92.77,128.37,0.97,0.79,782,0.8,31,3.6
+1462,2019,3,2,22,30,-5.9,1.08,0.056,0.62,0,0,0,0,7,-7,0,0,0,0,0.302,92.24,137.55,0.97,0.79,783,0.7,29,3.2
+1463,2019,3,2,23,30,-6.5,1.1,0.058,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.307,90,144.1,0.97,0.79,784,0.7,32,3.2
+1464,2019,3,3,0,30,-7,1.13,0.057,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.309,86.89,146.35,0.97,0.79,785,0.7,39,3.4
+1465,2019,3,3,1,30,-7.6,1.15,0.054,0.62,0,0,0,0,4,-9.8,0,0,0,0,0.31,84.13,143.45,0.97,0.79,786,0.6,46,3.5
+1466,2019,3,3,2,30,-8.4,1.16,0.052,0.62,0,0,0,0,4,-10.7,0,0,0,0,0.309,83.21,136.45,0.97,0.79,786,0.6,51,3.4
+1467,2019,3,3,3,30,-9,1.17,0.051,0.62,0,0,0,0,4,-11.6,0,0,0,0,0.302,81.23,127.02,0.97,0.79,786,0.6,54,3.3
+1468,2019,3,3,4,30,-9.5,1.17,0.051,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.296,80.04,116.34,0.97,0.79,787,0.6,54,3.2
+1469,2019,3,3,5,30,-9.9,1.17,0.051,0.62,0,0,0,0,4,-12.8,0,0,0,0,0.292,79.53,105.09,0.97,0.79,787,0.6,53,3.2
+1470,2019,3,3,6,30,-9.8,1.17,0.051,0.62,0,0,0,0,7,-13.2,0,0,0,0,0.29,76.11,93.69,0.97,0.79,787,0.6,54,3.3
+1471,2019,3,3,7,30,-8.9,1.16,0.051,0.62,40,544,112,7,4,-13.1,50,0,100,50,0.289,71.36,82.4,0.97,0.79,787,0.6,52,3.4
+1472,2019,3,3,8,30,-7.7,1.16,0.05,0.62,64,809,317,0,4,-12.7,160,5,0,162,0.289,67.37,71.8,0.96,0.79,787,0.6,46,3.4
+1473,2019,3,3,9,30,-6.5,1.17,0.049,0.62,81,919,510,0,4,-12.1,301,207,4,398,0.289,64.34,62.19,0.96,0.79,787,0.6,39,3.1
+1474,2019,3,3,10,30,-5.1,1.17,0.048,0.62,91,974,660,0,7,-11.4,371,281,0,535,0.287,61.26,54.28,0.96,0.79,787,0.6,31,2.8
+1475,2019,3,3,11,30,-3.7,1.16,0.048,0.62,98,1003,756,1,7,-10.6,418,341,14,642,0.284,58.92,48.98,0.96,0.79,787,0.6,23,2.6
+1476,2019,3,3,12,30,-2.2,1.17,0.048,0.62,100,1015,789,1,4,-9.9,220,789,57,756,0.281,55.62,47.24,0.96,0.79,786,0.5,20,2.3
+1477,2019,3,3,13,30,-1,1.17,0.048,0.62,97,1006,751,1,4,-9.4,368,509,18,699,0.28,52.96,49.45,0.95,0.79,786,0.5,28,1.7
+1478,2019,3,3,14,30,-0.3,1.17,0.048,0.62,90,978,649,0,4,-9.1,422,176,0,523,0.282,51.34,55.12,0.95,0.79,786,0.5,51,1.2
+1479,2019,3,3,15,30,-0.3,1.17,0.047,0.62,78,920,492,0,4,-9,320,79,0,356,0.285,52,63.28,0.95,0.79,785,0.5,79,1.2
+1480,2019,3,3,16,30,-1.6,1.16,0.048,0.62,62,799,295,2,4,-8.6,117,2,29,118,0.288,58.87,73.04,0.95,0.79,785,0.5,93,1.4
+1481,2019,3,3,17,30,-3.7,1.15,0.049,0.62,35,498,90,7,4,-7.9,27,0,100,27,0.289,72.83,83.7,0.95,0.8,786,0.5,93,1.7
+1482,2019,3,3,18,30,-5.1,1.15,0.05,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.291,75.3,95.04,0.95,0.8,786,0.5,87,2.3
+1483,2019,3,3,19,30,-5.8,1.16,0.049,0.62,0,0,0,0,8,-9.5,0,0,0,0,0.293,75.24,106.41,0.95,0.8,786,0.5,79,2.6
+1484,2019,3,3,20,30,-6.5,1.16,0.047,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.297,76.6,117.59,0.95,0.8,787,0.5,70,2.8
+1485,2019,3,3,21,30,-7.1,1.17,0.045,0.62,0,0,0,0,7,-10.4,0,0,0,0,0.302,77.35,128.12,0.95,0.8,787,0.4,64,2.8
+1486,2019,3,3,22,30,-7.6,1.17,0.044,0.62,0,0,0,0,7,-10.9,0,0,0,0,0.308,77.49,137.26,0.95,0.8,787,0.4,61,2.9
+1487,2019,3,3,23,30,-8.2,1.17,0.043,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.313,78.29,143.76,0.95,0.8,787,0.4,59,3
+1488,2019,3,4,0,30,-8.7,1.18,0.042,0.62,0,0,0,0,7,-11.7,0,0,0,0,0.319,78.7,145.96,0.94,0.8,787,0.4,57,3.1
+1489,2019,3,4,1,30,-9.1,1.18,0.041,0.62,0,0,0,0,7,-12.2,0,0,0,0,0.326,78.51,143.07,0.94,0.8,787,0.4,53,3.1
+1490,2019,3,4,2,30,-9.4,1.18,0.04,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.332,77.91,136.11,0.94,0.8,787,0.4,49,3
+1491,2019,3,4,3,30,-9.8,1.17,0.039,0.62,0,0,0,0,0,-13,0,0,0,0,0.337,77.61,126.71,0.94,0.8,787,0.3,44,3
+1492,2019,3,4,4,30,-10.3,1.15,0.035,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.343,77.98,116.05,0.93,0.8,787,0.3,40,3
+1493,2019,3,4,5,30,-11,1.14,0.032,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.349,79.81,104.8,0.93,0.8,788,0.3,37,2.9
+1494,2019,3,4,6,30,-11.3,1.12,0.03,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.352,78.38,93.4,0.93,0.8,788,0.3,35,3
+1495,2019,3,4,7,30,-9.9,1.12,0.03,0.62,36,653,126,2,0,-14.5,36,502,21,105,0.35,69.36,82.1,0.93,0.8,789,0.2,36,3
+1496,2019,3,4,8,30,-7.4,1.11,0.03,0.62,57,890,340,0,0,-13.5,57,890,0,340,0.345,61.55,71.49,0.93,0.8,789,0.2,32,2.5
+1497,2019,3,4,9,30,-4.9,1.12,0.031,0.62,72,987,538,0,0,-12.6,114,826,0,504,0.341,54.76,61.85,0.93,0.8,789,0.2,192,2
+1498,2019,3,4,10,30,-3,1.13,0.031,0.62,86,1029,692,0,0,-12.2,86,1029,0,692,0.339,48.92,53.91,0.93,0.8,789,0.2,342,1.8
+1499,2019,3,4,11,30,-1.4,0.99,0.042,0.62,96,1039,783,0,0,-12.3,96,1039,7,783,0.342,43.2,48.6,0.93,0.8,789,0.3,314,1.7
+1500,2019,3,4,12,30,-0.1,0.98,0.042,0.62,97,1038,807,0,0,-12.5,97,1038,0,807,0.347,38.84,46.86,0.93,0.8,788,0.3,290,1.7
+1501,2019,3,4,13,30,0.8,0.97,0.041,0.62,94,1030,768,0,0,-12.5,94,1030,0,768,0.352,36.3,49.1,0.93,0.8,788,0.3,275,2
+1502,2019,3,4,14,30,1.3,0.96,0.039,0.62,85,1006,665,0,0,-12.4,85,1006,0,665,0.356,35.34,54.81,0.93,0.8,788,0.3,271,2.2
+1503,2019,3,4,15,30,1.1,0.96,0.036,0.62,73,955,506,0,0,-12.1,86,918,21,503,0.359,36.65,63.01,0.92,0.8,788,0.3,273,2.4
+1504,2019,3,4,16,30,-0.7,0.95,0.033,0.62,56,850,307,2,0,-11.3,101,630,29,287,0.36,44.41,72.8,0.92,0.8,788,0.3,281,1.7
+1505,2019,3,4,17,30,-3.4,0.96,0.03,0.62,32,580,98,7,7,-9.2,45,3,100,45,0.361,64.3,83.48,0.91,0.76,788,0.3,297,0.9
+1506,2019,3,4,18,30,-4.7,0.98,0.027,0.62,0,0,0,0,8,-10.7,0,0,0,0,0.363,63,94.83,0.91,0.76,789,0.3,319,0.9
+1507,2019,3,4,19,30,-5.2,0.99,0.026,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.364,65.6,106.21,0.91,0.76,790,0.3,343,1
+1508,2019,3,4,20,30,-5.7,1,0.024,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.365,67.07,117.37,0.9,0.76,790,0.3,187,1.2
+1509,2019,3,4,21,30,-6.4,1.01,0.022,0.62,0,0,0,0,0,-11,0,0,0,0,0.365,69.96,127.87,0.9,0.76,791,0.3,25,1.6
+1510,2019,3,4,22,30,-7.2,1,0.019,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.362,73.5,136.96,0.9,0.76,791,0.3,38,1.9
+1511,2019,3,4,23,30,-7.8,1.02,0.02,0.62,0,0,0,0,4,-11.2,0,0,0,0,0.356,76.39,143.41,0.9,0.76,792,0.3,50,1.9
+1512,2019,3,5,0,30,-8.3,1.03,0.02,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.352,77.24,145.58,0.9,0.76,792,0.3,62,1.8
+1513,2019,3,5,1,30,-8.9,1.03,0.02,0.62,0,0,0,0,4,-11.9,0,0,0,0,0.348,79.14,142.69,0.9,0.76,792,0.3,75,1.7
+1514,2019,3,5,2,30,-9.4,1.04,0.021,0.62,0,0,0,0,0,-12,0,0,0,0,0.344,81.46,135.76,0.91,0.76,792,0.3,85,1.4
+1515,2019,3,5,3,30,-9.7,1.06,0.024,0.62,0,0,0,0,7,-12.1,0,0,0,0,0.34,82.47,126.39,0.91,0.76,793,0.3,90,1.2
+1516,2019,3,5,4,30,-10,1.07,0.025,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.337,82.65,115.74,0.91,0.76,793,0.3,93,1.2
+1517,2019,3,5,5,30,-10.2,1.08,0.026,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.334,81.18,104.51,0.91,0.76,793,0.4,94,1.3
+1518,2019,3,5,6,30,-9.2,1.08,0.026,0.62,0,0,0,1,7,-13.1,0,0,14,0,0.331,73.16,93.11,0.91,0.76,793,0.4,91,1.5
+1519,2019,3,5,7,30,-6.6,1.07,0.024,0.62,36,648,128,6,7,-12.7,62,150,79,83,0.33,61.68,81.8,0.91,0.76,794,0.4,100,1.7
+1520,2019,3,5,8,30,-3.4,1.07,0.025,0.62,55,875,337,0,0,-12,96,678,0,315,0.33,51.6,71.17,0.91,0.76,794,0.4,150,1.8
+1521,2019,3,5,9,30,-0.4,1.07,0.025,0.62,68,962,527,0,7,-10.9,209,536,0,465,0.328,45.04,61.51,0.91,0.76,793,0.5,205,2.2
+1522,2019,3,5,10,30,1.9,1.07,0.026,0.62,77,1008,676,0,0,-9.4,97,969,0,673,0.327,42.96,53.54,0.92,0.76,793,0.5,222,3
+1523,2019,3,5,11,30,3.4,1.08,0.027,0.62,84,1030,770,0,0,-8,84,1030,0,770,0.328,43.15,48.21,0.92,0.76,792,0.5,221,3.5
+1524,2019,3,5,12,30,4.4,1.08,0.028,0.62,86,1028,794,2,7,-7,186,847,21,769,0.327,43.4,46.47,0.92,0.76,791,0.6,223,4
+1525,2019,3,5,13,30,4.4,1.1,0.032,0.62,88,1012,755,0,7,-6.4,395,240,0,553,0.323,45.38,48.74,0.93,0.76,790,0.6,227,4.1
+1526,2019,3,5,14,30,3.8,1.12,0.039,0.62,84,974,650,0,7,-6.1,289,470,0,562,0.316,48.38,54.5,0.94,0.76,790,0.7,228,3.6
+1527,2019,3,5,15,30,2.8,1.13,0.041,0.62,75,914,494,0,7,-5.7,254,104,0,302,0.311,53.67,62.74,0.94,0.76,789,0.7,225,2.4
+1528,2019,3,5,16,30,0.8,1.12,0.043,0.62,60,792,297,2,6,-3.7,101,11,29,104,0.31,71.63,72.56,0.94,0.76,789,0.8,216,1.4
+1529,2019,3,5,17,30,-0.9,1.12,0.044,0.62,35,502,94,7,7,-3.7,32,0,100,32,0.312,81.24,83.27,0.95,0.65,789,0.9,203,1.2
+1530,2019,3,5,18,30,-1.6,1.12,0.045,0.62,0,0,0,0,7,-4,0,0,0,0,0.314,83.89,94.62,0.95,0.65,789,1,193,1.2
+1531,2019,3,5,19,30,-1.9,1.13,0.046,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.317,88.36,106,0.96,0.65,789,1,182,1.2
+1532,2019,3,5,20,30,-2,1.13,0.05,0.62,0,0,0,0,6,-3.3,0,0,0,0,0.32,91.11,117.15,0.96,0.65,789,1,170,1.2
+1533,2019,3,5,21,30,-2,1.14,0.052,0.62,0,0,0,0,7,-3.1,0,0,0,0,0.323,92.41,127.62,0.96,0.65,788,1,162,1.4
+1534,2019,3,5,22,30,-2,1.13,0.049,0.62,0,0,0,0,7,-3.1,0,0,0,0,0.324,91.94,136.67,0.95,0.65,788,1,164,1.7
+1535,2019,3,5,23,30,-1.9,1.13,0.048,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.325,89.79,143.06,0.95,0.65,787,1,178,2.2
+1536,2019,3,6,0,30,-1.6,1.14,0.044,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.327,84.96,145.19,0.95,0.65,786,1,196,3.1
+1537,2019,3,6,1,30,-1.3,1.15,0.042,0.62,0,0,0,0,4,-4.1,0,0,0,0,0.329,81.32,142.31,0.95,0.65,785,1,208,4
+1538,2019,3,6,2,30,-1.6,1.17,0.041,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.33,82.46,135.41,0.94,0.65,785,1,209,3.9
+1539,2019,3,6,3,30,-2.3,1.19,0.039,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.331,85.97,126.07,0.94,0.65,785,1,207,3.2
+1540,2019,3,6,4,30,-2.8,1.19,0.038,0.62,0,0,0,0,8,-4.4,0,0,0,0,0.33,88.89,115.44,0.94,0.65,785,1,206,2.7
+1541,2019,3,6,5,30,-3.1,1.17,0.037,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.326,90.67,104.22,0.94,0.65,785,1,201,2.5
+1542,2019,3,6,6,30,-2.5,1.17,0.035,0.62,0,0,0,1,4,-4.4,0,0,14,0,0.319,86.53,92.82,0.95,0.65,785,1,193,3.1
+1543,2019,3,6,7,30,-0.9,1.17,0.036,0.62,38,580,124,7,6,-3.9,33,0,100,33,0.317,80.02,81.51,0.95,0.65,785,1,189,3.9
+1544,2019,3,6,8,30,0.7,1.16,0.043,0.62,61,804,325,0,6,-2.9,145,24,0,153,0.319,76.61,70.85,0.96,0.65,785,1.1,191,4.6
+1545,2019,3,6,9,30,1.9,1.16,0.045,0.62,76,904,512,0,6,-1.9,145,3,0,146,0.322,75.75,61.17,0.96,0.65,785,1.1,193,5.2
+1546,2019,3,6,10,30,2.5,1.16,0.045,0.62,88,949,657,0,6,-0.9,306,33,0,326,0.324,78.12,53.17,0.96,0.65,784,1.1,196,5.8
+1547,2019,3,6,11,30,2.6,1.14,0.058,0.62,100,964,747,0,6,0,307,7,0,312,0.328,82.71,47.82,0.96,0.65,783,1.1,203,6.8
+1548,2019,3,6,12,30,3.2,1.14,0.062,0.62,103,972,777,0,6,0.4,368,133,0,460,0.333,81.74,46.09,0.96,0.65,783,1.1,209,7.9
+1549,2019,3,6,13,30,4.3,1.17,0.06,0.62,99,967,741,0,6,0.6,320,10,0,327,0.338,76.69,48.39,0.95,0.65,782,1,212,8.4
+1550,2019,3,6,14,30,5,1.18,0.056,0.62,90,942,641,0,6,0.9,209,4,0,211,0.343,74.56,54.18,0.95,0.65,782,1,210,8.3
+1551,2019,3,6,15,30,4.8,1.18,0.052,0.62,77,884,486,0,6,1.3,148,2,0,149,0.345,77.82,62.47,0.95,0.65,782,1.1,204,7.6
+1552,2019,3,6,16,30,3.5,1.18,0.052,0.62,62,758,292,2,6,1.6,60,0,29,60,0.344,87.2,72.33,0.96,0.65,781,1.2,198,6.8
+1553,2019,3,6,17,30,2.1,1.16,0.06,0.62,38,463,94,7,6,1.7,23,0,100,23,0.343,97.03,83.06,0.96,0.65,781,1.1,201,6.3
+1554,2019,3,6,18,30,1.1,1.16,0.061,0.62,0,0,0,0,6,1.1,0,0,0,0,0.343,100,94.42,0.95,0.65,782,1,210,5.6
+1555,2019,3,6,19,30,0.5,1.15,0.045,0.62,0,0,0,0,6,0.5,0,0,0,0,0.343,100,105.79,0.94,0.65,782,0.8,214,4.8
+1556,2019,3,6,20,30,0.1,1.13,0.036,0.62,0,0,0,0,6,0.1,0,0,0,0,0.34,100,116.93,0.94,0.65,783,0.8,216,4.3
+1557,2019,3,6,21,30,0,1.13,0.034,0.62,0,0,0,0,6,0,0,0,0,0,0.334,100,127.37,0.94,0.65,783,0.8,220,4.1
+1558,2019,3,6,22,30,-0.1,1.14,0.037,0.62,0,0,0,0,6,-0.1,0,0,0,0,0.33,100,136.37,0.94,0.65,784,0.8,222,3.9
+1559,2019,3,6,23,30,-0.4,1.14,0.039,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.329,100,142.7,0.95,0.65,784,0.9,221,3.5
+1560,2019,3,7,0,30,-0.7,1.16,0.043,0.62,0,0,0,0,6,-0.7,0,0,0,0,0.329,100,144.8,0.95,0.65,784,0.9,219,3
+1561,2019,3,7,1,30,-1,1.16,0.046,0.62,0,0,0,0,7,-1,0,0,0,0,0.33,100,141.93,0.95,0.65,784,0.9,221,2.7
+1562,2019,3,7,2,30,-1.1,1.15,0.05,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.33,100,135.05,0.96,0.65,784,0.9,225,2.4
+1563,2019,3,7,3,30,-1.2,1.16,0.053,0.62,0,0,0,0,7,-1.2,0,0,0,0,0.327,100,125.74,0.96,0.65,784,0.9,225,2.2
+1564,2019,3,7,4,30,-1.3,1.16,0.051,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.321,100,115.14,0.95,0.65,784,0.9,222,2
+1565,2019,3,7,5,30,-1.5,1.15,0.044,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.317,100,103.92,0.95,0.65,784,0.9,216,1.8
+1566,2019,3,7,6,30,-0.7,1.12,0.038,0.62,0,0,0,1,7,-0.7,0,0,14,0,0.315,99.85,92.52,0.95,0.65,784,0.9,209,2.3
+1567,2019,3,7,7,30,1.2,1.09,0.036,0.62,39,611,132,7,4,0,52,1,100,52,0.315,92.04,81.2,0.95,0.65,784,0.8,206,3.4
+1568,2019,3,7,8,30,3.3,1.08,0.033,0.62,57,843,338,0,4,1,211,40,0,224,0.315,84.65,70.53,0.94,0.65,784,0.8,212,4.6
+1569,2019,3,7,9,30,5,1.06,0.029,0.62,67,943,527,0,0,0.9,139,723,7,491,0.314,74.88,60.83,0.94,0.65,783,0.8,223,5.7
+1570,2019,3,7,10,30,6,1.05,0.027,0.62,77,989,675,0,4,0.2,293,434,7,555,0.312,66.29,52.8,0.94,0.65,783,0.8,232,6.4
+1571,2019,3,7,11,30,6.4,1.08,0.033,0.62,85,1008,767,0,4,-0.5,432,268,4,613,0.311,61.34,47.43,0.94,0.65,783,0.8,239,6.3
+1572,2019,3,7,12,30,6.5,1.08,0.035,0.62,87,1014,795,0,4,-1.1,187,799,64,745,0.31,58.3,45.7,0.95,0.65,783,0.8,243,5.8
+1573,2019,3,7,13,30,6.5,1.09,0.033,0.62,87,1000,756,0,0,-1.5,102,971,0,751,0.311,56.47,48.03,0.95,0.65,783,0.8,243,5.1
+1574,2019,3,7,14,30,6.3,1.11,0.045,0.62,85,965,654,0,0,-1.8,85,965,0,654,0.313,56.16,53.87,0.95,0.65,783,0.8,239,4.2
+1575,2019,3,7,15,30,5.6,1.1,0.044,0.62,75,910,499,0,0,-1.9,75,910,0,499,0.315,58.66,62.2,0.95,0.65,783,0.8,231,3
+1576,2019,3,7,16,30,3.6,1.09,0.043,0.62,59,799,305,0,0,-0.9,59,799,0,305,0.319,72.61,72.09,0.95,0.65,783,0.8,216,1.8
+1577,2019,3,7,17,30,1.2,1.07,0.044,0.62,36,526,102,0,0,-1.4,37,510,4,101,0.323,82.88,82.84,0.95,0.65,784,0.8,201,1.4
+1578,2019,3,7,18,30,-0.1,1.05,0.043,0.62,0,0,0,0,4,-2.9,0,0,0,0,0.326,81.42,94.21,0.95,0.65,784,0.7,196,1.4
+1579,2019,3,7,19,30,-0.7,1.03,0.037,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.328,83.55,105.58,0.94,0.65,784,0.7,199,1.4
+1580,2019,3,7,20,30,-1.1,1.02,0.031,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.33,83.98,116.7,0.93,0.65,784,0.7,198,1.4
+1581,2019,3,7,21,30,-1.6,1,0.028,0.62,0,0,0,0,4,-3.7,0,0,0,0,0.332,85.65,127.11,0.94,0.65,784,0.7,193,1.3
+1582,2019,3,7,22,30,-1.8,1.01,0.031,0.62,0,0,0,0,4,-3.8,0,0,0,0,0.334,86.46,136.07,0.94,0.65,783,0.7,192,1.3
+1583,2019,3,7,23,30,-1.6,1.02,0.037,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.337,85.89,142.35,0.95,0.65,783,0.8,191,1.2
+1584,2019,3,8,0,30,-1.4,1.02,0.042,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.341,86.53,144.41,0.95,0.65,783,0.8,185,1
+1585,2019,3,8,1,30,-1.6,1.04,0.043,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.346,88.18,141.54,0.95,0.65,782,0.8,170,0.9
+1586,2019,3,8,2,30,-2.1,1.05,0.044,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.35,91.02,134.69,0.95,0.65,781,0.8,160,1
+1587,2019,3,8,3,30,-2.5,1.03,0.045,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.353,93,125.41,0.95,0.65,780,0.8,160,1.1
+1588,2019,3,8,4,30,-2.7,1,0.043,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.355,94.37,114.83,0.95,0.65,780,0.8,163,1.1
+1589,2019,3,8,5,30,-2.8,0.98,0.042,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.357,95.24,103.62,0.95,0.65,780,0.8,168,1.3
+1590,2019,3,8,6,30,-1.9,0.97,0.043,0.62,0,0,0,2,7,-3.3,0,0,29,0,0.36,89.83,92.22,0.95,0.65,779,0.8,175,2
+1591,2019,3,8,7,30,-0.1,0.95,0.045,0.62,42,582,134,7,7,-2.6,42,1,100,42,0.365,83.39,80.9,0.95,0.65,779,0.8,180,3.3
+1592,2019,3,8,8,30,1.6,0.95,0.052,0.62,66,803,338,0,7,-1.7,118,8,0,121,0.372,78.46,70.21,0.96,0.65,778,0.8,187,4.7
+1593,2019,3,8,9,30,2.7,0.97,0.055,0.62,81,908,528,0,7,-0.8,184,11,0,189,0.377,77.51,60.48,0.96,0.65,778,0.8,197,6.1
+1594,2019,3,8,10,30,3.3,0.99,0.047,0.62,87,969,678,0,4,-0.5,217,87,7,270,0.379,75.9,52.43,0.95,0.65,777,0.8,206,7.1
+1595,2019,3,8,11,30,3.5,0.99,0.043,0.62,91,996,770,0,7,-1.2,410,45,0,441,0.381,71.15,47.04,0.95,0.65,776,0.8,211,7.4
+1596,2019,3,8,12,30,3.4,0.99,0.044,0.62,93,1001,797,0,4,-1.9,437,167,0,554,0.382,68.45,45.31,0.95,0.65,775,0.8,214,7.1
+1597,2019,3,8,13,30,2.9,0.99,0.045,0.62,91,992,759,0,7,-2.1,397,176,0,516,0.384,69.62,47.67,0.96,0.65,774,0.8,217,6.5
+1598,2019,3,8,14,30,2.2,1,0.045,0.62,85,966,659,0,6,-2.2,246,40,0,270,0.386,72.66,53.56,0.96,0.65,774,0.8,222,5.7
+1599,2019,3,8,15,30,1.5,1.02,0.044,0.62,74,914,504,0,6,-2.4,166,8,0,170,0.387,75.41,61.94,0.96,0.65,774,0.7,224,4.6
+1600,2019,3,8,16,30,0.3,1.04,0.042,0.62,59,805,310,1,6,-2.4,91,43,14,104,0.384,81.86,71.85,0.96,0.65,774,0.7,223,3.1
+1601,2019,3,8,17,30,-1.3,1.07,0.044,0.62,37,534,105,7,7,-2.6,46,2,100,46,0.38,90.93,82.63,0.96,0.73,774,0.7,224,2.1
+1602,2019,3,8,18,30,-2.4,1.1,0.047,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.375,91.77,94,0.96,0.73,774,0.7,230,1.9
+1603,2019,3,8,19,30,-2.8,1.12,0.051,0.62,0,0,0,0,6,-4,0,0,0,0,0.369,91.47,105.37,0.96,0.73,775,0.6,238,2
+1604,2019,3,8,20,30,-2.9,1.12,0.058,0.62,0,0,0,0,6,-4.2,0,0,0,0,0.364,90.72,116.48,0.96,0.73,775,0.6,251,2.4
+1605,2019,3,8,21,30,-2.9,1.12,0.065,0.62,0,0,0,0,6,-4.3,0,0,0,0,0.365,89.98,126.86,0.96,0.73,776,0.6,269,3.1
+1606,2019,3,8,22,30,-3.1,1.13,0.065,0.62,0,0,0,0,7,-4.6,0,0,0,0,0.367,89.38,135.77,0.95,0.73,777,0.6,290,4.2
+1607,2019,3,8,23,30,-4,1.15,0.045,0.62,0,0,0,0,4,-6,0,0,0,0,0.368,86.08,141.99,0.93,0.73,778,0.5,304,4.9
+1608,2019,3,9,0,30,-5.3,1.12,0.028,0.62,0,0,0,0,4,-8,0,0,0,0,0.367,81.27,144.02,0.91,0.73,779,0.4,307,4.4
+1609,2019,3,9,1,30,-6.6,1.09,0.023,0.62,0,0,0,0,4,-9.4,0,0,0,0,0.367,80.43,141.15,0.91,0.73,779,0.4,306,3.5
+1610,2019,3,9,2,30,-7.4,1.07,0.021,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.364,79.14,134.33,0.91,0.73,780,0.3,302,2.6
+1611,2019,3,9,3,30,-7.7,1.06,0.021,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.357,78.07,125.08,0.91,0.73,781,0.3,288,1.9
+1612,2019,3,9,4,30,-7.8,1.06,0.021,0.62,0,0,0,0,4,-10.7,0,0,0,0,0.348,79.7,114.52,0.91,0.73,782,0.3,268,1.3
+1613,2019,3,9,5,30,-7.8,1.05,0.02,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.34,81.57,103.32,0.91,0.73,783,0.3,248,1.2
+1614,2019,3,9,6,30,-6.7,1.07,0.021,0.62,4,40,3,2,4,-10.1,1,0,29,1,0.332,76.71,91.92,0.91,0.73,783,0.4,243,1.7
+1615,2019,3,9,7,30,-4.4,1.09,0.023,0.62,37,693,150,6,4,-10.5,61,137,82,83,0.324,62.29,80.59,0.91,0.73,784,0.4,261,2.1
+1616,2019,3,9,8,30,-2.5,1.08,0.024,0.62,55,895,363,0,0,-11,123,619,7,336,0.318,52.21,69.88,0.92,0.73,784,0.4,269,2.2
+1617,2019,3,9,9,30,-1.3,1.07,0.024,0.62,69,980,557,0,7,-11.2,280,162,0,361,0.313,46.74,60.13,0.92,0.73,784,0.4,252,2.6
+1618,2019,3,9,10,30,-0.5,1.06,0.028,0.62,85,1012,707,0,4,-10.9,266,644,0,662,0.309,45.48,52.05,0.94,0.73,784,0.4,239,3.4
+1619,2019,3,9,11,30,-0.1,1.09,0.047,0.62,100,1020,800,0,4,-10.4,539,165,0,652,0.306,45.89,46.64,0.95,0.73,784,0.4,237,4.1
+1620,2019,3,9,12,30,0.1,1.1,0.053,0.62,104,1022,828,0,4,-9.9,485,43,0,515,0.304,46.83,44.92,0.95,0.73,784,0.4,238,4.5
+1621,2019,3,9,13,30,0.2,1.11,0.057,0.62,103,1006,785,0,4,-9.5,500,232,0,657,0.303,48.05,47.32,0.95,0.73,783,0.5,241,4.5
+1622,2019,3,9,14,30,0.1,1.13,0.055,0.62,94,976,678,0,4,-9.1,384,362,4,601,0.304,49.87,53.25,0.95,0.73,783,0.5,244,4.2
+1623,2019,3,9,15,30,-0.2,1.14,0.053,0.62,82,920,519,0,4,-8.8,296,326,7,451,0.304,52.22,61.67,0.95,0.73,783,0.5,246,3.5
+1624,2019,3,9,16,30,-1.1,1.15,0.055,0.62,67,803,320,2,7,-8.3,118,558,68,294,0.304,58.03,71.62,0.96,0.73,784,0.5,244,2.2
+1625,2019,3,9,17,30,-2.1,1.15,0.059,0.62,41,523,110,7,4,-6.8,64,3,100,64,0.305,70.15,82.42,0.96,0.7,784,0.5,235,0.9
+1626,2019,3,9,18,30,-2.5,1.15,0.064,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.306,69.07,93.8,0.96,0.7,785,0.6,180,0.5
+1627,2019,3,9,19,30,-2.8,1.14,0.068,0.62,0,0,0,0,4,-7.8,0,0,0,0,0.307,68.71,105.16,0.96,0.7,785,0.6,118,0.5
+1628,2019,3,9,20,30,-3.3,1.15,0.072,0.62,0,0,0,0,4,-6.8,0,0,0,0,0.308,76.95,116.25,0.97,0.7,785,0.6,102,0.8
+1629,2019,3,9,21,30,-3.7,1.15,0.075,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.31,80.97,126.6,0.97,0.7,785,0.6,100,1
+1630,2019,3,9,22,30,-3.9,1.15,0.077,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.313,81.56,135.47,0.97,0.7,785,0.6,96,1.2
+1631,2019,3,9,23,30,-4.1,1.14,0.079,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.316,82.77,141.64,0.97,0.7,785,0.6,89,1.2
+1632,2019,3,10,0,30,-4.2,1.13,0.082,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.319,83.63,143.62,0.97,0.7,785,0.6,80,1.3
+1633,2019,3,10,1,30,-4.2,1.12,0.085,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.323,83.56,140.76,0.97,0.7,784,0.7,71,1.4
+1634,2019,3,10,2,30,-4.3,1.11,0.087,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.326,84.9,133.97,0.97,0.7,784,0.7,62,1.4
+1635,2019,3,10,3,30,-4.4,1.1,0.09,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.329,86.81,124.75,0.97,0.7,784,0.7,58,1.4
+1636,2019,3,10,4,30,-4.5,1.09,0.092,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.332,88.13,114.21,0.97,0.7,784,0.7,60,1.5
+1637,2019,3,10,5,30,-4.5,1.09,0.094,0.62,0,0,0,0,7,-6.1,0,0,0,0,0.336,88.48,103.02,0.97,0.7,785,0.7,67,1.5
+1638,2019,3,10,6,30,-4.1,1.08,0.098,0.62,3,15,3,2,7,-6.1,1,0,29,1,0.344,85.84,91.62,0.97,0.7,785,0.7,77,1.6
+1639,2019,3,10,7,30,-3.2,1.08,0.1,0.62,56,500,140,7,7,-5.9,56,1,100,56,0.352,81.74,80.28,0.97,0.7,786,0.7,90,1.6
+1640,2019,3,10,8,30,-2,1.08,0.104,0.62,88,740,346,0,7,-5.3,178,17,0,184,0.357,78.1,69.56,0.97,0.7,786,0.7,113,1.5
+1641,2019,3,10,9,30,-1,1.08,0.105,0.62,108,856,539,0,7,-5.1,313,50,0,338,0.358,73.8,59.78,0.97,0.7,786,0.7,146,1.5
+1642,2019,3,10,10,30,-0.3,1.08,0.097,0.62,116,924,689,0,7,-4.8,423,133,0,505,0.357,71.67,51.68,0.96,0.7,787,0.7,174,1.8
+1643,2019,3,10,11,30,0.2,1.09,0.086,0.62,119,960,783,0,7,-4.5,486,172,0,605,0.355,70.53,46.25,0.96,0.7,787,0.7,193,2.1
+1644,2019,3,10,12,30,0.5,1.11,0.081,0.62,119,971,811,0,7,-4.5,466,269,0,658,0.353,69.41,44.53,0.96,0.7,787,0.7,207,2.2
+1645,2019,3,10,13,30,0.7,1.11,0.081,0.62,116,959,771,1,4,-4.6,417,218,14,566,0.351,67.85,46.96,0.96,0.7,787,0.7,220,2
+1646,2019,3,10,14,30,0.9,1.11,0.084,0.62,107,931,668,1,4,-4.6,352,244,14,499,0.35,66.65,52.94,0.96,0.7,787,0.7,237,1.5
+1647,2019,3,10,15,30,1,1.14,0.074,0.62,88,886,512,0,4,-4.6,309,253,0,430,0.35,66.41,61.4,0.95,0.7,787,0.7,279,1
+1648,2019,3,10,16,30,0.2,1.17,0.06,0.62,67,788,318,1,7,-4.5,204,101,14,236,0.351,70.82,71.39,0.95,0.7,787,0.7,157,0.9
+1649,2019,3,10,17,30,-1.9,1.17,0.053,0.62,39,538,112,7,4,-3.7,60,2,100,60,0.354,87.38,82.2,0.94,0.68,788,0.7,16,1.1
+1650,2019,3,10,18,30,-3.4,1.16,0.049,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.357,87.59,93.59,0.94,0.68,788,0.7,32,1.5
+1651,2019,3,10,19,30,-3.9,1.14,0.047,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.361,89.59,104.95,0.94,0.68,789,0.6,42,1.7
+1652,2019,3,10,20,30,-4.2,1.12,0.048,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.365,90.84,116.03,0.94,0.68,789,0.6,50,1.9
+1653,2019,3,10,21,30,-4.3,1.1,0.052,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.367,92.27,126.35,0.94,0.68,789,0.6,56,2
+1654,2019,3,10,22,30,-4.3,1.08,0.055,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.368,93.21,135.17,0.94,0.68,789,0.6,57,2
+1655,2019,3,10,23,30,-4.5,1.07,0.056,0.62,0,0,0,0,7,-5.1,0,0,0,0,0.368,95.3,141.28,0.94,0.68,789,0.6,52,1.9
+1656,2019,3,11,0,30,-4.8,1.07,0.055,0.62,0,0,0,0,8,-5.2,0,0,0,0,0.368,97.29,143.23,0.94,0.68,789,0.6,45,1.8
+1657,2019,3,11,1,30,-5,1.06,0.057,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.368,97.3,140.37,0.94,0.68,789,0.6,39,2.1
+1658,2019,3,11,2,30,-5,1.06,0.063,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.368,95.93,133.61,0.94,0.68,789,0.6,35,2.5
+1659,2019,3,11,3,30,-4.9,1.06,0.07,0.62,0,0,0,0,8,-5.7,0,0,0,0,0.369,93.93,124.42,0.95,0.68,789,0.7,34,2.7
+1660,2019,3,11,4,30,-4.6,1.06,0.081,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.37,91.05,113.89,0.95,0.68,789,0.7,34,2.8
+1661,2019,3,11,5,30,-4.3,1.06,0.087,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.371,88.72,102.71,0.96,0.68,790,0.7,33,2.7
+1662,2019,3,11,6,30,-3.6,1.06,0.086,0.62,3,20,3,3,7,-5.9,2,0,43,2,0.372,84.03,91.32,0.96,0.68,790,0.7,33,2.7
+1663,2019,3,11,7,30,-2.4,1.07,0.085,0.62,53,535,146,5,8,-5.6,78,166,75,107,0.37,78.72,79.97,0.96,0.68,791,0.8,38,2.8
+1664,2019,3,11,8,30,-1.2,1.07,0.087,0.62,81,763,352,0,4,-4.9,227,109,0,266,0.365,76.06,69.23,0.96,0.68,791,0.8,49,2.7
+1665,2019,3,11,9,30,0,1.08,0.089,0.62,102,868,543,0,4,-4.1,322,69,0,357,0.359,74.05,59.43,0.96,0.68,791,0.8,65,2.3
+1666,2019,3,11,10,30,1.1,1.08,0.089,0.62,117,918,691,0,7,-3.3,326,24,0,341,0.354,72.57,51.3,0.96,0.68,791,0.8,92,1.8
+1667,2019,3,11,11,30,2,1.08,0.102,0.62,128,940,783,0,8,-2.6,467,205,0,610,0.349,71.55,45.85,0.96,0.68,790,0.8,132,1.4
+1668,2019,3,11,12,30,2.8,1.08,0.099,0.62,126,954,811,0,4,-2.1,362,431,7,671,0.345,70,44.14,0.96,0.68,790,0.8,178,1.5
+1669,2019,3,11,13,30,3.6,1.09,0.088,0.62,115,957,773,0,4,-1.8,473,74,0,524,0.342,67.78,46.6,0.96,0.68,790,0.8,213,2.1
+1670,2019,3,11,14,30,4,1.1,0.072,0.62,101,940,672,0,0,-1.7,194,677,7,605,0.341,66.31,52.63,0.96,0.68,790,0.8,232,2.7
+1671,2019,3,11,15,30,3.7,1.11,0.067,0.62,87,891,517,0,0,-1.9,118,805,0,507,0.34,66.92,61.14,0.95,0.68,790,0.7,246,2.8
+1672,2019,3,11,16,30,2.2,1.11,0.061,0.62,66,791,322,0,0,-1.8,66,791,0,322,0.338,74.96,71.15,0.95,0.68,790,0.7,262,1.9
+1673,2019,3,11,17,30,0.3,1.13,0.054,0.62,39,553,116,0,0,-1.9,39,553,0,116,0.337,85.21,81.99,0.94,0.65,790,0.6,279,1
+1674,2019,3,11,18,30,-0.2,1.15,0.046,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.336,77.11,93.38,0.94,0.65,790,0.6,323,0.6
+1675,2019,3,11,19,30,-0.5,1.16,0.041,0.62,0,0,0,0,0,-4,0,0,0,0,0.331,77.33,104.74,0.94,0.65,790,0.5,253,0.5
+1676,2019,3,11,20,30,-0.9,1.17,0.04,0.62,0,0,0,0,4,-4,0,0,0,0,0.327,79.43,115.8,0.94,0.65,790,0.5,148,0.7
+1677,2019,3,11,21,30,-0.9,1.16,0.038,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.325,80.33,126.09,0.94,0.65,790,0.5,150,0.6
+1678,2019,3,11,22,30,-0.9,1.15,0.037,0.62,0,0,0,0,4,-3.7,0,0,0,0,0.323,81.11,134.86,0.94,0.65,789,0.5,117,0.5
+1679,2019,3,11,23,30,-1.1,1.14,0.034,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.321,82.72,140.92,0.94,0.65,788,0.5,57,0.6
+1680,2019,3,12,0,30,-1.4,1.14,0.033,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.318,84.47,142.83,0.94,0.65,788,0.5,20,0.7
+1681,2019,3,12,1,30,-1.5,1.15,0.03,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.315,84.15,139.98,0.93,0.65,787,0.5,174,0.6
+1682,2019,3,12,2,30,-1.7,1.14,0.029,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.312,85.25,133.24,0.93,0.65,787,0.5,208,0.6
+1683,2019,3,12,3,30,-2.1,1.14,0.029,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.311,87.46,124.08,0.93,0.65,786,0.5,101,0.7
+1684,2019,3,12,4,30,-2.4,1.13,0.03,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.312,90.97,113.57,0.93,0.65,786,0.6,132,1
+1685,2019,3,12,5,30,-2.4,1.13,0.03,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.315,92.28,102.4,0.93,0.65,785,0.7,146,0.9
+1686,2019,3,12,6,30,-1.3,1.14,0.03,0.62,7,76,6,1,4,-3.4,7,76,14,6,0.321,85.4,91.01,0.93,0.65,785,0.7,159,1
+1687,2019,3,12,7,30,1.1,1.15,0.029,0.62,40,671,160,4,0,-2.6,41,320,50,98,0.327,76.5,79.66,0.93,0.65,784,0.8,180,1.5
+1688,2019,3,12,8,30,3.6,1.17,0.028,0.62,58,862,368,2,4,-2.3,161,16,25,167,0.332,65.13,68.9,0.93,0.65,784,0.9,198,2.5
+1689,2019,3,12,9,30,5.5,1.18,0.029,0.62,69,946,555,3,7,-1.9,199,42,46,221,0.336,58.72,59.08,0.93,0.65,783,0.9,203,3.5
+1690,2019,3,12,10,30,7.2,1.17,0.029,0.62,78,990,702,0,7,-1.1,293,36,0,316,0.338,55.75,50.92,0.93,0.65,782,0.9,205,4.2
+1691,2019,3,12,11,30,8.5,1.15,0.031,0.62,83,1013,794,0,7,-0.1,433,154,0,541,0.337,54.54,45.45,0.94,0.65,780,0.9,205,4.6
+1692,2019,3,12,12,30,9.3,1.16,0.03,0.62,85,1018,820,0,7,0.4,416,182,0,547,0.332,53.67,43.75,0.94,0.65,779,0.9,205,5.1
+1693,2019,3,12,13,30,9.4,1.16,0.03,0.62,82,1008,779,0,7,0.6,370,23,0,386,0.327,54.13,46.25,0.94,0.65,778,0.9,206,5.3
+1694,2019,3,12,14,30,8.7,1.17,0.03,0.62,78,980,677,0,6,0.6,248,11,0,255,0.324,56.99,52.33,0.95,0.65,777,1,210,4.8
+1695,2019,3,12,15,30,7.3,1.17,0.033,0.62,70,927,521,0,6,0.8,167,3,0,168,0.32,63.53,60.87,0.95,0.65,777,1,209,3.3
+1696,2019,3,12,16,30,5.2,1.17,0.034,0.62,56,826,326,1,9,1.7,40,0,86,40,0.316,78.23,70.92,0.95,0.65,776,1,200,1.6
+1697,2019,3,12,17,30,3.6,1.19,0.033,0.62,36,589,120,5,6,1.1,34,0,100,34,0.309,83.65,81.79,0.95,0.65,775,1,173,1
+1698,2019,3,12,18,30,2.6,1.2,0.033,0.62,0,0,0,1,6,0.3,0,0,14,0,0.301,84.65,93.18,0.95,0.65,775,1,131,0.9
+1699,2019,3,12,19,30,1.3,1.18,0.037,0.62,0,0,0,0,9,0.2,0,0,0,0,0.295,92.7,104.53,0.96,0.65,774,1.1,111,1
+1700,2019,3,12,20,30,0.5,1.14,0.047,0.62,0,0,0,0,6,0.4,0,0,0,0,0.292,99.52,115.58,0.96,0.65,774,1.1,127,1
+1701,2019,3,12,21,30,0.3,1.13,0.061,0.62,0,0,0,0,6,0.3,0,0,0,0,0.293,100,125.83,0.97,0.65,773,1.1,120,0.7
+1702,2019,3,12,22,30,0,1.14,0.06,0.62,0,0,0,0,6,0,0,0,0,0,0.294,100,134.56,0.97,0.65,772,1.1,76,0.4
+1703,2019,3,12,23,30,-0.5,1.13,0.069,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.295,100,140.56,0.97,0.65,771,1.1,203,0.5
+1704,2019,3,13,0,30,-0.8,1.12,0.075,0.62,0,0,0,0,7,-0.8,0,0,0,0,0.296,100,142.44,0.97,0.65,770,1.1,348,0.8
+1705,2019,3,13,1,30,-1,1.11,0.077,0.62,0,0,0,0,7,-1,0,0,0,0,0.295,100,139.58,0.98,0.65,769,1.1,348,1.4
+1706,2019,3,13,2,30,-1,1.12,0.082,0.62,0,0,0,0,6,-1,0,0,0,0,0.299,100,132.88,0.98,0.65,768,1.1,350,2.3
+1707,2019,3,13,3,30,-1,1.13,0.081,0.62,0,0,0,0,9,-1,0,0,0,0,0.301,100,123.74,0.97,0.65,768,1,354,3.4
+1708,2019,3,13,4,30,-1.2,1.12,0.073,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.3,99.57,113.25,0.97,0.65,768,1,358,4.3
+1709,2019,3,13,5,30,-1.5,1.1,0.069,0.62,0,0,0,0,6,-2,0,0,0,0,0.299,96.41,102.1,0.96,0.65,768,0.9,358,5.1
+1710,2019,3,13,6,30,-1.6,1.08,0.063,0.62,6,52,6,3,7,-3.1,3,0,43,3,0.299,89.41,90.23,0.96,0.65,769,0.9,356,6.1
+1711,2019,3,13,7,30,-1.2,1.08,0.065,0.62,51,589,160,7,7,-3.9,44,0,100,44,0.299,81.86,79.35,0.96,0.65,769,0.8,356,7.6
+1712,2019,3,13,8,30,-0.8,1.08,0.077,0.62,80,792,369,0,7,-4.1,173,28,0,183,0.299,78.08,68.57,0.97,0.65,770,0.8,356,8.9
+1713,2019,3,13,9,30,-0.5,1.1,0.08,0.62,97,892,560,0,6,-4.2,235,9,0,240,0.299,75.86,58.73,0.97,0.65,771,0.8,178,9.4
+1714,2019,3,13,10,30,-0.4,1.11,0.078,0.62,107,951,711,0,6,-4.4,350,20,0,363,0.301,74.37,50.54,0.97,0.65,772,0.7,5,9.7
+1715,2019,3,13,11,30,-0.4,1.11,0.073,0.62,109,984,804,0,6,-5,395,20,0,409,0.303,71.12,45.05,0.97,0.65,773,0.7,13,9.8
+1716,2019,3,13,12,30,-0.8,1.11,0.063,0.62,106,1001,834,0,7,-6.1,444,34,0,469,0.305,67.52,43.36,0.96,0.65,774,0.7,18,9.6
+1717,2019,3,13,13,30,-1.3,1.08,0.059,0.62,103,994,795,0,7,-6.9,425,33,0,448,0.308,65.59,45.89,0.96,0.65,775,0.6,20,9
+1718,2019,3,13,14,30,-1.8,1.06,0.064,0.62,99,960,690,0,7,-7.3,310,12,0,317,0.311,66.31,52.02,0.97,0.65,777,0.6,22,8.1
+1719,2019,3,13,15,30,-2.3,1.04,0.067,0.62,89,901,531,0,7,-7.3,185,3,0,186,0.312,68.38,60.61,0.97,0.65,778,0.6,20,7.1
+1720,2019,3,13,16,30,-2.9,1.04,0.066,0.62,70,793,332,0,7,-7.3,84,1,0,84,0.312,71.6,70.69,0.96,0.65,779,0.6,15,5.9
+1721,2019,3,13,17,30,-3.6,1.05,0.064,0.62,45,537,124,7,7,-7.4,33,0,100,33,0.313,75.21,81.57,0.96,0.76,781,0.6,9,4.9
+1722,2019,3,13,18,30,-4.2,1.05,0.066,0.62,0,0,0,1,7,-7.6,0,0,14,0,0.315,76.9,92.98,0.96,0.76,782,0.6,7,4.5
+1723,2019,3,13,19,30,-4.6,1.05,0.066,0.62,0,0,0,0,7,-8,0,0,0,0,0.318,77.33,104.33,0.96,0.76,783,0.5,8,4.5
+1724,2019,3,13,20,30,-5,1.05,0.064,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.321,77.56,115.35,0.96,0.76,784,0.5,10,4.4
+1725,2019,3,13,21,30,-5.2,1.06,0.062,0.62,0,0,0,0,4,-8.7,0,0,0,0,0.324,76.5,125.58,0.96,0.76,785,0.5,14,4.3
+1726,2019,3,13,22,30,-5.5,1.06,0.061,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.327,75.77,134.25,0.96,0.76,785,0.5,16,4.3
+1727,2019,3,13,23,30,-5.7,1.07,0.058,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.33,74.37,140.2,0.96,0.76,786,0.5,19,4.2
+1728,2019,3,14,0,30,-5.9,1.06,0.059,0.62,0,0,0,0,7,-10,0,0,0,0,0.334,72.82,142.04,0.96,0.76,787,0.5,20,4.3
+1729,2019,3,14,1,30,-6.1,1.06,0.058,0.62,0,0,0,0,7,-10.4,0,0,0,0,0.337,71.42,139.19,0.96,0.76,787,0.5,21,4.4
+1730,2019,3,14,2,30,-6.3,1.06,0.057,0.62,0,0,0,0,7,-10.7,0,0,0,0,0.341,71.08,132.51,0.96,0.76,788,0.5,21,4.3
+1731,2019,3,14,3,30,-6.6,1.06,0.056,0.62,0,0,0,0,7,-10.9,0,0,0,0,0.343,71.63,123.4,0.96,0.76,788,0.4,22,4.3
+1732,2019,3,14,4,30,-6.8,1.06,0.054,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.345,71.7,112.93,0.96,0.76,789,0.4,23,4.3
+1733,2019,3,14,5,30,-7,1.06,0.052,0.62,0,0,0,0,7,-11.1,0,0,0,0,0.345,72.34,101.79,0.96,0.76,790,0.4,26,4.2
+1734,2019,3,14,6,30,-6.6,1.05,0.05,0.62,8,77,8,4,7,-11.2,3,0,57,3,0.341,69.84,89.94,0.96,0.76,790,0.4,28,4.4
+1735,2019,3,14,7,30,-5.6,1.05,0.047,0.62,47,677,176,7,7,-10.9,54,0,100,54,0.337,66.23,79.04,0.95,0.76,791,0.4,31,4.8
+1736,2019,3,14,8,30,-4.5,1.05,0.043,0.62,67,879,393,0,7,-10.9,222,44,0,238,0.334,61.01,68.24,0.95,0.76,792,0.4,35,4.7
+1737,2019,3,14,9,30,-3.4,1.04,0.039,0.62,80,969,588,0,7,-11.1,364,164,0,450,0.331,55.04,58.37,0.95,0.76,792,0.4,36,4.1
+1738,2019,3,14,10,30,-2.5,1.04,0.037,0.62,90,1011,738,0,7,-11.1,413,346,0,635,0.329,51.47,50.16,0.94,0.76,792,0.4,32,3.5
+1739,2019,3,14,11,30,-1.7,0.91,0.043,0.62,99,1029,831,0,7,-11.1,413,465,0,744,0.327,48.59,44.65,0.94,0.76,793,0.4,22,2.9
+1740,2019,3,14,12,30,-1.1,0.89,0.041,0.62,99,1037,858,0,7,-11.1,346,619,0,799,0.326,46.45,42.97,0.94,0.76,793,0.4,10,2.6
+1741,2019,3,14,13,30,-0.7,0.87,0.039,0.62,96,1031,818,0,7,-11.2,304,662,0,768,0.327,45.02,45.54,0.94,0.76,793,0.4,182,2.4
+1742,2019,3,14,14,30,-0.5,0.83,0.039,0.62,90,1008,714,0,0,-11.2,139,907,0,701,0.328,44.35,51.72,0.93,0.76,793,0.4,358,2.1
+1743,2019,3,14,15,30,-0.7,0.81,0.039,0.62,78,961,553,2,4,-11.4,243,534,29,507,0.329,44.1,60.35,0.93,0.76,793,0.3,357,1.6
+1744,2019,3,14,16,30,-1.4,0.83,0.038,0.62,62,867,352,0,0,-11,62,867,0,352,0.328,47.91,70.46,0.93,0.76,794,0.3,187,0.9
+1745,2019,3,14,17,30,-2.9,0.87,0.036,0.62,39,636,135,6,4,-10,80,121,82,98,0.326,58.08,81.36,0.92,0.73,794,0.3,64,0.5
+1746,2019,3,14,18,30,-4.4,0.9,0.036,0.62,0,0,0,0,4,-11.3,0,0,7,0,0.325,58.83,92.77,0.92,0.73,795,0.3,127,0.5
+1747,2019,3,14,19,30,-5.2,0.9,0.035,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.327,62.19,104.12,0.92,0.73,795,0.3,147,0.5
+1748,2019,3,14,20,30,-5.7,0.89,0.034,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.33,63.91,115.13,0.91,0.73,795,0.3,126,0.3
+1749,2019,3,14,21,30,-6.2,0.89,0.032,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.333,65.92,125.32,0.91,0.73,796,0.3,64,0.2
+1750,2019,3,14,22,30,-6.7,0.9,0.03,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.334,68.78,133.95,0.91,0.73,796,0.3,30,0.3
+1751,2019,3,14,23,30,-7.1,0.9,0.028,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.334,71.41,139.84,0.91,0.73,796,0.3,44,0.3
+1752,2019,3,15,0,30,-7.6,0.9,0.027,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.333,73.72,141.65,0.91,0.73,796,0.3,66,0.4
+1753,2019,3,15,1,30,-8,0.91,0.026,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.333,75.71,138.79,0.91,0.73,796,0.3,91,0.5
+1754,2019,3,15,2,30,-8.3,0.94,0.025,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.334,77.19,132.14,0.91,0.73,796,0.3,115,0.6
+1755,2019,3,15,3,30,-8.4,0.96,0.026,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.336,79.03,123.06,0.91,0.73,796,0.3,134,0.7
+1756,2019,3,15,4,30,-8.4,0.98,0.026,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.338,79.94,112.61,0.91,0.73,797,0.3,143,0.8
+1757,2019,3,15,5,30,-8.2,0.98,0.026,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.338,78.59,101.48,0.91,0.73,797,0.3,148,0.9
+1758,2019,3,15,6,30,-6.9,0.96,0.026,0.62,11,141,12,0,0,-11.6,11,141,0,12,0.336,69.3,89.67,0.91,0.73,797,0.3,149,0.9
+1759,2019,3,15,7,30,-4.5,0.95,0.027,0.62,42,739,187,0,0,-11.8,42,739,0,187,0.333,56.56,78.72,0.91,0.73,797,0.3,226,0.6
+1760,2019,3,15,8,30,-2.3,0.93,0.027,0.62,61,915,405,0,0,-11.5,71,848,0,390,0.332,49.14,67.91,0.91,0.73,797,0.3,292,0.7
+1761,2019,3,15,9,30,-0.6,0.93,0.027,0.62,73,990,597,0,0,-11.6,73,990,0,597,0.333,43.14,58.02,0.91,0.73,797,0.4,266,1.2
+1762,2019,3,15,10,30,0.9,0.94,0.027,0.62,81,1026,744,0,0,-11.4,81,1026,0,744,0.336,39.44,49.78,0.91,0.73,797,0.4,247,1.6
+1763,2019,3,15,11,30,2.1,1.01,0.026,0.62,85,1047,835,0,0,-10.6,85,1047,0,835,0.34,38.47,44.26,0.91,0.73,797,0.4,236,1.9
+1764,2019,3,15,12,30,3,1.06,0.026,0.62,86,1053,861,0,0,-9.9,86,1053,0,861,0.343,38.18,42.57,0.91,0.73,796,0.4,233,2.2
+1765,2019,3,15,13,30,3.7,1.12,0.026,0.62,84,1044,820,0,0,-9.6,84,1044,0,820,0.345,37.23,45.18,0.91,0.73,796,0.4,235,2.2
+1766,2019,3,15,14,30,4.1,1.05,0.028,0.62,80,1018,715,0,0,-9.5,80,1018,0,715,0.345,36.4,51.41,0.91,0.73,795,0.4,244,2
+1767,2019,3,15,15,30,4,1.01,0.028,0.62,70,970,554,0,0,-9.7,70,970,0,554,0.343,36.18,60.09,0.91,0.73,795,0.4,252,1.6
+1768,2019,3,15,16,30,2.7,0.97,0.027,0.62,56,878,353,0,0,-9.2,56,878,0,353,0.341,41.2,70.23,0.91,0.73,795,0.4,241,1.1
+1769,2019,3,15,17,30,0.7,0.94,0.027,0.62,36,656,137,0,0,-7.6,36,656,0,137,0.338,53.73,81.16,0.91,0.65,795,0.4,218,0.8
+1770,2019,3,15,18,30,-0.6,0.92,0.027,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.336,46.4,92.57,0.91,0.65,795,0.4,221,0.7
+1771,2019,3,15,19,30,-1.3,0.91,0.027,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.334,48.61,103.91,0.91,0.65,795,0.4,261,0.5
+1772,2019,3,15,20,30,-2,0.9,0.027,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.335,52.27,114.9,0.91,0.65,796,0.4,301,0.6
+1773,2019,3,15,21,30,-2.6,0.88,0.027,0.62,0,0,0,0,0,-10.2,0,0,0,0,0.338,56.01,125.06,0.91,0.65,796,0.4,320,0.7
+1774,2019,3,15,22,30,-2.9,0.87,0.027,0.62,0,0,0,0,0,-10,0,0,0,0,0.341,58.3,133.64,0.91,0.65,796,0.4,335,0.7
+1775,2019,3,15,23,30,-3.2,0.87,0.027,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.34,60.5,139.48,0.91,0.65,796,0.4,348,0.7
+1776,2019,3,16,0,30,-3.6,0.86,0.028,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.338,63.45,141.25,0.91,0.65,796,0.4,179,0.7
+1777,2019,3,16,1,30,-4,0.86,0.029,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.336,66.82,138.4,0.91,0.65,796,0.4,12,0.7
+1778,2019,3,16,2,30,-4.4,0.85,0.03,0.62,0,0,0,0,0,-9,0,0,0,0,0.335,70.28,131.77,0.91,0.65,796,0.4,26,0.7
+1779,2019,3,16,3,30,-4.8,0.84,0.03,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.334,74.09,122.71,0.91,0.65,796,0.4,38,0.7
+1780,2019,3,16,4,30,-5.2,0.82,0.029,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.334,77.73,112.29,0.91,0.65,796,0.4,49,0.7
+1781,2019,3,16,5,30,-5.3,0.81,0.029,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.333,79.01,101.16,0.91,0.65,796,0.4,60,0.8
+1782,2019,3,16,6,30,-4,0.83,0.03,0.62,12,138,13,0,0,-8.1,12,138,0,13,0.33,72.97,89.4,0.91,0.65,797,0.4,61,1.1
+1783,2019,3,16,7,30,-1.5,0.85,0.031,0.62,44,724,189,0,0,-8.5,48,676,7,184,0.325,58.84,78.41,0.91,0.65,797,0.4,48,1.6
+1784,2019,3,16,8,30,0.9,0.87,0.03,0.62,61,903,405,0,0,-8.4,61,903,0,405,0.319,49.95,67.58,0.91,0.65,797,0.4,30,1.6
+1785,2019,3,16,9,30,2.9,0.87,0.028,0.62,72,986,599,0,0,-8.3,72,986,0,599,0.316,43.61,57.66,0.91,0.65,797,0.4,187,1.3
+1786,2019,3,16,10,30,4.9,0.87,0.027,0.62,82,1024,748,0,0,-8.3,82,1024,0,748,0.314,37.99,49.4,0.91,0.65,797,0.4,339,1.1
+1787,2019,3,16,11,30,6.5,0.77,0.032,0.62,88,1037,836,0,0,-8.5,88,1037,0,836,0.314,33.48,43.86,0.91,0.65,796,0.5,320,1.1
+1788,2019,3,16,12,30,7.5,0.77,0.032,0.62,90,1039,860,0,0,-8.5,90,1039,0,860,0.314,31.2,42.18,0.91,0.65,796,0.5,313,1
+1789,2019,3,16,13,30,8,0.77,0.033,0.62,91,1024,817,0,0,-8.6,91,1024,0,817,0.314,29.92,44.83,0.92,0.65,795,0.5,307,0.8
+1790,2019,3,16,14,30,8,0.72,0.04,0.62,87,994,711,0,0,-8.8,87,994,0,711,0.314,29.43,51.11,0.92,0.65,795,0.5,307,0.5
+1791,2019,3,16,15,30,7.4,0.74,0.039,0.62,76,946,551,0,0,-9,128,800,4,530,0.315,30.11,59.83,0.92,0.65,795,0.5,201,0.3
+1792,2019,3,16,16,30,5.3,0.77,0.037,0.62,61,852,352,0,0,-7.9,61,852,0,352,0.315,38.03,70.01,0.91,0.65,795,0.5,104,0.5
+1793,2019,3,16,17,30,1.9,0.79,0.035,0.62,39,628,138,0,0,-5.3,39,628,0,138,0.315,58.78,80.95,0.91,0.65,795,0.5,114,1
+1794,2019,3,16,18,30,-0.7,0.81,0.034,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.314,57.18,92.37,0.91,0.65,795,0.5,113,1.2
+1795,2019,3,16,19,30,-1.7,0.83,0.034,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.313,61.68,103.7,0.91,0.65,795,0.5,107,1.2
+1796,2019,3,16,20,30,-1.9,0.85,0.034,0.62,0,0,0,0,0,-8,0,0,0,0,0.312,63.12,114.67,0.91,0.65,795,0.5,100,1
+1797,2019,3,16,21,30,-1.9,0.87,0.034,0.62,0,0,0,0,0,-7.8,0,0,0,0,0.311,63.85,124.8,0.91,0.65,795,0.5,93,0.8
+1798,2019,3,16,22,30,-1.9,0.88,0.034,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.31,64.36,133.33,0.91,0.65,795,0.5,84,0.6
+1799,2019,3,16,23,30,-1.9,0.9,0.034,0.62,0,0,0,0,0,-7.6,0,0,0,0,0.31,64.94,139.12,0.91,0.65,795,0.5,64,0.5
+1800,2019,3,17,0,30,-2.1,0.89,0.034,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.31,66.46,140.85,0.91,0.65,795,0.5,44,0.6
+1801,2019,3,17,1,30,-2.3,0.88,0.034,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.309,68,138,0.91,0.65,795,0.5,42,0.7
+1802,2019,3,17,2,30,-2.8,0.88,0.034,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.309,71.31,131.4,0.92,0.65,795,0.5,53,0.7
+1803,2019,3,17,3,30,-3.3,0.88,0.034,0.62,0,0,0,0,4,-7.1,0,0,0,0,0.309,74.8,122.37,0.92,0.65,795,0.5,64,0.6
+1804,2019,3,17,4,30,-3.6,0.88,0.035,0.62,0,0,0,0,7,-7,0,0,0,0,0.309,77.1,111.96,0.91,0.65,795,0.5,75,0.5
+1805,2019,3,17,5,30,-3.8,0.87,0.035,0.62,0,0,0,0,4,-7,0,0,0,0,0.31,78.73,100.85,0.91,0.65,795,0.5,91,0.4
+1806,2019,3,17,6,30,-2.5,0.87,0.035,0.62,12,141,14,0,0,-6.5,12,141,4,14,0.311,73.76,89.12,0.91,0.65,795,0.4,111,0.6
+1807,2019,3,17,7,30,0.2,0.86,0.035,0.62,46,723,195,3,0,-6.2,80,439,43,171,0.312,61.92,78.09,0.91,0.65,795,0.4,158,0.6
+1808,2019,3,17,8,30,3.3,0.85,0.034,0.62,63,900,411,0,0,-6.7,83,832,0,405,0.313,48.02,67.25,0.91,0.65,795,0.4,221,0.7
+1809,2019,3,17,9,30,5.7,0.85,0.033,0.62,75,981,605,0,0,-7.3,75,981,0,605,0.316,38.82,57.31,0.91,0.65,795,0.4,247,1.2
+1810,2019,3,17,10,30,7.4,0.85,0.032,0.62,82,1024,754,0,0,-7.2,82,1024,0,754,0.318,34.6,49.02,0.91,0.65,795,0.4,245,1.4
+1811,2019,3,17,11,30,8.8,0.9,0.029,0.62,86,1045,845,0,0,-7.2,86,1045,0,845,0.322,31.55,43.46,0.91,0.65,795,0.4,245,1.6
+1812,2019,3,17,12,30,9.8,0.9,0.03,0.62,87,1050,870,0,0,-7.3,87,1050,0,870,0.325,29.34,41.79,0.91,0.65,794,0.4,247,1.5
+1813,2019,3,17,13,30,10.4,0.9,0.03,0.62,87,1036,826,0,0,-7.4,87,1036,0,826,0.326,27.86,44.48,0.91,0.65,794,0.5,247,1.3
+1814,2019,3,17,14,30,10.3,0.83,0.033,0.62,82,1008,719,0,0,-7.7,82,1008,0,719,0.326,27.43,50.81,0.91,0.65,793,0.5,242,1
+1815,2019,3,17,15,30,9.7,0.84,0.034,0.62,73,955,557,0,0,-8,73,955,0,557,0.327,27.93,59.58,0.91,0.65,793,0.5,212,0.6
+1816,2019,3,17,16,30,7.7,0.84,0.035,0.62,60,856,356,0,0,-7.4,60,856,0,356,0.33,33.38,69.78,0.91,0.65,793,0.5,152,0.5
+1817,2019,3,17,17,30,4.4,0.83,0.036,0.62,40,628,141,0,0,-3.7,40,628,0,141,0.335,55.85,80.74,0.92,0.65,793,0.5,111,0.9
+1818,2019,3,17,18,30,1.6,0.83,0.038,0.62,0,0,0,1,0,-5.8,0,0,11,0,0.339,57.7,92.16,0.92,0.65,794,0.5,104,1.3
+1819,2019,3,17,19,30,0.1,0.82,0.039,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.342,65.42,103.49,0.92,0.65,794,0.5,104,1.4
+1820,2019,3,17,20,30,-1,0.81,0.041,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.344,71.79,114.44,0.92,0.65,794,0.5,107,1.3
+1821,2019,3,17,21,30,-1.6,0.81,0.042,0.62,0,0,0,0,4,-5.3,0,0,0,0,0.345,75.61,124.54,0.92,0.65,794,0.5,113,1.1
+1822,2019,3,17,22,30,-1.8,0.81,0.043,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.346,76.46,133.02,0.92,0.65,793,0.5,123,1
+1823,2019,3,17,23,30,-1.8,0.82,0.045,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.346,75.75,138.76,0.93,0.65,793,0.5,138,0.8
+1824,2019,3,18,0,30,-1.9,0.83,0.048,0.62,0,0,0,0,4,-5.7,0,0,0,0,0.344,75.5,140.45,0.93,0.65,793,0.6,153,0.8
+1825,2019,3,18,1,30,-2.2,0.83,0.049,0.62,0,0,0,0,4,-5.8,0,0,0,0,0.341,76.37,137.61,0.93,0.65,793,0.6,161,0.9
+1826,2019,3,18,2,30,-2.6,0.82,0.05,0.62,0,0,0,0,8,-5.9,0,0,0,0,0.338,78.08,131.02,0.93,0.65,793,0.5,164,0.9
+1827,2019,3,18,3,30,-3,0.81,0.051,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.336,80.33,122.02,0.93,0.65,793,0.5,163,0.9
+1828,2019,3,18,4,30,-3.4,0.79,0.053,0.62,0,0,0,0,8,-5.9,0,0,0,0,0.335,82.73,111.64,0.93,0.65,793,0.5,164,0.9
+1829,2019,3,18,5,30,-3.6,0.78,0.054,0.62,0,0,0,0,8,-6,0,0,0,0,0.337,83.59,100.53,0.93,0.65,793,0.5,170,0.9
+1830,2019,3,18,6,30,-2.3,0.75,0.055,0.62,14,133,17,5,4,-5.8,8,0,71,8,0.339,77.11,88.84,0.93,0.65,793,0.5,180,1.1
+1831,2019,3,18,7,30,0.4,0.73,0.056,0.62,54,662,194,6,7,-5.5,112,64,86,126,0.34,64.65,77.77,0.93,0.65,793,0.5,204,1.6
+1832,2019,3,18,8,30,3.5,0.73,0.058,0.62,75,849,408,0,7,-5.4,187,472,0,372,0.339,52.1,66.92,0.93,0.65,793,0.5,232,2.3
+1833,2019,3,18,9,30,5.8,0.73,0.058,0.62,91,936,601,0,7,-6,237,565,7,545,0.336,42.57,56.95,0.93,0.65,793,0.5,247,3
+1834,2019,3,18,10,30,7.4,0.73,0.058,0.62,100,983,750,3,7,-6.2,246,687,43,700,0.332,37.5,48.64,0.93,0.65,793,0.5,252,3.4
+1835,2019,3,18,11,30,8.6,0.75,0.056,0.62,104,1008,841,2,7,-6.3,284,708,29,801,0.328,34.23,43.05,0.93,0.65,792,0.5,256,3.6
+1836,2019,3,18,12,30,9.3,0.78,0.055,0.62,106,1015,867,2,7,-6.5,242,776,46,824,0.324,32.21,41.4,0.93,0.65,792,0.5,260,3.6
+1837,2019,3,18,13,30,9.6,0.8,0.055,0.62,105,1002,824,0,7,-6.8,220,810,36,801,0.322,30.78,44.13,0.93,0.65,792,0.5,267,3.4
+1838,2019,3,18,14,30,9.4,0.76,0.061,0.62,100,970,717,0,7,-7.3,288,589,7,663,0.32,29.98,50.51,0.93,0.65,791,0.5,278,2.9
+1839,2019,3,18,15,30,8.7,0.78,0.062,0.62,89,916,556,0,7,-7.8,319,162,0,402,0.32,30.4,59.32,0.93,0.65,791,0.5,302,2.3
+1840,2019,3,18,16,30,6.7,0.79,0.061,0.62,71,812,355,0,7,-6.8,175,80,0,203,0.32,37.47,69.56,0.93,0.65,791,0.5,159,1.5
+1841,2019,3,18,17,30,3.6,0.8,0.061,0.62,47,574,141,7,7,-2.7,67,5,100,68,0.321,63.58,80.54,0.93,0.65,791,0.5,15,1.2
+1842,2019,3,18,18,30,1.1,0.8,0.06,0.62,3,18,2,2,7,-4.4,1,0,29,1,0.323,66.92,91.96,0.93,0.65,792,0.5,36,1.5
+1843,2019,3,18,19,30,-0.7,0.79,0.057,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.324,75.29,103.28,0.92,0.65,792,0.5,48,1.6
+1844,2019,3,18,20,30,-2.3,0.76,0.05,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.325,82.06,114.22,0.92,0.65,792,0.5,53,1.6
+1845,2019,3,18,21,30,-3.4,0.75,0.047,0.62,0,0,0,0,4,-5.3,0,0,0,0,0.325,86.76,124.28,0.91,0.65,793,0.5,55,1.5
+1846,2019,3,18,22,30,-4.1,0.76,0.046,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.323,90.58,132.71,0.91,0.65,793,0.5,52,1.4
+1847,2019,3,18,23,30,-4.4,0.78,0.045,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.319,92.58,138.39,0.91,0.65,793,0.5,46,1.3
+1848,2019,3,19,0,30,-4.6,0.79,0.043,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.316,93.42,140.05,0.91,0.65,793,0.4,40,1.3
+1849,2019,3,19,1,30,-4.8,0.8,0.041,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.314,93.84,137.21,0.91,0.65,793,0.4,40,1.2
+1850,2019,3,19,2,30,-5,0.8,0.039,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.312,93.93,130.65,0.91,0.65,793,0.4,46,1.2
+1851,2019,3,19,3,30,-5.2,0.8,0.037,0.62,0,0,0,0,0,-6,0,0,0,0,0.313,94.02,121.68,0.91,0.65,793,0.4,52,1.2
+1852,2019,3,19,4,30,-5.3,0.81,0.036,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.314,93.38,111.31,0.91,0.65,793,0.4,55,1.3
+1853,2019,3,19,5,30,-5.1,0.82,0.036,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.314,90.45,100.22,0.91,0.65,793,0.4,54,1.5
+1854,2019,3,19,6,30,-3.5,0.82,0.035,0.62,16,192,21,0,0,-6.5,16,192,0,21,0.314,79.96,88.55,0.91,0.65,794,0.4,55,2.5
+1855,2019,3,19,7,30,-0.6,0.83,0.035,0.62,47,739,207,0,0,-6.3,47,739,0,207,0.314,65.16,77.46,0.91,0.65,794,0.4,57,3.6
+1856,2019,3,19,8,30,2.1,0.84,0.033,0.62,64,913,427,0,0,-7.8,64,913,0,427,0.315,48.09,66.58,0.91,0.65,794,0.4,55,3.9
+1857,2019,3,19,9,30,3.9,0.85,0.032,0.62,75,997,624,0,0,-8.7,75,997,0,624,0.316,39.27,56.6,0.91,0.65,795,0.3,50,3.9
+1858,2019,3,19,10,30,5.1,0.87,0.03,0.62,82,1039,774,0,0,-8.7,82,1039,0,774,0.318,36.25,48.25,0.91,0.65,795,0.3,48,3.8
+1859,2019,3,19,11,30,6,0.89,0.028,0.62,85,1060,865,0,0,-8.8,85,1060,0,865,0.32,33.7,42.65,0.91,0.65,795,0.3,48,3.7
+1860,2019,3,19,12,30,6.5,0.89,0.027,0.62,86,1066,890,0,0,-9,86,1066,0,890,0.322,32.05,41.01,0.91,0.65,794,0.3,47,3.8
+1861,2019,3,19,13,30,6.7,0.91,0.025,0.62,82,1060,847,0,0,-9.4,82,1060,0,847,0.324,30.7,43.77,0.91,0.65,794,0.3,47,4.1
+1862,2019,3,19,14,30,6.5,0.9,0.024,0.62,76,1037,740,0,0,-9.8,76,1037,0,740,0.325,30.04,50.21,0.9,0.65,794,0.3,49,4.3
+1863,2019,3,19,15,30,5.8,0.9,0.023,0.62,66,994,577,0,0,-10.3,66,994,0,577,0.326,30.48,59.07,0.9,0.65,794,0.3,53,4.3
+1864,2019,3,19,16,30,4,0.9,0.022,0.62,54,910,375,0,0,-10.4,54,910,0,375,0.327,34.17,69.34,0.9,0.65,794,0.3,62,3.3
+1865,2019,3,19,17,30,0.4,0.91,0.02,0.62,36,715,156,0,0,-7.7,36,715,0,156,0.326,54.56,80.33,0.9,0.65,794,0.3,78,2.1
+1866,2019,3,19,18,30,-2.7,0.91,0.019,0.62,4,45,3,0,0,-7.6,4,45,4,3,0.325,69.18,91.76,0.9,0.65,795,0.3,93,1.7
+1867,2019,3,19,19,30,-4,0.91,0.018,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.324,72.29,103.08,0.9,0.65,795,0.3,102,1.7
+1868,2019,3,19,20,30,-4.7,0.91,0.018,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.322,74.16,113.99,0.9,0.65,795,0.3,108,1.6
+1869,2019,3,19,21,30,-4.9,0.9,0.018,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.319,74.81,124.01,0.9,0.65,795,0.3,114,1.4
+1870,2019,3,19,22,30,-4.9,0.88,0.019,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.317,74.59,132.4,0.9,0.65,795,0.3,120,1.2
+1871,2019,3,19,23,30,-4.8,0.86,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.316,73.82,138.03,0.9,0.65,795,0.3,119,1
+1872,2019,3,20,0,30,-5,0.83,0.02,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.318,75.14,139.66,0.9,0.65,795,0.3,107,0.9
+1873,2019,3,20,1,30,-5.3,0.82,0.02,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.323,77.6,136.81,0.9,0.65,796,0.3,94,0.9
+1874,2019,3,20,2,30,-5.4,0.81,0.02,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.328,78.46,130.28,0.9,0.65,795,0.2,86,1
+1875,2019,3,20,3,30,-5.4,0.81,0.02,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.332,78.23,121.33,0.9,0.65,795,0.2,81,1
+1876,2019,3,20,4,30,-5.3,0.8,0.02,0.62,0,0,0,0,0,-8.7,0,0,0,0,0.335,77.15,110.98,0.9,0.65,795,0.2,78,1
+1877,2019,3,20,5,30,-4.9,0.8,0.019,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.337,73.96,99.9,0.9,0.65,795,0.2,75,1
+1878,2019,3,20,6,30,-3,0.8,0.02,0.62,17,246,24,0,0,-8.4,17,246,7,24,0.338,66.15,88.26,0.9,0.65,796,0.3,70,1.4
+1879,2019,3,20,7,30,0.2,0.79,0.02,0.62,42,790,218,0,0,-9.1,42,790,0,218,0.34,49.84,77.14,0.9,0.65,796,0.3,70,1.7
+1880,2019,3,20,8,30,3.2,0.78,0.02,0.62,57,942,436,0,0,-10.4,57,942,0,436,0.341,36.24,66.25,0.9,0.65,796,0.3,81,1.9
+1881,2019,3,20,9,30,5.5,0.78,0.02,0.62,68,1012,630,0,0,-12,68,1012,0,630,0.341,27.12,56.24,0.9,0.65,796,0.3,92,2.1
+1882,2019,3,20,10,30,7.3,0.78,0.02,0.62,74,1049,778,0,0,-11.7,74,1049,0,778,0.34,24.48,47.87,0.9,0.65,796,0.3,95,2.1
+1883,2019,3,20,11,30,8.9,0.8,0.02,0.62,80,1065,868,0,0,-11.3,80,1065,0,868,0.337,22.72,42.25,0.91,0.65,796,0.3,96,2.3
+1884,2019,3,20,12,30,10,0.82,0.021,0.62,82,1067,892,0,0,-10.7,82,1067,0,892,0.334,22.11,40.61,0.91,0.65,795,0.3,94,2.6
+1885,2019,3,20,13,30,10.7,0.85,0.023,0.62,82,1054,847,0,0,-10,82,1054,0,847,0.331,22.33,43.43,0.91,0.65,794,0.4,92,2.9
+1886,2019,3,20,14,30,10.7,0.9,0.026,0.62,79,1024,738,0,0,-9.3,79,1024,0,738,0.327,23.51,49.91,0.92,0.65,794,0.4,88,3.3
+1887,2019,3,20,15,30,10,0.94,0.03,0.62,73,972,576,0,0,-8.7,73,972,0,576,0.322,25.92,58.82,0.93,0.65,793,0.4,83,3.7
+1888,2019,3,20,16,30,7.7,0.95,0.033,0.62,60,879,373,0,0,-7.3,99,698,4,348,0.319,33.69,69.12,0.93,0.65,793,0.4,77,3.2
+1889,2019,3,20,17,30,3.5,0.95,0.034,0.62,42,667,156,0,0,-3.5,42,667,0,156,0.317,60.31,80.13,0.93,0.65,793,0.4,71,2.4
+1890,2019,3,20,18,30,0.1,0.94,0.035,0.62,4,35,3,1,4,-3.6,4,35,11,3,0.314,75.97,91.56,0.93,0.65,793,0.4,70,2.2
+1891,2019,3,20,19,30,-1.4,0.92,0.036,0.62,0,0,0,0,4,-3.1,0,0,0,0,0.311,87.87,102.87,0.92,0.65,794,0.4,72,2.1
+1892,2019,3,20,20,30,-2.6,0.91,0.035,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.309,99.15,113.76,0.92,0.65,793,0.4,76,1.9
+1893,2019,3,20,21,30,-3.4,0.89,0.034,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.307,100,123.75,0.92,0.65,793,0.3,82,1.7
+1894,2019,3,20,22,30,-3.9,0.88,0.032,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.305,100,132.09,0.92,0.65,793,0.3,86,1.6
+1895,2019,3,20,23,30,-4,0.88,0.032,0.62,0,0,0,0,7,-4,0,0,0,0,0.304,100,137.67,0.92,0.65,792,0.3,85,1.5
+1896,2019,3,21,0,30,-3.8,0.89,0.033,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.302,99.18,139.26,0.93,0.65,792,0.3,75,1.7
+1897,2019,3,21,1,30,-3.9,0.91,0.036,0.62,0,0,0,0,7,-4.6,0,0,0,0,0.301,94.8,136.41,0.93,0.65,792,0.4,66,2.1
+1898,2019,3,21,2,30,-4.3,0.93,0.036,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.302,91.63,129.9,0.93,0.65,792,0.4,69,1.8
+1899,2019,3,21,3,30,-4.4,0.95,0.037,0.62,0,0,0,0,8,-6.2,0,0,0,0,0.303,87.29,120.98,0.93,0.65,791,0.4,67,1.3
+1900,2019,3,21,4,30,-4.1,0.94,0.035,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.305,82.71,110.66,0.93,0.65,791,0.5,56,1.3
+1901,2019,3,21,5,30,-3.5,0.94,0.035,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.306,78.22,99.59,0.93,0.65,791,0.5,50,1.3
+1902,2019,3,21,6,30,-2.2,0.95,0.036,0.62,18,240,27,6,7,-6.6,17,1,86,17,0.307,71.66,87.97,0.93,0.65,791,0.5,44,1.8
+1903,2019,3,21,7,30,-0.5,0.97,0.037,0.62,49,735,217,5,7,-6.6,138,63,71,152,0.308,63.21,76.82,0.93,0.65,790,0.5,44,2.3
+1904,2019,3,21,8,30,1.2,0.99,0.04,0.62,69,883,429,0,6,-6.8,187,42,0,204,0.309,55.27,65.92,0.94,0.65,790,0.6,46,2.4
+1905,2019,3,21,9,30,3.1,1.02,0.045,0.62,84,946,615,0,7,-6.2,292,388,0,510,0.311,50.67,55.89,0.94,0.65,789,0.7,45,2.2
+1906,2019,3,21,10,30,5.7,1.06,0.052,0.62,100,973,757,0,9,-5.4,355,14,0,364,0.315,44.83,47.49,0.95,0.65,789,0.8,69,1.6
+1907,2019,3,21,11,30,7.4,1.08,0.064,0.62,110,981,841,0,6,-4.6,424,90,0,491,0.32,42.37,41.85,0.96,0.65,789,0.9,139,2.1
+1908,2019,3,21,12,30,6.4,1.08,0.07,0.62,113,980,861,0,6,-2.5,444,29,0,466,0.323,52.89,40.22,0.96,0.65,789,1,193,3.6
+1909,2019,3,21,13,30,4.6,1.08,0.067,0.62,109,972,819,0,6,-0.4,405,24,0,423,0.326,70.04,43.08,0.96,0.65,789,1,203,3.5
+1910,2019,3,21,14,30,4,1.09,0.064,0.62,99,951,715,0,6,0.7,292,7,0,297,0.329,78.84,49.62,0.96,0.65,788,1,198,2.3
+1911,2019,3,21,15,30,4.2,1.08,0.058,0.62,84,909,558,0,7,0.8,175,675,21,527,0.334,78.38,58.56,0.95,0.65,787,0.9,170,0.9
+1912,2019,3,21,16,30,3.6,1.06,0.051,0.62,67,816,361,0,7,0.4,97,4,0,98,0.338,79.62,68.89,0.95,0.65,787,0.9,166,0.6
+1913,2019,3,21,17,30,1.5,1.05,0.052,0.62,46,588,149,7,7,0.8,48,1,100,48,0.339,95.38,79.93,0.96,0.65,788,1,194,1.3
+1914,2019,3,21,18,30,-0.1,1.06,0.059,0.62,4,25,3,3,6,-0.1,1,0,43,1,0.341,100,91.36,0.96,0.65,788,1,202,1.9
+1915,2019,3,21,19,30,-0.6,1.05,0.06,0.62,0,0,0,0,7,-0.6,0,0,0,0,0.347,100,102.66,0.96,0.65,789,0.9,194,1.8
+1916,2019,3,21,20,30,-1.3,1.02,0.055,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.355,100,113.53,0.95,0.65,789,0.8,188,1.4
+1917,2019,3,21,21,30,-2.4,0.93,0.046,0.62,0,0,0,0,8,-2.4,0,0,0,0,0.363,100,123.49,0.93,0.65,789,0.7,187,1.4
+1918,2019,3,21,22,30,-3.1,0.82,0.038,0.62,0,0,0,0,4,-3.1,0,0,0,0,0.366,100,131.78,0.93,0.65,789,0.6,185,1.4
+1919,2019,3,21,23,30,-3.3,0.75,0.036,0.62,0,0,0,0,4,-3.3,0,0,0,0,0.365,100,137.3,0.92,0.65,788,0.5,182,1.3
+1920,2019,3,22,0,30,-3.6,0.73,0.036,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.363,100,138.86,0.92,0.65,788,0.5,182,1.3
+1921,2019,3,22,1,30,-3.7,0.74,0.037,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.36,100,136.01,0.92,0.65,788,0.5,185,1.4
+1922,2019,3,22,2,30,-3.9,0.76,0.04,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.357,100,129.53,0.93,0.65,788,0.6,189,1.4
+1923,2019,3,22,3,30,-4,0.78,0.044,0.62,0,0,0,0,0,-4,0,0,0,0,0.356,100,120.63,0.93,0.65,787,0.6,198,1.3
+1924,2019,3,22,4,30,-4.1,0.79,0.047,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.356,100,110.33,0.93,0.65,788,0.6,213,1.4
+1925,2019,3,22,5,30,-3.9,0.78,0.05,0.62,0,0,0,0,8,-4.2,0,0,0,0,0.355,98.11,99.27,0.94,0.65,788,0.6,229,1.4
+1926,2019,3,22,6,30,-2.6,0.77,0.051,0.62,20,206,28,6,4,-4.1,16,0,86,16,0.354,89.69,87.67,0.94,0.65,788,0.6,233,1.5
+1927,2019,3,22,7,30,-0.2,0.79,0.054,0.62,55,687,215,4,4,-3.5,126,198,57,172,0.354,78.54,76.5,0.94,0.65,788,0.7,226,2.2
+1928,2019,3,22,8,30,2,0.82,0.057,0.62,76,853,429,0,4,-3.2,229,369,0,381,0.354,68.29,65.59,0.94,0.65,788,0.7,222,3.1
+1929,2019,3,22,9,30,3.3,0.84,0.058,0.62,91,934,620,0,4,-3.2,370,316,0,549,0.355,62.28,55.53,0.95,0.65,788,0.7,220,3.4
+1930,2019,3,22,10,30,4.1,0.85,0.056,0.62,100,979,766,1,4,-3.3,362,470,25,682,0.356,58.47,47.11,0.95,0.65,788,0.7,219,3.7
+1931,2019,3,22,11,30,4.7,0.86,0.054,0.62,103,1004,856,0,7,-3.5,493,235,0,669,0.357,55.28,41.45,0.94,0.65,787,0.7,216,4
+1932,2019,3,22,12,30,4.9,0.88,0.053,0.62,104,1011,880,0,4,-3.8,466,325,0,716,0.359,53.42,39.83,0.95,0.65,787,0.7,214,4.2
+1933,2019,3,22,13,30,4.8,0.89,0.051,0.62,101,1004,838,0,7,-4.2,476,146,0,583,0.362,52.21,42.73,0.95,0.65,787,0.6,214,4.2
+1934,2019,3,22,14,30,4.6,0.9,0.05,0.62,93,980,732,0,7,-4.6,300,529,21,645,0.363,51.17,49.32,0.95,0.65,787,0.6,213,4.1
+1935,2019,3,22,15,30,4.2,0.91,0.049,0.62,81,935,572,3,0,-5,140,775,39,547,0.364,51.27,58.32,0.94,0.65,787,0.6,214,3.9
+1936,2019,3,22,16,30,3.2,0.91,0.045,0.62,65,845,372,0,0,-5.1,65,845,0,372,0.365,54.62,68.68,0.94,0.65,787,0.6,214,3.1
+1937,2019,3,22,17,30,0.8,0.92,0.042,0.62,43,639,157,0,0,-4,43,639,0,157,0.366,70.48,79.73,0.94,0.65,788,0.6,210,2
+1938,2019,3,22,18,30,-1.6,0.93,0.041,0.62,6,59,5,1,0,-4.1,5,29,14,4,0.367,82.92,91.16,0.94,0.65,788,0.6,208,1.6
+1939,2019,3,22,19,30,-2.8,0.94,0.04,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.37,86.1,102.45,0.94,0.65,789,0.6,208,1.6
+1940,2019,3,22,20,30,-3.6,0.96,0.04,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.374,88.74,113.3,0.94,0.65,789,0.6,208,1.6
+1941,2019,3,22,21,30,-4.1,0.97,0.039,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.379,91.77,123.22,0.94,0.65,789,0.6,207,1.5
+1942,2019,3,22,22,30,-4.4,0.98,0.04,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.386,94.5,131.47,0.94,0.65,789,0.6,205,1.4
+1943,2019,3,22,23,30,-4.6,0.98,0.04,0.62,0,0,0,0,0,-5,0,0,0,0,0.393,96.92,136.94,0.94,0.65,789,0.7,201,1.3
+1944,2019,3,23,0,30,-4.7,0.98,0.04,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.395,98.72,138.46,0.94,0.65,789,0.7,194,1.1
+1945,2019,3,23,1,30,-4.7,0.96,0.039,0.62,0,0,0,0,4,-4.8,0,0,0,0,0.389,99.46,135.62,0.94,0.65,788,0.7,190,0.9
+1946,2019,3,23,2,30,-4.6,0.94,0.039,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.377,99.32,129.15,0.93,0.65,788,0.7,197,0.9
+1947,2019,3,23,3,30,-4.5,0.94,0.041,0.62,0,0,0,0,4,-4.6,0,0,0,0,0.364,99.18,120.28,0.93,0.65,788,0.7,214,0.9
+1948,2019,3,23,4,30,-4.3,0.95,0.043,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.352,98.72,110,0.93,0.65,789,0.7,229,0.9
+1949,2019,3,23,5,30,-3.8,0.96,0.045,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.343,96.54,98.95,0.93,0.65,789,0.7,242,1
+1950,2019,3,23,6,30,-1.9,0.97,0.043,0.62,21,245,32,7,4,-3.9,13,0,100,13,0.334,86.46,87.38,0.92,0.65,789,0.7,257,1.3
+1951,2019,3,23,7,30,1,0.98,0.042,0.62,51,724,224,6,4,-3.1,70,0,86,70,0.325,74.28,76.19,0.92,0.65,789,0.7,290,2
+1952,2019,3,23,8,30,3.2,0.98,0.041,0.62,68,885,439,0,4,-2.7,245,172,0,317,0.318,65.17,65.25,0.92,0.65,789,0.7,320,2.6
+1953,2019,3,23,9,30,4.7,0.97,0.04,0.62,80,963,630,0,4,-3.1,219,4,0,221,0.313,57.2,55.18,0.92,0.65,789,0.7,328,2.8
+1954,2019,3,23,10,30,6,0.95,0.039,0.62,89,1003,776,0,4,-3.4,458,214,0,605,0.31,51.02,46.73,0.92,0.65,789,0.7,332,2.7
+1955,2019,3,23,11,30,6.9,0.94,0.039,0.62,93,1023,864,0,4,-3.7,524,238,0,703,0.309,46.88,41.05,0.92,0.65,789,0.7,333,2.4
+1956,2019,3,23,12,30,7.5,0.92,0.039,0.62,95,1026,887,0,4,-3.9,351,630,32,838,0.311,44.29,39.44,0.92,0.65,788,0.7,326,2.1
+1957,2019,3,23,13,30,7.8,0.9,0.039,0.62,93,1014,842,2,4,-4,506,294,21,723,0.313,42.93,42.38,0.92,0.65,788,0.7,306,1.9
+1958,2019,3,23,14,30,7.9,0.89,0.041,0.62,87,988,735,0,4,-4.1,411,96,0,474,0.315,42.38,49.03,0.92,0.65,788,0.7,279,2
+1959,2019,3,23,15,30,7.5,0.89,0.041,0.62,78,939,575,1,0,-4.1,152,744,21,545,0.314,43.61,58.07,0.93,0.65,788,0.7,259,2.2
+1960,2019,3,23,16,30,6.4,0.89,0.042,0.62,65,844,375,0,4,-3.9,166,350,7,295,0.312,47.86,68.46,0.93,0.65,788,0.7,245,1.7
+1961,2019,3,23,17,30,4.3,0.89,0.044,0.62,45,632,160,0,0,-0.8,45,632,0,160,0.312,69.48,79.53,0.93,0.65,788,0.7,227,1.1
+1962,2019,3,23,18,30,2.6,0.9,0.045,0.62,7,58,6,0,0,-2.2,7,58,0,6,0.313,70.4,90.96,0.93,0.65,789,0.8,203,1.1
+1963,2019,3,23,19,30,1.5,0.9,0.048,0.62,0,0,0,0,0,-3,0,0,0,0,0.315,72.27,102.24,0.93,0.65,789,0.8,189,1.2
+1964,2019,3,23,20,30,0.5,0.9,0.049,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.317,76.5,113.07,0.93,0.65,789,0.8,189,1.4
+1965,2019,3,23,21,30,-0.4,0.92,0.05,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.317,81.36,122.96,0.93,0.65,789,0.8,193,1.4
+1966,2019,3,23,22,30,-1.1,0.95,0.052,0.62,0,0,0,0,4,-3.3,0,0,0,0,0.318,85.08,131.16,0.94,0.65,789,0.8,194,1.4
+1967,2019,3,23,23,30,-1.6,0.97,0.054,0.62,0,0,0,0,4,-3.3,0,0,0,0,0.324,88.48,136.58,0.94,0.65,789,0.9,193,1.4
+1968,2019,3,24,0,30,-1.9,0.98,0.056,0.62,0,0,0,0,4,-3.1,0,0,0,0,0.329,91.6,138.07,0.94,0.65,789,0.9,193,1.3
+1969,2019,3,24,1,30,-1.8,0.98,0.059,0.62,0,0,0,0,4,-2.8,0,0,0,0,0.329,92.58,135.22,0.94,0.65,789,0.9,191,1.3
+1970,2019,3,24,2,30,-1.6,0.98,0.061,0.62,0,0,0,0,4,-2.6,0,0,0,0,0.328,93.1,128.78,0.95,0.65,789,0.9,185,1.3
+1971,2019,3,24,3,30,-1.5,0.96,0.061,0.62,0,0,0,0,4,-2.4,0,0,0,0,0.329,93.87,119.93,0.95,0.65,789,0.9,178,1.3
+1972,2019,3,24,4,30,-1.4,0.95,0.06,0.62,0,0,0,0,4,-2.2,0,0,0,0,0.33,94.44,109.67,0.95,0.65,789,0.9,173,1.3
+1973,2019,3,24,5,30,-1.2,0.95,0.064,0.62,0,0,0,0,4,-2,0,0,0,0,0.33,94.37,98.64,0.96,0.65,789,0.9,168,1.4
+1974,2019,3,24,6,30,-0.2,0.97,0.071,0.62,24,210,35,7,4,-1.6,9,0,100,9,0.326,89.97,87.08,0.96,0.65,789,1,166,2.1
+1975,2019,3,24,7,30,1,0.97,0.077,0.62,64,640,220,4,4,-1.1,70,0,57,70,0.322,85.68,75.87,0.96,0.65,789,1,174,3.1
+1976,2019,3,24,8,30,2.4,1,0.09,0.62,91,802,431,0,4,-0.7,124,1,0,124,0.319,80.11,64.92,0.96,0.65,789,0.9,196,3.7
+1977,2019,3,24,9,30,4.5,1.02,0.092,0.62,107,894,622,0,7,-0.3,248,113,0,313,0.319,71.14,54.82,0.95,0.65,790,0.9,220,4.4
+1978,2019,3,24,10,30,6.4,1.03,0.08,0.62,114,950,770,0,7,-0.2,421,83,0,478,0.322,62.51,46.35,0.95,0.65,790,0.8,232,4.9
+1979,2019,3,24,11,30,7.6,1.04,0.081,0.62,123,969,858,0,7,-1,486,178,0,621,0.326,54.68,40.65,0.95,0.65,790,0.8,233,5
+1980,2019,3,24,12,30,7.8,1.04,0.089,0.62,128,968,880,0,7,-1.8,491,169,0,622,0.331,50.52,39.05,0.95,0.65,790,0.8,230,4.8
+1981,2019,3,24,13,30,7.5,1.03,0.094,0.62,128,953,836,0,7,-2.3,413,384,0,698,0.334,49.97,42.04,0.96,0.65,790,0.8,229,4.7
+1982,2019,3,24,14,30,7,1.03,0.099,0.62,121,921,728,0,7,-2.3,352,406,7,620,0.339,51.78,48.74,0.96,0.65,790,0.8,233,4.4
+1983,2019,3,24,15,30,6.3,1.02,0.097,0.62,106,866,567,0,6,-2,208,4,0,210,0.344,55.27,57.82,0.95,0.65,791,0.8,245,3.7
+1984,2019,3,24,16,30,5.3,0.99,0.092,0.62,85,763,368,2,7,-1.7,127,304,43,240,0.348,60.44,68.24,0.95,0.65,791,0.8,264,2.5
+1985,2019,3,24,17,30,3,0.96,0.089,0.62,55,544,156,2,0,-0.4,64,352,32,129,0.348,78.44,79.32,0.95,0.65,792,0.7,290,1.4
+1986,2019,3,24,18,30,0.7,0.93,0.084,0.62,6,38,6,3,4,-1.2,2,0,43,2,0.348,86.83,90.27,0.94,0.65,792,0.7,309,1.2
+1987,2019,3,24,19,30,-0.7,0.9,0.077,0.62,0,0,0,0,4,-2.3,0,0,0,0,0.347,89.14,102.04,0.94,0.65,793,0.6,315,1.3
+1988,2019,3,24,20,30,-1.7,0.89,0.072,0.62,0,0,0,0,4,-3.1,0,0,0,0,0.345,90.03,112.84,0.93,0.65,794,0.6,316,1.3
+1989,2019,3,24,21,30,-2.4,0.89,0.067,0.62,0,0,0,0,4,-3.9,0,0,0,0,0.341,89.65,122.7,0.93,0.65,795,0.5,318,1.3
+1990,2019,3,24,22,30,-2.9,0.89,0.063,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.336,88.59,130.84,0.93,0.65,795,0.5,322,1.3
+1991,2019,3,24,23,30,-3.1,0.9,0.058,0.62,0,0,0,0,4,-5,0,0,0,0,0.331,86.95,136.21,0.92,0.65,795,0.5,328,1.1
+1992,2019,3,25,0,30,-3.1,0.9,0.055,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.327,85.12,137.67,0.92,0.65,796,0.4,332,0.8
+1993,2019,3,25,1,30,-3.1,0.9,0.053,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.323,84.05,134.82,0.92,0.65,796,0.4,324,0.5
+1994,2019,3,25,2,30,-3.2,0.9,0.051,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.319,84.13,128.4,0.91,0.65,796,0.4,301,0.3
+1995,2019,3,25,3,30,-3.5,0.9,0.051,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.318,86.06,119.58,0.91,0.65,796,0.4,276,0.3
+1996,2019,3,25,4,30,-3.6,0.89,0.051,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.32,86.86,109.34,0.91,0.65,796,0.4,257,0.3
+1997,2019,3,25,5,30,-3.5,0.87,0.052,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.323,86.42,98.32,0.91,0.65,796,0.4,234,0.3
+1998,2019,3,25,6,30,-1.9,0.85,0.053,0.62,25,285,41,0,0,-5,25,285,0,41,0.323,79.39,86.77,0.91,0.65,797,0.4,228,0.4
+1999,2019,3,25,7,30,0.9,0.85,0.053,0.62,57,735,240,0,0,-4.8,57,735,0,240,0.319,65.61,75.55,0.91,0.65,797,0.4,268,0.7
+2000,2019,3,25,8,30,3.3,0.85,0.054,0.62,77,893,460,0,0,-6,77,893,0,460,0.313,50.46,64.59,0.91,0.65,797,0.4,289,1.1
+2001,2019,3,25,9,30,5.1,0.85,0.056,0.62,92,967,654,0,0,-7.4,92,967,0,654,0.308,40.12,54.47,0.91,0.65,797,0.4,269,1.6
+2002,2019,3,25,10,30,6.7,0.85,0.058,0.62,103,1004,801,0,0,-8.4,145,935,0,795,0.305,33.11,45.97,0.91,0.65,797,0.4,254,2.2
+2003,2019,3,25,11,30,8.1,0.87,0.059,0.62,109,1018,886,0,0,-9.1,109,1018,0,886,0.303,28.61,40.25,0.91,0.65,796,0.4,244,2.8
+2004,2019,3,25,12,30,9.1,0.87,0.062,0.62,113,1020,909,0,0,-9.3,113,1020,0,909,0.302,26.24,38.66,0.92,0.65,796,0.4,238,3.3
+2005,2019,3,25,13,30,9.8,0.86,0.065,0.62,115,1003,864,0,0,-9.3,138,968,0,861,0.303,25.01,41.69,0.92,0.65,796,0.4,235,3.6
+2006,2019,3,25,14,30,10,0.8,0.077,0.62,112,967,753,3,7,-9.2,220,761,46,725,0.305,24.93,48.45,0.92,0.65,795,0.4,231,3.7
+2007,2019,3,25,15,30,9.7,0.79,0.079,0.62,99,912,588,0,0,-9.1,99,912,0,588,0.309,25.7,57.58,0.92,0.65,795,0.4,227,3.5
+2008,2019,3,25,16,30,8.2,0.79,0.079,0.62,81,812,385,0,0,-8.6,110,682,39,365,0.314,29.56,68.03,0.92,0.65,795,0.4,220,2.5
+2009,2019,3,25,17,30,5.1,0.78,0.074,0.62,53,600,166,2,0,-3.9,64,527,21,163,0.316,52.1,79.13,0.92,0.65,795,0.4,208,1.5
+2010,2019,3,25,18,30,2.9,0.78,0.069,0.62,7,50,7,3,7,-6.1,5,1,43,5,0.318,51.62,90.1,0.91,0.65,795,0.4,195,1.4
+2011,2019,3,25,19,30,2,0.79,0.066,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.322,50.12,101.83,0.91,0.65,795,0.4,187,1.5
+2012,2019,3,25,20,30,1.2,0.82,0.066,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.325,50.61,112.61,0.92,0.65,795,0.4,185,1.5
+2013,2019,3,25,21,30,0.3,0.87,0.071,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.327,52.24,122.43,0.92,0.65,795,0.4,186,1.4
+2014,2019,3,25,22,30,-0.6,0.9,0.075,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.327,55.72,130.53,0.93,0.65,795,0.4,189,1.4
+2015,2019,3,25,23,30,-1.3,0.91,0.076,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.323,59.85,135.85,0.93,0.65,795,0.4,192,1.4
+2016,2019,3,26,0,30,-2,0.94,0.08,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.32,64.03,137.27,0.93,0.65,795,0.4,192,1.4
+2017,2019,3,26,1,30,-2.4,0.95,0.083,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.318,66.82,134.43,0.93,0.65,795,0.4,189,1.4
+2018,2019,3,26,2,30,-2.6,0.96,0.083,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.319,69.15,128.03,0.94,0.65,795,0.4,186,1.5
+2019,2019,3,26,3,30,-2.6,0.99,0.085,0.62,0,0,0,0,7,-7.3,0,0,0,0,0.322,70.1,119.23,0.94,0.65,794,0.4,183,1.6
+2020,2019,3,26,4,30,-2.6,1.02,0.087,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.327,70.6,109.01,0.94,0.65,794,0.4,180,1.6
+2021,2019,3,26,5,30,-2.3,1.04,0.08,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.332,68.93,98,0.93,0.65,794,0.4,179,1.6
+2022,2019,3,26,6,30,0,1.05,0.072,0.62,27,277,44,7,7,-6.6,33,12,100,34,0.337,61,86.47,0.93,0.65,794,0.4,180,2.1
+2023,2019,3,26,7,30,3.6,1.05,0.066,0.62,59,726,244,3,7,-6.1,138,305,46,216,0.342,49.09,75.24,0.92,0.65,793,0.4,187,2.6
+2024,2019,3,26,8,30,7.4,1.05,0.056,0.62,76,894,464,2,7,-5.3,188,537,21,421,0.345,39.97,64.26,0.91,0.65,793,0.4,199,3.5
+2025,2019,3,26,9,30,10.8,1.04,0.048,0.62,86,974,657,0,7,-7.3,305,363,0,518,0.348,27.3,54.12,0.91,0.65,793,0.4,211,4.8
+2026,2019,3,26,10,30,12.8,1.05,0.049,0.62,96,1009,802,1,7,-7.5,328,514,14,688,0.35,23.68,45.59,0.91,0.65,792,0.4,218,5.5
+2027,2019,3,26,11,30,14.1,1.06,0.05,0.62,101,1021,885,0,7,-6.9,343,588,7,794,0.351,22.73,39.85,0.92,0.65,791,0.5,220,6.1
+2028,2019,3,26,12,30,15.1,1.07,0.051,0.62,104,1024,908,4,7,-6.3,265,735,54,842,0.351,22.37,38.28,0.92,0.65,790,0.5,220,6.4
+2029,2019,3,26,13,30,15.7,1.1,0.056,0.62,106,1005,860,4,7,-5.6,237,750,50,800,0.35,22.63,41.35,0.93,0.65,790,0.6,218,6.6
+2030,2019,3,26,14,30,15.6,1.12,0.064,0.62,102,971,750,1,7,-5.1,270,640,25,697,0.348,23.71,48.17,0.93,0.65,789,0.6,218,6.6
+2031,2019,3,26,15,30,14.7,1.13,0.066,0.62,92,918,587,1,7,-4.7,229,595,14,550,0.343,25.79,57.34,0.93,0.65,789,0.6,220,6
+2032,2019,3,26,16,30,12.2,1.15,0.07,0.62,77,816,385,0,6,-4.1,151,167,7,214,0.34,31.91,67.81,0.93,0.65,789,0.6,225,4.3
+2033,2019,3,26,17,30,8.4,1.17,0.074,0.62,53,599,168,7,6,-1.5,77,22,100,81,0.341,49.73,78.93,0.94,0.65,789,0.6,228,2.4
+2034,2019,3,26,18,30,6,1.18,0.077,0.62,7,56,7,4,7,-0.9,6,1,57,6,0.346,61.4,89.94,0.94,0.65,789,0.6,224,1.7
+2035,2019,3,26,19,30,5.4,1.19,0.078,0.62,0,0,0,0,6,-1.1,0,0,0,0,0.349,62.99,101.62,0.94,0.65,789,0.6,213,1.5
+2036,2019,3,26,20,30,5,1.18,0.076,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.347,62.74,112.38,0.94,0.65,789,0.6,202,1.5
+2037,2019,3,26,21,30,4.4,1.18,0.071,0.62,0,0,0,0,6,-1.9,0,0,0,0,0.345,63.68,122.16,0.93,0.65,789,0.6,199,1.5
+2038,2019,3,26,22,30,3.8,1.18,0.066,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.345,64.81,130.22,0.93,0.65,789,0.6,202,1.5
+2039,2019,3,26,23,30,3.3,1.17,0.06,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.347,65.01,135.49,0.92,0.65,789,0.6,206,1.4
+2040,2019,3,27,0,30,3,1.15,0.056,0.62,0,0,0,0,7,-3,0,0,0,0,0.347,64.82,136.88,0.92,0.65,789,0.6,211,1.3
+2041,2019,3,27,1,30,2.8,1.13,0.054,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.344,64.66,134.03,0.92,0.65,789,0.6,216,1.2
+2042,2019,3,27,2,30,2.8,1.13,0.054,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.34,63.84,127.65,0.93,0.65,789,0.6,217,1.1
+2043,2019,3,27,3,30,2.9,1.13,0.059,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.336,62.89,118.88,0.93,0.65,789,0.5,215,0.9
+2044,2019,3,27,4,30,2.9,1.13,0.06,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.333,63.29,108.68,0.93,0.65,789,0.5,213,0.8
+2045,2019,3,27,5,30,2.9,1.13,0.06,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.33,63.72,97.69,0.94,0.65,789,0.5,213,0.9
+2046,2019,3,27,6,30,3.9,1.14,0.061,0.62,28,326,50,6,8,-2.8,36,40,93,39,0.327,61.43,86.17,0.94,0.65,789,0.5,212,1.1
+2047,2019,3,27,7,30,6.2,1.14,0.063,0.62,61,724,249,3,7,0,154,77,43,174,0.324,64.55,74.92,0.94,0.65,790,0.5,210,1.7
+2048,2019,3,27,8,30,9.4,1.14,0.064,0.62,79,879,465,1,7,-1.1,135,698,36,442,0.321,47.94,63.94,0.93,0.65,790,0.5,213,3
+2049,2019,3,27,9,30,12.4,1.14,0.054,0.62,88,960,655,0,7,-3,207,690,7,615,0.318,34.08,53.77,0.92,0.65,789,0.6,217,4.3
+2050,2019,3,27,10,30,14.3,1.11,0.045,0.62,93,1004,800,4,7,-4.4,290,620,50,727,0.315,27.1,45.21,0.91,0.65,789,0.6,217,5.2
+2051,2019,3,27,11,30,15.6,1.09,0.044,0.62,97,1023,887,3,7,-4.3,268,734,50,835,0.311,25.24,39.46,0.92,0.65,789,0.6,217,5.9
+2052,2019,3,27,12,30,16.4,1.1,0.043,0.62,99,1023,906,2,7,-3.9,243,755,36,839,0.306,24.64,37.89,0.92,0.65,788,0.7,218,6.3
+2053,2019,3,27,13,30,16.4,1.12,0.046,0.62,98,1010,860,4,7,-3.7,231,748,54,795,0.3,25.07,41.01,0.93,0.65,788,0.7,220,6.5
+2054,2019,3,27,14,30,15.7,1.24,0.049,0.62,94,981,752,0,7,-3.6,394,361,0,636,0.297,26.37,47.88,0.94,0.65,788,0.7,223,6.7
+2055,2019,3,27,15,30,14.2,1.23,0.057,0.62,87,925,590,0,7,-3.7,317,323,0,492,0.296,28.86,57.09,0.95,0.65,788,0.7,224,6.1
+2056,2019,3,27,16,30,11.7,1.21,0.061,0.62,74,826,389,0,6,-3,132,13,0,137,0.296,35.64,67.6,0.95,0.65,788,0.7,219,4.4
+2057,2019,3,27,17,30,8.7,1.17,0.065,0.62,51,625,173,7,6,-1.2,49,2,100,49,0.298,49.86,78.73,0.94,0.65,788,0.7,208,2.8
+2058,2019,3,27,18,30,6.4,1.13,0.059,0.62,10,88,10,4,9,-0.7,5,0,57,5,0.302,60.62,89.77,0.93,0.65,788,0.6,199,2.3
+2059,2019,3,27,19,30,4.6,1.07,0.048,0.62,0,0,0,0,6,-0.9,0,0,0,0,0.305,67.29,101.41,0.92,0.65,788,0.6,196,2.2
+2060,2019,3,27,20,30,3.2,1,0.041,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.307,71.39,112.15,0.91,0.65,789,0.6,199,2.2
+2061,2019,3,27,21,30,2.1,0.94,0.037,0.62,0,0,0,0,0,-2,0,0,0,0,0.308,74.03,121.9,0.91,0.65,789,0.6,205,2.3
+2062,2019,3,27,22,30,1.2,0.93,0.037,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.308,76.26,129.9,0.91,0.65,788,0.6,208,2.4
+2063,2019,3,27,23,30,0.5,0.93,0.038,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.309,78.06,135.12,0.91,0.65,788,0.6,208,2.5
+2064,2019,3,28,0,30,-0.2,0.93,0.037,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.308,80.19,136.48,0.91,0.65,788,0.7,207,2.6
+2065,2019,3,28,1,30,-0.7,0.94,0.041,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.306,81.52,133.64,0.92,0.65,788,0.7,206,2.6
+2066,2019,3,28,2,30,-1,0.94,0.044,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.305,82.23,127.28,0.92,0.65,788,0.7,203,2.4
+2067,2019,3,28,3,30,-1.3,0.96,0.044,0.62,0,0,0,0,7,-3.8,0,0,0,0,0.305,83.09,118.53,0.92,0.65,789,0.6,201,2.3
+2068,2019,3,28,4,30,-1.5,0.99,0.045,0.62,0,0,0,0,7,-4,0,0,0,0,0.304,83.3,108.35,0.92,0.65,789,0.5,204,2.3
+2069,2019,3,28,5,30,-0.9,1.02,0.047,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.303,78.17,97.37,0.92,0.65,789,0.5,212,2.4
+2070,2019,3,28,6,30,1.7,1.05,0.053,0.62,28,356,54,7,7,-4,39,6,100,39,0.302,65.93,85.87,0.93,0.65,789,0.5,223,3
+2071,2019,3,28,7,30,5,1.07,0.059,0.62,60,731,254,3,7,-3.1,153,64,43,170,0.301,55.77,74.61,0.94,0.65,790,0.6,229,3.6
+2072,2019,3,28,8,30,7.8,1.07,0.062,0.62,80,876,469,0,7,-2.8,263,166,0,337,0.3,47.12,63.61,0.94,0.65,790,0.6,232,4.1
+2073,2019,3,28,9,30,10.7,1.05,0.057,0.62,91,955,660,0,7,-3.4,352,241,0,496,0.299,37.17,53.42,0.93,0.65,789,0.6,234,4.9
+2074,2019,3,28,10,30,12.7,1.02,0.051,0.62,97,1000,806,0,7,-3.9,329,540,0,712,0.296,31.34,44.83,0.93,0.65,789,0.6,233,5.7
+2075,2019,3,28,11,30,13.7,1.13,0.046,0.62,98,1022,892,0,7,-3.8,386,509,0,781,0.294,29.45,39.06,0.93,0.65,789,0.6,232,6
+2076,2019,3,28,12,30,14.2,1.14,0.044,0.62,99,1024,911,0,7,-3.8,371,548,0,806,0.292,28.59,37.5,0.93,0.65,788,0.7,232,6.1
+2077,2019,3,28,13,30,14.3,1.11,0.044,0.62,97,1012,865,0,7,-3.8,443,360,0,716,0.291,28.32,40.67,0.93,0.65,788,0.7,232,6.1
+2078,2019,3,28,14,30,14,1.06,0.047,0.62,92,986,757,2,7,-3.9,245,671,29,697,0.289,28.67,47.6,0.93,0.65,787,0.7,232,6
+2079,2019,3,28,15,30,13.3,1.04,0.048,0.62,83,937,595,0,6,-4,237,58,0,269,0.289,29.86,56.85,0.93,0.65,787,0.7,231,5.5
+2080,2019,3,28,16,30,11.7,1.01,0.05,0.62,70,843,394,0,7,-3.8,172,370,11,314,0.29,33.59,67.39,0.93,0.65,787,0.7,226,3.8
+2081,2019,3,28,17,30,8.3,1,0.053,0.62,49,639,176,7,7,-1.1,98,36,100,105,0.293,51.42,78.53,0.93,0.65,786,0.7,214,2
+2082,2019,3,28,18,30,5.7,0.99,0.056,0.62,10,91,11,0,0,-0.5,10,91,0,11,0.295,64.62,89.59,0.93,0.65,786,0.8,202,1.4
+2083,2019,3,28,19,30,4.6,0.99,0.065,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.298,67.92,101.2,0.94,0.65,786,0.8,199,1.2
+2084,2019,3,28,20,30,3.6,1,0.067,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.3,73.89,111.92,0.94,0.65,786,0.8,207,0.9
+2085,2019,3,28,21,30,2.7,1.04,0.058,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.303,77.36,121.63,0.93,0.65,785,0.8,227,0.7
+2086,2019,3,28,22,30,1.7,1.05,0.048,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.306,78.69,129.59,0.92,0.65,785,0.7,244,0.8
+2087,2019,3,28,23,30,0.6,1.02,0.049,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.31,83.6,134.76,0.92,0.65,784,0.7,251,1
+2088,2019,3,29,0,30,-0.8,0.93,0.048,0.62,0,0,0,0,0,-2,0,0,0,0,0.315,91.74,136.09,0.91,0.65,784,0.6,249,1.2
+2089,2019,3,29,1,30,-2.3,0.83,0.048,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.319,100,133.24,0.92,0.65,784,0.6,235,1.4
+2090,2019,3,29,2,30,-3.1,0.79,0.05,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.324,100,126.9,0.92,0.65,784,0.7,225,1.6
+2091,2019,3,29,3,30,-3.4,0.81,0.054,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.328,100,118.19,0.94,0.65,785,0.7,228,1.9
+2092,2019,3,29,4,30,-3.3,0.86,0.064,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.333,100,108.02,0.95,0.65,785,0.8,246,2.1
+2093,2019,3,29,5,30,-2.8,0.9,0.074,0.62,0,0,0,0,7,-3,0,0,0,0,0.34,98.48,97.06,0.95,0.65,786,0.8,260,2.5
+2094,2019,3,29,6,30,-1.7,0.9,0.075,0.62,31,306,55,7,6,-3.2,20,0,100,20,0.346,89.16,85.57,0.95,0.65,786,0.7,273,3.4
+2095,2019,3,29,7,30,-0.3,0.89,0.073,0.62,65,698,254,2,7,-3.7,121,25,29,128,0.352,77.96,74.3,0.95,0.65,787,0.7,292,4.5
+2096,2019,3,29,8,30,0.9,0.87,0.071,0.62,87,857,472,4,8,-4.7,74,1,57,74,0.355,66.43,63.28,0.95,0.65,788,0.6,303,5.3
+2097,2019,3,29,9,30,2.1,0.89,0.07,0.62,99,938,663,0,7,-5.8,381,252,0,532,0.356,55.94,53.07,0.95,0.65,788,0.6,305,5.5
+2098,2019,3,29,10,30,3.4,0.91,0.063,0.62,104,990,811,0,7,-6.7,461,92,0,527,0.356,47.75,44.46,0.95,0.65,788,0.6,306,5.5
+2099,2019,3,29,11,30,4.4,0.94,0.054,0.62,105,1020,901,0,7,-7.1,498,185,0,642,0.355,43.06,38.66,0.94,0.65,788,0.5,308,5.4
+2100,2019,3,29,12,30,4.7,0.95,0.05,0.62,106,1026,924,0,7,-7.3,417,484,0,803,0.354,41.34,37.12,0.95,0.65,788,0.5,310,5.4
+2101,2019,3,29,13,30,4.2,0.97,0.051,0.62,102,1015,876,0,7,-7.5,514,202,0,668,0.354,42.26,40.33,0.95,0.65,788,0.5,314,5.4
+2102,2019,3,29,14,30,3.2,0.98,0.052,0.62,97,983,764,0,7,-7.3,440,182,0,563,0.356,45.91,47.31,0.95,0.65,788,0.6,319,5.3
+2103,2019,3,29,15,30,2.2,0.97,0.057,0.62,89,928,600,0,4,-7,329,341,0,517,0.361,50.74,56.62,0.96,0.65,789,0.6,326,4.9
+2104,2019,3,29,16,30,1.1,0.94,0.06,0.62,74,834,397,0,7,-6.4,212,211,0,294,0.368,57.2,67.18,0.96,0.65,789,0.6,334,4
+2105,2019,3,29,17,30,-0.1,0.93,0.058,0.62,50,636,179,7,7,-5.6,84,6,100,85,0.374,66.57,78.33,0.95,0.52,790,0.6,342,2.8
+2106,2019,3,29,18,30,-1.2,0.96,0.057,0.62,11,95,12,4,7,-4.2,5,0,57,5,0.379,79.91,89.41,0.95,0.52,791,0.7,347,2.3
+2107,2019,3,29,19,30,-1.9,1.01,0.062,0.62,0,0,0,0,7,-4,0,0,0,0,0.382,85.63,101,0.96,0.52,791,0.7,349,3.1
+2108,2019,3,29,20,30,-2.3,1.05,0.072,0.62,0,0,0,0,7,-4.1,0,0,0,0,0.384,87.31,111.69,0.96,0.52,792,0.7,353,4.1
+2109,2019,3,29,21,30,-2.8,1.08,0.082,0.62,0,0,0,0,8,-4.4,0,0,0,0,0.386,88.93,121.37,0.96,0.52,792,0.7,181,4.7
+2110,2019,3,29,22,30,-3.2,1.09,0.085,0.62,0,0,0,0,8,-4.6,0,0,0,0,0.388,89.92,129.28,0.96,0.52,792,0.6,10,4.8
+2111,2019,3,29,23,30,-3.6,1.1,0.083,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.391,90.48,134.4,0.96,0.52,793,0.6,17,4.9
+2112,2019,3,30,0,30,-4,1.11,0.079,0.62,0,0,0,0,8,-5.3,0,0,0,0,0.393,90.54,135.7,0.96,0.52,793,0.6,23,4.9
+2113,2019,3,30,1,30,-4.3,1.12,0.073,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.395,89.56,132.85,0.96,0.52,793,0.6,28,4.7
+2114,2019,3,30,2,30,-4.7,1.11,0.065,0.62,0,0,0,0,4,-6.3,0,0,0,0,0.396,88.87,126.53,0.95,0.52,793,0.6,32,4.3
+2115,2019,3,30,3,30,-5.1,1.1,0.057,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.395,88.77,117.84,0.95,0.52,794,0.5,35,3.8
+2116,2019,3,30,4,30,-5.4,1.08,0.051,0.62,0,0,0,0,0,-7,0,0,0,0,0.395,88.48,107.7,0.95,0.52,794,0.5,36,3.3
+2117,2019,3,30,5,30,-5.3,1.06,0.048,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.396,86.34,96.74,0.94,0.52,795,0.5,35,3.2
+2118,2019,3,30,6,30,-3.7,1.06,0.046,0.62,29,412,63,0,0,-7.2,29,412,0,63,0.399,76.38,85.26,0.94,0.52,795,0.5,42,3.7
+2119,2019,3,30,7,30,-1.2,1.05,0.045,0.62,55,769,267,0,0,-7.6,62,734,7,265,0.405,61.94,73.98,0.94,0.52,795,0.5,51,4.1
+2120,2019,3,30,8,30,0.8,1.03,0.043,0.62,71,907,483,0,0,-8.3,114,781,0,469,0.41,50.51,62.96,0.93,0.52,795,0.5,52,3.9
+2121,2019,3,30,9,30,2.1,1.01,0.041,0.62,83,975,673,0,0,-8.8,108,919,0,665,0.414,44.32,52.73,0.93,0.52,795,0.5,46,3.8
+2122,2019,3,30,10,30,3.2,1,0.041,0.62,90,1012,817,0,0,-8.9,151,904,0,800,0.416,40.56,44.08,0.93,0.52,795,0.5,43,3.9
+2123,2019,3,30,11,30,4.2,0.99,0.041,0.62,95,1028,902,0,0,-8.9,212,852,0,881,0.416,37.99,38.27,0.93,0.52,795,0.5,43,4.1
+2124,2019,3,30,12,30,4.9,0.95,0.043,0.62,97,1031,923,1,4,-8.7,526,355,14,810,0.415,36.59,36.74,0.93,0.52,794,0.5,43,4.2
+2125,2019,3,30,13,30,5.3,0.93,0.043,0.62,95,1021,877,0,4,-8.5,386,512,0,778,0.414,36.14,40,0.93,0.52,794,0.5,42,4.2
+2126,2019,3,30,14,30,5.5,0.88,0.045,0.62,90,996,769,2,4,-8.4,328,533,21,691,0.415,36.08,47.03,0.93,0.52,794,0.5,41,4.3
+2127,2019,3,30,15,30,5.1,0.88,0.044,0.62,80,950,606,0,0,-8.3,204,645,0,561,0.415,37.19,56.38,0.93,0.52,793,0.5,40,4.3
+2128,2019,3,30,16,30,4.1,0.88,0.043,0.62,66,865,404,0,0,-8.3,66,865,0,404,0.416,39.94,66.97,0.93,0.52,793,0.5,39,4.1
+2129,2019,3,30,17,30,1.5,0.89,0.043,0.62,44,681,184,0,0,-7.7,44,681,0,184,0.416,50.41,78.14,0.93,0.25,794,0.5,37,2.9
+2130,2019,3,30,18,30,-1.2,0.89,0.042,0.62,11,122,13,0,0,-6.2,11,122,0,13,0.418,68.61,89.23,0.93,0.25,794,0.5,36,2.1
+2131,2019,3,30,19,30,-2.5,0.88,0.041,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.419,72.86,100.79,0.92,0.25,795,0.5,38,2.1
+2132,2019,3,30,20,30,-3.4,0.88,0.041,0.62,0,0,0,0,0,-7,0,0,0,0,0.419,75.97,111.46,0.92,0.25,795,0.5,41,2
+2133,2019,3,30,21,30,-4.1,0.88,0.041,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.419,78.77,121.1,0.92,0.25,795,0.5,43,1.8
+2134,2019,3,30,22,30,-4.7,0.88,0.041,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.419,81.87,128.96,0.92,0.25,795,0.5,43,1.6
+2135,2019,3,30,23,30,-5.1,0.89,0.041,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.418,84.28,134.04,0.92,0.25,794,0.5,42,1.5
+2136,2019,3,31,0,30,-5.3,0.9,0.042,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.418,85.86,135.31,0.92,0.25,794,0.5,40,1.4
+2137,2019,3,31,1,30,-5.5,0.92,0.042,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.418,87.31,132.46,0.92,0.25,794,0.5,37,1.4
+2138,2019,3,31,2,30,-5.7,0.93,0.043,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.42,88.42,126.16,0.92,0.25,794,0.5,34,1.5
+2139,2019,3,31,3,30,-5.8,0.94,0.043,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.421,88.45,117.49,0.92,0.25,794,0.5,32,1.7
+2140,2019,3,31,4,30,-6,0.94,0.044,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.422,88.94,107.37,0.92,0.25,794,0.5,30,1.8
+2141,2019,3,31,5,30,-5.7,0.95,0.045,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.419,86.09,96.43,0.92,0.25,794,0.5,27,2.3
+2142,2019,3,31,6,30,-4,0.95,0.046,0.62,29,421,66,0,0,-7.7,29,421,0,66,0.415,75.67,84.96,0.92,0.25,794,0.5,26,3.1
+2143,2019,3,31,7,30,-0.9,0.96,0.047,0.62,54,766,269,0,0,-7.6,54,766,0,269,0.41,60.53,73.67,0.92,0.25,794,0.5,30,4
+2144,2019,3,31,8,30,1.9,0.97,0.048,0.62,69,901,483,0,0,-8.1,69,901,0,483,0.404,47.61,62.63,0.92,0.25,794,0.5,34,4.4
+2145,2019,3,31,9,30,3.9,0.96,0.048,0.62,79,970,671,0,0,-8,79,970,0,671,0.398,41.57,52.38,0.92,0.25,794,0.5,35,4.3
+2146,2019,3,31,10,30,5.5,0.95,0.045,0.62,82,1013,814,0,0,-7.7,82,1013,0,814,0.393,38.14,43.71,0.91,0.25,794,0.5,36,3.9
+2147,2019,3,31,11,30,6.8,1.09,0.036,0.62,81,1037,900,0,0,-7.4,81,1037,0,900,0.391,35.69,37.87,0.9,0.25,793,0.5,39,3.5
+2148,2019,3,31,12,30,7.8,1.05,0.034,0.62,81,1042,920,0,0,-7.2,81,1042,0,920,0.391,33.79,36.36,0.9,0.25,792,0.5,44,3.2
+2149,2019,3,31,13,30,8.5,1.02,0.033,0.62,81,1030,874,0,0,-7.1,81,1030,0,874,0.39,32.32,39.67,0.9,0.25,792,0.5,48,2.8
+2150,2019,3,31,14,30,8.8,0.79,0.041,0.62,80,1001,766,0,0,-7.3,80,1001,0,766,0.386,31.37,46.76,0.91,0.25,791,0.5,41,2.2
+2151,2019,3,31,15,30,8.6,0.8,0.042,0.62,74,954,605,0,0,-7.5,74,954,0,605,0.38,31.12,56.15,0.91,0.25,791,0.5,197,1.8
+2152,2019,3,31,16,30,7.6,0.82,0.044,0.62,63,865,404,0,0,-7.7,63,865,0,404,0.377,32.86,66.76,0.91,0.25,791,0.5,352,1.6
+2153,2019,3,31,17,30,15.5,1.19,0.101,0.64,56,568,174,0,8,-4.7,80,9,0,82,0.332,24.65,77.96,0.95,0.13,782,0.8,218,4.6
+2154,2019,3,31,18,30,12.9,1.23,0.119,0.64,0,0,0,7,7,-3,0,0,7,0,0.334,33.08,89.09,0.95,0.13,782,0.9,216,3.4
+2155,2019,3,31,19,30,11.9,1.25,0.133,0.64,0,0,0,0,7,-2.3,0,0,0,0,0.336,37.17,100.6,0.95,0.13,782,0.9,213,3.3
+2156,2019,3,31,20,30,11.2,1.23,0.142,0.64,0,0,0,0,4,-2,0,0,0,0,0.338,39.66,111.25,0.95,0.13,781,0.9,212,3.6
+2157,2019,3,31,21,30,10.6,1.17,0.138,0.64,0,0,0,0,4,-2.1,0,0,0,0,0.34,41.14,120.85,0.95,0.13,781,0.9,217,4
+2158,2019,3,31,22,30,9.7,1.12,0.128,0.64,0,0,0,0,1,-2.2,0,0,0,0,0.342,43.4,128.67,0.94,0.13,781,0.9,230,4.2
+2159,2019,3,31,23,30,8.6,1.11,0.12,0.64,0,0,0,0,4,-2.5,0,0,0,0,0.343,45.73,133.7,0.94,0.13,781,0.8,247,4.2
+2160,2015,4,1,0,30,6.9,1.19,0.126,0.64,0,0,0,0,1,-2.6,0,0,0,0,0.344,50.79,134.94,0.93,0.13,781,0.9,260,3.3
+2161,2015,4,1,1,30,5.2,1.29,0.132,0.64,0,0,0,1,4,-2,0,0,1,0,0.345,59.63,132.08,0.93,0.13,781,0.9,265,2
+2162,2015,4,1,2,30,4.3,1.32,0.128,0.64,0,0,0,0,4,-1.5,0,0,0,0,0.345,66.09,125.8,0.93,0.13,781,0.9,279,1.7
+2163,2015,4,1,3,30,3.9,1.27,0.12,0.64,0,0,0,0,4,-1.2,0,0,0,0,0.344,69.31,117.15,0.93,0.13,782,1,306,2.6
+2164,2015,4,1,4,30,3.2,1.18,0.117,0.64,0,0,0,0,7,-1.2,0,0,0,0,0.343,72.82,107.05,0.94,0.13,782,0.9,325,3.9
+2165,2015,4,1,5,30,2.5,1.1,0.129,0.64,0,0,0,0,4,-2.2,0,0,0,0,0.343,71.17,96.12,0.95,0.13,783,0.8,331,4.4
+2166,2015,4,1,6,30,3.1,1.03,0.143,0.64,36,246,59,7,4,-3.4,23,0,7,23,0.343,62.16,84.66,0.95,0.13,784,0.8,332,4.9
+2167,2015,4,1,7,30,4.4,0.98,0.142,0.64,79,607,253,0,7,-4.9,125,167,0,173,0.343,50.83,73.36,0.95,0.13,784,0.7,329,5.4
+2168,2015,4,1,8,30,6.1,0.93,0.129,0.64,98,784,462,0,7,-6.6,244,70,0,276,0.342,39.73,62.31,0.94,0.13,785,0.7,322,5
+2169,2015,4,1,9,30,8.1,0.88,0.108,0.64,102,895,653,0,4,-8.1,383,148,0,474,0.342,30.94,52.03,0.93,0.13,785,0.6,309,4.3
+2170,2015,4,1,10,30,10.1,0.79,0.085,0.64,100,968,804,0,7,-9.4,187,717,0,708,0.342,24.42,43.33,0.93,0.13,784,0.5,291,3.8
+2171,2015,4,1,11,30,11.8,0.66,0.066,0.64,94,1013,898,0,4,-10.5,429,426,0,767,0.342,19.95,37.48,0.92,0.13,784,0.4,274,3.8
+2172,2015,4,1,12,30,13,0.71,0.067,0.64,95,1017,918,0,0,-11.5,95,1017,0,918,0.342,17,35.98,0.92,0.13,783,0.4,262,4.2
+2173,2015,4,1,13,30,13.5,0.79,0.068,0.64,93,1017,880,0,4,-12.6,445,368,0,730,0.345,15.06,39.34,0.91,0.13,783,0.3,255,4.8
+2174,2015,4,1,14,30,13.3,0.88,0.064,0.64,86,997,773,0,0,-14.1,86,997,0,773,0.349,13.55,46.49,0.91,0.13,782,0.3,256,5.5
+2175,2015,4,1,15,30,12.5,0.97,0.064,0.64,78,951,611,0,7,-15.7,183,664,0,555,0.351,12.45,55.93,0.91,0.13,782,0.3,261,5.7
+2176,2015,4,1,16,30,10.9,1.07,0.066,0.64,67,861,409,0,7,-16.6,145,635,0,397,0.351,12.87,66.57,0.91,0.13,782,0.3,270,5.1
+2177,2015,4,1,17,30,7.5,1.13,0.074,0.64,51,659,190,0,7,-15.9,117,48,0,127,0.352,17.2,77.77,0.92,0.14,783,0.3,287,3.3
+2178,2015,4,1,18,30,4.3,1.1,0.085,0.64,12,105,14,7,6,-10.9,6,0,7,6,0.353,32.23,88.9,0.93,0.14,783,0.3,312,2
+2179,2015,4,1,19,30,3,1.07,0.093,0.64,0,0,0,0,6,-9.8,0,0,0,0,0.355,38.53,100.39,0.93,0.14,784,0.3,337,2
+2180,2015,4,1,20,30,2.1,1.04,0.095,0.64,0,0,0,0,6,-10,0,0,0,0,0.357,40.48,111.02,0.94,0.14,785,0.3,176,2.4
+2181,2015,4,1,21,30,1.4,1.01,0.095,0.64,0,0,0,0,6,-10.6,0,0,0,0,0.359,40.56,120.59,0.94,0.14,785,0.3,11,2.6
+2182,2015,4,1,22,30,0.7,0.99,0.093,0.64,0,0,0,0,6,-11,0,0,0,0,0.361,41.3,128.36,0.94,0.14,785,0.4,23,2.5
+2183,2015,4,1,23,30,0.1,0.97,0.093,0.64,0,0,0,0,6,-10.6,0,0,0,0,0.362,44.56,133.34,0.95,0.14,784,0.4,31,2.3
+2184,2015,4,2,0,30,-0.4,0.96,0.1,0.64,0,0,0,0,6,-10,0,0,0,0,0.363,48.39,134.55,0.95,0.14,784,0.4,31,2.1
+2185,2015,4,2,1,30,-0.8,0.95,0.112,0.64,0,0,0,1,6,-9.6,0,0,1,0,0.365,51.24,131.7,0.95,0.14,783,0.5,24,2.1
+2186,2015,4,2,2,30,-1.1,0.94,0.123,0.64,0,0,0,0,6,-9.3,0,0,0,0,0.369,53.57,125.43,0.96,0.14,783,0.5,13,2.4
+2187,2015,4,2,3,30,-1.4,0.94,0.124,0.64,0,0,0,0,7,-9.3,0,0,0,0,0.373,54.84,116.81,0.96,0.14,782,0.5,5,2.9
+2188,2015,4,2,4,30,-1.7,0.95,0.119,0.64,0,0,0,0,6,-9.4,0,0,0,0,0.376,55.89,106.73,0.95,0.14,782,0.5,3,3.3
+2189,2015,4,2,5,30,-1.9,0.96,0.109,0.64,0,0,0,0,7,-9.3,0,0,0,0,0.377,56.89,95.81,0.95,0.14,782,0.5,3,3.7
+2190,2015,4,2,6,30,-1.2,0.95,0.096,0.64,35,345,68,7,7,-9.2,39,3,7,39,0.379,54.35,84.36,0.95,0.14,782,0.5,7,4.7
+2191,2015,4,2,7,30,0.3,0.95,0.087,0.64,65,708,271,0,4,-9.7,130,5,0,132,0.379,46.9,73.06,0.94,0.14,782,0.5,11,5.5
+2192,2015,4,2,8,30,1.6,0.95,0.083,0.64,81,858,484,0,7,-9.8,223,41,0,242,0.379,42.58,61.99,0.94,0.14,783,0.5,9,5.5
+2193,2015,4,2,9,30,2.6,0.97,0.083,0.64,92,932,670,0,4,-9.5,333,57,0,368,0.378,40.56,51.69,0.95,0.14,783,0.5,182,5.2
+2194,2015,4,2,10,30,3,1,0.089,0.64,101,960,804,0,4,-9.2,408,93,0,477,0.378,40.26,42.96,0.95,0.14,783,0.6,354,5.3
+2195,2015,4,2,11,30,2.8,1.12,0.099,0.64,110,972,885,0,7,-9,402,300,0,642,0.378,41.62,37.09,0.96,0.14,783,0.6,348,5.6
+2196,2015,4,2,12,30,2.2,1.12,0.111,0.64,117,972,908,0,4,-8.9,344,2,0,345,0.377,43.65,35.6,0.96,0.14,784,0.5,344,5.8
+2197,2015,4,2,13,30,1.6,1.11,0.11,0.64,115,962,862,0,7,-9.2,376,38,0,406,0.374,44.45,39.01,0.96,0.14,785,0.5,341,5.9
+2198,2015,4,2,14,30,1.2,1.13,0.101,0.64,105,943,757,0,4,-9.8,262,1,0,263,0.371,43.78,46.22,0.96,0.14,786,0.5,340,5.8
+2199,2015,4,2,15,30,0.8,1.12,0.092,0.64,91,900,598,0,7,-10.4,215,15,0,224,0.37,42.94,55.7,0.95,0.14,786,0.5,343,5.6
+2200,2015,4,2,16,30,0.3,1.11,0.085,0.64,75,813,401,0,7,-10.9,221,106,0,264,0.371,42.87,66.37,0.95,0.14,787,0.5,346,5.1
+2201,2015,4,2,17,30,-0.6,1.08,0.085,0.64,54,627,189,0,7,-11,95,12,0,98,0.373,45.25,77.58,0.95,0.13,788,0.4,351,4.1
+2202,2015,4,2,18,30,-1.5,1.08,0.088,0.64,13,107,16,7,7,-10.5,8,0,7,8,0.376,50.15,88.72,0.95,0.13,789,0.4,180,2.8
+2203,2015,4,2,19,30,-2.2,1.08,0.091,0.64,0,0,0,0,4,-9.7,0,0,0,0,0.379,56.52,100.19,0.95,0.13,789,0.4,11,1.8
+2204,2015,4,2,20,30,-2.6,1.09,0.09,0.64,0,0,0,0,4,-8.9,0,0,0,0,0.382,62.06,110.79,0.94,0.13,790,0.4,17,1.3
+2205,2015,4,2,21,30,-3,1.09,0.084,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.383,65.94,120.32,0.94,0.13,790,0.4,11,1
+2206,2015,4,2,22,30,-3.5,1.07,0.077,0.64,0,0,0,0,7,-8.3,0,0,0,0,0.383,69.26,128.05,0.93,0.13,791,0.4,175,0.8
+2207,2015,4,2,23,30,-4.1,1.04,0.069,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.383,71.32,132.98,0.92,0.13,791,0.4,334,0.9
+2208,2015,4,3,0,30,-4.7,1.02,0.061,0.64,0,0,0,0,4,-9.1,0,0,0,0,0.382,71.06,134.16,0.92,0.13,791,0.3,320,1.1
+2209,2015,4,3,1,30,-5.4,1,0.055,0.64,0,0,0,1,4,-9.6,0,0,1,0,0.38,72.27,131.31,0.91,0.13,792,0.3,318,1.3
+2210,2015,4,3,2,30,-6,0.97,0.052,0.64,0,0,0,0,0,-10.3,0,0,0,0,0.38,71.63,125.06,0.91,0.13,792,0.3,320,1.4
+2211,2015,4,3,3,30,-6.4,0.95,0.051,0.64,0,0,0,0,1,-10.9,0,0,0,0,0.379,70.45,116.46,0.91,0.13,792,0.2,324,1.3
+2212,2015,4,3,4,30,-6.6,0.93,0.053,0.64,0,0,0,0,1,-11.3,0,0,0,0,0.379,69.05,106.4,0.91,0.13,793,0.2,330,1.2
+2213,2015,4,3,5,30,-6,0.91,0.055,0.64,0,0,0,0,1,-11.7,0,0,0,0,0.378,64.32,95.5,0.91,0.13,793,0.2,333,1.1
+2214,2015,4,3,6,30,-3.7,0.91,0.056,0.64,31,481,81,0,0,-11.5,31,481,0,81,0.377,54.84,84.06,0.91,0.13,794,0.2,335,1.4
+2215,2015,4,3,7,30,-1.1,0.9,0.057,0.64,56,799,293,0,1,-14.4,56,799,0,293,0.373,35.73,72.75,0.91,0.13,794,0.2,339,1.6
+2216,2015,4,3,8,30,0.7,0.91,0.059,0.64,71,926,511,0,0,-16.5,71,926,0,511,0.37,26.44,61.67,0.91,0.13,795,0.2,342,1.5
+2217,2015,4,3,9,30,2.3,0.92,0.061,0.64,82,990,700,0,1,-17.8,82,990,0,700,0.367,21.14,51.35,0.91,0.13,795,0.2,340,1.4
+2218,2015,4,3,10,30,3.7,0.93,0.064,0.64,89,1023,842,0,0,-18.6,89,1023,0,842,0.366,17.87,42.6,0.91,0.13,795,0.2,332,1.3
+2219,2015,4,3,11,30,4.9,0.99,0.065,0.64,93,1040,927,0,3,-18.9,489,314,0,740,0.365,15.95,36.7,0.91,0.13,794,0.2,319,1.2
+2220,2015,4,3,12,30,5.9,1.01,0.066,0.64,94,1043,946,0,3,-19,462,414,0,800,0.364,14.74,35.22,0.91,0.13,794,0.2,301,1
+2221,2015,4,3,13,30,6.5,1.01,0.066,0.64,92,1034,899,0,0,-19.1,92,1034,0,899,0.361,13.99,38.68,0.9,0.13,793,0.2,268,0.9
+2222,2015,4,3,14,30,6.7,1.07,0.063,0.64,85,1013,790,0,0,-19.3,85,1013,0,790,0.36,13.67,45.95,0.9,0.13,793,0.2,238,1.2
+2223,2015,4,3,15,30,6.5,1.05,0.064,0.64,79,965,626,0,0,-19.3,79,965,0,626,0.363,13.76,55.47,0.91,0.13,792,0.2,226,1.7
+2224,2015,4,3,16,30,5.6,1.03,0.067,0.64,69,874,422,0,0,-19.3,69,874,0,422,0.365,14.65,66.16,0.91,0.13,792,0.2,216,2
+2225,2015,4,3,17,30,3.2,1.01,0.07,0.64,51,684,200,0,0,-18.4,51,684,0,200,0.365,18.79,77.38,0.91,0.14,792,0.2,200,1.5
+2226,2015,4,3,18,30,0.4,1,0.069,0.64,14,159,18,0,1,-11.9,14,159,0,18,0.365,39.36,88.54,0.91,0.14,792,0.2,179,1
+2227,2015,4,3,19,30,-1.1,1.02,0.061,0.64,0,0,0,0,1,-12.9,0,0,0,0,0.366,40.26,99.98,0.91,0.14,792,0.2,164,1.2
+2228,2015,4,3,20,30,-2,1.03,0.055,0.64,0,0,0,0,1,-13.4,0,0,0,0,0.365,41.39,110.56,0.9,0.14,792,0.2,158,1.3
+2229,2015,4,3,21,30,-2.7,1.01,0.054,0.64,0,0,0,0,1,-14.1,0,0,0,0,0.363,41.27,120.05,0.9,0.14,792,0.2,163,1.3
+2230,2015,4,3,22,30,-3.2,0.99,0.054,0.64,0,0,0,0,0,-14.6,0,0,0,0,0.359,40.98,127.73,0.91,0.14,792,0.2,172,1.2
+2231,2015,4,3,23,30,-3.8,0.98,0.055,0.64,0,0,0,0,0,-15.1,0,0,0,0,0.355,41.18,132.62,0.91,0.14,792,0.2,180,1.3
+2232,2015,4,4,0,30,-4.5,0.98,0.055,0.64,0,0,0,0,0,-15.1,0,0,0,0,0.352,43.26,133.78,0.91,0.14,792,0.2,184,1.3
+2233,2015,4,4,1,30,-5.2,0.98,0.054,0.64,0,0,0,1,1,-14.8,0,0,1,0,0.35,46.88,130.92,0.91,0.14,791,0.2,187,1.4
+2234,2015,4,4,2,30,-5.6,0.98,0.054,0.64,0,0,0,0,0,-14.5,0,0,0,0,0.348,49.57,124.7,0.91,0.14,791,0.2,188,1.5
+2235,2015,4,4,3,30,-5.8,0.96,0.057,0.64,0,0,0,0,1,-14.3,0,0,0,0,0.347,51.22,116.12,0.91,0.14,791,0.2,189,1.5
+2236,2015,4,4,4,30,-5.8,0.96,0.058,0.64,0,0,0,0,0,-14.1,0,0,0,0,0.347,51.88,106.08,0.91,0.14,790,0.2,189,1.5
+2237,2015,4,4,5,30,-4.8,0.94,0.058,0.64,0,0,0,0,0,-13.9,0,0,0,0,0.346,48.82,95.19,0.91,0.14,790,0.2,189,1.6
+2238,2015,4,4,6,30,-1.8,0.93,0.061,0.64,33,485,85,0,0,-13,33,485,0,85,0.345,42.01,83.76,0.91,0.14,790,0.2,195,2.3
+2239,2015,4,4,7,30,2.1,0.95,0.063,0.64,59,796,299,0,0,-14.5,59,796,0,299,0.345,28.13,72.45,0.91,0.14,790,0.2,206,3.7
+2240,2015,4,4,8,30,5.3,0.95,0.064,0.64,74,923,517,0,0,-16.7,74,923,0,517,0.344,18.62,61.35,0.91,0.14,790,0.2,216,4.5
+2241,2015,4,4,9,30,7.6,0.94,0.065,0.64,84,988,705,0,0,-17,84,988,0,705,0.343,15.57,51.02,0.91,0.14,789,0.2,219,4.9
+2242,2015,4,4,10,30,9.5,0.94,0.065,0.64,91,1024,849,0,0,-16.7,91,1024,0,849,0.341,14.09,42.23,0.92,0.14,788,0.2,222,5.2
+2243,2015,4,4,11,30,11,0.98,0.062,0.64,92,1045,934,0,0,-16.5,92,1045,0,934,0.338,12.9,36.31,0.92,0.14,787,0.2,226,5.4
+2244,2015,4,4,12,30,12.1,0.96,0.063,0.64,93,1048,953,0,0,-16.5,93,1048,0,953,0.336,12,34.85,0.92,0.14,787,0.2,228,5.7
+2245,2015,4,4,13,30,12.8,0.96,0.062,0.64,91,1040,906,0,0,-16.6,91,1040,0,906,0.334,11.4,38.36,0.92,0.14,786,0.2,231,5.9
+2246,2015,4,4,14,30,13,1.01,0.056,0.64,83,1009,788,0,0,-16.6,83,1009,0,788,0.334,11.21,45.68,0.92,0.14,785,0.3,232,5.9
+2247,2015,4,4,15,30,12.7,1.02,0.052,0.64,74,969,626,0,0,-16.5,74,969,0,626,0.335,11.56,55.24,0.92,0.14,784,0.3,230,5.8
+2248,2015,4,4,16,30,11.5,1.02,0.051,0.64,63,888,425,0,0,-16,63,888,0,425,0.336,13.04,65.96,0.92,0.14,784,0.3,227,4.7
+2249,2015,4,4,17,30,7.7,1.02,0.051,0.64,47,716,205,0,0,-13.4,47,716,0,205,0.336,20.84,77.2,0.92,0.14,784,0.3,217,2.7
+2250,2015,4,4,18,30,3.7,1,0.052,0.64,14,208,20,0,0,-8.8,14,208,0,20,0.336,39.55,88.37,0.92,0.14,783,0.3,203,1.7
+2251,2015,4,4,19,30,2.3,0.98,0.054,0.64,0,0,0,0,0,-9.3,0,0,0,0,0.337,42.16,99.78,0.92,0.14,783,0.3,195,1.7
+2252,2015,4,4,20,30,1.6,0.96,0.057,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.337,43.14,110.33,0.92,0.14,783,0.4,191,1.7
+2253,2015,4,4,21,30,1,0.95,0.06,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.337,44,119.79,0.93,0.14,783,0.4,188,1.7
+2254,2015,4,4,22,30,0.5,0.94,0.061,0.64,0,0,0,0,0,-10.1,0,0,0,0,0.337,44.76,127.42,0.93,0.14,783,0.4,183,1.7
+2255,2015,4,4,23,30,0,0.93,0.063,0.64,0,0,0,0,1,-10.4,0,0,0,0,0.338,45.65,132.26,0.93,0.14,782,0.4,179,1.7
+2256,2015,4,5,0,30,-0.4,0.95,0.067,0.64,0,0,0,0,0,-10.4,0,0,0,0,0.338,46.73,133.39,0.94,0.14,782,0.4,178,1.7
+2257,2015,4,5,1,30,-0.7,0.97,0.072,0.64,0,0,0,1,4,-10.2,0,0,1,0,0.339,48.6,130.54,0.94,0.14,781,0.4,179,1.7
+2258,2015,4,5,2,30,-0.9,0.97,0.075,0.64,0,0,0,0,1,-9.7,0,0,0,0,0.338,51.17,124.33,0.94,0.14,781,0.4,185,1.8
+2259,2015,4,5,3,30,-1.2,0.97,0.077,0.64,0,0,0,0,0,-9.2,0,0,0,0,0.337,54.66,115.78,0.94,0.14,780,0.4,192,1.9
+2260,2015,4,5,4,30,-1.5,0.96,0.078,0.64,0,0,0,0,1,-8.7,0,0,0,0,0.336,58.12,105.76,0.94,0.14,780,0.3,197,2
+2261,2015,4,5,5,30,-0.9,0.94,0.081,0.64,0,0,0,0,0,-8.3,0,0,0,0,0.334,57.17,94.88,0.93,0.14,780,0.3,200,2.3
+2262,2015,4,5,6,30,1.7,0.93,0.084,0.64,37,430,86,7,4,-7.7,49,1,7,49,0.333,49.83,83.47,0.93,0.14,781,0.3,203,3.3
+2263,2015,4,5,7,30,5.7,0.93,0.085,0.64,67,749,296,0,7,-8.2,161,248,0,237,0.334,36.22,72.14,0.93,0.14,781,0.3,208,4.7
+2264,2015,4,5,8,30,9.9,0.92,0.081,0.64,81,878,506,0,4,-9.5,264,328,0,423,0.337,24.41,61.04,0.93,0.14,781,0.4,214,6.1
+2265,2015,4,5,9,30,13.1,0.91,0.073,0.64,87,956,693,0,4,-12.2,318,472,0,616,0.34,15.98,50.68,0.92,0.14,781,0.4,217,7.4
+2266,2015,4,5,10,30,14.8,0.89,0.065,0.64,90,1001,835,0,0,-12.8,90,1001,0,835,0.343,13.68,41.87,0.92,0.14,780,0.4,216,8.2
+2267,2015,4,5,11,30,15.8,0.87,0.057,0.64,89,1027,920,0,0,-12.7,89,1027,0,920,0.345,12.95,35.93,0.92,0.14,780,0.4,216,8.8
+2268,2015,4,5,12,30,16.5,0.87,0.057,0.64,89,1030,939,0,0,-12.7,89,1030,0,939,0.345,12.34,34.47,0.92,0.14,779,0.4,216,9.4
+2269,2015,4,5,13,30,16.7,0.91,0.06,0.64,89,1019,891,0,0,-12.7,89,1019,0,891,0.343,12.2,38.04,0.92,0.14,778,0.4,216,9.6
+2270,2015,4,5,14,30,16.6,0.99,0.061,0.64,85,994,783,0,0,-12.1,85,994,0,783,0.339,12.87,45.41,0.92,0.14,778,0.4,215,9.4
+2271,2015,4,5,15,30,16,1.02,0.063,0.64,78,947,621,0,1,-11.5,78,947,0,621,0.336,14.03,55.02,0.92,0.14,777,0.4,213,8.9
+2272,2015,4,5,16,30,14.9,1.01,0.067,0.64,69,846,416,0,7,-11.4,154,554,0,381,0.335,15.13,65.76,0.93,0.14,777,0.5,210,7.9
+2273,2015,4,5,17,30,12.2,0.98,0.073,0.64,52,654,199,0,8,-11.2,128,119,0,155,0.336,18.32,77.01,0.93,0.14,777,0.5,204,6
+2274,2015,4,5,18,30,9.1,0.94,0.075,0.64,15,153,20,7,6,-9.9,11,0,7,11,0.338,25.11,88.19,0.93,0.14,777,0.5,199,4.6
+2275,2015,4,5,19,30,7.7,0.9,0.08,0.64,0,0,0,0,6,-9.3,0,0,0,0,0.341,28.89,99.57,0.93,0.14,777,0.4,198,4.5
+2276,2015,4,5,20,30,6.4,0.88,0.077,0.64,0,0,0,0,7,-9.1,0,0,0,0,0.343,32.04,110.1,0.93,0.14,777,0.4,203,4.1
+2277,2015,4,5,21,30,4.5,0.86,0.067,0.64,0,0,0,0,4,-8.4,0,0,0,0,0.346,38.65,119.52,0.92,0.14,778,0.4,210,3.2
+2278,2015,4,5,22,30,2.9,0.84,0.06,0.64,0,0,0,0,3,-8,0,0,0,0,0.349,44.44,127.11,0.92,0.14,778,0.4,216,2.7
+2279,2015,4,5,23,30,1.6,0.83,0.056,0.64,0,0,0,0,1,-8,0,0,0,0,0.35,48.87,131.91,0.91,0.14,778,0.3,218,2.4
+2280,2015,4,6,0,30,0.5,0.8,0.055,0.64,0,0,0,0,0,-8.3,0,0,0,0,0.351,51.8,133.01,0.92,0.14,778,0.3,216,2.3
+2281,2015,4,6,1,30,-0.5,0.75,0.056,0.64,0,0,0,1,1,-8.5,0,0,1,0,0.352,54.54,130.15,0.92,0.14,779,0.3,212,2.3
+2282,2015,4,6,2,30,-1.2,0.71,0.057,0.64,0,0,0,0,0,-8.8,0,0,0,0,0.354,56.36,123.97,0.92,0.14,779,0.3,209,2.4
+2283,2015,4,6,3,30,-1.7,0.68,0.058,0.64,0,0,0,0,1,-9,0,0,0,0,0.354,57.7,115.44,0.92,0.14,779,0.3,206,2.5
+2284,2015,4,6,4,30,-2,0.69,0.061,0.64,0,0,0,0,0,-9,0,0,0,0,0.354,58.62,105.44,0.92,0.14,779,0.3,205,2.7
+2285,2015,4,6,5,30,-1.2,0.71,0.065,0.64,0,0,0,0,1,-9,0,0,0,0,0.353,55.63,94.58,0.92,0.14,780,0.3,207,3.1
+2286,2015,4,6,6,30,1.8,0.72,0.068,0.64,36,468,92,0,0,-8.5,36,468,0,92,0.354,46.32,83.17,0.92,0.14,780,0.3,209,4.1
+2287,2015,4,6,7,30,5.9,0.71,0.069,0.64,62,773,303,0,0,-8.4,62,773,0,303,0.354,35.14,71.84,0.91,0.14,780,0.3,209,5.1
+2288,2015,4,6,8,30,9.8,0.69,0.068,0.64,77,893,513,0,0,-8.9,77,893,0,513,0.353,25.78,60.73,0.92,0.14,781,0.4,211,6.5
+2289,2015,4,6,9,30,12.5,0.69,0.067,0.64,86,961,699,0,0,-10.1,86,961,0,699,0.351,19.65,50.35,0.92,0.14,780,0.4,214,7.9
+2290,2015,4,6,10,30,14.1,0.7,0.066,0.64,91,998,839,0,0,-10.4,91,998,0,839,0.348,17.25,41.51,0.91,0.14,780,0.4,214,8.8
+2291,2015,4,6,11,30,15.2,0.69,0.06,0.64,91,1022,923,0,0,-10.6,91,1022,0,923,0.344,15.87,35.55,0.91,0.14,780,0.4,214,9.3
+2292,2015,4,6,12,30,15.8,0.72,0.06,0.64,92,1026,942,0,0,-11,92,1026,0,942,0.339,14.73,34.1,0.91,0.14,780,0.4,216,9.7
+2293,2015,4,6,13,30,16,0.75,0.061,0.64,90,1016,894,0,0,-11.6,90,1016,0,894,0.336,13.93,37.72,0.91,0.14,779,0.4,216,9.7
+2294,2015,4,6,14,30,15.9,0.74,0.057,0.64,84,996,787,0,0,-12,84,996,0,787,0.334,13.53,45.15,0.91,0.14,779,0.4,216,9.4
+2295,2015,4,6,15,30,15.4,0.79,0.061,0.64,79,946,625,0,0,-12.3,79,946,0,625,0.335,13.67,54.79,0.92,0.14,779,0.4,215,8.8
+2296,2015,4,6,16,30,14.3,0.85,0.071,0.64,72,847,422,0,0,-12.6,72,847,0,422,0.337,14.38,65.56,0.93,0.14,779,0.4,213,7.7
+2297,2015,4,6,17,30,11.7,0.9,0.077,0.64,54,647,201,0,4,-12.2,120,10,0,122,0.34,17.59,76.82,0.93,0.14,779,0.5,211,5.6
+2298,2015,4,6,18,30,8.5,0.93,0.079,0.64,16,157,22,7,4,-9.8,12,0,7,12,0.345,26.36,88.01,0.93,0.14,779,0.5,211,3.3
+2299,2015,4,6,19,30,6.5,0.93,0.08,0.64,0,0,0,0,4,-7.2,0,0,0,0,0.35,37.03,99.36,0.94,0.14,780,0.5,238,1.9
+2300,2015,4,6,20,30,5.2,0.94,0.083,0.64,0,0,0,0,7,-5.1,0,0,0,0,0.353,47.34,109.87,0.93,0.14,781,0.6,296,1.7
+2301,2015,4,6,21,30,4.2,0.93,0.086,0.64,0,0,0,0,4,-4.1,0,0,0,0,0.355,54.98,119.25,0.93,0.14,782,0.6,341,2.6
+2302,2015,4,6,22,30,2.5,0.88,0.081,0.64,0,0,0,0,4,-2.7,0,0,0,0,0.354,68.53,126.8,0.93,0.14,782,0.7,180,2.4
+2303,2015,4,6,23,30,0.8,0.83,0.08,0.64,0,0,0,0,4,-2.1,0,0,0,0,0.354,81.13,131.55,0.93,0.14,783,0.7,13,1.6
+2304,2015,4,7,0,30,0,0.81,0.095,0.64,0,0,0,0,4,-1.9,0,0,0,0,0.353,86.87,132.63,0.93,0.14,783,0.7,26,1.3
+2305,2015,4,7,1,30,-0.1,0.89,0.112,0.64,0,0,0,1,4,-1.9,0,0,1,0,0.353,87.8,129.77,0.94,0.14,783,0.7,37,1.1
+2306,2015,4,7,2,30,0.2,0.95,0.117,0.64,0,0,0,0,7,-1.9,0,0,0,0,0.355,86.05,123.61,0.94,0.14,783,0.8,48,1
+2307,2015,4,7,3,30,0.3,0.95,0.124,0.64,0,0,0,0,7,-1.9,0,0,0,0,0.356,85.15,115.1,0.94,0.14,783,0.8,59,0.9
+2308,2015,4,7,4,30,0.1,0.89,0.131,0.64,0,0,0,0,4,-2.1,0,0,0,0,0.355,85.08,105.12,0.94,0.14,783,0.7,74,0.9
+2309,2015,4,7,5,30,0.7,0.82,0.13,0.64,0,0,0,0,4,-2.7,0,0,0,0,0.353,78.09,94.27,0.94,0.14,783,0.7,107,0.9
+2310,2015,4,7,6,30,3.4,0.77,0.115,0.64,43,358,87,7,4,-3,53,1,7,53,0.349,63.01,82.88,0.93,0.14,783,0.6,153,1.9
+2311,2015,4,7,7,30,7,0.74,0.101,0.64,73,704,296,0,0,-3.8,73,704,0,296,0.347,46.13,71.55,0.93,0.14,783,0.5,187,4.2
+2312,2015,4,7,8,30,9.4,0.73,0.094,0.64,88,851,508,0,0,-6.5,88,851,0,508,0.347,31.95,60.42,0.92,0.14,783,0.5,203,6.3
+2313,2015,4,7,9,30,10.7,0.71,0.089,0.64,97,928,693,0,0,-9.3,97,928,0,693,0.347,23.54,50.02,0.92,0.14,783,0.5,205,7.3
+2314,2015,4,7,10,30,11.7,0.69,0.088,0.64,104,975,838,0,0,-10.8,104,975,0,838,0.347,19.6,41.15,0.92,0.14,783,0.4,207,7.9
+2315,2015,4,7,11,30,12.5,0.64,0.083,0.64,105,998,921,0,0,-11.3,105,998,0,921,0.346,17.83,35.16,0.92,0.14,783,0.4,209,8.2
+2316,2015,4,7,12,30,13,0.65,0.083,0.64,105,995,932,0,0,-11.2,105,995,0,932,0.345,17.44,33.73,0.92,0.14,782,0.5,212,8.3
+2317,2015,4,7,13,30,13.2,0.67,0.083,0.64,103,985,885,0,0,-10.8,103,985,0,885,0.345,17.8,37.4,0.92,0.14,782,0.5,214,8.2
+2318,2015,4,7,14,30,13.2,0.64,0.082,0.64,98,959,777,0,2,-10.3,410,95,0,478,0.346,18.42,44.89,0.92,0.14,782,0.5,216,7.9
+2319,2015,4,7,15,30,12.8,0.64,0.086,0.64,91,904,615,0,0,-10.1,91,904,0,615,0.347,19.36,54.57,0.92,0.14,781,0.5,216,7.4
+2320,2015,4,7,16,30,11.9,0.66,0.089,0.64,79,807,415,0,0,-10,79,807,0,415,0.348,20.68,65.37,0.92,0.14,781,0.5,214,6.4
+2321,2015,4,7,17,30,9.2,0.68,0.086,0.64,57,623,201,0,0,-9.8,57,623,0,201,0.349,25.15,76.63,0.92,0.14,781,0.5,210,4.2
+2322,2015,4,7,18,30,5.7,0.66,0.087,0.64,17,133,22,0,0,-7.4,17,133,0,22,0.351,38.4,87.83,0.92,0.14,781,0.5,203,2.2
+2323,2015,4,7,19,30,3.9,0.62,0.088,0.64,0,0,0,0,0,-6.5,0,0,0,0,0.352,46.65,99.16,0.92,0.14,780,0.5,192,1.7
+2324,2015,4,7,20,30,3.2,0.59,0.085,0.64,0,0,0,0,0,-6.5,0,0,0,0,0.353,48.98,109.64,0.92,0.14,780,0.5,184,1.7
+2325,2015,4,7,21,30,2.3,0.58,0.084,0.64,0,0,0,0,0,-6.9,0,0,0,0,0.354,50.57,118.99,0.92,0.14,779,0.5,185,1.8
+2326,2015,4,7,22,30,1.4,0.61,0.083,0.64,0,0,0,0,1,-7.2,0,0,0,0,0.354,52.61,126.49,0.92,0.14,779,0.5,188,2
+2327,2015,4,7,23,30,0.5,0.64,0.084,0.64,0,0,0,0,0,-7.5,0,0,0,0,0.354,54.85,131.2,0.92,0.14,779,0.5,188,2.2
+2328,2015,4,8,0,30,-0.2,0.68,0.083,0.64,0,0,0,0,0,-7.8,0,0,0,0,0.354,56.7,132.25,0.92,0.14,779,0.5,187,2.5
+2329,2015,4,8,1,30,-0.9,0.71,0.084,0.64,0,0,0,1,1,-7.9,0,0,1,0,0.355,59.1,129.4,0.92,0.14,779,0.5,187,2.6
+2330,2015,4,8,2,30,-1.4,0.74,0.086,0.64,0,0,0,0,0,-8,0,0,0,0,0.356,61.02,123.25,0.92,0.14,779,0.4,190,2.4
+2331,2015,4,8,3,30,-1.9,0.75,0.09,0.64,0,0,0,0,1,-8,0,0,0,0,0.357,63.12,114.77,0.92,0.14,778,0.4,194,2.3
+2332,2015,4,8,4,30,-2.2,0.76,0.093,0.64,0,0,0,0,0,-8,0,0,0,0,0.358,64.32,104.81,0.92,0.14,778,0.4,196,2.2
+2333,2015,4,8,5,30,-1.3,0.78,0.093,0.64,0,0,0,0,0,-8.2,0,0,0,0,0.36,59.54,93.97,0.92,0.14,778,0.4,196,2.3
+2334,2015,4,8,6,30,2.1,0.79,0.092,0.64,41,431,97,7,4,-7.6,73,37,7,78,0.361,48.8,82.59,0.93,0.14,778,0.4,198,3.4
+2335,2015,4,8,7,30,5.9,0.79,0.088,0.64,69,740,307,0,4,-8.3,195,58,0,214,0.362,35.36,71.25,0.93,0.14,778,0.4,204,5.7
+2336,2015,4,8,8,30,7.9,0.81,0.086,0.64,84,866,516,0,4,-10.2,305,180,0,395,0.364,26.44,60.11,0.93,0.14,778,0.5,207,7.4
+2337,2015,4,8,9,30,8.3,0.85,0.089,0.64,96,932,699,0,7,-9.7,319,146,0,413,0.366,26.77,49.69,0.94,0.14,777,0.5,207,8
+2338,2015,4,8,10,30,8.2,0.88,0.081,0.64,99,978,840,0,7,-9,73,0,0,73,0.367,28.51,40.79,0.94,0.14,777,0.5,208,8.1
+2339,2015,4,8,11,30,8,0.85,0.058,0.64,90,1018,926,0,7,-8.9,251,3,0,254,0.367,29.25,34.78,0.94,0.14,777,0.5,213,7.9
+2340,2015,4,8,12,30,7.4,0.9,0.045,0.64,83,1028,941,0,7,-8.6,416,298,0,666,0.366,31.09,33.37,0.94,0.14,777,0.6,220,7.3
+2341,2015,4,8,13,30,6.5,0.97,0.039,0.64,78,1025,895,0,4,-7.9,444,356,0,728,0.367,34.84,37.08,0.95,0.14,778,0.6,230,6.6
+2342,2015,4,8,14,30,5.5,1.06,0.041,0.64,75,1001,787,0,1,-7,75,1001,0,787,0.369,40.16,44.63,0.95,0.14,778,0.6,241,5.9
+2343,2015,4,8,15,30,4.4,1.12,0.046,0.64,71,946,622,0,4,-6.3,182,0,0,183,0.372,45.67,54.35,0.95,0.14,779,0.7,255,5.1
+2344,2015,4,8,16,30,3.1,1.13,0.055,0.64,65,854,423,0,7,-5.9,41,0,0,41,0.375,51.67,65.17,0.96,0.14,780,0.7,273,4.3
+2345,2015,4,8,17,30,1.8,1.13,0.068,0.64,52,663,207,0,6,-5.4,33,0,0,33,0.377,58.93,76.44,0.96,0.14,781,0.7,289,3.4
+2346,2015,4,8,18,30,0.6,1.13,0.08,0.64,18,187,25,7,7,-4.6,14,0,7,14,0.379,68.18,87.64,0.96,0.14,782,0.7,294,2.4
+2347,2015,4,8,19,30,-0.1,1.15,0.089,0.64,0,0,0,0,4,-3.7,0,0,0,0,0.381,76.47,98.95,0.95,0.14,783,0.7,285,1.8
+2348,2015,4,8,20,30,-0.7,1.17,0.1,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.381,79.64,109.41,0.95,0.14,783,0.7,270,1.6
+2349,2015,4,8,21,30,-1.1,1.21,0.117,0.64,0,0,0,0,7,-4,0,0,0,0,0.38,80.69,118.72,0.95,0.14,783,0.7,268,1.6
+2350,2015,4,8,22,30,-1.4,1.23,0.138,0.64,0,0,0,0,4,-4.2,0,0,0,0,0.379,81.52,126.18,0.95,0.14,784,0.7,282,1.8
+2351,2015,4,8,23,30,-1.6,1.26,0.143,0.64,0,0,0,0,4,-4.1,0,0,0,0,0.378,82.8,130.85,0.94,0.14,784,0.7,300,2
+2352,2015,4,9,0,30,-2,1.28,0.135,0.64,0,0,0,0,4,-4.1,0,0,0,0,0.376,85.77,131.87,0.94,0.14,784,0.7,319,2.3
+2353,2015,4,9,1,30,-2.7,1.25,0.12,0.64,0,0,0,1,4,-4,0,0,1,0,0.372,90.77,129.02,0.94,0.14,785,0.7,336,2.3
+2354,2015,4,9,2,30,-3.7,1.2,0.101,0.64,0,0,0,0,1,-4.1,0,0,0,0,0.368,97.01,122.89,0.94,0.14,786,0.7,349,2
+2355,2015,4,9,3,30,-4.6,1.15,0.087,0.64,0,0,0,0,1,-4.6,0,0,0,0,0.365,100,114.43,0.94,0.14,786,0.6,178,1.9
+2356,2015,4,9,4,30,-5.3,1.09,0.078,0.64,0,0,0,0,4,-5.3,0,0,0,0,0.363,100,104.49,0.94,0.14,787,0.6,4,1.7
+2357,2015,4,9,5,30,-4.9,1.04,0.071,0.64,0,0,0,0,1,-5.1,0,0,0,0,0.362,98.58,93.67,0.93,0.14,788,0.6,12,2.2
+2358,2015,4,9,6,30,-2.5,1,0.067,0.64,37,493,103,0,0,-4.9,37,493,0,103,0.359,83.54,82.3,0.93,0.14,788,0.6,25,3.3
+2359,2015,4,9,7,30,0.1,0.96,0.064,0.64,60,772,312,0,1,-4.4,60,772,0,312,0.356,71.99,70.96,0.92,0.14,789,0.6,38,3.8
+2360,2015,4,9,8,30,2.2,0.93,0.063,0.64,74,892,523,0,0,-4.5,74,892,0,523,0.353,61.29,59.81,0.92,0.14,789,0.6,43,3.6
+2361,2015,4,9,9,30,4,0.91,0.062,0.64,83,963,710,0,0,-4.7,83,963,0,710,0.353,52.97,49.37,0.92,0.14,790,0.5,45,3.3
+2362,2015,4,9,10,30,5.6,0.9,0.061,0.64,88,998,848,0,3,-5.1,444,303,0,675,0.353,46.04,40.44,0.92,0.14,790,0.5,46,2.9
+2363,2015,4,9,11,30,7,0.77,0.116,0.64,122,962,915,0,4,-5.6,327,1,0,328,0.355,40.39,34.41,0.93,0.14,789,0.5,47,2.6
+2364,2015,4,9,12,30,8.1,0.8,0.108,0.64,118,973,935,0,3,-6,522,228,0,713,0.355,36.12,33,0.93,0.14,789,0.5,49,2.2
+2365,2015,4,9,13,30,8.8,0.84,0.102,0.64,113,969,889,0,3,-6.5,468,122,0,566,0.355,33.24,36.77,0.93,0.14,788,0.5,51,1.8
+2366,2015,4,9,14,30,9.1,0.72,0.131,0.64,122,909,773,0,4,-6.9,446,221,0,603,0.354,31.55,44.37,0.93,0.14,788,0.5,55,1.3
+2367,2015,4,9,15,30,9,0.67,0.134,0.64,114,848,611,0,3,-7.5,35,0,0,35,0.354,30.45,54.14,0.93,0.14,788,0.5,67,0.9
+2368,2015,4,9,16,30,8.3,0.67,0.134,0.64,97,746,413,0,3,-8,263,100,0,305,0.354,30.63,64.98,0.93,0.14,788,0.5,85,0.7
+2369,2015,4,9,17,30,6.1,0.67,0.134,0.64,71,544,200,0,1,-8,71,544,0,200,0.354,35.66,76.26,0.93,0.14,788,0.5,90,0.8
+2370,2015,4,9,18,30,3.3,0.65,0.134,0.64,20,91,24,0,1,-3.8,20,91,0,24,0.354,59.51,87.46,0.93,0.14,788,0.5,87,1
+2371,2015,4,9,19,30,1.5,0.63,0.132,0.64,0,0,0,0,3,-5.2,0,0,0,0,0.354,61.26,98.75,0.93,0.14,789,0.5,88,1.3
+2372,2015,4,9,20,30,0.5,0.63,0.13,0.64,0,0,0,0,1,-5.9,0,0,0,0,0.355,62.3,109.18,0.93,0.14,789,0.5,91,1.4
+2373,2015,4,9,21,30,-0.3,0.66,0.13,0.64,0,0,0,0,1,-6.6,0,0,0,0,0.356,62.69,118.45,0.93,0.14,789,0.5,96,1.4
+2374,2015,4,9,22,30,-0.9,0.7,0.13,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.356,62.64,125.87,0.93,0.14,789,0.5,102,1.5
+2375,2015,4,9,23,30,-1.3,0.73,0.127,0.64,0,0,0,0,0,-7.5,0,0,0,0,0.357,62.52,130.5,0.93,0.14,789,0.5,108,1.4
+2376,2015,4,10,0,30,-1.4,0.77,0.124,0.64,0,0,0,0,4,-7.8,0,0,0,0,0.358,61.89,131.5,0.94,0.14,789,0.5,112,1.4
+2377,2015,4,10,1,30,-1.3,0.81,0.12,0.64,0,0,0,0,4,-7.8,0,0,0,0,0.358,61.31,128.65,0.94,0.14,788,0.5,115,1.3
+2378,2015,4,10,2,30,-1.2,0.88,0.117,0.64,0,0,0,0,4,-7.7,0,0,0,0,0.359,61.33,122.53,0.94,0.14,788,0.5,118,1.2
+2379,2015,4,10,3,30,-1,0.95,0.115,0.64,0,0,0,0,4,-7.5,0,0,0,0,0.36,61.33,114.1,0.94,0.14,788,0.5,120,1
+2380,2015,4,10,4,30,-0.9,0.99,0.112,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.362,61.38,104.18,0.94,0.14,788,0.5,125,0.9
+2381,2015,4,10,5,30,-0.3,1.01,0.107,0.64,0,0,0,0,4,-7.5,0,0,0,0,0.364,58.39,93.37,0.94,0.14,788,0.5,132,0.8
+2382,2015,4,10,6,30,1.9,1.02,0.1,0.64,43,444,105,0,0,-6.1,43,444,0,105,0.367,55.26,82.01,0.93,0.14,788,0.5,148,0.8
+2383,2015,4,10,7,30,5.3,1.03,0.096,0.64,71,733,314,0,4,-6.9,186,218,0,258,0.369,41.12,70.67,0.93,0.14,788,0.5,188,1.6
+2384,2015,4,10,8,30,8.4,1.04,0.097,0.64,89,860,525,0,0,-8.3,89,860,0,525,0.37,29.7,59.51,0.94,0.14,788,0.5,222,2.7
+2385,2015,4,10,9,30,10.4,1.05,0.099,0.64,100,919,702,0,0,-9.4,100,919,0,702,0.37,23.92,49.05,0.94,0.14,788,0.6,231,3.2
+2386,2015,4,10,10,30,11.6,1.05,0.099,0.64,107,957,839,0,0,-9.5,107,957,0,839,0.369,21.87,40.09,0.94,0.14,788,0.6,236,3.3
+2387,2015,4,10,11,30,12.4,1.25,0.085,0.64,103,990,923,0,0,-9.4,103,990,0,923,0.366,20.98,34.03,0.94,0.14,787,0.6,240,3.3
+2388,2015,4,10,12,30,13,1.2,0.088,0.64,105,990,939,0,4,-9.2,516,224,0,705,0.363,20.43,32.64,0.94,0.14,787,0.6,243,3.3
+2389,2015,4,10,13,30,13.3,1.12,0.088,0.64,103,979,891,0,3,-9.1,490,240,0,683,0.36,20.2,36.46,0.93,0.14,787,0.6,243,3.1
+2390,2015,4,10,14,30,13.5,1.15,0.074,0.64,91,968,786,0,0,-9,91,968,0,786,0.358,20.03,44.12,0.93,0.14,786,0.6,241,2.7
+2391,2015,4,10,15,30,13.3,1.1,0.067,0.64,80,929,627,0,0,-9,80,929,0,627,0.358,20.33,53.92,0.92,0.14,786,0.6,235,2.3
+2392,2015,4,10,16,30,12.4,1.08,0.062,0.64,67,852,430,0,0,-9,67,852,0,430,0.359,21.51,64.78,0.92,0.14,786,0.6,226,1.7
+2393,2015,4,10,17,30,10.1,1.05,0.064,0.64,51,682,215,0,0,-7.8,51,682,0,215,0.36,27.61,76.07,0.92,0.14,786,0.6,203,1
+2394,2015,4,10,18,30,7.7,0.99,0.067,0.64,19,232,30,0,0,-3.8,19,232,0,30,0.361,44.09,87.28,0.92,0.14,786,0.6,173,0.7
+2395,2015,4,10,19,30,6.5,0.97,0.067,0.64,0,0,0,0,1,-6.3,0,0,0,0,0.362,39.57,98.54,0.92,0.14,787,0.6,158,0.9
+2396,2015,4,10,20,30,5.5,1,0.066,0.64,0,0,0,0,0,-6.7,0,0,0,0,0.363,41.23,108.95,0.92,0.14,787,0.6,158,1.2
+2397,2015,4,10,21,30,4.4,1.02,0.068,0.64,0,0,0,0,0,-7.1,0,0,0,0,0.364,42.99,118.19,0.92,0.14,787,0.5,163,1.3
+2398,2015,4,10,22,30,3.2,1,0.071,0.64,0,0,0,0,0,-7.4,0,0,0,0,0.364,45.59,125.56,0.92,0.14,787,0.5,173,1.4
+2399,2015,4,10,23,30,2,0.97,0.073,0.64,0,0,0,0,0,-7.8,0,0,0,0,0.365,48.45,130.15,0.92,0.14,786,0.5,185,1.4
+2400,2015,4,11,0,30,0.9,0.96,0.073,0.64,0,0,0,0,0,-8.1,0,0,0,0,0.365,51.15,131.12,0.92,0.14,786,0.5,196,1.5
+2401,2015,4,11,1,30,0,0.96,0.072,0.64,0,0,0,0,0,-8.4,0,0,0,0,0.366,53.3,128.28,0.92,0.14,786,0.5,199,1.5
+2402,2015,4,11,2,30,-0.6,0.97,0.071,0.64,0,0,0,0,0,-8.7,0,0,0,0,0.366,54.43,122.18,0.92,0.14,786,0.5,197,1.5
+2403,2015,4,11,3,30,-1,0.99,0.07,0.64,0,0,0,0,0,-9,0,0,0,0,0.366,54.8,113.77,0.91,0.14,785,0.5,192,1.5
+2404,2015,4,11,4,30,-1.2,1.01,0.07,0.64,0,0,0,0,0,-9.2,0,0,0,0,0.365,54.73,103.87,0.91,0.14,785,0.5,189,1.4
+2405,2015,4,11,5,30,-0.2,1.04,0.073,0.64,0,0,0,0,0,-9.3,0,0,0,0,0.364,50.39,93.08,0.91,0.14,786,0.5,190,1.3
+2406,2015,4,11,6,30,3.1,1.07,0.076,0.64,39,505,112,0,0,-7.1,39,505,0,112,0.363,47,81.73,0.91,0.14,786,0.5,197,1.6
+2407,2015,4,11,7,30,7.4,1.08,0.077,0.64,64,769,323,0,0,-7.6,64,769,0,323,0.363,33.75,70.38,0.91,0.14,786,0.5,210,2.6
+2408,2015,4,11,8,30,11.2,1.08,0.076,0.64,79,889,534,0,0,-8.8,79,889,0,534,0.362,23.76,59.21,0.91,0.14,786,0.5,221,3.8
+2409,2015,4,11,9,30,13.7,1.08,0.078,0.64,89,950,716,0,0,-10.4,89,950,0,716,0.36,17.74,48.73,0.91,0.14,785,0.5,223,4.5
+2410,2015,4,11,10,30,15.1,1.12,0.082,0.64,97,982,852,0,0,-10.2,97,982,0,852,0.358,16.41,39.74,0.91,0.14,785,0.5,224,4.9
+2411,2015,4,11,11,30,16.2,1.38,0.071,0.64,94,1011,935,0,0,-10,94,1011,0,935,0.357,15.61,33.66,0.91,0.14,784,0.5,225,5.3
+2412,2015,4,11,12,30,16.9,1.4,0.071,0.64,94,1014,952,0,0,-9.9,94,1014,0,952,0.354,15.08,32.28,0.91,0.14,783,0.5,226,5.8
+2413,2015,4,11,13,30,17.3,1.38,0.07,0.64,92,1006,905,0,0,-9.9,92,1006,0,905,0.349,14.63,36.15,0.92,0.14,783,0.5,227,6
+2414,2015,4,11,14,30,17.3,1.46,0.069,0.64,87,984,797,0,0,-10.2,87,984,0,797,0.342,14.34,43.86,0.92,0.14,782,0.5,228,6
+2415,2015,4,11,15,30,16.8,1.36,0.077,0.64,84,930,634,0,3,-10.5,333,304,0,513,0.337,14.46,53.71,0.93,0.14,781,0.5,229,5.9
+2416,2015,4,11,16,30,15.7,1.26,0.079,0.64,74,842,435,0,4,-10.7,241,247,0,347,0.334,15.3,64.59,0.93,0.14,781,0.5,229,5.3
+2417,2015,4,11,17,30,12.6,1.18,0.078,0.64,55,674,219,0,3,-10,141,38,0,150,0.332,19.68,75.89,0.93,0.14,781,0.5,228,3.6
+2418,2015,4,11,18,30,8.9,1.12,0.081,0.64,20,230,32,7,3,-6.3,19,0,7,19,0.33,33.56,87.1,0.93,0.14,781,0.5,229,2.3
+2419,2015,4,11,19,30,7.2,1.08,0.088,0.64,0,0,0,0,4,-5.7,0,0,0,0,0.328,39.48,98.34,0.93,0.14,781,0.6,235,2.1
+2420,2015,4,11,20,30,6.2,1.07,0.095,0.64,0,0,0,0,4,-5.6,0,0,0,0,0.326,42.69,108.72,0.93,0.14,781,0.6,246,2
+2421,2015,4,11,21,30,5.2,1.04,0.098,0.64,0,0,0,0,7,-5.3,0,0,0,0,0.325,46.61,117.92,0.93,0.14,781,0.6,252,1.9
+2422,2015,4,11,22,30,4.1,1,0.095,0.64,0,0,0,0,1,-5.2,0,0,0,0,0.325,50.79,125.25,0.92,0.14,781,0.6,246,1.8
+2423,2015,4,11,23,30,3.2,0.98,0.096,0.64,0,0,0,0,0,-5.1,0,0,0,0,0.325,54.67,129.8,0.92,0.14,781,0.7,237,1.6
+2424,2015,4,12,0,30,2.8,0.99,0.106,0.64,0,0,0,0,4,-4.7,0,0,0,0,0.327,57.66,130.75,0.93,0.14,782,0.7,245,1.4
+2425,2015,4,12,1,30,2.7,1.02,0.122,0.64,0,0,0,0,4,-4.2,0,0,0,0,0.328,60.4,127.91,0.93,0.14,782,0.8,276,1.3
+2426,2015,4,12,2,30,2.5,1.06,0.133,0.64,0,0,0,0,4,-3.6,0,0,0,0,0.33,64.29,121.83,0.94,0.14,782,0.9,297,1.1
+2427,2015,4,12,3,30,2.2,1.11,0.143,0.64,0,0,0,0,7,-2.6,0,0,0,0,0.333,70.64,113.45,0.95,0.14,783,1,298,0.8
+2428,2015,4,12,4,30,2,1.15,0.138,0.64,0,0,0,0,7,-1.8,0,0,0,0,0.336,75.8,103.57,0.95,0.14,784,1,301,0.8
+2429,2015,4,12,5,30,2.3,1.16,0.101,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.34,77.03,92.79,0.93,0.14,785,0.8,310,1.1
+2430,2015,4,12,6,30,3.7,1.08,0.06,0.64,38,551,120,0,4,-1.3,74,247,0,111,0.343,69.83,81.45,0.91,0.14,786,0.5,316,2.7
+2431,2015,4,12,7,30,5.5,0.91,0.041,0.64,54,852,344,0,0,-4.2,54,852,0,344,0.344,49.55,70.1,0.9,0.14,786,0.3,316,4.7
+2432,2015,4,12,8,30,7,0.8,0.037,0.64,64,959,559,0,0,-9,64,959,0,559,0.341,30.98,58.92,0.9,0.14,787,0.3,313,5.2
+2433,2015,4,12,9,30,8.6,0.78,0.037,0.64,72,1027,753,0,0,-13.2,72,1027,0,753,0.337,19.96,48.41,0.9,0.14,787,0.2,313,5.2
+2434,2015,4,12,10,30,10.2,0.79,0.037,0.64,76,1057,893,0,0,-15.6,76,1057,0,893,0.332,14.64,39.4,0.9,0.14,787,0.2,314,5.1
+2435,2015,4,12,11,30,11.7,0.81,0.037,0.64,78,1058,963,0,0,-16.6,78,1058,0,963,0.327,12.24,33.29,0.9,0.14,787,0.3,313,4.9
+2436,2015,4,12,12,30,12.8,0.83,0.035,0.64,78,1063,980,0,0,-16.7,78,1063,0,980,0.323,11.31,31.92,0.9,0.14,787,0.3,312,4.6
+2437,2015,4,12,13,30,13.5,0.85,0.035,0.64,76,1055,931,0,0,-16.4,76,1055,0,931,0.322,11.07,35.84,0.9,0.14,787,0.3,313,4.3
+2438,2015,4,12,14,30,13.8,0.85,0.036,0.64,73,1033,821,0,0,-16,73,1033,0,821,0.321,11.2,43.61,0.9,0.14,787,0.3,317,4.2
+2439,2015,4,12,15,30,13.5,0.88,0.036,0.64,67,993,658,0,0,-15.6,67,993,0,658,0.321,11.83,53.5,0.9,0.14,787,0.3,323,4.1
+2440,2015,4,12,16,30,12.5,0.9,0.037,0.64,58,909,451,0,0,-15,58,909,0,451,0.32,13.22,64.4,0.9,0.14,787,0.4,329,3.8
+2441,2015,4,12,17,30,9.6,0.92,0.04,0.64,46,755,232,0,0,-13.8,46,755,0,232,0.318,17.72,75.7,0.91,0.14,787,0.4,341,2.8
+2442,2015,4,12,18,30,5.8,0.92,0.041,0.64,19,338,37,0,0,-8.1,19,338,0,37,0.315,36.04,86.92,0.91,0.14,788,0.4,354,2
+2443,2015,4,12,19,30,3.5,0.92,0.04,0.64,0,0,0,0,1,-8.3,0,0,0,0,0.314,41.86,98.13,0.91,0.14,789,0.4,180,2.2
+2444,2015,4,12,20,30,2.2,0.92,0.041,0.64,0,0,0,0,1,-9,0,0,0,0,0.313,43.35,108.49,0.91,0.14,790,0.4,5,2.5
+2445,2015,4,12,21,30,0.9,0.92,0.042,0.64,0,0,0,0,0,-9,0,0,0,0,0.313,47.6,117.66,0.91,0.14,790,0.4,12,2.2
+2446,2015,4,12,22,30,-0.3,0.9,0.043,0.64,0,0,0,0,0,-8.4,0,0,0,0,0.313,54.21,124.95,0.91,0.14,791,0.5,23,1.7
+2447,2015,4,12,23,30,-1.2,0.89,0.042,0.64,0,0,0,0,0,-8.2,0,0,0,0,0.312,59.14,129.46,0.91,0.14,791,0.5,37,1.5
+2448,2015,4,13,0,30,-1.8,0.9,0.041,0.64,0,0,0,0,0,-8.2,0,0,0,0,0.311,61.65,130.39,0.91,0.14,791,0.5,50,1.3
+2449,2015,4,13,1,30,-2.1,0.91,0.039,0.64,0,0,0,0,0,-8.4,0,0,0,0,0.311,62.05,127.54,0.91,0.14,791,0.5,59,1.2
+2450,2015,4,13,2,30,-1.7,0.93,0.037,0.64,0,0,0,0,0,-8.7,0,0,0,0,0.31,58.77,121.48,0.91,0.14,792,0.5,62,0.9
+2451,2015,4,13,3,30,-1.4,0.95,0.036,0.64,0,0,0,0,0,-9.2,0,0,0,0,0.31,55.49,113.12,0.9,0.14,792,0.5,46,0.7
+2452,2015,4,13,4,30,-1.4,0.99,0.036,0.64,0,0,0,0,0,-9.5,0,0,0,0,0.31,54.2,103.26,0.9,0.14,792,0.5,189,0.5
+2453,2015,4,13,5,30,-0.7,1.03,0.038,0.64,0,0,0,0,0,-9.6,0,0,0,0,0.31,50.99,92.5,0.89,0.14,792,0.5,340,0.6
+2454,2015,4,13,6,30,2,1.05,0.041,0.64,35,606,128,0,0,-7.7,35,606,0,128,0.311,48.7,81.17,0.9,0.14,793,0.5,320,0.7
+2455,2015,4,13,7,30,6.1,1.04,0.045,0.64,55,830,341,0,0,-9.1,55,830,0,341,0.311,32.6,69.81,0.9,0.14,793,0.5,292,1
+2456,2015,4,13,8,30,9.5,1.01,0.047,0.64,68,930,552,0,0,-9.5,68,930,0,552,0.311,25.12,58.63,0.9,0.14,793,0.5,269,1.2
+2457,2015,4,13,9,30,11.7,0.99,0.049,0.64,76,983,733,0,0,-9.4,76,983,0,733,0.31,21.97,48.1,0.9,0.14,793,0.5,253,1.2
+2458,2015,4,13,10,30,13.5,0.98,0.05,0.64,82,1013,869,0,0,-9.2,82,1013,0,869,0.31,19.85,39.05,0.9,0.14,793,0.5,238,1.6
+2459,2015,4,13,11,30,15,1.13,0.042,0.64,80,1037,950,0,0,-9,80,1037,0,950,0.309,18.21,32.93,0.89,0.14,792,0.5,234,2.2
+2460,2015,4,13,12,30,16.1,1.1,0.044,0.64,81,1038,965,0,0,-9,81,1038,0,965,0.308,17.04,31.56,0.89,0.14,791,0.5,234,2.8
+2461,2015,4,13,13,30,16.7,1.08,0.044,0.64,80,1029,917,0,0,-8.9,80,1029,0,917,0.307,16.42,35.54,0.89,0.14,791,0.5,236,3.2
+2462,2015,4,13,14,30,16.9,1.2,0.039,0.64,73,1013,809,0,0,-9.1,73,1013,0,809,0.307,16.05,43.37,0.89,0.14,790,0.5,239,3.1
+2463,2015,4,13,15,30,16.6,1.21,0.039,0.64,67,973,649,0,0,-9.3,67,973,0,649,0.307,16.05,53.29,0.88,0.14,789,0.5,239,2.8
+2464,2015,4,13,16,30,15.7,1.24,0.039,0.64,58,901,450,0,0,-9.5,58,901,0,450,0.308,16.73,64.21,0.88,0.14,789,0.5,232,2.1
+2465,2015,4,13,17,30,13.4,1.25,0.039,0.64,44,756,233,0,0,-8.7,44,756,0,233,0.308,20.73,75.52,0.88,0.14,789,0.5,196,1.1
+2466,2015,4,13,18,30,10.7,1.25,0.041,0.64,19,357,39,0,0,-3.4,19,357,0,39,0.309,36.98,86.74,0.88,0.14,789,0.5,141,0.7
+2467,2015,4,13,19,30,8.9,1.24,0.043,0.64,0,0,0,0,0,-6,0,0,0,0,0.31,34.43,97.93,0.88,0.14,789,0.5,119,1.2
+2468,2015,4,13,20,30,7.4,1.22,0.044,0.64,0,0,0,0,0,-5.9,0,0,0,0,0.311,38.27,108.26,0.89,0.14,789,0.5,131,1.4
+2469,2015,4,13,21,30,6.2,1.21,0.047,0.64,0,0,0,0,0,-6.1,0,0,0,0,0.312,41.12,117.4,0.88,0.14,789,0.5,153,1.5
+2470,2015,4,13,22,30,5.1,1.23,0.049,0.64,0,0,0,0,0,-6.3,0,0,0,0,0.313,43.7,124.64,0.88,0.14,789,0.5,174,1.6
+2471,2015,4,13,23,30,3.9,1.25,0.051,0.64,0,0,0,0,0,-6.3,0,0,0,0,0.314,47.38,129.11,0.87,0.14,788,0.5,190,1.8
+2472,2015,4,14,0,30,3,1.28,0.053,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.316,50.06,130.02,0.87,0.14,788,0.5,198,2
+2473,2015,4,14,1,30,2.4,1.28,0.054,0.64,0,0,0,0,0,-6.7,0,0,0,0,0.318,51.11,127.18,0.88,0.14,788,0.5,196,2
+2474,2015,4,14,2,30,2,1.24,0.054,0.64,0,0,0,0,0,-7,0,0,0,0,0.32,51.34,121.14,0.88,0.14,788,0.5,190,1.9
+2475,2015,4,14,3,30,1.8,1.22,0.054,0.64,0,0,0,0,0,-7.3,0,0,0,0,0.323,51,112.8,0.89,0.14,787,0.5,187,1.9
+2476,2015,4,14,4,30,1.7,1.24,0.054,0.64,0,0,0,0,0,-7.5,0,0,0,0,0.325,50.34,102.96,0.89,0.14,787,0.5,190,2.2
+2477,2015,4,14,5,30,3.1,1.21,0.052,0.64,0,0,0,0,0,-7.6,0,0,0,0,0.327,45.2,92.21,0.89,0.14,787,0.5,193,2.8
+2478,2015,4,14,6,30,7,1.09,0.051,0.64,37,591,131,0,0,-6.5,37,591,0,131,0.328,37.5,80.89,0.9,0.14,787,0.5,193,3.9
+2479,2015,4,14,7,30,11.5,1.02,0.05,0.64,57,824,345,0,0,-6.3,57,824,0,345,0.33,28.19,69.54,0.9,0.14,786,0.5,195,5.6
+2480,2015,4,14,8,30,14.8,1.03,0.052,0.64,69,918,551,0,0,-6.1,69,918,0,551,0.331,23.13,58.34,0.9,0.14,786,0.6,202,7.4
+2481,2015,4,14,9,30,16.7,1.07,0.053,0.64,78,973,731,0,0,-7.2,78,973,0,731,0.332,18.8,47.79,0.9,0.14,785,0.6,206,8.7
+2482,2015,4,14,10,30,17.8,1.1,0.054,0.64,83,1004,866,0,0,-7.5,83,1004,0,866,0.332,17.15,38.72,0.89,0.14,784,0.6,207,9.6
+2483,2015,4,14,11,30,18.4,1.47,0.042,0.64,78,1039,953,0,0,-7.7,78,1039,0,953,0.332,16.23,32.56,0.88,0.14,783,0.5,207,10.4
+2484,2015,4,14,12,30,18.6,1.34,0.046,0.64,81,1037,968,0,0,-7.9,81,1037,0,968,0.332,15.86,31.21,0.89,0.14,782,0.5,206,11
+2485,2015,4,14,13,30,18.6,1.24,0.05,0.64,82,1018,913,0,0,-7.7,82,1018,0,913,0.332,16.06,35.24,0.89,0.14,781,0.6,204,11.3
+2486,2015,4,14,14,30,18.3,1.49,0.047,0.64,76,1000,806,0,0,-7.5,76,1000,0,806,0.333,16.67,43.12,0.9,0.14,780,0.6,203,11.4
+2487,2015,4,14,15,30,17.7,1.56,0.052,0.64,72,948,641,0,4,-7.4,346,241,0,491,0.334,17.35,53.08,0.91,0.14,779,0.7,201,11.1
+2488,2015,4,14,16,30,16.7,1.56,0.062,0.64,66,854,440,0,7,-7.2,178,443,0,372,0.334,18.74,64.02,0.93,0.14,778,0.8,199,10.3
+2489,2015,4,14,17,30,14.9,1.42,0.086,0.64,61,658,227,0,7,-6.6,134,27,0,141,0.334,22.09,75.34,0.94,0.52,778,0.8,200,8.4
+2490,2015,4,14,18,30,12.4,1.26,0.115,0.64,25,201,37,7,4,-5.4,22,0,7,22,0.334,28.47,86.56,0.95,0.52,778,0.9,212,6.1
+2491,2015,4,14,19,30,9.7,1.16,0.132,0.64,0,0,0,0,7,-3.8,0,0,0,0,0.335,38.42,97.73,0.95,0.52,778,1,252,5
+2492,2015,4,14,20,30,6.4,1.12,0.145,0.64,0,0,0,0,7,-3.1,0,0,0,0,0.337,50.62,108.03,0.95,0.52,779,0.9,298,5.4
+2493,2015,4,14,21,30,3.2,1.04,0.146,0.64,0,0,0,0,7,-4,0,0,0,0,0.339,59.28,117.13,0.95,0.52,780,0.9,319,5.1
+2494,2015,4,14,22,30,1.2,0.86,0.142,0.64,0,0,0,0,6,-5.5,0,0,0,0,0.342,61.04,124.34,0.93,0.52,781,0.7,323,3.6
+2495,2015,4,14,23,30,-0.1,0.67,0.121,0.64,0,0,0,0,7,-6.4,0,0,0,0,0.345,62.49,128.77,0.93,0.52,781,0.6,321,2.1
+2496,2015,4,15,0,30,-1.1,0.59,0.108,0.64,0,0,0,0,7,-6.6,0,0,0,0,0.348,66.09,129.66,0.92,0.52,781,0.6,304,0.9
+2497,2015,4,15,1,30,-1.9,0.6,0.093,0.64,0,0,0,0,4,-6.6,0,0,0,0,0.35,70.44,126.82,0.93,0.52,781,0.5,269,0.5
+2498,2015,4,15,2,30,-2.3,0.68,0.08,0.64,0,0,0,0,7,-6.7,0,0,0,0,0.353,72.02,120.8,0.93,0.52,780,0.5,243,0.7
+2499,2015,4,15,3,30,-2.6,0.79,0.073,0.64,0,0,0,0,7,-6.8,0,0,0,0,0.358,73.09,112.48,0.93,0.52,780,0.5,243,0.8
+2500,2015,4,15,4,30,-2.8,0.89,0.069,0.64,0,0,0,0,4,-6.9,0,0,0,0,0.363,73.29,102.66,0.94,0.52,780,0.5,243,0.9
+2501,2015,4,15,5,30,-2.5,0.97,0.065,0.64,0,0,0,0,7,-6.8,0,0,0,0,0.366,72.44,91.93,0.94,0.52,780,0.5,244,1.2
+2502,2015,4,15,6,30,-1.1,1.02,0.062,0.64,43,571,136,0,7,-6.7,14,0,0,14,0.367,65.62,80.62,0.94,0.52,780,0.5,252,1.6
+2503,2015,4,15,7,30,0.3,1.05,0.062,0.64,68,807,354,0,4,-7.1,153,1,0,153,0.366,57.75,69.26,0.94,0.52,781,0.5,247,2
+2504,2015,4,15,8,30,1,1.07,0.065,0.64,87,910,568,0,4,-8,205,0,0,205,0.364,51.24,58.05,0.95,0.52,781,0.5,229,2.2
+2505,2015,4,15,9,30,1.3,1.08,0.07,0.64,102,962,752,0,7,-9,362,25,0,378,0.363,46.17,47.49,0.95,0.52,782,0.5,218,2.6
+2506,2015,4,15,10,30,1.5,1.08,0.071,0.64,111,994,890,0,7,-9.5,494,175,0,631,0.364,43.89,38.38,0.95,0.52,782,0.5,212,3
+2507,2015,4,15,11,30,1.9,0.98,0.082,0.64,123,1006,975,0,4,-9.8,589,75,0,653,0.366,41.72,32.2,0.95,0.52,783,0.4,210,3.3
+2508,2015,4,15,12,30,2.3,1,0.076,0.64,120,1015,991,0,4,-10.3,635,233,0,835,0.368,38.76,30.86,0.94,0.52,783,0.4,209,3.4
+2509,2015,4,15,13,30,2.5,1.02,0.071,0.64,114,1010,942,0,4,-11.1,594,148,0,716,0.369,36.03,34.94,0.94,0.52,784,0.4,211,3.3
+2510,2015,4,15,14,30,2.3,1.16,0.056,0.64,97,1002,832,0,4,-11.6,444,10,0,451,0.37,34.99,42.88,0.94,0.52,784,0.4,215,2.8
+2511,2015,4,15,15,30,1.7,1.17,0.052,0.64,86,965,668,0,4,-11.8,405,250,0,556,0.371,35.92,52.87,0.94,0.52,785,0.4,214,2.1
+2512,2015,4,15,16,30,0.9,1.17,0.049,0.64,71,895,465,0,4,-12,273,248,0,383,0.372,37.5,63.83,0.93,0.52,785,0.4,194,1.4
+2513,2015,4,15,17,30,-0.2,1.16,0.044,0.64,50,757,244,0,1,-12.3,50,757,0,244,0.374,39.8,75.15,0.92,0.52,786,0.4,153,0.9
+2514,2015,4,15,18,30,-1.9,1.12,0.039,0.64,21,388,45,7,4,-11.2,27,0,7,27,0.375,48.99,86.37,0.92,0.52,786,0.4,101,0.7
+2515,2015,4,15,19,30,-3.5,1.08,0.038,0.64,0,0,0,0,4,-10,0,0,0,0,0.376,60.82,97.52,0.91,0.52,787,0.3,59,0.8
+2516,2015,4,15,20,30,-4.6,1.05,0.038,0.64,0,0,0,0,4,-10.6,0,0,0,0,0.375,62.97,107.8,0.92,0.52,787,0.3,44,1.2
+2517,2015,4,15,21,30,-5.1,1.05,0.04,0.64,0,0,0,0,6,-11.5,0,0,0,0,0.373,60.72,116.87,0.92,0.52,787,0.4,38,1.6
+2518,2015,4,15,22,30,-5,1.07,0.046,0.64,0,0,0,0,6,-11.6,0,0,0,0,0.372,59.65,124.03,0.93,0.52,787,0.4,33,2.2
+2519,2015,4,15,23,30,-4.6,1.12,0.055,0.64,0,0,0,0,7,-10.7,0,0,0,0,0.37,62.32,128.43,0.94,0.52,787,0.5,29,2.9
+2520,2015,4,16,0,30,-4.1,1.2,0.078,0.64,0,0,0,0,4,-9,0,0,0,0,0.369,68.76,129.3,0.96,0.52,787,0.6,25,3.7
+2521,2015,4,16,1,30,-3.8,1.25,0.114,0.64,0,0,0,0,4,-7.2,0,0,0,0,0.366,77.21,126.46,0.96,0.52,786,0.6,22,4.2
+2522,2015,4,16,2,30,-3.7,1.26,0.138,0.64,0,0,0,0,4,-6,0,0,0,0,0.362,83.94,120.46,0.96,0.52,786,0.6,18,4.5
+2523,2015,4,16,3,30,-3.8,1.25,0.145,0.64,0,0,0,0,4,-5.4,0,0,0,0,0.357,88.34,112.17,0.96,0.52,786,0.7,17,4.8
+2524,2015,4,16,4,30,-3.8,1.23,0.138,0.64,0,0,0,0,7,-5.3,0,0,0,0,0.352,89.6,102.37,0.96,0.52,786,0.7,19,5.2
+2525,2015,4,16,5,30,-3.5,1.21,0.15,0.64,0,0,0,0,7,-5.3,0,0,0,0,0.347,87.47,91.65,0.97,0.52,786,0.7,23,6
+2526,2015,4,16,6,30,-2.7,1.2,0.166,0.64,62,400,129,0,6,-5.3,32,0,0,32,0.343,82.01,80.34,0.97,0.52,786,0.7,29,7.1
+2527,2015,4,16,7,30,-1.6,1.15,0.158,0.64,101,660,338,0,6,-5.5,58,0,0,58,0.34,74.86,68.99,0.97,0.52,786,0.8,34,7.7
+2528,2015,4,16,8,30,-0.5,1.11,0.146,0.64,123,801,550,0,7,-5.4,88,0,0,88,0.339,69.69,57.77,0.96,0.52,787,0.8,38,7.9
+2529,2015,4,16,9,30,0.8,1.11,0.145,0.64,140,872,732,0,7,-5,114,0,0,115,0.339,65.31,47.19,0.96,0.52,787,0.8,41,8.2
+2530,2015,4,16,10,30,2.6,1.12,0.146,0.64,152,911,869,0,7,-4.6,272,2,0,274,0.34,59.22,38.05,0.96,0.52,787,0.8,44,8.6
+2531,2015,4,16,11,30,4.5,1.11,0.125,0.64,147,947,951,0,6,-4.3,122,0,0,122,0.341,52.83,31.84,0.95,0.52,787,0.8,46,8.9
+2532,2015,4,16,12,30,5.8,1.12,0.097,0.64,131,974,970,0,4,-4.2,76,0,0,76,0.342,48.49,30.51,0.95,0.52,786,0.8,45,9
+2533,2015,4,16,13,30,6.2,1.12,0.097,0.64,128,963,921,0,7,-4.2,233,1,0,234,0.342,47.33,34.65,0.95,0.52,786,0.8,44,8.9
+2534,2015,4,16,14,30,5.9,1.14,0.111,0.64,128,924,808,0,4,-4,378,2,0,380,0.342,49.19,42.64,0.96,0.52,786,0.8,43,8.4
+2535,2015,4,16,15,30,5.6,1.15,0.119,0.64,119,867,644,0,6,-3.7,136,1,0,136,0.341,51.37,52.67,0.95,0.52,786,0.8,40,7.8
+2536,2015,4,16,16,30,5.1,1.15,0.093,0.64,89,809,448,0,7,-3.6,194,12,0,199,0.34,53.54,63.65,0.94,0.52,786,0.8,33,7.6
+2537,2015,4,16,17,30,3.8,1.11,0.09,0.64,64,648,232,0,6,-3.3,38,0,0,38,0.339,59.67,74.97,0.94,0.52,787,0.8,28,7.1
+2538,2015,4,16,18,30,1.9,1.09,0.105,0.64,27,226,42,7,6,-2.8,12,0,7,12,0.338,71.03,86.19,0.95,0.52,787,0.8,25,6.5
+2539,2015,4,16,19,30,0.4,1.09,0.106,0.64,0,0,0,0,6,-2.5,0,0,0,0,0.338,80.65,97.32,0.94,0.52,787,0.8,21,6.6
+2540,2015,4,16,20,30,-0.6,1.03,0.092,0.64,0,0,0,0,4,-2.4,0,0,0,0,0.336,87.9,107.57,0.94,0.52,788,0.8,22,6.5
+2541,2015,4,16,21,30,-1.1,0.99,0.105,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.333,92.43,116.61,0.95,0.52,788,0.8,28,6
+2542,2015,4,16,22,30,-1.1,1,0.109,0.64,0,0,0,0,7,-2,0,0,0,0,0.33,93.57,123.73,0.95,0.52,789,0.9,29,5.6
+2543,2015,4,16,23,30,-1.2,1.01,0.101,0.64,0,0,0,0,6,-2,0,0,0,0,0.327,94.59,128.09,0.95,0.52,789,0.9,26,5.5
+2544,2015,4,17,0,30,-1.4,1.03,0.104,0.64,0,0,0,0,7,-2,0,0,0,0,0.325,95.39,128.94,0.95,0.52,788,0.9,24,5.3
+2545,2015,4,17,1,30,-1.6,1.03,0.103,0.64,0,0,0,0,6,-2.2,0,0,0,0,0.325,96.02,126.1,0.95,0.52,787,0.8,20,5.1
+2546,2015,4,17,2,30,-1.6,1.02,0.093,0.64,0,0,0,0,6,-2.3,0,0,0,0,0.324,95.26,120.12,0.95,0.52,787,0.9,14,4.8
+2547,2015,4,17,3,30,-1.6,1.03,0.084,0.64,0,0,0,0,6,-2.4,0,0,0,0,0.324,94.36,111.85,0.94,0.52,786,0.9,12,4.9
+2548,2015,4,17,4,30,-1.5,1.07,0.087,0.64,0,0,0,0,9,-2.5,0,0,0,0,0.323,93.1,102.08,0.95,0.52,786,1,12,5.3
+2549,2015,4,17,5,30,-1.2,1.09,0.093,0.64,0,0,0,0,7,-2.4,0,0,0,0,0.321,91.24,91.37,0.95,0.52,786,1,12,5.5
+2550,2015,4,17,6,30,-0.5,1.1,0.098,0.64,51,494,136,0,6,-2.3,68,4,0,69,0.32,87.49,80.08,0.95,0.52,786,1,12,5.7
+2551,2015,4,17,7,30,0.4,1.14,0.093,0.64,80,741,348,0,6,-2,82,1,0,82,0.321,83.89,68.72,0.95,0.52,786,1,17,6.4
+2552,2015,4,17,8,30,1.3,1.17,0.089,0.64,97,858,559,0,4,-1.6,104,0,0,105,0.323,80.89,57.49,0.95,0.52,786,1,24,7.4
+2553,2015,4,17,9,30,2.9,1.15,0.099,0.64,116,913,741,0,4,-1.5,324,1,0,325,0.326,73.07,46.89,0.95,0.52,786,0.9,27,8.2
+2554,2015,4,17,10,30,5.1,1.1,0.102,0.64,128,950,879,0,6,-1.5,224,1,0,225,0.33,62.59,37.72,0.94,0.52,786,0.8,24,9
+2555,2015,4,17,11,30,6.7,1.01,0.107,0.64,137,966,961,0,6,-1.6,201,0,0,201,0.333,55.35,31.49,0.94,0.52,784,0.7,19,9.8
+2556,2015,4,17,12,30,7.4,0.99,0.101,0.64,134,969,972,0,6,-1.7,317,2,0,319,0.335,52.53,30.17,0.94,0.52,784,0.8,20,10.1
+2557,2015,4,17,13,30,7.3,0.98,0.113,0.64,138,944,918,0,6,-1.5,404,12,0,414,0.338,53.6,34.35,0.95,0.52,784,0.9,26,9.4
+2558,2015,4,17,14,30,6.6,1.01,0.12,0.64,133,906,803,0,4,-1,153,0,0,153,0.339,58.23,42.4,0.95,0.52,785,1,30,8.6
+2559,2015,4,17,15,30,5.7,1,0.126,0.64,123,849,640,0,4,-0.7,40,0,0,40,0.338,63.31,52.46,0.95,0.52,785,1,29,8
+2560,2015,4,17,16,30,4.7,0.97,0.124,0.64,103,759,442,0,4,-0.7,122,0,0,122,0.337,68.16,63.46,0.95,0.52,785,1,27,7.1
+2561,2015,4,17,17,30,3.6,0.9,0.117,0.64,73,591,228,0,4,-0.6,40,0,0,40,0.337,73.86,74.8,0.94,0.52,785,1,24,6
+2562,2015,4,17,18,30,2.3,0.84,0.119,0.64,28,190,41,7,4,-0.5,14,0,7,14,0.337,82,86.01,0.94,0.52,786,1,19,5.1
+2563,2015,4,17,19,30,1.2,0.81,0.12,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.338,89.41,97.12,0.94,0.52,787,1,15,4.6
+2564,2015,4,17,20,30,0.6,0.81,0.12,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.338,93.4,107.35,0.94,0.52,787,1,16,3.9
+2565,2015,4,17,21,30,0.2,0.85,0.122,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.338,96.45,116.35,0.94,0.52,787,1,17,3
+2566,2015,4,17,22,30,-0.1,0.88,0.122,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.339,98.71,123.43,0.94,0.52,787,1,17,2.3
+2567,2015,4,17,23,30,-0.4,0.9,0.119,0.64,0,0,0,0,4,-0.4,0,0,0,0,0.34,100,127.76,0.94,0.52,787,1,15,1.8
+2568,2015,4,18,0,30,-0.7,0.91,0.115,0.64,0,0,0,0,4,-0.7,0,0,0,0,0.339,100,128.59,0.94,0.52,786,1,183,1.4
+2569,2015,4,18,1,30,-0.8,0.92,0.111,0.64,0,0,0,0,4,-0.8,0,0,0,0,0.338,100,125.75,0.95,0.52,786,1,351,1.5
+2570,2015,4,18,2,30,-0.9,0.94,0.113,0.64,0,0,0,0,4,-0.9,0,0,0,0,0.337,100,119.79,0.95,0.52,786,1,348,1.5
+2571,2015,4,18,3,30,-1,0.96,0.118,0.64,0,0,0,0,7,-1,0,0,0,0,0.335,100,111.54,0.95,0.52,786,1,351,1.5
+2572,2015,4,18,4,30,-1.2,0.97,0.121,0.64,0,0,0,0,4,-1.2,0,0,0,0,0.333,100,101.79,0.95,0.52,786,1,355,1.4
+2573,2015,4,18,5,30,-1,0.98,0.121,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.332,97.81,91.09,0.95,0.52,785,1,358,1.6
+2574,2015,4,18,6,30,-0.1,0.99,0.121,0.64,57,457,138,0,7,-1.3,73,5,0,74,0.331,91.78,79.81,0.96,0.52,785,1,180,2.1
+2575,2015,4,18,7,30,1.2,0.99,0.122,0.64,91,700,348,0,7,-1,228,114,0,270,0.33,85.49,68.45,0.96,0.52,785,1,3,3
+2576,2015,4,18,8,30,2.5,1,0.127,0.64,116,814,557,0,7,-0.8,331,125,0,398,0.331,78.58,57.22,0.96,0.52,785,1,5,3.8
+2577,2015,4,18,9,30,4.2,0.99,0.126,0.64,132,881,737,0,4,-1.1,474,96,0,541,0.331,68.6,46.6,0.95,0.52,785,1,10,4.5
+2578,2015,4,18,10,30,5.7,0.97,0.122,0.64,141,926,876,0,4,-1.4,457,6,0,462,0.332,60.39,37.4,0.95,0.52,785,0.9,17,5.1
+2579,2015,4,18,11,30,7,0.97,0.11,0.64,140,954,956,0,7,-1.5,524,290,0,772,0.332,54.54,31.14,0.95,0.52,785,0.9,23,5.5
+2580,2015,4,18,12,30,7.9,0.9,0.097,0.64,133,967,972,0,7,-1.5,545,216,0,732,0.331,51.48,29.83,0.94,0.52,785,0.9,25,5.7
+2581,2015,4,18,13,30,8.3,0.87,0.09,0.64,126,963,923,0,6,-1.3,501,253,0,711,0.331,50.75,34.07,0.94,0.52,785,0.9,26,5.6
+2582,2015,4,18,14,30,8.6,0.97,0.158,0.64,153,876,803,0,4,-1.2,523,238,0,700,0.33,50.12,42.16,0.94,0.52,785,0.9,29,5.5
+2583,2015,4,18,15,30,8.7,0.95,0.138,0.64,129,841,643,0,6,-1.1,251,8,0,256,0.33,50.24,52.26,0.94,0.52,784,0.9,31,5.3
+2584,2015,4,18,16,30,8.4,0.95,0.122,0.64,102,767,447,0,6,-0.8,55,0,0,55,0.328,52.34,63.28,0.94,0.52,785,0.9,33,4.6
+2585,2015,4,18,17,30,6.6,1,0.119,0.64,75,597,233,0,7,-0.1,121,10,0,124,0.326,62.45,74.62,0.94,0.65,785,1,32,2.9
+2586,2015,4,18,18,30,4.5,1.08,0.125,0.64,30,210,45,7,7,1.3,22,0,7,22,0.325,79.66,85.83,0.95,0.65,786,1,22,1.5
+2587,2015,4,18,19,30,3.3,1.16,0.14,0.64,0,0,0,0,4,1.3,0,0,0,0,0.324,86.53,96.92,0.95,0.65,786,1.1,186,1.4
+2588,2015,4,18,20,30,2.5,1.21,0.148,0.64,0,0,0,0,4,1.3,0,0,0,0,0.325,91.57,107.12,0.95,0.65,787,1.1,355,1.6
+2589,2015,4,18,21,30,1.8,1.23,0.147,0.64,0,0,0,0,4,1.2,0,0,0,0,0.327,95.76,116.09,0.95,0.65,787,1.1,177,2.1
+2590,2015,4,18,22,30,1.6,1.21,0.144,0.64,0,0,0,0,1,1.2,0,0,0,0,0.327,97.35,123.14,0.95,0.65,788,1.1,12,3
+2591,2015,4,18,23,30,1.3,1.17,0.138,0.64,0,0,0,0,1,1.2,0,0,0,0,0.327,99.5,127.43,0.94,0.65,789,1,31,3.9
+2592,2015,4,19,0,30,0.3,1.12,0.118,0.64,0,0,0,0,4,0.3,0,0,0,0,0.325,100,128.24,0.93,0.65,789,0.9,42,4.2
+2593,2015,4,19,1,30,-0.8,1.14,0.105,0.64,0,0,0,0,4,-0.8,0,0,0,0,0.323,100,125.41,0.93,0.65,790,0.8,41,3.9
+2594,2015,4,19,2,30,-1.6,1.2,0.1,0.64,0,0,0,0,4,-1.6,0,0,0,0,0.322,100,119.46,0.93,0.65,790,0.8,38,3.7
+2595,2015,4,19,3,30,-2.2,1.26,0.096,0.64,0,0,0,0,4,-2.2,0,0,0,0,0.322,100,111.23,0.93,0.65,790,0.7,40,3.7
+2596,2015,4,19,4,30,-3,1.28,0.095,0.64,0,0,0,0,4,-3.1,0,0,0,0,0.324,99.62,101.5,0.93,0.65,790,0.7,46,3.3
+2597,2015,4,19,5,30,-2.7,1.28,0.093,0.64,0,0,0,0,4,-3.9,0,0,0,0,0.325,91.23,90.32,0.93,0.65,791,0.7,51,3.3
+2598,2015,4,19,6,30,-0.6,1.27,0.089,0.64,52,552,152,0,4,-4.1,37,0,0,37,0.325,77.24,79.55,0.93,0.65,791,0.6,55,3.9
+2599,2015,4,19,7,30,1.8,1.25,0.082,0.64,78,785,370,0,4,-5.2,47,0,0,47,0.325,59.71,68.19,0.93,0.65,791,0.6,57,4
+2600,2015,4,19,8,30,3.9,1.25,0.077,0.64,95,890,581,0,4,-6.3,301,3,0,303,0.324,47.34,56.95,0.93,0.65,790,0.7,55,3.3
+2601,2015,4,19,9,30,5.8,1.27,0.077,0.64,109,947,764,0,4,-6.2,477,75,0,529,0.322,41.65,46.31,0.93,0.65,790,0.7,43,2.5
+2602,2015,4,19,10,30,7.6,1.29,0.087,0.64,124,971,899,0,4,-5.6,530,16,0,543,0.319,38.73,37.08,0.93,0.65,790,0.7,22,1.9
+2603,2015,4,19,11,30,9.1,1.22,0.121,0.64,151,953,970,0,4,-4.9,648,143,0,771,0.318,36.71,30.79,0.94,0.65,789,0.8,183,1.6
+2604,2015,4,19,12,30,10,1.23,0.122,0.64,153,956,985,0,4,-4.6,249,0,0,249,0.317,35.4,29.49,0.94,0.65,788,0.8,342,1.4
+2605,2015,4,19,13,30,10.4,1.22,0.115,0.64,144,946,931,0,4,-4.3,302,0,0,302,0.318,35.2,33.78,0.94,0.65,787,0.9,315,1.4
+2606,2015,4,19,14,30,10.4,1.21,0.103,0.64,129,930,821,0,4,-3.9,403,2,0,404,0.318,36.4,41.93,0.94,0.65,787,0.9,299,1.8
+2607,2015,4,19,15,30,10,1.2,0.104,0.64,117,881,658,0,0,-3.3,117,881,0,658,0.319,38.95,52.07,0.95,0.65,786,0.9,296,2.1
+2608,2015,4,19,16,30,9.3,1.21,0.104,0.64,97,797,457,0,1,-2.9,97,797,0,457,0.319,42.27,63.1,0.94,0.65,786,0.9,299,1.8
+2609,2015,4,19,17,30,8.1,1.23,0.099,0.64,63,643,235,0,4,-2.6,42,0,0,42,0.32,46.71,74.44,0.94,0.14,786,0.9,296,0.9
+2610,2015,4,19,18,30,6.3,1.27,0.094,0.64,27,282,48,7,4,-0.5,15,0,7,15,0.321,61.57,85.65,0.94,0.14,786,0.9,217,0.5
+2611,2015,4,19,19,30,4.6,1.28,0.082,0.64,0,0,0,0,4,-0.8,0,0,0,0,0.322,67.87,96.72,0.93,0.14,786,0.9,150,0.9
+2612,2015,4,19,20,30,3.6,1.26,0.075,0.64,0,0,0,0,1,-1.4,0,0,0,0,0.322,70.05,106.89,0.93,0.14,786,0.9,174,1
+2613,2015,4,19,21,30,2.8,1.26,0.073,0.64,0,0,0,0,1,-1.7,0,0,0,0,0.322,72.09,115.83,0.93,0.14,785,0.9,198,1
+2614,2015,4,19,22,30,1.9,1.26,0.071,0.64,0,0,0,0,1,-2,0,0,0,0,0.323,75.57,122.84,0.93,0.14,785,0.8,216,1.1
+2615,2015,4,19,23,30,0.9,1.22,0.068,0.64,0,0,0,0,0,-2.4,0,0,0,0,0.324,78.43,127.09,0.92,0.14,785,0.8,231,1.1
+2616,2015,4,20,0,30,0.2,1.19,0.066,0.64,0,0,0,0,0,-2.8,0,0,0,0,0.324,80.12,127.89,0.92,0.14,785,0.8,247,1
+2617,2015,4,20,1,30,-0.5,1.16,0.064,0.64,0,0,0,0,4,-3.1,0,0,0,0,0.325,82.39,125.06,0.92,0.14,785,0.8,275,0.9
+2618,2015,4,20,2,30,-1.2,1.15,0.062,0.64,0,0,0,0,0,-3.3,0,0,0,0,0.326,85.65,119.13,0.92,0.14,785,0.7,314,0.8
+2619,2015,4,20,3,30,-1.9,1.15,0.062,0.64,0,0,0,0,1,-3.3,0,0,0,0,0.326,89.9,110.93,0.92,0.14,785,0.7,168,0.9
+2620,2015,4,20,4,30,-2.4,1.15,0.064,0.64,0,0,0,0,4,-3.4,0,0,0,0,0.327,92.91,101.22,0.92,0.14,785,0.7,9,1.1
+2621,2015,4,20,5,30,-1.7,1.17,0.066,0.64,0,0,0,0,4,-3.5,0,0,0,0,0.328,87.61,90.09,0.92,0.14,786,0.7,22,1.8
+2622,2015,4,20,6,30,0.9,1.18,0.068,0.64,44,590,154,0,0,-3.2,44,590,0,154,0.329,74.24,79.29,0.92,0.14,786,0.7,32,2.5
+2623,2015,4,20,7,30,4.3,1.19,0.07,0.64,65,798,365,0,4,-2.9,198,22,0,207,0.329,59.47,67.93,0.92,0.14,786,0.7,32,2.5
+2624,2015,4,20,8,30,7.4,1.19,0.073,0.64,79,896,571,0,0,-2.9,79,896,0,571,0.329,47.92,56.68,0.92,0.14,786,0.7,16,2.3
+2625,2015,4,20,9,30,9.3,1.19,0.076,0.64,90,949,749,0,0,-3.1,90,949,0,749,0.329,41.63,46.02,0.93,0.14,785,0.7,173,2.1
+2626,2015,4,20,10,30,10.5,1.2,0.081,0.64,98,976,880,0,0,-3.3,98,976,0,880,0.329,37.82,36.77,0.93,0.14,785,0.7,331,2.1
+2627,2015,4,20,11,30,11.7,1.36,0.057,0.64,88,1008,958,0,3,-3.5,475,137,0,593,0.327,34.46,30.44,0.94,0.14,785,0.8,313,2
+2628,2015,4,20,12,30,12.8,1.33,0.062,0.64,92,1007,971,0,4,-3.8,515,265,0,746,0.326,31.32,29.15,0.94,0.14,784,0.8,303,2
+2629,2015,4,20,13,30,13.6,1.29,0.072,0.64,95,988,919,0,0,-4.1,95,988,0,919,0.325,28.97,33.5,0.94,0.14,784,0.8,303,2.2
+2630,2015,4,20,14,30,14,1.21,0.096,0.64,103,942,806,0,0,-4.6,103,942,0,806,0.325,27.23,41.7,0.94,0.14,783,0.8,313,2.5
+2631,2015,4,20,15,30,13.9,1.25,0.091,0.64,92,901,648,0,1,-5.1,92,901,0,648,0.325,26.37,51.87,0.94,0.14,783,0.8,327,2.7
+2632,2015,4,20,16,30,13.3,1.28,0.079,0.64,75,835,455,0,4,-5.4,262,191,0,349,0.325,26.76,62.92,0.93,0.14,783,0.8,342,2.6
+2633,2015,4,20,17,30,11.4,1.27,0.064,0.64,54,715,248,0,7,-5.4,119,23,0,125,0.327,30.39,74.26,0.93,0.14,783,0.7,187,1.6
+2634,2015,4,20,18,30,8.7,1.23,0.054,0.64,24,381,55,7,7,-0.9,21,0,7,21,0.329,50.98,85.47,0.93,0.14,783,0.7,42,0.9
+2635,2015,4,20,19,30,7.2,1.19,0.052,0.64,0,0,0,0,0,-2,0,0,0,0,0.33,51.97,96.52,0.92,0.14,783,0.7,67,0.9
+2636,2015,4,20,20,30,6.6,1.16,0.05,0.64,0,0,0,0,1,-2.7,0,0,0,0,0.33,51.42,106.67,0.92,0.14,784,0.7,79,0.6
+2637,2015,4,20,21,30,5.7,1.12,0.046,0.64,0,0,0,0,1,-3.4,0,0,0,0,0.328,52.03,115.57,0.91,0.14,784,0.7,180,0.3
+2638,2015,4,20,22,30,4.5,1.06,0.042,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.325,55.56,122.54,0.91,0.14,784,0.6,279,0.5
+2639,2015,4,20,23,30,3.4,1,0.041,0.64,0,0,0,0,0,-4,0,0,0,0,0.323,58.59,126.77,0.91,0.14,784,0.6,287,0.6
+2640,2015,4,21,0,30,2.5,0.95,0.042,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.322,61,127.54,0.91,0.14,784,0.6,296,0.7
+2641,2015,4,21,1,30,1.9,0.9,0.044,0.64,0,0,0,0,0,-4.6,0,0,0,0,0.322,62.03,124.72,0.91,0.14,784,0.6,304,0.6
+2642,2015,4,21,2,30,1.5,0.88,0.046,0.64,0,0,0,0,0,-4.9,0,0,0,0,0.322,62.44,118.81,0.91,0.14,784,0.6,311,0.6
+2643,2015,4,21,3,30,1.2,0.88,0.049,0.64,0,0,0,0,0,-5.1,0,0,0,0,0.323,62.62,110.63,0.91,0.14,784,0.5,319,0.5
+2644,2015,4,21,4,30,0.9,0.91,0.051,0.64,0,0,0,0,0,-5.4,0,0,0,0,0.323,62.97,100.94,0.91,0.14,784,0.5,329,0.4
+2645,2015,4,21,5,30,1.9,0.95,0.052,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.324,58.01,89.87,0.91,0.14,784,0.5,346,0.3
+2646,2015,4,21,6,30,4.6,0.97,0.053,0.64,42,637,163,0,0,-3.5,42,637,0,163,0.325,55.52,79.04,0.91,0.14,785,0.5,222,0.2
+2647,2015,4,21,7,30,8.9,0.97,0.054,0.64,61,836,378,0,0,-4.5,61,836,0,378,0.325,38.36,67.68,0.91,0.14,785,0.5,153,0.2
+2648,2015,4,21,8,30,12.6,0.97,0.055,0.64,73,930,587,0,0,-6.8,73,930,0,587,0.324,25.18,56.42,0.91,0.14,785,0.5,233,0.4
+2649,2015,4,21,9,30,14.6,0.97,0.055,0.64,81,982,766,0,0,-7.9,81,982,0,766,0.323,20.39,45.74,0.91,0.14,785,0.5,246,0.8
+2650,2015,4,21,10,30,15.9,0.96,0.056,0.64,86,1003,893,0,0,-8,86,1003,0,893,0.323,18.64,36.46,0.91,0.14,785,0.6,245,1.4
+2651,2015,4,21,11,30,17,0.96,0.053,0.64,87,1021,970,0,0,-7.9,87,1021,0,970,0.322,17.48,30.1,0.91,0.14,784,0.6,246,1.9
+2652,2015,4,21,12,30,17.7,0.97,0.057,0.64,90,1019,983,0,3,-7.8,470,42,0,507,0.323,16.86,28.82,0.92,0.14,784,0.6,246,2.2
+2653,2015,4,21,13,30,18,1.01,0.063,0.64,91,999,927,0,3,-7.7,466,353,0,762,0.323,16.63,33.22,0.92,0.14,783,0.7,247,2.3
+2654,2015,4,21,14,30,17.8,1.09,0.062,0.64,86,978,819,0,1,-7.7,86,978,0,819,0.323,16.84,41.47,0.93,0.14,783,0.7,251,2
+2655,2015,4,21,15,30,17.2,1.17,0.072,0.64,84,926,659,0,2,-7.8,342,309,0,533,0.323,17.39,51.67,0.94,0.14,782,0.7,264,1.6
+2656,2015,4,21,16,30,16.2,1.26,0.086,0.64,78,828,457,0,3,-7.7,210,11,0,215,0.323,18.68,62.74,0.94,0.14,782,0.8,297,1.3
+2657,2015,4,21,17,30,14.1,1.33,0.104,0.64,65,650,243,0,4,-6.2,159,56,0,174,0.323,23.92,74.09,0.95,0.13,783,0.8,160,1
+2658,2015,4,21,18,30,11.6,1.39,0.122,0.64,30,269,52,7,4,0.5,32,0,7,32,0.323,46.35,85.29,0.95,0.13,783,0.8,13,1
+2659,2015,4,21,19,30,10.2,1.41,0.129,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.324,48.22,96.32,0.94,0.13,783,0.9,32,1.2
+2660,2015,4,21,20,30,9.6,1.42,0.123,0.64,0,0,0,0,4,-1,0,0,0,0,0.324,47.58,106.45,0.93,0.13,783,0.9,46,1.2
+2661,2015,4,21,21,30,9.2,1.42,0.109,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.325,44.91,115.31,0.92,0.13,783,0.8,61,1.1
+2662,2015,4,21,22,30,8.8,1.38,0.09,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.325,41.83,122.25,0.91,0.13,783,0.8,80,0.9
+2663,2015,4,21,23,30,8.3,1.32,0.084,0.64,0,0,0,0,4,-4.3,0,0,0,0,0.326,40.57,126.44,0.91,0.13,783,0.8,99,0.8
+2664,2015,4,22,0,30,7.7,1.27,0.083,0.64,0,0,0,0,0,-4.9,0,0,0,0,0.326,40.6,127.2,0.91,0.13,783,0.8,113,0.7
+2665,2015,4,22,1,30,7.1,1.24,0.084,0.64,0,0,0,0,0,-5.1,0,0,0,0,0.326,41.56,124.38,0.91,0.13,783,0.8,107,0.6
+2666,2015,4,22,2,30,6.2,1.22,0.086,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.327,43.76,118.49,0.91,0.13,782,0.7,87,0.7
+2667,2015,4,22,3,30,5,1.22,0.089,0.64,0,0,0,0,0,-5.3,0,0,0,0,0.327,47.19,110.33,0.91,0.13,782,0.7,77,0.8
+2668,2015,4,22,4,30,4,1.21,0.091,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.328,51.29,100.66,0.91,0.13,783,0.7,78,0.9
+2669,2015,4,22,5,30,4.6,1.21,0.094,0.64,0,0,0,0,0,-5.1,0,0,0,0,0.328,49.34,89.64,0.91,0.13,783,0.7,90,0.9
+2670,2015,4,22,6,30,7.3,1.21,0.096,0.64,50,553,158,0,0,-2.7,50,553,0,158,0.329,49.06,78.79,0.91,0.13,783,0.7,106,1.3
+2671,2015,4,22,7,30,11.3,1.21,0.097,0.64,74,766,368,0,0,-4.3,74,766,0,368,0.33,33.35,67.43,0.91,0.13,783,0.7,132,1.7
+2672,2015,4,22,8,30,14.8,1.22,0.099,0.64,89,869,573,1,0,-5.2,89,869,1,573,0.331,24.66,56.17,0.91,0.13,784,0.7,172,2.1
+2673,2015,4,22,9,30,16.9,1.24,0.104,0.64,102,918,745,0,0,-5.5,102,918,0,745,0.331,21.15,45.47,0.92,0.13,784,0.8,196,2.7
+2674,2015,4,22,10,30,18.2,1.26,0.113,0.64,112,945,875,0,0,-5.1,112,945,0,875,0.332,20.08,36.15,0.92,0.13,783,0.8,205,3.3
+2675,2015,4,22,11,30,19.1,1.56,0.101,0.64,109,974,954,0,2,-4.7,472,83,0,545,0.332,19.63,29.77,0.93,0.13,783,0.8,210,3.5
+2676,2015,4,22,12,30,19.4,1.48,0.118,0.64,119,958,961,0,3,-4.4,526,207,0,708,0.333,19.61,28.49,0.94,0.13,782,0.9,212,3.6
+2677,2015,4,22,13,30,19.3,1.43,0.128,0.64,122,939,910,0,4,-4.1,504,181,0,655,0.334,20.17,32.94,0.95,0.13,782,0.9,214,3.6
+2678,2015,4,22,14,30,18.6,1.41,0.139,0.64,121,899,797,0,6,-3.6,163,2,0,165,0.333,21.9,41.25,0.95,0.13,782,1,216,3.8
+2679,2015,4,22,15,30,17.2,1.39,0.158,0.64,119,827,634,0,6,-2.8,258,31,0,278,0.333,25.42,51.48,0.96,0.13,782,1.1,218,4.1
+2680,2015,4,22,16,30,15.2,1.38,0.175,0.64,108,715,437,0,7,-1.5,63,0,0,63,0.332,31.67,62.56,0.96,0.13,782,1.2,221,3.9
+2681,2015,4,22,17,30,12.9,1.37,0.197,0.64,85,521,229,0,7,-0.1,110,11,0,113,0.331,40.75,73.92,0.97,0.12,783,1.2,235,2.8
+2682,2015,4,22,18,30,10.5,1.34,0.208,0.64,35,173,49,7,7,1.6,37,3,7,38,0.332,54.06,85.11,0.97,0.12,783,1.2,263,1.7
+2683,2015,4,22,19,30,8.9,1.3,0.217,0.64,0,0,0,0,4,2.8,0,0,0,0,0.334,65.64,96.12,0.97,0.12,784,1.2,287,1.2
+2684,2015,4,22,20,30,7.9,1.27,0.215,0.64,0,0,0,0,7,3.1,0,0,0,0,0.337,71.66,106.22,0.96,0.12,784,1.2,287,0.9
+2685,2015,4,22,21,30,6.9,1.26,0.189,0.64,0,0,0,0,7,3.2,0,0,0,0,0.34,77.11,115.06,0.95,0.12,784,1.2,245,0.6
+2686,2015,4,22,22,30,5.9,1.23,0.166,0.64,0,0,0,0,7,2.9,0,0,0,0,0.343,81.13,121.96,0.95,0.12,784,1.1,198,0.8
+2687,2015,4,22,23,30,5,1.2,0.152,0.64,0,0,0,0,4,2.6,0,0,0,0,0.344,84.66,126.12,0.94,0.12,784,1,183,1.1
+2688,2015,4,23,0,30,4,1.17,0.142,0.64,0,0,0,0,4,2.3,0,0,0,0,0.346,88.84,126.86,0.94,0.12,783,1,182,1.4
+2689,2015,4,23,1,30,3,1.14,0.135,0.64,0,0,0,0,4,2.1,0,0,0,0,0.346,93.5,124.05,0.94,0.12,783,0.9,183,1.4
+2690,2015,4,23,2,30,2.2,1.11,0.127,0.64,0,0,0,0,1,1.8,0,0,0,0,0.347,96.98,118.18,0.93,0.12,783,0.9,180,1.4
+2691,2015,4,23,3,30,1.7,1.1,0.119,0.64,0,0,0,0,0,1.4,0,0,0,0,0.347,97.8,110.04,0.92,0.12,783,0.8,176,1.4
+2692,2015,4,23,4,30,1.4,1.1,0.117,0.64,0,0,0,0,0,0.9,0,0,0,0,0.347,96.24,100.39,0.92,0.12,783,0.8,175,1.3
+2693,2015,4,23,5,30,2.9,1.12,0.119,0.64,0,0,0,0,0,0.3,0,0,0,0,0.346,83.11,89.41,0.92,0.12,783,0.8,175,1.4
+2694,2015,4,23,6,30,6.3,1.15,0.125,0.64,56,504,157,0,1,0.2,56,504,0,157,0.346,65.19,78.54,0.92,0.12,783,0.8,180,1.9
+2695,2015,4,23,7,30,10.4,1.18,0.129,0.64,84,721,364,0,1,-0.4,84,721,0,364,0.346,47.22,67.18,0.92,0.12,783,0.8,193,2.7
+2696,2015,4,23,8,30,13.5,1.2,0.13,0.64,101,831,567,0,3,-2.6,340,125,0,410,0.347,32.65,55.91,0.92,0.12,783,0.8,203,3.7
+2697,2015,4,23,9,30,15.3,1.21,0.131,0.64,113,893,742,0,0,-3.9,113,893,0,742,0.348,26.48,45.19,0.92,0.12,783,0.8,207,4.3
+2698,2015,4,23,10,30,16.5,1.22,0.138,0.64,124,928,876,0,4,-4.8,342,2,0,343,0.349,22.82,35.85,0.92,0.12,782,0.7,210,4.8
+2699,2015,4,23,11,30,17.3,1.5,0.114,0.64,114,968,957,0,7,-5.6,333,499,0,768,0.349,20.51,29.43,0.92,0.12,782,0.7,212,5.2
+2700,2015,4,23,12,30,17.8,1.43,0.129,0.64,122,958,967,0,7,-6.1,428,207,0,611,0.35,19.04,28.17,0.92,0.12,781,0.7,214,5.4
+2701,2015,4,23,13,30,17.9,1.37,0.144,0.64,128,935,915,0,6,-6.5,60,0,0,60,0.35,18.45,32.67,0.93,0.12,781,0.7,218,5.5
+2702,2015,4,23,14,30,17.4,1.33,0.168,0.64,133,882,799,0,7,-6.6,383,235,0,560,0.35,18.85,41.02,0.94,0.12,780,0.8,228,5.4
+2703,2015,4,23,15,30,16.2,1.31,0.2,0.64,136,800,636,0,7,-6.2,307,388,0,550,0.351,21.03,51.29,0.95,0.12,780,0.8,244,5.1
+2704,2015,4,23,16,30,14.6,1.31,0.226,0.64,124,675,437,0,4,-5.1,288,99,0,334,0.351,25.33,62.39,0.95,0.12,780,0.9,265,4.5
+2705,2015,4,23,17,30,12.4,1.31,0.242,0.64,95,480,229,0,4,-3.6,163,33,0,172,0.352,32.69,73.74,0.95,0.12,780,1,291,3.6
+2706,2015,4,23,18,30,10.1,1.32,0.249,0.64,36,152,50,7,7,-1.3,44,4,7,44,0.354,45.18,84.94,0.95,0.12,781,1,317,2.5
+2707,2015,4,23,19,30,8.3,1.32,0.224,0.64,0,0,0,0,7,0.3,0,0,0,0,0.355,57.23,95.92,0.95,0.12,781,1,340,1.6
+2708,2015,4,23,20,30,7.1,1.31,0.181,0.64,0,0,0,0,3,1.1,0,0,0,0,0.357,65.83,106,0.94,0.12,781,1,181,1.1
+2709,2015,4,23,21,30,6.3,1.27,0.15,0.64,0,0,0,0,3,1.1,0,0,0,0,0.358,69.19,114.8,0.93,0.12,781,0.9,20,1
+2710,2015,4,23,22,30,5.9,1.23,0.132,0.64,0,0,0,0,1,0.6,0,0,0,0,0.358,68.82,121.67,0.92,0.12,781,0.9,38,1
+2711,2015,4,23,23,30,5.5,1.2,0.12,0.64,0,0,0,0,4,0.2,0,0,0,0,0.359,68.64,125.8,0.92,0.12,780,0.8,64,1
+2712,2015,4,24,0,30,4.7,1.19,0.111,0.64,0,0,0,0,4,-0.2,0,0,0,0,0.359,70.64,126.53,0.91,0.12,780,0.8,96,1
+2713,2015,4,24,1,30,3.8,1.19,0.107,0.64,0,0,0,0,4,-0.6,0,0,0,0,0.36,73.01,123.72,0.91,0.12,779,0.8,122,1
+2714,2015,4,24,2,30,3,1.2,0.111,0.64,0,0,0,0,4,-1.1,0,0,0,0,0.36,74.52,117.86,0.91,0.12,779,0.7,140,1.1
+2715,2015,4,24,3,30,2.4,1.23,0.12,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.361,73.95,109.75,0.91,0.12,779,0.7,154,1.2
+2716,2015,4,24,4,30,2,1.26,0.128,0.64,0,0,0,0,4,-2.5,0,0,0,0,0.362,72.07,100.12,0.92,0.12,779,0.7,167,1.3
+2717,2015,4,24,5,30,3.1,1.28,0.131,0.64,0,0,0,0,1,-3.1,0,0,0,0,0.364,63.72,89.19,0.92,0.12,779,0.7,180,1.5
+2718,2015,4,24,6,30,6.1,1.3,0.129,0.64,57,517,162,0,4,-2.6,55,0,0,55,0.365,53.56,78.3,0.92,0.12,779,0.7,193,2.5
+2719,2015,4,24,7,30,9.6,1.32,0.127,0.64,83,735,371,0,4,-2.9,213,262,0,315,0.365,41.23,66.94,0.92,0.12,779,0.7,206,3.7
+2720,2015,4,24,8,30,12.1,1.34,0.132,0.64,101,833,571,0,4,-3.1,323,247,0,462,0.364,34.63,55.66,0.92,0.12,779,0.8,216,4.5
+2721,2015,4,24,9,30,13.5,1.36,0.138,0.64,116,890,746,0,4,-3,428,194,0,565,0.361,31.63,44.93,0.93,0.12,779,0.8,222,4.9
+2722,2015,4,24,10,30,14.5,1.35,0.15,0.64,128,911,870,0,0,-2.9,128,911,0,870,0.358,30.07,35.55,0.93,0.12,779,0.9,226,5.2
+2723,2015,4,24,11,30,14.8,1.44,0.106,0.64,112,965,955,0,8,-2.7,295,551,0,777,0.354,29.77,29.1,0.94,0.12,778,0.9,231,5.4
+2724,2015,4,24,12,30,14.8,1.39,0.118,0.64,119,954,962,0,7,-2.5,369,455,0,772,0.349,30.37,27.85,0.95,0.12,778,1,234,5.4
+2725,2015,4,24,13,30,14.5,1.36,0.113,0.64,114,947,914,0,4,-2.1,426,445,0,802,0.346,31.74,32.39,0.95,0.12,778,1,235,5.6
+2726,2015,4,24,14,30,14.2,1.31,0.113,0.64,109,920,805,0,4,-1.9,71,0,0,71,0.345,32.81,40.8,0.94,0.12,777,1,236,5.6
+2727,2015,4,24,15,30,13.9,1.26,0.113,0.64,101,876,651,0,4,-2.1,333,349,0,552,0.345,33.03,51.1,0.94,0.12,777,0.9,236,5.4
+2728,2015,4,24,16,30,13.3,1.21,0.117,0.64,89,788,456,0,4,-2.7,254,270,0,380,0.346,32.89,62.21,0.94,0.12,778,0.9,235,4.9
+2729,2015,4,24,17,30,12,1.17,0.126,0.64,72,617,246,0,4,-3.2,164,65,0,183,0.347,34.44,73.57,0.95,0.12,778,0.9,232,3.7
+2730,2015,4,24,18,30,9.8,1.14,0.132,0.64,34,259,58,0,0,-2.1,34,259,0,58,0.348,43.41,84.76,0.95,0.12,778,0.9,226,2.4
+2731,2015,4,24,19,30,7.9,1.1,0.124,0.64,0,0,0,0,1,-1.3,0,0,0,0,0.349,52.24,95.73,0.94,0.12,779,0.9,222,2
+2732,2015,4,24,20,30,6.7,1.07,0.115,0.64,0,0,0,0,3,-1.6,0,0,0,0,0.35,55.42,105.78,0.94,0.12,779,0.9,225,2
+2733,2015,4,24,21,30,5.6,1.05,0.11,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.352,58.78,114.55,0.94,0.12,779,0.9,229,1.9
+2734,2015,4,24,22,30,4.9,1.05,0.112,0.64,0,0,0,0,4,-1.9,0,0,0,0,0.352,61.43,121.38,0.94,0.12,779,0.9,231,1.9
+2735,2015,4,24,23,30,4.3,1.08,0.118,0.64,0,0,0,0,1,-1.7,0,0,0,0,0.353,64.94,125.48,0.95,0.12,779,1,227,1.9
+2736,2015,4,25,0,30,4,1.12,0.133,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.355,68.57,126.2,0.95,0.12,779,1.1,221,1.9
+2737,2015,4,25,1,30,3.6,1.14,0.145,0.64,0,0,0,0,4,-0.4,0,0,0,0,0.358,75.37,123.39,0.96,0.12,779,1.1,216,1.8
+2738,2015,4,25,2,30,3.2,1.15,0.142,0.64,0,0,0,0,7,0.6,0,0,0,0,0.362,83.07,117.56,0.96,0.12,779,1.2,217,1.5
+2739,2015,4,25,3,30,2.8,1.15,0.138,0.64,0,0,0,0,7,1.3,0,0,0,0,0.363,89.54,109.47,0.96,0.12,780,1.2,228,1.4
+2740,2015,4,25,4,30,2.4,1.12,0.139,0.64,0,0,0,0,7,1.5,0,0,0,0,0.363,94.09,99.85,0.96,0.12,780,1.2,246,1.3
+2741,2015,4,25,5,30,2.4,1.09,0.132,0.64,11,43,11,7,7,1.5,3,0,7,3,0.363,93.88,88.96,0.96,0.12,780,1.1,265,1.1
+2742,2015,4,25,6,30,3.5,1.03,0.117,0.64,58,515,165,0,6,1.5,33,0,0,34,0.364,86.61,78.06,0.95,0.12,781,1,297,1
+2743,2015,4,25,7,30,5.3,0.97,0.105,0.64,79,746,374,0,6,1.3,120,6,0,122,0.366,75.22,66.7,0.94,0.12,781,0.9,318,0.9
+2744,2015,4,25,8,30,7.3,0.92,0.099,0.64,93,861,581,0,6,0.5,272,75,0,315,0.368,61.88,55.42,0.94,0.12,781,0.8,279,1.1
+2745,2015,4,25,9,30,9,0.9,0.097,0.64,102,921,757,0,7,-0.8,354,316,0,579,0.37,50.33,44.66,0.94,0.12,781,0.8,229,1.6
+2746,2015,4,25,10,30,10.6,0.89,0.095,0.64,107,955,887,0,4,-1.9,430,402,0,758,0.372,41.6,35.25,0.94,0.12,781,0.8,213,2.2
+2747,2015,4,25,11,30,12.2,0.92,0.074,0.64,98,990,966,0,3,-2.9,406,529,0,869,0.374,34.81,28.78,0.93,0.12,780,0.8,205,2.5
+2748,2015,4,25,12,30,13.4,0.86,0.068,0.64,96,997,980,0,4,-3.7,520,255,0,746,0.374,30.23,27.53,0.93,0.12,780,0.8,199,2.7
+2749,2015,4,25,13,30,14,0.86,0.073,0.64,97,983,930,0,4,-4.2,480,145,0,603,0.372,28.01,32.13,0.94,0.12,779,0.8,200,3.1
+2750,2015,4,25,14,30,13.6,0.9,0.077,0.64,95,952,817,0,6,-4.4,368,216,0,532,0.371,28.36,40.59,0.95,0.12,779,0.9,201,3.5
+2751,2015,4,25,15,30,12.1,0.93,0.091,0.64,94,893,657,0,6,-4.1,248,20,0,261,0.37,31.94,50.91,0.95,0.12,779,0.9,201,3.9
+2752,2015,4,25,16,30,10.2,0.93,0.103,0.64,86,794,459,0,6,-2.8,182,20,0,191,0.369,39.94,62.04,0.96,0.12,779,1,201,4
+2753,2015,4,25,17,30,8.2,0.91,0.112,0.64,70,621,247,0,7,-0.9,35,0,0,35,0.369,52.8,73.4,0.96,0.12,779,1.1,200,3.6
+2754,2015,4,25,18,30,6.4,0.87,0.122,0.64,35,254,59,7,7,0.9,30,1,7,30,0.37,67.76,84.58,0.96,0.12,779,1.2,192,2.7
+2755,2015,4,25,19,30,5.3,0.86,0.128,0.64,0,0,0,0,7,2,0,0,0,0,0.372,79.42,95.53,0.96,0.12,780,1.2,174,1.9
+2756,2015,4,25,20,30,4.8,0.88,0.121,0.64,0,0,0,0,6,2.5,0,0,0,0,0.375,85.09,105.56,0.95,0.12,779,1.2,144,1.4
+2757,2015,4,25,21,30,4.3,0.91,0.108,0.64,0,0,0,0,6,2.7,0,0,0,0,0.378,89.62,114.3,0.95,0.12,779,1.2,116,1
+2758,2015,4,25,22,30,3.9,0.92,0.1,0.64,0,0,0,0,6,2.9,0,0,0,0,0.383,93.12,121.1,0.95,0.12,778,1.2,103,1.1
+2759,2015,4,25,23,30,3.3,0.93,0.103,0.64,0,0,0,0,7,2.8,0,0,0,0,0.388,96.79,125.17,0.95,0.12,778,1.2,107,1.7
+2760,2015,4,26,0,30,2.4,0.94,0.11,0.64,0,0,0,0,7,2.3,0,0,0,0,0.393,99.49,125.87,0.95,0.12,778,1.2,118,2.3
+2761,2015,4,26,1,30,1.7,0.92,0.099,0.64,0,0,0,0,7,1.5,0,0,0,0,0.398,98.31,123.07,0.95,0.12,778,1.2,128,2.3
+2762,2015,4,26,2,30,1.6,0.95,0.095,0.64,0,0,0,0,7,1.2,0,0,0,0,0.403,97.39,117.25,0.95,0.12,778,1.1,132,1.9
+2763,2015,4,26,3,30,1.5,0.95,0.084,0.64,0,0,0,0,7,1.3,0,0,0,0,0.408,98.82,109.18,0.95,0.12,778,1.1,137,1.3
+2764,2015,4,26,4,30,1.2,0.95,0.079,0.64,0,0,0,0,4,1.2,0,0,0,0,0.412,100,99.59,0.95,0.12,778,1,143,0.9
+2765,2015,4,26,5,30,2.1,0.95,0.076,0.64,12,99,14,7,7,1.3,6,0,7,6,0.415,94.44,88.73,0.95,0.12,778,1,155,1.1
+2766,2015,4,26,6,30,4.3,0.95,0.073,0.64,49,592,174,0,4,1.8,17,0,0,17,0.419,83.51,77.83,0.95,0.12,779,1,181,1.6
+2767,2015,4,26,7,30,6.2,0.95,0.069,0.64,67,792,383,0,7,1.9,166,32,0,179,0.42,73.81,66.47,0.95,0.12,779,1,205,1.6
+2768,2015,4,26,8,30,7.5,0.94,0.067,0.64,78,889,586,0,7,1.3,171,6,0,174,0.419,64.66,55.18,0.95,0.12,780,1,218,1.2
+2769,2015,4,26,9,30,8.6,0.93,0.065,0.64,85,944,759,0,7,0.4,272,14,0,282,0.417,56.35,44.41,0.94,0.12,780,1,271,0.7
+2770,2015,4,26,10,30,9.7,0.9,0.06,0.64,88,978,890,0,7,-0.2,390,232,0,580,0.414,50.02,34.96,0.94,0.12,780,1,162,0.9
+2771,2015,4,26,11,30,10.4,0.89,0.058,0.64,90,994,964,0,4,-0.6,501,172,0,652,0.41,46.38,28.46,0.94,0.12,781,1,11,1.7
+2772,2015,4,26,12,30,10.6,0.92,0.059,0.64,90,996,976,0,2,-0.7,470,71,0,533,0.405,45.34,27.21,0.94,0.12,781,1,18,2.4
+2773,2015,4,26,13,30,10.3,0.95,0.058,0.64,88,988,927,0,4,-0.8,496,218,0,682,0.402,46.24,31.86,0.94,0.12,781,1,18,3
+2774,2015,4,26,14,30,9.8,0.97,0.057,0.64,83,966,820,0,6,-0.8,380,152,0,496,0.404,47.75,40.37,0.94,0.12,782,1,16,3.5
+2775,2015,4,26,15,30,9.4,0.99,0.058,0.64,77,925,663,0,6,-0.8,179,4,0,181,0.406,48.97,50.73,0.94,0.12,782,1,14,3.8
+2776,2015,4,26,16,30,8.8,1,0.058,0.64,68,853,470,0,6,-0.8,67,0,0,67,0.409,51.03,61.87,0.94,0.12,783,1,15,4
+2777,2015,4,26,17,30,7.6,1.02,0.06,0.64,54,713,260,0,6,-0.6,61,1,0,61,0.409,55.99,73.23,0.94,0.12,783,1,19,3.4
+2778,2015,4,26,18,30,5.6,1.03,0.058,0.64,28,398,67,7,7,0.2,30,1,7,31,0.407,68.39,84.4,0.93,0.12,784,1,22,2.3
+2779,2015,4,26,19,30,3.9,1.04,0.055,0.64,0,0,0,0,4,1,0,0,0,0,0.403,81.56,95.33,0.93,0.12,785,1,22,1.8
+2780,2015,4,26,20,30,3.1,1.04,0.053,0.64,0,0,0,0,7,0.9,0,0,0,0,0.397,85.22,105.34,0.92,0.12,786,1,20,2.2
+2781,2015,4,26,21,30,2.6,1.04,0.052,0.64,0,0,0,0,4,0.7,0,0,0,0,0.389,87.54,114.05,0.92,0.12,786,1,17,2.7
+2782,2015,4,26,22,30,2.1,1.04,0.051,0.64,0,0,0,0,4,0.7,0,0,0,0,0.382,90.77,120.82,0.92,0.12,787,1,15,3.3
+2783,2015,4,26,23,30,1.6,1.06,0.053,0.64,0,0,0,0,4,0.9,0,0,0,0,0.377,94.77,124.86,0.92,0.12,787,1,13,3.8
+2784,2015,4,27,0,30,1.3,1.09,0.057,0.64,0,0,0,0,4,0.9,0,0,0,0,0.373,97.45,125.55,0.92,0.12,787,1,14,4
+2785,2015,4,27,1,30,1,1.11,0.059,0.64,0,0,0,0,4,0.9,0,0,0,0,0.368,99.58,122.75,0.93,0.12,787,1,16,4.2
+2786,2015,4,27,2,30,0.7,1.12,0.06,0.64,0,0,0,0,4,0.7,0,0,0,0,0.362,100,116.95,0.93,0.12,788,1,14,4.3
+2787,2015,4,27,3,30,0.4,1.13,0.06,0.64,0,0,0,0,4,0.4,0,0,0,0,0.355,100,108.91,0.93,0.12,788,1,12,4.3
+2788,2015,4,27,4,30,0,1.12,0.059,0.64,0,0,0,0,4,0,0,0,0,0,0.35,100,99.33,0.93,0.12,789,1,13,4.4
+2789,2015,4,27,5,30,0.4,1.1,0.057,0.64,12,159,17,7,4,-0.1,3,0,7,3,0.346,96.25,88.5,0.92,0.12,789,1,20,4.7
+2790,2015,4,27,6,30,2.3,1.08,0.053,0.64,44,647,183,0,4,-0.1,6,0,0,6,0.344,83.87,77.59,0.92,0.12,790,0.9,30,5.5
+2791,2015,4,27,7,30,5.2,1.05,0.048,0.64,59,833,395,0,4,-0.1,77,0,0,77,0.342,68.73,66.24,0.92,0.12,790,0.9,36,5.9
+2792,2015,4,27,8,30,8.2,1.03,0.046,0.64,68,922,598,0,4,-0.4,137,0,0,137,0.342,54.62,54.94,0.91,0.12,791,0.9,36,5.8
+2793,2015,4,27,9,30,10.5,1,0.044,0.64,74,972,772,0,4,-0.7,123,0,0,123,0.343,45.79,44.15,0.91,0.12,791,0.9,34,5.4
+2794,2015,4,27,10,30,12.3,0.98,0.043,0.64,78,1000,901,0,4,-0.9,264,0,0,264,0.343,39.99,34.68,0.91,0.12,791,0.9,32,4.9
+2795,2015,4,27,11,30,13.5,0.98,0.049,0.64,84,1008,973,0,4,-1.2,182,0,0,182,0.342,36.15,28.14,0.91,0.12,790,0.9,28,4.6
+2796,2015,4,27,12,30,14.2,0.97,0.048,0.64,84,1011,986,0,4,-1.5,182,0,0,182,0.34,33.93,26.9,0.92,0.12,790,0.9,24,4.5
+2797,2015,4,27,13,30,14.5,0.97,0.05,0.64,84,1001,936,0,4,-1.6,326,1,0,327,0.336,33.03,31.6,0.92,0.12,790,0.9,21,4.6
+2798,2015,4,27,14,30,14.4,0.99,0.068,0.64,89,962,824,0,1,-1.6,89,962,0,824,0.331,33.25,40.16,0.92,0.12,790,0.9,19,4.8
+2799,2015,4,27,15,30,13.7,0.99,0.068,0.64,83,920,667,0,2,-1.6,341,313,0,540,0.329,34.85,50.55,0.93,0.12,790,0.9,18,5.1
+2800,2015,4,27,16,30,12.5,0.98,0.067,0.64,72,848,474,0,3,-1.5,278,108,0,329,0.328,37.76,61.7,0.93,0.12,790,0.9,20,5.3
+2801,2015,4,27,17,30,10.8,0.98,0.064,0.64,56,715,264,0,0,-1.3,56,715,0,264,0.328,42.83,73.06,0.92,0.12,791,0.9,22,5
+2802,2015,4,27,18,30,8.3,0.97,0.061,0.64,29,402,70,0,0,-0.9,29,402,0,70,0.328,52.52,84.23,0.92,0.12,792,0.9,24,3.8
+2803,2015,4,27,19,30,6.2,0.97,0.058,0.64,0,0,0,0,0,-0.1,0,0,0,0,0.33,64,95.14,0.92,0.12,792,0.9,24,3.1
+2804,2015,4,27,20,30,4.9,0.95,0.058,0.64,0,0,0,0,0,0.1,0,0,0,0,0.331,71.1,105.12,0.92,0.12,793,0.9,23,3.1
+2805,2015,4,27,21,30,3.8,0.92,0.059,0.64,0,0,0,0,0,0.2,0,0,0,0,0.331,77.33,113.81,0.92,0.12,793,0.9,24,3
+2806,2015,4,27,22,30,2.8,0.89,0.059,0.64,0,0,0,0,0,0.3,0,0,0,0,0.329,83.42,120.54,0.92,0.12,793,0.8,25,2.8
+2807,2015,4,27,23,30,1.8,0.86,0.057,0.64,0,0,0,0,0,0.3,0,0,0,0,0.325,90.03,124.55,0.91,0.12,793,0.8,23,2.5
+2808,2015,4,28,0,30,0.9,0.85,0.056,0.64,0,0,0,0,0,0.4,0,0,0,0,0.323,96.2,125.23,0.91,0.12,793,0.7,21,2.2
+2809,2015,4,28,1,30,0.1,0.86,0.055,0.64,0,0,0,0,0,0.1,0,0,0,0,0.323,100,122.44,0.91,0.12,793,0.7,19,2
+2810,2015,4,28,2,30,-0.5,0.88,0.054,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.322,100,116.66,0.91,0.12,793,0.7,19,2
+2811,2015,4,28,3,30,-0.9,0.89,0.053,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.319,100,108.63,0.91,0.12,794,0.7,21,2.1
+2812,2015,4,28,4,30,-1,0.89,0.051,0.64,0,0,0,0,0,-1,0,0,0,0,0.315,100,99.08,0.91,0.12,794,0.7,24,2.3
+2813,2015,4,28,5,30,0.2,0.89,0.05,0.64,14,187,19,0,0,-0.3,14,187,0,19,0.313,96.26,88.28,0.91,0.12,794,0.7,28,2.8
+2814,2015,4,28,6,30,3.2,0.89,0.048,0.64,44,676,192,0,0,-0.4,44,676,0,192,0.311,76.98,77.37,0.91,0.12,794,0.6,31,3.4
+2815,2015,4,28,7,30,6.9,0.87,0.046,0.64,60,854,407,0,0,-0.6,60,854,0,407,0.311,59,66.02,0.91,0.12,794,0.6,37,3.5
+2816,2015,4,28,8,30,10.3,0.86,0.045,0.64,69,940,612,0,0,-1.3,69,940,0,612,0.311,44.34,54.71,0.91,0.12,794,0.6,43,3
+2817,2015,4,28,9,30,12.7,0.86,0.044,0.64,75,988,788,0,0,-2.2,75,988,0,788,0.31,35.53,43.9,0.9,0.12,794,0.6,41,2.2
+2818,2015,4,28,10,30,14.7,0.86,0.042,0.64,79,1017,918,0,0,-3.2,79,1017,0,918,0.31,28.91,34.4,0.9,0.12,793,0.6,31,1.7
+2819,2015,4,28,11,30,16.3,0.88,0.043,0.64,81,1029,991,0,0,-4.3,81,1029,0,991,0.309,24.14,27.83,0.9,0.12,793,0.6,18,1.6
+2820,2015,4,28,12,30,17.5,0.88,0.042,0.64,81,1032,1004,0,0,-5.2,81,1032,0,1004,0.308,20.82,26.59,0.9,0.12,792,0.6,11,1.7
+2821,2015,4,28,13,30,18.3,0.88,0.041,0.64,79,1024,954,0,0,-6,79,1024,0,954,0.308,18.66,31.35,0.9,0.12,792,0.6,14,1.9
+2822,2015,4,28,14,30,18.5,0.87,0.04,0.64,75,1012,851,0,0,-6.7,75,1012,0,851,0.306,17.5,39.95,0.9,0.12,791,0.5,22,2.1
+2823,2015,4,28,15,30,18.2,0.86,0.04,0.64,70,975,692,0,0,-7.3,70,975,0,692,0.305,16.99,50.37,0.9,0.12,791,0.5,34,2.1
+2824,2015,4,28,16,30,17.4,0.88,0.04,0.64,62,911,496,0,0,-7.8,62,911,0,496,0.304,17.22,61.53,0.9,0.12,790,0.5,48,2
+2825,2015,4,28,17,30,15.2,0.9,0.04,0.64,49,787,281,0,1,-7.7,49,787,0,281,0.303,19.94,72.89,0.9,0.12,790,0.5,69,1.4
+2826,2015,4,28,18,30,12.3,0.91,0.041,0.64,28,486,78,0,0,-1,28,486,0,78,0.302,39.66,84.06,0.9,0.12,790,0.5,95,1
+2827,2015,4,28,19,30,10.6,0.92,0.041,0.64,0,0,0,0,1,-2.9,0,0,0,0,0.302,38.83,94.95,0.9,0.12,791,0.5,118,1
+2828,2015,4,28,20,30,10,0.92,0.04,0.64,0,0,0,0,0,-4,0,0,0,0,0.301,37.02,104.91,0.9,0.12,791,0.5,142,1
+2829,2015,4,28,21,30,9.4,0.92,0.039,0.64,0,0,0,0,0,-4.9,0,0,0,0,0.3,36.2,113.56,0.9,0.12,791,0.5,172,0.9
+2830,2015,4,28,22,30,8.5,0.91,0.038,0.64,0,0,0,0,0,-5.3,0,0,0,0,0.3,37.32,120.26,0.9,0.12,791,0.5,201,0.9
+2831,2015,4,28,23,30,7.6,0.92,0.038,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.3,38.9,124.25,0.9,0.12,791,0.5,221,1
+2832,2015,4,29,0,30,6.8,0.92,0.038,0.64,0,0,0,0,0,-5.7,0,0,0,0,0.3,40.62,124.91,0.9,0.12,791,0.5,229,1
+2833,2015,4,29,1,30,5.8,0.92,0.038,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.3,43.11,122.13,0.9,0.12,791,0.5,221,1
+2834,2015,4,29,2,30,4.7,0.92,0.039,0.64,0,0,0,0,0,-5.8,0,0,0,0,0.3,46.54,116.37,0.9,0.12,790,0.5,205,1.1
+2835,2015,4,29,3,30,3.4,0.93,0.04,0.64,0,0,0,0,0,-5.6,0,0,0,0,0.3,51.58,108.36,0.9,0.12,790,0.5,195,1.3
+2836,2015,4,29,4,30,2.5,0.94,0.041,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.301,55.52,98.83,0.9,0.12,790,0.6,195,1.3
+2837,2015,4,29,5,30,4,0.95,0.042,0.64,14,235,22,0,0,-5.2,14,235,0,22,0.301,51.29,88.07,0.9,0.12,790,0.6,199,1.6
+2838,2015,4,29,6,30,7.7,0.96,0.044,0.64,43,693,198,0,0,-3.2,43,693,0,198,0.301,46.17,77.14,0.9,0.12,790,0.6,208,2.3
+2839,2015,4,29,7,30,11.8,0.97,0.047,0.64,60,850,408,0,0,-3.9,60,850,0,408,0.3,33.13,65.8,0.9,0.12,790,0.7,223,3.4
+2840,2015,4,29,8,30,15.2,0.98,0.05,0.64,71,931,612,0,0,-3.6,71,931,0,612,0.299,27.16,54.48,0.91,0.12,790,0.7,235,3.8
+2841,2015,4,29,9,30,17.4,0.99,0.053,0.64,80,975,785,0,0,-3.6,80,975,0,785,0.298,23.68,43.66,0.91,0.12,790,0.7,240,3.5
+2842,2015,4,29,10,30,19.1,1,0.056,0.64,86,1000,913,0,0,-3.7,86,1000,0,913,0.296,21.11,34.13,0.91,0.12,790,0.7,244,3.1
+2843,2015,4,29,11,30,20.5,1.21,0.044,0.64,81,1025,990,0,0,-3.9,81,1025,0,990,0.295,18.99,27.52,0.91,0.12,789,0.7,247,2.7
+2844,2015,4,29,12,30,21.6,1.19,0.045,0.64,82,1026,1002,0,0,-4.2,82,1026,0,1002,0.294,17.35,26.29,0.91,0.12,788,0.7,250,2.2
+2845,2015,4,29,13,30,22.2,1.17,0.045,0.64,80,1018,952,0,0,-4.5,80,1018,0,952,0.293,16.41,31.09,0.91,0.12,788,0.7,253,1.8
+2846,2015,4,29,14,30,22.4,1.29,0.039,0.64,73,998,841,0,0,-4.7,73,998,0,841,0.294,15.93,39.74,0.9,0.12,787,0.8,254,1.4
+2847,2015,4,29,15,30,22.2,1.26,0.04,0.64,68,961,683,0,0,-4.9,68,961,0,683,0.295,15.93,50.19,0.91,0.12,787,0.8,246,1.2
+2848,2015,4,29,16,30,21.4,1.24,0.042,0.64,61,894,490,0,0,-5,61,894,0,490,0.296,16.62,61.36,0.91,0.12,786,0.8,227,1
+2849,2015,4,29,17,30,19.5,1.26,0.048,0.64,51,755,275,0,0,-4.5,51,755,0,275,0.298,19.3,72.73,0.92,0.12,786,0.9,201,0.8
+2850,2015,4,29,18,30,16.9,1.29,0.054,0.64,29,449,77,7,3,2.1,48,2,7,48,0.299,36.91,83.89,0.92,0.12,787,0.9,178,0.8
+2851,2015,4,29,19,30,15.2,1.33,0.06,0.64,0,0,0,0,3,0.1,0,0,0,0,0.299,35.81,94.76,0.92,0.12,787,1,170,0.8
+2852,2015,4,29,20,30,14.4,1.34,0.067,0.64,0,0,0,0,4,-0.7,0,0,0,0,0.3,35.57,104.69,0.93,0.12,787,1,192,0.6
+2853,2015,4,29,21,30,13.2,1.35,0.075,0.64,0,0,0,0,4,-1.1,0,0,0,0,0.3,37.24,113.32,0.93,0.12,787,1,262,0.4
+2854,2015,4,29,22,30,11.6,1.35,0.079,0.64,0,0,0,0,4,-0.2,0,0,0,0,0.299,44.22,119.99,0.93,0.12,787,1.1,323,0.5
+2855,2015,4,29,23,30,10.2,1.36,0.081,0.64,0,0,0,0,4,0.6,0,0,0,0,0.299,51.48,123.95,0.92,0.12,787,1.1,342,0.6
+2856,2015,4,30,0,30,9.4,1.37,0.081,0.64,0,0,0,0,4,1,0,0,0,0,0.3,55.63,124.6,0.92,0.12,787,1.1,178,0.5
+2857,2015,4,30,1,30,8.8,1.36,0.081,0.64,0,0,0,0,1,1.1,0,0,0,0,0.301,58.29,121.83,0.92,0.12,787,1.1,18,0.5
+2858,2015,4,30,2,30,8.4,1.33,0.082,0.64,0,0,0,0,0,1.1,0,0,0,0,0.302,60.01,116.08,0.92,0.12,787,1.1,43,0.5
+2859,2015,4,30,3,30,8,1.29,0.084,0.64,0,0,0,0,0,0.8,0,0,0,0,0.304,60.62,108.1,0.92,0.12,787,1.1,67,0.6
+2860,2015,4,30,4,30,7.9,1.26,0.089,0.64,0,0,0,0,0,0.7,0,0,0,0,0.306,60.26,98.59,0.92,0.12,787,1.1,90,0.7
+2861,2015,4,30,5,30,9,1.26,0.09,0.64,16,154,21,0,0,0.6,16,154,0,21,0.307,55.65,87.86,0.92,0.12,787,1.1,119,0.7
+2862,2015,4,30,6,30,12,1.26,0.087,0.64,53,598,188,0,0,2.2,53,598,0,188,0.309,50.95,76.93,0.92,0.12,788,1.1,161,1.1
+2863,2015,4,30,7,30,15.9,1.25,0.084,0.64,72,784,396,0,3,0.2,224,220,0,315,0.311,34.26,65.58,0.92,0.12,788,1.1,209,1.8
+2864,2015,4,30,8,30,19.1,1.24,0.084,0.64,84,877,597,0,4,-0.9,287,28,0,303,0.314,26,54.26,0.92,0.12,788,1.1,237,2.4
+2865,2015,4,30,9,30,20.9,1.23,0.086,0.64,94,927,767,0,4,-1.1,397,308,0,621,0.316,22.85,43.42,0.92,0.12,788,1.1,244,2.8
+2866,2015,4,30,10,30,22.1,1.24,0.093,0.64,103,952,893,0,0,-1.1,103,952,0,893,0.318,21.24,33.86,0.92,0.12,788,1.1,248,3
+2867,2015,4,30,11,30,22.8,1.4,0.072,0.64,95,985,971,0,0,-1.1,95,985,0,971,0.32,20.28,27.22,0.93,0.12,787,1.1,257,3.2
+2868,2015,4,30,12,30,23,1.44,0.087,0.64,103,972,976,0,8,-1.1,354,474,0,780,0.321,20.16,25.99,0.93,0.12,787,1.2,274,3.2
+2869,2015,4,30,13,30,22.6,1.46,0.108,0.64,111,942,920,0,4,-0.7,340,2,0,342,0.321,21.17,30.84,0.94,0.12,787,1.3,297,3.5
+2870,2015,4,30,14,30,21.5,1.45,0.132,0.64,118,897,809,0,3,-0.1,382,436,0,718,0.321,23.72,39.54,0.95,0.12,787,1.3,319,3.9
+2871,2015,4,30,15,30,20,1.42,0.163,0.64,121,818,647,0,4,0.7,323,34,0,344,0.322,27.55,50.01,0.95,0.12,787,1.4,338,4.1
+2872,2015,4,30,16,30,18.4,1.39,0.174,0.64,108,718,454,0,7,1.3,185,19,0,194,0.323,31.81,61.2,0.95,0.12,787,1.5,177,3.8
+2873,2015,4,30,17,30,3.3,1.16,0.082,0.64,62,704,275,7,8,-5.4,151,50,7,166,0.347,52.83,72.43,0.95,0.14,786,0.8,42,6.5
+2874,2015,4,30,18,30,2.1,1.14,0.087,0.64,35,389,79,7,8,-5.3,47,5,7,47,0.348,58.04,83.58,0.95,0.14,787,0.8,43,6
+2875,2015,4,30,19,30,1,1.12,0.09,0.64,0,0,0,0,8,-5,0,0,0,0,0.349,64.05,94.42,0.95,0.14,788,0.7,44,5.7
+2876,2015,4,30,20,30,0.2,1.11,0.09,0.64,0,0,0,0,8,-4.9,0,0,0,0,0.351,68.81,104.32,0.95,0.14,788,0.7,46,5.5
+2877,2015,4,30,21,30,-0.7,1.13,0.086,0.64,0,0,0,0,8,-4.8,0,0,0,0,0.352,73.84,112.89,0.95,0.14,788,0.7,47,5.3
+2878,2015,4,30,22,30,-1.5,1.16,0.082,0.64,0,0,0,0,8,-4.8,0,0,0,0,0.353,77.99,119.51,0.95,0.14,788,0.7,47,5
+2879,2015,4,30,23,30,-2.1,1.17,0.08,0.64,0,0,0,0,6,-4.9,0,0,0,0,0.353,81.42,123.43,0.95,0.14,789,0.7,45,4.9
+2880,2016,5,1,0,30,-2.5,1.18,0.078,0.64,0,0,0,0,8,-4.9,0,0,0,0,0.352,83.85,124.07,0.95,0.14,789,0.7,43,4.9
+2881,2016,5,1,1,30,-3,1.19,0.072,0.64,0,0,0,0,6,-4.9,0,0,0,0,0.352,86.98,121.3,0.94,0.14,789,0.7,41,5
+2882,2016,5,1,2,30,-3.5,1.2,0.065,0.64,0,0,0,0,6,-4.9,0,0,0,0,0.351,90.28,115.59,0.94,0.14,789,0.6,41,5.1
+2883,2016,5,1,3,30,-4,1.21,0.061,0.64,0,0,0,0,6,-5,0,0,0,0,0.351,92.96,107.64,0.94,0.14,789,0.6,42,5.2
+2884,2016,5,1,4,30,-4.2,1.21,0.058,0.64,0,0,0,0,6,-5.2,0,0,0,0,0.351,92.93,98.17,0.94,0.14,789,0.6,42,5.3
+2885,2016,5,1,5,30,-3.3,1.21,0.055,0.64,17,258,29,7,8,-5.4,18,1,7,18,0.351,85.66,87.47,0.94,0.14,789,0.6,43,5.7
+2886,2016,5,1,6,30,-0.9,1.21,0.053,0.64,47,689,207,7,8,-5.5,102,337,7,180,0.351,71,76.55,0.94,0.14,789,0.6,50,6.5
+2887,2016,5,1,7,30,2.1,1.21,0.055,0.64,64,850,420,0,8,-6.4,64,850,5,420,0.352,53.58,65.21,0.94,0.14,789,0.6,59,7.1
+2888,2016,5,1,8,30,4.5,1.21,0.057,0.64,75,930,624,0,1,-6.9,75,930,0,624,0.351,43.44,53.88,0.94,0.14,789,0.6,63,7
+2889,2016,5,1,9,30,6.6,1.2,0.058,0.64,83,977,797,0,8,-6.7,187,737,0,726,0.35,37.95,43.01,0.93,0.14,789,0.6,63,6.8
+2890,2016,5,1,10,30,8.4,1.2,0.056,0.64,86,1000,921,0,7,-6.5,219,737,0,834,0.349,34.32,33.4,0.93,0.14,789,0.7,62,6.4
+2891,2016,5,1,11,30,9.9,1.29,0.049,0.64,85,1019,995,0,7,-6.2,401,414,0,771,0.347,31.65,26.7,0.93,0.14,788,0.7,62,5.9
+2892,2016,5,1,12,30,10.8,1.3,0.051,0.64,86,1020,1007,0,1,-5.9,86,1020,0,1007,0.346,30.57,25.47,0.93,0.14,788,0.7,61,5.5
+2893,2016,5,1,13,30,11.2,1.29,0.053,0.64,86,1009,956,0,1,-5.5,86,1009,0,956,0.346,30.63,30.41,0.93,0.14,788,0.7,59,5.2
+2894,2016,5,1,14,30,11.3,1.25,0.056,0.64,83,980,843,0,7,-5.2,383,200,0,538,0.347,31.11,39.19,0.93,0.14,788,0.8,56,5
+2895,2016,5,1,15,30,10.9,1.23,0.061,0.64,79,936,685,0,1,-5.1,79,936,0,685,0.348,32.21,49.7,0.93,0.14,788,0.8,54,4.8
+2896,2016,5,1,16,30,10,1.2,0.065,0.64,72,862,491,0,8,-5,194,415,0,395,0.35,34.4,60.91,0.94,0.14,788,0.8,53,4.6
+2897,2016,5,1,17,30,8.5,1.16,0.069,0.64,58,726,280,0,1,-4.8,58,726,0,280,0.352,38.68,72.27,0.94,0.13,788,0.8,51,3.9
+2898,2016,5,1,18,30,6.2,1.13,0.073,0.64,34,423,82,7,4,-3.2,55,4,7,55,0.354,50.81,83.41,0.94,0.13,789,0.8,47,3
+2899,2016,5,1,19,30,4.2,1.09,0.073,0.64,0,0,0,0,8,-2.6,0,0,0,0,0.356,61.07,94.24,0.93,0.13,789,0.8,45,2.8
+2900,2016,5,1,20,30,2.9,1.04,0.073,0.64,0,0,0,0,1,-2.7,0,0,0,0,0.358,66.52,104.11,0.93,0.13,790,0.8,48,2.7
+2901,2016,5,1,21,30,1.6,1.02,0.072,0.64,0,0,0,0,4,-2.7,0,0,0,0,0.359,73.33,112.66,0.93,0.13,790,0.8,54,2.1
+2902,2016,5,1,22,30,0.4,1.01,0.069,0.64,0,0,0,0,4,-2.4,0,0,0,0,0.36,81.32,119.24,0.93,0.13,791,0.8,61,1.3
+2903,2016,5,1,23,30,-0.5,1.01,0.067,0.64,0,0,0,0,4,-2.3,0,0,0,0,0.361,87.64,123.14,0.93,0.13,791,0.8,61,0.8
+2904,2016,5,2,0,30,-1,1.01,0.067,0.64,0,0,0,0,1,-2.3,0,0,0,0,0.361,90.96,123.77,0.93,0.13,791,0.8,51,0.6
+2905,2016,5,2,1,30,-1.4,1,0.068,0.64,0,0,0,0,4,-2.3,0,0,0,0,0.361,93.61,121.01,0.93,0.13,791,0.8,37,0.5
+2906,2016,5,2,2,30,-1.7,1,0.069,0.64,0,0,0,0,4,-2.3,0,0,0,0,0.362,95.46,115.31,0.93,0.13,791,0.8,33,0.6
+2907,2016,5,2,3,30,-2.1,1,0.07,0.64,0,0,0,0,1,-2.4,0,0,0,0,0.363,98.05,107.39,0.93,0.13,791,0.8,39,0.6
+2908,2016,5,2,4,30,-2.2,1,0.071,0.64,0,0,0,0,1,-2.4,0,0,0,0,0.363,98.82,97.93,0.93,0.13,792,0.8,44,0.6
+2909,2016,5,2,5,30,-0.7,0.99,0.072,0.64,19,210,29,0,1,-2.3,19,210,0,29,0.363,88.93,87.27,0.93,0.13,792,0.8,47,0.7
+2910,2016,5,2,6,30,2.6,1,0.073,0.64,52,642,204,0,1,-1.6,52,642,0,204,0.364,73.67,76.34,0.92,0.13,792,0.7,63,0.5
+2911,2016,5,2,7,30,6,1,0.075,0.64,71,812,414,0,1,-0.7,71,812,0,414,0.363,62.26,65.01,0.92,0.13,792,0.7,172,0.3
+2912,2016,5,2,8,30,8.7,1,0.077,0.64,84,899,616,0,0,-1.1,84,899,0,616,0.362,50.2,53.68,0.92,0.13,792,0.7,275,0.5
+2913,2016,5,2,9,30,10.7,0.99,0.077,0.64,92,950,789,0,0,-2.2,92,950,0,789,0.361,40.58,42.79,0.92,0.13,792,0.7,299,0.5
+2914,2016,5,2,10,30,12.4,0.98,0.073,0.64,96,988,923,0,0,-3,96,988,0,923,0.36,34.1,33.14,0.92,0.13,792,0.6,330,0.5
+2915,2016,5,2,11,30,13.9,1.03,0.059,0.64,90,1014,999,0,1,-3.7,90,1014,0,999,0.358,29.28,26.41,0.91,0.13,792,0.6,180,0.6
+2916,2016,5,2,12,30,15,1.02,0.057,0.64,90,1018,1011,0,1,-4.4,90,1018,0,1011,0.357,25.94,25.18,0.91,0.13,791,0.6,18,0.9
+2917,2016,5,2,13,30,15.7,1.01,0.057,0.64,88,1009,960,0,3,-5.1,509,260,0,735,0.355,23.5,30.17,0.91,0.13,791,0.6,24,1.3
+2918,2016,5,2,14,30,15.9,1,0.061,0.64,87,984,851,0,1,-5.9,87,984,0,851,0.355,21.8,38.99,0.92,0.13,791,0.6,26,1.8
+2919,2016,5,2,15,30,15.7,1,0.064,0.64,82,949,697,0,1,-6.9,82,949,0,697,0.354,20.5,49.53,0.92,0.13,790,0.5,29,2.4
+2920,2016,5,2,16,30,14.8,0.99,0.066,0.64,73,878,502,0,1,-8,73,878,0,502,0.353,20.02,60.75,0.92,0.13,790,0.5,30,2.7
+2921,2016,5,2,17,30,12.6,0.97,0.067,0.64,59,747,288,0,1,-8.6,59,747,0,288,0.353,21.96,72.11,0.92,0.14,790,0.5,33,2.2
+2922,2016,5,2,18,30,8.9,0.92,0.069,0.64,34,455,88,0,1,-3.7,34,455,0,88,0.353,40.77,83.24,0.92,0.14,790,0.4,37,1.6
+2923,2016,5,2,19,30,5.9,0.88,0.069,0.64,0,0,0,0,1,-3.9,0,0,0,0,0.352,49.53,94.05,0.92,0.14,791,0.4,41,1.5
+2924,2016,5,2,20,30,4.8,0.86,0.07,0.64,0,0,0,0,1,-4.9,0,0,0,0,0.351,49.33,103.9,0.92,0.14,791,0.4,41,1.4
+2925,2016,5,2,21,30,4.3,0.86,0.07,0.64,0,0,0,0,1,-5.8,0,0,0,0,0.349,47.97,112.42,0.92,0.14,792,0.4,35,1.3
+2926,2016,5,2,22,30,3.9,0.87,0.07,0.64,0,0,0,0,1,-6.8,0,0,0,0,0.348,45.54,118.98,0.92,0.14,792,0.4,25,1.2
+2927,2016,5,2,23,30,3.2,0.89,0.071,0.64,0,0,0,0,1,-7.5,0,0,0,0,0.346,45.38,122.86,0.92,0.14,791,0.5,17,1.2
+2928,2016,5,3,0,30,2.6,0.91,0.071,0.64,0,0,0,0,1,-8,0,0,0,0,0.344,45.71,123.47,0.92,0.14,791,0.5,12,1.2
+2929,2016,5,3,1,30,1.9,0.93,0.072,0.64,0,0,0,0,1,-8.4,0,0,0,0,0.342,46.39,120.72,0.92,0.14,791,0.5,5,1.2
+2930,2016,5,3,2,30,1.2,0.96,0.073,0.64,0,0,0,0,0,-8.7,0,0,0,0,0.342,47.81,115.04,0.92,0.14,791,0.5,180,1.2
+2931,2016,5,3,3,30,0.4,0.98,0.073,0.64,0,0,0,0,1,-8.8,0,0,0,0,0.343,49.94,107.14,0.92,0.14,791,0.5,180,1.3
+2932,2016,5,3,4,30,-0.1,1,0.072,0.64,0,0,0,0,1,-8.9,0,0,0,0,0.344,51.45,97.71,0.92,0.14,792,0.5,4,1.3
+2933,2016,5,3,5,30,1.5,1.01,0.07,0.64,20,244,32,0,1,-8.5,20,244,0,32,0.346,47.51,87.06,0.92,0.14,792,0.5,7,1.6
+2934,2016,5,3,6,30,5.1,1.01,0.067,0.64,51,673,213,0,1,-6.4,51,673,0,213,0.347,43.28,76.14,0.92,0.14,793,0.5,11,2.2
+2935,2016,5,3,7,30,9.2,1,0.065,0.64,68,835,423,0,0,-8.1,68,835,0,423,0.347,28.58,64.81,0.92,0.14,793,0.6,22,2.8
+2936,2016,5,3,8,30,12.6,1.01,0.063,0.64,78,922,627,0,0,-9.1,78,922,0,627,0.346,21.19,53.47,0.92,0.14,793,0.6,31,3.2
+2937,2016,5,3,9,30,14.7,1.02,0.062,0.64,86,971,801,0,0,-8,86,971,0,801,0.344,20.13,42.57,0.92,0.14,793,0.6,37,3.2
+2938,2016,5,3,10,30,16.2,1.03,0.061,0.64,90,999,929,0,0,-6.8,90,999,0,929,0.341,20.05,32.9,0.92,0.14,793,0.6,42,3.1
+2939,2016,5,3,11,30,17.4,1.25,0.05,0.64,86,1024,1005,0,0,-6,86,1024,0,1005,0.337,19.79,26.12,0.92,0.14,793,0.6,46,2.9
+2940,2016,5,3,12,30,18.4,1.26,0.051,0.64,87,1025,1016,0,0,-5.4,87,1025,0,1016,0.333,19.36,24.9,0.92,0.14,793,0.6,50,2.8
+2941,2016,5,3,13,30,18.9,1.27,0.051,0.64,85,1016,966,0,0,-5.2,85,1016,0,966,0.329,19.13,29.93,0.92,0.14,793,0.6,52,2.7
+2942,2016,5,3,14,30,19.1,1.5,0.042,0.64,76,1006,859,0,0,-5.1,76,1006,0,859,0.326,18.93,38.79,0.91,0.14,792,0.6,53,2.7
+2943,2016,5,3,15,30,18.8,1.48,0.041,0.64,70,971,702,0,0,-5.1,70,971,0,702,0.323,19.28,49.36,0.91,0.14,792,0.6,54,2.6
+2944,2016,5,3,16,30,18,1.48,0.039,0.64,60,912,508,0,0,-5.1,60,912,0,508,0.321,20.31,60.59,0.9,0.14,792,0.6,57,2.6
+2945,2016,5,3,17,30,15.8,1.46,0.036,0.64,48,803,297,0,1,-4.6,48,803,0,297,0.321,24.2,71.95,0.9,0.14,792,0.6,62,1.8
+2946,2016,5,3,18,30,12.3,1.44,0.035,0.64,28,546,94,0,1,1.4,28,546,0,94,0.321,47.26,83.08,0.89,0.14,792,0.6,70,1.2
+2947,2016,5,3,19,30,9.9,1.42,0.034,0.64,0,0,0,0,1,0.5,0,0,0,0,0.322,51.85,93.86,0.89,0.14,793,0.6,77,1.3
+2948,2016,5,3,20,30,8.9,1.41,0.034,0.64,0,0,0,0,1,-0.3,0,0,0,0,0.323,52.54,103.69,0.89,0.14,793,0.6,83,1.3
+2949,2016,5,3,21,30,8.3,1.4,0.034,0.64,0,0,0,0,1,-0.7,0,0,0,0,0.325,52.92,112.19,0.89,0.14,793,0.6,90,1.3
+2950,2016,5,3,22,30,7.7,1.41,0.034,0.64,0,0,0,0,1,-1.1,0,0,0,0,0.326,53.57,118.72,0.89,0.14,793,0.6,96,1.2
+2951,2016,5,3,23,30,7.2,1.42,0.034,0.64,0,0,0,0,1,-1.4,0,0,0,0,0.328,54.39,122.58,0.89,0.14,793,0.6,103,1.1
+2952,2016,5,4,0,30,6.4,1.44,0.034,0.64,0,0,0,0,1,-1.7,0,0,0,0,0.329,56.23,123.18,0.89,0.14,793,0.6,108,1
+2953,2016,5,4,1,30,5.5,1.47,0.034,0.64,0,0,0,0,1,-1.8,0,0,0,0,0.33,59.19,120.44,0.89,0.14,793,0.6,110,0.9
+2954,2016,5,4,2,30,4.6,1.48,0.035,0.64,0,0,0,0,1,-1.9,0,0,0,0,0.331,62.54,114.78,0.88,0.14,793,0.6,107,0.9
+2955,2016,5,4,3,30,3.8,1.48,0.035,0.64,0,0,0,0,1,-2,0,0,0,0,0.331,65.71,106.9,0.88,0.14,793,0.6,109,0.9
+2956,2016,5,4,4,30,3.4,1.46,0.036,0.64,0,0,0,0,1,-2.2,0,0,0,0,0.332,66.9,97.48,0.88,0.14,793,0.6,117,0.9
+2957,2016,5,4,5,30,4.9,1.43,0.038,0.64,17,352,37,0,1,-2.1,17,352,0,37,0.332,60.54,86.87,0.88,0.14,794,0.6,131,1
+2958,2016,5,4,6,30,8.2,1.4,0.039,0.64,43,730,220,0,1,-0.8,43,730,0,220,0.333,52.92,75.95,0.89,0.14,794,0.6,149,1
+2959,2016,5,4,7,30,12.5,1.39,0.041,0.64,58,876,433,0,0,-1.5,58,876,0,433,0.332,37.84,64.62,0.89,0.14,794,0.6,183,1.6
+2960,2016,5,4,8,30,16.5,1.37,0.044,0.64,68,948,635,0,0,-2.5,68,948,0,635,0.331,27.23,53.28,0.9,0.14,794,0.6,211,2.5
+2961,2016,5,4,9,30,18.8,1.36,0.05,0.64,78,980,803,0,0,-3.2,78,980,0,803,0.327,22.25,42.36,0.91,0.14,794,0.7,219,3.2
+2962,2016,5,4,10,30,20.2,1.36,0.052,0.64,84,1005,929,0,1,-3.4,84,1005,0,929,0.323,20.21,32.65,0.91,0.14,793,0.7,222,3.7
+2963,2016,5,4,11,30,21.2,1.42,0.048,0.64,83,1021,1002,0,0,-3.3,83,1021,0,1002,0.318,19.09,25.84,0.9,0.14,793,0.7,223,4
+2964,2016,5,4,12,30,21.9,1.42,0.048,0.64,84,1023,1014,0,0,-3.3,84,1023,0,1014,0.314,18.25,24.62,0.9,0.14,792,0.7,222,4.1
+2965,2016,5,4,13,30,22.2,1.39,0.049,0.64,83,1014,964,0,1,-3.4,83,1014,0,964,0.312,17.75,29.69,0.91,0.14,792,0.7,218,4
+2966,2016,5,4,14,30,22.1,1.25,0.056,0.64,83,986,854,0,1,-3.7,83,986,0,854,0.312,17.54,38.6,0.91,0.14,791,0.7,214,3.8
+2967,2016,5,4,15,30,21.6,1.26,0.06,0.64,79,945,697,0,1,-4,79,945,0,697,0.313,17.73,49.19,0.92,0.14,790,0.7,209,3.6
+2968,2016,5,4,16,30,20.6,1.27,0.064,0.64,71,874,503,0,1,-4,71,874,0,503,0.312,18.83,60.43,0.92,0.14,790,0.7,205,3.4
+2969,2016,5,4,17,30,18.1,1.29,0.066,0.64,58,742,289,0,1,-3.8,58,742,0,289,0.31,22.28,71.79,0.92,0.14,790,0.8,203,2.3
+2970,2016,5,4,18,30,14.5,1.32,0.071,0.64,35,462,92,0,1,2.3,35,462,0,92,0.31,43.88,82.91,0.93,0.14,790,0.7,203,1.4
+2971,2016,5,4,19,30,12.4,1.33,0.078,0.64,0,0,0,0,3,1.6,0,0,0,0,0.31,47.73,93.68,0.93,0.14,790,0.7,203,1.3
+2972,2016,5,4,20,30,11.7,1.33,0.08,0.64,0,0,0,0,1,0.7,0,0,0,0,0.31,46.72,103.48,0.93,0.14,790,0.8,203,1.4
+2973,2016,5,4,21,30,11.1,1.32,0.08,0.64,0,0,0,0,3,0,0,0,0,0,0.309,46.47,111.95,0.93,0.14,790,0.8,201,1.3
+2974,2016,5,4,22,30,10.4,1.31,0.082,0.64,0,0,0,0,8,-0.4,0,0,0,0,0.308,47.04,118.46,0.93,0.14,790,0.8,199,1.3
+2975,2016,5,4,23,30,9.8,1.28,0.085,0.64,0,0,0,0,8,-0.7,0,0,0,0,0.308,47.9,122.3,0.93,0.14,790,0.8,199,1.3
+2976,2016,5,5,0,30,9.2,1.26,0.088,0.64,0,0,0,0,8,-1,0,0,0,0,0.311,48.79,122.9,0.93,0.14,790,0.8,201,1.3
+2977,2016,5,5,1,30,8.6,1.22,0.094,0.64,0,0,0,0,8,-1.4,0,0,0,0,0.314,49.52,120.16,0.93,0.14,790,0.8,200,1.3
+2978,2016,5,5,2,30,7.8,1.21,0.095,0.64,0,0,0,0,8,-1.7,0,0,0,0,0.314,51.06,114.52,0.93,0.14,790,0.8,194,1.3
+2979,2016,5,5,3,30,7.1,1.21,0.089,0.64,0,0,0,0,8,-2,0,0,0,0,0.313,52.55,106.66,0.93,0.14,790,0.8,185,1.3
+2980,2016,5,5,4,30,6.7,1.21,0.091,0.64,0,0,0,0,8,-2,0,0,0,0,0.312,53.84,97.26,0.93,0.14,790,0.8,177,1.4
+2981,2016,5,5,5,30,8.2,1.21,0.094,0.64,22,220,35,7,8,-1.6,26,2,7,26,0.311,50.07,86.67,0.93,0.14,790,0.9,173,1.5
+2982,2016,5,5,6,30,11.6,1.2,0.096,0.64,59,614,210,7,8,0.8,128,128,7,159,0.311,47.44,75.76,0.94,0.14,790,0.9,172,2
+2983,2016,5,5,7,30,15.8,1.2,0.098,0.64,80,783,418,0,4,-1.1,231,272,0,349,0.311,31.42,64.43,0.94,0.14,790,0.9,184,3
+2984,2016,5,5,8,30,19.3,1.19,0.098,0.64,93,874,618,0,8,-3,247,468,0,527,0.309,21.88,53.08,0.94,0.14,790,0.9,196,3.9
+2985,2016,5,5,9,30,21.5,1.17,0.098,0.64,103,921,786,0,8,-3,293,501,0,664,0.306,19.2,42.15,0.94,0.14,790,1,199,4.2
+2986,2016,5,5,10,30,23,1.15,0.095,0.64,107,958,915,0,7,-2.1,178,739,0,802,0.305,18.74,32.42,0.93,0.14,789,0.9,200,4.3
+2987,2016,5,5,11,30,24,1.13,0.079,0.64,102,985,990,0,1,-1.8,102,985,0,990,0.304,17.99,25.57,0.93,0.14,789,0.9,199,4.3
+2988,2016,5,5,12,30,24.7,1.06,0.075,0.64,100,990,1002,0,8,-1.8,412,353,0,734,0.303,17.24,24.34,0.93,0.14,788,0.9,198,4.4
+2989,2016,5,5,13,30,25,1.04,0.075,0.64,98,977,949,0,7,-1.9,285,624,0,829,0.302,16.79,29.46,0.93,0.14,787,1,199,4.4
+2990,2016,5,5,14,30,24.9,1.08,0.072,0.64,92,957,842,0,8,-2.1,232,584,0,690,0.302,16.68,38.41,0.93,0.14,787,1,199,4.3
+2991,2016,5,5,15,30,24.2,1.18,0.084,0.64,91,906,685,0,4,-2.3,187,0,0,187,0.304,17.16,49.03,0.94,0.14,786,1,196,4
+2992,2016,5,5,16,30,23.1,1.24,0.093,0.64,83,826,492,0,8,-2.3,168,565,0,448,0.306,18.24,60.27,0.94,0.14,786,1,190,3.3
+2993,2016,5,5,17,30,20.6,1.28,0.09,0.64,65,699,285,7,8,-1.9,159,142,7,203,0.307,21.93,71.63,0.94,0.13,785,1,175,2
+2994,2016,5,5,18,30,16.9,1.29,0.085,0.64,37,427,91,7,7,5.3,68,48,7,74,0.307,46.27,82.74,0.94,0.13,785,1,150,1.3
+2995,2016,5,5,19,30,14.2,1.29,0.082,0.64,0,0,0,0,8,3.8,0,0,0,0,0.308,49.63,93.49,0.94,0.13,785,1,135,1.5
+2996,2016,5,5,20,30,12.9,1.3,0.079,0.64,0,0,0,0,8,3.1,0,0,0,0,0.308,51.41,103.28,0.95,0.13,785,1.1,141,1.6
+2997,2016,5,5,21,30,12.1,1.31,0.081,0.64,0,0,0,0,8,3.2,0,0,0,0,0.309,54.43,111.73,0.95,0.13,785,1.2,163,1.5
+2998,2016,5,5,22,30,11.5,1.31,0.089,0.64,0,0,0,0,4,3.6,0,0,0,0,0.31,58.2,118.21,0.96,0.13,785,1.4,196,1.7
+2999,2016,5,5,23,30,11.4,1.3,0.111,0.64,0,0,0,0,8,4,0,0,0,0,0.31,60.52,122.02,0.96,0.13,786,1.5,221,2.3
+3000,2016,5,6,0,30,11,1.31,0.129,0.64,0,0,0,0,4,4.4,0,0,0,0,0.309,63.7,122.62,0.96,0.13,786,1.6,225,2.4
+3001,2016,5,6,1,30,9.9,1.3,0.15,0.64,0,0,0,0,1,5.2,0,0,0,0,0.308,72.35,119.89,0.96,0.13,786,1.7,198,1.6
+3002,2016,5,6,2,30,8.9,1.29,0.2,0.64,0,0,0,0,8,6.1,0,0,0,0,0.308,82.82,114.26,0.97,0.13,786,1.8,150,1.4
+3003,2016,5,6,3,30,8.3,1.29,0.255,0.64,0,0,0,0,6,6.6,0,0,0,0,0.313,89.25,106.43,0.97,0.13,786,1.8,115,1.8
+3004,2016,5,6,4,30,8.1,1.29,0.206,0.64,0,0,0,0,6,6.4,0,0,0,0,0.319,89.2,97.05,0.96,0.13,786,1.7,90,2.2
+3005,2016,5,6,5,30,8.9,1.29,0.131,0.64,24,174,35,7,4,6.2,16,0,7,16,0.323,83.02,86.48,0.95,0.13,785,1.5,74,2.9
+3006,2016,5,6,6,30,11,1.29,0.112,0.64,62,576,205,7,8,6.2,123,109,7,151,0.328,72.32,75.57,0.95,0.13,786,1.5,79,3.4
+3007,2016,5,6,7,30,13.2,1.29,0.12,0.64,86,736,406,0,9,6.3,80,1,0,80,0.329,62.83,64.24,0.95,0.13,786,1.6,109,4
+3008,2016,5,6,8,30,13.8,1.3,0.143,0.64,110,808,597,0,6,6,267,44,0,293,0.326,59.2,52.9,0.95,0.13,786,1.6,133,4.2
+3009,2016,5,6,9,30,13.9,1.32,0.125,0.64,113,886,772,0,8,5.9,348,362,0,618,0.325,58.52,41.95,0.94,0.13,786,1.4,121,3.7
+3010,2016,5,6,10,30,15.7,1.32,0.105,0.64,109,937,902,0,1,5.7,109,937,0,902,0.328,51.34,32.18,0.93,0.13,785,1.3,102,3.5
+3011,2016,5,6,11,30,18.3,1.39,0.074,0.64,96,976,978,0,0,5,96,976,0,978,0.332,41.65,25.3,0.92,0.13,784,1.3,92,3.5
+3012,2016,5,6,12,30,20.1,1.39,0.07,0.64,95,978,988,0,1,4.5,95,978,0,988,0.336,35.78,24.07,0.93,0.13,784,1.4,84,3.7
+3013,2016,5,6,13,30,20.6,1.36,0.082,0.64,99,956,934,0,4,4.3,494,258,0,720,0.338,34.25,29.23,0.94,0.13,783,1.5,76,3.8
+3014,2016,5,6,14,30,19.4,1.29,0.107,0.64,107,906,819,0,9,4.5,127,1,0,128,0.339,37.49,38.23,0.96,0.13,782,1.7,83,3.8
+3015,2016,5,6,15,30,16.8,1.25,0.156,0.64,120,814,655,0,9,5.7,30,0,0,30,0.341,47.8,48.86,0.96,0.13,782,1.8,115,3.5
+3016,2016,5,6,16,30,14.7,1.23,0.176,0.64,112,714,468,0,9,6.8,11,0,0,11,0.344,59.13,60.11,0.96,0.13,782,1.7,147,1.9
+3017,2016,5,6,17,30,13.4,1.24,0.154,0.64,82,592,270,7,9,6.9,41,0,7,41,0.346,64.61,71.47,0.96,0.14,782,1.7,251,0.8
+3018,2016,5,6,18,30,11.6,1.25,0.163,0.64,45,298,84,7,9,7.6,17,0,7,17,0.342,76.62,82.58,0.96,0.14,783,1.7,288,1
+3019,2016,5,6,19,30,9.6,1.21,0.215,0.64,0,0,0,0,6,8.1,0,0,0,0,0.339,90.08,93.31,0.97,0.14,784,1.7,223,1.4
+3020,2016,5,6,20,30,8.2,1.2,0.206,0.64,0,0,0,0,8,7.1,0,0,0,0,0.343,92.76,103.08,0.97,0.14,784,1.6,231,1.6
+3021,2016,5,6,21,30,7.3,1.19,0.168,0.64,0,0,0,0,7,6.4,0,0,0,0,0.347,93.76,111.5,0.96,0.14,784,1.4,290,1
+3022,2016,5,6,22,30,6.4,1.18,0.132,0.64,0,0,0,0,8,6.1,0,0,0,0,0.347,97.93,117.96,0.95,0.14,784,1.4,168,0.8
+3023,2016,5,6,23,30,6,1.19,0.133,0.64,0,0,0,0,6,5.7,0,0,0,0,0.346,98.03,121.75,0.95,0.14,783,1.4,21,0.8
+3024,2016,5,7,0,30,5.8,1.2,0.151,0.64,0,0,0,0,6,5.7,0,0,0,0,0.346,99.55,122.34,0.95,0.14,783,1.4,37,0.9
+3025,2016,5,7,1,30,5.3,1.24,0.121,0.64,0,0,0,0,8,5.3,0,0,0,0,0.347,100,119.62,0.94,0.14,783,1.3,34,1
+3026,2016,5,7,2,30,4.7,1.25,0.099,0.64,0,0,0,0,8,4.7,0,0,0,0,0.347,100,114.01,0.93,0.14,782,1.2,29,1.1
+3027,2016,5,7,3,30,4.1,1.26,0.096,0.64,0,0,0,0,6,4.1,0,0,0,0,0.348,100,106.2,0.93,0.14,782,1.1,26,1.2
+3028,2016,5,7,4,30,3.9,1.27,0.096,0.64,0,0,0,0,6,3.9,0,0,0,0,0.348,100,96.84,0.93,0.14,782,1.1,29,1.2
+3029,2016,5,7,5,30,5,1.27,0.097,0.64,23,234,38,7,6,5,16,0,7,16,0.349,99.68,86.3,0.93,0.14,782,1.1,32,1.8
+3030,2016,5,7,6,30,7.2,1.28,0.098,0.64,59,612,213,7,6,5.3,87,8,7,89,0.351,87.73,75.39,0.94,0.14,782,1.1,34,2.2
+3031,2016,5,7,7,30,9.5,1.28,0.097,0.64,79,780,420,0,8,5.4,167,17,0,174,0.352,75.73,64.07,0.94,0.14,782,1.1,44,2.1
+3032,2016,5,7,8,30,11.5,1.29,0.099,0.64,93,867,618,0,8,4.4,45,0,0,45,0.353,61.78,52.71,0.94,0.14,782,1.1,59,1.9
+3033,2016,5,7,9,30,12.9,1.29,0.109,0.64,107,909,785,0,6,2.6,47,0,0,47,0.353,49.7,41.75,0.95,0.14,782,1.1,79,1.6
+3034,2016,5,7,10,30,13.4,1.29,0.124,0.64,121,928,907,0,6,1.4,211,1,0,212,0.353,43.95,31.96,0.95,0.14,781,1.1,131,1.7
+3035,2016,5,7,11,30,12.7,1.28,0.152,0.64,138,922,973,0,1,0.8,138,922,0,973,0.351,44.21,25.03,0.96,0.14,782,1.1,188,3.3
+3036,2016,5,7,12,30,10.6,1.27,0.182,0.64,153,899,975,0,8,1.1,444,32,0,474,0.35,51.92,23.8,0.96,0.14,782,1.2,214,6
+3037,2016,5,7,13,30,8.7,1.26,0.179,0.64,149,893,929,0,6,1.5,430,292,0,685,0.348,60.51,29.01,0.96,0.14,783,1.1,224,7.8
+3038,2016,5,7,14,30,8.1,1.23,0.153,0.64,131,889,831,0,6,0.7,257,6,0,262,0.347,59.59,38.04,0.96,0.14,782,1,228,7.8
+3039,2016,5,7,15,30,8,1.19,0.122,0.64,108,869,681,0,6,-0.6,143,1,0,143,0.346,54.55,48.7,0.95,0.14,782,1,230,6.6
+3040,2016,5,7,16,30,7.7,1.18,0.107,0.64,89,813,496,0,6,-1.6,74,0,0,74,0.345,51.7,59.96,0.95,0.14,782,0.9,228,5.5
+3041,2016,5,7,17,30,7.1,1.16,0.093,0.64,67,699,291,7,6,-2.1,101,7,7,103,0.345,51.97,71.31,0.94,0.13,782,0.9,221,4.5
+3042,2016,5,7,18,30,6,1.15,0.084,0.64,38,434,96,7,6,-1.7,19,0,7,19,0.346,57.74,82.41,0.95,0.13,782,1,209,3.6
+3043,2016,5,7,19,30,4.9,1.15,0.095,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.348,65.29,93.13,0.95,0.13,783,1,199,3.1
+3044,2016,5,7,20,30,4.2,1.16,0.103,0.64,0,0,0,0,6,-0.5,0,0,0,0,0.35,71.25,102.88,0.96,0.13,783,1,203,2.8
+3045,2016,5,7,21,30,3.5,1.17,0.104,0.64,0,0,0,0,8,-0.1,0,0,0,0,0.351,77.4,111.27,0.96,0.13,783,1.1,211,2.7
+3046,2016,5,7,22,30,2.9,1.17,0.108,0.64,0,0,0,0,8,0,0,0,0,0,0.352,81.15,117.71,0.96,0.13,782,1.1,212,3
+3047,2016,5,7,23,30,2.3,1.18,0.123,0.64,0,0,0,0,6,0.1,0,0,0,0,0.353,85.1,121.49,0.96,0.13,782,1.1,208,3.4
+3048,2016,5,8,0,30,1.7,1.19,0.132,0.64,0,0,0,0,6,0.3,0,0,0,0,0.356,90.1,122.07,0.96,0.13,782,1.1,202,3.8
+3049,2016,5,8,1,30,1.3,1.19,0.12,0.64,0,0,0,0,6,0.3,0,0,0,0,0.359,93.36,119.36,0.96,0.13,781,1.1,199,4
+3050,2016,5,8,2,30,1.1,1.22,0.121,0.64,0,0,0,0,6,0.4,0,0,0,0,0.362,95.05,113.77,0.96,0.13,781,1.1,199,3.8
+3051,2016,5,8,3,30,0.9,1.24,0.121,0.64,0,0,0,0,6,0.4,0,0,0,0,0.364,96.45,105.98,0.96,0.13,780,1.1,201,3.7
+3052,2016,5,8,4,30,0.9,1.25,0.114,0.64,0,0,0,0,6,0.4,0,0,0,0,0.364,96.14,96.64,0.96,0.13,780,1.1,204,3.5
+3053,2016,5,8,5,30,1.1,1.27,0.12,0.64,26,211,40,7,8,0.3,17,0,7,17,0.365,94.4,86.11,0.96,0.13,779,1.1,207,3.6
+3054,2016,5,8,6,30,1.6,1.27,0.124,0.64,66,577,213,7,6,0.4,48,1,7,48,0.364,91.9,75.21,0.96,0.13,779,1.1,213,4
+3055,2016,5,8,7,30,2.3,1.27,0.124,0.64,89,749,418,0,8,0.6,103,2,0,103,0.363,88.79,63.89,0.96,0.13,779,1.1,220,4.4
+3056,2016,5,8,8,30,3,1.26,0.132,0.64,107,834,614,0,8,0.8,72,0,0,72,0.362,85.7,52.54,0.96,0.13,779,1.1,226,4.8
+3057,2016,5,8,9,30,3.9,1.26,0.133,0.64,118,888,783,0,8,0.9,105,0,0,105,0.359,80.5,41.56,0.96,0.13,779,1.1,231,5.2
+3058,2016,5,8,10,30,4.8,1.25,0.128,0.64,122,924,908,0,8,0.7,232,2,0,233,0.357,75.01,31.74,0.96,0.13,779,1.1,234,5.5
+3059,2016,5,8,11,30,5.5,1.26,0.136,0.64,130,934,978,0,6,0.7,345,8,0,352,0.355,71.07,24.77,0.96,0.13,779,1.1,233,5.5
+3060,2016,5,8,12,30,6.2,1.25,0.125,0.64,125,944,990,0,6,0.8,252,2,0,254,0.353,68.24,23.54,0.96,0.13,779,1.1,231,5.5
+3061,2016,5,8,13,30,6.8,1.24,0.114,0.64,117,942,943,0,6,0.9,192,1,0,193,0.352,66.23,28.79,0.95,0.13,778,1.1,228,5.4
+3062,2016,5,8,14,30,7.4,1.24,0.11,0.64,110,921,837,0,6,1,214,2,0,216,0.35,64.03,37.86,0.95,0.13,778,1.1,226,5.1
+3063,2016,5,8,15,30,7.9,1.25,0.101,0.64,97,887,684,0,6,1.1,159,1,0,160,0.347,62.33,48.54,0.94,0.13,778,1.1,224,4.7
+3064,2016,5,8,16,30,7.8,1.26,0.094,0.64,83,823,497,0,8,1.2,127,3,0,129,0.344,62.9,59.8,0.94,0.13,777,1.1,222,4.2
+3065,2016,5,8,17,30,7.1,1.27,0.097,0.64,68,687,289,7,8,1.3,64,1,7,64,0.34,66.49,71.16,0.95,0.13,778,1.2,217,3.5
+3066,2016,5,8,18,30,5.6,1.27,0.109,0.64,41,397,95,7,8,1.8,30,0,7,30,0.338,76.41,82.25,0.95,0.13,778,1.2,217,3.1
+3067,2016,5,8,19,30,4.2,1.27,0.125,0.64,0,0,0,0,8,2.2,0,0,0,0,0.338,87.04,92.95,0.96,0.13,779,1.2,223,3.2
+3068,2016,5,8,20,30,3.4,1.27,0.134,0.64,0,0,0,0,8,2.3,0,0,0,0,0.338,92.68,102.68,0.96,0.13,779,1.3,229,3.3
+3069,2016,5,8,21,30,2.8,1.26,0.134,0.64,0,0,0,0,8,2.3,0,0,0,0,0.338,96.85,111.05,0.96,0.13,779,1.3,230,3.2
+3070,2016,5,8,22,30,2.4,1.25,0.132,0.64,0,0,0,0,8,2.2,0,0,0,0,0.336,98.89,117.46,0.96,0.13,779,1.3,230,3
+3071,2016,5,8,23,30,2,1.25,0.131,0.64,0,0,0,0,6,2,0,0,0,0,0.334,99.97,121.22,0.96,0.13,778,1.3,228,2.9
+3072,2016,5,9,0,30,1.7,1.26,0.126,0.64,0,0,0,0,6,1.7,0,0,0,0,0.333,100,121.8,0.96,0.13,778,1.3,225,2.7
+3073,2016,5,9,1,30,1.3,1.27,0.118,0.64,0,0,0,0,8,1.3,0,0,0,0,0.333,100,119.1,0.96,0.13,778,1.3,226,2.5
+3074,2016,5,9,2,30,1,1.27,0.108,0.64,0,0,0,0,8,1,0,0,0,0,0.334,100,113.53,0.95,0.13,778,1.3,231,2.2
+3075,2016,5,9,3,30,0.6,1.27,0.101,0.64,0,0,0,0,8,0.6,0,0,0,0,0.337,100,105.76,0.95,0.13,778,1.3,235,1.7
+3076,2016,5,9,4,30,0.6,1.29,0.106,0.64,0,0,0,0,8,0.6,0,0,0,0,0.339,100,96.44,0.95,0.13,778,1.3,242,1.4
+3077,2016,5,9,5,30,1.7,1.3,0.114,0.64,26,227,42,7,8,1,17,0,7,17,0.342,95.14,85.93,0.96,0.13,778,1.3,262,1.5
+3078,2016,5,9,6,30,3.5,1.27,0.117,0.64,64,582,214,7,4,1.9,66,0,7,66,0.344,89.35,75.04,0.95,0.13,778,1.4,277,1.8
+3079,2016,5,9,7,30,5.7,1.2,0.113,0.64,85,756,420,0,4,3.1,171,3,0,172,0.346,83.33,63.72,0.95,0.13,779,1.3,286,2.5
+3080,2016,5,9,8,30,8.4,1.15,0.096,0.64,91,866,620,0,1,3.8,91,866,0,620,0.347,72.57,52.37,0.93,0.13,779,1.2,301,3.5
+3081,2016,5,9,9,30,11.4,1.09,0.073,0.64,89,945,798,0,3,2.9,419,287,0,634,0.348,56.06,41.38,0.92,0.13,779,1,306,4
+3082,2016,5,9,10,30,14.1,0.99,0.056,0.64,86,990,930,0,1,1.1,86,990,0,930,0.349,41.32,31.52,0.92,0.13,779,0.9,298,3.9
+3083,2016,5,9,11,30,16.2,0.97,0.068,0.64,96,1001,1007,0,1,-0.4,96,1001,0,1007,0.35,32.19,24.52,0.92,0.13,779,0.7,280,3.7
+3084,2016,5,9,12,30,17.5,0.93,0.065,0.64,95,1006,1018,0,1,-1.4,95,1006,0,1018,0.349,27.65,23.28,0.92,0.13,779,0.7,259,3.9
+3085,2016,5,9,13,30,18.2,0.92,0.063,0.64,92,994,964,0,1,-1.7,92,994,0,964,0.348,25.79,28.57,0.92,0.13,779,0.8,243,4.4
+3086,2016,5,9,14,30,18.3,0.91,0.059,0.64,86,976,858,0,1,-1.7,86,976,0,858,0.347,25.8,37.68,0.92,0.13,778,0.8,237,5.1
+3087,2016,5,9,15,30,18,0.93,0.057,0.64,78,941,703,0,1,-1.4,78,941,0,703,0.346,26.71,48.38,0.92,0.13,778,0.8,239,5.6
+3088,2016,5,9,16,30,17.1,0.95,0.057,0.64,69,873,510,0,3,-1,235,426,0,450,0.346,29.27,59.65,0.92,0.13,778,0.9,244,5.7
+3089,2016,5,9,17,30,15.1,0.99,0.062,0.64,58,743,300,7,8,0.1,158,192,7,220,0.346,36,71.01,0.93,0.13,778,1,249,4.7
+3090,2016,5,9,18,30,11.9,1.03,0.073,0.64,37,459,100,7,3,2.5,63,3,7,63,0.347,52.62,82.09,0.93,0.13,779,1.1,257,3.2
+3091,2016,5,9,19,30,9.1,1.02,0.077,0.64,0,0,0,0,8,3.8,0,0,0,0,0.348,69.31,92.78,0.93,0.13,779,1.1,269,2.2
+3092,2016,5,9,20,30,7.5,0.99,0.08,0.64,0,0,0,0,8,3.7,0,0,0,0,0.348,77.03,102.48,0.94,0.13,780,1.1,286,1.9
+3093,2016,5,9,21,30,6.6,0.98,0.091,0.64,0,0,0,0,4,3.4,0,0,0,0,0.348,79.98,110.83,0.94,0.13,781,1.1,305,2.5
+3094,2016,5,9,22,30,5.6,0.99,0.095,0.64,0,0,0,0,8,2.5,0,0,0,0,0.348,80.65,117.22,0.94,0.13,782,1.1,320,3.1
+3095,2016,5,9,23,30,4,0.99,0.086,0.64,0,0,0,0,3,1.4,0,0,0,0,0.347,83.16,120.97,0.93,0.13,783,0.9,325,2.7
+3096,2016,5,10,0,30,2.2,0.96,0.072,0.64,0,0,0,0,4,-0.3,0,0,0,0,0.347,83.3,121.54,0.92,0.13,784,0.7,322,1.9
+3097,2016,5,10,1,30,0.5,0.91,0.059,0.64,0,0,0,0,8,-1.5,0,0,0,0,0.347,86.4,118.85,0.91,0.13,784,0.5,313,1.3
+3098,2016,5,10,2,30,-0.7,0.87,0.051,0.64,0,0,0,0,8,-2.9,0,0,0,0,0.347,84.92,113.3,0.91,0.13,784,0.4,299,1.2
+3099,2016,5,10,3,30,-1.4,0.86,0.045,0.64,0,0,0,0,8,-4.1,0,0,0,0,0.348,81.94,105.55,0.9,0.13,785,0.3,283,1.2
+3100,2016,5,10,4,30,-1.7,0.87,0.042,0.64,0,0,0,0,4,-4.8,0,0,0,0,0.349,79.17,96.25,0.9,0.13,785,0.3,273,1.2
+3101,2016,5,10,5,30,0.2,0.88,0.04,0.64,22,417,53,0,1,-4.6,22,417,0,53,0.351,70.37,85.76,0.9,0.13,786,0.3,272,1.9
+3102,2016,5,10,6,30,3.2,0.91,0.038,0.64,45,761,244,0,1,-4.4,45,761,0,244,0.353,57.52,74.87,0.9,0.13,786,0.4,283,3
+3103,2016,5,10,7,30,5.5,0.93,0.037,0.64,58,901,459,0,0,-5.2,58,901,0,459,0.355,45.91,63.56,0.89,0.13,787,0.4,292,3.4
+3104,2016,5,10,8,30,7.2,0.95,0.035,0.64,65,974,662,0,0,-6.2,65,974,0,662,0.357,37.95,52.2,0.89,0.13,787,0.4,291,3.4
+3105,2016,5,10,9,30,8.6,0.99,0.034,0.64,70,1016,835,0,0,-7.2,70,1016,0,835,0.36,31.85,41.2,0.89,0.13,787,0.4,286,3.4
+3106,2016,5,10,10,30,9.8,1.03,0.033,0.64,74,1040,962,0,0,-7.8,74,1040,0,962,0.361,28.08,31.31,0.9,0.13,787,0.4,283,3.5
+3107,2016,5,10,11,30,10.7,1.05,0.035,0.64,77,1041,1026,0,1,-8.1,77,1041,0,1026,0.362,25.91,24.27,0.9,0.13,787,0.5,282,3.4
+3108,2016,5,10,12,30,11.3,1.08,0.039,0.64,80,1040,1036,0,4,-8.2,105,0,0,105,0.364,24.65,23.02,0.91,0.13,787,0.5,286,3.3
+3109,2016,5,10,13,30,11.4,1.09,0.043,0.64,81,1028,985,0,3,-8.2,508,169,0,657,0.365,24.47,28.36,0.92,0.13,787,0.5,294,3.2
+3110,2016,5,10,14,30,11.2,1.1,0.047,0.64,79,998,871,0,1,-8.1,79,998,0,871,0.366,25.01,37.5,0.92,0.13,787,0.6,307,3.3
+3111,2016,5,10,15,30,10.6,1.12,0.05,0.64,75,960,715,0,1,-8,75,960,0,715,0.367,26.21,48.22,0.93,0.13,787,0.6,323,3.5
+3112,2016,5,10,16,30,9.7,1.13,0.047,0.64,65,903,523,0,0,-7.9,65,903,0,523,0.368,28.09,59.5,0.92,0.13,787,0.6,339,3.8
+3113,2016,5,10,17,30,8.2,1.13,0.042,0.64,51,800,314,0,1,-7.7,51,800,0,314,0.369,31.64,70.85,0.91,0.14,787,0.6,351,3.9
+3114,2016,5,10,18,30,5.7,1.12,0.039,0.64,32,567,111,7,3,-6.7,73,15,7,75,0.37,40.57,81.93,0.9,0.14,788,0.6,180,3.1
+3115,2016,5,10,19,30,3.2,1.12,0.038,0.64,0,0,0,0,8,-4.7,0,0,0,0,0.37,56.38,92.6,0.9,0.14,789,0.6,7,2.3
+3116,2016,5,10,20,30,1.8,1.13,0.037,0.64,0,0,0,0,1,-4.1,0,0,0,0,0.37,64.88,102.29,0.9,0.14,790,0.6,10,1.7
+3117,2016,5,10,21,30,0.8,1.14,0.036,0.64,0,0,0,0,1,-3.6,0,0,0,0,0.369,72.34,110.62,0.9,0.14,790,0.6,8,1.2
+3118,2016,5,10,22,30,0.1,1.14,0.035,0.64,0,0,0,0,1,-3.6,0,0,0,0,0.367,76.25,116.99,0.9,0.14,791,0.6,180,1
+3119,2016,5,10,23,30,-0.4,1.15,0.035,0.64,0,0,0,0,4,-3.9,0,0,0,0,0.365,77.34,120.71,0.9,0.14,791,0.6,349,0.9
+3120,2016,5,11,0,30,-0.9,1.15,0.034,0.64,0,0,0,0,1,-4.2,0,0,0,0,0.363,78.27,121.28,0.9,0.14,791,0.6,336,0.8
+3121,2016,5,11,1,30,-1.4,1.17,0.034,0.64,0,0,0,0,1,-4.4,0,0,0,0,0.361,79.91,118.6,0.9,0.14,791,0.6,324,0.8
+3122,2016,5,11,2,30,-2,1.19,0.035,0.64,0,0,0,0,1,-4.5,0,0,0,0,0.359,82.95,113.07,0.9,0.14,791,0.6,315,0.9
+3123,2016,5,11,3,30,-2.7,1.22,0.036,0.64,0,0,0,0,1,-4.6,0,0,0,0,0.357,86.9,105.34,0.9,0.14,792,0.6,313,1
+3124,2016,5,11,4,30,-3,1.26,0.038,0.64,0,0,0,0,1,-4.7,0,0,0,0,0.355,88.22,96.06,0.9,0.14,792,0.5,314,1
+3125,2016,5,11,5,30,-1.3,1.31,0.039,0.64,22,425,55,0,1,-4.5,22,425,0,55,0.353,78.72,85.59,0.9,0.14,792,0.5,319,1.6
+3126,2016,5,11,6,30,1.5,1.37,0.042,0.64,46,752,244,7,4,-5.2,130,9,7,133,0.351,61.02,74.71,0.89,0.14,792,0.5,322,2.4
+3127,2016,5,11,7,30,3.8,1.44,0.045,0.64,60,885,456,0,4,-7.8,208,427,0,399,0.349,42.43,63.4,0.89,0.14,793,0.5,316,2.6
+3128,2016,5,11,8,30,5.7,1.52,0.047,0.64,70,955,657,0,4,-8.8,320,359,0,541,0.348,34.36,52.04,0.88,0.14,793,0.5,309,2.6
+3129,2016,5,11,9,30,7.5,1.6,0.049,0.64,77,996,828,0,4,-8.9,415,340,0,671,0.347,30.22,41.02,0.88,0.14,793,0.5,305,2.5
+3130,2016,5,11,10,30,9.1,1.67,0.051,0.64,81,1018,953,0,4,-8.7,459,394,0,797,0.346,27.61,31.11,0.87,0.14,793,0.5,306,2.3
+3131,2016,5,11,11,30,10.5,1.77,0.051,0.64,83,1030,1024,0,4,-8.3,534,291,0,800,0.345,25.78,24.03,0.87,0.14,793,0.5,307,2.1
+3132,2016,5,11,12,30,11.5,1.82,0.052,0.64,84,1025,1029,0,4,-8,533,299,0,809,0.345,24.74,22.77,0.87,0.14,793,0.6,307,1.9
+3133,2016,5,11,13,30,12.3,1.87,0.049,0.64,81,1019,979,0,4,-7.7,177,0,0,177,0.345,23.95,28.15,0.87,0.14,792,0.6,306,1.9
+3134,2016,5,11,14,30,12.9,1.69,0.05,0.64,78,998,872,0,4,-7.6,249,0,0,250,0.345,23.31,37.33,0.87,0.14,792,0.6,307,1.9
+3135,2016,5,11,15,30,13,1.55,0.051,0.64,74,969,721,7,3,-7.6,361,337,7,586,0.345,23.12,48.07,0.88,0.14,792,0.5,311,1.9
+3136,2016,5,11,16,30,12.5,1.47,0.052,0.64,66,907,529,0,3,-7.7,293,208,0,399,0.345,23.63,59.35,0.88,0.14,792,0.5,317,1.9
+3137,2016,5,11,17,30,11.2,1.38,0.053,0.64,54,795,317,0,1,-7.8,54,795,0,317,0.346,25.59,70.7,0.89,0.14,793,0.5,331,1.3
+3138,2016,5,11,18,30,8.6,1.25,0.05,0.64,34,558,114,0,1,-3.7,34,558,0,114,0.346,41.66,81.77,0.89,0.14,793,0.5,191,0.8
+3139,2016,5,11,19,30,6.2,1.13,0.048,0.64,0,0,0,0,1,-2.3,0,0,0,0,0.345,54.52,92.43,0.9,0.14,794,0.5,47,0.9
+3140,2016,5,11,20,30,5.1,1.09,0.047,0.64,0,0,0,0,1,-3.1,0,0,0,0,0.343,55.53,102.1,0.9,0.14,794,0.5,54,1
+3141,2016,5,11,21,30,4.5,1.13,0.045,0.64,0,0,0,0,1,-3.7,0,0,0,0,0.34,55.14,110.41,0.89,0.14,795,0.5,52,0.9
+3142,2016,5,11,22,30,3.9,1.19,0.042,0.64,0,0,0,0,1,-4.4,0,0,0,0,0.339,54.67,116.75,0.89,0.14,795,0.5,46,0.8
+3143,2016,5,11,23,30,3.3,1.23,0.038,0.64,0,0,0,0,1,-4.9,0,0,0,0,0.338,54.79,120.47,0.89,0.14,795,0.5,36,0.7
+3144,2016,5,12,0,30,2.6,1.27,0.035,0.64,0,0,0,0,1,-5.3,0,0,0,0,0.337,55.91,121.03,0.89,0.14,795,0.5,27,0.6
+3145,2016,5,12,1,30,1.8,1.27,0.035,0.64,0,0,0,0,1,-5.6,0,0,0,0,0.336,57.95,118.36,0.88,0.14,795,0.5,28,0.6
+3146,2016,5,12,2,30,0.9,1.23,0.036,0.64,0,0,0,0,1,-5.9,0,0,0,0,0.335,60.66,112.84,0.88,0.14,795,0.5,36,0.7
+3147,2016,5,12,3,30,0.1,1.18,0.037,0.64,0,0,0,0,1,-6,0,0,0,0,0.334,63.32,105.14,0.89,0.14,795,0.5,46,0.7
+3148,2016,5,12,4,30,-0.3,1.14,0.037,0.64,0,0,0,0,1,-6.2,0,0,0,0,0.334,64.34,95.87,0.89,0.14,795,0.4,54,0.7
+3149,2016,5,12,5,30,1.3,1.11,0.038,0.64,23,439,58,0,1,-5.7,23,439,0,58,0.334,59.81,85.42,0.89,0.14,795,0.4,69,0.7
+3150,2016,5,12,6,30,4.9,1.1,0.04,0.64,46,765,250,0,0,-4.8,46,765,0,250,0.334,49.59,74.55,0.89,0.14,796,0.4,128,0.8
+3151,2016,5,12,7,30,8.8,1.08,0.041,0.64,60,898,464,0,0,-6.4,60,898,0,464,0.333,33.49,63.25,0.89,0.14,796,0.4,200,1.3
+3152,2016,5,12,8,30,11.7,1.04,0.042,0.64,69,967,666,0,0,-7.5,69,967,0,666,0.33,25.47,51.88,0.89,0.14,796,0.4,228,2.1
+3153,2016,5,12,9,30,13.7,1.01,0.044,0.64,77,998,832,0,0,-7.6,77,998,0,832,0.327,22.08,40.85,0.9,0.14,796,0.5,233,2.6
+3154,2016,5,12,10,30,15.5,0.98,0.046,0.64,82,1020,957,0,0,-7.7,82,1020,0,957,0.324,19.54,30.92,0.9,0.14,795,0.5,235,2.9
+3155,2016,5,12,11,30,17.1,1.03,0.043,0.64,83,1034,1029,0,0,-7.7,83,1034,0,1029,0.322,17.7,23.8,0.9,0.14,795,0.5,236,3.2
+3156,2016,5,12,12,30,18.2,1.03,0.043,0.64,83,1036,1040,0,0,-7.6,83,1036,0,1040,0.32,16.63,22.53,0.9,0.14,795,0.5,235,3.5
+3157,2016,5,12,13,30,18.9,1.03,0.043,0.64,81,1028,990,0,1,-7.5,81,1028,0,990,0.318,15.97,27.94,0.9,0.14,794,0.5,234,3.6
+3158,2016,5,12,14,30,19.2,1.04,0.043,0.64,78,1009,882,0,1,-7.6,78,1009,0,882,0.318,15.58,37.16,0.9,0.14,794,0.5,231,3.5
+3159,2016,5,12,15,30,19,1.03,0.043,0.64,72,975,726,0,3,-7.8,345,392,0,608,0.318,15.52,47.91,0.9,0.14,793,0.5,228,3.4
+3160,2016,5,12,16,30,18.4,1,0.039,0.64,63,922,535,0,0,-7.8,63,922,0,535,0.318,16.1,59.21,0.9,0.14,793,0.5,222,3.1
+3161,2016,5,12,17,30,16.4,1.01,0.04,0.64,52,807,320,0,1,-7.3,52,807,0,320,0.318,19.06,70.56,0.9,0.14,792,0.6,213,2.1
+3162,2016,5,12,18,30,13.3,1.02,0.044,0.64,34,565,116,0,1,0.7,34,565,0,116,0.317,42.24,81.62,0.9,0.14,792,0.6,201,1.2
+3163,2016,5,12,19,30,11,0.99,0.046,0.64,0,0,0,0,1,-1.2,0,0,0,0,0.315,42.8,92.26,0.9,0.14,792,0.6,204,1.2
+3164,2016,5,12,20,30,9.7,0.97,0.052,0.64,0,0,0,0,1,-2.3,0,0,0,0,0.314,43.1,101.91,0.91,0.14,793,0.6,230,1.2
+3165,2016,5,12,21,30,8.3,0.94,0.058,0.64,0,0,0,0,1,-2.5,0,0,0,0,0.313,46.68,110.2,0.91,0.14,793,0.6,259,1.2
+3166,2016,5,12,22,30,7.1,0.92,0.062,0.64,0,0,0,0,1,-2.4,0,0,0,0,0.313,50.86,116.52,0.91,0.14,793,0.5,277,1.2
+3167,2016,5,12,23,30,6.4,0.93,0.063,0.64,0,0,0,0,4,-2.5,0,0,0,0,0.313,53.1,120.22,0.91,0.14,793,0.5,285,1.1
+3168,2016,5,13,0,30,6,0.96,0.068,0.64,0,0,0,0,1,-2.9,0,0,0,0,0.314,53.04,120.79,0.91,0.14,793,0.5,285,0.9
+3169,2016,5,13,1,30,5.6,0.99,0.075,0.64,0,0,0,0,1,-3.3,0,0,0,0,0.314,52.62,118.12,0.91,0.14,793,0.5,273,0.7
+3170,2016,5,13,2,30,5.3,1.01,0.076,0.64,0,0,0,0,1,-3.8,0,0,0,0,0.315,51.89,112.63,0.91,0.14,794,0.5,240,0.6
+3171,2016,5,13,3,30,4.7,1,0.073,0.64,0,0,0,0,1,-4.2,0,0,0,0,0.315,52.39,104.94,0.91,0.14,794,0.6,210,0.7
+3172,2016,5,13,4,30,4.3,1.01,0.072,0.64,0,0,0,0,0,-4.5,0,0,0,0,0.314,52.92,95.7,0.91,0.14,794,0.6,204,0.9
+3173,2016,5,13,5,30,6,1.02,0.072,0.64,27,334,54,0,1,-3.9,27,334,0,54,0.313,48.9,85.27,0.91,0.14,794,0.7,204,1.1
+3174,2016,5,13,6,30,9.5,1.04,0.072,0.64,55,684,239,0,1,-1.5,55,684,0,239,0.312,46.05,74.4,0.91,0.14,794,0.7,205,1.6
+3175,2016,5,13,7,30,13.6,1.06,0.069,0.64,71,838,450,0,0,-3.4,71,838,0,450,0.312,30.57,63.1,0.91,0.14,794,0.7,221,2.2
+3176,2016,5,13,8,30,17.2,1.06,0.067,0.64,80,914,646,0,0,-4.5,80,914,0,646,0.312,22.36,51.73,0.91,0.14,794,0.8,245,2.5
+3177,2016,5,13,9,30,19.3,1.06,0.068,0.64,88,958,815,0,0,-4,88,958,0,815,0.31,20.44,40.69,0.91,0.14,794,0.8,254,2.5
+3178,2016,5,13,10,30,20.7,1.06,0.07,0.64,94,982,939,0,0,-2.9,94,982,0,939,0.309,20.33,30.73,0.91,0.14,794,0.8,253,2.6
+3179,2016,5,13,11,30,21.9,1.23,0.06,0.64,90,1005,1011,0,0,-2.3,90,1005,0,1011,0.309,19.67,23.57,0.9,0.14,793,0.8,247,2.7
+3180,2016,5,13,12,30,22.7,1.25,0.061,0.64,92,1006,1022,0,1,-2.2,92,1006,0,1022,0.309,18.85,22.29,0.91,0.14,793,0.8,239,2.8
+3181,2016,5,13,13,30,23,1.27,0.066,0.64,92,993,972,0,1,-2.5,92,993,0,972,0.309,18.16,27.74,0.91,0.14,792,0.8,233,2.9
+3182,2016,5,13,14,30,23,1.22,0.073,0.64,93,966,864,0,1,-2.9,93,966,0,864,0.309,17.58,36.99,0.92,0.14,792,0.8,226,2.8
+3183,2016,5,13,15,30,22.5,1.24,0.078,0.64,88,923,709,0,1,-3.5,88,923,0,709,0.309,17.4,47.76,0.92,0.14,791,0.8,218,2.7
+3184,2016,5,13,16,30,21.6,1.26,0.083,0.64,80,852,518,0,8,-3.8,179,506,0,440,0.31,17.98,59.06,0.93,0.14,791,0.8,209,2.3
+3185,2016,5,13,17,30,19.7,1.27,0.087,0.64,66,727,310,0,1,-3.5,66,727,0,310,0.31,20.57,70.41,0.93,0.14,791,0.8,189,1.4
+3186,2016,5,13,18,30,16.8,1.26,0.086,0.64,41,473,111,7,7,4.9,76,170,7,101,0.31,45.18,81.46,0.93,0.14,791,0.9,149,0.8
+3187,2016,5,13,19,30,14.2,1.24,0.08,0.64,0,0,0,0,1,2.8,0,0,0,0,0.31,46.13,92.09,0.93,0.14,791,0.9,107,0.9
+3188,2016,5,13,20,30,12.3,1.25,0.076,0.64,0,0,0,0,1,2.6,0,0,0,0,0.31,51.63,101.72,0.93,0.14,791,0.9,80,0.9
+3189,2016,5,13,21,30,10.8,1.26,0.069,0.64,0,0,0,0,1,2.5,0,0,0,0,0.309,56.49,109.99,0.92,0.14,791,0.9,64,0.9
+3190,2016,5,13,22,30,9.7,1.27,0.064,0.64,0,0,0,0,1,2,0,0,0,0,0.309,58.91,116.3,0.92,0.14,791,0.9,53,1.1
+3191,2016,5,13,23,30,8.8,1.27,0.063,0.64,0,0,0,0,1,1.9,0,0,0,0,0.308,61.97,119.98,0.92,0.14,791,1,44,1.4
+3192,2016,5,14,0,30,8,1.27,0.07,0.64,0,0,0,0,1,1.9,0,0,0,0,0.307,65.5,120.55,0.93,0.14,790,1,39,1.8
+3193,2016,5,14,1,30,7.2,1.28,0.071,0.64,0,0,0,0,1,1.9,0,0,0,0,0.307,69.21,117.89,0.93,0.14,790,1,39,2
+3194,2016,5,14,2,30,6.3,1.29,0.071,0.64,0,0,0,0,1,2,0,0,0,0,0.308,74.18,112.41,0.92,0.14,790,1,42,1.9
+3195,2016,5,14,3,30,5.4,1.31,0.07,0.64,0,0,0,0,1,1.9,0,0,0,0,0.309,78.42,104.75,0.92,0.14,790,1,46,1.7
+3196,2016,5,14,4,30,4.9,1.31,0.068,0.64,0,0,0,0,3,1.7,0,0,0,0,0.309,79.61,95.52,0.91,0.14,790,0.9,47,1.6
+3197,2016,5,14,5,30,6.2,1.3,0.07,0.64,26,353,57,7,4,1.8,39,2,7,39,0.309,73.41,85.11,0.92,0.14,790,0.9,49,2.1
+3198,2016,5,14,6,30,9.2,1.29,0.079,0.64,57,671,239,7,7,2.4,114,345,7,207,0.309,62.6,74.25,0.92,0.14,790,0.9,54,2.4
+3199,2016,5,14,7,30,13,1.29,0.083,0.64,75,815,446,0,8,1.8,75,815,5,446,0.309,46.43,62.96,0.93,0.14,790,0.9,66,1.7
+3200,2016,5,14,8,30,16.6,1.3,0.083,0.64,87,896,643,0,1,0,87,896,0,643,0.308,32.49,51.59,0.92,0.14,790,0.9,142,0.8
+3201,2016,5,14,9,30,19.4,1.33,0.076,0.64,91,949,812,0,1,-1,91,949,0,812,0.308,25.29,40.54,0.91,0.14,790,0.9,227,0.9
+3202,2016,5,14,10,30,21.4,1.35,0.066,0.64,90,980,934,0,0,-1.5,90,980,0,934,0.308,21.47,30.54,0.9,0.14,789,1,240,1.7
+3203,2016,5,14,11,30,22.6,1.55,0.054,0.64,86,999,1003,0,0,-1.3,86,999,0,1003,0.309,20.33,23.34,0.9,0.14,788,1.1,232,2.2
+3204,2016,5,14,12,30,23.3,1.55,0.056,0.64,87,996,1010,0,1,-0.8,87,996,0,1010,0.309,20.2,22.05,0.91,0.14,788,1.2,226,2.8
+3205,2016,5,14,13,30,23.4,1.53,0.064,0.64,90,981,960,0,0,-0.2,90,981,0,960,0.31,21.02,27.54,0.92,0.14,787,1.2,226,3.4
+3206,2016,5,14,14,30,22.9,1.56,0.076,0.64,93,947,851,0,4,0.5,429,114,0,520,0.31,22.71,36.83,0.94,0.14,786,1.3,235,3.7
+3207,2016,5,14,15,30,21.5,1.51,0.095,0.64,95,885,691,0,1,1.2,95,885,0,691,0.311,26.04,47.62,0.95,0.14,786,1.5,252,3.7
+3208,2016,5,14,16,30,19.1,1.47,0.111,0.64,90,796,501,0,4,2.5,270,278,0,414,0.312,33.06,58.92,0.96,0.14,786,1.6,279,3.6
+3209,2016,5,14,17,30,15.8,1.44,0.129,0.64,77,647,296,7,8,4.2,160,91,7,190,0.314,45.89,70.26,0.96,0.14,786,1.7,318,3.2
+3210,2016,5,14,18,30,12.8,1.42,0.137,0.64,48,383,106,7,4,5.9,66,2,7,66,0.316,62.81,81.31,0.96,0.14,787,1.7,185,2.9
+3211,2016,5,14,19,30,10.6,1.38,0.132,0.64,0,0,0,0,4,6.7,0,0,0,0,0.317,76.86,91.92,0.95,0.14,787,1.7,46,3.1
+3212,2016,5,14,20,30,9.2,1.34,0.125,0.64,0,0,0,0,8,6.9,0,0,0,0,0.318,85.81,101.54,0.95,0.14,787,1.7,74,3.4
+3213,2016,5,14,21,30,8.3,1.31,0.12,0.64,0,0,0,0,8,6.9,0,0,0,0,0.318,90.85,109.79,0.95,0.14,787,1.6,92,3.2
+3214,2016,5,14,22,30,7.6,1.28,0.118,0.64,0,0,0,0,8,6.6,0,0,0,0,0.319,93.37,116.08,0.94,0.14,786,1.6,105,2.8
+3215,2016,5,14,23,30,7,1.22,0.113,0.64,0,0,0,0,8,6.3,0,0,0,0,0.32,95.63,119.75,0.94,0.14,786,1.5,112,2.2
+3216,2016,5,15,0,30,6.5,1.15,0.1,0.64,0,0,0,0,8,6.2,0,0,0,0,0.32,97.93,120.31,0.93,0.14,785,1.4,110,1.7
+3217,2016,5,15,1,30,6.1,1.1,0.093,0.64,0,0,0,0,8,6.1,0,0,0,0,0.321,99.72,117.67,0.93,0.14,784,1.3,106,1.6
+3218,2016,5,15,2,30,5.9,1.08,0.09,0.64,0,0,0,0,8,5.9,0,0,0,0,0.322,100,112.21,0.93,0.14,784,1.3,106,1.7
+3219,2016,5,15,3,30,5.8,1.07,0.088,0.64,0,0,0,0,8,5.8,0,0,0,0,0.324,99.67,104.56,0.93,0.14,783,1.3,112,1.6
+3220,2016,5,15,4,30,5.9,1.05,0.089,0.64,0,0,0,0,8,5.5,0,0,0,0,0.326,97.6,95.35,0.94,0.14,783,1.4,120,1.2
+3221,2016,5,15,5,30,7,1.04,0.101,0.64,30,273,54,7,8,5.4,28,1,7,28,0.327,89.82,84.96,0.95,0.14,783,1.5,160,1
+3222,2016,5,15,6,30,9,1.08,0.118,0.64,68,585,228,7,8,5.7,115,19,7,120,0.327,79.87,74.11,0.95,0.14,784,1.6,206,1.7
+3223,2016,5,15,7,30,11,1.13,0.128,0.64,92,733,427,0,6,6,197,35,0,213,0.328,71.16,62.82,0.96,0.14,784,1.7,223,2.6
+3224,2016,5,15,8,30,12.2,1.18,0.138,0.64,110,814,617,0,6,6.5,50,0,0,50,0.327,68.01,51.45,0.96,0.14,784,1.7,232,3.2
+3225,2016,5,15,9,30,12.7,1.2,0.129,0.64,117,875,783,0,6,6.9,228,4,0,231,0.324,67.99,40.38,0.95,0.14,784,1.7,236,3.4
+3226,2016,5,15,10,30,13.1,1.19,0.113,0.64,116,921,910,0,6,7,404,41,0,439,0.321,66.64,30.36,0.95,0.14,784,1.6,238,3.5
+3227,2016,5,15,11,30,13.3,1.17,0.088,0.64,106,955,984,0,8,6.8,429,308,0,712,0.318,64.89,23.12,0.95,0.14,783,1.6,244,3.4
+3228,2016,5,15,12,30,13.5,1.13,0.089,0.64,108,959,997,0,6,6.6,238,1,0,239,0.316,62.9,21.82,0.95,0.14,783,1.5,251,3.3
+3229,2016,5,15,13,30,13.5,1.09,0.091,0.64,106,947,948,0,9,6.3,116,0,0,116,0.315,61.57,27.35,0.94,0.14,783,1.5,260,3.2
+3230,2016,5,15,14,30,13.2,1.08,0.095,0.64,104,921,843,0,8,5.9,331,464,0,703,0.315,61.32,36.66,0.94,0.14,782,1.5,270,3
+3231,2016,5,15,15,30,12.7,1.07,0.097,0.64,97,879,691,0,6,5.7,339,116,0,418,0.317,62.3,47.47,0.94,0.14,782,1.5,279,2.7
+3232,2016,5,15,16,30,11.9,1.07,0.101,0.64,88,808,507,0,8,5.6,252,78,0,293,0.319,65.11,58.78,0.95,0.14,782,1.4,290,2.1
+3233,2016,5,15,17,30,10.8,1.05,0.102,0.64,72,682,304,7,8,5.6,165,43,7,180,0.321,70.03,70.12,0.95,0.14,782,1.4,324,1.3
+3234,2016,5,15,18,30,9.2,1.03,0.102,0.64,45,429,111,7,8,6.5,72,18,7,75,0.324,83.04,81.16,0.95,0.14,782,1.4,187,1
+3235,2016,5,15,19,30,7.7,1.01,0.102,0.64,0,0,0,0,8,6.5,0,0,0,0,0.328,92.42,91.75,0.95,0.14,782,1.4,29,1.1
+3236,2016,5,15,20,30,6.6,1,0.101,0.64,0,0,0,0,8,6.1,0,0,0,0,0.331,96.39,101.36,0.95,0.14,782,1.4,32,1.1
+3237,2016,5,15,21,30,6,1.02,0.103,0.64,0,0,0,0,8,5.6,0,0,0,0,0.331,97.55,109.59,0.95,0.14,782,1.4,27,1.1
+3238,2016,5,15,22,30,5.8,1.05,0.107,0.64,0,0,0,0,8,5.6,0,0,0,0,0.33,98.47,115.86,0.95,0.14,782,1.4,18,1.1
+3239,2016,5,15,23,30,5.7,1.08,0.113,0.64,0,0,0,0,8,5.5,0,0,0,0,0.331,98.93,119.52,0.96,0.14,782,1.4,13,1.1
+3240,2016,5,16,0,30,5.3,1.11,0.119,0.64,0,0,0,0,6,5.3,0,0,0,0,0.333,100,120.08,0.96,0.14,782,1.4,13,1.2
+3241,2016,5,16,1,30,5.1,1.14,0.128,0.64,0,0,0,0,8,5.1,0,0,0,0,0.333,100,117.45,0.96,0.14,782,1.3,11,1.1
+3242,2016,5,16,2,30,5,1.17,0.146,0.64,0,0,0,0,8,5,0,0,0,0,0.335,100,112.01,0.96,0.14,782,1.3,12,0.9
+3243,2016,5,16,3,30,4.9,1.18,0.167,0.64,0,0,0,0,8,4.9,0,0,0,0,0.336,100,104.38,0.97,0.14,782,1.3,16,0.7
+3244,2016,5,16,4,30,5,1.19,0.19,0.64,0,0,0,0,8,4.9,0,0,0,0,0.337,99.45,95.19,0.97,0.14,782,1.4,18,0.6
+3245,2016,5,16,5,30,5.4,1.2,0.23,0.64,37,152,51,7,4,5.1,15,0,7,15,0.338,97.72,84.82,0.98,0.14,782,1.4,15,0.9
+3246,2016,5,16,6,30,6.1,1.2,0.249,0.64,95,446,218,7,8,5,25,0,7,25,0.338,92.38,73.97,0.98,0.14,783,1.4,12,1.4
+3247,2016,5,16,7,30,6.9,1.2,0.251,0.64,131,621,416,0,8,4.9,25,0,0,25,0.338,86.92,62.69,0.98,0.14,783,1.4,6,1.5
+3248,2016,5,16,8,30,7.7,1.2,0.25,0.64,154,726,607,0,8,4.7,189,5,0,192,0.338,81.4,51.32,0.98,0.14,783,1.4,178,1.7
+3249,2016,5,16,9,30,8.4,1.21,0.237,0.64,164,799,774,0,8,4.4,329,53,0,370,0.337,75.78,40.24,0.97,0.14,783,1.4,355,1.8
+3250,2016,5,16,10,30,8.9,1.21,0.218,0.64,165,848,898,0,8,4,405,196,0,574,0.337,71.51,30.19,0.97,0.14,784,1.4,178,1.6
+3251,2016,5,16,11,30,9.3,1.2,0.196,0.64,160,883,974,0,8,3.6,437,321,0,733,0.337,67.78,22.91,0.97,0.14,784,1.3,6,1.4
+3252,2016,5,16,12,30,9.5,1.18,0.177,0.64,152,899,988,0,8,3.4,426,372,0,772,0.337,65.67,21.6,0.97,0.14,784,1.3,14,1.3
+3253,2016,5,16,13,30,9.7,1.16,0.156,0.64,139,903,943,0,6,3.2,445,44,0,484,0.337,63.88,27.16,0.97,0.14,784,1.3,21,1.5
+3254,2016,5,16,14,30,9.7,1.14,0.136,0.64,124,893,842,0,8,3.1,229,3,0,231,0.337,63.45,36.5,0.96,0.14,785,1.3,26,1.8
+3255,2016,5,16,15,30,9.2,1.13,0.121,0.64,108,862,693,0,8,3,36,0,0,36,0.337,65.4,47.33,0.96,0.14,785,1.3,33,2.1
+3256,2016,5,16,16,30,8.3,1.13,0.113,0.64,93,798,508,0,6,3.1,33,0,0,33,0.336,69.96,58.64,0.96,0.14,785,1.3,41,2.2
+3257,2016,5,16,17,30,7.3,1.13,0.109,0.64,74,678,306,7,8,3.4,84,2,7,85,0.336,76.1,69.98,0.96,0.14,786,1.3,49,2.2
+3258,2016,5,16,18,30,6.3,1.14,0.103,0.64,45,439,114,7,8,3.7,26,0,7,26,0.337,83.17,81.01,0.96,0.14,786,1.3,56,1.6
+3259,2016,5,16,19,30,5.3,1.15,0.093,0.64,0,0,0,0,8,4.3,0,0,0,0,0.337,93.48,91.59,0.96,0.14,787,1.3,62,1
+3260,2016,5,16,20,30,4.4,1.15,0.082,0.64,0,0,0,0,8,4.2,0,0,0,0,0.338,98.7,101.18,0.95,0.14,787,1.3,61,0.8
+3261,2016,5,16,21,30,3.7,1.15,0.075,0.64,0,0,0,0,4,3.7,0,0,0,0,0.339,100,109.39,0.95,0.14,787,1.3,52,0.9
+3262,2016,5,16,22,30,3.1,1.16,0.073,0.64,0,0,0,0,8,3.1,0,0,0,0,0.34,100,115.65,0.95,0.14,787,1.3,47,1
+3263,2016,5,16,23,30,2.6,1.16,0.075,0.64,0,0,0,0,8,2.6,0,0,0,0,0.341,100,119.3,0.95,0.14,787,1.2,48,1.1
+3264,2016,5,17,0,30,2.1,1.18,0.078,0.64,0,0,0,0,8,2.1,0,0,0,0,0.342,100,119.86,0.95,0.14,787,1.2,50,1.1
+3265,2016,5,17,1,30,1.7,1.18,0.083,0.64,0,0,0,0,4,1.7,0,0,0,0,0.342,100,117.24,0.95,0.14,787,1.2,51,1.1
+3266,2016,5,17,2,30,1.4,1.18,0.089,0.64,0,0,0,0,4,1.4,0,0,0,0,0.343,100,111.81,0.95,0.14,787,1.2,48,1.2
+3267,2016,5,17,3,30,1.2,1.18,0.093,0.64,0,0,0,0,4,1.2,0,0,0,0,0.343,100,104.2,0.95,0.14,788,1.2,42,1.5
+3268,2016,5,17,4,30,1.3,1.17,0.096,0.64,0,0,0,1,8,1.3,0,0,1,0,0.343,100,95.03,0.96,0.14,788,1.1,39,2
+3269,2016,5,17,5,30,2.5,1.16,0.098,0.64,31,307,60,7,8,1.6,17,0,7,17,0.343,93.76,84.68,0.95,0.14,788,1.1,42,2.5
+3270,2016,5,17,6,30,5.1,1.16,0.099,0.64,64,634,240,7,4,2.3,36,0,7,36,0.343,82,73.84,0.95,0.14,789,1.1,53,2.7
+3271,2016,5,17,7,30,8.3,1.16,0.094,0.64,81,793,446,0,4,3,113,0,0,113,0.343,69.46,62.57,0.95,0.14,789,1.1,75,2.6
+3272,2016,5,17,8,30,10.5,1.14,0.091,0.64,92,877,642,0,4,2.9,343,71,0,388,0.343,59.14,51.19,0.95,0.14,789,1.1,97,2.4
+3273,2016,5,17,9,30,11.7,1.13,0.089,0.64,100,927,808,0,4,2.5,437,252,0,630,0.343,53.32,40.1,0.95,0.14,789,1.1,111,2.4
+3274,2016,5,17,10,30,12.4,1.12,0.085,0.64,103,957,932,0,8,2.2,381,382,0,712,0.342,49.88,30.03,0.95,0.14,789,1.1,123,2.3
+3275,2016,5,17,11,30,13,1.15,0.065,0.64,94,984,1002,0,7,2,326,561,0,843,0.341,47.19,22.7,0.94,0.14,789,1.2,131,2.3
+3276,2016,5,17,12,30,13.4,1.15,0.063,0.64,94,987,1013,0,8,1.9,486,245,0,714,0.341,45.52,21.38,0.94,0.14,789,1.2,137,2.1
+3277,2016,5,17,13,30,13.6,1.15,0.06,0.64,91,981,965,0,7,1.8,318,557,0,815,0.34,44.76,26.97,0.95,0.14,789,1.2,141,1.8
+3278,2016,5,17,14,30,13.6,1.09,0.087,0.64,101,936,855,0,6,1.7,200,2,0,202,0.341,44.33,36.35,0.95,0.14,789,1.2,136,1.4
+3279,2016,5,17,15,30,13.4,1.08,0.087,0.64,94,897,703,0,6,1.4,72,0,0,72,0.341,44.07,47.18,0.95,0.14,789,1.2,117,1.1
+3280,2016,5,17,16,30,12.8,1.08,0.086,0.64,83,831,517,0,8,1.1,270,200,0,374,0.341,44.93,58.5,0.95,0.14,789,1.2,87,1.1
+3281,2016,5,17,17,30,11.9,1.09,0.084,0.64,66,717,313,7,7,1.1,159,278,7,255,0.341,47.48,69.84,0.94,0.14,789,1.2,61,1.2
+3282,2016,5,17,18,30,9.9,1.09,0.081,0.64,42,486,119,7,4,3.2,73,3,7,74,0.342,63.21,80.86,0.94,0.14,789,1.1,43,1
+3283,2016,5,17,19,30,7.8,1.09,0.075,0.64,0,0,0,0,8,4.5,0,0,0,0,0.342,79.48,91.43,0.94,0.14,790,1.1,35,1.1
+3284,2016,5,17,20,30,6.7,1.08,0.072,0.64,0,0,0,0,8,3.5,0,0,0,0,0.343,80.01,101,0.94,0.14,790,1.1,35,1.2
+3285,2016,5,17,21,30,5.8,1.08,0.071,0.64,0,0,0,0,8,2.9,0,0,0,0,0.342,81.82,109.2,0.94,0.14,790,1.1,40,1.2
+3286,2016,5,17,22,30,5.1,1.09,0.072,0.64,0,0,0,0,1,2.5,0,0,0,0,0.342,83.16,115.44,0.94,0.14,790,1.1,46,1.1
+3287,2016,5,17,23,30,4.6,1.1,0.074,0.64,0,0,0,0,1,2.2,0,0,0,0,0.341,84.13,119.08,0.94,0.14,790,1.1,50,1
+3288,2016,5,18,0,30,4.3,1.1,0.076,0.64,0,0,0,0,8,2,0,0,0,0,0.34,84.75,119.64,0.94,0.14,790,1.2,50,0.9
+3289,2016,5,18,1,30,3.9,1.11,0.078,0.64,0,0,0,0,1,1.9,0,0,0,0,0.339,86.89,117.03,0.94,0.14,790,1.2,49,0.8
+3290,2016,5,18,2,30,3.4,1.11,0.078,0.64,0,0,0,0,1,1.8,0,0,0,0,0.339,89.52,111.62,0.94,0.14,790,1.2,50,0.8
+3291,2016,5,18,3,30,2.9,1.11,0.078,0.64,0,0,0,0,1,1.7,0,0,0,0,0.339,91.99,104.03,0.94,0.14,790,1.2,50,0.7
+3292,2016,5,18,4,30,2.9,1.1,0.078,0.64,0,0,0,0,1,1.7,0,0,0,0,0.34,91.8,94.88,0.94,0.14,790,1.2,49,0.7
+3293,2016,5,18,5,30,4.6,1.1,0.078,0.64,30,343,62,0,1,2.1,30,343,0,62,0.34,83.63,84.54,0.94,0.14,791,1.2,55,0.8
+3294,2016,5,18,6,30,7.9,1.09,0.077,0.64,58,665,244,0,1,2.5,58,665,0,244,0.34,68.66,73.71,0.94,0.14,791,1.2,83,0.8
+3295,2016,5,18,7,30,10.9,1.08,0.075,0.64,74,816,451,0,0,2.2,74,816,0,451,0.34,54.88,62.44,0.94,0.14,791,1.1,145,0.5
+3296,2016,5,18,8,30,12.8,1.08,0.075,0.64,85,893,646,0,0,1.8,85,893,0,646,0.34,46.99,51.07,0.94,0.14,790,1.1,184,0.5
+3297,2016,5,18,9,30,14.1,1.08,0.077,0.64,93,937,812,0,3,1.3,398,57,0,441,0.34,41.84,39.97,0.94,0.14,790,1.1,188,0.8
+3298,2016,5,18,10,30,15.2,1.08,0.075,0.64,98,965,935,0,1,1.1,98,965,0,935,0.341,38.45,29.87,0.94,0.14,790,1.1,198,0.9
+3299,2016,5,18,11,30,16.1,1.06,0.07,0.64,98,982,1005,0,3,1.1,341,1,0,342,0.342,36.11,22.5,0.94,0.14,790,1.1,210,1
+3300,2016,5,18,12,30,16.8,1.05,0.068,0.64,97,986,1016,0,3,1,539,232,0,755,0.343,34.32,21.16,0.94,0.14,789,1.1,221,1.1
+3301,2016,5,18,13,30,17.3,1.04,0.066,0.64,94,978,968,0,7,0.9,257,686,0,869,0.344,33.13,26.78,0.94,0.14,789,1.1,234,1.1
+3302,2016,5,18,14,30,17.5,1,0.057,0.64,86,966,865,0,3,0.8,426,76,0,487,0.344,32.4,36.19,0.94,0.14,788,1.1,248,1.2
+3303,2016,5,18,15,30,17.4,1,0.057,0.64,80,930,713,0,8,0.6,220,559,0,601,0.344,32.05,47.04,0.94,0.14,787,1.1,254,1.3
+3304,2016,5,18,16,30,16.9,1,0.058,0.64,71,868,527,0,1,0.3,71,868,0,527,0.343,32.5,58.37,0.94,0.14,787,1.1,253,1.4
+3305,2016,5,18,17,30,15.9,1.01,0.059,0.64,59,759,322,7,6,0.2,165,51,7,183,0.342,34.29,69.7,0.94,0.14,787,1.1,246,1.3
+3306,2016,5,18,18,30,13.9,1.04,0.063,0.64,39,525,124,7,8,2.9,82,38,7,88,0.34,47.51,80.72,0.94,0.14,787,1.1,238,1
+3307,2016,5,18,19,30,11.9,1.05,0.063,0.64,0,0,0,0,1,5.3,0,0,0,0,0.34,63.99,91.27,0.94,0.14,787,1.1,235,1
+3308,2016,5,18,20,30,10.6,1.06,0.065,0.64,0,0,0,0,1,4.5,0,0,0,0,0.341,65.92,100.83,0.94,0.14,787,1.1,238,1.1
+3309,2016,5,18,21,30,9.5,1.08,0.065,0.64,0,0,0,0,1,4.2,0,0,0,0,0.342,69.52,109.01,0.94,0.14,787,1.1,243,1.2
+3310,2016,5,18,22,30,8.4,1.08,0.065,0.64,0,0,0,0,1,3.8,0,0,0,0,0.343,72.66,115.23,0.94,0.14,787,1.1,247,1.3
+3311,2016,5,18,23,30,7.4,1.07,0.064,0.64,0,0,0,0,1,3.3,0,0,0,0,0.343,75.32,118.87,0.94,0.14,787,1.1,250,1.3
+3312,2016,5,19,0,30,6.7,1.06,0.064,0.64,0,0,0,0,1,3,0,0,0,0,0.341,77.16,119.43,0.93,0.14,786,1.1,250,1.3
+3313,2016,5,19,1,30,6.1,1.05,0.063,0.64,0,0,0,0,1,2.7,0,0,0,0,0.339,78.92,116.83,0.93,0.14,786,1.1,245,1.3
+3314,2016,5,19,2,30,5.5,1.04,0.063,0.64,0,0,0,0,1,2.6,0,0,0,0,0.337,81.3,111.44,0.93,0.14,786,1.1,237,1.2
+3315,2016,5,19,3,30,4.9,1.04,0.064,0.64,0,0,0,0,1,2.4,0,0,0,0,0.335,83.81,103.87,0.93,0.14,786,1.1,226,1.2
+3316,2016,5,19,4,30,4.8,1.04,0.067,0.64,0,0,0,0,4,2.3,0,0,0,0,0.334,83.68,94.74,0.93,0.14,786,1.1,216,1.3
+3317,2016,5,19,5,30,6.6,1.04,0.069,0.64,29,369,65,7,4,2.7,38,1,7,38,0.333,76.15,84.41,0.94,0.14,786,1.1,211,2.1
+3318,2016,5,19,6,30,10,1.04,0.071,0.64,56,681,249,0,1,3,56,681,0,249,0.332,61.7,73.59,0.94,0.14,786,1.1,212,3.3
+3319,2016,5,19,7,30,13,1.05,0.071,0.64,72,822,454,0,1,3,72,822,0,454,0.332,50.51,62.33,0.94,0.14,785,1.1,214,4
+3320,2016,5,19,8,30,15,1.06,0.07,0.64,83,900,649,0,1,2.9,83,900,0,649,0.332,44.25,50.95,0.94,0.14,785,1.1,214,4.3
+3321,2016,5,19,9,30,16.3,1.07,0.07,0.64,90,944,815,0,0,3,90,944,0,815,0.331,40.89,39.84,0.94,0.14,785,1.1,214,4.5
+3322,2016,5,19,10,30,17.3,1.08,0.073,0.64,96,968,937,0,1,2.9,96,968,0,937,0.329,38.12,29.71,0.94,0.14,784,1.1,215,4.7
+3323,2016,5,19,11,30,18.3,1.22,0.055,0.64,89,996,1010,0,1,2.7,89,996,0,1010,0.327,35.35,22.31,0.94,0.14,784,1.1,215,4.9
+3324,2016,5,19,12,30,19,1.23,0.054,0.64,88,999,1021,0,1,2.4,88,999,0,1021,0.324,33.05,20.95,0.94,0.14,783,1.1,214,5.1
+3325,2016,5,19,13,30,19.6,1.24,0.054,0.64,87,991,973,0,1,2.1,87,991,0,973,0.322,31.2,26.61,0.94,0.14,783,1.1,212,5.2
+3326,2016,5,19,14,30,19.9,1.3,0.047,0.64,79,978,870,0,3,1.9,460,154,0,584,0.321,30.18,36.04,0.95,0.14,782,1.1,211,5.2
+3327,2016,5,19,15,30,19.4,1.27,0.05,0.64,75,941,718,0,3,1.7,322,438,0,621,0.322,30.8,46.91,0.95,0.14,781,1.1,212,5.1
+3328,2016,5,19,16,30,18.3,1.25,0.059,0.64,71,868,528,0,1,1.8,71,868,0,528,0.324,33.16,58.23,0.95,0.14,781,1.2,211,4.6
+3329,2016,5,19,17,30,16.8,1.26,0.071,0.64,62,744,322,7,8,2.4,183,106,7,220,0.325,37.88,69.56,0.95,0.14,781,1.2,205,3.7
+3330,2016,5,19,18,30,14.3,1.28,0.072,0.64,41,517,126,7,6,3.8,62,7,7,63,0.327,49.42,80.58,0.95,0.14,781,1.2,194,2.7
+3331,2016,5,19,19,30,11.8,1.27,0.062,0.64,0,0,0,0,8,4.6,0,0,0,0,0.328,61.38,91.12,0.94,0.14,781,1.2,184,2.5
+3332,2016,5,19,20,30,10.5,1.21,0.059,0.64,0,0,0,0,8,4.2,0,0,0,0,0.328,65.01,100.66,0.94,0.14,781,1.2,179,2.4
+3333,2016,5,19,21,30,9.5,1.17,0.061,0.64,0,0,0,0,8,4.2,0,0,0,0,0.328,69.3,108.82,0.94,0.14,781,1.3,178,2.2
+3334,2016,5,19,22,30,8.9,1.18,0.063,0.64,0,0,0,0,6,4.1,0,0,0,0,0.328,71.98,115.03,0.95,0.14,781,1.3,178,2
+3335,2016,5,19,23,30,8.6,1.22,0.067,0.64,0,0,0,0,6,4.2,0,0,0,0,0.328,74.09,118.66,0.95,0.14,781,1.4,179,1.9
+3336,2016,5,20,0,30,8.1,1.24,0.07,0.64,0,0,0,0,8,4.4,0,0,0,0,0.328,77.53,119.22,0.95,0.14,781,1.4,183,1.9
+3337,2016,5,20,1,30,7.4,1.22,0.069,0.64,0,0,0,0,8,4.5,0,0,0,0,0.329,81.72,116.63,0.94,0.14,781,1.4,186,2.1
+3338,2016,5,20,2,30,6.7,1.17,0.068,0.64,0,0,0,0,8,4.3,0,0,0,0,0.332,84.6,111.26,0.93,0.14,781,1.3,185,2.3
+3339,2016,5,20,3,30,6.1,1.14,0.069,0.64,0,0,0,0,8,4.3,0,0,0,0,0.335,88.11,103.71,0.93,0.14,782,1.3,181,2.3
+3340,2016,5,20,4,30,6.1,1.13,0.072,0.64,0,0,0,0,8,4.2,0,0,0,0,0.337,87.84,94.6,0.94,0.14,782,1.3,180,2.4
+3341,2016,5,20,5,30,7.8,1.14,0.077,0.64,30,357,66,7,8,4.4,51,20,7,53,0.337,79.14,84.29,0.94,0.14,782,1.3,180,3.2
+3342,2016,5,20,6,30,11.1,1.16,0.084,0.64,60,658,247,7,8,4.7,143,106,7,174,0.337,64.76,73.48,0.95,0.14,782,1.3,183,4.5
+3343,2016,5,20,7,30,14.4,1.16,0.087,0.64,78,798,450,0,7,4.6,174,430,0,374,0.338,51.72,62.22,0.95,0.14,782,1.3,190,6
+3344,2016,5,20,8,30,16.7,1.15,0.08,0.64,86,884,644,0,1,4,86,884,0,644,0.338,42.83,50.84,0.94,0.14,783,1.3,197,7.3
+3345,2016,5,20,9,30,18,1.13,0.068,0.64,88,940,811,0,6,3.7,345,378,0,635,0.338,38.61,39.72,0.93,0.14,783,1.3,196,7.8
+3346,2016,5,20,10,30,19.2,1.11,0.06,0.64,89,976,937,0,8,3.2,220,674,0,806,0.338,34.57,29.57,0.93,0.14,782,1.2,194,8.1
+3347,2016,5,20,11,30,20.2,1.07,0.056,0.64,89,991,1007,0,1,2.9,89,991,0,1007,0.336,31.79,22.12,0.93,0.14,782,1.2,193,8.3
+3348,2016,5,20,12,30,21,1.05,0.052,0.64,87,996,1019,0,8,2.8,313,567,0,843,0.333,30.1,20.75,0.93,0.14,782,1.2,194,8.4
+3349,2016,5,20,13,30,21.5,1.03,0.05,0.64,85,990,971,0,8,2.7,429,343,0,736,0.331,29.04,26.43,0.93,0.14,782,1.2,195,8.3
+3350,2016,5,20,14,30,21.6,1.01,0.05,0.64,81,970,867,0,6,2.6,367,300,0,610,0.33,28.54,35.89,0.93,0.14,781,1.2,196,8.1
+3351,2016,5,20,15,30,21.3,0.99,0.056,0.64,79,929,715,0,8,2.2,201,589,0,604,0.328,28.39,46.77,0.93,0.14,781,1.2,196,7.7
+3352,2016,5,20,16,30,20.5,0.98,0.063,0.64,73,861,528,0,8,1.9,267,215,0,381,0.327,29.03,58.1,0.93,0.14,781,1.2,195,7.1
+3353,2016,5,20,17,30,19.1,0.97,0.068,0.64,62,745,324,7,8,1.7,178,82,7,207,0.326,31.35,69.43,0.94,0.14,781,1.2,192,5.9
+3354,2016,5,20,18,30,16.6,0.97,0.071,0.64,42,513,127,7,8,2.4,80,24,7,84,0.326,38.4,80.44,0.93,0.14,781,1.2,189,4.4
+3355,2016,5,20,19,30,14.2,0.98,0.069,0.64,0,0,0,0,8,3.3,0,0,0,0,0.326,47.7,90.97,0.93,0.14,782,1.2,187,3.7
+3356,2016,5,20,20,30,13.4,0.99,0.069,0.64,0,0,0,0,8,3.2,0,0,0,0,0.326,50.1,100.49,0.93,0.14,782,1.2,189,4.1
+3357,2016,5,20,21,30,13,0.99,0.072,0.64,0,0,0,0,6,3.1,0,0,0,0,0.326,50.98,108.64,0.93,0.14,782,1.2,193,4.5
+3358,2016,5,20,22,30,12.6,0.98,0.073,0.64,0,0,0,0,8,3,0,0,0,0,0.326,52.13,114.84,0.93,0.14,782,1.1,199,4.9
+3359,2016,5,20,23,30,12,0.96,0.072,0.64,0,0,0,0,8,3,0,0,0,0,0.327,53.94,118.46,0.93,0.14,782,1.1,203,4.9
+3360,2016,5,21,0,30,11.3,0.93,0.072,0.64,0,0,0,0,8,2.9,0,0,0,0,0.328,56.36,119.02,0.93,0.14,783,1.1,206,4.7
+3361,2016,5,21,1,30,10.5,0.86,0.078,0.64,0,0,0,0,8,2.9,0,0,0,0,0.329,59.16,116.44,0.93,0.14,783,1.1,208,4.3
+3362,2016,5,21,2,30,9.4,0.75,0.087,0.64,0,0,0,0,8,2.9,0,0,0,0,0.331,63.81,111.09,0.93,0.14,783,1,209,3.5
+3363,2016,5,21,3,30,8,0.64,0.094,0.64,0,0,0,0,8,3,0,0,0,0,0.333,70.71,103.56,0.93,0.14,783,1,204,2.8
+3364,2016,5,21,4,30,7.6,0.57,0.098,0.64,0,0,0,0,8,3,0,0,0,0,0.334,72.4,94.46,0.93,0.14,783,0.9,196,2.7
+3365,2016,5,21,5,30,9.2,0.57,0.095,0.64,35,302,65,7,8,2.9,56,43,7,60,0.335,64.85,84.17,0.93,0.14,783,0.9,187,3.7
+3366,2016,5,21,6,30,12.2,0.65,0.087,0.64,63,653,250,7,8,2.9,123,360,7,226,0.337,52.87,73.37,0.93,0.14,783,0.9,187,5.4
+3367,2016,5,21,7,30,14.9,0.72,0.078,0.64,77,821,461,0,8,2.2,168,595,0,446,0.336,42.47,62.11,0.93,0.14,783,0.8,192,7.4
+3368,2016,5,21,8,30,16.6,0.72,0.073,0.64,86,905,659,0,8,0.4,259,425,0,528,0.334,33.44,50.73,0.93,0.14,783,0.8,196,8.9
+3369,2016,5,21,9,30,17.6,0.71,0.07,0.64,92,949,823,0,6,-0.2,368,289,0,591,0.331,29.97,39.6,0.93,0.14,783,0.9,198,9.5
+3370,2016,5,21,10,30,18.5,0.74,0.068,0.64,96,977,946,0,6,-0.4,391,392,0,733,0.327,27.89,29.43,0.93,0.14,783,0.9,200,9.7
+3371,2016,5,21,11,30,19.2,0.86,0.059,0.64,92,994,1015,0,6,-0.4,440,380,0,793,0.323,26.75,21.94,0.93,0.14,783,1,202,9.7
+3372,2016,5,21,12,30,19.6,0.92,0.065,0.64,96,988,1021,0,8,-0.2,354,532,0,852,0.319,26.44,20.55,0.94,0.14,782,1.1,205,9.6
+3373,2016,5,21,13,30,19.8,0.98,0.071,0.64,97,972,968,0,4,0.1,516,200,0,695,0.317,26.62,26.26,0.94,0.14,782,1.2,207,9.4
+3374,2016,5,21,14,30,19.5,1.15,0.072,0.64,93,952,865,0,3,0.3,401,424,0,745,0.316,27.65,35.75,0.95,0.14,782,1.2,209,8.7
+3375,2016,5,21,15,30,18.6,1.16,0.085,0.64,92,899,710,0,8,0.6,329,205,0,470,0.317,29.9,46.64,0.95,0.14,782,1.3,215,7.6
+3376,2016,5,21,16,30,17.2,1.14,0.085,0.64,82,831,523,0,8,1.2,235,76,0,275,0.319,33.92,57.97,0.95,0.14,782,1.4,224,6.2
+3377,2016,5,21,17,30,15.2,1.08,0.093,0.64,70,706,320,0,8,2.1,139,435,0,293,0.32,41.15,69.3,0.95,0.13,782,1.4,238,4.5
+3378,2016,5,21,18,30,13,1.01,0.095,0.64,46,465,125,7,4,3.4,67,1,7,68,0.322,52.26,80.3,0.95,0.13,782,1.5,254,2.8
+3379,2016,5,21,19,30,11.2,0.94,0.089,0.64,0,0,0,0,8,4.7,0,0,0,0,0.324,64.3,90.34,0.95,0.13,783,1.5,273,1.9
+3380,2016,5,21,20,30,10,0.92,0.091,0.64,0,0,0,0,8,5.1,0,0,0,0,0.326,71.58,100.33,0.95,0.13,784,1.5,290,1.7
+3381,2016,5,21,21,30,9,0.93,0.096,0.64,0,0,0,0,8,5.1,0,0,0,0,0.328,76.5,108.47,0.95,0.13,784,1.4,302,1.6
+3382,2016,5,21,22,30,7.9,0.97,0.096,0.64,0,0,0,0,8,4.9,0,0,0,0,0.329,81.56,114.65,0.95,0.13,784,1.4,317,1.6
+3383,2016,5,21,23,30,6.8,1.02,0.099,0.64,0,0,0,0,4,4.8,0,0,0,0,0.33,86.89,118.26,0.95,0.13,785,1.3,337,1.6
+3384,2016,5,22,0,30,6,1.06,0.102,0.64,0,0,0,0,8,4.6,0,0,0,0,0.331,90.42,118.82,0.95,0.13,785,1.2,176,1.6
+3385,2016,5,22,1,30,5.4,1.07,0.099,0.64,0,0,0,0,4,4.2,0,0,0,0,0.332,91.73,116.26,0.95,0.13,784,1.2,13,1.5
+3386,2016,5,22,2,30,4.8,1.07,0.097,0.64,0,0,0,0,4,3.6,0,0,0,0,0.333,92.04,110.92,0.95,0.13,784,1.1,28,1.6
+3387,2016,5,22,3,30,4.2,1.07,0.097,0.64,0,0,0,0,4,3.1,0,0,0,0,0.335,92.81,103.41,0.95,0.13,784,1,36,1.5
+3388,2016,5,22,4,30,4,1.06,0.097,0.64,0,0,0,0,8,2.7,0,0,0,0,0.338,90.97,94.33,0.95,0.13,784,0.9,36,1.4
+3389,2016,5,22,5,30,5.2,1.05,0.095,0.64,34,340,69,7,4,2.6,22,0,7,22,0.341,83.12,84.06,0.95,0.13,784,0.9,40,1.2
+3390,2016,5,22,6,30,7.8,1.05,0.088,0.64,62,671,255,7,4,2.6,66,0,7,66,0.344,69.46,73.26,0.94,0.13,784,0.8,126,1.1
+3391,2016,5,22,7,30,10.9,1.04,0.078,0.64,75,827,463,0,4,1,248,282,0,381,0.346,50.54,62.01,0.93,0.13,784,0.8,212,2.6
+3392,2016,5,22,8,30,13.1,1.01,0.071,0.64,83,911,661,0,4,-2.3,369,201,0,496,0.347,34.28,50.63,0.93,0.13,784,0.8,219,4.6
+3393,2016,5,22,9,30,14.4,0.99,0.07,0.64,90,960,831,0,7,-3.7,366,131,0,467,0.348,28.34,39.49,0.93,0.13,784,0.7,217,5.6
+3394,2016,5,22,10,30,15.3,0.98,0.069,0.64,95,987,955,0,4,-4.4,372,2,0,374,0.349,25.43,29.29,0.93,0.13,783,0.7,215,6.3
+3395,2016,5,22,11,30,16,1.04,0.064,0.64,94,1004,1026,0,8,-5.1,257,711,0,917,0.35,23.16,21.77,0.93,0.13,783,0.7,216,6.9
+3396,2016,5,22,12,30,16.3,0.99,0.07,0.64,98,1006,1041,0,8,-5.8,452,234,0,671,0.351,21.52,20.36,0.93,0.13,783,0.6,218,7.4
+3397,2016,5,22,13,30,16.3,0.99,0.076,0.64,100,992,991,0,3,-6.4,490,379,0,830,0.352,20.53,26.09,0.94,0.13,783,0.6,223,7.5
+3398,2016,5,22,14,30,15.8,1.03,0.076,0.64,96,966,881,0,1,-6.8,96,966,0,881,0.353,20.57,35.6,0.94,0.13,783,0.7,234,7.1
+3399,2016,5,22,15,30,14.9,1.05,0.076,0.64,89,930,729,0,1,-6.7,89,930,0,729,0.353,21.84,46.51,0.94,0.13,783,0.7,250,6.3
+3400,2016,5,22,16,30,13.5,1.01,0.081,0.64,81,861,540,0,1,-6,81,861,0,540,0.352,25.3,57.85,0.94,0.13,784,0.7,274,5.4
+3401,2016,5,22,17,30,11.5,1.01,0.083,0.64,68,741,332,0,1,-4.6,68,741,0,332,0.35,32.06,69.17,0.94,0.15,784,0.8,302,4.6
+3402,2016,5,22,18,30,8.7,1.03,0.075,0.64,43,530,134,0,1,-2.9,43,530,0,134,0.349,43.98,80.16,0.93,0.15,785,0.8,328,3.4
+3403,2016,5,22,19,30,6,1.03,0.068,0.64,0,0,0,0,1,-0.8,0,0,0,0,0.35,61.92,90.2,0.93,0.15,786,0.8,174,2.2
+3404,2016,5,22,20,30,4.3,1.01,0.064,0.64,0,0,0,0,1,0,0,0,0,0,0.35,73.59,100.17,0.93,0.15,786,0.8,16,1.6
+3405,2016,5,22,21,30,3.2,1,0.065,0.64,0,0,0,0,1,0.2,0,0,0,0,0.35,80.68,108.29,0.93,0.15,786,0.8,32,1.3
+3406,2016,5,22,22,30,2.4,1,0.067,0.64,0,0,0,0,1,0.2,0,0,0,0,0.352,85.57,114.46,0.93,0.15,786,0.7,46,1.1
+3407,2016,5,22,23,30,1.7,0.98,0.065,0.64,0,0,0,0,1,0.1,0,0,0,0,0.354,89.07,118.07,0.93,0.15,786,0.7,58,1.1
+3408,2016,5,23,0,30,1.2,0.98,0.067,0.64,0,0,0,0,1,-0.1,0,0,0,0,0.357,91.01,118.64,0.93,0.15,786,0.7,68,1.1
+3409,2016,5,23,1,30,0.9,0.99,0.074,0.64,0,0,0,0,1,-0.1,0,0,0,0,0.359,92.75,116.08,0.94,0.15,785,0.7,73,1
+3410,2016,5,23,2,30,0.5,0.97,0.073,0.64,0,0,0,0,1,-0.1,0,0,0,0,0.361,95.67,110.76,0.93,0.15,785,0.7,74,1
+3411,2016,5,23,3,30,0.1,0.95,0.073,0.64,0,0,0,0,1,-0.2,0,0,0,0,0.361,97.67,103.27,0.93,0.15,785,0.7,72,1
+3412,2016,5,23,4,30,0.4,0.96,0.078,0.64,0,0,0,0,1,-0.4,0,0,0,0,0.36,94.34,94.21,0.94,0.15,785,0.7,68,1.1
+3413,2016,5,23,5,30,2.2,0.98,0.084,0.64,33,370,72,0,1,-0.3,33,370,0,72,0.36,83.34,83.95,0.94,0.15,785,0.7,63,1.8
+3414,2016,5,23,6,30,5.1,1,0.084,0.64,62,682,259,0,1,-1.2,62,682,0,259,0.359,63.66,73.16,0.94,0.15,785,0.7,60,2.4
+3415,2016,5,23,7,30,8,1.03,0.085,0.64,79,818,464,0,4,-3.2,242,317,0,391,0.359,45.04,61.92,0.94,0.15,785,0.8,58,2.1
+3416,2016,5,23,8,30,10.7,1.04,0.083,0.64,89,898,660,0,1,-3.9,89,898,0,660,0.357,35.77,50.54,0.94,0.15,785,0.8,96,1
+3417,2016,5,23,9,30,13.3,1.05,0.083,0.64,98,944,827,0,1,-4.6,98,944,0,827,0.354,28.42,39.39,0.94,0.15,785,0.8,182,1.1
+3418,2016,5,23,10,30,15.1,1.06,0.081,0.64,102,972,950,0,0,-4.8,102,972,0,950,0.352,24.98,29.16,0.94,0.15,785,0.8,230,2.4
+3419,2016,5,23,11,30,16.2,1.31,0.066,0.64,95,999,1024,0,1,-4.4,95,999,0,1024,0.352,23.98,21.6,0.94,0.15,784,0.8,232,3.3
+3420,2016,5,23,12,30,16.8,1.23,0.068,0.64,96,998,1034,0,3,-4.2,551,256,0,791,0.353,23.43,20.17,0.93,0.15,784,0.8,235,3.8
+3421,2016,5,23,13,30,17.1,1.15,0.07,0.64,96,988,985,7,3,-4.2,359,630,7,925,0.353,23.09,25.93,0.93,0.15,783,0.8,240,4
+3422,2016,5,23,14,30,17.2,1.34,0.057,0.64,85,981,883,0,1,-4.4,85,981,0,883,0.353,22.6,35.46,0.93,0.15,783,0.8,246,4.1
+3423,2016,5,23,15,30,16.9,1.27,0.058,0.64,79,945,731,0,1,-4.7,79,945,0,731,0.352,22.53,46.38,0.93,0.15,783,0.8,251,3.8
+3424,2016,5,23,16,30,16.2,1.18,0.063,0.64,73,880,543,0,1,-4.9,73,880,0,543,0.349,23.18,57.72,0.93,0.15,783,0.8,256,3.3
+3425,2016,5,23,17,30,14.9,1.11,0.074,0.64,64,758,336,0,1,-4.7,64,758,0,336,0.347,25.46,69.04,0.93,0.14,783,0.8,265,2.2
+3426,2016,5,23,18,30,12.5,1.08,0.085,0.64,46,517,135,7,8,-1.3,90,123,7,112,0.344,38.42,80.03,0.94,0.14,783,0.8,293,1.1
+3427,2016,5,23,19,30,10.4,1.09,0.101,0.64,0,0,0,0,8,2.1,0,0,0,0,0.342,56.42,90.08,0.94,0.14,784,0.8,334,0.7
+3428,2016,5,23,20,30,9.6,1.14,0.115,0.64,0,0,0,0,8,0.9,0,0,0,0,0.34,54.48,100.01,0.95,0.14,784,0.9,187,0.8
+3429,2016,5,23,21,30,8.9,1.21,0.126,0.64,0,0,0,0,8,0.4,0,0,0,0,0.337,55.21,108.12,0.95,0.14,784,0.9,28,1
+3430,2016,5,23,22,30,8,1.26,0.129,0.64,0,0,0,0,8,0.4,0,0,0,0,0.336,58.69,114.28,0.95,0.14,784,0.9,40,1.2
+3431,2016,5,23,23,30,7,1.28,0.112,0.64,0,0,0,0,1,0.6,0,0,0,0,0.336,63.74,117.88,0.95,0.14,784,0.9,47,1.3
+3432,2016,5,24,0,30,6,1.27,0.093,0.64,0,0,0,0,8,0.8,0,0,0,0,0.337,69.07,118.45,0.94,0.14,783,0.9,54,1.2
+3433,2016,5,24,1,30,5.2,1.26,0.082,0.64,0,0,0,0,8,0.7,0,0,0,0,0.337,72.8,115.91,0.94,0.14,783,0.9,61,1.1
+3434,2016,5,24,2,30,4.4,1.26,0.077,0.64,0,0,0,0,1,0.5,0,0,0,0,0.337,75.62,110.61,0.93,0.14,783,0.9,68,1.1
+3435,2016,5,24,3,30,3.7,1.27,0.078,0.64,0,0,0,0,8,0,0,0,0,0,0.336,76.92,103.14,0.93,0.14,783,0.9,74,1.1
+3436,2016,5,24,4,30,4,1.3,0.086,0.64,0,0,0,0,8,-0.5,0,0,0,0,0.336,72.43,94.09,0.94,0.14,783,0.8,82,1.1
+3437,2016,5,24,5,30,6.4,1.31,0.094,0.64,34,371,73,7,4,0.1,48,2,7,48,0.335,64.29,83.84,0.94,0.14,783,0.8,94,1.5
+3438,2016,5,24,6,30,10.1,1.31,0.085,0.64,60,686,260,7,4,-0.5,156,22,7,163,0.334,47.89,73.07,0.93,0.14,783,0.8,123,2.1
+3439,2016,5,24,7,30,13.7,1.3,0.077,0.64,74,834,468,0,3,-2.2,245,297,0,385,0.331,33.34,61.83,0.93,0.14,783,0.8,165,3.3
+3440,2016,5,24,8,30,16.3,1.28,0.074,0.64,83,912,664,0,1,-4.2,83,912,0,664,0.327,24.18,50.45,0.92,0.14,783,0.8,191,5.1
+3441,2016,5,24,9,30,17.7,1.23,0.069,0.64,88,959,831,0,1,-4.4,88,959,0,831,0.324,21.9,39.29,0.92,0.14,783,0.8,198,6.5
+3442,2016,5,24,10,30,18.6,1.14,0.067,0.64,92,985,954,0,8,-4.2,437,281,0,683,0.322,20.98,29.04,0.91,0.14,783,0.8,201,7.4
+3443,2016,5,24,11,30,19.2,1.35,0.052,0.64,86,1016,1032,0,8,-4.1,330,635,0,921,0.323,20.27,21.44,0.91,0.14,783,0.7,203,8
+3444,2016,5,24,12,30,19.6,1.3,0.052,0.64,86,1017,1042,0,1,-4.2,86,1017,0,1042,0.324,19.66,19.99,0.9,0.14,783,0.7,205,8.2
+3445,2016,5,24,13,30,19.7,1.26,0.054,0.64,86,1008,993,0,1,-4.3,86,1008,0,993,0.326,19.37,25.77,0.9,0.14,782,0.7,207,8.4
+3446,2016,5,24,14,30,19.4,1.31,0.054,0.64,82,989,889,0,4,-4.4,431,57,0,478,0.326,19.63,35.33,0.9,0.14,782,0.7,208,8.4
+3447,2016,5,24,15,30,18.8,1.3,0.054,0.64,77,956,738,0,8,-4.6,294,379,0,556,0.326,20.13,46.25,0.91,0.14,782,0.7,210,8.3
+3448,2016,5,24,16,30,17.7,1.24,0.058,0.64,70,894,549,0,8,-4.8,228,370,0,426,0.326,21.13,57.6,0.91,0.14,783,0.7,215,7.8
+3449,2016,5,24,17,30,16,1.18,0.064,0.64,61,777,340,0,8,-4.9,7,0,0,7,0.327,23.37,68.91,0.92,0.14,783,0.8,222,6.6
+3450,2016,5,24,18,30,13,1.16,0.07,0.64,42,553,139,0,1,-4.1,42,553,0,139,0.327,30.29,79.89,0.92,0.14,783,0.8,233,4.3
+3451,2016,5,24,19,30,9.9,1.17,0.074,0.64,0,0,0,0,1,-1.4,0,0,0,0,0.329,45.46,89.96,0.92,0.14,784,0.8,251,2.5
+3452,2016,5,24,20,30,8,1.16,0.078,0.64,0,0,0,0,8,0.5,0,0,0,0,0.33,59.22,99.86,0.92,0.14,784,0.9,274,1.8
+3453,2016,5,24,21,30,6.7,1.16,0.083,0.64,0,0,0,0,8,1.7,0,0,0,0,0.331,70.26,107.96,0.93,0.14,785,1,295,1.5
+3454,2016,5,24,22,30,5.9,1.19,0.095,0.64,0,0,0,0,8,2.4,0,0,0,0,0.333,78.37,114.11,0.94,0.14,785,1,308,1.2
+3455,2016,5,24,23,30,5.4,1.22,0.109,0.64,0,0,0,0,8,3,0,0,0,0,0.335,84.42,117.7,0.94,0.14,785,1.1,312,1
+3456,2016,5,25,0,30,4.6,1.24,0.106,0.64,0,0,0,0,8,3.2,0,0,0,0,0.337,90.37,118.28,0.94,0.14,786,1,307,0.8
+3457,2016,5,25,1,30,4,1.26,0.102,0.64,0,0,0,0,4,3,0,0,0,0,0.339,93.09,115.75,0.93,0.14,786,1,289,0.7
+3458,2016,5,25,2,30,3.7,1.28,0.099,0.64,0,0,0,0,1,2.8,0,0,0,0,0.34,94.03,110.46,0.93,0.14,786,1,251,0.7
+3459,2016,5,25,3,30,3.1,1.3,0.098,0.64,0,0,0,0,1,2.7,0,0,0,0,0.34,97.36,103.01,0.94,0.14,786,1,216,0.9
+3460,2016,5,25,4,30,3,1.31,0.097,0.64,0,0,0,0,1,2.6,0,0,0,0,0.34,97.38,93.97,0.94,0.14,786,0.9,205,1.2
+3461,2016,5,25,5,30,4.9,1.31,0.097,0.64,34,365,74,0,1,2.8,34,365,0,74,0.339,86.14,83.74,0.94,0.14,787,0.9,205,2.1
+3462,2016,5,25,6,30,8.3,1.29,0.092,0.64,62,671,258,0,0,2.9,62,671,0,258,0.339,68.74,72.98,0.93,0.14,787,0.9,214,3.5
+3463,2016,5,25,7,30,11.4,1.25,0.085,0.64,77,819,465,0,0,1.5,77,819,0,465,0.337,50.7,61.74,0.93,0.14,787,0.9,225,4.7
+3464,2016,5,25,8,30,13.2,1.21,0.089,0.64,91,890,659,0,1,-1.5,91,890,0,659,0.336,36.03,50.36,0.94,0.14,787,0.9,229,5.4
+3465,2016,5,25,9,30,14.4,1.18,0.088,0.64,99,941,828,0,1,-2.6,99,941,0,828,0.336,30.9,39.19,0.94,0.14,787,0.8,228,5.5
+3466,2016,5,25,10,30,15.5,1.16,0.084,0.64,102,970,952,0,1,-2.9,102,970,0,952,0.335,28.18,28.93,0.94,0.14,787,0.8,228,5.4
+3467,2016,5,25,11,30,16.4,1.14,0.081,0.64,104,985,1022,0,1,-3,104,985,0,1022,0.335,26.28,21.28,0.94,0.14,787,0.8,228,5.3
+3468,2016,5,25,12,30,17.1,1.07,0.085,0.64,107,984,1032,0,1,-3.4,107,984,0,1032,0.335,24.52,19.81,0.94,0.14,787,0.8,231,5.1
+3469,2016,5,25,13,30,17.5,1.01,0.09,0.64,107,970,982,0,3,-3.8,523,178,0,684,0.336,23.14,25.61,0.93,0.14,786,0.8,235,4.8
+3470,2016,5,25,14,30,17.7,1.14,0.068,0.64,91,970,883,0,3,-4.2,360,3,0,363,0.337,22.14,35.19,0.93,0.14,786,0.8,240,4.5
+3471,2016,5,25,15,30,17.5,1.11,0.069,0.64,86,933,732,0,3,-4.7,406,133,0,499,0.338,21.61,46.13,0.94,0.14,786,0.8,247,4.2
+3472,2016,5,25,16,30,16.7,1.12,0.072,0.64,78,870,545,0,3,-4.9,292,51,0,319,0.339,22.35,57.48,0.94,0.14,786,0.8,257,3.6
+3473,2016,5,25,17,30,15.2,1.14,0.077,0.64,66,757,340,0,3,-4.6,184,18,0,191,0.34,25.3,68.79,0.94,0.14,786,0.8,277,2.6
+3474,2016,5,25,18,30,12.5,1.15,0.081,0.64,45,535,140,0,1,-1.9,45,535,0,140,0.34,36.84,79.76,0.94,0.14,786,0.8,313,1.7
+3475,2016,5,25,19,30,10,1.16,0.081,0.64,0,0,0,0,1,1.2,0,0,0,0,0.34,54.5,89.84,0.94,0.14,787,0.8,347,1.7
+3476,2016,5,25,20,30,8.2,1.18,0.076,0.64,0,0,0,0,1,0.8,0,0,0,0,0.339,59.66,99.71,0.93,0.14,787,0.9,187,2
+3477,2016,5,25,21,30,6.5,1.18,0.074,0.64,0,0,0,0,1,1.1,0,0,0,0,0.338,68.48,107.79,0.93,0.14,787,0.9,19,2.1
+3478,2016,5,25,22,30,5.3,1.17,0.077,0.64,0,0,0,0,1,1.2,0,0,0,0,0.338,75.1,113.94,0.93,0.14,787,0.9,25,2.2
+3479,2016,5,25,23,30,4.5,1.17,0.082,0.64,0,0,0,0,4,1.3,0,0,0,0,0.337,79.63,117.53,0.93,0.14,787,0.9,29,2.2
+3480,2016,5,26,0,30,3.8,1.16,0.088,0.64,0,0,0,0,8,1.2,0,0,0,0,0.338,83.21,118.1,0.93,0.14,787,0.9,30,2.2
+3481,2016,5,26,1,30,3.2,1.17,0.093,0.64,0,0,0,0,8,1,0,0,0,0,0.338,85.73,115.59,0.94,0.14,786,1,28,2.1
+3482,2016,5,26,2,30,2.9,1.18,0.099,0.64,0,0,0,0,8,0.9,0,0,0,0,0.339,86.82,110.32,0.94,0.14,786,1,26,2
+3483,2016,5,26,3,30,2.7,1.2,0.104,0.64,0,0,0,0,8,0.9,0,0,0,0,0.339,87.95,102.88,0.94,0.14,786,1,23,2
+3484,2016,5,26,4,30,3,1.21,0.106,0.64,0,0,0,0,8,0.9,0,0,0,0,0.34,85.92,93.87,0.94,0.14,786,1,22,2.3
+3485,2016,5,26,5,30,4.6,1.22,0.108,0.64,36,342,74,7,8,1,45,5,7,45,0.34,77.29,83.65,0.94,0.14,786,1,21,3.1
+3486,2016,5,26,6,30,7.5,1.23,0.109,0.64,67,642,256,7,8,1,148,175,7,199,0.341,63.47,72.89,0.94,0.14,786,1,24,3.8
+3487,2016,5,26,7,30,10.5,1.24,0.109,0.64,86,786,459,0,1,0.6,86,786,0,459,0.341,50.24,61.66,0.94,0.14,786,1,30,4.1
+3488,2016,5,26,8,30,12.9,1.25,0.1,0.64,95,876,655,0,1,0,95,876,0,655,0.341,41.27,50.28,0.94,0.14,786,1,31,4
+3489,2016,5,26,9,30,14.7,1.26,0.094,0.64,101,928,821,0,1,-0.3,101,928,0,821,0.34,35.85,39.11,0.94,0.14,785,1,27,3.7
+3490,2016,5,26,10,30,16.1,1.26,0.09,0.64,104,958,943,0,1,-0.5,104,958,0,943,0.339,32.3,28.82,0.93,0.14,785,1,16,3.5
+3491,2016,5,26,11,30,17,1.52,0.061,0.64,90,995,1018,0,1,-0.5,90,995,0,1018,0.338,30.4,21.14,0.92,0.14,784,1,182,3.6
+3492,2016,5,26,12,30,17.3,1.48,0.061,0.64,91,997,1030,0,1,-0.5,91,997,0,1030,0.336,29.96,19.64,0.92,0.14,784,1,350,4
+3493,2016,5,26,13,30,17.3,1.45,0.064,0.64,91,990,985,0,6,-0.4,295,7,0,302,0.335,30.07,25.46,0.93,0.14,784,0.9,342,4.2
+3494,2016,5,26,14,30,17.1,1.15,0.093,0.64,103,944,876,0,9,-0.8,58,0,0,58,0.334,29.66,35.06,0.93,0.14,784,0.9,335,4
+3495,2016,5,26,15,30,16.8,1.18,0.086,0.64,93,918,730,0,9,-1.5,23,0,0,23,0.334,28.61,46.01,0.93,0.14,784,0.8,330,3.6
+3496,2016,5,26,16,30,16,1.2,0.08,0.64,80,863,546,0,6,-2.4,127,2,0,128,0.335,28.27,57.36,0.93,0.14,784,0.8,326,3.1
+3497,2016,5,26,17,30,14.8,1.22,0.073,0.64,64,772,345,0,6,-2.9,152,20,0,159,0.336,29.4,68.67,0.92,0.14,784,0.7,321,2.3
+3498,2016,5,26,18,30,12.3,1.22,0.063,0.64,42,581,146,7,8,-0.8,90,33,7,95,0.337,40.49,79.64,0.92,0.14,784,0.7,310,1.3
+3499,2016,5,26,19,30,9.8,1.2,0.062,0.64,0,0,0,7,8,1.8,0,0,7,0,0.337,57.51,89.72,0.92,0.14,784,0.8,301,1
+3500,2016,5,26,20,30,8.6,1.19,0.069,0.64,0,0,0,0,8,1.2,0,0,0,0,0.337,59.82,99.56,0.93,0.14,784,0.8,308,1
+3501,2016,5,26,21,30,7.9,1.2,0.085,0.64,0,0,0,0,6,1.1,0,0,0,0,0.337,62.05,107.64,0.94,0.14,784,0.9,324,0.8
+3502,2016,5,26,22,30,7,1.2,0.092,0.64,0,0,0,0,8,1.3,0,0,0,0,0.337,66.94,113.77,0.94,0.14,784,0.9,335,0.8
+3503,2016,5,26,23,30,6.1,1.2,0.091,0.64,0,0,0,0,8,1.4,0,0,0,0,0.336,72.1,117.36,0.94,0.14,784,1,341,0.9
+3504,2016,5,27,0,30,5.3,1.19,0.089,0.64,0,0,0,0,8,1.4,0,0,0,0,0.336,76.08,117.94,0.95,0.14,784,1,348,1.1
+3505,2016,5,27,1,30,4.7,1.19,0.087,0.64,0,0,0,0,8,1.5,0,0,0,0,0.335,79.66,115.44,0.95,0.14,784,1,353,1.2
+3506,2016,5,27,2,30,4.3,1.19,0.085,0.64,0,0,0,0,8,1.5,0,0,0,0,0.336,82.05,110.19,0.95,0.14,784,1.1,355,1.7
+3507,2016,5,27,3,30,3.9,1.18,0.083,0.64,0,0,0,0,8,1.6,0,0,0,0,0.337,85,102.77,0.94,0.14,784,1.1,358,2.1
+3508,2016,5,27,4,30,4,1.18,0.08,0.64,0,0,0,0,8,1.7,0,0,0,0,0.339,84.77,93.77,0.94,0.14,784,1.1,180,2.3
+3509,2016,5,27,5,30,5.7,1.17,0.074,0.64,32,401,77,7,4,2,31,0,7,31,0.341,77.04,83.57,0.94,0.14,784,1.1,1,2.7
+3510,2016,5,27,6,30,8.9,1.16,0.07,0.64,57,696,262,7,4,2,165,50,7,179,0.344,62.13,72.81,0.94,0.14,785,1.1,7,3.2
+3511,2016,5,27,7,30,11.6,1.16,0.067,0.64,70,832,466,0,4,1.1,208,493,0,442,0.346,48.49,61.59,0.93,0.14,785,1.1,12,3.3
+3512,2016,5,27,8,30,13,1.16,0.066,0.64,81,905,660,0,4,1,291,470,0,592,0.348,43.84,50.21,0.94,0.14,785,1.1,9,3
+3513,2016,5,27,9,30,13.9,1.17,0.07,0.64,90,944,823,0,4,1.1,417,107,0,501,0.349,41.8,39.03,0.94,0.14,785,1.1,4,2.7
+3514,2016,5,27,10,30,14.6,1.19,0.072,0.64,96,968,945,0,1,1.1,96,968,0,945,0.35,39.88,28.72,0.95,0.14,785,1.1,178,2.5
+3515,2016,5,27,11,30,15,1.21,0.085,0.64,105,970,1011,0,7,0.9,461,289,0,730,0.351,38.34,20.99,0.95,0.14,785,1.1,353,2.2
+3516,2016,5,27,12,30,15.2,1.21,0.088,0.64,107,970,1022,0,6,0.8,461,54,0,512,0.351,37.51,19.47,0.95,0.14,785,1.1,347,2
+3517,2016,5,27,13,30,15.2,1.22,0.089,0.64,106,961,974,0,6,0.8,446,55,0,496,0.35,37.47,25.31,0.95,0.14,784,1.1,344,2
+3518,2016,5,27,14,30,15,1.22,0.07,0.64,91,956,875,0,8,0.7,331,404,0,662,0.349,37.74,34.93,0.94,0.14,784,1.1,347,2
+3519,2016,5,27,15,30,14.6,1.23,0.068,0.64,84,919,724,0,8,0.5,343,80,0,399,0.349,38.19,45.89,0.94,0.14,784,1.2,355,1.9
+3520,2016,5,27,16,30,14,1.24,0.066,0.64,74,863,541,0,1,0.4,74,863,0,541,0.348,39.43,57.24,0.94,0.14,784,1.2,184,1.7
+3521,2016,5,27,17,30,13.2,1.25,0.066,0.64,62,760,340,0,8,0.5,139,404,0,287,0.347,41.84,68.55,0.94,0.14,785,1.2,11,1.4
+3522,2016,5,27,18,30,11.9,1.25,0.065,0.64,42,558,144,7,4,2,76,2,7,77,0.348,50.86,79.51,0.94,0.14,785,1.2,14,0.8
+3523,2016,5,27,19,30,10.7,1.26,0.062,0.64,0,0,0,7,8,3.9,0,0,7,0,0.348,62.63,89.6,0.93,0.14,786,1.2,175,0.4
+3524,2016,5,27,20,30,9.7,1.26,0.059,0.64,0,0,0,0,8,2.9,0,0,0,0,0.35,62.42,99.42,0.93,0.14,786,1.2,294,0.3
+3525,2016,5,27,21,30,8.6,1.25,0.055,0.64,0,0,0,0,7,2.9,0,0,0,0,0.351,67.63,107.48,0.93,0.14,786,1.2,249,0.5
+3526,2016,5,27,22,30,7.5,1.21,0.053,0.64,0,0,0,0,4,2.9,0,0,0,0,0.353,72.4,113.61,0.92,0.14,786,1.2,244,0.7
+3527,2016,5,27,23,30,6.6,1.15,0.051,0.64,0,0,0,0,1,2.5,0,0,0,0,0.354,74.83,117.19,0.92,0.14,786,1.2,245,0.8
+3528,2016,5,28,0,30,5.8,1.1,0.051,0.64,0,0,0,0,0,2,0,0,0,0,0.355,76.58,117.78,0.91,0.14,786,1.2,246,0.8
+3529,2016,5,28,1,30,5.2,1.07,0.052,0.64,0,0,0,0,1,1.7,0,0,0,0,0.354,78.03,115.29,0.91,0.14,786,1.1,245,0.8
+3530,2016,5,28,2,30,4.8,1.05,0.055,0.64,0,0,0,0,1,1.4,0,0,0,0,0.354,78.64,110.06,0.92,0.14,786,1.1,239,0.7
+3531,2016,5,28,3,30,4.4,1.04,0.058,0.64,0,0,0,0,1,1.2,0,0,0,0,0.353,79.73,102.65,0.92,0.14,787,1.1,221,0.6
+3532,2016,5,28,4,30,4.4,1.03,0.063,0.64,0,0,0,0,1,1.1,0,0,0,0,0.353,78.98,93.67,0.92,0.14,787,1,196,0.5
+3533,2016,5,28,5,30,6.1,1.01,0.07,0.64,32,408,78,0,1,1.8,32,408,0,78,0.354,73.98,83.48,0.92,0.14,788,1,184,0.8
+3534,2016,5,28,6,30,9.2,0.99,0.079,0.64,59,681,262,0,0,2.1,59,681,0,262,0.355,61.25,72.74,0.92,0.14,788,1,209,1.2
+3535,2016,5,28,7,30,12,0.98,0.083,0.64,77,813,465,0,0,1.6,77,813,0,465,0.354,49.14,61.52,0.92,0.14,788,1,244,1.5
+3536,2016,5,28,8,30,14,0.99,0.082,0.64,88,890,658,0,0,1,88,890,0,658,0.352,41.17,50.14,0.92,0.14,788,1,256,2
+3537,2016,5,28,9,30,15.4,1.03,0.076,0.64,93,941,824,0,1,0.5,93,941,0,824,0.349,36.2,38.95,0.92,0.14,788,1,258,2.4
+3538,2016,5,28,10,30,16.5,1.07,0.071,0.64,95,971,947,0,4,0.1,488,150,0,619,0.346,32.82,28.62,0.92,0.14,788,1,258,2.6
+3539,2016,5,28,11,30,17.4,1.09,0.049,0.64,85,998,1018,0,1,-0.1,85,998,0,1018,0.342,30.68,20.86,0.92,0.14,788,1.1,255,2.7
+3540,2016,5,28,12,30,18.2,1.11,0.051,0.64,87,999,1029,0,7,0,279,638,0,881,0.339,29.3,19.31,0.92,0.14,788,1.1,251,2.7
+3541,2016,5,28,13,30,18.7,1.13,0.055,0.64,88,988,981,0,8,0.1,438,168,0,590,0.337,28.61,25.17,0.93,0.14,788,1.1,247,2.7
+3542,2016,5,28,14,30,18.9,1.14,0.078,0.64,96,949,875,0,7,0.1,254,639,0,779,0.337,28.33,34.81,0.94,0.14,788,1.1,245,2.5
+3543,2016,5,28,15,30,18.7,1.15,0.083,0.64,92,904,723,0,1,0.1,92,904,0,723,0.337,28.65,45.77,0.95,0.14,788,1.2,246,2.4
+3544,2016,5,28,16,30,18.2,1.16,0.093,0.64,86,832,538,0,8,0.2,236,293,0,395,0.338,29.76,57.12,0.95,0.14,788,1.2,249,2.2
+3545,2016,5,28,17,30,17.1,1.17,0.104,0.64,75,708,335,0,7,0.5,177,202,0,252,0.339,32.57,68.43,0.96,0.14,788,1.2,253,1.5
+3546,2016,5,28,18,30,15.4,1.18,0.112,0.64,52,478,140,7,8,2.7,89,27,7,94,0.34,42.5,79.39,0.96,0.14,789,1.2,278,0.6
+3547,2016,5,28,19,30,13.8,1.19,0.109,0.64,0,0,0,7,8,5.1,0,0,7,0,0.341,55.62,89.49,0.95,0.14,789,1.3,183,0.3
+3548,2016,5,28,20,30,12.8,1.19,0.102,0.64,0,0,0,0,8,4.4,0,0,0,0,0.342,56.74,99.28,0.95,0.14,790,1.2,78,0.5
+3549,2016,5,28,21,30,11.8,1.19,0.097,0.64,0,0,0,0,8,4.1,0,0,0,0,0.343,59.09,107.34,0.95,0.14,790,1.2,93,0.6
+3550,2016,5,28,22,30,10.8,1.19,0.093,0.64,0,0,0,0,4,3.7,0,0,0,0,0.344,61.54,113.45,0.95,0.14,790,1.2,100,0.6
+3551,2016,5,28,23,30,10,1.19,0.092,0.64,0,0,0,0,1,3.5,0,0,0,0,0.344,64.14,117.04,0.95,0.14,790,1.3,110,0.6
+3552,2016,5,29,0,30,9.3,1.19,0.091,0.64,0,0,0,0,1,3.2,0,0,0,0,0.343,65.84,117.63,0.94,0.14,790,1.3,127,0.6
+3553,2016,5,29,1,30,8.6,1.19,0.089,0.64,0,0,0,0,1,2.8,0,0,0,0,0.342,66.95,115.15,0.94,0.14,790,1.3,143,0.6
+3554,2016,5,29,2,30,7.9,1.18,0.082,0.64,0,0,0,0,0,2.5,0,0,0,0,0.341,68.52,109.93,0.94,0.14,790,1.2,157,0.6
+3555,2016,5,29,3,30,7.1,1.16,0.077,0.64,0,0,0,0,1,2.1,0,0,0,0,0.34,70.49,102.55,0.94,0.14,790,1.2,169,0.7
+3556,2016,5,29,4,30,7.1,1.14,0.072,0.64,0,0,0,0,1,1.8,0,0,0,0,0.339,69.06,93.58,0.94,0.14,790,1.2,177,0.7
+3557,2016,5,29,5,30,8.8,1.13,0.072,0.64,33,406,79,0,1,2.6,33,406,0,79,0.338,64.97,83.41,0.94,0.14,791,1.2,187,1
+3558,2016,5,29,6,30,12.3,1.13,0.074,0.64,58,683,262,0,0,2.3,58,683,0,262,0.338,50.54,72.67,0.94,0.14,791,1.3,202,1.8
+3559,2016,5,29,7,30,15.7,1.13,0.077,0.64,75,812,463,0,0,2,75,812,0,463,0.339,39.51,61.46,0.94,0.14,791,1.3,216,2.6
+3560,2016,5,29,8,30,17.9,1.14,0.08,0.64,87,883,654,0,1,2,87,883,0,654,0.34,34.47,50.08,0.95,0.14,791,1.3,222,3
+3561,2016,5,29,9,30,18.8,1.14,0.085,0.64,97,920,814,0,1,2.3,97,920,0,814,0.341,33.34,38.88,0.95,0.14,791,1.4,222,3.3
+3562,2016,5,29,10,30,18.9,1.16,0.091,0.64,106,942,933,0,1,3,106,942,0,933,0.341,34.74,28.53,0.95,0.14,791,1.4,220,3.5
+3563,2016,5,29,11,30,18.6,1.15,0.078,0.64,102,965,1004,0,1,3.8,102,965,0,1004,0.341,37.46,20.73,0.95,0.14,791,1.4,213,3.5
+3564,2016,5,29,12,30,18.4,1.18,0.084,0.64,105,963,1015,0,1,4.1,105,963,0,1015,0.341,38.88,19.16,0.95,0.14,791,1.4,202,3
+3565,2016,5,29,13,30,18.5,1.18,0.09,0.64,107,953,970,0,8,4,353,428,0,741,0.341,38.12,25.03,0.95,0.14,790,1.3,196,2.4
+3566,2016,5,29,14,30,18.9,1.19,0.093,0.64,104,932,870,0,8,3.5,388,176,0,533,0.341,36.04,34.68,0.95,0.14,790,1.2,195,2
+3567,2016,5,29,15,30,18.9,1.2,0.091,0.64,96,897,723,0,8,2.9,331,103,0,403,0.341,34.44,45.66,0.95,0.14,789,1.2,190,1.8
+3568,2016,5,29,16,30,18.5,1.2,0.089,0.64,85,837,540,0,8,2.4,259,232,0,385,0.342,34.17,57.01,0.95,0.14,789,1.2,175,2
+3569,2016,5,29,17,30,17.2,1.2,0.087,0.64,69,732,339,0,8,2.5,180,49,0,198,0.342,37.32,68.32,0.94,0.13,789,1.2,158,2.1
+3570,2016,5,29,18,30,14.7,1.21,0.085,0.64,47,526,145,7,8,5.1,90,28,7,96,0.343,52.42,79.27,0.94,0.13,790,1.2,145,2.1
+3571,2016,5,29,19,30,12.3,1.22,0.084,0.64,0,0,0,7,8,5.9,0,0,7,0,0.343,64.81,89.37,0.95,0.13,790,1.3,139,2.2
+3572,2016,5,29,20,30,10.7,1.24,0.088,0.64,0,0,0,0,8,5.8,0,0,0,0,0.345,71.84,99.15,0.95,0.13,790,1.3,132,1.7
+3573,2016,5,29,21,30,9.6,1.27,0.093,0.64,0,0,0,0,1,6,0,0,0,0,0.346,78.11,107.19,0.95,0.13,790,1.4,124,1.1
+3574,2016,5,29,22,30,8.9,1.28,0.099,0.64,0,0,0,0,8,5.8,0,0,0,0,0.347,80.98,113.3,0.96,0.13,790,1.4,107,0.7
+3575,2016,5,29,23,30,8.5,1.3,0.109,0.64,0,0,0,0,8,5.5,0,0,0,0,0.347,81.32,116.88,0.96,0.13,790,1.4,64,0.5
+3576,2016,5,30,0,30,7.9,1.33,0.114,0.64,0,0,0,0,8,5.3,0,0,0,0,0.348,83.37,117.48,0.95,0.13,790,1.3,44,0.6
+3577,2016,5,30,1,30,7.2,1.35,0.097,0.64,0,0,0,0,8,5.1,0,0,0,0,0.348,86.36,115.02,0.95,0.13,789,1.3,71,0.7
+3578,2016,5,30,2,30,6.6,1.33,0.085,0.64,0,0,0,0,8,4.7,0,0,0,0,0.347,87.42,109.82,0.94,0.13,789,1.2,96,0.7
+3579,2016,5,30,3,30,6.4,1.31,0.084,0.64,0,0,0,0,8,4.4,0,0,0,0,0.347,87.3,102.45,0.94,0.13,789,1.2,122,0.5
+3580,2016,5,30,4,30,6.6,1.29,0.088,0.64,0,0,0,0,4,4.3,0,0,0,0,0.347,85.04,93.5,0.95,0.13,789,1.2,209,0.3
+3581,2016,5,30,5,30,8.2,1.26,0.098,0.64,36,367,78,7,8,4.7,42,4,7,42,0.347,78.33,83.34,0.95,0.13,790,1.2,291,0.8
+3582,2016,5,30,6,30,11.4,1.23,0.108,0.64,68,639,259,7,7,4.7,150,138,7,192,0.346,63.6,72.61,0.95,0.13,790,1.2,305,1.8
+3583,2016,5,30,7,30,14.6,1.19,0.111,0.64,87,776,459,0,1,3.4,87,776,0,459,0.346,47,61.4,0.95,0.13,790,1.2,311,2.6
+3584,2016,5,30,8,30,16.8,1.17,0.109,0.64,100,862,653,0,3,0.2,346,297,0,537,0.345,32.52,50.02,0.95,0.13,790,1.1,319,2.8
+3585,2016,5,30,9,30,18.2,1.14,0.099,0.64,104,918,818,0,3,-0.5,411,70,0,466,0.344,28.23,38.82,0.94,0.13,790,1.1,326,2.7
+3586,2016,5,30,10,30,19.5,1.1,0.089,0.64,104,953,941,0,3,-0.3,480,141,0,603,0.342,26.49,28.45,0.93,0.13,790,1.1,328,2.6
+3587,2016,5,30,11,30,20.4,1.01,0.061,0.64,92,987,1016,0,3,0,526,188,0,702,0.341,25.46,20.61,0.93,0.13,789,1.1,326,2.3
+3588,2016,5,30,12,30,21.1,0.97,0.057,0.64,91,996,1032,0,1,0,91,996,0,1032,0.34,24.4,19.01,0.93,0.13,789,1,323,2.2
+3589,2016,5,30,13,30,21.5,0.95,0.058,0.64,90,987,985,0,1,-0.2,90,987,0,985,0.339,23.54,24.89,0.93,0.13,788,1,321,2.3
+3590,2016,5,30,14,30,21.5,0.83,0.045,0.64,80,979,886,0,3,-0.4,400,432,0,756,0.339,23.19,34.57,0.93,0.13,788,1,321,2.4
+3591,2016,5,30,15,30,21.2,0.84,0.044,0.64,74,948,738,0,1,-0.7,74,948,0,738,0.338,23.15,45.55,0.93,0.13,788,1,322,2.4
+3592,2016,5,30,16,30,20.6,0.86,0.045,0.64,67,893,554,0,3,-0.9,289,268,0,435,0.337,23.58,56.9,0.93,0.13,788,1,329,2.4
+3593,2016,5,30,17,30,19.2,0.89,0.047,0.64,57,795,352,7,3,-0.9,166,399,7,314,0.337,25.73,68.21,0.93,0.13,788,1,340,2.3
+3594,2016,5,30,18,30,16.4,0.92,0.05,0.64,40,592,152,7,8,0.9,92,36,7,99,0.337,34.96,79.16,0.93,0.13,788,1.1,175,1.7
+3595,2016,5,30,19,30,13.4,0.94,0.051,0.64,0,0,0,0,1,4.5,0,0,0,0,0.337,54.71,89.26,0.92,0.13,789,1.1,4,1.4
+3596,2016,5,30,20,30,11.9,0.94,0.051,0.64,0,0,0,0,1,3.9,0,0,0,0,0.336,58.1,99.01,0.92,0.13,789,1.1,3,1.5
+3597,2016,5,30,21,30,10.8,0.95,0.051,0.64,0,0,0,0,8,3.4,0,0,0,0,0.336,60.41,107.05,0.93,0.13,789,1.1,179,1.5
+3598,2016,5,30,22,30,9.8,0.96,0.053,0.64,0,0,0,0,1,3.1,0,0,0,0,0.336,63.25,113.16,0.93,0.13,789,1.1,179,1.6
+3599,2016,5,30,23,30,8.8,0.98,0.055,0.64,0,0,0,0,1,3.2,0,0,0,0,0.336,67.8,116.74,0.93,0.13,789,1.2,7,1.6
+3600,2016,5,31,0,30,7.8,1.01,0.057,0.64,0,0,0,0,1,3.2,0,0,0,0,0.336,72.72,117.34,0.93,0.13,789,1.2,16,1.8
+3601,2016,5,31,1,30,6.8,1.03,0.06,0.64,0,0,0,0,1,3.3,0,0,0,0,0.337,78.15,114.89,0.94,0.13,789,1.2,25,1.7
+3602,2016,5,31,2,30,5.8,1.04,0.062,0.64,0,0,0,0,1,3.5,0,0,0,0,0.338,84.98,109.71,0.94,0.13,789,1.2,30,1.4
+3603,2016,5,31,3,30,5,1.03,0.062,0.64,0,0,0,0,1,3.6,0,0,0,0,0.339,90.36,102.36,0.94,0.13,789,1.2,28,1.2
+3604,2016,5,31,4,30,5,1.03,0.063,0.64,0,0,0,0,1,3.5,0,0,0,0,0.337,90.04,93.42,0.94,0.13,789,1.2,20,1.4
+3605,2016,5,31,5,30,6.5,1.02,0.063,0.64,32,426,82,0,1,3.7,32,426,0,82,0.335,82.27,83.27,0.94,0.13,789,1.2,13,2
+3606,2016,5,31,6,30,9.3,1.02,0.063,0.64,56,708,268,0,1,3.6,56,708,0,268,0.334,67.67,72.55,0.94,0.13,789,1.1,7,2.1
+3607,2016,5,31,7,30,12.7,1.02,0.064,0.64,70,835,471,0,0,3.1,70,835,0,471,0.334,52.14,61.35,0.94,0.13,789,1.1,175,2
+3608,2016,5,31,8,30,15.5,1.02,0.066,0.64,81,904,663,0,0,1.8,81,904,0,663,0.333,39.54,49.97,0.94,0.13,789,1.1,346,1.9
+3609,2016,5,31,9,30,17.6,1.02,0.07,0.64,90,943,825,0,0,1.1,90,943,0,825,0.332,32.88,38.76,0.94,0.13,789,1.1,345,1.9
+3610,2016,5,31,10,30,19.2,1.01,0.071,0.64,95,967,946,0,1,0.6,95,967,0,946,0.331,28.8,28.37,0.93,0.13,789,1.1,347,1.9
+3611,2016,5,31,11,30,20.4,0.93,0.047,0.64,84,999,1020,0,1,0.2,84,999,0,1020,0.33,25.99,20.5,0.92,0.13,788,1.1,353,2
+3612,2016,5,31,12,30,21.2,0.94,0.046,0.64,84,1002,1032,0,0,-0.1,84,1002,0,1032,0.328,24.13,18.86,0.92,0.13,788,1.1,183,2.2
+3613,2016,5,31,13,30,21.6,0.95,0.048,0.64,84,992,985,0,1,-0.5,84,992,0,985,0.326,22.96,24.76,0.92,0.13,788,1.1,13,2.4
+3614,2016,5,31,14,30,21.6,0.96,0.045,0.64,79,977,885,0,1,-0.7,79,977,0,885,0.326,22.49,34.45,0.93,0.13,787,1.1,21,2.6
+3615,2016,5,31,15,30,21.2,1,0.048,0.64,75,942,736,0,1,-0.9,75,942,0,736,0.327,22.79,45.44,0.93,0.13,787,1.1,29,2.9
+3616,2016,5,31,16,30,20.2,1.03,0.05,0.64,68,886,553,0,1,-0.9,68,886,0,553,0.327,24.3,56.8,0.93,0.13,787,1.1,35,3.2
+3617,2016,5,31,17,30,18.7,1.08,0.05,0.62,57,787,351,7,3,-0.5,210,90,7,244,0.327,27.43,68.1,0.94,0.14,787,1.2,41,3.3
+3618,2016,5,31,18,30,15.9,1.11,0.051,0.62,41,595,154,0,1,0.6,41,595,0,154,0.327,35.43,79.04,0.94,0.14,788,1.2,50,2.8
+3619,2016,5,31,19,30,13.2,1.14,0.051,0.62,0,0,0,0,0,3.2,0,0,0,0,0.327,50.67,89.15,0.94,0.14,788,1.2,58,2.3
+3620,2016,5,31,20,30,11.6,1.17,0.049,0.62,0,0,0,0,1,3.3,0,0,0,0,0.326,56.81,98.89,0.93,0.14,789,1.2,64,2.4
+3621,2016,5,31,21,30,10.2,1.18,0.047,0.62,0,0,0,0,1,3.4,0,0,0,0,0.326,62.61,106.92,0.93,0.14,789,1.2,67,2.1
+3622,2016,5,31,22,30,9,1.19,0.045,0.62,0,0,0,0,1,3.5,0,0,0,0,0.325,68.43,113.02,0.92,0.14,789,1.2,67,1.7
+3623,2016,5,31,23,30,7.9,1.19,0.043,0.62,0,0,0,0,1,3.6,0,0,0,0,0.325,74.03,116.6,0.92,0.14,789,1.2,64,1.3
+3624,2016,6,1,0,30,7.1,1.19,0.043,0.62,0,0,0,0,0,3.5,0,0,0,0,0.324,78,117.21,0.92,0.14,789,1.2,59,1.1
+3625,2016,6,1,1,30,6.5,1.19,0.042,0.62,0,0,0,0,1,3.4,0,0,0,0,0.325,80.57,114.77,0.92,0.14,790,1.2,52,0.9
+3626,2016,6,1,2,30,6.1,1.19,0.042,0.62,0,0,0,0,1,3.2,0,0,0,0,0.326,81.56,109.6,0.91,0.14,790,1.1,40,0.9
+3627,2016,6,1,3,30,5.6,1.18,0.04,0.62,0,0,0,0,1,2.9,0,0,0,0,0.327,82.99,102.27,0.91,0.14,790,1.1,26,0.9
+3628,2016,6,1,4,30,5.9,1.17,0.039,0.62,0,0,0,0,4,2.8,0,0,0,0,0.329,80.29,93.34,0.91,0.14,790,1.1,14,1.3
+3629,2016,6,1,5,30,7.8,1.15,0.038,0.62,28,495,87,7,4,3.3,55,4,7,55,0.33,73.15,83.21,0.91,0.14,790,1.1,8,2
+3630,2016,6,1,6,30,11.3,1.14,0.037,0.62,47,755,274,0,1,3.1,47,755,0,274,0.331,56.9,72.5,0.91,0.14,790,1.1,7,2.5
+3631,2016,6,1,7,30,14.9,1.12,0.037,0.62,59,872,477,0,0,2.3,59,872,0,477,0.332,42.6,61.3,0.91,0.14,790,1.1,5,2.2
+3632,2016,6,1,8,30,17.5,1.1,0.037,0.62,67,936,669,0,0,1.3,67,936,0,669,0.333,33.61,49.92,0.91,0.14,790,1.1,6,1.9
+3633,2016,6,1,9,30,19.2,1.08,0.038,0.62,73,973,832,0,0,0.8,73,973,0,832,0.333,29.07,38.7,0.91,0.14,790,1.1,7,1.7
+3634,2016,6,1,10,30,20.7,1.05,0.039,0.62,78,998,956,0,0,0.3,78,998,0,956,0.333,25.7,28.3,0.91,0.14,790,1,7,1.6
+3635,2016,6,1,11,30,21.9,1.03,0.04,0.62,81,1008,1026,0,1,0,81,1008,0,1026,0.334,23.34,20.39,0.92,0.14,790,1,7,1.5
+3636,2016,6,1,12,30,22.8,1.01,0.041,0.62,82,1009,1037,0,1,-0.2,82,1009,0,1037,0.335,21.69,18.73,0.92,0.14,789,1,11,1.5
+3637,2016,6,1,13,30,23.4,0.98,0.042,0.62,81,1001,990,0,1,-0.5,81,1001,0,990,0.337,20.56,24.63,0.91,0.14,789,1,15,1.5
+3638,2016,6,1,14,30,23.7,0.94,0.036,0.62,74,989,890,0,1,-0.8,74,989,0,890,0.338,19.77,34.34,0.91,0.14,788,1,16,1.5
+3639,2016,6,1,15,30,23.6,0.9,0.037,0.62,70,956,742,0,1,-1,70,956,0,742,0.338,19.48,45.33,0.91,0.14,788,1,16,1.6
+3640,2016,6,1,16,30,22.9,0.87,0.038,0.62,63,903,559,7,3,-1.3,69,889,7,558,0.337,20.01,56.69,0.91,0.14,788,1,18,1.9
+3641,2016,6,1,17,30,21.5,0.89,0.04,0.62,54,804,355,0,1,-1.2,54,804,0,355,0.336,21.93,67.99,0.91,0.14,788,1.1,24,1.7
+3642,2016,6,1,18,30,18.4,0.94,0.041,0.62,39,618,157,0,1,2.1,39,618,0,157,0.336,33.71,78.93,0.92,0.14,788,1.1,39,1.3
+3643,2016,6,1,19,30,15.4,0.98,0.042,0.62,0,0,0,0,1,6,0,0,0,0,0.336,53.65,89.05,0.92,0.14,789,1.1,57,1.1
+3644,2016,6,1,20,30,14.1,0.99,0.042,0.62,0,0,0,0,1,5.2,0,0,0,0,0.336,55.21,98.76,0.92,0.14,789,1.1,67,1.1
+3645,2016,6,1,21,30,13.7,1,0.041,0.62,0,0,0,0,0,4.8,0,0,0,0,0.336,54.74,106.79,0.92,0.14,790,1.1,71,1
+3646,2016,6,1,22,30,13.5,1.02,0.044,0.62,0,0,0,0,8,4,0,0,0,0,0.336,52.54,112.88,0.93,0.14,790,1.2,64,0.7
+3647,2016,6,1,23,30,13,1.04,0.047,0.62,0,0,0,0,1,3.4,0,0,0,0,0.337,51.96,116.46,0.92,0.14,790,1.2,192,0.4
+3648,2016,6,2,0,30,11.9,0.99,0.049,0.62,0,0,0,0,7,3.3,0,0,0,0,0.34,55.64,117.09,0.92,0.14,791,1.2,323,0.5
+3649,2016,6,2,1,30,10.6,0.92,0.057,0.62,0,0,0,0,1,3.4,0,0,0,0,0.344,61.2,114.66,0.92,0.14,791,1.1,322,0.7
+3650,2016,6,2,2,30,9.6,0.86,0.061,0.62,0,0,0,0,1,3.2,0,0,0,0,0.345,64.25,109.51,0.92,0.14,791,1,332,0.8
+3651,2016,6,2,3,30,8.9,0.78,0.059,0.62,0,0,0,0,1,2.7,0,0,0,0,0.343,65.06,102.19,0.91,0.14,791,1,342,0.8
+3652,2016,6,2,4,30,9.1,0.72,0.062,0.62,0,0,0,0,1,2.2,0,0,0,0,0.342,61.93,93.28,0.91,0.14,792,0.9,352,0.8
+3653,2016,6,2,5,30,11.2,0.7,0.067,0.62,34,420,84,0,1,3,34,420,0,84,0.342,56.87,83.15,0.92,0.14,792,0.8,184,0.7
+3654,2016,6,2,6,30,14.6,0.69,0.068,0.62,59,704,271,0,0,2.1,59,704,0,271,0.341,42.85,72.45,0.92,0.14,792,0.8,85,0.5
+3655,2016,6,2,7,30,18.3,0.67,0.066,0.62,73,839,476,0,0,0.5,73,839,0,476,0.34,30.27,61.26,0.92,0.14,792,0.8,186,0.6
+3656,2016,6,2,8,30,21.2,0.66,0.064,0.62,82,913,671,0,0,-1.5,82,913,0,671,0.338,21.75,49.88,0.92,0.14,792,0.8,218,1.2
+3657,2016,6,2,9,30,22.9,0.69,0.069,0.62,92,947,832,0,0,-2.1,92,947,0,832,0.336,18.86,38.66,0.93,0.14,792,0.9,226,1.5
+3658,2016,6,2,10,30,24.2,0.74,0.075,0.62,100,964,949,0,0,-2.1,100,964,0,949,0.334,17.36,28.23,0.93,0.14,792,1,232,1.7
+3659,2016,6,2,11,30,25,0.89,0.056,0.62,91,994,1023,0,1,-1.8,91,994,0,1023,0.333,16.96,20.29,0.92,0.14,792,1,236,2.1
+3660,2016,6,2,12,30,25.6,0.96,0.05,0.62,87,998,1033,0,6,-1.2,425,318,0,727,0.332,17.03,18.6,0.93,0.14,791,1.1,235,2.4
+3661,2016,6,2,13,30,26,0.98,0.049,0.62,85,988,984,0,8,-0.7,375,399,0,739,0.331,17.31,24.51,0.93,0.14,791,1.2,234,2.8
+3662,2016,6,2,14,30,26,0.83,0.091,0.62,105,927,871,0,8,-0.2,257,609,0,760,0.329,17.92,34.23,0.94,0.14,790,1.3,236,3.1
+3663,2016,6,2,15,30,25.7,0.84,0.096,0.62,100,882,721,0,6,0.2,353,223,0,510,0.326,18.8,45.23,0.94,0.14,790,1.4,242,3.1
+3664,2016,6,2,16,30,25.1,0.85,0.095,0.62,89,820,540,0,8,0.6,201,451,0,450,0.325,20.11,56.59,0.94,0.14,790,1.4,252,2.8
+3665,2016,6,2,17,30,23.6,0.86,0.088,0.62,72,725,344,0,8,0.9,166,270,0,268,0.325,22.39,67.89,0.94,0.14,790,1.3,270,2.2
+3666,2016,6,2,18,30,20.5,0.88,0.082,0.62,48,532,151,7,8,5.2,101,86,7,117,0.325,36.7,78.82,0.93,0.14,790,1.2,292,1.6
+3667,2016,6,2,19,30,17.4,0.88,0.079,0.62,11,75,12,7,8,6.6,6,0,7,6,0.325,49.11,88.94,0.93,0.14,791,1.1,308,1.7
+3668,2016,6,2,20,30,15.8,0.85,0.082,0.62,0,0,0,0,8,5.5,0,0,0,0,0.326,50.42,98.64,0.93,0.14,791,1,316,1.9
+3669,2016,6,2,21,30,14.6,0.81,0.085,0.62,0,0,0,0,8,5.4,0,0,0,0,0.327,54.2,106.66,0.93,0.14,792,1,323,1.8
+3670,2016,6,2,22,30,13.7,0.79,0.089,0.62,0,0,0,0,8,5.9,0,0,0,0,0.327,59.27,112.75,0.93,0.14,792,1,330,1.6
+3671,2016,6,2,23,30,12.9,0.81,0.091,0.62,0,0,0,0,6,6.4,0,0,0,0,0.327,64.54,116.34,0.94,0.14,792,1.1,336,1.4
+3672,2016,6,3,0,30,12.3,0.84,0.094,0.62,0,0,0,0,8,6.5,0,0,0,0,0.327,67.51,116.97,0.94,0.14,792,1.2,339,1.3
+3673,2016,6,3,1,30,11.6,0.86,0.094,0.62,0,0,0,0,8,6.4,0,0,0,0,0.327,70.47,114.55,0.93,0.14,793,1.3,340,1.3
+3674,2016,6,3,2,30,11,0.87,0.089,0.62,0,0,0,0,6,6,0,0,0,0,0.326,71.06,109.41,0.93,0.14,793,1.4,342,1.4
+3675,2016,6,3,3,30,10.8,0.9,0.087,0.62,0,0,0,0,8,5.9,0,0,0,0,0.323,71.7,102.11,0.94,0.14,793,1.5,343,1.3
+3676,2016,6,3,4,30,11.2,0.92,0.082,0.62,0,0,0,0,6,6,0,0,0,0,0.322,70.3,93.21,0.93,0.14,794,1.5,343,1.2
+3677,2016,6,3,5,30,13.3,0.91,0.07,0.62,34,404,82,7,6,6.5,46,5,7,47,0.32,63.27,83.1,0.93,0.14,794,1.5,335,1.4
+3678,2016,6,3,6,30,16.7,0.89,0.064,0.62,56,694,266,7,8,5.6,147,61,7,165,0.318,47.78,72.41,0.93,0.14,794,1.4,328,2.4
+3679,2016,6,3,7,30,19.3,0.89,0.061,0.62,69,827,468,0,6,2.1,243,100,0,291,0.317,31.76,61.22,0.93,0.14,794,1.4,328,3.2
+3680,2016,6,3,8,30,21,0.89,0.058,0.62,78,901,659,0,8,0.8,179,677,0,616,0.316,26.06,49.84,0.93,0.14,794,1.4,328,3.4
+3681,2016,6,3,9,30,22.4,0.92,0.056,0.62,84,945,822,0,1,0.8,84,945,0,822,0.314,24.01,38.61,0.93,0.14,794,1.4,328,3.6
+3682,2016,6,3,10,30,23.7,0.95,0.057,0.62,88,965,939,0,8,1.2,247,688,0,854,0.313,22.8,28.17,0.92,0.14,794,1.5,330,3.8
+3683,2016,6,3,11,30,24.7,1.09,0.046,0.62,83,987,1010,0,1,1.7,83,987,0,1010,0.312,22.21,20.2,0.91,0.14,794,1.5,333,4
+3684,2016,6,3,12,30,25.4,1.16,0.046,0.62,83,987,1019,0,0,2.2,83,987,0,1019,0.312,22.07,18.47,0.91,0.14,794,1.6,336,4.2
+3685,2016,6,3,13,30,25.8,1.24,0.045,0.62,81,980,973,0,1,2.7,81,980,0,973,0.312,22.35,24.39,0.9,0.14,794,1.6,340,4.4
+3686,2016,6,3,14,30,25.9,1.38,0.039,0.62,74,968,875,0,1,3.2,74,968,0,875,0.311,22.99,34.12,0.9,0.14,794,1.6,342,4.5
+3687,2016,6,3,15,30,25.5,1.41,0.04,0.62,69,933,728,0,1,3.6,69,933,0,728,0.31,24.19,45.13,0.89,0.14,793,1.7,344,4.5
+3688,2016,6,3,16,30,24.6,1.41,0.043,0.62,64,878,548,0,1,4,64,878,0,548,0.309,26.25,56.49,0.9,0.14,793,1.7,346,4.4
+3689,2016,6,3,17,30,23.2,1.4,0.048,0.62,55,780,350,0,1,4.3,55,780,0,350,0.307,29.32,67.78,0.9,0.14,793,1.7,350,3.8
+3690,2016,6,3,18,30,20.1,1.4,0.053,0.62,40,589,155,0,1,5.3,40,589,0,155,0.306,37.86,78.72,0.9,0.14,794,1.7,355,2.5
+3691,2016,6,3,19,30,17,1.44,0.056,0.62,10,141,13,0,1,7.7,10,141,0,13,0.305,54.3,88.84,0.9,0.14,794,1.7,180,1.6
+3692,2016,6,3,20,30,15.4,1.5,0.059,0.62,0,0,0,0,3,7.6,0,0,0,0,0.304,59.57,98.53,0.9,0.14,795,1.6,179,1.6
+3693,2016,6,3,21,30,14.4,1.57,0.064,0.62,0,0,0,0,1,7.3,0,0,0,0,0.302,62.32,106.54,0.9,0.14,795,1.6,357,1.8
+3694,2016,6,3,22,30,13.5,1.62,0.069,0.62,0,0,0,0,1,7.1,0,0,0,0,0.301,65.37,112.63,0.9,0.14,795,1.6,358,1.9
+3695,2016,6,3,23,30,12.5,1.64,0.07,0.62,0,0,0,0,1,7.1,0,0,0,0,0.3,69.66,116.22,0.9,0.14,795,1.5,181,2
+3696,2016,6,4,0,30,11.6,1.6,0.064,0.62,0,0,0,0,1,7.1,0,0,0,0,0.299,74.02,116.85,0.9,0.14,795,1.5,7,1.9
+3697,2016,6,4,1,30,10.7,1.5,0.055,0.62,0,0,0,0,1,7.1,0,0,0,0,0.298,78.23,114.45,0.9,0.14,795,1.4,14,1.8
+3698,2016,6,4,2,30,9.9,1.38,0.047,0.62,0,0,0,0,1,6.8,0,0,0,0,0.298,81.25,109.33,0.9,0.14,795,1.3,19,1.7
+3699,2016,6,4,3,30,9.2,1.24,0.04,0.62,0,0,0,0,1,6.5,0,0,0,0,0.297,82.96,102.04,0.9,0.14,795,1.3,22,1.6
+3700,2016,6,4,4,30,9.5,1.12,0.036,0.62,0,0,0,0,1,6,0,0,0,0,0.296,78.81,93.16,0.9,0.14,795,1.2,24,1.9
+3701,2016,6,4,5,30,11.6,1.05,0.033,0.62,28,508,89,0,1,6,28,508,0,89,0.295,68.52,83.06,0.9,0.14,796,1.2,26,2.6
+3702,2016,6,4,6,30,15.1,1.01,0.032,0.62,46,765,278,0,1,5.5,46,765,0,278,0.295,52.67,72.37,0.9,0.14,796,1.1,34,3.3
+3703,2016,6,4,7,30,19,0.99,0.031,0.62,56,880,481,0,1,4.5,56,880,0,481,0.294,38.32,61.19,0.9,0.14,796,1.1,47,3.8
+3704,2016,6,4,8,30,21.6,0.97,0.031,0.62,64,942,672,0,0,3.6,64,942,0,672,0.294,30.62,49.81,0.9,0.14,796,1.1,54,3.9
+3705,2016,6,4,9,30,23.2,0.96,0.03,0.62,69,980,835,0,0,3.5,69,980,0,835,0.294,27.56,38.58,0.9,0.14,796,1.1,55,3.7
+3706,2016,6,4,10,30,24.5,0.94,0.03,0.62,72,1002,956,0,1,3.2,72,1002,0,956,0.294,25.09,28.12,0.9,0.14,796,1.1,54,3.4
+3707,2016,6,4,11,30,25.6,0.99,0.025,0.62,70,1017,1026,0,1,2.9,70,1017,0,1026,0.294,23.01,20.11,0.9,0.14,795,1.1,51,3.1
+3708,2016,6,4,12,30,26.4,0.95,0.026,0.62,72,1018,1038,0,1,2.7,72,1018,0,1038,0.294,21.56,18.35,0.9,0.14,795,1.1,47,2.9
+3709,2016,6,4,13,30,26.8,0.92,0.026,0.62,70,1011,992,0,0,2.4,70,1011,0,992,0.295,20.6,24.28,0.9,0.14,794,1.1,43,2.7
+3710,2016,6,4,14,30,26.9,0.83,0.03,0.62,71,991,892,0,1,2,71,991,0,892,0.295,19.99,34.02,0.9,0.14,794,1.1,39,2.6
+3711,2016,6,4,15,30,26.5,0.81,0.03,0.62,66,961,745,0,0,1.6,66,961,0,745,0.295,19.83,45.03,0.9,0.14,793,1.1,38,2.4
+3712,2016,6,4,16,30,25.7,0.79,0.03,0.62,60,911,564,0,1,1.2,60,911,0,564,0.296,20.16,56.39,0.9,0.14,793,1.1,41,2.4
+3713,2016,6,4,17,30,24.1,0.78,0.031,0.62,51,822,363,0,1,1,51,822,0,363,0.296,21.96,67.69,0.9,0.14,793,1.1,48,2.1
+3714,2016,6,4,18,30,20.6,0.78,0.031,0.62,37,647,165,0,1,3.5,37,647,0,165,0.297,32.37,78.62,0.9,0.14,793,1.1,59,1.5
+3715,2016,6,4,19,30,17.2,0.79,0.032,0.62,11,182,15,0,1,7.1,11,182,0,15,0.3,51.33,88.74,0.9,0.14,793,1.2,68,1.3
+3716,2016,6,4,20,30,15.6,0.81,0.033,0.62,0,0,0,0,1,6,0,0,0,0,0.303,52.65,98.41,0.91,0.14,793,1.2,73,1.3
+3717,2016,6,4,21,30,14.8,0.85,0.035,0.62,0,0,0,0,1,5.5,0,0,0,0,0.308,53.53,106.42,0.91,0.14,793,1.3,76,1.3
+3718,2016,6,4,22,30,14.1,0.88,0.037,0.62,0,0,0,0,1,5.1,0,0,0,0,0.311,54.8,112.51,0.91,0.14,793,1.3,78,1.3
+3719,2016,6,4,23,30,13.7,0.92,0.038,0.62,0,0,0,0,1,4.9,0,0,0,0,0.313,55.21,116.1,0.91,0.14,793,1.4,80,1.2
+3720,2016,6,5,0,30,13.5,0.93,0.039,0.62,0,0,0,0,1,4.5,0,0,0,0,0.315,54.53,116.75,0.91,0.14,793,1.3,81,1.1
+3721,2016,6,5,1,30,13.3,0.92,0.039,0.62,0,0,0,0,1,4.1,0,0,0,0,0.316,53.66,114.36,0.9,0.14,792,1.3,80,1
+3722,2016,6,5,2,30,12.8,0.9,0.038,0.62,0,0,0,0,1,3.9,0,0,0,0,0.317,54.55,109.25,0.9,0.14,792,1.2,77,0.9
+3723,2016,6,5,3,30,12.1,0.89,0.037,0.62,0,0,0,0,1,3.8,0,0,0,0,0.317,56.7,101.98,0.9,0.14,792,1.1,73,1
+3724,2016,6,5,4,30,12,0.88,0.037,0.62,0,0,0,0,1,3.7,0,0,0,0,0.316,56.76,93.11,0.9,0.14,792,1.1,72,0.9
+3725,2016,6,5,5,30,13.9,0.87,0.036,0.62,29,504,90,0,1,5.3,29,504,0,90,0.315,56.11,83.02,0.9,0.14,792,1,72,1.1
+3726,2016,6,5,6,30,17.4,0.88,0.036,0.62,47,760,278,0,1,5,47,760,0,278,0.314,44.05,72.34,0.9,0.14,792,1,78,1.5
+3727,2016,6,5,7,30,21.3,0.89,0.036,0.62,59,876,481,0,1,3.8,59,876,0,481,0.312,31.73,61.16,0.9,0.14,792,1,93,1.6
+3728,2016,6,5,8,30,24.4,0.92,0.035,0.62,66,941,674,0,0,1.5,66,941,0,674,0.311,22.36,49.78,0.9,0.14,792,1,109,1.4
+3729,2016,6,5,9,30,26.1,0.95,0.035,0.62,72,979,837,0,0,1.5,72,979,0,837,0.309,20.18,38.54,0.9,0.14,792,1,133,1
+3730,2016,6,5,10,30,27.4,0.97,0.034,0.62,75,998,956,0,1,1.4,75,998,0,956,0.309,18.62,28.07,0.9,0.14,791,1.1,167,0.8
+3731,2016,6,5,11,30,28.4,0.99,0.034,0.62,77,1010,1025,0,1,1.3,77,1010,0,1025,0.308,17.36,20.03,0.91,0.14,791,1.1,199,0.8
+3732,2016,6,5,12,30,29.1,1,0.035,0.62,78,1011,1038,0,1,1,78,1011,0,1038,0.308,16.29,18.24,0.91,0.14,790,1.1,221,0.8
+3733,2016,6,5,13,30,29.5,0.99,0.036,0.62,77,1003,992,0,1,0.7,77,1003,0,992,0.308,15.56,24.17,0.91,0.14,790,1.1,231,0.7
+3734,2016,6,5,14,30,29.5,0.97,0.039,0.62,76,983,891,0,1,0.3,76,983,0,891,0.307,15.14,33.92,0.91,0.14,789,1.1,194,0.4
+3735,2016,6,5,15,30,29.1,0.97,0.039,0.62,71,952,745,7,3,-0.1,296,545,7,682,0.306,15.1,44.93,0.91,0.14,789,1.1,126,0.5
+3736,2016,6,5,16,30,28.3,0.98,0.04,0.62,64,900,564,0,1,-0.3,64,900,0,564,0.305,15.61,56.3,0.91,0.14,788,1.1,95,1.2
+3737,2016,6,5,17,30,26.5,0.99,0.041,0.62,54,805,361,0,1,0.2,54,805,0,361,0.305,17.94,67.59,0.91,0.14,788,1.2,94,1.5
+3738,2016,6,5,18,30,22.9,1.02,0.044,0.62,40,621,164,0,1,4.3,40,621,0,164,0.304,29.82,78.52,0.92,0.14,788,1.2,97,1.4
+3739,2016,6,5,19,30,19.3,1.04,0.047,0.62,12,160,15,0,1,7.8,12,160,0,15,0.304,47.33,88.65,0.92,0.14,789,1.2,100,1.5
+3740,2016,6,5,20,30,17.6,1.07,0.048,0.62,0,0,0,0,8,6.5,0,0,0,0,0.304,48.17,98.31,0.92,0.14,789,1.2,104,1.7
+3741,2016,6,5,21,30,16.4,1.09,0.048,0.62,0,0,0,0,8,6.1,0,0,0,0,0.303,50.7,106.31,0.92,0.14,789,1.3,109,1.7
+3742,2016,6,5,22,30,15.2,1.1,0.047,0.62,0,0,0,0,7,6,0,0,0,0,0.303,54.06,112.4,0.92,0.14,789,1.3,112,1.6
+3743,2016,6,5,23,30,14.2,1.1,0.046,0.62,0,0,0,0,8,5.8,0,0,0,0,0.302,56.89,115.99,0.92,0.14,789,1.3,112,1.5
+3744,2016,6,6,0,30,13.3,1.11,0.045,0.62,0,0,0,0,8,5.6,0,0,0,0,0.301,59.74,116.65,0.92,0.14,789,1.3,110,1.4
+3745,2016,6,6,1,30,12.5,1.12,0.046,0.62,0,0,0,0,8,5.5,0,0,0,0,0.301,62.28,114.27,0.92,0.14,788,1.3,106,1.3
+3746,2016,6,6,2,30,11.7,1.16,0.048,0.62,0,0,0,0,8,5.4,0,0,0,0,0.301,65.11,109.18,0.93,0.14,788,1.3,100,1.3
+3747,2016,6,6,3,30,11.2,1.22,0.054,0.62,0,0,0,0,8,5.3,0,0,0,0,0.302,66.96,101.92,0.94,0.14,788,1.4,96,1.3
+3748,2016,6,6,4,30,11.4,1.28,0.063,0.62,0,0,0,0,8,5.4,0,0,0,0,0.302,66.61,93.06,0.94,0.14,788,1.4,91,1.6
+3749,2016,6,6,5,30,12.7,1.32,0.072,0.62,34,422,85,7,8,5.6,58,16,7,60,0.302,61.94,82.99,0.95,0.14,789,1.5,80,2.1
+3750,2016,6,6,6,30,14.7,1.35,0.08,0.62,60,678,266,7,8,5.7,142,102,7,173,0.302,54.72,72.31,0.95,0.14,789,1.5,69,2.4
+3751,2016,6,6,7,30,18,1.38,0.089,0.62,79,798,464,0,8,6.3,179,465,0,403,0.303,46.29,61.14,0.95,0.14,789,1.5,70,2.4
+3752,2016,6,6,8,30,21.5,1.39,0.101,0.62,95,858,649,0,1,5.2,95,858,0,649,0.303,34.61,49.76,0.96,0.14,789,1.6,81,2.7
+3753,2016,6,6,9,30,24.1,1.4,0.114,0.62,110,893,808,0,1,4.2,110,893,0,808,0.304,27.42,38.52,0.96,0.14,789,1.6,90,2.9
+3754,2016,6,6,10,30,25.8,1.41,0.127,0.62,122,908,924,0,1,3.7,122,908,0,924,0.304,24.02,28.03,0.96,0.14,789,1.7,98,2.8
+3755,2016,6,6,11,30,26.9,1.43,0.089,0.62,106,950,999,0,7,3.7,355,470,0,797,0.304,22.47,19.96,0.96,0.14,789,1.7,102,2.6
+3756,2016,6,6,12,30,27.5,1.43,0.098,0.62,111,946,1010,0,8,3.8,348,457,0,782,0.305,21.9,18.14,0.96,0.14,788,1.7,102,2.5
+3757,2016,6,6,13,30,28,1.46,0.1,0.62,110,936,965,0,1,4.1,110,936,0,965,0.305,21.66,24.07,0.96,0.14,788,1.7,101,2.8
+3758,2016,6,6,14,30,28.1,1.42,0.098,0.62,105,917,867,0,7,4.3,259,594,0,753,0.306,21.86,33.82,0.95,0.14,787,1.7,103,3.3
+3759,2016,6,6,15,30,27.8,1.41,0.091,0.62,95,887,723,0,6,4.5,49,0,0,49,0.308,22.49,44.84,0.95,0.14,787,1.7,108,3.6
+3760,2016,6,6,16,30,26.8,1.37,0.091,0.62,85,824,543,0,6,4.6,222,32,0,240,0.309,24.07,56.21,0.96,0.14,786,1.8,110,3.7
+3761,2016,6,6,17,30,24.9,1.32,0.103,0.62,75,706,345,0,6,4.6,167,39,0,182,0.31,27.01,67.5,0.95,0.15,786,1.8,104,3.5
+3762,2016,6,6,18,30,21.8,1.32,0.086,0.62,48,537,156,7,6,6.4,78,10,7,80,0.311,36.94,78.43,0.94,0.15,786,1.7,98,3.4
+3763,2016,6,6,19,30,18.8,1.29,0.067,0.62,12,135,15,7,6,7.7,7,0,7,7,0.311,48.6,88.56,0.93,0.15,787,1.6,101,3.6
+3764,2016,6,6,20,30,17.1,1.26,0.06,0.62,0,0,0,0,6,8.2,0,0,0,0,0.311,55.84,98.2,0.93,0.15,787,1.5,108,3.6
+3765,2016,6,6,21,30,15.5,1.28,0.058,0.62,0,0,0,0,8,9.1,0,0,0,0,0.311,65.54,106.21,0.93,0.15,787,1.4,110,2.9
+3766,2016,6,6,22,30,14.1,1.33,0.062,0.62,0,0,0,0,1,9.5,0,0,0,0,0.311,73.7,112.3,0.93,0.15,787,1.4,106,2.2
+3767,2016,6,6,23,30,13.2,1.38,0.076,0.62,0,0,0,0,1,9.5,0,0,0,0,0.311,78.05,115.89,0.94,0.15,787,1.5,97,1.8
+3768,2016,6,7,0,30,12.6,1.39,0.105,0.62,0,0,0,0,1,9.3,0,0,0,0,0.311,80.44,116.55,0.95,0.15,787,1.5,87,1.7
+3769,2016,6,7,1,30,12.1,1.4,0.127,0.62,0,0,0,0,1,9.3,0,0,0,0,0.312,82.81,114.19,0.95,0.15,787,1.5,80,1.7
+3770,2016,6,7,2,30,11.5,1.44,0.14,0.62,0,0,0,0,1,9.3,0,0,0,0,0.314,86.17,109.11,0.95,0.15,787,1.5,79,1.7
+3771,2016,6,7,3,30,10.7,1.5,0.139,0.62,0,0,0,0,8,9.1,0,0,0,0,0.317,89.7,101.87,0.94,0.15,787,1.4,88,1.5
+3772,2016,6,7,4,30,10.7,1.54,0.13,0.62,0,0,0,0,8,8.7,0,0,0,0,0.319,87.25,93.02,0.93,0.15,787,1.4,104,1.4
+3773,2016,6,7,5,30,12.4,1.56,0.119,0.62,37,359,81,7,8,8.5,62,24,7,65,0.321,77.1,82.96,0.92,0.15,788,1.4,125,1.7
+3774,2016,6,7,6,30,15.8,1.55,0.111,0.62,66,642,262,7,8,8.2,135,45,7,148,0.323,60.8,72.29,0.92,0.15,788,1.4,158,2.4
+3775,2016,6,7,7,30,19.7,1.53,0.105,0.62,83,784,461,0,8,6.3,83,784,5,461,0.324,41.58,61.12,0.92,0.15,788,1.4,195,3.3
+3776,2016,6,7,8,30,22.8,1.5,0.104,0.62,95,861,651,0,1,3.1,95,861,0,651,0.325,27.61,49.74,0.92,0.15,788,1.4,210,3.8
+3777,2016,6,7,9,30,25.1,1.47,0.107,0.62,105,907,815,0,1,1.9,105,907,0,815,0.325,22.06,38.5,0.92,0.15,788,1.3,218,4
+3778,2016,6,7,10,30,26.7,1.45,0.11,0.62,112,932,935,0,8,1.6,177,749,0,839,0.326,19.67,28,0.92,0.15,787,1.3,222,4.1
+3779,2016,6,7,11,30,27.8,1.44,0.119,0.62,120,936,1001,0,1,1.8,120,936,0,1001,0.326,18.59,19.89,0.93,0.15,787,1.4,224,4.2
+3780,2016,6,7,12,30,28.2,1.41,0.13,0.62,126,931,1011,0,1,2,126,931,0,1011,0.326,18.46,18.04,0.93,0.15,786,1.4,225,4.1
+3781,2016,6,7,13,30,28.1,1.42,0.139,0.62,128,915,965,0,1,2.3,128,915,0,965,0.326,18.92,23.97,0.93,0.15,786,1.4,229,4
+3782,2016,6,7,14,30,27.7,1.44,0.139,0.62,123,893,866,0,1,2.5,123,893,0,866,0.326,19.69,33.73,0.93,0.15,786,1.4,234,3.8
+3783,2016,6,7,15,30,27,1.48,0.132,0.62,111,860,722,0,8,2.4,243,530,0,619,0.327,20.36,44.75,0.93,0.15,786,1.4,243,3.5
+3784,2016,6,7,16,30,26,1.52,0.129,0.62,98,796,541,0,6,2.3,273,133,0,347,0.328,21.52,56.12,0.93,0.15,786,1.5,261,3.1
+3785,2016,6,7,17,30,24,1.53,0.145,0.62,86,664,342,0,9,3.5,62,1,0,62,0.328,26.28,67.41,0.95,0.15,786,1.7,285,3.2
+3786,2016,6,7,18,30,20.7,1.53,0.183,0.62,64,412,147,7,6,6.4,83,10,7,86,0.327,39.45,78.33,0.96,0.15,787,2,305,3.7
+3787,2016,6,7,19,30,17.6,1.5,0.218,0.62,11,42,12,7,8,8.2,9,0,7,9,0.325,53.99,88.47,0.96,0.15,789,2.2,318,3.5
+3788,2016,6,7,20,30,15.8,1.5,0.209,0.62,0,0,0,0,8,9.5,0,0,0,0,0.324,66.28,98.11,0.96,0.15,789,2.2,337,2.1
+3789,2016,6,7,21,30,14.8,1.51,0.169,0.62,0,0,0,0,8,10.2,0,0,0,0,0.324,73.97,106.11,0.95,0.15,789,2.1,185,1
+3790,2016,6,7,22,30,14,1.5,0.12,0.62,0,0,0,0,8,10.6,0,0,0,0,0.325,79.88,112.2,0.94,0.15,789,2,16,0.5
+3791,2016,6,7,23,30,13.3,1.49,0.098,0.62,0,0,0,0,7,10.5,0,0,0,0,0.325,83.11,115.79,0.94,0.15,789,2,18,0.3
+3792,2016,6,8,0,30,12.9,1.48,0.093,0.62,0,0,0,0,8,10.3,0,0,0,0,0.324,84.49,116.47,0.94,0.15,789,2,65,0.2
+3793,2016,6,8,1,30,12.5,1.48,0.093,0.62,0,0,0,0,8,10.3,0,0,0,0,0.324,86.21,114.12,0.94,0.15,789,2.1,122,0.3
+3794,2016,6,8,2,30,12.1,1.5,0.095,0.62,0,0,0,0,4,10.2,0,0,0,0,0.323,87.96,109.05,0.94,0.15,789,2.1,137,0.4
+3795,2016,6,8,3,30,11.9,1.54,0.098,0.62,0,0,0,0,8,10,0,0,0,0,0.321,88.44,101.82,0.94,0.15,789,2.1,141,0.3
+3796,2016,6,8,4,30,12.2,1.57,0.108,0.62,0,0,0,0,4,9.9,0,0,0,0,0.318,85.92,92.99,0.95,0.15,789,2.2,136,0.2
+3797,2016,6,8,5,30,13.8,1.6,0.122,0.62,38,340,80,0,1,10.3,38,340,0,80,0.316,79.17,82.93,0.96,0.15,789,2.2,74,0.3
+3798,2016,6,8,6,30,16.2,1.62,0.136,0.62,73,592,253,0,1,9.8,73,592,0,253,0.314,66.01,72.27,0.96,0.15,789,2.2,180,0.9
+3799,2016,6,8,7,30,18.2,1.65,0.137,0.62,94,731,447,0,3,9.4,255,230,0,367,0.313,56.64,61.1,0.96,0.15,789,2.2,335,1.6
+3800,2016,6,8,8,30,19.8,1.67,0.133,0.62,107,816,634,0,1,9.2,107,816,0,634,0.312,50.45,49.73,0.95,0.15,789,2.2,332,2
+3801,2016,6,8,9,30,20.9,1.65,0.135,0.62,117,863,793,0,1,9.1,117,863,0,793,0.312,46.69,38.48,0.96,0.15,789,2.2,335,2.2
+3802,2016,6,8,10,30,21.8,1.64,0.136,0.62,124,891,911,0,1,8.8,124,891,0,911,0.312,43.41,27.97,0.95,0.15,789,2.2,340,2.5
+3803,2016,6,8,11,30,22.4,1.5,0.09,0.62,106,939,990,0,4,8.5,142,0,0,142,0.312,40.92,19.83,0.95,0.15,789,2.1,346,2.6
+3804,2016,6,8,12,30,22.9,1.56,0.084,0.62,103,946,1004,0,7,8.1,345,485,0,807,0.313,38.71,17.94,0.95,0.15,789,2.1,351,2.7
+3805,2016,6,8,13,30,23.2,1.63,0.075,0.62,97,945,961,0,8,7.7,445,111,0,546,0.313,37.03,23.87,0.95,0.15,789,2.1,354,2.5
+3806,2016,6,8,14,30,23.6,1.63,0.072,0.62,91,931,866,0,8,7.2,355,176,0,501,0.313,35,33.64,0.94,0.15,788,2,354,2.3
+3807,2016,6,8,15,30,23.8,1.67,0.064,0.62,81,907,727,0,9,6.8,68,0,0,68,0.313,33.57,44.67,0.94,0.15,788,1.9,352,2
+3808,2016,6,8,16,30,23.7,1.7,0.058,0.62,70,859,550,0,6,6.5,150,4,0,152,0.314,32.99,56.03,0.93,0.15,788,1.9,350,1.8
+3809,2016,6,8,17,30,23,1.71,0.052,0.62,57,775,356,0,6,6.4,7,0,0,7,0.314,34.23,67.32,0.93,0.15,788,1.9,354,1.1
+3810,2016,6,8,18,30,21.8,1.69,0.045,0.62,39,616,165,7,6,9,68,6,7,69,0.315,44.01,78.25,0.92,0.15,788,1.8,233,0.4
+3811,2016,6,8,19,30,20.5,1.65,0.04,0.62,12,211,18,7,8,9,9,0,7,9,0.316,47.59,88.39,0.92,0.15,788,1.8,152,0.3
+3812,2016,6,8,20,30,19.3,1.59,0.038,0.62,0,0,0,0,8,8.2,0,0,0,0,0.317,48.59,98.01,0.91,0.15,788,1.8,212,0.6
+3813,2016,6,8,21,30,18.3,1.56,0.036,0.62,0,0,0,0,8,8.5,0,0,0,0,0.317,52.85,106.01,0.91,0.15,788,1.7,236,0.7
+3814,2016,6,8,22,30,17.3,1.53,0.035,0.62,0,0,0,0,8,8.5,0,0,0,0,0.317,56.28,112.1,0.91,0.15,788,1.6,243,0.9
+3815,2016,6,8,23,30,16.5,1.5,0.034,0.62,0,0,0,0,8,8.2,0,0,0,0,0.316,58.05,115.71,0.9,0.15,788,1.5,241,0.9
+3816,2016,6,9,0,30,15.6,1.48,0.032,0.62,0,0,0,0,7,7.8,0,0,0,0,0.315,59.88,116.39,0.9,0.15,787,1.5,233,1
+3817,2016,6,9,1,30,14.3,1.45,0.032,0.62,0,0,0,0,1,7.6,0,0,0,0,0.314,64.04,114.05,0.9,0.15,787,1.4,222,1.1
+3818,2016,6,9,2,30,13,1.43,0.034,0.62,0,0,0,0,1,7.5,0,0,0,0,0.313,69.34,109,0.91,0.15,787,1.4,217,1.2
+3819,2016,6,9,3,30,12.2,1.4,0.038,0.62,0,0,0,0,1,7.4,0,0,0,0,0.31,72.27,101.78,0.92,0.15,787,1.4,213,1.2
+3820,2016,6,9,4,30,12.5,1.33,0.044,0.62,0,0,0,0,1,7.3,0,0,0,0,0.306,70.53,92.96,0.93,0.15,788,1.4,207,1.2
+3821,2016,6,9,5,30,14.3,1.28,0.057,0.62,32,454,88,0,1,8,32,454,0,88,0.304,65.94,82.91,0.94,0.15,788,1.5,204,1.4
+3822,2016,6,9,6,30,16.9,1.28,0.076,0.62,59,680,267,0,1,7.9,59,680,0,267,0.303,55.43,72.26,0.95,0.15,789,1.6,201,1.8
+3823,2016,6,9,7,30,20,1.31,0.091,0.62,80,789,461,0,8,7.3,237,258,0,361,0.302,43.81,61.09,0.95,0.15,789,1.7,195,2.3
+3824,2016,6,9,8,30,23.3,1.34,0.099,0.62,94,856,648,0,1,6.5,94,856,0,648,0.302,33.97,49.72,0.94,0.15,788,1.7,195,3.1
+3825,2016,6,9,9,30,26.1,1.35,0.095,0.62,101,908,812,0,0,6.1,101,908,0,812,0.302,27.84,38.47,0.94,0.15,788,1.6,206,3.8
+3826,2016,6,9,10,30,28.3,1.34,0.085,0.62,101,942,933,0,0,5.8,101,942,0,933,0.302,24,27.94,0.93,0.15,787,1.6,216,4.3
+3827,2016,6,9,11,30,29.9,1.66,0.059,0.62,89,976,1008,0,1,5.5,89,976,0,1008,0.303,21.39,19.78,0.93,0.15,787,1.6,223,4.7
+3828,2016,6,9,12,30,31.1,1.64,0.056,0.62,88,981,1022,0,8,5,198,729,0,893,0.304,19.35,17.86,0.93,0.15,786,1.6,226,5.1
+3829,2016,6,9,13,30,31.8,1.6,0.056,0.62,87,976,980,0,1,4.6,87,976,0,980,0.305,17.99,23.78,0.93,0.15,785,1.5,228,5.5
+3830,2016,6,9,14,30,31.9,1.44,0.062,0.62,87,953,881,0,8,3.8,384,347,0,673,0.305,16.94,33.55,0.93,0.15,785,1.5,230,5.7
+3831,2016,6,9,15,30,31.5,1.33,0.066,0.62,83,919,738,0,1,2.5,83,919,0,738,0.305,15.88,44.58,0.93,0.15,784,1.4,233,5.6
+3832,2016,6,9,16,30,30.6,1.24,0.068,0.62,76,861,558,0,7,1.4,179,613,0,522,0.304,15.39,55.95,0.93,0.15,784,1.4,237,5.1
+3833,2016,6,9,17,30,28.4,1.17,0.072,0.62,66,762,361,0,8,0.7,188,244,0,282,0.303,16.64,67.24,0.94,0.15,784,1.3,245,3.5
+3834,2016,6,9,18,30,24.3,1.12,0.078,0.62,49,567,165,7,8,4.9,106,69,7,120,0.302,28.56,78.16,0.94,0.15,785,1.2,260,1.9
+3835,2016,6,9,19,30,20.6,1.08,0.081,0.62,14,125,18,7,8,7.1,12,0,7,12,0.302,41.61,88.31,0.94,0.15,785,1.1,279,1.4
+3836,2016,6,9,20,30,18.8,1.05,0.076,0.62,0,0,0,0,3,6.4,0,0,0,0,0.302,44.2,97.92,0.93,0.15,786,1,293,1.4
+3837,2016,6,9,21,30,17.8,1.02,0.066,0.62,0,0,0,0,1,5.8,0,0,0,0,0.303,45.26,105.92,0.92,0.15,786,1,303,1.3
+3838,2016,6,9,22,30,17.3,0.99,0.06,0.62,0,0,0,0,1,5.3,0,0,0,0,0.303,45.23,112.01,0.92,0.15,787,1,310,1.2
+3839,2016,6,9,23,30,16.9,1,0.059,0.62,0,0,0,0,8,4.8,0,0,0,0,0.303,44.69,115.62,0.92,0.15,787,1,318,1
+3840,2016,6,10,0,30,16.3,1.01,0.061,0.62,0,0,0,0,8,4.5,0,0,0,0,0.302,45.49,116.31,0.92,0.15,787,1.1,330,0.8
+3841,2016,6,10,1,30,15.5,1.03,0.065,0.62,0,0,0,0,8,4.7,0,0,0,0,0.302,48.42,113.99,0.92,0.15,787,1.2,177,0.5
+3842,2016,6,10,2,30,14.8,1.03,0.067,0.62,0,0,0,0,8,4.9,0,0,0,0,0.302,51.43,108.95,0.92,0.15,787,1.2,50,0.4
+3843,2016,6,10,3,30,14,1.03,0.069,0.62,0,0,0,0,8,4.7,0,0,0,0,0.301,53.54,101.75,0.92,0.15,788,1.2,99,0.7
+3844,2016,6,10,4,30,13.8,1.01,0.067,0.62,0,0,0,0,8,4.6,0,0,0,0,0.301,53.77,92.94,0.92,0.15,788,1.2,124,0.8
+3845,2016,6,10,5,30,15.8,0.99,0.063,0.62,33,443,88,7,8,5.7,64,48,7,70,0.301,50.96,82.9,0.92,0.15,789,1.1,151,1.2
+3846,2016,6,10,6,30,19.5,0.96,0.06,0.62,55,716,274,7,8,4.6,152,121,7,189,0.3,37.52,72.25,0.92,0.15,789,1.1,183,1.9
+3847,2016,6,10,7,30,23.2,0.94,0.059,0.62,69,842,476,0,7,2.6,69,842,5,476,0.3,25.91,61.09,0.92,0.15,789,1.1,205,2.7
+3848,2016,6,10,8,30,25.6,0.93,0.059,0.62,78,911,667,0,1,1.6,78,911,0,667,0.3,20.87,49.72,0.92,0.15,790,1.1,210,3.4
+3849,2016,6,10,9,30,27.1,0.93,0.059,0.62,85,952,830,0,1,1.4,85,952,0,830,0.301,18.83,38.46,0.92,0.15,790,1.1,208,4
+3850,2016,6,10,10,30,28.3,0.95,0.06,0.62,90,975,952,0,1,1.3,90,975,0,952,0.301,17.49,27.92,0.92,0.15,789,1.1,210,4.4
+3851,2016,6,10,11,30,29.3,1.05,0.048,0.62,86,998,1025,0,0,1.3,86,998,0,1025,0.302,16.43,19.73,0.92,0.15,789,1.1,213,4.6
+3852,2016,6,10,12,30,30,1.08,0.048,0.62,86,1000,1038,0,1,1,86,1000,0,1038,0.303,15.52,17.78,0.92,0.15,789,1.1,216,4.6
+3853,2016,6,10,13,30,30.4,1.11,0.046,0.62,83,995,994,0,1,0.7,83,995,0,994,0.303,14.79,23.69,0.92,0.15,788,1.1,219,4.5
+3854,2016,6,10,14,30,30.4,1.18,0.04,0.62,76,983,896,0,1,0.3,76,983,0,896,0.304,14.37,33.47,0.92,0.15,788,1.1,221,4.4
+3855,2016,6,10,15,30,30.1,1.24,0.04,0.62,72,957,754,0,1,-0.2,72,957,0,754,0.304,14.11,44.51,0.93,0.15,788,1,223,4.1
+3856,2016,6,10,16,30,29.3,1.3,0.04,0.62,64,908,574,0,1,-1,64,908,0,574,0.304,13.94,55.87,0.93,0.15,787,1,223,3.6
+3857,2016,6,10,17,30,27.3,1.37,0.04,0.62,54,822,374,0,1,-1.1,54,822,0,374,0.305,15.53,67.16,0.93,0.15,787,1,218,2.3
+3858,2016,6,10,18,30,24.1,1.44,0.037,0.62,39,660,175,0,1,6.6,39,660,0,175,0.305,32.43,78.08,0.92,0.15,788,1,206,1.3
+3859,2016,6,10,19,30,21.6,1.51,0.034,0.62,13,252,20,7,7,7.2,12,1,7,12,0.305,39.34,88.23,0.92,0.15,788,1,192,1.3
+3860,2016,6,10,20,30,20.2,1.5,0.033,0.62,0,0,0,0,1,5.2,0,0,0,0,0.305,37.4,97.84,0.91,0.15,788,1,185,1.4
+3861,2016,6,10,21,30,18.9,1.45,0.034,0.62,0,0,0,0,1,4.7,0,0,0,0,0.303,39.1,105.84,0.92,0.15,788,1,185,1.4
+3862,2016,6,10,22,30,17.7,1.35,0.039,0.62,0,0,0,0,3,4.3,0,0,0,0,0.301,41.12,111.93,0.93,0.15,788,1,188,1.4
+3863,2016,6,10,23,30,16.9,1.26,0.047,0.62,0,0,0,0,8,4.1,0,0,0,0,0.298,42.7,115.55,0.94,0.15,788,1,190,1.4
+3864,2016,6,11,0,30,16.3,1.22,0.053,0.62,0,0,0,0,7,4,0,0,0,0,0.297,44.08,116.25,0.94,0.15,787,1,187,1.3
+3865,2016,6,11,1,30,15.7,1.19,0.054,0.62,0,0,0,0,8,3.7,0,0,0,0,0.296,44.82,113.93,0.94,0.15,787,1,180,1.2
+3866,2016,6,11,2,30,15.2,1.15,0.05,0.62,0,0,0,0,8,3.7,0,0,0,0,0.295,46.06,108.91,0.94,0.15,787,1,169,1.3
+3867,2016,6,11,3,30,14.6,1.13,0.054,0.62,0,0,0,0,8,3.7,0,0,0,0,0.295,48.09,101.72,0.94,0.15,787,1,159,1.5
+3868,2016,6,11,4,30,14.5,1.14,0.061,0.62,0,0,0,0,8,3.9,0,0,0,0,0.294,49.03,92.92,0.95,0.15,787,1,157,1.9
+3869,2016,6,11,5,30,15.6,1.18,0.071,0.62,35,435,89,7,4,4.4,51,1,7,52,0.294,47.18,82.89,0.95,0.15,788,1.1,163,2.4
+3870,2016,6,11,6,30,17.5,1.22,0.081,0.62,61,681,269,0,1,4.6,61,681,0,269,0.293,42.35,72.25,0.95,0.15,788,1.3,173,3
+3871,2016,6,11,7,30,19.8,1.25,0.086,0.62,79,803,467,0,1,5.4,79,803,0,467,0.292,38.91,61.09,0.95,0.15,788,1.4,187,3.7
+3872,2016,6,11,8,30,22.5,1.26,0.087,0.62,90,872,654,0,3,6.7,371,177,0,485,0.292,36.11,49.72,0.95,0.15,788,1.5,201,4.9
+3873,2016,6,11,9,30,25.2,1.29,0.085,0.62,97,916,814,0,7,6.2,222,655,0,734,0.293,29.56,38.46,0.94,0.15,788,1.6,210,6
+3874,2016,6,11,10,30,26.8,1.3,0.088,0.62,103,937,931,0,8,5.5,273,565,0,772,0.294,25.58,27.91,0.94,0.15,788,1.7,212,6.7
+3875,2016,6,11,11,30,26.6,1.27,0.1,0.62,113,936,993,0,8,5.9,223,677,0,860,0.296,26.62,19.69,0.95,0.15,788,1.9,216,7.6
+3876,2016,6,11,12,30,24.2,1.18,0.133,0.62,130,908,995,0,8,6.9,400,398,0,779,0.297,32.99,17.7,0.95,0.15,789,2.1,222,8.2
+3877,2016,6,11,13,30,21.8,1.2,0.154,0.62,138,884,948,0,6,8,272,3,0,274,0.299,41.05,23.61,0.95,0.15,789,2.1,218,7.1
+3878,2016,6,11,14,30,21.5,1.45,0.105,0.62,108,904,863,0,8,8.2,371,289,0,612,0.299,42.55,33.39,0.95,0.15,789,2,207,6.1
+3879,2016,6,11,15,30,22.1,1.56,0.084,0.62,91,892,728,0,8,7.9,293,424,0,596,0.299,39.98,44.43,0.94,0.15,789,1.8,202,5.7
+3880,2016,6,11,16,30,22.3,1.65,0.072,0.62,77,851,555,0,8,7.4,230,286,0,391,0.299,38.32,55.8,0.94,0.15,789,1.7,204,5.3
+3881,2016,6,11,17,30,21.7,1.68,0.075,0.62,65,750,358,0,8,7.3,191,209,0,272,0.298,39.54,67.08,0.94,0.15,789,1.8,204,4.1
+3882,2016,6,11,18,30,19.7,1.68,0.083,0.62,48,558,164,7,7,7.9,100,80,7,116,0.298,46.6,78,0.95,0.15,789,1.8,204,2.3
+3883,2016,6,11,19,30,17.5,1.68,0.089,0.62,14,148,19,0,1,9.6,14,148,0,19,0.298,59.62,88.15,0.95,0.15,789,1.8,216,1.3
+3884,2016,6,11,20,30,16.2,1.68,0.09,0.62,0,0,0,0,3,9.7,0,0,0,0,0.299,65.4,97.76,0.95,0.15,789,1.8,237,1.3
+3885,2016,6,11,21,30,14.9,1.67,0.08,0.62,0,0,0,0,3,9.7,0,0,0,0,0.299,71.01,105.76,0.94,0.15,790,1.8,254,1.3
+3886,2016,6,11,22,30,13.6,1.65,0.071,0.62,0,0,0,0,1,9.5,0,0,0,0,0.299,76.33,111.86,0.94,0.15,790,1.8,269,1.1
+3887,2016,6,11,23,30,12.7,1.59,0.069,0.62,0,0,0,0,1,9.4,0,0,0,0,0.298,80.4,115.48,0.94,0.15,791,1.8,289,0.9
+3888,2016,6,12,0,30,12,1.53,0.069,0.62,0,0,0,0,8,9.3,0,0,0,0,0.297,83.29,116.19,0.94,0.15,791,1.8,317,0.7
+3889,2016,6,12,1,30,11.3,1.49,0.07,0.62,0,0,0,0,1,9.1,0,0,0,0,0.296,86.06,113.89,0.94,0.15,791,1.8,172,0.6
+3890,2016,6,12,2,30,10.6,1.48,0.074,0.62,0,0,0,0,1,8.9,0,0,0,0,0.296,89.16,108.88,0.94,0.15,791,1.8,22,0.6
+3891,2016,6,12,3,30,9.9,1.48,0.081,0.62,0,0,0,0,4,8.8,0,0,0,0,0.297,92.63,101.7,0.94,0.15,792,1.8,36,0.7
+3892,2016,6,12,4,30,10,1.47,0.085,0.62,0,0,0,0,4,8.6,0,0,0,0,0.297,91.17,92.91,0.94,0.15,792,1.8,38,0.9
+3893,2016,6,12,5,30,11.9,1.45,0.086,0.62,35,398,85,0,1,8.6,35,398,0,85,0.297,80.45,82.88,0.94,0.15,793,1.8,53,1.2
+3894,2016,6,12,6,30,15,1.43,0.084,0.62,61,665,263,0,1,8.5,61,665,0,263,0.297,65.15,72.25,0.94,0.15,793,1.8,110,1.4
+3895,2016,6,12,7,30,18.4,1.43,0.08,0.62,75,799,461,0,0,8.3,75,799,0,461,0.297,51.88,61.09,0.94,0.15,793,1.8,177,2.2
+3896,2016,6,12,8,30,21,1.42,0.075,0.62,84,879,652,0,1,7.9,84,879,0,652,0.297,42.83,49.72,0.94,0.15,793,1.7,209,3.5
+3897,2016,6,12,9,30,22.8,1.42,0.072,0.62,90,924,814,0,0,7.9,90,924,0,814,0.297,38.48,38.46,0.94,0.15,793,1.7,217,4.5
+3898,2016,6,12,10,30,24,1.42,0.072,0.62,95,947,931,0,0,7.6,95,947,0,931,0.297,35.06,27.9,0.94,0.15,792,1.8,217,5.1
+3899,2016,6,12,11,30,24.7,1.51,0.074,0.62,98,958,1000,0,1,7.1,98,958,0,1000,0.297,32.36,19.66,0.94,0.15,792,1.8,212,5.3
+3900,2016,6,12,12,30,25.2,1.46,0.08,0.62,102,956,1013,7,8,6.6,411,327,7,723,0.298,30.44,17.64,0.94,0.15,792,1.8,207,5.1
+3901,2016,6,12,13,30,25.8,1.43,0.084,0.62,102,948,971,0,8,6.3,397,46,0,439,0.299,28.73,23.54,0.94,0.15,791,1.7,204,5
+3902,2016,6,12,14,30,26.3,1.65,0.071,0.62,91,940,877,0,1,5.9,91,940,0,877,0.301,27.17,33.32,0.94,0.15,791,1.7,201,4.9
+3903,2016,6,12,15,30,26.4,1.62,0.071,0.62,85,910,736,0,1,5.3,85,910,0,736,0.301,25.85,44.36,0.94,0.15,790,1.6,201,4.8
+3904,2016,6,12,16,30,25.9,1.58,0.072,0.62,77,856,560,0,1,4.4,77,856,0,560,0.302,25.14,55.72,0.94,0.15,790,1.5,204,4.6
+3905,2016,6,12,17,30,24.7,1.58,0.067,0.62,63,776,366,0,1,3.2,63,776,0,366,0.302,24.77,67.01,0.92,0.15,790,1.3,209,3.9
+3906,2016,6,12,18,30,21.4,1.63,0.06,0.62,43,618,173,7,7,3.2,99,173,7,135,0.301,30.31,77.93,0.91,0.15,790,1.1,214,2.5
+3907,2016,6,12,19,30,17.7,1.71,0.053,0.62,13,229,21,7,3,5,11,0,7,11,0.301,43.25,88.08,0.9,0.15,790,0.9,221,1.7
+3908,2016,6,12,20,30,15.7,1.79,0.051,0.62,0,0,0,0,1,4,0,0,0,0,0.301,45.78,97.69,0.9,0.15,790,0.9,234,1.5
+3909,2016,6,12,21,30,14.4,1.8,0.053,0.62,0,0,0,0,3,3.5,0,0,0,0,0.3,47.98,105.69,0.9,0.15,790,1,258,1.4
+3910,2016,6,12,22,30,13.3,1.79,0.057,0.62,0,0,0,0,1,3.5,0,0,0,0,0.3,51.33,111.79,0.91,0.15,790,1,294,1.3
+3911,2016,6,12,23,30,12.4,1.76,0.064,0.62,0,0,0,0,1,4,0,0,0,0,0.3,56.63,115.41,0.92,0.15,790,1.1,327,1.7
+3912,2016,6,13,0,30,11.7,1.71,0.073,0.62,0,0,0,0,1,5.5,0,0,0,0,0.302,65.75,116.13,0.93,0.15,790,1.3,346,2.4
+3913,2016,6,13,1,30,10.9,1.65,0.083,0.62,0,0,0,0,1,7,0,0,0,0,0.303,76.78,113.85,0.94,0.15,790,1.3,178,2.5
+3914,2016,6,13,2,30,10.4,1.63,0.09,0.62,0,0,0,0,1,7.7,0,0,0,0,0.304,83.53,108.85,0.94,0.15,790,1.4,9,2.2
+3915,2016,6,13,3,30,10,1.6,0.099,0.62,0,0,0,0,1,7.8,0,0,0,0,0.303,86.41,101.68,0.95,0.15,790,1.5,18,1.8
+3916,2016,6,13,4,30,10.2,1.56,0.115,0.62,0,0,0,0,8,7.8,0,0,0,0,0.303,84.89,92.9,0.96,0.15,790,1.5,26,1.5
+3917,2016,6,13,5,30,11.7,1.51,0.147,0.62,42,319,81,7,8,7.8,40,2,7,40,0.304,77.23,82.88,0.96,0.15,791,1.6,61,1
+3918,2016,6,13,6,30,14.3,1.46,0.187,0.62,86,545,252,7,8,7.3,105,10,7,108,0.305,62.78,72.25,0.97,0.15,791,1.6,138,1.4
+3919,2016,6,13,7,30,16.6,1.43,0.21,0.62,119,672,444,0,8,6.7,133,4,0,135,0.307,51.97,61.1,0.97,0.15,791,1.6,184,2.9
+3920,2016,6,13,8,30,18.2,1.42,0.176,0.62,126,790,636,0,7,5.4,184,662,0,612,0.309,42.84,49.73,0.96,0.15,791,1.6,184,4.2
+3921,2016,6,13,9,30,18.8,1.4,0.137,0.62,121,873,804,0,3,4,454,159,0,578,0.309,37.46,38.47,0.96,0.15,791,1.6,189,5.5
+3922,2016,6,13,10,30,18.7,1.38,0.125,0.62,122,913,929,0,3,3.7,218,0,0,218,0.311,36.88,27.9,0.95,0.15,791,1.5,193,6.1
+3923,2016,6,13,11,30,19.5,1.34,0.101,0.62,113,945,1003,0,1,3.6,113,945,0,1003,0.315,34.92,19.63,0.94,0.15,790,1.5,192,5.9
+3924,2016,6,13,12,30,21,1.33,0.073,0.62,98,971,1024,0,8,3.2,308,4,0,312,0.32,30.88,17.58,0.93,0.15,789,1.4,198,6.1
+3925,2016,6,13,13,30,21.2,1.34,0.07,0.62,96,966,982,0,8,3.2,437,209,0,629,0.322,30.65,23.47,0.94,0.15,789,1.4,212,6.9
+3926,2016,6,13,14,30,20,1.38,0.076,0.62,95,940,880,0,8,3.8,348,297,0,596,0.323,34.32,33.25,0.94,0.15,789,1.5,224,7.3
+3927,2016,6,13,15,30,18.7,1.47,0.064,0.62,83,920,741,0,1,4.1,83,920,0,741,0.325,38.03,44.29,0.94,0.15,789,1.4,234,6.7
+3928,2016,6,13,16,30,17.9,1.46,0.055,0.62,70,880,567,0,8,3.6,205,422,0,443,0.327,38.73,55.65,0.93,0.15,789,1.3,242,5.8
+3929,2016,6,13,17,30,16.9,1.42,0.055,0.62,59,790,369,0,6,3.1,54,0,0,54,0.328,39.73,66.94,0.93,0.15,789,1.3,252,4.9
+3930,2016,6,13,18,30,15,1.41,0.061,0.62,44,603,171,7,8,3.2,103,43,7,112,0.328,45.01,77.86,0.94,0.15,789,1.4,257,3.5
+3931,2016,6,13,19,30,12.8,1.4,0.074,0.62,15,169,21,7,3,4.4,9,0,7,9,0.328,56.76,88.01,0.95,0.15,789,1.4,252,1.8
+3932,2016,6,13,20,30,11.3,1.39,0.07,0.62,0,0,0,0,4,5.7,0,0,0,0,0.328,68.31,97.62,0.94,0.15,789,1.3,237,1
+3933,2016,6,13,21,30,10.2,1.44,0.055,0.62,0,0,0,0,7,5.7,0,0,0,0,0.328,73.63,105.62,0.93,0.15,789,1.3,223,0.9
+3934,2016,6,13,22,30,9.2,1.51,0.049,0.62,0,0,0,0,8,5.2,0,0,0,0,0.325,76.02,111.72,0.93,0.15,789,1.2,218,1
+3935,2016,6,13,23,30,8.4,1.57,0.048,0.62,0,0,0,0,4,4.8,0,0,0,0,0.322,77.98,115.36,0.93,0.15,788,1.3,219,1
+3936,2016,6,14,0,30,7.6,1.58,0.05,0.62,0,0,0,0,1,4.5,0,0,0,0,0.319,80.8,116.09,0.93,0.15,788,1.3,218,1
+3937,2016,6,14,1,30,6.9,1.53,0.053,0.62,0,0,0,0,1,4.3,0,0,0,0,0.318,83.53,113.81,0.93,0.15,788,1.3,209,1
+3938,2016,6,14,2,30,6.3,1.45,0.056,0.62,0,0,0,0,4,4.2,0,0,0,0,0.32,86.31,108.83,0.93,0.15,788,1.3,198,1.1
+3939,2016,6,14,3,30,5.8,1.35,0.058,0.62,0,0,0,0,1,4.2,0,0,0,0,0.323,89.36,101.67,0.93,0.15,788,1.2,192,1.3
+3940,2016,6,14,4,30,6.4,1.26,0.061,0.62,0,0,0,0,1,4.3,0,0,0,0,0.324,86.61,92.9,0.93,0.15,788,1.2,191,1.8
+3941,2016,6,14,5,30,8.7,1.21,0.063,0.62,33,447,88,0,1,4.7,33,447,0,88,0.323,76.02,82.89,0.93,0.15,788,1.2,196,2.8
+3942,2016,6,14,6,30,12,1.19,0.063,0.62,55,714,273,0,1,4.5,55,714,0,273,0.323,60.32,72.26,0.93,0.15,788,1.1,209,3.7
+3943,2016,6,14,7,30,15.1,1.16,0.06,0.62,68,842,475,0,0,3.5,68,842,0,475,0.322,45.72,61.12,0.93,0.15,788,1.1,222,4.2
+3944,2016,6,14,8,30,17.5,1.12,0.057,0.62,77,913,667,0,0,2.9,77,913,0,667,0.32,37.74,49.75,0.93,0.15,788,1.1,229,4.5
+3945,2016,6,14,9,30,19.4,1.09,0.056,0.62,83,954,830,0,0,2.5,83,954,0,830,0.319,32.44,38.48,0.93,0.15,788,1.1,231,4.8
+3946,2016,6,14,10,30,21,1.07,0.059,0.62,89,976,952,0,0,2.1,89,976,0,952,0.32,28.54,27.9,0.93,0.15,788,1.1,231,5.2
+3947,2016,6,14,11,30,22.2,1.31,0.053,0.62,87,991,1020,0,1,1.8,87,991,0,1020,0.321,26.08,19.61,0.93,0.15,787,1.2,230,5.5
+3948,2016,6,14,12,30,23.1,1.41,0.053,0.62,88,990,1032,0,0,1.7,88,990,0,1032,0.321,24.54,17.52,0.94,0.15,786,1.3,228,5.8
+3949,2016,6,14,13,30,23.8,1.48,0.054,0.62,87,982,988,0,3,1.6,506,299,0,781,0.322,23.24,23.4,0.94,0.15,786,1.3,226,6
+3950,2016,6,14,14,30,24.2,1.56,0.052,0.62,82,967,891,0,1,0.9,82,967,0,891,0.324,21.71,33.18,0.93,0.15,785,1.3,222,6
+3951,2016,6,14,15,30,24.2,1.53,0.051,0.62,76,940,750,0,1,0.1,76,940,0,750,0.328,20.39,44.22,0.93,0.15,785,1.2,217,5.9
+3952,2016,6,14,16,30,23.7,1.44,0.052,0.62,69,891,572,0,1,-0.6,69,891,0,572,0.33,20.03,55.59,0.92,0.15,784,1.1,211,5.8
+3953,2016,6,14,17,30,22.4,1.38,0.052,0.62,59,802,374,0,1,-0.9,59,802,0,374,0.328,21.19,66.88,0.93,0.15,784,1.1,205,5.1
+3954,2016,6,14,18,30,19.5,1.33,0.052,0.62,43,630,176,0,1,-0.4,43,630,0,176,0.324,26.24,77.8,0.93,0.15,785,1.1,196,3.6
+3955,2016,6,14,19,30,16.3,1.3,0.051,0.62,14,218,22,7,7,1.5,15,2,7,15,0.322,36.89,87.95,0.93,0.15,785,1.1,188,2.6
+3956,2016,6,14,20,30,15,1.3,0.051,0.62,0,0,0,0,8,1.5,0,0,0,0,0.32,40,97.55,0.93,0.15,785,1.1,184,2.8
+3957,2016,6,14,21,30,14.3,1.26,0.052,0.62,0,0,0,0,1,1.1,0,0,0,0,0.32,40.61,105.56,0.93,0.15,785,1.1,184,3
+3958,2016,6,14,22,30,13.5,1.18,0.052,0.62,0,0,0,0,1,0.8,0,0,0,0,0.321,42.02,111.66,0.93,0.15,785,1.1,186,2.9
+3959,2016,6,14,23,30,12.7,1.1,0.051,0.62,0,0,0,0,1,0.7,0,0,0,0,0.322,43.98,115.31,0.92,0.15,785,1,189,2.7
+3960,2016,6,15,0,30,11.8,1.03,0.05,0.62,0,0,0,0,1,0.6,0,0,0,0,0.322,46.15,116.05,0.92,0.15,785,1,192,2.6
+3961,2016,6,15,1,30,11,0.98,0.048,0.62,0,0,0,0,1,0.4,0,0,0,0,0.321,48.11,113.79,0.92,0.15,785,0.9,196,2.5
+3962,2016,6,15,2,30,10.2,0.96,0.047,0.62,0,0,0,0,1,0.2,0,0,0,0,0.32,50.06,108.82,0.91,0.15,785,0.9,200,2.4
+3963,2016,6,15,3,30,9.5,0.98,0.049,0.62,0,0,0,0,1,0.1,0,0,0,0,0.32,51.87,101.67,0.91,0.15,786,0.8,202,2.3
+3964,2016,6,15,4,30,9.8,1.03,0.051,0.62,0,0,0,0,1,0,0,0,0,0,0.319,50.35,92.9,0.91,0.15,786,0.8,202,2.3
+3965,2016,6,15,5,30,12.4,1.07,0.055,0.62,32,481,92,0,1,0.2,32,481,0,92,0.318,43.24,82.9,0.91,0.15,787,0.7,205,3.2
+3966,2016,6,15,6,30,16.3,1.06,0.058,0.62,54,739,279,0,0,-0.6,54,739,0,279,0.318,31.72,72.28,0.91,0.15,787,0.7,207,4.4
+3967,2016,6,15,7,30,20,1.02,0.059,0.62,68,860,484,0,0,-1.1,68,860,0,484,0.317,24.16,61.13,0.91,0.15,787,0.7,207,5.8
+3968,2016,6,15,8,30,22.2,0.97,0.06,0.62,79,926,677,0,0,-2.3,79,926,0,677,0.315,19.35,49.77,0.92,0.15,787,0.7,206,6.8
+3969,2016,6,15,9,30,23.5,0.92,0.06,0.62,86,967,843,0,0,-2.7,86,967,0,843,0.314,17.34,38.49,0.92,0.15,787,0.7,203,7.2
+3970,2016,6,15,10,30,24.8,0.92,0.059,0.62,90,992,966,0,0,-3.2,90,992,0,966,0.313,15.5,27.91,0.91,0.15,787,0.7,201,7.5
+3971,2016,6,15,11,30,25.8,1.14,0.045,0.62,83,1022,1046,0,0,-3.7,83,1022,0,1046,0.311,14.02,19.6,0.9,0.15,786,0.6,200,7.8
+3972,2016,6,15,12,30,26.6,1.18,0.043,0.62,83,1026,1061,0,0,-4.4,83,1026,0,1061,0.309,12.68,17.48,0.9,0.15,786,0.6,201,8.1
+3973,2016,6,15,13,30,27.1,1.17,0.04,0.62,79,1022,1018,0,0,-5.2,79,1022,0,1018,0.308,11.57,23.34,0.9,0.15,785,0.6,202,8.3
+3974,2016,6,15,14,30,27.2,1.19,0.034,0.62,73,1012,920,0,1,-6,73,1012,0,920,0.308,10.87,33.12,0.9,0.15,785,0.6,203,8.4
+3975,2016,6,15,15,30,26.9,1.1,0.033,0.62,68,984,774,0,1,-6.7,68,984,0,774,0.308,10.48,44.16,0.9,0.15,784,0.6,203,8.2
+3976,2016,6,15,16,30,26.1,1.06,0.034,0.62,62,943,596,0,1,-7.5,62,943,0,596,0.308,10.32,55.53,0.91,0.15,784,0.5,203,7.9
+3977,2016,6,15,17,30,24.7,1.05,0.035,0.62,54,859,392,0,1,-8.1,54,859,0,392,0.308,10.71,66.82,0.91,0.15,784,0.5,203,6.9
+3978,2016,6,15,18,30,21.7,1.05,0.038,0.62,40,691,187,0,1,-7.6,40,691,0,187,0.309,13.39,77.74,0.91,0.15,784,0.5,201,5.1
+3979,2016,6,15,19,30,18.3,1.04,0.041,0.62,15,259,24,0,1,-5.6,15,259,0,24,0.309,19.21,87.9,0.9,0.15,784,0.5,198,4
+3980,2016,6,15,20,30,16.4,1,0.043,0.62,0,0,0,0,1,-4.8,0,0,0,0,0.31,22.95,97.49,0.9,0.15,784,0.5,196,3.8
+3981,2016,6,15,21,30,15.1,0.96,0.044,0.62,0,0,0,0,1,-4.6,0,0,0,0,0.309,25.44,105.5,0.9,0.15,785,0.6,196,3.6
+3982,2016,6,15,22,30,13.8,0.95,0.047,0.62,0,0,0,0,1,-3.9,0,0,0,0,0.308,29.16,111.61,0.89,0.15,785,0.6,197,3.3
+3983,2016,6,15,23,30,12.7,0.98,0.048,0.62,0,0,0,0,1,-3.4,0,0,0,0,0.307,32.55,115.26,0.9,0.15,785,0.6,198,3.2
+3984,2016,6,16,0,30,11.8,0.98,0.047,0.62,0,0,0,0,0,-3,0,0,0,0,0.306,35.6,116.01,0.9,0.15,785,0.6,201,3.3
+3985,2016,6,16,1,30,11,0.95,0.045,0.62,0,0,0,0,1,-2.8,0,0,0,0,0.305,37.93,113.77,0.91,0.15,786,0.6,205,3.2
+3986,2016,6,16,2,30,10,0.93,0.045,0.62,0,0,0,0,1,-2.3,0,0,0,0,0.304,42.15,108.81,0.91,0.15,786,0.6,207,2.9
+3987,2016,6,16,3,30,9.1,0.94,0.047,0.62,0,0,0,0,1,-1.7,0,0,0,0,0.304,46.65,101.67,0.91,0.15,787,0.7,206,2.6
+3988,2016,6,16,4,30,9.6,0.94,0.048,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.304,45.52,92.91,0.91,0.15,787,0.7,206,2.7
+3989,2016,6,16,5,30,12.1,0.93,0.048,0.62,31,493,92,0,1,-1.5,31,493,0,92,0.304,38.97,82.91,0.91,0.15,788,0.7,207,3.5
+3990,2016,6,16,6,30,15.7,0.92,0.047,0.62,51,756,281,0,0,-2.2,51,756,0,281,0.304,29.25,72.29,0.91,0.15,788,0.7,210,4.6
+3991,2016,6,16,7,30,19.2,0.9,0.046,0.62,64,870,483,0,0,-2.8,64,870,0,483,0.303,22.38,61.16,0.91,0.15,788,0.8,214,5.7
+3992,2016,6,16,8,30,21.6,0.87,0.044,0.62,72,938,677,0,0,-2.9,72,938,0,677,0.301,19.12,49.79,0.92,0.15,788,0.8,215,6.6
+3993,2016,6,16,9,30,23.2,0.84,0.042,0.62,77,979,843,0,0,-2.9,77,979,0,843,0.299,17.42,38.51,0.92,0.15,788,0.8,214,6.8
+3994,2016,6,16,10,30,24.6,0.81,0.041,0.62,81,1002,966,0,0,-3,81,1002,0,966,0.297,15.84,27.92,0.92,0.15,788,0.8,214,7
+3995,2016,6,16,11,30,25.8,0.79,0.031,0.62,76,1022,1039,0,0,-3.1,76,1022,0,1039,0.296,14.63,19.59,0.91,0.15,788,0.8,215,7
+3996,2016,6,16,12,30,26.7,0.76,0.031,0.62,77,1024,1054,0,0,-3.2,77,1024,0,1054,0.294,13.81,17.44,0.91,0.15,788,0.8,217,6.9
+3997,2016,6,16,13,30,27.2,0.75,0.031,0.62,75,1018,1010,0,0,-3.3,75,1018,0,1010,0.294,13.31,23.28,0.91,0.15,788,0.8,218,6.7
+3998,2016,6,16,14,30,27.2,0.77,0.034,0.62,74,999,912,0,1,-3.4,74,999,0,912,0.294,13.21,33.06,0.91,0.15,788,0.8,219,6.4
+3999,2016,6,16,15,30,26.8,0.78,0.033,0.62,69,971,767,0,1,-3.5,69,971,0,767,0.294,13.47,44.1,0.91,0.15,788,0.8,219,5.9
+4000,2016,6,16,16,30,26,0.8,0.033,0.62,62,924,586,0,1,-3.5,62,924,0,586,0.295,14.09,55.47,0.91,0.15,788,0.8,219,5.3
+4001,2016,6,16,17,30,24.3,0.83,0.033,0.62,53,841,385,0,1,-3.6,53,841,0,385,0.295,15.47,66.76,0.92,0.15,788,0.8,218,4.1
+4002,2016,6,16,18,30,20.6,0.83,0.034,0.62,40,676,184,0,1,-1.6,40,676,0,184,0.295,22.4,77.68,0.92,0.15,789,0.8,216,2.3
+4003,2016,6,16,19,30,16.9,0.82,0.035,0.62,15,251,24,0,1,2.7,15,251,0,24,0.295,38.66,87.84,0.92,0.15,789,0.9,212,1.5
+4004,2016,6,16,20,30,15.3,0.81,0.036,0.62,0,0,0,0,1,2.5,0,0,0,0,0.295,42.02,97.44,0.92,0.15,790,0.9,211,1.4
+4005,2016,6,16,21,30,14.5,0.82,0.037,0.62,0,0,0,0,1,2.3,0,0,0,0,0.294,43.71,105.45,0.92,0.15,790,0.9,215,1.4
+4006,2016,6,16,22,30,14.2,0.83,0.038,0.62,0,0,0,0,1,2.1,0,0,0,0,0.294,44.01,111.57,0.91,0.15,790,1,221,1.2
+4007,2016,6,16,23,30,14.1,0.85,0.038,0.62,0,0,0,0,0,1.6,0,0,0,0,0.293,42.81,115.23,0.91,0.15,790,1,228,0.9
+4008,2016,6,17,0,30,13.8,0.88,0.038,0.62,0,0,0,0,1,1,0,0,0,0,0.293,41.75,115.99,0.91,0.15,790,1,224,0.6
+4009,2016,6,17,1,30,13.1,0.91,0.037,0.62,0,0,0,0,1,0.9,0,0,0,0,0.293,43.18,113.75,0.91,0.15,790,1,191,0.4
+4010,2016,6,17,2,30,12.2,0.94,0.038,0.62,0,0,0,0,1,1,0,0,0,0,0.293,46.23,108.8,0.91,0.15,791,1.1,163,0.5
+4011,2016,6,17,3,30,11.2,0.99,0.038,0.62,0,0,0,0,1,0.9,0,0,0,0,0.293,49.03,101.67,0.91,0.15,791,1.1,162,0.7
+4012,2016,6,17,4,30,11.2,1.03,0.04,0.62,0,0,0,0,1,0.8,0,0,0,0,0.293,48.78,92.92,0.91,0.15,791,1.1,167,0.9
+4013,2016,6,17,5,30,13.3,1.09,0.041,0.62,30,496,91,0,1,2.1,30,496,0,91,0.293,46.7,82.93,0.91,0.15,792,1.1,177,1.5
+4014,2016,6,17,6,30,17,1.16,0.042,0.62,49,748,276,0,0,0.8,49,748,0,276,0.293,33.41,72.32,0.91,0.15,792,1.1,191,2.6
+4015,2016,6,17,7,30,20.8,1.23,0.042,0.62,61,865,478,0,0,0.1,61,865,0,478,0.292,25.16,61.18,0.9,0.15,793,1.1,202,3.5
+4016,2016,6,17,8,30,23.5,1.28,0.042,0.62,69,934,671,0,0,-0.2,69,934,0,671,0.292,20.8,49.81,0.9,0.15,793,1,206,4.3
+4017,2016,6,17,9,30,25.3,1.32,0.043,0.62,75,971,835,0,0,-0.2,75,971,0,835,0.292,18.64,38.54,0.9,0.15,793,1,206,4.9
+4018,2016,6,17,10,30,26.7,1.34,0.043,0.62,79,994,957,0,1,-0.3,79,994,0,957,0.291,17.15,27.94,0.9,0.15,792,1,207,5.2
+4019,2016,6,17,11,30,27.8,1.35,0.041,0.62,80,1011,1033,0,1,-0.4,80,1011,0,1033,0.291,15.92,19.59,0.9,0.15,792,0.9,209,5.5
+4020,2016,6,17,12,30,28.5,1.36,0.04,0.62,80,1014,1048,0,0,-0.7,80,1014,0,1048,0.291,14.96,17.41,0.9,0.15,792,0.9,211,5.6
+4021,2016,6,17,13,30,28.9,1.37,0.039,0.62,78,1009,1005,0,0,-1.2,78,1009,0,1005,0.29,14.09,23.23,0.89,0.15,791,0.9,213,5.8
+4022,2016,6,17,14,30,29,1.39,0.036,0.62,73,1000,912,0,0,-1.9,73,1000,0,912,0.289,13.32,33.01,0.89,0.15,791,0.8,216,5.8
+4023,2016,6,17,15,30,28.6,1.37,0.035,0.62,68,977,771,0,0,-2.6,68,977,0,771,0.288,12.89,44.05,0.89,0.15,791,0.7,219,5.7
+4024,2016,6,17,16,30,27.6,1.35,0.034,0.62,62,931,590,0,0,-3.5,62,931,0,590,0.287,12.84,55.42,0.89,0.15,791,0.7,221,5.4
+4025,2016,6,17,17,30,25.8,1.36,0.032,0.62,52,860,392,0,1,-4.4,52,860,0,392,0.285,13.34,66.7,0.89,0.15,791,0.6,222,4.2
+4026,2016,6,17,18,30,21.8,1.38,0.031,0.62,38,705,189,0,1,-1.9,38,705,0,189,0.284,20.36,77.62,0.89,0.15,791,0.6,221,2.3
+4027,2016,6,17,19,30,17.9,1.38,0.031,0.62,14,306,26,0,1,2.7,14,306,0,26,0.282,36.33,87.79,0.89,0.15,791,0.6,216,1.4
+4028,2016,6,17,20,30,16.3,1.4,0.032,0.62,0,0,0,0,1,2.3,0,0,0,0,0.282,38.95,97.39,0.89,0.15,792,0.5,209,1.4
+4029,2016,6,17,21,30,15.2,1.42,0.033,0.62,0,0,0,0,1,1.6,0,0,0,0,0.281,39.75,105.41,0.89,0.15,792,0.5,203,1.5
+4030,2016,6,17,22,30,14.2,1.43,0.035,0.62,0,0,0,0,1,0.9,0,0,0,0,0.279,40.27,111.53,0.89,0.15,792,0.5,200,1.5
+4031,2016,6,17,23,30,13.3,1.45,0.036,0.62,0,0,0,0,1,0.2,0,0,0,0,0.279,40.7,115.2,0.89,0.15,793,0.6,199,1.6
+4032,2016,6,18,0,30,12.5,1.46,0.038,0.62,0,0,0,0,1,-0.4,0,0,0,0,0.278,41.09,115.97,0.89,0.15,793,0.6,202,1.6
+4033,2016,6,18,1,30,11.7,1.47,0.039,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.278,41.96,113.74,0.9,0.15,793,0.6,208,1.5
+4034,2016,6,18,2,30,10.9,1.49,0.038,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.278,44.01,108.81,0.9,0.15,793,0.7,214,1.4
+4035,2016,6,18,3,30,10.2,1.5,0.038,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.278,46.29,101.69,0.9,0.15,794,0.7,216,1.2
+4036,2016,6,18,4,30,10.7,1.51,0.038,0.62,0,0,0,0,1,-1,0,0,0,0,0.278,44.26,92.94,0.9,0.15,794,0.6,210,1.1
+4037,2016,6,18,5,30,13.2,1.52,0.038,0.62,29,539,95,0,1,0.3,29,539,0,95,0.277,41.1,82.96,0.9,0.15,795,0.6,198,1.5
+4038,2016,6,18,6,30,16.9,1.54,0.039,0.62,48,783,286,0,0,-1.2,48,783,0,286,0.276,29.19,72.34,0.9,0.15,795,0.6,194,2
+4039,2016,6,18,7,30,20.9,1.54,0.04,0.62,60,895,491,0,0,-1.8,60,895,0,491,0.276,21.76,61.21,0.9,0.15,795,0.6,200,2.5
+4040,2016,6,18,8,30,24.2,1.55,0.041,0.62,69,957,685,0,0,-2.6,69,957,0,685,0.274,16.73,49.84,0.9,0.15,795,0.6,204,3.2
+4041,2016,6,18,9,30,26.2,1.55,0.041,0.62,74,994,851,0,0,-2.9,74,994,0,851,0.273,14.49,38.57,0.9,0.15,795,0.6,206,3.9
+4042,2016,6,18,10,30,27.8,1.55,0.04,0.62,77,1011,970,0,0,-3.3,77,1011,0,970,0.271,12.9,27.96,0.89,0.15,795,0.7,211,4.3
+4043,2016,6,18,11,30,29.2,1.7,0.033,0.62,75,1034,1049,0,0,-3.6,75,1034,0,1049,0.27,11.58,19.59,0.89,0.15,795,0.6,215,4.5
+4044,2016,6,18,12,30,30.2,1.67,0.032,0.62,75,1037,1064,0,0,-4,75,1037,0,1064,0.269,10.6,17.38,0.89,0.15,794,0.6,217,4.6
+4045,2016,6,18,13,30,30.9,1.63,0.031,0.62,73,1031,1021,0,1,-4.4,73,1031,0,1021,0.268,9.91,23.19,0.89,0.15,794,0.6,217,4.6
+4046,2016,6,18,14,30,31.2,1.55,0.033,0.62,72,1014,922,0,1,-4.7,72,1014,0,922,0.269,9.48,32.96,0.89,0.15,793,0.6,217,4.7
+4047,2016,6,18,15,30,31.1,1.56,0.032,0.62,67,987,777,0,1,-5.2,67,987,0,777,0.271,9.21,44,0.89,0.15,792,0.6,217,4.9
+4048,2016,6,18,16,30,30.3,1.56,0.032,0.62,60,941,595,0,1,-5.8,60,941,0,595,0.273,9.2,55.37,0.89,0.15,792,0.6,218,4.8
+4049,2016,6,18,17,30,28.2,1.55,0.033,0.62,52,860,393,0,1,-5.9,52,860,0,393,0.275,10.33,66.65,0.89,0.15,792,0.6,218,3.7
+4050,2016,6,18,18,30,23.8,1.54,0.033,0.62,39,703,190,7,7,-0.6,104,215,7,150,0.277,19.9,77.58,0.89,0.15,793,0.6,216,2.2
+4051,2016,6,18,19,30,20.1,1.5,0.036,0.62,15,299,26,7,8,2.7,20,8,7,20,0.278,31.63,87.75,0.9,0.15,793,0.6,212,1.7
+4052,2016,6,18,20,30,19,1.48,0.038,0.62,0,0,0,0,8,2.2,0,0,0,0,0.28,32.61,97.35,0.9,0.15,793,0.6,210,1.9
+4053,2016,6,18,21,30,18.2,1.5,0.04,0.62,0,0,0,0,8,1.4,0,0,0,0,0.28,32.4,105.37,0.9,0.15,793,0.6,214,2.2
+4054,2016,6,18,22,30,17,1.53,0.039,0.62,0,0,0,0,1,0.3,0,0,0,0,0.281,32.38,111.5,0.9,0.15,793,0.7,220,2.4
+4055,2016,6,18,23,30,15.7,1.55,0.038,0.62,0,0,0,0,1,-0.4,0,0,0,0,0.281,33.45,115.17,0.9,0.15,793,0.7,226,2.4
+4056,2016,6,19,0,30,14.7,1.57,0.038,0.62,0,0,0,0,1,-0.7,0,0,0,0,0.282,34.67,115.96,0.9,0.15,793,0.8,231,2.3
+4057,2016,6,19,1,30,13.8,1.61,0.04,0.62,0,0,0,0,3,-0.7,0,0,0,0,0.282,36.98,113.74,0.91,0.15,793,0.9,233,2.1
+4058,2016,6,19,2,30,13,1.64,0.042,0.62,0,0,0,0,1,-0.1,0,0,0,0,0.282,40.61,108.82,0.91,0.15,793,1.1,229,1.8
+4059,2016,6,19,3,30,12.5,1.65,0.043,0.62,0,0,0,0,1,0.5,0,0,0,0,0.283,43.63,101.7,0.91,0.15,794,1.1,223,1.6
+4060,2016,6,19,4,30,13,1.66,0.044,0.62,0,0,0,0,7,0.6,0,0,0,0,0.283,42.72,92.97,0.91,0.15,794,1.2,223,1.4
+4061,2016,6,19,5,30,15.9,1.68,0.046,0.62,29,496,90,7,8,2.1,58,17,7,60,0.283,39.5,82.98,0.9,0.15,794,1.1,232,1.7
+4062,2016,6,19,6,30,19.9,1.69,0.046,0.62,49,749,276,7,8,0.4,128,25,7,136,0.284,27.04,72.38,0.9,0.15,795,1,252,2.3
+4063,2016,6,19,7,30,23.5,1.69,0.046,0.62,61,871,480,0,8,-1.2,233,264,0,360,0.284,19.35,61.24,0.89,0.15,795,0.9,265,2.9
+4064,2016,6,19,8,30,26.1,1.69,0.045,0.62,69,941,676,0,8,-3.1,216,636,0,625,0.284,14.38,49.88,0.89,0.15,795,0.8,258,3.3
+4065,2016,6,19,9,30,27.9,1.68,0.043,0.62,74,981,841,0,1,-4.4,74,981,0,841,0.284,11.78,38.6,0.89,0.15,795,0.8,246,3.4
+4066,2016,6,19,10,30,29.3,1.68,0.042,0.62,78,1004,964,0,0,-5,78,1004,0,964,0.284,10.35,27.99,0.89,0.15,795,0.8,237,3.7
+4067,2016,6,19,11,30,30.4,1.71,0.037,0.62,77,1019,1037,0,1,-5.3,77,1019,0,1037,0.285,9.5,19.61,0.89,0.15,795,0.8,232,4
+4068,2016,6,19,12,30,31.2,1.68,0.037,0.62,77,1021,1052,0,0,-5.3,77,1021,0,1052,0.285,9.1,17.36,0.89,0.15,795,0.8,231,4.2
+4069,2016,6,19,13,30,31.6,1.64,0.036,0.62,76,1021,1015,0,0,-5.1,76,1021,0,1015,0.285,9.05,23.15,0.89,0.15,794,0.7,230,4.1
+4070,2016,6,19,14,30,31.6,1.6,0.034,0.62,72,1007,917,0,1,-4.8,72,1007,0,917,0.285,9.22,32.91,0.89,0.15,794,0.7,230,3.9
+4071,2016,6,19,15,30,31.3,1.56,0.032,0.62,67,981,773,0,0,-4.6,67,981,0,773,0.285,9.52,43.95,0.89,0.15,794,0.7,230,3.6
+4072,2016,6,19,16,30,30.4,1.53,0.03,0.62,59,937,592,0,1,-4.8,59,937,0,592,0.284,9.88,55.32,0.89,0.15,794,0.7,231,3.2
+4073,2016,6,19,17,30,28.5,1.5,0.029,0.62,51,859,391,0,1,-5,51,859,0,391,0.284,10.9,66.61,0.9,0.15,794,0.7,231,2.2
+4074,2016,6,19,18,30,25.3,1.46,0.029,0.62,38,704,190,0,1,3.6,38,704,0,190,0.283,24.58,77.53,0.9,0.15,794,0.7,233,1.1
+4075,2016,6,19,19,30,23.3,1.43,0.029,0.62,14,313,27,0,1,5.3,14,313,0,27,0.283,31.07,87.71,0.9,0.15,795,0.7,242,0.8
+4076,2016,6,19,20,30,22.4,1.42,0.029,0.62,0,0,0,0,1,2.4,0,0,0,0,0.283,26.89,97.31,0.9,0.15,795,0.7,276,0.7
+4077,2016,6,19,21,30,20.8,1.44,0.027,0.62,0,0,0,0,1,1.8,0,0,0,0,0.283,28.36,105.33,0.89,0.15,796,0.8,324,0.9
+4078,2016,6,19,22,30,18.7,1.46,0.026,0.62,0,0,0,0,1,1.7,0,0,0,0,0.282,32.11,111.47,0.89,0.15,796,0.8,175,1.2
+4079,2016,6,19,23,30,16.6,1.5,0.026,0.62,0,0,0,0,1,2.3,0,0,0,0,0.282,38.19,115.16,0.9,0.15,796,0.9,9,1.5
+4080,2016,6,20,0,30,15.2,1.54,0.027,0.62,0,0,0,0,1,2.4,0,0,0,0,0.281,42.11,115.95,0.9,0.15,796,1,14,1.6
+4081,2016,6,20,1,30,14,1.57,0.028,0.62,0,0,0,0,1,2.6,0,0,0,0,0.281,46.22,113.75,0.9,0.15,796,1.1,17,1.8
+4082,2016,6,20,2,30,13.1,1.58,0.029,0.62,0,0,0,0,1,2.8,0,0,0,0,0.281,49.72,108.83,0.91,0.15,796,1.2,20,1.8
+4083,2016,6,20,3,30,12.2,1.59,0.03,0.62,0,0,0,0,0,3,0,0,0,0,0.281,53.44,101.73,0.91,0.15,796,1.2,24,1.7
+4084,2016,6,20,4,30,12.5,1.6,0.031,0.62,0,0,0,0,0,3.3,0,0,0,0,0.281,53.3,93,0.91,0.15,796,1.3,27,1.9
+4085,2016,6,20,5,30,14.8,1.62,0.032,0.62,28,517,90,0,1,4.2,28,517,0,90,0.28,48.99,83.02,0.91,0.15,796,1.3,28,2.4
+4086,2016,6,20,6,30,18.3,1.65,0.032,0.62,45,760,275,0,1,4.1,45,760,0,275,0.279,39.02,72.41,0.91,0.15,796,1.3,32,2.7
+4087,2016,6,20,7,30,22.5,1.68,0.033,0.62,56,867,473,0,0,4.1,56,867,0,473,0.278,30.17,61.28,0.91,0.15,797,1.4,42,2.3
+4088,2016,6,20,8,30,26.2,1.71,0.033,0.62,64,930,662,0,0,2.2,64,930,0,662,0.277,21.08,49.92,0.91,0.15,797,1.4,54,1.5
+4089,2016,6,20,9,30,29,1.73,0.033,0.62,69,967,825,0,0,0.7,69,967,0,825,0.275,16.11,38.64,0.91,0.15,796,1.4,135,0.8
+4090,2016,6,20,10,30,31.1,1.75,0.033,0.62,73,989,946,0,0,-0.1,73,989,0,946,0.274,13.45,28.02,0.91,0.15,796,1.4,219,1.1
+4091,2016,6,20,11,30,32.4,1.9,0.027,0.62,70,1003,1015,0,1,0.3,70,1003,0,1015,0.273,12.89,19.62,0.91,0.15,796,1.5,231,1.8
+4092,2016,6,20,12,30,33.2,1.9,0.027,0.62,71,1005,1030,0,1,0.9,71,1005,0,1030,0.271,12.85,17.35,0.91,0.15,795,1.5,236,2.3
+4093,2016,6,20,13,30,33.6,1.9,0.026,0.62,69,1000,988,0,1,1.4,69,1000,0,988,0.27,13.01,23.12,0.91,0.15,794,1.5,241,2.7
+4094,2016,6,20,14,30,33.7,1.78,0.032,0.62,70,982,895,0,0,1.7,70,982,0,895,0.27,13.21,32.87,0.91,0.15,794,1.4,248,2.8
+4095,2016,6,20,15,30,33.3,1.78,0.031,0.62,66,955,753,0,1,1.9,66,955,0,753,0.271,13.67,43.91,0.91,0.15,793,1.4,256,2.8
+4096,2016,6,20,16,30,32.4,1.77,0.029,0.62,59,913,579,0,1,2,59,913,0,579,0.272,14.49,55.28,0.91,0.15,793,1.3,264,2.7
+4097,2016,6,20,17,30,30.5,1.76,0.027,0.62,49,840,383,0,1,1.9,49,840,0,383,0.273,16.02,66.57,0.9,0.15,793,1.2,276,2
+4098,2016,6,20,18,30,27.1,1.75,0.026,0.62,37,693,187,0,1,6.5,37,693,0,187,0.273,27.04,77.49,0.9,0.15,793,1.1,294,1.1
+4099,2016,6,20,19,30,24.3,1.75,0.025,0.62,14,318,27,0,1,9,14,318,0,27,0.274,37.68,87.68,0.9,0.15,793,1.1,314,0.9
+4100,2016,6,20,20,30,23.4,1.75,0.026,0.62,0,0,0,0,1,6.7,0,0,0,0,0.275,34.13,97.27,0.89,0.15,793,1.1,332,1
+4101,2016,6,20,21,30,22.6,1.77,0.029,0.62,0,0,0,0,0,6.3,0,0,0,0,0.275,34.9,105.31,0.89,0.15,793,1.1,351,0.9
+4102,2016,6,20,22,30,21.5,1.81,0.033,0.62,0,0,0,0,0,5.9,0,0,0,0,0.276,36.29,111.45,0.89,0.15,793,1.1,187,0.7
+4103,2016,6,20,23,30,20.4,1.87,0.04,0.62,0,0,0,0,0,5.7,0,0,0,0,0.276,38.31,115.15,0.89,0.15,793,1.1,24,0.6
+4104,2016,6,21,0,30,19.4,1.96,0.055,0.62,0,0,0,0,0,5.8,0,0,0,0,0.277,40.9,115.95,0.89,0.15,793,1.2,49,0.5
+4105,2016,6,21,1,30,18.6,2.04,0.08,0.62,0,0,0,0,1,5.8,0,0,0,0,0.277,43.09,113.76,0.9,0.15,793,1.2,85,0.5
+4106,2016,6,21,2,30,17.9,2.07,0.11,0.62,0,0,0,0,0,5.8,0,0,0,0,0.277,44.94,108.85,0.9,0.15,792,1.3,121,0.6
+4107,2016,6,21,3,30,16.8,2.07,0.133,0.62,0,0,0,0,1,5.8,0,0,0,0,0.277,48.36,101.76,0.91,0.15,792,1.4,146,0.9
+4108,2016,6,21,4,30,16.4,2.06,0.147,0.62,0,0,0,0,1,6.3,0,0,0,0,0.277,51.2,93.03,0.91,0.15,793,1.4,159,1.2
+4109,2016,6,21,5,30,18,2.05,0.159,0.62,38,327,78,0,1,7.9,38,327,0,78,0.277,51.52,83.06,0.91,0.15,793,1.5,169,1.8
+4110,2016,6,21,6,30,21.3,2.05,0.165,0.62,75,585,252,0,1,7.9,75,585,0,252,0.278,42.03,72.45,0.91,0.15,793,1.5,182,2.6
+4111,2016,6,21,7,30,25.1,2.05,0.169,0.62,99,720,445,0,1,7.9,99,720,0,445,0.278,33.47,61.32,0.91,0.15,793,1.6,196,3.5
+4112,2016,6,21,8,30,28.5,2.06,0.169,0.62,115,806,633,0,1,6.9,115,806,0,633,0.279,25.62,49.96,0.9,0.15,793,1.5,209,4.2
+4113,2016,6,21,9,30,30.7,2.07,0.16,0.62,121,864,796,0,1,5.6,121,864,0,796,0.28,20.67,38.68,0.89,0.15,792,1.5,220,4.3
+4114,2016,6,21,10,30,32.4,2.07,0.138,0.62,120,915,927,0,1,4.6,120,915,0,927,0.281,17.49,28.06,0.89,0.15,792,1.3,227,4.3
+4115,2016,6,21,11,30,33.7,1.99,0.082,0.62,99,971,1013,0,1,3.7,99,971,0,1013,0.281,15.18,19.65,0.89,0.15,791,1.2,231,4.5
+4116,2016,6,21,12,30,34.4,1.95,0.067,0.62,92,985,1032,0,1,2.6,92,985,0,1032,0.281,13.53,17.34,0.9,0.15,790,1.2,235,4.6
+4117,2016,6,21,13,30,34.8,1.9,0.057,0.62,87,985,993,0,1,1.2,87,985,0,993,0.282,12.03,23.09,0.91,0.15,790,1.2,239,4.7
+4118,2016,6,21,14,30,34.8,1.89,0.052,0.62,81,972,897,0,1,0.2,81,972,0,897,0.282,11.14,32.84,0.91,0.15,789,1.2,244,4.5
+4119,2016,6,21,15,30,34.4,1.84,0.054,0.62,77,936,752,0,1,-0.3,77,936,0,752,0.283,10.97,43.87,0.92,0.15,789,1.3,254,4.3
+4120,2016,6,21,16,30,33.4,1.77,0.06,0.62,72,879,573,0,1,-0.6,72,879,0,573,0.283,11.36,55.24,0.92,0.15,788,1.3,274,4.2
+4121,2016,6,21,17,30,31.3,1.69,0.069,0.62,64,776,373,0,1,-0.2,64,776,0,373,0.283,13.15,66.53,0.93,0.15,788,1.4,301,4
+4122,2016,6,21,18,30,27.4,1.64,0.074,0.62,47,596,177,7,3,2.6,110,158,7,144,0.284,20.19,77.46,0.92,0.15,789,1.4,325,3.4
+4123,2016,6,21,19,30,23.4,1.65,0.07,0.62,15,208,24,0,1,4.8,15,208,0,24,0.285,29.95,87.65,0.92,0.15,790,1.5,340,2.9
+4124,2016,6,21,20,30,20.7,1.7,0.071,0.62,0,0,0,0,0,5.2,0,0,0,0,0.286,36.17,97.25,0.92,0.15,791,1.4,173,2.5
+4125,2016,6,21,21,30,18.8,1.73,0.08,0.62,0,0,0,0,1,5.5,0,0,0,0,0.287,41.63,105.28,0.92,0.15,791,1.4,9,2.1
+4126,2016,6,21,22,30,17.3,1.73,0.095,0.62,0,0,0,0,3,5.9,0,0,0,0,0.287,46.96,111.44,0.93,0.15,792,1.5,25,1.7
+4127,2016,6,21,23,30,16.4,1.7,0.118,0.62,0,0,0,0,8,6.1,0,0,0,0,0.287,50.61,115.15,0.94,0.15,792,1.5,41,1.6
+4128,2016,6,22,0,30,15.9,1.61,0.157,0.62,0,0,0,0,4,6.2,0,0,0,0,0.286,52.58,115.96,0.95,0.15,792,1.6,50,1.8
+4129,2016,6,22,1,30,15.7,1.55,0.182,0.62,0,0,0,0,1,6.2,0,0,0,0,0.286,53.04,113.78,0.96,0.15,792,1.6,50,2.1
+4130,2016,6,22,2,30,15.3,1.53,0.177,0.62,0,0,0,0,1,6.1,0,0,0,0,0.286,54.03,108.88,0.96,0.15,792,1.7,47,2.1
+4131,2016,6,22,3,30,14.7,1.53,0.154,0.62,0,0,0,0,1,6.2,0,0,0,0,0.286,56.75,101.79,0.95,0.15,792,1.7,47,1.9
+4132,2016,6,22,4,30,14.7,1.56,0.129,0.62,0,0,0,0,1,6.3,0,0,0,0,0.286,57.02,93.07,0.94,0.15,792,1.6,50,1.9
+4133,2016,6,22,5,30,16.4,1.61,0.101,0.62,36,379,81,0,1,6.3,36,379,0,81,0.287,51.31,83.1,0.93,0.15,792,1.5,59,2.2
+4134,2016,6,22,6,30,19.7,1.64,0.09,0.62,61,664,261,0,1,5.6,61,664,0,261,0.287,39.68,72.5,0.93,0.15,792,1.5,74,1.9
+4135,2016,6,22,7,30,23.5,1.66,0.091,0.62,78,795,459,0,1,3.4,78,795,0,459,0.287,27,61.37,0.93,0.15,792,1.5,159,1
+4136,2016,6,22,8,30,26.6,1.64,0.098,0.62,92,862,646,0,1,1.2,92,862,0,646,0.286,19.12,50,0.93,0.15,792,1.5,239,1.1
+4137,2016,6,22,9,30,28.7,1.61,0.108,0.62,106,897,805,0,1,1.1,106,897,0,805,0.284,16.81,38.72,0.94,0.15,792,1.6,240,1.8
+4138,2016,6,22,10,30,30.2,1.57,0.123,0.62,119,910,922,0,1,1.6,119,910,0,922,0.283,15.99,28.1,0.95,0.15,791,1.7,233,2.3
+4139,2016,6,22,11,30,30.9,1.49,0.082,0.62,103,954,1001,7,3,2,392,554,7,914,0.282,15.81,19.68,0.95,0.15,791,1.7,229,2.8
+4140,2016,6,22,12,30,31.5,1.5,0.083,0.62,103,956,1016,7,3,2.3,370,601,7,943,0.282,15.58,17.34,0.94,0.15,790,1.7,225,3.1
+4141,2016,6,22,13,30,32.1,1.51,0.073,0.62,96,957,976,0,1,2.6,96,957,0,976,0.282,15.45,23.07,0.94,0.15,789,1.7,223,3.3
+4142,2016,6,22,14,30,32.1,1.56,0.102,0.62,106,913,873,0,8,3,296,555,0,762,0.282,15.81,32.81,0.94,0.15,789,1.8,224,3.3
+4143,2016,6,22,15,30,31.2,1.55,0.115,0.62,106,867,731,0,4,3.2,126,0,0,126,0.283,16.92,43.84,0.95,0.15,789,1.8,232,3.1
+4144,2016,6,22,16,30,29.7,1.52,0.133,0.62,102,787,551,0,8,3.4,23,0,0,23,0.283,18.73,55.2,0.96,0.15,789,1.9,251,2.8
+4145,2016,6,22,17,30,27.4,1.5,0.14,0.62,87,673,355,0,7,4.3,156,455,0,338,0.284,22.78,66.5,0.96,0.15,789,2,285,2.3
+4146,2016,6,22,18,30,24.8,1.49,0.139,0.62,61,482,165,7,4,7.6,105,8,7,107,0.285,33.31,77.43,0.96,0.15,789,2.1,323,1.8
+4147,2016,6,22,19,30,22.7,1.47,0.142,0.62,17,109,22,7,4,9.4,12,0,7,12,0.287,42.72,87.62,0.96,0.15,790,2.2,189,1.6
+4148,2016,6,22,20,30,21,1.47,0.145,0.62,0,0,0,0,3,10,0,0,0,0,0.287,49.25,97.22,0.96,0.15,791,2.2,55,1.9
+4149,2016,6,22,21,30,19.5,1.52,0.122,0.62,0,0,0,0,7,10.2,0,0,0,0,0.287,54.86,105.27,0.95,0.15,791,2.1,80,2.3
+4150,2016,6,22,22,30,18.1,1.57,0.093,0.62,0,0,0,0,8,10.1,0,0,0,0,0.287,59.47,111.43,0.95,0.15,790,2.1,96,1.9
+4151,2016,6,22,23,30,17.1,1.56,0.094,0.62,0,0,0,0,8,10.4,0,0,0,0,0.287,64.55,115.15,0.95,0.15,790,2.1,125,1.3
+4152,2016,6,23,0,30,16.6,1.55,0.103,0.62,0,0,0,0,3,10.6,0,0,0,0,0.288,67.64,115.98,0.96,0.15,790,2.2,162,1.3
+4153,2016,6,23,1,30,16.3,1.53,0.118,0.62,0,0,0,0,1,10.6,0,0,0,0,0.289,69.14,113.81,0.96,0.15,791,2.2,189,1.4
+4154,2016,6,23,2,30,16,1.49,0.145,0.62,0,0,0,0,1,10.7,0,0,0,0,0.289,70.81,108.91,0.96,0.15,791,2.2,200,1.1
+4155,2016,6,23,3,30,15.4,1.49,0.16,0.62,0,0,0,0,1,10.6,0,0,0,0,0.289,73.19,101.83,0.96,0.15,791,2.2,122,0.5
+4156,2016,6,23,4,30,15.4,1.54,0.142,0.62,0,0,0,0,4,10.5,0,0,0,0,0.289,72.63,93.11,0.95,0.15,791,2.1,53,0.6
+4157,2016,6,23,5,30,16.8,1.6,0.11,0.62,36,352,78,7,3,10.9,51,2,7,52,0.289,68.06,83.14,0.94,0.15,791,2,68,1.9
+4158,2016,6,23,6,30,19.4,1.62,0.093,0.62,62,643,254,7,3,10.7,160,36,7,171,0.288,56.99,72.54,0.94,0.15,792,2.1,96,2.6
+4159,2016,6,23,7,30,22.1,1.62,0.095,0.62,80,773,449,0,3,10.2,266,140,0,333,0.288,46.96,61.42,0.95,0.15,792,2.1,141,3
+4160,2016,6,23,8,30,23.9,1.6,0.106,0.62,96,835,632,0,4,10.1,363,159,0,465,0.286,41.66,50.05,0.95,0.15,793,2.2,171,3.8
+4161,2016,6,23,9,30,24.5,1.56,0.115,0.62,109,875,791,0,3,10,395,351,0,669,0.285,40.06,38.77,0.95,0.15,792,2.2,185,4.4
+4162,2016,6,23,10,30,24.7,1.56,0.112,0.62,113,906,912,0,1,10.1,113,906,0,912,0.285,39.74,28.15,0.95,0.15,792,2.2,191,5
+4163,2016,6,23,11,30,25.1,1.51,0.093,0.62,108,933,986,0,1,10.2,108,933,0,986,0.285,39.13,19.72,0.95,0.15,792,2.2,188,5.4
+4164,2016,6,23,12,30,25.5,1.51,0.091,0.62,107,940,1004,0,1,10.2,107,940,0,1004,0.284,38.09,17.35,0.94,0.15,792,2.1,181,5.4
+4165,2016,6,23,13,30,26.2,1.52,0.084,0.62,101,938,964,0,1,9.9,101,938,0,964,0.284,35.75,23.05,0.94,0.15,791,2.1,176,5.1
+4166,2016,6,23,14,30,27.1,1.55,0.074,0.62,92,927,872,7,3,9.4,318,601,7,823,0.284,32.79,32.78,0.93,0.15,791,2.1,176,4.4
+4167,2016,6,23,15,30,27.7,1.57,0.072,0.62,86,896,733,0,8,8.7,231,9,0,238,0.284,30.21,43.8,0.94,0.15,790,2.1,182,3.4
+4168,2016,6,23,16,30,27.5,1.53,0.083,0.62,82,828,555,0,8,8,20,0,0,20,0.283,29.3,55.17,0.95,0.15,790,2.2,209,2.1
+4169,2016,6,23,17,30,26.4,1.46,0.103,0.62,76,707,358,0,8,7.7,157,22,0,166,0.282,30.65,66.47,0.95,0.16,789,2.3,271,1.2
+4170,2016,6,23,18,30,24,1.44,0.108,0.62,55,515,167,7,3,9.2,116,53,7,128,0.282,39.03,77.4,0.95,0.16,789,2.4,173,0.9
+4171,2016,6,23,19,30,21.4,1.45,0.098,0.62,17,150,23,7,4,12.2,8,0,7,8,0.283,55.66,87.6,0.95,0.16,790,2.3,55,1
+4172,2016,6,23,20,30,19.8,1.43,0.091,0.62,0,0,0,0,8,11.2,0,0,0,0,0.282,57.67,97.21,0.94,0.16,790,2.3,92,1.2
+4173,2016,6,23,21,30,18.9,1.42,0.088,0.62,0,0,0,0,3,11,0,0,0,0,0.281,60.13,105.26,0.94,0.16,790,2.3,120,1.4
+4174,2016,6,23,22,30,18.4,1.4,0.086,0.62,0,0,0,0,8,10.8,0,0,0,0,0.281,61.29,111.43,0.94,0.16,790,2.3,140,1.7
+4175,2016,6,23,23,30,18,1.41,0.084,0.62,0,0,0,0,7,10.7,0,0,0,0,0.28,62.53,115.16,0.94,0.16,790,2.2,147,2
+4176,2016,6,24,0,30,17.4,1.43,0.077,0.62,0,0,0,0,1,10.8,0,0,0,0,0.28,65.23,116,0.94,0.16,790,2.1,144,2
+4177,2016,6,24,1,30,16.3,1.45,0.072,0.62,0,0,0,0,1,11,0,0,0,0,0.281,71.03,113.84,0.94,0.16,790,2,140,1.7
+4178,2016,6,24,2,30,15.2,1.46,0.07,0.62,0,0,0,0,1,11.1,0,0,0,0,0.281,76.74,108.95,0.94,0.16,790,2,136,1.5
+4179,2016,6,24,3,30,14.5,1.45,0.07,0.62,0,0,0,0,1,11.1,0,0,0,0,0.281,80.24,101.87,0.94,0.16,789,1.9,133,1.4
+4180,2016,6,24,4,30,14.8,1.45,0.07,0.62,0,0,0,0,1,11,0,0,0,0,0.281,78.01,93.16,0.94,0.16,790,1.9,137,1.6
+4181,2016,6,24,5,30,16.6,1.47,0.071,0.62,33,413,82,0,1,10.9,33,413,0,82,0.281,69.22,83.19,0.94,0.16,790,1.8,150,2
+4182,2016,6,24,6,30,20.2,1.48,0.071,0.62,57,679,260,7,4,10.6,164,57,7,181,0.282,54.15,72.6,0.94,0.16,790,1.8,174,2.6
+4183,2016,6,24,7,30,24.2,1.5,0.072,0.62,71,808,458,0,1,9.8,71,808,0,458,0.282,40.01,61.47,0.93,0.16,790,1.7,198,3.5
+4184,2016,6,24,8,30,27.2,1.51,0.075,0.62,84,880,648,0,1,8.1,84,880,0,648,0.282,29.85,50.1,0.94,0.16,789,1.6,211,4.4
+4185,2016,6,24,9,30,29.2,1.5,0.081,0.62,93,918,809,0,1,6.3,93,918,0,809,0.282,23.59,38.82,0.93,0.16,789,1.6,217,5
+4186,2016,6,24,10,30,30.8,1.5,0.081,0.62,99,947,934,0,1,4.5,99,947,0,934,0.281,18.91,28.2,0.93,0.16,788,1.5,220,5.5
+4187,2016,6,24,11,30,31.9,1.53,0.07,0.62,95,969,1007,0,1,3.1,95,969,0,1007,0.281,16.13,19.76,0.92,0.16,788,1.5,222,6
+4188,2016,6,24,12,30,32.6,1.51,0.07,0.62,96,974,1026,0,1,2.2,96,974,0,1026,0.281,14.58,17.37,0.92,0.16,787,1.4,225,6.5
+4189,2016,6,24,13,30,32.8,1.47,0.075,0.62,97,964,984,0,8,1.3,257,651,0,856,0.281,13.51,23.04,0.92,0.16,786,1.4,228,6.9
+4190,2016,6,24,14,30,32.7,1.46,0.077,0.62,95,947,891,0,8,0.1,372,37,0,403,0.283,12.49,32.76,0.93,0.16,786,1.3,229,7.2
+4191,2016,6,24,15,30,32,1.42,0.085,0.62,93,903,745,0,3,-0.7,330,473,0,671,0.284,12.25,43.78,0.93,0.16,786,1.4,228,7.1
+4192,2016,6,24,16,30,30.7,1.38,0.091,0.62,86,838,565,0,1,-0.1,86,838,0,565,0.286,13.8,55.15,0.94,0.16,786,1.5,225,6.6
+4193,2016,6,24,17,30,28.6,1.35,0.098,0.62,75,730,367,0,4,1.7,210,219,0,297,0.288,17.67,66.44,0.95,0.16,786,1.6,223,5.1
+4194,2016,6,24,18,30,25.6,1.32,0.097,0.62,53,545,172,7,8,4.4,108,43,7,117,0.29,25.43,77.38,0.94,0.16,787,1.7,226,2.9
+4195,2016,6,24,19,30,22.4,1.29,0.084,0.62,17,170,24,7,8,7.2,18,1,7,18,0.292,37.48,87.58,0.94,0.16,788,1.6,258,1.4
+4196,2016,6,24,20,30,20.1,1.27,0.08,0.62,0,0,0,0,8,7.1,0,0,0,0,0.294,42.93,97.2,0.93,0.16,788,1.5,314,1.2
+4197,2016,6,24,21,30,18.2,1.26,0.068,0.62,0,0,0,0,4,6,0,0,0,0,0.294,44.94,105.26,0.93,0.16,789,1.4,350,1.7
+4198,2016,6,24,22,30,16.7,1.26,0.062,0.62,0,0,0,0,8,5,0,0,0,0,0.295,46.07,111.44,0.93,0.16,790,1.4,184,2.2
+4199,2016,6,24,23,30,15.2,1.27,0.06,0.62,0,0,0,0,8,4.5,0,0,0,0,0.296,48.83,115.18,0.93,0.16,790,1.3,11,2.3
+4200,2016,6,25,0,30,13.8,1.26,0.058,0.62,0,0,0,0,8,4.4,0,0,0,0,0.298,53.09,116.03,0.92,0.16,790,1.3,12,2.1
+4201,2016,6,25,1,30,12.7,1.23,0.053,0.62,0,0,0,0,1,4.7,0,0,0,0,0.3,58.23,113.88,0.92,0.16,790,1.3,9,2
+4202,2016,6,25,2,30,11.7,1.21,0.05,0.62,0,0,0,0,1,5.4,0,0,0,0,0.301,65.33,109,0.91,0.16,791,1.2,182,1.9
+4203,2016,6,25,3,30,10.8,1.19,0.049,0.62,0,0,0,0,1,5.8,0,0,0,0,0.302,71.19,101.93,0.91,0.16,792,1.1,357,1.9
+4204,2016,6,25,4,30,10.7,1.18,0.049,0.62,0,0,0,0,1,5.8,0,0,0,0,0.304,71.77,93.21,0.91,0.16,792,1.1,356,2.3
+4205,2016,6,25,5,30,12.2,1.16,0.05,0.62,30,467,85,0,1,5.6,30,467,0,85,0.305,63.92,83.24,0.91,0.16,793,1,179,3.1
+4206,2016,6,25,6,30,14.8,1.11,0.05,0.62,51,735,271,0,1,2.8,51,735,0,271,0.307,44.46,72.65,0.91,0.16,793,0.9,179,3.5
+4207,2016,6,25,7,30,17.6,1.05,0.048,0.62,64,865,476,0,1,-0.9,64,865,0,476,0.307,28.5,61.52,0.91,0.16,793,0.8,351,3.1
+4208,2016,6,25,8,30,20.1,1,0.045,0.62,71,935,670,0,1,-2,71,935,0,670,0.306,22.45,50.16,0.9,0.16,793,0.8,332,2.6
+4209,2016,6,25,9,30,22.3,0.96,0.042,0.62,76,982,841,0,1,-3.1,76,982,0,841,0.303,18.12,38.88,0.9,0.16,793,0.7,312,2.5
+4210,2016,6,25,10,30,24.1,0.92,0.04,0.62,80,1012,971,0,1,-4.4,80,1012,0,971,0.301,14.73,28.25,0.9,0.16,793,0.6,302,2.5
+4211,2016,6,25,11,30,25.5,0.88,0.034,0.62,78,1028,1046,0,1,-5.8,78,1028,0,1046,0.298,12.23,19.81,0.89,0.16,793,0.6,300,2.4
+4212,2016,6,25,12,30,26.6,0.87,0.033,0.62,78,1032,1062,7,3,-6.9,68,1019,7,1041,0.296,10.53,17.39,0.89,0.16,792,0.6,301,2.2
+4213,2016,6,25,13,30,27.3,0.88,0.033,0.62,77,1026,1021,0,1,-7.6,77,1026,0,1021,0.295,9.56,23.03,0.9,0.16,792,0.6,302,1.8
+4214,2016,6,25,14,30,27.6,0.91,0.037,0.62,76,1007,923,0,1,-8.1,76,1007,0,923,0.295,9.01,32.74,0.9,0.16,792,0.6,307,1.5
+4215,2016,6,25,15,30,27.5,0.93,0.036,0.62,71,980,778,0,1,-8.6,71,980,0,778,0.297,8.75,43.76,0.9,0.16,791,0.6,321,1.2
+4216,2016,6,25,16,30,26.8,0.95,0.035,0.62,64,934,598,0,1,-8.9,64,934,0,598,0.298,8.87,55.12,0.9,0.16,791,0.6,172,1.1
+4217,2016,6,25,17,30,25.3,0.98,0.034,0.62,54,855,395,0,1,-8.9,54,855,0,395,0.298,9.68,66.42,0.89,0.16,791,0.6,23,1.3
+4218,2016,6,25,18,30,21.7,0.99,0.033,0.62,40,699,193,0,1,-4.9,40,699,0,193,0.299,16.4,77.36,0.89,0.16,791,0.6,41,1.4
+4219,2016,6,25,19,30,17.8,1,0.033,0.62,15,300,28,0,1,0,15,300,0,28,0.299,30.14,87.56,0.89,0.16,792,0.6,47,1.7
+4220,2016,6,25,20,30,15.7,1,0.033,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.3,30.58,97.19,0.89,0.16,792,0.5,46,1.9
+4221,2016,6,25,21,30,14.2,1,0.033,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.3,33.64,105.26,0.89,0.16,793,0.5,44,1.7
+4222,2016,6,25,22,30,13,1,0.033,0.62,0,0,0,0,1,-1.2,0,0,0,0,0.301,37.4,111.45,0.89,0.16,793,0.5,42,1.5
+4223,2016,6,25,23,30,12,1,0.034,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.301,41.1,115.2,0.89,0.16,793,0.5,38,1.3
+4224,2016,6,26,0,30,11.3,1.01,0.034,0.62,0,0,0,0,1,-0.7,0,0,0,0,0.302,43.59,116.07,0.9,0.16,793,0.5,32,1.2
+4225,2016,6,26,1,30,10.6,1.02,0.035,0.62,0,0,0,0,1,-0.7,0,0,0,0,0.303,45.51,113.92,0.9,0.16,793,0.5,27,1.2
+4226,2016,6,26,2,30,9.9,1.05,0.036,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.304,47.38,109.05,0.9,0.16,793,0.5,25,1.1
+4227,2016,6,26,3,30,9.1,1.07,0.037,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.305,49.99,101.98,0.9,0.16,794,0.5,24,1.1
+4228,2016,6,26,4,30,9.4,1.1,0.038,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.305,49.03,93.27,0.9,0.16,794,0.5,19,1.1
+4229,2016,6,26,5,30,11.7,1.12,0.038,0.62,29,523,90,0,1,0.4,29,523,0,90,0.306,45.86,83.3,0.9,0.16,794,0.5,13,1.5
+4230,2016,6,26,6,30,15.3,1.13,0.038,0.62,48,781,280,0,0,-1.3,48,781,0,280,0.306,32.12,72.71,0.9,0.16,794,0.5,8,1.6
+4231,2016,6,26,7,30,19.5,1.12,0.038,0.62,60,897,487,0,0,-2.9,60,897,0,487,0.305,21.85,61.58,0.9,0.16,794,0.5,147,1.2
+4232,2016,6,26,8,30,23.1,1.11,0.037,0.62,68,962,683,0,0,-6.1,68,962,0,683,0.304,13.76,50.22,0.9,0.16,795,0.5,279,1.5
+4233,2016,6,26,9,30,25.4,1.09,0.036,0.62,73,1000,851,0,0,-7.6,73,1000,0,851,0.302,10.66,38.94,0.9,0.16,795,0.5,267,2.1
+4234,2016,6,26,10,30,27.1,1.07,0.035,0.62,76,1023,977,0,0,-8,76,1023,0,977,0.3,9.37,28.31,0.9,0.16,795,0.5,267,2.3
+4235,2016,6,26,11,30,28.5,1.06,0.033,0.62,77,1036,1052,0,0,-8.2,77,1036,0,1052,0.299,8.53,19.86,0.9,0.16,794,0.5,268,2.2
+4236,2016,6,26,12,30,29.4,1.06,0.033,0.62,78,1039,1069,0,0,-8.3,78,1039,0,1069,0.297,8.02,17.42,0.9,0.16,794,0.5,269,2
+4237,2016,6,26,13,30,30.1,1.07,0.033,0.62,76,1033,1027,0,1,-8.4,76,1033,0,1027,0.296,7.63,23.03,0.9,0.16,794,0.5,268,1.6
+4238,2016,6,26,14,30,30.3,1.07,0.032,0.62,73,1012,924,0,1,-8.5,73,1012,0,924,0.296,7.47,32.73,0.9,0.16,794,0.6,264,1.2
+4239,2016,6,26,15,30,30.1,1.08,0.033,0.62,69,983,779,0,1,-8.6,69,983,0,779,0.295,7.51,43.74,0.9,0.16,793,0.6,269,0.7
+4240,2016,6,26,16,30,29.4,1.09,0.033,0.62,62,937,598,0,1,-8.5,62,937,0,598,0.294,7.87,55.11,0.9,0.16,793,0.6,148,0.5
+4241,2016,6,26,17,30,27.7,1.1,0.034,0.62,53,849,394,0,1,-8,53,849,0,394,0.293,9.03,66.4,0.9,0.16,793,0.7,33,0.7
+4242,2016,6,26,18,30,24,1.11,0.034,0.62,40,692,191,0,1,-1.2,40,692,0,191,0.292,18.77,77.35,0.9,0.16,794,0.7,50,0.9
+4243,2016,6,26,19,30,20.1,1.13,0.033,0.62,15,295,28,0,1,3,15,295,0,28,0.29,32.23,87.56,0.9,0.16,794,0.8,50,1.2
+4244,2016,6,26,20,30,17.9,1.16,0.033,0.62,0,0,0,0,1,1.2,0,0,0,0,0.289,32.61,97.19,0.9,0.16,795,0.8,41,1.4
+4245,2016,6,26,21,30,16.4,1.19,0.032,0.62,0,0,0,0,1,1.1,0,0,0,0,0.288,35.47,105.27,0.9,0.16,795,0.8,35,1.5
+4246,2016,6,26,22,30,15.3,1.22,0.031,0.62,0,0,0,0,1,1.1,0,0,0,0,0.287,38.25,111.47,0.9,0.16,796,0.8,31,1.4
+4247,2016,6,26,23,30,14.4,1.24,0.03,0.62,0,0,0,0,1,1.4,0,0,0,0,0.287,41.3,115.24,0.9,0.16,796,0.8,27,1.3
+4248,2016,6,27,0,30,13.6,1.27,0.03,0.62,0,0,0,0,0,1.4,0,0,0,0,0.286,43.53,116.11,0.9,0.16,796,0.8,26,1.3
+4249,2016,6,27,1,30,12.9,1.31,0.03,0.62,0,0,0,0,1,1.2,0,0,0,0,0.286,44.92,113.97,0.89,0.16,796,0.8,27,1.2
+4250,2016,6,27,2,30,12.1,1.35,0.032,0.62,0,0,0,0,1,1,0,0,0,0,0.286,46.67,109.11,0.89,0.16,796,0.7,30,1.2
+4251,2016,6,27,3,30,11.2,1.4,0.035,0.62,0,0,0,0,0,0.8,0,0,0,0,0.287,48.88,102.04,0.89,0.16,796,0.7,34,1.1
+4252,2016,6,27,4,30,11.4,1.43,0.037,0.62,0,0,0,0,1,0.6,0,0,0,0,0.287,47.56,93.33,0.9,0.16,796,0.8,36,1.2
+4253,2016,6,27,5,30,13.7,1.48,0.04,0.62,28,503,86,0,1,1.5,28,503,0,86,0.287,43.45,83.37,0.9,0.16,797,0.8,38,1.8
+4254,2016,6,27,6,30,17.3,1.54,0.045,0.62,49,753,272,0,1,-0.4,49,753,0,272,0.287,30.04,72.77,0.9,0.16,797,0.8,43,2.5
+4255,2016,6,27,7,30,21.2,1.59,0.05,0.62,63,861,472,0,0,-1.3,63,861,0,472,0.287,22.12,61.65,0.9,0.16,797,0.9,45,2.4
+4256,2016,6,27,8,30,24.8,1.61,0.054,0.62,74,920,662,0,0,-3.1,74,920,0,662,0.285,15.59,50.28,0.91,0.16,797,1,39,2
+4257,2016,6,27,9,30,27.3,1.62,0.057,0.62,82,957,826,0,1,-3.8,82,957,0,826,0.283,12.74,39,0.91,0.16,797,1,26,1.7
+4258,2016,6,27,10,30,29,1.62,0.057,0.62,86,982,950,0,1,-3.9,86,982,0,950,0.282,11.48,28.38,0.9,0.16,797,1,19,1.6
+4259,2016,6,27,11,30,30.3,1.73,0.045,0.62,82,1003,1025,0,1,-3.5,82,1003,0,1025,0.28,10.98,19.92,0.9,0.16,797,1,22,1.5
+4260,2016,6,27,12,30,31.1,1.74,0.044,0.62,82,1003,1039,0,1,-3,82,1003,0,1039,0.28,10.87,17.46,0.9,0.16,796,1.1,33,1.4
+4261,2016,6,27,13,30,31.5,1.73,0.043,0.62,80,998,998,0,0,-2.6,80,998,0,998,0.279,10.93,23.04,0.9,0.16,796,1.1,49,1.4
+4262,2016,6,27,14,30,31.6,1.69,0.046,0.62,79,975,899,0,1,-2.4,79,975,0,899,0.28,11.04,32.72,0.91,0.16,795,1.2,62,1.4
+4263,2016,6,27,15,30,31.1,1.68,0.049,0.62,75,940,755,7,3,-2.2,254,681,7,746,0.28,11.55,43.73,0.92,0.16,795,1.3,67,1.6
+4264,2016,6,27,16,30,30.3,1.66,0.054,0.62,70,885,577,7,3,-1.9,228,586,7,563,0.281,12.31,55.09,0.92,0.16,795,1.3,69,1.9
+4265,2016,6,27,17,30,28.7,1.66,0.058,0.62,61,790,377,7,3,-1.6,172,459,7,356,0.282,13.82,66.39,0.92,0.15,795,1.4,74,2.1
+4266,2016,6,27,18,30,25.3,1.65,0.059,0.62,45,622,181,7,3,1.1,109,175,7,147,0.283,20.52,77.34,0.93,0.15,795,1.4,83,1.8
+4267,2016,6,27,19,30,21.8,1.65,0.059,0.62,16,235,26,0,1,4.5,16,235,0,26,0.284,32.32,87.56,0.92,0.15,795,1.4,94,1.8
+4268,2016,6,27,20,30,20.1,1.66,0.058,0.62,0,0,0,0,1,3.2,0,0,0,0,0.284,32.83,97.19,0.92,0.15,795,1.3,103,2
+4269,2016,6,27,21,30,18.8,1.66,0.055,0.62,0,0,0,0,1,2.6,0,0,0,0,0.285,33.92,105.28,0.92,0.15,795,1.3,113,1.9
+4270,2016,6,27,22,30,17.7,1.67,0.052,0.62,0,0,0,0,1,2.2,0,0,0,0,0.285,35.28,111.5,0.91,0.15,795,1.2,122,1.8
+4271,2016,6,27,23,30,16.8,1.68,0.05,0.62,0,0,0,0,0,1.8,0,0,0,0,0.285,36.45,115.27,0.91,0.15,795,1.2,129,1.6
+4272,2016,6,28,0,30,16.1,1.7,0.049,0.62,0,0,0,0,0,1.6,0,0,0,0,0.285,37.42,116.16,0.91,0.15,795,1.1,136,1.5
+4273,2016,6,28,1,30,15.6,1.72,0.049,0.62,0,0,0,0,1,1.3,0,0,0,0,0.285,37.92,114.03,0.9,0.15,794,1.1,141,1.5
+4274,2016,6,28,2,30,15,1.73,0.05,0.62,0,0,0,0,1,1.1,0,0,0,0,0.286,38.8,109.17,0.9,0.15,794,1.1,145,1.4
+4275,2016,6,28,3,30,14.3,1.75,0.051,0.62,0,0,0,0,1,0.8,0,0,0,0,0.287,39.93,102.11,0.9,0.15,795,1.1,149,1.4
+4276,2016,6,28,4,30,14.6,1.76,0.053,0.62,0,0,0,0,1,0.7,0,0,0,0,0.288,38.68,93.4,0.9,0.15,795,1.1,155,1.4
+4277,2016,6,28,5,30,16.7,1.78,0.055,0.62,29,461,82,0,1,1.4,29,461,0,82,0.288,35.61,83.43,0.9,0.15,795,1.1,163,2
+4278,2016,6,28,6,30,20,1.79,0.057,0.62,51,717,263,0,1,0,51,717,0,263,0.289,26.2,72.84,0.9,0.15,795,1.2,176,2.5
+4279,2016,6,28,7,30,24.2,1.79,0.058,0.62,65,840,463,0,0,0.9,65,840,0,463,0.289,21.64,61.71,0.91,0.15,795,1.2,189,3.2
+4280,2016,6,28,8,30,27.8,1.78,0.059,0.62,75,904,652,0,0,1,75,904,0,652,0.29,17.67,50.35,0.91,0.15,795,1.3,200,3.9
+4281,2016,6,28,9,30,30.2,1.76,0.061,0.62,83,944,815,0,1,1.3,83,944,0,815,0.29,15.62,39.07,0.91,0.15,795,1.3,209,4.1
+4282,2016,6,28,10,30,31.8,1.74,0.062,0.62,88,964,936,0,0,1.7,88,964,0,936,0.29,14.69,28.44,0.92,0.15,795,1.4,216,4.1
+4283,2016,6,28,11,30,33,1.73,0.063,0.62,91,976,1008,0,0,1.9,91,976,0,1008,0.29,13.94,19.99,0.92,0.15,794,1.4,224,4
+4284,2016,6,28,12,30,33.7,1.74,0.064,0.62,92,975,1022,0,0,1.8,92,975,0,1022,0.29,13.27,17.5,0.92,0.15,793,1.5,235,3.8
+4285,2016,6,28,13,30,33.9,1.73,0.07,0.62,94,964,981,0,8,1.2,344,462,0,770,0.29,12.65,23.05,0.93,0.15,793,1.5,251,3.5
+4286,2016,6,28,14,30,33.3,1.7,0.08,0.62,96,938,885,0,8,0.5,328,398,0,663,0.29,12.44,32.71,0.94,0.15,793,1.5,272,3.3
+4287,2016,6,28,15,30,32,1.64,0.096,0.62,97,891,742,0,8,0,313,68,0,362,0.289,12.83,43.72,0.95,0.15,793,1.5,295,3.3
+4288,2016,6,28,16,30,30.2,1.59,0.116,0.62,96,812,560,0,8,-0.1,244,330,0,432,0.287,14.14,55.08,0.96,0.15,793,1.6,311,3.6
+4289,2016,6,28,17,30,27.5,1.52,0.148,0.62,90,670,358,0,8,0.6,199,126,0,250,0.286,17.45,66.38,0.97,0.15,793,1.8,315,3.6
+4290,2016,6,28,18,30,24.2,1.49,0.177,0.62,67,443,165,7,8,2.9,92,12,7,94,0.286,25.04,77.34,0.97,0.15,794,1.9,306,2.8
+4291,2016,6,28,19,30,21.6,1.5,0.178,0.62,18,94,22,7,8,5,14,0,7,14,0.286,33.95,87.56,0.97,0.15,795,1.8,279,1.7
+4292,2016,6,28,20,30,20,1.54,0.149,0.62,0,0,0,0,8,6.2,0,0,0,0,0.287,40.65,97.2,0.96,0.15,795,1.8,251,1
+4293,2016,6,28,21,30,18.8,1.58,0.117,0.62,0,0,0,0,8,7.6,0,0,0,0,0.287,48.02,105.3,0.96,0.15,794,1.7,252,0.9
+4294,2016,6,28,22,30,17.6,1.63,0.092,0.62,0,0,0,0,8,7.7,0,0,0,0,0.287,52.22,111.53,0.95,0.15,794,1.7,269,0.9
+4295,2016,6,28,23,30,16.4,1.64,0.088,0.62,0,0,0,0,8,7.7,0,0,0,0,0.285,56.34,115.32,0.95,0.15,794,1.7,274,0.9
+4296,2016,6,29,0,30,15.8,1.61,0.099,0.62,0,0,0,0,8,7.8,0,0,0,0,0.284,58.88,116.21,0.96,0.15,794,1.8,259,0.8
+4297,2016,6,29,1,30,15.6,1.6,0.105,0.62,0,0,0,0,1,7.9,0,0,0,0,0.283,60.12,114.1,0.96,0.15,794,1.9,220,0.7
+4298,2016,6,29,2,30,15.6,1.59,0.106,0.62,0,0,0,0,1,8,0,0,0,0,0.283,60.53,109.24,0.96,0.15,794,2,180,0.9
+4299,2016,6,29,3,30,15.6,1.58,0.112,0.62,0,0,0,0,7,8.2,0,0,0,0,0.283,61.27,102.18,0.96,0.15,794,2.1,168,1.2
+4300,2016,6,29,4,30,16.2,1.57,0.12,0.62,0,0,0,0,4,8.5,0,0,0,0,0.282,60.41,93.47,0.96,0.15,794,2.2,171,1.1
+4301,2016,6,29,5,30,17.8,1.56,0.129,0.62,37,306,71,7,3,9.5,48,1,7,48,0.283,58.2,83.5,0.96,0.15,794,2.3,101,0.8
+4302,2016,6,29,6,30,19.8,1.57,0.13,0.62,70,581,241,0,1,9.7,70,581,0,241,0.284,52.19,72.91,0.96,0.15,794,2.4,26,1.7
+4303,2016,6,29,7,30,21.6,1.59,0.133,0.62,92,721,433,0,3,9.7,92,721,5,433,0.284,46.59,61.78,0.96,0.15,795,2.4,30,3.3
+4304,2016,6,29,8,30,22.8,1.61,0.133,0.62,106,804,619,0,8,9.4,231,484,0,539,0.284,42.42,50.42,0.96,0.15,795,2.4,51,3.7
+4305,2016,6,29,9,30,23.7,1.61,0.137,0.62,118,852,778,0,8,9.3,315,401,0,626,0.284,40.04,39.14,0.96,0.15,795,2.4,72,3.3
+4306,2016,6,29,10,30,24.6,1.61,0.135,0.62,124,883,900,0,7,9.2,247,603,0,777,0.282,37.68,28.52,0.96,0.15,795,2.4,92,2.7
+4307,2016,6,29,11,30,25.4,1.43,0.083,0.62,103,935,981,0,7,9.1,243,656,0,859,0.281,35.66,20.06,0.96,0.15,794,2.4,112,2.1
+4308,2016,6,29,12,30,26.3,1.45,0.076,0.62,100,945,1001,0,3,9,454,19,0,472,0.279,33.49,17.55,0.95,0.15,794,2.3,130,1.8
+4309,2016,6,29,13,30,27.2,1.47,0.065,0.62,92,949,965,7,7,8.7,456,124,7,570,0.278,31.28,23.07,0.95,0.15,793,2.2,142,1.8
+4310,2016,6,29,14,30,27.6,1.39,0.076,0.62,95,924,872,0,8,8.4,263,564,0,737,0.277,29.81,32.72,0.95,0.15,792,2.1,175,1.3
+4311,2016,6,29,15,30,27.2,1.39,0.075,0.62,88,895,735,0,8,8,23,0,0,23,0.277,29.66,43.71,0.95,0.15,792,2,233,1.2
+4312,2016,6,29,16,30,26.3,1.4,0.067,0.62,76,849,562,0,8,7.8,259,188,0,367,0.277,30.91,55.08,0.94,0.15,791,2,273,1.9
+4313,2016,6,29,17,30,24.8,1.41,0.064,0.62,63,763,369,0,7,8.3,143,480,0,336,0.277,34.96,66.38,0.95,0.15,791,2,298,2.2
+4314,2016,6,29,18,30,22.6,1.41,0.067,0.62,47,586,175,7,8,10.4,67,4,7,68,0.278,45.9,77.34,0.95,0.15,791,2.1,329,1.9
+4315,2016,6,29,19,30,20.8,1.42,0.075,0.62,16,182,24,7,4,10.6,11,0,7,11,0.279,52.11,87.57,0.95,0.15,791,2.2,181,2
+4316,2016,6,29,20,30,19.5,1.42,0.087,0.62,0,0,0,0,4,10.6,0,0,0,0,0.28,56.26,97.22,0.96,0.15,792,2.4,23,2
+4317,2016,6,29,21,30,18.3,1.43,0.103,0.62,0,0,0,0,8,11,0,0,0,0,0.28,62.33,105.33,0.96,0.15,792,2.5,54,1.3
+4318,2016,6,29,22,30,17.4,1.43,0.121,0.62,0,0,0,0,3,11.6,0,0,0,0,0.279,68.83,111.57,0.97,0.15,793,2.6,110,1.4
+4319,2016,6,29,23,30,16.7,1.47,0.129,0.62,0,0,0,0,8,12.4,0,0,0,0,0.28,75.69,115.37,0.97,0.15,793,2.5,149,2.5
+4320,2016,6,30,0,30,16.1,1.53,0.112,0.62,0,0,0,0,8,13.2,0,0,0,0,0.28,82.91,116.28,0.96,0.15,793,2.4,157,3.1
+4321,2016,6,30,1,30,15.2,1.54,0.09,0.62,0,0,0,0,4,13.6,0,0,0,0,0.281,90.26,114.17,0.96,0.15,793,2.3,157,2.7
+4322,2016,6,30,2,30,14.4,1.54,0.076,0.62,0,0,0,0,4,13,0,0,0,0,0.282,91.56,109.32,0.96,0.15,793,2.2,161,1.7
+4323,2016,6,30,3,30,14,1.54,0.073,0.62,0,0,0,0,8,12.6,0,0,0,0,0.283,91.21,102.26,0.96,0.15,793,2.2,189,0.8
+4324,2016,6,30,4,30,14.1,1.54,0.077,0.62,0,0,0,0,4,12.4,0,0,0,0,0.284,89.54,93.55,0.96,0.15,793,2.2,255,0.3
+4325,2016,6,30,5,30,14.6,1.54,0.084,0.62,33,365,73,7,4,12.6,30,0,7,30,0.285,87.81,83.58,0.97,0.15,793,2.3,203,0.3
+4326,2016,6,30,6,30,15.6,1.53,0.093,0.62,61,626,245,7,4,12.5,66,0,7,66,0.285,81.69,72.98,0.97,0.15,793,2.4,143,0.7
+4327,2016,6,30,7,30,16.8,1.53,0.101,0.62,81,751,435,0,4,11.9,256,62,0,286,0.285,72.75,61.86,0.97,0.15,794,2.5,184,1.2
+4328,2016,6,30,8,30,17.8,1.53,0.105,0.62,95,826,621,0,4,11.7,172,0,0,172,0.285,67.33,50.49,0.97,0.15,794,2.5,190,1.7
+4329,2016,6,30,9,30,18.5,1.53,0.108,0.62,105,869,779,0,8,11.6,320,54,0,362,0.285,64.17,39.21,0.97,0.15,794,2.6,193,2.1
+4330,2016,6,30,10,30,19.2,1.51,0.118,0.62,116,890,898,0,8,11.4,261,5,0,265,0.285,60.69,28.59,0.97,0.15,794,2.6,198,2.3
+4331,2016,6,30,11,30,19.9,1.5,0.105,0.62,113,915,972,0,1,11.2,113,915,0,972,0.284,57.24,20.14,0.97,0.15,793,2.6,200,2.1
+4332,2016,6,30,12,30,20.6,1.5,0.106,0.62,115,919,991,0,1,10.9,115,919,0,991,0.284,53.84,17.61,0.97,0.15,793,2.5,197,1.7
+4333,2016,6,30,13,30,21.1,1.51,0.107,0.62,113,911,951,0,8,10.7,49,0,0,49,0.283,51.27,23.1,0.97,0.15,792,2.5,208,1.1
+4334,2016,6,30,14,30,21,1.5,0.11,0.62,110,887,856,0,8,10.4,100,0,0,100,0.283,50.8,32.72,0.97,0.15,792,2.6,265,0.9
+4335,2016,6,30,15,30,20.3,1.47,0.128,0.62,111,836,715,0,8,10.4,317,283,0,522,0.283,52.81,43.71,0.98,0.15,792,2.6,319,1.4
+4336,2016,6,30,16,30,19.4,1.46,0.138,0.62,103,765,541,0,6,10.6,187,10,0,193,0.283,56.58,55.08,0.98,0.15,792,2.6,340,1.9
+4337,2016,6,30,17,30,22.2,1.12,0.029,0.62,51,851,392,0,0,-6.4,51,851,0,392,0.325,14.15,66.37,0.9,0.13,791,0.8,355,4.5
+4338,2016,6,30,18,30,19.6,1.12,0.028,0.62,38,698,191,0,0,-6.1,38,698,0,191,0.322,17.04,77.32,0.91,0.13,792,0.8,182,3.8
+4339,2016,6,30,19,30,16.6,1.13,0.027,0.62,17,258,28,0,0,-5.1,17,258,0,28,0.319,22.14,87.56,0.91,0.13,793,0.8,14,2.4
+4340,2016,6,30,20,30,14.7,1.14,0.026,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.316,26.63,97.22,0.91,0.13,793,0.9,26,1.5
+4341,2016,6,30,21,30,13.6,1.13,0.026,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.314,29.72,105.33,0.9,0.13,793,0.9,34,1.2
+4342,2016,6,30,22,30,12.8,1.11,0.026,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.313,32.24,111.58,0.9,0.13,793,0.9,39,1
+4343,2016,6,30,23,30,12.1,1.11,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.313,34.72,115.39,0.9,0.13,793,1,38,1
+4344,2018,7,1,0,30,11.4,1.12,0.027,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.312,37.46,116.3,0.9,0.13,793,1,36,0.9
+4345,2018,7,1,1,30,10.8,1.13,0.028,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.311,40.34,114.2,0.9,0.13,793,0.9,33,0.9
+4346,2018,7,1,2,30,10.1,1.15,0.029,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.31,43.76,109.36,0.9,0.13,793,0.9,29,0.9
+4347,2018,7,1,3,30,9.5,1.18,0.03,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.31,46.89,102.3,0.9,0.13,793,0.9,25,0.8
+4348,2018,7,1,4,30,9.9,1.19,0.031,0.62,0,0,0,0,0,-1,0,0,0,0,0.31,46.69,93.59,0.9,0.13,794,0.8,21,0.8
+4349,2018,7,1,5,30,12.3,1.2,0.032,0.62,28,502,84,0,0,-0.7,28,502,0,84,0.31,40.8,83.62,0.9,0.13,794,0.8,17,1
+4350,2018,7,1,6,30,15.8,1.2,0.032,0.62,45,766,269,0,0,-1.1,45,766,0,269,0.31,31.55,73.03,0.9,0.13,794,0.8,170,1.2
+4351,2018,7,1,7,30,18.8,1.19,0.033,0.62,56,884,472,0,0,-2,56,884,0,472,0.309,24.46,61.9,0.9,0.13,795,0.8,305,1.6
+4352,2018,7,1,8,30,21.2,1.17,0.032,0.62,63,949,666,0,0,-2.7,63,949,0,666,0.308,19.96,50.54,0.9,0.13,795,0.8,276,2.3
+4353,2018,7,1,9,30,23.4,1.15,0.031,0.62,67,988,832,0,0,-3.4,67,988,0,832,0.306,16.56,39.27,0.9,0.13,794,0.8,261,2.9
+4354,2018,7,1,10,30,25.3,1.14,0.03,0.62,70,1011,957,0,0,-3.9,70,1011,0,957,0.304,14.21,28.65,0.9,0.13,794,0.8,253,3.4
+4355,2018,7,1,11,30,26.8,1.15,0.029,0.62,71,1022,1030,0,0,-4.5,71,1022,0,1030,0.302,12.45,20.19,0.9,0.13,793,0.9,250,3.7
+4356,2018,7,1,12,30,27.9,1.16,0.028,0.62,70,1024,1046,0,0,-5.1,70,1024,0,1046,0.299,11.19,17.65,0.9,0.13,793,0.9,248,3.9
+4357,2018,7,1,13,30,28.7,1.15,0.027,0.62,71,1016,1005,0,0,-5.5,71,1016,0,1005,0.297,10.31,23.11,0.9,0.13,792,0.9,247,3.8
+4358,2018,7,1,14,30,29,1.23,0.031,0.62,70,998,910,0,0,-5.8,70,998,0,910,0.296,9.9,32.72,0.9,0.13,792,0.9,246,3.4
+4359,2018,7,1,15,30,28.8,1.24,0.031,0.62,65,971,767,0,0,-6.1,65,971,0,767,0.297,9.85,43.71,0.9,0.13,792,0.9,246,3
+4360,2018,7,1,16,30,28.3,1.24,0.03,0.62,59,925,589,0,0,-6.2,59,925,0,589,0.298,10.05,55.07,0.9,0.13,792,0.9,248,2.5
+4361,2018,7,1,17,30,27,1.24,0.029,0.62,50,847,390,0,0,-6.1,50,847,0,390,0.298,10.88,66.37,0.9,0.13,792,0.9,259,1.8
+4362,2018,7,1,18,30,24.3,1.24,0.028,0.62,38,692,190,0,0,-4.6,38,692,0,190,0.298,14.38,77.33,0.9,0.13,792,1,295,1
+4363,2018,7,1,19,30,21.1,1.25,0.027,0.62,16,253,27,0,0,-3.1,16,253,0,27,0.298,19.42,87.57,0.9,0.13,792,1,336,0.8
+4364,2018,7,1,20,30,19.1,1.27,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.298,21.98,97.24,0.9,0.13,793,1.1,178,1
+4365,2018,7,1,21,30,17.4,1.29,0.03,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.297,25.62,105.37,0.9,0.13,793,1.1,9,1.3
+4366,2018,7,1,22,30,15.9,1.3,0.031,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.296,29.49,111.63,0.9,0.13,793,1.1,15,1.3
+4367,2018,7,1,23,30,14.9,1.31,0.032,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.295,32.67,115.45,0.9,0.13,793,1.1,22,1.2
+4368,2018,7,2,0,30,14.4,1.31,0.034,0.62,0,0,0,0,0,-1,0,0,0,0,0.294,34.59,116.37,0.9,0.13,793,1,28,1.1
+4369,2018,7,2,1,30,14.2,1.32,0.035,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.294,35.63,114.28,0.9,0.13,793,1,33,1
+4370,2018,7,2,2,30,14.2,1.3,0.036,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.295,36.01,109.44,0.9,0.13,793,1,36,0.8
+4371,2018,7,2,3,30,14.3,1.27,0.037,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.296,36.05,102.38,0.9,0.13,793,1,53,0.5
+4372,2018,7,2,4,30,14.5,1.25,0.038,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.297,35.79,93.68,0.9,0.13,793,1,114,0.4
+4373,2018,7,2,5,30,16.2,1.24,0.04,0.62,29,467,80,0,0,-0.2,29,467,0,80,0.298,32.83,83.7,0.89,0.13,793,1,167,1
+4374,2018,7,2,6,30,20.1,1.25,0.042,0.62,48,736,262,0,0,-0.3,48,736,0,262,0.299,25.45,73.11,0.89,0.13,793,1,190,1.6
+4375,2018,7,2,7,30,23.8,1.27,0.045,0.62,62,854,463,0,0,-1.7,62,854,0,463,0.299,18.3,61.98,0.89,0.13,793,1,216,2.1
+4376,2018,7,2,8,30,26.1,1.33,0.051,0.62,73,916,654,0,0,-2.7,73,916,0,654,0.298,14.82,50.62,0.88,0.13,793,1,227,2.6
+4377,2018,7,2,9,30,27.8,1.41,0.061,0.62,84,946,816,0,0,-3.2,84,946,0,816,0.298,12.92,39.34,0.88,0.13,793,1,227,3.2
+4378,2018,7,2,10,30,29.3,1.54,0.083,0.62,92,966,939,0,0,-3.8,92,966,0,939,0.297,11.32,28.73,0.88,0.13,792,1,226,3.7
+4379,2018,7,2,11,30,30.5,1.55,0.071,0.62,96,978,1013,0,0,-4.4,96,978,0,1013,0.297,10.14,20.28,0.88,0.13,791,1,225,4.3
+4380,2018,7,2,12,30,31.3,1.7,0.092,0.62,108,964,1026,0,0,-4.8,108,964,0,1026,0.296,9.4,17.72,0.89,0.13,791,1,224,4.8
+4381,2018,7,2,13,30,31.7,1.82,0.121,0.62,123,930,978,0,0,-5.1,200,766,7,904,0.296,8.94,23.14,0.89,0.13,790,1,224,5.2
+4382,2018,7,2,14,30,31.8,1.9,0.176,0.62,148,858,870,0,3,-5.5,334,407,0,676,0.296,8.62,32.74,0.9,0.13,789,1,226,5.5
+4383,2018,7,2,15,30,31.5,1.96,0.287,0.62,183,727,709,0,4,-6,296,44,0,328,0.296,8.48,43.71,0.91,0.13,788,1,229,5.5
+4384,2018,7,2,16,30,30.6,1.95,0.48,0.62,206,542,516,0,3,-6.3,325,166,11,420,0.296,8.73,55.07,0.92,0.13,788,1.1,232,5.3
+4385,2018,7,2,17,30,28.9,1.9,0.703,0.62,178,347,317,0,0,-6.2,178,347,18,317,0.297,9.67,66.38,0.93,0.13,788,1.1,236,4.1
+4386,2018,7,2,18,30,25.9,1.88,0.839,0.62,95,173,133,4,0,-5.1,95,173,50,133,0.298,12.52,77.35,0.93,0.13,788,1.2,245,2.3
+4387,2018,7,2,19,30,23.1,1.89,0.842,0.62,10,23,11,3,0,-3.9,10,23,39,11,0.299,16.23,87.6,0.92,0.13,788,1.2,263,1.4
+4388,2018,7,2,20,30,21.5,1.94,0.724,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.299,18.59,97.27,0.92,0.13,789,1.2,288,1.2
+4389,2018,7,2,21,30,20.4,1.97,0.553,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.3,20.63,105.41,0.91,0.13,789,1.2,317,0.9
+4390,2018,7,2,22,30,19.5,1.99,0.383,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.3,22.75,111.68,0.9,0.13,789,1.2,186,0.6
+4391,2018,7,2,23,30,18.7,1.97,0.284,0.62,0,0,0,0,4,-2,0,0,0,0,0.3,24.5,115.52,0.9,0.13,789,1.2,64,0.6
+4392,2018,7,3,0,30,18.1,1.91,0.238,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.3,25.3,116.45,0.91,0.13,788,1.3,101,0.8
+4393,2018,7,3,1,30,17.7,1.83,0.211,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.3,25.55,114.37,0.91,0.13,788,1.3,118,0.5
+4394,2018,7,3,2,30,16.8,1.77,0.193,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.3,26.49,109.53,0.91,0.13,788,1.3,223,0.6
+4395,2018,7,3,3,30,15.7,1.79,0.169,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.3,28.86,102.47,0.9,0.13,789,1.2,333,1.4
+4396,2018,7,3,4,30,15.5,1.83,0.144,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.299,31.95,93.76,0.88,0.13,789,1.2,349,2.5
+4397,2018,7,3,5,30,17.3,1.84,0.125,0.62,33,340,70,0,0,0.8,33,340,0,70,0.299,32.87,83.79,0.88,0.13,790,1.2,180,3.3
+4398,2018,7,3,6,30,20.6,1.81,0.113,0.62,62,637,246,2,3,2.4,117,338,29,215,0.298,30.01,73.19,0.87,0.13,790,1.2,7,3.1
+4399,2018,7,3,7,30,24,1.78,0.108,0.62,80,780,445,0,0,2.7,80,780,0,445,0.297,24.96,62.06,0.88,0.13,790,1.3,53,1.5
+4400,2018,7,3,8,30,26.7,1.77,0.109,0.62,92,855,634,0,0,2,92,855,0,634,0.296,20.12,50.7,0.88,0.13,790,1.3,140,1.6
+4401,2018,7,3,9,30,29.1,1.79,0.116,0.62,105,895,796,0,0,0.9,105,895,0,796,0.295,16.16,39.43,0.88,0.13,790,1.3,187,3.7
+4402,2018,7,3,10,30,30.9,1.82,0.131,0.62,108,928,921,0,0,-0.2,108,928,0,921,0.294,13.49,28.82,0.88,0.13,789,1.3,198,5.3
+4403,2018,7,3,11,30,32.2,1.73,0.098,0.62,105,956,1001,0,0,-1.4,105,956,0,1001,0.293,11.5,20.37,0.89,0.13,789,1.3,208,6.8
+4404,2018,7,3,12,30,32.9,1.68,0.101,0.62,104,965,1023,0,4,-2.8,361,134,0,489,0.293,9.98,17.79,0.9,0.13,788,1.2,214,8
+4405,2018,7,3,13,30,33,1.48,0.084,0.62,95,976,992,0,4,-4.3,465,187,0,637,0.292,8.88,23.18,0.91,0.13,788,1,216,8.7
+4406,2018,7,3,14,30,32.6,1.2,0.059,0.62,83,977,905,0,4,-5.6,346,301,0,599,0.293,8.24,32.76,0.91,0.13,788,0.9,216,8.8
+4407,2018,7,3,15,30,31.9,1.08,0.051,0.62,78,951,765,0,3,-6.2,263,567,0,673,0.294,8.13,43.73,0.91,0.13,788,0.8,216,8.5
+4408,2018,7,3,16,30,30.8,1.14,0.059,0.62,76,888,584,0,3,-6.6,270,353,7,472,0.294,8.4,55.09,0.91,0.13,788,0.8,215,7.8
+4409,2018,7,3,17,30,29.2,1.24,0.078,0.62,71,774,381,0,3,-7.4,165,392,29,322,0.295,8.7,66.4,0.91,0.13,788,0.8,215,6.8
+4410,2018,7,3,18,30,26.3,1.31,0.1,0.62,54,575,180,7,3,-8.2,112,92,100,132,0.296,9.69,77.37,0.91,0.13,789,0.7,214,4.8
+4411,2018,7,3,19,30,22.6,1.41,0.101,0.62,18,154,24,7,3,-8.1,18,2,100,18,0.297,12.19,87.62,0.89,0.13,789,0.7,214,2.7
+4412,2018,7,3,20,30,20.1,1.55,0.115,0.62,0,0,0,0,3,-8,0,0,0,0,0.297,14.31,97.31,0.88,0.13,790,0.7,219,1.8
+4413,2018,7,3,21,30,18.7,1.73,0.149,0.62,0,0,0,0,3,-7.7,0,0,0,0,0.298,15.95,105.46,0.87,0.13,790,0.7,234,1.4
+4414,2018,7,3,22,30,17.5,1.88,0.179,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.299,18.68,111.74,0.87,0.13,791,0.7,272,1.1
+4415,2018,7,3,23,30,16.3,1.98,0.193,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.299,23.21,115.59,0.87,0.13,791,0.8,321,1.3
+4416,2018,7,4,0,30,15.2,2.02,0.195,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.298,29.81,116.54,0.87,0.13,792,0.9,349,1.6
+4417,2018,7,4,1,30,14.4,2.04,0.192,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.298,36.23,114.46,0.87,0.13,792,0.9,181,1.6
+4418,2018,7,4,2,30,13.6,2.05,0.191,0.62,0,0,0,0,0,1.1,0,0,0,0,0.297,42.44,109.62,0.87,0.13,793,0.9,14,1.6
+4419,2018,7,4,3,30,12.7,2.06,0.195,0.62,0,0,0,0,0,2.1,0,0,0,0,0.296,48.38,102.56,0.87,0.13,793,1,26,1.4
+4420,2018,7,4,4,30,12.5,2.08,0.203,0.62,0,0,0,0,0,2.7,0,0,0,0,0.295,51.31,93.85,0.87,0.13,794,1,33,1.3
+4421,2018,7,4,5,30,14.2,2.09,0.211,0.62,36,265,64,0,0,3.3,36,265,0,64,0.294,47.73,83.87,0.87,0.13,795,1,39,1.5
+4422,2018,7,4,6,30,17.6,2.1,0.217,0.62,78,538,233,0,0,3.5,78,538,0,233,0.292,39.19,73.28,0.87,0.13,795,1,49,1.3
+4423,2018,7,4,7,30,22.1,2.11,0.217,0.62,105,695,430,0,0,2.8,105,695,0,430,0.292,28.05,62.15,0.87,0.13,795,1,140,1.2
+4424,2018,7,4,8,30,26.1,2.1,0.207,0.62,120,795,623,0,0,0.2,120,795,0,623,0.292,18.43,50.78,0.88,0.13,796,1,224,2
+4425,2018,7,4,9,30,28.4,2.07,0.187,0.62,126,862,791,0,0,-1.8,126,862,0,791,0.292,13.92,39.51,0.88,0.13,796,1,221,3
+4426,2018,7,4,10,30,30,2.03,0.171,0.62,115,928,927,0,0,-3,115,928,0,927,0.293,11.56,28.91,0.88,0.13,796,1,218,3.8
+4427,2018,7,4,11,30,31.2,1.67,0.078,0.62,95,981,1014,0,0,-4,95,981,0,1014,0.294,10,20.47,0.89,0.13,796,1,218,4.5
+4428,2018,7,4,12,30,31.9,1.61,0.072,0.62,93,990,1035,0,0,-4.6,93,990,0,1035,0.295,9.2,17.87,0.89,0.13,795,0.9,219,4.8
+4429,2018,7,4,13,30,32.3,1.49,0.064,0.62,86,992,998,0,0,-5.1,86,992,0,998,0.296,8.68,23.23,0.9,0.13,795,0.9,218,4.9
+4430,2018,7,4,14,30,32.4,1.3,0.051,0.62,80,985,908,1,0,-5.7,141,881,11,882,0.297,8.23,32.78,0.9,0.13,795,0.9,216,4.7
+4431,2018,7,4,15,30,32.1,1.1,0.043,0.62,71,963,767,0,0,-6.4,143,841,0,751,0.298,7.97,43.75,0.9,0.13,795,0.8,214,4.4
+4432,2018,7,4,16,30,31.3,0.95,0.037,0.62,63,921,590,0,0,-6.8,63,921,0,590,0.298,8.03,55.1,0.9,0.13,795,0.8,213,4.1
+4433,2018,7,4,17,30,29.8,0.88,0.033,0.62,53,843,390,0,0,-7.3,53,843,0,390,0.299,8.47,66.42,0.9,0.14,795,0.8,213,3.4
+4434,2018,7,4,18,30,26.3,0.87,0.031,0.62,39,686,189,0,0,-5.9,39,686,0,189,0.299,11.51,77.39,0.9,0.14,795,0.8,215,2
+4435,2018,7,4,19,30,22.7,0.89,0.03,0.62,17,241,27,0,0,-5.1,17,241,0,27,0.298,15.19,87.65,0.9,0.14,796,0.8,218,1.3
+4436,2018,7,4,20,30,21.2,0.93,0.03,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.298,15.93,97.35,0.9,0.14,796,0.8,222,1.3
+4437,2018,7,4,21,30,20.3,0.98,0.031,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.297,16.52,105.51,0.9,0.14,797,0.9,225,1.3
+4438,2018,7,4,22,30,19.6,1.04,0.034,0.62,0,0,0,0,0,-6,0,0,0,0,0.296,17.15,111.81,0.91,0.14,797,1,225,1.3
+4439,2018,7,4,23,30,19.2,1.13,0.04,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.296,17.79,115.67,0.92,0.14,797,1.1,215,1.2
+4440,2018,7,5,0,30,18.6,1.19,0.048,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.295,18.73,116.63,0.93,0.14,798,1.2,193,1.2
+4441,2018,7,5,1,30,17.6,1.26,0.054,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.295,20.77,114.56,0.93,0.14,798,1.4,168,1.2
+4442,2018,7,5,2,30,16.8,1.35,0.061,0.62,0,0,0,0,4,-4.2,0,0,0,0,0.294,23.53,109.72,0.93,0.14,798,1.5,151,1.3
+4443,2018,7,5,3,30,16.2,1.46,0.068,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.293,27.2,102.66,0.92,0.14,799,1.6,148,1.3
+4444,2018,7,5,4,30,16.5,1.54,0.075,0.62,0,0,0,0,0,-1,0,0,0,0,0.293,30.34,93.95,0.92,0.14,799,1.7,151,1.2
+4445,2018,7,5,5,30,18.7,1.6,0.078,0.62,32,370,71,6,4,0.4,44,53,82,50,0.292,29.33,83.96,0.91,0.14,799,1.7,147,1.4
+4446,2018,7,5,6,30,22.3,1.64,0.079,0.62,57,652,244,1,7,1.3,123,250,11,195,0.292,24.96,73.36,0.91,0.14,800,1.7,149,1.8
+4447,2018,7,5,7,30,26.4,1.65,0.086,0.62,77,777,439,0,0,1.9,106,682,0,424,0.292,20.41,62.23,0.92,0.14,800,1.7,170,2.4
+4448,2018,7,5,8,30,29.1,1.65,0.099,0.62,94,842,625,0,0,1.9,198,579,0,563,0.29,17.42,50.87,0.93,0.14,801,1.8,189,3.2
+4449,2018,7,5,9,30,30.5,1.64,0.107,0.62,105,884,786,0,3,2.7,280,542,0,698,0.289,16.98,39.6,0.94,0.14,801,1.9,199,3.7
+4450,2018,7,5,10,30,31.3,1.64,0.112,0.62,104,922,910,0,4,3.6,300,408,7,657,0.287,17.33,29,0.94,0.14,801,2,211,4.4
+4451,2018,7,5,11,30,31.3,1.5,0.069,0.62,97,949,985,1,3,4.5,365,500,11,833,0.286,18.48,20.57,0.95,0.14,800,2.1,227,5
+4452,2018,7,5,12,30,30.6,1.53,0.079,0.62,99,947,1000,0,0,5.6,99,947,0,1000,0.285,20.78,17.96,0.95,0.14,801,2.1,247,5.4
+4453,2018,7,5,13,30,29.8,1.53,0.078,0.62,93,947,963,1,3,6.6,304,610,14,864,0.284,23.32,23.28,0.94,0.14,801,2.1,268,5.1
+4454,2018,7,5,14,30,29.8,1.53,0.059,0.62,82,946,877,0,3,6.8,438,156,0,569,0.285,23.65,32.82,0.93,0.14,800,2,278,4.1
+4455,2018,7,5,15,30,30.3,1.54,0.047,0.62,71,930,743,0,3,5.9,338,316,0,566,0.286,21.56,43.77,0.92,0.14,799,1.8,274,2.8
+4456,2018,7,5,16,30,30.3,1.54,0.039,0.62,63,891,573,0,3,4.6,193,572,0,520,0.287,19.64,55.12,0.92,0.14,799,1.6,261,1.6
+4457,2018,7,5,17,30,29.6,1.55,0.038,0.62,58,795,376,0,3,3.5,161,409,7,324,0.287,18.95,66.44,0.93,0.14,798,1.5,242,0.7
+4458,2018,7,5,18,30,27.2,1.61,0.065,0.62,54,552,174,7,4,3.1,112,76,100,129,0.288,21.18,77.42,0.95,0.14,799,1.6,283,0.5
+4459,2018,7,5,19,30,24.6,1.63,0.145,0.62,18,108,22,7,4,3.5,16,8,96,16,0.289,25.48,87.69,0.96,0.14,799,1.8,173,0.6
+4460,2018,7,5,20,30,23.2,1.6,0.207,0.62,0,0,0,0,3,4.5,0,0,0,0,0.289,29.72,97.4,0.96,0.14,800,2,24,0.8
+4461,2018,7,5,21,30,22,1.65,0.177,0.62,0,0,0,0,3,5.9,0,0,0,0,0.289,35.11,105.57,0.93,0.14,801,2.1,76,0.8
+4462,2018,7,5,22,30,21,1.72,0.13,0.62,0,0,0,0,4,6.5,0,0,0,0,0.289,38.89,111.89,0.92,0.14,801,2.2,148,1.4
+4463,2018,7,5,23,30,20.3,1.73,0.123,0.62,0,0,0,0,3,6.7,0,0,0,0,0.29,41.34,115.76,0.92,0.14,802,2.2,182,2.9
+4464,2018,7,6,0,30,19.4,1.73,0.117,0.62,0,0,0,0,0,7.2,0,0,0,0,0.29,45.25,116.73,0.93,0.14,802,2.2,192,3.2
+4465,2018,7,6,1,30,18.3,1.72,0.117,0.62,0,0,0,0,0,8,0,0,0,0,0.291,51.09,114.66,0.94,0.14,802,2.2,210,2.5
+4466,2018,7,6,2,30,17.4,1.71,0.135,0.62,0,0,0,0,0,8.9,0,0,0,0,0.291,57.4,109.83,0.95,0.14,802,2.3,229,2.3
+4467,2018,7,6,3,30,16.9,1.69,0.157,0.62,0,0,0,0,0,9.9,0,0,0,0,0.291,63.2,102.76,0.96,0.14,802,2.4,240,2.3
+4468,2018,7,6,4,30,17.1,1.65,0.188,0.62,0,0,0,0,0,10.7,0,0,0,0,0.29,66.13,94.05,0.96,0.14,802,2.4,241,2.5
+4469,2018,7,6,5,30,18.6,1.65,0.192,0.62,38,241,63,0,0,11.4,38,241,0,63,0.289,62.76,84.05,0.96,0.14,803,2.2,236,2.9
+4470,2018,7,6,6,30,21.4,1.71,0.164,0.62,73,562,233,0,0,11.3,73,562,0,233,0.288,52.56,73.46,0.95,0.14,802,2.1,232,3.5
+4471,2018,7,6,7,30,24.7,1.78,0.129,0.62,85,747,432,0,0,9.6,85,747,0,432,0.287,38.4,62.32,0.94,0.14,802,1.9,230,3.9
+4472,2018,7,6,8,30,27.6,1.83,0.106,0.62,91,848,625,0,0,7.4,91,848,0,625,0.286,27.83,50.96,0.93,0.14,802,1.8,227,4
+4473,2018,7,6,9,30,29.9,1.85,0.096,0.62,98,898,789,0,0,6.1,98,898,0,789,0.286,22.38,39.69,0.93,0.14,801,1.8,226,4.1
+4474,2018,7,6,10,30,31.6,1.85,0.099,0.62,101,931,914,0,0,5.6,101,931,0,914,0.285,19.58,29.1,0.93,0.14,801,1.8,228,4.2
+4475,2018,7,6,11,30,32.8,1.78,0.079,0.62,101,948,988,0,0,5.5,106,938,0,984,0.285,18.22,20.67,0.94,0.14,800,1.8,231,4.1
+4476,2018,7,6,12,30,33.4,1.71,0.087,0.62,107,943,1004,1,3,5.7,316,615,11,901,0.285,17.82,18.06,0.95,0.14,800,1.9,235,4
+4477,2018,7,6,13,30,33.6,1.62,0.095,0.62,110,929,963,1,0,5.7,133,899,14,958,0.286,17.65,23.34,0.95,0.14,799,1.9,238,3.7
+4478,2018,7,6,14,30,33.6,1.55,0.1,0.62,107,907,869,0,0,5.5,227,668,0,788,0.286,17.34,32.85,0.95,0.14,798,1.9,241,3.3
+4479,2018,7,6,15,30,33.2,1.51,0.098,0.62,99,875,731,0,0,5.1,116,847,0,727,0.286,17.24,43.8,0.95,0.14,798,1.9,242,3
+4480,2018,7,6,16,30,32.4,1.49,0.093,0.62,88,825,559,0,3,4.5,239,373,11,452,0.286,17.29,55.15,0.95,0.14,797,1.8,242,2.6
+4481,2018,7,6,17,30,31.1,1.5,0.086,0.62,71,740,366,0,8,4,125,11,0,129,0.286,18.01,66.47,0.94,0.14,797,1.7,243,2.1
+4482,2018,7,6,18,30,28.5,1.52,0.077,0.62,49,575,174,7,4,4.4,101,67,100,116,0.286,21.55,77.46,0.94,0.14,797,1.7,244,1.3
+4483,2018,7,6,19,30,26.1,1.55,0.071,0.62,16,168,23,6,3,4.1,16,11,79,16,0.285,24.31,87.73,0.93,0.14,797,1.6,245,0.9
+4484,2018,7,6,20,30,24.9,1.59,0.069,0.62,0,0,0,0,0,3.6,0,0,0,0,0.285,25.19,97.45,0.92,0.14,797,1.6,245,1.1
+4485,2018,7,6,21,30,23.7,1.64,0.071,0.62,0,0,0,0,0,3.4,0,0,0,0,0.285,26.59,105.64,0.92,0.14,797,1.6,244,1.2
+4486,2018,7,6,22,30,22.3,1.67,0.073,0.62,0,0,0,0,0,3.3,0,0,0,0,0.285,28.71,111.97,0.92,0.14,797,1.7,246,1.2
+4487,2018,7,6,23,30,20.8,1.68,0.073,0.62,0,0,0,0,0,3.3,0,0,0,0,0.284,31.54,115.86,0.92,0.14,797,1.7,249,1.2
+4488,2018,7,7,0,30,19.6,1.66,0.072,0.62,0,0,0,0,0,3.5,0,0,0,0,0.284,34.37,116.84,0.93,0.14,797,1.8,252,1.2
+4489,2018,7,7,1,30,18.8,1.65,0.071,0.62,0,0,0,0,0,3.6,0,0,0,0,0.285,36.52,114.77,0.94,0.14,797,1.9,250,1.2
+4490,2018,7,7,2,30,18.2,1.65,0.069,0.62,0,0,0,0,0,3.7,0,0,0,0,0.285,38.21,109.94,0.94,0.14,797,1.9,236,1.3
+4491,2018,7,7,3,30,17.5,1.65,0.067,0.62,0,0,0,0,0,3.9,0,0,0,0,0.285,40.56,102.87,0.94,0.14,798,1.9,219,1.5
+4492,2018,7,7,4,30,17.8,1.65,0.065,0.62,0,0,0,0,0,4.4,0,0,0,0,0.285,41.19,94.15,0.93,0.14,798,1.9,208,2
+4493,2018,7,7,5,30,19.9,1.66,0.063,0.62,30,386,69,0,0,5.3,30,386,0,69,0.285,38.28,84.15,0.93,0.14,798,1.9,208,3.1
+4494,2018,7,7,6,30,23,1.66,0.061,0.62,52,675,243,0,0,6.8,52,675,0,243,0.285,35.16,73.55,0.93,0.14,799,1.9,215,4.1
+4495,2018,7,7,7,30,26,1.66,0.059,0.62,65,810,440,0,0,8.1,65,810,0,440,0.285,32.18,62.41,0.93,0.14,799,1.9,222,4.1
+4496,2018,7,7,8,30,28.7,1.65,0.057,0.62,73,885,629,0,0,7.8,133,767,0,615,0.283,26.82,51.05,0.93,0.14,798,1.9,224,3.6
+4497,2018,7,7,9,30,31.2,1.63,0.055,0.62,78,930,793,0,0,7.1,78,930,0,793,0.282,22.25,39.78,0.93,0.14,797,1.9,224,3.1
+4498,2018,7,7,10,30,33.3,1.61,0.053,0.62,81,959,918,0,0,6.4,81,959,0,918,0.281,18.78,29.2,0.93,0.14,797,1.9,221,2.8
+4499,2018,7,7,11,30,34.8,1.58,0.048,0.62,81,973,991,0,0,5.6,81,973,0,991,0.28,16.32,20.79,0.94,0.14,796,1.9,219,2.6
+4500,2018,7,7,12,30,35.7,1.57,0.048,0.62,83,975,1009,0,0,5,114,922,0,990,0.278,14.96,18.16,0.94,0.14,795,2,219,2.6
+4501,2018,7,7,13,30,36.2,1.56,0.048,0.62,81,969,970,0,0,4.7,81,969,0,970,0.278,14.2,23.41,0.94,0.14,794,2,224,2.6
+4502,2018,7,7,14,30,36.1,1.53,0.048,0.62,80,951,878,0,3,4.4,350,366,0,657,0.278,13.97,32.9,0.94,0.14,794,2,241,2.5
+4503,2018,7,7,15,30,35.5,1.53,0.051,0.62,76,917,738,0,3,3.9,345,304,0,564,0.278,14.02,43.83,0.94,0.14,793,2,277,2.9
+4504,2018,7,7,16,30,33.7,1.54,0.056,0.62,72,859,562,0,4,3.9,253,129,0,327,0.279,15.41,55.18,0.94,0.14,793,2,312,4.7
+4505,2018,7,7,17,30,30.4,1.57,0.065,0.62,64,756,365,0,8,4.9,102,61,0,126,0.279,19.93,66.5,0.94,0.13,793,2.1,328,6.6
+4506,2018,7,7,18,30,26.8,1.62,0.074,0.62,49,563,171,7,7,6.4,93,32,100,100,0.28,27.25,77.5,0.94,0.13,794,2.2,337,6.1
+4507,2018,7,7,19,30,24.5,1.66,0.088,0.62,16,147,22,6,6,6.8,12,0,86,12,0.281,32.22,87.78,0.94,0.13,795,2.2,349,3.5
+4508,2018,7,7,20,30,23.2,1.67,0.108,0.62,0,0,0,0,6,6.8,0,0,0,0,0.282,34.89,97.51,0.95,0.13,795,2.2,196,1.4
+4509,2018,7,7,21,30,22.6,1.65,0.148,0.62,0,0,0,0,4,7.2,0,0,0,0,0.283,36.95,105.71,0.96,0.13,796,2.3,81,1
+4510,2018,7,7,22,30,22,1.65,0.191,0.62,0,0,0,0,4,7.6,0,0,0,0,0.283,39.38,112.06,0.96,0.13,796,2.4,141,1.7
+4511,2018,7,7,23,30,21,1.68,0.207,0.62,0,0,0,0,4,8.3,0,0,0,0,0.283,44.2,115.96,0.96,0.13,797,2.4,161,2.2
+4512,2018,7,8,0,30,19.9,1.74,0.196,0.62,0,0,0,0,4,9.5,0,0,0,0,0.283,51.22,116.95,0.95,0.13,796,2.4,169,2.3
+4513,2018,7,8,1,30,18.8,1.8,0.175,0.62,0,0,0,0,4,10.7,0,0,0,0,0.284,59.45,114.89,0.94,0.13,796,2.3,172,2.2
+4514,2018,7,8,2,30,17.8,1.83,0.149,0.62,0,0,0,0,3,11.5,0,0,0,0,0.284,66.53,110.05,0.93,0.13,796,2.2,180,1.9
+4515,2018,7,8,3,30,16.9,1.85,0.123,0.62,0,0,0,0,0,11.9,0,0,0,0,0.283,72.41,102.98,0.93,0.13,796,2.2,196,1.5
+4516,2018,7,8,4,30,17,1.85,0.111,0.62,0,0,0,0,0,12.2,0,0,0,0,0.283,73.17,94.26,0.93,0.13,796,2.2,215,1.6
+4517,2018,7,8,5,30,18.8,1.84,0.105,0.62,32,320,64,0,0,12.4,32,320,0,64,0.282,66.22,84.25,0.93,0.13,797,2.2,232,2.3
+4518,2018,7,8,6,30,22.2,1.83,0.102,0.62,61,612,233,0,0,12.1,70,558,0,227,0.282,52.85,73.65,0.93,0.13,797,2.2,246,2.9
+4519,2018,7,8,7,30,25.6,1.8,0.102,0.62,79,754,427,0,0,11.1,115,638,0,409,0.282,40.14,62.51,0.93,0.13,797,2.3,257,2.9
+4520,2018,7,8,8,30,28.3,1.78,0.103,0.62,91,833,614,0,0,10,91,833,0,614,0.282,31.92,51.14,0.93,0.13,797,2.3,265,2.6
+4521,2018,7,8,9,30,30.5,1.76,0.104,0.62,100,882,777,0,0,8.7,100,882,0,777,0.282,25.77,39.88,0.94,0.13,796,2.3,274,2.2
+4522,2018,7,8,10,30,32,1.76,0.102,0.62,102,919,903,0,0,7.2,102,919,0,903,0.281,21.41,29.31,0.94,0.13,796,2.2,283,2
+4523,2018,7,8,11,30,33,1.71,0.08,0.62,97,945,980,0,0,5.9,97,945,0,980,0.281,18.48,20.9,0.94,0.13,796,2.2,294,1.8
+4524,2018,7,8,12,30,33.4,1.7,0.077,0.62,96,953,1001,0,0,4.8,137,855,0,949,0.281,16.7,18.27,0.94,0.13,795,2.1,307,1.7
+4525,2018,7,8,13,30,33.7,1.7,0.073,0.62,94,948,964,0,0,3.8,251,667,0,863,0.282,15.37,23.48,0.93,0.13,794,2,320,1.7
+4526,2018,7,8,14,30,33.7,1.66,0.081,0.62,93,930,873,0,0,2.9,182,785,0,841,0.282,14.44,32.94,0.92,0.13,794,1.9,333,1.6
+4527,2018,7,8,15,30,33.4,1.67,0.076,0.62,85,903,736,0,7,2.2,288,252,0,470,0.283,13.9,43.87,0.92,0.13,794,1.8,171,1.5
+4528,2018,7,8,16,30,32.8,1.69,0.072,0.62,75,854,562,0,6,1.6,148,10,0,154,0.283,13.79,55.22,0.92,0.13,793,1.7,28,1.6
+4529,2018,7,8,17,30,31.5,1.72,0.068,0.62,62,768,368,0,6,1.5,49,0,0,49,0.283,14.77,66.54,0.91,0.13,793,1.8,74,2.4
+4530,2018,7,8,18,30,28.1,1.76,0.065,0.62,46,593,174,7,8,3.2,79,8,100,81,0.284,20.18,77.54,0.91,0.13,794,1.8,107,3.9
+4531,2018,7,8,19,30,24.3,1.78,0.068,0.62,15,172,22,6,8,6.9,14,1,86,14,0.285,32.82,87.83,0.92,0.13,795,2,126,4.9
+4532,2018,7,8,20,30,22.2,1.8,0.076,0.62,0,0,0,0,7,9.6,0,0,0,0,0.285,44.69,97.58,0.92,0.13,796,2.2,143,4.1
+4533,2018,7,8,21,30,21.1,1.79,0.09,0.62,0,0,0,0,7,10.1,0,0,0,0,0.285,49.36,105.79,0.93,0.13,796,2.3,162,2.5
+4534,2018,7,8,22,30,20.2,1.79,0.103,0.62,0,0,0,0,6,10.2,0,0,0,0,0.285,52.58,112.15,0.93,0.13,797,2.5,181,1.3
+4535,2018,7,8,23,30,19.5,1.79,0.109,0.62,0,0,0,0,6,10.6,0,0,0,0,0.284,56.47,116.07,0.94,0.13,797,2.7,197,0.9
+4536,2018,7,9,0,30,19.1,1.78,0.122,0.62,0,0,0,0,7,11.2,0,0,0,0,0.284,60.04,117.07,0.95,0.13,797,2.8,207,0.7
+4537,2018,7,9,1,30,19.1,1.73,0.148,0.62,0,0,0,0,7,11.7,0,0,0,0,0.284,62.03,115.01,0.96,0.13,797,3,214,0.6
+4538,2018,7,9,2,30,19.1,1.67,0.158,0.62,0,0,0,0,4,12,0,0,0,0,0.285,63.55,110.18,0.96,0.13,798,3,282,0.3
+4539,2018,7,9,3,30,18.6,1.7,0.134,0.62,0,0,0,0,7,12.2,0,0,0,0,0.286,66.46,103.1,0.96,0.13,797,2.8,188,0.5
+4540,2018,7,9,4,30,18.4,1.74,0.103,0.62,0,0,0,0,0,12.5,0,0,0,0,0.286,68.3,94.37,0.95,0.13,797,2.7,45,1.1
+4541,2018,7,9,5,30,19.5,1.74,0.089,0.62,31,327,63,0,0,12.7,31,327,0,63,0.287,64.83,84.36,0.95,0.13,798,2.6,67,2.1
+4542,2018,7,9,6,30,21.8,1.73,0.085,0.62,58,627,233,0,0,12.7,58,627,0,233,0.287,56.42,73.75,0.95,0.13,798,2.5,80,2.7
+4543,2018,7,9,7,30,24.8,1.73,0.082,0.62,72,773,428,0,0,11.8,72,773,0,428,0.287,44.23,62.6,0.95,0.13,798,2.4,88,2.6
+4544,2018,7,9,8,30,27.6,1.75,0.077,0.62,80,858,617,0,0,10.2,80,858,0,617,0.287,33.77,51.24,0.94,0.13,798,2.3,98,1.8
+4545,2018,7,9,9,30,30.1,1.77,0.07,0.62,84,912,783,0,0,9,84,912,0,783,0.287,26.83,39.98,0.94,0.13,798,2.2,125,1.1
+4546,2018,7,9,10,30,32.3,1.79,0.064,0.62,87,944,909,0,0,7.7,87,944,0,909,0.287,21.74,29.41,0.93,0.13,797,2.1,174,0.7
+4547,2018,7,9,11,30,33.9,1.81,0.061,0.62,87,961,984,0,0,6.5,87,961,0,984,0.287,18.33,21.03,0.93,0.13,796,2,217,0.8
+4548,2018,7,9,12,30,34.9,1.83,0.06,0.62,88,966,1005,0,0,5.6,88,966,0,1005,0.286,16.25,18.39,0.93,0.13,796,2,239,1
+4549,2018,7,9,13,30,35.6,1.84,0.061,0.62,89,957,966,0,0,4.9,89,957,0,966,0.286,14.89,23.56,0.93,0.13,795,2,251,1.2
+4550,2018,7,9,14,30,35.8,1.79,0.067,0.62,88,936,873,0,0,4.3,88,936,0,873,0.286,14.11,33,0.93,0.13,794,1.9,258,1.3
+4551,2018,7,9,15,30,35.4,1.78,0.07,0.62,83,903,734,0,0,3.8,83,903,0,734,0.285,13.91,43.91,0.94,0.13,794,1.9,270,1.4
+4552,2018,7,9,16,30,34.7,1.78,0.071,0.62,76,848,559,0,0,3.4,76,848,0,559,0.285,14.12,55.26,0.94,0.13,794,1.9,285,1.6
+4553,2018,7,9,17,30,33.4,1.77,0.074,0.62,66,752,365,0,0,3.2,98,637,0,351,0.285,14.92,66.59,0.94,0.14,793,1.9,301,1.6
+4554,2018,7,9,18,30,30.7,1.76,0.077,0.62,49,568,171,7,3,3.4,110,137,100,139,0.285,17.69,77.59,0.94,0.14,793,2,320,1.2
+4555,2018,7,9,19,30,27.9,1.73,0.083,0.62,16,152,22,6,4,4.3,12,0,86,12,0.286,22.13,87.89,0.95,0.14,794,2,341,0.9
+4556,2018,7,9,20,30,26.4,1.71,0.09,0.62,0,0,0,0,0,4.4,0,0,0,0,0.286,24.29,97.65,0.95,0.14,794,2.1,179,1
+4557,2018,7,9,21,30,25.5,1.7,0.097,0.62,0,0,0,0,0,5,0,0,0,0,0.286,26.69,105.88,0.95,0.14,794,2.1,15,0.8
+4558,2018,7,9,22,30,24.3,1.71,0.097,0.62,0,0,0,0,0,5.6,0,0,0,0,0.286,30.05,112.25,0.95,0.14,794,2.1,41,0.5
+4559,2018,7,9,23,30,23.3,1.72,0.095,0.62,0,0,0,0,8,6,0,0,0,0,0.286,32.61,116.18,0.95,0.14,794,2.1,138,0.5
+4560,2018,7,10,0,30,22.5,1.74,0.092,0.62,0,0,0,0,3,6.2,0,0,0,0,0.286,34.93,117.19,0.95,0.14,795,2.2,221,1.5
+4561,2018,7,10,1,30,21.8,1.74,0.092,0.62,0,0,0,0,7,6.9,0,0,0,0,0.286,38.07,115.14,0.96,0.14,795,2.2,228,2.6
+4562,2018,7,10,2,30,21.4,1.75,0.093,0.62,0,0,0,0,0,7.6,0,0,0,0,0.286,40.96,110.3,0.96,0.14,796,2.3,232,3.1
+4563,2018,7,10,3,30,20.9,1.74,0.094,0.62,0,0,0,0,0,8.1,0,0,0,0,0.285,43.59,103.22,0.97,0.14,796,2.3,234,3.2
+4564,2018,7,10,4,30,20.7,1.78,0.089,0.62,0,0,0,0,3,8.5,0,0,0,0,0.285,45.33,94.48,0.96,0.14,796,2.3,231,2.9
+4565,2018,7,10,5,30,21.9,1.82,0.08,0.62,30,343,63,0,0,9.1,30,343,0,63,0.285,43.96,84.46,0.96,0.14,796,2.3,227,3.3
+4566,2018,7,10,6,30,24.6,1.84,0.076,0.62,55,642,234,0,0,9.6,55,642,0,234,0.285,38.58,73.85,0.95,0.14,796,2.2,232,4.6
+4567,2018,7,10,7,30,27.3,1.85,0.075,0.62,70,782,429,0,0,9.7,70,782,0,429,0.285,33.14,62.7,0.95,0.14,796,2.2,238,5.2
+4568,2018,7,10,8,30,29.4,1.84,0.076,0.62,80,859,617,0,0,9,80,859,0,617,0.284,28,51.34,0.95,0.14,796,2.2,240,5.1
+4569,2018,7,10,9,30,31.2,1.84,0.075,0.62,88,906,781,0,0,8.4,88,906,0,781,0.284,24.18,40.08,0.95,0.14,796,2.2,240,4.7
+4570,2018,7,10,10,30,32.8,1.83,0.074,0.62,91,937,906,0,0,7.8,91,937,0,906,0.284,21.27,29.53,0.95,0.14,795,2.2,240,4.3
+4571,2018,7,10,11,30,33.9,1.99,0.065,0.62,89,957,982,0,0,7.4,89,957,0,982,0.284,19.5,21.15,0.95,0.14,795,2.1,241,4
+4572,2018,7,10,12,30,34.7,1.99,0.062,0.62,90,963,1003,0,0,7.1,90,963,0,1003,0.284,18.25,18.51,0.95,0.14,794,2.1,242,3.6
+4573,2018,7,10,13,30,35,1.99,0.059,0.62,87,960,966,1,0,6.7,132,886,11,944,0.284,17.5,23.64,0.95,0.14,793,2,244,3.1
+4574,2018,7,10,14,30,35.1,1.97,0.057,0.62,82,946,875,0,0,6.2,82,946,0,875,0.284,16.78,33.06,0.95,0.14,793,2,246,2.8
+4575,2018,7,10,15,30,34.7,1.98,0.055,0.62,76,918,737,0,0,5.4,173,715,0,688,0.285,16.25,43.96,0.95,0.14,792,1.9,248,2.5
+4576,2018,7,10,16,30,34,1.99,0.052,0.62,68,871,564,0,7,4.6,227,378,0,442,0.285,15.99,55.3,0.95,0.14,792,1.9,256,2.4
+4577,2018,7,10,17,30,32.7,1.99,0.05,0.62,57,788,370,0,8,3.9,151,83,0,184,0.285,16.34,66.63,0.94,0.13,791,1.8,274,2.2
+4578,2018,7,10,18,30,29.9,1.98,0.049,0.62,42,620,175,7,6,3.8,88,29,100,94,0.286,19.07,77.65,0.94,0.13,791,1.8,303,1.5
+4579,2018,7,10,19,30,27.1,1.94,0.051,0.62,15,189,22,6,6,5.4,13,1,86,13,0.286,25.01,87.95,0.95,0.13,791,1.9,171,0.9
+4580,2018,7,10,20,30,25.8,1.85,0.066,0.62,0,0,0,0,6,5.7,0,0,0,0,0.286,27.6,97.73,0.96,0.13,792,2.2,59,1.6
+4581,2018,7,10,21,30,24.3,1.77,0.091,0.62,0,0,0,0,6,7.7,0,0,0,0,0.286,34.69,105.97,0.97,0.13,793,2.5,109,3.2
+4582,2018,7,10,22,30,22.6,1.74,0.125,0.62,0,0,0,0,6,10.1,0,0,0,0,0.285,45.24,112.36,0.98,0.13,794,2.8,125,3.8
+4583,2018,7,10,23,30,21.7,1.7,0.165,0.62,0,0,0,0,8,11.4,0,0,0,0,0.285,51.81,116.31,0.98,0.13,794,2.8,136,2.5
+4584,2018,7,11,0,30,21.3,1.69,0.183,0.62,0,0,0,0,7,11.8,0,0,0,0,0.285,54.79,117.32,0.98,0.13,794,2.8,116,0.9
+4585,2018,7,11,1,30,21,1.68,0.193,0.62,0,0,0,0,7,12.1,0,0,0,0,0.285,56.83,115.27,0.98,0.13,794,2.9,65,0.4
+4586,2018,7,11,2,30,20.6,1.64,0.222,0.62,0,0,0,0,7,12.4,0,0,0,0,0.285,59.35,110.43,0.98,0.13,794,2.9,62,0.6
+4587,2018,7,11,3,30,20.1,1.61,0.251,0.62,0,0,0,0,4,12.7,0,0,0,0,0.286,62.24,103.35,0.99,0.13,794,3,111,0.6
+4588,2018,7,11,4,30,19.7,1.61,0.265,0.62,0,0,0,0,8,12.8,0,0,0,0,0.286,64.33,94.6,0.99,0.13,795,3,159,0.7
+4589,2018,7,11,5,30,19.9,1.6,0.278,0.62,37,148,51,7,4,13,29,0,100,29,0.286,64.26,84.57,0.99,0.13,795,3,197,1.1
+4590,2018,7,11,6,30,20.8,1.59,0.271,0.62,91,428,209,1,4,12.9,137,19,14,142,0.287,60.56,73.96,0.99,0.13,795,3,221,2
+4591,2018,7,11,7,30,21.6,1.6,0.25,0.62,118,615,399,0,0,12.5,133,568,0,393,0.287,56.17,62.81,0.99,0.13,796,2.9,230,2.6
+4592,2018,7,11,8,30,22.3,1.62,0.216,0.62,124,747,590,0,0,12,124,747,0,590,0.288,52.22,51.44,0.98,0.13,795,2.7,240,2.6
+4593,2018,7,11,9,30,23.7,1.69,0.167,0.62,120,838,760,0,0,11.4,120,838,0,760,0.289,46.02,40.19,0.98,0.13,795,2.6,250,2.2
+4594,2018,7,11,10,30,25.8,1.75,0.132,0.62,109,901,892,0,0,10.6,109,901,0,892,0.29,38.43,29.64,0.97,0.13,795,2.5,268,1.6
+4595,2018,7,11,11,30,28,1.69,0.081,0.62,96,943,975,0,0,9.6,96,943,0,975,0.291,31.61,21.29,0.96,0.13,794,2.3,306,1.1
+4596,2018,7,11,12,30,29.7,1.72,0.07,0.62,91,957,998,0,0,8.7,179,813,0,949,0.291,26.93,18.64,0.95,0.13,793,2.2,343,1
+4597,2018,7,11,13,30,30.8,1.74,0.061,0.62,86,959,964,0,0,7.8,86,959,0,964,0.292,23.9,23.74,0.95,0.13,792,2.1,347,0.9
+4598,2018,7,11,14,30,31.2,1.78,0.054,0.62,79,949,874,0,0,7.2,100,916,0,867,0.292,22.34,33.12,0.94,0.13,792,2,316,0.9
+4599,2018,7,11,15,30,31.1,1.79,0.049,0.62,74,921,736,0,3,6.6,325,257,0,510,0.292,21.59,44.01,0.94,0.13,791,1.9,293,1.3
+4600,2018,7,11,16,30,30.4,1.76,0.049,0.62,68,867,561,0,9,6.1,169,42,4,193,0.293,21.7,55.36,0.94,0.13,791,2,315,1.7
+4601,2018,7,11,17,30,29.1,1.72,0.055,0.62,60,768,364,0,9,5.9,70,1,0,70,0.293,23.09,66.69,0.95,0.13,791,2.1,174,2.2
+4602,2018,7,11,18,30,26.4,1.69,0.062,0.62,47,579,170,7,6,6.4,49,2,100,49,0.293,27.9,77.71,0.95,0.13,791,2.2,31,2.5
+4603,2018,7,11,19,30,23.6,1.68,0.071,0.62,16,153,21,6,6,7.9,11,1,86,11,0.294,36.7,88.01,0.96,0.13,792,2.3,59,2.9
+4604,2018,7,11,20,30,21.7,1.68,0.085,0.62,0,0,0,0,6,9.7,0,0,0,0,0.294,46.37,97.81,0.96,0.13,793,2.4,73,3.4
+4605,2018,7,11,21,30,20.6,1.7,0.093,0.62,0,0,0,0,8,10.9,0,0,0,0,0.294,53.75,106.07,0.96,0.13,794,2.4,77,3
+4606,2018,7,11,22,30,19.8,1.76,0.089,0.62,0,0,0,0,8,11.7,0,0,0,0,0.294,59.6,112.48,0.96,0.13,794,2.4,72,1.9
+4607,2018,7,11,23,30,18.9,1.81,0.082,0.62,0,0,0,0,8,12.2,0,0,0,0,0.294,65.26,116.43,0.96,0.13,794,2.4,64,1
+4608,2018,7,12,0,30,18.1,1.83,0.079,0.62,0,0,0,0,4,12.6,0,0,0,0,0.294,70.42,117.46,0.96,0.13,794,2.5,70,0.6
+4609,2018,7,12,1,30,17.4,1.83,0.078,0.62,0,0,0,0,0,12.9,0,0,0,0,0.294,74.67,115.41,0.96,0.13,794,2.5,83,0.6
+4610,2018,7,12,2,30,16.7,1.82,0.079,0.62,0,0,0,0,0,13,0,0,0,0,0.294,78.92,110.57,0.96,0.13,794,2.6,96,0.6
+4611,2018,7,12,3,30,16.1,1.81,0.08,0.62,0,0,0,0,0,13.2,0,0,0,0,0.294,82.83,103.48,0.96,0.13,794,2.6,106,0.5
+4612,2018,7,12,4,30,16,1.79,0.081,0.62,0,0,0,0,0,13.3,0,0,0,0,0.294,84.22,94.72,0.96,0.13,794,2.6,111,0.7
+4613,2018,7,12,5,30,17.3,1.77,0.083,0.62,29,319,59,7,4,13.7,20,0,100,20,0.294,79.32,84.68,0.96,0.13,795,2.6,143,1
+4614,2018,7,12,6,30,19.6,1.75,0.083,0.62,56,623,227,0,4,13.3,19,41,7,30,0.294,66.78,74.06,0.96,0.13,795,2.6,191,1.4
+4615,2018,7,12,7,30,21.8,1.74,0.079,0.62,71,770,422,0,4,12.3,122,0,0,122,0.294,54.96,62.91,0.96,0.13,795,2.6,210,1.6
+4616,2018,7,12,8,30,23.6,1.73,0.075,0.62,80,854,611,0,4,11.4,235,12,0,242,0.294,46.34,51.54,0.96,0.13,796,2.5,207,1.4
+4617,2018,7,12,9,30,25.3,1.72,0.07,0.62,84,907,776,0,0,10.8,84,907,0,776,0.293,40.14,40.3,0.95,0.13,795,2.4,191,1
+4618,2018,7,12,10,30,26.8,1.71,0.064,0.62,87,939,902,0,0,10.2,87,939,0,902,0.293,35.28,29.76,0.95,0.13,795,2.3,156,0.8
+4619,2018,7,12,11,30,28.1,1.66,0.061,0.62,87,958,979,0,0,9.4,87,958,0,979,0.292,31.07,21.42,0.95,0.13,795,2.2,124,1
+4620,2018,7,12,12,30,29.2,1.64,0.058,0.62,87,965,1001,0,0,8.5,87,965,0,1001,0.292,27.4,18.77,0.94,0.13,794,2.1,109,1.2
+4621,2018,7,12,13,30,29.9,1.61,0.058,0.62,86,961,965,0,0,7.6,86,961,0,965,0.292,24.7,23.83,0.94,0.13,794,2,106,1.4
+4622,2018,7,12,14,30,30.1,1.62,0.055,0.62,82,945,873,0,0,6.7,82,945,0,873,0.293,22.98,33.19,0.94,0.13,793,2,113,1.2
+4623,2018,7,12,15,30,29.9,1.61,0.057,0.62,78,912,733,0,7,5.9,170,711,0,681,0.293,22.01,44.07,0.94,0.13,793,2,142,0.7
+4624,2018,7,12,16,30,29.1,1.6,0.059,0.62,72,856,558,0,7,5.3,241,338,7,433,0.293,22.14,55.41,0.95,0.13,793,2,217,0.6
+4625,2018,7,12,17,30,27.9,1.6,0.062,0.62,62,761,362,0,7,5.1,77,653,29,335,0.294,23.36,66.75,0.95,0.13,793,2.1,270,1.2
+4626,2018,7,12,18,30,25.7,1.6,0.064,0.62,45,584,169,2,0,6.2,61,468,29,160,0.294,28.67,77.77,0.95,0.13,793,2.1,274,1.4
+4627,2018,7,12,19,30,23.2,1.6,0.063,0.62,16,163,21,2,0,10.1,15,123,29,19,0.295,43.55,88.08,0.94,0.13,794,2.1,280,1.3
+4628,2018,7,12,20,30,21.6,1.6,0.062,0.62,0,0,0,0,3,10,0,0,0,0,0.295,47.72,97.9,0.94,0.13,794,2,292,1.2
+4629,2018,7,12,21,30,20.4,1.59,0.062,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,52.16,106.17,0.94,0.13,795,2,305,1
+4630,2018,7,12,22,30,19.5,1.59,0.062,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,55.46,112.6,0.94,0.13,795,2,321,0.8
+4631,2018,7,12,23,30,18.9,1.58,0.064,0.62,0,0,0,0,0,10.2,0,0,0,0,0.295,57.2,116.57,0.94,0.13,795,1.9,340,0.8
+4632,2018,7,13,0,30,18.2,1.57,0.067,0.62,0,0,0,0,0,9.9,0,0,0,0,0.295,58.46,117.6,0.94,0.13,795,1.9,180,0.8
+4633,2018,7,13,1,30,17.6,1.56,0.069,0.62,0,0,0,0,3,9.5,0,0,0,0,0.295,59.21,115.56,0.94,0.13,795,1.9,15,0.8
+4634,2018,7,13,2,30,17,1.56,0.07,0.62,0,0,0,0,3,9.2,0,0,0,0,0.296,60.18,110.71,0.94,0.13,795,1.9,22,0.8
+4635,2018,7,13,3,30,16.5,1.56,0.071,0.62,0,0,0,0,0,8.9,0,0,0,0,0.296,60.98,103.61,0.94,0.13,795,1.8,29,0.8
+4636,2018,7,13,4,30,16.6,1.56,0.073,0.62,0,0,0,0,0,8.7,0,0,0,0,0.296,59.65,94.85,0.95,0.13,796,1.8,36,1
+4637,2018,7,13,5,30,18.3,1.55,0.076,0.62,30,331,60,0,0,8.6,30,331,0,60,0.296,53.2,84.8,0.95,0.13,796,1.9,41,1.6
+4638,2018,7,13,6,30,21.3,1.55,0.079,0.62,57,639,231,0,0,7.8,57,639,0,231,0.296,41.81,74.17,0.95,0.13,796,1.9,47,2.1
+4639,2018,7,13,7,30,24.4,1.55,0.079,0.62,72,782,427,0,0,6.9,72,782,0,427,0.297,32.66,63.02,0.95,0.13,797,1.9,53,2.2
+4640,2018,7,13,8,30,26.8,1.56,0.08,0.62,83,860,617,0,0,6.2,83,860,0,617,0.297,26.97,51.65,0.95,0.13,797,1.9,52,2.3
+4641,2018,7,13,9,30,28.6,1.57,0.08,0.62,91,908,782,0,0,6.3,91,908,0,782,0.297,24.33,40.41,0.95,0.13,797,1.9,46,2.2
+4642,2018,7,13,10,30,30,1.6,0.077,0.62,90,944,909,0,0,6.5,90,944,0,909,0.296,22.77,29.88,0.95,0.13,796,1.9,38,2.1
+4643,2018,7,13,11,30,31.2,1.76,0.057,0.62,86,968,986,0,0,6.6,86,968,0,986,0.296,21.45,21.57,0.95,0.13,796,1.9,29,2.1
+4644,2018,7,13,12,30,32,1.76,0.055,0.62,86,974,1007,0,0,6.5,86,974,0,1007,0.296,20.32,18.91,0.94,0.13,795,1.8,21,2.2
+4645,2018,7,13,13,30,32.5,1.75,0.052,0.62,83,972,971,0,0,6.1,83,972,0,971,0.296,19.22,23.94,0.94,0.13,795,1.8,19,2.4
+4646,2018,7,13,14,30,32.6,1.75,0.047,0.62,77,962,881,0,0,5.3,77,962,0,881,0.295,18.15,33.27,0.93,0.13,794,1.7,22,2.5
+4647,2018,7,13,15,30,32.3,1.72,0.044,0.62,71,938,744,0,0,4.4,71,938,0,744,0.295,17.25,44.14,0.93,0.13,794,1.6,25,2.7
+4648,2018,7,13,16,30,31.5,1.67,0.041,0.62,63,895,570,0,0,3.2,63,895,0,570,0.295,16.7,55.47,0.92,0.13,793,1.4,29,2.9
+4649,2018,7,13,17,30,30,1.62,0.038,0.62,53,817,375,0,0,2.2,53,817,0,375,0.295,16.84,66.81,0.91,0.13,794,1.3,34,2.7
+4650,2018,7,13,18,30,26.6,1.57,0.037,0.62,40,656,178,0,0,2.4,40,656,0,178,0.295,20.87,77.84,0.91,0.13,794,1.2,43,1.9
+4651,2018,7,13,19,30,23.2,1.53,0.036,0.62,15,212,22,0,0,5.7,15,212,0,22,0.296,32.33,88.16,0.91,0.13,794,1.2,51,1.3
+4652,2018,7,13,20,30,21.8,1.5,0.036,0.62,0,0,0,0,0,5,0,0,0,0,0.296,33.48,98,0.91,0.13,795,1.2,54,1.3
+4653,2018,7,13,21,30,21.1,1.48,0.037,0.62,0,0,0,0,3,4.6,0,0,0,0,0.297,33.86,106.29,0.91,0.13,795,1.2,53,1.3
+4654,2018,7,13,22,30,20.5,1.48,0.038,0.62,0,0,0,0,3,4.2,0,0,0,0,0.297,34.27,112.72,0.92,0.13,795,1.2,49,1.2
+4655,2018,7,13,23,30,20,1.48,0.04,0.62,0,0,0,0,3,3.9,0,0,0,0,0.297,34.61,116.71,0.92,0.13,795,1.3,46,1.2
+4656,2018,7,14,0,30,19.4,1.48,0.043,0.62,0,0,0,0,0,3.9,0,0,0,0,0.297,35.8,117.75,0.93,0.13,795,1.3,45,1.1
+4657,2018,7,14,1,30,18.6,1.48,0.047,0.62,0,0,0,0,0,4,0,0,0,0,0.297,37.99,115.71,0.93,0.13,795,1.4,44,1.1
+4658,2018,7,14,2,30,17.7,1.48,0.051,0.62,0,0,0,0,3,4.3,0,0,0,0,0.296,41.18,110.86,0.93,0.13,795,1.5,45,1
+4659,2018,7,14,3,30,16.8,1.48,0.053,0.62,0,0,0,0,3,4.8,0,0,0,0,0.295,44.91,103.75,0.94,0.13,795,1.5,50,0.9
+4660,2018,7,14,4,30,17,1.5,0.054,0.62,0,0,0,0,4,5.3,0,0,0,0,0.294,46.01,94.98,0.94,0.13,795,1.5,58,0.9
+4661,2018,7,14,5,30,19.1,1.52,0.055,0.62,27,374,60,0,0,6.3,27,374,0,60,0.293,43.14,84.92,0.93,0.13,795,1.6,64,1.1
+4662,2018,7,14,6,30,22.7,1.55,0.054,0.62,49,683,234,0,0,6.2,49,683,0,234,0.292,34.43,74.29,0.93,0.13,795,1.6,73,1.5
+4663,2018,7,14,7,30,26.4,1.58,0.052,0.62,62,821,433,0,0,5.8,153,483,0,371,0.291,26.78,63.13,0.93,0.13,795,1.7,88,1.5
+4664,2018,7,14,8,30,29,1.61,0.051,0.62,71,894,624,0,0,4.3,71,894,0,624,0.29,20.72,51.76,0.93,0.13,795,1.7,109,1.2
+4665,2018,7,14,9,30,30.8,1.62,0.052,0.62,78,933,787,0,0,3.8,78,933,0,787,0.29,18.13,40.52,0.93,0.13,795,1.8,165,0.9
+4666,2018,7,14,10,30,32,1.62,0.057,0.62,85,953,910,0,0,4.1,85,953,0,910,0.289,17.25,30.01,0.94,0.13,795,1.8,223,1.2
+4667,2018,7,14,11,30,32.9,1.63,0.061,0.62,90,961,983,0,0,4.4,90,961,0,983,0.288,16.75,21.71,0.94,0.13,794,1.9,244,1.7
+4668,2018,7,14,12,30,33.3,1.62,0.066,0.62,94,958,999,0,0,4.7,98,951,4,997,0.287,16.66,19.06,0.95,0.13,794,2,252,2.1
+4669,2018,7,14,13,30,33.1,1.59,0.071,0.62,93,946,957,1,3,5,304,576,18,830,0.286,17.21,24.05,0.96,0.13,794,2.2,253,2.8
+4670,2018,7,14,14,30,32.2,1.62,0.071,0.62,92,921,861,0,8,5.4,284,44,0,321,0.286,18.71,33.35,0.96,0.13,793,2.3,252,3.7
+4671,2018,7,14,15,30,30.6,1.6,0.08,0.62,90,878,719,0,6,6.2,279,24,0,296,0.286,21.56,44.21,0.97,0.13,794,2.5,258,4.5
+4672,2018,7,14,16,30,28.7,1.59,0.085,0.62,83,812,542,0,6,7.1,214,24,0,228,0.286,25.67,55.54,0.97,0.13,794,2.6,272,4.7
+4673,2018,7,14,17,30,27.1,1.59,0.094,0.62,71,708,349,0,6,7.9,124,10,0,128,0.286,29.82,66.88,0.97,0.13,794,2.7,291,4.3
+4674,2018,7,14,18,30,25.6,1.63,0.091,0.62,50,530,161,7,6,8.4,49,2,100,49,0.287,33.69,77.92,0.97,0.13,795,2.7,311,3.3
+4675,2018,7,14,19,30,24.2,1.67,0.083,0.62,13,117,17,6,4,8.8,7,0,86,7,0.287,37.54,88.24,0.96,0.13,795,2.6,332,2.2
+4676,2018,7,14,20,30,23.1,1.69,0.075,0.62,0,0,0,0,8,9,0,0,0,0,0.287,40.75,98.1,0.96,0.13,795,2.6,348,1.6
+4677,2018,7,14,21,30,22.2,1.68,0.07,0.62,0,0,0,0,8,8.9,0,0,0,0,0.287,42.72,106.4,0.95,0.13,795,2.5,354,1.3
+4678,2018,7,14,22,30,21.5,1.65,0.067,0.62,0,0,0,0,8,8.5,0,0,0,0,0.286,43.25,112.86,0.95,0.13,795,2.5,356,1.3
+4679,2018,7,14,23,30,20.7,1.63,0.065,0.62,0,0,0,0,4,8.1,0,0,0,0,0.286,44.13,116.86,0.94,0.13,795,2.6,356,1.2
+4680,2018,7,15,0,30,20,1.6,0.066,0.62,0,0,0,0,4,7.8,0,0,0,0,0.285,45.37,117.91,0.95,0.13,795,2.6,178,1.2
+4681,2018,7,15,1,30,19.2,1.58,0.069,0.62,0,0,0,0,3,8.1,0,0,0,0,0.285,48.69,115.86,0.95,0.13,795,2.6,5,1.1
+4682,2018,7,15,2,30,18.4,1.56,0.076,0.62,0,0,0,0,3,8.8,0,0,0,0,0.285,53.63,111.01,0.95,0.13,795,2.7,16,1.2
+4683,2018,7,15,3,30,17.7,1.53,0.086,0.62,0,0,0,0,4,9.5,0,0,0,0,0.285,58.56,103.89,0.96,0.13,796,2.7,31,1.3
+4684,2018,7,15,4,30,17.4,1.51,0.091,0.62,0,0,0,0,4,10,0,0,0,0,0.284,61.63,95.11,0.96,0.13,796,2.7,47,1.7
+4685,2018,7,15,5,30,17.6,1.5,0.092,0.62,30,282,54,7,4,10.5,16,0,100,16,0.283,63.05,85.04,0.96,0.13,797,2.7,62,2.2
+4686,2018,7,15,6,30,18.8,1.51,0.089,0.62,57,605,220,2,4,11.1,27,0,29,27,0.282,60.78,74.4,0.96,0.13,797,2.7,72,2.6
+4687,2018,7,15,7,30,20.7,1.51,0.082,0.62,72,765,416,0,4,11.2,43,0,0,43,0.282,54.51,63.24,0.95,0.13,797,2.5,74,2.3
+4688,2018,7,15,8,30,23,1.51,0.073,0.62,79,856,608,0,4,10.9,110,0,0,110,0.282,46.48,51.87,0.95,0.13,797,2.4,66,1.9
+4689,2018,7,15,9,30,25.2,1.5,0.067,0.62,84,911,775,0,4,10.3,123,0,0,123,0.281,39.19,40.64,0.94,0.13,797,2.2,52,1.6
+4690,2018,7,15,10,30,27.1,1.48,0.062,0.62,85,946,903,0,4,9.6,404,76,0,470,0.28,33.31,30.14,0.94,0.13,796,2.1,43,1.6
+4691,2018,7,15,11,30,28.6,1.47,0.054,0.62,85,967,982,0,3,8.7,357,516,0,836,0.279,28.82,21.87,0.94,0.13,796,2,43,1.8
+4692,2018,7,15,12,30,29.6,1.46,0.051,0.62,84,974,1004,0,0,8,84,974,0,1004,0.278,25.79,19.22,0.94,0.13,795,1.9,47,1.9
+4693,2018,7,15,13,30,30.3,1.46,0.05,0.62,82,970,967,0,0,7.3,82,970,0,967,0.278,23.75,24.17,0.94,0.13,795,1.8,53,2.1
+4694,2018,7,15,14,30,30.7,1.46,0.048,0.62,79,955,876,0,0,6.7,79,955,0,876,0.278,22.23,33.44,0.94,0.13,794,1.8,61,2.1
+4695,2018,7,15,15,30,30.6,1.45,0.049,0.62,74,925,736,0,0,6,74,925,0,736,0.278,21.32,44.28,0.94,0.13,793,1.8,67,2
+4696,2018,7,15,16,30,30,1.45,0.05,0.62,67,872,560,0,3,5.4,197,556,0,511,0.278,21.17,55.61,0.94,0.13,793,1.8,73,1.9
+4697,2018,7,15,17,30,28.9,1.45,0.052,0.62,59,780,364,0,3,4.9,159,371,11,304,0.278,21.82,66.96,0.95,0.13,793,1.8,85,1.7
+4698,2018,7,15,18,30,26.4,1.46,0.055,0.62,44,598,168,0,0,5,44,598,0,168,0.279,25.29,78,0.95,0.13,793,1.8,107,1.2
+4699,2018,7,15,19,30,23.8,1.46,0.058,0.62,14,142,18,0,0,7.9,14,142,0,18,0.279,36.28,88.33,0.95,0.13,794,1.8,132,0.9
+4700,2018,7,15,20,30,22.6,1.47,0.061,0.62,0,0,0,0,0,7.6,0,0,0,0,0.28,38.06,98.2,0.95,0.13,794,1.9,154,0.9
+4701,2018,7,15,21,30,21.8,1.48,0.064,0.62,0,0,0,0,0,7.7,0,0,0,0,0.281,40.32,106.52,0.95,0.13,794,2,173,0.9
+4702,2018,7,15,22,30,21.1,1.49,0.064,0.62,0,0,0,0,0,8,0,0,0,0,0.282,42.83,113,0.95,0.13,794,2,186,1
+4703,2018,7,15,23,30,20.4,1.51,0.063,0.62,0,0,0,0,0,8.3,0,0,0,0,0.283,45.67,117.01,0.95,0.13,794,2.1,191,1.1
+4704,2018,7,16,0,30,19.7,1.53,0.062,0.62,0,0,0,0,0,8.7,0,0,0,0,0.284,48.93,118.07,0.95,0.13,794,2.1,192,1
+4705,2018,7,16,1,30,19,1.54,0.064,0.62,0,0,0,0,0,9.1,0,0,0,0,0.285,52.58,116.03,0.95,0.13,795,2.2,194,1
+4706,2018,7,16,2,30,18.5,1.54,0.066,0.62,0,0,0,0,0,9.6,0,0,0,0,0.286,56.16,111.16,0.95,0.13,795,2.2,197,0.9
+4707,2018,7,16,3,30,17.8,1.54,0.067,0.62,0,0,0,0,4,10,0,0,0,0,0.286,60.34,104.03,0.95,0.13,795,2.3,200,0.9
+4708,2018,7,16,4,30,18,1.55,0.067,0.62,0,0,0,0,4,10.4,0,0,0,0,0.287,60.96,95.24,0.95,0.13,795,2.3,201,1
+4709,2018,7,16,5,30,19.5,1.55,0.069,0.62,27,316,54,7,4,10.6,29,0,100,29,0.287,56.55,85.16,0.96,0.13,796,2.4,208,1.4
+4710,2018,7,16,6,30,22.3,1.55,0.071,0.62,53,628,221,2,4,10.5,122,15,29,126,0.288,47.29,74.52,0.96,0.13,796,2.5,227,1.8
+4711,2018,7,16,7,30,25.3,1.55,0.073,0.62,69,773,416,0,0,10,69,773,0,416,0.288,38.04,63.35,0.96,0.13,796,2.5,248,1.9
+4712,2018,7,16,8,30,27.7,1.57,0.069,0.62,77,857,605,0,0,9.3,77,857,0,605,0.287,31.51,51.98,0.95,0.13,796,2.4,262,1.8
+4713,2018,7,16,9,30,29.6,1.59,0.064,0.62,82,909,771,3,0,8.9,163,788,39,760,0.286,27.44,40.75,0.95,0.13,796,2.4,272,1.7
+4714,2018,7,16,10,30,31.1,1.59,0.061,0.62,85,940,897,2,3,8.4,272,648,21,832,0.285,24.32,30.27,0.95,0.13,795,2.3,282,1.7
+4715,2018,7,16,11,30,32.1,1.58,0.056,0.62,88,955,973,0,4,7.8,347,274,7,601,0.284,22.1,22.02,0.96,0.13,795,2.3,289,1.8
+4716,2018,7,16,12,30,32.8,1.57,0.06,0.62,89,956,991,0,8,7.1,133,1,0,134,0.282,20.29,19.38,0.96,0.13,794,2.3,297,1.8
+4717,2018,7,16,13,30,32.9,1.56,0.062,0.62,87,951,954,0,7,6.6,307,451,0,718,0.281,19.44,24.29,0.96,0.13,793,2.3,307,1.9
+4718,2018,7,16,14,30,32.4,1.57,0.055,0.62,82,934,861,0,7,6.4,330,95,0,409,0.282,19.77,33.53,0.97,0.13,793,2.4,313,2.6
+4719,2018,7,16,15,30,30.8,1.55,0.059,0.62,81,893,719,0,8,6.7,182,8,0,188,0.283,22.1,44.36,0.97,0.13,793,2.5,318,4.1
+4720,2018,7,16,16,30,27.6,1.54,0.068,0.62,78,822,541,0,8,7.8,159,9,0,164,0.284,28.76,55.69,0.98,0.13,794,2.7,325,5.5
+4721,2018,7,16,17,30,23.7,1.53,0.084,0.62,69,709,346,0,4,9.7,180,246,11,276,0.285,41.14,67.04,0.98,0.13,795,2.9,334,5.4
+4722,2018,7,16,18,30,20.5,1.56,0.091,0.62,49,528,158,4,0,11.4,80,291,61,140,0.286,55.75,78.09,0.97,0.13,796,2.8,189,3.7
+4723,2018,7,16,19,30,19.1,1.6,0.076,0.62,13,117,16,6,3,11.7,12,2,86,12,0.287,62.27,88.42,0.96,0.13,796,2.4,67,2.7
+4724,2018,7,16,20,30,18.8,1.63,0.058,0.62,0,0,0,0,0,11.1,0,0,0,0,0.288,60.89,98.32,0.94,0.13,796,2.1,103,2.5
+4725,2018,7,16,21,30,18.3,1.66,0.049,0.62,0,0,0,0,0,10.7,0,0,0,0,0.288,61.13,106.65,0.94,0.13,796,1.9,116,1.6
+4726,2018,7,16,22,30,18,1.66,0.047,0.62,0,0,0,0,0,10.6,0,0,0,0,0.288,62.04,113.14,0.94,0.13,796,1.9,136,0.8
+4727,2018,7,16,23,30,17.7,1.67,0.047,0.62,0,0,0,0,0,10.6,0,0,0,0,0.288,63.03,117.17,0.94,0.13,796,1.9,192,0.5
+4728,2018,7,17,0,30,17.3,1.68,0.047,0.62,0,0,0,0,0,10.5,0,0,0,0,0.288,64.38,118.24,0.94,0.13,795,1.9,248,0.6
+4729,2018,7,17,1,30,16.8,1.68,0.049,0.62,0,0,0,0,0,10.5,0,0,0,0,0.288,66.21,116.19,0.94,0.13,795,2,268,0.7
+4730,2018,7,17,2,30,16.6,1.68,0.052,0.62,0,0,0,0,0,10.4,0,0,0,0,0.289,66.87,111.32,0.95,0.13,795,2.1,276,0.8
+4731,2018,7,17,3,30,16.3,1.68,0.055,0.62,0,0,0,0,0,10.4,0,0,0,0,0.289,68.03,104.18,0.95,0.13,795,2.2,273,0.8
+4732,2018,7,17,4,30,16.7,1.67,0.06,0.62,0,0,0,0,0,10.4,0,0,0,0,0.289,66.55,95.38,0.96,0.13,796,2.4,261,0.9
+4733,2018,7,17,5,30,18.1,1.62,0.067,0.62,26,311,52,6,3,10.6,30,64,79,35,0.29,61.48,85.28,0.96,0.13,796,2.5,249,1.4
+4734,2018,7,17,6,30,19.9,1.59,0.072,0.62,55,616,218,2,3,10.8,121,142,21,159,0.29,55.82,74.64,0.96,0.13,797,2.6,247,2.3
+4735,2018,7,17,7,30,21.5,1.56,0.084,0.62,74,753,410,0,0,11.5,74,753,0,410,0.289,52.98,63.47,0.96,0.13,797,2.6,251,2.9
+4736,2018,7,17,8,30,23.6,1.59,0.088,0.62,84,838,599,0,0,12.3,84,838,0,599,0.288,49.18,52.1,0.95,0.13,797,2.5,249,3.3
+4737,2018,7,17,9,30,26.4,1.72,0.082,0.62,91,893,766,0,0,12.2,91,893,0,766,0.287,41.4,40.87,0.94,0.13,796,2.4,245,3.4
+4738,2018,7,17,10,30,29,1.8,0.084,0.62,93,930,895,0,0,11.2,93,930,0,895,0.286,33.27,30.41,0.94,0.13,796,2.2,246,3.4
+4739,2018,7,17,11,30,30.7,1.84,0.068,0.62,92,954,975,0,0,9.8,92,954,0,975,0.286,27.44,22.18,0.94,0.13,795,2.1,251,3
+4740,2018,7,17,12,30,32,1.8,0.071,0.62,95,955,995,0,0,8.4,160,854,0,965,0.286,23.2,19.55,0.94,0.13,795,2,255,2.5
+4741,2018,7,17,13,30,32.7,1.75,0.081,0.62,104,932,953,0,6,7,449,102,0,542,0.285,20.26,24.42,0.95,0.13,794,2,261,2.2
+4742,2018,7,17,14,30,32.7,1.64,0.114,0.62,118,882,852,0,7,5.9,353,372,0,663,0.284,18.79,33.64,0.96,0.13,794,2.2,272,2.5
+4743,2018,7,17,15,30,31.7,1.56,0.154,0.62,121,820,706,0,7,5.5,226,553,7,621,0.283,19.36,44.45,0.96,0.13,794,2.3,280,2.8
+4744,2018,7,17,16,30,30.4,1.55,0.161,0.62,103,766,534,0,7,5.7,193,497,7,473,0.283,21.15,55.77,0.96,0.13,794,2.3,279,2.3
+4745,2018,7,17,17,30,29.3,1.58,0.122,0.62,75,699,347,0,0,5.9,127,510,0,325,0.282,22.77,67.12,0.95,0.13,794,2.2,259,1.3
+4746,2018,7,17,18,30,27.5,1.61,0.09,0.62,50,533,159,1,0,6.6,56,495,11,157,0.282,26.53,78.18,0.95,0.13,794,2.1,224,0.6
+4747,2018,7,17,19,30,25.7,1.58,0.089,0.62,13,107,16,5,6,8,12,1,71,12,0.282,32.42,88.52,0.95,0.13,794,2.1,229,0.3
+4748,2018,7,17,20,30,24.3,1.57,0.091,0.62,0,0,0,0,7,7.6,0,0,0,0,0.282,34.37,98.43,0.95,0.13,794,2,297,0.4
+4749,2018,7,17,21,30,22.8,1.6,0.088,0.62,0,0,0,0,7,7.1,0,0,0,0,0.283,36.36,106.79,0.94,0.13,795,1.9,348,0.8
+4750,2018,7,17,22,30,21.6,1.64,0.081,0.62,0,0,0,0,4,6.5,0,0,0,0,0.283,37.51,113.29,0.92,0.13,795,1.7,355,1.4
+4751,2018,7,17,23,30,20.3,1.7,0.073,0.62,0,0,0,0,7,5.9,0,0,0,0,0.283,39.12,117.34,0.9,0.13,795,1.6,357,1.8
+4752,2018,7,18,0,30,18.8,1.75,0.068,0.62,0,0,0,0,3,5.7,0,0,0,0,0.283,42.22,118.41,0.89,0.13,795,1.4,180,1.8
+4753,2018,7,18,1,30,17.5,1.8,0.068,0.62,0,0,0,0,7,5.6,0,0,0,0,0.283,45.4,116.37,0.88,0.13,795,1.3,4,1.6
+4754,2018,7,18,2,30,16.4,1.83,0.069,0.62,0,0,0,0,3,5.5,0,0,0,0,0.284,48.45,111.49,0.87,0.13,796,1.3,13,1.3
+4755,2018,7,18,3,30,15.6,1.85,0.071,0.62,0,0,0,0,0,5.6,0,0,0,0,0.284,51.23,104.34,0.87,0.13,796,1.2,24,1
+4756,2018,7,18,4,30,15.6,1.87,0.075,0.62,0,0,0,0,0,5.7,0,0,0,0,0.284,51.64,95.52,0.87,0.13,796,1.2,36,0.9
+4757,2018,7,18,5,30,17.6,1.88,0.081,0.62,25,320,51,0,0,6,25,320,0,51,0.284,46.51,85.41,0.87,0.13,796,1.3,49,1
+4758,2018,7,18,6,30,21.4,1.89,0.087,0.62,55,637,222,0,0,6.1,85,420,0,195,0.284,37.09,74.76,0.87,0.13,796,1.3,207,1
+4759,2018,7,18,7,30,25.2,1.89,0.09,0.62,72,785,421,0,0,4.3,113,657,0,405,0.285,26,63.58,0.87,0.13,796,1.3,336,1.4
+4760,2018,7,18,8,30,27.7,1.89,0.091,0.62,83,867,614,0,7,2.8,196,555,0,536,0.285,20.14,52.21,0.87,0.13,796,1.3,311,2.4
+4761,2018,7,18,9,30,29.5,1.88,0.09,0.62,91,916,782,0,7,2.3,177,712,0,714,0.286,17.56,41,0.87,0.13,796,1.3,309,3
+4762,2018,7,18,10,30,31,1.86,0.089,0.62,94,950,912,0,0,1.9,94,950,0,912,0.287,15.6,30.55,0.87,0.13,796,1.3,310,3.4
+4763,2018,7,18,11,30,32.1,1.83,0.075,0.62,93,970,990,0,0,1.2,221,737,0,903,0.287,13.99,22.35,0.87,0.13,795,1.3,314,3.6
+4764,2018,7,18,12,30,32.8,1.81,0.075,0.62,93,973,1009,0,3,0.6,297,543,7,808,0.288,12.83,19.72,0.88,0.13,795,1.3,319,3.5
+4765,2018,7,18,13,30,33.1,1.79,0.077,0.62,93,965,971,0,3,0,428,303,4,704,0.288,12.09,24.56,0.89,0.13,794,1.3,325,3.3
+4766,2018,7,18,14,30,33.1,1.74,0.078,0.62,92,944,877,0,3,-0.5,390,422,0,741,0.288,11.62,33.74,0.9,0.13,794,1.4,332,3
+4767,2018,7,18,15,30,32.6,1.72,0.082,0.62,87,909,735,0,3,-1.2,339,395,0,621,0.289,11.4,44.54,0.91,0.13,793,1.4,341,2.8
+4768,2018,7,18,16,30,31.7,1.71,0.082,0.62,78,854,557,0,3,-1.8,240,424,0,478,0.289,11.48,55.86,0.91,0.13,793,1.4,352,2.8
+4769,2018,7,18,17,30,30.2,1.69,0.08,0.62,65,761,360,0,3,-2.4,120,573,32,342,0.289,11.98,67.21,0.92,0.13,793,1.3,184,2.6
+4770,2018,7,18,18,30,27,1.67,0.076,0.62,46,579,164,6,4,-1.8,92,239,79,141,0.289,15.07,78.28,0.92,0.13,793,1.3,14,1.9
+4771,2018,7,18,19,30,23.6,1.63,0.072,0.62,13,129,16,5,3,-0.8,10,0,71,10,0.29,19.89,88.62,0.92,0.13,794,1.3,19,1.5
+4772,2018,7,18,20,30,21.9,1.58,0.067,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.29,20.23,98.56,0.92,0.13,794,1.2,18,1.6
+4773,2018,7,18,21,30,20.7,1.55,0.061,0.62,0,0,0,0,7,-3,0,0,0,0,0.29,20.18,106.93,0.92,0.13,794,1.1,20,1.6
+4774,2018,7,18,22,30,19.7,1.53,0.057,0.62,0,0,0,0,7,-3.4,0,0,0,0,0.29,20.8,113.45,0.92,0.13,794,1.1,22,1.6
+4775,2018,7,18,23,30,18.6,1.52,0.052,0.62,0,0,0,0,7,-3.3,0,0,0,0,0.29,22.39,117.51,0.91,0.13,794,1.1,24,1.5
+4776,2018,7,19,0,30,17.6,1.48,0.045,0.62,0,0,0,0,0,-3,0,0,0,0,0.289,24.38,118.59,0.91,0.13,794,1,28,1.3
+4777,2018,7,19,1,30,16.8,1.43,0.041,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.289,26.23,116.54,0.91,0.13,794,1,34,1.2
+4778,2018,7,19,2,30,16.6,1.38,0.042,0.62,0,0,0,0,7,-2.4,0,0,0,0,0.289,27.25,111.65,0.91,0.13,794,1,42,1.1
+4779,2018,7,19,3,30,16.7,1.36,0.046,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.289,27.42,104.49,0.91,0.13,794,1,51,1
+4780,2018,7,19,4,30,17.3,1.37,0.05,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.289,26.26,95.66,0.91,0.13,794,1,56,0.7
+4781,2018,7,19,5,30,19.3,1.37,0.052,0.62,25,357,53,0,0,-1.7,25,357,0,53,0.289,24.17,85.54,0.91,0.13,794,1,201,0.4
+4782,2018,7,19,6,30,22.8,1.39,0.055,0.62,49,689,229,0,0,-1.7,49,689,0,229,0.288,19.46,74.88,0.91,0.13,794,1,287,0.5
+4783,2018,7,19,7,30,26.7,1.42,0.057,0.62,64,830,432,0,0,-3.4,64,830,0,432,0.288,13.64,63.7,0.91,0.13,794,1,235,1.4
+4784,2018,7,19,8,30,29.5,1.45,0.06,0.62,74,903,626,0,0,-4.2,74,903,0,626,0.289,10.85,52.33,0.91,0.13,795,1,248,2.3
+4785,2018,7,19,9,30,31.2,1.48,0.062,0.62,81,946,794,0,0,-4,81,946,0,794,0.289,10.06,41.12,0.91,0.13,795,1.1,255,2.8
+4786,2018,7,19,10,30,32.6,1.5,0.063,0.62,87,970,921,0,0,-3.5,87,970,0,921,0.289,9.61,30.69,0.92,0.13,794,1.1,255,3
+4787,2018,7,19,11,30,33.7,1.57,0.065,0.62,90,981,996,0,0,-2.9,90,981,0,996,0.29,9.42,22.52,0.92,0.13,794,1.2,252,3.3
+4788,2018,7,19,12,30,34.4,1.6,0.065,0.62,89,984,1014,0,0,-2.3,89,984,0,1014,0.29,9.52,19.9,0.92,0.13,793,1.3,247,3.6
+4789,2018,7,19,13,30,34.7,1.64,0.056,0.62,86,975,972,0,0,-1.1,107,939,4,960,0.29,10.17,24.7,0.92,0.13,793,1.4,241,3.8
+4790,2018,7,19,14,30,34.4,1.66,0.06,0.62,86,946,872,1,0,0.6,236,669,11,792,0.29,11.75,33.86,0.93,0.13,792,1.7,236,4.1
+4791,2018,7,19,15,30,33.7,1.63,0.073,0.62,87,895,724,0,0,2.7,216,623,0,659,0.29,14.21,44.64,0.95,0.13,792,1.9,235,4.4
+4792,2018,7,19,16,30,32.4,1.61,0.084,0.62,83,820,542,0,3,4.7,223,460,7,480,0.29,17.59,55.96,0.95,0.13,792,2.2,238,4.5
+4793,2018,7,19,17,30,30.8,1.58,0.096,0.62,73,706,345,0,3,6,122,542,21,331,0.29,21.02,67.31,0.96,0.13,792,2.3,244,3.8
+4794,2018,7,19,18,30,28.5,1.56,0.1,0.62,50,515,154,7,7,6.4,100,129,100,126,0.291,24.75,78.38,0.95,0.13,792,2.2,258,2.2
+4795,2018,7,19,19,30,26.1,1.57,0.09,0.62,12,99,14,5,7,6.4,11,1,71,11,0.292,28.37,88.73,0.95,0.13,792,2,288,1.2
+4796,2018,7,19,20,30,24.6,1.56,0.079,0.62,0,0,0,0,6,4.7,0,0,0,0,0.292,27.68,98.69,0.94,0.13,793,1.7,320,1.5
+4797,2018,7,19,21,30,23.3,1.55,0.071,0.62,0,0,0,0,6,2.4,0,0,0,0,0.293,25.42,107.08,0.93,0.13,793,1.5,337,1.8
+4798,2018,7,19,22,30,21.9,1.54,0.065,0.62,0,0,0,0,6,0.5,0,0,0,0,0.293,24.15,113.62,0.92,0.13,794,1.2,346,1.9
+4799,2018,7,19,23,30,20.4,1.53,0.059,0.62,0,0,0,0,6,-0.5,0,0,0,0,0.293,24.62,117.69,0.91,0.13,794,1.1,352,1.6
+4800,2018,7,20,0,30,19.1,1.5,0.055,0.62,0,0,0,0,7,-0.8,0,0,0,0,0.293,26.15,118.78,0.91,0.13,794,0.9,181,1.4
+4801,2018,7,20,1,30,18,1.47,0.053,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.293,28.63,116.73,0.91,0.13,793,0.9,12,1.2
+4802,2018,7,20,2,30,17.2,1.45,0.053,0.62,0,0,0,0,7,0.1,0,0,0,0,0.293,31.48,111.83,0.91,0.13,793,0.8,24,1
+4803,2018,7,20,3,30,16.5,1.44,0.054,0.62,0,0,0,0,7,0.6,0,0,0,0,0.294,34.05,104.65,0.91,0.13,794,0.9,36,0.9
+4804,2018,7,20,4,30,16.4,1.44,0.057,0.62,0,0,0,0,0,0.7,0,0,0,0,0.294,34.62,95.81,0.91,0.13,794,0.9,46,0.8
+4805,2018,7,20,5,30,18.1,1.46,0.056,0.62,25,347,51,0,0,1,25,347,0,51,0.294,31.66,85.67,0.91,0.13,794,1,51,1
+4806,2018,7,20,6,30,21.8,1.48,0.057,0.62,50,680,226,0,0,0.3,50,680,0,226,0.295,24,75.01,0.91,0.13,795,1.1,41,1
+4807,2018,7,20,7,30,26,1.48,0.061,0.62,66,817,426,2,0,-1.7,132,618,21,405,0.296,16.06,63.82,0.91,0.13,795,1.1,189,0.8
+4808,2018,7,20,8,30,29.1,1.47,0.067,0.62,77,887,618,0,0,-3.5,108,807,0,600,0.296,11.71,52.45,0.92,0.13,795,1.2,213,0.4
+4809,2018,7,20,9,30,31,1.47,0.071,0.62,87,927,784,0,0,-3.4,87,927,0,784,0.296,10.58,41.25,0.92,0.13,795,1.3,120,0.5
+4810,2018,7,20,10,30,32.6,1.49,0.074,0.62,92,952,909,0,0,-3,97,944,4,908,0.296,9.95,30.83,0.92,0.13,794,1.4,166,1.2
+4811,2018,7,20,11,30,33.6,1.53,0.07,0.62,95,963,983,0,3,-2.6,280,700,0,926,0.296,9.69,22.69,0.93,0.13,794,1.5,175,1.9
+4812,2018,7,20,12,30,34,1.53,0.076,0.62,97,961,1000,0,3,-2.3,456,358,0,792,0.296,9.71,20.08,0.94,0.13,793,1.6,180,2.5
+4813,2018,7,20,13,30,34,1.55,0.078,0.62,94,957,962,0,4,-1.9,452,190,0,624,0.296,10,24.86,0.94,0.13,793,1.7,181,2.8
+4814,2018,7,20,14,30,33.9,1.65,0.061,0.62,84,948,870,1,3,-1.5,370,457,14,749,0.296,10.37,33.97,0.94,0.13,792,1.7,182,3
+4815,2018,7,20,15,30,33.5,1.69,0.057,0.62,78,917,729,0,3,-1.2,373,208,0,521,0.295,10.82,44.74,0.94,0.13,792,1.7,187,3.1
+4816,2018,7,20,16,30,32.6,1.69,0.059,0.62,71,859,551,0,4,-0.8,206,475,7,471,0.294,11.71,56.06,0.94,0.13,792,1.8,198,2.8
+4817,2018,7,20,17,30,31,1.67,0.064,0.62,61,759,353,0,4,-0.1,185,80,0,216,0.293,13.52,67.41,0.95,0.13,792,1.9,219,1.9
+4818,2018,7,20,18,30,28.1,1.68,0.063,0.62,43,574,158,7,4,2.8,64,1,100,64,0.293,19.62,78.49,0.95,0.13,792,1.9,280,1.1
+4819,2018,7,20,19,30,25.4,1.69,0.061,0.62,12,123,14,5,4,4.1,5,0,71,5,0.292,25.36,88.84,0.95,0.13,793,2,339,1.7
+4820,2018,7,20,20,30,23.9,1.67,0.064,0.62,0,0,0,0,4,5,0,0,0,0,0.293,29.48,98.83,0.95,0.13,793,2.2,178,2.3
+4821,2018,7,20,21,30,22.6,1.64,0.073,0.62,0,0,0,0,4,6.4,0,0,0,0,0.293,35.11,107.23,0.95,0.13,794,2.3,16,1.9
+4822,2018,7,20,22,30,22,1.63,0.082,0.62,0,0,0,0,4,7.2,0,0,0,0,0.294,38.43,113.79,0.96,0.13,794,2.5,46,1.2
+4823,2018,7,20,23,30,21.9,1.64,0.091,0.62,0,0,0,0,4,7.8,0,0,0,0,0.295,40.23,117.87,0.96,0.13,794,2.6,79,0.8
+4824,2018,7,21,0,30,21.8,1.67,0.1,0.62,0,0,0,0,4,8.3,0,0,0,0,0.295,41.91,118.97,0.96,0.13,794,2.7,109,0.5
+4825,2018,7,21,1,30,21.6,1.69,0.109,0.62,0,0,0,0,4,8.6,0,0,0,0,0.296,43.36,116.91,0.95,0.13,794,2.8,146,0.3
+4826,2018,7,21,2,30,21.6,1.71,0.115,0.62,0,0,0,0,4,8.9,0,0,0,0,0.296,44.12,112,0.95,0.13,794,2.8,167,0.4
+4827,2018,7,21,3,30,21.4,1.74,0.117,0.62,0,0,0,0,3,9,0,0,0,0,0.295,45.14,104.81,0.95,0.13,794,2.8,167,0.7
+4828,2018,7,21,4,30,21.2,1.79,0.118,0.62,0,0,0,0,4,9.2,0,0,0,0,0.295,46.15,95.96,0.94,0.13,794,2.7,164,0.9
+4829,2018,7,21,5,30,22.3,1.85,0.116,0.62,26,234,43,3,0,9.5,28,160,46,40,0.295,44.08,85.81,0.93,0.13,794,2.5,170,1.2
+4830,2018,7,21,6,30,24.7,1.9,0.113,0.62,61,567,206,0,0,10.1,61,567,0,206,0.295,39.62,75.14,0.93,0.13,794,2.4,195,1.5
+4831,2018,7,21,7,30,27.3,1.91,0.112,0.62,81,727,400,0,0,9.8,81,727,0,400,0.295,33.43,63.95,0.93,0.13,794,2.3,212,1.8
+4832,2018,7,21,8,30,29.3,1.89,0.113,0.62,95,811,588,0,0,9.1,185,582,4,539,0.294,28.36,52.57,0.94,0.13,794,2.4,206,2.4
+4833,2018,7,21,9,30,30.8,1.84,0.119,0.62,107,858,751,0,3,8.8,387,274,4,593,0.294,25.58,41.38,0.95,0.13,794,2.5,203,3.2
+4834,2018,7,21,10,30,32,1.78,0.119,0.62,107,898,877,1,3,8.7,359,419,18,718,0.293,23.68,30.98,0.96,0.13,794,2.6,208,3.7
+4835,2018,7,21,11,30,32.8,1.73,0.086,0.62,103,924,954,0,3,8.4,402,230,0,614,0.292,22.2,22.87,0.97,0.13,794,2.6,214,3.9
+4836,2018,7,21,12,30,33,1.66,0.096,0.62,109,920,972,2,7,8.1,283,629,25,873,0.291,21.47,20.28,0.97,0.13,793,2.7,218,3.9
+4837,2018,7,21,13,30,32.7,1.61,0.1,0.62,107,912,933,0,7,8.1,400,354,0,721,0.291,21.77,25.01,0.98,0.13,793,2.7,223,3.8
+4838,2018,7,21,14,30,31.9,1.6,0.093,0.62,101,894,841,0,7,8.3,286,550,0,741,0.291,23.13,34.1,0.98,0.13,793,2.8,236,3.7
+4839,2018,7,21,15,30,30.6,1.59,0.091,0.62,92,861,702,0,8,8.7,267,148,0,372,0.292,25.63,44.85,0.98,0.13,793,2.9,257,3.7
+4840,2018,7,21,16,30,28.6,1.61,0.084,0.62,81,802,528,0,6,9.4,110,3,0,112,0.292,30.11,56.16,0.98,0.13,793,3,276,4.1
+4841,2018,7,21,17,30,25.7,1.57,0.088,0.62,69,693,334,0,8,10.6,95,38,0,110,0.291,38.65,67.52,0.98,0.13,794,3.2,285,4.8
+4842,2018,7,21,18,30,22.7,1.57,0.09,0.62,47,504,147,7,4,12.3,70,5,100,71,0.291,51.7,78.61,0.98,0.13,795,3.3,290,4.3
+4843,2018,7,21,19,30,20.8,1.65,0.075,0.62,11,96,13,5,4,13.2,5,0,71,5,0.292,61.88,88.96,0.97,0.13,795,3.1,311,2.4
+4844,2018,7,21,20,30,20.1,1.77,0.056,0.62,0,0,0,0,7,13.4,0,0,0,0,0.294,65.21,98.97,0.96,0.13,795,2.7,204,1.1
+4845,2018,7,21,21,30,19.6,1.83,0.05,0.62,0,0,0,0,7,13.3,0,0,0,0,0.296,67.07,107.39,0.95,0.13,796,2.6,115,0.9
+4846,2018,7,21,22,30,19,1.85,0.055,0.62,0,0,0,0,7,13.6,0,0,0,0,0.297,70.67,113.96,0.95,0.13,796,2.6,171,0.7
+4847,2018,7,21,23,30,18.2,1.86,0.062,0.62,0,0,0,0,4,14,0,0,0,0,0.298,76.34,118.06,0.95,0.13,796,2.7,192,0.7
+4848,2018,7,22,0,30,17.6,1.87,0.065,0.62,0,0,0,0,4,14.3,0,0,0,0,0.298,80.77,119.16,0.95,0.13,797,2.7,197,0.7
+4849,2018,7,22,1,30,17.1,1.88,0.066,0.62,0,0,0,0,8,14.4,0,0,0,0,0.299,84.04,117.11,0.94,0.13,797,2.6,204,0.8
+4850,2018,7,22,2,30,16.8,1.88,0.066,0.62,0,0,0,0,8,14.4,0,0,0,0,0.299,85.7,112.19,0.94,0.13,796,2.6,215,0.8
+4851,2018,7,22,3,30,16.7,1.87,0.067,0.62,0,0,0,0,8,14.4,0,0,0,0,0.299,86.19,104.98,0.94,0.13,796,2.6,233,0.7
+4852,2018,7,22,4,30,17,1.85,0.068,0.62,0,0,0,0,4,14.3,0,0,0,0,0.299,84.39,96.11,0.94,0.13,796,2.6,260,0.8
+4853,2018,7,22,5,30,18.4,1.82,0.069,0.62,24,288,44,7,4,14.5,18,0,100,18,0.299,77.82,85.94,0.94,0.13,796,2.5,292,1.1
+4854,2018,7,22,6,30,20.6,1.83,0.066,0.62,50,628,210,3,7,14.4,103,271,43,172,0.298,67.75,75.27,0.94,0.13,796,2.5,326,1.6
+4855,2018,7,22,7,30,23.5,1.88,0.062,0.62,64,781,406,0,0,13.6,115,619,0,386,0.298,53.72,64.07,0.94,0.13,796,2.4,350,2.3
+4856,2018,7,22,8,30,26.2,1.91,0.062,0.62,76,858,596,0,0,11.7,106,787,0,583,0.298,40.32,52.7,0.94,0.13,796,2.4,357,2.9
+4857,2018,7,22,9,30,28,1.9,0.069,0.62,87,896,758,0,0,10.4,87,896,0,758,0.298,33.41,41.51,0.94,0.13,796,2.4,180,3.3
+4858,2018,7,22,10,30,29,1.85,0.086,0.62,100,914,882,0,0,9.9,100,914,0,882,0.298,30.37,31.13,0.95,0.13,796,2.4,2,3.4
+4859,2018,7,22,11,30,29.3,1.82,0.092,0.62,107,922,955,0,3,9.5,340,254,0,574,0.297,29.23,23.06,0.96,0.13,796,2.4,181,3.6
+4860,2018,7,22,12,30,29.3,1.82,0.107,0.62,111,920,973,0,0,9.4,154,842,0,943,0.296,28.85,20.47,0.95,0.13,796,2.5,358,3.8
+4861,2018,7,22,13,30,29.7,1.88,0.105,0.62,105,921,938,0,0,9.2,233,653,4,824,0.295,27.82,25.18,0.95,0.13,796,2.4,356,3.9
+4862,2018,7,22,14,30,29.9,1.97,0.085,0.62,94,912,848,0,0,8.8,195,714,0,785,0.295,26.89,34.23,0.94,0.13,796,2.4,355,3.8
+4863,2018,7,22,15,30,29.7,2.02,0.082,0.62,87,880,710,0,4,8.3,310,84,0,369,0.295,26.27,44.97,0.94,0.13,796,2.4,352,3.7
+4864,2018,7,22,16,30,28.9,2.03,0.082,0.62,79,821,535,0,0,7.8,155,614,25,496,0.295,26.51,56.27,0.94,0.13,795,2.4,346,3.8
+4865,2018,7,22,17,30,27.5,2.01,0.085,0.62,67,717,340,0,6,7.3,96,73,0,124,0.295,27.9,67.63,0.94,0.14,796,2.4,343,4.2
+4866,2018,7,22,18,30,25.3,2.01,0.088,0.62,47,522,149,7,4,7,40,1,100,40,0.296,31.15,78.73,0.94,0.14,796,2.4,347,4
+4867,2018,7,22,19,30,23.2,2,0.087,0.62,10,83,11,4,4,7.1,8,48,50,9,0.296,35.39,89.08,0.94,0.14,797,2.4,175,3.4
+4868,2018,7,22,20,30,21.9,1.99,0.084,0.62,0,0,0,0,4,6.9,0,0,0,0,0.297,37.93,99.11,0.94,0.14,797,2.4,6,2.9
+4869,2018,7,22,21,30,20.8,1.98,0.082,0.62,0,0,0,0,4,6.8,0,0,0,0,0.296,40.28,107.55,0.94,0.14,797,2.4,16,2.4
+4870,2018,7,22,22,30,19.8,1.96,0.081,0.62,0,0,0,0,3,6.9,0,0,0,0,0.296,43.01,114.15,0.94,0.14,797,2.4,20,2
+4871,2018,7,22,23,30,19.1,1.94,0.08,0.62,0,0,0,0,0,7.1,0,0,0,0,0.296,45.7,118.26,0.94,0.14,797,2.4,21,1.7
+4872,2018,7,23,0,30,18.3,1.92,0.079,0.62,0,0,0,0,4,7.5,0,0,0,0,0.295,49.2,119.37,0.94,0.14,797,2.4,20,1.6
+4873,2018,7,23,1,30,17.5,1.92,0.077,0.62,0,0,0,0,4,7.8,0,0,0,0,0.295,53.04,117.3,0.94,0.14,797,2.4,19,1.5
+4874,2018,7,23,2,30,16.9,1.92,0.076,0.62,0,0,0,0,6,8.2,0,0,0,0,0.294,56.56,112.37,0.94,0.14,797,2.4,18,1.6
+4875,2018,7,23,3,30,16.4,1.91,0.076,0.62,0,0,0,0,0,8.5,0,0,0,0,0.294,59.74,105.15,0.94,0.14,797,2.4,15,1.8
+4876,2018,7,23,4,30,16.3,1.9,0.078,0.62,0,0,0,0,3,8.8,0,0,0,0,0.293,61.23,96.26,0.95,0.14,797,2.4,12,2.3
+4877,2018,7,23,5,30,17.5,1.9,0.079,0.62,25,269,43,3,0,9.1,24,158,39,35,0.293,57.7,86.08,0.95,0.14,798,2.4,12,2.8
+4878,2018,7,23,6,30,20.1,1.9,0.079,0.62,53,607,206,0,0,9.3,69,410,7,172,0.293,49.78,75.4,0.95,0.14,798,2.4,18,3
+4879,2018,7,23,7,30,22.9,1.9,0.079,0.62,70,762,402,0,0,9,70,762,0,402,0.294,41.05,64.2,0.95,0.14,798,2.4,22,2.7
+4880,2018,7,23,8,30,25.4,1.9,0.078,0.62,81,846,592,0,0,8.3,99,797,0,581,0.293,33.8,52.82,0.95,0.14,798,2.4,189,2.1
+4881,2018,7,23,9,30,27.7,1.91,0.077,0.62,88,897,758,0,0,7.7,88,897,0,758,0.292,28.38,41.64,0.95,0.14,797,2.4,343,1.8
+4882,2018,7,23,10,30,29.6,1.91,0.074,0.62,89,933,886,0,0,7.4,89,933,0,886,0.291,24.88,31.29,0.95,0.14,797,2.3,322,1.9
+4883,2018,7,23,11,30,31.1,1.95,0.06,0.62,87,954,964,0,0,7.1,87,954,0,964,0.289,22.3,23.25,0.95,0.14,796,2.3,314,2.2
+4884,2018,7,23,12,30,32,1.93,0.061,0.62,91,955,984,0,0,6.7,103,939,7,981,0.288,20.58,20.68,0.95,0.14,796,2.3,310,2.4
+4885,2018,7,23,13,30,32.5,1.89,0.065,0.62,89,951,948,0,0,6.1,132,848,4,898,0.287,19.23,25.35,0.96,0.14,796,2.2,311,2.5
+4886,2018,7,23,14,30,32.7,1.87,0.058,0.62,82,940,858,0,3,5.3,316,330,0,588,0.287,18.02,34.37,0.96,0.14,795,2.1,317,2.6
+4887,2018,7,23,15,30,32.3,1.84,0.053,0.62,75,914,720,0,0,4.3,75,914,0,720,0.288,17.24,45.09,0.96,0.14,795,2,323,2.7
+4888,2018,7,23,16,30,31.4,1.79,0.048,0.62,66,867,546,0,7,3.4,187,548,0,490,0.289,16.96,56.39,0.96,0.14,795,2,328,2.7
+4889,2018,7,23,17,30,30,1.73,0.046,0.62,56,780,351,0,7,2.5,137,336,7,264,0.29,17.27,67.75,0.95,0.13,795,1.9,332,2.7
+4890,2018,7,23,18,30,27.1,1.68,0.044,0.62,39,603,156,7,8,2.1,79,11,100,81,0.291,19.87,78.85,0.95,0.13,795,1.8,338,1.9
+4891,2018,7,23,19,30,24.1,1.65,0.041,0.62,9,112,11,5,3,2.7,7,0,71,7,0.292,24.7,89.21,0.94,0.13,795,1.7,347,1.3
+4892,2018,7,23,20,30,22.6,1.62,0.04,0.62,0,0,0,0,0,1.9,0,0,0,0,0.293,25.68,99.27,0.94,0.13,796,1.7,355,1.5
+4893,2018,7,23,21,30,21.5,1.6,0.04,0.62,0,0,0,0,0,1.6,0,0,0,0,0.293,26.7,107.72,0.93,0.13,796,1.7,358,1.7
+4894,2018,7,23,22,30,20.6,1.6,0.042,0.62,0,0,0,0,0,1.6,0,0,0,0,0.294,28.31,114.33,0.93,0.13,797,1.7,180,2.1
+4895,2018,7,23,23,30,19.8,1.62,0.043,0.62,0,0,0,0,0,1.4,0,0,0,0,0.294,29.39,118.46,0.93,0.13,797,1.7,3,2.6
+4896,2018,7,24,0,30,19,1.64,0.045,0.62,0,0,0,0,0,0.9,0,0,0,0,0.295,29.63,119.57,0.93,0.13,797,1.7,8,2.9
+4897,2018,7,24,1,30,18.2,1.65,0.046,0.62,0,0,0,0,0,0.3,0,0,0,0,0.295,29.9,117.51,0.93,0.13,798,1.7,15,2.8
+4898,2018,7,24,2,30,17.4,1.65,0.048,0.62,0,0,0,0,0,0.5,0,0,0,0,0.295,31.84,112.56,0.94,0.13,798,1.7,21,2.3
+4899,2018,7,24,3,30,16.6,1.65,0.049,0.62,0,0,0,0,0,1.3,0,0,0,0,0.295,35.47,105.32,0.94,0.13,798,1.8,26,1.8
+4900,2018,7,24,4,30,16.5,1.66,0.051,0.62,0,0,0,0,0,2.2,0,0,0,0,0.295,38.22,96.42,0.94,0.13,798,1.8,32,1.7
+4901,2018,7,24,5,30,18,1.66,0.053,0.62,23,310,43,0,0,3.2,23,310,0,43,0.294,37.35,86.22,0.94,0.13,798,1.8,42,2
+4902,2018,7,24,6,30,21.3,1.68,0.052,0.62,47,657,211,0,0,4.2,47,657,0,211,0.294,32.63,75.53,0.94,0.13,798,1.9,56,2
+4903,2018,7,24,7,30,25.2,1.69,0.052,0.62,62,803,410,0,0,5,62,803,0,410,0.294,27.16,64.32,0.94,0.13,798,1.9,59,1.4
+4904,2018,7,24,8,30,27.9,1.69,0.055,0.62,72,880,602,0,0,4.3,72,880,0,602,0.293,22.05,52.95,0.94,0.13,798,1.9,183,0.6
+4905,2018,7,24,9,30,29.8,1.7,0.056,0.62,78,926,769,0,0,4.3,78,926,0,769,0.293,19.87,41.78,0.94,0.13,798,1.9,284,0.6
+4906,2018,7,24,10,30,31.3,1.71,0.054,0.62,81,955,896,0,0,4.4,81,955,0,896,0.292,18.37,31.44,0.94,0.13,798,1.9,258,1.2
+4907,2018,7,24,11,30,32.6,1.75,0.05,0.62,82,972,974,0,0,4.4,82,972,0,974,0.292,17.05,23.44,0.94,0.13,797,1.9,258,1.6
+4908,2018,7,24,12,30,33.4,1.75,0.048,0.62,82,976,994,0,0,4.3,82,976,0,994,0.292,16.15,20.89,0.94,0.13,796,1.9,258,1.9
+4909,2018,7,24,13,30,33.9,1.76,0.047,0.62,82,969,956,0,0,4,82,969,0,956,0.292,15.41,25.52,0.94,0.13,796,1.9,262,2.1
+4910,2018,7,24,14,30,34,1.74,0.052,0.62,80,949,862,0,0,3.6,80,949,0,862,0.292,14.86,34.51,0.94,0.13,795,1.9,269,2.1
+4911,2018,7,24,15,30,33.5,1.74,0.054,0.62,76,914,720,0,0,3.2,76,914,0,720,0.293,14.83,45.22,0.94,0.13,795,1.9,278,2.1
+4912,2018,7,24,16,30,32.7,1.72,0.059,0.62,71,853,542,0,0,2.8,111,743,0,521,0.293,15.17,56.51,0.95,0.13,795,1.9,292,2.2
+4913,2018,7,24,17,30,31.2,1.69,0.065,0.62,62,747,343,0,3,2.7,182,200,0,257,0.294,16.39,67.87,0.95,0.13,794,2,308,2.3
+4914,2018,7,24,18,30,28.4,1.67,0.07,0.62,44,543,148,1,0,3.5,52,489,14,145,0.295,20.24,78.98,0.96,0.13,795,2.1,322,1.7
+4915,2018,7,24,19,30,25.7,1.65,0.073,0.62,9,81,10,2,3,4.4,8,55,32,9,0.295,25.38,89.34,0.96,0.13,795,2.1,331,1.1
+4916,2018,7,24,20,30,24.7,1.64,0.073,0.62,0,0,0,0,3,4.2,0,0,0,0,0.296,26.45,99.43,0.96,0.13,795,2.1,332,1.1
+4917,2018,7,24,21,30,23.8,1.63,0.07,0.62,0,0,0,0,4,3.9,0,0,0,0,0.296,27.35,107.9,0.95,0.13,796,2.1,323,1.1
+4918,2018,7,24,22,30,22.7,1.63,0.063,0.62,0,0,0,0,7,3.8,0,0,0,0,0.296,29.06,114.53,0.95,0.13,796,2,311,1.1
+4919,2018,7,24,23,30,21.4,1.6,0.057,0.62,0,0,0,0,4,3.8,0,0,0,0,0.295,31.53,118.67,0.94,0.13,796,1.9,307,1.2
+4920,2018,7,25,0,30,20.3,1.56,0.055,0.62,0,0,0,0,4,4,0,0,0,0,0.294,34.15,119.79,0.94,0.13,796,1.9,313,1.4
+4921,2018,7,25,1,30,19.4,1.53,0.054,0.62,0,0,0,0,4,4.5,0,0,0,0,0.293,37.5,117.71,0.93,0.13,796,1.9,324,1.3
+4922,2018,7,25,2,30,18.6,1.51,0.055,0.62,0,0,0,0,0,5.1,0,0,0,0,0.293,41.14,112.75,0.93,0.13,796,2,342,1
+4923,2018,7,25,3,30,17.8,1.5,0.055,0.62,0,0,0,0,0,5.7,0,0,0,0,0.294,44.95,105.5,0.93,0.13,796,2,193,0.7
+4924,2018,7,25,4,30,17.5,1.51,0.057,0.62,0,0,0,0,0,6.3,0,0,0,0,0.295,47.86,96.58,0.93,0.13,796,2,41,0.9
+4925,2018,7,25,5,30,19.1,1.52,0.06,0.62,22,276,40,0,0,7,22,249,7,38,0.295,45.28,86.36,0.93,0.13,797,2.1,54,1.6
+4926,2018,7,25,6,30,22.3,1.52,0.064,0.62,49,625,204,0,0,7.3,49,625,0,204,0.295,37.89,75.67,0.93,0.13,797,2.1,61,2.3
+4927,2018,7,25,7,30,25.4,1.53,0.068,0.62,66,774,400,0,3,7.2,151,482,7,359,0.295,31.23,64.45,0.93,0.13,797,2.2,62,2.5
+4928,2018,7,25,8,30,27.9,1.54,0.07,0.62,79,853,591,0,3,6.9,275,373,7,499,0.293,26.44,53.08,0.93,0.13,797,2.2,57,2.2
+4929,2018,7,25,9,30,29.5,1.54,0.076,0.62,90,892,754,0,4,6.6,255,29,0,277,0.291,23.59,41.92,0.94,0.13,797,2.3,196,1.6
+4930,2018,7,25,10,30,29.4,1.53,0.088,0.62,100,914,878,0,4,6.4,376,48,0,417,0.289,23.5,31.6,0.95,0.13,796,2.4,323,1.9
+4931,2018,7,25,11,30,28.5,1.48,0.09,0.62,106,922,951,0,4,6.7,273,26,0,297,0.288,25.24,23.63,0.95,0.13,796,2.5,294,3
+4932,2018,7,25,12,30,27.7,1.48,0.104,0.62,111,919,968,1,4,7.6,408,106,57,507,0.288,28.17,21.1,0.96,0.13,796,2.6,272,3.6
+4933,2018,7,25,13,30,27.4,1.49,0.101,0.62,102,921,932,0,4,8.5,275,1,0,276,0.288,30.52,25.71,0.96,0.13,796,2.6,254,3.3
+4934,2018,7,25,14,30,28.4,1.43,0.073,0.62,88,921,846,0,3,8.7,420,208,0,591,0.289,29.07,34.66,0.95,0.13,796,2.5,243,2.5
+4935,2018,7,25,15,30,29.5,1.47,0.059,0.62,78,899,710,0,4,7.9,313,269,0,502,0.29,25.92,45.35,0.95,0.13,795,2.3,257,1.8
+4936,2018,7,25,16,30,29.9,1.49,0.056,0.62,71,846,536,0,7,6.9,220,322,0,397,0.289,23.67,56.63,0.95,0.13,795,2.2,289,1.9
+4937,2018,7,25,17,30,29.1,1.52,0.062,0.62,61,741,339,0,0,6.2,101,593,0,323,0.289,23.56,68,0.95,0.13,794,2.2,314,2.2
+4938,2018,7,25,18,30,27,1.58,0.069,0.62,45,536,146,0,0,6.2,45,536,0,146,0.289,26.7,79.12,0.94,0.13,794,2.1,334,1.9
+4939,2018,7,25,19,30,24.8,1.64,0.075,0.62,8,76,9,0,0,6.3,8,76,0,9,0.289,30.6,89.47,0.94,0.13,795,2,351,1.9
+4940,2018,7,25,20,30,23.3,1.69,0.078,0.62,0,0,0,0,0,6.1,0,0,0,0,0.289,32.98,99.59,0.93,0.13,795,2,186,2.4
+4941,2018,7,25,21,30,21.8,1.73,0.072,0.62,0,0,0,0,0,6.5,0,0,0,0,0.289,36.98,108.08,0.93,0.13,796,1.9,19,2.6
+4942,2018,7,25,22,30,20.1,1.74,0.065,0.62,0,0,0,0,7,7.3,0,0,0,0,0.29,43.42,114.73,0.93,0.13,796,1.9,29,2.1
+4943,2018,7,25,23,30,18.8,1.74,0.061,0.62,0,0,0,0,0,8.1,0,0,0,0,0.29,49.74,118.88,0.93,0.13,796,1.9,32,1.2
+4944,2018,7,26,0,30,18.1,1.74,0.06,0.62,0,0,0,0,0,8.6,0,0,0,0,0.289,53.72,120,0.92,0.13,796,1.9,196,0.7
+4945,2018,7,26,1,30,17.4,1.75,0.066,0.62,0,0,0,0,0,8.8,0,0,0,0,0.289,56.96,117.92,0.91,0.13,796,1.9,343,0.5
+4946,2018,7,26,2,30,16.8,1.83,0.1,0.62,0,0,0,0,7,8.7,0,0,0,0,0.288,58.99,112.95,0.9,0.13,796,1.9,328,0.5
+4947,2018,7,26,3,30,16.5,1.92,0.2,0.62,0,0,0,0,7,8.6,0,0,0,0,0.287,59.41,105.68,0.91,0.13,796,1.9,340,0.5
+4948,2018,7,26,4,30,16.6,1.92,0.348,0.62,0,0,0,0,7,8.4,0,0,0,0,0.288,58.52,96.74,0.92,0.13,796,1.9,183,0.6
+4949,2018,7,26,5,30,17.8,1.9,0.415,0.62,22,80,27,2,0,8.5,22,61,21,26,0.288,54.58,86.5,0.93,0.13,797,1.9,22,1.4
+4950,2018,7,26,6,30,20,1.88,0.401,0.62,91,350,177,0,0,8.9,104,272,21,171,0.289,48.77,75.8,0.93,0.13,797,1.9,28,2.3
+4951,2018,7,26,7,30,22.6,1.86,0.333,0.62,123,575,370,0,7,9.2,210,269,0,325,0.289,42.34,64.58,0.92,0.13,797,1.9,24,2.6
+4952,2018,7,26,8,30,25.2,1.86,0.255,0.62,130,731,568,0,0,8.6,202,582,0,551,0.289,34.77,53.21,0.92,0.13,797,1.9,15,2.6
+4953,2018,7,26,9,30,27.5,1.83,0.196,0.62,128,830,744,0,0,7.5,137,814,0,741,0.288,28.28,42.06,0.92,0.13,797,1.8,9,2.7
+4954,2018,7,26,10,30,29.5,1.78,0.16,0.62,113,907,884,0,0,6.4,113,907,0,884,0.287,23.37,31.77,0.92,0.13,797,1.7,7,2.8
+4955,2018,7,26,11,30,30.9,1.73,0.078,0.62,96,958,972,0,0,5.2,96,958,0,972,0.286,19.8,23.84,0.93,0.13,796,1.6,6,2.9
+4956,2018,7,26,12,30,31.9,1.69,0.075,0.62,97,962,993,0,0,3.8,259,660,0,874,0.285,17.02,21.32,0.93,0.13,795,1.6,6,3.1
+4957,2018,7,26,13,30,32.5,1.65,0.078,0.62,94,957,955,0,0,2.6,283,619,0,840,0.284,15.1,25.9,0.93,0.13,795,1.6,6,3.2
+4958,2018,7,26,14,30,32.5,1.58,0.072,0.62,90,940,862,0,0,1.6,90,940,0,862,0.283,14.03,34.82,0.93,0.13,794,1.6,182,3.2
+4959,2018,7,26,15,30,32.1,1.53,0.076,0.62,87,902,719,0,0,0.7,87,902,43,719,0.284,13.42,45.49,0.94,0.13,794,1.6,356,3.1
+4960,2018,7,26,16,30,31.2,1.5,0.081,0.62,80,838,539,1,0,-0.1,80,838,100,539,0.284,13.34,56.77,0.94,0.13,793,1.6,347,2.9
+4961,2018,7,26,17,30,29.6,1.47,0.086,0.62,70,726,340,0,0,-0.7,70,726,43,340,0.285,14.07,68.14,0.95,0.14,793,1.6,338,2.1
+4962,2018,7,26,18,30,27.1,1.46,0.093,0.62,49,510,144,6,7,0.2,87,209,93,126,0.285,17.36,79.26,0.95,0.14,794,1.6,333,1.2
+4963,2018,7,26,19,30,25.1,1.48,0.096,0.62,9,62,9,4,3,1.1,6,1,57,6,0.286,20.87,89.61,0.95,0.14,794,1.6,334,0.8
+4964,2018,7,26,20,30,23.8,1.52,0.093,0.62,0,0,0,0,7,0.7,0,0,0,0,0.286,21.79,99.76,0.94,0.14,794,1.5,342,0.9
+4965,2018,7,26,21,30,22.4,1.58,0.086,0.62,0,0,0,0,7,0.3,0,0,0,0,0.286,23.05,108.27,0.93,0.14,794,1.5,350,1
+4966,2018,7,26,22,30,21,1.63,0.081,0.62,0,0,0,0,7,0,0,0,0,0,0.286,24.54,114.94,0.93,0.14,794,1.4,355,1.2
+4967,2018,7,26,23,30,19.8,1.67,0.076,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.286,26.21,119.1,0.92,0.14,794,1.4,358,1.1
+4968,2018,7,27,0,30,18.8,1.69,0.077,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.287,28,120.23,0.92,0.14,794,1.5,355,1
+4969,2018,7,27,1,30,18.1,1.69,0.09,0.62,0,0,0,0,0,0.1,0,0,0,0,0.288,29.79,118.14,0.92,0.14,794,1.6,348,1.2
+4970,2018,7,27,2,30,17.6,1.68,0.115,0.62,0,0,0,0,0,1.1,0,0,0,0,0.289,32.82,113.15,0.92,0.14,794,1.7,348,2
+4971,2018,7,27,3,30,17,1.67,0.143,0.62,0,0,0,0,0,3.2,0,0,0,0,0.29,39.72,105.86,0.92,0.14,795,1.8,180,2.2
+4972,2018,7,27,4,30,16.5,1.69,0.186,0.62,0,0,0,0,7,5.3,0,0,0,0,0.291,47.55,96.91,0.93,0.14,795,1.9,18,1.6
+4973,2018,7,27,5,30,17.6,1.71,0.256,0.62,22,98,28,7,7,6.4,23,1,100,23,0.291,47.78,86.65,0.93,0.14,795,1.9,42,1.6
+4974,2018,7,27,6,30,20.4,1.74,0.28,0.62,83,405,181,0,0,6.5,92,320,0,170,0.292,40.46,75.94,0.93,0.14,795,1.8,55,1.5
+4975,2018,7,27,7,30,23.9,1.78,0.257,0.62,115,605,373,0,0,5.7,135,532,0,362,0.291,30.85,64.72,0.92,0.14,795,1.8,177,0.9
+4976,2018,7,27,8,30,26.9,1.81,0.244,0.62,135,718,564,0,4,4.5,330,202,0,451,0.29,23.85,53.35,0.92,0.14,795,1.8,287,1.3
+4977,2018,7,27,9,30,29.1,1.82,0.245,0.62,157,774,730,0,0,3.8,224,652,0,707,0.289,19.88,42.2,0.93,0.14,795,1.8,271,2.2
+4978,2018,7,27,10,30,30.7,1.8,0.273,0.62,173,804,855,0,3,3.2,369,492,0,787,0.289,17.46,31.93,0.93,0.14,794,1.8,269,2.7
+4979,2018,7,27,11,30,31.8,1.76,0.269,0.62,186,815,930,0,0,3,301,416,4,681,0.29,16.11,24.04,0.94,0.14,794,1.8,270,2.8
+4980,2018,7,27,12,30,32.2,1.74,0.313,0.62,210,788,943,0,6,2.8,132,0,0,132,0.29,15.59,21.55,0.95,0.14,793,1.9,273,3
+4981,2018,7,27,13,30,31.7,1.7,0.382,0.62,231,738,894,0,6,3,333,20,0,351,0.291,16.22,26.09,0.95,0.14,793,2,282,3.4
+4982,2018,7,27,14,30,30.2,1.7,0.446,0.62,219,708,799,0,6,3.9,345,76,0,407,0.291,18.79,34.98,0.94,0.14,794,2.1,297,3.1
+4983,2018,7,27,15,30,29.2,1.73,0.354,0.62,163,728,672,0,6,4.7,258,28,0,278,0.292,21.02,45.63,0.93,0.14,793,2,154,1.8
+4984,2018,7,27,16,30,28.8,1.78,0.212,0.62,117,721,511,0,6,4.6,169,13,0,176,0.292,21.5,56.9,0.92,0.14,793,1.9,28,0.9
+4985,2018,7,27,17,30,27.8,1.78,0.185,0.62,91,614,318,0,6,4.3,96,4,0,97,0.292,22.24,68.28,0.92,0.14,793,1.9,73,1
+4986,2018,7,27,18,30,25.2,1.78,0.187,0.62,58,396,131,7,7,4.3,96,75,100,110,0.293,26.03,79.41,0.92,0.14,793,1.8,98,1.6
+4987,2018,7,27,19,30,22.2,1.8,0.187,0.62,7,36,7,0,0,5.3,7,36,0,7,0.294,33.42,89.75,0.91,0.14,793,1.7,103,1.9
+4988,2018,7,27,20,30,20.5,1.83,0.178,0.62,0,0,0,0,0,6.4,0,0,0,0,0.294,39.76,99.94,0.91,0.14,793,1.6,99,1.7
+4989,2018,7,27,21,30,19.2,1.85,0.167,0.62,0,0,0,0,0,6.7,0,0,0,0,0.294,44.05,108.47,0.9,0.14,793,1.5,85,1.2
+4990,2018,7,27,22,30,18.1,1.87,0.159,0.62,0,0,0,0,0,6.5,0,0,0,0,0.293,46.74,115.15,0.89,0.14,794,1.4,67,1
+4991,2018,7,27,23,30,17.2,1.89,0.151,0.62,0,0,0,0,0,6.4,0,0,0,0,0.292,49.15,119.33,0.89,0.14,794,1.4,54,0.9
+4992,2018,7,28,0,30,16.4,1.89,0.143,0.62,0,0,0,0,0,6.6,0,0,0,0,0.291,52.26,120.46,0.89,0.14,794,1.4,45,1
+4993,2018,7,28,1,30,15.7,1.89,0.136,0.62,0,0,0,0,0,6.9,0,0,0,0,0.291,55.93,118.36,0.89,0.14,794,1.4,42,1.2
+4994,2018,7,28,2,30,14.9,1.87,0.129,0.62,0,0,0,0,0,7.4,0,0,0,0,0.291,60.62,113.35,0.89,0.14,794,1.4,46,1.2
+4995,2018,7,28,3,30,14.2,1.86,0.125,0.62,0,0,0,0,7,7.7,0,0,0,0,0.292,64.96,106.04,0.9,0.14,794,1.4,53,1.1
+4996,2018,7,28,4,30,14.1,1.85,0.125,0.62,0,0,0,0,4,7.9,0,0,0,0,0.292,66.38,97.07,0.9,0.14,795,1.4,61,1.1
+4997,2018,7,28,5,30,15.9,1.84,0.129,0.62,21,176,31,7,4,7.9,15,0,100,15,0.293,59.21,86.79,0.9,0.14,795,1.5,72,1.2
+4998,2018,7,28,6,30,19.5,1.85,0.14,0.62,64,524,190,0,0,7.8,72,422,7,174,0.294,46.57,76.08,0.91,0.14,795,1.6,145,1.4
+4999,2018,7,28,7,30,22.9,1.85,0.166,0.62,99,661,380,0,0,6.9,162,428,0,344,0.293,35.64,64.85,0.92,0.14,796,1.7,221,2.9
+5000,2018,7,28,8,30,24.6,1.82,0.227,0.62,135,724,566,0,0,6,135,724,0,566,0.293,30.23,53.48,0.93,0.14,796,1.7,229,5.3
+5001,2018,7,28,9,30,25.1,1.79,0.258,0.62,150,790,734,0,0,5.8,150,790,0,734,0.292,28.95,42.35,0.93,0.14,796,1.7,224,6.1
+5002,2018,7,28,10,30,26.4,1.81,0.211,0.62,133,875,874,0,0,5.2,133,875,0,874,0.292,25.7,32.1,0.92,0.14,796,1.6,221,5.8
+5003,2018,7,28,11,30,28.4,1.67,0.116,0.62,115,928,961,0,0,4.2,115,928,0,961,0.291,21.33,24.25,0.92,0.14,795,1.6,220,5.4
+5004,2018,7,28,12,30,29.9,1.72,0.123,0.62,121,923,978,0,7,3.7,282,601,0,840,0.29,18.84,21.78,0.93,0.14,794,1.6,219,5.2
+5005,2018,7,28,13,30,30.8,1.7,0.136,0.62,131,894,933,0,6,3.6,340,15,0,353,0.289,17.81,26.29,0.93,0.14,794,1.8,222,5
+5006,2018,7,28,14,30,31,1.7,0.176,0.62,144,840,831,0,6,3.4,157,1,0,158,0.29,17.42,35.15,0.95,0.14,793,1.9,231,4.8
+5007,2018,7,28,15,30,30.6,1.62,0.217,0.62,144,774,684,0,7,3.3,349,254,0,526,0.291,17.64,45.78,0.95,0.14,793,2,241,4.5
+5008,2018,7,28,16,30,29.8,1.63,0.218,0.62,123,707,508,0,7,3.3,262,212,0,377,0.292,18.42,57.05,0.95,0.14,792,2,246,3.9
+5009,2018,7,28,17,30,28.5,1.69,0.199,0.62,95,600,316,0,7,3,164,64,0,188,0.293,19.47,68.42,0.94,0.14,792,1.9,252,2.7
+5010,2018,7,28,18,30,25.6,1.75,0.19,0.62,57,402,130,4,0,3.1,74,278,50,124,0.294,23.22,79.56,0.93,0.14,792,1.7,266,1.4
+5011,2018,7,28,19,30,22.7,1.86,0.162,0.62,5,32,5,0,0,2.9,5,32,0,5,0.296,27.35,89.89,0.91,0.14,792,1.5,287,1
+5012,2018,7,28,20,30,21.2,1.95,0.16,0.62,0,0,0,0,0,2.1,0,0,0,0,0.297,28.25,100.12,0.89,0.14,793,1.3,305,1
+5013,2018,7,28,21,30,20.1,2.02,0.187,0.62,0,0,0,0,0,1.5,0,0,0,0,0.298,28.93,108.67,0.88,0.14,793,1.3,315,1
+5014,2018,7,28,22,30,19.3,2.07,0.231,0.62,0,0,0,0,0,1.3,0,0,0,0,0.299,30.07,115.37,0.88,0.14,794,1.3,319,0.8
+5015,2018,7,28,23,30,18.3,2.1,0.281,0.62,0,0,0,0,0,1.6,0,0,0,0,0.299,32.55,119.56,0.88,0.14,794,1.3,316,0.7
+5016,2018,7,29,0,30,17.1,2.11,0.322,0.62,0,0,0,0,0,2.2,0,0,0,0,0.299,36.86,120.69,0.88,0.14,794,1.4,314,0.6
+5017,2018,7,29,1,30,16.1,2.1,0.35,0.62,0,0,0,0,0,3.3,0,0,0,0,0.3,42.32,118.59,0.89,0.14,795,1.5,326,0.5
+5018,2018,7,29,2,30,15.3,2.08,0.353,0.62,0,0,0,0,0,4.6,0,0,0,0,0.3,48.95,113.56,0.89,0.14,795,1.6,182,0.4
+5019,2018,7,29,3,30,14.6,2.07,0.345,0.62,0,0,0,0,0,5.8,0,0,0,0,0.3,55.5,106.23,0.89,0.14,795,1.6,43,0.4
+5020,2018,7,29,4,30,14.2,2.07,0.326,0.62,0,0,0,0,0,6.6,0,0,0,0,0.299,60.43,97.24,0.89,0.14,795,1.6,68,0.5
+5021,2018,7,29,5,30,15.4,2.07,0.297,0.62,19,106,25,0,0,7.4,19,106,0,25,0.299,58.76,86.94,0.89,0.14,795,1.6,74,0.6
+5022,2018,7,29,6,30,18.5,2.06,0.272,0.62,75,423,176,0,0,7.8,75,423,0,176,0.299,49.88,76.22,0.89,0.14,795,1.5,166,0.6
+5023,2018,7,29,7,30,22.1,2.06,0.254,0.62,108,618,369,0,0,6.6,108,618,0,369,0.299,36.78,64.98,0.88,0.14,795,1.5,268,1.1
+5024,2018,7,29,8,30,25.1,2.06,0.245,0.62,128,734,563,0,0,4.9,128,734,0,563,0.299,27.19,53.62,0.88,0.14,795,1.4,282,2.2
+5025,2018,7,29,9,30,27.5,2.06,0.233,0.62,138,809,735,0,0,3.6,138,809,0,735,0.299,21.53,42.49,0.87,0.14,795,1.3,291,2.6
+5026,2018,7,29,10,30,29.5,2.06,0.218,0.62,154,836,861,0,0,2.2,154,836,0,861,0.299,17.35,32.27,0.87,0.14,794,1.3,295,2.9
+5027,2018,7,29,11,30,31,2.17,0.293,0.62,173,836,934,0,0,0.6,173,836,0,934,0.299,14.19,24.46,0.87,0.14,794,1.2,303,3.2
+5028,2018,7,29,12,30,31.9,2.15,0.282,0.62,170,850,958,0,0,-1.2,170,850,0,958,0.299,11.85,22.01,0.87,0.14,793,1.2,312,3.8
+5029,2018,7,29,13,30,32.3,2.12,0.263,0.62,160,856,926,0,0,-2.8,160,856,0,926,0.299,10.26,26.5,0.88,0.14,793,1.1,321,4.4
+5030,2018,7,29,14,30,32.1,2.12,0.229,0.62,149,839,834,0,0,-4,149,839,0,834,0.298,9.51,35.32,0.88,0.14,793,1.1,329,4.8
+5031,2018,7,29,15,30,31.4,2.13,0.248,0.62,144,781,687,0,0,-4.7,144,781,0,687,0.297,9.42,45.94,0.88,0.14,793,1.1,336,4.9
+5032,2018,7,29,16,30,30.2,2.14,0.271,0.62,130,695,506,0,0,-5.1,130,695,0,506,0.297,9.8,57.2,0.88,0.14,793,1.1,343,5
+5033,2018,7,29,17,30,28.2,2.16,0.278,0.62,102,569,310,0,0,-5.2,102,569,0,310,0.296,10.87,68.57,0.88,0.14,793,1.1,349,4.6
+5034,2018,7,29,18,30,24.9,2.16,0.272,0.62,58,364,123,0,0,-4.6,58,364,0,123,0.296,13.82,79.71,0.88,0.14,794,1.1,356,3.6
+5035,2018,7,29,19,30,21.9,2.15,0.239,0.62,4,26,4,0,0,-3.4,4,26,0,4,0.297,18.19,90.04,0.88,0.14,794,1.2,188,2.9
+5036,2018,7,29,20,30,20.1,2.1,0.191,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.297,23.61,100.3,0.88,0.14,795,1.3,25,3.6
+5037,2018,7,29,21,30,18.7,2.05,0.152,0.62,0,0,0,0,0,2.3,0,0,0,0,0.297,33.52,108.87,0.89,0.14,796,1.4,38,4.5
+5038,2018,7,29,22,30,17.5,1.99,0.129,0.62,0,0,0,0,0,5,0,0,0,0,0.297,43.62,115.59,0.89,0.14,797,1.4,42,4.5
+5039,2018,7,29,23,30,16.5,1.95,0.116,0.62,0,0,0,0,0,6,0,0,0,0,0.298,50,119.79,0.89,0.14,797,1.4,41,3.9
+5040,2018,7,30,0,30,15.6,1.95,0.108,0.62,0,0,0,0,0,6.5,0,0,0,0,0.298,54.82,120.93,0.89,0.14,797,1.4,39,3.3
+5041,2018,7,30,1,30,14.8,1.96,0.105,0.62,0,0,0,0,0,6.9,0,0,0,0,0.299,58.98,118.81,0.89,0.14,797,1.4,37,3.1
+5042,2018,7,30,2,30,14.1,1.98,0.102,0.62,0,0,0,0,0,7.1,0,0,0,0,0.3,62.92,113.77,0.89,0.14,797,1.3,36,3
+5043,2018,7,30,3,30,13.4,2,0.102,0.62,0,0,0,0,0,7.5,0,0,0,0,0.302,67.31,106.42,0.89,0.14,797,1.3,37,3.1
+5044,2018,7,30,4,30,13,2.01,0.106,0.62,0,0,0,0,0,7.8,0,0,0,0,0.304,70.76,97.41,0.89,0.14,798,1.3,40,3.2
+5045,2018,7,30,5,30,14.2,2.03,0.112,0.62,20,195,30,0,0,8.1,20,195,0,30,0.305,66.56,87.09,0.89,0.14,798,1.3,44,3.8
+5046,2018,7,30,6,30,17.1,2.04,0.114,0.62,56,577,192,0,0,7.8,56,577,0,192,0.306,54.4,76.36,0.89,0.14,798,1.2,50,4.6
+5047,2018,7,30,7,30,20,2.04,0.111,0.62,75,755,393,0,0,5.4,75,755,0,393,0.307,38.35,65.12,0.89,0.14,798,1.2,52,5.1
+5048,2018,7,30,8,30,22,2.02,0.107,0.62,88,851,591,0,0,4,88,851,0,591,0.308,30.85,53.75,0.89,0.14,798,1.2,49,4.9
+5049,2018,7,30,9,30,23.8,2,0.104,0.62,95,908,763,0,0,3.3,95,908,0,763,0.307,26.26,42.64,0.89,0.14,798,1.2,42,4.5
+5050,2018,7,30,10,30,25.5,1.99,0.098,0.62,98,946,896,0,0,2.8,98,946,0,896,0.306,22.88,32.45,0.89,0.14,798,1.1,36,4.2
+5051,2018,7,30,11,30,26.8,1.99,0.09,0.62,96,968,976,0,0,2.3,96,968,0,976,0.305,20.51,24.68,0.89,0.14,798,1.1,33,4
+5052,2018,7,30,12,30,27.7,1.99,0.079,0.62,94,978,999,0,0,1.8,94,978,0,999,0.304,18.75,22.26,0.89,0.14,797,1.1,33,4
+5053,2018,7,30,13,30,28.3,2,0.074,0.62,94,970,960,0,0,1.2,94,970,0,960,0.303,17.36,26.71,0.88,0.14,797,1.1,36,3.9
+5054,2018,7,30,14,30,28.5,2.02,0.089,0.62,93,945,862,0,0,0.5,93,945,0,862,0.302,16.31,35.5,0.88,0.14,796,1.1,40,3.9
+5055,2018,7,30,15,30,28.3,2.03,0.086,0.62,85,911,717,0,0,-0.3,85,911,0,717,0.301,15.6,46.1,0.87,0.14,796,1.1,43,4
+5056,2018,7,30,16,30,27.5,2.03,0.085,0.62,75,852,535,0,0,-1,75,852,0,535,0.301,15.5,57.35,0.87,0.14,795,1.1,46,4
+5057,2018,7,30,17,30,26,2.03,0.085,0.62,63,747,334,0,0,-1.6,63,747,0,334,0.3,16.15,68.73,0.87,0.14,795,1.1,52,3.7
+5058,2018,7,30,18,30,22.9,2.02,0.084,0.62,42,536,136,0,0,-2.1,42,536,0,136,0.3,18.83,79.88,0.87,0.14,796,1.1,62,2.7
+5059,2018,7,30,19,30,20,2.01,0.083,0.62,5,52,5,0,0,-2.3,5,52,0,5,0.299,22.12,90.19,0.87,0.14,796,1.1,70,2
+5060,2018,7,30,20,30,18.6,2,0.08,0.62,0,0,0,0,0,-3,0,0,0,0,0.299,22.92,100.49,0.87,0.14,796,1.1,74,1.9
+5061,2018,7,30,21,30,17.4,1.99,0.076,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.299,24.13,109.08,0.87,0.14,796,1,77,1.8
+5062,2018,7,30,22,30,16.3,1.99,0.073,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.299,25.86,115.82,0.87,0.14,796,1,82,1.6
+5063,2018,7,30,23,30,15.3,2,0.069,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.299,28.04,120.04,0.87,0.14,796,1,85,1.4
+5064,2018,7,31,0,30,14.5,2.02,0.068,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.299,30.34,121.17,0.87,0.14,796,1,84,1.2
+5065,2018,7,31,1,30,14.1,2.03,0.069,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.3,32,119.05,0.87,0.14,796,1,81,1
+5066,2018,7,31,2,30,13.9,2.03,0.071,0.62,0,0,0,0,0,-2,0,0,0,0,0.3,33.19,113.99,0.87,0.14,796,1,80,0.9
+5067,2018,7,31,3,30,13.8,2.03,0.075,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.3,33.99,106.61,0.87,0.14,797,1.1,77,0.7
+5068,2018,7,31,4,30,13.9,2.03,0.079,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.301,33.91,97.58,0.87,0.14,797,1.1,68,0.6
+5069,2018,7,31,5,30,15.6,2.04,0.085,0.62,18,219,29,0,0,-1.7,18,219,0,29,0.3,30.51,87.24,0.87,0.14,797,1.1,56,0.6
+5070,2018,7,31,6,30,19.2,2.04,0.089,0.62,51,610,193,0,0,-1.6,51,610,0,193,0.3,24.44,76.51,0.87,0.14,797,1.1,49,0.7
+5071,2018,7,31,7,30,23.5,2.04,0.09,0.62,69,779,395,0,0,-2.1,69,779,0,395,0.3,18.09,65.26,0.87,0.14,797,1.1,184,0.7
+5072,2018,7,31,8,30,27,2.03,0.087,0.62,80,872,594,0,0,-3,80,872,0,594,0.301,13.81,53.89,0.87,0.14,797,1.1,317,1.1
+5073,2018,7,31,9,30,29,2.01,0.083,0.62,87,925,766,0,0,-2.8,87,925,0,766,0.301,12.4,42.79,0.87,0.14,796,1.1,308,1.5
+5074,2018,7,31,10,30,30.7,2,0.083,0.62,94,951,895,0,0,-3.2,94,951,0,895,0.302,10.94,32.63,0.87,0.14,796,1.1,299,1.8
+5075,2018,7,31,11,30,32,1.99,0.093,0.62,101,959,971,0,0,-3.9,101,959,0,971,0.302,9.65,24.9,0.88,0.14,795,1.1,297,2
+5076,2018,7,31,12,30,33,1.99,0.101,0.62,107,954,988,0,0,-4.5,180,849,0,964,0.302,8.7,22.5,0.88,0.14,795,1.2,301,2.2
+5077,2018,7,31,13,30,33.5,2.01,0.117,0.62,108,941,947,0,3,-5,309,639,4,879,0.302,8.14,26.93,0.87,0.14,794,1.2,311,2.3
+5078,2018,7,31,14,30,33.5,2,0.114,0.62,106,916,850,0,0,-5.4,220,737,0,819,0.302,7.91,35.69,0.87,0.14,794,1.2,324,2.5
+5079,2018,7,31,15,30,33,2.02,0.13,0.62,105,864,702,0,4,-5.8,396,155,0,503,0.301,7.93,46.26,0.87,0.14,793,1.2,337,2.6
+5080,2018,7,31,16,30,31.9,2.03,0.149,0.62,97,785,519,0,3,-6,254,382,0,459,0.299,8.26,57.51,0.88,0.14,793,1.2,349,2.7
+5081,2018,7,31,17,30,29.7,2.01,0.16,0.61,80,658,317,0,0,-6.3,80,658,0,317,0.299,9.2,68.89,0.87,0.14,793,1.2,181,2.1
+5082,2018,7,31,18,30,26.3,2.02,0.163,0.61,50,430,124,0,0,-4.2,50,430,0,124,0.299,13.16,80.04,0.87,0.14,793,1.1,17,1.3
+5083,2018,7,31,19,30,23.8,2.03,0.164,0.61,4,30,4,0,0,-3.9,4,30,0,4,0.299,15.52,90.35,0.88,0.14,793,1.1,37,1.1
+5084,2018,7,31,20,30,22.9,2.04,0.166,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.298,16.02,100.69,0.88,0.14,794,1.2,57,1.1
+5085,2018,7,31,21,30,21.8,2.05,0.171,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.297,17.08,109.3,0.89,0.14,794,1.3,77,1.1
+5086,2018,7,31,22,30,20.6,2.06,0.184,0.61,0,0,0,0,3,-4.2,0,0,0,0,0.296,18.47,116.05,0.89,0.14,793,1.3,95,1.1
+5087,2018,7,31,23,30,19.8,2.05,0.21,0.61,0,0,0,0,0,-4.1,0,0,0,0,0.295,19.57,120.28,0.9,0.14,793,1.4,111,1
+5088,2018,8,1,0,30,19.5,2.04,0.247,0.61,0,0,0,0,0,-3.9,0,0,0,0,0.294,20.25,121.42,0.91,0.14,793,1.5,138,0.7
+5089,2018,8,1,1,30,19.3,2,0.324,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.294,20.76,119.29,0.92,0.14,793,1.6,194,0.5
+5090,2018,8,1,2,30,19.1,1.91,0.459,0.61,0,0,0,0,0,-3.6,0,0,0,0,0.293,21.27,114.2,0.94,0.14,793,1.7,256,0.5
+5091,2018,8,1,3,30,18.8,1.84,0.573,0.61,0,0,0,0,0,-3.3,0,0,0,0,0.293,22.19,106.81,0.94,0.14,793,1.7,299,0.6
+5092,2018,8,1,4,30,18.7,1.83,0.642,0.61,0,0,0,0,7,-2.8,0,0,0,0,0.292,23.17,97.76,0.94,0.14,794,1.8,328,0.9
+5093,2018,8,1,5,30,19.7,1.87,0.654,0.61,13,32,14,5,7,-1.9,13,27,71,14,0.292,23.28,87.39,0.93,0.14,794,1.9,345,1.7
+5094,2018,8,1,6,30,21.7,1.92,0.649,0.61,97,231,150,4,7,-0.3,77,3,57,78,0.292,23,76.65,0.93,0.14,794,1.9,176,2.7
+5095,2018,8,1,7,30,24.1,1.98,0.587,0.61,161,419,335,0,8,-0.1,143,7,0,146,0.292,20.21,65.4,0.92,0.14,795,1.9,7,3.4
+5096,2018,8,1,8,30,26.2,2.01,0.534,0.61,196,553,521,0,8,0.8,197,10,0,203,0.292,19.09,54.04,0.91,0.14,795,1.9,12,3.6
+5097,2018,8,1,9,30,27.7,2.02,0.51,0.61,222,632,685,0,8,1.9,210,3,0,212,0.292,18.84,42.95,0.91,0.14,795,1.9,12,3.1
+5098,2018,8,1,10,30,28.7,2.01,0.52,0.61,257,652,805,0,8,2.5,326,15,0,339,0.292,18.59,32.81,0.92,0.14,794,2,179,2.5
+5099,2018,8,1,11,30,29.3,1.97,0.647,0.61,287,647,873,0,8,3.1,376,66,0,436,0.291,18.76,25.13,0.92,0.14,794,2,328,2
+5100,2018,8,1,12,30,29.9,2,0.641,0.61,289,654,892,0,8,3.7,462,128,0,580,0.29,18.93,22.75,0.92,0.14,794,2.1,290,2.2
+5101,2018,8,1,13,30,30.5,2,0.643,0.61,258,682,865,0,8,4.3,267,7,0,273,0.29,19.05,27.16,0.93,0.14,793,2.2,267,2.9
+5102,2018,8,1,14,30,30.6,1.93,0.413,0.61,207,717,788,0,4,4.8,272,13,0,283,0.29,19.6,35.88,0.93,0.14,793,2.2,264,3.4
+5103,2018,8,1,15,30,30,1.91,0.367,0.61,179,686,652,0,7,5.1,326,275,0,516,0.29,20.68,46.43,0.93,0.14,793,2.2,269,3.7
+5104,2018,8,1,16,30,28.9,1.89,0.333,0.61,149,621,481,0,8,5.3,217,243,0,347,0.29,22.42,57.67,0.93,0.14,793,2.2,273,3.7
+5105,2018,8,1,17,30,27.3,1.87,0.307,0.61,112,503,292,0,8,5.7,145,108,0,184,0.291,25.19,69.05,0.93,0.14,793,2.2,269,3.6
+5106,2018,8,1,18,30,25,1.84,0.292,0.61,61,292,111,7,8,6.4,63,7,100,64,0.291,30.39,80.22,0.93,0.14,793,2.1,260,3
+5107,2018,8,1,19,30,22.9,1.83,0.265,0.61,3,13,3,3,8,7.2,2,0,43,2,0.292,36.38,91,0.93,0.14,794,2.1,251,2.3
+5108,2018,8,1,20,30,21.4,1.83,0.247,0.61,0,0,0,0,0,8,0,0,0,0,0.292,42.01,100.89,0.93,0.14,794,2.1,244,2
+5109,2018,8,1,21,30,20.1,1.83,0.234,0.61,0,0,0,0,0,8.6,0,0,0,0,0.292,47.67,109.52,0.93,0.14,795,2.1,238,1.2
+5110,2018,8,1,22,30,19.2,1.85,0.219,0.61,0,0,0,0,7,9,0,0,0,0,0.292,51.54,116.29,0.93,0.14,795,2.1,220,0.6
+5111,2018,8,1,23,30,18.4,1.88,0.201,0.61,0,0,0,0,0,9,0,0,0,0,0.293,54.39,120.54,0.92,0.14,795,2.1,190,0.5
+5112,2018,8,2,0,30,17.4,1.91,0.188,0.61,0,0,0,0,0,8.9,0,0,0,0,0.293,57.47,121.67,0.92,0.14,794,2,172,0.5
+5113,2018,8,2,1,30,16.6,1.93,0.185,0.61,0,0,0,0,3,8.9,0,0,0,0,0.293,60.27,119.53,0.92,0.14,794,2,173,0.6
+5114,2018,8,2,2,30,16.2,1.94,0.189,0.61,0,0,0,0,4,8.7,0,0,0,0,0.293,61.28,114.42,0.92,0.14,794,2.1,185,0.5
+5115,2018,8,2,3,30,16,1.95,0.202,0.61,0,0,0,0,0,8.5,0,0,0,0,0.293,61.18,107,0.92,0.14,794,2.1,192,0.4
+5116,2018,8,2,4,30,16.2,1.95,0.217,0.61,0,0,0,0,7,8.3,0,0,0,0,0.293,59.4,97.93,0.92,0.14,794,2.1,153,0.2
+5117,2018,8,2,5,30,17.6,1.95,0.23,0.61,17,91,21,2,0,8,17,48,25,19,0.294,53.44,87.54,0.92,0.14,794,2.1,101,0.6
+5118,2018,8,2,6,30,20.8,1.96,0.231,0.61,72,423,169,4,7,7.8,106,194,68,150,0.294,43.08,76.8,0.92,0.14,794,2.1,95,0.8
+5119,2018,8,2,7,30,24.5,1.96,0.233,0.61,108,606,359,0,0,7.2,116,578,0,355,0.295,32.99,65.54,0.92,0.14,794,2.1,158,0.8
+5120,2018,8,2,8,30,27.1,1.96,0.244,0.61,131,715,549,0,0,6.2,171,626,0,537,0.295,26.38,54.18,0.92,0.14,794,2.1,221,1.1
+5121,2018,8,2,9,30,28.3,1.97,0.228,0.61,145,784,717,0,0,6,197,680,0,694,0.294,24.25,43.1,0.92,0.14,794,2.1,237,1.8
+5122,2018,8,2,10,30,28.8,1.96,0.239,0.61,158,816,842,0,3,6.1,313,552,0,776,0.294,23.72,32.99,0.92,0.14,794,2.1,246,3
+5123,2018,8,2,11,30,28.4,1.88,0.247,0.61,171,825,916,0,3,6.4,384,500,0,836,0.293,24.87,25.36,0.93,0.14,794,2.2,252,4.2
+5124,2018,8,2,12,30,27.3,1.85,0.267,0.61,174,825,933,0,7,7.3,338,536,0,831,0.292,28.11,23.01,0.93,0.14,794,2.3,260,4.9
+5125,2018,8,2,13,30,26.3,1.86,0.249,0.61,158,832,897,0,7,8.5,399,315,0,679,0.292,32.36,27.39,0.93,0.14,794,2.4,271,4.8
+5126,2018,8,2,14,30,25.8,1.83,0.199,0.61,138,832,810,0,6,9.1,256,20,0,272,0.293,34.71,36.08,0.93,0.14,794,2.3,283,4.3
+5127,2018,8,2,15,30,25.5,1.81,0.18,0.61,122,800,672,0,6,8.9,121,1,0,122,0.295,35.05,46.61,0.93,0.14,793,2.3,296,3.5
+5128,2018,8,2,16,30,25,1.79,0.166,0.61,103,741,497,0,8,8.5,91,2,0,92,0.296,35.06,57.84,0.93,0.14,793,2.3,312,2.8
+5129,2018,8,2,17,30,24.2,1.8,0.152,0.61,82,625,304,0,6,8,128,79,0,156,0.297,35.51,69.22,0.93,0.14,793,2.3,326,2
+5130,2018,8,2,18,30,22.7,1.78,0.153,0.61,51,390,116,7,8,7.7,49,3,100,50,0.298,38.15,80.39,0.93,0.14,793,2.3,328,1
+5131,2018,8,2,19,30,21.3,1.77,0.158,0.61,2,12,2,3,8,7.7,1,0,43,1,0.298,41.49,91.19,0.93,0.14,793,2.3,330,0.7
+5132,2018,8,2,20,30,20.4,1.79,0.151,0.61,0,0,0,0,8,7.6,0,0,0,0,0.299,43.63,101.1,0.93,0.14,793,2.3,328,0.8
+5133,2018,8,2,21,30,19.6,1.81,0.152,0.61,0,0,0,0,8,7.6,0,0,0,0,0.299,45.86,109.74,0.93,0.14,793,2.2,321,0.8
+5134,2018,8,2,22,30,18.9,1.83,0.146,0.61,0,0,0,0,8,7.8,0,0,0,0,0.299,48.35,116.54,0.92,0.14,793,2.2,328,0.8
+5135,2018,8,2,23,30,18.4,1.84,0.133,0.61,0,0,0,0,8,7.8,0,0,0,0,0.299,50.11,120.79,0.92,0.14,792,2.1,346,0.6
+5136,2018,8,3,0,30,17.9,1.84,0.128,0.61,0,0,0,0,8,7.9,0,0,0,0,0.299,52,121.93,0.92,0.14,792,2.1,186,0.3
+5137,2018,8,3,1,30,17.5,1.83,0.13,0.61,0,0,0,0,8,8.1,0,0,0,0,0.299,54.21,119.77,0.93,0.14,792,2.1,105,0.3
+5138,2018,8,3,2,30,16.8,1.83,0.135,0.61,0,0,0,0,8,8.6,0,0,0,0,0.3,58.28,114.65,0.93,0.14,792,2,198,0.7
+5139,2018,8,3,3,30,15.9,1.83,0.138,0.61,0,0,0,0,8,9,0,0,0,0,0.3,63.56,107.2,0.93,0.14,792,2,206,1.1
+5140,2018,8,3,4,30,15.5,1.83,0.138,0.61,0,0,0,0,6,9.5,0,0,0,0,0.3,67.31,98.11,0.93,0.14,792,2,212,1.2
+5141,2018,8,3,5,30,16.5,1.84,0.135,0.61,17,128,22,6,6,10.2,10,0,86,10,0.299,66.2,87.69,0.93,0.14,793,2,217,1.8
+5142,2018,8,3,6,30,18.9,1.84,0.133,0.61,59,517,176,5,6,10.9,53,2,71,53,0.299,59.83,76.94,0.93,0.14,793,2,219,2.8
+5143,2018,8,3,7,30,21.4,1.84,0.13,0.61,83,702,372,0,8,11.1,100,15,0,106,0.299,51.79,65.68,0.93,0.14,793,2,219,3.4
+5144,2018,8,3,8,30,23.3,1.84,0.131,0.61,100,796,564,2,4,10.3,208,24,21,222,0.298,43.73,54.32,0.93,0.14,793,2,222,3.4
+5145,2018,8,3,9,30,24.5,1.84,0.144,0.61,118,839,729,0,3,9.7,353,310,0,579,0.299,39.2,43.26,0.94,0.14,793,2,223,3.2
+5146,2018,8,3,10,30,25.7,1.85,0.169,0.61,131,864,854,0,0,9.2,267,619,0,785,0.3,35.19,33.18,0.94,0.14,793,2.1,226,3
+5147,2018,8,3,11,30,26.8,1.78,0.166,0.61,140,878,932,0,0,8.6,140,878,0,932,0.302,31.83,25.59,0.95,0.14,793,2.1,230,2.9
+5148,2018,8,3,12,30,27.6,1.71,0.182,0.61,145,879,952,0,0,8.2,158,858,0,946,0.304,29.41,23.27,0.95,0.14,792,2,234,2.8
+5149,2018,8,3,13,30,28.4,1.72,0.179,0.61,135,883,917,0,0,7.7,136,878,0,914,0.305,27.17,27.63,0.95,0.14,792,1.9,234,2.6
+5150,2018,8,3,14,30,29.1,1.6,0.14,0.61,127,863,823,0,7,7,279,488,0,672,0.305,24.88,36.28,0.95,0.14,791,1.9,227,2.3
+5151,2018,8,3,15,30,29,1.61,0.179,0.61,137,782,672,0,3,6.3,344,265,0,525,0.305,23.83,46.79,0.96,0.14,791,2,221,2.3
+5152,2018,8,3,16,30,28,1.57,0.237,0.61,132,670,487,0,4,6,234,275,21,380,0.304,24.75,58.02,0.96,0.14,791,2.1,220,2.1
+5153,2018,8,3,17,30,26.3,1.56,0.247,0.61,104,536,293,0,6,6.2,123,256,4,213,0.304,27.76,69.4,0.96,0.14,791,2.2,210,1.4
+5154,2018,8,3,18,30,24,1.61,0.227,0.61,58,324,111,7,7,7.5,57,9,100,58,0.305,34.77,80.57,0.95,0.14,791,2.1,152,0.8
+5155,2018,8,3,19,30,21.7,1.69,0.19,0.61,2,9,2,0,0,8.5,2,9,0,2,0.305,42.72,91.39,0.95,0.14,791,2,102,0.9
+5156,2018,8,3,20,30,20.3,1.75,0.163,0.61,0,0,0,0,0,8.2,0,0,0,0,0.305,45.55,101.31,0.94,0.14,792,1.9,101,1
+5157,2018,8,3,21,30,19.3,1.8,0.15,0.61,0,0,0,0,0,7.9,0,0,0,0,0.304,47.57,109.97,0.93,0.14,792,1.8,104,0.9
+5158,2018,8,3,22,30,18.5,1.84,0.133,0.61,0,0,0,0,0,7.7,0,0,0,0,0.303,49.47,116.79,0.93,0.14,792,1.7,108,0.9
+5159,2018,8,3,23,30,17.8,1.86,0.12,0.61,0,0,0,0,0,7.6,0,0,0,0,0.302,51.21,121.06,0.92,0.14,792,1.6,111,0.8
+5160,2018,8,4,0,30,17.3,1.88,0.117,0.61,0,0,0,0,0,7.5,0,0,0,0,0.302,52.58,122.2,0.92,0.14,792,1.6,112,0.7
+5161,2018,8,4,1,30,16.8,1.88,0.131,0.61,0,0,0,0,0,7.4,0,0,0,0,0.301,53.98,120.02,0.93,0.14,792,1.7,113,0.6
+5162,2018,8,4,2,30,16.4,1.89,0.153,0.61,0,0,0,0,0,7.3,0,0,0,0,0.299,55.02,114.87,0.93,0.14,792,1.8,124,0.4
+5163,2018,8,4,3,30,16,1.88,0.177,0.61,0,0,0,0,0,7.2,0,0,0,0,0.297,55.9,107.41,0.94,0.14,792,1.8,202,0.2
+5164,2018,8,4,4,30,15.6,1.89,0.191,0.61,0,0,0,0,0,7,0,0,0,0,0.296,56.48,98.29,0.94,0.14,792,1.9,275,0.2
+5165,2018,8,4,5,30,16.7,1.91,0.197,0.61,16,91,19,0,0,6.8,16,91,0,19,0.294,51.87,87.85,0.93,0.14,792,1.9,256,0.3
+5166,2018,8,4,6,30,19.9,1.96,0.215,0.61,71,424,166,0,0,6.6,71,424,0,166,0.293,41.86,77.09,0.93,0.14,792,1.9,224,1.3
+5167,2018,8,4,7,30,23.6,2.01,0.247,0.61,112,593,355,0,0,6.4,112,593,0,355,0.291,33.07,65.83,0.93,0.14,792,1.9,220,2.9
+5168,2018,8,4,8,30,26.3,2.06,0.275,0.61,142,688,542,0,0,6.2,142,688,0,542,0.289,27.74,54.47,0.92,0.14,792,1.9,223,4
+5169,2018,8,4,9,30,28.2,2.09,0.298,0.61,167,744,707,0,0,6.2,167,744,0,707,0.287,24.89,43.42,0.92,0.14,792,1.9,223,4.6
+5170,2018,8,4,10,30,29.8,2.1,0.314,0.61,157,824,845,0,0,6.2,157,824,0,845,0.285,22.57,33.37,0.92,0.14,792,1.9,224,5.2
+5171,2018,8,4,11,30,31.1,1.85,0.146,0.61,129,896,935,0,0,6.1,129,896,0,935,0.283,20.85,25.83,0.93,0.14,791,1.9,227,5.7
+5172,2018,8,4,12,30,31.8,1.83,0.158,0.61,137,890,953,0,0,6,137,890,0,953,0.282,19.96,23.54,0.94,0.14,790,2,231,6.1
+5173,2018,8,4,13,30,31.9,1.79,0.173,0.61,141,871,911,0,7,5.8,260,640,0,826,0.282,19.56,27.87,0.95,0.14,790,2,235,6.3
+5174,2018,8,4,14,30,31.5,1.71,0.183,0.61,138,842,815,0,7,5.5,350,302,0,593,0.282,19.48,36.49,0.95,0.14,789,2,237,6.2
+5175,2018,8,4,15,30,30.7,1.71,0.182,0.61,129,796,672,0,6,5,111,0,0,111,0.282,19.81,46.98,0.95,0.14,789,2,238,5.8
+5176,2018,8,4,16,30,29.8,1.71,0.188,0.61,117,711,492,0,6,4.7,215,60,0,247,0.283,20.42,58.2,0.96,0.14,789,2,237,5.2
+5177,2018,8,4,17,30,28.2,1.69,0.206,0.61,94,579,296,0,6,4.6,115,11,0,119,0.284,22.15,69.58,0.96,0.14,789,2,234,3.7
+5178,2018,8,4,18,30,25.7,1.71,0.188,0.61,54,361,112,7,6,5.1,55,10,100,57,0.286,26.66,80.76,0.95,0.14,789,1.9,219,1.9
+5179,2018,8,4,19,30,23.7,1.76,0.157,0.61,2,10,2,2,7,6.3,1,0,29,1,0.287,32.59,91.59,0.95,0.14,789,2,206,1.2
+5180,2018,8,4,20,30,23,1.69,0.188,0.61,0,0,0,0,0,6.2,0,0,0,0,0.288,33.87,101.53,0.96,0.14,789,2.1,222,1.2
+5181,2018,8,4,21,30,22.4,1.69,0.19,0.61,0,0,0,0,7,6.2,0,0,0,0,0.289,34.94,110.21,0.96,0.14,790,2.2,262,1.5
+5182,2018,8,4,22,30,20.7,1.68,0.211,0.61,0,0,0,0,7,6.5,0,0,0,0,0.289,39.56,117.04,0.96,0.14,790,2.4,304,3.7
+5183,2018,8,4,23,30,17.9,1.66,0.304,0.61,0,0,0,0,6,7.2,0,0,0,0,0.289,49.57,121.32,0.96,0.14,791,2.6,337,5.7
+5184,2018,8,5,0,30,15.9,1.76,0.262,0.61,0,0,0,0,7,7.6,0,0,0,0,0.289,57.78,122.46,0.95,0.14,791,2.5,196,5.5
+5185,2018,8,5,1,30,15.2,1.78,0.21,0.61,0,0,0,0,8,7.1,0,0,0,0,0.29,58.27,120.27,0.95,0.14,791,2.5,45,4.1
+5186,2018,8,5,2,30,14.7,1.78,0.24,0.61,0,0,0,0,7,7,0,0,0,0,0.29,60.12,115.1,0.95,0.14,792,2.5,68,3.1
+5187,2018,8,5,3,30,14.1,1.82,0.276,0.61,0,0,0,0,7,7.7,0,0,0,0,0.29,65.16,107.61,0.94,0.14,792,2.4,90,2.7
+5188,2018,8,5,4,30,13.7,1.87,0.261,0.61,0,0,0,0,7,8.6,0,0,0,0,0.291,71.31,98.47,0.94,0.14,792,2.2,103,2.3
+5189,2018,8,5,5,30,14.3,1.88,0.225,0.61,16,85,19,6,4,9.6,11,0,86,11,0.292,73.23,88,0.94,0.14,792,2.1,106,2
+5190,2018,8,5,6,30,16.5,1.86,0.192,0.61,66,460,168,5,4,10.3,116,54,71,128,0.293,66.77,77.24,0.94,0.14,792,1.9,123,1.8
+5191,2018,8,5,7,30,19.9,1.84,0.16,0.61,89,683,367,0,4,10.3,163,338,0,301,0.294,54.11,65.97,0.93,0.14,792,1.7,170,2.1
+5192,2018,8,5,8,30,23.2,1.85,0.14,0.61,101,803,566,0,0,9.5,200,431,0,450,0.294,41.75,54.62,0.92,0.14,792,1.6,209,3.3
+5193,2018,8,5,9,30,25.8,1.89,0.136,0.61,111,866,738,0,0,8.5,111,866,0,738,0.294,33.46,43.58,0.91,0.14,792,1.5,222,4.5
+5194,2018,8,5,10,30,28,1.92,0.14,0.61,114,907,870,0,0,7,114,907,0,870,0.295,26.47,33.56,0.91,0.14,791,1.4,228,5.4
+5195,2018,8,5,11,30,29.7,1.87,0.116,0.61,117,930,952,0,0,4.9,117,930,0,952,0.295,20.84,26.07,0.91,0.14,791,1.4,232,5.9
+5196,2018,8,5,12,30,30.9,1.91,0.136,0.61,129,916,967,0,0,2.9,129,916,0,967,0.295,16.91,23.81,0.91,0.14,790,1.3,234,6.2
+5197,2018,8,5,13,30,31.6,1.95,0.179,0.61,126,911,929,0,0,1.2,126,911,0,929,0.294,14.36,28.12,0.91,0.14,790,1.3,236,6.3
+5198,2018,8,5,14,30,31.8,1.81,0.115,0.61,109,912,840,0,0,-0.3,174,798,0,814,0.293,12.72,36.7,0.91,0.14,790,1.2,241,6.3
+5199,2018,8,5,15,30,31.4,1.8,0.122,0.61,105,865,693,0,0,-1.5,105,865,0,693,0.292,11.93,47.18,0.91,0.14,790,1.2,248,6
+5200,2018,8,5,16,30,30.4,1.83,0.135,0.61,97,784,508,0,0,-2.2,97,784,0,508,0.291,12.01,58.38,0.9,0.14,790,1.2,261,5.3
+5201,2018,8,5,17,30,28,1.88,0.151,0.61,81,648,305,0,0,-2.5,81,648,0,305,0.29,13.46,69.76,0.9,0.14,790,1.1,282,3.6
+5202,2018,8,5,18,30,24,1.93,0.161,0.61,48,399,111,0,0,-0.8,48,399,0,111,0.289,19.3,80.95,0.89,0.14,791,1,313,2.2
+5203,2018,8,5,19,30,20.9,1.97,0.169,0.61,1,11,1,1,3,-0.1,1,11,14,1,0.289,24.59,91.79,0.89,0.14,792,1,343,2.3
+5204,2018,8,5,20,30,19.3,1.97,0.177,0.61,0,0,0,0,7,-1,0,0,0,0,0.288,25.37,101.75,0.89,0.14,793,1,180,2.9
+5205,2018,8,5,21,30,17.7,1.96,0.187,0.61,0,0,0,0,7,-1.3,0,0,0,0,0.288,27.5,110.45,0.89,0.14,794,1,10,2.8
+5206,2018,8,5,22,30,16,1.96,0.2,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.288,31.79,117.3,0.9,0.14,794,1,17,2.2
+5207,2018,8,5,23,30,14.5,1.96,0.219,0.61,0,0,0,0,0,0.1,0,0,0,0,0.288,37.27,121.6,0.9,0.14,794,1,23,1.7
+5208,2018,8,6,0,30,13.4,1.97,0.238,0.61,0,0,0,0,4,1.2,0,0,0,0,0.289,43.51,122.73,0.9,0.14,794,1.1,29,1.5
+5209,2018,8,6,1,30,12.5,1.97,0.255,0.61,0,0,0,0,0,2.5,0,0,0,0,0.29,50.65,120.53,0.9,0.14,794,1.1,33,1.4
+5210,2018,8,6,2,30,11.7,1.98,0.266,0.61,0,0,0,0,3,3.9,0,0,0,0,0.293,58.92,115.34,0.9,0.14,794,1.1,34,1.2
+5211,2018,8,6,3,30,11.1,1.97,0.274,0.61,0,0,0,0,0,5,0,0,0,0,0.296,65.89,107.82,0.9,0.14,795,1.2,30,1.1
+5212,2018,8,6,4,30,11,1.96,0.281,0.61,0,0,0,0,0,5.6,0,0,0,0,0.298,69.46,98.65,0.91,0.14,795,1.2,23,1.1
+5213,2018,8,6,5,30,12.4,1.95,0.286,0.61,14,67,16,5,4,6.2,11,1,68,11,0.299,65.89,88.15,0.91,0.14,795,1.2,18,1.8
+5214,2018,8,6,6,30,15.4,1.93,0.284,0.61,74,392,160,4,3,6.8,105,182,50,145,0.301,56.57,77.39,0.91,0.14,796,1.2,22,2.6
+5215,2018,8,6,7,30,19,1.91,0.271,0.61,112,602,356,0,0,6.6,147,483,0,343,0.302,44.42,66.12,0.9,0.14,796,1.2,26,2.9
+5216,2018,8,6,8,30,22,1.88,0.252,0.61,132,730,553,0,0,4.6,132,730,0,553,0.302,32.15,54.77,0.9,0.14,796,1.1,23,3
+5217,2018,8,6,9,30,24.3,1.86,0.236,0.61,144,807,727,0,0,2.4,144,807,0,727,0.301,23.97,43.74,0.9,0.14,796,1.1,16,3
+5218,2018,8,6,10,30,26.1,1.86,0.228,0.61,152,851,859,0,0,1,152,851,0,859,0.3,19.49,33.76,0.9,0.14,796,1.1,7,2.8
+5219,2018,8,6,11,30,27.5,1.86,0.222,0.61,155,873,938,0,0,0,155,873,14,938,0.299,16.64,26.31,0.9,0.14,796,1.1,179,2.5
+5220,2018,8,6,12,30,28.5,1.87,0.222,0.61,158,877,959,0,0,-0.9,158,877,0,959,0.297,14.73,24.09,0.91,0.14,795,1.1,356,2.2
+5221,2018,8,6,13,30,29,1.85,0.221,0.61,174,838,911,0,0,-1.6,174,838,0,911,0.296,13.59,28.37,0.91,0.14,795,1.1,180,1.9
+5222,2018,8,6,14,30,29.1,1.9,0.34,0.61,193,764,804,0,0,-2.2,193,764,0,804,0.296,12.91,36.92,0.92,0.14,794,1.1,14,1.7
+5223,2018,8,6,15,30,28.7,1.89,0.36,0.61,183,699,656,0,0,-2.7,183,699,0,656,0.295,12.79,47.38,0.92,0.14,794,1.2,34,1.8
+5224,2018,8,6,16,30,27.8,1.88,0.379,0.61,158,608,475,0,0,-2.9,158,608,0,475,0.295,13.22,58.57,0.92,0.14,794,1.2,51,2.3
+5225,2018,8,6,17,30,25.9,1.89,0.372,0.61,118,474,281,0,0,-2.9,118,474,0,281,0.295,14.78,69.95,0.92,0.14,794,1.2,60,2.4
+5226,2018,8,6,18,30,22.6,1.91,0.355,0.61,58,255,97,0,0,-1.3,58,255,0,97,0.296,20.37,81.15,0.91,0.14,794,1.2,67,2.3
+5227,2018,8,6,19,30,20,1.92,0.33,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.297,24.85,92,0.91,0.14,795,1.2,73,2.4
+5228,2018,8,6,20,30,18.6,1.92,0.305,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.298,27.71,101.98,0.91,0.14,795,1.2,78,2.3
+5229,2018,8,6,21,30,17.2,1.92,0.282,0.61,0,0,0,0,0,0.2,0,0,0,0,0.299,31.58,110.7,0.91,0.14,795,1.1,83,1.9
+5230,2018,8,6,22,30,16.1,1.91,0.262,0.61,0,0,0,0,0,0.5,0,0,0,0,0.299,34.81,117.57,0.91,0.14,795,1.1,88,1.5
+5231,2018,8,6,23,30,15.3,1.9,0.246,0.61,0,0,0,0,0,0.7,0,0,0,0,0.3,36.99,121.87,0.9,0.14,794,1.1,91,1.3
+5232,2018,8,7,0,30,14.7,1.9,0.237,0.61,0,0,0,0,0,0.7,0,0,0,0,0.3,38.38,123.01,0.9,0.14,794,1.1,92,1.1
+5233,2018,8,7,1,30,14.2,1.9,0.232,0.61,0,0,0,0,0,0.5,0,0,0,0,0.3,39.32,120.79,0.9,0.14,794,1.1,89,1
+5234,2018,8,7,2,30,13.7,1.89,0.23,0.61,0,0,0,0,0,0.3,0,0,0,0,0.3,40,115.57,0.9,0.14,794,1.1,76,0.9
+5235,2018,8,7,3,30,13.2,1.89,0.229,0.61,0,0,0,0,0,0.1,0,0,0,0,0.3,40.61,108.02,0.9,0.14,794,1,54,0.9
+5236,2018,8,7,4,30,12.8,1.89,0.226,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.3,41.05,98.84,0.9,0.14,794,1,34,0.9
+5237,2018,8,7,5,30,14.2,1.88,0.219,0.61,13,76,15,0,0,-0.2,13,76,0,15,0.3,37.27,88.31,0.9,0.14,795,1,19,1.4
+5238,2018,8,7,6,30,17.6,1.88,0.21,0.61,66,453,164,0,0,0.1,66,453,0,164,0.299,30.57,77.55,0.9,0.14,795,1,9,2.1
+5239,2018,8,7,7,30,21.7,1.87,0.2,0.61,98,664,365,0,0,-0.8,98,664,0,365,0.299,22.25,66.26,0.9,0.14,795,0.9,8,2
+5240,2018,8,7,8,30,25.3,1.86,0.19,0.61,115,783,565,0,0,-2.3,115,783,0,565,0.298,16.1,54.92,0.9,0.14,795,0.9,179,1.3
+5241,2018,8,7,9,30,27.5,1.86,0.181,0.61,125,853,740,0,0,-3.6,125,853,0,740,0.297,12.79,43.91,0.9,0.14,794,0.9,324,0.9
+5242,2018,8,7,10,30,29,1.85,0.173,0.61,121,913,878,0,0,-4.1,121,913,0,878,0.297,11.28,33.96,0.9,0.14,794,0.9,287,1
+5243,2018,8,7,11,30,30.2,1.72,0.107,0.61,107,959,965,0,0,-4.6,107,959,0,965,0.296,10.16,26.56,0.9,0.14,793,0.9,268,1.3
+5244,2018,8,7,12,30,31,1.69,0.101,0.61,108,965,987,0,0,-5.1,108,965,0,987,0.296,9.35,24.37,0.91,0.14,793,0.9,257,1.6
+5245,2018,8,7,13,30,31.5,1.67,0.099,0.61,106,957,946,0,0,-5.5,106,957,0,946,0.296,8.8,28.63,0.91,0.14,792,0.9,250,1.8
+5246,2018,8,7,14,30,31.6,1.68,0.104,0.61,104,932,847,0,0,-5.9,104,932,0,847,0.296,8.49,37.15,0.91,0.14,792,0.9,247,2
+5247,2018,8,7,15,30,31.3,1.69,0.108,0.61,98,890,698,0,0,-6.2,98,890,0,698,0.296,8.41,47.58,0.91,0.14,791,0.9,250,1.9
+5248,2018,8,7,16,30,30.4,1.68,0.112,0.61,88,817,512,0,0,-6.5,88,817,0,512,0.296,8.68,58.77,0.91,0.14,791,1,268,1.7
+5249,2018,8,7,17,30,28.5,1.68,0.114,0.61,72,690,306,0,0,-6.6,72,690,0,306,0.297,9.59,70.15,0.91,0.14,791,1,305,1.2
+5250,2018,8,7,18,30,25.3,1.64,0.118,0.61,44,437,110,0,0,-2,44,437,0,110,0.298,16.42,81.35,0.91,0.14,791,1,340,0.9
+5251,2018,8,7,19,30,22.5,1.62,0.108,0.61,0,0,0,0,3,-3,0,0,0,0,0.299,18.04,92.22,0.91,0.14,792,1,179,1.2
+5252,2018,8,7,20,30,20.6,1.57,0.098,0.61,0,0,0,0,4,-3.5,0,0,0,0,0.301,19.57,102.21,0.91,0.14,793,1,5,1.5
+5253,2018,8,7,21,30,19,1.56,0.088,0.61,0,0,0,0,0,-3.3,0,0,0,0,0.303,21.9,110.95,0.9,0.14,793,1,3,1.5
+5254,2018,8,7,22,30,17.8,1.57,0.076,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.305,23.9,117.84,0.9,0.14,793,1,175,1.4
+5255,2018,8,7,23,30,16.8,1.57,0.068,0.61,0,0,0,0,0,-2.9,0,0,0,0,0.306,25.93,122.16,0.89,0.14,793,1,348,1.4
+5256,2018,8,8,0,30,15.9,1.55,0.061,0.61,0,0,0,0,0,-2.3,0,0,0,0,0.306,28.66,123.29,0.89,0.14,793,1,345,1.4
+5257,2018,8,8,1,30,15.2,1.54,0.057,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.307,31.44,121.06,0.89,0.14,793,0.9,346,1.3
+5258,2018,8,8,2,30,14.6,1.54,0.057,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.306,33.82,115.81,0.9,0.14,793,0.9,350,1.2
+5259,2018,8,8,3,30,14,1.55,0.057,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.306,35.79,108.23,0.9,0.14,793,0.9,355,1.1
+5260,2018,8,8,4,30,13.7,1.55,0.056,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.305,37.06,99.02,0.9,0.14,794,0.9,181,1
+5261,2018,8,8,5,30,15.2,1.55,0.056,0.61,14,157,18,0,0,-0.5,14,157,0,18,0.304,34.15,88.47,0.9,0.14,794,0.9,4,1.4
+5262,2018,8,8,6,30,18.7,1.55,0.056,0.61,44,639,180,0,0,0,44,639,0,180,0.303,28.3,77.7,0.9,0.14,795,0.9,9,1.9
+5263,2018,8,8,7,30,22.9,1.56,0.055,0.61,60,815,386,0,0,-0.9,60,815,0,386,0.302,20.59,66.41,0.9,0.14,795,0.9,17,1.7
+5264,2018,8,8,8,30,26.1,1.57,0.055,0.61,70,903,587,0,0,-2.1,70,903,0,587,0.3,15.53,55.07,0.9,0.14,795,0.9,18,1.5
+5265,2018,8,8,9,30,28,1.58,0.055,0.61,78,952,762,0,0,-2.5,78,952,0,762,0.298,13.49,44.08,0.9,0.14,795,0.9,16,1.4
+5266,2018,8,8,10,30,29.3,1.58,0.055,0.61,81,982,894,0,0,-2.7,81,982,0,894,0.297,12.34,34.16,0.91,0.14,795,0.9,17,1.6
+5267,2018,8,8,11,30,30.4,1.53,0.047,0.61,82,1000,974,0,0,-2.9,82,1000,0,974,0.296,11.4,26.82,0.91,0.14,794,0.9,17,1.8
+5268,2018,8,8,12,30,31.1,1.55,0.047,0.61,81,1003,993,0,0,-3.1,81,1003,0,993,0.295,10.79,24.66,0.91,0.14,794,1,17,2.2
+5269,2018,8,8,13,30,31.5,1.56,0.048,0.61,81,993,950,0,0,-3.3,81,993,0,950,0.295,10.4,28.9,0.91,0.14,794,1,16,2.5
+5270,2018,8,8,14,30,31.6,1.59,0.052,0.61,79,971,851,0,0,-3.5,79,971,0,851,0.294,10.21,37.38,0.91,0.14,793,1,14,2.8
+5271,2018,8,8,15,30,31.1,1.6,0.053,0.61,75,935,703,0,0,-3.5,75,935,0,703,0.293,10.46,47.79,0.91,0.14,793,1,15,3.1
+5272,2018,8,8,16,30,30.1,1.62,0.055,0.61,67,873,517,0,0,-3.4,67,873,0,517,0.292,11.16,58.97,0.91,0.14,793,1.1,20,3.2
+5273,2018,8,8,17,30,28.1,1.63,0.056,0.61,55,760,311,0,0,-3.2,55,760,0,311,0.291,12.76,70.35,0.91,0.13,793,1.1,26,2.6
+5274,2018,8,8,18,30,24.6,1.65,0.057,0.61,37,520,113,0,0,-1.1,37,520,0,113,0.291,18.21,81.56,0.91,0.13,793,1.1,36,1.6
+5275,2018,8,8,19,30,21.8,1.66,0.057,0.61,0,0,0,0,0,0.1,0,0,0,0,0.29,23.59,92.44,0.91,0.13,794,1.2,46,1.3
+5276,2018,8,8,20,30,20.7,1.66,0.057,0.61,0,0,0,0,0,0.3,0,0,0,0,0.289,25.57,102.45,0.91,0.13,794,1.2,51,1.3
+5277,2018,8,8,21,30,19.8,1.67,0.056,0.61,0,0,0,0,0,0.7,0,0,0,0,0.288,27.87,111.21,0.91,0.13,794,1.2,55,1.3
+5278,2018,8,8,22,30,19,1.67,0.056,0.61,0,0,0,0,0,1.3,0,0,0,0,0.286,30.51,118.11,0.91,0.13,795,1.3,58,1.3
+5279,2018,8,8,23,30,18.2,1.67,0.056,0.61,0,0,0,0,0,1.8,0,0,0,0,0.285,33.42,122.44,0.91,0.13,795,1.3,60,1.2
+5280,2018,8,9,0,30,17.4,1.67,0.056,0.61,0,0,0,0,0,2.3,0,0,0,0,0.285,36.39,123.58,0.91,0.13,795,1.3,62,1.2
+5281,2018,8,9,1,30,16.7,1.67,0.057,0.61,0,0,0,0,0,2.6,0,0,0,0,0.284,38.76,121.32,0.91,0.13,795,1.3,62,1.1
+5282,2018,8,9,2,30,16.2,1.68,0.059,0.61,0,0,0,0,0,2.6,0,0,0,0,0.284,40.18,116.05,0.91,0.13,795,1.4,59,1.1
+5283,2018,8,9,3,30,15.7,1.7,0.062,0.61,0,0,0,0,0,2.6,0,0,0,0,0.284,41.4,108.45,0.91,0.13,795,1.4,54,1.1
+5284,2018,8,9,4,30,15.4,1.71,0.065,0.61,0,0,0,0,0,2.7,0,0,0,0,0.284,42.32,99.21,0.91,0.13,795,1.4,50,1
+5285,2018,8,9,5,30,17.1,1.73,0.067,0.61,13,134,16,0,0,2.9,13,134,0,16,0.284,38.7,88.62,0.91,0.13,796,1.4,45,1.4
+5286,2018,8,9,6,30,20.8,1.74,0.07,0.61,47,596,172,0,0,3.5,47,596,0,172,0.284,32,77.86,0.91,0.13,796,1.4,41,2.1
+5287,2018,8,9,7,30,25,1.75,0.071,0.61,65,778,374,0,0,3.9,65,778,0,374,0.284,25.55,66.56,0.91,0.13,796,1.4,44,2.6
+5288,2018,8,9,8,30,28.3,1.76,0.071,0.61,75,871,572,0,0,3.1,75,871,0,572,0.284,19.92,55.22,0.91,0.13,796,1.3,47,3.1
+5289,2018,8,9,9,30,30,1.76,0.071,0.61,84,924,746,0,0,2.2,84,924,0,746,0.284,16.84,44.25,0.91,0.13,796,1.3,45,3.2
+5290,2018,8,9,10,30,31.2,1.75,0.07,0.61,88,957,878,0,0,1.5,88,957,0,878,0.284,15.04,34.36,0.91,0.13,795,1.3,42,3.2
+5291,2018,8,9,11,30,32.1,1.75,0.068,0.61,91,973,957,0,0,1,91,973,0,957,0.284,13.78,27.07,0.91,0.13,795,1.3,39,3.2
+5292,2018,8,9,12,30,32.8,1.75,0.068,0.61,91,978,978,0,0,0.4,91,978,0,978,0.283,12.68,24.95,0.91,0.13,795,1.2,37,3.2
+5293,2018,8,9,13,30,33.1,1.75,0.068,0.61,90,970,937,0,0,-0.2,90,970,0,937,0.283,11.9,29.17,0.91,0.13,794,1.2,36,3.3
+5294,2018,8,9,14,30,33,1.75,0.071,0.61,88,948,839,0,0,-0.9,88,948,0,839,0.282,11.43,37.61,0.91,0.13,794,1.2,38,3.5
+5295,2018,8,9,15,30,32.4,1.76,0.074,0.61,83,908,691,0,0,-1.3,83,908,0,691,0.282,11.41,48,0.91,0.13,794,1.2,41,3.8
+5296,2018,8,9,16,30,31.3,1.77,0.078,0.61,76,840,506,0,0,-1.7,76,840,0,506,0.282,11.86,59.17,0.91,0.13,794,1.2,44,4.1
+5297,2018,8,9,17,30,29.2,1.78,0.082,0.61,63,719,302,0,0,-1.8,63,719,0,302,0.283,13.22,70.55,0.91,0.13,794,1.2,48,3.7
+5298,2018,8,9,18,30,25.8,1.8,0.084,0.61,39,468,106,0,0,-1.5,39,468,0,106,0.284,16.55,81.77,0.91,0.13,794,1.2,51,2.7
+5299,2018,8,9,19,30,22.9,1.82,0.084,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.285,20.69,92.66,0.9,0.13,795,1.2,51,2.1
+5300,2018,8,9,20,30,21.5,1.82,0.082,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.286,22.76,102.69,0.9,0.13,795,1.2,47,2
+5301,2018,8,9,21,30,20.2,1.81,0.078,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.286,25.15,111.47,0.9,0.13,795,1.1,42,1.8
+5302,2018,8,9,22,30,18.9,1.78,0.072,0.61,0,0,0,0,0,0,0,0,0,0,0.286,28.11,118.39,0.9,0.13,795,1.1,42,1.6
+5303,2018,8,9,23,30,17.8,1.77,0.069,0.61,0,0,0,0,0,0.6,0,0,0,0,0.286,31.35,122.73,0.9,0.13,795,1.1,45,1.3
+5304,2018,8,10,0,30,17,1.77,0.067,0.61,0,0,0,0,0,1.1,0,0,0,0,0.287,34.28,123.87,0.9,0.13,795,1.2,50,1.1
+5305,2018,8,10,1,30,16.3,1.78,0.068,0.61,0,0,0,0,0,1.6,0,0,0,0,0.287,37.19,121.59,0.9,0.13,796,1.2,59,1
+5306,2018,8,10,2,30,15.8,1.79,0.069,0.61,0,0,0,0,0,2.2,0,0,0,0,0.287,39.88,116.29,0.91,0.13,796,1.3,71,0.9
+5307,2018,8,10,3,30,15.2,1.79,0.068,0.61,0,0,0,0,0,2.9,0,0,0,0,0.287,43.67,108.66,0.91,0.13,796,1.3,86,1
+5308,2018,8,10,4,30,14.9,1.78,0.068,0.61,0,0,0,0,0,3.9,0,0,0,0,0.287,47.63,99.4,0.91,0.13,796,1.3,96,1
+5309,2018,8,10,5,30,16.6,1.77,0.067,0.61,12,132,15,0,0,4.9,12,132,0,15,0.287,46.06,88.78,0.91,0.13,796,1.3,96,1.4
+5310,2018,8,10,6,30,20.3,1.76,0.066,0.61,46,602,171,0,0,6,46,602,0,171,0.287,39.27,78.01,0.91,0.13,797,1.3,96,1.9
+5311,2018,8,10,7,30,24.4,1.75,0.065,0.61,62,788,374,0,0,6.5,62,788,0,374,0.287,31.76,66.71,0.91,0.13,797,1.3,94,2.3
+5312,2018,8,10,8,30,27.6,1.74,0.064,0.61,73,882,574,0,0,5,73,882,0,574,0.287,23.65,55.38,0.91,0.13,797,1.2,82,2.6
+5313,2018,8,10,9,30,29.6,1.74,0.063,0.61,80,936,749,0,0,3.2,80,936,0,749,0.287,18.5,44.42,0.91,0.13,796,1.2,70,2.9
+5314,2018,8,10,10,30,31.1,1.73,0.061,0.61,82,971,882,0,0,1.8,82,971,0,882,0.287,15.44,34.57,0.91,0.13,796,1.1,62,3.1
+5315,2018,8,10,11,30,32.2,1.71,0.053,0.61,82,992,963,0,0,0.7,82,992,0,963,0.287,13.36,27.33,0.9,0.13,795,1.1,56,3.3
+5316,2018,8,10,12,30,32.9,1.7,0.05,0.61,81,1000,986,0,0,-0.4,81,1000,0,986,0.286,11.91,25.24,0.9,0.13,795,1,52,3.5
+5317,2018,8,10,13,30,33.3,1.69,0.047,0.61,79,996,946,0,0,-1.4,79,996,0,946,0.286,10.81,29.44,0.9,0.13,794,1,50,3.7
+5318,2018,8,10,14,30,33.2,1.69,0.047,0.61,75,980,849,0,0,-2.3,75,980,0,849,0.285,10.15,37.86,0.9,0.13,794,0.9,47,3.8
+5319,2018,8,10,15,30,32.7,1.68,0.046,0.61,70,948,702,0,0,-3.1,70,948,0,702,0.284,9.83,48.22,0.9,0.13,793,0.9,45,3.9
+5320,2018,8,10,16,30,31.6,1.68,0.045,0.61,63,890,516,0,0,-3.8,63,890,0,516,0.283,9.95,59.38,0.9,0.13,793,0.9,43,4
+5321,2018,8,10,17,30,29.5,1.68,0.045,0.61,52,780,309,0,0,-4.3,52,780,0,309,0.282,10.83,70.76,0.89,0.13,793,0.9,41,3.1
+5322,2018,8,10,18,30,25.6,1.68,0.047,0.61,33,534,108,0,0,-3.7,33,534,0,108,0.282,14.25,81.98,0.89,0.13,793,0.9,39,2
+5323,2018,8,10,19,30,22.7,1.7,0.049,0.61,0,0,0,0,0,-2.9,0,0,0,0,0.282,17.91,92.89,0.89,0.13,794,0.9,37,1.8
+5324,2018,8,10,20,30,21.6,1.71,0.052,0.61,0,0,0,0,0,-2.8,0,0,0,0,0.282,19.28,102.93,0.89,0.13,794,1,40,2
+5325,2018,8,10,21,30,20.5,1.72,0.054,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.282,21.59,111.73,0.9,0.13,794,1.1,51,2
+5326,2018,8,10,22,30,19.3,1.74,0.058,0.61,0,0,0,0,0,-1,0,0,0,0,0.283,25.48,118.68,0.9,0.13,795,1.1,71,1.8
+5327,2018,8,10,23,30,18.4,1.77,0.062,0.61,0,0,0,0,0,0.4,0,0,0,0,0.283,29.69,123.03,0.9,0.13,795,1.2,104,1.5
+5328,2018,8,11,0,30,17.8,1.79,0.064,0.61,0,0,0,0,0,1.3,0,0,0,0,0.283,33.06,124.16,0.9,0.13,795,1.3,144,1.6
+5329,2018,8,11,1,30,17.3,1.8,0.065,0.61,0,0,0,0,0,2.3,0,0,0,0,0.284,36.47,121.87,0.9,0.13,795,1.3,168,1.9
+5330,2018,8,11,2,30,16.6,1.81,0.067,0.61,0,0,0,0,0,3.3,0,0,0,0,0.284,41.04,116.54,0.9,0.13,795,1.4,182,2.2
+5331,2018,8,11,3,30,15.8,1.83,0.071,0.61,0,0,0,0,0,4.5,0,0,0,0,0.284,47.01,108.88,0.9,0.13,796,1.4,198,2.1
+5332,2018,8,11,4,30,15.4,1.84,0.077,0.61,0,0,0,0,0,5.4,0,0,0,0,0.284,51.41,99.59,0.91,0.13,796,1.4,210,2
+5333,2018,8,11,5,30,16.9,1.84,0.081,0.61,12,115,14,0,0,6.1,12,115,0,14,0.284,49.04,88.94,0.91,0.13,797,1.4,214,2.5
+5334,2018,8,11,6,30,20.1,1.84,0.083,0.61,48,570,165,0,0,7.1,48,570,0,165,0.284,43.05,78.17,0.91,0.13,797,1.4,218,3.6
+5335,2018,8,11,7,30,23,1.84,0.083,0.61,68,761,367,0,0,8.3,68,761,0,367,0.284,39.11,66.87,0.91,0.13,797,1.4,224,3.9
+5336,2018,8,11,8,30,25.5,1.84,0.084,0.61,80,857,565,0,0,7.8,80,857,0,565,0.284,32.52,55.54,0.91,0.13,797,1.4,224,3.4
+5337,2018,8,11,9,30,27.7,1.85,0.083,0.61,88,914,739,0,0,6.8,88,914,0,739,0.283,26.61,44.6,0.91,0.13,796,1.3,219,2.6
+5338,2018,8,11,10,30,29.7,1.85,0.082,0.61,92,948,871,0,0,5.4,92,948,0,871,0.282,21.5,34.78,0.91,0.13,796,1.3,211,1.9
+5339,2018,8,11,11,30,31.1,1.85,0.076,0.61,93,969,952,0,0,3.8,93,969,0,952,0.282,17.8,27.6,0.91,0.13,795,1.3,196,1.3
+5340,2018,8,11,12,30,32,1.84,0.074,0.61,92,976,973,0,0,2.4,92,976,0,973,0.282,15.25,25.54,0.91,0.13,794,1.2,169,0.8
+5341,2018,8,11,13,30,32.6,1.83,0.07,0.61,88,977,936,0,0,1,88,977,0,936,0.282,13.38,29.73,0.91,0.13,794,1.1,131,0.7
+5342,2018,8,11,14,30,32.8,1.78,0.059,0.61,81,964,840,0,0,-0.3,81,964,0,840,0.282,12.02,38.1,0.91,0.13,793,1.1,99,0.8
+5343,2018,8,11,15,30,32.6,1.78,0.057,0.61,74,933,693,0,0,-1.4,74,933,0,693,0.283,11.24,48.45,0.9,0.13,793,1,82,1
+5344,2018,8,11,16,30,31.8,1.77,0.056,0.61,66,874,508,0,0,-2.4,66,874,0,508,0.284,10.94,59.6,0.9,0.13,792,1,76,1.2
+5345,2018,8,11,17,30,29.8,1.76,0.055,0.61,54,765,303,0,0,-3.1,54,765,0,303,0.285,11.58,70.98,0.9,0.14,792,1,79,1
+5346,2018,8,11,18,30,27.1,1.76,0.054,0.61,34,517,104,0,0,-0.8,34,517,0,104,0.286,16.15,82.2,0.9,0.14,792,0.9,91,0.7
+5347,2018,8,11,19,30,25.5,1.76,0.053,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.287,16.81,93.12,0.9,0.14,793,0.9,107,0.6
+5348,2018,8,11,20,30,25,1.77,0.053,0.61,0,0,0,0,0,-2,0,0,0,0,0.288,16.69,103.18,0.9,0.14,793,0.9,144,0.4
+5349,2018,8,11,21,30,24.4,1.78,0.055,0.61,0,0,0,0,0,-2.3,0,0,0,0,0.289,16.98,112,0.9,0.14,793,0.9,203,0.5
+5350,2018,8,11,22,30,23.2,1.8,0.057,0.61,0,0,0,0,0,-2.3,0,0,0,0,0.289,18.16,118.97,0.9,0.14,793,0.9,242,0.7
+5351,2018,8,11,23,30,21.5,1.82,0.06,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.289,20.35,123.33,0.9,0.14,793,0.9,255,0.9
+5352,2018,8,12,0,30,20,1.84,0.065,0.61,0,0,0,0,0,-1.9,0,0,0,0,0.289,22.71,124.45,0.9,0.14,792,1,262,0.9
+5353,2018,8,12,1,30,19,1.87,0.073,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.29,25.02,122.14,0.9,0.14,792,1,272,0.8
+5354,2018,8,12,2,30,18.3,1.91,0.084,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.29,27.68,116.79,0.9,0.14,792,1,288,0.7
+5355,2018,8,12,3,30,17.6,1.94,0.097,0.61,0,0,0,0,0,0.1,0,0,0,0,0.291,30.54,109.09,0.9,0.14,793,1.1,315,0.4
+5356,2018,8,12,4,30,17.1,1.97,0.111,0.61,0,0,0,0,0,0.7,0,0,0,0,0.291,32.95,99.78,0.9,0.14,793,1.1,175,0.3
+5357,2018,8,12,5,30,18.2,1.99,0.125,0.61,10,71,11,0,0,1.1,10,71,0,11,0.292,31.78,89.1,0.9,0.14,793,1.2,80,0.2
+5358,2018,8,12,6,30,21.3,2.02,0.141,0.61,57,490,156,0,0,2.4,57,490,0,156,0.292,28.74,78.33,0.9,0.14,794,1.2,231,0.2
+5359,2018,8,12,7,30,25.3,2.04,0.158,0.61,88,676,352,0,0,1.8,88,676,0,352,0.292,21.59,67.02,0.9,0.14,794,1.3,328,0.5
+5360,2018,8,12,8,30,28.8,2.06,0.177,0.61,111,771,546,0,0,0.5,111,771,0,546,0.292,15.98,55.69,0.9,0.14,794,1.3,345,1
+5361,2018,8,12,9,30,31.2,2.07,0.195,0.61,131,822,715,0,0,-0.5,131,822,0,715,0.291,12.96,44.77,0.9,0.14,793,1.3,179,1.5
+5362,2018,8,12,10,30,33,2.08,0.214,0.61,136,870,849,0,0,-1.4,136,870,0,849,0.291,11.01,34.99,0.9,0.14,793,1.2,5,1.9
+5363,2018,8,12,11,30,34.2,2.01,0.159,0.61,129,909,933,0,0,-2,129,909,0,933,0.291,9.83,27.86,0.9,0.14,792,1.2,7,2.1
+5364,2018,8,12,12,30,34.9,2.01,0.167,0.61,134,908,951,0,0,-2.4,134,908,0,951,0.292,9.16,25.84,0.9,0.14,791,1.2,9,2.3
+5365,2018,8,12,13,30,35.2,2.02,0.175,0.61,124,911,913,0,0,-2.8,124,911,0,913,0.292,8.76,30.01,0.9,0.14,790,1.2,13,2.3
+5366,2018,8,12,14,30,35.2,1.92,0.123,0.61,107,910,821,0,0,-3.2,132,865,0,810,0.292,8.5,38.36,0.9,0.14,790,1.2,16,2.2
+5367,2018,8,12,15,30,34.6,1.92,0.123,0.61,102,865,673,0,0,-3.6,181,716,7,654,0.292,8.52,48.68,0.91,0.14,789,1.2,15,2
+5368,2018,8,12,16,30,33.5,1.91,0.13,0.61,93,781,486,0,0,-4,124,717,0,484,0.293,8.81,59.82,0.91,0.14,789,1.2,182,1.8
+5369,2018,8,12,17,30,31.1,1.89,0.148,0.61,80,622,280,0,0,-4,89,588,0,278,0.293,10.1,71.2,0.92,0.13,789,1.2,334,1.9
+5370,2018,8,12,18,30,27.4,1.86,0.179,0.61,47,321,89,1,0,0,50,281,18,87,0.293,16.78,82.42,0.93,0.13,789,1.3,314,2.5
+5371,2018,8,12,19,30,24.5,1.87,0.206,0.61,0,0,0,0,4,1.8,0,0,0,0,0.293,22.67,93.36,0.93,0.13,790,1.4,314,3.1
+5372,2018,8,12,20,30,22.8,1.88,0.238,0.61,0,0,0,0,3,4.3,0,0,0,0,0.293,29.91,103.44,0.94,0.13,791,1.4,319,3.4
+5373,2018,8,12,21,30,21.7,1.81,0.308,0.61,0,0,0,0,3,6.3,0,0,0,0,0.293,36.77,112.28,0.94,0.13,791,1.5,323,3.1
+5374,2018,8,12,22,30,21.1,1.77,0.367,0.61,0,0,0,0,3,7,0,0,0,0,0.293,40,119.26,0.94,0.13,791,1.6,324,2.5
+5375,2018,8,12,23,30,20.5,1.77,0.391,0.61,0,0,0,0,3,7,0,0,0,0,0.292,41.6,123.64,0.95,0.13,791,1.7,323,1.9
+5376,2018,8,13,0,30,20,1.76,0.425,0.61,0,0,0,0,4,6.9,0,0,0,0,0.291,42.55,124.76,0.94,0.13,791,1.8,328,1.5
+5377,2018,8,13,1,30,19.6,1.83,0.407,0.61,0,0,0,0,3,6.7,0,0,0,0,0.29,43.2,122.42,0.94,0.13,791,1.9,339,1.5
+5378,2018,8,13,2,30,19,1.86,0.416,0.61,0,0,0,0,3,6.8,0,0,0,0,0.289,44.92,117.04,0.94,0.13,792,2,348,1.4
+5379,2018,8,13,3,30,18.3,1.9,0.41,0.61,0,0,0,0,4,6.9,0,0,0,0,0.289,47.41,109.31,0.94,0.13,792,2,352,1.3
+5380,2018,8,13,4,30,17.8,1.95,0.382,0.61,0,0,0,0,3,7.1,0,0,0,0,0.289,49.7,99.97,0.93,0.13,792,2,354,1.1
+5381,2018,8,13,5,30,18.5,2,0.35,0.61,8,31,8,0,0,7.5,8,31,0,8,0.288,48.6,89.25,0.93,0.13,793,2,352,1.4
+5382,2018,8,13,6,30,20.8,2.04,0.325,0.61,71,332,137,0,0,7.9,71,332,0,137,0.288,43.53,78.49,0.92,0.13,793,2,176,2.1
+5383,2018,8,13,7,30,23.3,2.06,0.305,0.61,116,547,328,0,0,8.6,116,547,0,328,0.288,39.03,67.17,0.92,0.13,793,1.9,5,2.4
+5384,2018,8,13,8,30,25.8,2.08,0.293,0.61,142,672,519,0,0,8.1,142,672,0,519,0.289,32.48,55.85,0.92,0.13,793,1.9,6,2.4
+5385,2018,8,13,9,30,28,2.08,0.289,0.61,160,744,687,0,0,7.3,160,744,0,687,0.289,27.13,44.95,0.92,0.13,793,2,5,2.5
+5386,2018,8,13,10,30,29.9,2.07,0.293,0.61,175,781,813,0,0,6.7,194,745,0,803,0.29,23.19,35.21,0.92,0.13,792,2,6,2.8
+5387,2018,8,13,11,30,31.3,2.05,0.31,0.61,193,785,885,0,0,6.1,218,740,0,871,0.29,20.58,28.14,0.93,0.13,792,2,8,3
+5388,2018,8,13,12,30,32.1,2.03,0.359,0.61,218,756,897,0,0,5.6,218,756,0,897,0.289,19.06,26.15,0.94,0.13,791,2.1,9,3.3
+5389,2018,8,13,13,30,32.1,1.98,0.442,0.61,253,685,844,0,7,5.4,397,300,0,656,0.289,18.71,30.3,0.95,0.13,791,2.2,183,3.5
+5390,2018,8,13,14,30,31.3,1.92,0.618,0.61,274,592,737,0,6,5.3,59,0,0,59,0.289,19.45,38.61,0.95,0.13,790,2.3,351,3.8
+5391,2018,8,13,15,30,29.7,1.88,0.687,0.61,262,501,591,0,6,5.5,78,0,0,78,0.289,21.66,48.91,0.96,0.13,790,2.4,337,3.9
+5392,2018,8,13,16,30,27.3,1.86,0.772,0.61,226,375,413,0,6,6.2,26,0,0,26,0.29,26.21,60.04,0.96,0.13,790,2.5,323,3.6
+5393,2018,8,13,17,30,24.4,1.83,0.882,0.61,151,230,224,0,7,7.7,76,7,0,78,0.29,34.34,71.42,0.96,0.13,791,2.6,317,2.7
+5394,2018,8,13,18,30,21.8,1.83,0.859,0.61,48,84,59,7,7,9.4,50,61,100,58,0.29,45.29,82.65,0.96,0.13,792,2.6,338,1.9
+5395,2018,8,13,19,30,20.5,1.85,0.733,0.61,0,0,0,0,4,10.7,0,0,0,0,0.291,53.21,93.6,0.95,0.13,793,2.5,194,1.5
+5396,2018,8,13,20,30,20,1.86,0.61,0.61,0,0,0,0,3,11,0,0,0,0,0.292,56.31,103.7,0.95,0.13,793,2.3,37,1.1
+5397,2018,8,13,21,30,19.6,1.88,0.484,0.61,0,0,0,0,7,10.9,0,0,0,0,0.292,57.22,112.56,0.94,0.13,792,2.1,25,0.6
+5398,2018,8,13,22,30,18.8,1.93,0.371,0.61,0,0,0,0,0,10.6,0,0,0,0,0.292,58.77,119.56,0.94,0.13,792,2,160,0.5
+5399,2018,8,13,23,30,17.9,1.98,0.301,0.61,0,0,0,0,0,10.3,0,0,0,0,0.291,61.14,123.94,0.93,0.13,792,1.9,313,0.8
+5400,2018,8,14,0,30,17.2,2.01,0.261,0.61,0,0,0,0,0,10.3,0,0,0,0,0.29,63.69,125.06,0.92,0.13,791,1.8,317,1
+5401,2018,8,14,1,30,16.6,2.02,0.236,0.61,0,0,0,0,0,10.2,0,0,0,0,0.289,66.05,122.71,0.92,0.13,791,1.8,329,1.2
+5402,2018,8,14,2,30,16.2,2.02,0.227,0.61,0,0,0,0,0,10.1,0,0,0,0,0.288,67.34,117.29,0.92,0.13,791,1.8,342,1.3
+5403,2018,8,14,3,30,15.9,1.99,0.229,0.61,0,0,0,0,0,10,0,0,0,0,0.288,67.94,109.53,0.93,0.13,791,1.8,176,1.4
+5404,2018,8,14,4,30,15.7,1.97,0.238,0.61,0,0,0,0,0,9.9,0,0,0,0,0.288,68.45,100.16,0.93,0.13,791,1.8,9,1.5
+5405,2018,8,14,5,30,16.3,1.96,0.246,0.61,8,36,8,0,0,9.9,7,30,7,7,0.289,65.9,89.41,0.93,0.13,792,1.9,23,1.6
+5406,2018,8,14,6,30,18.3,1.96,0.252,0.61,68,365,140,0,0,9.9,68,365,0,140,0.289,57.97,78.64,0.93,0.13,792,1.9,36,1.7
+5407,2018,8,14,7,30,21.8,1.96,0.262,0.61,110,567,329,0,0,9,110,567,0,329,0.288,44.09,67.33,0.93,0.13,792,1.9,30,1.5
+5408,2018,8,14,8,30,25.6,1.97,0.271,0.61,139,680,519,0,0,6.4,145,663,0,516,0.288,29.34,56.01,0.93,0.13,792,2,187,1.2
+5409,2018,8,14,9,30,28.1,1.96,0.28,0.61,164,742,687,0,0,4.6,271,478,0,608,0.288,22.32,45.13,0.94,0.13,792,2,338,1
+5410,2018,8,14,10,30,29.7,1.93,0.306,0.61,186,768,812,0,4,4,222,27,0,244,0.288,19.53,35.43,0.94,0.13,792,2,303,0.9
+5411,2018,8,14,11,30,30.6,1.87,0.342,0.61,205,774,886,0,0,3.7,336,547,0,817,0.288,18.19,28.41,0.95,0.13,791,2,281,1.2
+5412,2018,8,14,12,30,31.1,1.86,0.36,0.61,211,772,902,0,4,3.6,428,75,0,495,0.288,17.56,26.46,0.95,0.13,790,2,280,1.7
+5413,2018,8,14,13,30,31.2,1.84,0.358,0.61,202,767,862,0,4,3.7,464,142,0,586,0.289,17.55,30.6,0.95,0.13,790,2.1,287,2.2
+5414,2018,8,14,14,30,30.7,1.79,0.321,0.61,191,736,764,0,4,3.9,406,209,0,569,0.289,18.28,38.88,0.95,0.13,790,2.1,295,2.7
+5415,2018,8,14,15,30,29.3,1.75,0.362,0.61,184,660,616,0,4,4.2,322,207,0,457,0.288,20.26,49.15,0.96,0.13,790,2.2,303,3
+5416,2018,8,14,16,30,27.5,1.74,0.381,0.61,155,571,438,0,7,4.7,217,213,0,323,0.288,23.3,60.27,0.95,0.13,790,2.3,314,2.9
+5417,2018,8,14,17,30,25.6,1.78,0.334,0.61,105,460,250,0,4,5.3,165,140,4,209,0.288,27.12,71.65,0.95,0.13,791,2.2,339,2.2
+5418,2018,8,14,18,30,23.4,1.81,0.264,0.61,46,243,76,7,4,5.7,61,8,100,62,0.288,31.76,82.88,0.94,0.13,791,2.1,208,1.3
+5419,2018,8,14,19,30,21.5,1.84,0.212,0.61,0,0,0,0,0,6.2,0,0,0,0,0.288,36.92,93.85,0.94,0.13,791,1.9,79,0.9
+5420,2018,8,14,20,30,20.3,1.83,0.199,0.61,0,0,0,0,7,6.7,0,0,0,0,0.288,41.31,103.96,0.94,0.13,792,1.7,113,0.8
+5421,2018,8,14,21,30,19.3,1.85,0.175,0.61,0,0,0,0,0,7,0,0,0,0,0.288,44.83,112.84,0.93,0.13,792,1.6,133,0.7
+5422,2018,8,14,22,30,18.5,1.91,0.138,0.61,0,0,0,0,0,7.1,0,0,0,0,0.288,47.43,119.86,0.92,0.13,792,1.5,150,0.5
+5423,2018,8,14,23,30,17.7,1.96,0.117,0.61,0,0,0,0,0,6.9,0,0,0,0,0.288,49.25,124.26,0.91,0.13,792,1.4,219,0.2
+5424,2018,8,15,0,30,17,1.98,0.108,0.61,0,0,0,0,0,6.4,0,0,0,0,0.288,49.82,125.37,0.91,0.13,792,1.3,306,0.2
+5425,2018,8,15,1,30,16.3,2,0.106,0.61,0,0,0,0,0,5.8,0,0,0,0,0.288,49.93,122.99,0.91,0.13,792,1.2,339,0.2
+5426,2018,8,15,2,30,15.9,2,0.108,0.61,0,0,0,0,0,5.1,0,0,0,0,0.288,48.8,117.54,0.91,0.13,792,1.2,176,0.3
+5427,2018,8,15,3,30,15.4,2,0.112,0.61,0,0,0,0,0,4.6,0,0,0,0,0.288,48.42,109.75,0.91,0.13,792,1.2,15,0.4
+5428,2018,8,15,4,30,15,2,0.116,0.61,0,0,0,0,0,4.2,0,0,0,0,0.288,48.27,100.36,0.91,0.13,792,1.2,25,0.5
+5429,2018,8,15,5,30,15.8,2,0.119,0.61,8,68,9,0,0,3.9,8,68,0,9,0.287,44.96,89.56,0.91,0.13,793,1.2,31,0.7
+5430,2018,8,15,6,30,18.9,2,0.123,0.61,53,510,152,0,0,3.9,53,510,0,152,0.287,36.98,78.8,0.91,0.13,793,1.2,30,1
+5431,2018,8,15,7,30,22.9,1.99,0.127,0.61,78,713,351,0,0,2.1,78,713,0,351,0.286,25.49,67.49,0.91,0.13,793,1.2,184,1.5
+5432,2018,8,15,8,30,26.1,1.98,0.13,0.61,95,818,550,0,0,-1.7,95,818,0,550,0.284,15.99,56.18,0.91,0.13,793,1.2,335,2.1
+5433,2018,8,15,9,30,28.1,1.98,0.127,0.61,103,883,724,0,0,-3.2,103,883,0,724,0.283,12.77,45.32,0.91,0.13,793,1.2,320,2.3
+5434,2018,8,15,10,30,29.6,1.98,0.12,0.61,106,924,857,0,0,-3.5,119,907,7,856,0.281,11.39,35.65,0.91,0.13,793,1.2,309,2.4
+5435,2018,8,15,11,30,30.8,1.98,0.11,0.61,107,946,937,0,0,-3.7,107,946,0,937,0.28,10.49,28.69,0.91,0.13,792,1.2,305,2.6
+5436,2018,8,15,12,30,31.6,1.98,0.106,0.61,106,952,956,0,0,-3.9,106,952,0,956,0.28,9.91,26.78,0.91,0.13,792,1.2,307,2.9
+5437,2018,8,15,13,30,32,1.97,0.106,0.61,107,938,912,0,0,-4,286,606,7,806,0.279,9.56,30.9,0.91,0.13,791,1.3,310,3.1
+5438,2018,8,15,14,30,31.9,1.95,0.119,0.61,109,904,810,0,0,-4.2,221,707,7,769,0.28,9.51,39.14,0.92,0.13,791,1.3,312,3.2
+5439,2018,8,15,15,30,31.3,1.93,0.137,0.61,109,844,658,0,3,-4.3,324,102,0,390,0.28,9.75,49.4,0.93,0.13,791,1.3,314,3.3
+5440,2018,8,15,16,30,30.1,1.92,0.154,0.61,100,752,470,0,7,-4.3,202,94,0,248,0.281,10.4,60.51,0.93,0.13,791,1.3,316,3.2
+5441,2018,8,15,17,30,27.9,1.92,0.168,0.61,80,602,267,0,0,-4.4,120,399,0,244,0.281,11.76,71.88,0.93,0.13,791,1.3,318,2.3
+5442,2018,8,15,18,30,24.7,1.93,0.168,0.61,42,321,80,1,0,-3.5,45,280,14,79,0.282,15.25,83.12,0.93,0.13,791,1.3,323,1.3
+5443,2018,8,15,19,30,22.4,1.94,0.164,0.61,0,0,0,0,0,-3.6,0,0,0,0,0.283,17.39,94.1,0.93,0.13,792,1.3,323,1.1
+5444,2018,8,15,20,30,21.2,1.93,0.165,0.61,0,0,0,0,7,-4.2,0,0,0,0,0.284,17.9,104.23,0.93,0.13,792,1.2,318,1.1
+5445,2018,8,15,21,30,20.2,1.91,0.17,0.61,0,0,0,0,7,-4.5,0,0,0,0,0.284,18.57,113.13,0.93,0.13,792,1.2,314,1.2
+5446,2018,8,15,22,30,19.2,1.92,0.171,0.61,0,0,0,0,7,-4.5,0,0,0,0,0.284,19.77,120.17,0.93,0.13,793,1.2,318,1.2
+5447,2018,8,15,23,30,18.5,1.9,0.182,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.285,20.8,124.58,0.93,0.13,793,1.2,324,1.3
+5448,2018,8,16,0,30,17.7,1.9,0.196,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.285,22.08,125.68,0.93,0.13,793,1.2,326,1.4
+5449,2018,8,16,1,30,16.6,1.94,0.196,0.61,0,0,0,0,0,-4,0,0,0,0,0.286,24.14,123.28,0.93,0.13,794,1.2,330,1.3
+5450,2018,8,16,2,30,15.6,1.96,0.201,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.287,26.26,117.8,0.93,0.13,794,1.3,340,1.2
+5451,2018,8,16,3,30,14.8,1.96,0.207,0.61,0,0,0,0,0,-3.4,0,0,0,0,0.287,28.36,109.98,0.93,0.13,794,1.3,175,1
+5452,2018,8,16,4,30,14.1,1.96,0.211,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.287,31.16,100.55,0.93,0.13,794,1.3,7,0.9
+5453,2018,8,16,5,30,15,1.96,0.211,0.61,7,39,7,0,0,-2.1,7,39,0,7,0.287,30.87,89.71,0.93,0.13,795,1.3,13,1.4
+5454,2018,8,16,6,30,17.7,1.94,0.216,0.61,64,404,141,7,4,-1.5,102,32,100,108,0.286,27.16,78.96,0.93,0.13,795,1.3,18,2
+5455,2018,8,16,7,30,21.2,1.93,0.215,0.61,101,618,336,0,0,-2.2,156,335,0,283,0.286,20.71,67.64,0.93,0.13,796,1.4,21,2.2
+5456,2018,8,16,8,30,24.4,1.92,0.217,0.61,124,732,530,0,3,-3.1,301,103,0,358,0.285,15.94,56.34,0.93,0.13,796,1.5,15,2.3
+5457,2018,8,16,9,30,26.3,1.9,0.222,0.61,143,795,700,0,4,-3.2,367,76,0,420,0.285,14.11,45.5,0.94,0.13,796,1.6,177,2.2
+5458,2018,8,16,10,30,27.3,1.88,0.227,0.61,149,839,829,0,4,-2.9,418,68,0,473,0.285,13.66,35.88,0.94,0.13,796,1.7,336,2.4
+5459,2018,8,16,11,30,27.7,1.83,0.194,0.61,147,868,906,0,4,-1.9,253,1,0,254,0.284,14.33,28.97,0.94,0.13,796,1.8,325,2.9
+5460,2018,8,16,12,30,27.4,1.83,0.194,0.61,145,873,922,0,8,-0.5,309,17,0,324,0.284,16.2,27.09,0.94,0.13,796,1.9,327,3.4
+5461,2018,8,16,13,30,26.8,1.85,0.183,0.61,122,893,886,0,7,1.2,387,301,0,644,0.284,18.9,31.2,0.94,0.13,796,2,337,3.7
+5462,2018,8,16,14,30,26.2,1.6,0.087,0.61,93,912,798,0,4,2.6,209,10,0,217,0.285,21.71,39.42,0.94,0.13,796,2,351,3.8
+5463,2018,8,16,15,30,25.7,1.62,0.079,0.61,83,879,652,0,4,3.5,208,20,0,221,0.286,23.72,49.65,0.93,0.13,796,1.9,186,3.8
+5464,2018,8,16,16,30,25,1.65,0.072,0.61,71,819,471,0,3,3.8,243,244,0,362,0.287,25.34,60.74,0.93,0.13,795,1.9,20,3.5
+5465,2018,8,16,17,30,23.6,1.68,0.069,0.61,57,694,270,0,3,3.9,137,238,7,210,0.288,27.85,72.11,0.93,0.12,796,1.8,31,2.7
+5466,2018,8,16,18,30,21,1.69,0.071,0.61,34,409,81,6,3,4.1,51,54,86,57,0.289,33.04,83.36,0.93,0.12,796,1.8,39,1.7
+5467,2018,8,16,19,30,19,1.71,0.075,0.61,0,0,0,0,0,4.5,0,0,0,0,0.29,38.26,94.36,0.93,0.12,796,1.8,43,1.1
+5468,2018,8,16,20,30,18.4,1.73,0.082,0.61,0,0,0,0,3,4.6,0,0,0,0,0.29,40.25,104.5,0.93,0.12,797,1.8,37,1
+5469,2018,8,16,21,30,18,1.75,0.089,0.61,0,0,0,0,3,4.7,0,0,0,0,0.29,41.33,113.42,0.94,0.12,797,1.8,19,0.8
+5470,2018,8,16,22,30,17.6,1.75,0.094,0.61,0,0,0,0,4,4.6,0,0,0,0,0.29,42.35,120.48,0.94,0.12,797,1.9,172,0.6
+5471,2018,8,16,23,30,17.1,1.75,0.1,0.61,0,0,0,0,4,4.6,0,0,0,0,0.29,43.67,124.9,0.94,0.12,797,1.9,321,0.6
+5472,2018,8,17,0,30,17,1.74,0.107,0.61,0,0,0,0,7,4.7,0,0,0,0,0.29,44.01,125.99,0.94,0.12,797,2,287,0.6
+5473,2018,8,17,1,30,16.8,1.73,0.119,0.61,0,0,0,0,7,4.7,0,0,0,0,0.291,44.79,123.57,0.95,0.12,797,2.1,263,0.7
+5474,2018,8,17,2,30,16.4,1.72,0.131,0.61,0,0,0,0,7,4.8,0,0,0,0,0.294,46.31,118.05,0.95,0.12,797,2.1,255,0.9
+5475,2018,8,17,3,30,16.1,1.72,0.137,0.61,0,0,0,0,7,5,0,0,0,0,0.295,47.64,110.2,0.95,0.12,797,2.2,255,0.9
+5476,2018,8,17,4,30,16,1.73,0.139,0.61,0,0,0,0,8,5.1,0,0,0,0,0.293,48.41,100.75,0.95,0.12,797,2.2,259,0.8
+5477,2018,8,17,5,30,17,1.75,0.138,0.61,6,37,6,4,7,5.3,3,0,57,3,0.291,45.88,89.87,0.94,0.12,797,2.1,260,0.7
+5478,2018,8,17,6,30,19.6,1.77,0.133,0.61,54,458,140,4,0,5.5,76,209,61,115,0.289,39.62,79.13,0.94,0.12,798,2.1,268,0.9
+5479,2018,8,17,7,30,22.7,1.79,0.13,0.61,81,675,336,0,0,5.6,112,555,0,322,0.288,33.09,67.8,0.94,0.12,798,2,262,0.9
+5480,2018,8,17,8,30,25,1.81,0.131,0.61,98,786,532,0,0,5.4,109,761,0,529,0.287,28.43,56.51,0.94,0.12,798,2,227,0.9
+5481,2018,8,17,9,30,26.7,1.81,0.132,0.61,109,849,702,0,0,5.4,109,849,0,702,0.286,25.7,45.69,0.94,0.12,798,2,206,1.2
+5482,2018,8,17,10,30,28.2,1.8,0.134,0.61,107,904,837,0,0,5.4,107,904,0,837,0.285,23.53,36.1,0.94,0.12,797,1.9,207,1.3
+5483,2018,8,17,11,30,29.5,1.56,0.075,0.61,94,949,922,0,0,5.3,94,949,0,922,0.283,21.68,29.25,0.95,0.12,797,1.9,213,1.3
+5484,2018,8,17,12,30,30.4,1.58,0.072,0.61,94,954,941,0,0,5,94,954,0,941,0.282,20.15,27.42,0.94,0.12,796,1.8,220,1.3
+5485,2018,8,17,13,30,30.9,1.6,0.073,0.61,92,946,899,0,0,4.5,200,729,0,822,0.281,18.93,31.51,0.94,0.12,796,1.8,231,1.2
+5486,2018,8,17,14,30,31,1.62,0.076,0.61,90,921,799,0,8,4,320,240,0,505,0.281,18.15,39.69,0.94,0.12,795,1.8,245,1.2
+5487,2018,8,17,15,30,30.6,1.63,0.081,0.61,86,874,649,0,8,3.7,196,74,0,244,0.281,18.18,49.9,0.94,0.12,795,1.9,255,1.3
+5488,2018,8,17,16,30,29.6,1.63,0.089,0.61,80,792,464,0,4,3.5,226,209,0,327,0.281,19.01,60.99,0.95,0.12,794,1.9,261,1.5
+5489,2018,8,17,17,30,27.9,1.63,0.1,0.61,66,639,260,0,0,3.6,109,432,0,240,0.281,21.08,72.36,0.95,0.14,794,2,270,1.5
+5490,2018,8,17,18,30,25.3,1.62,0.113,0.61,37,321,73,0,0,4.5,37,321,0,73,0.282,26.07,83.6,0.95,0.14,795,2.1,285,1.2
+5491,2018,8,17,19,30,23.3,1.62,0.129,0.61,0,0,0,0,0,5.4,0,0,0,0,0.282,31.46,94.61,0.95,0.14,795,2.2,298,1.4
+5492,2018,8,17,20,30,22.1,1.63,0.14,0.61,0,0,0,0,0,6.9,0,0,0,0,0.282,37.56,104.78,0.95,0.14,796,2.3,309,1.8
+5493,2018,8,17,21,30,20.9,1.66,0.148,0.61,0,0,0,0,0,8.1,0,0,0,0,0.281,43.84,113.72,0.95,0.14,796,2.3,327,1.8
+5494,2018,8,17,22,30,19.8,1.68,0.153,0.61,0,0,0,0,7,9.1,0,0,0,0,0.281,49.96,120.79,0.96,0.14,796,2.2,176,1.4
+5495,2018,8,17,23,30,18.9,1.7,0.158,0.61,0,0,0,0,7,9.5,0,0,0,0,0.281,54.23,125.22,0.96,0.14,795,2.1,20,1.2
+5496,2018,8,18,0,30,18.3,1.7,0.159,0.61,0,0,0,0,6,9.3,0,0,0,0,0.282,55.6,126.31,0.96,0.14,795,2,194,1
+5497,2018,8,18,1,30,17.6,1.65,0.173,0.61,0,0,0,0,6,9,0,0,0,0,0.284,57.26,123.86,0.96,0.14,795,2.1,338,1.6
+5498,2018,8,18,2,30,16.9,1.58,0.212,0.61,0,0,0,0,6,9.1,0,0,0,0,0.285,60.14,118.31,0.97,0.14,795,2.2,315,2.9
+5499,2018,8,18,3,30,16.1,1.57,0.229,0.61,0,0,0,0,7,9.7,0,0,0,0,0.285,65.65,110.42,0.96,0.14,796,2.3,318,3.5
+5500,2018,8,18,4,30,15.3,1.62,0.2,0.61,0,0,0,0,6,10.4,0,0,0,0,0.287,72.53,100.95,0.96,0.14,796,2.2,334,2.7
+5501,2018,8,18,5,30,15.1,1.68,0.156,0.61,6,36,6,3,6,10.7,2,0,43,2,0.292,75.06,90.02,0.94,0.14,796,2,189,1.8
+5502,2018,8,18,6,30,16.4,1.76,0.128,0.61,52,471,140,7,6,10.6,50,2,100,50,0.297,68.65,79.29,0.93,0.14,797,1.7,31,1.6
+5503,2018,8,18,7,30,18.7,1.85,0.118,0.61,77,697,339,0,7,9.1,166,184,7,235,0.3,53.52,67.96,0.92,0.14,797,1.6,18,1.3
+5504,2018,8,18,8,30,21,1.88,0.124,0.61,96,799,535,0,0,7.3,96,799,0,535,0.3,41.13,56.67,0.92,0.14,797,1.5,179,1
+5505,2018,8,18,9,30,22.9,1.86,0.14,0.61,110,857,707,0,0,6.2,110,857,0,707,0.299,33.94,45.88,0.92,0.14,797,1.5,346,1.1
+5506,2018,8,18,10,30,24.4,1.88,0.139,0.61,130,874,834,0,0,5.3,130,874,0,834,0.298,29.09,36.33,0.92,0.14,796,1.4,335,1.3
+5507,2018,8,18,11,30,25.7,1.99,0.212,0.61,155,862,905,0,0,4.3,180,812,0,886,0.297,25.27,29.54,0.92,0.14,796,1.4,325,1.6
+5508,2018,8,18,12,30,26.6,2.04,0.235,0.61,174,837,915,0,4,3.3,401,180,0,560,0.296,22.27,27.74,0.92,0.14,795,1.4,320,1.7
+5509,2018,8,18,13,30,27.1,2.02,0.318,0.61,194,786,862,0,4,2.3,407,210,0,585,0.294,20.16,31.82,0.93,0.14,794,1.5,320,1.8
+5510,2018,8,18,14,30,27,1.98,0.358,0.61,211,709,754,0,7,1.7,362,350,0,630,0.293,19.37,39.97,0.94,0.14,794,1.5,321,2.2
+5511,2018,8,18,15,30,26.2,1.9,0.486,0.61,227,574,595,0,7,1.6,268,499,7,588,0.292,20.25,50.16,0.95,0.14,793,1.7,325,2.8
+5512,2018,8,18,16,30,24.9,1.82,0.644,0.61,206,419,408,0,3,2.2,276,201,14,373,0.292,22.71,61.23,0.95,0.14,793,1.7,335,3.4
+5513,2018,8,18,17,30,23.1,1.83,0.712,0.61,139,262,217,0,0,3.1,144,225,0,211,0.293,26.96,72.6,0.95,0.13,794,1.8,349,3.4
+5514,2018,8,18,18,30,21.1,1.92,0.74,0.61,38,89,48,0,0,4.5,38,89,0,48,0.294,33.65,83.85,0.94,0.13,794,1.8,183,2.9
+5515,2018,8,18,19,30,19.3,2.06,0.672,0.61,0,0,0,0,4,4.8,0,0,0,0,0.294,38.55,94.88,0.92,0.13,795,1.7,12,2.5
+5516,2018,8,18,20,30,17.7,2.16,0.598,0.61,0,0,0,0,3,4.8,0,0,0,0,0.295,42.57,105.06,0.91,0.13,795,1.5,16,1.8
+5517,2018,8,18,21,30,16.3,2.2,0.548,0.61,0,0,0,0,3,4.8,0,0,0,0,0.295,46.56,114.02,0.91,0.13,795,1.5,20,1.2
+5518,2018,8,18,22,30,15.4,2.22,0.493,0.61,0,0,0,0,3,4.8,0,0,0,0,0.295,49.07,121.11,0.91,0.13,795,1.4,22,0.9
+5519,2018,8,18,23,30,14.7,2.22,0.45,0.61,0,0,0,0,0,4.5,0,0,0,0,0.295,50.32,125.55,0.91,0.13,795,1.4,19,0.8
+5520,2018,8,19,0,30,13.9,2.21,0.394,0.61,0,0,0,0,0,4.1,0,0,0,0,0.294,51.75,126.63,0.91,0.13,795,1.4,16,0.8
+5521,2018,8,19,1,30,13.1,2.19,0.332,0.61,0,0,0,0,0,3.9,0,0,0,0,0.293,53.61,124.16,0.91,0.13,795,1.4,13,1
+5522,2018,8,19,2,30,12.3,2.17,0.282,0.61,0,0,0,0,0,3.7,0,0,0,0,0.293,55.67,118.57,0.91,0.13,795,1.4,11,1.1
+5523,2018,8,19,3,30,11.5,2.16,0.244,0.61,0,0,0,0,0,3.6,0,0,0,0,0.292,58.14,110.65,0.91,0.13,796,1.4,11,1.1
+5524,2018,8,19,4,30,10.9,2.15,0.213,0.61,0,0,0,0,0,3.5,0,0,0,0,0.292,60.21,101.14,0.91,0.13,796,1.3,13,1.1
+5525,2018,8,19,5,30,11.9,2.14,0.194,0.61,5,30,5,0,0,3.5,5,30,0,5,0.291,56.56,90.17,0.91,0.13,796,1.3,18,1.8
+5526,2018,8,19,6,30,14.4,2.12,0.19,0.61,58,414,134,0,0,4,58,414,0,134,0.29,49.74,79.45,0.91,0.13,797,1.3,26,3
+5527,2018,8,19,7,30,16.6,2.11,0.2,0.61,97,623,329,0,0,5.2,97,623,0,329,0.289,46.89,68.12,0.92,0.13,797,1.3,33,3.7
+5528,2018,8,19,8,30,18.3,2.09,0.216,0.61,125,730,524,0,0,5.7,125,730,0,524,0.288,43.59,56.84,0.92,0.13,797,1.3,34,3.8
+5529,2018,8,19,9,30,19.9,2.08,0.229,0.61,143,794,694,0,0,5.6,143,794,0,694,0.287,39.16,46.07,0.92,0.13,797,1.3,31,3.6
+5530,2018,8,19,10,30,21.5,2.08,0.231,0.61,157,831,824,0,0,5.1,202,737,0,794,0.286,34.31,36.57,0.92,0.13,797,1.3,28,3.4
+5531,2018,8,19,11,30,22.8,2.12,0.254,0.61,164,849,901,0,0,4.5,175,822,0,888,0.286,30.28,29.83,0.92,0.13,796,1.3,27,3.2
+5532,2018,8,19,12,30,23.8,2.13,0.24,0.61,159,864,921,0,0,4,320,540,0,796,0.285,27.56,28.07,0.91,0.13,796,1.3,29,3.1
+5533,2018,8,19,13,30,24.5,2.13,0.224,0.61,151,861,880,0,0,3.6,151,861,0,880,0.285,25.67,32.14,0.91,0.13,795,1.2,32,3.1
+5534,2018,8,19,14,30,24.6,2.15,0.219,0.61,140,840,781,0,0,3.2,140,840,0,781,0.285,24.94,40.26,0.91,0.13,795,1.2,34,3.1
+5535,2018,8,19,15,30,24.2,2.16,0.204,0.61,124,801,634,0,0,2.9,124,801,0,634,0.284,24.97,50.42,0.91,0.13,794,1.2,38,3.1
+5536,2018,8,19,16,30,23.3,2.16,0.193,0.61,104,724,450,0,0,2.7,104,724,0,450,0.283,25.92,61.49,0.91,0.13,794,1.2,46,3
+5537,2018,8,19,17,30,21.5,2.15,0.185,0.61,78,580,249,0,0,2.6,78,580,0,249,0.282,28.77,72.85,0.91,0.13,794,1.2,57,2.5
+5538,2018,8,19,18,30,18.6,2.13,0.179,0.61,37,286,66,0,0,3.5,37,286,0,66,0.281,36.72,84.1,0.91,0.13,795,1.2,72,1.6
+5539,2018,8,19,19,30,16.6,2.12,0.174,0.61,0,0,0,0,0,4.3,0,0,0,0,0.281,43.89,95.14,0.91,0.13,795,1.2,83,1.4
+5540,2018,8,19,20,30,15.6,2.11,0.168,0.61,0,0,0,0,0,4.5,0,0,0,0,0.28,47.58,105.34,0.91,0.13,795,1.2,87,1.3
+5541,2018,8,19,21,30,14.9,2.11,0.161,0.61,0,0,0,0,0,4.6,0,0,0,0,0.28,50.29,114.32,0.91,0.13,795,1.2,89,1.2
+5542,2018,8,19,22,30,14.2,2.11,0.157,0.61,0,0,0,0,0,4.6,0,0,0,0,0.281,52.55,121.44,0.91,0.13,795,1.2,92,1.2
+5543,2018,8,19,23,30,13.6,2.12,0.154,0.61,0,0,0,0,0,4.6,0,0,0,0,0.281,54.34,125.88,0.91,0.13,795,1.2,96,1.1
+5544,2018,8,20,0,30,13.1,2.12,0.154,0.61,0,0,0,0,0,4.5,0,0,0,0,0.282,55.81,126.96,0.91,0.13,795,1.2,101,1.1
+5545,2018,8,20,1,30,12.8,2.1,0.155,0.61,0,0,0,0,0,4.4,0,0,0,0,0.282,56.59,124.46,0.91,0.13,795,1.2,108,1.1
+5546,2018,8,20,2,30,12.5,2.09,0.153,0.61,0,0,0,0,0,4.3,0,0,0,0,0.282,57.37,118.84,0.91,0.13,795,1.2,118,1
+5547,2018,8,20,3,30,12.3,2.08,0.151,0.61,0,0,0,0,0,4.2,0,0,0,0,0.282,57.79,110.88,0.91,0.13,795,1.1,130,0.9
+5548,2018,8,20,4,30,12.1,2.08,0.15,0.61,0,0,0,0,0,4.2,0,0,0,0,0.283,58.3,101.34,0.91,0.13,795,1.1,142,0.8
+5549,2018,8,20,5,30,13,2.07,0.152,0.61,5,34,5,0,0,4.1,5,34,0,5,0.283,54.81,90.32,0.9,0.13,795,1.1,150,0.9
+5550,2018,8,20,6,30,15.5,2.08,0.154,0.61,53,452,135,0,0,4.2,53,452,0,135,0.284,47,79.61,0.9,0.13,795,1.1,159,1.2
+5551,2018,8,20,7,30,19.3,2.08,0.162,0.61,86,663,331,0,0,4.1,86,663,0,331,0.284,36.61,68.28,0.9,0.13,795,1.2,177,2.1
+5552,2018,8,20,8,30,22.6,2.09,0.179,0.61,113,761,527,0,0,2.1,113,761,0,527,0.284,25.93,57.01,0.91,0.13,795,1.2,194,3
+5553,2018,8,20,9,30,24.7,2.09,0.201,0.61,134,812,695,0,0,1.1,134,812,0,695,0.284,21.26,46.26,0.91,0.13,795,1.3,201,3.6
+5554,2018,8,20,10,30,26.4,2.09,0.222,0.61,146,845,823,0,0,0.6,146,845,0,823,0.284,18.52,36.8,0.91,0.13,794,1.3,208,4.2
+5555,2018,8,20,11,30,27.9,2.08,0.215,0.61,146,873,901,0,0,0.1,156,857,0,897,0.284,16.34,30.13,0.91,0.13,793,1.4,214,4.8
+5556,2018,8,20,12,30,28.9,2.07,0.191,0.61,139,893,924,0,0,-0.3,139,893,0,924,0.284,15.02,28.41,0.92,0.13,792,1.4,216,5.2
+5557,2018,8,20,13,30,29.5,2.05,0.16,0.61,132,887,880,0,0,-0.3,251,608,4,764,0.285,14.49,32.46,0.91,0.13,792,1.4,215,5.5
+5558,2018,8,20,14,30,29.4,2.01,0.182,0.61,133,845,775,0,7,0,357,242,0,541,0.286,14.88,40.55,0.92,0.13,791,1.6,217,5.8
+5559,2018,8,20,15,30,28.4,1.92,0.193,0.61,132,768,619,0,7,0.6,296,262,0,462,0.286,16.52,50.69,0.94,0.13,791,1.8,230,5.8
+5560,2018,8,20,16,30,26.5,1.76,0.234,0.61,115,671,433,0,7,1.9,239,143,0,307,0.286,20.32,61.74,0.96,0.13,791,2,240,4.8
+5561,2018,8,20,17,30,24.4,1.71,0.179,0.61,75,571,241,2,6,3.3,96,102,29,126,0.286,25.3,73.1,0.96,0.13,791,2,222,2.5
+5562,2018,8,20,18,30,22.2,1.71,0.115,0.61,34,305,64,7,7,5.5,50,20,100,52,0.286,33.88,84.35,0.96,0.13,791,2,197,1.2
+5563,2018,8,20,19,30,21,1.65,0.104,0.61,0,0,0,0,0,5.6,0,0,0,0,0.286,36.62,95.41,0.97,0.13,791,2.1,201,0.8
+5564,2018,8,20,20,30,20,1.57,0.115,0.61,0,0,0,0,4,5.8,0,0,0,0,0.286,39.62,105.63,0.97,0.13,791,2.2,110,0.6
+5565,2018,8,20,21,30,18.3,1.52,0.129,0.61,0,0,0,0,6,7.3,0,0,0,0,0.285,48.72,114.63,0.98,0.13,791,2.4,181,1.7
+5566,2018,8,20,22,30,16.1,1.45,0.169,0.61,0,0,0,0,6,9.5,0,0,0,0,0.283,64.91,121.76,0.98,0.13,792,2.7,355,2.8
+5567,2018,8,20,23,30,14.2,1.43,0.201,0.61,0,0,0,0,6,11.4,0,0,0,0,0.282,83.37,126.22,0.98,0.13,794,2.8,196,2.8
+5568,2018,8,21,0,30,13.2,1.47,0.184,0.61,0,0,0,0,6,12.1,0,0,0,0,0.283,93.16,127.29,0.97,0.13,794,2.6,58,2.8
+5569,2018,8,21,1,30,12.7,1.63,0.177,0.61,0,0,0,0,7,12.1,0,0,0,0,0.285,95.93,124.76,0.96,0.13,793,2.3,84,2.5
+5570,2018,8,21,2,30,12.6,1.73,0.202,0.61,0,0,0,0,8,12.1,0,0,0,0,0.286,96.58,119.1,0.95,0.13,794,2.2,103,1.6
+5571,2018,8,21,3,30,12.6,1.77,0.221,0.61,0,0,0,0,4,12.3,0,0,0,0,0.286,97.91,111.11,0.95,0.13,794,2.1,128,1.1
+5572,2018,8,21,4,30,12.7,1.8,0.213,0.61,0,0,0,0,4,12.4,0,0,0,0,0.287,98.21,101.54,0.95,0.13,794,2.1,142,0.8
+5573,2018,8,21,5,30,13.5,1.8,0.197,0.61,4,20,4,0,0,12.4,4,20,0,4,0.288,92.86,90.98,0.94,0.13,794,2,176,0.6
+5574,2018,8,21,6,30,15.3,1.79,0.195,0.61,59,376,126,6,4,12.7,71,41,89,78,0.289,84.46,79.78,0.94,0.13,794,2.1,216,1
+5575,2018,8,21,7,30,17.7,1.79,0.193,0.61,95,605,317,0,7,12.2,181,155,0,238,0.29,70.15,68.45,0.94,0.13,794,2.1,225,1.9
+5576,2018,8,21,8,30,19.6,1.78,0.194,0.61,118,723,510,0,7,12,140,7,0,144,0.289,61.42,57.18,0.94,0.13,794,2.1,220,2.6
+5577,2018,8,21,9,30,20.7,1.77,0.203,0.61,139,780,676,0,6,12.3,102,1,0,103,0.289,58.53,46.45,0.94,0.13,794,2.2,211,3.3
+5578,2018,8,21,10,30,21.1,1.75,0.228,0.61,151,816,802,0,7,12.8,372,268,0,586,0.288,59.11,37.04,0.95,0.13,795,2.4,208,4
+5579,2018,8,21,11,30,21.3,1.54,0.194,0.61,154,835,874,0,6,13,302,65,0,358,0.286,59.05,30.43,0.96,0.13,795,2.6,214,4.5
+5580,2018,8,21,12,30,21.1,1.45,0.225,0.61,163,824,885,0,6,13.1,202,2,0,204,0.285,60.2,28.74,0.97,0.13,794,2.8,227,4.6
+5581,2018,8,21,13,30,20.3,1.39,0.22,0.61,150,826,844,0,8,13.3,382,247,0,590,0.284,64.07,32.79,0.97,0.13,794,2.8,255,4.5
+5582,2018,8,21,14,30,19.2,1.23,0.17,0.61,133,816,750,0,7,13.3,358,219,0,524,0.284,68.78,40.85,0.97,0.13,794,2.8,300,4
+5583,2018,8,21,15,30,18.1,1.33,0.175,0.61,131,746,601,0,6,12.4,201,8,0,206,0.283,69.22,50.96,0.97,0.13,794,2.7,339,3.5
+5584,2018,8,21,16,30,16.6,1.35,0.233,0.61,128,611,415,0,6,11.4,183,16,0,191,0.282,71.24,62,0.97,0.13,795,2.7,181,3
+5585,2018,8,21,17,30,15.1,1.38,0.277,0.61,97,437,222,2,6,11,96,34,29,106,0.282,76.58,73.36,0.97,0.14,796,2.5,26,2.3
+5586,2018,8,21,18,30,14,1.48,0.248,0.61,38,170,54,7,6,10.9,20,0,100,20,0.284,81.37,84.61,0.97,0.14,796,2.4,57,1.9
+5587,2018,8,21,19,30,13.3,1.57,0.21,0.61,0,0,0,0,6,10.9,0,0,0,0,0.285,85.12,95.69,0.97,0.14,796,2.3,77,1.4
+5588,2018,8,21,20,30,12.9,1.59,0.2,0.61,0,0,0,0,6,11,0,0,0,0,0.286,88.32,105.92,0.97,0.14,797,2.3,94,0.9
+5589,2018,8,21,21,30,12.6,1.59,0.195,0.61,0,0,0,0,8,11.3,0,0,0,0,0.286,91.64,114.94,0.97,0.14,796,2.3,117,0.6
+5590,2018,8,21,22,30,12.3,1.56,0.196,0.61,0,0,0,0,8,11.3,0,0,0,0,0.285,93.35,122.09,0.97,0.14,796,2.4,160,0.6
+5591,2018,8,21,23,30,12.2,1.51,0.205,0.61,0,0,0,0,7,11.4,0,0,0,0,0.285,94.84,126.56,0.97,0.14,797,2.4,189,0.9
+5592,2018,8,22,0,30,12.3,1.47,0.19,0.61,0,0,0,0,8,11.7,0,0,0,0,0.285,96.2,127.62,0.97,0.14,796,2.4,190,1.1
+5593,2018,8,22,1,30,12.3,1.45,0.164,0.61,0,0,0,0,7,12.1,0,0,0,0,0.286,98.67,125.06,0.97,0.14,796,2.4,196,1
+5594,2018,8,22,2,30,12.4,1.44,0.14,0.61,0,0,0,0,7,12.3,0,0,0,0,0.287,99.61,119.36,0.97,0.14,796,2.5,196,0.6
+5595,2018,8,22,3,30,12.3,1.44,0.133,0.61,0,0,0,0,7,12.3,0,0,0,0,0.288,100,111.33,0.96,0.14,796,2.5,166,0.4
+5596,2018,8,22,4,30,12.2,1.46,0.138,0.61,0,0,0,0,7,12.2,0,0,0,0,0.289,100,101.74,0.96,0.14,797,2.5,139,0.6
+5597,2018,8,22,5,30,12.6,1.49,0.15,0.61,2,11,2,3,7,12.3,1,0,43,1,0.289,97.87,91.16,0.96,0.14,797,2.4,140,1.5
+5598,2018,8,22,6,30,13.8,1.53,0.162,0.61,57,382,124,7,4,12.4,49,2,100,49,0.289,91.53,79.94,0.96,0.14,797,2.4,159,2.6
+5599,2018,8,22,7,30,15.5,1.56,0.173,0.61,93,604,313,0,7,12.7,174,246,0,264,0.289,83.57,68.61,0.96,0.14,797,2.4,184,3.4
+5600,2018,8,22,8,30,16.9,1.59,0.188,0.61,117,721,506,0,7,12.5,221,381,0,426,0.288,75.45,57.36,0.96,0.14,797,2.3,201,4
+5601,2018,8,22,9,30,17.8,1.64,0.189,0.61,130,794,675,0,7,12.3,284,374,0,541,0.287,70.41,46.65,0.95,0.14,797,2.3,212,4.5
+5602,2018,8,22,10,30,18.6,1.67,0.184,0.61,149,820,801,0,7,12.2,360,304,0,602,0.286,66.16,37.28,0.95,0.14,797,2.3,217,4.8
+5603,2018,8,22,11,30,19.2,1.77,0.247,0.61,166,822,873,0,7,11.9,417,241,0,624,0.284,62.49,30.73,0.95,0.14,797,2.2,221,4.8
+5604,2018,8,22,12,30,19.7,1.79,0.24,0.61,162,837,893,0,7,11.6,380,340,0,677,0.283,59.7,29.08,0.95,0.14,797,2.2,223,4.6
+5605,2018,8,22,13,30,20,1.81,0.213,0.61,127,878,862,0,7,11.5,395,180,0,546,0.283,58.01,33.12,0.95,0.14,796,2.2,225,4.2
+5606,2018,8,22,14,30,19.8,1.35,0.075,0.61,89,911,775,0,7,11.3,360,218,0,524,0.283,58.05,41.15,0.96,0.14,796,2.2,227,3.8
+5607,2018,8,22,15,30,19.3,1.39,0.073,0.61,83,868,626,0,7,11.2,291,232,0,436,0.283,59.25,51.24,0.96,0.14,795,2.2,225,3.3
+5608,2018,8,22,16,30,18.5,1.44,0.077,0.61,74,787,440,0,7,11.2,164,416,18,358,0.284,62.48,62.26,0.96,0.14,795,2.2,221,2.5
+5609,2018,8,22,17,30,17.1,1.5,0.083,0.61,59,635,238,3,8,12,82,290,64,164,0.285,71.84,73.62,0.96,0.14,795,2.3,212,1.4
+5610,2018,8,22,18,30,15.6,1.54,0.089,0.61,31,302,58,7,6,13.1,21,0,100,21,0.286,85.29,84.87,0.96,0.14,795,2.3,199,0.9
+5611,2018,8,22,19,30,14.8,1.57,0.091,0.61,0,0,0,0,4,12.7,0,0,0,0,0.287,87.18,95.97,0.96,0.14,795,2.3,193,1.1
+5612,2018,8,22,20,30,14.3,1.59,0.096,0.61,0,0,0,0,4,12.3,0,0,0,0,0.288,87.97,106.21,0.96,0.14,795,2.3,194,1.3
+5613,2018,8,22,21,30,13.6,1.59,0.108,0.61,0,0,0,0,8,12.2,0,0,0,0,0.289,91.05,115.26,0.96,0.14,795,2.3,200,1.4
+5614,2018,8,22,22,30,12.8,1.59,0.123,0.61,0,0,0,0,8,12,0,0,0,0,0.289,94.82,122.43,0.96,0.14,795,2.3,204,1.4
+5615,2018,8,22,23,30,12.2,1.59,0.131,0.61,0,0,0,0,8,11.8,0,0,0,0,0.29,97.51,126.9,0.96,0.14,795,2.2,206,1.4
+5616,2018,8,23,0,30,11.8,1.58,0.131,0.61,0,0,0,0,4,11.7,0,0,0,0,0.292,99.14,127.95,0.95,0.14,795,2.2,207,1.5
+5617,2018,8,23,1,30,11.5,1.56,0.131,0.61,0,0,0,0,4,11.5,0,0,0,0,0.293,100,125.37,0.95,0.14,795,2.1,208,1.6
+5618,2018,8,23,2,30,11.1,1.56,0.13,0.61,0,0,0,0,7,11.1,0,0,0,0,0.296,100,119.63,0.95,0.14,795,2.1,207,1.5
+5619,2018,8,23,3,30,10.7,1.58,0.13,0.61,0,0,0,0,7,10.7,0,0,0,0,0.297,100,111.56,0.94,0.14,794,2,203,1.5
+5620,2018,8,23,4,30,10.6,1.63,0.133,0.61,0,0,0,0,0,10.6,0,0,0,0,0.298,100,101.94,0.94,0.14,795,1.9,200,1.7
+5621,2018,8,23,5,30,11.2,1.68,0.139,0.61,2,13,2,0,0,11,2,13,0,2,0.299,98.85,91.34,0.93,0.14,795,1.7,199,2.5
+5622,2018,8,23,6,30,12.9,1.76,0.152,0.61,54,410,124,0,0,11.5,54,410,0,124,0.299,91.36,80.11,0.92,0.14,795,1.6,206,3.5
+5623,2018,8,23,7,30,15.2,1.85,0.174,0.61,91,625,317,0,0,12.1,91,625,0,317,0.299,82,68.77,0.92,0.14,795,1.5,217,4.1
+5624,2018,8,23,8,30,17.7,1.95,0.204,0.61,120,727,510,0,0,11.8,120,727,0,510,0.3,68.36,57.53,0.91,0.14,795,1.4,227,4.6
+5625,2018,8,23,9,30,20,2.03,0.232,0.61,142,783,678,0,0,10.5,142,783,0,678,0.3,54.49,46.85,0.91,0.14,795,1.4,234,4.8
+5626,2018,8,23,10,30,21.7,2.06,0.249,0.61,169,798,802,0,0,9.1,169,798,0,802,0.3,44.68,37.53,0.92,0.14,794,1.5,238,5
+5627,2018,8,23,11,30,23.1,2.09,0.325,0.61,191,792,870,0,0,8,191,792,0,870,0.3,37.98,31.03,0.92,0.14,793,1.6,240,5.2
+5628,2018,8,23,12,30,24.2,2.07,0.323,0.61,196,793,887,0,0,7.2,196,793,0,887,0.3,33.6,29.43,0.93,0.14,793,1.6,240,5.2
+5629,2018,8,23,13,30,25,2.06,0.337,0.61,186,790,845,0,0,6.6,186,790,0,845,0.3,30.84,33.45,0.93,0.14,792,1.6,239,5.1
+5630,2018,8,23,14,30,25.6,2,0.274,0.61,166,777,748,0,0,6,166,777,0,748,0.3,28.6,41.45,0.93,0.14,791,1.6,240,4.9
+5631,2018,8,23,15,30,25.6,2,0.287,0.61,157,707,597,0,0,5.2,157,707,0,597,0.299,26.99,51.52,0.93,0.14,791,1.5,246,4.6
+5632,2018,8,23,16,30,24.7,2.01,0.319,0.61,137,594,411,0,0,4.1,137,594,0,411,0.298,26.26,62.53,0.92,0.14,791,1.4,257,3.7
+5633,2018,8,23,17,30,21.8,2.08,0.344,0.61,97,417,213,0,0,4.3,97,417,0,213,0.297,31.78,73.88,0.91,0.14,791,1.3,271,2.2
+5634,2018,8,23,18,30,18.1,2.15,0.382,0.61,30,142,42,0,0,6.8,30,142,0,42,0.298,47.62,85.14,0.9,0.14,791,1.2,288,1.3
+5635,2018,8,23,19,30,16,2.21,0.408,0.61,0,0,0,0,0,6.1,0,0,0,0,0.299,51.77,96.25,0.9,0.14,792,1.1,303,1.2
+5636,2018,8,23,20,30,15,2.25,0.421,0.61,0,0,0,0,0,5.7,0,0,0,0,0.299,53.63,106.51,0.89,0.14,792,1,317,1.2
+5637,2018,8,23,21,30,14.6,2.26,0.418,0.61,0,0,0,0,0,5.2,0,0,0,0,0.299,53.27,115.57,0.89,0.14,793,0.9,330,1
+5638,2018,8,23,22,30,14.4,2.27,0.424,0.61,0,0,0,0,0,4.5,0,0,0,0,0.298,51.3,122.77,0.89,0.14,793,0.9,344,0.8
+5639,2018,8,23,23,30,14.1,2.27,0.454,0.61,0,0,0,0,0,3.9,0,0,0,0,0.297,50.19,127.25,0.89,0.14,793,0.9,192,0.6
+5640,2018,8,24,0,30,13.5,2.28,0.504,0.61,0,0,0,0,0,3.6,0,0,0,0,0.297,51.12,128.29,0.89,0.14,793,0.9,48,0.6
+5641,2018,8,24,1,30,12.8,2.28,0.563,0.61,0,0,0,0,0,3.6,0,0,0,0,0.297,53.67,125.67,0.89,0.14,793,1,79,0.6
+5642,2018,8,24,2,30,12.1,2.28,0.618,0.61,0,0,0,0,0,3.9,0,0,0,0,0.297,57.15,119.9,0.89,0.14,793,1,104,0.7
+5643,2018,8,24,3,30,11.5,2.28,0.656,0.61,0,0,0,0,0,4.2,0,0,0,0,0.298,60.88,111.79,0.89,0.14,793,1,126,0.8
+5644,2018,8,24,4,30,10.9,2.28,0.665,0.61,0,0,0,0,0,4.7,0,0,0,0,0.298,65.53,102.14,0.89,0.14,793,0.9,144,0.8
+5645,2018,8,24,5,30,11.3,2.27,0.642,0.61,1,5,1,0,0,5.3,1,5,0,1,0.299,66.79,91.51,0.89,0.14,793,0.9,159,0.8
+5646,2018,8,24,6,30,13.4,2.27,0.594,0.61,63,220,100,0,0,6.5,63,220,0,100,0.299,62.92,80.27,0.89,0.14,793,1,171,1.1
+5647,2018,8,24,7,30,16.8,2.26,0.532,0.61,131,438,288,0,0,7.2,131,438,0,288,0.299,53.12,68.94,0.89,0.14,793,1,189,1.6
+5648,2018,8,24,8,30,20.3,2.24,0.466,0.61,166,597,485,0,0,5.5,166,597,0,485,0.298,37.92,57.71,0.9,0.14,793,1.1,207,2.3
+5649,2018,8,24,9,30,23,2.21,0.393,0.61,176,714,662,0,0,2.3,176,714,0,662,0.296,25.7,47.05,0.9,0.14,793,1.2,217,3
+5650,2018,8,24,10,30,24.8,2.17,0.31,0.61,145,844,812,0,0,2.4,145,844,0,812,0.294,23.3,37.77,0.91,0.14,792,1.4,222,3.4
+5651,2018,8,24,11,30,26.1,1.84,0.092,0.61,98,948,908,0,0,3.8,98,948,0,908,0.292,23.67,31.34,0.93,0.14,792,1.5,227,3.7
+5652,2018,8,24,12,30,26.9,1.8,0.075,0.61,93,958,925,0,0,5.3,104,941,0,921,0.291,25.18,29.77,0.94,0.14,791,1.7,229,3.9
+5653,2018,8,24,13,30,27.3,1.76,0.068,0.61,90,949,879,0,3,6.4,371,237,0,568,0.29,26.42,33.79,0.95,0.14,791,1.8,230,3.9
+5654,2018,8,24,14,30,27.2,1.74,0.071,0.61,86,925,776,0,4,6.8,355,217,0,517,0.29,27.33,41.76,0.96,0.14,790,1.8,229,3.8
+5655,2018,8,24,15,30,26.6,1.7,0.064,0.61,76,887,625,0,7,6.9,210,25,0,225,0.29,28.5,51.8,0.96,0.14,790,1.9,227,3.7
+5656,2018,8,24,16,30,25.4,1.66,0.062,0.61,68,810,438,0,7,6.9,163,105,0,211,0.289,30.66,62.8,0.97,0.14,790,2,226,3.2
+5657,2018,8,24,17,30,22.9,1.62,0.067,0.61,55,651,233,2,3,7.7,126,287,32,204,0.289,37.64,74.15,0.98,0.14,790,2,236,1.9
+5658,2018,8,24,18,30,20.3,1.58,0.083,0.61,28,281,51,5,3,11.2,33,104,68,41,0.289,55.8,85.4,0.98,0.14,790,2.2,261,1
+5659,2018,8,24,19,30,18.9,1.53,0.099,0.61,0,0,0,0,4,11.3,0,0,0,0,0.289,61.45,96.53,0.98,0.14,791,2.3,290,0.9
+5660,2018,8,24,20,30,18.3,1.52,0.109,0.61,0,0,0,0,7,11.4,0,0,0,0,0.29,64.01,106.81,0.98,0.14,792,2.3,311,0.7
+5661,2018,8,24,21,30,17.9,1.54,0.11,0.61,0,0,0,0,4,11.3,0,0,0,0,0.29,65.51,115.9,0.98,0.14,792,2.3,220,0.4
+5662,2018,8,24,22,30,17,1.6,0.096,0.61,0,0,0,0,4,11,0,0,0,0,0.29,67.84,123.11,0.97,0.14,792,2.1,133,0.6
+5663,2018,8,24,23,30,15.8,1.63,0.083,0.61,0,0,0,0,3,10.6,0,0,0,0,0.29,71.41,127.6,0.97,0.14,792,2,154,1
+5664,2018,8,25,0,30,15,1.61,0.079,0.61,0,0,0,0,4,10.5,0,0,0,0,0.29,74.55,128.63,0.97,0.14,792,2,169,1.2
+5665,2018,8,25,1,30,14.4,1.57,0.081,0.61,0,0,0,0,4,10.4,0,0,0,0,0.29,76.92,125.98,0.97,0.14,792,2.1,184,1.4
+5666,2018,8,25,2,30,14,1.53,0.085,0.61,0,0,0,0,0,10.2,0,0,0,0,0.29,77.92,120.17,0.96,0.14,792,2.1,198,1.5
+5667,2018,8,25,3,30,13.7,1.5,0.089,0.61,0,0,0,0,0,10,0,0,0,0,0.291,78.52,112.02,0.96,0.14,792,2.1,206,1.5
+5668,2018,8,25,4,30,13.5,1.46,0.089,0.61,0,0,0,0,0,10,0,0,0,0,0.291,79.15,102.34,0.96,0.14,792,2.1,210,1.5
+5669,2018,8,25,5,30,14.8,1.43,0.085,0.61,2,16,2,1,0,10,1,0,18,1,0.292,72.91,91.69,0.96,0.14,792,2.1,213,1.8
+5670,2018,8,25,6,30,17.7,1.41,0.082,0.61,44,485,125,0,0,10.7,45,467,4,123,0.292,63.39,80.44,0.96,0.14,793,2.1,219,2.6
+5671,2018,8,25,7,30,20.9,1.41,0.078,0.61,65,723,323,0,0,10.3,65,723,0,323,0.292,50.86,69.1,0.96,0.14,793,2,232,3.5
+5672,2018,8,25,8,30,23.6,1.42,0.074,0.61,76,837,521,0,0,9.2,76,837,0,521,0.291,39.91,57.88,0.95,0.14,793,2,237,4.2
+5673,2018,8,25,9,30,25,1.43,0.071,0.61,84,899,694,0,0,8.6,84,899,0,694,0.29,35.2,47.26,0.95,0.14,793,1.9,230,4.6
+5674,2018,8,25,10,30,25.6,1.43,0.07,0.61,84,940,825,0,0,8.5,84,940,0,825,0.289,33.93,38.02,0.96,0.14,793,1.9,225,5.1
+5675,2018,8,25,11,30,26.1,1.22,0.05,0.61,83,965,904,0,0,8.6,83,965,0,904,0.288,33.07,31.65,0.97,0.14,792,1.9,223,5.4
+5676,2018,8,25,12,30,26.5,1.23,0.051,0.61,84,967,920,0,0,8.6,88,955,0,914,0.287,32.28,30.12,0.97,0.14,792,1.9,222,5.5
+5677,2018,8,25,13,30,26.8,1.24,0.052,0.61,82,959,876,0,0,8.3,107,901,0,853,0.286,31.16,34.13,0.97,0.14,791,1.9,223,5.4
+5678,2018,8,25,14,30,26.9,1.24,0.05,0.61,77,941,776,0,0,8,77,941,0,776,0.285,30.27,42.07,0.96,0.14,791,1.8,225,5.1
+5679,2018,8,25,15,30,26.8,1.27,0.047,0.61,71,903,626,0,0,7.5,71,903,0,626,0.285,29.44,52.09,0.96,0.14,790,1.8,225,4.7
+5680,2018,8,25,16,30,26.1,1.3,0.047,0.61,63,831,439,0,0,6.8,63,831,0,439,0.285,29.23,63.08,0.96,0.14,790,1.7,225,4.1
+5681,2018,8,25,17,30,23.6,1.32,0.052,0.61,50,685,234,0,0,6.4,50,685,0,234,0.286,32.98,74.42,0.96,0.14,790,1.7,223,2.6
+5682,2018,8,25,18,30,20.7,1.35,0.056,0.61,26,326,51,0,0,9.1,26,326,0,51,0.287,47.27,85.67,0.96,0.14,790,1.6,223,1.5
+5683,2018,8,25,19,30,19.1,1.37,0.059,0.61,0,0,0,0,7,9.3,0,0,0,0,0.287,52.9,96.82,0.95,0.14,790,1.6,225,1.6
+5684,2018,8,25,20,30,18.3,1.41,0.064,0.61,0,0,0,0,7,9,0,0,0,0,0.288,54.61,107.12,0.95,0.14,791,1.6,228,2
+5685,2018,8,25,21,30,17.7,1.45,0.065,0.61,0,0,0,0,7,8.8,0,0,0,0,0.288,56.1,116.22,0.95,0.14,791,1.7,230,2.5
+5686,2018,8,25,22,30,17.2,1.47,0.069,0.61,0,0,0,0,0,9,0,0,0,0,0.288,58.66,123.45,0.95,0.14,791,1.8,228,2.8
+5687,2018,8,25,23,30,16.8,1.47,0.074,0.61,0,0,0,0,0,9.5,0,0,0,0,0.288,61.94,127.95,0.95,0.14,791,1.9,223,3
+5688,2018,8,26,0,30,16.2,1.48,0.075,0.61,0,0,0,0,7,9.9,0,0,0,0,0.287,66.38,128.97,0.95,0.14,791,1.9,215,3
+5689,2018,8,26,1,30,15.3,1.52,0.076,0.61,0,0,0,0,4,10.4,0,0,0,0,0.287,72.46,126.29,0.95,0.14,791,1.9,208,2.7
+5690,2018,8,26,2,30,14.4,1.59,0.08,0.61,0,0,0,0,4,10.5,0,0,0,0,0.288,77.29,120.43,0.94,0.14,790,1.8,206,2.6
+5691,2018,8,26,3,30,13.6,1.71,0.09,0.61,0,0,0,0,0,10.3,0,0,0,0,0.289,80.35,112.25,0.93,0.14,790,1.6,210,2.6
+5692,2018,8,26,4,30,12.8,1.81,0.102,0.61,0,0,0,0,0,10,0,0,0,0,0.29,82.97,102.54,0.92,0.14,790,1.5,208,2.4
+5693,2018,8,26,5,30,13.3,1.87,0.109,0.61,2,15,2,0,0,9.7,2,15,0,2,0.29,79,91.87,0.91,0.14,791,1.4,201,2.7
+5694,2018,8,26,6,30,15.7,1.91,0.111,0.61,46,468,122,0,0,9.9,46,468,0,122,0.291,68.27,80.61,0.91,0.14,791,1.3,200,3.6
+5695,2018,8,26,7,30,19.2,1.93,0.112,0.61,71,705,321,0,0,9.2,71,705,0,321,0.292,52.4,69.27,0.91,0.14,791,1.3,211,4.3
+5696,2018,8,26,8,30,22.7,1.93,0.113,0.61,88,820,522,0,0,7,88,820,0,522,0.292,36.46,58.06,0.91,0.14,791,1.2,224,4.9
+5697,2018,8,26,9,30,25.3,1.93,0.113,0.61,99,885,697,0,0,3.7,99,885,0,697,0.292,24.64,47.46,0.91,0.14,791,1.2,229,5.3
+5698,2018,8,26,10,30,27,1.92,0.111,0.61,94,942,834,0,0,1.2,94,942,0,834,0.291,18.69,38.27,0.91,0.14,791,1.2,229,5.9
+5699,2018,8,26,11,30,28.1,1.69,0.053,0.61,81,986,918,0,0,0.1,81,986,0,918,0.291,16.24,31.96,0.92,0.14,790,1.2,228,6.6
+5700,2018,8,26,12,30,28.6,1.68,0.053,0.61,82,988,934,0,0,-0.2,167,816,0,870,0.29,15.46,30.47,0.93,0.14,789,1.2,228,7.1
+5701,2018,8,26,13,30,28.8,1.66,0.054,0.61,82,978,888,0,0,0.1,217,688,0,784,0.289,15.54,34.47,0.93,0.14,789,1.2,228,7.4
+5702,2018,8,26,14,30,28.5,1.61,0.051,0.61,77,954,782,0,3,0.6,360,234,0,533,0.288,16.48,42.38,0.94,0.14,788,1.3,228,7.3
+5703,2018,8,26,15,30,27.8,1.58,0.053,0.61,74,905,626,0,7,1.3,207,521,0,525,0.288,18.04,52.38,0.95,0.14,788,1.4,227,7.1
+5704,2018,8,26,16,30,26.6,1.52,0.061,0.61,69,813,434,0,6,2.1,125,111,7,175,0.287,20.4,63.36,0.96,0.14,787,1.6,225,6.5
+5705,2018,8,26,17,30,24.4,1.47,0.075,0.61,57,640,226,4,6,3,74,293,68,151,0.287,24.91,74.7,0.97,0.14,787,1.7,221,5.1
+5706,2018,8,26,18,30,21.7,1.44,0.087,0.61,27,256,45,7,7,4.9,28,3,100,28,0.288,33.44,85.95,0.97,0.14,787,1.8,215,3.9
+5707,2018,8,26,19,30,20.2,1.39,0.092,0.61,0,0,0,0,7,6.5,0,0,0,0,0.288,40.94,97.11,0.98,0.14,788,1.9,212,3.9
+5708,2018,8,26,20,30,19.5,1.37,0.104,0.61,0,0,0,0,7,7.4,0,0,0,0,0.29,45.6,107.42,0.97,0.14,788,2,209,4.2
+5709,2018,8,26,21,30,18.6,1.4,0.109,0.61,0,0,0,0,0,8.6,0,0,0,0,0.291,52.28,116.55,0.96,0.14,787,2,201,4.4
+5710,2018,8,26,22,30,17.6,1.49,0.099,0.61,0,0,0,0,6,9.9,0,0,0,0,0.293,60.61,123.8,0.96,0.14,787,2,197,4.5
+5711,2018,8,26,23,30,16.8,1.57,0.124,0.61,0,0,0,0,6,10.6,0,0,0,0,0.293,66.95,128.31,0.96,0.14,786,1.9,207,4.7
+5712,2018,8,27,0,30,16.2,1.65,0.174,0.61,0,0,0,0,7,10.5,0,0,0,0,0.294,68.92,129.31,0.95,0.14,786,1.9,219,4.5
+5713,2018,8,27,1,30,15.3,1.78,0.188,0.61,0,0,0,0,0,9.8,0,0,0,0,0.294,69.73,126.6,0.93,0.14,786,1.7,218,3.8
+5714,2018,8,27,2,30,14.6,1.88,0.171,0.61,0,0,0,0,0,9.3,0,0,0,0,0.294,70.4,120.71,0.92,0.14,786,1.6,215,3.5
+5715,2018,8,27,3,30,14.2,1.95,0.173,0.61,0,0,0,0,0,8.9,0,0,0,0,0.295,70.26,112.49,0.9,0.14,786,1.3,220,3.8
+5716,2018,8,27,4,30,13.7,2.02,0.187,0.61,0,0,0,0,7,8.6,0,0,0,0,0.296,71.47,102.74,0.9,0.14,786,1.2,225,3.7
+5717,2018,8,27,5,30,13.8,2.08,0.215,0.61,1,8,1,2,7,8.4,0,0,29,0,0.295,69.76,92.05,0.89,0.14,786,1.1,228,3.6
+5718,2018,8,27,6,30,15.4,2.1,0.246,0.61,55,338,109,7,4,8.2,56,0,100,56,0.295,62.29,80.78,0.89,0.14,786,1.1,230,4
+5719,2018,8,27,7,30,18.1,2.12,0.261,0.61,100,572,301,0,4,7.5,95,4,0,96,0.295,49.95,69.44,0.89,0.14,787,1,232,4.6
+5720,2018,8,27,8,30,21,2.13,0.264,0.61,128,702,498,0,3,5.3,276,303,0,435,0.294,35.9,58.24,0.89,0.14,787,1,234,5.3
+5721,2018,8,27,9,30,23.2,2.12,0.265,0.61,147,780,672,0,0,2,192,681,0,651,0.292,24.86,47.67,0.89,0.14,787,1,234,6.2
+5722,2018,8,27,10,30,24.9,2.1,0.261,0.61,143,857,813,0,3,-0.7,340,451,0,693,0.292,18.5,38.53,0.89,0.14,787,0.9,233,7
+5723,2018,8,27,11,30,26,1.99,0.157,0.61,123,921,902,0,0,-2.1,168,837,0,876,0.29,15.59,32.28,0.9,0.14,786,1,235,7.7
+5724,2018,8,27,12,30,26.7,1.96,0.138,0.61,118,934,920,0,0,-2.7,118,934,0,920,0.288,14.37,30.83,0.9,0.14,786,1,238,8.1
+5725,2018,8,27,13,30,26.9,1.96,0.128,0.61,116,921,872,0,0,-2.6,241,697,0,813,0.285,14.26,34.82,0.9,0.14,786,1,241,8
+5726,2018,8,27,14,30,26.7,2,0.144,0.61,111,888,764,0,0,-2.2,111,888,0,764,0.284,14.93,42.7,0.9,0.14,785,1.1,243,7.7
+5727,2018,8,27,15,30,26.1,2,0.133,0.61,101,840,610,0,0,-1.5,101,840,0,610,0.284,16.24,52.68,0.9,0.14,786,1.2,247,7.2
+5728,2018,8,27,16,30,24.8,2.01,0.137,0.61,89,740,418,0,0,-0.7,89,740,0,418,0.285,18.62,63.64,0.9,0.14,786,1.3,254,6.4
+5729,2018,8,27,17,30,22.1,2.06,0.155,0.61,68,554,212,2,0,0.5,94,428,36,205,0.285,23.85,74.97,0.9,0.13,787,1.3,264,4.4
+5730,2018,8,27,18,30,18.5,2.1,0.172,0.61,25,196,38,7,4,3.2,30,3,100,30,0.286,36.07,86.22,0.9,0.13,787,1.3,282,2.3
+5731,2018,8,27,19,30,16.1,2.13,0.185,0.61,0,0,0,0,4,5,0,0,0,0,0.287,47.72,97.4,0.9,0.13,788,1.3,311,1.6
+5732,2018,8,27,20,30,14.9,2.14,0.2,0.61,0,0,0,0,4,5.2,0,0,0,0,0.288,52.33,107.73,0.9,0.13,788,1.3,342,1.8
+5733,2018,8,27,21,30,13.6,2.14,0.221,0.61,0,0,0,0,4,4.9,0,0,0,0,0.288,55.57,116.88,0.9,0.13,789,1.4,183,2.4
+5734,2018,8,27,22,30,12.3,2.14,0.246,0.61,0,0,0,0,0,4.7,0,0,0,0,0.289,59.83,124.15,0.9,0.13,789,1.5,15,2.7
+5735,2018,8,27,23,30,11.3,2.14,0.266,0.61,0,0,0,0,0,4.7,0,0,0,0,0.289,64.01,128.67,0.91,0.13,790,1.5,23,2.7
+5736,2018,8,28,0,30,10.4,2.13,0.275,0.61,0,0,0,0,0,4.7,0,0,0,0,0.289,67.77,129.66,0.91,0.13,790,1.5,26,2.7
+5737,2018,8,28,1,30,9.6,2.13,0.278,0.61,0,0,0,0,0,4.6,0,0,0,0,0.289,70.79,126.92,0.91,0.13,791,1.5,24,2.4
+5738,2018,8,28,2,30,8.9,2.12,0.276,0.61,0,0,0,0,0,4.4,0,0,0,0,0.291,73.21,120.98,0.91,0.13,791,1.5,17,1.7
+5739,2018,8,28,3,30,8.3,2.1,0.268,0.61,0,0,0,0,0,4.2,0,0,0,0,0.292,75.17,112.72,0.91,0.13,791,1.5,10,1.3
+5740,2018,8,28,4,30,7.9,2.09,0.255,0.61,0,0,0,0,0,3.9,0,0,14,0,0.294,75.88,102.94,0.91,0.13,791,1.5,4,1.1
+5741,2018,8,28,5,30,8.7,2.08,0.234,0.61,0,0,0,0,0,3.7,0,0,0,0,0.295,70.67,92.23,0.91,0.13,791,1.5,179,1.4
+5742,2018,8,28,6,30,11.4,2.06,0.213,0.61,53,358,109,2,0,3.6,63,258,36,104,0.297,58.57,80.94,0.91,0.13,792,1.5,348,2.1
+5743,2018,8,28,7,30,14.5,2.05,0.194,0.61,88,618,303,0,7,3.1,140,232,0,221,0.299,46.14,69.61,0.91,0.13,792,1.4,328,2.3
+5744,2018,8,28,8,30,17.1,2.04,0.178,0.61,106,759,503,0,7,2.9,226,57,0,256,0.301,38.63,58.42,0.91,0.13,793,1.4,298,2.2
+5745,2018,8,28,9,30,19.1,2.02,0.166,0.61,118,835,678,0,7,2.9,292,381,0,548,0.301,34.15,47.88,0.91,0.13,793,1.3,269,2.4
+5746,2018,8,28,10,30,20.9,1.99,0.171,0.61,118,893,814,0,0,3.1,165,798,0,787,0.302,30.84,38.79,0.92,0.13,793,1.3,255,2.9
+5747,2018,8,28,11,30,22.3,1.87,0.11,0.61,110,933,896,0,0,3.2,110,933,0,896,0.303,28.5,32.59,0.92,0.13,792,1.3,250,3.3
+5748,2018,8,28,12,30,23.4,1.87,0.119,0.61,111,934,910,0,0,3.2,111,934,0,910,0.306,26.71,31.19,0.92,0.13,792,1.3,245,3.6
+5749,2018,8,28,13,30,24.2,1.89,0.115,0.61,104,934,867,0,0,3.1,104,934,0,867,0.309,25.33,35.17,0.91,0.13,791,1.3,240,3.9
+5750,2018,8,28,14,30,24.7,1.96,0.09,0.61,92,921,765,0,0,2.9,92,921,0,765,0.311,24.3,43.03,0.9,0.13,791,1.3,237,4
+5751,2018,8,28,15,30,24.7,1.96,0.09,0.61,84,876,611,0,0,2.7,84,876,0,611,0.313,23.85,52.98,0.9,0.13,791,1.3,235,4
+5752,2018,8,28,16,30,24,1.96,0.09,0.61,73,794,422,0,0,2.3,73,794,0,422,0.313,24.23,63.92,0.9,0.13,791,1.3,236,3.6
+5753,2018,8,28,17,30,21.6,1.96,0.088,0.61,54,639,217,0,0,2.1,54,639,0,217,0.312,27.54,75.26,0.9,0.14,791,1.2,240,2.2
+5754,2018,8,28,18,30,18.9,1.94,0.085,0.61,22,256,38,0,0,6.3,22,256,0,38,0.311,43.75,86.5,0.9,0.14,791,1.2,260,1.1
+5755,2018,8,28,19,30,16.9,1.92,0.073,0.61,0,0,0,0,0,4.8,0,0,0,0,0.311,44.8,97.7,0.89,0.14,792,1.1,299,1.1
+5756,2018,8,28,20,30,14.8,1.88,0.062,0.61,0,0,0,0,0,4,0,0,0,0,0.31,48.23,108.05,0.89,0.14,792,1,334,1.4
+5757,2018,8,28,21,30,13.2,1.84,0.056,0.61,0,0,0,0,0,2.6,0,0,0,0,0.309,48.55,117.21,0.89,0.14,793,0.9,173,1.7
+5758,2018,8,28,22,30,11.9,1.82,0.055,0.61,0,0,0,0,0,1.3,0,0,0,0,0.308,48.09,124.5,0.89,0.14,793,0.9,4,1.8
+5759,2018,8,28,23,30,10.9,1.8,0.057,0.61,0,0,0,0,0,0.5,0,0,0,0,0.307,48.81,129.03,0.9,0.14,793,0.9,7,1.6
+5760,2018,8,29,0,30,10,1.78,0.059,0.61,0,0,0,0,0,0.1,0,0,0,0,0.306,50.22,130.01,0.9,0.14,794,0.9,8,1.3
+5761,2018,8,29,1,30,9.4,1.75,0.061,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.306,51.28,127.23,0.9,0.14,794,0.9,11,1.1
+5762,2018,8,29,2,30,9,1.75,0.065,0.61,0,0,0,0,0,-0.3,0,0,0,0,0.305,52.15,121.25,0.9,0.14,794,0.9,16,1
+5763,2018,8,29,3,30,8.8,1.77,0.07,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.305,52.28,112.95,0.9,0.14,794,0.9,22,0.9
+5764,2018,8,29,4,30,8.7,1.81,0.074,0.61,0,0,0,0,0,-0.6,0,0,0,0,0.304,51.91,103.14,0.9,0.14,794,0.9,26,0.8
+5765,2018,8,29,5,30,9.6,1.85,0.077,0.61,0,0,0,0,0,-0.7,0,0,0,0,0.303,48.54,92.42,0.9,0.14,794,0.9,25,0.7
+5766,2018,8,29,6,30,12.2,1.88,0.079,0.61,41,513,120,0,0,1.1,41,513,0,120,0.302,46.49,81.11,0.89,0.14,794,0.9,22,0.7
+5767,2018,8,29,7,30,16.4,1.9,0.08,0.61,63,753,323,0,0,-1.8,63,753,0,323,0.301,28.78,69.78,0.89,0.14,794,0.9,142,0.9
+5768,2018,8,29,8,30,20.5,1.91,0.081,0.61,76,864,526,0,0,-3.6,76,864,0,526,0.299,19.45,58.61,0.89,0.14,795,0.9,255,1.7
+5769,2018,8,29,9,30,23.1,1.91,0.08,0.61,85,924,702,0,0,-3,85,924,0,702,0.297,17.38,48.09,0.89,0.14,795,0.9,245,2.7
+5770,2018,8,29,10,30,24.8,1.91,0.08,0.61,89,959,834,0,0,-2.3,89,959,0,834,0.295,16.59,39.05,0.89,0.14,794,0.9,239,3.2
+5771,2018,8,29,11,30,26,1.93,0.074,0.61,90,979,912,0,0,-1.8,90,979,0,912,0.293,16,32.91,0.89,0.14,794,0.9,236,3.7
+5772,2018,8,29,12,30,26.8,1.92,0.07,0.61,89,985,928,0,0,-1.5,89,985,0,928,0.29,15.52,31.55,0.89,0.14,793,0.9,233,4
+5773,2018,8,29,13,30,27.1,1.91,0.067,0.61,86,978,882,0,0,-1.5,86,978,0,882,0.288,15.31,35.52,0.89,0.14,793,0.9,231,4.2
+5774,2018,8,29,14,30,27.1,1.93,0.061,0.61,79,958,776,0,0,-1.6,79,958,0,776,0.287,15.19,43.35,0.88,0.14,792,1,228,4.1
+5775,2018,8,29,15,30,26.6,1.91,0.06,0.61,74,914,620,0,0,-1.7,74,914,0,620,0.285,15.5,53.28,0.89,0.14,792,1,225,4
+5776,2018,8,29,16,30,25.5,1.89,0.06,0.61,64,835,427,0,0,-2,64,835,0,427,0.284,16.25,64.21,0.9,0.14,792,1,221,3.5
+5777,2018,8,29,17,30,22.4,1.85,0.062,0.61,50,678,219,4,7,-0.8,97,388,82,194,0.282,21.29,75.54,0.9,0.14,792,1.1,216,2.2
+5778,2018,8,29,18,30,18.9,1.81,0.061,0.61,22,272,37,7,7,4.6,25,6,100,25,0.282,38.97,86.78,0.91,0.14,792,1.1,211,1.4
+5779,2018,8,29,19,30,17.4,1.77,0.057,0.61,0,0,0,0,7,4.2,0,0,0,0,0.282,41.52,98,0.91,0.14,792,1.1,212,1.5
+5780,2018,8,29,20,30,16.7,1.71,0.053,0.61,0,0,0,0,7,4.1,0,0,0,0,0.282,43.06,108.36,0.92,0.14,792,1.2,218,1.5
+5781,2018,8,29,21,30,15.9,1.68,0.05,0.61,0,0,0,0,7,4,0,0,29,0,0.281,44.94,117.55,0.93,0.14,792,1.3,226,1.5
+5782,2018,8,29,22,30,15.3,1.66,0.05,0.61,0,0,0,0,7,3.8,0,0,0,0,0.281,46.22,124.86,0.93,0.14,792,1.4,235,1.3
+5783,2018,8,29,23,30,15.3,1.62,0.058,0.61,0,0,0,0,7,4,0,0,0,0,0.28,46.86,129.39,0.95,0.14,792,1.5,239,1.1
+5784,2018,8,30,0,30,15.3,1.56,0.078,0.61,0,0,0,0,7,4.3,0,0,0,0,0.28,47.96,130.36,0.95,0.14,792,1.6,238,1
+5785,2018,8,30,1,30,15.4,1.54,0.088,0.61,0,0,0,0,7,4.3,0,0,0,0,0.279,47.62,127.55,0.95,0.14,792,1.6,231,0.8
+5786,2018,8,30,2,30,15.3,1.58,0.08,0.61,0,0,0,0,0,4.2,0,0,0,0,0.28,47.38,121.52,0.95,0.14,792,1.6,214,0.8
+5787,2018,8,30,3,30,15.1,1.61,0.069,0.61,0,0,0,0,7,4.1,0,0,0,0,0.281,47.7,113.18,0.94,0.14,792,1.5,199,0.8
+5788,2018,8,30,4,30,14.5,1.62,0.065,0.61,0,0,0,0,0,4.2,0,0,0,0,0.283,49.88,103.34,0.93,0.14,792,1.4,197,1
+5789,2018,8,30,5,30,14.7,1.68,0.058,0.61,0,0,0,0,0,4.3,0,0,7,0,0.285,49.74,92.6,0.92,0.14,793,1.3,195,1.1
+5790,2018,8,30,6,30,16.6,1.71,0.054,0.61,37,538,119,6,7,5.1,69,174,79,95,0.285,46.41,81.28,0.92,0.14,793,1.2,193,1.7
+5791,2018,8,30,7,30,19.7,1.72,0.054,0.61,57,770,321,0,7,3.7,120,51,0,137,0.285,34.7,69.95,0.92,0.14,793,1.2,201,2.5
+5792,2018,8,30,8,30,22.5,1.72,0.057,0.61,69,873,521,0,7,2.4,160,565,0,453,0.285,26.66,58.79,0.92,0.14,793,1.3,209,3.2
+5793,2018,8,30,9,30,24.5,1.72,0.06,0.61,77,927,694,0,0,0.8,150,764,0,658,0.284,21.04,48.3,0.92,0.14,793,1.3,212,4.1
+5794,2018,8,30,10,30,26.1,1.71,0.06,0.61,79,965,826,0,0,-0.1,79,965,0,826,0.283,18.03,39.31,0.92,0.14,793,1.3,213,4.8
+5795,2018,8,30,11,30,27.3,1.71,0.042,0.61,76,988,902,0,7,-0.3,223,673,0,786,0.282,16.55,33.24,0.92,0.14,792,1.3,216,5.3
+5796,2018,8,30,12,30,27.8,1.68,0.042,0.61,78,988,917,0,7,-0.2,310,489,0,725,0.28,16.16,31.91,0.93,0.14,792,1.4,222,5.6
+5797,2018,8,30,13,30,27,1.61,0.048,0.61,81,970,867,0,7,0,342,373,0,644,0.279,17.15,35.88,0.94,0.14,791,1.5,231,5.9
+5798,2018,8,30,14,30,25.5,1.58,0.056,0.61,79,940,759,0,6,0.2,345,216,0,501,0.278,18.97,43.68,0.95,0.14,791,1.5,240,5.8
+5799,2018,8,30,15,30,24.1,1.56,0.056,0.61,73,896,605,0,0,0.6,113,786,0,580,0.278,21.25,53.58,0.95,0.14,792,1.6,244,5.3
+5800,2018,8,30,16,30,22.8,1.56,0.055,0.61,62,825,417,0,6,1.1,145,24,0,155,0.278,23.88,64.5,0.95,0.14,792,1.5,242,3.9
+5801,2018,8,30,17,30,20.7,1.6,0.047,0.61,45,685,213,5,7,2.3,71,89,71,93,0.279,29.58,75.83,0.94,0.14,791,1.4,243,2.1
+5802,2018,8,30,18,30,18.4,1.64,0.043,0.61,21,280,35,7,7,5.5,21,3,100,21,0.28,42.66,87.06,0.94,0.14,791,1.3,248,1.2
+5803,2018,8,30,19,30,17.6,1.69,0.042,0.61,0,0,0,0,7,5.1,0,0,0,0,0.281,43.71,98.3,0.93,0.14,791,1.3,249,1
+5804,2018,8,30,20,30,17.8,1.69,0.046,0.61,0,0,0,0,7,4.4,0,0,0,0,0.281,40.96,108.68,0.94,0.14,791,1.3,231,0.8
+5805,2018,8,30,21,30,17.5,1.68,0.052,0.61,0,0,0,0,7,4,0,0,29,0,0.282,40.84,117.89,0.94,0.14,791,1.4,202,0.8
+5806,2018,8,30,22,30,16.7,1.67,0.06,0.61,0,0,0,0,7,4.3,0,0,0,0,0.282,43.67,125.22,0.94,0.14,791,1.5,185,1.1
+5807,2018,8,30,23,30,15.8,1.63,0.076,0.61,0,0,0,0,7,4.8,0,0,0,0,0.283,48.09,129.76,0.95,0.14,791,1.5,181,1.2
+5808,2018,8,31,0,30,15.2,1.63,0.085,0.61,0,0,0,0,7,5,0,0,0,0,0.285,50.61,130.71,0.94,0.14,791,1.6,187,1.3
+5809,2018,8,31,1,30,14.6,1.66,0.079,0.61,0,0,0,0,0,5,0,0,0,0,0.286,52.62,127.87,0.94,0.14,791,1.5,199,1.4
+5810,2018,8,31,2,30,13.9,1.69,0.075,0.61,0,0,0,0,0,4.9,0,0,0,0,0.288,54.71,121.8,0.93,0.14,790,1.4,215,1.6
+5811,2018,8,31,3,30,13.2,1.7,0.072,0.61,0,0,0,0,7,4.4,0,0,0,0,0.29,55.15,113.42,0.93,0.14,790,1.3,226,1.7
+5812,2018,8,31,4,30,12.9,1.67,0.071,0.61,0,0,0,0,7,4.1,0,0,0,0,0.291,55.08,103.55,0.92,0.14,790,1.2,230,1.7
+5813,2018,8,31,5,30,13.6,1.62,0.073,0.61,0,0,0,1,7,3.9,0,0,14,0,0.292,51.73,92.78,0.92,0.14,791,1.2,232,1.6
+5814,2018,8,31,6,30,15.9,1.61,0.077,0.61,41,486,113,7,4,4.4,65,6,100,66,0.293,46.23,81.46,0.92,0.14,791,1.1,233,2
+5815,2018,8,31,7,30,18.9,1.61,0.083,0.61,65,730,313,0,0,2.5,72,696,0,309,0.292,33.53,70.12,0.92,0.14,791,1.1,243,2.4
+5816,2018,8,31,8,30,21.7,1.63,0.086,0.61,79,845,514,1,3,0.8,243,366,14,432,0.291,24.98,58.98,0.91,0.14,791,1.1,256,2.3
+5817,2018,8,31,9,30,24.2,1.67,0.084,0.61,87,909,689,0,0,0.1,87,909,0,689,0.289,20.39,48.52,0.91,0.14,791,1.1,253,2.4
+5818,2018,8,31,10,30,26.1,1.72,0.082,0.61,89,950,821,0,0,-0.4,89,950,0,821,0.288,17.61,39.57,0.9,0.14,791,1.2,242,2.8
+5819,2018,8,31,11,30,27.3,1.69,0.065,0.61,87,972,897,1,7,-0.7,238,691,11,814,0.286,16.01,33.56,0.9,0.14,790,1.2,238,3.2
+5820,2018,8,31,12,30,28,1.7,0.068,0.61,91,970,911,0,7,-0.8,200,722,0,810,0.284,15.23,32.28,0.91,0.14,790,1.2,237,3.3
+5821,2018,8,31,13,30,28.1,1.67,0.074,0.61,90,960,864,0,7,-1,357,348,0,638,0.283,15.02,36.24,0.92,0.14,789,1.3,240,3.2
+5822,2018,8,31,14,30,27.8,1.55,0.064,0.61,83,939,758,0,7,-1.1,296,412,0,592,0.283,15.07,44.01,0.92,0.14,788,1.3,252,2.9
+5823,2018,8,31,15,30,26.8,1.52,0.069,0.61,79,888,602,0,4,-1.2,244,162,0,339,0.283,15.92,53.89,0.93,0.14,788,1.3,276,2.8
+5824,2018,8,31,16,30,25.2,1.51,0.074,0.61,71,793,409,0,7,-0.9,161,297,7,287,0.284,17.89,64.8,0.93,0.14,788,1.3,308,2.9
+5825,2018,8,31,17,30,21.5,1.39,0.088,0.63,55,586,196,0,6,8.1,89,9,0,92,0.296,42.07,76.04,0.98,0.15,790,2.2,206,2.1
+5826,2018,8,31,18,30,19.6,1.37,0.108,0.63,19,153,26,7,7,9.5,18,1,7,18,0.296,52.21,87.27,0.98,0.15,791,2.3,197,1.1
+5827,2018,8,31,19,30,18.4,1.36,0.116,0.63,0,0,0,0,4,10.1,0,0,0,0,0.296,58.5,98.53,0.98,0.15,791,2.3,169,1
+5828,2018,8,31,20,30,17.6,1.41,0.102,0.63,0,0,0,0,7,10.2,0,0,0,0,0.296,61.73,108.93,0.97,0.15,791,2.2,147,1.4
+5829,2018,8,31,21,30,16.6,1.48,0.075,0.63,0,0,0,0,1,10.1,0,0,0,0,0.297,65.59,118.15,0.96,0.15,791,2,147,1.6
+5830,2018,8,31,22,30,15.7,1.5,0.06,0.63,0,0,0,0,7,9.8,0,0,0,0,0.297,68.05,125.49,0.96,0.15,791,1.9,156,1.6
+5831,2018,8,31,23,30,14.9,1.47,0.054,0.63,0,0,0,0,1,9.4,0,0,0,0,0.298,69.56,130.04,0.95,0.15,791,1.8,168,1.7
+5832,2015,9,1,0,30,14.3,1.43,0.051,0.63,0,0,0,0,0,8.9,0,0,0,0,0.299,70.08,130.98,0.95,0.15,790,1.8,179,1.8
+5833,2015,9,1,1,30,13.8,1.42,0.05,0.63,0,0,0,0,0,8.6,0,0,0,0,0.299,71.01,128.1,0.95,0.15,790,1.7,187,1.9
+5834,2015,9,1,2,30,13.3,1.42,0.05,0.63,0,0,0,0,0,8.5,0,0,0,0,0.299,72.69,122,0.95,0.15,791,1.7,194,1.9
+5835,2015,9,1,3,30,12.7,1.43,0.05,0.63,0,0,0,0,1,8.5,0,0,0,0,0.299,75.7,113.59,0.94,0.15,791,1.7,196,1.8
+5836,2015,9,1,4,30,12.2,1.45,0.05,0.63,0,0,0,0,0,8.6,0,0,0,0,0.299,78.83,103.69,0.94,0.15,791,1.7,195,1.7
+5837,2015,9,1,5,30,13,1.47,0.052,0.63,0,0,0,0,1,8.8,0,0,0,0,0.299,75.64,92.91,0.94,0.15,791,1.7,193,2
+5838,2015,9,1,6,30,15.8,1.47,0.055,0.63,35,508,110,0,0,9,35,508,0,110,0.299,64.08,81.57,0.95,0.15,791,1.8,196,2.9
+5839,2015,9,1,7,30,19.3,1.47,0.056,0.63,57,745,308,0,0,9.2,57,745,0,308,0.299,52.07,70.24,0.95,0.15,791,1.8,202,3.7
+5840,2015,9,1,8,30,22.3,1.46,0.056,0.63,69,853,507,0,0,8.7,69,853,0,507,0.297,41.83,59.1,0.94,0.15,791,1.8,209,3.9
+5841,2015,9,1,9,30,24.3,1.44,0.055,0.63,77,912,679,0,0,8.1,77,912,0,679,0.295,35.62,48.67,0.94,0.15,791,1.8,213,3.8
+5842,2015,9,1,10,30,25.9,1.42,0.055,0.63,82,945,808,0,0,7.6,82,945,0,808,0.292,31.19,39.76,0.95,0.15,791,1.8,214,3.8
+5843,2015,9,1,11,30,27,1.41,0.045,0.63,80,969,885,0,0,7.1,80,969,0,885,0.29,28.29,33.79,0.95,0.15,790,1.8,213,4.1
+5844,2015,9,1,12,30,27.7,1.37,0.045,0.63,80,972,900,0,0,6.8,80,972,0,900,0.288,26.54,32.54,0.95,0.15,790,1.8,212,4.4
+5845,2015,9,1,13,30,27.9,1.33,0.047,0.63,80,961,852,7,3,6.4,325,573,7,786,0.287,25.63,36.5,0.96,0.15,790,1.8,212,4.8
+5846,2015,9,1,14,30,27.5,1.35,0.043,0.63,74,939,746,0,7,6.1,296,329,0,532,0.287,25.61,44.26,0.96,0.15,789,1.9,212,4.9
+5847,2015,9,1,15,30,26.5,1.35,0.05,0.63,71,886,590,0,6,5.9,105,1,0,106,0.288,26.78,54.12,0.97,0.15,789,2,213,4.8
+5848,2015,9,1,16,30,25.1,1.35,0.059,0.63,64,792,399,0,6,6,80,1,0,81,0.289,29.28,65.02,0.97,0.15,789,2.1,213,4.3
+5849,2015,9,1,17,30,23.1,1.36,0.064,0.63,49,620,196,0,7,6.5,81,83,0,101,0.291,34.19,76.34,0.97,0.15,789,2.1,213,2.8
+5850,2015,9,1,18,30,20.9,1.37,0.064,0.63,16,203,25,7,7,8.1,11,0,7,11,0.293,43.82,87.56,0.96,0.15,790,2.1,208,1.5
+5851,2015,9,1,19,30,19.4,1.38,0.06,0.63,0,0,0,0,4,9.1,0,0,0,0,0.294,51.35,98.84,0.96,0.15,790,2.1,202,1.2
+5852,2015,9,1,20,30,18.3,1.38,0.054,0.63,0,0,0,0,7,9.3,0,0,0,0,0.295,55.89,109.25,0.95,0.15,790,2.1,201,1.3
+5853,2015,9,1,21,30,17.2,1.39,0.051,0.63,0,0,0,0,1,9.4,0,0,0,0,0.295,60.1,118.49,0.94,0.15,791,2,205,1.5
+5854,2015,9,1,22,30,16.2,1.4,0.053,0.63,0,0,0,0,3,9.5,0,0,0,0,0.295,64.45,125.85,0.94,0.15,791,2,209,1.8
+5855,2015,9,1,23,30,15.3,1.42,0.059,0.63,0,0,0,0,0,9.9,0,0,0,0,0.294,70.31,130.41,0.94,0.15,791,2,208,2
+5856,2015,9,2,0,30,14.4,1.45,0.068,0.63,0,0,0,0,0,10.6,0,0,0,0,0.292,78.17,131.34,0.94,0.15,791,2,200,2
+5857,2015,9,2,1,30,13.6,1.46,0.073,0.63,0,0,0,0,0,11.4,0,0,0,0,0.291,86.43,128.42,0.94,0.15,791,2,187,1.7
+5858,2015,9,2,2,30,13,1.46,0.074,0.63,0,0,0,0,1,11.8,0,0,0,0,0.291,92.52,122.27,0.94,0.15,791,1.9,174,1.5
+5859,2015,9,2,3,30,12.5,1.46,0.076,0.63,0,0,0,0,1,11.9,0,0,0,0,0.291,96.38,113.82,0.94,0.15,791,1.9,171,1.5
+5860,2015,9,2,4,30,12.2,1.46,0.076,0.63,0,0,0,0,1,11.8,0,0,0,0,0.291,97.6,103.89,0.95,0.15,791,1.9,174,1.4
+5861,2015,9,2,5,30,12.9,1.47,0.074,0.63,0,0,0,0,1,11.6,0,0,0,0,0.29,91.8,93.09,0.95,0.15,792,1.8,179,1.9
+5862,2015,9,2,6,30,15.4,1.49,0.069,0.63,37,476,105,0,0,11.6,37,476,0,105,0.29,78.01,81.74,0.94,0.15,792,1.8,187,2.9
+5863,2015,9,2,7,30,18.9,1.51,0.061,0.63,58,736,304,0,0,11.1,58,736,0,304,0.289,60.46,70.42,0.94,0.15,792,1.8,199,3.7
+5864,2015,9,2,8,30,22.3,1.53,0.055,0.63,68,854,504,0,0,8.5,68,854,0,504,0.288,41.27,59.29,0.94,0.15,792,1.8,209,4.4
+5865,2015,9,2,9,30,24.4,1.53,0.053,0.63,76,915,677,0,0,7.3,76,915,0,677,0.286,33.59,48.89,0.95,0.15,792,1.8,211,4.9
+5866,2015,9,2,10,30,25.8,1.52,0.053,0.63,81,944,804,0,0,7.1,81,944,0,804,0.285,30.43,40.03,0.95,0.15,791,1.9,213,5.4
+5867,2015,9,2,11,30,26.7,1.62,0.04,0.63,76,972,881,0,0,7.1,76,972,0,881,0.284,28.91,34.12,0.95,0.15,790,1.9,214,5.8
+5868,2015,9,2,12,30,27.2,1.58,0.041,0.63,77,973,895,7,2,7,254,737,7,873,0.283,27.87,32.91,0.95,0.15,790,1.9,215,6
+5869,2015,9,2,13,30,27.5,1.56,0.041,0.63,76,967,850,7,2,6.6,300,626,7,801,0.282,26.61,36.86,0.95,0.15,789,1.8,215,6.1
+5870,2015,9,2,14,30,27.6,1.57,0.035,0.63,69,950,745,0,1,6,69,950,0,745,0.281,25.42,44.6,0.95,0.15,789,1.8,215,5.9
+5871,2015,9,2,15,30,27.1,1.58,0.035,0.63,63,911,593,0,3,5.5,328,173,0,428,0.281,25.14,54.44,0.95,0.15,788,1.7,215,5.6
+5872,2015,9,2,16,30,26.1,1.56,0.037,0.63,56,832,403,7,3,4.9,229,160,7,296,0.281,25.67,65.32,0.95,0.15,788,1.7,213,5.2
+5873,2015,9,2,17,30,23.7,1.53,0.04,0.63,42,669,197,0,3,4.6,124,51,0,136,0.282,28.92,76.63,0.95,0.15,788,1.8,208,3.8
+5874,2015,9,2,18,30,20.7,1.5,0.043,0.63,15,240,24,0,0,5.5,15,240,0,24,0.282,37.16,87.84,0.95,0.15,789,1.8,201,2.4
+5875,2015,9,2,19,30,18.9,1.46,0.046,0.63,0,0,0,0,1,6,0,0,0,0,0.283,42.97,99.15,0.95,0.15,789,1.8,196,2
+5876,2015,9,2,20,30,17.9,1.43,0.049,0.63,0,0,0,0,7,6.2,0,0,0,0,0.283,46.25,109.57,0.95,0.15,789,1.9,192,1.8
+5877,2015,9,2,21,30,17.3,1.42,0.053,0.63,0,0,0,0,4,6.3,0,0,0,0,0.284,48.28,118.84,0.95,0.15,789,1.9,190,1.8
+5878,2015,9,2,22,30,16.9,1.44,0.058,0.63,0,0,0,0,4,6.3,0,0,0,0,0.284,49.74,126.22,0.95,0.15,789,1.9,187,1.9
+5879,2015,9,2,23,30,16.5,1.47,0.064,0.63,0,0,0,0,3,6.5,0,0,0,0,0.283,51.44,130.79,0.95,0.15,788,2,186,2.1
+5880,2015,9,3,0,30,16.2,1.5,0.068,0.63,0,0,0,0,3,6.9,0,0,0,0,0.283,54,131.69,0.95,0.15,788,2.1,187,2.3
+5881,2015,9,3,1,30,15.9,1.5,0.069,0.63,0,0,0,1,7,7.8,0,0,1,0,0.284,58.53,128.74,0.95,0.15,788,2.1,190,2.4
+5882,2015,9,3,2,30,15.6,1.49,0.071,0.63,0,0,0,0,3,8.9,0,0,0,0,0.285,64.48,122.55,0.96,0.15,788,2.1,193,2.4
+5883,2015,9,3,3,30,15.4,1.47,0.074,0.63,0,0,0,0,7,10,0,0,0,0,0.286,70.06,114.05,0.96,0.15,789,2.1,198,2.4
+5884,2015,9,3,4,30,15.3,1.45,0.078,0.63,0,0,0,0,4,10.7,0,0,0,0,0.287,73.86,104.1,0.96,0.15,789,2.1,202,2.3
+5885,2015,9,3,5,30,15.7,1.42,0.08,0.63,0,0,0,0,7,11,0,0,0,0,0.287,73.57,93.27,0.96,0.15,789,2.1,205,2.3
+5886,2015,9,3,6,30,16.9,1.41,0.079,0.63,38,443,100,0,7,11.1,27,0,0,27,0.289,68.55,81.92,0.96,0.15,790,2.1,207,2.8
+5887,2015,9,3,7,30,18.7,1.41,0.076,0.63,62,703,296,0,7,11,120,12,0,124,0.289,60.84,70.59,0.96,0.15,790,2.1,207,3.5
+5888,2015,9,3,8,30,20.3,1.41,0.075,0.63,76,821,493,0,7,10.1,239,59,0,269,0.289,51.86,59.48,0.96,0.15,790,2.1,205,4.2
+5889,2015,9,3,9,30,21.5,1.43,0.074,0.63,85,885,664,0,4,8.4,342,72,0,388,0.288,42.9,49.11,0.95,0.15,790,2.1,201,4.9
+5890,2015,9,3,10,30,22.4,1.46,0.071,0.63,89,925,795,0,7,8.1,351,320,0,595,0.287,39.88,40.3,0.95,0.15,789,2,197,5.4
+5891,2015,9,3,11,30,23.4,1.49,0.057,0.63,85,956,874,0,4,7.9,441,316,0,702,0.286,37.15,34.46,0.95,0.15,789,1.9,195,5.7
+5892,2015,9,3,12,30,24.6,1.5,0.059,0.63,87,960,889,0,6,7.3,404,243,0,607,0.286,33.12,33.28,0.94,0.15,788,1.8,195,6
+5893,2015,9,3,13,30,25.6,1.5,0.06,0.63,85,952,844,0,6,6.1,384,92,0,457,0.285,28.67,37.23,0.94,0.15,787,1.7,197,6.2
+5894,2015,9,3,14,30,25.8,1.5,0.062,0.63,82,932,742,7,7,4.5,282,422,7,581,0.284,25.46,44.94,0.94,0.15,786,1.5,200,6.2
+5895,2015,9,3,15,30,25.3,1.49,0.057,0.63,73,894,589,0,4,3.2,236,3,0,238,0.283,23.94,54.75,0.93,0.15,786,1.4,201,6
+5896,2015,9,3,16,30,24.2,1.47,0.05,0.63,60,821,399,7,3,2.6,222,202,7,305,0.282,24.37,65.62,0.93,0.15,786,1.4,202,5.4
+5897,2015,9,3,17,30,21.6,1.43,0.044,0.63,43,671,194,0,0,2.4,43,671,0,194,0.282,28.11,76.93,0.92,0.15,786,1.3,199,3.9
+5898,2015,9,3,18,30,18.4,1.38,0.041,0.63,13,229,21,0,0,3.2,13,229,0,21,0.282,36.45,88.13,0.92,0.15,786,1.4,192,2.4
+5899,2015,9,3,19,30,16.6,1.33,0.038,0.63,0,0,0,0,0,3.9,0,0,0,0,0.282,42.79,99.46,0.93,0.15,787,1.4,186,2.1
+5900,2015,9,3,20,30,15.7,1.27,0.038,0.63,0,0,0,0,0,4.4,0,0,0,0,0.283,46.97,109.9,0.93,0.15,787,1.5,182,2
+5901,2015,9,3,21,30,14.9,1.21,0.038,0.63,0,0,0,0,0,5,0,0,0,0,0.282,51.71,119.19,0.93,0.15,787,1.5,180,2
+5902,2015,9,3,22,30,14.3,1.14,0.037,0.63,0,0,0,0,0,5.6,0,0,0,0,0.281,55.7,126.59,0.93,0.15,787,1.5,182,2
+5903,2015,9,3,23,30,13.8,1.06,0.036,0.63,0,0,0,0,0,5.8,0,0,0,0,0.28,58.65,131.16,0.93,0.15,787,1.5,187,2.1
+5904,2015,9,4,0,30,13.3,0.99,0.035,0.63,0,0,0,0,0,5.7,0,0,0,0,0.279,60.12,132.05,0.93,0.15,786,1.4,196,2.1
+5905,2015,9,4,1,30,12.7,0.96,0.035,0.63,0,0,0,1,0,5.4,0,0,1,0,0.279,61.01,129.07,0.93,0.15,787,1.4,203,2
+5906,2015,9,4,2,30,12,0.97,0.036,0.63,0,0,0,0,0,5,0,0,0,0,0.279,62.18,122.82,0.93,0.15,787,1.4,204,1.8
+5907,2015,9,4,3,30,11.4,1.04,0.038,0.63,0,0,0,0,0,4.6,0,0,0,0,0.279,62.99,114.29,0.93,0.15,787,1.3,201,1.7
+5908,2015,9,4,4,30,10.9,1.16,0.041,0.63,0,0,0,0,0,4.3,0,0,0,0,0.279,63.76,104.3,0.93,0.15,787,1.4,197,1.6
+5909,2015,9,4,5,30,11.8,1.27,0.046,0.63,0,0,0,0,0,4.1,0,0,0,0,0.278,59.34,93.46,0.93,0.15,788,1.4,193,1.7
+5910,2015,9,4,6,30,14.9,1.34,0.05,0.63,33,508,103,0,0,4.2,33,508,0,103,0.278,48.75,82.09,0.93,0.15,788,1.5,193,2.3
+5911,2015,9,4,7,30,18.9,1.37,0.053,0.63,55,753,303,0,1,3.9,55,753,0,303,0.278,36.94,70.77,0.94,0.15,788,1.5,205,3.1
+5912,2015,9,4,8,30,21.8,1.37,0.058,0.63,70,854,501,0,0,2.6,70,854,0,501,0.277,28.21,59.67,0.94,0.15,788,1.6,210,4.1
+5913,2015,9,4,9,30,23.1,1.36,0.066,0.63,82,903,670,0,0,3.3,82,903,0,670,0.275,27.46,49.33,0.95,0.15,788,1.7,204,5.2
+5914,2015,9,4,10,30,23.5,1.35,0.078,0.63,93,924,795,0,3,4.4,349,473,0,708,0.274,29.02,40.57,0.95,0.15,788,1.8,198,6.1
+5915,2015,9,4,11,30,23.4,1.38,0.065,0.63,90,949,870,0,4,5.6,254,0,0,254,0.272,31.63,34.79,0.96,0.15,788,1.9,193,6.8
+5916,2015,9,4,12,30,22.9,1.4,0.066,0.63,91,949,881,0,4,6.7,181,0,0,181,0.271,35.07,33.65,0.96,0.15,788,2,188,7
+5917,2015,9,4,13,30,22.3,1.41,0.066,0.63,89,939,832,0,4,7.4,168,0,0,168,0.271,38.26,37.6,0.96,0.15,787,2,184,6.8
+5918,2015,9,4,14,30,21.6,1.36,0.051,0.63,77,927,729,0,3,7.7,312,7,0,318,0.272,40.87,45.28,0.95,0.15,787,2,182,6.4
+5919,2015,9,4,15,30,20.9,1.36,0.051,0.63,71,881,575,0,0,7.6,71,881,0,575,0.273,42.24,55.07,0.95,0.15,787,2,180,6
+5920,2015,9,4,16,30,20,1.36,0.048,0.63,59,805,388,7,3,7.5,178,426,7,351,0.275,44.31,65.93,0.95,0.15,787,1.9,178,5.5
+5921,2015,9,4,17,30,18.5,1.35,0.045,0.63,43,643,185,0,3,7.5,120,24,0,126,0.276,48.82,77.22,0.95,0.15,787,1.9,177,4.4
+5922,2015,9,4,18,30,16.5,1.32,0.043,0.63,12,194,18,7,3,7.9,7,0,7,7,0.278,56.81,88.41,0.94,0.15,788,1.8,172,3.1
+5923,2015,9,4,19,30,15.1,1.29,0.044,0.63,0,0,0,0,0,8.2,0,0,0,0,0.279,63.19,99.77,0.94,0.15,788,1.8,168,2.5
+5924,2015,9,4,20,30,14.3,1.28,0.046,0.63,0,0,0,0,0,8.3,0,0,0,0,0.28,67.33,110.23,0.94,0.15,788,1.8,168,2.4
+5925,2015,9,4,21,30,13.6,1.31,0.049,0.63,0,0,0,0,4,8.5,0,0,0,0,0.28,71.32,119.54,0.94,0.15,788,1.8,169,2.4
+5926,2015,9,4,22,30,13.1,1.35,0.054,0.63,0,0,0,0,4,8.6,0,0,0,0,0.281,74.35,126.96,0.94,0.15,787,1.8,171,2.5
+5927,2015,9,4,23,30,12.8,1.4,0.059,0.63,0,0,0,0,7,8.7,0,0,0,0,0.281,76.23,131.54,0.94,0.15,787,1.7,176,2.6
+5928,2015,9,5,0,30,12.4,1.45,0.06,0.63,0,0,0,0,7,8.8,0,0,0,0,0.281,78.5,132.42,0.94,0.15,787,1.7,184,2.7
+5929,2015,9,5,1,30,11.9,1.48,0.057,0.63,0,0,0,1,4,8.7,0,0,1,0,0.281,81.03,129.39,0.94,0.15,787,1.7,191,2.7
+5930,2015,9,5,2,30,11.4,1.48,0.055,0.63,0,0,0,0,3,8.7,0,0,0,0,0.282,83.46,123.1,0.94,0.15,788,1.7,191,2.5
+5931,2015,9,5,3,30,10.8,1.45,0.054,0.63,0,0,0,0,0,8.7,0,0,0,0,0.283,86.81,114.52,0.94,0.15,788,1.7,188,2.4
+5932,2015,9,5,4,30,10.4,1.37,0.055,0.63,0,0,0,0,0,8.7,0,0,0,0,0.283,89.27,104.5,0.94,0.15,788,1.7,187,2.4
+5933,2015,9,5,5,30,10.9,1.28,0.056,0.63,0,0,0,0,1,8.8,0,0,0,0,0.284,86.6,93.64,0.94,0.15,789,1.7,187,3
+5934,2015,9,5,6,30,13.4,1.2,0.057,0.63,34,478,99,0,0,8.8,34,478,0,99,0.284,73.77,82.26,0.94,0.15,789,1.7,193,4.5
+5935,2015,9,5,7,30,16.3,1.15,0.056,0.63,56,740,298,0,0,8.6,56,740,0,298,0.285,60.3,70.94,0.94,0.15,789,1.6,205,6.1
+5936,2015,9,5,8,30,18.3,1.13,0.057,0.63,70,852,497,0,0,8.5,70,852,0,497,0.287,52.67,59.87,0.94,0.15,789,1.6,211,7
+5937,2015,9,5,9,30,19.9,1.14,0.058,0.63,79,914,672,0,0,8,79,914,0,672,0.29,46.26,49.56,0.94,0.15,789,1.5,213,7.4
+5938,2015,9,5,10,30,21.3,1.15,0.055,0.63,82,951,802,0,0,7.3,82,951,0,802,0.292,40.5,40.85,0.94,0.15,788,1.5,213,7.7
+5939,2015,9,5,11,30,22.6,1.11,0.048,0.63,81,976,880,0,4,6.6,270,1,0,270,0.293,35.56,35.13,0.93,0.15,788,1.4,214,8.1
+5940,2015,9,5,12,30,23.5,1.1,0.046,0.63,81,980,893,0,7,5.9,90,0,0,90,0.293,32.18,34.03,0.93,0.15,787,1.4,215,8.3
+5941,2015,9,5,13,30,23.8,1.11,0.048,0.63,80,966,841,0,4,5.6,322,2,0,324,0.293,30.81,37.97,0.93,0.15,787,1.5,215,8.4
+5942,2015,9,5,14,30,23.6,1.05,0.046,0.63,75,940,733,0,0,5.5,75,940,0,733,0.293,31.09,45.63,0.94,0.15,787,1.6,215,8.2
+5943,2015,9,5,15,30,23,1.09,0.049,0.63,70,888,574,0,3,5.5,281,337,0,472,0.293,32.08,55.4,0.94,0.15,787,1.7,213,7.8
+5944,2015,9,5,16,30,22,1.12,0.053,0.63,61,798,383,0,3,5.3,194,307,0,318,0.293,33.81,66.24,0.95,0.15,787,1.7,211,7
+5945,2015,9,5,17,30,20.4,1.13,0.06,0.63,46,606,177,0,3,5.3,115,30,0,122,0.294,37.14,77.53,0.95,0.15,788,1.8,208,5.6
+5946,2015,9,5,18,30,18.5,1.13,0.066,0.63,12,118,15,7,4,5.5,5,0,7,5,0.294,42.47,88.69,0.96,0.15,788,1.8,204,4.2
+5947,2015,9,5,19,30,17,1.13,0.068,0.63,0,0,0,0,4,5.9,0,0,0,0,0.294,47.88,100.08,0.96,0.15,788,1.7,202,3.5
+5948,2015,9,5,20,30,15.9,1.13,0.067,0.63,0,0,0,0,7,6.3,0,0,0,0,0.294,52.89,110.56,0.95,0.15,789,1.7,205,2.9
+5949,2015,9,5,21,30,14.8,1.13,0.066,0.63,0,0,0,0,4,6.7,0,0,0,0,0.295,58.35,119.89,0.95,0.15,789,1.7,214,2
+5950,2015,9,5,22,30,13.9,1.13,0.065,0.63,0,0,0,0,7,6.9,0,0,0,0,0.295,62.66,127.33,0.95,0.15,790,1.6,231,1.3
+5951,2015,9,5,23,30,12.9,1.12,0.062,0.63,0,0,0,0,4,6.8,0,0,0,0,0.297,66.3,131.92,0.94,0.15,790,1.6,259,0.8
+5952,2015,9,6,0,30,11.7,1.13,0.055,0.63,0,0,0,0,0,6.2,0,0,0,0,0.299,68.83,132.78,0.94,0.15,790,1.5,297,0.6
+5953,2015,9,6,1,30,10.3,1.15,0.05,0.63,0,0,0,1,1,5.3,0,0,1,0,0.302,71.18,129.71,0.93,0.15,791,1.3,333,0.6
+5954,2015,9,6,2,30,9.2,1.16,0.049,0.63,0,0,0,0,1,4.6,0,0,0,0,0.304,73.17,123.38,0.93,0.15,791,1.2,350,0.6
+5955,2015,9,6,3,30,8.4,1.17,0.05,0.63,0,0,0,0,1,4.1,0,0,0,0,0.306,74.53,114.76,0.93,0.15,791,1.2,354,0.6
+5956,2015,9,6,4,30,7.8,1.18,0.051,0.63,0,0,0,0,1,3.7,0,0,0,0,0.307,75.06,104.71,0.92,0.15,792,1.1,356,0.7
+5957,2015,9,6,5,30,8,1.18,0.052,0.63,0,0,0,0,1,3.2,0,0,0,0,0.308,71.46,93.82,0.92,0.15,792,1,358,1.1
+5958,2015,9,6,6,30,10,1.19,0.053,0.63,33,500,99,0,0,2.9,33,500,0,99,0.309,61.26,82.43,0.92,0.15,793,1,358,1.6
+5959,2015,9,6,7,30,13.3,1.21,0.053,0.63,55,767,303,0,0,1.3,55,767,0,303,0.309,44.15,71.12,0.92,0.15,793,0.9,339,1.5
+5960,2015,9,6,8,30,16.6,1.24,0.054,0.63,68,880,507,0,0,-0.3,68,880,0,507,0.307,31.66,60.06,0.92,0.15,793,0.9,284,1.6
+5961,2015,9,6,9,30,19.4,1.26,0.056,0.63,77,937,682,0,0,-0.6,77,937,0,682,0.305,25.93,49.79,0.92,0.15,793,0.9,238,2.7
+5962,2015,9,6,10,30,21.5,1.28,0.057,0.63,83,970,813,0,0,-1.3,83,970,0,813,0.302,21.77,41.13,0.92,0.15,793,0.9,230,3.9
+5963,2015,9,6,11,30,23.1,1.29,0.048,0.63,81,994,890,0,0,-2,81,994,0,890,0.299,18.75,35.47,0.91,0.15,792,0.9,227,4.9
+5964,2015,9,6,12,30,24.1,1.31,0.048,0.63,81,997,903,0,0,-2.7,81,997,0,903,0.296,16.77,34.41,0.91,0.15,792,0.9,226,5.6
+5965,2015,9,6,13,30,24.7,1.32,0.048,0.63,79,987,854,0,0,-3.2,79,987,0,854,0.294,15.52,38.35,0.91,0.15,791,0.9,226,5.9
+5966,2015,9,6,14,30,24.7,1.3,0.045,0.63,74,966,745,0,0,-3.5,74,966,0,745,0.293,15.21,45.97,0.91,0.15,791,0.9,225,6
+5967,2015,9,6,15,30,24.2,1.27,0.046,0.63,68,919,586,0,0,-3.4,68,919,0,586,0.294,15.78,55.72,0.92,0.15,790,0.9,224,5.9
+5968,2015,9,6,16,30,23.1,1.23,0.048,0.63,59,827,388,0,0,-2.9,59,827,0,388,0.295,17.57,66.55,0.92,0.15,790,1,223,5.4
+5969,2015,9,6,17,30,20.3,1.19,0.048,0.63,43,646,179,0,0,-1.8,43,646,0,179,0.295,22.56,77.83,0.93,0.15,790,1.1,220,3.7
+5970,2015,9,6,18,30,17.1,1.16,0.049,0.63,11,140,13,0,0,0.8,11,140,0,13,0.295,33.29,88.97,0.94,0.15,791,1.2,216,2.1
+5971,2015,9,6,19,30,15.7,1.12,0.053,0.63,0,0,0,0,1,2.2,0,0,0,0,0.295,40.07,100.4,0.95,0.15,791,1.4,215,1.9
+5972,2015,9,6,20,30,15.3,1.09,0.061,0.63,0,0,0,0,3,3,0,0,0,0,0.294,43.53,110.89,0.95,0.15,791,1.6,221,1.9
+5973,2015,9,6,21,30,14.8,1.08,0.068,0.63,0,0,0,0,3,3.6,0,0,0,0,0.294,46.92,120.24,0.95,0.15,792,1.7,234,1.7
+5974,2015,9,6,22,30,14.1,1.1,0.075,0.63,0,0,0,0,4,3.9,0,0,0,0,0.293,50.43,127.7,0.95,0.15,791,1.7,250,1.2
+5975,2015,9,6,23,30,13.4,1.15,0.081,0.63,0,0,0,0,7,4.3,0,0,0,0,0.293,53.98,132.3,0.95,0.15,791,1.8,262,0.8
+5976,2015,9,7,0,30,12.9,1.19,0.085,0.63,0,0,0,0,4,4.5,0,0,0,0,0.292,56.67,133.15,0.95,0.15,791,1.8,261,0.6
+5977,2015,9,7,1,30,12.7,1.18,0.087,0.63,0,0,0,1,4,4.6,0,0,1,0,0.292,57.71,130.04,0.95,0.15,791,1.8,241,0.5
+5978,2015,9,7,2,30,12.5,1.16,0.091,0.63,0,0,0,0,1,4.7,0,0,0,0,0.292,58.91,123.65,0.95,0.15,791,1.8,218,0.6
+5979,2015,9,7,3,30,12.1,1.15,0.089,0.63,0,0,0,0,1,5.2,0,0,0,0,0.293,62.52,114.99,0.95,0.15,791,1.8,209,0.7
+5980,2015,9,7,4,30,11.6,1.16,0.083,0.63,0,0,0,0,0,5.7,0,0,0,0,0.294,66.92,104.91,0.95,0.15,791,1.7,213,0.8
+5981,2015,9,7,5,30,11.6,1.18,0.077,0.63,0,0,0,0,1,6,0,0,0,0,0.294,68.42,94.01,0.95,0.15,791,1.6,217,1.1
+5982,2015,9,7,6,30,12.9,1.23,0.068,0.63,35,448,93,7,3,6.5,60,4,7,61,0.295,64.96,82.61,0.94,0.15,792,1.5,222,1.9
+5983,2015,9,7,7,30,15.7,1.32,0.057,0.63,56,745,295,0,3,6.2,150,10,0,154,0.295,53.05,71.3,0.93,0.15,792,1.3,232,2.6
+5984,2015,9,7,8,30,18.9,1.41,0.054,0.63,67,868,498,0,3,4.1,269,236,0,386,0.295,37.68,60.26,0.92,0.15,792,1.2,242,3.3
+5985,2015,9,7,9,30,21.5,1.49,0.058,0.63,77,925,671,0,3,2.1,296,462,0,593,0.295,27.8,50.02,0.92,0.15,792,1.2,248,3.8
+5986,2015,9,7,10,30,23.3,1.56,0.064,0.63,85,957,803,0,4,0.5,404,334,0,654,0.295,22.23,41.41,0.92,0.15,792,1.1,249,4
+5987,2015,9,7,11,30,24.5,1.59,0.058,0.63,85,978,878,0,0,-0.8,85,978,0,878,0.295,18.78,35.81,0.92,0.15,791,1.1,246,4.1
+5988,2015,9,7,12,30,25.2,1.62,0.058,0.63,86,985,894,0,0,-1.8,86,985,0,894,0.296,16.72,34.79,0.92,0.15,791,1,241,4.2
+5989,2015,9,7,13,30,25.5,1.63,0.058,0.63,84,975,844,0,0,-2.6,84,975,0,844,0.297,15.5,38.72,0.92,0.15,790,1,239,4.3
+5990,2015,9,7,14,30,25.4,1.64,0.051,0.63,76,956,736,0,0,-3.1,76,956,0,736,0.299,15.08,46.32,0.92,0.15,790,1,238,4.5
+5991,2015,9,7,15,30,24.8,1.59,0.057,0.63,71,902,575,0,0,-3.5,71,902,0,575,0.3,15.16,56.05,0.91,0.15,789,1,238,4.4
+5992,2015,9,7,16,30,23.6,1.59,0.06,0.63,62,815,382,7,3,-3.9,221,171,7,288,0.301,15.8,66.86,0.91,0.15,789,0.9,238,3.7
+5993,2015,9,7,17,30,20.5,1.6,0.063,0.63,44,626,173,0,3,-3.5,32,0,0,32,0.302,19.56,78.13,0.91,0.14,790,0.9,241,2.2
+5994,2015,9,7,18,30,17.2,1.63,0.066,0.63,0,0,0,0,1,0.9,0,0,0,0,0.303,33.2,89.25,0.9,0.14,790,0.9,258,1.2
+5995,2015,9,7,19,30,15.3,1.65,0.065,0.63,0,0,0,0,1,0.6,0,0,0,0,0.304,36.86,100.72,0.9,0.14,791,0.9,286,1.2
+5996,2015,9,7,20,30,13.7,1.65,0.061,0.63,0,0,0,0,4,-0.2,0,0,0,0,0.304,38.56,111.23,0.89,0.14,792,0.8,310,1.2
+5997,2015,9,7,21,30,12.3,1.6,0.056,0.63,0,0,0,0,0,-1.2,0,0,0,0,0.305,39.26,120.6,0.88,0.14,792,0.7,329,1.3
+5998,2015,9,7,22,30,11.1,1.52,0.052,0.63,0,0,0,0,0,-2,0,0,0,0,0.306,40.15,128.08,0.88,0.14,792,0.7,345,1.3
+5999,2015,9,7,23,30,9.9,1.45,0.049,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.306,41.86,132.69,0.88,0.14,793,0.6,354,1.3
+6000,2015,9,8,0,30,8.9,1.41,0.047,0.63,0,0,0,0,0,-2.9,0,0,0,0,0.305,43.42,133.51,0.88,0.14,793,0.6,178,1.3
+6001,2015,9,8,1,30,8,1.34,0.044,0.63,0,0,0,1,0,-3.1,0,0,1,0,0.306,45.3,130.36,0.88,0.14,793,0.6,3,1.2
+6002,2015,9,8,2,30,7.4,1.26,0.041,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.307,46.78,123.93,0.89,0.14,793,0.5,10,1.2
+6003,2015,9,8,3,30,7.1,1.2,0.04,0.63,0,0,0,0,0,-3.4,0,0,0,0,0.309,47.31,115.23,0.89,0.14,793,0.6,19,1.1
+6004,2015,9,8,4,30,6.9,1.18,0.04,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.311,47.18,105.11,0.89,0.14,793,0.6,26,0.9
+6005,2015,9,8,5,30,7.5,1.21,0.041,0.63,0,0,0,0,1,-3.8,0,0,0,0,0.313,44.51,94.19,0.89,0.14,793,0.6,30,0.8
+6006,2015,9,8,6,30,10.1,1.23,0.043,0.63,31,534,98,0,0,-2.8,31,534,0,98,0.313,40.35,82.78,0.89,0.14,794,0.6,35,0.7
+6007,2015,9,8,7,30,14.4,1.25,0.044,0.63,51,796,304,0,0,-4.1,51,796,0,304,0.312,27.64,71.48,0.89,0.14,794,0.6,170,0.8
+6008,2015,9,8,8,30,18.3,1.26,0.046,0.63,64,904,510,0,0,-5.9,64,904,0,510,0.309,18.83,60.46,0.89,0.14,794,0.6,291,1.5
+6009,2015,9,8,9,30,20.7,1.28,0.045,0.63,71,964,688,0,0,-7,71,964,0,688,0.306,14.82,50.25,0.89,0.14,794,0.6,278,2.5
+6010,2015,9,8,10,30,22.5,1.27,0.042,0.63,74,999,820,0,0,-7.6,74,999,0,820,0.302,12.69,41.7,0.89,0.14,793,0.6,274,2.9
+6011,2015,9,8,11,30,23.9,1.19,0.034,0.63,73,1021,897,0,0,-8.2,73,1021,0,897,0.296,11.16,36.16,0.89,0.14,793,0.6,272,3
+6012,2015,9,8,12,30,24.8,1.21,0.031,0.63,71,1027,911,0,0,-8.8,71,1027,0,911,0.291,10.12,35.17,0.89,0.14,792,0.6,272,2.9
+6013,2015,9,8,13,30,25.4,1.26,0.029,0.63,68,1020,860,0,0,-9.2,68,1020,0,860,0.288,9.44,39.1,0.89,0.14,792,0.6,271,2.7
+6014,2015,9,8,14,30,25.6,1.24,0.025,0.63,63,1001,750,0,0,-9.5,63,1001,0,750,0.287,9.08,46.68,0.89,0.14,791,0.6,271,2.6
+6015,2015,9,8,15,30,25.1,1.26,0.024,0.63,57,960,588,0,0,-9.7,57,960,0,588,0.287,9.2,56.38,0.89,0.14,791,0.6,271,2.3
+6016,2015,9,8,16,30,23.9,1.27,0.024,0.63,49,882,391,0,0,-9.8,49,882,0,391,0.288,9.86,67.17,0.89,0.14,791,0.6,273,1.7
+6017,2015,9,8,17,30,21.1,1.27,0.024,0.63,35,713,178,0,0,-5.4,35,713,0,178,0.289,16.35,78.44,0.88,0.14,791,0.6,291,0.8
+6018,2015,9,8,18,30,18.3,1.26,0.026,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.291,24.69,89.53,0.88,0.14,791,0.6,158,0.4
+6019,2015,9,8,19,30,16.6,1.24,0.028,0.63,0,0,0,0,0,-4,0,0,0,0,0.293,24.18,101.04,0.89,0.14,792,0.6,10,0.5
+6020,2015,9,8,20,30,15.4,1.22,0.031,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.294,25.67,111.56,0.89,0.14,792,0.7,6,0.6
+6021,2015,9,8,21,30,14.3,1.21,0.034,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.296,26.94,120.96,0.89,0.14,793,0.7,178,0.8
+6022,2015,9,8,22,30,13.3,1.22,0.036,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.297,28.5,128.46,0.89,0.14,793,0.7,354,0.8
+6023,2015,9,8,23,30,12.3,1.25,0.036,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.297,30.69,133.07,0.89,0.14,793,0.7,354,0.9
+6024,2015,9,9,0,30,11.5,1.31,0.035,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.297,32.26,133.88,0.88,0.14,793,0.7,356,0.8
+6025,2015,9,9,1,30,10.7,1.36,0.034,0.63,0,0,0,1,0,-4.4,0,0,1,0,0.298,34.44,130.69,0.88,0.14,793,0.7,183,0.8
+6026,2015,9,9,2,30,10.1,1.38,0.032,0.63,0,0,0,0,1,-4.2,0,0,0,0,0.298,36.22,124.21,0.88,0.14,793,0.7,16,0.8
+6027,2015,9,9,3,30,9.5,1.37,0.031,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.298,37.75,115.46,0.88,0.14,793,0.7,29,0.8
+6028,2015,9,9,4,30,9,1.36,0.03,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.297,38.73,105.32,0.89,0.14,793,0.7,38,0.8
+6029,2015,9,9,5,30,9.3,1.34,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.298,37.32,94.38,0.89,0.14,793,0.7,43,0.7
+6030,2015,9,9,6,30,11.8,1.33,0.028,0.63,28,562,97,0,0,-3.4,28,562,0,97,0.298,34.46,82.96,0.89,0.14,794,0.7,44,0.8
+6031,2015,9,9,7,30,16.2,1.32,0.027,0.63,46,825,305,0,0,-4.1,46,825,0,305,0.297,24.65,71.67,0.89,0.14,794,0.6,27,0.9
+6032,2015,9,9,8,30,20.1,1.31,0.026,0.63,55,931,511,0,0,-5.6,55,931,0,511,0.296,17.12,60.66,0.89,0.14,794,0.6,166,1.1
+6033,2015,9,9,9,30,22.7,1.3,0.025,0.63,61,987,689,0,0,-7,61,987,0,689,0.294,13.13,50.48,0.89,0.14,793,0.6,311,1.5
+6034,2015,9,9,10,30,24.4,1.29,0.025,0.63,65,1016,820,0,0,-8.1,65,1016,0,820,0.292,10.94,41.98,0.9,0.14,793,0.6,299,1.8
+6035,2015,9,9,11,30,25.6,1.29,0.026,0.63,68,1029,895,0,0,-9,68,1029,0,895,0.29,9.5,36.5,0.9,0.14,792,0.6,295,1.9
+6036,2015,9,9,12,30,26.5,1.27,0.027,0.63,69,1031,907,0,0,-9.6,69,1031,0,907,0.287,8.53,35.56,0.9,0.14,792,0.6,294,2
+6037,2015,9,9,13,30,27,1.26,0.027,0.63,67,1021,856,0,0,-10.2,67,1021,0,856,0.286,7.95,39.48,0.9,0.14,791,0.6,294,2.1
+6038,2015,9,9,14,30,27,1.17,0.023,0.63,61,1003,745,0,0,-10.4,61,1003,0,745,0.286,7.8,47.03,0.9,0.14,791,0.6,296,2.1
+6039,2015,9,9,15,30,26.5,1.19,0.023,0.63,56,954,580,0,0,-10.4,56,954,0,580,0.288,8.01,56.71,0.9,0.14,790,0.7,296,2
+6040,2015,9,9,16,30,25.1,1.21,0.023,0.63,48,874,383,0,0,-10.3,48,874,0,383,0.289,8.79,67.49,0.9,0.14,790,0.7,295,1.5
+6041,2015,9,9,17,30,22.3,1.22,0.024,0.63,35,698,171,0,0,-5.2,35,698,0,171,0.289,15.44,78.75,0.9,0.14,790,0.7,292,0.9
+6042,2015,9,9,18,30,19.8,1.23,0.024,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.289,21.09,89.81,0.9,0.14,791,0.7,293,0.8
+6043,2015,9,9,19,30,18.3,1.23,0.024,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.288,20.44,101.36,0.9,0.14,791,0.8,305,0.8
+6044,2015,9,9,20,30,16.9,1.24,0.023,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.288,21.83,111.9,0.9,0.14,791,0.8,317,0.9
+6045,2015,9,9,21,30,15.6,1.26,0.023,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.289,23.57,121.31,0.89,0.14,792,0.8,330,1
+6046,2015,9,9,22,30,14.3,1.27,0.023,0.63,0,0,0,0,0,-5,0,0,0,0,0.289,25.92,128.84,0.88,0.14,792,0.8,342,1.1
+6047,2015,9,9,23,30,13.1,1.3,0.023,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.29,28.31,133.46,0.88,0.14,792,0.8,352,1.1
+6048,2015,9,10,0,30,12.2,1.32,0.023,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.291,30.74,134.25,0.88,0.14,792,0.8,181,1.1
+6049,2015,9,10,1,30,11.5,1.34,0.023,0.63,0,0,0,1,0,-4.5,0,0,1,0,0.292,32.46,131.02,0.87,0.14,792,0.7,10,1.1
+6050,2015,9,10,2,30,11,1.34,0.023,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.292,33.46,124.48,0.87,0.14,792,0.7,18,1
+6051,2015,9,10,3,30,10.7,1.34,0.023,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.293,33.86,115.7,0.87,0.14,792,0.7,21,0.9
+6052,2015,9,10,4,30,10.5,1.33,0.023,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.294,33.73,105.52,0.87,0.14,792,0.7,21,0.8
+6053,2015,9,10,5,30,10.9,1.31,0.023,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.295,32.28,94.56,0.88,0.14,792,0.7,16,0.6
+6054,2015,9,10,6,30,13.4,1.29,0.023,0.63,26,570,94,0,0,-4.3,26,570,0,94,0.295,29.01,83.14,0.88,0.14,792,0.7,7,0.6
+6055,2015,9,10,7,30,17.6,1.28,0.024,0.63,44,821,300,0,0,-4.7,44,821,0,300,0.296,21.44,71.85,0.88,0.14,793,0.7,165,1
+6056,2015,9,10,8,30,21.6,1.28,0.025,0.63,54,925,505,0,0,-6.5,54,925,0,505,0.295,14.58,60.86,0.88,0.14,793,0.7,321,1.7
+6057,2015,9,10,9,30,24.1,1.29,0.026,0.63,61,985,685,0,0,-7.6,61,985,0,685,0.293,11.55,50.72,0.88,0.14,793,0.6,314,2.3
+6058,2015,9,10,10,30,25.7,1.31,0.027,0.63,66,1014,816,0,0,-8,66,1014,0,816,0.292,10.21,42.27,0.89,0.14,792,0.6,314,2.6
+6059,2015,9,10,11,30,26.9,1.33,0.031,0.63,70,1024,890,0,0,-8.2,70,1024,0,890,0.29,9.32,36.85,0.89,0.14,792,0.6,317,2.7
+6060,2015,9,10,12,30,27.6,1.34,0.031,0.63,71,1027,902,0,0,-8.5,71,1027,0,902,0.289,8.77,35.94,0.89,0.14,791,0.6,320,3
+6061,2015,9,10,13,30,28,1.35,0.031,0.63,69,1011,845,0,0,-8.7,69,1011,0,845,0.289,8.43,39.86,0.88,0.14,791,0.7,323,3.2
+6062,2015,9,10,14,30,27.9,1.35,0.024,0.63,61,995,735,0,0,-8.8,61,995,0,735,0.29,8.42,47.39,0.87,0.14,791,0.7,325,3.5
+6063,2015,9,10,15,30,27.3,1.35,0.023,0.63,55,953,573,0,0,-8.6,55,953,0,573,0.292,8.81,57.04,0.87,0.14,791,0.7,329,3.6
+6064,2015,9,10,16,30,25.7,1.33,0.022,0.63,47,867,374,0,0,-8.3,47,867,0,374,0.295,9.93,67.8,0.87,0.14,791,0.8,334,3.2
+6065,2015,9,10,17,30,22.1,1.3,0.021,0.63,33,692,165,0,0,-5.7,33,692,0,165,0.297,15.03,79.06,0.87,0.14,791,0.8,342,2
+6066,2015,9,10,18,30,18.5,1.29,0.02,0.63,0,0,0,0,1,-2.7,0,0,0,0,0.299,23.67,90.09,0.87,0.14,791,0.8,348,1.4
+6067,2015,9,10,19,30,16.9,1.32,0.02,0.63,0,0,0,0,0,-3,0,0,0,0,0.3,25.46,101.68,0.87,0.14,792,0.9,347,1.4
+6068,2015,9,10,20,30,15.8,1.37,0.02,0.63,0,0,0,0,1,-3.2,0,0,0,0,0.3,27.04,112.24,0.87,0.14,792,0.9,340,1.5
+6069,2015,9,10,21,30,14.8,1.4,0.022,0.63,0,0,0,0,0,-3,0,0,0,0,0.299,29.06,121.67,0.87,0.14,792,0.9,335,1.7
+6070,2015,9,10,22,30,13.7,1.38,0.023,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.298,31.91,129.22,0.87,0.14,792,0.9,334,1.9
+6071,2015,9,10,23,30,12.7,1.32,0.023,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.297,35.15,133.85,0.88,0.14,793,1,339,2.1
+6072,2015,9,11,0,30,11.9,1.24,0.023,0.63,0,0,0,0,0,-1.9,0,0,0,0,0.296,38.25,134.62,0.88,0.14,793,1,346,2.2
+6073,2015,9,11,1,30,11.1,1.2,0.023,0.63,0,0,0,0,0,-1.5,0,0,0,0,0.295,41.53,131.34,0.89,0.14,793,1,353,2.2
+6074,2015,9,11,2,30,10.4,1.18,0.024,0.63,0,0,0,0,1,-1.1,0,0,0,0,0.296,44.8,124.76,0.89,0.14,793,1,178,2.2
+6075,2015,9,11,3,30,9.7,1.19,0.024,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.296,48.52,115.93,0.89,0.14,794,1.1,3,2.2
+6076,2015,9,11,4,30,9,1.22,0.025,0.63,0,0,0,0,0,-0.2,0,0,0,0,0.298,52.64,105.73,0.89,0.14,794,1.1,8,2.1
+6077,2015,9,11,5,30,9.2,1.24,0.026,0.63,0,0,0,0,1,0.3,0,0,0,0,0.299,53.69,94.75,0.89,0.14,795,1.1,13,2.1
+6078,2015,9,11,6,30,11.3,1.26,0.027,0.63,27,530,88,0,0,0.9,27,530,0,88,0.299,48.68,83.31,0.89,0.14,795,1.1,17,2.5
+6079,2015,9,11,7,30,15.1,1.27,0.028,0.63,45,791,289,0,1,1.2,45,791,0,289,0.298,38.83,72.03,0.89,0.14,795,1.1,28,2.8
+6080,2015,9,11,8,30,19.3,1.28,0.028,0.63,55,901,491,0,0,1.3,55,901,0,491,0.295,30.05,61.06,0.89,0.14,795,1.1,36,3.1
+6081,2015,9,11,9,30,22.3,1.3,0.028,0.63,62,957,665,0,0,0.5,62,957,0,665,0.292,23.52,50.96,0.89,0.14,795,1.1,31,3.3
+6082,2015,9,11,10,30,24.3,1.32,0.029,0.63,67,991,797,0,0,-0.2,67,991,0,797,0.289,19.89,42.56,0.89,0.14,795,1,25,3.2
+6083,2015,9,11,11,30,25.7,1.39,0.027,0.63,67,1008,870,0,0,-0.8,67,1008,0,870,0.287,17.43,37.2,0.89,0.14,794,1,20,3.3
+6084,2015,9,11,12,30,26.6,1.43,0.026,0.63,67,1011,882,0,0,-1.5,67,1011,0,882,0.284,15.77,36.33,0.89,0.14,794,1,18,3.3
+6085,2015,9,11,13,30,27.1,1.47,0.025,0.63,65,1003,830,0,0,-2.1,65,1003,0,830,0.283,14.61,40.24,0.89,0.14,793,1,18,3.3
+6086,2015,9,11,14,30,27.2,1.58,0.023,0.63,60,981,720,0,0,-2.7,60,981,0,720,0.282,13.91,47.75,0.89,0.14,793,1,19,3.2
+6087,2015,9,11,15,30,26.7,1.64,0.023,0.63,55,937,560,0,0,-3.2,55,937,0,560,0.283,13.78,57.38,0.89,0.14,793,1,22,3.1
+6088,2015,9,11,16,30,25.4,1.68,0.023,0.63,47,859,367,0,0,-3.7,47,859,0,367,0.283,14.42,68.12,0.88,0.14,793,0.9,28,2.6
+6089,2015,9,11,17,30,22,1.71,0.022,0.63,33,680,158,0,0,-2.7,33,680,0,158,0.283,18.99,79.37,0.88,0.13,793,0.9,47,1.6
+6090,2015,9,11,18,30,18.8,1.72,0.022,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.283,27.46,90.36,0.88,0.13,793,0.9,70,1.2
+6091,2015,9,11,19,30,17.8,1.72,0.022,0.63,0,0,0,0,1,-0.9,0,0,0,0,0.284,28.16,102,0.87,0.13,794,0.9,90,1.2
+6092,2015,9,11,20,30,17.2,1.71,0.022,0.63,0,0,0,0,0,-0.9,0,0,0,0,0.284,29.2,112.58,0.87,0.13,794,0.8,113,1
+6093,2015,9,11,21,30,16.5,1.71,0.022,0.63,0,0,0,0,0,-0.9,0,0,0,0,0.284,30.56,122.03,0.87,0.13,794,0.8,147,0.8
+6094,2015,9,11,22,30,15.4,1.7,0.022,0.63,0,0,0,0,0,-1,0,0,0,0,0.285,32.63,129.6,0.87,0.13,794,0.8,194,0.7
+6095,2015,9,11,23,30,14.2,1.7,0.023,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.285,34.83,134.24,0.87,0.13,794,0.8,235,0.8
+6096,2015,9,12,0,30,13.1,1.69,0.023,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.285,36.8,134.99,0.86,0.13,793,0.8,258,0.9
+6097,2015,9,12,1,30,12.2,1.67,0.024,0.63,0,0,0,0,0,-1.7,0,0,0,0,0.285,38.1,131.67,0.86,0.13,793,0.8,272,0.9
+6098,2015,9,12,2,30,11.6,1.64,0.025,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.286,38.52,125.04,0.86,0.13,793,0.8,281,0.9
+6099,2015,9,12,3,30,11.2,1.61,0.026,0.63,0,0,0,0,0,-2.4,0,0,0,0,0.288,38.64,116.16,0.86,0.13,793,0.8,290,0.8
+6100,2015,9,12,4,30,10.8,1.59,0.027,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.289,39.07,105.93,0.86,0.13,794,0.8,300,0.7
+6101,2015,9,12,5,30,11.2,1.56,0.027,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.29,37.51,94.93,0.87,0.13,794,0.8,310,0.6
+6102,2015,9,12,6,30,13.7,1.53,0.028,0.63,26,540,87,0,0,-2.4,26,540,0,87,0.291,32.76,83.49,0.87,0.13,794,0.8,321,0.8
+6103,2015,9,12,7,30,18,1.5,0.028,0.63,45,805,291,0,0,-2.5,45,805,0,291,0.292,24.67,72.22,0.88,0.13,794,0.8,318,1.2
+6104,2015,9,12,8,30,22.2,1.47,0.028,0.63,55,920,497,0,0,-3.2,55,920,0,497,0.293,18.08,61.27,0.88,0.13,794,0.7,299,1.8
+6105,2015,9,12,9,30,25.2,1.44,0.028,0.63,61,976,673,0,0,-4.1,61,976,0,673,0.293,14.07,51.2,0.88,0.13,794,0.7,284,2.2
+6106,2015,9,12,10,30,27,1.41,0.027,0.63,65,1007,803,0,0,-5,65,1007,0,803,0.293,11.9,42.86,0.88,0.13,793,0.7,279,2.3
+6107,2015,9,12,11,30,28.2,1.4,0.028,0.63,68,1021,877,0,0,-5.8,68,1021,0,877,0.293,10.43,37.56,0.88,0.13,792,0.7,278,2.3
+6108,2015,9,12,12,30,29.1,1.37,0.029,0.63,69,1022,888,0,0,-6.6,69,1022,0,888,0.293,9.31,36.72,0.89,0.13,792,0.7,279,2.3
+6109,2015,9,12,13,30,29.5,1.35,0.03,0.63,68,1011,835,0,0,-7.3,68,1011,0,835,0.293,8.61,40.63,0.89,0.13,791,0.7,282,2.2
+6110,2015,9,12,14,30,29.4,1.29,0.025,0.63,62,992,724,0,0,-7.9,62,992,0,724,0.293,8.29,48.11,0.89,0.13,790,0.7,287,2.3
+6111,2015,9,12,15,30,28.8,1.3,0.025,0.63,56,947,562,0,0,-8.2,56,947,0,562,0.292,8.33,57.71,0.9,0.13,790,0.7,294,2.2
+6112,2015,9,12,16,30,27.1,1.32,0.026,0.63,48,861,365,0,0,-8.4,48,861,0,365,0.292,9.06,68.44,0.9,0.13,790,0.7,302,1.6
+6113,2015,9,12,17,30,24.2,1.35,0.026,0.63,34,666,153,0,0,-3.8,34,666,0,153,0.292,15.37,79.68,0.9,0.13,790,0.8,321,0.9
+6114,2015,9,12,18,30,21.6,1.38,0.027,0.63,0,0,0,0,3,-3.1,0,0,0,0,0.291,18.93,91.14,0.9,0.13,790,0.8,344,0.8
+6115,2015,9,12,19,30,20,1.42,0.029,0.63,0,0,0,0,1,-4.3,0,0,0,0,0.291,19.13,102.33,0.9,0.13,790,0.8,354,0.9
+6116,2015,9,12,20,30,18.4,1.46,0.031,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.292,20.96,112.92,0.9,0.13,790,0.9,350,1.1
+6117,2015,9,12,21,30,16.9,1.49,0.034,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.292,22.26,122.4,0.9,0.13,791,0.9,346,1.3
+6118,2015,9,12,22,30,15.4,1.51,0.035,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.293,24.58,129.98,0.89,0.13,791,0.9,344,1.4
+6119,2015,9,12,23,30,13.9,1.53,0.035,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.294,27.46,134.63,0.88,0.13,790,0.9,342,1.4
+6120,2015,9,13,0,30,12.8,1.54,0.036,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.295,29.8,135.36,0.88,0.13,790,0.8,341,1.4
+6121,2015,9,13,1,30,12.1,1.57,0.04,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.295,31.14,132,0.89,0.13,790,0.8,341,1.3
+6122,2015,9,13,2,30,11.7,1.61,0.047,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.295,31.86,125.31,0.89,0.13,790,0.8,342,1.2
+6123,2015,9,13,3,30,11.4,1.65,0.054,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.296,32.43,116.4,0.89,0.13,789,0.7,344,1
+6124,2015,9,13,4,30,11.1,1.66,0.058,0.63,0,0,0,0,0,-4.6,0,0,0,0,0.297,32.9,106.13,0.89,0.13,789,0.7,346,0.8
+6125,2015,9,13,5,30,11.5,1.64,0.057,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.298,31.75,95.12,0.89,0.13,790,0.7,345,0.6
+6126,2015,9,13,6,30,13.9,1.61,0.054,0.63,29,479,82,0,1,-4.3,29,479,0,82,0.298,28.07,83.67,0.89,0.13,790,0.7,348,0.3
+6127,2015,9,13,7,30,17.9,1.61,0.052,0.63,52,769,284,0,8,-4.2,152,164,0,201,0.298,21.9,72.41,0.89,0.13,790,0.7,341,0.4
+6128,2015,9,13,8,30,21.8,1.62,0.052,0.63,64,889,489,0,3,-5.4,254,283,0,389,0.297,15.75,61.48,0.89,0.13,790,0.7,324,1.1
+6129,2015,9,13,9,30,24.4,1.64,0.053,0.63,73,949,664,0,7,-6.2,298,219,0,435,0.296,12.64,51.44,0.89,0.13,790,0.7,311,1.5
+6130,2015,9,13,10,30,25.7,1.65,0.054,0.63,78,977,791,0,0,-6.6,78,977,0,791,0.295,11.32,43.15,0.9,0.13,789,0.8,297,1.5
+6131,2015,9,13,11,30,26.7,1.64,0.055,0.63,81,992,864,0,0,-6.8,81,992,0,864,0.294,10.52,37.91,0.9,0.13,788,0.8,283,1.5
+6132,2015,9,13,12,30,27.2,1.62,0.054,0.63,82,995,875,0,8,-6.9,256,568,0,708,0.293,10.11,37.11,0.91,0.13,788,0.8,271,1.5
+6133,2015,9,13,13,30,27.3,1.6,0.053,0.63,79,985,822,0,7,-7.1,240,558,0,661,0.292,9.95,41.01,0.91,0.13,787,0.8,259,1.6
+6134,2015,9,13,14,30,27.1,1.6,0.054,0.63,76,957,710,0,8,-7.2,252,484,0,573,0.293,9.95,48.47,0.91,0.13,786,0.8,246,1.8
+6135,2015,9,13,15,30,26.6,1.61,0.054,0.63,69,906,548,0,7,-7.4,242,342,0,423,0.293,10.14,58.05,0.91,0.13,786,0.8,233,2
+6136,2015,9,13,16,30,25.2,1.64,0.058,0.63,59,800,348,0,7,-7.3,148,373,0,283,0.294,11.05,68.77,0.91,0.13,786,0.9,220,1.7
+6137,2015,9,13,17,30,22.1,1.66,0.066,0.63,41,575,141,0,1,-3.8,41,575,0,141,0.294,17.42,80,0.92,0.13,785,0.9,202,1.2
+6138,2015,9,13,18,30,19.3,1.68,0.085,0.63,0,0,0,0,3,-2.9,0,0,0,0,0.294,22.02,91.46,0.92,0.13,786,1,191,1
+6139,2015,9,13,19,30,18.2,1.71,0.106,0.63,0,0,0,0,4,-3.5,0,0,0,0,0.294,22.62,102.65,0.92,0.13,786,1,218,0.6
+6140,2015,9,13,20,30,17.4,1.75,0.122,0.63,0,0,0,0,4,-2.8,0,0,0,0,0.293,25.14,113.26,0.92,0.13,786,1.1,295,0.4
+6141,2015,9,13,21,30,16.7,1.77,0.142,0.63,0,0,0,0,4,-1.9,0,0,0,0,0.292,28.04,122.76,0.93,0.13,786,1.2,176,0.4
+6142,2015,9,13,22,30,16.4,1.77,0.175,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.291,30.3,130.37,0.93,0.13,786,1.3,20,0.3
+6143,2015,9,13,23,30,16.3,1.77,0.216,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.291,30.99,135.02,0.94,0.13,786,1.4,70,0.3
+6144,2015,9,14,0,30,16.1,1.75,0.254,0.63,0,0,0,0,4,-0.8,0,0,0,0,0.291,31.54,135.74,0.94,0.13,786,1.4,126,0.4
+6145,2015,9,14,1,30,15.7,1.75,0.279,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.291,32.05,132.33,0.95,0.13,785,1.5,148,0.6
+6146,2015,9,14,2,30,15.3,1.75,0.287,0.63,0,0,0,0,3,-1,0,0,0,0,0.291,32.69,125.59,0.95,0.13,785,1.5,153,0.7
+6147,2015,9,14,3,30,15,1.74,0.289,0.63,0,0,0,0,4,-0.8,0,0,0,0,0.292,33.98,116.63,0.95,0.13,785,1.5,166,0.9
+6148,2015,9,14,4,30,14.2,1.73,0.283,0.63,0,0,0,0,4,0.3,0,0,0,0,0.293,38.58,106.34,0.94,0.13,785,1.5,182,1.2
+6149,2015,9,14,5,30,13.5,1.75,0.223,0.63,0,0,0,0,4,1.9,0,0,0,0,0.294,45.28,95.31,0.93,0.13,785,1.5,190,1.7
+6150,2015,9,14,6,30,14.7,1.75,0.178,0.63,38,269,67,7,4,3.8,46,1,7,46,0.295,47.94,83.85,0.93,0.13,786,1.6,199,2.9
+6151,2015,9,14,7,30,17,1.72,0.17,0.63,80,572,251,0,4,5.8,108,2,0,109,0.295,47.76,72.59,0.94,0.13,787,1.8,212,5
+6152,2015,9,14,8,30,17.2,1.68,0.164,0.63,103,719,444,0,7,8,92,1,0,92,0.294,54.74,61.68,0.95,0.13,787,2,219,6.6
+6153,2015,9,14,9,30,16.1,1.64,0.176,0.63,122,783,607,0,7,9.3,96,0,0,96,0.293,64.16,51.69,0.96,0.13,788,2.2,213,6.6
+6154,2015,9,14,10,30,16,1.6,0.215,0.63,147,797,726,0,7,9.7,210,4,0,213,0.293,66.32,43.45,0.96,0.13,788,2.2,200,5.8
+6155,2015,9,14,11,30,17.1,1.64,0.264,0.63,171,787,789,0,4,9.3,282,1,0,283,0.295,59.91,38.27,0.96,0.13,787,2.2,186,5.6
+6156,2015,9,14,12,30,18.3,1.66,0.21,0.63,151,827,807,0,3,8.8,384,20,0,399,0.297,53.77,37.5,0.96,0.13,787,2.2,181,5.9
+6157,2015,9,14,13,30,19.3,1.65,0.173,0.63,132,839,761,0,0,8.8,132,839,0,761,0.298,50.66,41.4,0.96,0.13,786,2.2,183,6.4
+6158,2015,9,14,14,30,20,1.37,0.066,0.63,81,896,671,0,7,9.1,231,502,0,561,0.298,49.34,48.83,0.97,0.13,785,2.2,191,6.7
+6159,2015,9,14,15,30,20.3,1.37,0.069,0.63,75,838,514,0,6,9.1,80,0,0,80,0.298,48.45,58.39,0.96,0.13,784,2.2,204,6.6
+6160,2015,9,14,16,30,20.1,1.44,0.073,0.63,63,733,325,0,6,8.8,6,0,0,6,0.297,48.09,69.09,0.96,0.13,784,2.1,212,6.1
+6161,2015,9,14,17,30,18.8,1.49,0.084,0.63,43,492,126,0,4,8.5,51,0,0,51,0.296,51.3,80.31,0.96,0.12,785,2.1,210,4.9
+6162,2015,9,14,18,30,17,1.49,0.102,0.63,0,0,0,0,4,8.7,0,0,0,0,0.294,58.13,91.78,0.97,0.12,785,2.2,203,4
+6163,2015,9,14,19,30,15.9,1.47,0.113,0.63,0,0,0,0,3,9.3,0,0,0,0,0.294,64.68,102.98,0.97,0.12,785,2.2,197,3.9
+6164,2015,9,14,20,30,15.2,1.44,0.113,0.63,0,0,0,0,7,9.9,0,0,0,0,0.294,70.5,113.6,0.97,0.12,786,2.2,195,3.7
+6165,2015,9,14,21,30,14.6,1.43,0.095,0.63,0,0,0,0,7,10,0,0,0,0,0.295,74.09,123.12,0.96,0.12,786,2.2,195,3.4
+6166,2015,9,14,22,30,13.9,1.44,0.074,0.63,0,0,0,0,6,9.7,0,0,0,0,0.297,75.63,130.75,0.96,0.12,785,2.1,195,3.5
+6167,2015,9,14,23,30,13.1,1.44,0.063,0.63,0,0,0,0,7,9.3,0,0,0,0,0.297,77.66,135.42,0.95,0.12,785,2.1,193,3.4
+6168,2015,9,15,0,30,12.3,1.44,0.06,0.63,0,0,0,0,7,9.2,0,0,0,0,0.298,81.36,136.11,0.95,0.12,785,2,192,3.3
+6169,2015,9,15,1,30,11.7,1.44,0.061,0.63,0,0,0,0,7,9.3,0,0,0,0,0.3,85.09,132.65,0.95,0.12,785,1.9,193,3.4
+6170,2015,9,15,2,30,11.1,1.45,0.065,0.63,0,0,0,0,7,9.4,0,0,0,0,0.301,89.03,125.87,0.95,0.12,785,1.8,196,3.5
+6171,2015,9,15,3,30,10.5,1.42,0.071,0.63,0,0,0,0,7,9.4,0,0,0,0,0.302,92.93,116.86,0.94,0.12,785,1.8,196,3.5
+6172,2015,9,15,4,30,10,1.38,0.075,0.63,0,0,0,0,7,9.4,0,0,0,0,0.301,96.04,106.54,0.95,0.12,786,1.8,194,3.6
+6173,2015,9,15,5,30,9.9,1.35,0.079,0.63,0,0,0,0,7,9.3,0,0,0,0,0.299,96.23,95.49,0.95,0.12,786,1.9,192,3.9
+6174,2015,9,15,6,30,11.1,1.32,0.086,0.63,32,349,68,7,4,9.3,29,0,7,29,0.297,88.81,84.03,0.95,0.12,786,2,195,4.9
+6175,2015,9,15,7,30,13.3,1.26,0.094,0.63,64,647,255,0,4,9.5,162,40,0,174,0.296,77.92,72.78,0.96,0.12,786,2,201,6.5
+6176,2015,9,15,8,30,15.3,1.17,0.102,0.63,84,774,449,0,4,9.5,224,378,0,402,0.295,68.17,61.89,0.96,0.12,786,2,205,7.6
+6177,2015,9,15,9,30,16.8,1.1,0.099,0.63,94,850,618,0,4,9,305,364,0,530,0.294,60.09,51.93,0.96,0.12,786,2,209,8.4
+6178,2015,9,15,10,30,17.6,1.08,0.094,0.63,99,894,745,0,4,8.3,400,251,0,582,0.293,54.29,43.75,0.96,0.12,786,2,212,8.8
+6179,2015,9,15,11,30,18.1,1.04,0.077,0.63,94,930,821,0,4,7.9,193,0,0,193,0.292,51.31,38.62,0.96,0.12,786,1.9,215,8.9
+6180,2015,9,15,12,30,18.8,1.07,0.067,0.63,90,942,833,0,3,7.8,435,267,0,646,0.29,48.67,37.89,0.96,0.12,785,1.9,217,8.8
+6181,2015,9,15,13,30,19.5,1.1,0.06,0.63,84,939,784,0,4,7.5,218,0,0,219,0.289,45.88,41.79,0.95,0.12,785,1.8,219,8.6
+6182,2015,9,15,14,30,19.7,1.06,0.052,0.63,76,918,676,0,4,7.2,170,0,0,170,0.289,44.3,49.2,0.95,0.12,785,1.8,222,8.2
+6183,2015,9,15,15,30,19.4,1.05,0.052,0.63,68,865,517,0,4,7,82,0,0,82,0.29,44.36,58.73,0.95,0.12,785,1.8,224,7.2
+6184,2015,9,15,16,30,18.2,1.07,0.054,0.63,58,758,324,0,8,7,58,1,0,58,0.291,48.01,69.41,0.95,0.12,786,1.9,224,5.6
+6185,2015,9,15,17,30,16,1.09,0.061,0.63,40,519,124,0,7,7.7,49,3,0,50,0.291,57.71,80.62,0.95,0.13,786,1.9,219,3.3
+6186,2015,9,15,18,30,13.8,1.1,0.068,0.63,0,0,0,0,7,9,0,0,0,0,0.292,72.92,92.1,0.95,0.13,787,1.9,211,1.9
+6187,2015,9,15,19,30,12.7,1.12,0.068,0.63,0,0,0,0,7,9,0,0,0,0,0.292,78.22,103.31,0.95,0.13,787,1.9,203,1.7
+6188,2015,9,15,20,30,11.8,1.14,0.065,0.63,0,0,0,0,7,8.7,0,0,0,0,0.293,81.22,113.95,0.94,0.13,787,1.8,197,1.8
+6189,2015,9,15,21,30,11.1,1.16,0.063,0.63,0,0,0,0,4,8.4,0,0,0,0,0.294,83.57,123.49,0.94,0.13,787,1.8,194,2
+6190,2015,9,15,22,30,10.7,1.19,0.067,0.63,0,0,0,0,4,8.2,0,0,0,0,0.295,84.57,131.14,0.94,0.13,787,1.7,195,2.4
+6191,2015,9,15,23,30,10.7,1.23,0.076,0.63,0,0,0,0,7,8.1,0,0,0,0,0.294,83.88,135.81,0.94,0.13,787,1.7,196,2.8
+6192,2015,9,16,0,30,10.5,1.29,0.07,0.63,0,0,0,0,4,8.1,0,0,0,0,0.294,84.87,136.48,0.93,0.13,787,1.7,192,2.9
+6193,2015,9,16,1,30,10.1,1.4,0.058,0.63,0,0,0,0,0,8,0,0,0,0,0.294,86.86,132.98,0.93,0.13,787,1.8,191,2.9
+6194,2015,9,16,2,30,9.9,1.48,0.046,0.63,0,0,0,0,4,8,0,0,0,0,0.295,87.8,126.14,0.93,0.13,787,1.9,191,3
+6195,2015,9,16,3,30,10.2,1.42,0.041,0.63,0,0,0,0,4,8.1,0,0,0,0,0.297,86.86,117.1,0.93,0.13,787,1.9,194,3.7
+6196,2015,9,16,4,30,10.8,1.35,0.041,0.63,0,0,0,0,4,8.6,0,0,0,0,0.299,86.14,106.74,0.93,0.13,787,1.8,200,4.8
+6197,2015,9,16,5,30,11.1,1.38,0.039,0.63,0,0,0,0,1,9,0,0,0,0,0.3,86.71,95.68,0.92,0.13,787,1.7,205,5.2
+6198,2015,9,16,6,30,12.2,1.38,0.036,0.63,25,452,71,7,4,9.1,36,0,7,36,0.301,81.63,84.21,0.92,0.13,787,1.8,206,5.4
+6199,2015,9,16,7,30,13.9,1.34,0.037,0.63,47,741,264,0,3,9.4,136,286,0,220,0.303,74.45,72.97,0.93,0.13,787,1.8,208,6.3
+6200,2015,9,16,8,30,15.3,1.31,0.039,0.63,59,858,460,0,0,9,59,858,0,460,0.303,65.95,62.11,0.93,0.13,787,1.8,210,7.4
+6201,2015,9,16,9,30,16.6,1.29,0.041,0.63,68,917,630,0,1,8.4,68,917,0,630,0.303,58.35,52.18,0.93,0.13,787,1.8,212,8.2
+6202,2015,9,16,10,30,17.8,1.26,0.041,0.63,73,951,756,0,4,7.9,254,1,0,254,0.302,52.47,44.05,0.94,0.13,787,1.8,214,8.7
+6203,2015,9,16,11,30,18.5,1.18,0.052,0.63,81,956,824,0,3,7.6,407,75,0,465,0.302,48.93,38.98,0.94,0.13,786,1.8,216,8.7
+6204,2015,9,16,12,30,18.9,1.18,0.048,0.63,79,962,834,0,0,7.4,79,962,0,834,0.302,47.1,38.28,0.94,0.13,786,1.8,219,8.4
+6205,2015,9,16,13,30,19,1.14,0.047,0.63,77,951,781,0,0,7.2,77,951,0,781,0.302,46.32,42.18,0.94,0.13,786,1.8,222,8
+6206,2015,9,16,14,30,18.8,1.07,0.065,0.63,81,900,665,0,4,7.2,53,0,0,53,0.302,46.79,49.56,0.94,0.13,786,1.9,226,7.4
+6207,2015,9,16,15,30,18.2,1.1,0.061,0.63,72,848,508,0,7,7.2,242,73,0,280,0.302,48.67,59.07,0.95,0.13,786,1.9,228,6.5
+6208,2015,9,16,16,30,17.2,1.14,0.06,0.63,59,745,317,0,4,7.3,14,0,0,14,0.304,52.11,69.74,0.94,0.13,786,1.9,230,5
+6209,2015,9,16,17,30,15.3,1.17,0.064,0.63,39,505,118,0,4,7.7,79,9,0,81,0.305,60.52,80.94,0.94,0.13,787,1.9,231,2.8
+6210,2015,9,16,18,30,13.5,1.18,0.069,0.63,0,0,0,0,7,9.3,0,0,0,0,0.306,75.52,92.42,0.95,0.13,787,1.9,237,1.3
+6211,2015,9,16,19,30,12.8,1.18,0.073,0.63,0,0,0,0,8,9.9,0,0,0,0,0.307,82.49,103.63,0.95,0.13,788,1.9,253,0.8
+6212,2015,9,16,20,30,12.2,1.19,0.079,0.63,0,0,0,0,4,10,0,0,0,0,0.306,86.59,114.29,0.95,0.13,788,1.9,280,0.7
+6213,2015,9,16,21,30,11.6,1.2,0.086,0.63,0,0,0,0,4,9.8,0,0,0,0,0.306,88.57,123.85,0.95,0.13,788,1.9,304,0.8
+6214,2015,9,16,22,30,10.9,1.21,0.09,0.63,0,0,0,0,4,9.3,0,0,0,0,0.306,90.03,131.53,0.95,0.13,788,1.9,315,1
+6215,2015,9,16,23,30,10.2,1.24,0.092,0.63,0,0,0,0,7,8.9,0,0,0,0,0.305,91.91,136.21,0.95,0.13,788,1.8,316,1.1
+6216,2015,9,17,0,30,9.5,1.26,0.087,0.63,0,0,0,0,4,8.5,0,0,0,0,0.303,93.53,136.86,0.95,0.13,788,1.7,312,1
+6217,2015,9,17,1,30,8.9,1.27,0.078,0.63,0,0,0,0,3,8,0,0,0,0,0.301,94.21,133.31,0.94,0.13,788,1.6,313,0.8
+6218,2015,9,17,2,30,8.4,1.27,0.074,0.63,0,0,0,0,3,7.5,0,0,0,0,0.301,94.11,126.42,0.94,0.13,789,1.6,320,0.6
+6219,2015,9,17,3,30,8.1,1.28,0.074,0.63,0,0,0,0,3,6.9,0,0,0,0,0.301,92.22,117.33,0.94,0.13,789,1.5,339,0.5
+6220,2015,9,17,4,30,7.8,1.29,0.076,0.63,0,0,0,0,3,6.4,0,0,0,0,0.302,90.59,106.95,0.94,0.13,789,1.5,189,0.6
+6221,2015,9,17,5,30,7.7,1.29,0.078,0.63,0,0,0,0,3,5.9,0,0,0,0,0.303,88.55,95.87,0.94,0.13,789,1.5,32,1
+6222,2015,9,17,6,30,8.7,1.29,0.081,0.63,30,352,65,7,4,6,29,0,7,29,0.303,83.11,84.39,0.94,0.13,789,1.5,38,1.4
+6223,2015,9,17,7,30,11.1,1.28,0.079,0.63,59,677,255,0,4,6.2,15,0,0,15,0.302,71.84,73.16,0.94,0.13,789,1.5,142,1.1
+6224,2015,9,17,8,30,13.9,1.29,0.076,0.63,74,818,454,0,0,6.1,74,818,0,454,0.3,59.29,62.32,0.94,0.13,789,1.5,236,1.6
+6225,2015,9,17,9,30,15.8,1.3,0.078,0.63,85,885,624,0,0,5.7,85,885,0,624,0.297,51.16,52.43,0.94,0.13,789,1.5,225,3.3
+6226,2015,9,17,10,30,17.2,1.3,0.072,0.63,88,929,752,0,0,5.4,88,929,0,752,0.294,45.79,44.35,0.94,0.13,789,1.5,221,4.4
+6227,2015,9,17,11,30,18.4,1.39,0.048,0.63,79,972,831,0,0,5.2,79,972,0,831,0.291,41.8,39.34,0.94,0.13,788,1.4,220,5.3
+6228,2015,9,17,12,30,19.3,1.36,0.046,0.63,78,976,840,0,0,4.9,78,976,0,840,0.289,38.71,38.68,0.93,0.13,788,1.4,220,5.8
+6229,2015,9,17,13,30,19.8,1.31,0.044,0.63,75,966,787,0,3,4.4,387,94,0,456,0.286,36.34,42.57,0.93,0.13,787,1.4,222,6
+6230,2015,9,17,14,30,20,1.36,0.039,0.63,69,947,678,0,3,3.8,342,73,0,389,0.286,34.34,49.93,0.94,0.13,787,1.3,224,6
+6231,2015,9,17,15,30,19.6,1.34,0.043,0.63,64,890,517,0,3,3,86,0,0,86,0.287,33.35,59.42,0.94,0.13,786,1.3,226,5.7
+6232,2015,9,17,16,30,18.4,1.33,0.047,0.63,54,783,321,0,0,2.6,54,783,0,321,0.287,34.74,70.07,0.94,0.13,786,1.3,225,4.5
+6233,2015,9,17,17,30,15.9,1.34,0.048,0.63,36,554,120,0,0,3.1,36,554,0,120,0.288,42.31,81.26,0.94,0.13,786,1.2,222,2.6
+6234,2015,9,17,18,30,13.3,1.35,0.046,0.63,0,0,0,0,0,5.2,0,0,0,0,0.29,57.93,92.74,0.93,0.13,787,1.2,222,1.4
+6235,2015,9,17,19,30,12.2,1.34,0.047,0.63,0,0,0,0,0,5.3,0,0,0,0,0.291,62.89,103.96,0.94,0.13,787,1.2,242,1.1
+6236,2015,9,17,20,30,11.6,1.34,0.054,0.63,0,0,0,0,4,5.1,0,0,0,0,0.291,64.39,114.63,0.94,0.13,788,1.3,289,1.4
+6237,2015,9,17,21,30,10.9,1.32,0.064,0.63,0,0,0,0,7,4.2,0,0,0,0,0.292,63.41,124.22,0.94,0.13,788,1.3,329,2.4
+6238,2015,9,17,22,30,9.9,1.32,0.067,0.63,0,0,0,0,4,3.7,0,0,0,0,0.293,65.4,131.91,0.94,0.13,789,1.4,347,3.4
+6239,2015,9,17,23,30,8.6,1.32,0.072,0.63,0,0,0,0,4,3.9,0,0,0,0,0.295,72.33,136.6,0.94,0.13,789,1.3,353,3.6
+6240,2015,9,18,0,30,7.3,1.28,0.065,0.63,0,0,0,0,1,4.1,0,0,0,0,0.295,80.1,137.23,0.93,0.13,789,1.2,355,3.3
+6241,2015,9,18,1,30,6.3,1.19,0.057,0.63,0,0,0,0,4,4.2,0,0,0,0,0.295,86.39,133.64,0.93,0.13,790,1.2,357,2.3
+6242,2015,9,18,2,30,5.4,1.11,0.053,0.63,0,0,0,0,4,4,0,0,0,0,0.295,90.92,126.69,0.93,0.13,790,1.1,182,1.5
+6243,2015,9,18,3,30,4.8,1.05,0.051,0.63,0,0,0,0,4,3.7,0,0,0,0,0.296,92.71,117.56,0.92,0.13,790,1,8,1.1
+6244,2015,9,18,4,30,4,1.02,0.044,0.63,0,0,0,0,4,3.4,0,0,0,0,0.296,95.58,107.15,0.92,0.13,791,0.8,12,1
+6245,2015,9,18,5,30,3.9,1.03,0.037,0.63,0,0,0,0,4,3,0,0,0,0,0.295,93.62,96.05,0.92,0.13,791,0.7,11,1.1
+6246,2015,9,18,6,30,5.7,1.08,0.032,0.63,25,488,71,7,4,2.9,23,0,7,23,0.294,82.19,84.57,0.91,0.13,792,0.6,10,1.9
+6247,2015,9,18,7,30,8.6,1.13,0.029,0.63,45,800,274,0,3,2.4,122,5,0,124,0.294,64.86,73.35,0.91,0.13,792,0.6,16,2.8
+6248,2015,9,18,8,30,11.2,1.17,0.026,0.63,54,922,479,0,0,0,54,922,0,479,0.294,45.89,62.53,0.9,0.13,792,0.6,23,2.8
+6249,2015,9,18,9,30,13.2,1.2,0.024,0.63,59,983,655,0,0,-2.3,59,983,0,655,0.292,34.13,52.68,0.9,0.13,792,0.6,27,2.5
+6250,2015,9,18,10,30,14.9,1.23,0.023,0.63,62,1015,784,0,0,-3.5,62,1015,0,784,0.291,27.92,44.66,0.9,0.13,792,0.6,31,2.1
+6251,2015,9,18,11,30,16.2,1.22,0.023,0.63,64,1029,856,0,0,-4.4,64,1029,0,856,0.29,23.98,39.7,0.9,0.13,792,0.6,35,1.7
+6252,2015,9,18,12,30,17,1.24,0.023,0.63,65,1031,865,0,0,-5.2,65,1031,0,865,0.289,21.48,39.07,0.9,0.13,792,0.6,41,1.4
+6253,2015,9,18,13,30,17.6,1.26,0.023,0.63,63,1021,810,0,0,-5.8,63,1021,0,810,0.289,19.71,42.96,0.9,0.13,791,0.6,48,1.1
+6254,2015,9,18,14,30,17.8,1.27,0.022,0.63,59,996,695,0,0,-6.3,59,996,0,695,0.289,18.83,50.3,0.9,0.13,791,0.6,58,0.8
+6255,2015,9,18,15,30,17.4,1.27,0.022,0.63,54,948,531,0,0,-6.6,54,948,0,531,0.29,18.87,59.76,0.9,0.13,791,0.6,76,0.7
+6256,2015,9,18,16,30,16.4,1.27,0.022,0.63,45,855,332,0,0,-6.7,45,855,0,332,0.29,19.89,70.39,0.9,0.13,791,0.6,95,0.7
+6257,2015,9,18,17,30,13.9,1.26,0.022,0.63,30,637,123,0,0,-3.8,30,637,0,123,0.291,29.17,81.57,0.9,0.13,791,0.6,100,0.7
+6258,2015,9,18,18,30,11.5,1.24,0.023,0.63,0,0,0,0,1,-0.3,0,0,0,0,0.292,44.15,93.06,0.9,0.13,791,0.6,97,0.9
+6259,2015,9,18,19,30,10.3,1.22,0.023,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.293,44.26,104.29,0.9,0.13,791,0.7,97,1.1
+6260,2015,9,18,20,30,9.6,1.2,0.024,0.63,0,0,0,0,0,-2,0,0,0,0,0.294,44.29,114.98,0.9,0.13,791,0.7,98,1.1
+6261,2015,9,18,21,30,9.1,1.19,0.024,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.295,43.99,124.58,0.9,0.13,791,0.7,100,1.1
+6262,2015,9,18,22,30,8.7,1.18,0.025,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.296,42.8,132.3,0.9,0.13,791,0.7,106,1
+6263,2015,9,18,23,30,8.3,1.17,0.026,0.63,0,0,0,0,0,-3.9,0,0,0,0,0.296,41.94,137,0.9,0.13,791,0.7,118,0.8
+6264,2015,9,19,0,30,7.9,1.17,0.027,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.295,41.9,137.61,0.9,0.13,791,0.7,156,0.5
+6265,2015,9,19,1,30,7.2,1.17,0.028,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.296,44.11,133.96,0.9,0.13,791,0.7,229,0.4
+6266,2015,9,19,2,30,6.4,1.17,0.029,0.63,0,0,0,0,0,-4,0,0,0,0,0.296,47.36,126.97,0.9,0.13,790,0.7,281,0.6
+6267,2015,9,19,3,30,5.7,1.17,0.03,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.297,51.08,117.79,0.9,0.13,790,0.7,295,0.7
+6268,2015,9,19,4,30,4.9,1.17,0.031,0.63,0,0,0,0,0,-3.3,0,0,0,0,0.298,55.37,107.35,0.9,0.13,791,0.7,304,0.7
+6269,2015,9,19,5,30,4.7,1.18,0.032,0.63,0,0,0,0,0,-3,0,0,0,0,0.298,57.41,96.24,0.9,0.13,791,0.7,311,0.7
+6270,2015,9,19,6,30,6.7,1.19,0.032,0.63,24,476,68,0,0,-2.1,24,476,0,68,0.299,53.59,84.75,0.9,0.13,791,0.7,321,0.8
+6271,2015,9,19,7,30,10.4,1.2,0.032,0.63,45,785,268,0,0,-1.7,45,785,0,268,0.299,42.99,73.55,0.9,0.13,791,0.7,325,1.2
+6272,2015,9,19,8,30,14.1,1.22,0.031,0.63,56,907,471,0,0,-2.6,56,907,0,471,0.299,31.36,62.75,0.9,0.13,792,0.7,296,1.6
+6273,2015,9,19,9,30,16.9,1.25,0.03,0.63,62,969,646,0,0,-3.9,62,969,0,646,0.297,23.89,52.94,0.9,0.13,792,0.7,263,2.3
+6274,2015,9,19,10,30,18.7,1.28,0.029,0.63,66,1002,775,0,0,-4.3,66,1002,0,775,0.294,20.67,44.96,0.89,0.13,791,0.7,256,2.8
+6275,2015,9,19,11,30,20.1,1.29,0.028,0.63,67,1018,847,0,0,-4.9,67,1018,0,847,0.293,18.09,40.06,0.89,0.13,791,0.7,252,3
+6276,2015,9,19,12,30,21,1.29,0.027,0.63,67,1021,855,0,0,-5.6,67,1021,0,855,0.292,16.2,39.47,0.89,0.13,790,0.7,249,3
+6277,2015,9,19,13,30,21.5,1.29,0.026,0.63,64,1011,800,0,3,-6.2,404,314,0,632,0.291,15.02,43.35,0.88,0.13,790,0.7,249,3
+6278,2015,9,19,14,30,21.6,1.28,0.022,0.63,58,989,685,0,0,-6.7,58,989,0,685,0.291,14.36,50.67,0.88,0.13,789,0.7,250,2.9
+6279,2015,9,19,15,30,21.2,1.28,0.021,0.63,52,948,525,0,0,-7.1,52,948,0,525,0.291,14.28,60.11,0.87,0.13,789,0.6,250,2.6
+6280,2015,9,19,16,30,19.6,1.28,0.021,0.63,44,854,326,0,0,-7.3,44,854,0,326,0.291,15.57,70.72,0.87,0.13,789,0.6,244,1.6
+6281,2015,9,19,17,30,17.3,1.28,0.02,0.63,28,633,118,0,0,-0.5,28,633,0,118,0.29,29.95,81.89,0.87,0.13,789,0.6,233,0.5
+6282,2015,9,19,18,30,15.3,1.28,0.02,0.63,0,0,0,0,0,-2.4,0,0,0,0,0.287,29.57,93.38,0.87,0.13,789,0.6,121,0.5
+6283,2015,9,19,19,30,13.3,1.29,0.019,0.63,0,0,0,0,0,-2.9,0,0,0,0,0.285,32.36,104.62,0.87,0.13,790,0.6,12,0.9
+6284,2015,9,19,20,30,11.3,1.3,0.019,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.284,38.67,115.32,0.87,0.13,790,0.6,11,1.1
+6285,2015,9,19,21,30,9.7,1.31,0.019,0.63,0,0,0,0,0,-2.4,0,0,0,0,0.285,42.78,124.95,0.86,0.13,791,0.6,8,1.2
+6286,2015,9,19,22,30,8.4,1.32,0.02,0.63,0,0,0,0,0,-2.3,0,0,0,0,0.286,46.94,132.69,0.87,0.13,791,0.6,3,1.3
+6287,2015,9,19,23,30,7.4,1.33,0.022,0.63,0,0,0,0,3,-2.2,0,0,0,0,0.287,50.75,137.4,0.87,0.13,792,0.7,180,1.3
+6288,2015,9,20,0,30,6.8,1.35,0.024,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.288,53.95,137.98,0.88,0.13,792,0.7,181,1.3
+6289,2015,9,20,1,30,6.1,1.38,0.024,0.63,0,0,0,0,0,-1.6,0,0,0,0,0.288,57.69,134.29,0.87,0.13,792,0.7,5,1.2
+6290,2015,9,20,2,30,5.6,1.42,0.023,0.63,0,0,0,0,0,-1.9,0,0,0,0,0.287,58.57,127.24,0.87,0.13,792,0.7,9,1.1
+6291,2015,9,20,3,30,5.5,1.44,0.022,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.284,57.79,118.02,0.87,0.13,792,0.7,14,1
+6292,2015,9,20,4,30,5.4,1.44,0.022,0.63,0,0,0,0,0,-2.4,0,0,0,0,0.282,57.26,107.55,0.87,0.13,793,0.7,17,0.9
+6293,2015,9,20,5,30,5.6,1.42,0.022,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.28,55.6,96.43,0.88,0.13,793,0.7,21,0.8
+6294,2015,9,20,6,30,7.8,1.41,0.021,0.63,22,499,66,0,0,-2,22,499,0,66,0.279,49.88,84.93,0.88,0.13,793,0.8,29,1
+6295,2015,9,20,7,30,11.6,1.4,0.021,0.63,41,800,265,0,0,-1.9,41,800,0,265,0.277,39.1,73.74,0.88,0.13,793,0.8,31,1.2
+6296,2015,9,20,8,30,15.3,1.38,0.02,0.63,50,918,467,0,0,-3.2,50,918,0,467,0.276,27.9,62.96,0.88,0.13,793,0.8,193,1.3
+6297,2015,9,20,9,30,18,1.37,0.019,0.63,55,977,640,0,0,-4.9,55,977,0,640,0.274,20.62,53.19,0.88,0.13,793,0.8,344,1.3
+6298,2015,9,20,10,30,19.8,1.36,0.018,0.63,58,1009,768,0,0,-5.6,58,1009,0,768,0.272,17.56,45.27,0.88,0.13,793,0.8,310,1.1
+6299,2015,9,20,11,30,21.3,1.35,0.019,0.63,60,1022,838,0,0,-5.9,60,1022,0,838,0.27,15.62,40.43,0.88,0.13,793,0.8,275,1.3
+6300,2015,9,20,12,30,22.4,1.36,0.019,0.63,61,1029,851,0,0,-6,61,1029,0,851,0.268,14.52,39.86,0.88,0.13,792,0.7,254,1.7
+6301,2015,9,20,13,30,23,1.37,0.019,0.63,59,1019,795,0,0,-5.9,59,1019,0,795,0.267,14.02,43.74,0.88,0.13,792,0.7,246,2.2
+6302,2015,9,20,14,30,23.2,1.38,0.019,0.63,56,993,680,0,0,-5.9,56,993,0,680,0.266,13.85,51.04,0.88,0.13,791,0.7,242,2.4
+6303,2015,9,20,15,30,22.7,1.4,0.019,0.63,51,938,513,0,0,-5.9,51,938,0,513,0.266,14.33,60.45,0.88,0.13,791,0.8,237,2.4
+6304,2015,9,20,16,30,20.9,1.41,0.019,0.63,42,842,316,0,0,-5.7,42,842,0,316,0.267,16.25,71.05,0.88,0.13,791,0.8,228,1.7
+6305,2015,9,20,17,30,17.9,1.42,0.02,0.63,28,612,111,0,0,1.5,28,612,0,111,0.267,33.15,82.21,0.88,0.13,791,0.8,210,1
+6306,2015,9,20,18,30,15.7,1.43,0.02,0.63,0,0,0,0,0,0.5,0,0,0,0,0.267,35.68,93.7,0.88,0.13,791,0.8,191,1
+6307,2015,9,20,19,30,14.8,1.44,0.02,0.63,0,0,0,0,0,-0.9,0,0,0,0,0.267,34.1,104.95,0.88,0.13,791,0.8,184,0.9
+6308,2015,9,20,20,30,14,1.45,0.019,0.63,0,0,0,0,0,-1.7,0,0,0,0,0.268,33.88,115.66,0.88,0.13,791,0.8,193,0.7
+6309,2015,9,20,21,30,13.2,1.45,0.019,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.268,34.38,125.32,0.88,0.13,791,0.7,212,0.6
+6310,2015,9,20,22,30,12.4,1.46,0.019,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.269,36.23,133.08,0.88,0.13,791,0.7,232,0.5
+6311,2015,9,20,23,30,11.8,1.46,0.019,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.269,36.93,137.79,0.88,0.13,791,0.7,251,0.5
+6312,2015,9,21,0,30,11.2,1.46,0.02,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.27,38.16,138.36,0.88,0.13,791,0.7,264,0.5
+6313,2015,9,21,1,30,10.6,1.47,0.02,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.272,39.53,134.62,0.88,0.13,791,0.7,270,0.5
+6314,2015,9,21,2,30,10.1,1.47,0.021,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.274,40.36,127.51,0.88,0.13,791,0.7,274,0.5
+6315,2015,9,21,3,30,9.5,1.47,0.021,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.276,41.92,118.25,0.88,0.13,791,0.7,281,0.3
+6316,2015,9,21,4,30,8.9,1.46,0.021,0.63,0,0,0,0,0,-2.8,0,0,0,0,0.277,43.67,107.76,0.88,0.13,791,0.7,319,0.2
+6317,2015,9,21,5,30,8.6,1.45,0.021,0.63,0,0,0,0,0,-2.9,0,0,0,0,0.278,44.34,96.62,0.88,0.13,791,0.7,208,0.2
+6318,2015,9,21,6,30,10.1,1.43,0.021,0.63,22,498,64,0,0,-2.4,22,498,0,64,0.279,41.61,85.11,0.88,0.13,792,0.7,92,0.4
+6319,2015,9,21,7,30,13.4,1.41,0.021,0.63,41,804,263,0,0,-1.1,41,804,0,263,0.279,36.67,73.93,0.89,0.13,792,0.7,113,0.6
+6320,2015,9,21,8,30,17.6,1.4,0.021,0.63,50,921,466,0,0,-2.8,50,921,0,466,0.28,24.7,63.18,0.89,0.13,792,0.7,98,0.6
+6321,2015,9,21,9,30,21.4,1.4,0.022,0.63,57,979,640,0,0,-4.2,57,979,0,640,0.28,17.66,53.45,0.89,0.13,791,0.7,117,0.5
+6322,2015,9,21,10,30,23.6,1.39,0.022,0.63,61,1004,764,0,0,-4.5,61,1004,0,764,0.28,15.1,45.58,0.89,0.13,791,0.8,174,0.6
+6323,2015,9,21,11,30,24.9,1.38,0.022,0.63,63,1019,834,0,0,-4.5,63,1019,0,834,0.28,13.96,40.79,0.89,0.13,790,0.8,207,1.2
+6324,2015,9,21,12,30,25.6,1.37,0.023,0.63,64,1019,842,0,0,-4.4,64,1019,0,842,0.28,13.5,40.26,0.89,0.13,790,0.8,218,1.8
+6325,2015,9,21,13,30,25.8,1.37,0.024,0.63,63,1007,786,0,0,-4.3,63,1007,0,786,0.28,13.42,44.14,0.89,0.13,789,0.8,226,2.2
+6326,2015,9,21,14,30,25.5,1.38,0.02,0.63,56,980,668,0,0,-4.2,56,980,0,668,0.28,13.74,51.41,0.89,0.13,789,0.9,232,2.5
+6327,2015,9,21,15,30,24.7,1.42,0.022,0.63,52,927,505,0,3,-4.1,234,374,0,416,0.28,14.53,60.8,0.89,0.13,788,0.9,234,2.3
+6328,2015,9,21,16,30,22.7,1.45,0.023,0.63,44,826,308,0,4,-3.7,162,243,0,240,0.28,16.9,71.38,0.89,0.13,788,0.9,233,1.5
+6329,2015,9,21,17,30,20.5,1.46,0.025,0.63,28,582,104,7,3,4.5,64,7,7,65,0.281,34.99,82.53,0.89,0.13,789,0.9,225,0.7
+6330,2015,9,21,18,30,19.6,1.48,0.027,0.63,0,0,0,0,3,1.7,0,0,0,0,0.281,30.24,94.02,0.88,0.13,789,0.9,180,0.4
+6331,2015,9,21,19,30,19,1.5,0.028,0.63,0,0,0,0,4,-0.4,0,0,0,0,0.282,27.12,105.27,0.88,0.13,789,0.9,113,0.4
+6332,2015,9,21,20,30,18,1.5,0.029,0.63,0,0,0,0,3,-0.7,0,0,0,0,0.283,28.27,116.01,0.89,0.13,789,0.9,76,0.6
+6333,2015,9,21,21,30,16.8,1.49,0.03,0.63,0,0,0,0,3,-1,0,0,0,0,0.283,29.67,125.68,0.89,0.13,789,0.9,65,0.8
+6334,2015,9,21,22,30,15.6,1.48,0.031,0.63,0,0,0,0,0,-0.7,0,0,0,0,0.283,32.86,133.47,0.89,0.13,789,0.9,60,0.9
+6335,2015,9,21,23,30,14.5,1.48,0.031,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.283,36,138.19,0.89,0.13,789,0.9,60,1
+6336,2015,9,22,0,30,13.5,1.49,0.031,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.283,37.81,138.74,0.9,0.13,789,0.9,64,1.1
+6337,2015,9,22,1,30,12.6,1.49,0.031,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.284,40.9,134.94,0.9,0.13,789,0.9,67,1.1
+6338,2015,9,22,2,30,12.1,1.49,0.031,0.63,0,0,0,0,3,-0.4,0,0,0,0,0.284,42.24,127.79,0.9,0.13,789,0.9,67,1.1
+6339,2015,9,22,3,30,11.9,1.49,0.031,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.285,42.2,118.48,0.9,0.13,789,0.9,66,1.1
+6340,2015,9,22,4,30,11.6,1.48,0.031,0.63,0,0,0,0,3,-0.7,0,0,0,0,0.285,42.64,107.96,0.9,0.13,789,0.9,62,1.1
+6341,2015,9,22,5,30,11.6,1.47,0.031,0.63,0,0,0,0,3,-0.8,0,0,0,0,0.285,42.25,96.8,0.9,0.13,789,0.9,57,1.1
+6342,2015,9,22,6,30,13,1.46,0.032,0.63,22,446,59,7,3,-0.5,35,1,7,35,0.285,39.55,85.3,0.91,0.13,789,0.9,48,1
+6343,2015,9,22,7,30,15.7,1.45,0.032,0.63,44,769,255,0,4,2.6,127,325,0,215,0.284,41.48,74.13,0.91,0.13,789,0.9,34,1.1
+6344,2015,9,22,8,30,19.1,1.45,0.033,0.63,56,892,456,0,4,-0.8,263,85,0,301,0.282,26.13,63.4,0.91,0.13,790,0.9,190,1.2
+6345,2015,9,22,9,30,22.7,1.45,0.034,0.63,64,954,628,0,4,-2.1,340,213,0,466,0.28,19.1,53.71,0.91,0.13,790,0.9,339,1
+6346,2015,9,22,10,30,24.8,1.46,0.036,0.63,69,981,752,0,3,-3.2,333,445,0,642,0.277,15.46,45.89,0.92,0.13,789,1,318,1.1
+6347,2015,9,22,11,30,25.7,1.48,0.04,0.63,74,992,821,0,1,-3.1,74,992,0,821,0.274,14.73,41.16,0.92,0.13,789,1,302,1.2
+6348,2015,9,22,12,30,26,1.48,0.041,0.63,74,989,825,0,4,-3,391,391,0,688,0.271,14.55,40.65,0.92,0.13,788,1.1,285,1.4
+6349,2015,9,22,13,30,25.8,1.48,0.043,0.63,73,975,769,0,4,-2.9,398,106,0,474,0.269,14.84,44.53,0.92,0.13,788,1.1,271,1.7
+6350,2015,9,22,14,30,25.3,1.47,0.041,0.63,69,948,655,0,4,-2.8,352,234,0,497,0.269,15.4,51.78,0.93,0.13,788,1.1,262,2.1
+6351,2015,9,22,15,30,24.1,1.47,0.042,0.63,62,890,492,0,7,-2.6,231,243,0,349,0.27,16.81,61.15,0.93,0.13,787,1.1,254,2.1
+6352,2015,9,22,16,30,21.6,1.46,0.043,0.63,51,779,296,0,4,0.6,176,151,0,223,0.27,24.77,71.71,0.93,0.13,787,1.1,242,1.6
+6353,2015,9,22,17,30,18.6,1.46,0.047,0.63,31,508,95,7,3,4.8,59,4,7,60,0.271,40.29,82.85,0.93,0.13,788,1.1,230,1.4
+6354,2015,9,22,18,30,16.6,1.45,0.05,0.63,0,0,0,0,4,4.1,0,0,0,0,0.271,43.44,94.34,0.94,0.13,788,1.1,223,1.7
+6355,2015,9,22,19,30,15.5,1.44,0.053,0.63,0,0,0,0,7,3.6,0,0,0,0,0.271,44.89,105.6,0.94,0.13,789,1.2,219,1.9
+6356,2015,9,22,20,30,14.6,1.43,0.056,0.63,0,0,0,0,3,3.5,0,0,0,0,0.271,47.16,116.35,0.94,0.13,789,1.2,218,1.9
+6357,2015,9,22,21,30,13.8,1.43,0.059,0.63,0,0,0,0,3,3.7,0,0,0,0,0.271,50.38,126.05,0.94,0.13,789,1.3,218,2
+6358,2015,9,22,22,30,13.1,1.44,0.061,0.63,0,0,0,0,1,3.9,0,0,0,0,0.271,53.61,133.86,0.95,0.13,789,1.3,218,2
+6359,2015,9,22,23,30,12.5,1.44,0.062,0.63,0,0,0,0,4,4.1,0,0,0,0,0.271,56.73,138.59,0.95,0.13,789,1.3,219,2
+6360,2015,9,23,0,30,12,1.44,0.062,0.63,0,0,0,0,3,4.3,0,0,0,0,0.271,59.38,139.11,0.95,0.13,789,1.4,222,2
+6361,2015,9,23,1,30,11.6,1.45,0.061,0.63,0,0,0,0,3,4.5,0,0,0,0,0.272,61.83,135.27,0.95,0.13,789,1.4,229,1.8
+6362,2015,9,23,2,30,11.3,1.47,0.061,0.63,0,0,0,0,4,4.8,0,0,0,0,0.274,64.16,128.06,0.94,0.13,789,1.4,240,1.6
+6363,2015,9,23,3,30,11,1.5,0.06,0.63,0,0,0,0,0,4.9,0,0,0,0,0.276,65.83,118.71,0.94,0.13,789,1.3,256,1.2
+6364,2015,9,23,4,30,10.7,1.53,0.06,0.63,0,0,0,0,4,4.7,0,0,0,0,0.279,66.57,108.16,0.93,0.13,789,1.3,275,1
+6365,2015,9,23,5,30,10.5,1.55,0.058,0.63,0,0,0,0,1,4.4,0,0,0,0,0.281,65.97,96.99,0.93,0.13,790,1.2,296,0.8
+6366,2015,9,23,6,30,12.2,1.58,0.056,0.63,24,373,53,0,1,4.2,24,373,0,53,0.282,58.01,85.48,0.92,0.13,790,1.1,314,1
+6367,2015,9,23,7,30,15.5,1.58,0.054,0.63,50,719,244,0,0,3.9,50,719,0,244,0.283,45.96,74.33,0.92,0.13,790,1.1,329,1.4
+6368,2015,9,23,8,30,19.2,1.59,0.053,0.63,64,860,446,0,0,2.4,64,860,0,446,0.283,32.72,63.62,0.92,0.13,791,1,340,1.9
+6369,2015,9,23,9,30,22.4,1.61,0.053,0.63,72,932,620,0,0,-0.1,72,932,0,620,0.282,22.45,53.97,0.91,0.13,791,0.9,348,2.5
+6370,2015,9,23,10,30,24.6,1.63,0.052,0.63,77,968,747,0,0,-2.2,77,968,0,747,0.281,16.8,46.21,0.91,0.13,791,0.9,354,2.7
+6371,2015,9,23,11,30,26,1.56,0.045,0.63,76,996,822,0,0,-3.6,76,996,0,822,0.281,13.98,41.52,0.91,0.13,791,0.8,356,2.8
+6372,2015,9,23,12,30,26.9,1.56,0.045,0.63,76,997,828,0,0,-4.5,76,997,0,828,0.28,12.39,41.05,0.9,0.13,790,0.8,355,2.9
+6373,2015,9,23,13,30,27.2,1.53,0.045,0.63,74,985,771,1,0,-5.1,74,985,1,771,0.28,11.64,44.92,0.9,0.13,790,0.8,351,3
+6374,2015,9,23,14,30,26.9,1.4,0.043,0.63,69,956,656,0,0,-5.4,69,956,0,656,0.28,11.54,52.15,0.91,0.13,790,0.8,349,3
+6375,2015,9,23,15,30,26.1,1.31,0.042,0.63,62,900,491,0,0,-5.5,62,900,0,491,0.28,12.02,61.49,0.91,0.13,790,0.8,352,2.9
+6376,2015,9,23,16,30,23.7,1.23,0.041,0.63,50,789,294,0,0,-5.3,50,789,0,294,0.279,14.15,72.04,0.91,0.13,790,0.8,180,2
+6377,2015,9,23,17,30,19.9,1.17,0.04,0.63,30,514,91,0,0,2.6,30,514,0,91,0.279,31.75,83.16,0.91,0.14,791,0.9,13,1.2
+6378,2015,9,23,18,30,17,1.14,0.039,0.63,0,0,0,0,0,2.3,0,0,0,0,0.278,37.21,94.66,0.92,0.14,791,0.9,22,1.2
+6379,2015,9,23,19,30,15.7,1.14,0.039,0.63,0,0,0,0,0,1.6,0,0,0,0,0.277,38.57,105.93,0.91,0.14,792,0.9,21,1.2
+6380,2015,9,23,20,30,14.7,1.17,0.039,0.63,0,0,0,0,0,1.3,0,0,0,0,0.276,40.16,116.69,0.91,0.14,792,0.9,14,1.2
+6381,2015,9,23,21,30,13.8,1.22,0.038,0.63,0,0,0,0,0,1,0,0,0,0,0.275,41.7,126.41,0.91,0.14,792,0.9,6,1.1
+6382,2015,9,23,22,30,13,1.26,0.038,0.63,0,0,0,0,0,0.8,0,0,0,0,0.275,43.36,134.25,0.91,0.14,793,1,179,1
+6383,2015,9,23,23,30,12.3,1.3,0.039,0.63,0,0,0,0,0,0.6,0,0,0,0,0.275,44.8,138.99,0.91,0.14,793,1,354,1
+6384,2015,9,24,0,30,11.6,1.34,0.039,0.63,0,0,0,0,0,0.6,0,0,0,0,0.274,46.87,139.49,0.91,0.14,794,1,353,0.9
+6385,2015,9,24,1,30,10.9,1.37,0.039,0.63,0,0,0,0,0,0.6,0,0,0,0,0.274,49.08,135.6,0.91,0.14,794,1,178,0.9
+6386,2015,9,24,2,30,10.2,1.4,0.04,0.63,0,0,0,0,0,0.6,0,0,0,0,0.274,51.29,128.33,0.91,0.14,794,1,6,0.9
+6387,2015,9,24,3,30,9.6,1.43,0.04,0.63,0,0,0,0,0,0.5,0,0,0,0,0.274,53.19,118.94,0.9,0.14,794,1,14,1
+6388,2015,9,24,4,30,9.2,1.46,0.041,0.63,0,0,0,0,0,0.4,0,0,0,0,0.274,54.3,108.36,0.9,0.14,795,1,18,1
+6389,2015,9,24,5,30,9,1.49,0.042,0.63,0,0,0,0,0,0.3,0,0,0,0,0.274,54.45,97.18,0.9,0.14,795,0.9,20,1
+6390,2015,9,24,6,30,11.1,1.52,0.043,0.63,22,400,53,0,0,0.6,22,400,0,53,0.273,48.43,85.66,0.9,0.14,796,0.9,22,1.3
+6391,2015,9,24,7,30,14.8,1.54,0.043,0.63,47,743,245,0,0,1.3,47,743,0,245,0.273,39.9,74.53,0.9,0.14,796,0.9,29,1.7
+6392,2015,9,24,8,30,19,1.56,0.044,0.63,60,874,445,0,0,0.3,60,874,0,445,0.271,28.49,63.85,0.9,0.14,796,0.9,30,2.1
+6393,2015,9,24,9,30,23.1,1.57,0.043,0.63,68,942,618,0,0,-1.1,68,942,0,618,0.268,20,54.23,0.9,0.14,796,0.9,21,2.5
+6394,2015,9,24,10,30,25.3,1.58,0.043,0.63,73,981,748,0,0,-2.6,73,981,0,748,0.266,15.71,46.52,0.9,0.14,796,0.8,14,2.6
+6395,2015,9,24,11,30,26.3,1.58,0.04,0.63,74,1000,818,0,0,-3,74,1000,0,818,0.263,14.37,41.89,0.9,0.14,796,0.8,11,2.6
+6396,2015,9,24,12,30,26.9,1.59,0.039,0.63,73,1003,825,0,0,-3.4,73,1003,0,825,0.261,13.47,41.45,0.9,0.14,795,0.8,7,2.6
+6397,2015,9,24,13,30,27.1,1.6,0.038,0.63,71,991,768,0,0,-3.9,71,991,0,768,0.259,12.81,45.31,0.9,0.14,795,0.8,5,2.6
+6398,2015,9,24,14,30,26.8,1.6,0.034,0.63,65,972,656,0,0,-4.4,65,972,0,656,0.259,12.55,52.52,0.9,0.14,795,0.7,7,2.5
+6399,2015,9,24,15,30,26,1.61,0.033,0.63,58,918,491,0,0,-4.7,58,918,0,491,0.259,12.88,61.84,0.9,0.14,795,0.7,15,2.4
+6400,2015,9,24,16,30,23.7,1.62,0.033,0.63,47,808,292,0,0,-4.7,47,808,0,292,0.259,14.77,72.37,0.9,0.14,795,0.7,28,1.7
+6401,2015,9,24,17,30,20,1.6,0.032,0.63,28,543,89,0,0,3.3,28,543,0,89,0.259,33.26,83.48,0.9,0.14,795,0.7,43,1.1
+6402,2015,9,24,18,30,17.6,1.58,0.031,0.63,0,0,0,0,3,2.4,0,0,0,0,0.26,36.08,94.98,0.9,0.14,795,0.7,53,1.2
+6403,2015,9,24,19,30,16.6,1.56,0.03,0.63,0,0,0,0,4,1.7,0,0,0,0,0.261,36.64,106.26,0.9,0.14,795,0.7,54,1.3
+6404,2015,9,24,20,30,15.8,1.56,0.027,0.63,0,0,0,0,3,1,0,0,0,0,0.261,36.53,117.04,0.89,0.14,795,0.7,48,1.3
+6405,2015,9,24,21,30,15.1,1.55,0.025,0.63,0,0,0,0,0,0.1,0,0,0,0,0.262,35.95,126.78,0.89,0.14,795,0.7,43,1.3
+6406,2015,9,24,22,30,14.4,1.54,0.023,0.63,0,0,0,0,0,-0.3,0,0,0,0,0.262,36.53,134.64,0.88,0.14,795,0.7,42,1.3
+6407,2015,9,24,23,30,13.7,1.53,0.022,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.262,37.64,139.39,0.88,0.14,795,0.7,47,1.2
+6408,2015,9,25,0,30,13,1.52,0.022,0.63,0,0,0,0,0,-0.7,0,0,0,0,0.262,38.89,139.86,0.88,0.14,795,0.7,53,1.1
+6409,2015,9,25,1,30,12.3,1.51,0.023,0.63,0,0,0,0,0,-0.7,0,0,0,0,0.262,40.57,135.92,0.88,0.14,795,0.7,57,1
+6410,2015,9,25,2,30,11.7,1.51,0.023,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.263,41.86,128.6,0.88,0.14,795,0.7,61,0.9
+6411,2015,9,25,3,30,11.2,1.52,0.023,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.264,42.42,119.17,0.88,0.14,795,0.7,66,0.9
+6412,2015,9,25,4,30,10.7,1.53,0.024,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.265,43.32,108.56,0.88,0.14,795,0.8,74,0.8
+6413,2015,9,25,5,30,10.4,1.54,0.024,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.265,44.04,97.37,0.89,0.14,796,0.8,83,0.7
+6414,2015,9,25,6,30,12.2,1.56,0.025,0.63,20,446,53,0,0,-1,20,446,0,53,0.265,39.95,85.84,0.89,0.14,796,0.8,102,0.7
+6415,2015,9,25,7,30,15.5,1.57,0.026,0.63,42,778,247,0,0,0.6,42,778,0,247,0.265,36.19,74.72,0.89,0.14,796,0.8,132,0.7
+6416,2015,9,25,8,30,19.3,1.59,0.027,0.63,53,897,445,0,0,-1.3,53,897,0,445,0.264,24.8,64.07,0.89,0.14,797,0.9,196,0.7
+6417,2015,9,25,9,30,23.1,1.6,0.028,0.63,60,959,617,0,0,-2.5,60,959,0,617,0.263,18.03,54.49,0.9,0.14,797,0.9,255,1.1
+6418,2015,9,25,10,30,25.6,1.61,0.029,0.63,65,986,740,0,0,-3.2,65,986,0,740,0.261,14.69,46.84,0.9,0.14,796,1,267,1.3
+6419,2015,9,25,11,30,26.8,1.62,0.029,0.63,67,1002,808,0,0,-2.8,67,1002,0,808,0.26,14.11,42.26,0.9,0.14,796,1,263,1.4
+6420,2015,9,25,12,30,27.3,1.64,0.029,0.63,67,1003,815,0,0,-2.5,67,1003,0,815,0.258,14.09,41.84,0.9,0.14,795,1,256,1.7
+6421,2015,9,25,13,30,27.5,1.66,0.03,0.63,66,990,757,0,0,-2.3,66,990,0,757,0.257,14.12,45.71,0.9,0.14,794,1,250,1.9
+6422,2015,9,25,14,30,27.2,1.66,0.027,0.63,61,964,642,0,0,-2.3,61,964,0,642,0.256,14.38,52.89,0.9,0.14,794,1,245,2
+6423,2015,9,25,15,30,26.4,1.68,0.026,0.63,54,910,479,0,0,-2.4,54,910,0,479,0.256,14.94,62.19,0.9,0.14,794,1,238,1.9
+6424,2015,9,25,16,30,24.4,1.69,0.026,0.63,44,801,282,0,0,-2.4,44,801,0,282,0.256,16.79,72.7,0.9,0.14,794,1,231,1.3
+6425,2015,9,25,17,30,21.4,1.7,0.025,0.63,26,533,83,0,0,4.4,26,533,0,83,0.256,32.87,83.8,0.9,0.14,794,1,223,0.8
+6426,2015,9,25,18,30,19.6,1.7,0.025,0.63,0,0,0,0,0,2.3,0,0,0,0,0.257,31.7,95.3,0.9,0.14,794,0.9,211,0.7
+6427,2015,9,25,19,30,19,1.69,0.024,0.63,0,0,0,0,0,1.1,0,0,0,0,0.258,30.18,106.58,0.9,0.14,794,0.9,201,0.7
+6428,2015,9,25,20,30,18.5,1.69,0.024,0.63,0,0,0,0,0,0.2,0,0,0,0,0.259,29.16,117.38,0.9,0.14,794,0.9,197,0.8
+6429,2015,9,25,21,30,17.6,1.68,0.024,0.63,0,0,0,0,0,-0.3,0,0,0,0,0.259,29.77,127.14,0.9,0.14,794,0.9,202,1
+6430,2015,9,25,22,30,16.6,1.68,0.024,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.26,31.21,135.02,0.9,0.14,794,0.9,213,1.1
+6431,2015,9,25,23,30,15.4,1.68,0.024,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.26,33.54,139.79,0.9,0.14,794,0.9,224,1.2
+6432,2015,9,26,0,30,14.3,1.67,0.025,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.26,36.28,140.24,0.9,0.14,794,0.9,231,1.3
+6433,2015,9,26,1,30,13.3,1.67,0.026,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.26,38.37,136.24,0.91,0.14,794,0.9,234,1.2
+6434,2015,9,26,2,30,12.6,1.66,0.027,0.63,0,0,0,0,0,-0.6,0,0,0,0,0.26,40.02,128.87,0.91,0.14,793,0.9,232,1.1
+6435,2015,9,26,3,30,12.1,1.65,0.029,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.26,40.75,119.4,0.91,0.14,793,0.9,226,1
+6436,2015,9,26,4,30,11.5,1.65,0.03,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.26,41.63,108.77,0.91,0.14,793,0.9,217,1
+6437,2015,9,26,5,30,11,1.65,0.03,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.26,43.07,97.56,0.91,0.14,793,0.9,209,1
+6438,2015,9,26,6,30,12.5,1.67,0.03,0.63,20,419,49,0,0,-0.7,20,419,0,49,0.259,40.17,86.03,0.91,0.14,794,0.9,202,1.2
+6439,2015,9,26,7,30,15.8,1.67,0.03,0.63,43,763,241,0,0,0.6,43,763,0,241,0.259,35.57,74.92,0.91,0.14,794,0.9,196,1.7
+6440,2015,9,26,8,30,19.8,1.68,0.031,0.63,55,887,439,0,0,-0.8,55,887,0,439,0.257,25.03,64.3,0.91,0.14,794,1,205,2.3
+6441,2015,9,26,9,30,23.4,1.67,0.032,0.63,62,950,610,0,0,-1.1,62,950,0,610,0.254,19.65,54.76,0.92,0.14,793,1,220,2.9
+6442,2015,9,26,10,30,25.5,1.67,0.033,0.63,67,979,733,0,0,-1.2,67,979,0,733,0.252,17.21,47.15,0.92,0.14,793,1.1,223,3.1
+6443,2015,9,26,11,30,26.6,1.69,0.031,0.63,68,996,801,0,0,-0.9,68,996,0,801,0.25,16.46,42.63,0.92,0.14,792,1.1,222,3.1
+6444,2015,9,26,12,30,27.3,1.72,0.031,0.63,69,994,804,7,3,-0.4,258,716,7,788,0.248,16.33,42.24,0.93,0.14,791,1.2,222,3.1
+6445,2015,9,26,13,30,27.6,1.73,0.032,0.63,67,980,747,0,0,0.1,67,980,0,747,0.247,16.68,46.1,0.93,0.14,791,1.2,223,3.2
+6446,2015,9,26,14,30,27.2,1.8,0.028,0.63,61,951,630,0,7,0.6,285,217,0,415,0.248,17.75,53.26,0.93,0.14,790,1.3,225,3.3
+6447,2015,9,26,15,30,26.4,1.82,0.029,0.63,55,894,468,0,1,1.1,55,894,0,468,0.249,19.29,62.53,0.94,0.14,790,1.3,225,3.3
+6448,2015,9,26,16,30,24.1,1.85,0.03,0.63,45,775,272,0,0,1.7,45,775,0,272,0.25,22.99,73.03,0.94,0.14,790,1.4,222,2.4
+6449,2015,9,26,17,30,20.4,1.87,0.031,0.63,26,493,76,0,0,5.6,26,493,0,76,0.251,38.11,84.11,0.94,0.14,790,1.4,216,1.4
+6450,2015,9,26,18,30,17.8,1.87,0.033,0.63,0,0,0,0,0,6,0,0,0,0,0.251,45.8,95.62,0.94,0.14,790,1.5,213,1.3
+6451,2015,9,26,19,30,16.7,1.86,0.035,0.63,0,0,0,0,0,5.4,0,0,0,0,0.251,47.35,106.91,0.94,0.14,790,1.5,216,1.3
+6452,2015,9,26,20,30,16,1.84,0.037,0.63,0,0,0,0,0,5,0,0,0,0,0.251,47.95,117.72,0.94,0.14,790,1.5,224,1.3
+6453,2015,9,26,21,30,15.5,1.82,0.038,0.63,0,0,0,0,0,4.5,0,0,0,0,0.25,47.92,127.5,0.94,0.14,790,1.5,235,1.2
+6454,2015,9,26,22,30,15.3,1.8,0.039,0.63,0,0,0,0,0,4.2,0,0,0,0,0.249,47.67,135.41,0.94,0.14,790,1.5,246,1.1
+6455,2015,9,26,23,30,15.3,1.79,0.038,0.63,0,0,0,0,0,4.2,0,0,0,0,0.249,47.55,140.19,0.94,0.14,790,1.4,255,0.9
+6456,2015,9,27,0,30,15.3,1.79,0.038,0.63,0,0,0,0,0,4.1,0,0,0,0,0.249,47.1,140.62,0.94,0.14,789,1.4,260,0.7
+6457,2015,9,27,1,30,15.2,1.79,0.038,0.63,0,0,0,0,0,3.9,0,0,0,0,0.249,46.89,136.57,0.93,0.14,789,1.4,253,0.5
+6458,2015,9,27,2,30,14.7,1.79,0.039,0.63,0,0,0,0,0,3.7,0,0,0,0,0.25,47.64,129.14,0.93,0.14,789,1.4,226,0.5
+6459,2015,9,27,3,30,13.8,1.79,0.039,0.63,0,0,0,0,0,3.4,0,0,0,0,0.251,49.43,119.63,0.93,0.14,789,1.4,200,0.6
+6460,2015,9,27,4,30,12.8,1.79,0.039,0.63,0,0,0,0,0,2.9,0,0,0,0,0.252,50.92,108.97,0.93,0.14,789,1.4,194,0.8
+6461,2015,9,27,5,30,12.2,1.79,0.039,0.63,0,0,0,0,0,2.5,0,0,0,0,0.253,51.5,97.75,0.93,0.14,789,1.4,197,0.9
+6462,2015,9,27,6,30,13.6,1.79,0.039,0.63,20,371,45,0,0,2.5,20,371,0,45,0.253,46.89,86.21,0.93,0.14,790,1.4,201,1.3
+6463,2015,9,27,7,30,16.9,1.8,0.039,0.63,45,725,231,0,0,2.6,45,725,0,231,0.252,38.39,75.13,0.93,0.14,790,1.4,205,2.1
+6464,2015,9,27,8,30,20.6,1.8,0.039,0.63,58,860,428,0,0,1.9,58,860,0,428,0.251,28.86,64.52,0.93,0.14,790,1.4,212,2.6
+6465,2015,9,27,9,30,23.5,1.8,0.039,0.63,65,923,594,0,0,1.6,65,923,0,594,0.25,23.8,55.03,0.93,0.14,790,1.5,215,2.9
+6466,2015,9,27,10,30,25.3,1.8,0.04,0.63,70,958,718,0,0,1.7,70,958,0,718,0.249,21.47,47.47,0.93,0.14,790,1.5,213,3.4
+6467,2015,9,27,11,30,26.4,1.87,0.034,0.63,70,983,788,0,0,1.9,70,983,0,788,0.248,20.33,43,0.93,0.14,789,1.4,214,4
+6468,2015,9,27,12,30,27,1.86,0.034,0.63,70,984,794,0,7,2,213,643,0,686,0.247,19.81,42.64,0.93,0.14,788,1.4,218,4.4
+6469,2015,9,27,13,30,27.2,1.84,0.034,0.63,68,971,736,0,7,2.1,218,601,0,632,0.247,19.71,46.49,0.93,0.14,788,1.4,222,4.6
+6470,2015,9,27,14,30,26.9,1.85,0.031,0.63,62,944,622,0,0,2,62,944,0,622,0.248,19.95,53.63,0.93,0.14,787,1.4,226,4.5
+6471,2015,9,27,15,30,26.2,1.86,0.032,0.63,56,884,459,0,0,1.8,56,884,0,459,0.249,20.45,62.88,0.93,0.14,787,1.4,227,4.3
+6472,2015,9,27,16,30,24,1.83,0.034,0.63,46,764,265,0,0,1.6,46,764,0,265,0.25,22.99,73.36,0.93,0.14,787,1.4,225,3.1
+6473,2015,9,27,17,30,20.3,1.79,0.037,0.63,26,464,71,0,0,4.1,26,464,0,71,0.251,34.45,84.43,0.94,0.14,788,1.4,220,1.7
+6474,2015,9,27,18,30,17.7,1.78,0.039,0.63,0,0,0,0,7,5,0,0,0,0,0.251,43.09,95.93,0.94,0.14,788,1.5,215,1.5
+6475,2015,9,27,19,30,16.8,1.77,0.041,0.63,0,0,0,0,4,4.8,0,0,0,0,0.251,44.96,107.23,0.94,0.14,788,1.5,215,1.6
+6476,2015,9,27,20,30,16.2,1.74,0.043,0.63,0,0,0,0,4,4.6,0,0,0,0,0.251,46.11,118.06,0.94,0.14,789,1.6,222,1.7
+6477,2015,9,27,21,30,15.5,1.73,0.046,0.63,0,0,0,0,3,4.4,0,0,0,0,0.251,47.44,127.87,0.95,0.14,789,1.6,232,1.6
+6478,2015,9,27,22,30,14.7,1.73,0.046,0.63,0,0,0,0,0,4.3,0,0,0,0,0.251,49.83,135.8,0.95,0.14,789,1.7,245,1.4
+6479,2015,9,27,23,30,14.3,1.69,0.05,0.63,0,0,0,0,4,4.4,0,0,0,0,0.251,51.42,140.58,0.95,0.14,789,1.7,258,1.1
+6480,2015,9,28,0,30,14.1,1.67,0.052,0.63,0,0,0,0,7,4.6,0,0,0,0,0.252,52.62,140.99,0.95,0.14,789,1.7,274,1
+6481,2015,9,28,1,30,14.1,1.65,0.053,0.63,0,0,0,0,6,4.8,0,0,0,0,0.252,53.34,136.89,0.95,0.14,789,1.8,290,0.8
+6482,2015,9,28,2,30,14.3,1.64,0.054,0.63,0,0,0,0,7,4.8,0,0,0,0,0.253,52.96,129.4,0.95,0.14,789,1.8,299,0.7
+6483,2015,9,28,3,30,14.5,1.65,0.052,0.63,0,0,0,0,4,4.8,0,0,0,0,0.255,52.06,119.85,0.95,0.14,789,1.8,286,0.6
+6484,2015,9,28,4,30,14.4,1.63,0.052,0.63,0,0,0,0,4,4.6,0,0,0,0,0.256,51.9,109.17,0.95,0.14,789,1.8,266,0.6
+6485,2015,9,28,5,30,14.2,1.62,0.053,0.63,0,0,0,0,3,4.6,0,0,0,0,0.257,52.42,97.94,0.95,0.14,789,1.8,258,0.8
+6486,2015,9,28,6,30,15.3,1.62,0.052,0.63,21,316,40,7,3,4.6,21,0,7,21,0.258,48.83,86.4,0.94,0.14,789,1.8,251,1
+6487,2015,9,28,7,30,18.1,1.64,0.051,0.63,48,686,222,0,0,5.3,48,686,0,222,0.258,42.8,75.33,0.94,0.14,790,1.8,250,1.7
+6488,2015,9,28,8,30,21.4,1.65,0.049,0.63,61,831,416,0,0,4.3,61,831,0,416,0.257,32.53,64.75,0.94,0.14,790,1.8,262,2.5
+6489,2015,9,28,9,30,23.9,1.64,0.049,0.63,70,898,581,0,4,5.1,95,0,0,95,0.256,29.59,55.29,0.95,0.14,790,1.9,273,2.9
+6490,2015,9,28,10,30,25.2,1.62,0.051,0.63,76,933,703,0,4,5.5,353,310,0,561,0.256,28.3,47.79,0.95,0.14,790,1.9,278,3.1
+6491,2015,9,28,11,30,25.7,1.56,0.059,0.63,83,940,766,0,7,5.7,228,613,0,674,0.255,27.71,43.36,0.96,0.14,789,2,283,3.2
+6492,2015,9,28,12,30,25.5,1.51,0.073,0.63,90,928,768,0,0,5.7,90,928,0,768,0.255,28.09,43.03,0.96,0.14,789,2,292,3.3
+6493,2015,9,28,13,30,25.1,1.48,0.079,0.63,90,907,710,0,7,5.7,240,528,0,601,0.254,28.85,46.88,0.96,0.14,789,2,300,3.1
+6494,2015,9,28,14,30,24.6,1.49,0.079,0.63,84,870,596,0,4,5.8,337,98,0,394,0.255,29.76,54,0.96,0.14,789,2,306,2.6
+6495,2015,9,28,15,30,23.7,1.51,0.074,0.63,73,810,437,0,7,5.7,181,410,0,366,0.255,31.37,63.23,0.96,0.14,789,1.9,316,1.8
+6496,2015,9,28,16,30,22.3,1.51,0.073,0.63,57,677,247,0,6,6.1,25,0,0,25,0.256,34.89,73.68,0.96,0.14,789,1.9,164,1
+6497,2015,9,28,17,30,20.4,1.5,0.078,0.63,29,345,61,7,6,9.7,29,1,7,29,0.256,50.26,84.74,0.96,0.14,789,1.9,30,0.7
+6498,2015,9,28,18,30,19,1.49,0.082,0.63,0,0,0,0,6,9.7,0,0,0,0,0.255,54.62,96.25,0.96,0.14,790,2,66,0.8
+6499,2015,9,28,19,30,18,1.51,0.081,0.63,0,0,0,0,4,9.9,0,0,0,0,0.255,59.17,107.56,0.96,0.14,790,2,84,0.9
+6500,2015,9,28,20,30,17.3,1.52,0.083,0.63,0,0,0,0,7,9.8,0,0,0,0,0.254,61.43,118.39,0.96,0.14,790,2,88,1
+6501,2015,9,28,21,30,16.6,1.52,0.088,0.63,0,0,0,0,4,9.7,0,0,0,0,0.254,63.77,128.23,0.96,0.14,790,2,89,0.9
+6502,2015,9,28,22,30,16,1.54,0.085,0.63,0,0,0,0,3,9.6,0,0,0,0,0.254,65.73,136.18,0.96,0.14,790,2,91,0.9
+6503,2015,9,28,23,30,15.3,1.59,0.077,0.63,0,0,0,0,1,9.3,0,0,0,0,0.253,67.52,140.98,0.95,0.14,790,2,95,0.9
+6504,2015,9,29,0,30,14.7,1.63,0.066,0.63,0,0,0,0,4,9,0,0,0,0,0.253,68.54,141.36,0.95,0.14,790,1.9,98,0.9
+6505,2015,9,29,1,30,14.1,1.66,0.058,0.63,0,0,0,0,7,8.6,0,0,0,0,0.254,69.36,137.21,0.94,0.14,790,1.8,101,0.9
+6506,2015,9,29,2,30,13.3,1.7,0.05,0.63,0,0,0,0,7,8.1,0,0,0,0,0.255,70.83,129.67,0.93,0.14,790,1.7,106,0.9
+6507,2015,9,29,3,30,12.6,1.73,0.047,0.63,0,0,0,0,4,7.5,0,0,0,0,0.256,71.17,120.08,0.93,0.14,790,1.7,113,0.8
+6508,2015,9,29,4,30,12.1,1.75,0.045,0.63,0,0,0,0,4,7.2,0,0,0,0,0.257,71.83,109.37,0.93,0.14,790,1.6,126,0.7
+6509,2015,9,29,5,30,11.7,1.76,0.045,0.63,0,0,0,0,0,7,0,0,0,0,0.258,72.83,98.13,0.93,0.14,791,1.5,149,0.6
+6510,2015,9,29,6,30,12.9,1.75,0.045,0.63,19,333,39,0,0,6.9,19,333,0,39,0.259,67.1,86.58,0.93,0.14,791,1.5,172,0.7
+6511,2015,9,29,7,30,15.9,1.73,0.045,0.63,46,703,222,0,0,7.5,46,703,0,222,0.259,57.41,75.53,0.93,0.14,792,1.5,191,1.2
+6512,2015,9,29,8,30,19.5,1.72,0.046,0.63,60,843,416,0,0,7,60,843,0,416,0.259,44.12,64.98,0.93,0.14,792,1.5,209,1.9
+6513,2015,9,29,9,30,22.4,1.71,0.047,0.63,69,911,584,0,0,6,69,911,0,584,0.259,34.47,55.56,0.93,0.14,792,1.5,225,2.5
+6514,2015,9,29,10,30,24.1,1.69,0.049,0.63,75,943,704,0,0,5.6,75,943,0,704,0.258,30.3,48.11,0.93,0.14,792,1.6,236,2.8
+6515,2015,9,29,11,30,25.2,1.71,0.048,0.63,77,961,771,0,3,5.2,324,497,0,683,0.259,27.58,43.73,0.94,0.14,791,1.6,243,3.1
+6516,2015,9,29,12,30,25.8,1.68,0.055,0.63,80,952,772,0,3,4.8,346,439,0,664,0.259,25.95,43.43,0.94,0.14,790,1.7,247,3.3
+6517,2015,9,29,13,30,25.9,1.65,0.069,0.63,85,924,712,0,7,4.5,269,424,0,556,0.26,25.22,47.28,0.95,0.14,790,1.7,250,3.3
+6518,2015,9,29,14,30,25.8,1.54,0.049,0.63,71,909,601,0,4,4.2,309,287,0,476,0.26,24.8,54.37,0.95,0.14,789,1.7,254,3.1
+6519,2015,9,29,15,30,25.2,1.54,0.056,0.63,66,836,438,0,7,3.6,137,8,0,141,0.26,24.66,63.57,0.95,0.14,789,1.7,259,2.9
+6520,2015,9,29,16,30,23.4,1.54,0.066,0.63,55,691,245,0,4,3,149,27,0,156,0.259,26.45,74.01,0.95,0.14,789,1.6,266,1.9
+6521,2015,9,29,17,30,21.1,1.55,0.072,0.63,28,350,58,7,7,7.3,34,3,7,35,0.257,40.79,85.05,0.95,0.15,789,1.6,279,1.1
+6522,2015,9,29,18,30,19.7,1.58,0.071,0.63,0,0,0,0,4,6.6,0,0,0,0,0.257,42.6,96.57,0.95,0.15,790,1.5,298,1.1
+6523,2015,9,29,19,30,18.6,1.6,0.071,0.63,0,0,0,0,4,5.9,0,0,0,0,0.257,43.46,107.88,0.94,0.15,790,1.5,312,1.3
+6524,2015,9,29,20,30,17.4,1.59,0.077,0.63,0,0,0,0,4,4.9,0,0,0,0,0.257,43.68,118.73,0.95,0.15,790,1.6,321,1.4
+6525,2015,9,29,21,30,16.5,1.58,0.089,0.63,0,0,0,0,7,4.4,0,0,0,0,0.257,44.55,128.59,0.95,0.15,791,1.6,323,1.4
+6526,2015,9,29,22,30,15.8,1.54,0.111,0.63,0,0,0,0,7,4.7,0,0,0,0,0.257,47.56,136.57,0.96,0.15,791,1.7,325,1
+6527,2015,9,29,23,30,15.5,1.5,0.13,0.63,0,0,0,0,4,5.1,0,0,0,0,0.256,50.03,141.38,0.96,0.15,792,1.8,176,0.6
+6528,2015,9,30,0,30,15.1,1.52,0.113,0.63,0,0,0,0,4,4.9,0,0,0,0,0.255,50.49,141.74,0.96,0.15,792,1.8,53,0.5
+6529,2015,9,30,1,30,14.5,1.57,0.087,0.63,0,0,0,0,7,4.4,0,0,0,0,0.253,50.79,137.53,0.95,0.15,792,1.8,95,0.9
+6530,2015,9,30,2,30,13.7,1.61,0.067,0.63,0,0,0,0,7,4.5,0,0,0,0,0.253,53.7,129.94,0.94,0.15,791,1.8,116,1.1
+6531,2015,9,30,3,30,13.1,1.63,0.056,0.63,0,0,0,0,4,4.6,0,0,0,0,0.253,56.23,120.3,0.94,0.15,791,1.7,130,1.3
+6532,2015,9,30,4,30,12.6,1.64,0.053,0.63,0,0,0,0,4,4.6,0,0,0,0,0.253,58.23,109.57,0.94,0.15,791,1.7,144,1.3
+6533,2015,9,30,5,30,12.3,1.61,0.055,0.63,0,0,0,0,4,4.8,0,0,0,0,0.253,60.14,98.32,0.95,0.15,792,1.7,160,1.3
+6534,2015,9,30,6,30,13.5,1.59,0.058,0.63,20,284,36,7,7,4.9,21,1,7,21,0.253,56.05,86.77,0.95,0.15,792,1.7,177,1.6
+6535,2015,9,30,7,30,16.3,1.57,0.059,0.63,50,667,214,0,7,5,82,9,0,84,0.253,47.05,75.74,0.95,0.15,792,1.7,193,2.1
+6536,2015,9,30,8,30,19.5,1.58,0.058,0.63,65,818,408,0,7,4.2,145,14,0,151,0.253,36.53,65.21,0.95,0.15,793,1.7,209,2.3
+6537,2015,9,30,9,30,22.1,1.59,0.055,0.63,73,895,575,0,7,2.9,252,292,0,416,0.252,28.39,55.83,0.95,0.15,793,1.7,215,2.4
+6538,2015,9,30,10,30,23.6,1.59,0.055,0.63,78,933,697,0,4,2.6,114,0,0,114,0.252,25.38,48.43,0.96,0.15,792,1.7,214,2.6
+6539,2015,9,30,11,30,24.3,1.46,0.083,0.63,95,920,756,0,7,2.5,236,7,0,241,0.252,24.17,44.1,0.97,0.15,792,1.8,222,3.2
+6540,2015,9,30,12,30,23.6,1.36,0.13,0.63,117,878,751,0,7,2.8,352,65,0,399,0.253,25.69,43.82,0.98,0.15,792,1.8,238,3.9
+6541,2015,9,30,13,30,22.2,1.32,0.165,0.63,128,826,684,0,7,3.9,336,143,0,433,0.253,30.12,47.67,0.98,0.15,792,1.9,248,4
+6542,2015,9,30,14,30,21,1.36,0.131,0.63,106,812,574,0,7,5.1,263,132,0,339,0.253,35.38,54.74,0.98,0.15,792,2,249,3.5
+6543,2015,9,30,15,30,20.3,1.4,0.114,0.63,87,751,417,0,8,5.8,201,227,0,300,0.253,38.66,63.92,0.98,0.15,792,2,251,3.1
+6544,2015,9,30,16,30,19.2,1.46,0.105,0.63,64,614,230,0,4,6.1,148,28,0,155,0.253,42.26,74.34,0.97,0.15,792,2,254,2
+6545,2015,9,30,17,30,19.6,1.14,0.031,0.62,26,413,59,7,7,-4.1,32,4,100,32,0.263,19.84,85.38,0.95,0.12,785,1.2,195,3.1
+6546,2015,9,30,18,30,17.1,1.13,0.037,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.263,24.1,96.89,0.96,0.12,785,1.2,197,1.9
+6547,2015,9,30,19,30,16.2,1.13,0.039,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,25.78,108.21,0.96,0.12,784,1.2,195,1.7
+6548,2015,9,30,20,30,15.8,1.06,0.05,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.262,26.42,119.08,0.97,0.12,784,1.3,176,2.3
+6549,2015,9,30,21,30,15.4,1.02,0.056,0.62,0,0,0,0,7,-1.9,0,0,0,0,0.262,30.37,128.95,0.96,0.12,785,1.4,156,3.5
+6550,2015,9,30,22,30,14,1.03,0.053,0.62,0,0,0,0,3,1.5,0,0,0,0,0.263,42.67,136.96,0.96,0.12,785,1.5,151,4.2
+6551,2015,9,30,23,30,12.5,1.04,0.052,0.62,0,0,0,0,5,3.9,0,0,0,0,0.265,55.75,141.79,0.96,0.12,786,1.5,152,3.8
+6552,2023,10,1,0,30,11.5,1.02,0.052,0.62,0,0,0,0,5,4.6,0,0,0,0,0.266,62.72,142.13,0.96,0.12,786,1.5,159,3
+6553,2023,10,1,1,30,11.1,0.95,0.056,0.62,0,0,0,0,0,4.5,0,0,0,0,0.268,63.61,137.87,0.96,0.12,786,1.5,169,2.4
+6554,2023,10,1,2,30,11.2,0.86,0.058,0.62,0,0,0,0,3,3.8,0,0,0,0,0.269,60.4,130.22,0.96,0.12,786,1.5,179,2.4
+6555,2023,10,1,3,30,11.4,0.8,0.059,0.62,0,0,0,0,5,2.8,0,0,0,0,0.27,55.63,120.55,0.96,0.12,786,1.5,186,2.5
+6556,2023,10,1,4,30,11.3,0.79,0.057,0.62,0,0,0,0,5,1.7,0,0,0,0,0.272,51.52,109.79,0.95,0.12,786,1.4,190,2.5
+6557,2023,10,1,5,30,10.9,0.81,0.05,0.62,0,0,0,0,4,0.9,0,0,0,0,0.274,50.19,98.53,0.95,0.12,786,1.4,190,2.7
+6558,2023,10,1,6,30,12.1,0.81,0.045,0.62,21,257,35,7,8,1,15,0,100,15,0.275,46.49,86.97,0.94,0.12,787,1.3,194,3.7
+6559,2023,10,1,7,30,14.6,0.79,0.045,0.62,48,684,214,5,8,1.3,67,13,71,70,0.276,40.53,75.96,0.94,0.12,787,1.3,200,5.4
+6560,2023,10,1,8,30,16.5,0.77,0.048,0.62,63,832,408,3,5,1.7,86,1,43,86,0.277,36.85,65.47,0.94,0.12,787,1.4,203,6.7
+6561,2023,10,1,9,30,17.6,0.78,0.05,0.62,72,902,575,2,5,2,268,70,25,307,0.277,35.08,56.13,0.95,0.12,788,1.4,205,7.5
+6562,2023,10,1,10,30,18.4,0.76,0.053,0.62,78,938,696,0,5,2.2,242,63,4,284,0.278,33.92,48.78,0.95,0.12,788,1.4,207,7.9
+6563,2023,10,1,11,30,18.9,0.73,0.052,0.62,81,954,761,0,5,2.2,236,183,0,367,0.279,32.88,44.51,0.95,0.12,788,1.4,208,8.1
+6564,2023,10,1,12,30,19.1,0.76,0.054,0.62,82,954,765,0,5,2,99,0,0,99,0.28,31.96,44.25,0.96,0.12,788,1.5,210,7.9
+6565,2023,10,1,13,30,19.2,0.76,0.051,0.62,78,942,707,0,5,1.6,194,15,0,204,0.28,30.93,48.08,0.96,0.12,788,1.4,213,7.3
+6566,2023,10,1,14,30,18.9,0.78,0.05,0.62,74,905,591,0,5,1.4,85,96,0,140,0.279,31.11,55.13,0.96,0.12,788,1.4,218,6.6
+6567,2023,10,1,15,30,18.2,0.8,0.055,0.62,65,833,427,0,5,1.4,211,235,0,313,0.279,32.46,64.28,0.96,0.12,788,1.4,222,5.7
+6568,2023,10,1,16,30,16.9,0.79,0.053,0.62,51,695,235,0,3,1.3,99,424,0,211,0.278,34.97,74.68,0.96,0.12,788,1.4,228,4.2
+6569,2023,10,1,17,30,14.3,0.8,0.05,0.62,27,328,52,5,3,1.3,31,107,68,39,0.278,41.17,85.68,0.96,0.12,789,1.4,243,2.2
+6570,2023,10,1,18,30,12,0.82,0.051,0.62,0,0,0,0,5,1.3,0,0,0,0,0.278,48.07,97.21,0.96,0.12,789,1.4,261,1
+6571,2023,10,1,19,30,11.6,0.83,0.053,0.62,0,0,0,0,5,1.4,0,0,0,0,0.277,49.67,108.53,0.96,0.12,790,1.5,271,0.9
+6572,2023,10,1,20,30,11.8,0.82,0.052,0.62,0,0,0,0,0,1.6,0,0,0,0,0.277,49.63,119.41,0.96,0.12,790,1.5,274,0.7
+6573,2023,10,1,21,30,11.8,0.8,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.276,50.32,129.31,0.96,0.12,790,1.5,250,0.3
+6574,2023,10,1,22,30,11.5,0.78,0.054,0.62,0,0,0,0,4,2.1,0,0,0,0,0.276,52.53,137.35,0.96,0.12,790,1.6,165,0.3
+6575,2023,10,1,23,30,10.9,0.76,0.052,0.62,0,0,0,0,5,2.6,0,0,0,0,0.276,56.71,142.18,0.96,0.12,790,1.6,107,0.6
+6576,2023,10,2,0,30,10.1,0.77,0.053,0.62,0,0,0,0,4,3.4,0,0,0,0,0.276,63.17,142.5,0.96,0.12,790,1.7,116,1
+6577,2023,10,2,1,30,9.6,0.78,0.053,0.62,0,0,0,0,5,4.3,0,0,0,0,0.276,69.45,138.19,0.96,0.12,789,1.7,124,1.4
+6578,2023,10,2,2,30,9.3,0.81,0.051,0.62,0,0,0,0,8,4.9,0,0,0,0,0.276,73.97,130.48,0.95,0.12,789,1.7,125,1.7
+6579,2023,10,2,3,30,8.8,0.84,0.047,0.62,0,0,0,0,5,5.3,0,0,0,0,0.276,78.7,120.77,0.95,0.12,789,1.7,124,1.9
+6580,2023,10,2,4,30,8.5,0.86,0.044,0.62,0,0,0,0,4,5.6,0,0,0,0,0.277,81.92,109.99,0.95,0.12,789,1.7,121,1.8
+6581,2023,10,2,5,30,8.4,0.89,0.044,0.62,0,0,0,0,5,5.7,0,0,0,0,0.277,83.07,98.72,0.95,0.12,788,1.7,123,1.7
+6582,2023,10,2,6,30,9.7,0.92,0.048,0.62,22,230,33,7,5,5.8,6,0,100,6,0.277,76.55,87.16,0.96,0.12,788,1.7,132,2.1
+6583,2023,10,2,7,30,11.5,0.95,0.057,0.62,52,636,204,0,7,6.2,5,0,0,5,0.277,70.02,76.17,0.97,0.12,787,1.8,156,3.2
+6584,2023,10,2,8,30,12.3,0.98,0.077,0.62,73,774,392,0,6,6.6,43,1,0,43,0.276,68.21,65.7,0.97,0.12,788,1.8,189,4.7
+6585,2023,10,2,9,30,12.2,0.99,0.089,0.62,86,852,557,0,6,6.7,44,0,0,44,0.276,68.95,56.41,0.97,0.12,788,1.7,210,6
+6586,2023,10,2,10,30,12,0.98,0.082,0.62,85,917,685,0,6,6.3,146,22,0,160,0.277,68.24,49.11,0.96,0.12,789,1.6,219,6.7
+6587,2023,10,2,11,30,12.6,0.95,0.048,0.62,73,969,760,0,6,5.3,224,41,0,253,0.279,61.12,44.88,0.95,0.12,789,1.4,217,7.3
+6588,2023,10,2,12,30,13.6,0.9,0.032,0.62,66,992,772,0,6,3.3,280,91,0,345,0.281,49.84,44.65,0.92,0.12,789,1.1,215,7.9
+6589,2023,10,2,13,30,14.4,0.77,0.023,0.62,62,992,720,0,9,0.7,144,2,0,145,0.284,39.23,48.47,0.92,0.12,789,0.9,216,8
+6590,2023,10,2,14,30,14.6,0.8,0.025,0.62,58,965,605,0,6,-1.6,181,10,0,187,0.287,32.81,55.49,0.92,0.12,788,0.8,220,7.3
+6591,2023,10,2,15,30,14.1,0.73,0.024,0.62,53,906,441,0,6,-3,198,59,0,223,0.291,30.54,64.62,0.92,0.12,788,0.7,225,6.4
+6592,2023,10,2,16,30,12.7,0.69,0.024,0.62,42,778,243,0,6,-3.8,87,117,0,117,0.296,31.53,75,0.91,0.12,788,0.7,228,5.1
+6593,2023,10,2,17,30,10.2,0.68,0.023,0.62,23,415,52,7,7,-3.8,30,6,100,30,0.3,37.21,85.99,0.91,0.12,788,0.7,232,3.1
+6594,2023,10,2,18,30,8,0.68,0.024,0.62,0,0,0,0,7,-3,0,0,0,0,0.305,45.75,97.52,0.91,0.12,788,0.7,237,2
+6595,2023,10,2,19,30,6.9,0.7,0.025,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.307,50.19,108.84,0.91,0.12,788,0.8,244,1.9
+6596,2023,10,2,20,30,6.1,0.73,0.026,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.308,53.94,119.74,0.92,0.12,788,0.8,250,1.9
+6597,2023,10,2,21,30,5.3,0.77,0.029,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.308,58.56,129.66,0.92,0.12,788,0.8,252,1.8
+6598,2023,10,2,22,30,4.5,0.81,0.031,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.309,64.23,137.73,0.93,0.12,788,0.9,251,1.5
+6599,2023,10,2,23,30,3.9,0.82,0.033,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.308,69.55,142.58,0.93,0.12,788,0.9,248,1.2
+6600,2023,10,3,0,30,3.5,0.83,0.034,0.62,0,0,0,0,4,-0.7,0,0,0,0,0.308,73.74,142.87,0.93,0.12,789,0.9,242,1.1
+6601,2023,10,3,1,30,3.1,0.84,0.035,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.308,77.46,138.5,0.93,0.12,789,1,236,1
+6602,2023,10,3,2,30,2.7,0.86,0.036,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.308,80.97,130.74,0.94,0.12,788,1,232,1
+6603,2023,10,3,3,30,2.7,0.89,0.04,0.62,0,0,0,0,0,0,0,0,0,0,0.308,82.32,120.99,0.94,0.12,789,1,229,1.1
+6604,2023,10,3,4,30,2.8,0.9,0.043,0.62,0,0,0,0,0,0.2,0,0,0,0,0.308,82.86,110.19,0.94,0.12,789,1,225,1.1
+6605,2023,10,3,5,30,2.6,0.91,0.043,0.62,0,0,0,0,0,0.3,0,0,0,0,0.308,85.07,98.91,0.94,0.12,789,1,221,1.2
+6606,2023,10,3,6,30,3.7,0.92,0.04,0.62,20,242,31,3,0,0.5,18,90,39,22,0.308,79.59,87.34,0.94,0.12,789,1,219,1.7
+6607,2023,10,3,7,30,6.4,0.94,0.037,0.62,44,709,211,0,0,0.6,68,547,0,197,0.308,66.25,76.38,0.94,0.12,790,1,228,2.5
+6608,2023,10,3,8,30,9,0.94,0.034,0.62,56,864,408,0,0,-0.5,56,864,0,408,0.305,51.24,65.94,0.93,0.12,790,1,240,3
+6609,2023,10,3,9,30,10.6,0.94,0.032,0.62,61,939,577,0,0,-1.5,71,912,0,572,0.303,42.9,56.68,0.93,0.12,790,1,242,3.4
+6610,2023,10,3,10,30,11.9,0.95,0.029,0.62,66,974,699,0,0,-2,66,974,0,699,0.301,37.99,49.43,0.93,0.12,790,1,241,3.5
+6611,2023,10,3,11,30,12.9,1.04,0.035,0.62,70,987,765,0,0,-2.3,254,554,0,644,0.298,34.73,45.25,0.94,0.12,790,1,239,3.6
+6612,2023,10,3,12,30,13.6,1.05,0.034,0.62,70,987,767,0,5,-2.4,263,387,0,536,0.294,33.07,45.04,0.94,0.12,790,1.1,239,3.6
+6613,2023,10,3,13,30,13.8,1.07,0.036,0.62,72,964,706,0,4,-2.3,81,0,0,81,0.289,32.85,48.86,0.95,0.12,790,1.1,243,3.5
+6614,2023,10,3,14,30,13.3,1.11,0.049,0.62,73,913,585,0,5,-2.1,145,5,0,148,0.286,34.25,55.86,0.96,0.12,790,1.1,257,3.3
+6615,2023,10,3,15,30,12.1,1.13,0.06,0.62,68,827,418,0,7,-1.7,24,0,0,24,0.284,38.24,64.96,0.96,0.12,790,1.2,278,3.2
+6616,2023,10,3,16,30,10.6,1.14,0.069,0.62,54,670,224,0,8,-0.7,34,4,0,35,0.284,45.39,75.32,0.96,0.12,790,1.2,301,2.7
+6617,2023,10,3,17,30,9,1.14,0.063,0.62,25,293,44,7,8,0.4,23,2,100,23,0.285,54.97,86.29,0.96,0.12,791,1.2,326,1.7
+6618,2023,10,3,18,30,7.8,1.14,0.054,0.62,0,0,0,0,4,1.2,0,0,0,0,0.286,62.88,97.83,0.96,0.12,791,1.2,174,0.8
+6619,2023,10,3,19,30,7.1,1.14,0.05,0.62,0,0,0,0,5,1.4,0,0,0,0,0.287,67.3,109.16,0.95,0.12,792,1.2,19,0.7
+6620,2023,10,3,20,30,6.5,1.14,0.046,0.62,0,0,0,0,5,1.5,0,0,0,0,0.286,70.17,120.07,0.95,0.12,792,1.2,36,0.6
+6621,2023,10,3,21,30,5.9,1.14,0.042,0.62,0,0,0,0,5,1.4,0,0,0,0,0.285,72.8,130.02,0.95,0.12,792,1.2,30,0.5
+6622,2023,10,3,22,30,5.2,1.14,0.04,0.62,0,0,0,0,4,1.4,0,0,0,0,0.285,76.54,138.11,0.95,0.12,792,1.2,186,0.4
+6623,2023,10,3,23,30,4.6,1.14,0.038,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,80.13,142.97,0.95,0.12,792,1.2,344,0.4
+6624,2023,10,4,0,30,4.2,1.14,0.037,0.62,0,0,0,0,4,1.5,0,0,0,0,0.284,82.69,143.24,0.95,0.12,792,1.2,333,0.4
+6625,2023,10,4,1,30,4,1.13,0.037,0.62,0,0,0,0,0,1.6,0,0,0,0,0.284,84.48,138.82,0.95,0.12,793,1.2,331,0.4
+6626,2023,10,4,2,30,4,1.13,0.037,0.62,0,0,0,0,4,1.8,0,0,0,0,0.283,85.27,131.01,0.95,0.12,793,1.2,334,0.4
+6627,2023,10,4,3,30,3.8,1.15,0.035,0.62,0,0,0,0,0,1.8,0,0,0,0,0.282,86.95,121.22,0.95,0.12,793,1.3,338,0.4
+6628,2023,10,4,4,30,3.7,1.17,0.032,0.62,0,0,0,0,0,1.9,0,0,0,0,0.283,87.85,110.39,0.95,0.12,793,1.3,341,0.4
+6629,2023,10,4,5,30,3.7,1.18,0.03,0.62,0,0,0,0,0,2,0,0,0,0,0.283,88.37,99.1,0.95,0.12,793,1.3,339,0.5
+6630,2023,10,4,6,30,4.6,1.19,0.029,0.62,19,258,30,0,0,2.1,19,258,0,30,0.284,83.72,87.52,0.95,0.12,794,1.2,336,0.9
+6631,2023,10,4,7,30,6.8,1.19,0.028,0.62,41,722,209,0,0,2.4,66,548,0,193,0.284,73.67,76.58,0.95,0.12,794,1.2,335,1.5
+6632,2023,10,4,8,30,9.2,1.2,0.026,0.62,52,874,405,0,0,2.7,52,874,0,405,0.283,64.01,66.17,0.95,0.12,794,1.1,323,1.7
+6633,2023,10,4,9,30,11.3,1.19,0.024,0.62,57,948,574,0,0,2.3,88,818,0,534,0.279,53.77,56.96,0.94,0.12,794,1.1,301,1.8
+6634,2023,10,4,10,30,13.1,1.2,0.022,0.62,58,988,696,0,4,1.4,157,7,0,162,0.274,44.86,49.75,0.94,0.12,794,1.1,289,2.2
+6635,2023,10,4,11,30,14.5,1.21,0.016,0.62,55,1008,760,0,4,0.5,360,104,0,433,0.27,38.49,45.62,0.92,0.12,794,1.1,286,2.4
+6636,2023,10,4,12,30,15.7,1.21,0.014,0.62,53,1011,762,0,4,-0.3,307,30,0,328,0.266,33.51,45.43,0.91,0.12,793,1.1,287,2.4
+6637,2023,10,4,13,30,16.5,1.23,0.012,0.62,53,994,702,0,4,-1.1,357,99,0,422,0.265,30.05,49.25,0.92,0.12,793,1.1,295,2.5
+6638,2023,10,4,14,30,16.8,1.25,0.021,0.62,56,954,586,0,5,-1.8,302,114,0,365,0.265,28.03,56.23,0.93,0.12,793,1.1,305,2.6
+6639,2023,10,4,15,30,16.4,1.26,0.021,0.62,49,891,421,0,0,-2.3,83,760,0,400,0.265,27.79,65.31,0.92,0.12,793,1.1,314,2.7
+6640,2023,10,4,16,30,14.8,1.28,0.021,0.62,39,757,227,0,3,-2.3,94,405,0,194,0.265,30.67,75.65,0.93,0.12,793,1.2,323,2.3
+6641,2023,10,4,17,30,12,1.3,0.021,0.62,21,355,42,7,3,-1,24,1,100,24,0.266,40.71,86.59,0.93,0.12,794,1.2,335,1.4
+6642,2023,10,4,18,30,9.8,1.3,0.022,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.266,47.97,98.13,0.93,0.12,795,1.2,346,1.3
+6643,2023,10,4,19,30,8.6,1.29,0.022,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.266,52.84,109.47,0.92,0.12,796,1.2,349,1.6
+6644,2023,10,4,20,30,7.4,1.27,0.021,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.266,58.71,120.4,0.92,0.12,796,1.2,349,1.7
+6645,2023,10,4,21,30,6.3,1.24,0.021,0.62,0,0,0,0,0,0.2,0,0,0,0,0.267,65.13,130.37,0.92,0.12,797,1.2,349,1.6
+6646,2023,10,4,22,30,5.3,1.22,0.02,0.62,0,0,0,0,4,0.6,0,0,0,0,0.268,71.61,138.49,0.92,0.12,797,1.1,351,1.4
+6647,2023,10,4,23,30,4.5,1.22,0.02,0.62,0,0,0,0,3,0.9,0,0,0,0,0.268,77.28,143.37,0.91,0.12,797,1.1,355,1.2
+6648,2023,10,5,0,30,3.8,1.23,0.019,0.62,0,0,0,0,4,1,0,0,0,0,0.269,82.13,143.61,0.91,0.12,797,1,182,1
+6649,2023,10,5,1,30,3.3,1.22,0.017,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,85.56,139.13,0.91,0.12,797,1,7,0.9
+6650,2023,10,5,2,30,2.9,1.2,0.016,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,88.25,131.27,0.91,0.12,797,1,12,0.8
+6651,2023,10,5,3,30,2.6,1.19,0.015,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,90.21,121.44,0.92,0.12,797,0.9,17,0.8
+6652,2023,10,5,4,30,2.3,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,92.22,110.59,0.92,0.12,798,0.9,21,0.8
+6653,2023,10,5,5,30,2.1,1.19,0.014,0.62,0,0,0,0,0,1.2,0,0,0,0,0.267,93.53,99.29,0.92,0.12,798,1,23,0.8
+6654,2023,10,5,6,30,3.7,1.2,0.014,0.62,17,294,29,0,0,1.2,17,294,0,29,0.267,83.56,87.71,0.92,0.12,798,1,23,1.1
+6655,2023,10,5,7,30,7.2,1.21,0.014,0.62,35,756,208,0,0,1.2,35,756,0,208,0.267,65.81,76.79,0.92,0.12,799,1,27,1.8
+6656,2023,10,5,8,30,10.5,1.22,0.014,0.62,44,895,402,0,0,1,44,895,0,402,0.266,51.86,66.41,0.92,0.12,799,1,34,2
+6657,2023,10,5,9,30,12.9,1.23,0.014,0.62,48,961,568,0,0,0.5,48,961,0,568,0.264,42.69,57.23,0.92,0.12,799,1,32,1.6
+6658,2023,10,5,10,30,14.7,1.24,0.014,0.62,53,993,690,0,0,0.1,53,993,0,690,0.263,36.84,50.08,0.92,0.12,799,1,17,1.3
+6659,2023,10,5,11,30,16.2,1.19,0.017,0.62,57,1006,756,0,0,-0.3,57,1006,0,756,0.261,32.64,45.98,0.92,0.12,798,1,177,1.2
+6660,2023,10,5,12,30,17.4,1.2,0.016,0.62,56,1008,758,0,0,-0.5,56,1008,0,758,0.26,29.67,45.82,0.92,0.12,798,1,344,1.4
+6661,2023,10,5,13,30,18.2,1.22,0.015,0.62,53,996,698,0,0,-0.7,53,996,0,698,0.259,27.78,49.63,0.92,0.12,797,1,339,1.4
+6662,2023,10,5,14,30,18.5,1.25,0.013,0.62,48,966,580,0,0,-0.9,48,966,0,580,0.259,26.86,56.59,0.91,0.12,797,1,335,1.3
+6663,2023,10,5,15,30,18.2,1.24,0.013,0.62,43,905,416,0,0,-1.2,43,905,0,416,0.259,26.85,65.65,0.91,0.12,796,1,332,1.2
+6664,2023,10,5,16,30,16.7,1.22,0.013,0.62,35,777,223,0,0,-1.4,35,777,0,223,0.26,29.13,75.97,0.9,0.12,796,1,168,0.8
+6665,2023,10,5,17,30,14.2,1.21,0.013,0.62,19,373,39,0,0,0.6,19,373,0,39,0.261,39.46,86.89,0.9,0.12,797,1,33,0.6
+6666,2023,10,5,18,30,12,1.2,0.013,0.62,0,0,0,0,0,-0.3,0,0,0,0,0.261,42.6,98.44,0.9,0.12,797,0.9,72,0.8
+6667,2023,10,5,19,30,10.7,1.2,0.013,0.62,0,0,0,0,0,-0.6,0,0,0,0,0.262,45.64,109.78,0.9,0.12,798,1,83,0.9
+6668,2023,10,5,20,30,9.7,1.19,0.013,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.262,47.85,120.72,0.9,0.12,798,1,81,0.9
+6669,2023,10,5,21,30,8.7,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,50.65,130.72,0.91,0.12,798,1,74,0.9
+6670,2023,10,5,22,30,7.9,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,53.52,138.86,0.91,0.12,798,1.1,66,0.8
+6671,2023,10,5,23,30,7.2,1.19,0.015,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.263,56.6,143.76,0.91,0.12,798,1.1,51,0.8
+6672,2023,10,6,0,30,6.4,1.2,0.015,0.62,0,0,0,0,0,-0.7,0,0,0,0,0.264,60.56,143.98,0.91,0.12,798,1.1,35,0.9
+6673,2023,10,6,1,30,5.5,1.22,0.016,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.264,65.49,139.45,0.91,0.12,798,1.1,27,1.1
+6674,2023,10,6,2,30,4.8,1.23,0.016,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.265,69.85,131.53,0.91,0.12,798,1.1,22,1.4
+6675,2023,10,6,3,30,4.2,1.23,0.016,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.265,73.75,121.66,0.91,0.12,799,1.1,21,1.9
+6676,2023,10,6,4,30,3.6,1.21,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.266,77.32,110.79,0.92,0.12,799,1,24,2.3
+6677,2023,10,6,5,30,3.1,1.19,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.267,80.28,99.48,0.92,0.12,799,1,27,2.5
+6678,2023,10,6,6,30,4.3,1.16,0.016,0.62,17,278,27,0,0,0.1,17,278,0,27,0.269,73.97,87.89,0.92,0.12,799,1,29,3.2
+6679,2023,10,6,7,30,7.4,1.14,0.016,0.62,37,749,205,0,0,0.1,37,749,0,205,0.272,60.04,77,0.92,0.12,799,1,38,4.1
+6680,2023,10,6,8,30,10.9,1.13,0.016,0.62,46,894,400,0,0,0.3,46,894,0,400,0.274,47.98,66.65,0.92,0.12,799,0.9,50,4.2
+6681,2023,10,6,9,30,13.7,1.14,0.016,0.62,50,962,567,0,0,0.5,50,962,0,567,0.276,40.34,57.51,0.92,0.12,799,0.9,51,3.9
+6682,2023,10,6,10,30,15.6,1.14,0.015,0.62,52,998,688,0,0,0.4,52,998,0,688,0.278,35.5,50.4,0.92,0.12,799,0.9,48,3.8
+6683,2023,10,6,11,30,17,1.23,0.012,0.62,50,1017,752,0,0,0.1,50,1017,0,752,0.278,31.71,46.35,0.91,0.12,799,0.9,46,3.8
+6684,2023,10,6,12,30,18.1,1.24,0.011,0.62,49,1020,755,0,0,-0.5,49,1020,0,755,0.278,28.34,46.21,0.9,0.12,798,0.9,44,3.8
+6685,2023,10,6,13,30,18.7,1.26,0.011,0.62,48,1007,695,0,0,-1.2,48,1007,0,695,0.278,26.01,50.01,0.9,0.12,798,0.8,42,3.8
+6686,2023,10,6,14,30,18.7,1.2,0.012,0.62,46,976,578,0,0,-1.8,46,976,0,578,0.277,24.82,56.95,0.9,0.12,797,0.8,38,3.8
+6687,2023,10,6,15,30,17.9,1.21,0.011,0.62,41,914,413,0,0,-2.4,41,914,0,413,0.276,24.97,65.98,0.9,0.12,797,0.8,34,3.9
+6688,2023,10,6,16,30,15.8,1.21,0.011,0.62,33,785,219,0,0,-2.9,33,785,0,219,0.276,27.48,76.28,0.9,0.12,797,0.8,31,3.3
+6689,2023,10,6,17,30,12.3,1.22,0.011,0.62,19,375,37,0,0,-2.8,19,375,0,37,0.276,34.91,87.19,0.9,0.12,797,0.7,29,2.4
+6690,2023,10,6,18,30,9.6,1.23,0.011,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.276,41.7,98.75,0.9,0.12,798,0.7,30,2.3
+6691,2023,10,6,19,30,8.2,1.24,0.012,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.276,44.19,110.09,0.9,0.12,798,0.7,34,2.5
+6692,2023,10,6,20,30,6.9,1.25,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,47.08,121.05,0.9,0.12,798,0.7,39,2.3
+6693,2023,10,6,21,30,5.7,1.25,0.011,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.276,50,131.06,0.89,0.12,798,0.6,43,2.1
+6694,2023,10,6,22,30,4.7,1.25,0.011,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.276,52.45,139.24,0.89,0.12,798,0.6,45,1.8
+6695,2023,10,6,23,30,3.8,1.24,0.011,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.275,54.85,144.15,0.89,0.12,798,0.6,45,1.7
+6696,2023,10,7,0,30,3.1,1.24,0.011,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.275,57.04,144.34,0.89,0.12,798,0.6,44,1.5
+6697,2023,10,7,1,30,2.6,1.25,0.011,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.274,58.83,139.76,0.89,0.12,798,0.6,43,1.4
+6698,2023,10,7,2,30,2.2,1.25,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,60.28,131.79,0.89,0.12,797,0.6,41,1.4
+6699,2023,10,7,3,30,2,1.26,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,61.02,121.88,0.89,0.12,797,0.7,40,1.3
+6700,2023,10,7,4,30,1.9,1.28,0.012,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.272,61.2,110.99,0.89,0.12,797,0.7,39,1.3
+6701,2023,10,7,5,30,1.9,1.29,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.272,60.9,99.67,0.89,0.12,797,0.7,39,1.2
+6702,2023,10,7,6,30,3.8,1.3,0.013,0.62,16,293,26,0,0,-4.9,16,293,0,26,0.273,52.97,88.08,0.89,0.12,797,0.7,37,1.6
+6703,2023,10,7,7,30,7.4,1.31,0.013,0.62,34,767,204,0,0,-4.6,34,767,0,204,0.273,42.34,77.22,0.89,0.12,797,0.7,34,2
+6704,2023,10,7,8,30,11.3,1.32,0.013,0.62,42,911,400,0,0,-4.7,42,911,0,400,0.273,32.3,66.89,0.89,0.12,797,0.7,43,1.6
+6705,2023,10,7,9,30,15.2,1.33,0.014,0.62,48,977,569,0,0,-4.6,48,977,14,569,0.272,25.17,57.79,0.9,0.12,797,0.7,122,0.9
+6706,2023,10,7,10,30,18,1.34,0.014,0.62,51,1012,692,0,0,-4.8,51,1012,0,692,0.271,20.87,50.73,0.9,0.12,797,0.7,207,0.9
+6707,2023,10,7,11,30,19.7,1.38,0.013,0.62,52,1028,757,0,0,-4.9,52,1028,0,757,0.27,18.54,46.72,0.9,0.12,797,0.7,228,1.4
+6708,2023,10,7,12,30,20.7,1.39,0.013,0.62,52,1031,760,0,0,-5.3,52,1031,0,760,0.269,16.99,46.6,0.89,0.12,796,0.6,235,1.5
+6709,2023,10,7,13,30,21.1,1.4,0.013,0.62,52,1017,700,0,0,-5.7,52,1017,0,700,0.267,15.99,50.4,0.9,0.12,796,0.6,242,1.4
+6710,2023,10,7,14,30,21,1.25,0.016,0.62,51,982,581,0,0,-6.3,51,982,0,581,0.266,15.41,57.31,0.9,0.12,795,0.6,253,1.2
+6711,2023,10,7,15,30,20.3,1.26,0.016,0.62,45,918,414,0,0,-6.9,45,918,0,414,0.265,15.32,66.32,0.9,0.12,795,0.6,264,0.9
+6712,2023,10,7,16,30,18.4,1.26,0.016,0.62,36,786,218,0,0,-7.3,36,786,0,218,0.264,16.74,76.6,0.9,0.12,795,0.6,272,0.6
+6713,2023,10,7,17,30,16,1.26,0.016,0.62,19,322,33,0,0,-4,19,322,0,33,0.263,25.06,87.48,0.9,0.12,795,0.5,144,0.2
+6714,2023,10,7,18,30,14.4,1.26,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.262,25.3,99.05,0.9,0.12,795,0.5,24,0.3
+6715,2023,10,7,19,30,13.2,1.25,0.016,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.261,25.3,110.4,0.9,0.12,795,0.5,39,0.6
+6716,2023,10,7,20,30,11.7,1.26,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,27.67,121.37,0.9,0.12,795,0.5,47,0.8
+6717,2023,10,7,21,30,10.3,1.26,0.017,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,30.23,131.41,0.9,0.12,795,0.5,58,1
+6718,2023,10,7,22,30,9.1,1.27,0.018,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,32.78,139.61,0.9,0.12,795,0.5,68,1.1
+6719,2023,10,7,23,30,8.3,1.29,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,34.74,144.54,0.9,0.12,796,0.6,79,1.1
+6720,2023,10,8,0,30,7.8,1.31,0.02,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.258,36.18,144.71,0.9,0.12,796,0.6,89,1
+6721,2023,10,8,1,30,7.4,1.35,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.259,37.42,140.07,0.9,0.12,796,0.6,98,0.8
+6722,2023,10,8,2,30,7.2,1.39,0.023,0.62,0,0,0,0,0,-6,0,0,0,0,0.26,38.41,132.04,0.9,0.12,795,0.6,100,0.6
+6723,2023,10,8,3,30,6.9,1.45,0.026,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.262,39.62,122.1,0.89,0.12,795,0.6,89,0.5
+6724,2023,10,8,4,30,6.6,1.5,0.028,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.263,40.87,111.19,0.89,0.12,795,0.6,72,0.4
+6725,2023,10,8,5,30,6.3,1.54,0.029,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.264,42.15,99.87,0.89,0.12,795,0.6,61,0.4
+6726,2023,10,8,6,30,7,1.57,0.03,0.62,15,219,22,0,0,-5.5,15,219,0,22,0.265,40.59,88.27,0.89,0.12,795,0.6,54,0.4
+6727,2023,10,8,7,30,9.6,1.59,0.03,0.62,40,737,200,0,0,-4.2,40,737,0,200,0.266,37.47,77.43,0.89,0.12,795,0.6,65,0.4
+6728,2023,10,8,8,30,13.6,1.59,0.029,0.62,52,891,398,0,0,-4.9,52,891,0,398,0.266,27.43,67.13,0.89,0.12,795,0.6,152,0.7
+6729,2023,10,8,9,30,17.5,1.58,0.028,0.62,57,964,567,0,0,-5.9,57,964,29,567,0.266,19.72,58.07,0.89,0.12,795,0.6,229,1.3
+6730,2023,10,8,10,30,20,1.57,0.027,0.62,60,1002,690,0,0,-6.3,60,1002,0,690,0.266,16.42,51.05,0.89,0.12,795,0.6,235,1.9
+6731,2023,10,8,11,30,21.3,1.68,0.023,0.62,60,1021,755,0,0,-6.3,60,1021,0,755,0.266,15.15,47.09,0.89,0.12,794,0.6,236,2.2
+6732,2023,10,8,12,30,22.2,1.65,0.022,0.62,59,1023,757,0,0,-6.5,59,1023,0,757,0.266,14.06,46.99,0.89,0.12,794,0.6,239,2.3
+6733,2023,10,8,13,30,22.5,1.62,0.02,0.62,56,1010,695,0,0,-7,56,1010,0,695,0.265,13.32,50.78,0.89,0.12,793,0.6,240,2.3
+6734,2023,10,8,14,30,22.3,1.57,0.019,0.62,52,981,577,0,0,-7.5,52,981,0,577,0.264,12.97,57.67,0.9,0.12,793,0.6,241,2.2
+6735,2023,10,8,15,30,21.4,1.56,0.018,0.62,46,920,411,0,0,-8,46,920,0,411,0.264,13.18,66.65,0.9,0.12,792,0.5,240,1.9
+6736,2023,10,8,16,30,18.9,1.56,0.017,0.62,36,785,214,0,0,-8.1,36,785,0,214,0.263,15.28,76.92,0.9,0.12,792,0.5,232,1.2
+6737,2023,10,8,17,30,16,1.56,0.016,0.62,18,312,30,0,0,-4,18,312,0,30,0.263,25,87.77,0.9,0.12,792,0.5,219,0.7
+6738,2023,10,8,18,30,14.7,1.58,0.016,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.263,23.33,99.35,0.9,0.12,792,0.5,215,0.6
+6739,2023,10,8,19,30,14.1,1.59,0.016,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.263,23.3,110.7,0.9,0.12,792,0.5,232,0.5
+6740,2023,10,8,20,30,13.3,1.61,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.263,24.03,121.68,0.9,0.12,792,0.6,269,0.4
+6741,2023,10,8,21,30,12.3,1.63,0.017,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,25.02,131.75,0.9,0.12,792,0.6,305,0.4
+6742,2023,10,8,22,30,11.3,1.65,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,26.52,139.98,0.9,0.12,792,0.6,323,0.5
+6743,2023,10,8,23,30,10.4,1.66,0.018,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,28.13,144.92,0.89,0.12,792,0.6,336,0.5
+6744,2023,10,9,0,30,9.5,1.67,0.019,0.62,0,0,0,0,0,-7.3,0,0,0,0,0.264,29.95,145.07,0.89,0.12,791,0.6,348,0.5
+6745,2023,10,9,1,30,8.6,1.68,0.019,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,32.08,140.38,0.89,0.12,791,0.6,177,0.5
+6746,2023,10,9,2,30,7.7,1.69,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.264,34.52,132.3,0.89,0.12,791,0.6,5,0.6
+6747,2023,10,9,3,30,6.8,1.7,0.021,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.265,37.51,122.32,0.89,0.12,791,0.6,12,0.6
+6748,2023,10,9,4,30,6,1.7,0.021,0.62,0,0,0,0,0,-6.3,0,0,0,0,0.265,40.78,111.39,0.89,0.12,791,0.6,14,0.6
+6749,2023,10,9,5,30,5.3,1.7,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.266,44.3,100.06,0.89,0.12,791,0.6,15,0.6
+6750,2023,10,9,6,30,6.3,1.69,0.022,0.62,15,230,21,0,0,-5.5,15,230,0,21,0.266,42.6,88.45,0.88,0.12,791,0.6,19,0.5
+6751,2023,10,9,7,30,9.6,1.67,0.021,0.62,37,754,198,0,0,-4.5,37,754,0,198,0.266,36.59,77.64,0.88,0.12,791,0.6,28,0.7
+6752,2023,10,9,8,30,14,1.64,0.02,0.62,46,909,396,0,0,-5,46,909,0,396,0.265,26.42,67.37,0.88,0.12,791,0.6,31,0.9
+6753,2023,10,9,9,30,17.8,1.61,0.018,0.62,52,984,568,0,0,-6.3,52,984,29,568,0.265,18.8,58.35,0.88,0.12,791,0.5,20,0.8
+6754,2023,10,9,10,30,19.8,1.58,0.017,0.62,53,1020,690,0,0,-7.7,53,1020,0,690,0.264,14.91,51.38,0.87,0.12,790,0.5,178,0.7
+6755,2023,10,9,11,30,21.1,1.66,0.015,0.62,53,1037,754,0,0,-8.7,53,1037,0,754,0.263,12.72,47.45,0.87,0.12,790,0.5,337,0.7
+6756,2023,10,9,12,30,21.8,1.64,0.015,0.62,52,1038,755,0,0,-9.5,52,1038,0,755,0.263,11.45,47.37,0.87,0.12,789,0.5,328,0.9
+6757,2023,10,9,13,30,22.1,1.63,0.014,0.62,53,1020,693,0,0,-10.1,53,1020,0,693,0.262,10.74,51.16,0.88,0.12,789,0.5,323,1
+6758,2023,10,9,14,30,21.9,1.07,0.02,0.62,54,982,574,0,0,-10.5,54,982,0,574,0.262,10.49,58.02,0.89,0.12,788,0.5,319,1.1
+6759,2023,10,9,15,30,21.1,1.07,0.02,0.62,47,915,405,0,0,-10.8,47,915,0,405,0.262,10.77,66.99,0.89,0.12,788,0.5,317,1
+6760,2023,10,9,16,30,19.3,1.07,0.02,0.62,38,770,208,0,0,-10.6,38,770,0,208,0.262,12.19,77.23,0.89,0.12,787,0.5,313,0.6
+6761,2023,10,9,17,30,17.2,1.08,0.02,0.62,17,282,27,0,0,-6.4,17,282,0,27,0.263,19.38,88.06,0.89,0.12,787,0.5,239,0.2
+6762,2023,10,9,18,30,15.7,1.09,0.019,0.62,0,0,0,0,0,-8.2,0,0,0,0,0.263,18.56,99.64,0.89,0.12,787,0.5,169,0.4
+6763,2023,10,9,19,30,14.4,1.1,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.263,19.25,111,0.89,0.12,787,0.5,180,0.6
+6764,2023,10,9,20,30,13.3,1.12,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.262,20.49,122,0.89,0.12,787,0.5,205,0.8
+6765,2023,10,9,21,30,12,1.14,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.262,21.68,132.09,0.89,0.12,787,0.5,225,1
+6766,2023,10,9,22,30,10.7,1.17,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.261,23.57,140.35,0.89,0.12,787,0.5,235,1.2
+6767,2023,10,9,23,30,9.5,1.2,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.261,25.14,145.31,0.89,0.12,786,0.5,238,1.3
+6768,2023,10,10,0,30,8.4,1.24,0.019,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.262,26.81,145.44,0.89,0.12,786,0.5,238,1.3
+6769,2023,10,10,1,30,7.5,1.29,0.019,0.62,0,0,0,0,0,-9.7,0,0,0,0,0.263,28.25,140.69,0.89,0.12,786,0.5,231,1.2
+6770,2023,10,10,2,30,6.8,1.35,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.264,29.5,132.56,0.89,0.12,786,0.5,215,1.2
+6771,2023,10,10,3,30,6.1,1.42,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.266,31.05,122.54,0.89,0.12,785,0.6,198,1.3
+6772,2023,10,10,4,30,5.4,1.48,0.02,0.62,0,0,0,0,0,-9.6,0,0,0,0,0.268,33.15,111.59,0.89,0.12,785,0.6,185,1.4
+6773,2023,10,10,5,30,5,1.51,0.021,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.269,35.22,100.25,0.9,0.12,785,0.7,178,1.4
+6774,2023,10,10,6,30,6.3,1.52,0.024,0.62,15,207,20,0,0,-8.6,15,207,0,20,0.271,33.66,88.64,0.91,0.12,785,0.7,174,1.5
+6775,2023,10,10,7,30,9.9,1.52,0.027,0.62,39,718,190,0,5,-7,75,201,0,117,0.272,29.71,77.86,0.92,0.12,786,0.8,177,2.1
+6776,2023,10,10,8,30,14,1.51,0.032,0.62,54,865,383,0,5,-7.1,184,119,0,229,0.272,22.54,67.61,0.93,0.12,786,0.9,194,3.2
+6777,2023,10,10,9,30,17.5,1.5,0.039,0.62,65,924,546,1,3,-6.2,213,426,36,435,0.271,19.23,58.63,0.94,0.12,785,1,211,4.2
+6778,2023,10,10,10,30,19.2,1.47,0.051,0.62,73,950,662,0,0,-5.3,73,950,0,662,0.27,18.59,51.71,0.95,0.12,785,1.1,217,4.7
+6779,2023,10,10,11,30,19.9,1.44,0.053,0.62,77,962,723,0,5,-4,248,509,0,590,0.268,19.59,47.82,0.95,0.12,784,1.2,216,4.9
+6780,2023,10,10,12,30,20.3,1.46,0.053,0.62,75,964,723,0,8,-2.6,286,395,0,552,0.267,21.23,47.76,0.94,0.12,784,1.2,214,4.9
+6781,2023,10,10,13,30,20.6,1.52,0.045,0.62,69,955,663,0,0,-1.6,176,661,0,587,0.265,22.43,51.53,0.94,0.12,783,1.2,214,4.7
+6782,2023,10,10,14,30,20.7,1.57,0.038,0.62,63,924,547,0,0,-1.3,63,924,0,547,0.263,22.75,58.38,0.93,0.12,782,1.2,215,4.3
+6783,2023,10,10,15,30,20.2,1.57,0.037,0.62,55,850,383,0,0,-1.6,55,850,0,383,0.261,22.93,67.32,0.93,0.12,781,1.1,216,4
+6784,2023,10,10,16,30,17.7,1.54,0.04,0.62,44,682,191,0,0,-2.1,56,573,0,180,0.26,25.94,77.54,0.94,0.12,781,1.1,213,2.7
+6785,2023,10,10,17,30,14.3,1.51,0.047,0.62,15,176,20,0,0,-1.4,15,176,4,20,0.258,33.95,88.34,0.95,0.12,781,1.2,207,1.5
+6786,2023,10,10,18,30,12.5,1.46,0.059,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.257,37.52,99.94,0.96,0.12,781,1.2,202,1.4
+6787,2023,10,10,19,30,12.1,1.38,0.076,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.255,38.5,111.3,0.97,0.12,781,1.3,201,1.5
+6788,2023,10,10,20,30,12,1.31,0.101,0.62,0,0,0,0,8,-1.4,0,0,0,0,0.254,39.32,122.31,0.97,0.12,780,1.4,202,1.8
+6789,2023,10,10,21,30,11.7,1.31,0.116,0.62,0,0,0,0,8,-1,0,0,0,0,0.253,41.45,132.42,0.97,0.12,780,1.5,201,1.9
+6790,2023,10,10,22,30,11.2,1.35,0.117,0.62,0,0,0,0,8,-0.3,0,0,0,0,0.252,44.9,140.72,0.96,0.12,780,1.5,198,2.1
+6791,2023,10,10,23,30,10.5,1.41,0.117,0.62,0,0,0,0,5,0.3,0,0,0,0,0.251,49.09,145.69,0.96,0.12,779,1.4,197,2.2
+6792,2023,10,11,0,30,9.8,1.46,0.111,0.62,0,0,0,0,5,0.5,0,0,0,0,0.25,52.55,145.8,0.95,0.12,779,1.4,200,2.3
+6793,2023,10,11,1,30,9.3,1.45,0.108,0.62,0,0,0,0,5,0.5,0,0,0,0,0.249,54.02,141,0.95,0.12,778,1.3,204,2.2
+6794,2023,10,11,2,30,8.9,1.42,0.102,0.62,0,0,0,0,4,0.2,0,0,0,0,0.249,54.46,132.81,0.95,0.12,778,1.3,210,1.9
+6795,2023,10,11,3,30,8.4,1.41,0.085,0.62,0,0,0,0,5,-0.2,0,0,0,0,0.249,54.87,122.76,0.95,0.12,778,1.2,216,1.7
+6796,2023,10,11,4,30,8.1,1.36,0.077,0.62,0,0,0,0,5,-0.5,0,0,0,0,0.249,54.47,111.79,0.95,0.12,778,1.2,218,1.6
+6797,2023,10,11,5,30,7.7,1.32,0.07,0.62,0,0,0,0,3,-0.9,0,0,0,0,0.25,54.44,100.45,0.94,0.12,777,1.2,219,1.7
+6798,2023,10,11,6,30,8.4,1.27,0.062,0.62,14,136,17,2,0,-1.2,12,63,32,13,0.252,50.84,88.83,0.94,0.12,777,1.1,219,2.2
+6799,2023,10,11,7,30,10.7,1.22,0.057,0.62,47,640,179,0,0,-1.4,66,313,0,131,0.254,43.05,78.07,0.94,0.12,777,1.1,221,3.1
+6800,2023,10,11,8,30,13.3,1.18,0.056,0.62,62,821,371,3,8,-1.7,175,115,39,218,0.256,35.51,67.86,0.94,0.12,777,1,225,3.9
+6801,2023,10,11,9,30,15.4,1.16,0.055,0.62,69,906,537,4,8,-2.3,122,8,71,126,0.257,29.54,58.91,0.93,0.12,776,1,224,4.7
+6802,2023,10,11,10,30,16.8,1.16,0.053,0.62,75,947,658,1,8,-2.9,139,44,18,166,0.258,25.84,52.03,0.93,0.12,776,1,222,5.6
+6803,2023,10,11,11,30,17.6,1.13,0.057,0.62,82,955,719,0,6,-3.1,101,3,0,103,0.26,24.17,48.19,0.94,0.12,775,1,223,6.3
+6804,2023,10,11,12,30,17.3,1.09,0.073,0.62,89,938,715,0,6,-2.7,53,0,0,53,0.261,25.5,48.14,0.95,0.12,775,1.1,228,6.7
+6805,2023,10,11,13,30,16.1,1.08,0.083,0.62,88,914,652,0,7,-1.7,162,20,0,174,0.263,29.46,51.91,0.96,0.12,775,1.1,239,6.7
+6806,2023,10,11,14,30,14.6,1.16,0.076,0.62,77,880,534,0,8,-1,209,452,0,444,0.266,34.19,58.73,0.96,0.12,775,1.1,258,6.3
+6807,2023,10,11,15,30,12.8,1.19,0.065,0.62,63,816,373,0,6,-1.4,66,45,0,83,0.268,37.51,67.64,0.95,0.12,775,1.1,282,5.8
+6808,2023,10,11,16,30,10.6,1.22,0.05,0.62,45,662,184,0,0,-1.5,60,414,0,147,0.27,42.83,77.84,0.94,0.12,776,1,305,5.1
+6809,2023,10,11,17,30,8.2,1.19,0.044,0.62,14,162,18,4,7,-0.9,12,46,57,13,0.271,52.73,88.61,0.94,0.12,777,1,323,4.5
+6810,2023,10,11,18,30,6.5,1.14,0.042,0.62,0,0,0,0,6,0,0,0,0,0,0.273,63.39,100.23,0.94,0.12,778,1,329,4.1
+6811,2023,10,11,19,30,5.3,1.07,0.042,0.62,0,0,0,0,6,0.5,0,0,0,0,0.274,71.21,111.6,0.94,0.12,778,1,327,3.8
+6812,2023,10,11,20,30,4.6,1.02,0.045,0.62,0,0,0,0,6,0.7,0,0,0,0,0.275,75.57,122.62,0.94,0.12,779,1.1,323,3.3
+6813,2023,10,11,21,30,4,1,0.047,0.62,0,0,0,0,9,0.6,0,0,0,0,0.275,78.71,132.75,0.94,0.12,779,1.1,319,3
+6814,2023,10,11,22,30,3.5,1,0.047,0.62,0,0,0,0,6,0.6,0,0,0,0,0.276,81.4,141.08,0.94,0.12,778,1.1,312,2.9
+6815,2023,10,11,23,30,3,1,0.047,0.62,0,0,0,0,7,0.6,0,0,0,0,0.276,84.29,146.07,0.94,0.12,778,1,304,2.9
+6816,2023,10,12,0,30,2.6,0.98,0.048,0.62,0,0,0,0,7,0.5,0,0,0,0,0.276,85.93,146.16,0.94,0.12,778,1,297,2.9
+6817,2023,10,12,1,30,2.4,0.96,0.046,0.62,0,0,0,0,6,0.3,0,0,0,0,0.276,85.79,141.3,0.94,0.12,778,1,292,2.7
+6818,2023,10,12,2,30,2.2,0.94,0.044,0.62,0,0,0,0,7,0,0,0,0,0,0.276,85.46,133.06,0.94,0.12,778,1,290,2.5
+6819,2023,10,12,3,30,2,0.93,0.042,0.62,0,0,0,0,8,-0.1,0,0,0,0,0.276,85.81,122.98,0.94,0.12,778,1,288,2.5
+6820,2023,10,12,4,30,1.7,0.94,0.039,0.62,0,0,0,0,8,-0.2,0,0,0,0,0.276,87.11,111.98,0.94,0.12,779,1,287,2.6
+6821,2023,10,12,5,30,1.6,0.96,0.037,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.274,86.4,100.64,0.94,0.12,779,1,291,2.8
+6822,2023,10,12,6,30,2,1,0.035,0.62,12,151,15,5,7,-0.5,3,0,71,3,0.273,83.57,89,0.94,0.12,779,1,292,3.1
+6823,2023,10,12,7,30,2.9,1.06,0.031,0.62,40,689,180,0,7,-0.5,50,2,0,50,0.272,78.35,78.29,0.94,0.12,780,1,289,3.9
+6824,2023,10,12,8,30,4,1.1,0.031,0.62,52,855,371,0,7,-0.8,48,0,14,48,0.272,71.13,68.1,0.94,0.12,780,1,291,4.7
+6825,2023,10,12,9,30,4.8,1.12,0.032,0.62,60,930,536,0,7,-1,108,2,0,109,0.271,65.89,59.19,0.94,0.12,780,1.1,295,5.2
+6826,2023,10,12,10,30,5.2,1.14,0.03,0.62,64,967,655,0,6,-0.9,106,1,0,107,0.269,64.56,52.36,0.94,0.12,781,1.1,299,5.4
+6827,2023,10,12,11,30,5.2,1.07,0.034,0.62,66,982,716,0,7,-0.6,118,0,0,118,0.269,66.09,48.55,0.93,0.12,781,1.1,304,5.5
+6828,2023,10,12,12,30,5.1,1.13,0.03,0.62,64,986,717,0,7,-0.3,139,1,0,140,0.268,67.92,48.52,0.93,0.12,781,1.1,311,5.7
+6829,2023,10,12,13,30,5,1.2,0.026,0.62,59,974,655,0,7,-0.1,149,2,0,150,0.267,69.4,52.28,0.92,0.12,782,1.1,319,5.7
+6830,2023,10,12,14,30,5,1.25,0.024,0.62,56,936,537,0,6,0,120,9,0,125,0.266,69.9,59.08,0.93,0.12,783,1.2,328,5.4
+6831,2023,10,12,15,30,4.7,1.24,0.026,0.62,50,860,373,0,8,0,88,5,0,90,0.265,71.62,67.97,0.93,0.12,784,1.1,340,5.2
+6832,2023,10,12,16,30,4,1.25,0.027,0.62,38,696,181,0,8,-0.1,16,0,0,16,0.263,74.82,78.15,0.92,0.12,785,1.1,175,4.7
+6833,2023,10,12,17,30,2.9,1.28,0.029,0.62,14,178,17,5,7,-0.2,4,0,71,4,0.263,80,88.88,0.91,0.12,786,1.1,7,4.3
+6834,2023,10,12,18,30,2,1.34,0.03,0.62,0,0,0,0,8,-0.4,0,0,0,0,0.264,84.2,100.52,0.91,0.12,787,1.1,15,4.4
+6835,2023,10,12,19,30,1.1,1.38,0.033,0.62,0,0,0,0,4,-0.7,0,0,0,0,0.267,87.69,111.89,0.91,0.12,788,1,21,4.5
+6836,2023,10,12,20,30,0.1,1.4,0.034,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.269,91.5,122.92,0.92,0.12,789,1,25,4.2
+6837,2023,10,12,21,30,-0.7,1.41,0.034,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.27,93.42,133.08,0.93,0.12,789,0.9,27,3.4
+6838,2023,10,12,22,30,-1.5,1.4,0.032,0.62,0,0,0,0,4,-2,0,0,0,0,0.271,96.21,141.44,0.93,0.12,790,0.9,27,2.5
+6839,2023,10,12,23,30,-2.3,1.38,0.03,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.271,100,146.45,0.93,0.12,790,0.9,27,1.9
+6840,2023,10,13,0,30,-2.8,1.37,0.028,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.271,100,146.52,0.93,0.12,791,0.9,27,1.5
+6841,2023,10,13,1,30,-3,1.36,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,141.61,0.93,0.12,791,0.8,26,1.7
+6842,2023,10,13,2,30,-3,1.35,0.026,0.62,0,0,0,0,0,-3,0,0,0,0,0.27,100,133.31,0.93,0.12,791,0.8,27,2.1
+6843,2023,10,13,3,30,-3.1,1.34,0.024,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.268,100,123.19,0.93,0.12,792,0.7,32,2.4
+6844,2023,10,13,4,30,-3.2,1.33,0.023,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.264,100,112.18,0.93,0.12,792,0.6,39,2.5
+6845,2023,10,13,5,30,-3.4,1.31,0.021,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.259,100,100.83,0.92,0.12,792,0.6,46,2.4
+6846,2023,10,13,6,30,-2.8,1.31,0.02,0.62,12,166,14,1,0,-3.2,10,107,14,12,0.256,97.28,89.17,0.92,0.12,793,0.6,52,2.6
+6847,2023,10,13,7,30,-0.5,1.32,0.018,0.62,35,741,183,0,4,-3,96,11,0,98,0.253,83.15,78.5,0.91,0.12,793,0.6,60,3.4
+6848,2023,10,13,8,30,2.1,1.34,0.017,0.62,44,902,377,0,0,-3.3,57,854,0,372,0.252,67.32,68.34,0.91,0.12,794,0.6,65,4
+6849,2023,10,13,9,30,4.1,1.33,0.016,0.62,49,974,544,0,0,-3.8,49,974,0,544,0.253,56.56,59.47,0.91,0.12,794,0.6,66,4
+6850,2023,10,13,10,30,5.8,1.34,0.016,0.62,55,1006,665,0,0,-4,55,1006,0,665,0.253,49.49,52.68,0.91,0.12,793,0.6,66,3.6
+6851,2023,10,13,11,30,7.3,1.04,0.022,0.62,60,1018,729,0,0,-4.2,60,1018,0,729,0.253,43.78,48.91,0.91,0.12,793,0.6,66,3.1
+6852,2023,10,13,12,30,8.4,1.05,0.02,0.62,59,1016,727,0,4,-4.5,353,76,0,403,0.253,39.78,48.9,0.91,0.12,793,0.7,67,2.7
+6853,2023,10,13,13,30,9.1,1.07,0.019,0.62,58,997,663,0,4,-4.8,209,7,0,213,0.252,37.14,52.65,0.91,0.12,793,0.7,67,2.4
+6854,2023,10,13,14,30,9.1,0.87,0.025,0.62,57,955,543,0,4,-5.1,160,1,0,161,0.251,36.29,59.43,0.92,0.12,793,0.7,67,2.2
+6855,2023,10,13,15,30,8.5,0.89,0.024,0.62,49,883,376,0,4,-5.3,131,2,0,132,0.251,37.13,68.29,0.92,0.12,793,0.7,67,2.2
+6856,2023,10,13,16,30,6.5,0.9,0.024,0.62,38,719,182,0,4,-5.4,76,5,0,77,0.251,42.41,78.45,0.92,0.12,793,0.7,67,1.7
+6857,2023,10,13,17,30,3.6,0.9,0.023,0.62,12,152,14,1,0,-2.9,10,80,18,11,0.251,62.57,89.14,0.92,0.12,793,0.6,69,1.1
+6858,2023,10,13,18,30,1.7,0.91,0.023,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.251,68.39,100.8,0.92,0.12,794,0.6,71,1.2
+6859,2023,10,13,19,30,0.8,0.93,0.023,0.62,0,0,0,0,0,-4,0,0,0,0,0.25,70.27,112.18,0.92,0.12,794,0.6,72,1.2
+6860,2023,10,13,20,30,0.1,0.95,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.25,71.43,123.22,0.92,0.12,794,0.6,74,1.2
+6861,2023,10,13,21,30,-0.4,0.98,0.024,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.251,71.81,133.41,0.93,0.12,794,0.6,78,1.2
+6862,2023,10,13,22,30,-0.8,1.01,0.026,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.252,71.91,141.8,0.93,0.12,794,0.7,83,1.1
+6863,2023,10,13,23,30,-0.9,1.03,0.028,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.253,71,146.83,0.93,0.12,794,0.7,89,1.1
+6864,2023,10,14,0,30,-0.7,1.05,0.03,0.62,0,0,0,0,8,-5.7,0,0,0,0,0.254,69.17,146.87,0.94,0.12,795,0.7,98,0.9
+6865,2023,10,14,1,30,-0.3,1.06,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.256,68.19,141.91,0.94,0.12,795,0.7,110,0.8
+6866,2023,10,14,2,30,0,1.08,0.033,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.257,68.17,133.56,0.93,0.12,795,0.8,123,0.7
+6867,2023,10,14,3,30,-0.2,1.11,0.029,0.62,0,0,0,0,0,-5.4,0,0,29,0,0.258,68.19,123.41,0.92,0.12,795,0.7,132,0.7
+6868,2023,10,14,4,30,-0.3,1.13,0.024,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.259,64.75,112.38,0.91,0.12,795,0.7,140,0.7
+6869,2023,10,14,5,30,-0.3,1.12,0.023,0.62,0,0,0,0,0,-6.6,0,0,0,0,0.259,62.54,101.03,0.92,0.12,796,0.7,143,0.6
+6870,2023,10,14,6,30,0.6,1.12,0.025,0.62,11,141,13,0,0,-6.7,11,141,0,13,0.258,58.07,89.35,0.92,0.12,796,0.7,133,0.5
+6871,2023,10,14,7,30,2.9,1.11,0.027,0.62,39,701,176,0,0,-5.2,43,657,0,172,0.257,55.25,78.72,0.92,0.12,796,0.7,140,0.5
+6872,2023,10,14,8,30,5.9,1.1,0.03,0.62,53,864,368,0,0,-5.6,53,864,0,368,0.255,43.47,68.59,0.93,0.12,797,0.7,185,0.9
+6873,2023,10,14,9,30,8.3,1.07,0.035,0.62,63,931,532,0,0,-5.1,130,742,7,504,0.253,38.22,59.76,0.94,0.12,797,0.8,221,1.4
+6874,2023,10,14,10,30,9.4,1.07,0.039,0.62,67,970,651,0,0,-5,75,951,0,647,0.252,35.84,53.01,0.94,0.12,797,0.8,229,1.6
+6875,2023,10,14,11,30,10.2,1.24,0.032,0.62,66,990,712,0,5,-5,314,444,0,604,0.253,34.02,49.27,0.93,0.12,797,0.9,229,1.6
+6876,2023,10,14,12,30,11.4,1.29,0.029,0.62,64,994,712,0,8,-5,267,474,0,576,0.253,31.4,49.28,0.92,0.12,797,0.9,227,1.7
+6877,2023,10,14,13,30,12.4,1.31,0.024,0.62,59,982,650,0,0,-5.1,194,633,0,575,0.252,29.2,53.02,0.92,0.12,797,0.9,227,1.9
+6878,2023,10,14,14,30,12.7,1.26,0.024,0.62,55,948,532,0,0,-5.3,154,643,0,478,0.25,28.1,59.77,0.91,0.12,797,0.9,227,1.9
+6879,2023,10,14,15,30,12.1,1.3,0.021,0.62,47,876,366,0,0,-5.5,47,876,0,366,0.249,28.75,68.61,0.91,0.12,797,0.9,225,1.9
+6880,2023,10,14,16,30,10.1,1.3,0.02,0.62,35,710,174,0,0,-5.4,35,710,0,174,0.247,33.12,78.75,0.91,0.12,797,0.9,210,1.2
+6881,2023,10,14,17,30,7.4,1.29,0.022,0.62,11,146,13,1,0,-2.3,9,88,14,10,0.247,50.17,89.4,0.92,0.12,797,0.9,178,0.7
+6882,2023,10,14,18,30,6,1.24,0.025,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.245,49.36,101.09,0.92,0.12,797,0.9,151,0.9
+6883,2023,10,14,19,30,5.3,1.22,0.023,0.62,0,0,0,0,7,-3.9,0,0,0,0,0.242,51.6,112.46,0.92,0.12,797,0.9,135,0.9
+6884,2023,10,14,20,30,4.7,1.23,0.02,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.241,50.92,123.52,0.91,0.12,798,0.9,119,0.9
+6885,2023,10,14,21,30,4.4,1.24,0.02,0.62,0,0,0,0,0,-5.1,0,0,0,0,0.24,50.26,133.73,0.91,0.12,798,0.9,104,0.7
+6886,2023,10,14,22,30,4.2,1.24,0.019,0.62,0,0,0,0,0,-5.3,0,0,0,0,0.241,49.94,142.15,0.91,0.12,798,0.9,96,0.6
+6887,2023,10,14,23,30,3.9,1.24,0.019,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.241,50.53,147.21,0.91,0.12,799,0.9,87,0.5
+6888,2023,10,15,0,30,3.6,1.24,0.019,0.62,0,0,0,0,0,-5.6,0,0,0,0,0.241,50.97,147.23,0.91,0.12,799,0.9,79,0.5
+6889,2023,10,15,1,30,3.3,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.24,51.48,142.21,0.91,0.12,799,0.9,89,0.4
+6890,2023,10,15,2,30,2.9,1.26,0.019,0.62,0,0,0,0,0,-5.8,0,0,0,0,0.239,52.6,133.81,0.91,0.12,799,0.9,104,0.3
+6891,2023,10,15,3,30,2.5,1.27,0.019,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.24,53.84,123.62,0.91,0.12,800,1,100,0.2
+6892,2023,10,15,4,30,2.1,1.28,0.018,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.242,54.8,112.58,0.91,0.12,800,1,69,0.2
+6893,2023,10,15,5,30,1.7,1.28,0.019,0.62,0,0,0,0,0,-6.1,0,0,0,0,0.244,56.15,101.22,0.91,0.12,800,1,45,0.3
+6894,2023,10,15,6,30,2.2,1.26,0.019,0.62,11,143,12,0,0,-6.1,11,143,0,12,0.245,54.21,89.53,0.92,0.12,800,1,39,0.3
+6895,2023,10,15,7,30,4.5,1.26,0.019,0.62,35,702,170,0,0,-4.3,35,702,0,170,0.245,52.98,78.94,0.92,0.12,801,1,40,0.6
+6896,2023,10,15,8,30,8.1,1.26,0.019,0.62,45,869,359,0,0,-4.7,45,869,0,359,0.245,39.86,68.83,0.92,0.12,801,1,55,0.8
+6897,2023,10,15,9,30,12,1.27,0.018,0.62,51,943,522,0,0,-4.8,51,943,0,522,0.244,30.5,60.04,0.91,0.12,801,1.1,60,0.6
+6898,2023,10,15,10,30,14.5,1.27,0.018,0.62,54,981,640,0,0,-4.7,54,981,0,640,0.243,26.16,53.33,0.91,0.12,801,1.1,47,0.7
+6899,2023,10,15,11,30,16,1.36,0.015,0.62,54,998,700,0,0,-4.6,54,998,0,700,0.242,23.91,49.63,0.91,0.12,800,1.1,42,0.8
+6900,2023,10,15,12,30,17,1.37,0.015,0.62,53,997,699,0,0,-4.6,53,997,0,699,0.242,22.52,49.65,0.91,0.12,800,1.1,41,0.9
+6901,2023,10,15,13,30,17.6,1.38,0.016,0.62,52,980,637,0,0,-4.6,52,980,0,637,0.242,21.72,53.38,0.91,0.12,799,1.2,41,0.9
+6902,2023,10,15,14,30,17.6,1.4,0.016,0.62,50,942,519,0,0,-4.5,50,942,0,519,0.242,21.78,60.12,0.91,0.12,799,1.2,52,1
+6903,2023,10,15,15,30,16.9,1.42,0.016,0.62,43,868,355,0,0,-4.5,51,844,7,354,0.242,22.81,68.93,0.9,0.12,799,1.2,70,1.1
+6904,2023,10,15,16,30,14.3,1.44,0.015,0.62,32,703,166,0,0,-3.5,48,582,11,159,0.242,29.09,79.05,0.9,0.12,799,1.2,91,1
+6905,2023,10,15,17,30,10.9,1.44,0.015,0.62,10,144,11,3,8,0.8,8,67,39,8,0.242,49.67,89.66,0.9,0.12,799,1.1,105,1
+6906,2023,10,15,18,30,9,1.43,0.015,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.242,48.94,101.36,0.9,0.12,799,1.1,106,1.2
+6907,2023,10,15,19,30,8.1,1.43,0.015,0.62,0,0,0,0,8,-1.7,0,0,0,0,0.242,49.89,112.74,0.9,0.12,800,1.1,101,1.2
+6908,2023,10,15,20,30,7.5,1.44,0.015,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.242,49.97,123.82,0.9,0.12,800,1.1,91,1.1
+6909,2023,10,15,21,30,7,1.44,0.015,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.242,49.92,134.05,0.9,0.12,800,1.2,82,1
+6910,2023,10,15,22,30,6.5,1.42,0.016,0.62,0,0,0,0,0,-3,0,0,0,0,0.241,50.78,142.5,0.9,0.12,800,1.2,78,1
+6911,2023,10,15,23,30,6,1.4,0.016,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.241,51.84,147.58,0.9,0.12,799,1.2,79,0.9
+6912,2023,10,16,0,30,5.5,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,53.28,147.58,0.9,0.12,799,1.3,81,0.9
+6913,2023,10,16,1,30,5.1,1.39,0.017,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.241,54.44,142.51,0.9,0.12,799,1.3,85,0.8
+6914,2023,10,16,2,30,5,1.4,0.016,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.241,54.22,134.06,0.9,0.12,799,1.3,92,0.8
+6915,2023,10,16,3,30,5.1,1.41,0.016,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,53.2,123.84,0.9,0.12,799,1.2,95,0.7
+6916,2023,10,16,4,30,5.3,1.43,0.016,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.239,51.73,112.78,0.9,0.12,799,1.2,88,0.5
+6917,2023,10,16,5,30,5.4,1.43,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.239,50.71,101.42,0.9,0.12,799,1.1,64,0.3
+6918,2023,10,16,6,30,6,1.43,0.015,0.62,10,144,11,0,0,-4.2,10,144,0,11,0.238,48.07,89.72,0.9,0.12,799,1.1,25,0.2
+6919,2023,10,16,7,30,8.1,1.42,0.015,0.62,33,706,166,0,0,-2.5,33,706,0,166,0.237,47.17,79.15,0.9,0.12,799,1.1,177,0.2
+6920,2023,10,16,8,30,11.5,1.4,0.015,0.62,43,872,354,0,0,-3.1,43,872,0,354,0.235,36.02,69.08,0.9,0.12,799,1.1,296,0.3
+6921,2023,10,16,9,30,15.3,1.38,0.016,0.62,49,947,518,0,0,-3.3,49,947,0,518,0.234,27.56,60.32,0.9,0.12,799,1,219,0.6
+6922,2023,10,16,10,30,18.2,1.35,0.016,0.62,51,986,635,0,0,-3.2,51,986,0,635,0.233,23.11,53.66,0.9,0.12,798,1,203,1.2
+6923,2023,10,16,11,30,19.7,1.46,0.013,0.62,50,1003,695,0,0,-2.8,50,1003,0,695,0.233,21.8,49.99,0.9,0.12,798,1.1,218,1.4
+6924,2023,10,16,12,30,20.6,1.43,0.013,0.62,51,1003,695,0,0,-2.5,51,1003,0,695,0.232,21.06,50.02,0.9,0.12,797,1.1,232,1.6
+6925,2023,10,16,13,30,20.9,1.42,0.013,0.62,53,983,634,0,0,-2.4,53,983,0,634,0.231,20.82,53.74,0.9,0.12,796,1.1,241,1.7
+6926,2023,10,16,14,30,20.7,1.16,0.02,0.62,53,940,516,0,0,-2.5,53,940,0,516,0.231,20.89,60.46,0.91,0.12,796,1,244,1.7
+6927,2023,10,16,15,30,19.6,1.2,0.02,0.62,45,866,352,0,0,-2.7,45,866,0,352,0.231,21.97,69.24,0.9,0.12,795,1,244,1.5
+6928,2023,10,16,16,30,16.8,1.23,0.019,0.62,34,699,163,0,0,-1.2,34,699,0,163,0.232,29.22,79.34,0.9,0.12,795,1,247,1
+6929,2023,10,16,17,30,14.1,1.27,0.018,0.62,8,99,8,0,0,1.6,8,99,0,8,0.233,42.79,89.91,0.9,0.12,795,0.9,255,0.6
+6930,2023,10,16,18,30,13,1.3,0.017,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.235,37.19,101.64,0.9,0.12,795,0.9,258,0.4
+6931,2023,10,16,19,30,12.2,1.31,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.236,37.05,113.02,0.89,0.12,795,0.8,197,0.2
+6932,2023,10,16,20,30,11.4,1.31,0.016,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.237,38.32,124.11,0.89,0.12,795,0.8,129,0.3
+6933,2023,10,16,21,30,10.4,1.31,0.015,0.62,0,0,0,0,0,-2.3,0,0,0,0,0.238,41.08,134.36,0.89,0.12,795,0.8,125,0.5
+6934,2023,10,16,22,30,9.7,1.3,0.015,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.238,43.55,142.85,0.9,0.12,795,0.8,139,0.5
+6935,2023,10,16,23,30,9.1,1.29,0.015,0.62,0,0,0,0,0,-1.9,0,0,0,0,0.239,45.94,147.95,0.9,0.12,794,0.8,162,0.5
+6936,2023,10,17,0,30,8.4,1.28,0.015,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.241,48.68,147.93,0.9,0.12,794,0.8,177,0.6
+6937,2023,10,17,1,30,7.6,1.28,0.015,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.244,51.73,142.81,0.9,0.12,794,0.8,185,0.7
+6938,2023,10,17,2,30,6.6,1.28,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.247,56,134.31,0.9,0.12,794,0.7,197,1
+6939,2023,10,17,3,30,5.6,1.28,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.25,60.08,124.05,0.9,0.12,793,0.7,211,1.2
+6940,2023,10,17,4,30,4.8,1.29,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.252,63.29,112.98,0.9,0.12,793,0.7,222,1.2
+6941,2023,10,17,5,30,4.2,1.29,0.016,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.256,65.28,101.61,0.9,0.12,794,0.7,228,1.3
+6942,2023,10,17,6,30,5,1.31,0.016,0.62,8,104,8,0,0,-1.9,8,104,0,8,0.259,60.87,89.9,0.89,0.12,794,0.7,228,1.2
+6943,2023,10,17,7,30,8.1,1.33,0.016,0.62,33,713,165,0,0,-1,33,713,0,165,0.259,52.72,79.37,0.89,0.12,794,0.8,225,1.6
+6944,2023,10,17,8,30,12.1,1.34,0.017,0.62,44,879,354,0,0,-1.3,44,879,0,354,0.257,39.56,69.33,0.89,0.12,794,0.8,229,2.4
+6945,2023,10,17,9,30,15.9,1.35,0.018,0.62,51,952,518,0,0,-2.4,51,952,0,518,0.255,28.4,60.61,0.9,0.12,794,0.8,239,2.9
+6946,2023,10,17,10,30,18.6,1.34,0.02,0.62,55,986,635,0,0,-4.1,66,954,0,627,0.253,21.04,53.98,0.9,0.12,794,0.9,242,3.3
+6947,2023,10,17,11,30,20,1.48,0.018,0.62,56,1001,695,0,8,-4.7,202,614,0,594,0.252,18.48,50.35,0.91,0.12,793,0.9,242,3.5
+6948,2023,10,17,12,30,20.6,1.53,0.019,0.62,55,1000,693,0,8,-4.9,221,574,0,587,0.251,17.52,50.39,0.91,0.12,793,1,244,3.8
+6949,2023,10,17,13,30,20.8,1.56,0.019,0.62,53,985,631,0,7,-5.1,167,622,0,532,0.251,17.14,54.1,0.91,0.12,792,1,244,3.9
+6950,2023,10,17,14,30,20.8,1.71,0.017,0.62,48,952,513,0,0,-5.1,85,826,0,488,0.251,17.08,60.79,0.9,0.12,791,0.9,242,3.9
+6951,2023,10,17,15,30,19.9,1.8,0.015,0.62,41,882,349,0,0,-5,41,882,0,349,0.252,18.21,69.56,0.9,0.12,791,0.8,236,3.1
+6952,2023,10,17,16,30,16.7,1.83,0.014,0.62,31,712,159,0,0,-2.2,31,712,0,159,0.251,27.35,79.63,0.9,0.12,791,0.8,229,1.8
+6953,2023,10,17,17,30,13.1,1.8,0.014,0.62,7,101,7,0,0,0.5,7,101,0,7,0.25,42.19,90.15,0.89,0.12,791,0.9,240,1.3
+6954,2023,10,17,18,30,11.2,1.73,0.016,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.251,43.13,101.91,0.88,0.12,791,0.9,274,1.3
+6955,2023,10,17,19,30,9.7,1.65,0.019,0.62,0,0,0,0,0,-1,0,0,0,0,0.252,47.23,113.3,0.88,0.12,792,0.9,307,1.3
+6956,2023,10,17,20,30,8.6,1.53,0.02,0.62,0,0,0,0,0,-1.2,0,0,0,0,0.253,50.2,124.4,0.88,0.12,792,0.9,325,1.3
+6957,2023,10,17,21,30,8.1,1.34,0.02,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.254,51.09,134.68,0.88,0.12,793,0.9,333,1.2
+6958,2023,10,17,22,30,7.7,1.18,0.018,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.254,51.68,143.19,0.89,0.12,793,0.9,337,1.1
+6959,2023,10,17,23,30,7.2,1.09,0.017,0.62,0,0,0,0,7,-1.7,0,0,0,0,0.254,53.36,148.32,0.89,0.12,793,1,343,1
+6960,2023,10,18,0,30,6.9,1.05,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,54.64,148.28,0.89,0.12,793,1,342,0.9
+6961,2023,10,18,1,30,6.5,1.04,0.014,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,56.32,143.1,0.89,0.12,794,1,339,0.8
+6962,2023,10,18,2,30,6.3,1.06,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,57,134.55,0.9,0.12,794,1.1,339,0.7
+6963,2023,10,18,3,30,6.1,1.06,0.016,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.255,58.19,124.27,0.9,0.12,794,1,341,0.5
+6964,2023,10,18,4,30,5.7,1.06,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.256,59.72,113.17,0.89,0.12,794,1.1,182,0.5
+6965,2023,10,18,5,30,5.1,1.07,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,61.89,101.81,0.89,0.12,795,1.1,29,0.7
+6966,2023,10,18,6,30,5.6,1.08,0.014,0.62,7,96,7,0,0,-1.6,7,96,0,7,0.256,59.87,90.07,0.89,0.12,795,1.2,47,0.7
+6967,2023,10,18,7,30,8.2,1.1,0.014,0.62,31,692,156,0,0,-0.4,31,692,0,156,0.256,54.47,79.59,0.88,0.12,795,1.2,51,0.7
+6968,2023,10,18,8,30,11.9,1.12,0.013,0.62,41,864,342,0,0,-0.4,41,864,0,342,0.255,42.78,69.58,0.88,0.12,796,1.2,195,1.3
+6969,2023,10,18,9,30,15.1,1.14,0.013,0.62,45,940,502,0,0,0.6,45,940,0,502,0.254,37.26,60.89,0.88,0.12,796,1.2,340,2.3
+6970,2023,10,18,10,30,17.4,1.15,0.012,0.62,46,978,617,0,0,0.3,113,785,0,571,0.251,31.41,54.3,0.86,0.12,796,1.3,333,2.7
+6971,2023,10,18,11,30,19.1,1.52,0.01,0.62,45,996,676,0,0,0,45,996,0,676,0.249,27.59,50.7,0.84,0.12,795,1.3,324,2.8
+6972,2023,10,18,12,30,20.2,1.52,0.01,0.62,46,996,676,0,0,-0.1,46,996,0,676,0.247,25.76,50.76,0.85,0.12,795,1.3,320,3
+6973,2023,10,18,13,30,20.9,1.5,0.01,0.62,47,978,615,0,0,0,47,978,0,615,0.246,24.77,54.46,0.87,0.12,794,1.3,323,3.3
+6974,2023,10,18,14,30,20.9,1.15,0.013,0.62,45,939,498,0,0,0,45,939,0,498,0.245,24.8,61.13,0.89,0.12,794,1.2,327,3.3
+6975,2023,10,18,15,30,20.1,1.11,0.013,0.62,40,862,337,0,0,0,40,862,0,337,0.245,25.98,69.86,0.89,0.12,794,1.2,333,2.9
+6976,2023,10,18,16,30,17.1,1.1,0.013,0.62,30,687,150,0,0,0.9,30,687,0,150,0.245,33.57,79.92,0.89,0.12,795,1.2,348,1.7
+6977,2023,10,18,17,30,13.8,1.13,0.012,0.62,7,91,6,0,0,3,7,91,0,6,0.245,48.1,90.88,0.88,0.12,795,1.2,186,1.1
+6978,2023,10,18,18,30,12.2,1.17,0.011,0.62,0,0,0,0,0,2,0,0,0,0,0.246,49.75,102.18,0.88,0.12,796,1.2,13,1.1
+6979,2023,10,18,19,30,11.2,1.23,0.011,0.62,0,0,0,0,0,1.6,0,0,0,0,0.247,51.78,113.57,0.87,0.12,796,1.1,11,1
+6980,2023,10,18,20,30,10.1,1.27,0.01,0.62,0,0,0,0,0,1.4,0,0,0,0,0.247,54.6,124.68,0.87,0.12,796,1.1,6,0.9
+6981,2023,10,18,21,30,9.2,1.29,0.011,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,57.25,134.98,0.87,0.12,797,1,2,0.9
+6982,2023,10,18,22,30,8.3,1.32,0.011,0.62,0,0,0,0,0,1,0,0,0,0,0.246,60.18,143.53,0.88,0.12,797,1,1,0.9
+6983,2023,10,18,23,30,7.5,1.36,0.012,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,62.8,148.69,0.88,0.12,797,1,2,0.9
+6984,2023,10,19,0,30,6.7,1.39,0.012,0.62,0,0,0,0,0,0.8,0,0,0,0,0.246,66.12,148.63,0.88,0.12,797,0.9,3,1
+6985,2023,10,19,1,30,6,1.41,0.013,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,69.61,143.39,0.88,0.12,797,0.9,4,1
+6986,2023,10,19,2,30,5.5,1.41,0.013,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,72.51,134.8,0.88,0.12,797,0.9,6,0.9
+6987,2023,10,19,3,30,5,1.39,0.013,0.62,0,0,0,0,0,1,0,0,0,0,0.246,75.56,124.48,0.88,0.12,797,0.8,8,0.8
+6988,2023,10,19,4,30,4.6,1.36,0.012,0.62,0,0,0,0,0,1.1,0,0,0,0,0.247,78.21,113.37,0.88,0.12,797,0.7,10,0.8
+6989,2023,10,19,5,30,4.3,1.33,0.012,0.62,0,0,0,0,0,1.2,0,0,0,0,0.247,80.3,102,0.88,0.12,797,0.7,13,0.7
+6990,2023,10,19,6,30,4.8,1.3,0.012,0.62,7,103,7,0,0,1.3,7,103,0,7,0.248,77.9,90.25,0.88,0.12,798,0.6,17,0.7
+6991,2023,10,19,7,30,7.2,1.28,0.012,0.62,31,724,159,0,0,1.5,31,724,0,159,0.248,67.08,79.81,0.88,0.12,798,0.6,19,1
+6992,2023,10,19,8,30,10.7,1.28,0.012,0.62,40,896,349,0,0,1.7,40,896,0,349,0.247,53.86,69.82,0.88,0.12,798,0.6,11,1.5
+6993,2023,10,19,9,30,14,1.28,0.012,0.62,44,972,513,0,0,1.3,44,972,0,513,0.246,41.95,61.17,0.87,0.12,798,0.6,180,1.7
+6994,2023,10,19,10,30,16.9,1.28,0.011,0.62,46,1010,631,0,0,0,46,1010,0,631,0.244,31.74,54.62,0.86,0.12,798,0.6,354,1.8
+6995,2023,10,19,11,30,19.1,1.42,0.01,0.62,46,1027,691,0,0,-1.7,46,1027,0,691,0.242,24.37,51.06,0.85,0.12,798,0.6,350,1.8
+6996,2023,10,19,12,30,20.7,1.43,0.01,0.62,46,1027,691,0,0,-3.5,46,1027,0,691,0.241,19.43,51.12,0.85,0.12,797,0.6,346,1.7
+6997,2023,10,19,13,30,21.6,1.43,0.01,0.62,44,1013,628,0,0,-4.8,44,1013,0,628,0.24,16.59,54.81,0.85,0.12,797,0.6,342,1.5
+6998,2023,10,19,14,30,21.7,1.3,0.01,0.62,42,977,509,0,0,-5.9,42,977,0,509,0.239,15.17,61.46,0.86,0.12,796,0.6,330,1.1
+6999,2023,10,19,15,30,20.9,1.28,0.01,0.62,37,901,343,0,0,-6.6,37,901,0,343,0.238,15.18,70.17,0.86,0.12,796,0.6,290,0.6
+7000,2023,10,19,16,30,18.4,1.27,0.01,0.62,29,725,152,0,0,-2.1,29,725,0,152,0.238,24.79,80.2,0.86,0.12,796,0.6,216,0.5
+7001,2023,10,19,17,30,15.4,1.26,0.01,0.62,6,76,4,0,0,-1.6,6,76,0,4,0.237,31.18,91.15,0.86,0.12,796,0.6,172,0.9
+7002,2023,10,19,18,30,13.2,1.25,0.01,0.62,0,0,0,0,0,-3,0,0,0,0,0.237,32.48,102.45,0.86,0.12,796,0.6,174,1.1
+7003,2023,10,19,19,30,11.6,1.24,0.011,0.62,0,0,0,0,0,-3,0,0,0,0,0.237,35.91,113.83,0.86,0.12,796,0.6,178,1.1
+7004,2023,10,19,20,30,10.2,1.24,0.011,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.238,39.13,124.96,0.86,0.12,796,0.6,184,1.1
+7005,2023,10,19,21,30,9.1,1.23,0.011,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.238,41.83,135.28,0.86,0.12,796,0.6,189,1
+7006,2023,10,19,22,30,8.2,1.23,0.011,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.238,43.61,143.87,0.86,0.12,796,0.6,193,1
+7007,2023,10,19,23,30,7.6,1.23,0.011,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.238,44.88,149.05,0.86,0.12,796,0.6,195,1
+7008,2023,10,20,0,30,7.2,1.22,0.012,0.62,0,0,0,0,0,-3.9,0,0,0,0,0.239,45.16,148.97,0.87,0.12,796,0.6,197,0.9
+7009,2023,10,20,1,30,7,1.2,0.012,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.239,44.65,143.68,0.87,0.12,796,0.6,201,0.8
+7010,2023,10,20,2,30,6.9,1.18,0.012,0.62,0,0,0,0,0,-4.6,0,0,0,0,0.241,43.72,135.04,0.87,0.12,795,0.6,211,0.8
+7011,2023,10,20,3,30,6.7,1.16,0.013,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.243,43.29,124.69,0.87,0.12,795,0.5,222,0.9
+7012,2023,10,20,4,30,6.4,1.15,0.013,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.245,43.33,113.57,0.88,0.12,795,0.5,229,0.9
+7013,2023,10,20,5,30,6.1,1.13,0.014,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.248,43.64,102.2,0.88,0.12,795,0.5,232,1
+7014,2023,10,20,6,30,6.5,1.13,0.014,0.62,8,99,6,0,0,-5.5,8,99,0,6,0.25,42.05,90.93,0.88,0.12,795,0.5,233,0.9
+7015,2023,10,20,7,30,9.1,1.14,0.014,0.62,31,724,156,0,0,-3.8,31,724,0,156,0.252,39.86,80.03,0.87,0.12,796,0.5,232,1.1
+7016,2023,10,20,8,30,12.9,1.14,0.013,0.62,41,899,347,0,0,-3.9,41,899,0,347,0.253,30.74,70.07,0.87,0.12,796,0.5,234,1.4
+7017,2023,10,20,9,30,16.3,1.15,0.013,0.62,46,976,512,0,0,-4.8,46,976,0,512,0.253,23.09,61.46,0.87,0.12,796,0.5,238,1.8
+7018,2023,10,20,10,30,19,1.16,0.013,0.62,47,1015,630,0,0,-5,47,1015,0,630,0.253,19.29,54.95,0.86,0.12,795,0.5,237,2.1
+7019,2023,10,20,11,30,20.7,1.31,0.01,0.62,47,1033,691,0,0,-5,47,1033,0,691,0.254,17.26,51.41,0.86,0.12,794,0.5,234,2.4
+7020,2023,10,20,12,30,21.7,1.34,0.01,0.62,46,1029,687,0,0,-5.2,46,1029,0,687,0.253,16.09,51.48,0.86,0.12,794,0.6,234,2.5
+7021,2023,10,20,13,30,22.1,1.36,0.01,0.62,46,1012,624,0,0,-5.3,46,1012,0,624,0.253,15.58,55.16,0.87,0.12,793,0.6,234,2.5
+7022,2023,10,20,14,30,22,1.33,0.011,0.62,44,973,504,0,0,-5.3,44,973,0,504,0.253,15.58,61.78,0.87,0.12,792,0.6,231,2.4
+7023,2023,10,20,15,30,20.7,1.35,0.012,0.62,39,895,338,0,0,-5.3,39,895,0,338,0.253,16.89,70.47,0.87,0.12,792,0.6,224,1.7
+7024,2023,10,20,16,30,18,1.39,0.012,0.62,29,713,147,0,0,-0.2,29,713,0,147,0.253,29.23,80.48,0.87,0.12,792,0.6,212,1
+7025,2023,10,20,17,30,15.7,1.43,0.012,0.62,4,50,3,0,0,-0.5,4,50,0,3,0.254,33.21,91.42,0.87,0.12,792,0.6,190,0.8
+7026,2023,10,20,18,30,14.6,1.47,0.012,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.254,29.69,102.71,0.87,0.12,792,0.6,158,0.8
+7027,2023,10,20,19,30,13.4,1.5,0.013,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.253,31.27,114.1,0.87,0.12,792,0.6,129,0.8
+7028,2023,10,20,20,30,12.2,1.53,0.013,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.253,33.63,125.23,0.87,0.12,792,0.6,114,0.8
+7029,2023,10,20,21,30,11.3,1.56,0.013,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.253,35.4,135.58,0.87,0.12,791,0.6,111,0.8
+7030,2023,10,20,22,30,10.9,1.58,0.014,0.62,0,0,0,0,0,-3.8,0,0,0,0,0.253,35.35,144.2,0.88,0.12,791,0.7,111,0.7
+7031,2023,10,20,23,30,10.5,1.59,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.254,35.73,149.41,0.88,0.12,791,0.7,108,0.6
+7032,2023,10,21,0,30,10,1.58,0.015,0.62,0,0,0,0,0,-4.1,0,0,0,0,0.255,36.73,149.32,0.88,0.12,791,0.7,103,0.5
+7033,2023,10,21,1,30,9.4,1.57,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.256,37.98,143.97,0.89,0.12,791,0.8,96,0.4
+7034,2023,10,21,2,30,8.7,1.55,0.017,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.256,39.54,135.28,0.89,0.12,791,0.8,49,0.2
+7035,2023,10,21,3,30,7.8,1.52,0.018,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.257,41.62,124.9,0.89,0.12,790,0.8,163,0.2
+7036,2023,10,21,4,30,6.8,1.5,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.257,43.81,113.77,0.89,0.12,790,0.8,321,0.3
+7037,2023,10,21,5,30,6.1,1.48,0.02,0.62,0,0,0,0,0,-4.8,0,0,0,0,0.257,45.62,102.39,0.89,0.12,791,0.8,325,0.4
+7038,2023,10,21,6,30,6.4,1.47,0.022,0.62,8,80,6,0,0,-4.9,8,80,0,6,0.257,44.26,91.14,0.89,0.12,791,0.8,330,0.4
+7039,2023,10,21,7,30,8.6,1.45,0.023,0.62,34,671,148,0,0,-3.6,34,671,0,148,0.256,41.85,80.25,0.9,0.12,791,0.8,341,0.2
+7040,2023,10,21,8,30,11.7,1.44,0.025,0.62,47,854,335,0,0,-4,47,854,0,335,0.256,33.02,70.32,0.9,0.12,791,0.8,277,0.3
+7041,2023,10,21,9,30,14.9,1.43,0.027,0.62,55,931,496,0,0,-4.4,83,838,0,480,0.257,26.04,61.74,0.91,0.12,791,0.9,209,1.1
+7042,2023,10,21,10,30,18,1.44,0.028,0.62,59,972,613,0,0,-4.1,148,744,0,572,0.257,21.88,55.26,0.91,0.12,790,0.9,217,2.2
+7043,2023,10,21,11,30,20,1.54,0.026,0.62,61,987,672,0,0,-3.8,61,987,0,672,0.258,19.78,51.76,0.9,0.12,790,1,222,2.7
+7044,2023,10,21,12,30,21.1,1.57,0.028,0.62,62,982,669,0,0,-3.6,62,982,0,669,0.259,18.84,51.84,0.91,0.12,789,1,226,2.9
+7045,2023,10,21,13,30,21.7,1.59,0.03,0.62,61,959,604,0,8,-3.3,202,379,0,417,0.258,18.55,55.51,0.91,0.12,788,1.1,229,3
+7046,2023,10,21,14,30,21.5,1.54,0.032,0.62,57,912,484,0,0,-2.9,100,766,0,458,0.258,19.33,62.11,0.91,0.12,788,1.1,232,3
+7047,2023,10,21,15,30,20.2,1.55,0.033,0.62,49,822,320,0,0,-2.6,94,521,0,266,0.257,21.41,70.77,0.92,0.12,788,1.1,237,2.3
+7048,2023,10,21,16,30,17.1,1.55,0.035,0.62,36,611,134,2,3,0.8,81,118,29,100,0.257,33.23,80.76,0.92,0.12,788,1.1,251,1.4
+7049,2023,10,21,17,30,14.1,1.53,0.038,0.62,3,31,2,2,3,1.8,1,0,29,1,0.257,43.33,91.68,0.93,0.12,788,1.2,278,1.2
+7050,2023,10,21,18,30,12.6,1.5,0.043,0.62,0,0,0,0,5,0.5,0,0,0,0,0.257,43.48,102.96,0.94,0.12,788,1.2,309,1.6
+7051,2023,10,21,19,30,11.4,1.49,0.045,0.62,0,0,0,0,3,0.8,0,0,0,0,0.258,48.17,114.35,0.94,0.12,788,1.2,331,2.5
+7052,2023,10,21,20,30,9.8,1.52,0.042,0.62,0,0,0,0,8,2.3,0,0,0,0,0.258,59.57,125.5,0.93,0.12,789,1.2,343,2.8
+7053,2023,10,21,21,30,8.1,1.57,0.035,0.62,0,0,0,0,0,3.8,0,0,0,0,0.258,74.37,135.88,0.92,0.12,789,1.2,177,2
+7054,2023,10,21,22,30,7,1.56,0.034,0.62,0,0,0,0,0,4.4,0,0,0,0,0.258,83.78,144.53,0.93,0.12,789,1.2,19,1.2
+7055,2023,10,21,23,30,6.5,1.53,0.038,0.62,0,0,0,0,0,4.7,0,0,0,0,0.256,88.31,149.76,0.92,0.12,789,1.2,43,1
+7056,2023,10,22,0,30,6.2,1.54,0.037,0.62,0,0,0,0,5,4.8,0,0,0,0,0.254,90.59,149.66,0.91,0.12,789,1.2,64,0.9
+7057,2023,10,22,1,30,5.9,1.57,0.031,0.62,0,0,0,0,0,4.7,0,0,0,0,0.253,91.81,144.26,0.89,0.12,788,1.2,79,0.9
+7058,2023,10,22,2,30,5.8,1.57,0.029,0.62,0,0,0,0,0,4.4,0,0,0,0,0.254,90.78,135.52,0.89,0.12,788,1.1,87,0.7
+7059,2023,10,22,3,30,5.7,1.57,0.028,0.62,0,0,0,0,0,4.1,0,0,0,0,0.255,89.25,125.11,0.89,0.12,788,1.1,71,0.5
+7060,2023,10,22,4,30,5.5,1.57,0.027,0.62,0,0,0,0,0,3.7,0,0,0,0,0.256,88.45,113.96,0.89,0.12,788,1,36,0.4
+7061,2023,10,22,5,30,5.1,1.57,0.026,0.62,0,0,0,0,0,3.4,0,0,0,0,0.258,88.99,102.59,0.88,0.12,788,1,10,0.4
+7062,2023,10,22,6,30,5.4,1.57,0.026,0.62,4,41,3,0,0,3.1,4,41,0,3,0.259,85.33,91.34,0.88,0.12,789,1,8,0.4
+7063,2023,10,22,7,30,7.5,1.56,0.025,0.62,33,656,142,0,0,3,33,656,0,142,0.26,73.39,80.47,0.88,0.12,789,0.9,24,0.5
+7064,2023,10,22,8,30,11.2,1.55,0.025,0.62,46,850,329,0,0,2.9,46,850,0,329,0.261,56.76,70.57,0.88,0.12,789,0.9,159,0.4
+7065,2023,10,22,9,30,14.9,1.54,0.024,0.62,53,935,492,0,0,2.2,53,935,0,492,0.262,42.29,62.02,0.89,0.12,789,0.9,258,0.6
+7066,2023,10,22,10,30,17.4,1.52,0.023,0.62,56,979,609,0,0,-0.1,56,979,0,609,0.263,30.47,55.58,0.88,0.12,788,0.9,230,1.2
+7067,2023,10,22,11,30,18.6,1.61,0.021,0.62,56,999,670,0,0,-1.5,56,999,0,670,0.263,25.68,52.1,0.88,0.12,787,0.8,225,1.7
+7068,2023,10,22,12,30,19.4,1.57,0.021,0.62,56,1000,669,0,0,-2.4,56,1000,0,669,0.263,22.73,52.2,0.89,0.12,787,0.8,224,2.1
+7069,2023,10,22,13,30,19.7,1.53,0.022,0.62,56,979,606,0,0,-3.3,56,979,0,606,0.262,20.97,55.85,0.89,0.12,786,0.8,222,2.4
+7070,2023,10,22,14,30,19.5,1.39,0.024,0.62,53,935,486,0,0,-3.8,53,935,0,486,0.261,20.48,62.43,0.9,0.12,785,0.8,219,2.5
+7071,2023,10,22,15,30,18.4,1.39,0.025,0.62,46,848,321,0,0,-3.9,64,762,0,311,0.261,21.77,71.07,0.9,0.12,785,0.8,213,2.1
+7072,2023,10,22,16,30,15.9,1.39,0.025,0.62,34,644,134,3,8,-0.7,65,315,50,114,0.261,32.13,81.03,0.9,0.12,785,0.8,203,1.4
+7073,2023,10,22,17,30,13.3,1.37,0.026,0.62,3,34,2,0,0,0.2,3,34,0,2,0.262,40.59,91.94,0.9,0.12,785,0.9,189,1.2
+7074,2023,10,22,18,30,11.8,1.32,0.029,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,40.3,103.22,0.91,0.12,785,0.9,178,1.3
+7075,2023,10,22,19,30,10.7,1.27,0.031,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,43.25,114.61,0.91,0.12,785,0.9,173,1.4
+7076,2023,10,22,20,30,10.1,1.25,0.033,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.263,45.52,125.77,0.91,0.12,785,0.9,173,1.4
+7077,2023,10,22,21,30,9.7,1.26,0.033,0.62,0,0,0,0,8,-0.9,0,0,0,0,0.263,47.5,136.17,0.91,0.12,784,0.9,176,1.4
+7078,2023,10,22,22,30,9.3,1.3,0.033,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.262,48.97,144.86,0.91,0.12,784,0.9,180,1.4
+7079,2023,10,22,23,30,8.8,1.38,0.033,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.262,49.94,150.12,0.91,0.12,784,0.9,181,1.4
+7080,2023,10,23,0,30,8.3,1.48,0.033,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.261,50.89,149.99,0.91,0.12,784,0.9,178,1.4
+7081,2023,10,23,1,30,7.6,1.56,0.034,0.62,0,0,0,0,0,-1.7,0,0,0,0,0.26,51.84,144.55,0.91,0.12,783,1,176,1.4
+7082,2023,10,23,2,30,6.7,1.6,0.035,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.26,53.23,135.76,0.91,0.12,783,1,177,1.5
+7083,2023,10,23,3,30,6,1.58,0.039,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.26,54.41,125.32,0.92,0.12,783,1,178,1.5
+7084,2023,10,23,4,30,5.5,1.53,0.043,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.261,55.42,114.16,0.92,0.12,783,1,179,1.5
+7085,2023,10,23,5,30,5.1,1.46,0.047,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.262,56.3,102.78,0.93,0.12,783,1,180,1.5
+7086,2023,10,23,6,30,5.6,1.41,0.05,0.62,4,29,3,2,3,-3,1,7,25,1,0.261,53.99,91.55,0.92,0.12,784,1,181,1.5
+7087,2023,10,23,7,30,8,1.39,0.048,0.62,39,597,135,1,0,-2.5,52,451,14,125,0.26,47.59,80.7,0.92,0.12,784,1,186,2
+7088,2023,10,23,8,30,11.5,1.4,0.044,0.62,53,815,321,0,0,-2.9,53,815,0,321,0.258,36.51,70.82,0.91,0.12,784,0.9,197,2.9
+7089,2023,10,23,9,30,15.2,1.42,0.041,0.62,61,910,484,0,0,-3.2,83,824,0,466,0.256,28.08,62.3,0.9,0.12,784,0.9,207,3.8
+7090,2023,10,23,10,30,17.7,1.42,0.039,0.62,63,964,603,0,0,-2.5,63,964,0,603,0.254,25.2,55.9,0.9,0.12,784,0.8,211,4.7
+7091,2023,10,23,11,30,19,1.23,0.029,0.62,62,989,665,0,0,-1.9,62,989,0,665,0.253,24.3,52.45,0.9,0.12,784,0.8,212,5.4
+7092,2023,10,23,12,30,19.6,1.17,0.028,0.62,62,988,663,0,0,-1.9,113,836,0,621,0.253,23.28,52.55,0.9,0.12,783,0.9,213,5.7
+7093,2023,10,23,13,30,19.7,1.16,0.028,0.62,60,967,598,0,0,-2.1,63,933,0,582,0.252,22.94,56.2,0.91,0.12,783,0.9,213,5.7
+7094,2023,10,23,14,30,19.4,1.13,0.027,0.62,55,923,478,0,0,-2.2,55,923,0,478,0.253,23.18,62.74,0.91,0.12,783,0.9,213,5.6
+7095,2023,10,23,15,30,18.4,1.09,0.027,0.62,47,834,314,0,0,-2.4,61,755,0,302,0.253,24.31,71.36,0.91,0.12,783,0.9,215,5.1
+7096,2023,10,23,16,30,15.4,1.01,0.027,0.62,34,621,128,0,0,-2.3,41,330,0,91,0.254,29.66,81.3,0.91,0.12,783,0.9,219,3.4
+7097,2023,10,23,17,30,11.9,0.99,0.027,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.255,41.36,92.2,0.91,0.12,783,0.9,223,2.1
+7098,2023,10,23,18,30,10.1,0.99,0.026,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.257,46.61,103.46,0.9,0.12,784,0.9,226,1.9
+7099,2023,10,23,19,30,8.9,1.02,0.028,0.62,0,0,0,0,0,-1,0,0,0,0,0.258,49.79,114.86,0.9,0.12,784,0.8,229,1.8
+7100,2023,10,23,20,30,8,1.09,0.034,0.62,0,0,0,0,3,-1.3,0,0,0,0,0.258,51.93,126.03,0.9,0.12,785,0.8,234,1.6
+7101,2023,10,23,21,30,7.2,1.16,0.043,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.259,53.6,136.45,0.9,0.12,785,0.8,243,1.5
+7102,2023,10,23,22,30,6.6,1.24,0.051,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.26,54.79,145.18,0.9,0.12,785,0.7,260,1.3
+7103,2023,10,23,23,30,6,1.3,0.058,0.62,0,0,0,0,5,-1.9,0,0,0,0,0.261,56.95,150.47,0.9,0.12,785,0.7,282,1.1
+7104,2023,10,24,0,30,5.5,1.36,0.061,0.62,0,0,0,0,5,-1.6,0,0,0,0,0.261,60.19,150.33,0.9,0.12,786,0.7,306,0.9
+7105,2023,10,24,1,30,5.1,1.4,0.062,0.62,0,0,0,0,0,-1,0,0,0,0,0.262,64.78,144.83,0.9,0.12,786,0.8,331,0.8
+7106,2023,10,24,2,30,4.5,1.44,0.063,0.62,0,0,0,0,4,-0.3,0,0,0,0,0.263,71.22,136,0.9,0.12,786,0.8,351,0.7
+7107,2023,10,24,3,30,3.9,1.47,0.064,0.62,0,0,0,0,0,0.3,0,0,0,0,0.264,77.59,125.53,0.9,0.12,786,0.8,359,0.8
+7108,2023,10,24,4,30,3.3,1.5,0.067,0.62,0,0,0,0,0,0.9,0,0,0,0,0.265,84.2,114.36,0.9,0.12,787,0.8,359,1
+7109,2023,10,24,5,30,2.7,1.52,0.069,0.62,0,0,0,0,0,1.4,0,0,0,0,0.265,91.33,102.98,0.9,0.12,787,0.8,180,1.2
+7110,2023,10,24,6,30,2.9,1.52,0.069,0.62,3,23,2,0,0,1.9,3,23,0,2,0.265,93.08,91.75,0.91,0.12,787,0.8,4,1.4
+7111,2023,10,24,7,30,4.9,1.5,0.066,0.62,41,562,130,0,0,2.3,41,562,0,130,0.265,83.54,80.91,0.91,0.12,788,0.8,11,2
+7112,2023,10,24,8,30,8.1,1.47,0.061,0.62,58,792,315,0,5,2.7,190,65,0,211,0.264,68.94,71.06,0.91,0.12,788,0.8,14,2.2
+7113,2023,10,24,9,30,11.4,1.45,0.055,0.62,66,893,477,0,0,2.3,66,893,0,477,0.264,53.42,62.58,0.91,0.12,788,0.8,169,1.4
+7114,2023,10,24,10,30,13.9,1.43,0.052,0.62,66,955,597,0,7,0.7,195,508,0,477,0.263,40.6,56.22,0.91,0.12,788,0.8,285,1.3
+7115,2023,10,24,11,30,15.7,1.33,0.026,0.62,60,992,660,0,7,-0.9,247,428,0,506,0.263,32.03,52.79,0.9,0.12,787,0.8,238,2.3
+7116,2023,10,24,12,30,16.7,1.33,0.025,0.62,60,992,658,0,0,-2.1,120,806,0,606,0.263,27.6,52.9,0.9,0.12,786,0.8,227,3.2
+7117,2023,10,24,13,30,17.1,1.32,0.025,0.62,57,975,595,0,7,-2.8,168,620,0,510,0.263,25.48,56.53,0.9,0.12,786,0.8,223,3.8
+7118,2023,10,24,14,30,16.8,1.31,0.025,0.62,54,932,476,0,0,-3.4,54,932,0,476,0.264,24.87,63.06,0.9,0.12,786,0.8,222,3.9
+7119,2023,10,24,15,30,15.8,1.33,0.024,0.62,45,846,311,0,0,-4,45,846,0,311,0.264,25.43,71.64,0.9,0.12,786,0.8,222,3.3
+7120,2023,10,24,16,30,12.9,1.34,0.023,0.62,31,638,125,0,0,-3.6,31,638,0,125,0.264,31.53,81.56,0.9,0.12,786,0.7,214,1.9
+7121,2023,10,24,17,30,10,1.35,0.022,0.62,0,0,0,0,0,-1.4,0,0,0,0,0.263,45.14,92.45,0.89,0.12,786,0.7,201,1.2
+7122,2023,10,24,18,30,8.8,1.37,0.022,0.62,0,0,0,0,0,-2.4,0,0,0,0,0.261,45.21,103.71,0.9,0.12,786,0.7,192,1.3
+7123,2023,10,24,19,30,7.8,1.38,0.023,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.26,47.73,115.1,0.9,0.12,787,0.8,191,1.4
+7124,2023,10,24,20,30,6.8,1.39,0.024,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.26,50.62,126.28,0.9,0.12,787,0.8,194,1.4
+7125,2023,10,24,21,30,5.8,1.42,0.027,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.261,53.9,136.73,0.9,0.12,787,0.8,198,1.5
+7126,2023,10,24,22,30,5.1,1.47,0.032,0.62,0,0,0,0,0,-2.8,0,0,0,0,0.263,56.5,145.49,0.9,0.12,787,0.8,200,1.6
+7127,2023,10,24,23,30,4.5,1.53,0.038,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.264,58.8,150.81,0.9,0.12,787,0.8,200,1.6
+7128,2023,10,25,0,30,4,1.53,0.04,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.262,60.76,150.66,0.9,0.12,787,0.7,197,1.6
+7129,2023,10,25,1,30,3.6,1.47,0.033,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.259,62.28,145.11,0.9,0.12,787,0.7,191,1.6
+7130,2023,10,25,2,30,3.2,1.35,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.257,63.82,136.23,0.9,0.12,787,0.7,186,1.7
+7131,2023,10,25,3,30,2.8,1.25,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.257,65.11,125.74,0.89,0.12,786,0.7,187,1.7
+7132,2023,10,25,4,30,2.5,1.21,0.019,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.257,65.95,114.55,0.89,0.12,787,0.7,191,1.8
+7133,2023,10,25,5,30,2.1,1.21,0.02,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.257,67.25,103.17,0.9,0.12,787,0.7,194,1.8
+7134,2023,10,25,6,30,2.7,1.23,0.02,0.62,3,38,2,0,0,-3.4,3,38,0,2,0.256,64.15,91.95,0.9,0.12,787,0.7,193,1.9
+7135,2023,10,25,7,30,5.5,1.25,0.02,0.62,32,660,134,0,0,-3.1,32,660,0,134,0.257,53.8,81.14,0.9,0.12,787,0.7,193,2.6
+7136,2023,10,25,8,30,9.3,1.26,0.02,0.62,44,860,320,0,0,-2.7,44,860,0,320,0.256,42.82,71.31,0.9,0.12,787,0.7,204,4.1
+7137,2023,10,25,9,30,12.5,1.27,0.021,0.62,51,943,481,0,0,-3.4,51,943,0,481,0.255,32.8,62.86,0.9,0.12,787,0.7,216,5.4
+7138,2023,10,25,10,30,14.5,1.26,0.021,0.62,54,982,596,0,0,-4.3,54,982,0,596,0.254,27.08,56.53,0.9,0.12,787,0.8,219,6.1
+7139,2023,10,25,11,30,15.7,1.49,0.017,0.62,53,1002,654,0,0,-4.6,103,864,0,621,0.252,24.44,53.13,0.89,0.12,786,0.8,218,6.3
+7140,2023,10,25,12,30,16.5,1.48,0.016,0.62,53,1000,651,1,7,-4.9,208,519,18,519,0.251,22.77,53.25,0.9,0.12,786,0.9,219,6.4
+7141,2023,10,25,13,30,16.8,1.46,0.016,0.62,50,980,586,0,7,-5.1,200,505,0,476,0.249,21.93,56.86,0.9,0.12,785,0.9,219,6.4
+7142,2023,10,25,14,30,16.7,1.48,0.016,0.62,46,938,467,0,7,-5.3,210,321,0,354,0.249,21.74,63.36,0.9,0.12,785,0.9,218,6.3
+7143,2023,10,25,15,30,15.9,1.48,0.016,0.62,41,849,304,0,7,-5.4,137,326,0,238,0.249,22.63,71.93,0.9,0.12,785,0.9,215,5.8
+7144,2023,10,25,16,30,13.2,1.48,0.017,0.62,29,637,120,4,7,-5.2,65,45,57,71,0.251,27.49,81.82,0.9,0.12,785,0.9,208,4.2
+7145,2023,10,25,17,30,10.2,1.46,0.018,0.62,0,0,0,1,6,-3.9,0,0,14,0,0.252,36.75,92.7,0.91,0.12,785,0.9,201,3.2
+7146,2023,10,25,18,30,8.8,1.44,0.019,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.254,41.59,103.95,0.91,0.12,785,0.9,195,3.3
+7147,2023,10,25,19,30,7.7,1.42,0.02,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.257,45.9,115.34,0.91,0.12,785,0.9,190,3
+7148,2023,10,25,20,30,6.7,1.39,0.02,0.62,0,0,0,0,7,-2.9,0,0,0,0,0.259,50.24,126.53,0.91,0.12,785,1,188,2.7
+7149,2023,10,25,21,30,6.1,1.34,0.022,0.62,0,0,0,0,8,-2.9,0,0,0,0,0.26,52.64,137,0.92,0.12,784,1,188,2.6
+7150,2023,10,25,22,30,5.6,1.3,0.023,0.62,0,0,0,0,8,-2.9,0,0,0,0,0.261,54.5,145.8,0.92,0.12,784,1,190,2.6
+7151,2023,10,25,23,30,4.9,1.26,0.024,0.62,0,0,0,0,0,-2.9,0,0,0,0,0.261,57.11,151.15,0.92,0.12,784,1.1,192,2.7
+7152,2023,10,26,0,30,4.3,1.23,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.261,59.2,150.99,0.92,0.12,784,1.1,193,2.8
+7153,2023,10,26,1,30,3.7,1.19,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.262,61.1,145.39,0.92,0.12,784,1.1,194,2.8
+7154,2023,10,26,2,30,3.2,1.14,0.034,0.62,0,0,0,0,0,-3.3,0,0,0,0,0.263,62.57,136.47,0.93,0.12,784,1.2,193,2.8
+7155,2023,10,26,3,30,3,1.13,0.043,0.62,0,0,0,0,0,-3.4,0,0,0,0,0.265,63.02,125.95,0.94,0.12,784,1.2,194,2.8
+7156,2023,10,26,4,30,3.1,1.14,0.058,0.62,0,0,0,0,5,-3.2,0,0,0,0,0.267,63.26,114.75,0.95,0.12,784,1.3,195,2.9
+7157,2023,10,26,5,30,3.2,1.15,0.08,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.269,65.4,103.37,0.96,0.12,784,1.3,197,3.1
+7158,2023,10,26,6,30,3.5,1.15,0.094,0.62,0,0,0,2,5,-1.9,0,0,29,0,0.271,67.98,92.16,0.96,0.12,784,1.2,200,3.4
+7159,2023,10,26,7,30,4.5,1.17,0.102,0.62,49,436,114,2,5,-1,38,6,36,39,0.273,67.36,81.36,0.96,0.12,784,1.2,208,4
+7160,2023,10,26,8,30,6.1,1.17,0.122,0.62,78,667,289,0,4,0.1,11,0,0,11,0.274,65.25,71.56,0.97,0.12,785,1.2,224,4.9
+7161,2023,10,26,9,30,7.3,1.16,0.125,0.62,91,793,449,0,5,1,49,0,0,49,0.275,64.27,63.14,0.97,0.12,785,1.1,248,5.2
+7162,2023,10,26,10,30,7.8,1.15,0.103,0.62,86,889,572,0,4,1,75,0,0,75,0.277,62.1,56.84,0.96,0.12,786,1,268,5.3
+7163,2023,10,26,11,30,8.3,1.18,0.058,0.62,74,950,640,0,5,-0.2,65,0,0,65,0.279,55.21,53.46,0.94,0.12,787,0.9,271,5.7
+7164,2023,10,26,12,30,8.9,1.23,0.048,0.62,68,974,646,0,5,-2.4,50,0,0,50,0.281,44.96,53.59,0.92,0.12,787,0.7,263,6.4
+7165,2023,10,26,13,30,9.2,1.29,0.03,0.62,57,987,592,0,5,-6.2,55,1,0,56,0.284,33.15,57.19,0.9,0.12,788,0.5,261,7
+7166,2023,10,26,14,30,8.5,1.28,0.018,0.62,47,973,479,0,5,-11,86,1,0,86,0.286,23.9,63.67,0.88,0.12,788,0.3,272,6.8
+7167,2023,10,26,15,30,6.8,1.21,0.015,0.62,40,896,314,0,4,-14.4,105,6,0,107,0.288,20.41,72.2,0.88,0.12,789,0.3,288,5.6
+7168,2023,10,26,16,30,3.9,1.16,0.015,0.62,29,695,125,4,4,-15.3,58,56,50,66,0.29,23.2,82.08,0.88,0.12,790,0.2,305,3.4
+7169,2023,10,26,17,30,0.9,1.14,0.015,0.62,0,0,0,1,4,-11.8,0,0,14,0,0.291,38.24,92.94,0.88,0.11,791,0.2,326,1.5
+7170,2023,10,26,18,30,-0.6,1.15,0.016,0.62,0,0,0,0,0,-10.6,0,0,0,0,0.292,46.77,104.18,0.89,0.11,791,0.3,173,1.2
+7171,2023,10,26,19,30,-1.8,1.16,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.294,49.58,115.58,0.89,0.11,792,0.3,15,1.3
+7172,2023,10,26,20,30,-3,1.15,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.295,54.86,126.78,0.89,0.11,792,0.3,26,1.3
+7173,2023,10,26,21,30,-4,1.14,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.297,59.72,137.27,0.89,0.11,792,0.3,32,1.2
+7174,2023,10,26,22,30,-4.7,1.17,0.016,0.62,0,0,0,0,0,-10.7,0,0,0,0,0.297,62.95,146.11,0.89,0.11,792,0.3,36,1.1
+7175,2023,10,26,23,30,-5.3,1.19,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.297,65.15,151.49,0.89,0.11,792,0.3,40,1.1
+7176,2023,10,27,0,30,-5.7,1.2,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.296,66.3,151.32,0.9,0.11,791,0.3,42,1
+7177,2023,10,27,1,30,-6.1,1.22,0.016,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,67.47,145.67,0.9,0.11,791,0.3,42,1
+7178,2023,10,27,2,30,-6.4,1.22,0.016,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.296,68.35,136.7,0.9,0.11,791,0.3,40,0.9
+7179,2023,10,27,3,30,-6.6,1.22,0.017,0.62,0,0,0,0,0,-11.2,0,0,0,0,0.296,69.64,126.15,0.9,0.11,791,0.3,40,0.9
+7180,2023,10,27,4,30,-6.8,1.22,0.017,0.62,0,0,0,0,0,-11.1,0,0,0,0,0.296,71.25,114.94,0.9,0.11,791,0.4,44,0.9
+7181,2023,10,27,5,30,-6.9,1.21,0.018,0.62,0,0,0,0,0,-11,0,0,0,0,0.297,72.56,103.57,0.91,0.11,792,0.4,47,0.8
+7182,2023,10,27,6,30,-6.3,1.19,0.019,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.299,70.16,92.36,0.91,0.11,792,0.4,44,1.1
+7183,2023,10,27,7,30,-4.1,1.18,0.021,0.62,32,669,130,0,0,-10.5,33,617,0,123,0.301,61.24,81.57,0.91,0.11,792,0.4,50,1.3
+7184,2023,10,27,8,30,-1,1.2,0.021,0.62,45,875,318,0,4,-10.6,169,107,0,202,0.302,48.07,71.81,0.91,0.11,792,0.4,103,0.9
+7185,2023,10,27,9,30,2.2,1.2,0.021,0.62,52,962,482,0,4,-11,208,337,0,359,0.302,37.03,63.42,0.91,0.11,791,0.4,186,1.4
+7186,2023,10,27,10,30,5.2,1.19,0.02,0.62,54,1005,599,0,0,-11,103,865,0,572,0.301,30.07,57.15,0.91,0.11,791,0.4,228,2.9
+7187,2023,10,27,11,30,7.5,1.22,0.019,0.62,55,1024,660,0,0,-10.4,55,1024,0,660,0.299,26.89,53.8,0.9,0.11,790,0.4,233,4.2
+7188,2023,10,27,12,30,8.8,1.24,0.018,0.62,54,1024,657,0,0,-9.8,54,1024,0,657,0.298,25.69,53.93,0.9,0.11,790,0.4,236,4.8
+7189,2023,10,27,13,30,9.4,1.23,0.019,0.62,54,1000,591,0,0,-9.5,54,1000,0,591,0.297,25.36,57.52,0.91,0.11,789,0.5,239,4.9
+7190,2023,10,27,14,30,9.4,1.16,0.021,0.62,51,947,467,0,0,-9.2,51,947,0,467,0.297,25.88,63.97,0.91,0.11,789,0.5,239,4.5
+7191,2023,10,27,15,30,8.5,1.16,0.023,0.62,45,849,301,0,0,-9,54,806,0,297,0.297,28.08,72.48,0.92,0.11,789,0.5,237,3.3
+7192,2023,10,27,16,30,5.9,1.15,0.026,0.62,32,609,113,1,0,-7.6,48,383,21,99,0.297,37.26,82.33,0.93,0.11,789,0.6,232,1.7
+7193,2023,10,27,17,30,3.9,1.15,0.029,0.62,0,0,0,0,7,-5.5,0,0,7,0,0.296,50.3,93.18,0.93,0.11,789,0.6,223,1
+7194,2023,10,27,18,30,3.6,1.16,0.032,0.62,0,0,0,0,7,-6.3,0,0,0,0,0.295,48.47,104.41,0.93,0.11,789,0.6,221,0.8
+7195,2023,10,27,19,30,3.1,1.19,0.035,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.294,49.6,115.81,0.94,0.11,789,0.7,251,0.5
+7196,2023,10,27,20,30,2.4,1.2,0.042,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,51.95,127.02,0.95,0.11,789,0.8,312,0.4
+7197,2023,10,27,21,30,1.8,1.17,0.055,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.293,54.22,137.54,0.96,0.11,789,0.8,177,0.5
+7198,2023,10,27,22,30,1.4,1.16,0.059,0.62,0,0,0,0,7,-6,0,0,0,0,0.292,57.96,146.41,0.96,0.11,788,0.9,12,0.5
+7199,2023,10,27,23,30,1,1.15,0.065,0.62,0,0,0,0,7,-5.8,0,0,0,0,0.292,60.27,151.83,0.96,0.11,788,0.9,15,0.7
+7200,2023,10,28,0,30,0.5,1.15,0.067,0.62,0,0,0,0,6,-6.1,0,0,0,0,0.292,61.34,151.64,0.96,0.11,788,0.9,11,0.9
+7201,2023,10,28,1,30,0,1.14,0.063,0.62,0,0,0,0,7,-6.6,0,0,0,0,0.292,61.05,145.94,0.95,0.11,788,0.8,7,1.3
+7202,2023,10,28,2,30,-0.8,1.14,0.059,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.292,61.9,136.93,0.95,0.11,788,0.8,8,1.6
+7203,2023,10,28,3,30,-1.6,1.13,0.056,0.62,0,0,0,0,8,-7.8,0,0,29,0,0.291,62.51,126.36,0.95,0.11,788,0.8,13,1.7
+7204,2023,10,28,4,30,-2.1,1.12,0.055,0.62,0,0,0,0,8,-8.2,0,0,0,0,0.291,63.13,115.14,0.95,0.11,788,0.8,19,2
+7205,2023,10,28,5,30,-2.4,1.11,0.057,0.62,0,0,0,0,4,-8.2,0,0,0,0,0.293,64.56,103.76,0.95,0.11,788,0.7,24,2.3
+7206,2023,10,28,6,30,-2.5,1.1,0.055,0.62,0,0,0,1,4,-8,0,0,14,0,0.296,65.7,92.57,0.94,0.11,789,0.7,31,2.8
+7207,2023,10,28,7,30,-1.8,1.1,0.047,0.62,37,570,118,3,4,-7.9,11,0,43,11,0.296,63.25,81.8,0.94,0.11,789,0.7,37,3.6
+7208,2023,10,28,8,30,-0.5,1.1,0.041,0.62,52,817,304,0,5,-7.6,17,0,0,17,0.294,58.66,72.05,0.93,0.11,790,0.6,40,4
+7209,2023,10,28,9,30,1,1.11,0.038,0.62,60,917,466,0,5,-8.1,135,0,0,135,0.29,50.74,63.7,0.93,0.11,790,0.6,38,3.8
+7210,2023,10,28,10,30,2.2,1.12,0.037,0.62,64,967,584,0,7,-8.3,197,15,0,205,0.285,45.85,57.46,0.93,0.11,789,0.6,29,3.4
+7211,2023,10,28,11,30,3.1,1.19,0.033,0.62,64,989,644,0,7,-8.4,223,24,0,237,0.284,42.68,54.13,0.93,0.11,789,0.6,18,3.2
+7212,2023,10,28,12,30,3.5,1.2,0.033,0.62,65,988,642,0,7,-8.6,160,4,0,162,0.285,40.7,54.26,0.93,0.11,789,0.6,11,3.2
+7213,2023,10,28,13,30,3.4,1.21,0.033,0.62,62,967,577,0,7,-9,162,6,0,165,0.286,39.72,57.84,0.93,0.11,789,0.6,12,3.2
+7214,2023,10,28,14,30,3,1.22,0.033,0.62,57,921,457,0,6,-9.4,108,10,0,112,0.288,39.6,64.26,0.93,0.11,789,0.6,20,3.2
+7215,2023,10,28,15,30,2.1,1.23,0.034,0.62,49,822,293,0,7,-9.8,95,29,0,104,0.29,41.13,72.75,0.93,0.11,789,0.6,31,3.3
+7216,2023,10,28,16,30,0.7,1.24,0.035,0.62,33,581,108,5,7,-9.9,41,110,71,55,0.292,44.83,82.57,0.93,0.11,789,0.5,40,3.4
+7217,2023,10,28,17,30,-0.8,1.24,0.037,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.296,50.7,93.41,0.94,0.11,790,0.5,45,3.4
+7218,2023,10,28,18,30,-2,1.25,0.039,0.62,0,0,0,0,7,-9.7,0,0,0,0,0.298,55.71,104.64,0.94,0.11,791,0.5,45,3.5
+7219,2023,10,28,19,30,-3,1.26,0.04,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.3,58.91,116.03,0.94,0.11,791,0.5,42,3.5
+7220,2023,10,28,20,30,-3.8,1.26,0.041,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.3,60.87,127.25,0.94,0.11,791,0.5,38,3.3
+7221,2023,10,28,21,30,-4.5,1.26,0.042,0.62,0,0,0,0,4,-10.6,0,0,0,0,0.299,62.43,137.79,0.94,0.11,791,0.5,33,3.2
+7222,2023,10,28,22,30,-5.2,1.27,0.041,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.296,64.23,146.71,0.94,0.11,792,0.5,27,3.1
+7223,2023,10,28,23,30,-5.9,1.28,0.039,0.62,0,0,0,0,4,-11.2,0,0,0,0,0.293,65.91,152.16,0.94,0.11,792,0.4,21,3.3
+7224,2023,10,29,0,30,-6.5,1.28,0.039,0.62,0,0,0,0,0,-11.6,0,0,0,0,0.29,67.05,151.96,0.94,0.11,792,0.4,19,3.7
+7225,2023,10,29,1,30,-6.8,1.28,0.038,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.289,66.99,146.21,0.94,0.11,792,0.4,20,4.1
+7226,2023,10,29,2,30,-6.9,1.27,0.039,0.62,0,0,0,0,0,-12.1,0,0,0,0,0.289,66.56,137.16,0.94,0.11,792,0.4,22,4.6
+7227,2023,10,29,3,30,-6.9,1.25,0.04,0.62,0,0,0,0,0,-12.2,0,0,0,0,0.289,66.13,126.56,0.94,0.11,793,0.4,24,5
+7228,2023,10,29,4,30,-6.8,1.23,0.041,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.289,65.01,115.33,0.94,0.11,793,0.4,26,5.3
+7229,2023,10,29,5,30,-6.8,1.21,0.041,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.29,63.77,103.96,0.94,0.11,794,0.4,29,5.6
+7230,2023,10,29,6,30,-6.7,1.21,0.037,0.62,0,0,0,0,0,-13,0,0,0,0,0.292,61.09,92.77,0.93,0.11,795,0.4,32,6
+7231,2023,10,29,7,30,-6,1.2,0.032,0.62,34,643,123,0,0,-13.5,34,643,0,123,0.292,55.29,82.01,0.93,0.11,796,0.3,35,6.5
+7232,2023,10,29,8,30,-4.6,1.19,0.026,0.62,46,875,312,0,0,-14.3,46,875,0,312,0.292,46.62,72.3,0.92,0.11,796,0.3,37,6.9
+7233,2023,10,29,9,30,-3.3,1.18,0.022,0.62,51,970,477,0,0,-15,51,970,0,477,0.292,40.11,63.97,0.91,0.11,797,0.3,36,6.8
+7234,2023,10,29,10,30,-2.2,1.2,0.018,0.62,54,1020,598,0,0,-15.2,54,1020,0,598,0.295,36.18,57.76,0.91,0.11,797,0.3,33,6.4
+7235,2023,10,29,11,30,-1.3,1.18,0.019,0.62,55,1047,664,0,0,-15.4,55,1047,0,664,0.301,33.32,54.45,0.91,0.11,797,0.2,31,6
+7236,2023,10,29,12,30,-0.7,1.2,0.018,0.62,54,1048,661,0,0,-15.6,104,911,0,632,0.305,31.3,54.59,0.9,0.11,797,0.2,30,5.7
+7237,2023,10,29,13,30,-0.4,1.22,0.016,0.62,51,1031,595,0,0,-15.9,90,915,0,573,0.305,29.94,58.15,0.89,0.11,796,0.2,29,5.3
+7238,2023,10,29,14,30,-0.6,1.24,0.015,0.62,46,989,471,0,0,-16.3,46,989,0,471,0.301,29.47,64.56,0.89,0.11,797,0.2,29,4.9
+7239,2023,10,29,15,30,-1.4,1.26,0.015,0.62,40,901,303,0,0,-16.8,40,901,0,303,0.297,29.98,73.01,0.89,0.11,797,0.2,30,4.3
+7240,2023,10,29,16,30,-3.9,1.27,0.014,0.62,27,680,112,0,0,-17.3,27,680,0,112,0.293,34.64,82.81,0.89,0.11,797,0.2,33,2.8
+7241,2023,10,29,17,30,-6.6,1.28,0.014,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.289,46.58,93.64,0.89,0.12,798,0.2,40,1.4
+7242,2023,10,29,18,30,-7.6,1.3,0.014,0.62,0,0,0,0,0,-16,0,0,0,0,0.285,50.89,104.86,0.89,0.12,798,0.2,48,1.2
+7243,2023,10,29,19,30,-7.9,1.31,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.282,51.86,116.25,0.89,0.12,798,0.2,57,1.1
+7244,2023,10,29,20,30,-8,1.32,0.013,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.281,52.3,127.48,0.89,0.12,799,0.2,69,1
+7245,2023,10,29,21,30,-8.1,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,53.05,138.05,0.89,0.12,799,0.2,83,0.9
+7246,2023,10,29,22,30,-8,1.33,0.013,0.62,0,0,0,0,0,-16,0,0,0,0,0.279,52.46,147,0.89,0.12,799,0.2,97,0.8
+7247,2023,10,29,23,30,-7.9,1.32,0.013,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.279,51.39,152.49,0.89,0.12,798,0.2,112,0.6
+7248,2023,10,30,0,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,50.92,152.28,0.89,0.12,798,0.2,134,0.4
+7249,2023,10,30,1,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.08,146.48,0.89,0.12,798,0.2,166,0.3
+7250,2023,10,30,2,30,-7.9,1.3,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.02,137.39,0.88,0.12,798,0.2,193,0.3
+7251,2023,10,30,3,30,-7.9,1.28,0.012,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28,51.76,126.77,0.89,0.12,797,0.2,206,0.3
+7252,2023,10,30,4,30,-7.8,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.39,115.53,0.89,0.12,797,0.2,206,0.3
+7253,2023,10,30,5,30,-7.8,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.42,104.15,0.89,0.12,797,0.2,202,0.3
+7254,2023,10,30,6,30,-7.2,1.27,0.012,0.62,0,0,0,0,0,-15.7,0,0,0,0,0.28,50.67,92.98,0.89,0.12,797,0.2,207,0.4
+7255,2023,10,30,7,30,-5.2,1.27,0.012,0.62,28,704,123,0,0,-16.9,28,704,0,123,0.28,39.42,82.23,0.89,0.12,798,0.2,232,0.8
+7256,2023,10,30,8,30,-2.2,1.27,0.012,0.62,38,897,307,0,0,-18,38,897,0,307,0.279,28.71,72.54,0.89,0.12,798,0.3,265,1.4
+7257,2023,10,30,9,30,0.2,1.28,0.012,0.62,44,982,471,0,0,-18.3,44,982,0,471,0.277,23.47,64.25,0.89,0.12,798,0.3,284,1.9
+7258,2023,10,30,10,30,2.1,1.28,0.012,0.62,47,1023,588,0,0,-18.3,47,1023,0,588,0.275,20.48,58.07,0.89,0.12,798,0.3,291,2.1
+7259,2023,10,30,11,30,3.7,1.28,0.012,0.62,49,1041,649,0,0,-18.1,49,1041,0,649,0.272,18.65,54.78,0.89,0.12,797,0.3,294,2.2
+7260,2023,10,30,12,30,4.8,1.29,0.012,0.62,48,1041,646,0,0,-17.8,48,1041,0,646,0.269,17.69,54.92,0.89,0.12,796,0.3,298,2.3
+7261,2023,10,30,13,30,5.4,1.29,0.011,0.62,47,1022,581,0,0,-17.3,47,1022,0,581,0.266,17.66,58.47,0.89,0.12,796,0.3,304,2.3
+7262,2023,10,30,14,30,5.4,1.25,0.012,0.62,43,976,458,0,0,-16.8,43,976,0,458,0.265,18.49,64.84,0.89,0.12,796,0.3,314,2.2
+7263,2023,10,30,15,30,3.9,1.25,0.012,0.62,37,883,291,0,0,-16.2,37,883,0,291,0.264,21.53,73.28,0.89,0.12,796,0.4,328,1.5
+7264,2023,10,30,16,30,1,1.25,0.012,0.62,26,652,105,0,0,-11.6,26,652,0,105,0.264,38.57,83.05,0.89,0.12,796,0.4,172,0.9
+7265,2023,10,30,17,30,-1.2,1.26,0.012,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.263,36.57,93.87,0.89,0.11,796,0.4,17,1
+7266,2023,10,30,18,30,-2.2,1.25,0.011,0.62,0,0,0,0,0,-14.7,0,0,0,0,0.262,37.92,105.08,0.88,0.11,797,0.4,33,1.1
+7267,2023,10,30,19,30,-2.7,1.24,0.011,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.261,40.08,116.47,0.88,0.11,797,0.4,43,1
+7268,2023,10,30,20,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.259,41.44,127.71,0.88,0.11,797,0.4,52,0.9
+7269,2023,10,30,21,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,41.49,138.29,0.89,0.11,798,0.4,60,0.7
+7270,2023,10,30,22,30,-3.1,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.02,147.28,0.89,0.11,798,0.4,83,0.5
+7271,2023,10,30,23,30,-3.3,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.77,152.81,0.89,0.11,798,0.4,129,0.4
+7272,2023,10,31,0,30,-3.4,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.257,42.87,152.59,0.89,0.11,797,0.4,166,0.5
+7273,2023,10,31,1,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.258,43.28,146.75,0.89,0.11,798,0.4,179,0.5
+7274,2023,10,31,2,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,43.07,137.61,0.89,0.11,798,0.4,182,0.5
+7275,2023,10,31,3,30,-3.7,1.21,0.011,0.62,0,0,0,0,0,-14.2,0,0,0,0,0.259,43.92,126.97,0.89,0.11,798,0.4,186,0.6
+7276,2023,10,31,4,30,-4,1.21,0.011,0.62,0,0,0,0,0,-14.1,0,0,0,0,0.259,45.27,115.72,0.89,0.11,798,0.4,191,0.8
+7277,2023,10,31,5,30,-4.3,1.21,0.01,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.259,47.06,104.35,0.89,0.11,798,0.5,195,0.9
+7278,2023,10,31,6,30,-4,1.21,0.01,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.258,46.38,93.18,0.89,0.11,798,0.5,199,0.9
+7279,2023,10,31,7,30,-2.1,1.21,0.01,0.62,26,664,113,0,0,-12.8,26,664,0,113,0.258,43.83,82.45,0.89,0.11,799,0.5,206,1.5
+7280,2023,10,31,8,30,0.8,1.21,0.01,0.62,36,877,295,0,0,-14.2,36,877,0,295,0.257,31.53,72.79,0.89,0.11,799,0.5,221,2.3
+7281,2023,10,31,9,30,3.1,1.22,0.01,0.62,40,964,455,0,0,-14.2,40,964,0,455,0.255,26.82,64.52,0.89,0.11,799,0.5,236,2.5
+7282,2023,10,31,10,30,4.7,1.23,0.01,0.62,44,1005,571,0,0,-14,44,1005,0,571,0.254,24.44,58.37,0.89,0.11,799,0.5,243,2.5
+7283,2023,10,31,11,30,6.1,1.23,0.01,0.62,46,1023,631,0,0,-13.8,46,1023,0,631,0.253,22.5,55.1,0.9,0.11,798,0.5,249,2.4
+7284,2023,10,31,12,30,7.2,1.24,0.01,0.62,45,1022,628,0,0,-13.5,45,1022,0,628,0.251,21.39,55.24,0.9,0.11,798,0.5,253,2.2
+7285,2023,10,31,13,30,7.8,1.25,0.01,0.62,44,1003,564,0,0,-13.1,44,1003,0,564,0.248,21.21,58.77,0.9,0.11,797,0.5,252,2
+7286,2023,10,31,14,30,7.9,1.26,0.01,0.62,40,960,444,0,0,-12.7,40,960,0,444,0.246,21.79,65.13,0.9,0.11,797,0.5,240,1.6
+7287,2023,10,31,15,30,6.2,1.26,0.01,0.62,35,867,281,0,0,-12.2,35,867,0,281,0.245,25.51,73.53,0.9,0.11,797,0.5,214,1.2
+7288,2023,10,31,16,30,2.8,1.25,0.011,0.62,25,633,99,0,0,-8.1,25,633,0,99,0.245,44.51,83.29,0.9,0.11,796,0.5,191,1.1
+7289,2023,10,31,17,30,2.3,1.09,0.027,0.61,0,0,0,0,7,-7.4,0,0,0,0,0.309,48.66,94.13,0.95,0.11,789,0.6,285,0.9
+7290,2023,10,31,18,30,1.8,1.09,0.03,0.61,0,0,0,0,6,-7.3,0,0,0,0,0.309,51.08,105.33,0.95,0.11,789,0.7,295,1
+7291,2023,10,31,19,30,1.3,1.1,0.032,0.61,0,0,0,0,6,-6.9,0,0,0,0,0.31,54.48,116.72,0.95,0.11,790,0.8,310,1.3
+7292,2023,10,31,20,30,0.5,1.11,0.029,0.61,0,0,0,0,6,-6.4,0,0,0,0,0.311,60,127.97,0.94,0.11,790,0.8,320,1.5
+7293,2023,10,31,21,30,-0.2,1.13,0.027,0.61,0,0,0,0,7,-5.6,0,0,0,0,0.313,67.13,138.58,0.94,0.11,790,0.9,305,1.2
+7294,2023,10,31,22,30,-0.9,1.11,0.027,0.61,0,0,0,0,7,-4.6,0,0,0,0,0.315,76.05,147.62,0.94,0.11,790,0.9,267,0.9
+7295,2023,10,31,23,30,-1.5,1.11,0.028,0.61,0,0,0,0,7,-4.5,0,0,0,0,0.316,79.76,153.19,0.93,0.11,790,0.8,246,0.9
+7296,2018,11,1,0,30,-1.9,1.14,0.028,0.61,0,0,0,0,4,-4.3,0,0,0,0,0.315,83.55,152.97,0.93,0.11,790,0.8,251,0.8
+7297,2018,11,1,1,30,-2.3,1.17,0.026,0.61,0,0,0,0,4,-4.3,0,0,0,0,0.313,86.43,147.07,0.93,0.11,790,0.8,275,0.7
+7298,2018,11,1,2,30,-2.6,1.18,0.024,0.61,0,0,0,0,4,-4.3,0,0,0,0,0.31,88.4,137.88,0.92,0.11,790,0.7,302,0.8
+7299,2018,11,1,3,30,-2.7,1.18,0.022,0.61,0,0,0,0,0,-4.2,0,0,0,0,0.308,89.41,127.21,0.92,0.11,790,0.7,314,0.9
+7300,2018,11,1,4,30,-2.8,1.16,0.021,0.61,0,0,0,0,0,-4,0,0,0,0,0.306,91.61,115.95,0.92,0.11,790,0.7,317,0.9
+7301,2018,11,1,5,30,-2.9,1.13,0.02,0.61,0,0,0,0,4,-3.8,0,0,0,0,0.304,93.51,104.58,0.92,0.11,790,0.7,316,0.9
+7302,2018,11,1,6,30,-2.5,1.12,0.018,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.303,91.41,93.43,0.92,0.11,790,0.7,308,0.7
+7303,2018,11,1,7,30,-0.4,1.12,0.017,0.61,28,614,106,2,0,-3.4,37,462,29,96,0.301,80.3,82.72,0.92,0.11,790,0.7,302,1
+7304,2018,11,1,8,30,2.6,1.12,0.016,0.61,41,837,284,0,4,-2.4,142,108,0,173,0.298,69.86,73.09,0.93,0.11,791,0.8,312,2.3
+7305,2018,11,1,9,30,5,1.14,0.016,0.61,47,929,442,0,0,-1.4,156,493,0,366,0.295,63.37,64.85,0.93,0.11,791,0.8,324,3.4
+7306,2018,11,1,10,30,6.5,1.17,0.017,0.61,53,968,555,1,7,-1.5,252,74,43,290,0.293,56.6,58.73,0.94,0.11,791,0.9,328,3.7
+7307,2018,11,1,11,30,7.3,1.22,0.02,0.61,55,983,612,0,7,-2.1,248,145,0,330,0.292,51.31,55.48,0.94,0.11,791,0.9,328,3.8
+7308,2018,11,1,12,30,7.9,1.23,0.019,0.61,54,984,610,0,4,-2.7,222,28,0,238,0.289,47.15,55.62,0.94,0.11,791,0.9,326,3.9
+7309,2018,11,1,13,30,8.3,1.21,0.019,0.61,52,964,546,0,0,-3.2,90,832,0,517,0.287,44.24,59.14,0.94,0.11,791,0.9,322,3.9
+7310,2018,11,1,14,30,8.4,1.19,0.017,0.61,46,919,428,0,4,-3.7,176,134,0,232,0.284,42.3,65.46,0.94,0.11,791,0.9,317,3.9
+7311,2018,11,1,15,30,8,1.22,0.016,0.61,40,824,269,2,4,-4.1,104,15,29,108,0.282,42.2,73.84,0.94,0.11,791,0.9,317,3.4
+7312,2018,11,1,16,30,5.7,1.25,0.015,0.61,26,577,91,7,4,-3.5,18,0,100,18,0.281,51.7,83.56,0.94,0.11,791,0.9,316,2.2
+7313,2018,11,1,17,30,3.5,1.26,0.015,0.61,0,0,0,0,4,-2.8,0,0,0,0,0.28,63.52,94.34,0.93,0.11,792,0.9,313,1.4
+7314,2018,11,1,18,30,2.9,1.26,0.016,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.279,66.54,105.53,0.93,0.11,792,1,305,1.3
+7315,2018,11,1,19,30,2.6,1.26,0.017,0.61,0,0,0,0,7,-2.3,0,0,0,0,0.276,70.12,116.92,0.93,0.11,793,1.1,298,1.2
+7316,2018,11,1,20,30,2.2,1.27,0.016,0.61,0,0,0,0,7,-2,0,0,0,0,0.271,73.83,128.18,0.93,0.11,793,1.1,293,1
+7317,2018,11,1,21,30,1.8,1.31,0.014,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.266,77.55,138.82,0.92,0.11,793,1.1,282,0.9
+7318,2018,11,1,22,30,1.4,1.34,0.013,0.61,0,0,0,0,4,-1.4,0,0,0,0,0.262,81.52,147.89,0.92,0.11,793,1.2,262,0.8
+7319,2018,11,1,23,30,1,1.36,0.012,0.61,0,0,0,0,4,-1.2,0,0,0,0,0.26,85.2,153.5,0.92,0.11,793,1.2,238,0.8
+7320,2018,11,2,0,30,0.3,1.35,0.011,0.61,0,0,0,0,4,-1.2,0,0,0,0,0.259,89.92,153.28,0.91,0.11,793,1.2,215,0.9
+7321,2018,11,2,1,30,-0.5,1.33,0.011,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.261,94.19,147.33,0.91,0.11,793,1.3,204,1.1
+7322,2018,11,2,2,30,-1.1,1.31,0.011,0.61,0,0,0,0,8,-1.5,0,0,0,0,0.262,96.9,138.11,0.91,0.11,793,1.3,204,1.3
+7323,2018,11,2,3,30,-1.3,1.31,0.01,0.61,0,0,0,0,4,-1.7,0,0,0,0,0.263,97.2,127.41,0.91,0.11,793,1.3,210,1.5
+7324,2018,11,2,4,30,-1.4,1.32,0.01,0.61,0,0,0,0,4,-1.6,0,0,0,0,0.264,98.43,116.15,0.91,0.11,793,1.3,215,1.5
+7325,2018,11,2,5,30,-1.5,1.31,0.011,0.61,0,0,0,0,4,-1.5,0,0,0,0,0.264,100,104.78,0.92,0.11,792,1.3,218,1.5
+7326,2018,11,2,6,30,-1,1.32,0.012,0.61,0,0,0,0,4,-1.1,0,0,0,0,0.264,99.18,93.64,0.92,0.11,792,1.2,221,1.5
+7327,2018,11,2,7,30,1,1.31,0.014,0.61,27,596,100,6,4,-0.7,31,62,89,39,0.262,88.53,82.94,0.92,0.11,792,1.1,226,2.1
+7328,2018,11,2,8,30,4.4,1.3,0.015,0.61,39,828,277,1,4,0,70,1,11,70,0.259,73.15,73.33,0.92,0.11,792,1,242,2.9
+7329,2018,11,2,9,30,7.7,1.29,0.015,0.61,46,924,435,0,4,0.7,119,266,7,231,0.257,61.36,65.12,0.92,0.11,792,1,262,3.4
+7330,2018,11,2,10,30,10.2,1.26,0.016,0.61,49,971,549,0,0,0.9,87,846,0,522,0.256,52.29,59.03,0.91,0.11,791,0.9,267,3.9
+7331,2018,11,2,11,30,11.9,1.33,0.014,0.61,50,991,607,0,7,0.3,155,637,0,513,0.256,44.92,55.8,0.91,0.11,790,0.9,260,4.3
+7332,2018,11,2,12,30,12.9,1.28,0.015,0.61,52,988,605,0,7,-0.4,145,662,0,516,0.255,39.9,55.94,0.91,0.11,789,0.9,251,4.9
+7333,2018,11,2,13,30,13.1,1.2,0.017,0.61,56,952,540,0,7,-0.9,230,293,0,379,0.255,37.93,59.44,0.93,0.11,788,0.9,244,5.5
+7334,2018,11,2,14,30,12.6,1.02,0.036,0.61,58,879,419,0,7,-1.1,143,556,0,372,0.255,38.63,65.73,0.93,0.11,787,1,244,5.5
+7335,2018,11,2,15,30,11.6,1.02,0.041,0.61,51,756,258,3,4,-1.1,135,194,43,188,0.259,41.31,74.08,0.94,0.11,787,1.1,249,4.9
+7336,2018,11,2,16,30,9.6,1,0.046,0.61,32,472,83,7,4,-0.8,48,2,100,48,0.265,48.41,83.78,0.94,0.11,786,1.1,258,4.1
+7337,2018,11,2,17,30,7.7,0.98,0.04,0.61,0,0,0,0,4,-0.5,0,0,0,0,0.272,56.04,94.55,0.93,0.11,786,1,268,3.7
+7338,2018,11,2,18,30,6.3,0.96,0.03,0.61,0,0,0,0,4,-0.6,0,0,0,0,0.275,61.38,105.73,0.92,0.11,787,0.9,275,3.6
+7339,2018,11,2,19,30,5.1,0.98,0.025,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.28,67.65,117.12,0.91,0.11,787,0.9,283,3.6
+7340,2018,11,2,20,30,4.4,1,0.024,0.61,0,0,0,0,4,0.1,0,0,0,0,0.287,73.38,128.39,0.91,0.11,787,0.8,290,4
+7341,2018,11,2,21,30,3.9,1.03,0.021,0.61,0,0,0,0,7,0,0,0,0,0,0.294,75.51,139.04,0.91,0.11,788,0.7,296,4.6
+7342,2018,11,2,22,30,2.9,1.11,0.019,0.61,0,0,0,0,0,-1.2,0,0,0,0,0.302,74.49,148.16,0.91,0.11,788,0.6,301,4.7
+7343,2018,11,2,23,30,1.9,1.19,0.021,0.61,0,0,0,0,0,-2,0,0,0,0,0.31,75.27,153.81,0.91,0.11,788,0.6,306,4.2
+7344,2018,11,3,0,30,0.8,1.24,0.024,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.315,80.91,153.58,0.91,0.11,788,0.6,309,3.5
+7345,2018,11,3,1,30,-0.4,1.28,0.027,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.317,88.43,147.59,0.91,0.11,788,0.6,311,2.6
+7346,2018,11,3,2,30,-1.4,1.31,0.028,0.61,0,0,0,0,7,-2.1,0,0,0,0,0.317,94.65,138.33,0.92,0.11,788,0.6,311,1.9
+7347,2018,11,3,3,30,-2.2,1.32,0.028,0.61,0,0,0,0,4,-2.3,0,0,0,0,0.315,99.6,127.61,0.92,0.11,788,0.6,309,1.6
+7348,2018,11,3,4,30,-2.7,1.34,0.029,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.312,100,116.34,0.92,0.11,789,0.6,311,1.5
+7349,2018,11,3,5,30,-3.1,1.35,0.028,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.307,100,104.97,0.91,0.11,789,0.6,317,1.4
+7350,2018,11,3,6,30,-2.9,1.36,0.028,0.61,0,0,0,0,0,-2.9,0,0,0,0,0.304,100,93.84,0.91,0.11,790,0.6,324,1.5
+7351,2018,11,3,7,30,-1,1.38,0.027,0.61,30,576,99,4,0,-2.9,42,287,50,76,0.3,86.7,83.16,0.91,0.11,791,0.6,334,2.5
+7352,2018,11,3,8,30,1.9,1.41,0.027,0.61,45,820,277,0,4,-2.8,55,305,7,141,0.297,71.21,73.57,0.91,0.11,792,0.7,342,4.1
+7353,2018,11,3,9,30,4.2,1.43,0.027,0.61,53,916,434,0,4,-3.3,118,25,0,128,0.292,58.19,65.39,0.91,0.11,792,0.7,347,4.6
+7354,2018,11,3,10,30,5.5,1.43,0.027,0.61,58,962,549,0,4,-4.2,208,375,0,399,0.287,49.82,59.32,0.91,0.11,792,0.7,349,4.1
+7355,2018,11,3,11,30,6,1.39,0.029,0.61,60,981,607,0,7,-4.9,277,169,0,371,0.284,45.52,56.11,0.92,0.11,791,0.7,347,3.7
+7356,2018,11,3,12,30,6.2,1.4,0.028,0.61,60,981,605,0,7,-5.6,261,83,0,307,0.281,42.68,56.25,0.92,0.11,791,0.7,344,3.7
+7357,2018,11,3,13,30,6.2,1.39,0.028,0.61,57,961,541,0,7,-6.4,242,168,0,327,0.28,40.19,59.73,0.92,0.11,791,0.7,340,3.8
+7358,2018,11,3,14,30,6,1.4,0.026,0.61,52,912,423,0,4,-7.1,201,41,0,218,0.28,38.62,66,0.91,0.11,791,0.7,340,3.9
+7359,2018,11,3,15,30,5.3,1.39,0.026,0.61,43,806,261,3,4,-7.5,124,69,43,143,0.281,39.16,74.32,0.91,0.11,791,0.7,342,3.2
+7360,2018,11,3,16,30,3.3,1.39,0.026,0.61,28,540,84,7,4,-7,46,3,100,46,0.282,46.96,84,0.91,0.11,791,0.7,346,1.9
+7361,2018,11,3,17,30,1.4,1.39,0.025,0.61,0,0,0,0,7,-5.3,0,0,0,0,0.284,61.02,94.75,0.91,0.11,792,0.7,351,1.1
+7362,2018,11,3,18,30,0.5,1.37,0.025,0.61,0,0,0,0,4,-5.4,0,0,0,0,0.286,64.4,105.92,0.91,0.11,792,0.7,354,1
+7363,2018,11,3,19,30,-0.2,1.36,0.025,0.61,0,0,0,0,7,-5.8,0,0,0,0,0.288,66.15,117.31,0.91,0.11,792,0.7,353,1
+7364,2018,11,3,20,30,-0.7,1.35,0.026,0.61,0,0,0,0,7,-6,0,0,0,0,0.289,67.54,128.59,0.92,0.11,793,0.7,349,1
+7365,2018,11,3,21,30,-1.2,1.37,0.027,0.61,0,0,0,0,4,-6.2,0,0,0,0,0.289,69.03,139.27,0.92,0.11,793,0.7,341,1
+7366,2018,11,3,22,30,-1.7,1.4,0.028,0.61,0,0,0,0,0,-6.3,0,0,0,0,0.289,70.83,148.42,0.92,0.11,793,0.8,331,1
+7367,2018,11,3,23,30,-2,1.41,0.029,0.61,0,0,0,0,0,-6.3,0,0,0,0,0.287,72.46,154.11,0.92,0.11,793,0.8,323,0.9
+7368,2018,11,4,0,30,-2.1,1.41,0.028,0.61,0,0,0,0,7,-6.1,0,0,0,0,0.285,74.08,153.88,0.92,0.11,792,0.8,304,0.7
+7369,2018,11,4,1,30,-2.3,1.44,0.026,0.61,0,0,0,0,0,-6,0,0,0,0,0.282,75.67,147.85,0.92,0.11,792,0.9,267,0.7
+7370,2018,11,4,2,30,-2.7,1.43,0.025,0.61,0,0,0,0,7,-6,0,0,0,0,0.28,77.89,138.55,0.92,0.11,791,0.9,236,0.8
+7371,2018,11,4,3,30,-3.1,1.42,0.026,0.61,0,0,0,0,0,-6.1,0,0,0,0,0.278,79.9,127.81,0.92,0.11,791,1,222,1
+7372,2018,11,4,4,30,-3.4,1.45,0.025,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.277,81.08,116.53,0.93,0.11,791,1.1,211,1.1
+7373,2018,11,4,5,30,-3.2,1.43,0.026,0.61,0,0,0,0,7,-6.3,0,0,0,0,0.278,79.01,105.17,0.93,0.11,790,1.1,204,1.2
+7374,2018,11,4,6,30,-2.4,1.42,0.027,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.277,74,94.05,0.93,0.11,789,1.2,204,1.4
+7375,2018,11,4,7,30,-0.8,1.39,0.028,0.61,29,534,91,7,7,-6.1,24,0,100,24,0.276,67.56,83.38,0.94,0.11,789,1.2,206,2
+7376,2018,11,4,8,30,0.6,1.36,0.03,0.61,46,779,263,1,6,-5.9,17,0,14,17,0.274,61.66,73.82,0.94,0.11,789,1.2,206,2.9
+7377,2018,11,4,9,30,1.4,1.31,0.033,0.61,56,879,418,0,6,-5.2,80,4,0,82,0.273,61.38,65.66,0.95,0.11,789,1.3,209,3.8
+7378,2018,11,4,10,30,1.8,1.29,0.032,0.61,61,928,530,0,6,-4,25,0,0,25,0.272,65.17,59.62,0.95,0.11,788,1.3,215,4.6
+7379,2018,11,4,11,30,2.4,1.27,0.034,0.61,64,946,587,0,6,-2.9,53,0,0,53,0.272,68.11,56.41,0.95,0.11,787,1.3,220,5.2
+7380,2018,11,4,12,30,3.5,1.27,0.037,0.61,65,943,585,0,6,-2,108,1,0,109,0.272,67.4,56.55,0.95,0.11,786,1.3,225,5.5
+7381,2018,11,4,13,30,4.6,1.25,0.038,0.61,63,921,523,0,7,-1.3,57,0,0,57,0.271,65.35,60.01,0.95,0.11,785,1.2,228,5.5
+7382,2018,11,4,14,30,5.5,1.22,0.04,0.61,57,873,408,0,7,-1.1,102,16,0,108,0.272,62.34,66.26,0.94,0.11,784,1.1,229,5.1
+7383,2018,11,4,15,30,5.6,1.2,0.035,0.61,46,771,251,3,4,-1.2,26,2,46,27,0.275,61.49,74.56,0.94,0.11,784,1,232,4
+7384,2018,11,4,16,30,4,1.08,0.031,0.61,28,494,78,7,7,-0.9,33,1,100,33,0.279,70.39,84.21,0.94,0.11,783,1,240,2.5
+7385,2018,11,4,17,30,2.5,1.05,0.03,0.61,0,0,0,0,4,-1,0,0,0,0,0.283,77.78,94.95,0.93,0.11,784,0.9,254,1.9
+7386,2018,11,4,18,30,1.6,1.04,0.027,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.285,81.31,106.11,0.92,0.11,784,0.9,262,1.9
+7387,2018,11,4,19,30,0.4,1.03,0.022,0.61,0,0,0,0,0,-1.9,0,0,0,0,0.288,84.74,117.5,0.91,0.11,783,0.8,264,1.7
+7388,2018,11,4,20,30,-0.7,0.99,0.021,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.29,87.36,128.78,0.91,0.11,783,0.7,270,1.6
+7389,2018,11,4,21,30,-1.6,0.95,0.02,0.61,0,0,0,0,0,-3,0,0,0,0,0.291,90.37,139.48,0.9,0.11,784,0.6,281,1.6
+7390,2018,11,4,22,30,-2.1,0.91,0.019,0.61,0,0,0,0,4,-3.4,0,0,0,0,0.292,90.76,148.67,0.9,0.11,784,0.6,293,1.7
+7391,2018,11,4,23,30,-2.6,0.86,0.019,0.61,0,0,0,0,4,-3.9,0,0,0,0,0.293,90.63,154.41,0.9,0.11,784,0.5,299,1.8
+7392,2018,11,5,0,30,-3.1,0.81,0.019,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.293,91.68,154.18,0.91,0.11,784,0.5,302,1.8
+7393,2018,11,5,1,30,-3.5,0.77,0.02,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.294,93.87,148.11,0.91,0.11,784,0.5,300,1.7
+7394,2018,11,5,2,30,-3.8,0.75,0.019,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.294,95.85,138.77,0.91,0.11,785,0.5,296,1.7
+7395,2018,11,5,3,30,-4.1,0.75,0.018,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.295,97.69,128.01,0.91,0.11,785,0.5,295,1.6
+7396,2018,11,5,4,30,-4.3,0.75,0.018,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.295,98.76,116.72,0.91,0.11,785,0.5,295,1.5
+7397,2018,11,5,5,30,-4.4,0.74,0.018,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.295,99.24,105.36,0.9,0.11,785,0.5,293,1.3
+7398,2018,11,5,6,30,-3.9,0.75,0.018,0.61,0,0,0,0,4,-4.6,0,0,0,0,0.295,95.13,94.25,0.9,0.11,785,0.5,287,1.2
+7399,2018,11,5,7,30,-1.6,0.75,0.017,0.61,28,594,94,7,4,-4.4,42,18,96,44,0.295,81.51,83.6,0.9,0.11,786,0.5,282,1.6
+7400,2018,11,5,8,30,1.6,0.77,0.017,0.61,40,846,272,4,4,-3.4,54,11,50,57,0.293,69.54,74.06,0.9,0.11,786,0.5,293,2.7
+7401,2018,11,5,9,30,3.5,0.8,0.016,0.61,46,946,432,1,4,-3.7,168,14,11,174,0.29,59.48,65.93,0.89,0.11,786,0.5,304,3.3
+7402,2018,11,5,10,30,4.8,0.81,0.016,0.61,50,994,548,1,4,-5.7,186,13,18,193,0.288,46.61,59.91,0.89,0.11,786,0.5,296,3.2
+7403,2018,11,5,11,30,5.9,0.82,0.016,0.61,51,1014,608,0,4,-7.3,297,128,0,367,0.286,38.27,56.71,0.89,0.11,786,0.4,281,3
+7404,2018,11,5,12,30,6.8,0.81,0.017,0.61,53,1013,607,0,4,-8.3,306,148,0,387,0.285,33.08,56.85,0.89,0.11,785,0.4,266,3.1
+7405,2018,11,5,13,30,7.4,0.79,0.017,0.61,52,991,543,0,4,-9.2,218,63,0,249,0.283,29.75,60.3,0.9,0.11,785,0.4,254,3.4
+7406,2018,11,5,14,30,7.5,0.83,0.019,0.61,49,934,421,0,4,-9.8,147,420,0,314,0.281,28.03,66.52,0.9,0.11,784,0.5,248,3.6
+7407,2018,11,5,15,30,6.5,0.85,0.021,0.61,42,820,257,4,4,-10,111,8,57,113,0.279,29.65,74.79,0.91,0.11,784,0.5,247,2.8
+7408,2018,11,5,16,30,4.1,0.92,0.024,0.61,27,530,79,7,4,-7.1,46,4,100,46,0.278,43.81,84.41,0.92,0.11,784,0.5,261,1.7
+7409,2018,11,5,17,30,1.9,0.95,0.027,0.61,0,0,0,0,4,-6.1,0,0,0,0,0.277,55.23,95.14,0.92,0.11,785,0.5,286,1.6
+7410,2018,11,5,18,30,0.8,0.96,0.029,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.277,56.49,106.29,0.91,0.11,785,0.5,305,1.9
+7411,2018,11,5,19,30,-0.6,0.94,0.028,0.61,0,0,0,0,0,-7,0,0,0,0,0.277,62.04,117.68,0.91,0.11,786,0.5,314,1.9
+7412,2018,11,5,20,30,-2,0.9,0.027,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.276,69.22,128.97,0.91,0.11,786,0.5,316,1.6
+7413,2018,11,5,21,30,-2.9,0.85,0.026,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.275,73.75,139.69,0.91,0.11,787,0.5,314,1.4
+7414,2018,11,5,22,30,-3.1,0.81,0.026,0.61,0,0,0,0,0,-7,0,0,0,0,0.274,74.63,148.92,0.91,0.11,787,0.4,309,1.3
+7415,2018,11,5,23,30,-3,0.79,0.025,0.61,0,0,0,0,0,-7,0,0,0,0,0.273,74.09,154.71,0.91,0.11,787,0.4,302,1.1
+7416,2018,11,6,0,30,-3,0.78,0.023,0.61,0,0,0,0,0,-7,0,0,0,0,0.272,74.19,154.47,0.91,0.11,787,0.4,293,1
+7417,2018,11,6,1,30,-3.1,0.8,0.022,0.61,0,0,0,0,0,-7,0,0,0,0,0.27,74.73,148.36,0.9,0.11,788,0.4,285,1
+7418,2018,11,6,2,30,-3.5,0.82,0.02,0.61,0,0,0,0,0,-7,0,0,0,0,0.268,76.45,138.99,0.9,0.11,788,0.4,280,1.1
+7419,2018,11,6,3,30,-4,0.85,0.019,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.267,78.27,128.21,0.9,0.11,788,0.4,282,1.2
+7420,2018,11,6,4,30,-4.3,0.88,0.018,0.61,0,0,0,0,0,-7.5,0,0,0,0,0.266,78.38,116.91,0.9,0.11,788,0.4,287,1.3
+7421,2018,11,6,5,30,-4.5,0.91,0.017,0.61,0,0,0,0,0,-7.8,0,0,0,0,0.266,77.69,105.56,0.9,0.11,788,0.4,291,1.3
+7422,2018,11,6,6,30,-4.2,0.93,0.017,0.61,0,0,0,0,0,-8.1,0,0,0,0,0.266,74.12,94.45,0.89,0.11,788,0.4,296,1.2
+7423,2018,11,6,7,30,-2,0.94,0.017,0.61,26,608,92,3,0,-7.9,37,399,39,80,0.267,63.8,83.81,0.89,0.11,788,0.4,302,1.8
+7424,2018,11,6,8,30,0.7,0.96,0.017,0.61,40,860,273,0,0,-7.8,52,788,0,265,0.268,53.06,74.3,0.89,0.11,789,0.4,309,2.8
+7425,2018,11,6,9,30,2.1,0.96,0.017,0.61,47,957,433,0,0,-8.8,61,900,0,424,0.267,44.21,66.19,0.89,0.11,789,0.4,308,2.9
+7426,2018,11,6,10,30,3,0.96,0.017,0.61,50,1004,549,0,0,-10.1,175,583,0,465,0.266,37.47,60.19,0.89,0.11,789,0.4,300,2.6
+7427,2018,11,6,11,30,3.7,0.96,0.015,0.61,51,1024,609,0,4,-11.1,235,175,0,330,0.265,32.99,57.01,0.89,0.11,789,0.4,291,2.5
+7428,2018,11,6,12,30,4.2,0.98,0.016,0.61,51,1023,606,0,4,-11.8,168,8,0,172,0.263,30.19,57.15,0.89,0.11,788,0.4,288,2.5
+7429,2018,11,6,13,30,4.4,1,0.016,0.61,52,997,542,0,4,-12.3,220,383,0,408,0.261,28.59,60.57,0.9,0.11,788,0.4,289,2.5
+7430,2018,11,6,14,30,4.2,0.96,0.02,0.61,48,942,420,0,4,-12.7,101,1,0,101,0.259,28.15,66.77,0.91,0.11,788,0.4,293,2.4
+7431,2018,11,6,15,30,3.2,0.99,0.02,0.61,42,832,257,4,4,-12.8,97,4,57,98,0.258,29.94,75.01,0.91,0.11,788,0.4,303,1.7
+7432,2018,11,6,16,30,1.3,0.99,0.022,0.61,27,538,78,7,4,-9.5,37,1,100,37,0.258,44.59,84.61,0.92,0.11,789,0.4,324,1
+7433,2018,11,6,17,30,-0.1,0.98,0.026,0.61,0,0,0,0,4,-8.8,0,0,0,0,0.259,51.98,95.33,0.92,0.11,789,0.4,344,0.9
+7434,2018,11,6,18,30,-0.7,0.97,0.029,0.61,0,0,0,0,4,-9.3,0,0,0,0,0.261,52.19,106.47,0.93,0.11,790,0.4,354,1.2
+7435,2018,11,6,19,30,-1.4,0.98,0.031,0.61,0,0,0,0,4,-9,0,0,0,0,0.263,56.15,117.85,0.93,0.11,790,0.5,355,1.4
+7436,2018,11,6,20,30,-2.3,0.98,0.031,0.61,0,0,0,0,4,-8.5,0,0,0,0,0.263,62.69,129.15,0.92,0.11,791,0.5,355,1.3
+7437,2018,11,6,21,30,-3.1,0.98,0.029,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.263,68.64,139.89,0.92,0.11,791,0.5,355,1.1
+7438,2018,11,6,22,30,-3.7,0.97,0.026,0.61,0,0,0,0,4,-8,0,0,0,0,0.262,71.85,149.16,0.91,0.11,791,0.5,353,1
+7439,2018,11,6,23,30,-4.1,0.96,0.023,0.61,0,0,0,0,4,-8,0,0,0,0,0.261,74.02,154.99,0.91,0.11,791,0.4,353,1
+7440,2018,11,7,0,30,-4.3,0.95,0.021,0.61,0,0,0,0,4,-8,0,0,0,0,0.26,75.62,154.76,0.9,0.11,791,0.4,354,0.9
+7441,2018,11,7,1,30,-4.4,0.96,0.019,0.61,0,0,0,0,4,-7.9,0,0,0,0,0.26,76.81,148.61,0.9,0.11,791,0.4,355,0.7
+7442,2018,11,7,2,30,-4.3,0.97,0.018,0.61,0,0,0,0,0,-7.8,0,0,0,0,0.259,76.77,139.2,0.9,0.11,791,0.4,354,0.6
+7443,2018,11,7,3,30,-4.3,0.96,0.017,0.61,0,0,0,0,0,-7.7,0,0,0,0,0.259,77.19,128.41,0.9,0.11,791,0.4,346,0.3
+7444,2018,11,7,4,30,-4.3,0.96,0.017,0.61,0,0,0,0,0,-7.7,0,0,0,0,0.259,77.4,117.11,0.9,0.11,791,0.4,295,0.2
+7445,2018,11,7,5,30,-4.4,0.96,0.017,0.61,0,0,0,0,4,-7.7,0,0,0,0,0.26,78,105.75,0.9,0.11,791,0.4,215,0.2
+7446,2018,11,7,6,30,-4.3,0.95,0.017,0.61,0,0,0,0,0,-7.7,0,0,0,0,0.26,77.21,94.66,0.9,0.11,790,0.4,180,0.4
+7447,2018,11,7,7,30,-2.7,0.94,0.017,0.61,27,591,88,0,0,-7.4,27,591,0,88,0.26,69.95,84.03,0.9,0.11,791,0.4,186,0.9
+7448,2018,11,7,8,30,-0.4,0.93,0.017,0.61,40,846,266,4,4,-7.5,157,60,54,173,0.261,58.85,74.54,0.91,0.11,791,0.4,207,1.6
+7449,2018,11,7,9,30,1.2,0.92,0.019,0.61,49,944,426,0,0,-8.8,49,944,0,426,0.262,47.11,66.45,0.91,0.11,791,0.4,228,2.2
+7450,2018,11,7,10,30,2.1,0.93,0.021,0.61,53,992,542,0,0,-9.8,53,992,0,542,0.263,40.9,60.47,0.91,0.11,790,0.4,237,2.5
+7451,2018,11,7,11,30,2.8,0.96,0.018,0.61,54,1013,601,0,0,-10.4,174,678,0,540,0.264,37.2,57.31,0.91,0.11,790,0.4,243,2.6
+7452,2018,11,7,12,30,3.2,0.97,0.018,0.61,54,1012,599,0,0,-10.9,147,609,0,475,0.266,34.74,57.44,0.91,0.11,789,0.4,248,2.5
+7453,2018,11,7,13,30,3.5,0.96,0.019,0.61,52,993,536,0,0,-11.4,52,993,0,536,0.268,32.77,60.85,0.9,0.11,789,0.4,250,2.1
+7454,2018,11,7,14,30,3.5,0.95,0.019,0.61,48,946,417,0,0,-11.9,48,946,0,417,0.27,31.5,67.02,0.9,0.11,789,0.4,243,1.5
+7455,2018,11,7,15,30,2.5,0.95,0.019,0.61,40,838,254,0,0,-12.4,40,838,0,254,0.271,32.51,75.23,0.9,0.11,788,0.4,180,0.7
+7456,2018,11,7,16,30,0,0.96,0.02,0.61,26,545,75,0,0,-8.6,27,515,7,74,0.272,52.22,84.81,0.9,0.11,788,0.4,103,0.7
+7457,2018,11,7,17,30,-2.2,0.97,0.021,0.61,0,0,0,0,4,-10,0,0,0,0,0.273,54.99,95.51,0.91,0.11,789,0.4,75,1.2
+7458,2018,11,7,18,30,-3.1,0.96,0.022,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.273,58.06,106.64,0.9,0.11,789,0.4,61,1.4
+7459,2018,11,7,19,30,-3.9,0.96,0.021,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.273,60.19,118.02,0.9,0.11,789,0.4,47,1.6
+7460,2018,11,7,20,30,-4.8,0.97,0.021,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.273,64.03,129.32,0.9,0.11,789,0.4,35,1.6
+7461,2018,11,7,21,30,-5.5,0.95,0.021,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.274,67.09,140.09,0.9,0.11,790,0.4,26,1.6
+7462,2018,11,7,22,30,-6,0.94,0.021,0.61,0,0,0,0,4,-10.7,0,0,0,0,0.275,69.5,149.4,0.9,0.11,790,0.3,20,1.6
+7463,2018,11,7,23,30,-6.3,0.92,0.021,0.61,0,0,0,0,4,-10.7,0,0,0,0,0.275,70.91,155.28,0.9,0.11,790,0.3,15,1.6
+7464,2018,11,8,0,30,-6.6,0.91,0.021,0.61,0,0,0,0,4,-10.8,0,0,0,0,0.277,72.1,155.05,0.9,0.11,790,0.3,9,1.5
+7465,2018,11,8,1,30,-6.7,0.93,0.022,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.278,72.28,148.86,0.9,0.11,791,0.3,182,1.4
+7466,2018,11,8,2,30,-6.8,0.96,0.023,0.61,0,0,0,0,4,-10.8,0,0,0,0,0.28,73.29,139.42,0.9,0.11,791,0.3,356,1.2
+7467,2018,11,8,3,30,-6.6,0.99,0.024,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.282,73.24,128.6,0.9,0.11,791,0.3,350,1
+7468,2018,11,8,4,30,-6.3,1.02,0.024,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.284,72.67,117.3,0.9,0.11,792,0.3,343,0.9
+7469,2018,11,8,5,30,-6,1.05,0.023,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.287,72,105.94,0.9,0.11,792,0.3,333,0.8
+7470,2018,11,8,6,30,-5.5,1.06,0.023,0.61,0,0,0,0,0,-10.1,0,0,0,0,0.289,70.23,94.86,0.9,0.11,792,0.3,321,0.8
+7471,2018,11,8,7,30,-3.8,1.08,0.022,0.61,27,575,85,0,0,-9.6,27,575,0,85,0.29,64.14,84.24,0.9,0.11,793,0.3,323,1.7
+7472,2018,11,8,8,30,-1.9,1.1,0.023,0.61,43,843,264,0,0,-9.7,43,843,0,264,0.29,55.37,74.77,0.9,0.11,793,0.3,335,2.8
+7473,2018,11,8,9,30,-0.8,1.11,0.024,0.61,52,944,425,0,0,-11,52,944,0,425,0.288,46.09,66.71,0.9,0.11,794,0.3,341,3.1
+7474,2018,11,8,10,30,0,1.1,0.026,0.61,58,989,541,0,0,-12.5,58,989,0,541,0.286,38.55,60.75,0.91,0.11,794,0.3,341,3.3
+7475,2018,11,8,11,30,0.7,1.09,0.029,0.61,61,1007,601,0,0,-13.4,142,745,0,541,0.284,34.02,57.6,0.91,0.11,794,0.3,341,3.5
+7476,2018,11,8,12,30,1.2,1.08,0.03,0.61,61,1005,598,0,0,-13.9,80,950,0,587,0.282,31.36,57.72,0.91,0.11,794,0.3,340,3.7
+7477,2018,11,8,13,30,1.5,1.07,0.03,0.61,59,984,534,0,0,-14.3,76,922,0,521,0.281,29.73,61.11,0.91,0.11,794,0.3,339,3.7
+7478,2018,11,8,14,30,1.4,1.07,0.029,0.61,53,932,413,0,0,-14.7,53,932,0,413,0.282,29.13,67.26,0.91,0.11,794,0.3,337,3.5
+7479,2018,11,8,15,30,0.2,1.06,0.029,0.61,44,818,250,0,0,-14.9,44,818,0,250,0.284,31.14,75.45,0.91,0.11,794,0.3,336,2.5
+7480,2018,11,8,16,30,-2.3,1.05,0.029,0.61,27,514,72,0,0,-12.3,27,514,0,72,0.286,46.11,84.99,0.91,0.11,794,0.3,341,1.3
+7481,2018,11,8,17,30,-3.9,1.05,0.029,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.287,48.72,95.69,0.91,0.11,795,0.3,346,0.9
+7482,2018,11,8,18,30,-4.1,1.06,0.03,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.287,48.74,106.81,0.91,0.11,795,0.3,345,0.8
+7483,2018,11,8,19,30,-4.3,1.08,0.031,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.288,50.09,118.18,0.91,0.11,796,0.3,340,0.7
+7484,2018,11,8,20,30,-4.6,1.1,0.032,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,52.19,129.49,0.91,0.11,796,0.3,337,0.8
+7485,2018,11,8,21,30,-5,1.12,0.034,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.289,55.15,140.28,0.91,0.11,796,0.3,335,0.8
+7486,2018,11,8,22,30,-5.3,1.11,0.035,0.61,0,0,0,0,0,-12.2,0,0,0,0,0.29,58.3,149.62,0.91,0.11,796,0.3,336,0.9
+7487,2018,11,8,23,30,-5.6,1.09,0.034,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.291,61.07,155.55,0.91,0.11,796,0.3,340,0.9
+7488,2018,11,9,0,30,-5.6,1.05,0.034,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.292,61.78,155.34,0.91,0.11,796,0.3,345,0.8
+7489,2018,11,9,1,30,-5.7,1.02,0.034,0.61,0,0,0,0,0,-11.7,0,0,0,0,0.293,62.66,149.11,0.91,0.11,797,0.2,354,0.7
+7490,2018,11,9,2,30,-6,0.99,0.034,0.61,0,0,0,0,0,-11.7,0,0,0,0,0.293,64.27,139.63,0.91,0.11,797,0.2,189,0.6
+7491,2018,11,9,3,30,-6.3,0.97,0.034,0.61,0,0,0,0,0,-11.7,0,0,0,0,0.294,65.72,128.8,0.91,0.11,797,0.2,33,0.5
+7492,2018,11,9,4,30,-6.6,0.95,0.034,0.61,0,0,0,0,0,-11.7,0,0,0,0,0.294,67.3,117.49,0.91,0.11,797,0.2,65,0.4
+7493,2018,11,9,5,30,-6.9,0.94,0.033,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.295,69.2,106.14,0.91,0.11,797,0.2,99,0.5
+7494,2018,11,9,6,30,-6.8,0.92,0.032,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.296,68.86,95.06,0.91,0.11,797,0.2,124,0.8
+7495,2018,11,9,7,30,-5.5,0.91,0.031,0.61,29,547,82,0,0,-12,29,547,0,82,0.294,60.11,84.45,0.91,0.11,798,0.2,134,1
+7496,2018,11,9,8,30,-3.1,0.9,0.031,0.61,46,836,262,0,0,-13.4,46,836,0,262,0.29,45.02,75.01,0.91,0.11,798,0.2,203,0.8
+7497,2018,11,9,9,30,-0.7,0.89,0.03,0.61,55,947,425,0,0,-15,55,947,0,425,0.285,32.98,66.97,0.91,0.11,798,0.2,267,1
+7498,2018,11,9,10,30,1.2,0.89,0.029,0.61,59,1000,543,0,0,-15.8,59,1000,0,543,0.28,26.97,61.03,0.9,0.11,797,0.2,259,1.7
+7499,2018,11,9,11,30,2.6,0.94,0.026,0.61,60,1024,604,0,0,-16.1,60,1024,0,604,0.277,23.82,57.88,0.9,0.11,797,0.2,252,2.2
+7500,2018,11,9,12,30,3.5,0.96,0.025,0.61,58,1019,598,0,0,-16.3,58,1019,0,598,0.275,21.96,58,0.9,0.11,796,0.3,246,2.5
+7501,2018,11,9,13,30,3.9,0.96,0.024,0.61,55,991,530,0,0,-16.5,55,991,0,530,0.274,20.99,61.37,0.9,0.11,796,0.3,238,2.8
+7502,2018,11,9,14,30,3.6,0.96,0.024,0.61,51,938,410,0,0,-16.5,51,938,0,410,0.274,21.33,67.49,0.9,0.11,795,0.3,227,2.9
+7503,2018,11,9,15,30,1.6,0.95,0.024,0.61,43,825,247,0,0,-15.9,43,825,0,247,0.274,25.85,75.66,0.91,0.11,794,0.3,215,2.2
+7504,2018,11,9,16,30,-1.8,0.94,0.024,0.61,26,520,70,0,0,-12.1,26,520,0,70,0.274,45.39,85.18,0.91,0.11,794,0.3,206,1.6
+7505,2018,11,9,17,30,-4,0.93,0.024,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.273,47.88,95.86,0.91,0.11,793,0.3,204,1.5
+7506,2018,11,9,18,30,-4.5,0.91,0.025,0.61,0,0,0,0,0,-13.6,0,0,0,0,0.272,49.1,106.97,0.91,0.11,793,0.3,205,1.4
+7507,2018,11,9,19,30,-4.7,0.9,0.026,0.61,0,0,0,0,7,-13.5,0,0,0,0,0.271,50.3,118.34,0.91,0.11,793,0.3,207,1.4
+7508,2018,11,9,20,30,-4.7,0.89,0.027,0.61,0,0,0,0,7,-13.3,0,0,0,0,0.271,50.84,129.65,0.91,0.11,793,0.3,209,1.4
+7509,2018,11,9,21,30,-4.7,0.89,0.028,0.61,0,0,0,0,7,-13.3,0,0,0,0,0.271,51.07,140.46,0.91,0.11,792,0.3,209,1.6
+7510,2018,11,9,22,30,-4.5,0.91,0.028,0.61,0,0,0,0,7,-13.4,0,0,0,0,0.271,49.84,149.85,0.92,0.11,792,0.3,208,1.9
+7511,2018,11,9,23,30,-4.1,0.93,0.031,0.61,0,0,0,0,7,-13.7,0,0,0,0,0.269,47.27,155.82,0.92,0.11,791,0.3,206,2.6
+7512,2018,11,10,0,30,-3.7,0.93,0.033,0.61,0,0,0,0,7,-14.1,0,0,0,0,0.268,44.18,155.61,0.93,0.11,790,0.4,203,3.2
+7513,2018,11,10,1,30,-3.5,0.93,0.035,0.61,0,0,0,0,7,-13.9,0,0,0,0,0.268,44.28,149.35,0.93,0.11,790,0.4,202,3.3
+7514,2018,11,10,2,30,-3.6,0.93,0.034,0.61,0,0,0,0,7,-13.4,0,0,0,0,0.269,46.67,139.84,0.92,0.11,790,0.4,201,3.1
+7515,2018,11,10,3,30,-3.7,0.93,0.033,0.61,0,0,0,0,7,-12.9,0,0,0,0,0.27,48.95,128.99,0.92,0.11,789,0.3,201,2.9
+7516,2018,11,10,4,30,-3.9,0.93,0.031,0.61,0,0,0,0,7,-12.6,0,0,0,0,0.271,50.78,117.67,0.92,0.11,789,0.3,202,2.6
+7517,2018,11,10,5,30,-4.2,0.94,0.031,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.272,53.05,106.33,0.92,0.11,789,0.3,204,2.3
+7518,2018,11,10,6,30,-4.1,0.95,0.031,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.273,52.62,95.27,0.92,0.11,789,0.3,206,2.4
+7519,2018,11,10,7,30,-3,0.95,0.031,0.61,28,517,76,7,4,-12.5,33,4,100,33,0.274,47.86,84.67,0.92,0.11,788,0.4,205,2.9
+7520,2018,11,10,8,30,-1.1,0.94,0.031,0.61,45,804,250,7,7,-12.6,67,5,100,68,0.276,41.42,75.24,0.92,0.11,788,0.4,209,3.6
+7521,2018,11,10,9,30,1,0.94,0.032,0.61,54,916,409,1,7,-13.4,40,0,14,40,0.279,33.32,67.23,0.92,0.11,788,0.4,219,4.3
+7522,2018,11,10,10,30,2.6,0.94,0.032,0.61,60,969,525,0,4,-14.5,91,0,0,91,0.282,27.05,61.3,0.92,0.11,788,0.4,228,4.6
+7523,2018,11,10,11,30,3.8,0.92,0.03,0.61,61,994,585,0,4,-15,181,3,0,183,0.286,23.93,58.17,0.92,0.11,787,0.4,234,4.5
+7524,2018,11,10,12,30,4.8,0.9,0.028,0.61,60,1004,588,0,0,-15.2,76,951,0,576,0.291,21.87,58.28,0.92,0.11,787,0.3,236,4.1
+7525,2018,11,10,13,30,5.3,0.89,0.027,0.61,56,984,524,0,0,-15.4,119,773,0,486,0.296,20.82,61.63,0.91,0.11,786,0.3,232,3.7
+7526,2018,11,10,14,30,5.2,0.89,0.026,0.61,52,932,405,0,0,-15.4,52,932,0,405,0.303,20.97,67.72,0.91,0.11,786,0.3,220,2.8
+7527,2018,11,10,15,30,3.2,0.88,0.025,0.61,43,816,242,0,0,-13.2,43,816,0,242,0.311,28.84,75.86,0.91,0.11,786,0.3,194,1.6
+7528,2018,11,10,16,30,0.4,0.87,0.025,0.61,25,501,66,0,0,-9.7,25,501,0,66,0.319,46.74,85.36,0.91,0.11,785,0.3,162,1.1
+7529,2018,11,10,17,30,-1.3,0.87,0.026,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.327,39.92,96.02,0.91,0.11,785,0.3,125,1
+7530,2018,11,10,18,30,-2.5,0.88,0.027,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.334,45.12,107.12,0.91,0.11,785,0.3,80,0.7
+7531,2018,11,10,19,30,-3.4,0.9,0.028,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.34,52.36,118.49,0.91,0.11,785,0.3,44,0.7
+7532,2018,11,10,20,30,-3.8,0.93,0.028,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.344,57.08,129.81,0.91,0.11,785,0.3,21,0.9
+7533,2018,11,10,21,30,-3.9,0.97,0.029,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.346,60.5,140.64,0.91,0.11,785,0.4,11,1.4
+7534,2018,11,10,22,30,-4,1.01,0.03,0.61,0,0,0,0,0,-9.6,0,0,0,0,0.346,64.81,150.06,0.91,0.11,786,0.4,8,2.2
+7535,2018,11,10,23,30,-4.3,1.05,0.032,0.61,0,0,0,0,0,-8.7,0,0,0,0,0.347,71.35,156.09,0.91,0.11,786,0.4,9,2.9
+7536,2018,11,11,0,30,-4.6,1.1,0.034,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.347,77.64,155.89,0.92,0.11,786,0.4,9,3.3
+7537,2018,11,11,1,30,-4.8,1.14,0.036,0.61,0,0,0,0,0,-7.5,0,0,0,0,0.347,81.63,149.59,0.92,0.11,786,0.4,11,3.4
+7538,2018,11,11,2,30,-4.9,1.16,0.039,0.61,0,0,0,0,4,-7.2,0,0,0,0,0.346,83.6,140.05,0.93,0.11,786,0.4,12,3.4
+7539,2018,11,11,3,30,-5,1.18,0.042,0.61,0,0,0,0,4,-7.3,0,0,0,0,0.345,84.12,129.19,0.93,0.11,786,0.4,14,3.7
+7540,2018,11,11,4,30,-5.2,1.22,0.046,0.61,0,0,0,0,4,-7.5,0,0,0,0,0.344,83.67,117.86,0.94,0.11,786,0.4,18,4.2
+7541,2018,11,11,5,30,-5.2,1.26,0.053,0.61,0,0,0,0,4,-8,0,0,0,0,0.343,80.98,106.52,0.94,0.11,787,0.4,20,5
+7542,2018,11,11,6,30,-5,1.31,0.06,0.61,0,0,0,0,4,-8.4,0,0,0,0,0.342,77.28,95.47,0.94,0.11,788,0.4,21,5.8
+7543,2018,11,11,7,30,-4.5,1.35,0.065,0.61,31,415,68,6,4,-8.6,25,74,86,32,0.341,72.87,84.88,0.95,0.11,789,0.4,24,6.8
+7544,2018,11,11,8,30,-3.6,1.37,0.07,0.61,56,720,237,3,4,-9.1,107,10,43,110,0.341,65.83,75.48,0.95,0.11,789,0.4,30,7.9
+7545,2018,11,11,9,30,-3,1.38,0.079,0.61,71,843,394,0,4,-10,184,27,0,194,0.341,58.6,67.48,0.95,0.11,790,0.4,34,8.4
+7546,2018,11,11,10,30,-2.4,1.4,0.075,0.61,73,923,512,0,7,-10.8,236,279,0,369,0.341,52.57,61.57,0.94,0.11,790,0.4,34,8.3
+7547,2018,11,11,11,30,-2.1,1.37,0.047,0.61,68,969,575,0,0,-11.5,171,612,0,491,0.34,48.62,58.44,0.94,0.11,790,0.4,30,7.9
+7548,2018,11,11,12,30,-2.1,1.39,0.044,0.61,67,976,576,0,0,-12.2,93,887,0,556,0.338,46.06,58.55,0.93,0.11,790,0.4,24,7.5
+7549,2018,11,11,13,30,-2.2,1.38,0.042,0.61,63,962,516,0,0,-12.9,70,929,0,508,0.339,43.88,61.88,0.92,0.11,791,0.3,20,7.1
+7550,2018,11,11,14,30,-2.6,1.37,0.04,0.61,55,911,397,0,0,-13.6,87,729,0,361,0.342,42.57,67.94,0.92,0.11,791,0.3,17,6.6
+7551,2018,11,11,15,30,-3.2,1.34,0.035,0.61,43,799,236,5,4,-14.2,118,72,71,135,0.345,42.45,76.05,0.92,0.11,791,0.3,17,5.9
+7552,2018,11,11,16,30,-4.3,1.29,0.03,0.61,24,494,63,7,4,-14.5,32,0,100,32,0.347,44.82,85.52,0.91,0.11,792,0.3,20,4.8
+7553,2018,11,11,17,30,-5.4,1.27,0.026,0.61,0,0,0,0,4,-14.4,0,0,0,0,0.347,49.04,96.18,0.91,0.11,793,0.3,25,3.7
+7554,2018,11,11,18,30,-6.2,1.25,0.025,0.61,0,0,0,0,7,-14,0,0,0,0,0.347,53.82,107.27,0.91,0.11,793,0.3,31,3
+7555,2018,11,11,19,30,-7,1.25,0.025,0.61,0,0,0,0,7,-13.7,0,0,0,0,0.347,59.06,118.63,0.91,0.11,794,0.3,35,2.4
+7556,2018,11,11,20,30,-7.7,1.26,0.026,0.61,0,0,0,0,8,-13.5,0,0,0,0,0.348,63.08,129.96,0.92,0.11,794,0.3,36,2.2
+7557,2018,11,11,21,30,-8.2,1.28,0.028,0.61,0,0,0,0,7,-13.5,0,0,0,0,0.35,65.38,140.8,0.92,0.11,795,0.3,33,2.1
+7558,2018,11,11,22,30,-8.6,1.3,0.03,0.61,0,0,0,0,7,-13.6,0,0,0,0,0.352,66.99,150.27,0.92,0.11,795,0.3,29,2.1
+7559,2018,11,11,23,30,-9.2,1.31,0.03,0.61,0,0,0,0,7,-13.7,0,0,0,0,0.354,69.66,156.35,0.92,0.11,796,0.3,25,2
+7560,2018,11,12,0,30,-9.9,1.33,0.028,0.61,0,0,0,0,7,-13.9,0,0,0,0,0.356,72.71,156.16,0.92,0.11,796,0.3,22,2
+7561,2018,11,12,1,30,-10.4,1.34,0.025,0.61,0,0,0,0,8,-14,0,0,0,0,0.356,74.79,149.83,0.91,0.11,796,0.3,23,2.2
+7562,2018,11,12,2,30,-10.8,1.35,0.023,0.61,0,0,0,0,8,-14.1,0,0,0,0,0.354,76.49,140.26,0.91,0.11,797,0.2,29,2.4
+7563,2018,11,12,3,30,-11.2,1.34,0.022,0.61,0,0,0,0,0,-14.2,0,0,0,0,0.351,78.55,129.38,0.9,0.11,797,0.2,34,2.3
+7564,2018,11,12,4,30,-11.7,1.34,0.023,0.61,0,0,0,0,0,-14.2,0,0,0,0,0.346,81.88,118.05,0.9,0.11,798,0.2,36,2.2
+7565,2018,11,12,5,30,-12.2,1.34,0.025,0.61,0,0,0,0,0,-14.2,0,0,0,0,0.342,85.08,106.71,0.9,0.11,798,0.2,33,2
+7566,2018,11,12,6,30,-12.3,1.36,0.028,0.61,0,0,0,0,0,-14.3,0,0,0,0,0.339,85.35,95.67,0.91,0.11,799,0.2,32,2
+7567,2018,11,12,7,30,-11.3,1.37,0.032,0.61,26,522,71,0,0,-14.4,26,522,0,71,0.336,78.11,85.08,0.92,0.11,799,0.2,34,2.7
+7568,2018,11,12,8,30,-8.9,1.38,0.034,0.61,45,821,248,0,0,-14.1,45,821,0,248,0.332,66.19,75.7,0.92,0.11,800,0.2,37,3.6
+7569,2018,11,12,9,30,-6.6,1.39,0.032,0.61,53,939,409,0,0,-13.7,53,939,0,409,0.328,57.14,67.73,0.91,0.11,800,0.2,37,3.7
+7570,2018,11,12,10,30,-4.7,1.41,0.029,0.61,57,996,527,0,0,-14.5,57,996,0,527,0.323,46.39,61.84,0.91,0.11,800,0.2,33,3.4
+7571,2018,11,12,11,30,-3.3,1.41,0.027,0.61,59,1019,588,0,4,-15.4,272,329,0,443,0.318,38.57,58.71,0.91,0.11,800,0.2,26,3.3
+7572,2018,11,12,12,30,-2.4,1.41,0.026,0.61,58,1020,586,0,0,-16.3,58,1020,0,586,0.313,33.55,58.81,0.91,0.11,799,0.2,19,3.3
+7573,2018,11,12,13,30,-1.9,1.41,0.025,0.61,56,999,523,0,0,-17,56,999,0,523,0.307,30.5,62.13,0.91,0.11,799,0.2,15,3.2
+7574,2018,11,12,14,30,-1.9,1.42,0.025,0.61,51,939,400,0,0,-17.5,51,939,0,400,0.301,29.33,68.16,0.91,0.11,799,0.3,13,3
+7575,2018,11,12,15,30,-2.5,1.43,0.025,0.61,41,815,235,0,0,-17.7,41,815,0,235,0.297,30.04,76.25,0.91,0.11,799,0.3,12,2.3
+7576,2018,11,12,16,30,-4.1,1.44,0.025,0.61,24,501,62,0,0,-16.2,24,501,0,62,0.293,38.36,85.69,0.91,0.11,799,0.3,23,1.3
+7577,2018,11,12,17,30,-5.2,1.43,0.025,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.29,52.27,96.33,0.91,0.11,800,0.3,42,0.7
+7578,2018,11,12,18,30,-5.4,1.4,0.024,0.61,0,0,0,0,0,-13.9,0,0,0,0,0.286,51.16,107.41,0.91,0.11,800,0.3,61,0.5
+7579,2018,11,12,19,30,-5.9,1.37,0.021,0.61,0,0,0,0,0,-14.9,0,0,0,0,0.284,49.17,118.77,0.9,0.11,800,0.4,108,0.4
+7580,2018,11,12,20,30,-6.6,1.33,0.02,0.61,0,0,0,0,0,-15.4,0,0,0,0,0.282,49.65,130.1,0.9,0.11,800,0.4,170,0.4
+7581,2018,11,12,21,30,-7.4,1.28,0.02,0.61,0,0,0,0,0,-15.6,0,0,0,0,0.282,52.03,140.97,0.89,0.11,801,0.4,203,0.6
+7582,2018,11,12,22,30,-8,1.25,0.021,0.61,0,0,0,0,0,-15.7,0,0,0,0,0.281,54.05,150.47,0.89,0.11,801,0.4,214,0.7
+7583,2018,11,12,23,30,-8.6,1.26,0.022,0.61,0,0,0,0,0,-15.8,0,0,0,0,0.282,56.03,156.6,0.89,0.11,801,0.4,214,0.7
+7584,2018,11,13,0,30,-9.1,1.27,0.022,0.61,0,0,0,0,0,-15.9,0,0,0,0,0.282,57.61,156.43,0.89,0.11,801,0.4,213,0.7
+7585,2018,11,13,1,30,-9.3,1.27,0.022,0.61,0,0,0,0,0,-16.1,0,0,0,0,0.282,57.97,150.06,0.89,0.11,802,0.5,211,0.7
+7586,2018,11,13,2,30,-9.4,1.28,0.022,0.61,0,0,0,0,0,-16.2,0,0,0,0,0.281,57.78,140.46,0.89,0.11,802,0.5,204,0.6
+7587,2018,11,13,3,30,-9.4,1.3,0.022,0.61,0,0,0,0,0,-16.3,0,0,0,0,0.279,57.15,129.57,0.89,0.11,802,0.5,202,0.6
+7588,2018,11,13,4,30,-9.4,1.31,0.021,0.61,0,0,0,0,0,-16.4,0,0,0,0,0.277,56.54,118.24,0.89,0.11,802,0.5,210,0.6
+7589,2018,11,13,5,30,-9.4,1.32,0.021,0.61,0,0,0,0,0,-16.6,0,0,0,0,0.275,55.95,106.9,0.89,0.11,802,0.5,220,0.6
+7590,2018,11,13,6,30,-9.2,1.33,0.02,0.61,0,0,0,0,0,-16.7,0,0,0,0,0.272,54.55,95.87,0.89,0.11,802,0.5,222,0.6
+7591,2018,11,13,7,30,-7.8,1.33,0.02,0.61,24,515,66,0,0,-16.4,24,515,0,66,0.27,49.94,85.29,0.89,0.11,803,0.5,216,0.8
+7592,2018,11,13,8,30,-4.9,1.34,0.019,0.61,39,809,236,0,0,-15.6,39,809,0,236,0.267,42.73,75.93,0.89,0.11,803,0.5,232,1
+7593,2018,11,13,9,30,-2.1,1.33,0.019,0.61,46,919,391,0,0,-16,46,919,0,391,0.263,33.66,67.98,0.89,0.11,803,0.6,269,1.1
+7594,2018,11,13,10,30,0.3,1.33,0.018,0.61,50,969,503,0,0,-14.7,50,969,0,503,0.26,31.47,62.1,0.89,0.11,803,0.6,290,1.2
+7595,2018,11,13,11,30,2.1,1.38,0.015,0.61,50,992,561,0,0,-13.1,50,992,0,561,0.256,31.38,58.98,0.89,0.11,803,0.6,298,1.3
+7596,2018,11,13,12,30,3.6,1.37,0.016,0.61,51,991,560,0,0,-11.5,51,991,0,560,0.254,32.34,59.07,0.89,0.11,802,0.6,308,1.3
+7597,2018,11,13,13,30,4.5,1.35,0.016,0.61,49,965,497,0,0,-10,49,965,0,497,0.253,34.04,62.36,0.9,0.11,801,0.7,315,1.1
+7598,2018,11,13,14,30,4.5,1.32,0.017,0.61,46,910,381,0,0,-9.1,46,910,0,381,0.253,36.46,68.38,0.9,0.11,801,0.7,309,0.6
+7599,2018,11,13,15,30,3.1,1.3,0.017,0.61,37,792,223,0,0,-7.8,37,792,0,223,0.252,44.68,76.43,0.9,0.11,801,0.7,234,0.4
+7600,2018,11,13,16,30,0.9,1.29,0.017,0.61,22,474,56,7,4,-7,34,4,100,34,0.252,55.54,85.85,0.91,0.11,801,0.7,168,0.7
+7601,2018,11,13,17,30,-0.5,1.27,0.018,0.61,0,0,0,0,7,-9,0,0,0,0,0.252,52.64,96.48,0.91,0.11,801,0.7,169,0.8
+7602,2018,11,13,18,30,-1,1.26,0.019,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.252,53.09,107.54,0.91,0.11,801,0.7,173,0.5
+7603,2018,11,13,19,30,-1.3,1.25,0.019,0.61,0,0,0,0,7,-9.5,0,0,0,0,0.253,53.79,118.9,0.91,0.11,801,0.7,190,0.3
+7604,2018,11,13,20,30,-1.4,1.24,0.018,0.61,0,0,0,0,4,-9.4,0,0,0,0,0.255,54.51,130.24,0.91,0.11,801,0.7,222,0.2
+7605,2018,11,13,21,30,-1.5,1.23,0.018,0.61,0,0,0,0,4,-9.2,0,0,0,0,0.257,55.57,141.12,0.91,0.11,801,0.7,248,0.2
+7606,2018,11,13,22,30,-1.6,1.23,0.018,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.259,55.96,150.66,0.91,0.11,801,0.6,299,0.2
+7607,2018,11,13,23,30,-1.8,1.23,0.018,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.261,56.64,156.85,0.91,0.11,801,0.6,177,0.2
+7608,2018,11,14,0,30,-2,1.24,0.018,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.263,57.59,156.69,0.9,0.11,801,0.6,23,0.2
+7609,2018,11,14,1,30,-2.2,1.25,0.018,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.265,58.45,150.3,0.9,0.11,801,0.6,80,0.2
+7610,2018,11,14,2,30,-2.5,1.26,0.018,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.268,59.3,140.67,0.9,0.11,801,0.6,144,0.3
+7611,2018,11,14,3,30,-3,1.26,0.019,0.61,0,0,0,0,0,-9.7,0,0,0,0,0.27,59.95,129.76,0.91,0.11,800,0.6,171,0.6
+7612,2018,11,14,4,30,-3.4,1.26,0.019,0.61,0,0,0,0,4,-10.1,0,0,0,0,0.272,59.88,118.42,0.91,0.11,800,0.6,186,0.7
+7613,2018,11,14,5,30,-3.9,1.26,0.019,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.274,60.93,107.09,0.91,0.11,801,0.6,196,0.9
+7614,2018,11,14,6,30,-4.2,1.26,0.019,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.277,61.57,96.06,0.91,0.11,801,0.6,204,0.9
+7615,2018,11,14,7,30,-3.5,1.25,0.018,0.61,24,503,63,0,0,-10.5,24,503,0,63,0.279,58.37,85.5,0.91,0.11,801,0.6,213,0.9
+7616,2018,11,14,8,30,-1.3,1.26,0.018,0.61,38,806,231,0,0,-8.9,38,806,0,231,0.281,56.22,76.16,0.9,0.11,801,0.6,225,1.1
+7617,2018,11,14,9,30,1.2,1.26,0.017,0.61,45,919,386,0,0,-9.8,45,919,0,386,0.282,43.84,68.22,0.9,0.11,801,0.6,240,1.3
+7618,2018,11,14,10,30,3.1,1.26,0.016,0.61,48,973,499,0,0,-9.4,48,973,0,499,0.282,39.33,62.36,0.89,0.11,800,0.6,248,1.3
+7619,2018,11,14,11,30,4.5,1.29,0.013,0.61,47,995,556,0,0,-9,47,995,0,556,0.282,36.75,59.25,0.89,0.11,800,0.6,248,1.4
+7620,2018,11,14,12,30,5.5,1.28,0.013,0.61,46,994,553,0,0,-8.7,46,994,0,553,0.282,35.24,59.33,0.89,0.11,799,0.6,243,1.6
+7621,2018,11,14,13,30,6,1.26,0.013,0.61,47,970,493,0,0,-8.4,47,970,0,493,0.282,34.78,62.6,0.9,0.11,798,0.6,240,1.6
+7622,2018,11,14,14,30,5.7,1.25,0.015,0.61,43,915,377,0,0,-8.1,43,915,0,377,0.282,36.29,68.58,0.9,0.11,798,0.6,238,1.4
+7623,2018,11,14,15,30,3.8,1.24,0.015,0.61,36,798,221,0,0,-6.1,36,798,0,221,0.282,48.3,76.61,0.9,0.11,797,0.6,228,1
+7624,2018,11,14,16,30,1.3,1.24,0.015,0.61,21,481,55,0,0,-5.8,21,481,0,55,0.283,58.97,86,0.9,0.11,797,0.6,219,1
+7625,2018,11,14,17,30,0.2,1.24,0.015,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.284,52.58,96.62,0.9,0.11,797,0.6,220,1
+7626,2018,11,14,18,30,-0.2,1.23,0.016,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.284,53.23,107.67,0.9,0.11,797,0.6,225,0.9
+7627,2018,11,14,19,30,-0.6,1.23,0.017,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.283,54.73,119.02,0.9,0.11,797,0.6,226,0.8
+7628,2018,11,14,20,30,-0.8,1.24,0.017,0.61,0,0,0,0,4,-8.6,0,0,0,0,0.283,55.71,130.37,0.9,0.11,797,0.6,223,0.8
+7629,2018,11,14,21,30,-0.9,1.26,0.018,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.282,56.35,141.27,0.9,0.11,797,0.6,223,0.9
+7630,2018,11,14,22,30,-0.8,1.28,0.018,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.281,56.15,150.85,0.9,0.11,797,0.6,225,0.9
+7631,2018,11,14,23,30,-0.8,1.3,0.018,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.28,55.97,157.09,0.9,0.11,797,0.6,227,0.8
+7632,2018,11,15,0,30,-0.8,1.34,0.019,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.279,55.91,156.95,0.9,0.11,796,0.6,227,0.8
+7633,2018,11,15,1,30,-0.8,1.37,0.02,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.279,55.97,150.52,0.9,0.11,796,0.6,225,0.8
+7634,2018,11,15,2,30,-1,1.41,0.023,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.279,56.78,140.87,0.9,0.11,796,0.5,224,0.8
+7635,2018,11,15,3,30,-1.1,1.43,0.024,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.28,57.23,129.95,0.89,0.11,796,0.5,226,0.8
+7636,2018,11,15,4,30,-1.2,1.46,0.026,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.28,57.34,118.61,0.89,0.11,795,0.5,234,0.7
+7637,2018,11,15,5,30,-1.2,1.48,0.027,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.28,56.47,107.28,0.89,0.11,795,0.5,245,0.6
+7638,2018,11,15,6,30,-1.2,1.49,0.028,0.61,0,0,0,0,0,-9,0,0,0,0,0.279,55.28,96.26,0.89,0.11,796,0.5,251,0.5
+7639,2018,11,15,7,30,-0.5,1.5,0.029,0.61,24,465,59,0,0,-9.1,24,465,0,59,0.278,52.22,85.71,0.89,0.11,796,0.5,242,0.4
+7640,2018,11,15,8,30,1.4,1.5,0.03,0.61,42,780,226,0,0,-6.8,42,780,0,226,0.276,54.53,76.39,0.89,0.11,796,0.5,208,0.3
+7641,2018,11,15,9,30,4,1.5,0.031,0.61,52,899,382,0,0,-7.9,80,739,0,351,0.275,41.43,68.46,0.89,0.11,796,0.5,101,0.5
+7642,2018,11,15,10,30,6.2,1.5,0.031,0.61,55,960,497,0,7,-8.9,207,262,0,328,0.274,32.92,62.61,0.89,0.11,796,0.5,15,1
+7643,2018,11,15,11,30,7.5,1.43,0.021,0.61,55,990,557,0,7,-9.6,253,285,0,398,0.275,28.62,59.5,0.89,0.11,795,0.5,7,1.4
+7644,2018,11,15,12,30,8.1,1.43,0.022,0.61,54,989,555,0,7,-9.9,260,155,0,338,0.275,26.74,59.58,0.9,0.11,794,0.5,180,1.6
+7645,2018,11,15,13,30,8.2,1.43,0.022,0.61,52,967,494,0,0,-10,76,891,0,483,0.275,26.35,62.82,0.9,0.11,794,0.5,352,1.6
+7646,2018,11,15,14,30,7.5,1.41,0.02,0.61,46,914,377,0,0,-9.7,46,914,0,377,0.275,28.28,68.78,0.9,0.11,794,0.5,342,1.2
+7647,2018,11,15,15,30,5.8,1.4,0.021,0.61,39,793,220,0,0,-5.2,39,793,0,220,0.275,45.27,76.79,0.9,0.11,794,0.5,343,0.7
+7648,2018,11,15,16,30,4.2,1.39,0.021,0.61,22,465,53,0,0,-8.2,22,465,0,53,0.275,39.94,86.15,0.9,0.11,794,0.5,173,0.6
+7649,2018,11,15,17,30,3.4,1.38,0.021,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.276,35.41,96.75,0.9,0.11,794,0.5,5,0.5
+7650,2018,11,15,18,30,2.9,1.37,0.021,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.277,36.32,107.8,0.9,0.11,794,0.5,8,0.3
+7651,2018,11,15,19,30,2.2,1.36,0.022,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.278,38.54,119.14,0.9,0.11,794,0.5,101,0.2
+7652,2018,11,15,20,30,1.5,1.35,0.022,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.278,41.12,130.49,0.9,0.11,793,0.5,196,0.3
+7653,2018,11,15,21,30,0.9,1.35,0.022,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.278,43.15,141.41,0.9,0.11,793,0.5,198,0.5
+7654,2018,11,15,22,30,0.4,1.34,0.022,0.61,0,0,0,0,0,-10.2,0,0,0,0,0.277,44.99,151.03,0.9,0.11,793,0.5,200,0.7
+7655,2018,11,15,23,30,-0.2,1.35,0.022,0.61,0,0,0,0,0,-10,0,0,0,0,0.276,47.77,157.32,0.9,0.11,793,0.5,202,1
+7656,2018,11,16,0,30,-0.9,1.35,0.022,0.61,0,0,0,0,0,-9.8,0,0,0,0,0.275,51.03,157.2,0.91,0.11,792,0.6,207,1.1
+7657,2018,11,16,1,30,-1.4,1.35,0.022,0.61,0,0,0,0,4,-9.4,0,0,0,0,0.275,54.45,150.75,0.91,0.11,792,0.6,213,1.2
+7658,2018,11,16,2,30,-1.8,1.35,0.021,0.61,0,0,0,0,4,-9.2,0,0,0,0,0.276,57.08,141.07,0.91,0.11,792,0.6,216,1.2
+7659,2018,11,16,3,30,-2.1,1.34,0.021,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.277,59.55,130.14,0.91,0.11,791,0.6,218,1.2
+7660,2018,11,16,4,30,-2.3,1.33,0.021,0.61,0,0,0,0,0,-8.7,0,0,0,0,0.279,61.49,118.79,0.91,0.11,791,0.6,218,1.2
+7661,2018,11,16,5,30,-2.4,1.32,0.02,0.61,0,0,0,0,8,-8.5,0,0,0,0,0.281,62.88,107.46,0.91,0.11,791,0.6,216,1.2
+7662,2018,11,16,6,30,-2.4,1.3,0.02,0.61,0,0,0,0,8,-8.3,0,0,0,0,0.284,63.82,96.46,0.91,0.11,791,0.6,212,1.2
+7663,2018,11,16,7,30,-1.3,1.28,0.02,0.61,22,470,56,3,0,-8,26,295,39,47,0.285,60.17,85.91,0.92,0.11,791,0.6,209,1.5
+7664,2018,11,16,8,30,0.9,1.27,0.02,0.61,38,785,220,0,0,-7.1,38,785,0,220,0.286,55.05,76.61,0.92,0.11,791,0.7,209,2.1
+7665,2018,11,16,9,30,3.3,1.27,0.02,0.61,47,904,375,0,0,-7.6,47,904,0,375,0.287,44.64,68.7,0.91,0.11,791,0.7,217,2.6
+7666,2018,11,16,10,30,5.7,1.29,0.019,0.61,49,962,488,0,0,-8.4,49,962,0,488,0.286,35.4,62.86,0.91,0.11,790,0.7,230,3
+7667,2018,11,16,11,30,7.2,1.27,0.015,0.61,49,989,547,0,0,-8.9,49,989,0,547,0.286,30.83,59.76,0.91,0.11,790,0.6,240,3
+7668,2018,11,16,12,30,8.2,1.29,0.014,0.61,47,990,545,0,0,-9.2,55,966,0,541,0.287,28.11,59.82,0.91,0.11,789,0.6,248,2.8
+7669,2018,11,16,13,30,8.6,1.3,0.014,0.61,48,962,484,0,0,-9.3,69,889,0,472,0.288,27.22,63.05,0.91,0.11,789,0.7,253,2.4
+7670,2018,11,16,14,30,7.9,1.36,0.019,0.61,45,902,369,0,0,-9,45,902,0,369,0.29,29.24,68.98,0.9,0.11,789,0.7,246,1.6
+7671,2018,11,16,15,30,5.6,1.36,0.02,0.61,37,778,213,5,4,-4.6,93,400,68,183,0.291,48,76.95,0.9,0.11,789,0.7,222,1
+7672,2018,11,16,16,30,3.2,1.36,0.021,0.61,22,440,50,0,0,-7,22,440,0,50,0.292,47.24,86.3,0.91,0.11,788,0.7,206,1.1
+7673,2018,11,16,17,30,2.2,1.38,0.023,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.293,42.29,96.88,0.91,0.11,789,0.7,211,1
+7674,2018,11,16,18,30,1.6,1.39,0.026,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.295,43.83,107.91,0.91,0.11,789,0.7,242,0.7
+7675,2018,11,16,19,30,0.5,1.4,0.028,0.61,0,0,0,0,0,-9.2,0,0,0,0,0.296,48.14,119.26,0.91,0.11,789,0.7,303,0.5
+7676,2018,11,16,20,30,-0.8,1.41,0.031,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.297,55.62,130.61,0.91,0.11,789,0.7,181,0.5
+7677,2018,11,16,21,30,-1.7,1.42,0.032,0.61,0,0,0,0,0,-8,0,0,0,0,0.298,62.18,141.55,0.91,0.11,789,0.7,36,0.5
+7678,2018,11,16,22,30,-2.1,1.44,0.034,0.61,0,0,0,0,0,-7.6,0,0,0,0,0.3,65.76,151.2,0.91,0.11,789,0.7,53,0.6
+7679,2018,11,16,23,30,-2.2,1.46,0.034,0.61,0,0,0,0,0,-7.5,0,0,0,0,0.301,67.05,157.55,0.91,0.11,789,0.7,61,0.5
+7680,2018,11,17,0,30,-2.3,1.46,0.035,0.61,0,0,0,0,0,-7.3,0,0,0,0,0.302,68.47,157.45,0.91,0.11,788,0.7,64,0.4
+7681,2018,11,17,1,30,-2.3,1.44,0.034,0.61,0,0,0,0,7,-7.2,0,0,0,0,0.302,69.16,150.97,0.91,0.11,788,0.7,61,0.3
+7682,2018,11,17,2,30,-2.2,1.42,0.033,0.61,0,0,0,0,7,-7,0,0,0,0,0.301,69.51,141.27,0.91,0.11,788,0.7,176,0.2
+7683,2018,11,17,3,30,-2.1,1.41,0.033,0.61,0,0,0,0,7,-6.8,0,0,0,0,0.301,70.36,130.32,0.91,0.11,788,0.7,287,0.2
+7684,2018,11,17,4,30,-2.2,1.4,0.033,0.61,0,0,0,0,6,-6.5,0,0,0,0,0.3,72.3,118.97,0.91,0.11,788,0.7,302,0.2
+7685,2018,11,17,5,30,-2.2,1.41,0.034,0.61,0,0,0,0,6,-6,0,0,0,0,0.299,75.05,107.65,0.92,0.11,789,0.8,176,0.2
+7686,2018,11,17,6,30,-2.1,1.4,0.038,0.61,0,0,0,0,6,-5.6,0,0,0,0,0.299,76.84,96.65,0.92,0.11,789,0.8,27,0.4
+7687,2018,11,17,7,30,-1.6,1.41,0.043,0.61,25,371,50,7,7,-5.3,15,0,100,15,0.298,75.67,86.11,0.93,0.11,789,0.8,25,1.2
+7688,2018,11,17,8,30,-1.1,1.42,0.051,0.61,49,695,207,5,7,-5,64,6,71,65,0.298,74.88,76.83,0.94,0.11,790,0.8,26,2
+7689,2018,11,17,9,30,-0.6,1.41,0.063,0.61,66,812,358,0,4,-5.1,44,0,0,44,0.297,71.51,68.94,0.95,0.11,790,0.8,23,2.4
+7690,2018,11,17,10,30,-0.1,1.4,0.075,0.61,74,875,470,2,7,-5.4,148,15,36,155,0.297,67.71,63.11,0.96,0.11,790,0.8,16,2.8
+7691,2018,11,17,11,30,0.2,1.37,0.066,0.61,77,906,530,6,7,-5.7,78,1,93,79,0.297,64.53,60,0.96,0.11,790,0.8,14,3.1
+7692,2018,11,17,12,30,0.1,1.36,0.073,0.61,80,900,529,0,7,-6,176,15,0,183,0.295,63.35,60.06,0.96,0.11,791,0.7,16,3.6
+7693,2018,11,17,13,30,-0.3,1.36,0.079,0.61,76,872,468,0,4,-6.4,78,0,0,78,0.294,63.48,63.26,0.96,0.11,791,0.7,21,4
+7694,2018,11,17,14,30,-1,1.36,0.071,0.61,66,816,356,0,4,-6.8,31,0,0,31,0.294,64.58,69.16,0.96,0.11,791,0.7,26,4.3
+7695,2018,11,17,15,30,-2.1,1.38,0.068,0.61,52,682,204,7,4,-7.4,38,0,100,38,0.293,66.84,77.11,0.96,0.11,791,0.6,30,4.5
+7696,2018,11,17,16,30,-3.3,1.38,0.065,0.61,26,323,46,7,4,-8.2,14,0,100,14,0.294,68.88,86.43,0.96,0.11,792,0.6,32,4.4
+7697,2018,11,17,17,30,-4.3,1.38,0.06,0.61,0,0,0,0,4,-9,0,0,0,0,0.294,69.87,97.01,0.95,0.11,792,0.6,32,4.4
+7698,2018,11,17,18,30,-4.9,1.38,0.054,0.61,0,0,0,0,4,-9.7,0,0,0,0,0.295,68.96,108.03,0.95,0.11,792,0.5,31,4.6
+7699,2018,11,17,19,30,-5.5,1.39,0.046,0.61,0,0,0,0,4,-10.4,0,0,0,0,0.297,68.23,119.36,0.94,0.11,793,0.5,31,4.7
+7700,2018,11,17,20,30,-6.1,1.39,0.038,0.61,0,0,0,0,4,-11.1,0,0,0,0,0.3,67.94,130.72,0.93,0.11,793,0.4,31,4.4
+7701,2018,11,17,21,30,-6.9,1.38,0.032,0.61,0,0,0,0,4,-11.5,0,0,0,0,0.303,69.69,141.67,0.92,0.11,794,0.3,28,3.8
+7702,2018,11,17,22,30,-7.8,1.38,0.028,0.61,0,0,0,0,4,-11.7,0,0,0,0,0.304,73.33,151.37,0.91,0.11,794,0.3,22,3
+7703,2018,11,17,23,30,-8.7,1.37,0.025,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.304,77.75,157.77,0.91,0.11,794,0.2,17,2.6
+7704,2018,11,18,0,30,-9.4,1.38,0.023,0.61,0,0,0,0,0,-12,0,0,0,0,0.303,81.18,157.7,0.9,0.11,794,0.2,13,2.4
+7705,2018,11,18,1,30,-10,1.38,0.022,0.61,0,0,0,0,0,-12.2,0,0,0,0,0.302,83.92,151.19,0.9,0.11,794,0.2,12,2.3
+7706,2018,11,18,2,30,-10.5,1.38,0.021,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.301,86.27,141.46,0.9,0.11,794,0.2,15,1.8
+7707,2018,11,18,3,30,-11,1.38,0.02,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.301,89.04,130.5,0.9,0.11,794,0.2,18,1.4
+7708,2018,11,18,4,30,-11.3,1.37,0.019,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.301,90.68,119.15,0.9,0.11,794,0.2,17,1.2
+7709,2018,11,18,5,30,-11.5,1.36,0.019,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.3,91.67,107.84,0.9,0.11,794,0.2,13,1.1
+7710,2018,11,18,6,30,-11.5,1.37,0.018,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.298,91.2,96.84,0.9,0.11,795,0.2,17,1.1
+7711,2018,11,18,7,30,-10.3,1.37,0.018,0.61,22,509,55,0,0,-12.7,22,509,0,55,0.296,82.24,86.3,0.9,0.11,795,0.2,29,1.2
+7712,2018,11,18,8,30,-7.8,1.37,0.017,0.61,37,837,225,0,0,-12.6,37,837,0,225,0.295,68.35,77.04,0.9,0.11,795,0.2,45,1.3
+7713,2018,11,18,9,30,-4.7,1.37,0.016,0.61,44,956,384,0,0,-12.6,44,956,0,384,0.294,53.93,69.17,0.9,0.11,795,0.2,39,0.8
+7714,2018,11,18,10,30,-1.8,1.36,0.015,0.61,47,1011,500,0,0,-13.3,47,1011,0,500,0.292,41.12,63.35,0.89,0.11,794,0.2,158,0.5
+7715,2018,11,18,11,30,0.3,1.31,0.013,0.61,47,1034,560,0,0,-13.8,47,1034,0,560,0.29,33.94,60.24,0.89,0.11,794,0.2,278,0.9
+7716,2018,11,18,12,30,1.7,1.28,0.013,0.61,47,1035,560,0,0,-14.2,47,1035,0,560,0.287,29.63,60.29,0.89,0.11,793,0.2,259,1.4
+7717,2018,11,18,13,30,2.3,1.27,0.013,0.61,46,1012,498,0,0,-14.2,46,1012,0,498,0.284,28.33,63.47,0.89,0.11,793,0.2,254,1.9
+7718,2018,11,18,14,30,2.1,1.29,0.015,0.61,43,957,380,0,0,-14.2,114,635,0,338,0.282,28.74,69.35,0.89,0.11,792,0.2,249,1.9
+7719,2018,11,18,15,30,0.3,1.28,0.015,0.61,35,839,220,1,0,-13.4,45,772,11,215,0.281,35.08,77.27,0.9,0.11,792,0.2,233,1.4
+7720,2018,11,18,16,30,-2.3,1.28,0.015,0.61,21,502,51,0,0,-10,21,502,0,51,0.281,55.52,86.56,0.9,0.11,792,0.2,219,1.1
+7721,2018,11,18,17,30,-3.6,1.3,0.015,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.283,51.96,97.12,0.89,0.11,792,0.3,220,1.1
+7722,2018,11,18,18,30,-3.9,1.32,0.015,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.284,51.99,108.13,0.89,0.11,792,0.3,228,0.9
+7723,2018,11,18,19,30,-3.9,1.33,0.016,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.285,51.86,119.46,0.89,0.11,793,0.3,235,0.7
+7724,2018,11,18,20,30,-4,1.33,0.016,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.284,51.78,130.82,0.89,0.11,793,0.3,232,0.6
+7725,2018,11,18,21,30,-4.2,1.33,0.016,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.283,51.34,141.79,0.89,0.11,793,0.3,227,0.5
+7726,2018,11,18,22,30,-4.4,1.33,0.016,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.282,49.73,151.52,0.89,0.11,793,0.3,248,0.3
+7727,2018,11,18,23,30,-4.5,1.33,0.016,0.61,0,0,0,0,7,-13.8,0,0,0,0,0.282,48.29,157.99,0.89,0.11,793,0.3,305,0.2
+7728,2018,11,19,0,30,-4.7,1.32,0.015,0.61,0,0,0,0,0,-14.1,0,0,0,0,0.283,47.62,157.94,0.89,0.11,793,0.3,343,0.2
+7729,2018,11,19,1,30,-5,1.32,0.015,0.61,0,0,0,0,0,-14.5,0,0,0,0,0.283,47.44,151.41,0.89,0.11,793,0.4,338,0.2
+7730,2018,11,19,2,30,-5.3,1.31,0.015,0.61,0,0,0,0,0,-14.6,0,0,0,0,0.284,48.14,141.66,0.89,0.11,793,0.4,312,0.2
+7731,2018,11,19,3,30,-5.7,1.3,0.016,0.61,0,0,0,0,0,-14.6,0,0,0,0,0.284,49.55,130.69,0.89,0.11,793,0.4,278,0.3
+7732,2018,11,19,4,30,-6,1.3,0.016,0.61,0,0,0,0,0,-14.8,0,0,0,0,0.285,49.93,119.34,0.89,0.11,793,0.4,257,0.4
+7733,2018,11,19,5,30,-6.1,1.3,0.016,0.61,0,0,0,0,0,-14.9,0,0,0,0,0.285,49.61,108.02,0.89,0.11,794,0.5,245,0.5
+7734,2018,11,19,6,30,-6.2,1.31,0.016,0.61,0,0,0,0,0,-15.2,0,0,0,0,0.286,48.93,97.03,0.89,0.11,794,0.5,232,0.5
+7735,2018,11,19,7,30,-5.3,1.32,0.015,0.61,21,465,49,0,0,-15.4,21,465,0,49,0.286,45.07,86.5,0.89,0.11,794,0.5,211,0.4
+7736,2018,11,19,8,30,-3.1,1.33,0.015,0.61,35,797,211,0,0,-13.3,35,797,43,211,0.286,45.19,77.26,0.89,0.11,795,0.5,197,0.4
+7737,2018,11,19,9,30,-0.4,1.33,0.015,0.61,42,918,365,0,0,-15.3,42,918,0,365,0.286,31.45,69.39,0.88,0.11,795,0.5,232,0.5
+7738,2018,11,19,10,30,1.8,1.32,0.015,0.61,47,973,480,0,0,-15.8,47,973,0,480,0.286,25.8,63.59,0.89,0.11,795,0.5,272,0.7
+7739,2018,11,19,11,30,3.2,1.26,0.016,0.61,50,995,540,0,0,-15.3,50,995,43,540,0.285,24.31,60.48,0.89,0.11,795,0.5,280,0.8
+7740,2018,11,19,12,30,4.1,1.23,0.016,0.61,50,996,540,0,0,-14.7,50,996,0,540,0.285,23.95,60.51,0.89,0.11,794,0.5,289,0.8
+7741,2018,11,19,13,30,4.5,1.19,0.017,0.61,48,973,480,0,0,-14.1,48,973,0,480,0.285,24.57,63.67,0.89,0.11,794,0.5,296,0.7
+7742,2018,11,19,14,30,4.2,1.18,0.016,0.61,44,920,366,0,0,-13.5,44,920,0,366,0.285,26.36,69.52,0.89,0.11,794,0.4,248,0.4
+7743,2018,11,19,15,30,2.7,1.15,0.016,0.61,36,797,210,0,0,-10.3,36,797,0,210,0.286,37.8,77.42,0.89,0.11,794,0.4,171,0.5
+7744,2018,11,19,16,30,0.5,1.13,0.016,0.61,20,412,44,0,0,-10.3,20,412,0,44,0.287,44.26,86.68,0.89,0.11,794,0.4,143,0.9
+7745,2018,11,19,17,30,-0.9,1.13,0.016,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.288,41.46,97.23,0.89,0.11,794,0.4,139,1
+7746,2018,11,19,18,30,-1.5,1.14,0.017,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.288,42.85,108.23,0.89,0.11,794,0.4,131,0.9
+7747,2018,11,19,19,30,-2,1.15,0.017,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.289,44.62,119.56,0.89,0.11,794,0.4,121,0.9
+7748,2018,11,19,20,30,-2.2,1.16,0.017,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.289,45.62,130.92,0.89,0.11,794,0.4,115,0.8
+7749,2018,11,19,21,30,-2.1,1.17,0.017,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.29,45.45,141.91,0.89,0.11,794,0.4,118,0.8
+7750,2018,11,19,22,30,-2,1.18,0.016,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.29,45,151.67,0.89,0.11,794,0.4,130,0.7
+7751,2018,11,19,23,30,-2.1,1.19,0.016,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.291,45.29,158.2,0.89,0.11,794,0.4,149,0.6
+7752,2018,11,20,0,30,-2.3,1.2,0.016,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.291,45.79,158.17,0.89,0.11,794,0.4,169,0.5
+7753,2018,11,20,1,30,-2.8,1.21,0.015,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.29,47.26,151.63,0.89,0.11,794,0.4,180,0.5
+7754,2018,11,20,2,30,-3.4,1.22,0.015,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.29,49.19,141.85,0.89,0.11,794,0.4,185,0.5
+7755,2018,11,20,3,30,-4.1,1.24,0.015,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.29,51.62,130.87,0.89,0.11,794,0.4,192,0.5
+7756,2018,11,20,4,30,-4.6,1.25,0.014,0.61,0,0,0,0,0,-12.7,0,0,0,0,0.29,53.08,119.51,0.88,0.11,794,0.4,199,0.5
+7757,2018,11,20,5,30,-5.2,1.27,0.014,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.289,55.13,108.2,0.88,0.11,794,0.4,200,0.5
+7758,2018,11,20,6,30,-5.5,1.29,0.013,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,56.11,97.22,0.88,0.11,795,0.4,197,0.5
+7759,2018,11,20,7,30,-4.6,1.31,0.013,0.61,20,432,45,0,0,-12.8,20,432,0,45,0.288,52.56,86.7,0.88,0.11,795,0.4,190,0.6
+7760,2018,11,20,8,30,-2.4,1.32,0.013,0.61,34,815,211,0,0,-11,34,815,0,211,0.287,51.63,77.47,0.88,0.11,795,0.4,187,0.8
+7761,2018,11,20,9,30,0.4,1.33,0.013,0.61,40,936,366,0,0,-11.8,40,936,0,366,0.285,39.68,69.62,0.87,0.11,795,0.4,199,1.1
+7762,2018,11,20,10,30,3.1,1.33,0.013,0.61,44,991,481,0,0,-12.3,44,991,0,481,0.284,31.29,63.82,0.87,0.11,795,0.4,210,1.5
+7763,2018,11,20,11,30,5,1.43,0.011,0.61,44,1014,540,0,0,-13.2,44,1014,0,540,0.281,25.41,60.71,0.87,0.11,794,0.4,212,1.7
+7764,2018,11,20,12,30,6,1.43,0.011,0.61,44,1017,541,0,0,-13.4,44,1017,0,541,0.279,23.37,60.73,0.86,0.11,794,0.3,214,1.7
+7765,2018,11,20,13,30,6.4,1.43,0.011,0.61,44,993,481,0,0,-13.3,44,993,0,481,0.278,22.94,63.87,0.87,0.11,793,0.3,218,1.7
+7766,2018,11,20,14,30,5.6,1.16,0.015,0.61,42,937,367,0,0,-12.8,42,937,0,367,0.277,25.25,69.69,0.88,0.11,793,0.3,224,1.3
+7767,2018,11,20,15,30,3.3,1.16,0.014,0.61,35,817,211,0,0,-7.6,35,817,0,211,0.277,44.77,77.56,0.88,0.11,793,0.3,239,1
+7768,2018,11,20,16,30,1,1.17,0.014,0.61,20,430,44,0,0,-9.6,20,430,0,44,0.277,45,86.8,0.88,0.11,793,0.3,255,1.1
+7769,2018,11,20,17,30,0,1.17,0.014,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.278,38.25,97.34,0.88,0.11,793,0.3,265,1
+7770,2018,11,20,18,30,-0.4,1.17,0.014,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.278,38.59,108.32,0.88,0.11,794,0.3,272,0.8
+7771,2018,11,20,19,30,-0.8,1.18,0.013,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.278,39.32,119.64,0.88,0.11,794,0.3,274,0.6
+7772,2018,11,20,20,30,-1.2,1.18,0.013,0.61,0,0,0,0,0,-13,0,0,0,0,0.278,40.4,131.01,0.87,0.11,794,0.3,266,0.5
+7773,2018,11,20,21,30,-1.5,1.18,0.013,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.277,41.59,142.01,0.87,0.11,794,0.3,241,0.4
+7774,2018,11,20,22,30,-1.9,1.18,0.012,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.277,43.09,151.82,0.87,0.11,794,0.3,215,0.6
+7775,2018,11,20,23,30,-2.3,1.19,0.012,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.277,44.58,158.4,0.87,0.11,794,0.3,206,0.8
+7776,2018,11,21,0,30,-2.9,1.19,0.012,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.277,48.13,158.4,0.87,0.11,793,0.3,205,1
+7777,2018,11,21,1,30,-3.5,1.19,0.012,0.61,0,0,0,0,0,-12.2,0,0,0,0,0.277,50.77,151.84,0.87,0.11,794,0.3,207,1.1
+7778,2018,11,21,2,30,-4.1,1.19,0.012,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.277,52.33,142.04,0.87,0.11,794,0.3,209,1.2
+7779,2018,11,21,3,30,-4.7,1.2,0.012,0.61,0,0,0,0,0,-12.6,0,0,0,0,0.277,53.92,131.05,0.87,0.11,794,0.3,211,1.2
+7780,2018,11,21,4,30,-5.2,1.2,0.012,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.278,55.26,119.69,0.87,0.11,794,0.3,214,1.3
+7781,2018,11,21,5,30,-5.7,1.21,0.012,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.279,56.84,108.38,0.87,0.11,795,0.3,215,1.3
+7782,2018,11,21,6,30,-6,1.21,0.012,0.61,0,0,0,0,0,-13,0,0,0,0,0.279,57.51,97.41,0.87,0.11,795,0.3,214,1.3
+7783,2018,11,21,7,30,-4.8,1.21,0.012,0.61,20,433,43,0,0,-13,20,433,0,43,0.278,52.57,86.89,0.87,0.11,795,0.3,208,1.3
+7784,2018,11,21,8,30,-1.9,1.21,0.012,0.61,33,821,208,0,0,-10.8,33,821,0,208,0.276,50.45,77.68,0.87,0.11,796,0.3,203,1.8
+7785,2018,11,21,9,30,1.1,1.21,0.012,0.61,40,942,365,0,0,-12,40,942,0,365,0.273,37.09,69.84,0.87,0.11,795,0.3,205,2.6
+7786,2018,11,21,10,30,3.6,1.22,0.012,0.61,44,1003,483,0,0,-12.6,44,1003,0,483,0.271,29.61,64.05,0.87,0.11,795,0.3,209,3
+7787,2018,11,21,11,30,5.3,1.15,0.013,0.61,46,1030,546,0,0,-13,46,1030,0,546,0.27,25.32,60.94,0.87,0.11,795,0.2,212,3.3
+7788,2018,11,21,12,30,6.3,1.18,0.012,0.61,46,1033,548,0,0,-13.6,46,1033,0,548,0.27,22.56,60.94,0.87,0.11,794,0.2,216,3.5
+7789,2018,11,21,13,30,6.5,1.2,0.012,0.61,43,1012,486,0,0,-13.8,43,1012,0,486,0.27,21.78,64.06,0.87,0.11,794,0.2,220,3.5
+7790,2018,11,21,14,30,5.5,1.22,0.012,0.61,40,959,370,0,0,-13.6,40,959,0,370,0.269,23.89,69.85,0.87,0.11,793,0.2,224,2.6
+7791,2018,11,21,15,30,2.6,1.24,0.011,0.61,33,841,212,0,0,-9.7,33,841,0,212,0.268,39.91,77.7,0.87,0.11,793,0.2,226,1.5
+7792,2018,11,21,16,30,-0.3,1.26,0.011,0.61,20,453,44,0,0,-9.6,20,453,0,44,0.267,49.34,86.91,0.87,0.11,793,0.2,225,1.3
+7793,2018,11,21,17,30,-1.4,1.27,0.011,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.266,43.35,97.43,0.87,0.11,793,0.2,217,1.3
+7794,2018,11,21,18,30,-1.7,1.27,0.012,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.265,43.72,108.41,0.88,0.11,793,0.2,206,1.3
+7795,2018,11,21,19,30,-2.1,1.28,0.013,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.265,45,119.72,0.89,0.11,793,0.2,198,1.3
+7796,2018,11,21,20,30,-2.6,1.27,0.015,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.265,48.11,131.09,0.9,0.11,793,0.2,196,1.4
+7797,2018,11,21,21,30,-2.8,1.28,0.016,0.61,0,0,0,0,0,-11.6,0,0,0,0,0.267,50.96,142.11,0.9,0.11,793,0.2,197,1.4
+7798,2018,11,21,22,30,-3,1.31,0.017,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.269,52.19,151.95,0.91,0.11,793,0.3,199,1.4
+7799,2018,11,21,23,30,-3,1.33,0.019,0.61,0,0,0,0,4,-11.3,0,0,0,0,0.272,52.58,158.59,0.91,0.11,792,0.3,201,1.5
+7800,2018,11,22,0,30,-2.8,1.36,0.021,0.61,0,0,0,0,7,-11.2,0,0,0,0,0.274,52.41,158.63,0.91,0.11,792,0.4,201,1.5
+7801,2018,11,22,1,30,-2.6,1.39,0.024,0.61,0,0,0,0,7,-11,0,0,0,0,0.276,52.56,152.05,0.91,0.11,792,0.4,200,1.6
+7802,2018,11,22,2,30,-2.6,1.41,0.026,0.61,0,0,0,0,6,-10.9,0,0,0,0,0.278,53.1,142.23,0.91,0.11,791,0.4,197,1.6
+7803,2018,11,22,3,30,-2.8,1.43,0.027,0.61,0,0,0,0,6,-10.8,0,0,0,0,0.279,53.98,131.23,0.91,0.11,791,0.5,194,1.7
+7804,2018,11,22,4,30,-3,1.43,0.028,0.61,0,0,0,0,7,-10.9,0,0,0,0,0.28,54.52,119.87,0.91,0.11,790,0.5,193,1.7
+7805,2018,11,22,5,30,-3.2,1.43,0.028,0.61,0,0,0,0,7,-10.8,0,0,0,0,0.282,55.74,108.56,0.91,0.11,790,0.6,194,1.7
+7806,2018,11,22,6,30,-3.7,1.47,0.027,0.61,0,0,0,0,0,-11.1,0,0,0,0,0.282,56.55,97.6,0.91,0.11,790,0.6,196,1.7
+7807,2018,11,22,7,30,-2.8,1.45,0.029,0.61,20,334,37,7,6,-11.4,18,2,100,18,0.281,51.62,87.08,0.93,0.11,790,0.7,198,1.9
+7808,2018,11,22,8,30,-0.9,1.38,0.036,0.61,43,710,192,7,7,-10.5,88,28,100,94,0.282,48.03,77.89,0.94,0.11,789,0.8,203,2.4
+7809,2018,11,22,9,30,0.2,1.33,0.045,0.61,58,827,340,0,7,-10.5,56,3,0,57,0.283,44.65,70.06,0.95,0.11,789,0.9,211,3.1
+7810,2018,11,22,10,30,0.6,1.31,0.056,0.61,70,871,448,0,6,-9.5,73,1,0,73,0.284,46.75,64.27,0.96,0.11,788,0.9,214,4
+7811,2018,11,22,11,30,0.6,1.29,0.073,0.61,80,875,502,0,7,-7.3,130,9,0,134,0.285,55.4,61.16,0.97,0.11,787,1,212,4.7
+7812,2018,11,22,12,30,0.4,1.28,0.089,0.61,84,861,499,0,7,-5.1,149,15,0,156,0.285,66.53,61.15,0.97,0.11,786,1,209,4.9
+7813,2018,11,22,13,30,0.3,1.27,0.093,0.61,82,823,440,0,4,-3.9,148,41,0,166,0.286,73.48,64.24,0.97,0.11,785,1,208,4.9
+7814,2018,11,22,14,30,0.1,1.28,0.102,0.61,76,741,329,0,7,-3.2,162,98,0,196,0.289,78.18,70.01,0.97,0.11,784,1,211,4.7
+7815,2018,11,22,15,30,-0.4,1.28,0.105,0.61,57,588,181,7,7,-2.8,67,4,100,68,0.292,83.97,77.83,0.96,0.11,784,0.9,212,4.1
+7816,2018,11,22,16,30,-1.3,1.33,0.092,0.61,23,216,34,7,6,-2.4,9,0,100,9,0.296,92.42,87.01,0.96,0.11,784,0.8,208,3
+7817,2018,11,22,17,30,-2,1.37,0.079,0.61,0,0,0,0,7,-2.3,0,0,0,0,0.299,98.08,97.52,0.95,0.11,785,0.8,209,2.5
+7818,2018,11,22,18,30,-2.3,1.39,0.082,0.61,0,0,0,0,7,-2.3,0,0,0,0,0.302,100,108.49,0.95,0.11,785,0.8,218,2.4
+7819,2018,11,22,19,30,-2.6,1.39,0.076,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.304,100,119.8,0.95,0.11,785,0.7,232,2.5
+7820,2018,11,22,20,30,-3.1,1.37,0.058,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.306,100,131.17,0.94,0.11,786,0.7,243,2.5
+7821,2018,11,22,21,30,-3.7,1.34,0.041,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.308,100,142.2,0.94,0.11,786,0.5,243,2.3
+7822,2018,11,22,22,30,-4.3,1.31,0.027,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.308,100,152.08,0.93,0.11,786,0.4,232,2.2
+7823,2018,11,22,23,30,-4.9,1.29,0.022,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.306,100,158.78,0.93,0.11,787,0.4,220,2.4
+7824,2018,11,23,0,30,-5.2,1.28,0.02,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.305,100,158.85,0.93,0.11,787,0.4,212,2.6
+7825,2018,11,23,1,30,-5.3,1.29,0.02,0.61,0,0,0,0,7,-5.3,0,0,0,0,0.305,100,152.25,0.93,0.11,787,0.5,205,2.7
+7826,2018,11,23,2,30,-5.3,1.29,0.021,0.61,0,0,0,0,0,-5.3,0,0,0,0,0.305,100,142.42,0.93,0.11,787,0.6,199,2.9
+7827,2018,11,23,3,30,-4.9,1.28,0.022,0.61,0,0,0,0,4,-5.3,0,0,0,0,0.304,96.76,131.4,0.93,0.11,786,0.7,195,3.3
+7828,2018,11,23,4,30,-4.4,1.27,0.021,0.61,0,0,0,0,4,-5.2,0,0,0,0,0.302,94.11,120.04,0.93,0.11,786,0.7,194,3.5
+7829,2018,11,23,5,30,-4.2,1.29,0.021,0.61,0,0,0,0,0,-5,0,0,0,0,0.3,94.15,108.74,0.93,0.11,787,0.7,195,3.3
+7830,2018,11,23,6,30,-4.3,1.29,0.022,0.61,0,0,0,0,0,-5,0,0,0,0,0.298,95.17,97.78,0.93,0.11,787,0.7,200,3.2
+7831,2018,11,23,7,30,-3.6,1.31,0.024,0.61,20,344,36,7,4,-5,16,0,100,16,0.296,89.84,87.26,0.93,0.11,787,0.7,207,3.6
+7832,2018,11,23,8,30,-1.8,1.32,0.025,0.61,40,748,194,0,0,-4.7,43,699,7,187,0.295,80.33,78.09,0.94,0.11,787,0.6,217,4.1
+7833,2018,11,23,9,30,0.5,1.34,0.025,0.61,49,884,347,0,0,-4.2,49,884,0,347,0.294,70.52,70.27,0.93,0.11,787,0.6,237,4.2
+7834,2018,11,23,10,30,2.5,1.34,0.023,0.61,54,946,461,0,0,-4,54,946,0,461,0.293,62.1,64.49,0.93,0.11,787,0.6,257,4.1
+7835,2018,11,23,11,30,3.5,1.3,0.023,0.61,56,971,521,0,0,-4.3,156,606,0,446,0.29,56.66,61.37,0.93,0.11,787,0.6,262,3.9
+7836,2018,11,23,12,30,4,1.26,0.022,0.61,55,972,521,0,4,-5,175,172,0,257,0.288,51.81,61.35,0.93,0.11,786,0.6,253,3.8
+7837,2018,11,23,13,30,4.4,1.23,0.021,0.61,52,945,460,0,4,-5.5,189,351,0,341,0.286,48.68,64.41,0.93,0.11,786,0.7,235,3.8
+7838,2018,11,23,14,30,4.3,1.2,0.021,0.61,47,884,347,0,0,-5.4,47,884,0,347,0.285,49.26,70.16,0.93,0.11,785,0.7,218,3.7
+7839,2018,11,23,15,30,2.5,1.18,0.022,0.61,38,746,194,0,0,-4.7,38,746,0,194,0.284,59.01,77.95,0.94,0.11,785,0.8,207,2.9
+7840,2018,11,23,16,30,0.3,1.17,0.021,0.61,19,351,37,6,4,-4.1,17,69,82,20,0.283,72.36,87.11,0.94,0.11,785,0.8,204,2.4
+7841,2018,11,23,17,30,-0.5,1.17,0.021,0.61,0,0,0,0,4,-4.2,0,0,0,0,0.283,75.79,97.61,0.94,0.11,784,0.9,205,2.8
+7842,2018,11,23,18,30,-0.4,1.2,0.02,0.61,0,0,0,0,4,-4.1,0,0,0,0,0.285,76.05,108.56,0.94,0.11,784,0.9,206,3.4
+7843,2018,11,23,19,30,-0.5,1.22,0.022,0.61,0,0,0,0,7,-3.9,0,0,0,0,0.287,77.5,119.87,0.94,0.11,784,1,205,3.6
+7844,2018,11,23,20,30,-0.6,1.21,0.025,0.61,0,0,0,0,4,-3.7,0,0,0,0,0.29,79.43,131.24,0.94,0.11,783,1,201,3.9
+7845,2018,11,23,21,30,-0.8,1.19,0.029,0.61,0,0,0,0,4,-3.4,0,0,0,0,0.291,82.57,142.29,0.94,0.11,782,1,200,4.4
+7846,2018,11,23,22,30,-0.9,1.17,0.029,0.61,0,0,0,0,4,-2.9,0,0,0,0,0.292,86.52,152.2,0.94,0.11,782,1.1,201,4.9
+7847,2018,11,23,23,30,-0.8,1.17,0.029,0.61,0,0,0,0,4,-2.3,0,0,0,0,0.293,89.35,158.95,0.94,0.11,781,1.1,205,5.5
+7848,2018,11,24,0,30,-0.7,1.17,0.026,0.61,0,0,0,0,4,-1.9,0,0,0,0,0.292,91.78,159.07,0.94,0.11,781,1.1,208,5.9
+7849,2018,11,24,1,30,-0.8,1.16,0.027,0.61,0,0,0,0,7,-1.7,0,0,0,0,0.292,93.93,152.45,0.94,0.11,780,1,209,5.8
+7850,2018,11,24,2,30,-0.8,1.14,0.032,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.293,94.6,142.6,0.95,0.11,780,1,209,5.5
+7851,2018,11,24,3,30,-0.8,1.14,0.034,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.295,95.21,131.58,0.94,0.11,779,1,206,5.2
+7852,2018,11,24,4,30,-1,1.15,0.031,0.61,0,0,0,0,4,-1.5,0,0,0,0,0.298,96.67,120.22,0.94,0.11,778,1,203,5.2
+7853,2018,11,24,5,30,-1.3,1.17,0.027,0.61,0,0,0,0,4,-1.6,0,0,0,0,0.3,97.51,108.91,0.93,0.11,777,1,203,5.2
+7854,2018,11,24,6,30,-1.3,1.17,0.025,0.61,0,0,0,0,4,-2,0,0,0,0,0.302,95.09,97.97,0.94,0.11,777,1,217,4.9
+7855,2018,11,24,7,30,-1.1,1.14,0.028,0.61,18,284,31,7,4,-2.1,6,0,100,6,0.304,92.91,87.45,0.94,0.11,778,0.9,248,4.5
+7856,2018,11,24,8,30,-0.9,1.14,0.032,0.61,40,719,186,7,4,-2.4,35,0,100,35,0.308,89.89,78.29,0.93,0.11,778,0.8,281,4.2
+7857,2018,11,24,9,30,-0.7,1.15,0.024,0.61,46,882,341,0,7,-3.5,29,1,0,29,0.313,81.21,70.48,0.92,0.11,779,0.7,298,4.7
+7858,2018,11,24,10,30,-0.2,1.13,0.017,0.61,47,964,459,0,6,-5.8,11,0,0,11,0.32,66.03,64.7,0.9,0.11,780,0.5,296,5.5
+7859,2018,11,24,11,30,0.3,1.13,0.012,0.61,44,1004,522,0,7,-8.5,85,6,0,88,0.326,51.69,61.58,0.89,0.11,780,0.4,293,6.3
+7860,2018,11,24,12,30,0.4,1.16,0.01,0.61,43,1015,527,0,7,-11.1,151,24,0,162,0.332,41.77,61.54,0.88,0.11,780,0.3,297,7.1
+7861,2018,11,24,13,30,-0.2,1.16,0.01,0.61,42,994,469,0,7,-13,141,24,0,151,0.337,37.45,64.58,0.89,0.11,780,0.3,306,7.3
+7862,2018,11,24,14,30,-0.9,1.14,0.01,0.61,39,938,355,0,4,-13.5,146,300,0,247,0.339,37.8,70.3,0.89,0.11,781,0.3,312,7.1
+7863,2018,11,24,15,30,-1.8,1.12,0.011,0.61,33,799,198,4,8,-12.9,79,424,64,167,0.34,42.62,78.06,0.89,0.11,782,0.4,315,6.6
+7864,2018,11,24,16,30,-2.8,1.08,0.015,0.61,19,380,38,7,7,-11.7,19,1,100,19,0.342,50.44,87.2,0.91,0.11,783,0.4,318,6.3
+7865,2018,11,24,17,30,-3.4,1.05,0.022,0.61,0,0,0,0,7,-10.4,0,0,0,0,0.345,58.41,97.69,0.93,0.76,784,0.5,325,6.5
+7866,2018,11,24,18,30,-3.5,1.08,0.026,0.61,0,0,0,0,7,-9,0,0,0,0,0.345,65.85,108.63,0.93,0.76,786,0.5,336,6.4
+7867,2018,11,24,19,30,-4,1.16,0.021,0.61,0,0,0,0,7,-8,0,0,0,0,0.342,73.59,119.93,0.92,0.76,787,0.5,348,5.3
+7868,2018,11,24,20,30,-4.9,1.2,0.016,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.339,79.79,131.31,0.91,0.76,788,0.4,354,3.8
+7869,2018,11,24,21,30,-5.8,1.22,0.015,0.61,0,0,0,0,4,-8,0,0,0,0,0.334,84.51,142.36,0.91,0.76,789,0.4,178,2.6
+7870,2018,11,24,22,30,-6.3,1.23,0.015,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.327,87.09,152.31,0.91,0.76,789,0.4,4,1.9
+7871,2018,11,24,23,30,-6.7,1.23,0.015,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.317,90.09,159.12,0.92,0.76,790,0.4,13,1.3
+7872,2018,11,25,0,30,-7.2,1.24,0.015,0.61,0,0,0,0,4,-8,0,0,0,0,0.308,93.78,159.28,0.92,0.76,790,0.4,17,0.9
+7873,2018,11,25,1,30,-7.5,1.25,0.015,0.61,0,0,0,0,4,-8,0,0,0,0,0.3,96.02,152.65,0.92,0.76,791,0.4,14,0.8
+7874,2018,11,25,2,30,-7.8,1.26,0.016,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.294,97.56,142.78,0.92,0.76,791,0.4,12,0.7
+7875,2018,11,25,3,30,-8,1.26,0.017,0.61,0,0,0,0,4,-8.2,0,0,0,0,0.289,98.32,131.75,0.92,0.76,792,0.4,19,0.7
+7876,2018,11,25,4,30,-8.2,1.25,0.017,0.61,0,0,0,0,4,-8.3,0,0,0,0,0.285,98.93,120.39,0.93,0.76,792,0.4,30,0.7
+7877,2018,11,25,5,30,-8.4,1.24,0.018,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.281,99.61,109.09,0.93,0.76,792,0.4,36,0.6
+7878,2018,11,25,6,30,-8.4,1.24,0.019,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.28,98.89,98.15,0.93,0.76,793,0.4,43,0.5
+7879,2018,11,25,7,30,-7.6,1.23,0.021,0.61,19,311,32,1,0,-8.7,19,299,11,31,0.28,92.1,87.62,0.93,0.76,793,0.4,59,0.5
+7880,2018,11,25,8,30,-5.5,1.22,0.022,0.61,41,772,195,0,0,-8.6,41,772,0,195,0.279,79,78.49,0.93,0.76,794,0.4,197,0.7
+7881,2018,11,25,9,30,-3.1,1.23,0.02,0.61,53,920,357,0,0,-8.3,53,920,0,357,0.278,67.54,70.68,0.92,0.76,794,0.3,324,1.4
+7882,2018,11,25,10,30,-1.5,1.22,0.017,0.61,58,983,475,0,0,-9,58,983,0,475,0.278,56.53,64.91,0.91,0.76,793,0.3,325,1.7
+7883,2018,11,25,11,30,-0.3,1.21,0.016,0.61,61,1007,537,0,0,-10,116,851,0,518,0.279,47.95,61.78,0.91,0.76,793,0.3,329,1.7
+7884,2018,11,25,12,30,0.6,1.18,0.016,0.61,61,1008,538,0,4,-10.8,340,60,0,368,0.28,42.16,61.73,0.9,0.76,793,0.3,330,1.7
+7885,2018,11,25,13,30,0.9,1.14,0.016,0.61,58,984,478,0,4,-11.5,271,180,0,348,0.281,38.89,64.75,0.9,0.76,792,0.3,333,1.7
+7886,2018,11,25,14,30,0.6,1.1,0.016,0.61,50,928,361,0,0,-12,56,895,0,356,0.281,38.34,70.43,0.9,0.76,792,0.3,339,1.6
+7887,2018,11,25,15,30,-0.9,1.06,0.016,0.61,39,802,203,0,0,-12.3,39,802,0,203,0.282,41.88,78.17,0.89,0.76,792,0.3,347,1.1
+7888,2018,11,25,16,30,-2.8,1.05,0.015,0.61,19,398,38,0,0,-10.9,19,398,0,38,0.284,53.8,87.28,0.89,0.76,793,0.3,177,0.7
+7889,2018,11,25,17,30,-4,1.03,0.015,0.61,0,0,0,0,0,-12.2,0,0,0,0,0.284,52.72,97.76,0.89,0.44,794,0.3,4,0.7
+7890,2018,11,25,18,30,-4.5,1.01,0.016,0.61,0,0,0,0,0,-12,0,0,0,0,0.284,55.72,108.69,0.9,0.44,794,0.3,5,0.7
+7891,2018,11,25,19,30,-4.9,1,0.017,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.282,58.08,119.98,0.9,0.44,795,0.3,181,0.7
+7892,2018,11,25,20,30,-5.3,1,0.017,0.61,0,0,0,0,0,-12.1,0,0,0,0,0.281,59,131.36,0.9,0.44,795,0.3,348,0.6
+7893,2018,11,25,21,30,-5.7,0.99,0.017,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.28,58.6,142.43,0.9,0.44,795,0.3,326,0.5
+7894,2018,11,25,22,30,-6.2,0.98,0.017,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.279,59.35,152.41,0.9,0.44,795,0.3,298,0.4
+7895,2018,11,25,23,30,-6.6,0.98,0.017,0.61,0,0,0,0,0,-13.1,0,0,0,0,0.278,60.07,159.29,0.9,0.44,795,0.3,271,0.5
+7896,2018,11,26,0,30,-7.1,0.98,0.017,0.61,0,0,0,0,0,-13.2,0,0,0,0,0.277,61.95,159.48,0.9,0.44,795,0.3,266,0.5
+7897,2018,11,26,1,30,-7.4,0.96,0.016,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.276,62.69,152.84,0.9,0.44,795,0.3,269,0.5
+7898,2018,11,26,2,30,-7.8,0.93,0.016,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.273,63.91,142.96,0.9,0.44,795,0.3,239,0.5
+7899,2018,11,26,3,30,-8.4,0.93,0.016,0.61,0,0,0,0,0,-13.7,0,0,0,0,0.269,65.83,131.92,0.9,0.44,795,0.3,213,0.7
+7900,2018,11,26,4,30,-8.7,0.94,0.015,0.61,0,0,0,0,0,-13.9,0,0,0,0,0.267,65.96,120.56,0.9,0.44,795,0.3,214,0.7
+7901,2018,11,26,5,30,-8.9,0.94,0.014,0.61,0,0,0,0,0,-14.1,0,0,0,0,0.265,65.88,109.26,0.9,0.44,795,0.4,215,0.7
+7902,2018,11,26,6,30,-8.9,0.95,0.014,0.61,0,0,0,0,0,-14.3,0,0,0,0,0.264,64.96,98.33,0.9,0.44,795,0.4,206,0.6
+7903,2018,11,26,7,30,-7.9,0.96,0.015,0.61,18,319,30,0,0,-14.4,18,319,0,30,0.262,59.76,87.8,0.9,0.44,796,0.4,188,0.8
+7904,2018,11,26,8,30,-5.5,0.97,0.014,0.61,34,779,187,0,0,-13.2,34,779,0,187,0.261,54.71,78.68,0.9,0.44,796,0.4,193,1.2
+7905,2018,11,26,9,30,-2.8,0.97,0.014,0.61,43,911,341,0,0,-13,43,911,0,341,0.259,45.52,70.88,0.9,0.44,796,0.4,230,1.4
+7906,2018,11,26,10,30,-0.8,0.95,0.014,0.61,48,968,455,0,0,-13,48,968,0,455,0.258,39.25,65.11,0.9,0.44,796,0.5,252,1.5
+7907,2018,11,26,11,30,0.8,0.94,0.015,0.61,50,992,516,0,0,-12.6,50,992,0,516,0.256,35.91,61.98,0.9,0.44,795,0.5,247,1.8
+7908,2018,11,26,12,30,1.9,0.92,0.015,0.61,51,992,518,0,0,-12.1,51,992,0,518,0.255,34.56,61.91,0.9,0.44,795,0.5,242,2.1
+7909,2018,11,26,13,30,2.5,0.91,0.015,0.61,49,970,460,0,0,-11.7,49,970,0,460,0.254,34.32,64.9,0.9,0.44,794,0.5,242,2.3
+7910,2018,11,26,14,30,2.4,0.92,0.014,0.61,43,910,346,0,0,-11.4,43,910,0,346,0.254,35.42,70.56,0.9,0.44,794,0.5,238,2.1
+7911,2018,11,26,15,30,0.4,0.92,0.014,0.61,35,777,193,0,0,-10,35,777,0,193,0.255,45.74,78.28,0.9,0.44,794,0.5,220,1.4
+7912,2018,11,26,16,30,-2.1,0.93,0.015,0.61,19,370,36,0,0,-8.6,19,370,0,36,0.255,60.94,87.36,0.9,0.44,794,0.5,210,1.1
+7913,2018,11,26,17,30,-3.2,0.93,0.016,0.61,0,0,0,0,0,-10.7,0,0,0,0,0.255,56.32,97.83,0.91,0.42,794,0.5,214,1.2
+7914,2018,11,26,18,30,-3.5,0.92,0.016,0.61,0,0,0,0,4,-10.8,0,0,0,0,0.255,57.16,108.74,0.91,0.42,794,0.5,218,1.1
+7915,2018,11,26,19,30,-3.8,0.92,0.016,0.61,0,0,0,0,0,-10.8,0,0,0,0,0.255,58.49,120.03,0.91,0.42,794,0.6,215,1.1
+7916,2018,11,26,20,30,-4.1,0.92,0.017,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.255,60.75,131.41,0.91,0.42,794,0.6,210,1.1
+7917,2018,11,26,21,30,-4.4,0.93,0.017,0.61,0,0,0,0,0,-10.6,0,0,0,0,0.255,62.08,142.5,0.91,0.42,794,0.6,209,1.3
+7918,2018,11,26,22,30,-4.9,0.93,0.016,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.254,62.68,152.51,0.91,0.42,793,0.6,209,1.4
+7919,2018,11,26,23,30,-5.6,0.94,0.016,0.61,0,0,0,0,7,-11.2,0,0,0,0,0.252,64.48,159.44,0.91,0.42,793,0.6,208,1.4
+7920,2018,11,27,0,30,-6.1,0.96,0.015,0.61,0,0,0,0,7,-11.6,0,0,0,0,0.25,65.15,159.68,0.91,0.42,793,0.6,205,1.6
+7921,2018,11,27,1,30,-6.5,0.99,0.014,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.25,65.67,153.03,0.91,0.42,793,0.6,201,1.7
+7922,2018,11,27,2,30,-6.8,1.02,0.014,0.61,0,0,0,0,4,-11.9,0,0,0,0,0.25,66.9,143.14,0.91,0.42,792,0.6,197,1.8
+7923,2018,11,27,3,30,-7.2,1.06,0.013,0.61,0,0,0,0,4,-12,0,0,0,0,0.252,68.45,132.09,0.9,0.42,792,0.6,195,1.7
+7924,2018,11,27,4,30,-7.6,1.1,0.012,0.61,0,0,0,0,4,-12.1,0,0,0,0,0.253,70.1,120.73,0.91,0.42,792,0.6,194,1.7
+7925,2018,11,27,5,30,-7.9,1.12,0.013,0.61,0,0,0,0,0,-12.2,0,0,0,0,0.255,71.18,109.43,0.91,0.42,792,0.6,192,1.6
+7926,2018,11,27,6,30,-7.8,1.14,0.015,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.255,70.08,98.5,0.92,0.42,792,0.6,188,1.7
+7927,2018,11,27,7,30,-6.4,1.15,0.017,0.61,17,288,27,6,4,-12.3,11,0,86,11,0.255,63.11,87.97,0.93,0.42,792,0.6,188,2.1
+7928,2018,11,27,8,30,-4.1,1.13,0.02,0.61,37,738,179,7,7,-11.6,38,1,100,38,0.254,55.91,78.87,0.93,0.42,792,0.7,194,2.8
+7929,2018,11,27,9,30,-1.7,1.11,0.02,0.61,47,876,331,2,7,-11.2,37,0,29,37,0.253,48.18,71.08,0.93,0.42,792,0.7,202,3.6
+7930,2018,11,27,10,30,0.7,1.11,0.019,0.61,51,938,443,0,7,-11.8,87,6,4,90,0.253,38.66,65.31,0.93,0.42,791,0.8,212,4.4
+7931,2018,11,27,11,30,2.4,1.12,0.018,0.61,53,962,502,0,7,-12.3,249,155,0,321,0.253,32.88,62.17,0.93,0.42,790,0.8,217,4.8
+7932,2018,11,27,12,30,3.3,1.14,0.018,0.61,54,961,504,0,7,-12.4,241,102,0,289,0.254,30.55,62.08,0.93,0.42,790,0.8,219,5
+7933,2018,11,27,13,30,3.3,1.14,0.02,0.61,53,935,447,0,7,-12.2,198,50,0,219,0.254,31,65.05,0.94,0.42,789,0.8,219,4.8
+7934,2018,11,27,14,30,2.5,1.13,0.021,0.61,48,871,336,0,7,-11.5,155,131,0,198,0.254,34.75,70.68,0.94,0.42,789,0.8,218,3.9
+7935,2018,11,27,15,30,0.9,1.11,0.023,0.61,39,729,186,7,6,-10.1,70,6,100,71,0.254,43.5,78.37,0.94,0.42,789,0.8,214,2.7
+7936,2018,11,27,16,30,-0.6,1.09,0.025,0.61,19,313,33,7,7,-9.1,15,1,100,15,0.255,52.77,87.44,0.94,0.42,788,0.9,210,2.1
+7937,2018,11,27,17,30,-1.3,1.08,0.028,0.61,0,0,0,0,7,-9,0,0,0,0,0.258,55.62,97.89,0.94,0.4,788,0.9,210,2.1
+7938,2018,11,27,18,30,-1.9,1.09,0.026,0.61,0,0,0,0,6,-9.2,0,0,0,0,0.26,57.41,108.79,0.93,0.4,788,0.9,212,2.2
+7939,2018,11,27,19,30,-2.2,1.09,0.026,0.61,0,0,0,0,7,-9.6,0,0,0,0,0.261,56.91,120.07,0.94,0.4,788,0.9,214,2.6
+7940,2018,11,27,20,30,-2.1,1.07,0.03,0.61,0,0,0,0,7,-10,0,0,0,0,0.263,54.53,131.46,0.94,0.4,788,0.9,213,3.3
+7941,2018,11,27,21,30,-2.2,1.07,0.029,0.61,0,0,0,0,6,-10.2,0,0,0,0,0.266,54.48,142.55,0.94,0.4,787,0.9,210,3.5
+7942,2018,11,27,22,30,-2.6,1.08,0.025,0.61,0,0,0,0,6,-10,0,0,0,0,0.269,56.71,152.59,0.93,0.4,787,0.8,209,3.3
+7943,2018,11,27,23,30,-3.3,1.09,0.02,0.61,0,0,0,0,7,-9.8,0,0,0,0,0.27,60.98,159.59,0.92,0.4,786,0.7,205,3
+7944,2018,11,28,0,30,-4,1.11,0.018,0.61,0,0,0,0,7,-9.7,0,0,0,0,0.271,64.37,159.87,0.91,0.4,785,0.6,203,2.8
+7945,2018,11,28,1,30,-4.5,1.14,0.018,0.61,0,0,0,0,0,-9.8,0,0,0,0,0.271,66.4,153.22,0.92,0.4,785,0.7,203,2.5
+7946,2018,11,28,2,30,-4.8,1.14,0.018,0.61,0,0,0,0,7,-9.9,0,0,0,0,0.271,67.33,143.31,0.92,0.4,785,0.7,199,2.3
+7947,2018,11,28,3,30,-4.6,1.13,0.02,0.61,0,0,0,0,0,-10,0,0,0,0,0.27,66.17,132.26,0.93,0.4,785,0.7,196,2.1
+7948,2018,11,28,4,30,-4.3,1.13,0.021,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.269,65.15,120.89,0.93,0.4,785,0.7,197,2
+7949,2018,11,28,5,30,-4,1.12,0.02,0.61,0,0,0,0,0,-9.7,0,0,0,0,0.269,64.62,109.6,0.93,0.4,785,0.7,201,1.8
+7950,2018,11,28,6,30,-3.7,1.11,0.02,0.61,0,0,0,0,0,-9.5,0,0,0,0,0.269,63.99,98.68,0.93,0.4,785,0.7,202,1.8
+7951,2018,11,28,7,30,-3,1.11,0.022,0.61,17,261,25,0,0,-9.3,17,261,0,25,0.268,61.62,88.15,0.93,0.4,785,0.8,203,1.9
+7952,2018,11,28,8,30,-1.6,1.11,0.023,0.61,37,717,173,7,7,-8.7,84,25,100,89,0.267,58.29,79.06,0.93,0.4,785,0.8,204,2.5
+7953,2018,11,28,9,30,0.5,1.11,0.023,0.61,47,863,324,0,6,-8.5,73,2,0,74,0.264,51.11,71.27,0.93,0.4,785,0.8,204,3.1
+7954,2018,11,28,10,30,2.5,1.11,0.022,0.61,53,928,438,0,6,-7.3,126,32,0,139,0.263,48.41,65.5,0.93,0.4,785,0.8,204,3.6
+7955,2018,11,28,11,30,3.9,1.06,0.023,0.61,55,954,498,0,6,-6,149,7,0,152,0.263,48.45,62.35,0.93,0.4,784,0.8,202,3.9
+7956,2018,11,28,12,30,4.5,1.06,0.022,0.61,56,953,500,0,6,-5.2,129,3,0,130,0.264,49.32,62.25,0.94,0.4,783,0.8,203,4.1
+7957,2018,11,28,13,30,4.1,1.07,0.025,0.61,56,919,442,0,6,-4.6,112,3,0,113,0.264,53.17,65.19,0.95,0.4,783,0.9,207,3.9
+7958,2018,11,28,14,30,2.9,1.08,0.03,0.61,52,848,331,0,6,-3.9,77,4,0,78,0.263,60.85,70.8,0.95,0.4,783,0.9,208,2.9
+7959,2018,11,28,15,30,1,1.1,0.033,0.61,41,703,182,7,7,-3.1,62,5,100,63,0.264,74.29,78.46,0.96,0.4,783,0.9,204,1.8
+7960,2018,11,28,16,30,-0.5,1.12,0.032,0.61,19,261,30,7,6,-3.2,10,0,100,10,0.265,81.86,87.51,0.96,0.4,783,0.9,199,1.7
+7961,2018,11,28,17,30,-1.2,1.14,0.035,0.61,0,0,0,0,6,-3.8,0,0,0,0,0.266,82.41,97.94,0.96,0.4,783,0.9,199,2.2
+7962,2018,11,28,18,30,-1.5,1.14,0.039,0.61,0,0,0,0,6,-4.1,0,0,0,0,0.267,82.16,108.83,0.96,0.4,783,0.9,201,2.8
+7963,2018,11,28,19,30,-2,1.16,0.039,0.61,0,0,0,0,7,-4.2,0,0,0,0,0.269,85.17,120.11,0.97,0.4,783,0.9,200,2.9
+7964,2018,11,28,20,30,-2.3,1.19,0.045,0.61,0,0,0,0,7,-4,0,0,0,0,0.271,88.12,131.49,0.97,0.4,782,0.9,202,2.4
+7965,2018,11,28,21,30,-2.5,1.19,0.049,0.61,0,0,0,0,7,-3.8,0,0,0,0,0.275,90.45,142.6,0.97,0.4,782,0.9,211,2
+7966,2018,11,28,22,30,-2.5,1.19,0.048,0.61,0,0,0,0,6,-3.7,0,0,0,0,0.276,91.39,152.68,0.97,0.4,782,0.9,216,1.9
+7967,2018,11,28,23,30,-2.5,1.23,0.046,0.61,0,0,0,0,7,-3.5,0,0,0,0,0.276,92.6,159.73,0.96,0.4,782,0.9,215,1.8
+7968,2018,11,29,0,30,-2.7,1.25,0.039,0.61,0,0,0,0,4,-3.5,0,0,0,0,0.276,94.24,160.06,0.95,0.4,782,0.8,216,1.5
+7969,2018,11,29,1,30,-3.2,1.26,0.031,0.61,0,0,0,0,7,-3.6,0,0,0,0,0.277,96.72,153.41,0.95,0.4,782,0.7,218,1.3
+7970,2018,11,29,2,30,-3.8,1.29,0.026,0.61,0,0,0,0,4,-3.9,0,0,0,0,0.278,99.17,143.48,0.94,0.4,782,0.7,225,1.2
+7971,2018,11,29,3,30,-4.2,1.29,0.024,0.61,0,0,0,0,4,-4.2,0,0,0,0,0.279,100,132.43,0.94,0.4,782,0.6,232,1.2
+7972,2018,11,29,4,30,-4.4,1.28,0.022,0.61,0,0,0,0,4,-4.4,0,0,0,0,0.28,100,121.06,0.94,0.4,782,0.6,236,1.1
+7973,2018,11,29,5,30,-4.7,1.27,0.02,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.281,100,109.77,0.94,0.4,783,0.6,237,1
+7974,2018,11,29,6,30,-4.9,1.27,0.019,0.61,0,0,0,0,7,-4.9,0,0,0,0,0.282,100,98.85,0.94,0.4,783,0.6,224,0.8
+7975,2018,11,29,7,30,-4.1,1.26,0.019,0.61,15,236,22,2,0,-4.7,13,203,21,19,0.282,95.41,88.31,0.94,0.4,783,0.6,202,1.1
+7976,2018,11,29,8,30,-2.1,1.26,0.02,0.61,36,740,174,2,0,-4.5,49,568,25,155,0.282,83.69,79.24,0.94,0.4,784,0.6,192,1.9
+7977,2018,11,29,9,30,0.2,1.25,0.02,0.61,46,881,326,0,0,-3.6,96,580,0,280,0.281,75.63,71.46,0.94,0.4,784,0.6,193,2.6
+7978,2018,11,29,10,30,1.8,1.24,0.02,0.61,52,943,440,0,7,-3.2,206,246,0,307,0.281,69.68,65.69,0.94,0.4,783,0.6,195,3.1
+7979,2018,11,29,11,30,2.6,1.19,0.021,0.61,55,961,498,0,4,-3.3,238,154,0,309,0.281,65.25,62.53,0.94,0.4,782,0.7,196,3.4
+7980,2018,11,29,12,30,2.6,1.2,0.022,0.61,56,951,497,0,7,-3.4,215,64,0,245,0.281,64.77,62.4,0.95,0.4,782,0.8,197,3.7
+7981,2018,11,29,13,30,2.1,1.21,0.027,0.61,58,907,437,0,7,-3.1,153,17,0,160,0.282,68.62,65.33,0.96,0.4,781,0.9,199,3.8
+7982,2018,11,29,14,30,1.3,1.21,0.043,0.61,57,823,326,0,7,-2.3,116,20,0,123,0.284,77.05,70.91,0.97,0.4,781,0.9,196,3.3
+7983,2018,11,29,15,30,0.1,1.25,0.048,0.61,43,679,178,7,7,-1.6,42,1,100,42,0.286,88.27,78.55,0.96,0.4,780,0.9,188,2.2
+7984,2018,11,29,16,30,-1.6,1.26,0.037,0.61,18,256,29,7,4,-1.6,11,0,100,11,0.289,99.75,87.56,0.95,0.4,780,0.8,180,1.4
+7985,2018,11,29,17,30,-2.8,1.25,0.034,0.61,0,0,0,0,4,-2.8,0,0,0,0,0.291,100,97.99,0.94,0.4,780,0.7,172,1.4
+7986,2018,11,29,18,30,-3.1,1.23,0.029,0.61,0,0,0,0,4,-3.1,0,0,0,0,0.292,100,108.87,0.92,0.4,779,0.7,164,1.4
+7987,2018,11,29,19,30,-3.1,1.2,0.026,0.61,0,0,0,0,8,-3.1,0,0,0,0,0.293,100,120.14,0.91,0.4,779,0.7,159,1.5
+7988,2018,11,29,20,30,-2.7,1.19,0.025,0.61,0,0,0,0,4,-3.2,0,0,0,0,0.294,96.2,131.52,0.91,0.4,778,0.7,160,1.5
+7989,2018,11,29,21,30,-2.4,1.2,0.026,0.61,0,0,0,0,7,-3.8,0,0,0,0,0.296,90.39,142.64,0.92,0.4,777,0.8,162,1.4
+7990,2018,11,29,22,30,-2.4,1.21,0.028,0.61,0,0,0,0,7,-4.3,0,0,0,0,0.299,86.73,152.75,0.92,0.4,777,0.8,168,1.5
+7991,2018,11,29,23,30,-2.7,1.21,0.032,0.61,0,0,0,0,6,-4.8,0,0,0,0,0.301,85.28,159.86,0.92,0.4,777,0.8,174,1.5
+7992,2018,11,30,0,30,-3.2,1.2,0.028,0.61,0,0,0,0,6,-5.3,0,0,0,0,0.304,85.12,160.24,0.92,0.4,776,0.8,176,1.5
+7993,2018,11,30,1,30,-3.5,1.15,0.025,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.307,83.67,153.59,0.93,0.4,776,0.8,170,1.6
+7994,2018,11,30,2,30,-3.4,1.09,0.027,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.31,83.9,143.65,0.94,0.4,775,0.9,160,1.5
+7995,2018,11,30,3,30,-3.3,1.04,0.031,0.61,0,0,0,0,8,-5.2,0,0,0,0,0.313,86.55,132.59,0.94,0.4,775,0.9,157,1.4
+7996,2018,11,30,4,30,-3.5,1.01,0.033,0.61,0,0,0,0,7,-4.7,0,0,0,0,0.316,91.56,121.22,0.95,0.4,775,0.9,168,1.2
+7997,2018,11,30,5,30,-3.8,1.04,0.041,0.61,0,0,0,0,7,-4.4,0,0,0,0,0.317,95.91,109.93,0.96,0.4,775,0.9,194,1.1
+7998,2018,11,30,6,30,-4.1,1.09,0.046,0.61,0,0,0,0,6,-4.1,0,0,0,0,0.318,100,99.02,0.96,0.4,775,0.8,222,1.1
+7999,2018,11,30,7,30,-3.4,1.1,0.048,0.61,15,158,19,6,6,-3.8,6,0,86,6,0.318,96.83,88.48,0.96,0.4,776,0.8,242,1.2
+8000,2018,11,30,8,30,-2.2,1.13,0.052,0.61,44,639,161,7,7,-3.1,51,2,100,51,0.318,93.22,79.42,0.96,0.4,776,0.8,263,1.8
+8001,2018,11,30,9,30,-1.2,1.15,0.049,0.61,56,817,313,0,6,-2.5,101,7,0,103,0.318,90.75,71.64,0.96,0.4,777,0.8,282,2.4
+8002,2018,11,30,10,30,-0.1,1.15,0.042,0.61,61,903,430,0,6,-2.4,133,7,0,136,0.318,84.67,65.87,0.95,0.4,777,0.7,293,2.6
+8003,2018,11,30,11,30,0.9,1.17,0.035,0.61,59,950,495,0,6,-2.8,155,8,0,159,0.318,76.57,62.7,0.95,0.4,777,0.6,299,2.6
+8004,2018,11,30,12,30,1.8,1.19,0.026,0.61,55,963,499,0,6,-3.7,166,10,0,171,0.317,67.06,62.56,0.93,0.4,777,0.6,296,2.3
+8005,2018,11,30,13,30,2.3,1.21,0.02,0.61,49,953,445,0,6,-4.7,127,5,0,129,0.316,59.98,65.45,0.92,0.4,777,0.6,286,1.9
+8006,2018,11,30,14,30,2.1,1.23,0.015,0.61,42,904,336,0,7,-5.4,85,2,0,86,0.314,57.47,71.01,0.91,0.4,777,0.5,272,1.3
+8007,2018,11,30,15,30,1,1.22,0.013,0.61,33,777,186,7,4,-4.5,71,7,100,72,0.312,66.59,78.62,0.91,0.4,777,0.5,244,0.7
+8008,2018,11,30,16,30,-0.7,1.21,0.013,0.61,17,325,30,7,7,-6,17,2,100,17,0.312,67.59,87.62,0.91,0.4,778,0.6,221,0.6
+8009,2018,11,30,17,30,-7.7,1.08,0.021,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.355,64.14,98.02,0.91,0.8,789,0.3,344,1.1
+8010,2018,11,30,18,30,-8.5,1.09,0.021,0.63,0,0,0,0,4,-13.5,0,0,0,0,0.352,67.41,108.89,0.91,0.8,790,0.3,178,0.9
+8011,2018,11,30,19,30,-9.3,1.1,0.02,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.351,71.32,120.16,0.91,0.8,791,0.3,9,0.7
+8012,2018,11,30,20,30,-9.9,1.12,0.02,0.63,0,0,0,0,4,-13.5,0,0,0,0,0.351,74.73,131.54,0.91,0.8,791,0.3,32,0.6
+8013,2018,11,30,21,30,-10.2,1.14,0.02,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.349,76.36,142.67,0.91,0.8,791,0.3,71,0.6
+8014,2018,11,30,22,30,-10.6,1.15,0.019,0.63,0,0,0,0,7,-13.7,0,0,0,0,0.348,77.97,152.8,0.91,0.8,792,0.3,108,0.9
+8015,2018,11,30,23,30,-11.1,1.16,0.018,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.347,80.2,159.96,0.91,0.8,792,0.3,132,1.1
+8016,2019,12,1,0,30,-11.4,1.16,0.017,0.63,0,0,0,0,0,-14,0,0,0,0,0.344,81.28,160.38,0.9,0.8,792,0.3,144,1.1
+8017,2019,12,1,1,30,-11.4,1.16,0.016,0.63,0,0,0,0,0,-14,0,0,0,0,0.34,81,153.72,0.9,0.8,792,0.3,150,1.1
+8018,2019,12,1,2,30,-11.3,1.15,0.016,0.63,0,0,0,0,4,-14,0,0,0,0,0.335,80.17,143.78,0.9,0.8,792,0.3,155,1
+8019,2019,12,1,3,30,-11.1,1.14,0.015,0.63,0,0,0,0,4,-14,0,0,0,0,0.332,79.02,132.71,0.9,0.8,793,0.3,158,1.1
+8020,2019,12,1,4,30,-11,1.14,0.015,0.63,0,0,0,0,0,-14,0,0,0,0,0.331,78.57,121.34,0.9,0.8,793,0.3,158,1.2
+8021,2019,12,1,5,30,-11.1,1.14,0.014,0.63,0,0,0,0,0,-14,0,0,0,0,0.331,79.43,110.06,0.89,0.8,793,0.3,156,1.4
+8022,2019,12,1,6,30,-11.2,1.14,0.014,0.63,0,0,0,0,0,-14,0,0,0,0,0.331,79.92,99.14,0.89,0.8,793,0.3,160,1.5
+8023,2019,12,1,7,30,-10.3,1.15,0.013,0.63,15,259,21,2,4,-14,12,149,36,16,0.33,74.45,88.58,0.89,0.8,793,0.3,173,1.7
+8024,2019,12,1,8,30,-7.6,1.15,0.013,0.63,35,777,176,0,0,-13.5,35,777,0,176,0.328,62.83,79.55,0.89,0.8,794,0.3,194,2.3
+8025,2019,12,1,9,30,-4.5,1.15,0.013,0.63,46,917,333,0,0,-12.6,46,917,0,333,0.326,53.37,71.78,0.89,0.8,794,0.3,210,3.2
+8026,2019,12,1,10,30,-2.6,1.15,0.012,0.63,54,976,451,0,0,-13.5,54,976,0,451,0.324,43.08,66,0.89,0.8,794,0.3,214,3.5
+8027,2019,12,1,11,30,-1.3,0.92,0.017,0.63,62,997,517,0,0,-13.7,62,997,0,517,0.321,38.22,62.83,0.9,0.8,794,0.3,216,3.7
+8028,2019,12,1,12,30,-0.5,0.92,0.017,0.63,62,997,520,0,0,-13.3,62,997,0,520,0.318,37.27,62.67,0.9,0.8,794,0.3,218,3.9
+8029,2019,12,1,13,30,-0.1,0.92,0.018,0.63,59,961,457,0,0,-12.8,59,961,0,457,0.315,37.88,65.55,0.91,0.8,793,0.4,218,3.8
+8030,2019,12,1,14,30,-0.5,0.92,0.018,0.63,52,902,344,0,0,-12.3,56,886,4,343,0.313,40.51,71.08,0.91,0.8,793,0.4,216,3.3
+8031,2019,12,1,15,30,-2.2,0.92,0.018,0.63,39,758,188,5,4,-12,97,309,68,158,0.311,46.92,78.68,0.91,0.8,793,0.5,211,2.3
+8032,2019,12,1,16,30,-4.6,0.93,0.018,0.63,17,306,30,2,0,-11.9,19,207,36,27,0.31,56.49,87.65,0.91,0.8,793,0.5,207,1.4
+8033,2019,12,1,17,30,-6.1,0.93,0.017,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.31,60.79,98.05,0.91,0.78,794,0.6,206,1.4
+8034,2019,12,1,18,30,-6.8,0.92,0.016,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.31,62.83,108.92,0.91,0.78,794,0.6,207,1.5
+8035,2019,12,1,19,30,-7.3,0.92,0.015,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.311,64.24,120.18,0.91,0.78,794,0.6,207,1.6
+8036,2019,12,1,20,30,-7.6,0.94,0.015,0.63,0,0,0,0,0,-13,0,0,0,0,0.312,65.16,131.56,0.91,0.78,794,0.6,204,1.7
+8037,2019,12,1,21,30,-7.8,0.99,0.014,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.312,65.98,142.7,0.91,0.78,794,0.7,202,1.8
+8038,2019,12,1,22,30,-7.8,1.03,0.013,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.311,65.54,152.86,0.91,0.78,794,0.7,201,1.9
+8039,2019,12,1,23,30,-7.8,1.07,0.012,0.63,0,0,0,0,0,-13.2,0,0,0,0,0.31,65.18,160.08,0.91,0.78,794,0.8,203,2
+8040,2019,12,2,0,30,-7.9,1.1,0.013,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.308,65.25,160.55,0.91,0.78,793,0.8,203,2
+8041,2019,12,2,1,30,-8,1.11,0.013,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.306,65.66,153.89,0.91,0.78,793,0.8,200,2
+8042,2019,12,2,2,30,-8.1,1.13,0.013,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.305,66.06,143.94,0.91,0.78,793,0.7,195,1.9
+8043,2019,12,2,3,30,-8.2,1.14,0.013,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.305,65.99,132.87,0.91,0.78,793,0.7,192,1.8
+8044,2019,12,2,4,30,-8.4,1.15,0.013,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.306,66.46,121.5,0.9,0.78,793,0.7,193,1.8
+8045,2019,12,2,5,30,-8.5,1.17,0.012,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.307,66.65,110.22,0.9,0.78,793,0.6,197,1.8
+8046,2019,12,2,6,30,-8.5,1.18,0.012,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.307,66.57,99.31,0.9,0.78,794,0.6,202,1.8
+8047,2019,12,2,7,30,-7.3,1.18,0.012,0.63,13,228,18,2,0,-13.6,11,130,21,14,0.306,60.82,88.74,0.9,0.78,794,0.7,207,2.1
+8048,2019,12,2,8,30,-4.4,1.18,0.013,0.63,34,730,164,0,0,-12.5,34,730,0,164,0.305,53.3,79.72,0.91,0.78,794,0.7,211,2.8
+8049,2019,12,2,9,30,-1.6,1.18,0.014,0.63,48,873,318,0,0,-11,56,833,0,314,0.305,48.66,71.95,0.92,0.78,794,0.7,217,3.7
+8050,2019,12,2,10,30,0.4,1.17,0.016,0.63,58,930,434,0,0,-9.5,108,774,0,421,0.305,47.29,66.17,0.93,0.78,794,0.7,222,4.2
+8051,2019,12,2,11,30,1.5,1.05,0.024,0.63,67,944,496,0,4,-8,160,683,7,470,0.306,49.39,62.99,0.94,0.78,793,0.8,224,4.1
+8052,2019,12,2,12,30,1.9,1.06,0.027,0.63,68,940,498,0,0,-6.9,83,899,7,494,0.306,52.15,62.81,0.94,0.78,793,0.8,226,3.9
+8053,2019,12,2,13,30,1.9,1.05,0.029,0.63,65,912,441,0,4,-6.2,219,52,7,240,0.306,54.97,65.66,0.94,0.78,793,0.8,226,3.6
+8054,2019,12,2,14,30,1.4,1.06,0.028,0.63,56,851,331,0,7,-5.7,128,18,0,134,0.307,59.23,71.17,0.94,0.78,793,0.8,222,2.9
+8055,2019,12,2,15,30,-0.2,1.05,0.026,0.63,41,715,181,7,7,-5.1,104,30,100,110,0.308,69.71,78.74,0.93,0.78,793,0.8,216,1.9
+8056,2019,12,2,16,30,-2.4,1.05,0.024,0.63,18,273,29,7,7,-5.4,17,1,100,17,0.309,79.57,87.69,0.93,0.78,793,0.8,212,1.4
+8057,2019,12,2,17,30,-3.7,1.04,0.023,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.311,79.93,98.08,0.93,0.72,793,0.8,212,1.5
+8058,2019,12,2,18,30,-4.2,1.02,0.022,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.313,81.22,108.94,0.93,0.72,793,0.8,214,1.6
+8059,2019,12,2,19,30,-4.5,1.01,0.022,0.63,0,0,0,0,0,-7.1,0,0,0,0,0.314,82.22,120.19,0.93,0.72,793,0.8,215,1.6
+8060,2019,12,2,20,30,-4.8,1.01,0.022,0.63,0,0,0,0,0,-7.1,0,0,0,0,0.315,83.8,131.58,0.93,0.72,793,0.8,213,1.6
+8061,2019,12,2,21,30,-5.1,1.01,0.022,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.316,85.73,142.73,0.93,0.72,793,0.8,211,1.5
+8062,2019,12,2,22,30,-5.3,1.02,0.02,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.317,86.88,152.91,0.93,0.72,793,0.8,211,1.5
+8063,2019,12,2,23,30,-5.6,1.03,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,88.69,160.19,0.92,0.72,793,0.8,213,1.4
+8064,2019,12,3,0,30,-5.8,1.05,0.018,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.319,90.12,160.71,0.92,0.72,793,0.8,218,1.3
+8065,2019,12,3,1,30,-6,1.07,0.016,0.63,0,0,0,0,0,-7.1,0,0,0,0,0.32,92.13,154.06,0.92,0.72,793,0.8,225,1.1
+8066,2019,12,3,2,30,-6.1,1.1,0.015,0.63,0,0,0,0,0,-7,0,0,0,0,0.321,93.58,144.11,0.92,0.72,793,0.8,234,0.9
+8067,2019,12,3,3,30,-6.1,1.12,0.014,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.322,94.4,133.03,0.91,0.72,793,0.8,241,0.8
+8068,2019,12,3,4,30,-6.2,1.14,0.014,0.63,0,0,0,0,0,-6.8,0,0,0,0,0.323,95.74,121.66,0.91,0.72,793,0.7,239,0.6
+8069,2019,12,3,5,30,-6.3,1.16,0.013,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.325,96.83,110.38,0.9,0.72,793,0.7,231,0.6
+8070,2019,12,3,6,30,-6.6,1.17,0.013,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.327,99.48,99.47,0.9,0.72,794,0.7,225,0.7
+8071,2019,12,3,7,30,-5.8,1.17,0.013,0.63,13,221,17,1,0,-6.6,12,180,14,15,0.328,93.72,88.9,0.9,0.72,794,0.6,221,0.9
+8072,2019,12,3,8,30,-3.5,1.17,0.013,0.63,34,730,162,2,0,-6.2,45,576,21,146,0.328,81.31,79.89,0.9,0.72,794,0.6,222,1.3
+8073,2019,12,3,9,30,-0.5,1.19,0.013,0.63,45,880,315,0,0,-5,107,590,0,288,0.329,71.38,72.12,0.9,0.72,795,0.6,242,1.6
+8074,2019,12,3,10,30,2.1,1.2,0.013,0.63,52,946,432,0,0,-3.8,52,946,0,432,0.328,64.75,66.34,0.9,0.72,795,0.6,265,2
+8075,2019,12,3,11,30,3.7,1.13,0.015,0.63,57,973,497,0,0,-3.4,57,973,0,497,0.325,59.94,63.14,0.91,0.72,794,0.6,269,2.3
+8076,2019,12,3,12,30,4.6,1.15,0.015,0.63,57,979,502,0,0,-3.4,57,979,0,502,0.321,56.04,62.94,0.91,0.72,794,0.5,261,2.4
+8077,2019,12,3,13,30,4.9,1.15,0.014,0.63,52,959,446,0,0,-3.6,52,959,0,446,0.318,54.15,65.77,0.91,0.72,793,0.5,256,2.2
+8078,2019,12,3,14,30,4.1,1.15,0.013,0.63,46,901,336,0,0,-3.7,46,901,0,336,0.314,56.64,71.25,0.91,0.72,793,0.5,245,1.5
+8079,2019,12,3,15,30,1.7,1.15,0.013,0.63,35,770,185,0,0,-2.1,35,770,0,185,0.31,75.83,78.8,0.91,0.72,793,0.5,231,1.1
+8080,2019,12,3,16,30,-0.5,1.16,0.013,0.63,17,322,30,0,0,-4,17,322,0,30,0.307,77,87.73,0.91,0.72,794,0.5,227,1.2
+8081,2019,12,3,17,30,-1,1.17,0.013,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.304,73.91,98.11,0.91,0.65,794,0.5,229,1.1
+8082,2019,12,3,18,30,-1,1.18,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.301,73.6,108.95,0.91,0.65,794,0.5,224,0.7
+8083,2019,12,3,19,30,-1.4,1.19,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.3,75.7,120.2,0.91,0.65,794,0.6,209,0.4
+8084,2019,12,3,20,30,-1.7,1.2,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.299,77.36,131.58,0.91,0.65,793,0.6,191,0.3
+8085,2019,12,3,21,30,-1.9,1.22,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.299,78.54,142.74,0.91,0.65,793,0.6,173,0.4
+8086,2019,12,3,22,30,-2,1.22,0.012,0.63,0,0,0,0,0,-5.1,0,0,0,0,0.298,79.43,152.95,0.91,0.65,793,0.6,169,0.6
+8087,2019,12,3,23,30,-2.3,1.22,0.013,0.63,0,0,0,0,4,-5.1,0,0,0,0,0.296,80.89,160.29,0.92,0.65,792,0.7,186,0.7
+8088,2019,12,4,0,30,-2.4,1.23,0.013,0.63,0,0,0,0,8,-5.1,0,0,0,0,0.293,81.75,160.87,0.92,0.65,792,0.7,201,0.8
+8089,2019,12,4,1,30,-2.7,1.22,0.014,0.63,0,0,0,0,8,-5.1,0,0,0,0,0.292,83.58,154.23,0.93,0.65,792,0.8,202,0.9
+8090,2019,12,4,2,30,-2.8,1.22,0.015,0.63,0,0,0,0,8,-5.1,0,0,0,0,0.291,84.02,144.26,0.93,0.65,792,0.8,191,1
+8091,2019,12,4,3,30,-2.8,1.2,0.016,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.29,83.9,133.19,0.93,0.65,791,0.8,184,1
+8092,2019,12,4,4,30,-2.8,1.19,0.016,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.289,84.1,121.81,0.93,0.65,791,0.8,184,1.1
+8093,2019,12,4,5,30,-2.8,1.2,0.016,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.289,84.2,110.53,0.93,0.65,791,0.8,189,1.1
+8094,2019,12,4,6,30,-2.9,1.2,0.015,0.63,0,0,0,0,7,-5.1,0,0,0,0,0.289,84.63,99.63,0.93,0.65,790,0.8,195,1.1
+8095,2019,12,4,7,30,-2.3,1.2,0.015,0.63,11,167,14,5,4,-5.1,6,0,71,6,0.288,80.93,89.05,0.92,0.65,790,0.8,202,1.1
+8096,2019,12,4,8,30,-0.8,1.21,0.014,0.63,34,712,157,6,4,-4.6,87,118,86,107,0.288,75.72,80.05,0.92,0.65,790,0.8,211,1.5
+8097,2019,12,4,9,30,1.1,1.21,0.014,0.63,45,865,308,0,0,-4,107,552,0,275,0.289,68.96,72.28,0.92,0.65,790,0.8,219,2.3
+8098,2019,12,4,10,30,2.7,1.22,0.014,0.63,55,925,424,0,4,-3.4,267,86,0,301,0.289,64.25,66.5,0.93,0.65,790,0.8,222,3.1
+8099,2019,12,4,11,30,4,1.08,0.023,0.63,62,940,485,0,4,-3.2,297,177,7,377,0.29,59.29,63.29,0.93,0.65,789,0.9,226,3.8
+8100,2019,12,4,12,30,4.9,1.07,0.024,0.63,63,940,489,0,0,-3.2,93,862,0,483,0.29,55.6,63.07,0.93,0.65,789,0.9,230,4.1
+8101,2019,12,4,13,30,5.2,1.07,0.025,0.63,59,917,434,0,0,-3.3,59,917,0,434,0.291,54.35,65.87,0.93,0.65,788,0.9,231,4
+8102,2019,12,4,14,30,4.5,1.12,0.021,0.63,51,860,326,0,0,-3.3,51,860,0,326,0.292,57.12,71.32,0.93,0.65,788,0.9,230,3
+8103,2019,12,4,15,30,2,1.13,0.021,0.63,39,721,178,0,0,-2.5,39,721,0,178,0.293,71.89,78.85,0.93,0.65,787,0.9,225,1.7
+8104,2019,12,4,16,30,-0.7,1.13,0.021,0.63,17,277,28,2,0,-3.5,18,267,25,28,0.294,81.32,87.76,0.93,0.65,787,0.9,218,1.4
+8105,2019,12,4,17,30,-1.7,1.13,0.022,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.296,81.01,98.12,0.93,0.65,787,0.9,212,1.4
+8106,2019,12,4,18,30,-1.9,1.14,0.022,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.3,81.19,108.95,0.93,0.65,787,0.9,204,1.3
+8107,2019,12,4,19,30,-2,1.15,0.022,0.63,0,0,0,0,6,-4.8,0,0,0,0,0.305,81.28,120.2,0.93,0.65,786,0.9,197,1.3
+8108,2019,12,4,20,30,-2.1,1.17,0.022,0.63,0,0,0,0,7,-4.8,0,0,0,0,0.311,81.86,131.58,0.93,0.65,786,0.9,192,1.3
+8109,2019,12,4,21,30,-2,1.18,0.022,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.314,81.72,142.75,0.93,0.65,786,0.9,192,1.4
+8110,2019,12,4,22,30,-2,1.19,0.023,0.63,0,0,0,0,9,-4.5,0,0,0,0,0.315,82.7,152.99,0.94,0.65,785,1,193,1.3
+8111,2019,12,4,23,30,-1.8,1.2,0.025,0.63,0,0,0,0,6,-4.2,0,0,0,0,0.315,83.44,160.38,0.95,0.65,785,1.1,194,1.2
+8112,2019,12,5,0,30,-1.6,1.19,0.03,0.63,0,0,0,0,9,-3.6,0,0,0,0,0.312,86.25,161.02,0.96,0.65,785,1.2,192,1
+8113,2019,12,5,1,30,-1.3,1.17,0.033,0.63,0,0,0,0,6,-2.7,0,0,0,0,0.307,90.04,154.39,0.96,0.65,784,1.2,184,0.8
+8114,2019,12,5,2,30,-1.2,1.16,0.039,0.63,0,0,0,0,7,-2,0,0,0,0,0.302,94.63,144.42,0.97,0.65,784,1.2,183,0.6
+8115,2019,12,5,3,30,-1.3,1.16,0.047,0.63,0,0,0,0,8,-1.5,0,0,0,0,0.3,98.67,133.34,0.97,0.65,784,1.2,195,0.8
+8116,2019,12,5,4,30,-1.3,1.17,0.044,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.299,100,121.96,0.97,0.65,784,1.1,205,1.2
+8117,2019,12,5,5,30,-1.3,1.2,0.044,0.63,0,0,0,0,6,-1.3,0,0,0,0,0.3,100,110.69,0.97,0.65,785,1.1,212,1.6
+8118,2019,12,5,6,30,-1.4,1.22,0.042,0.63,0,0,0,0,6,-1.4,0,0,0,0,0.3,100,99.79,0.97,0.65,785,1,218,2
+8119,2019,12,5,7,30,-1.2,1.23,0.04,0.63,10,114,12,5,6,-1.2,4,0,71,4,0.3,100,89.2,0.97,0.65,786,1,223,2.4
+8120,2019,12,5,8,30,-0.5,1.23,0.045,0.63,44,614,148,7,9,-1,39,0,100,39,0.299,96.5,80.21,0.97,0.65,787,1,233,2.8
+8121,2019,12,5,9,30,0.3,1.22,0.053,0.63,63,778,298,0,6,-0.9,82,1,0,82,0.298,91.87,72.44,0.97,0.65,788,1,247,2.8
+8122,2019,12,5,10,30,1.3,1.22,0.057,0.63,75,851,412,0,6,-1,147,6,0,149,0.298,84.83,66.65,0.97,0.65,788,1,266,2.5
+8123,2019,12,5,11,30,2.5,1.23,0.06,0.63,81,882,476,0,7,-1.1,212,63,0,240,0.296,76.94,63.43,0.97,0.65,789,1,285,2.3
+8124,2019,12,5,12,30,3.2,1.22,0.06,0.63,80,888,481,0,6,-1.3,159,5,0,161,0.295,72.38,63.19,0.97,0.65,789,0.9,296,2.3
+8125,2019,12,5,13,30,3.4,1.21,0.055,0.63,77,856,426,0,6,-1.5,100,1,0,100,0.296,70.48,65.96,0.97,0.65,789,0.9,303,2.2
+8126,2019,12,5,14,30,3,1.16,0.069,0.63,70,774,317,0,4,-1.6,110,0,0,110,0.298,71.87,71.39,0.97,0.65,790,0.9,315,1.4
+8127,2019,12,5,15,30,1.7,1.18,0.068,0.63,51,616,170,7,4,-0.9,38,0,100,38,0.3,82.96,78.89,0.97,0.65,791,0.9,165,0.7
+8128,2019,12,5,16,30,0.2,1.18,0.066,0.63,19,185,26,6,4,-2.2,7,0,86,7,0.3,83.6,87.79,0.97,0.65,791,0.9,28,0.6
+8129,2019,12,5,17,30,-0.9,1.19,0.066,0.63,0,0,0,0,4,-2.8,0,0,0,0,0.299,86.81,98.13,0.97,0.68,792,0.9,63,0.6
+8130,2019,12,5,18,30,-1.9,1.21,0.062,0.63,0,0,0,0,4,-2.9,0,0,0,0,0.298,92.72,108.95,0.97,0.68,793,0.9,89,0.8
+8131,2019,12,5,19,30,-2.6,1.22,0.057,0.63,0,0,0,0,7,-3,0,0,0,0,0.297,96.87,120.19,0.97,0.68,794,0.9,110,0.8
+8132,2019,12,5,20,30,-3,1.23,0.054,0.63,0,0,0,0,4,-3.1,0,0,0,0,0.296,99.28,131.58,0.97,0.68,794,0.8,128,0.7
+8133,2019,12,5,21,30,-3.3,1.24,0.051,0.63,0,0,0,0,4,-3.3,0,0,0,0,0.295,100,142.75,0.96,0.68,794,0.8,147,0.7
+8134,2019,12,5,22,30,-3.6,1.25,0.048,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.294,100,153.02,0.96,0.68,794,0.8,166,0.8
+8135,2019,12,5,23,30,-3.8,1.25,0.046,0.63,0,0,0,0,4,-3.8,0,0,0,0,0.292,100,160.47,0.96,0.68,794,0.8,180,0.8
+8136,2019,12,6,0,30,-4.1,1.25,0.043,0.63,0,0,0,0,4,-4.1,0,0,0,0,0.29,100,161.17,0.96,0.68,794,0.8,186,0.9
+8137,2019,12,6,1,30,-4.4,1.24,0.04,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.289,100,154.55,0.95,0.68,795,0.8,189,1
+8138,2019,12,6,2,30,-4.8,1.23,0.037,0.63,0,0,0,0,0,-4.8,0,0,0,0,0.289,100,144.57,0.95,0.68,795,0.8,193,1.1
+8139,2019,12,6,3,30,-5,1.22,0.034,0.63,0,0,0,0,0,-5,0,0,0,0,0.291,100,133.49,0.95,0.68,795,0.8,196,1.1
+8140,2019,12,6,4,30,-5.2,1.21,0.031,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.292,100,122.11,0.94,0.68,795,0.8,200,1
+8141,2019,12,6,5,30,-5.4,1.21,0.029,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.293,100,110.84,0.94,0.68,795,0.8,204,0.9
+8142,2019,12,6,6,30,-5.6,1.21,0.029,0.63,0,0,0,0,4,-5.6,0,0,0,0,0.293,100,99.94,0.94,0.68,796,0.7,209,1
+8143,2019,12,6,7,30,-4.9,1.21,0.028,0.63,10,136,12,3,4,-5.5,6,34,43,6,0.293,95.49,89.33,0.94,0.68,796,0.7,216,1.4
+8144,2019,12,6,8,30,-3,1.21,0.028,0.63,39,672,151,3,0,-5.1,50,371,43,112,0.293,85.22,80.37,0.94,0.68,796,0.7,226,1.9
+8145,2019,12,6,9,30,-0.5,1.23,0.028,0.63,53,839,304,0,4,-3.9,194,21,0,200,0.293,77.69,72.6,0.94,0.68,797,0.7,231,2.7
+8146,2019,12,6,10,30,1.9,1.24,0.027,0.63,66,899,420,0,4,-2.8,262,25,0,272,0.294,71.29,66.8,0.95,0.68,797,0.7,232,3.6
+8147,2019,12,6,11,30,3.3,1.13,0.046,0.63,76,915,483,2,4,-2.4,300,114,21,351,0.295,66.35,63.56,0.95,0.68,796,0.7,232,4
+8148,2019,12,6,12,30,3.9,1.14,0.043,0.63,73,923,488,0,4,-2.4,302,54,0,326,0.297,63.38,63.3,0.95,0.68,796,0.7,233,4.1
+8149,2019,12,6,13,30,4,1.16,0.04,0.63,69,898,434,0,4,-2.5,268,52,0,289,0.298,62.67,66.05,0.95,0.68,796,0.7,232,4
+8150,2019,12,6,14,30,3.4,1.17,0.042,0.63,61,831,325,0,4,-2.5,184,26,7,192,0.3,65.26,71.45,0.95,0.68,795,0.7,228,3.1
+8151,2019,12,6,15,30,1.1,1.17,0.04,0.63,45,688,177,2,0,-2.2,53,480,29,145,0.301,78.9,78.93,0.95,0.68,795,0.7,219,1.8
+8152,2019,12,6,16,30,-1.7,1.18,0.037,0.63,18,247,27,0,0,-3,18,247,0,27,0.304,90.74,87.8,0.94,0.68,795,0.7,209,1.4
+8153,2019,12,6,17,30,-2.9,1.18,0.034,0.63,0,0,0,0,4,-3.7,0,0,0,0,0.306,94.27,98.14,0.94,0.68,796,0.6,203,1.4
+8154,2019,12,6,18,30,-3.3,1.18,0.03,0.63,0,0,0,0,4,-3.8,0,0,0,0,0.308,96.36,108.95,0.93,0.68,795,0.6,199,1.4
+8155,2019,12,6,19,30,-3.6,1.18,0.027,0.63,0,0,0,0,4,-3.9,0,0,0,0,0.308,98.07,120.18,0.93,0.68,795,0.6,198,1.5
+8156,2019,12,6,20,30,-3.7,1.18,0.025,0.63,0,0,0,0,4,-3.9,0,0,0,0,0.307,98.4,131.57,0.93,0.68,795,0.6,199,1.6
+8157,2019,12,6,21,30,-3.8,1.18,0.023,0.63,0,0,0,0,4,-3.9,0,0,0,0,0.305,99.06,142.75,0.93,0.68,795,0.7,202,1.8
+8158,2019,12,6,22,30,-3.8,1.2,0.022,0.63,0,0,0,0,0,-3.9,0,0,0,0,0.304,99.19,153.04,0.93,0.68,795,0.7,204,1.9
+8159,2019,12,6,23,30,-4,1.21,0.022,0.63,0,0,0,0,4,-4,0,0,0,0,0.302,100,160.54,0.93,0.68,794,0.6,205,2
+8160,2019,12,7,0,30,-4.2,1.22,0.023,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.3,100,161.31,0.93,0.68,794,0.6,203,2.1
+8161,2019,12,7,1,30,-4.3,1.24,0.023,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.298,100,154.7,0.93,0.68,794,0.6,198,2.3
+8162,2019,12,7,2,30,-4.4,1.27,0.024,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.296,100,144.72,0.93,0.68,793,0.6,193,2.3
+8163,2019,12,7,3,30,-4.5,1.32,0.024,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.295,100,133.64,0.93,0.68,793,0.6,192,2.4
+8164,2019,12,7,4,30,-4.6,1.36,0.024,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.295,100,122.26,0.93,0.68,793,0.6,194,2.5
+8165,2019,12,7,5,30,-4.7,1.39,0.026,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.295,99.77,110.99,0.93,0.68,793,0.6,196,2.5
+8166,2019,12,7,6,30,-4.7,1.4,0.026,0.63,0,0,0,0,0,-5,0,0,0,0,0.295,98.12,100.09,0.93,0.68,793,0.6,197,2.6
+8167,2019,12,7,7,30,-3.7,1.41,0.025,0.63,11,147,12,4,4,-5.2,5,0,57,5,0.296,89.51,89.46,0.93,0.68,793,0.6,198,3
+8168,2019,12,7,8,30,-1.4,1.39,0.023,0.63,37,692,151,4,4,-4.8,63,335,54,118,0.298,77.38,80.52,0.93,0.68,793,0.6,202,3.8
+8169,2019,12,7,9,30,1.1,1.38,0.022,0.63,49,859,304,0,4,-4,138,401,0,257,0.301,68.93,72.75,0.93,0.68,793,0.6,209,4.9
+8170,2019,12,7,10,30,3,1.38,0.02,0.63,56,932,421,0,4,-3.3,185,469,0,369,0.304,63.28,66.94,0.93,0.68,792,0.6,216,5.8
+8171,2019,12,7,11,30,4.1,1.38,0.019,0.63,60,962,486,0,7,-3.5,212,464,0,418,0.306,57.77,63.69,0.93,0.68,792,0.6,220,6.2
+8172,2019,12,7,12,30,4.7,1.38,0.019,0.63,60,964,492,1,4,-3.8,180,593,32,446,0.308,54.3,63.4,0.93,0.68,791,0.6,222,6
+8173,2019,12,7,13,30,4.8,1.37,0.02,0.63,57,939,437,0,7,-3.6,195,431,7,369,0.31,54.34,66.13,0.94,0.68,790,0.6,222,5.7
+8174,2019,12,7,14,30,4,1.36,0.021,0.63,51,877,329,0,4,-3.3,159,388,11,282,0.311,58.85,71.51,0.94,0.68,790,0.6,222,4.4
+8175,2019,12,7,15,30,1.6,1.36,0.021,0.63,39,741,181,6,4,-2.8,106,64,93,118,0.312,72.55,78.96,0.93,0.68,790,0.6,220,2.8
+8176,2019,12,7,16,30,-1.1,1.35,0.02,0.63,17,293,28,6,7,-3.1,17,1,86,17,0.313,86.02,87.81,0.93,0.68,790,0.6,214,1.9
+8177,2019,12,7,17,30,-2,1.34,0.021,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.314,88.88,98.14,0.94,0.65,790,0.6,209,1.8
+8178,2019,12,7,18,30,-2,1.33,0.021,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.314,89.15,108.94,0.94,0.65,790,0.7,206,1.8
+8179,2019,12,7,19,30,-2,1.32,0.023,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.315,89.49,120.16,0.95,0.65,790,0.8,206,1.8
+8180,2019,12,7,20,30,-1.9,1.32,0.025,0.63,0,0,0,0,6,-3.4,0,0,0,0,0.316,89.47,131.55,0.95,0.65,790,0.9,210,2
+8181,2019,12,7,21,30,-1.7,1.31,0.027,0.63,0,0,0,0,6,-3.3,0,0,0,0,0.317,88.88,142.74,0.95,0.65,789,0.9,212,1.9
+8182,2019,12,7,22,30,-1.7,1.3,0.028,0.63,0,0,0,0,6,-2.9,0,0,0,0,0.317,91.31,153.05,0.95,0.65,789,1,207,1.7
+8183,2019,12,7,23,30,-1.9,1.31,0.025,0.63,0,0,0,0,6,-2.8,0,0,0,0,0.318,93.37,160.61,0.95,0.65,788,1,195,1.6
+8184,2019,12,8,0,30,-2,1.3,0.023,0.63,0,0,0,0,6,-2.8,0,0,0,0,0.318,93.93,161.44,0.96,0.65,787,1,186,1.7
+8185,2019,12,8,1,30,-1.8,1.25,0.028,0.63,0,0,0,0,6,-2.5,0,0,0,0,0.318,95.09,154.85,0.97,0.65,786,1.1,190,1.9
+8186,2019,12,8,2,30,-1.6,1.21,0.044,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.32,98.28,144.87,0.97,0.65,786,1.1,205,2.2
+8187,2019,12,8,3,30,-1.6,1.21,0.047,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.322,100,133.78,0.97,0.65,785,1,218,2.7
+8188,2019,12,8,4,30,-1.9,1.26,0.033,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.324,100,122.41,0.96,0.65,785,0.9,224,2.7
+8189,2019,12,8,5,30,-2.4,1.3,0.027,0.63,0,0,0,0,8,-2.4,0,0,0,0,0.325,100,111.13,0.95,0.65,785,0.9,224,2.1
+8190,2019,12,8,6,30,-2.9,1.32,0.023,0.63,0,0,0,0,4,-2.9,0,0,0,0,0.326,100,100.23,0.95,0.65,785,0.9,222,1.8
+8191,2019,12,8,7,30,-2.1,1.32,0.02,0.63,9,132,10,4,4,-2.1,4,11,54,4,0.325,100,89.6,0.95,0.65,785,0.9,222,2
+8192,2019,12,8,8,30,-0.2,1.3,0.024,0.63,37,661,144,4,4,-1.3,47,257,61,89,0.325,92.56,80.67,0.95,0.65,784,0.9,225,2.7
+8193,2019,12,8,9,30,1.8,1.29,0.026,0.63,51,828,295,4,4,-0.4,49,0,61,49,0.325,85.11,72.89,0.95,0.65,784,0.9,234,3.4
+8194,2019,12,8,10,30,3.5,1.31,0.025,0.63,59,903,411,0,4,0.4,176,34,7,189,0.326,79.93,67.07,0.95,0.65,784,0.9,248,3.8
+8195,2019,12,8,11,30,4.5,1.23,0.028,0.63,64,935,477,0,4,0,241,339,7,391,0.327,72.77,63.81,0.94,0.65,783,0.8,261,3.9
+8196,2019,12,8,12,30,4.7,1.23,0.026,0.63,64,940,483,0,6,-1,135,3,0,136,0.33,66.47,63.5,0.94,0.65,782,0.8,271,3.7
+8197,2019,12,8,13,30,4.2,1.2,0.024,0.63,58,920,429,0,9,-2,123,2,0,124,0.333,64.16,66.2,0.93,0.65,782,0.8,280,3
+8198,2019,12,8,14,30,3.2,1.2,0.02,0.63,49,869,324,0,6,-2,87,2,0,88,0.338,68.71,71.55,0.92,0.65,782,0.8,284,2.1
+8199,2019,12,8,15,30,1.2,1.23,0.016,0.63,36,743,178,7,6,-1.7,49,1,100,49,0.342,81.04,78.99,0.91,0.65,783,0.7,284,1.4
+8200,2019,12,8,16,30,-1,1.21,0.015,0.63,16,304,28,4,8,-3.2,16,144,54,21,0.345,84.85,87.82,0.92,0.65,783,0.6,281,1.3
+8201,2019,12,8,17,30,-2.2,1.17,0.016,0.63,0,0,0,0,7,-4.6,0,0,0,0,0.344,83.71,98.13,0.92,0.72,783,0.6,280,1.4
+8202,2019,12,8,18,30,-2.7,1.13,0.016,0.63,0,0,0,0,0,-5,0,0,0,0,0.34,84.1,108.92,0.92,0.72,784,0.6,280,1.3
+8203,2019,12,8,19,30,-3.1,1.11,0.016,0.63,0,0,0,0,0,-5.3,0,0,0,0,0.334,84.81,120.14,0.91,0.72,784,0.6,282,1.2
+8204,2019,12,8,20,30,-3.4,1.12,0.015,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.331,85.36,131.52,0.9,0.72,784,0.6,282,1.1
+8205,2019,12,8,21,30,-3.7,1.14,0.014,0.63,0,0,0,0,4,-5.6,0,0,0,0,0.329,86.41,142.72,0.9,0.72,784,0.6,281,1
+8206,2019,12,8,22,30,-4,1.16,0.013,0.63,0,0,0,0,4,-5.6,0,0,0,0,0.327,88.36,153.06,0.89,0.72,784,0.6,277,0.9
+8207,2019,12,8,23,30,-4.4,1.19,0.012,0.63,0,0,0,0,4,-5.6,0,0,0,0,0.327,91.38,160.67,0.89,0.72,784,0.6,273,0.9
+8208,2019,12,9,0,30,-4.7,1.21,0.013,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.328,93.8,161.56,0.89,0.72,785,0.6,270,1
+8209,2019,12,9,1,30,-5.2,1.23,0.013,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.329,97.6,154.99,0.89,0.72,785,0.5,273,1
+8210,2019,12,9,2,30,-5.5,1.24,0.014,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.328,100,145.01,0.9,0.72,786,0.5,285,0.9
+8211,2019,12,9,3,30,-5.7,1.26,0.016,0.63,0,0,0,0,4,-5.7,0,0,0,0,0.327,100,133.92,0.9,0.72,786,0.5,298,0.7
+8212,2019,12,9,4,30,-5.8,1.28,0.016,0.63,0,0,0,0,0,-5.8,0,0,0,0,0.327,100,122.55,0.9,0.72,786,0.5,310,0.6
+8213,2019,12,9,5,30,-6,1.29,0.017,0.63,0,0,0,0,4,-6,0,0,0,0,0.328,100,111.27,0.9,0.72,786,0.5,319,0.6
+8214,2019,12,9,6,30,-6.3,1.3,0.017,0.63,0,0,0,0,4,-6.3,0,0,0,0,0.328,100,100.38,0.9,0.72,787,0.5,329,0.6
+8215,2019,12,9,7,30,-5.7,1.32,0.016,0.63,9,156,10,4,4,-6,4,0,57,4,0.328,98,89.72,0.9,0.72,787,0.5,337,0.6
+8216,2019,12,9,8,30,-3.7,1.33,0.015,0.63,33,726,149,6,4,-5.8,77,58,93,86,0.329,85.08,80.81,0.89,0.72,787,0.4,340,1.3
+8217,2019,12,9,9,30,-1.5,1.35,0.013,0.63,43,891,303,0,4,-5.5,166,32,14,175,0.329,74.11,73.03,0.89,0.72,788,0.4,338,2.8
+8218,2019,12,9,10,30,0,1.38,0.011,0.63,54,949,422,0,4,-6.3,242,110,7,285,0.328,62.36,67.2,0.91,0.72,788,0.4,335,3.7
+8219,2019,12,9,11,30,1,0.88,0.027,0.63,65,964,489,0,4,-8.2,263,350,7,417,0.327,50.26,63.92,0.92,0.72,788,0.4,336,4
+8220,2019,12,9,12,30,1.5,0.86,0.025,0.63,64,972,496,0,0,-9.7,76,939,0,494,0.327,43.13,63.59,0.92,0.72,787,0.4,338,4
+8221,2019,12,9,13,30,1.7,0.86,0.021,0.63,59,954,443,0,0,-10.7,59,954,0,443,0.328,39.44,66.26,0.91,0.72,787,0.4,339,3.8
+8222,2019,12,9,14,30,1.1,0.85,0.02,0.63,51,906,337,0,0,-11.1,51,906,0,337,0.329,39.61,71.59,0.91,0.72,787,0.3,339,3.2
+8223,2019,12,9,15,30,-0.8,0.87,0.018,0.63,38,777,186,0,0,-10.9,38,777,0,186,0.33,46.46,79,0.91,0.72,788,0.3,344,1.9
+8224,2019,12,9,16,30,-3,0.91,0.016,0.63,18,320,30,0,0,-10.3,18,320,0,30,0.332,57.34,87.82,0.9,0.72,788,0.3,350,1.1
+8225,2019,12,9,17,30,-3.9,0.93,0.016,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.333,56.59,98.11,0.9,0.74,789,0.3,349,1
+8226,2019,12,9,18,30,-4,0.95,0.016,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.333,57.37,108.9,0.9,0.74,789,0.3,341,0.8
+8227,2019,12,9,19,30,-4.1,0.97,0.016,0.63,0,0,0,0,7,-11,0,0,0,0,0.334,58.7,120.11,0.91,0.74,790,0.4,334,0.6
+8228,2019,12,9,20,30,-4.4,0.99,0.017,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.333,59.17,131.5,0.91,0.74,790,0.4,330,0.5
+8229,2019,12,9,21,30,-4.7,1.01,0.018,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.331,59.69,142.7,0.91,0.74,790,0.4,325,0.4
+8230,2019,12,9,22,30,-4.9,1.03,0.019,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.329,60.18,153.06,0.91,0.74,790,0.4,305,0.2
+8231,2019,12,9,23,30,-5.1,1.04,0.019,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.326,61.1,160.72,0.91,0.74,791,0.4,259,0.2
+8232,2019,12,10,0,30,-5.3,1.04,0.018,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.323,62.82,161.68,0.91,0.74,791,0.4,227,0.3
+8233,2019,12,10,1,30,-5.5,1.05,0.018,0.63,0,0,0,0,7,-11.2,0,0,0,0,0.32,64.27,155.13,0.91,0.74,791,0.4,211,0.4
+8234,2019,12,10,2,30,-5.9,1.06,0.017,0.63,0,0,0,0,4,-11.2,0,0,0,0,0.317,66.01,145.15,0.91,0.74,791,0.4,186,0.5
+8235,2019,12,10,3,30,-6.5,1.07,0.016,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.314,68.07,134.06,0.91,0.74,792,0.4,170,0.7
+8236,2019,12,10,4,30,-7.1,1.09,0.015,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.311,70.29,122.68,0.9,0.74,792,0.4,170,0.9
+8237,2019,12,10,5,30,-7.5,1.1,0.015,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.309,71.92,111.41,0.9,0.74,792,0.4,176,1.1
+8238,2019,12,10,6,30,-7.9,1.12,0.015,0.63,0,0,0,0,7,-11.7,0,0,0,0,0.307,74.01,100.52,0.91,0.74,793,0.5,181,1.2
+8239,2019,12,10,7,30,-7.2,1.14,0.015,0.63,8,106,8,4,7,-11.7,4,0,57,4,0.305,70.22,89.84,0.91,0.74,793,0.5,185,1.4
+8240,2019,12,10,8,30,-4.9,1.16,0.016,0.63,34,706,145,7,7,-11,90,25,100,94,0.303,62.11,80.94,0.91,0.74,793,0.5,197,1.7
+8241,2019,12,10,9,30,-2.3,1.18,0.016,0.63,46,872,299,0,4,-10.2,174,170,0,223,0.301,54.63,73.16,0.91,0.74,794,0.5,231,2
+8242,2019,12,10,10,30,-0.2,1.2,0.016,0.63,55,940,417,0,7,-10,234,197,0,310,0.3,47.79,67.32,0.91,0.74,794,0.5,267,2.2
+8243,2019,12,10,11,30,1,1.21,0.016,0.63,58,967,482,0,7,-10.1,202,93,0,243,0.299,43.47,64.02,0.91,0.74,794,0.6,284,2.3
+8244,2019,12,10,12,30,1.8,1.25,0.016,0.63,59,966,487,0,7,-10,196,519,4,426,0.298,41.22,63.67,0.91,0.74,794,0.6,288,2.3
+8245,2019,12,10,13,30,2.1,1.26,0.017,0.63,56,943,435,0,7,-10,209,44,0,227,0.295,40.39,66.32,0.92,0.74,793,0.6,281,2.2
+8246,2019,12,10,14,30,1.8,1.27,0.018,0.63,50,882,328,0,6,-10,105,4,0,106,0.29,41.38,71.62,0.92,0.74,793,0.6,263,1.7
+8247,2019,12,10,15,30,0,1.26,0.018,0.63,38,746,180,7,6,-8.4,61,1,100,61,0.286,53.07,79.01,0.92,0.74,793,0.6,234,1.2
+8248,2019,12,10,16,30,-2.1,1.26,0.017,0.63,17,301,29,6,6,-8.4,12,0,86,12,0.285,62.22,87.81,0.92,0.74,794,0.6,215,1.1
+8249,2019,12,10,17,30,-2.8,1.26,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.284,58.52,98.09,0.92,0.74,794,0.6,213,1.1
+8250,2019,12,10,18,30,-2.9,1.26,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.285,59.18,108.87,0.91,0.74,795,0.5,210,1
+8251,2019,12,10,19,30,-3.1,1.27,0.015,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.286,59.73,120.08,0.91,0.74,795,0.5,204,0.9
+8252,2019,12,10,20,30,-3.5,1.27,0.014,0.63,0,0,0,0,7,-10,0,0,0,0,0.286,60.54,131.46,0.91,0.74,795,0.5,197,0.9
+8253,2019,12,10,21,30,-4.1,1.27,0.013,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.286,62.04,142.67,0.9,0.74,795,0.5,192,1
+8254,2019,12,10,22,30,-4.8,1.28,0.013,0.63,0,0,0,0,0,-10.7,0,0,0,0,0.286,63.4,153.05,0.9,0.74,795,0.4,189,1.2
+8255,2019,12,10,23,30,-5.6,1.29,0.013,0.63,0,0,0,0,0,-11,0,0,0,0,0.285,65.53,160.77,0.9,0.74,794,0.4,189,1.3
+8256,2019,12,11,0,30,-6.2,1.28,0.013,0.63,0,0,0,0,0,-11.2,0,0,0,0,0.285,67.47,161.79,0.9,0.74,794,0.4,193,1.5
+8257,2019,12,11,1,30,-6.6,1.26,0.013,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.286,69.24,155.27,0.9,0.74,794,0.4,196,1.6
+8258,2019,12,11,2,30,-6.9,1.24,0.013,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.288,71.03,145.29,0.9,0.74,794,0.4,195,1.6
+8259,2019,12,11,3,30,-7,1.23,0.013,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.29,72.28,134.2,0.9,0.74,793,0.4,192,1.7
+8260,2019,12,11,4,30,-7.3,1.22,0.013,0.63,0,0,0,0,7,-11,0,0,0,0,0.293,74.65,122.82,0.9,0.74,793,0.4,191,1.8
+8261,2019,12,11,5,30,-7.6,1.23,0.013,0.63,0,0,0,0,7,-11,0,0,0,0,0.295,76.55,111.55,0.9,0.74,793,0.3,193,1.8
+8262,2019,12,11,6,30,-7.8,1.24,0.012,0.63,0,0,0,0,7,-11.1,0,0,0,0,0.298,77.23,100.65,0.9,0.74,793,0.3,197,1.8
+8263,2019,12,11,7,30,-6.8,1.23,0.013,0.63,8,107,8,4,7,-11.2,4,0,57,4,0.299,70.7,89.95,0.91,0.74,793,0.4,202,2.1
+8264,2019,12,11,8,30,-4.4,1.2,0.016,0.63,34,710,144,7,4,-10.8,89,12,100,91,0.301,61,81.07,0.92,0.74,793,0.4,208,3
+8265,2019,12,11,9,30,-2.2,1.17,0.018,0.63,48,875,300,1,7,-10.2,127,64,18,145,0.302,54.28,73.28,0.93,0.74,793,0.4,215,4
+8266,2019,12,11,10,30,-0.6,1.17,0.019,0.63,57,945,420,0,6,-9.9,150,8,0,153,0.303,49.3,67.44,0.93,0.74,793,0.4,220,4.7
+8267,2019,12,11,11,30,0.3,1.14,0.022,0.63,64,960,483,0,6,-9.8,218,32,0,232,0.304,46.74,64.12,0.94,0.74,792,0.5,224,5.1
+8268,2019,12,11,12,30,0.7,1.12,0.026,0.63,68,949,488,0,7,-9.5,285,215,0,380,0.306,46.23,63.75,0.94,0.74,791,0.6,227,5.1
+8269,2019,12,11,13,30,0.6,1.08,0.033,0.63,66,912,432,0,6,-9.2,175,8,0,178,0.308,47.84,66.37,0.95,0.74,791,0.7,230,4.7
+8270,2019,12,11,14,30,0.3,1.07,0.034,0.63,56,850,324,0,6,-8.7,111,3,0,112,0.308,50.91,71.65,0.94,0.74,791,0.7,230,4
+8271,2019,12,11,15,30,-0.9,1.08,0.026,0.63,41,726,179,7,7,-8.2,64,1,100,64,0.307,57.74,79.02,0.93,0.74,791,0.6,228,2.8
+8272,2019,12,11,16,30,-3,1.07,0.022,0.63,17,283,28,6,4,-7.9,14,0,86,14,0.306,69.14,87.8,0.93,0.74,791,0.6,225,1.7
+8273,2019,12,11,17,30,-4.3,1.06,0.022,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.306,73.63,98.07,0.93,0.72,791,0.5,222,1.4
+8274,2019,12,11,18,30,-5,1.06,0.022,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.306,76.2,108.83,0.93,0.72,791,0.5,220,1.5
+8275,2019,12,11,19,30,-5.5,1.06,0.021,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.305,78.11,120.04,0.92,0.72,791,0.5,222,1.5
+8276,2019,12,11,20,30,-5.9,1.06,0.02,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.303,80.17,131.42,0.92,0.72,791,0.5,224,1.4
+8277,2019,12,11,21,30,-6.2,1.09,0.02,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.301,81.96,142.64,0.92,0.72,792,0.5,223,1.4
+8278,2019,12,11,22,30,-6.5,1.12,0.02,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.3,83.65,153.04,0.92,0.72,792,0.6,221,1.4
+8279,2019,12,11,23,30,-6.8,1.15,0.019,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.298,85.37,160.8,0.92,0.72,792,0.7,220,1.5
+8280,2019,12,12,0,30,-7,1.18,0.019,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.296,86.29,161.89,0.93,0.72,792,0.7,219,1.5
+8281,2019,12,12,1,30,-7,1.19,0.02,0.63,0,0,0,0,7,-9,0,0,0,0,0.295,85.91,155.4,0.94,0.72,792,0.8,215,1.5
+8282,2019,12,12,2,30,-6.7,1.19,0.024,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.296,84.25,145.42,0.95,0.72,791,0.8,212,1.5
+8283,2019,12,12,3,30,-6.3,1.18,0.028,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.297,82.11,134.33,0.95,0.72,791,0.9,213,1.6
+8284,2019,12,12,4,30,-5.9,1.17,0.026,0.63,0,0,0,0,6,-8.7,0,0,0,0,0.298,80.76,122.95,0.94,0.72,791,0.9,215,1.6
+8285,2019,12,12,5,30,-5.5,1.16,0.023,0.63,0,0,0,0,6,-8.5,0,0,0,0,0.298,79.31,111.68,0.94,0.72,792,0.9,211,1.8
+8286,2019,12,12,6,30,-5.3,1.15,0.022,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.297,79.28,100.78,0.93,0.72,792,0.9,205,1.9
+8287,2019,12,12,7,30,-4.7,1.17,0.019,0.63,7,92,7,3,4,-8.4,2,0,43,2,0.298,75.36,90.07,0.93,0.72,792,0.8,202,2.4
+8288,2019,12,12,8,30,-2.7,1.18,0.018,0.63,34,668,136,7,7,-8.2,60,4,100,61,0.298,66.09,81.2,0.92,0.72,792,0.8,204,3.4
+8289,2019,12,12,9,30,0,1.17,0.018,0.63,48,840,288,0,4,-7.7,125,381,0,234,0.297,56.05,73.4,0.92,0.72,792,0.8,213,4.4
+8290,2019,12,12,10,30,2.3,1.17,0.019,0.63,56,915,405,0,4,-7.1,165,522,0,364,0.296,49.85,67.55,0.92,0.72,792,0.8,225,5.1
+8291,2019,12,12,11,30,3.6,1.17,0.019,0.63,59,946,471,0,0,-6.1,59,946,0,471,0.296,49.24,64.21,0.92,0.72,791,0.8,232,5.4
+8292,2019,12,12,12,30,4.3,1.17,0.019,0.63,61,947,479,0,0,-5.2,150,679,4,450,0.295,49.88,63.82,0.93,0.72,790,0.8,233,5.2
+8293,2019,12,12,13,30,4.3,1.17,0.021,0.63,59,918,426,0,7,-4.6,257,86,0,291,0.295,52.48,66.41,0.93,0.72,790,0.9,227,4.8
+8294,2019,12,12,14,30,3.3,1.18,0.024,0.63,53,849,320,0,7,-3.9,105,5,0,107,0.295,59.2,71.66,0.94,0.72,789,0.9,220,4.2
+8295,2019,12,12,15,30,1.6,1.18,0.026,0.63,42,700,175,7,4,-2.9,62,0,100,62,0.295,71.81,79.01,0.94,0.72,789,1,220,3.4
+8296,2019,12,12,16,30,0.2,1.19,0.028,0.63,17,256,27,7,7,-2.3,11,0,96,11,0.297,83.55,87.78,0.94,0.72,789,1,226,3.1
+8297,2019,12,12,17,30,-0.6,1.2,0.028,0.63,0,0,0,0,4,-2.2,0,0,0,0,0.3,89.19,98.04,0.94,0.68,790,1,235,2.8
+8298,2019,12,12,18,30,-1,1.22,0.024,0.63,0,0,0,0,4,-2.2,0,0,0,0,0.304,91.85,108.79,0.93,0.68,790,0.9,243,2.1
+8299,2019,12,12,19,30,-1.4,1.22,0.02,0.63,0,0,0,0,4,-2.2,0,0,0,0,0.307,94.53,119.99,0.92,0.68,790,0.8,248,1.6
+8300,2019,12,12,20,30,-1.8,1.24,0.018,0.63,0,0,0,0,4,-2.3,0,0,0,0,0.311,96.32,131.37,0.91,0.68,790,0.8,247,1.4
+8301,2019,12,12,21,30,-2.2,1.25,0.016,0.63,0,0,0,0,4,-2.6,0,0,0,0,0.313,97.26,142.6,0.91,0.68,790,0.7,238,1.4
+8302,2019,12,12,22,30,-2.5,1.27,0.016,0.63,0,0,0,0,4,-2.6,0,0,0,0,0.315,98.98,153.01,0.91,0.68,790,0.7,229,1.4
+8303,2019,12,12,23,30,-2.9,1.27,0.017,0.63,0,0,0,0,4,-2.9,0,0,0,0,0.316,100,160.83,0.91,0.68,790,0.7,225,1.5
+8304,2019,12,13,0,30,-3.3,1.28,0.017,0.63,0,0,0,0,7,-3.3,0,0,0,0,0.317,100,161.99,0.91,0.68,789,0.7,226,1.5
+8305,2019,12,13,1,30,-3.7,1.29,0.017,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.316,100,155.52,0.92,0.68,789,0.7,230,1.6
+8306,2019,12,13,2,30,-3.6,1.3,0.018,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.314,100,145.55,0.92,0.68,788,0.7,237,1.9
+8307,2019,12,13,3,30,-3,1.29,0.019,0.63,0,0,0,0,4,-3,0,0,0,0,0.313,100,134.46,0.92,0.68,788,0.7,254,2.5
+8308,2019,12,13,4,30,-2.6,1.3,0.018,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.314,100,123.08,0.91,0.68,789,0.7,276,2.8
+8309,2019,12,13,5,30,-3,1.3,0.016,0.63,0,0,0,0,7,-3,0,0,0,0,0.315,100,111.81,0.9,0.68,789,0.6,290,2.4
+8310,2019,12,13,6,30,-3.9,1.27,0.013,0.63,0,0,0,0,7,-3.9,0,0,0,0,0.312,100,100.91,0.91,0.68,790,0.4,295,1.9
+8311,2019,12,13,7,30,-3.7,1.23,0.012,0.63,7,108,7,3,6,-5.3,3,0,43,3,0.307,88.79,90.18,0.91,0.68,790,0.4,298,2
+8312,2019,12,13,8,30,-2.1,1.23,0.011,0.63,30,723,139,7,7,-6.1,79,14,100,81,0.302,74.22,81.32,0.91,0.68,790,0.4,301,3
+8313,2019,12,13,9,30,-0.4,1.23,0.01,0.63,40,891,293,0,0,-6.7,68,698,4,266,0.298,62.23,73.52,0.91,0.68,791,0.4,305,4.6
+8314,2019,12,13,10,30,0.7,1.23,0.01,0.63,48,960,413,0,0,-8.9,127,668,0,381,0.293,48.56,67.65,0.92,0.68,790,0.4,310,5.5
+8315,2019,12,13,11,30,1.3,1.1,0.012,0.63,54,988,482,0,4,-11.1,69,950,46,481,0.287,39.31,64.3,0.92,0.68,790,0.4,314,5.5
+8316,2019,12,13,12,30,1.6,1.13,0.012,0.63,55,991,491,0,4,-12,182,628,14,458,0.282,35.68,63.88,0.93,0.68,789,0.4,315,5
+8317,2019,12,13,13,30,1.4,1.13,0.013,0.63,53,964,438,0,4,-12.1,244,75,0,274,0.277,35.96,66.45,0.93,0.68,789,0.5,313,3.9
+8318,2019,12,13,14,30,0.6,1.1,0.016,0.63,49,894,330,0,4,-11.1,173,28,0,182,0.273,41.25,71.67,0.94,0.68,789,0.5,305,2.2
+8319,2019,12,13,15,30,-0.5,1.1,0.019,0.63,39,749,182,7,7,-9,52,0,100,52,0.27,52.72,79,0.95,0.68,788,0.5,293,0.9
+8320,2019,12,13,16,30,-1,1.1,0.022,0.63,18,287,29,7,7,-8.9,11,0,100,11,0.268,54.98,87.76,0.95,0.68,788,0.6,303,0.4
+8321,2019,12,13,17,30,-1.4,1.1,0.024,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.269,54.44,98,0.96,0.7,788,0.7,220,0.3
+8322,2019,12,13,18,30,-2.1,1.09,0.026,0.63,0,0,0,0,7,-8.2,0,0,0,0,0.272,62.8,108.75,0.96,0.7,787,0.7,130,0.6
+8323,2019,12,13,19,30,-2.8,1.09,0.03,0.63,0,0,0,0,7,-7,0,0,0,0,0.273,72.77,119.94,0.96,0.7,786,0.8,137,1.2
+8324,2019,12,13,20,30,-3.3,1.09,0.035,0.63,0,0,0,0,6,-7,0,0,0,0,0.273,75.56,131.32,0.97,0.7,785,0.8,134,1.9
+8325,2019,12,13,21,30,-3.6,1.09,0.041,0.63,0,0,0,0,6,-6.6,0,0,0,0,0.273,79.96,142.55,0.97,0.7,784,0.8,138,2.3
+8326,2019,12,13,22,30,-3.7,1.1,0.043,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.275,84.64,152.99,0.97,0.7,783,0.9,149,2.4
+8327,2019,12,13,23,30,-3.7,1.13,0.046,0.63,0,0,0,0,7,-5.3,0,0,0,0,0.277,88.36,160.85,0.97,0.7,782,0.9,169,2.3
+8328,2019,12,14,0,30,-3.7,1.18,0.04,0.63,0,0,0,0,4,-4.9,0,0,0,0,0.281,91.56,162.08,0.96,0.7,781,0.8,192,2.3
+8329,2019,12,14,1,30,-3.9,1.21,0.029,0.63,0,0,0,0,4,-4.3,0,0,0,0,0.284,96.76,155.64,0.96,0.7,781,0.8,207,2.2
+8330,2019,12,14,2,30,-4.2,1.24,0.026,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.287,100,145.67,0.95,0.7,780,0.7,216,2.1
+8331,2019,12,14,3,30,-4.5,1.28,0.022,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.289,100,134.58,0.94,0.7,780,0.7,221,2.1
+8332,2019,12,14,4,30,-4.6,1.3,0.019,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.29,100,123.21,0.94,0.7,780,0.7,221,2.1
+8333,2019,12,14,5,30,-4.6,1.32,0.017,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.291,100,111.93,0.93,0.7,780,0.7,219,2.1
+8334,2019,12,14,6,30,-4.6,1.32,0.015,0.63,0,0,0,0,4,-4.6,0,0,0,0,0.292,100,101.04,0.93,0.7,780,0.7,216,2.2
+8335,2019,12,14,7,30,-4,1.33,0.014,0.63,6,93,6,3,7,-4.3,2,0,43,2,0.292,97.88,90.29,0.93,0.7,779,0.7,212,2.6
+8336,2019,12,14,8,30,-2.6,1.31,0.015,0.63,32,676,133,6,4,-3.8,66,102,86,81,0.292,91.63,81.44,0.93,0.7,779,0.7,215,3.3
+8337,2019,12,14,9,30,-1.3,1.28,0.018,0.63,48,842,285,0,4,-2.9,168,40,0,179,0.292,88.98,73.63,0.94,0.7,779,0.8,230,3.9
+8338,2019,12,14,10,30,0,1.25,0.022,0.63,56,918,404,0,4,-2.3,208,46,0,225,0.294,84.39,67.74,0.94,0.7,779,0.7,251,4.4
+8339,2019,12,14,11,30,1.3,1.3,0.02,0.63,58,962,474,0,4,-2.3,240,74,0,272,0.297,77.06,64.37,0.92,0.7,779,0.6,266,4.8
+8340,2019,12,14,12,30,2.1,1.38,0.015,0.63,54,981,485,0,4,-3.4,231,62,0,258,0.3,66.91,63.93,0.9,0.7,779,0.5,273,5.2
+8341,2019,12,14,13,30,2.3,1.4,0.012,0.63,49,970,436,0,4,-5.7,260,62,0,285,0.301,55.5,66.47,0.89,0.7,779,0.4,276,5.5
+8342,2019,12,14,14,30,1.7,1.37,0.011,0.63,42,918,331,0,4,-7.5,108,17,0,113,0.301,50.33,71.68,0.88,0.7,779,0.4,280,5.2
+8343,2019,12,14,15,30,-0.3,1.31,0.011,0.63,33,789,184,7,4,-8.1,92,2,100,92,0.302,55.84,78.99,0.88,0.7,779,0.4,286,3.9
+8344,2019,12,14,16,30,-3.1,1.27,0.011,0.63,16,345,30,4,4,-8.4,17,211,61,25,0.304,67.06,87.73,0.88,0.7,780,0.4,294,2.8
+8345,2019,12,14,17,30,-4.8,1.24,0.011,0.63,0,0,0,0,4,-9,0,0,0,0,0.307,72.7,97.96,0.88,0.8,781,0.3,304,2.5
+8346,2019,12,14,18,30,-5.7,1.25,0.011,0.63,0,0,0,0,4,-9.2,0,0,0,0,0.31,76.44,108.69,0.88,0.8,781,0.3,313,2.6
+8347,2019,12,14,19,30,-6.5,1.25,0.011,0.63,0,0,0,0,4,-9.4,0,0,0,0,0.314,79.65,119.89,0.88,0.8,782,0.3,321,2.7
+8348,2019,12,14,20,30,-7.4,1.25,0.01,0.63,0,0,0,0,0,-9.7,0,0,0,0,0.316,83.76,131.26,0.88,0.8,782,0.3,329,2.5
+8349,2019,12,14,21,30,-8.3,1.26,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.319,88.06,142.5,0.88,0.8,782,0.2,338,2.2
+8350,2019,12,14,22,30,-9.2,1.28,0.011,0.63,0,0,0,0,0,-10.2,0,0,0,0,0.321,92.17,152.95,0.89,0.8,782,0.2,349,1.9
+8351,2019,12,14,23,30,-10,1.28,0.011,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.323,95.68,160.86,0.89,0.8,782,0.2,183,1.8
+8352,2019,12,15,0,30,-10.6,1.29,0.011,0.63,0,0,0,0,7,-11,0,0,0,0,0.326,97.14,162.16,0.9,0.8,782,0.2,16,2
+8353,2019,12,15,1,30,-11.2,1.3,0.012,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.329,97.97,155.75,0.91,0.8,782,0.2,28,2.3
+8354,2019,12,15,2,30,-11.7,1.29,0.013,0.63,0,0,0,0,0,-12,0,0,0,0,0.332,97.52,145.8,0.92,0.8,782,0.2,39,2.4
+8355,2019,12,15,3,30,-11.8,1.27,0.016,0.63,0,0,0,0,4,-12.5,0,0,0,0,0.333,94.67,134.7,0.93,0.8,782,0.2,53,2.1
+8356,2019,12,15,4,30,-11.6,1.27,0.017,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.334,91.83,123.33,0.93,0.8,782,0.2,61,1.8
+8357,2019,12,15,5,30,-11.4,1.26,0.019,0.63,0,0,0,0,7,-12.9,0,0,0,0,0.334,88.72,112.06,0.93,0.8,782,0.2,58,2
+8358,2019,12,15,6,30,-11.4,1.27,0.019,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.336,87.52,101.16,0.94,0.8,782,0.2,53,2.2
+8359,2019,12,15,7,30,-11.1,1.27,0.019,0.63,8,100,6,3,7,-13.3,3,0,43,3,0.338,83.52,90.9,0.94,0.8,782,0.2,49,2.4
+8360,2019,12,15,8,30,-9.9,1.27,0.019,0.63,34,723,140,7,7,-13.4,86,13,100,88,0.341,75.64,81.54,0.93,0.8,783,0.2,50,2.8
+8361,2019,12,15,9,30,-7.8,1.27,0.018,0.63,48,899,300,1,7,-12.9,184,114,14,216,0.345,67.04,73.73,0.93,0.8,783,0.2,56,3.3
+8362,2019,12,15,10,30,-5.8,1.27,0.018,0.63,55,974,423,0,7,-13.3,211,405,0,364,0.349,55.26,67.83,0.93,0.8,782,0.2,57,3.7
+8363,2019,12,15,11,30,-4.5,1.27,0.017,0.63,59,1006,493,0,7,-14.2,252,391,0,421,0.353,46.65,64.44,0.93,0.8,782,0.2,50,3.6
+8364,2019,12,15,12,30,-3.7,1.29,0.016,0.63,58,1011,502,0,7,-15,274,341,0,424,0.354,41.19,63.97,0.92,0.8,781,0.2,40,3.5
+8365,2019,12,15,13,30,-3.5,1.3,0.015,0.63,55,991,450,0,7,-15.3,215,454,0,396,0.355,39.59,66.49,0.92,0.8,781,0.2,30,3.5
+8366,2019,12,15,14,30,-4,1.3,0.015,0.63,49,933,342,0,7,-15.2,182,333,0,287,0.356,41.33,71.67,0.92,0.8,782,0.2,22,3.6
+8367,2019,12,15,15,30,-5.6,1.28,0.016,0.63,38,801,191,7,7,-15.6,125,41,100,133,0.36,45.08,78.96,0.93,0.8,782,0.2,21,3.2
+8368,2019,12,15,16,30,-7.9,1.26,0.017,0.63,18,342,32,7,7,-16.5,19,1,100,19,0.365,50.16,87.69,0.93,0.8,783,0.2,23,2.5
+8369,2019,12,15,17,30,-9.5,1.25,0.018,0.63,0,0,0,0,7,-16.5,0,0,0,0,0.37,56.72,97.91,0.93,0.8,784,0.2,25,2.2
+8370,2019,12,15,18,30,-10.4,1.26,0.018,0.63,0,0,0,0,7,-16.7,0,0,0,0,0.373,59.68,108.64,0.93,0.8,784,0.2,23,2.2
+8371,2019,12,15,19,30,-11.2,1.26,0.019,0.63,0,0,0,0,7,-16.9,0,0,0,0,0.373,62.82,119.82,0.93,0.8,785,0.2,17,2
+8372,2019,12,15,20,30,-11.8,1.26,0.019,0.63,0,0,0,0,7,-16.9,0,0,0,0,0.373,65.86,131.2,0.93,0.8,785,0.2,12,1.9
+8373,2019,12,15,21,30,-12.3,1.27,0.02,0.63,0,0,0,0,4,-16.8,0,0,0,0,0.373,69.18,142.44,0.93,0.8,786,0.2,6,1.8
+8374,2019,12,15,22,30,-12.8,1.28,0.021,0.63,0,0,0,0,7,-16.7,0,0,0,0,0.373,72.62,152.91,0.94,0.8,786,0.3,179,1.7
+8375,2019,12,15,23,30,-13.1,1.29,0.022,0.63,0,0,0,0,7,-16.5,0,0,0,0,0.373,75.84,160.86,0.94,0.8,787,0.3,352,1.7
+8376,2019,12,16,0,30,-13,1.28,0.024,0.63,0,0,0,0,7,-16.1,0,0,0,0,0.372,77.66,162.23,0.94,0.8,787,0.3,347,1.9
+8377,2019,12,16,1,30,-12.5,1.27,0.026,0.63,0,0,0,0,7,-15.6,0,0,0,0,0.371,77.74,155.86,0.94,0.8,787,0.3,342,2
+8378,2019,12,16,2,30,-12,1.25,0.027,0.63,0,0,0,0,4,-15.2,0,0,0,0,0.368,77.32,145.91,0.95,0.8,788,0.3,338,2
+8379,2019,12,16,3,30,-11.9,1.26,0.026,0.63,0,0,0,0,7,-15,0,0,0,0,0.366,77.89,134.82,0.94,0.8,788,0.3,333,2.1
+8380,2019,12,16,4,30,-12.3,1.28,0.023,0.63,0,0,0,0,8,-15.1,0,0,0,0,0.364,79.29,123.45,0.94,0.8,789,0.3,331,2.1
+8381,2019,12,16,5,30,-12.9,1.31,0.02,0.63,0,0,0,0,7,-15.7,0,0,0,0,0.361,79.81,112.17,0.93,0.8,790,0.2,332,2.2
+8382,2019,12,16,6,30,-13.6,1.34,0.017,0.63,0,0,0,0,7,-16.3,0,0,0,0,0.358,80.22,101.27,0.92,0.8,791,0.2,333,2.3
+8383,2019,12,16,7,30,-13.5,1.39,0.014,0.63,5,59,4,3,7,-16.9,2,0,43,2,0.354,75.49,91.02,0.91,0.8,792,0.2,337,2.6
+8384,2019,12,16,8,30,-11.7,1.42,0.012,0.63,30,741,138,1,0,-17.1,36,665,11,133,0.35,64.04,81.65,0.9,0.8,792,0.2,344,3.2
+8385,2019,12,16,9,30,-9.1,1.43,0.011,0.63,42,913,296,0,0,-16.1,83,719,0,283,0.346,56.88,73.82,0.9,0.8,793,0.2,347,4
+8386,2019,12,16,10,30,-7,1.44,0.01,0.63,49,984,419,0,0,-15.3,107,796,0,406,0.345,51.7,67.91,0.9,0.8,793,0.2,349,4.3
+8387,2019,12,16,11,30,-5.9,1.43,0.011,0.63,52,1014,489,0,0,-15.7,129,652,0,410,0.344,46.04,64.5,0.9,0.8,793,0.2,347,4
+8388,2019,12,16,12,30,-5.5,1.44,0.011,0.63,53,1017,499,0,0,-16,88,872,29,470,0.344,43.45,64.01,0.9,0.8,793,0.2,340,3.7
+8389,2019,12,16,13,30,-5.5,1.46,0.012,0.63,51,995,448,0,0,-16.1,83,853,0,423,0.346,43.17,66.5,0.9,0.8,793,0.2,334,3.7
+8390,2019,12,16,14,30,-5.9,1.46,0.012,0.63,46,939,341,0,0,-15.9,46,939,0,341,0.348,45.03,71.66,0.9,0.8,793,0.2,332,3.7
+8391,2019,12,16,15,30,-7,1.46,0.012,0.63,35,812,191,4,0,-15.7,78,476,50,169,0.349,49.94,78.93,0.9,0.8,794,0.2,333,3.1
+8392,2019,12,16,16,30,-8.9,1.45,0.012,0.63,17,360,32,7,4,-16.4,19,1,100,19,0.35,54.75,87.64,0.9,0.8,795,0.2,336,2.1
+8393,2019,12,16,17,30,-10.3,1.43,0.013,0.63,0,0,0,0,7,-16,0,0,0,0,0.349,63.07,97.85,0.91,0.8,795,0.2,339,1.5
+8394,2019,12,16,18,30,-11.2,1.4,0.014,0.63,0,0,0,0,7,-16,0,0,0,0,0.346,67.69,108.57,0.92,0.8,796,0.2,339,1.5
+8395,2019,12,16,19,30,-12,1.38,0.015,0.63,0,0,0,0,0,-16,0,0,0,0,0.344,71.85,119.76,0.92,0.8,796,0.2,337,1.5
+8396,2019,12,16,20,30,-12.7,1.37,0.015,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.343,75.6,131.13,0.92,0.8,797,0.2,336,1.5
+8397,2019,12,16,21,30,-13.2,1.38,0.015,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.344,78.2,142.38,0.91,0.8,797,0.2,336,1.4
+8398,2019,12,16,22,30,-13.5,1.39,0.014,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.346,79.81,152.86,0.91,0.8,797,0.2,335,1.2
+8399,2019,12,16,23,30,-13.8,1.38,0.013,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.348,81.89,160.85,0.91,0.8,797,0.2,330,0.9
+8400,2019,12,17,0,30,-14.1,1.37,0.014,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.347,83.76,162.3,0.91,0.8,798,0.2,317,0.7
+8401,2019,12,17,1,30,-14.4,1.35,0.014,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.342,85.05,155.96,0.91,0.8,798,0.2,284,0.6
+8402,2019,12,17,2,30,-14.6,1.35,0.014,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.336,85.45,146.03,0.92,0.8,798,0.2,242,0.7
+8403,2019,12,17,3,30,-14.6,1.34,0.014,0.63,0,0,0,0,0,-16.7,0,0,0,0,0.333,84.19,134.94,0.92,0.8,798,0.3,222,0.9
+8404,2019,12,17,4,30,-14.6,1.33,0.013,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.332,83.06,123.56,0.92,0.8,798,0.3,221,1
+8405,2019,12,17,5,30,-14.3,1.32,0.014,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.335,80.3,112.29,0.91,0.8,799,0.3,226,1
+8406,2019,12,17,6,30,-14,1.3,0.014,0.63,0,0,0,0,7,-17.1,0,0,0,0,0.338,77.65,101.38,0.91,0.8,799,0.4,220,1
+8407,2019,12,17,7,30,-13.1,1.29,0.013,0.63,4,53,3,0,0,-17.2,4,53,0,3,0.339,71.14,91.12,0.91,0.8,799,0.4,201,1.3
+8408,2019,12,17,8,30,-10.8,1.29,0.012,0.63,30,701,131,0,0,-17,32,676,4,129,0.34,60.22,81.75,0.91,0.8,799,0.4,194,2
+8409,2019,12,17,9,30,-8,1.3,0.012,0.63,43,878,286,0,0,-16.2,78,703,0,273,0.341,51.76,73.91,0.91,0.8,799,0.4,211,2.3
+8410,2019,12,17,10,30,-6,1.3,0.011,0.63,51,951,407,0,4,-16.2,156,609,0,384,0.34,44.26,67.99,0.91,0.8,799,0.4,235,2
+8411,2019,12,17,11,30,-4.7,1.17,0.014,0.63,56,979,477,0,4,-16.1,166,508,29,384,0.339,40.57,64.56,0.91,0.8,799,0.4,248,1.5
+8412,2019,12,17,12,30,-3.7,1.22,0.014,0.63,58,983,488,0,4,-15.7,105,773,39,443,0.338,38.91,64.04,0.91,0.8,799,0.4,256,1
+8413,2019,12,17,13,30,-3.2,1.26,0.015,0.63,55,961,438,0,0,-15.2,128,664,0,393,0.337,38.9,66.51,0.91,0.8,798,0.4,248,0.6
+8414,2019,12,17,14,30,-3.2,1.28,0.015,0.63,48,909,334,1,0,-14.9,106,596,25,294,0.337,40.04,71.64,0.9,0.8,798,0.4,207,0.6
+8415,2019,12,17,15,30,-4.5,1.3,0.014,0.63,36,791,188,2,0,-14.4,62,597,32,177,0.336,46.05,78.9,0.9,0.8,798,0.3,172,0.8
+8416,2019,12,17,16,30,-6.9,1.31,0.013,0.63,17,346,32,6,4,-13.7,19,14,82,20,0.335,58.38,87.59,0.9,0.8,798,0.3,169,1.1
+8417,2019,12,17,17,30,-8.7,1.31,0.012,0.63,0,0,0,0,0,-14.9,0,0,0,0,0.334,60.63,97.79,0.89,0.8,798,0.3,174,1.4
+8418,2019,12,17,18,30,-9.8,1.3,0.012,0.63,0,0,0,0,0,-15.6,0,0,0,0,0.332,62.62,108.51,0.89,0.8,798,0.3,182,1.4
+8419,2019,12,17,19,30,-10.5,1.28,0.011,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.331,63.59,119.69,0.89,0.8,798,0.2,192,1.4
+8420,2019,12,17,20,30,-10.9,1.27,0.011,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.331,63.96,131.06,0.89,0.8,797,0.2,199,1.4
+8421,2019,12,17,21,30,-11.2,1.26,0.01,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.331,64.77,142.31,0.89,0.8,797,0.2,202,1.4
+8422,2019,12,17,22,30,-11.4,1.26,0.01,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.331,65.6,152.81,0.89,0.8,797,0.2,202,1.4
+8423,2019,12,17,23,30,-11.6,1.26,0.01,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.332,67.38,160.84,0.89,0.8,797,0.2,200,1.4
+8424,2019,12,18,0,30,-11.9,1.26,0.01,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.332,70.52,162.36,0.89,0.8,796,0.2,197,1.3
+8425,2019,12,18,1,30,-12.2,1.25,0.011,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.331,74.58,156.06,0.9,0.8,796,0.2,192,1.4
+8426,2019,12,18,2,30,-12.5,1.24,0.012,0.63,0,0,0,0,0,-15.3,0,0,0,0,0.329,79.33,146.13,0.9,0.8,796,0.2,188,1.4
+8427,2019,12,18,3,30,-12.7,1.24,0.012,0.63,0,0,0,0,0,-14.9,0,0,0,0,0.327,83.37,135.05,0.9,0.8,796,0.2,189,1.4
+8428,2019,12,18,4,30,-12.8,1.24,0.012,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.325,85.6,123.67,0.91,0.8,796,0.2,196,1.3
+8429,2019,12,18,5,30,-13,1.24,0.012,0.63,0,0,0,0,0,-14.6,0,0,0,0,0.325,87.5,112.4,0.91,0.8,796,0.2,202,1.3
+8430,2019,12,18,6,30,-13.2,1.24,0.012,0.63,0,0,0,0,0,-14.7,0,0,0,0,0.324,88.73,101.49,0.91,0.8,796,0.2,205,1.4
+8431,2019,12,18,7,30,-12.4,1.25,0.012,0.63,4,56,3,0,0,-14.7,4,56,0,3,0.324,82.61,91.23,0.91,0.8,796,0.2,203,1.4
+8432,2019,12,18,8,30,-9.7,1.26,0.012,0.63,30,734,134,3,0,-14.5,57,402,46,114,0.323,67.91,81.84,0.91,0.8,796,0.2,203,1.8
+8433,2019,12,18,9,30,-6.5,1.27,0.012,0.63,43,908,293,0,4,-13.4,142,403,7,253,0.323,57.89,74,0.91,0.8,796,0.2,207,2.5
+8434,2019,12,18,10,30,-3.8,1.27,0.012,0.63,50,981,417,0,0,-12.7,103,792,0,399,0.322,49.94,68.06,0.91,0.8,795,0.2,211,3
+8435,2019,12,18,11,30,-1.8,1.28,0.013,0.63,56,1010,489,0,7,-12.2,204,523,7,428,0.321,44.78,64.6,0.91,0.8,794,0.2,212,3.2
+8436,2019,12,18,12,30,-0.6,1.28,0.014,0.63,59,1005,499,2,7,-11.8,159,691,54,461,0.319,42.42,64.06,0.92,0.8,793,0.3,213,3.2
+8437,2019,12,18,13,30,-0.1,1.26,0.017,0.63,58,970,445,1,7,-11.3,209,445,14,386,0.317,42.53,66.51,0.93,0.8,792,0.3,214,2.9
+8438,2019,12,18,14,30,-0.7,1.24,0.02,0.63,52,910,339,0,7,-10.8,161,131,0,202,0.315,46.29,71.62,0.94,0.8,792,0.3,220,2.1
+8439,2019,12,18,15,30,-2.3,1.23,0.02,0.63,40,780,191,7,7,-9.5,128,57,100,139,0.315,57.94,78.85,0.93,0.8,791,0.3,230,1.2
+8440,2019,12,18,16,30,-3.7,1.24,0.018,0.63,19,335,33,7,4,-10.3,19,0,100,19,0.317,60.09,87.55,0.93,0.8,791,0.3,240,0.9
+8441,2019,12,18,17,30,-4.4,1.24,0.016,0.63,0,0,0,0,7,-11.6,0,0,0,0,0.32,57.12,97.72,0.92,0.78,791,0.3,247,0.7
+8442,2019,12,18,18,30,-5,1.26,0.015,0.63,0,0,0,0,7,-11.9,0,0,0,0,0.322,58.28,108.43,0.92,0.78,790,0.2,248,0.6
+8443,2019,12,18,19,30,-5.7,1.27,0.013,0.63,0,0,0,0,7,-12,0,0,0,0,0.323,60.92,119.61,0.91,0.78,790,0.2,243,0.6
+8444,2019,12,18,20,30,-6.4,1.27,0.013,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.325,63.7,130.98,0.91,0.78,789,0.2,237,0.8
+8445,2019,12,18,21,30,-7.1,1.25,0.014,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.327,66.74,142.24,0.92,0.78,789,0.2,235,1
+8446,2019,12,18,22,30,-7.6,1.25,0.015,0.63,0,0,0,0,6,-12.4,0,0,0,0,0.329,68.55,152.75,0.92,0.78,789,0.2,237,1.1
+8447,2019,12,18,23,30,-7.8,1.23,0.018,0.63,0,0,0,0,6,-12.5,0,0,0,0,0.331,68.74,160.82,0.93,0.78,789,0.2,237,1.1
+8448,2019,12,19,0,30,-7.7,1.22,0.021,0.63,0,0,0,0,7,-12.6,0,0,0,0,0.333,67.89,162.41,0.93,0.78,788,0.3,236,1.1
+8449,2019,12,19,1,30,-7.5,1.21,0.024,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.335,67.39,156.15,0.93,0.78,788,0.3,236,1.1
+8450,2019,12,19,2,30,-7.3,1.22,0.026,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.335,66.92,146.24,0.93,0.78,788,0.3,233,1
+8451,2019,12,19,3,30,-7.2,1.22,0.027,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.334,66.67,135.16,0.93,0.78,788,0.3,224,1
+8452,2019,12,19,4,30,-7.2,1.23,0.027,0.63,0,0,0,0,4,-12.3,0,0,0,0,0.333,67.03,123.78,0.93,0.78,788,0.3,216,1
+8453,2019,12,19,5,30,-7.4,1.25,0.025,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.332,68.5,112.5,0.92,0.78,788,0.4,221,1
+8454,2019,12,19,6,30,-7.8,1.28,0.023,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.332,69.92,101.59,0.92,0.78,789,0.4,239,1
+8455,2019,12,19,7,30,-7.6,1.32,0.02,0.63,4,47,3,2,4,-12.6,1,0,29,1,0.332,67.27,91.32,0.91,0.78,789,0.4,254,0.9
+8456,2019,12,19,8,30,-5.8,1.32,0.019,0.63,33,678,128,7,4,-12,70,1,100,70,0.335,61.4,81.93,0.91,0.78,790,0.4,254,1
+8457,2019,12,19,9,30,-3.3,1.32,0.018,0.63,47,863,284,1,0,-11.2,63,782,11,277,0.338,54.37,74.08,0.91,0.78,790,0.4,263,1.4
+8458,2019,12,19,10,30,-1.3,1.31,0.019,0.63,57,936,406,0,0,-11.7,57,936,0,406,0.34,44.99,68.12,0.92,0.78,790,0.4,288,1.7
+8459,2019,12,19,11,30,0.2,1.01,0.023,0.63,63,965,476,0,0,-11.8,63,965,0,476,0.34,40.04,64.64,0.92,0.78,790,0.4,305,1.9
+8460,2019,12,19,12,30,1.2,1.02,0.022,0.63,63,973,488,0,0,-11.4,73,946,0,487,0.34,38.4,64.08,0.91,0.78,790,0.4,310,2
+8461,2019,12,19,13,30,1.5,1.03,0.019,0.63,58,956,439,0,4,-11.1,170,524,7,379,0.337,38.69,66.5,0.9,0.78,790,0.4,312,2.2
+8462,2019,12,19,14,30,1.1,1.09,0.017,0.63,49,903,334,0,0,-10.8,69,821,14,328,0.333,40.75,71.59,0.9,0.78,790,0.4,320,1.9
+8463,2019,12,19,15,30,-0.9,1.12,0.015,0.63,37,778,188,4,4,-9.6,89,377,57,162,0.331,51.64,78.81,0.9,0.78,790,0.4,330,1.4
+8464,2019,12,19,16,30,-3.2,1.16,0.014,0.63,18,385,35,3,0,-10,20,211,39,29,0.331,59.17,87.49,0.89,0.78,791,0.4,339,1.2
+8465,2019,12,19,17,30,-4.6,1.21,0.012,0.63,0,0,0,0,0,-11.6,0,0,0,0,0.33,57.91,97.65,0.89,0.78,792,0.4,344,1.2
+8466,2019,12,19,18,30,-5.4,1.25,0.012,0.63,0,0,0,0,0,-12,0,0,0,0,0.328,59.69,108.36,0.89,0.78,792,0.4,346,1.2
+8467,2019,12,19,19,30,-6,1.28,0.012,0.63,0,0,0,0,4,-12.2,0,0,0,0,0.326,61.53,119.53,0.89,0.78,793,0.4,348,1.1
+8468,2019,12,19,20,30,-6.4,1.29,0.011,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.327,63.13,130.9,0.89,0.78,793,0.5,352,1
+8469,2019,12,19,21,30,-6.7,1.3,0.011,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.329,65.04,142.16,0.89,0.78,794,0.4,178,0.8
+8470,2019,12,19,22,30,-7.1,1.32,0.011,0.63,0,0,0,0,0,-12.2,0,0,0,0,0.331,66.74,152.68,0.9,0.78,794,0.4,8,0.7
+8471,2019,12,19,23,30,-7.4,1.34,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.331,67.62,160.79,0.9,0.78,795,0.4,24,0.6
+8472,2019,12,20,0,30,-7.9,1.35,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.331,69.46,162.45,0.9,0.78,795,0.4,45,0.6
+8473,2019,12,20,1,30,-8.2,1.36,0.011,0.63,0,0,0,0,0,-12.7,0,0,0,0,0.33,70.09,156.24,0.89,0.78,795,0.4,61,0.5
+8474,2019,12,20,2,30,-8.2,1.37,0.011,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.327,69.22,146.34,0.89,0.78,795,0.4,80,0.4
+8475,2019,12,20,3,30,-8.1,1.37,0.012,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.324,68.24,135.26,0.9,0.78,796,0.4,132,0.3
+8476,2019,12,20,4,30,-8.2,1.36,0.013,0.63,0,0,0,0,0,-13,0,0,0,0,0.321,68.21,123.89,0.9,0.78,796,0.4,180,0.6
+8477,2019,12,20,5,30,-8.6,1.35,0.014,0.63,0,0,0,0,0,-13.1,0,0,0,0,0.32,69.73,112.61,0.9,0.78,796,0.4,195,1
+8478,2019,12,20,6,30,-9,1.35,0.014,0.63,0,0,0,0,0,-13.2,0,0,0,0,0.319,71.41,101.69,0.9,0.78,797,0.4,195,1.2
+8479,2019,12,20,7,30,-8.6,1.35,0.014,0.63,4,48,3,0,0,-13.3,4,48,0,3,0.316,68.55,91.42,0.9,0.78,797,0.4,194,1.3
+8480,2019,12,20,8,30,-6.1,1.35,0.014,0.63,31,678,125,0,0,-12.7,31,678,0,125,0.312,59.44,82.02,0.9,0.78,798,0.5,194,1.7
+8481,2019,12,20,9,30,-2.8,1.36,0.014,0.63,44,862,279,0,0,-11.1,44,862,0,279,0.309,52.63,74.15,0.9,0.78,798,0.5,202,2.5
+8482,2019,12,20,10,30,-0.4,1.4,0.013,0.63,51,939,400,0,0,-10.3,51,939,0,400,0.306,47.23,68.17,0.89,0.78,798,0.5,217,3
+8483,2019,12,20,11,30,1,1.2,0.015,0.63,57,969,472,2,7,-9.6,174,602,36,432,0.304,45.1,64.67,0.9,0.78,798,0.5,227,3.2
+8484,2019,12,20,12,30,1.8,1.25,0.016,0.63,59,973,484,0,7,-8.9,203,501,0,422,0.301,45.12,64.08,0.9,0.78,798,0.5,231,3.3
+8485,2019,12,20,13,30,2,1.29,0.017,0.63,57,950,436,0,7,-8.4,222,356,0,364,0.298,45.96,66.48,0.9,0.78,798,0.5,233,3.2
+8486,2019,12,20,14,30,1.5,1.29,0.018,0.63,51,892,333,1,7,-8.3,155,189,14,215,0.296,48.28,71.55,0.9,0.78,798,0.5,231,2.7
+8487,2019,12,20,15,30,-0.5,1.29,0.018,0.63,38,762,187,7,7,-7.6,125,71,100,139,0.295,58.59,78.75,0.91,0.78,798,0.5,225,1.8
+8488,2019,12,20,16,30,-3,1.28,0.018,0.63,19,365,35,7,7,-8.2,23,4,100,23,0.295,67.19,87.42,0.91,0.78,798,0.5,218,1.3
+8489,2019,12,20,17,30,-4.3,1.27,0.018,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.295,65.32,97.57,0.91,0.76,798,0.4,214,1.4
+8490,2019,12,20,18,30,-5,1.25,0.018,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.294,66.01,108.27,0.91,0.76,799,0.4,216,1.3
+8491,2019,12,20,19,30,-5.4,1.23,0.018,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.293,66.39,119.44,0.91,0.76,799,0.4,219,1.3
+8492,2019,12,20,20,30,-5.7,1.22,0.019,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.292,67.12,130.81,0.91,0.76,799,0.4,219,1.4
+8493,2019,12,20,21,30,-6.1,1.22,0.019,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.292,68.92,142.07,0.91,0.76,799,0.4,214,1.4
+8494,2019,12,20,22,30,-6.6,1.22,0.018,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.293,71.44,152.61,0.91,0.76,799,0.3,210,1.5
+8495,2019,12,20,23,30,-7.2,1.21,0.017,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.293,74.72,160.75,0.9,0.76,798,0.3,208,1.5
+8496,2019,12,21,0,30,-7.6,1.2,0.016,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.294,77.51,162.48,0.9,0.76,798,0.3,207,1.6
+8497,2019,12,21,1,30,-8.1,1.2,0.016,0.63,0,0,0,0,7,-10.7,0,0,0,0,0.295,81.25,156.32,0.9,0.76,798,0.3,203,1.6
+8498,2019,12,21,2,30,-8.5,1.19,0.017,0.63,0,0,0,0,4,-10.7,0,0,0,0,0.295,84.42,146.43,0.91,0.76,798,0.3,198,1.6
+8499,2019,12,21,3,30,-8.8,1.17,0.017,0.63,0,0,0,0,4,-10.6,0,0,0,0,0.294,87.01,135.36,0.91,0.76,798,0.3,196,1.6
+8500,2019,12,21,4,30,-8.9,1.17,0.019,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.293,87.86,123.98,0.92,0.76,798,0.3,196,1.6
+8501,2019,12,21,5,30,-9,1.17,0.019,0.63,0,0,0,0,7,-10.6,0,0,0,0,0.293,88.25,112.7,0.92,0.76,798,0.3,197,1.6
+8502,2019,12,21,6,30,-9.3,1.19,0.018,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.292,89.13,101.79,0.91,0.76,798,0.3,199,1.6
+8503,2019,12,21,7,30,-8.4,1.21,0.017,0.63,4,48,3,2,7,-11,1,0,29,1,0.291,81.45,91.5,0.9,0.76,798,0.3,202,1.6
+8504,2019,12,21,8,30,-5.6,1.22,0.015,0.63,32,698,128,7,4,-10.7,74,2,100,74,0.29,67.47,82.09,0.9,0.76,798,0.3,206,2.3
+8505,2019,12,21,9,30,-2.3,1.23,0.015,0.63,44,884,285,2,4,-9.7,173,175,29,221,0.289,57.05,74.21,0.9,0.76,798,0.3,212,3.3
+8506,2019,12,21,10,30,0.3,1.24,0.014,0.63,52,962,409,0,4,-9,204,408,0,355,0.288,49.54,68.22,0.9,0.76,798,0.3,216,3.9
+8507,2019,12,21,11,30,2.2,1.25,0.014,0.63,56,995,481,0,0,-9,85,911,0,474,0.288,43.21,64.7,0.9,0.76,797,0.3,217,4.4
+8508,2019,12,21,12,30,3.2,1.26,0.014,0.63,56,1000,493,0,0,-9.2,56,1000,14,493,0.288,39.8,64.08,0.9,0.76,796,0.3,218,4.4
+8509,2019,12,21,13,30,3.6,1.27,0.014,0.63,53,980,445,0,0,-9.3,69,933,7,442,0.287,38.42,66.45,0.9,0.76,796,0.3,217,4.1
+8510,2019,12,21,14,30,2.8,1.29,0.014,0.63,48,924,341,2,7,-9.1,150,472,29,300,0.286,41.25,71.5,0.9,0.76,795,0.3,217,3.1
+8511,2019,12,21,15,30,0.2,1.29,0.016,0.63,39,786,193,7,7,-7.6,123,56,100,134,0.285,55.94,78.69,0.91,0.76,796,0.4,213,1.8
+8512,2019,12,21,16,30,-2.4,1.28,0.019,0.63,19,381,37,7,6,-8.3,24,3,100,24,0.284,64.02,87.35,0.92,0.76,796,0.4,207,1.4
+8513,2019,12,21,17,30,-3.5,1.27,0.02,0.63,0,0,0,0,6,-9.5,0,0,0,0,0.283,63.33,97.49,0.92,0.7,796,0.3,202,1.5
+8514,2019,12,21,18,30,-4,1.26,0.02,0.63,0,0,0,0,7,-9.7,0,0,0,0,0.281,64.68,108.18,0.92,0.7,796,0.3,198,1.5
+8515,2019,12,21,19,30,-4.4,1.27,0.02,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.279,65.51,119.35,0.92,0.7,796,0.3,196,1.6
+8516,2019,12,21,20,30,-4.6,1.27,0.02,0.63,0,0,0,0,6,-10,0,0,0,0,0.279,65.85,130.72,0.92,0.7,796,0.3,198,1.8
+8517,2019,12,21,21,30,-4.8,1.28,0.02,0.63,0,0,0,0,7,-10.1,0,0,0,0,0.279,66.49,141.98,0.92,0.7,796,0.3,201,1.9
+8518,2019,12,21,22,30,-5,1.28,0.02,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.279,66.59,152.53,0.92,0.7,795,0.3,203,2
+8519,2019,12,21,23,30,-5.3,1.28,0.02,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.278,66.99,160.7,0.92,0.7,795,0.3,203,2.2
+8520,2019,12,22,0,30,-5.4,1.28,0.02,0.63,0,0,0,0,6,-10.7,0,0,0,0,0.277,66.27,162.51,0.92,0.7,795,0.3,202,2.3
+8521,2019,12,22,1,30,-5.2,1.27,0.021,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.276,64.86,156.39,0.92,0.7,795,0.3,199,2.3
+8522,2019,12,22,2,30,-5,1.27,0.02,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.276,63.93,146.52,0.92,0.7,795,0.3,194,2.1
+8523,2019,12,22,3,30,-4.9,1.27,0.02,0.63,0,0,0,0,6,-10.9,0,0,0,0,0.276,62.96,135.45,0.92,0.7,795,0.2,191,2
+8524,2019,12,22,4,30,-4.8,1.27,0.019,0.63,0,0,0,0,6,-11,0,0,0,0,0.276,61.99,124.08,0.92,0.7,795,0.2,189,1.9
+8525,2019,12,22,5,30,-4.7,1.27,0.019,0.63,0,0,0,0,6,-11.1,0,0,0,0,0.277,60.81,112.8,0.92,0.7,794,0.2,189,1.8
+8526,2019,12,22,6,30,-4.7,1.28,0.018,0.63,0,0,0,0,6,-11.3,0,0,0,0,0.278,59.71,101.87,0.92,0.7,794,0.2,190,1.8
+8527,2019,12,22,7,30,-4.2,1.29,0.018,0.63,4,48,3,2,9,-11.7,1,0,29,1,0.277,55.75,91.59,0.92,0.7,794,0.2,192,1.7
+8528,2019,12,22,8,30,-2.2,1.29,0.018,0.63,33,707,129,7,6,-11.2,34,0,100,34,0.275,50.18,82.17,0.92,0.7,794,0.2,194,1.6
+8529,2019,12,22,9,30,0.5,1.3,0.018,0.63,47,894,289,2,6,-9.3,103,11,29,106,0.273,47.93,74.27,0.92,0.7,794,0.2,202,2
+8530,2019,12,22,10,30,2.4,1.3,0.019,0.63,55,971,415,0,6,-9.9,127,2,0,128,0.27,39.86,68.26,0.92,0.7,794,0.2,218,2.5
+8531,2019,12,22,11,30,3.7,1.3,0.019,0.63,60,1003,488,0,6,-9.6,242,63,0,269,0.268,37.26,64.72,0.92,0.7,793,0.2,225,2.9
+8532,2019,12,22,12,30,4.4,1.3,0.019,0.63,61,996,497,0,7,-9.9,262,127,0,318,0.265,34.58,64.07,0.92,0.7,792,0.3,225,3.2
+8533,2019,12,22,13,30,4.1,1.31,0.02,0.63,58,972,447,0,7,-9.7,175,563,7,400,0.263,35.99,66.42,0.92,0.7,792,0.3,225,2.6
+8534,2019,12,22,14,30,2.7,1.31,0.02,0.63,51,917,343,1,7,-7.6,140,520,29,305,0.263,46.56,71.45,0.92,0.7,792,0.3,224,1.7
+8535,2019,12,22,15,30,0.8,1.31,0.02,0.63,40,789,196,7,7,-6.6,122,112,96,144,0.263,57.53,78.62,0.92,0.7,791,0.3,219,1.3
+8536,2019,12,22,16,30,-0.4,1.31,0.02,0.63,20,390,39,7,7,-8,24,4,100,24,0.264,56.35,87.28,0.92,0.7,791,0.3,213,1.3
+8537,2019,12,22,17,30,-0.9,1.31,0.02,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.265,54.75,97.4,0.92,0.65,791,0.3,208,1.3
+8538,2019,12,22,18,30,-0.9,1.31,0.02,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.267,53.91,108.09,0.92,0.65,791,0.3,200,1.3
+8539,2019,12,22,19,30,-1,1.31,0.021,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.268,53.26,119.25,0.92,0.65,790,0.3,193,1.4
+8540,2019,12,22,20,30,-1.1,1.3,0.022,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.269,52.65,130.63,0.93,0.65,790,0.3,191,1.5
+8541,2019,12,22,21,30,-1.3,1.3,0.022,0.63,0,0,0,0,7,-9.7,0,0,0,0,0.269,53,141.89,0.93,0.65,790,0.3,195,1.6
+8542,2019,12,22,22,30,-1.5,1.3,0.023,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.269,54.01,152.44,0.93,0.65,790,0.3,203,1.6
+8543,2019,12,22,23,30,-1.7,1.29,0.023,0.63,0,0,0,0,4,-9.4,0,0,0,0,0.268,55.82,160.65,0.93,0.65,790,0.3,209,1.7
+8544,2019,12,23,0,30,-1.9,1.29,0.023,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.268,58.84,162.52,0.93,0.65,790,0.3,209,1.7
+8545,2019,12,23,1,30,-2,1.28,0.024,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.268,62.15,156.46,0.93,0.65,790,0.3,205,1.8
+8546,2019,12,23,2,30,-2.1,1.28,0.024,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.269,64.65,146.61,0.93,0.65,790,0.4,200,1.9
+8547,2019,12,23,3,30,-2.2,1.28,0.024,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.271,65.74,135.55,0.93,0.65,790,0.4,196,1.9
+8548,2019,12,23,4,30,-2.2,1.28,0.024,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.273,65.17,124.17,0.93,0.65,790,0.4,193,1.9
+8549,2019,12,23,5,30,-2.3,1.29,0.023,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.276,64.35,112.89,0.93,0.65,790,0.4,192,1.8
+8550,2019,12,23,6,30,-2.5,1.29,0.023,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.278,63.62,101.96,0.93,0.65,790,0.4,192,1.8
+8551,2019,12,23,7,30,-2.2,1.3,0.022,0.63,3,42,2,2,7,-8.8,1,0,29,1,0.279,60.64,91.66,0.93,0.65,790,0.4,192,1.7
+8552,2019,12,23,8,30,-0.9,1.31,0.02,0.63,33,668,123,7,7,-8.5,73,12,100,75,0.28,56.2,82.23,0.93,0.65,790,0.4,194,1.7
+8553,2019,12,23,9,30,0.9,1.32,0.02,0.63,46,861,279,2,7,-7.5,138,30,29,146,0.281,53.32,74.32,0.93,0.65,790,0.4,201,2.1
+8554,2019,12,23,10,30,2.2,1.31,0.02,0.63,55,940,403,0,7,-8,189,22,0,197,0.283,46.87,68.29,0.93,0.65,790,0.4,212,2.5
+8555,2019,12,23,11,30,2.8,1.31,0.02,0.63,59,974,475,0,6,-7.9,159,3,0,160,0.285,45.19,64.73,0.93,0.65,789,0.4,219,2.6
+8556,2019,12,23,12,30,3,1.32,0.02,0.63,60,978,488,0,6,-7.5,201,13,0,207,0.286,45.98,64.06,0.93,0.65,788,0.4,222,2.6
+8557,2019,12,23,13,30,2.7,1.32,0.02,0.63,57,951,438,0,6,-7.1,141,3,0,142,0.287,48.5,66.38,0.93,0.65,788,0.5,222,2.1
+8558,2019,12,23,14,30,1.7,1.32,0.02,0.63,51,892,336,0,6,-5.9,96,2,0,97,0.288,57.22,71.39,0.93,0.65,788,0.5,219,1.4
+8559,2019,12,23,15,30,0.3,1.33,0.021,0.63,40,762,191,7,6,-5.4,76,6,100,77,0.289,65.42,78.54,0.93,0.65,788,0.5,215,1.1
+8560,2019,12,23,16,30,-0.7,1.33,0.021,0.63,20,364,38,7,7,-6.7,14,0,100,14,0.29,63.83,87.19,0.93,0.65,788,0.6,213,1.1
+8561,2019,12,23,17,30,-1.1,1.34,0.021,0.63,0,0,0,0,7,-7.6,0,0,0,0,0.291,61.17,97.31,0.93,0.65,788,0.6,211,1.1
+8562,2019,12,23,18,30,-1.3,1.36,0.02,0.63,0,0,0,0,6,-8,0,0,0,0,0.292,60.15,107.99,0.92,0.65,787,0.6,208,1.1
+8563,2019,12,23,19,30,-1.4,1.36,0.019,0.63,0,0,0,0,6,-8.3,0,0,0,0,0.294,59.45,119.15,0.92,0.65,787,0.6,206,1.1
+8564,2019,12,23,20,30,-1.7,1.36,0.02,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.295,59.97,130.52,0.92,0.65,787,0.6,210,1.2
+8565,2019,12,23,21,30,-2.1,1.36,0.02,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.296,60.12,141.79,0.92,0.65,786,0.6,215,1.2
+8566,2019,12,23,22,30,-2.5,1.36,0.019,0.63,0,0,0,0,7,-9.2,0,0,0,0,0.297,60.09,152.35,0.92,0.65,786,0.6,216,1.3
+8567,2019,12,23,23,30,-2.6,1.35,0.02,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.297,59.2,160.59,0.93,0.65,786,0.6,215,1.3
+8568,2019,12,24,0,30,-2.3,1.32,0.021,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.298,58.62,162.53,0.93,0.65,785,0.6,210,1.2
+8569,2019,12,24,1,30,-2.3,1.35,0.02,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.302,58.58,156.52,0.92,0.65,785,0.7,201,1.3
+8570,2019,12,24,2,30,-2.8,1.38,0.018,0.63,0,0,0,0,4,-9.6,0,0,0,0,0.305,59.28,146.69,0.91,0.65,785,0.7,197,1.5
+8571,2019,12,24,3,30,-3.4,1.37,0.017,0.63,0,0,0,0,7,-10,0,0,0,0,0.307,60.45,135.63,0.92,0.65,785,0.7,202,1.6
+8572,2019,12,24,4,30,-3.7,1.31,0.021,0.63,0,0,0,0,7,-9.6,0,0,0,0,0.308,63.38,124.26,0.94,0.65,785,0.8,210,1.8
+8573,2019,12,24,5,30,-3.7,1.24,0.027,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.311,68.61,112.97,0.95,0.65,785,0.9,213,1.9
+8574,2019,12,24,6,30,-3.6,1.21,0.031,0.63,0,0,0,0,7,-7,0,0,0,0,0.313,77.07,102.04,0.95,0.65,785,0.9,210,2
+8575,2019,12,24,7,30,-2.9,1.21,0.03,0.63,3,31,2,2,4,-5.8,1,0,29,1,0.314,80.43,91.74,0.95,0.65,785,0.9,205,2.2
+8576,2019,12,24,8,30,-0.9,1.21,0.029,0.63,34,600,114,7,4,-4.5,42,1,100,42,0.316,76.37,82.29,0.95,0.65,785,0.9,202,3.1
+8577,2019,12,24,9,30,1.4,1.24,0.026,0.63,48,812,267,2,4,-3.3,145,16,29,149,0.317,70.99,74.37,0.94,0.65,785,0.8,205,4
+8578,2019,12,24,10,30,3.3,1.25,0.023,0.63,57,899,389,0,4,-2,153,291,0,261,0.317,68.47,68.32,0.94,0.65,784,0.8,209,4.6
+8579,2019,12,24,11,30,4.2,1.21,0.026,0.63,63,933,461,0,4,-1.1,197,478,11,401,0.316,68.26,64.73,0.94,0.65,783,0.8,211,4.8
+8580,2019,12,24,12,30,4.2,1.2,0.026,0.63,63,939,474,0,0,-1.1,113,792,11,460,0.314,68.25,64.04,0.95,0.65,782,0.8,211,4.4
+8581,2019,12,24,13,30,4,1.2,0.026,0.63,60,916,428,0,4,-1.2,202,400,7,363,0.312,69.08,66.33,0.95,0.65,781,0.9,210,3.4
+8582,2019,12,24,14,30,3,1.21,0.026,0.63,53,858,328,1,4,-1,175,306,11,273,0.312,74.89,71.32,0.95,0.65,780,0.8,205,1.9
+8583,2019,12,24,15,30,1.8,1.22,0.025,0.63,41,730,187,7,4,-0.8,118,22,100,122,0.313,83.13,78.46,0.94,0.65,780,0.8,183,0.7
+8584,2019,12,24,16,30,0.8,1.24,0.024,0.63,20,340,37,7,7,-1.6,23,2,100,23,0.315,84.26,87.11,0.95,0.65,779,0.9,144,0.7
+8585,2019,12,24,17,30,0.1,1.23,0.026,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.317,86.91,97.21,0.95,0.68,779,0.9,130,0.9
+8586,2019,12,24,18,30,-0.4,1.21,0.03,0.63,0,0,0,0,6,-1.9,0,0,0,0,0.319,89.46,107.89,0.96,0.68,779,0.9,150,1.1
+8587,2019,12,24,19,30,-0.8,1.2,0.032,0.63,0,0,0,0,6,-1.9,0,0,0,0,0.319,92.01,119.05,0.96,0.68,778,0.9,174,1.2
+8588,2019,12,24,20,30,-1,1.19,0.038,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.32,94.15,130.42,0.96,0.68,778,1,189,1.2
+8589,2019,12,24,21,30,-1.4,1.18,0.039,0.63,0,0,0,0,6,-1.7,0,0,0,0,0.32,97.6,141.69,0.97,0.68,778,1,195,1.3
+8590,2019,12,24,22,30,-1.7,1.17,0.037,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.322,99,152.26,0.97,0.68,777,0.9,195,1.7
+8591,2019,12,24,23,30,-1.9,1.19,0.041,0.63,0,0,0,0,7,-1.9,0,0,0,0,0.325,99.66,160.52,0.97,0.68,777,0.9,198,2.2
+8592,2019,12,25,0,30,-2.1,1.21,0.041,0.63,0,0,0,0,7,-2.1,0,0,0,0,0.328,99.85,162.53,0.96,0.68,777,0.9,204,2.5
+8593,2019,12,25,1,30,-2.4,1.22,0.041,0.63,0,0,0,0,7,-2.4,0,0,0,0,0.328,100,156.58,0.97,0.68,777,0.8,211,2.6
+8594,2019,12,25,2,30,-2.7,1.23,0.046,0.63,0,0,0,0,4,-2.7,0,0,0,0,0.328,100,146.76,0.97,0.68,778,0.8,218,2.5
+8595,2019,12,25,3,30,-3.1,1.23,0.052,0.63,0,0,0,0,4,-3.1,0,0,0,0,0.329,100,135.71,0.97,0.68,778,0.8,222,2.4
+8596,2019,12,25,4,30,-3.3,1.23,0.052,0.63,0,0,0,0,7,-3.3,0,0,0,0,0.33,100,124.34,0.97,0.68,778,0.8,226,2.3
+8597,2019,12,25,5,30,-3.5,1.23,0.054,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.331,100,113.05,0.97,0.68,778,0.8,227,2
+8598,2019,12,25,6,30,-3.6,1.24,0.055,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.332,99.78,102.11,0.97,0.68,779,0.8,224,1.7
+8599,2019,12,25,7,30,-3.3,1.24,0.055,0.63,0,0,0,2,8,-3.7,0,0,29,0,0.334,96.85,91.8,0.97,0.68,779,0.7,222,1.9
+8600,2019,12,25,8,30,-2.3,1.22,0.059,0.63,40,525,110,7,7,-3.5,36,0,100,36,0.335,91.25,82.35,0.97,0.68,779,0.7,222,2.7
+8601,2019,12,25,9,30,-1.3,1.19,0.061,0.63,61,748,262,2,7,-2.9,135,19,29,140,0.335,88.87,74.41,0.97,0.68,780,0.7,223,3.5
+8602,2019,12,25,10,30,-0.6,1.18,0.059,0.63,73,847,386,0,7,-2.7,241,83,0,272,0.335,85.75,68.34,0.97,0.68,780,0.7,225,4.3
+8603,2019,12,25,11,30,-0.4,1.18,0.058,0.63,79,891,459,0,6,-2.8,164,5,0,166,0.336,84.05,64.72,0.97,0.68,780,0.7,227,4.9
+8604,2019,12,25,12,30,-0.4,1.19,0.054,0.63,78,904,474,0,7,-3,198,14,0,204,0.338,82.29,64,0.97,0.68,780,0.7,227,5.2
+8605,2019,12,25,13,30,-0.5,1.19,0.051,0.63,73,885,429,0,6,-3.4,184,18,0,191,0.341,80.97,66.28,0.97,0.68,781,0.7,226,4.8
+8606,2019,12,25,14,30,-0.7,1.2,0.051,0.63,64,825,329,0,7,-3.6,133,10,0,136,0.345,81,71.25,0.97,0.68,781,0.7,222,3.8
+8607,2019,12,25,15,30,-1.8,1.22,0.048,0.63,48,692,187,7,4,-3.6,73,1,100,73,0.35,87.53,78.38,0.96,0.68,782,0.6,215,2.3
+8608,2019,12,25,16,30,-3.6,1.24,0.044,0.63,22,303,38,7,7,-4.5,15,0,100,15,0.353,93.53,87.01,0.96,0.68,782,0.6,207,1.5
+8609,2019,12,25,17,30,-4.7,1.24,0.046,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.353,93.99,97.11,0.96,0.77,783,0.6,203,1.6
+8610,2019,12,25,18,30,-5.2,1.22,0.048,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.351,94.65,107.78,0.96,0.77,783,0.6,202,1.8
+8611,2019,12,25,19,30,-5.4,1.2,0.047,0.63,0,0,0,0,4,-6.1,0,0,0,0,0.349,94.66,118.94,0.96,0.77,784,0.6,203,2
+8612,2019,12,25,20,30,-5.7,1.19,0.051,0.63,0,0,0,0,4,-6.3,0,0,0,0,0.35,95.48,130.31,0.97,0.77,784,0.6,205,2
+8613,2019,12,25,21,30,-5.9,1.19,0.052,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.352,95.48,141.58,0.97,0.77,784,0.6,204,1.8
+8614,2019,12,25,22,30,-5.9,1.18,0.051,0.63,0,0,0,0,7,-6.6,0,0,0,0,0.354,94.53,152.16,0.97,0.77,784,0.6,198,1.6
+8615,2019,12,25,23,30,-5.7,1.17,0.056,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.356,92.87,160.45,0.97,0.77,784,0.6,189,1.6
+8616,2019,12,26,0,30,-5.6,1.16,0.06,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.359,92.25,162.52,0.97,0.77,784,0.6,184,1.6
+8617,2019,12,26,1,30,-5.6,1.15,0.06,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.36,92.25,156.63,0.97,0.77,784,0.6,185,1.5
+8618,2019,12,26,2,30,-5.7,1.15,0.062,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.361,92.87,146.83,0.97,0.77,785,0.6,192,1.6
+8619,2019,12,26,3,30,-5.9,1.16,0.063,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.363,94.05,135.79,0.97,0.77,785,0.6,200,1.7
+8620,2019,12,26,4,30,-6.3,1.19,0.059,0.63,0,0,0,0,7,-6.8,0,0,0,0,0.363,96.3,124.42,0.97,0.77,786,0.6,207,1.7
+8621,2019,12,26,5,30,-7.1,1.23,0.053,0.63,0,0,0,0,7,-7.1,0,0,0,0,0.363,100,113.12,0.97,0.77,786,0.6,211,1.8
+8622,2019,12,26,6,30,-7.8,1.27,0.047,0.63,0,0,0,0,4,-7.8,0,0,0,0,0.363,100,102.18,0.96,0.77,787,0.6,211,1.9
+8623,2019,12,26,7,30,-7.8,1.29,0.043,0.63,0,0,0,2,4,-8,0,0,29,0,0.362,98.81,91.86,0.96,0.77,787,0.5,209,2.1
+8624,2019,12,26,8,30,-6,1.3,0.044,0.63,37,579,114,7,4,-7.8,45,0,100,45,0.362,87.04,82.39,0.96,0.77,788,0.5,209,2.6
+8625,2019,12,26,9,30,-3.7,1.31,0.044,0.63,56,798,270,6,4,-6.3,125,36,79,135,0.362,82.14,74.44,0.96,0.77,788,0.5,211,3.2
+8626,2019,12,26,10,30,-2.4,1.33,0.038,0.63,65,896,396,0,4,-5.9,241,206,0,317,0.362,77.18,68.35,0.96,0.77,788,0.5,213,3.7
+8627,2019,12,26,11,30,-1.8,1.34,0.035,0.63,69,939,470,0,4,-6.1,260,274,0,377,0.362,72.54,64.71,0.96,0.77,788,0.5,214,3.9
+8628,2019,12,26,12,30,-1.6,1.35,0.033,0.63,69,955,488,0,4,-6.3,286,232,7,388,0.362,70.1,63.96,0.96,0.77,788,0.5,214,3.8
+8629,2019,12,26,13,30,-1.6,1.35,0.029,0.63,64,943,444,1,4,-6.5,171,579,29,404,0.363,69.32,66.22,0.95,0.77,788,0.4,212,3.2
+8630,2019,12,26,14,30,-1.9,1.36,0.027,0.63,56,890,343,0,0,-6.5,107,655,0,318,0.364,70.88,71.17,0.95,0.77,788,0.4,209,2.4
+8631,2019,12,26,15,30,-3.1,1.36,0.025,0.63,42,767,198,1,0,-6.5,50,681,11,188,0.364,77.25,78.28,0.95,0.77,788,0.4,209,1.5
+8632,2019,12,26,16,30,-4.7,1.36,0.023,0.63,21,385,42,6,4,-7.8,20,99,79,25,0.365,79.01,86.91,0.95,0.77,788,0.4,210,0.9
+8633,2019,12,26,17,30,-5.4,1.35,0.024,0.63,0,0,0,0,0,-8.7,0,0,0,0,0.366,77.68,97,0.95,0.8,789,0.4,213,0.7
+8634,2019,12,26,18,30,-5.7,1.33,0.024,0.63,0,0,0,0,4,-8.8,0,0,0,0,0.368,78.92,107.67,0.95,0.8,789,0.4,231,0.4
+8635,2019,12,26,19,30,-6.1,1.33,0.024,0.63,0,0,0,0,4,-8.7,0,0,0,0,0.371,81.8,118.82,0.94,0.8,789,0.4,133,0.2
+8636,2019,12,26,20,30,-6.7,1.33,0.024,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.375,85.12,130.2,0.94,0.8,789,0.4,42,0.3
+8637,2019,12,26,21,30,-7.4,1.32,0.023,0.63,0,0,0,0,0,-9,0,0,0,0,0.379,88.64,141.47,0.94,0.8,789,0.4,71,0.5
+8638,2019,12,26,22,30,-8.1,1.32,0.023,0.63,0,0,0,0,0,-9.2,0,0,0,0,0.382,91.83,152.05,0.94,0.8,789,0.4,76,0.8
+8639,2019,12,26,23,30,-8.7,1.31,0.022,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.385,93.83,160.37,0.94,0.8,788,0.4,75,0.9
+8640,2019,12,27,0,30,-9.3,1.31,0.022,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.387,95.8,162.51,0.94,0.8,788,0.4,73,1.1
+8641,2019,12,27,1,30,-9.9,1.33,0.02,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.387,96.02,156.67,0.93,0.8,787,0.4,69,1.3
+8642,2019,12,27,2,30,-10.5,1.35,0.019,0.63,0,0,0,0,0,-11.1,0,0,0,0,0.387,95.61,146.9,0.93,0.8,787,0.4,65,1.4
+8643,2019,12,27,3,30,-10.7,1.35,0.02,0.63,0,0,0,0,8,-11.6,0,0,0,0,0.386,93.07,135.86,0.94,0.8,787,0.5,62,1.5
+8644,2019,12,27,4,30,-10.5,1.32,0.022,0.63,0,0,0,0,8,-12.1,0,0,0,0,0.385,88.16,124.49,0.94,0.8,786,0.5,58,1.7
+8645,2019,12,27,5,30,-10.1,1.29,0.025,0.63,0,0,0,0,8,-12.4,0,0,0,0,0.385,82.93,113.19,0.95,0.8,786,0.5,53,1.9
+8646,2019,12,27,6,30,-9.7,1.25,0.027,0.63,0,0,0,0,8,-12.8,0,0,0,0,0.384,78.12,102.25,0.95,0.8,785,0.6,50,2.1
+8647,2019,12,27,7,30,-9,1.2,0.03,0.63,0,0,0,2,4,-13,0,0,29,0,0.383,72.94,91.92,0.95,0.8,785,0.6,47,2.3
+8648,2019,12,27,8,30,-7.8,1.15,0.033,0.63,35,593,113,7,8,-12.5,44,1,100,44,0.384,68.92,82.44,0.96,0.8,785,0.6,41,2.8
+8649,2019,12,27,9,30,-6.4,1.14,0.034,0.63,53,807,269,0,4,-11.4,137,350,4,231,0.385,67.72,74.46,0.95,0.8,785,0.6,29,3.6
+8650,2019,12,27,10,30,-4.7,1.2,0.029,0.63,60,906,394,2,7,-10.4,85,30,25,96,0.386,64.36,68.35,0.95,0.8,783,0.6,21,4.5
+8651,2019,12,27,11,30,-2.8,1.3,0.022,0.63,63,947,468,0,7,-9.3,269,150,4,333,0.386,60.92,64.69,0.95,0.8,782,0.6,20,4.4
+8652,2019,12,27,12,30,-2.1,1.21,0.026,0.63,68,944,483,0,7,-8.5,235,24,0,246,0.383,61.5,63.92,0.96,0.8,781,0.6,20,3.1
+8653,2019,12,27,13,30,-2.4,1.11,0.034,0.63,68,910,436,0,7,-7.7,248,211,7,333,0.38,66.77,66.15,0.96,0.8,781,0.7,15,2.4
+8654,2019,12,27,14,30,-3.1,1.09,0.036,0.63,60,846,334,0,4,-7.3,193,198,7,257,0.379,72.75,71.08,0.96,0.8,781,0.7,10,2.6
+8655,2019,12,27,15,30,-4.1,1.12,0.035,0.63,45,718,192,7,7,-7.4,109,14,100,112,0.377,77.58,78.18,0.96,0.8,781,0.7,10,2.6
+8656,2019,12,27,16,30,-5.8,1.18,0.032,0.63,22,342,41,7,8,-8.2,22,1,100,22,0.374,82.98,86.81,0.96,0.8,781,0.7,10,2.4
+8657,2019,12,27,17,30,-7.3,1.22,0.031,0.63,0,0,0,0,4,-9.7,0,0,0,0,0.372,82.74,96.89,0.96,0.8,781,0.6,7,2.7
+8658,2019,12,27,18,30,-8.1,1.24,0.032,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.371,80.71,107.56,0.96,0.8,780,0.6,182,3.3
+8659,2019,12,27,19,30,-8.7,1.25,0.032,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.372,79.91,118.71,0.96,0.8,780,0.6,356,3.6
+8660,2019,12,27,20,30,-9.3,1.25,0.033,0.63,0,0,0,0,7,-12.1,0,0,0,0,0.373,79.93,130.08,0.96,0.8,780,0.6,352,3.4
+8661,2019,12,27,21,30,-9.7,1.23,0.033,0.63,0,0,0,0,9,-12.6,0,0,0,0,0.372,79.65,141.35,0.96,0.8,780,0.6,348,3.1
+8662,2019,12,27,22,30,-9.6,1.19,0.032,0.63,0,0,0,0,6,-12.5,0,0,0,0,0.369,79.34,151.94,0.96,0.8,781,0.5,343,3
+8663,2019,12,27,23,30,-9.5,1.16,0.033,0.63,0,0,0,0,6,-12.2,0,0,0,0,0.366,80.45,160.28,0.96,0.8,781,0.5,338,3.3
+8664,2019,12,28,0,30,-9.5,1.13,0.032,0.63,0,0,0,0,7,-12.2,0,0,0,0,0.362,80.4,162.48,0.95,0.8,781,0.5,336,3.5
+8665,2019,12,28,1,30,-9.8,1.11,0.029,0.63,0,0,0,0,7,-12.9,0,0,0,0,0.357,78.28,156.7,0.95,0.8,781,0.5,337,3.5
+8666,2019,12,28,2,30,-10.2,1.11,0.027,0.63,0,0,0,0,7,-13.9,0,0,0,0,0.352,74.51,146.96,0.95,0.8,781,0.4,340,3.6
+8667,2019,12,28,3,30,-10.6,1.09,0.026,0.63,0,0,0,0,7,-14.6,0,0,0,0,0.35,72.26,135.93,0.94,0.8,781,0.4,344,3.6
+8668,2019,12,28,4,30,-10.9,1.06,0.027,0.63,0,0,0,0,7,-15,0,0,0,0,0.35,71.77,124.56,0.94,0.8,781,0.4,349,3.7
+8669,2019,12,28,5,30,-11.1,1.02,0.033,0.63,0,0,0,0,4,-15.1,0,0,0,0,0.35,72.1,113.26,0.95,0.8,782,0.4,353,3.7
+8670,2019,12,28,6,30,-11.2,0.98,0.044,0.63,0,0,0,0,4,-15.1,0,0,0,0,0.351,73.03,102.31,0.96,0.8,782,0.4,356,3.6
+8671,2019,12,28,7,30,-10.9,0.96,0.055,0.63,0,0,0,2,8,-14.8,0,0,29,0,0.352,72.84,91.97,0.96,0.8,782,0.4,358,3.8
+8672,2019,12,28,8,30,-9.9,0.97,0.069,0.63,44,505,110,7,4,-14,63,1,100,63,0.354,71.8,82.47,0.97,0.8,783,0.4,182,4.5
+8673,2019,12,28,9,30,-8.5,1,0.077,0.63,69,739,267,2,4,-12.7,161,58,29,177,0.355,71.96,74.48,0.97,0.8,783,0.4,11,5.1
+8674,2019,12,28,10,30,-7.4,1,0.072,0.63,81,850,395,1,4,-11.8,232,221,14,314,0.355,70.7,68.35,0.97,0.8,783,0.4,17,5.2
+8675,2019,12,28,11,30,-6.7,1.01,0.066,0.63,85,904,472,1,4,-11.4,230,300,21,358,0.355,69.12,64.66,0.97,0.8,783,0.4,19,5.1
+8676,2019,12,28,12,30,-6.3,1.02,0.057,0.63,82,924,489,0,7,-11.3,286,290,0,414,0.357,67.5,63.86,0.97,0.8,782,0.4,18,4.9
+8677,2019,12,28,13,30,-6.3,1.02,0.051,0.63,77,908,445,0,4,-11.4,265,300,0,387,0.359,66.91,66.07,0.96,0.8,782,0.4,17,4.7
+8678,2019,12,28,14,30,-6.6,1.01,0.049,0.63,66,851,343,0,4,-11.5,226,178,0,284,0.361,68.37,70.99,0.96,0.8,783,0.4,17,4.5
+8679,2019,12,28,15,30,-7.5,1.02,0.046,0.63,49,721,198,7,4,-11.6,117,5,100,118,0.364,72.63,78.08,0.96,0.8,783,0.4,16,3.8
+8680,2019,12,28,16,30,-8.8,1.03,0.042,0.63,24,365,45,7,4,-12.2,22,0,100,22,0.367,76.61,86.7,0.96,0.8,784,0.4,12,3
+8681,2019,12,28,17,30,-9.9,1.05,0.039,0.63,0,0,0,0,7,-13,0,0,0,0,0.37,78.35,96.77,0.96,0.8,784,0.4,6,2.6
+8682,2019,12,28,18,30,-10.5,1.08,0.036,0.63,0,0,0,0,7,-13.2,0,0,0,0,0.373,80.65,107.44,0.95,0.8,785,0.4,181,2.5
+8683,2019,12,28,19,30,-11,1.1,0.034,0.63,0,0,0,0,7,-13.4,0,0,0,0,0.376,82.47,118.59,0.95,0.8,785,0.4,359,2.6
+8684,2019,12,28,20,30,-11.1,1.11,0.032,0.63,0,0,0,0,7,-13.5,0,0,0,0,0.378,82.28,129.96,0.95,0.8,785,0.4,183,2.6
+8685,2019,12,28,21,30,-11.2,1.12,0.031,0.63,0,0,0,0,7,-13.5,0,0,0,0,0.379,83.04,141.23,0.95,0.8,785,0.4,8,2.5
+8686,2019,12,28,22,30,-11.3,1.14,0.029,0.63,0,0,0,0,0,-13.6,0,0,0,0,0.379,83.2,151.82,0.95,0.8,786,0.3,9,2.3
+8687,2019,12,28,23,30,-11.5,1.16,0.029,0.63,0,0,0,0,4,-13.8,0,0,0,0,0.379,82.99,160.18,0.95,0.8,786,0.3,5,2.1
+8688,2019,12,29,0,30,-11.8,1.18,0.029,0.63,0,0,0,0,4,-14,0,0,0,0,0.379,83.54,162.45,0.95,0.8,786,0.3,179,1.9
+8689,2019,12,29,1,30,-12.3,1.19,0.028,0.63,0,0,0,0,4,-14.2,0,0,0,0,0.38,85.66,156.73,0.95,0.8,786,0.3,352,1.7
+8690,2019,12,29,2,30,-12.9,1.22,0.027,0.63,0,0,0,0,4,-14.6,0,0,0,0,0.379,87.11,147.01,0.94,0.8,786,0.3,345,1.6
+8691,2019,12,29,3,30,-13.6,1.25,0.025,0.63,0,0,0,0,4,-15,0,0,0,0,0.375,89.33,135.99,0.94,0.8,786,0.3,343,1.5
+8692,2019,12,29,4,30,-14.3,1.26,0.025,0.63,0,0,0,0,4,-15.5,0,0,0,0,0.37,90.88,124.62,0.94,0.8,786,0.3,345,1.5
+8693,2019,12,29,5,30,-14.8,1.27,0.024,0.63,0,0,0,0,4,-16,0,0,0,0,0.364,90.57,113.32,0.94,0.8,787,0.3,348,1.4
+8694,2019,12,29,6,30,-15,1.28,0.022,0.63,0,0,0,0,4,-16.4,0,0,0,0,0.36,88.79,102.36,0.93,0.8,787,0.3,350,1.3
+8695,2019,12,29,7,30,-14.6,1.3,0.02,0.63,0,0,0,2,4,-16.7,0,0,29,0,0.357,83.95,92.01,0.93,0.8,787,0.3,346,1.3
+8696,2019,12,29,8,30,-12.7,1.31,0.019,0.63,32,681,121,7,4,-16.9,61,0,100,61,0.356,71,82.5,0.93,0.8,788,0.3,335,1.6
+8697,2019,12,29,9,30,-10,1.32,0.017,0.63,46,888,283,2,4,-16,155,201,36,209,0.357,61.69,74.49,0.92,0.8,788,0.2,322,1.8
+8698,2019,12,29,10,30,-8.3,1.31,0.016,0.63,54,972,413,0,0,-15.7,59,955,0,411,0.358,55.15,68.34,0.92,0.8,788,0.2,306,2
+8699,2019,12,29,11,30,-7.7,1.3,0.015,0.63,57,1008,489,0,0,-16,57,1008,0,489,0.358,51.27,64.62,0.92,0.8,788,0.2,293,2.1
+8700,2019,12,29,12,30,-7.4,1.32,0.014,0.63,57,1017,506,0,0,-16.1,57,1017,4,506,0.355,49.71,63.8,0.91,0.8,787,0.2,287,2.1
+8701,2019,12,29,13,30,-7.2,1.33,0.012,0.63,52,1002,460,0,4,-16.3,216,446,0,397,0.351,48.28,65.99,0.9,0.8,787,0.2,284,1.8
+8702,2019,12,29,14,30,-7.4,1.36,0.011,0.63,46,953,358,0,4,-16.5,227,140,0,273,0.346,48.22,70.89,0.89,0.8,787,0.2,284,1.3
+8703,2019,12,29,15,30,-8.4,1.38,0.011,0.63,36,840,211,7,4,-15.8,120,2,100,120,0.342,55.17,77.97,0.89,0.8,787,0.2,280,0.8
+8704,2019,12,29,16,30,-9.8,1.36,0.011,0.63,20,517,51,7,4,-18,19,0,100,19,0.34,51.42,86.58,0.9,0.8,787,0.2,235,0.4
+8705,2019,12,29,17,30,-10.9,1.33,0.013,0.63,0,0,0,0,4,-18.1,0,0,0,0,0.339,55.42,96.65,0.91,0.8,788,0.3,182,0.3
+8706,2019,12,29,18,30,-11.6,1.31,0.014,0.63,0,0,0,0,4,-18.4,0,0,0,0,0.338,57.22,107.31,0.91,0.8,788,0.3,168,0.4
+8707,2019,12,29,19,30,-12.1,1.3,0.014,0.63,0,0,0,0,4,-18.3,0,0,0,0,0.337,60.13,118.46,0.92,0.8,789,0.3,184,0.4
+8708,2019,12,29,20,30,-12.6,1.3,0.015,0.63,0,0,0,0,4,-18.1,0,0,0,0,0.336,63.46,129.83,0.92,0.8,789,0.3,215,0.4
+8709,2019,12,29,21,30,-13,1.32,0.015,0.63,0,0,0,0,4,-17.9,0,0,0,0,0.336,66.67,141.1,0.92,0.8,789,0.3,232,0.3
+8710,2019,12,29,22,30,-13.4,1.32,0.015,0.63,0,0,0,0,4,-17.8,0,0,0,0,0.336,69.28,151.7,0.92,0.8,789,0.3,216,0.2
+8711,2019,12,29,23,30,-13.6,1.32,0.016,0.63,0,0,0,0,4,-17.9,0,0,0,0,0.336,70.23,160.08,0.92,0.8,789,0.3,176,0.2
+8712,2019,12,30,0,30,-14,1.31,0.016,0.63,0,0,0,0,4,-17.9,0,0,0,0,0.338,72.13,162.41,0.92,0.8,789,0.3,148,0.4
+8713,2019,12,30,1,30,-14.4,1.31,0.016,0.63,0,0,0,0,4,-18.1,0,0,0,0,0.34,73.78,156.75,0.92,0.8,790,0.3,138,0.6
+8714,2019,12,30,2,30,-14.7,1.32,0.016,0.63,0,0,0,0,4,-18.2,0,0,0,0,0.341,74.51,147.06,0.92,0.8,790,0.3,138,0.8
+8715,2019,12,30,3,30,-15,1.33,0.015,0.63,0,0,0,0,4,-18.5,0,0,0,0,0.341,74.91,136.05,0.92,0.8,790,0.3,143,0.9
+8716,2019,12,30,4,30,-15.2,1.34,0.015,0.63,0,0,0,0,4,-18.6,0,0,0,0,0.34,74.97,124.68,0.92,0.8,790,0.3,148,0.9
+8717,2019,12,30,5,30,-15.4,1.34,0.014,0.63,0,0,0,0,4,-18.8,0,0,0,0,0.338,75.34,113.37,0.91,0.8,791,0.3,153,0.9
+8718,2019,12,30,6,30,-15.5,1.35,0.014,0.63,0,0,0,0,4,-18.9,0,0,0,0,0.337,75.03,102.41,0.91,0.8,791,0.3,157,0.8
+8719,2019,12,30,7,30,-15,1.35,0.014,0.63,0,0,0,2,4,-19.1,0,0,25,0,0.337,71.11,92.05,0.92,0.8,791,0.3,162,0.9
+8720,2019,12,30,8,30,-12.8,1.35,0.014,0.63,29,688,119,7,4,-18.9,63,1,100,63,0.338,60.12,82.52,0.92,0.8,792,0.3,177,1
+8721,2019,12,30,9,30,-9.6,1.36,0.013,0.63,44,881,279,2,4,-17.2,172,75,36,192,0.339,54.01,74.5,0.91,0.8,792,0.3,206,1.3
+8722,2019,12,30,10,30,-7.1,1.38,0.013,0.63,51,961,406,0,4,-15.1,270,122,0,315,0.341,53.04,68.32,0.91,0.8,792,0.3,230,1.7
+8723,2019,12,30,11,30,-5.6,1.38,0.013,0.63,56,995,483,0,4,-13.6,322,117,7,372,0.342,53.2,64.58,0.92,0.8,792,0.3,242,1.8
+8724,2019,12,30,12,30,-4.8,1.38,0.014,0.63,57,1001,500,1,4,-12.8,319,163,14,391,0.344,53.48,63.73,0.92,0.8,791,0.3,245,1.8
+8725,2019,12,30,13,30,-4.7,1.4,0.014,0.63,54,983,456,0,4,-12.5,271,250,7,373,0.345,54.27,65.89,0.92,0.8,791,0.3,244,1.7
+8726,2019,12,30,14,30,-5.1,1.42,0.014,0.63,48,933,355,2,0,-12.5,110,672,21,331,0.346,56.1,70.78,0.91,0.8,791,0.3,241,1.3
+8727,2019,12,30,15,30,-6.3,1.46,0.013,0.63,37,824,210,7,4,-12,111,2,100,111,0.347,64.03,77.85,0.9,0.8,791,0.3,233,0.9
+8728,2019,12,30,16,30,-8.2,1.49,0.013,0.63,20,528,53,6,4,-13.5,24,39,93,26,0.348,65.58,86.46,0.9,0.8,791,0.2,217,0.7
+8729,2019,12,30,17,30,-9.7,1.5,0.012,0.63,0,0,0,0,4,-14.7,0,0,0,0,0.35,66.9,96.52,0.89,0.8,792,0.2,210,0.7
+8730,2019,12,30,18,30,-10.8,1.5,0.012,0.63,0,0,0,0,0,-15.1,0,0,0,0,0.352,70.35,107.18,0.89,0.8,792,0.2,222,0.6
+8731,2019,12,30,19,30,-11.8,1.49,0.012,0.63,0,0,0,0,7,-15.4,0,0,0,0,0.355,74.48,118.33,0.89,0.8,793,0.2,236,0.6
+8732,2019,12,30,20,30,-12.3,1.49,0.012,0.63,0,0,0,0,0,-15.6,0,0,0,0,0.359,76.31,129.7,0.89,0.8,793,0.2,237,0.6
+8733,2019,12,30,21,30,-12.6,1.49,0.012,0.63,0,0,0,0,0,-15.7,0,0,0,0,0.361,77.45,140.97,0.88,0.8,793,0.2,232,0.6
+8734,2019,12,30,22,30,-12.9,1.49,0.012,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.362,78.82,151.57,0.88,0.8,793,0.2,225,0.5
+8735,2019,12,30,23,30,-13.2,1.5,0.012,0.63,0,0,0,0,0,-15.9,0,0,0,0,0.364,79.85,159.97,0.88,0.8,792,0.2,217,0.5
+8736,2019,12,31,0,30,-13.4,1.5,0.012,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.365,80.29,162.36,0.88,0.8,792,0.2,204,0.5
+8737,2019,12,31,1,30,-13.6,1.51,0.012,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.364,80.63,156.76,0.88,0.8,792,0.2,190,0.5
+8738,2019,12,31,2,30,-13.8,1.51,0.012,0.63,0,0,0,0,0,-16.4,0,0,0,0,0.36,80.89,147.1,0.88,0.8,792,0.2,184,0.5
+8739,2019,12,31,3,30,-14.2,1.51,0.012,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.356,81.79,136.1,0.88,0.8,792,0.2,190,0.6
+8740,2019,12,31,4,30,-14.6,1.5,0.011,0.63,0,0,0,0,0,-16.9,0,0,0,0,0.353,82.37,124.73,0.88,0.8,792,0.2,201,0.7
+8741,2019,12,31,5,30,-14.8,1.49,0.011,0.63,0,0,0,0,0,-17.2,0,0,0,0,0.353,82.02,113.42,0.89,0.8,792,0.2,213,0.9
+8742,2019,12,31,6,30,-14.9,1.48,0.011,0.63,0,0,0,0,0,-17.4,0,0,0,0,0.356,81.18,102.45,0.89,0.8,792,0.2,226,0.9
+8743,2019,12,31,7,30,-14.4,1.46,0.012,0.63,0,0,0,0,0,-17.5,0,0,0,0,0.356,77,92.08,0.9,0.8,792,0.2,231,1
+8744,2019,12,31,8,30,-12.5,1.46,0.012,0.63,29,709,121,1,0,-17.2,31,632,11,113,0.353,68.04,82.54,0.9,0.8,792,0.2,226,1.4
+8745,2019,12,31,9,30,-9.7,1.45,0.013,0.63,42,892,280,0,0,-15.2,42,892,0,280,0.35,64.39,74.5,0.9,0.8,792,0.3,227,2.2
+8746,2019,12,31,10,30,-7.5,1.48,0.012,0.63,49,964,406,0,0,-13.1,49,964,0,406,0.347,64.29,68.29,0.9,0.8,792,0.3,232,2.7
+8747,2019,12,31,11,30,-6.2,1.49,0.012,0.63,53,999,483,0,0,-12.6,53,999,0,483,0.343,60.56,64.53,0.9,0.8,791,0.3,233,3.1
+8748,2019,12,31,12,30,-5.3,1.5,0.011,0.63,53,997,495,0,7,-12.4,159,666,0,455,0.338,57.47,63.66,0.9,0.8,790,0.4,232,3.4
+8749,2019,12,31,13,30,-4.9,1.52,0.011,0.63,51,978,452,0,0,-12.2,51,978,0,452,0.334,56.7,65.8,0.9,0.8,790,0.4,231,3.5
+8750,2019,12,31,14,30,-5,1.52,0.011,0.63,46,928,353,0,0,-12,105,589,0,300,0.331,58.12,70.67,0.91,0.8,789,0.4,229,3.2
+8751,2019,12,31,15,30,-6.4,1.51,0.011,0.63,35,807,207,6,4,-11.7,107,158,82,141,0.329,66.02,77.73,0.91,0.8,789,0.5,223,2.3
+8752,2019,12,31,16,30,-8.4,1.51,0.01,0.63,19,500,51,7,4,-12.9,23,0,100,23,0.327,69.85,86.34,0.91,0.8,789,0.5,212,1.7
+8753,2019,12,31,17,30,-9.9,1.5,0.01,0.63,0,0,0,0,7,-14.1,0,0,0,0,0.324,71.41,96.39,0.91,0.8,789,0.6,206,1.7
+8754,2019,12,31,18,30,-10.8,1.48,0.01,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.321,72.28,107.05,0.92,0.8,789,0.7,209,1.7
+8755,2019,12,31,19,30,-10.8,1.43,0.013,0.63,0,0,0,0,7,-15.1,0,0,0,0,0.32,70.6,118.2,0.93,0.8,789,0.8,209,1.8
+8756,2019,12,31,20,30,-10.3,1.38,0.016,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.32,69.74,129.57,0.94,0.8,789,0.8,200,2.2
+8757,2019,12,31,21,30,-10.1,1.37,0.018,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.32,71.31,140.84,0.94,0.8,788,0.8,193,2.4
+8758,2019,12,31,22,30,-10.6,1.39,0.017,0.63,0,0,0,0,4,-14.4,0,0,0,0,0.319,73.9,151.44,0.93,0.8,788,0.8,195,2.4
+8759,2019,12,31,23,30,-11.2,1.4,0.015,0.63,0,0,0,0,4,-14.8,0,0,0,0,0.319,74.44,159.85,0.93,0.8,787,0.8,198,2.6
diff --git a/pvlib/data/test_read_goes4.csv b/pvlib/data/test_read_goes4.csv
new file mode 100644
index 0000000000..9522a8ef29
--- /dev/null
+++ b/pvlib/data/test_read_goes4.csv
@@ -0,0 +1,17523 @@
+Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed Units,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version
+NSRDB,401182,-,-,-,40.53,-108.54,-7,2168,-7,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,4.0.1
+Year,Month,Day,Hour,Minute,Temperature,Alpha,AOD,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed
+2023,1,1,0,0,-1.2000000000000002,1.2,0.025,0.63,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.278,100,162.09,0.96,0.65,780,1.1,196,3
+2023,1,1,0,30,-1.1,1.2,0.025,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.279,100,162.28,0.96,0.65,780,1.1,195,3.1
+2023,1,1,1,0,-1.1,1.18,0.026000000000000002,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.28,100,160.32,0.96,0.65,780,1.1,195,3.1
+2023,1,1,1,30,-1,1.18,0.026000000000000002,0.63,0,0,0,0,6,-1,0,0,0,0,0.281,100,156.77,0.96,0.65,779,1.1,192,3.2
+2023,1,1,2,0,-1,1.18,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.281,100,152.23,0.96,0.65,779,1.1,189,3.2
+2023,1,1,2,30,-0.9,1.18,0.027,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.28200000000000003,100,147.14000000000001,0.96,0.65,779,1.1,187,3.3000000000000003
+2023,1,1,3,0,-0.9,1.2,0.025,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.28300000000000003,100,141.73,0.9500000000000001,0.65,779,1.1,186,3.3000000000000003
+2023,1,1,3,30,-0.9,1.2,0.025,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.28400000000000003,100,136.15,0.9500000000000001,0.65,779,1.1,184,3.4000000000000004
+2023,1,1,4,0,-1,1.2,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.28500000000000003,100,130.49,0.9500000000000001,0.65,779,1.1,183,3.5
+2023,1,1,4,30,-1,1.2,0.027,0.63,0,0,0,0,7,-1,0,0,0,0,0.28700000000000003,100,124.79,0.9500000000000001,0.65,779,1.1,183,3.6
+2023,1,1,5,0,-1,1.21,0.032,0.63,0,0,0,0,6,-1,0,0,0,0,0.289,100,119.11,0.9500000000000001,0.65,779,1.1,183,3.7
+2023,1,1,5,30,-0.9,1.21,0.032,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.29,100,113.47,0.9500000000000001,0.65,779,1.1,183,3.7
+2023,1,1,6,0,-0.9,1.22,0.031,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.292,100,107.93,0.9500000000000001,0.65,779,1,184,3.8000000000000003
+2023,1,1,6,30,-0.9,1.22,0.031,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.293,100,102.49000000000001,0.9500000000000001,0.65,780,1,183,3.7
+2023,1,1,7,0,-0.9,1.22,0.028,0.63,0,0,0,0,9,-0.9,0,0,0,0,0.294,100,97.21000000000001,0.9500000000000001,0.65,780,1,183,3.7
+2023,1,1,7,30,-0.7000000000000001,1.22,0.028,0.63,0,0,0,1,6,-0.7000000000000001,0,0,14,0,0.294,99.87,92.11,0.9500000000000001,0.65,780,1,184,3.8000000000000003
+2023,1,1,8,0,-0.5,1.23,0.027,0.63,20,332,37,7,6,-0.5,13,0,100,13,0.295,99.67,87.05,0.9500000000000001,0.65,780,1,184,4
+2023,1,1,8,30,-0.1,1.23,0.027,0.63,33,592,110,4,6,-0.5,33,0,57,33,0.295,96.82000000000001,82.56,0.9500000000000001,0.65,780,1,186,4.2
+2023,1,1,9,0,0.4,1.24,0.025,0.63,41,725,188,0,6,-0.2,29,0,0,29,0.295,95.85000000000001,78.33,0.9500000000000001,0.65,780,1,187,4.4
+2023,1,1,9,30,0.8,1.24,0.025,0.63,47,806,263,0,6,-0.2,44,0,0,44,0.294,93.12,74.49,0.9500000000000001,0.65,780,1,188,4.5
+2023,1,1,10,0,1.2000000000000002,1.25,0.023,0.63,52,860,331,0,6,0.1,97,5,0,99,0.293,92.66,71.10000000000001,0.9400000000000001,0.65,780,1,189,4.5
+2023,1,1,10,30,1.5,1.25,0.023,0.63,56,896,388,0,7,0.1,129,11,0,133,0.292,90.69,68.25,0.9400000000000001,0.65,780,1,190,4.6000000000000005
+2023,1,1,11,0,1.9000000000000001,1.26,0.021,0.63,58,921,432,0,7,0.4,166,20,0,174,0.291,89.8,66.02,0.9400000000000001,0.65,779,1,190,4.6000000000000005
+2023,1,1,11,30,2.2,1.26,0.021,0.63,60,935,463,0,7,0.4,169,16,0,176,0.29,87.9,64.46000000000001,0.9400000000000001,0.65,779,1,190,4.6000000000000005
+2023,1,1,12,0,2.5,1.27,0.021,0.63,60,943,479,0,7,0.6000000000000001,153,9,4,157,0.289,87.42,63.620000000000005,0.9500000000000001,0.65,779,1,190,4.5
+2023,1,1,12,30,2.6,1.27,0.021,0.63,61,944,481,0,7,0.6000000000000001,130,7,0,133,0.28800000000000003,86.69,63.550000000000004,0.9500000000000001,0.65,778,1,188,4.1000000000000005
+2023,1,1,13,0,2.7,1.26,0.02,0.63,59,939,467,0,7,0.8,140,7,0,143,0.28800000000000003,87.08,64.24,0.9500000000000001,0.65,778,1,186,3.7
+2023,1,1,13,30,2.6,1.26,0.02,0.63,58,924,439,0,7,0.7000000000000001,198,31,0,211,0.28700000000000003,87.58,65.67,0.9500000000000001,0.65,777,1.1,178,3.2
+2023,1,1,14,0,2.5,1.23,0.022,0.63,56,900,396,0,6,0.9,187,29,0,198,0.28600000000000003,89.2,67.78,0.9500000000000001,0.65,777,1.1,171,2.8000000000000003
+2023,1,1,14,30,1.7000000000000002,1.23,0.022,0.63,53,865,341,0,7,0.9,192,91,0,222,0.28600000000000003,94.42,70.52,0.9500000000000001,0.65,777,1.1,155,2.2
+2023,1,1,15,0,1,1.2,0.024,0.63,48,814,275,0,7,0.8,162,66,0,180,0.28600000000000003,98.46000000000001,73.81,0.96,0.65,777,1.1,139,1.7000000000000002
+2023,1,1,15,30,0.5,1.2,0.024,0.63,42,739,201,0,6,0.5,80,9,0,82,0.28700000000000003,100,77.57000000000001,0.96,0.65,777,1.2000000000000002,130,1.8
+2023,1,1,16,0,0,1.18,0.024,0.63,34,620,123,4,6,0,33,0,57,33,0.28800000000000003,100,81.73,0.96,0.65,777,1.2000000000000002,121,1.9000000000000001
+2023,1,1,16,30,-0.1,1.18,0.024,0.63,23,416,51,7,6,-0.1,18,0,100,18,0.29,100,86.19,0.96,0.65,777,1.2000000000000002,123,2.1
+2023,1,1,17,0,-0.2,1.19,0.025,0.63,4,38,3,3,6,-0.2,1,0,43,1,0.292,100,91.17,0.96,0.6900000000000001,777,1.1,125,2.2
+2023,1,1,17,30,-0.30000000000000004,1.19,0.025,0.63,0,0,0,0,6,-0.30000000000000004,0,0,0,0,0.293,100,96.23,0.96,0.6900000000000001,777,1.1,127,2
+2023,1,1,18,0,-0.4,1.2,0.023,0.63,0,0,0,0,6,-0.4,0,0,0,0,0.294,100,101.48,0.96,0.6900000000000001,777,1.1,129,1.7000000000000002
+2023,1,1,18,30,-0.5,1.2,0.023,0.63,0,0,0,0,6,-0.5,0,0,0,0,0.295,100,106.89,0.96,0.6900000000000001,777,1.1,125,1.5
+2023,1,1,19,0,-0.7000000000000001,1.2,0.021,0.63,0,0,0,0,6,-0.7000000000000001,0,0,0,0,0.296,100,112.41,0.96,0.6900000000000001,777,1.1,120,1.2000000000000002
+2023,1,1,19,30,-0.8,1.2,0.021,0.63,0,0,0,0,6,-0.8,0,0,0,0,0.296,100,118.03,0.96,0.6900000000000001,777,1.1,113,1.1
+2023,1,1,20,0,-0.9,1.18,0.027,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.297,100,123.71000000000001,0.96,0.6900000000000001,777,1.1,106,1
+2023,1,1,20,30,-1,1.18,0.027,0.63,0,0,0,0,6,-1,0,0,0,0,0.297,100,129.4,0.96,0.6900000000000001,777,1.1,103,0.9
+2023,1,1,21,0,-1,1.17,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.297,100,135.08,0.96,0.6900000000000001,776,1.1,101,0.8
+2023,1,1,21,30,-1.1,1.17,0.028,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.296,100,140.67000000000002,0.9500000000000001,0.6900000000000001,776,1.1,98,0.7000000000000001
+2023,1,1,22,0,-1.2000000000000002,1.18,0.024,0.63,0,0,0,0,9,-1.2000000000000002,0,0,0,0,0.296,100,146.12,0.9500000000000001,0.6900000000000001,776,1.1,95,0.6000000000000001
+2023,1,1,22,30,-1.3,1.18,0.024,0.63,0,0,0,0,9,-1.3,0,0,0,0,0.296,100,151.28,0.9500000000000001,0.6900000000000001,776,1.1,88,0.5
+2023,1,1,23,0,-1.4000000000000001,1.19,0.027,0.63,0,0,0,0,6,-1.4000000000000001,0,0,0,0,0.295,100,155.93,0.9500000000000001,0.6900000000000001,776,1,81,0.4
+2023,1,1,23,30,-1.5,1.19,0.027,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.296,100,159.70000000000002,0.9500000000000001,0.6900000000000001,776,1,75,0.4
+2023,1,2,0,0,-1.6,1.2,0.025,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.296,100,161.99,0.9500000000000001,0.6900000000000001,776,1,69,0.30000000000000004
+2023,1,2,0,30,-1.7000000000000002,1.2,0.025,0.63,0,0,0,0,6,-1.7000000000000002,0,0,0,0,0.298,100,162.21,0.9500000000000001,0.6900000000000001,777,1,71,0.30000000000000004
+2023,1,2,1,0,-1.8,1.18,0.023,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.299,100,160.29,0.9400000000000001,0.6900000000000001,777,1,72,0.30000000000000004
+2023,1,2,1,30,-1.8,1.18,0.023,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.302,100,156.76,0.9500000000000001,0.6900000000000001,777,1,88,0.4
+2023,1,2,2,0,-1.9000000000000001,1.1400000000000001,0.023,0.63,0,0,0,0,8,-1.9000000000000001,0,0,0,0,0.304,100,152.25,0.9500000000000001,0.6900000000000001,777,1,105,0.4
+2023,1,2,2,30,-2.1,1.1400000000000001,0.023,0.63,0,0,0,0,4,-2.1,0,0,0,0,0.308,100,147.17000000000002,0.9400000000000001,0.6900000000000001,777,0.9,111,0.5
+2023,1,2,3,0,-2.3000000000000003,1.11,0.022,0.63,0,0,0,0,4,-2.3000000000000003,0,0,0,0,0.312,100,141.77,0.9400000000000001,0.6900000000000001,777,0.9,118,0.6000000000000001
+2023,1,2,3,30,-2.7,1.11,0.022,0.63,0,0,0,0,7,-2.7,0,0,0,0,0.316,100,136.19,0.9400000000000001,0.6900000000000001,776,0.9,123,0.7000000000000001
+2023,1,2,4,0,-3.2,1.08,0.02,0.63,0,0,0,0,6,-3.2,0,0,0,0,0.32,100,130.53,0.9400000000000001,0.6900000000000001,776,0.8,128,0.8
+2023,1,2,4,30,-3.6,1.08,0.02,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.323,100,124.83,0.9400000000000001,0.6900000000000001,776,0.8,126,0.8
+2023,1,2,5,0,-4,1.05,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.327,100,119.15,0.9400000000000001,0.6900000000000001,776,0.7000000000000001,125,0.8
+2023,1,2,5,30,-4.4,1.05,0.022,0.63,0,0,0,0,6,-4.4,0,0,0,0,0.331,100,113.51,0.9400000000000001,0.6900000000000001,776,0.7000000000000001,118,0.7000000000000001
+2023,1,2,6,0,-4.800000000000001,1.01,0.022,0.63,0,0,0,0,9,-4.800000000000001,0,0,0,0,0.334,100,107.96000000000001,0.9400000000000001,0.6900000000000001,777,0.7000000000000001,110,0.7000000000000001
+2023,1,2,6,30,-5.2,1.01,0.022,0.63,0,0,0,0,9,-5.2,0,0,0,0,0.337,100,102.52,0.93,0.6900000000000001,777,0.7000000000000001,106,0.8
+2023,1,2,7,0,-5.6000000000000005,0.96,0.022,0.63,0,0,0,0,9,-5.6000000000000005,0,0,0,0,0.34,100,97.23,0.93,0.6900000000000001,777,0.6000000000000001,101,0.8
+2023,1,2,7,30,-5.4,0.96,0.022,0.63,0,0,0,1,9,-5.4,0,0,14,0,0.342,100,92.13,0.93,0.6900000000000001,777,0.6000000000000001,107,0.9
+2023,1,2,8,0,-5.300000000000001,0.92,0.024,0.63,20,350,38,7,9,-5.5,13,0,100,13,0.34400000000000003,98.41,87.06,0.93,0.6900000000000001,777,0.6000000000000001,113,1
+2023,1,2,8,30,-4.2,0.92,0.024,0.63,33,611,112,4,9,-5.5,19,0,57,19,0.34400000000000003,90.58,82.56,0.9400000000000001,0.6900000000000001,777,0.6000000000000001,139,1.1
+2023,1,2,9,0,-3.1,0.9,0.027,0.63,43,738,192,0,6,-4.4,7,0,0,7,0.34500000000000003,90.93,78.32000000000001,0.9400000000000001,0.6900000000000001,777,0.6000000000000001,164,1.3
+2023,1,2,9,30,-2.2,0.9,0.027,0.63,50,818,269,0,6,-4.4,12,0,0,12,0.34500000000000003,85.06,74.47,0.9400000000000001,0.6900000000000001,777,0.6000000000000001,179,1.9000000000000001
+2023,1,2,10,0,-1.2000000000000002,0.89,0.028,0.63,56,870,338,0,6,-3.7,23,0,0,23,0.34500000000000003,83.16,71.07000000000001,0.9400000000000001,0.6900000000000001,777,0.6000000000000001,193,2.5
+2023,1,2,10,30,-0.9,0.89,0.028,0.63,60,904,396,0,7,-3.7,28,0,0,28,0.343,81.36,68.21000000000001,0.9400000000000001,0.6900000000000001,777,0.6000000000000001,200,2.8000000000000003
+2023,1,2,11,0,-0.6000000000000001,0.91,0.029,0.63,63,927,441,0,6,-3.6,25,0,0,25,0.342,80.18,65.96000000000001,0.9400000000000001,0.6900000000000001,776,0.6000000000000001,206,3.1
+2023,1,2,11,30,-0.4,0.91,0.029,0.63,66,941,473,0,6,-3.6,23,0,0,23,0.34,79.02,64.39,0.9400000000000001,0.6900000000000001,776,0.6000000000000001,213,3.1
+2023,1,2,12,0,-0.30000000000000004,0.93,0.031,0.63,68,947,490,0,6,-3.6,36,0,0,36,0.337,78.51,63.54,0.9400000000000001,0.6900000000000001,776,0.6000000000000001,220,3.1
+2023,1,2,12,30,-0.30000000000000004,0.93,0.031,0.63,68,947,491,0,7,-3.6,74,0,0,74,0.335,78.41,63.46,0.9400000000000001,0.6900000000000001,775,0.6000000000000001,228,3.1
+2023,1,2,13,0,-0.2,0.9400000000000001,0.032,0.63,68,940,478,0,7,-3.6,101,0,0,101,0.333,78,64.14,0.9400000000000001,0.6900000000000001,775,0.6000000000000001,237,3
+2023,1,2,13,30,-0.30000000000000004,0.9400000000000001,0.032,0.63,66,926,449,0,7,-3.6,70,0,0,70,0.331,78.57000000000001,65.55,0.9400000000000001,0.6900000000000001,775,0.6000000000000001,245,2.7
+2023,1,2,14,0,-0.4,0.96,0.034,0.63,64,902,407,0,6,-3.6,45,0,0,45,0.329,78.95,67.66,0.9500000000000001,0.6900000000000001,775,0.6000000000000001,254,2.5
+2023,1,2,14,30,-0.8,0.96,0.034,0.63,60,868,351,0,7,-3.6,31,0,0,31,0.328,81.39,70.39,0.9500000000000001,0.6900000000000001,776,0.6000000000000001,262,2.2
+2023,1,2,15,0,-1.2000000000000002,0.99,0.036000000000000004,0.63,55,816,284,0,7,-3.7,29,0,0,29,0.327,83.22,73.68,0.9500000000000001,0.6900000000000001,776,0.6000000000000001,269,1.8
+2023,1,2,15,30,-2.3000000000000003,0.99,0.036000000000000004,0.63,47,739,208,0,7,-3.7,34,0,0,34,0.325,90.23,77.44,0.9500000000000001,0.6900000000000001,776,0.6000000000000001,278,1.4000000000000001
+2023,1,2,16,0,-3.3000000000000003,1.02,0.037,0.63,38,617,128,4,7,-4.9,26,0,50,26,0.324,88.78,81.59,0.9500000000000001,0.6900000000000001,777,0.6000000000000001,287,1
+2023,1,2,16,30,-4.1000000000000005,1.02,0.037,0.63,25,401,53,7,7,-4.9,19,0,100,19,0.322,94.26,86.05,0.9500000000000001,0.6900000000000001,777,0.6000000000000001,289,1
+2023,1,2,17,0,-4.9,1.05,0.04,0.63,4,35,3,3,7,-6.300000000000001,1,0,43,1,0.321,89.8,91.03,0.9500000000000001,0.8,778,0.6000000000000001,292,1
+2023,1,2,17,30,-5.2,1.05,0.04,0.63,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.32,91.86,96.09,0.96,0.8,778,0.6000000000000001,292,1
+2023,1,2,18,0,-5.5,1.08,0.043000000000000003,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.319,90.61,101.34,0.96,0.8,778,0.7000000000000001,292,1
+2023,1,2,18,30,-5.800000000000001,1.08,0.043000000000000003,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.319,92.71000000000001,106.75,0.96,0.8,778,0.7000000000000001,289,0.9
+2023,1,2,19,0,-6,1.1,0.046,0.63,0,0,0,0,7,-7,0,0,0,0,0.319,92.45,112.27,0.96,0.8,779,0.7000000000000001,286,0.9
+2023,1,2,19,30,-6.2,1.1,0.046,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,93.87,117.89,0.96,0.8,779,0.7000000000000001,283,1
+2023,1,2,20,0,-6.4,1.12,0.049,0.63,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.321,93.31,123.57000000000001,0.96,0.8,779,0.7000000000000001,280,1.1
+2023,1,2,20,30,-6.5,1.12,0.049,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.321,94.02,129.26,0.96,0.8,779,0.7000000000000001,274,1.1
+2023,1,2,21,0,-6.7,1.1400000000000001,0.052000000000000005,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.322,94.08,134.94,0.96,0.8,779,0.6000000000000001,268,1.2000000000000002
+2023,1,2,21,30,-6.800000000000001,1.1400000000000001,0.052000000000000005,0.63,0,0,0,0,4,-7.5,0,0,0,0,0.322,94.8,140.53,0.96,0.8,779,0.6000000000000001,263,1.3
+2023,1,2,22,0,-6.9,1.16,0.054,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.322,94.19,145.98,0.96,0.8,779,0.6000000000000001,258,1.3
+2023,1,2,22,30,-7.1000000000000005,1.16,0.054,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.322,95.65,151.14000000000001,0.97,0.8,779,0.6000000000000001,255,1.4000000000000001
+2023,1,2,23,0,-7.2,1.18,0.059000000000000004,0.63,0,0,0,0,4,-8,0,0,0,0,0.322,94.32000000000001,155.79,0.97,0.8,779,0.6000000000000001,253,1.5
+2023,1,2,23,30,-7.4,1.18,0.059000000000000004,0.63,0,0,0,0,8,-8,0,0,0,0,0.322,95.79,159.57,0.97,0.8,779,0.6000000000000001,252,1.6
+2023,1,3,0,0,-7.5,1.21,0.062,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.321,93.92,161.88,0.97,0.8,779,0.6000000000000001,251,1.6
+2023,1,3,0,30,-7.7,1.21,0.062,0.63,0,0,0,0,4,-8.3,0,0,0,0,0.32,95.51,162.13,0.97,0.8,780,0.6000000000000001,249,1.7000000000000002
+2023,1,3,1,0,-7.800000000000001,1.21,0.065,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.319,93.73,160.25,0.97,0.8,780,0.6000000000000001,247,1.7000000000000002
+2023,1,3,1,30,-7.9,1.21,0.065,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.318,94.46000000000001,156.75,0.97,0.8,780,0.6000000000000001,245,1.7000000000000002
+2023,1,3,2,0,-8,1.22,0.068,0.63,0,0,0,0,4,-9,0,0,0,0,0.318,92.82000000000001,152.26,0.97,0.8,780,0.6000000000000001,242,1.7000000000000002
+2023,1,3,2,30,-8.1,1.22,0.068,0.63,0,0,0,0,4,-9,0,0,0,0,0.318,93.55,147.19,0.97,0.8,780,0.6000000000000001,240,1.8
+2023,1,3,3,0,-8.3,1.22,0.07,0.63,0,0,0,0,4,-9.3,0,0,0,0,0.318,92.73,141.8,0.97,0.8,780,0.6000000000000001,237,1.8
+2023,1,3,3,30,-8.4,1.22,0.07,0.63,0,0,0,0,4,-9.3,0,0,0,0,0.318,93.46000000000001,136.22,0.97,0.8,780,0.6000000000000001,236,1.9000000000000001
+2023,1,3,4,0,-8.5,1.23,0.068,0.63,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.319,91.84,130.56,0.97,0.8,780,0.6000000000000001,234,1.9000000000000001
+2023,1,3,4,30,-8.6,1.23,0.068,0.63,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.319,92.56,124.86,0.97,0.8,780,0.6000000000000001,234,2
+2023,1,3,5,0,-8.700000000000001,1.23,0.067,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.32,90.93,119.18,0.97,0.8,781,0.6000000000000001,234,2
+2023,1,3,5,30,-8.9,1.23,0.067,0.63,0,0,0,0,8,-9.9,0,0,0,0,0.319,92.36,113.54,0.97,0.8,781,0.6000000000000001,234,2
+2023,1,3,6,0,-9,1.24,0.065,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.319,90.45,107.99000000000001,0.97,0.8,781,0.6000000000000001,234,2
+2023,1,3,6,30,-9.200000000000001,1.24,0.065,0.63,0,0,0,0,5,-10.3,0,0,0,0,0.319,91.88,102.54,0.97,0.8,781,0.5,232,2
+2023,1,3,7,0,-9.4,1.23,0.062,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.318,90.58,97.25,0.97,0.8,781,0.5,231,2
+2023,1,3,7,30,-9.200000000000001,1.23,0.062,0.63,0,0,0,1,5,-10.700000000000001,0,0,14,0,0.316,89.17,92.14,0.97,0.8,781,0.5,230,2
+2023,1,3,8,0,-9,1.22,0.061,0.63,23,270,37,7,5,-10.5,18,0,100,18,0.315,89.16,87.06,0.97,0.8,782,0.5,228,2
+2023,1,3,8,30,-8.1,1.22,0.061,0.63,41,536,110,4,4,-10.5,44,0,57,44,0.314,83.12,82.55,0.97,0.8,782,0.5,232,2.2
+2023,1,3,9,0,-7.300000000000001,1.22,0.057,0.63,53,683,191,0,4,-9.1,42,0,0,42,0.312,86.69,78.31,0.97,0.8,782,0.5,236,2.4000000000000004
+2023,1,3,9,30,-6.5,1.22,0.057,0.63,62,777,270,0,4,-9.1,44,0,0,44,0.311,81.52,74.44,0.96,0.8,782,0.5,241,2.6
+2023,1,3,10,0,-5.800000000000001,1.22,0.049,0.63,66,842,340,0,4,-8.4,52,0,0,52,0.309,81.91,71.04,0.96,0.8,783,0.5,245,2.8000000000000003
+2023,1,3,10,30,-5.4,1.22,0.049,0.63,71,884,400,0,4,-8.4,80,0,0,80,0.308,79.45,68.16,0.96,0.8,783,0.5,247,2.8000000000000003
+2023,1,3,11,0,-4.9,1.23,0.043000000000000003,0.63,73,916,447,0,4,-7.9,102,0,0,102,0.306,79.44,65.9,0.96,0.8,783,0.5,248,2.8000000000000003
+2023,1,3,11,30,-4.7,1.23,0.043000000000000003,0.63,74,936,480,0,4,-7.9,110,0,0,110,0.304,78.15,64.31,0.9500000000000001,0.8,782,0.5,249,2.8000000000000003
+2023,1,3,12,0,-4.4,1.25,0.035,0.63,73,951,498,0,4,-7.7,106,0,0,106,0.303,77.60000000000001,63.45,0.9500000000000001,0.8,782,0.5,249,2.8000000000000003
+2023,1,3,12,30,-4.3,1.25,0.035,0.63,71,956,500,0,4,-7.7,126,0,0,126,0.301,77.01,63.36,0.9400000000000001,0.8,782,0.5,248,2.8000000000000003
+2023,1,3,13,0,-4.2,1.25,0.029,0.63,68,956,487,0,4,-7.7,109,0,0,109,0.3,76.63,64.03,0.9400000000000001,0.8,782,0.5,246,2.8000000000000003
+2023,1,3,13,30,-4.2,1.25,0.029,0.63,66,944,459,0,4,-7.7,81,0,0,81,0.299,76.63,65.43,0.9400000000000001,0.8,782,0.5,245,2.8000000000000003
+2023,1,3,14,0,-4.1000000000000005,1.24,0.028,0.63,62,925,416,0,5,-7.7,89,0,0,89,0.298,76.25,67.53,0.9400000000000001,0.8,782,0.5,244,2.7
+2023,1,3,14,30,-4.3,1.24,0.028,0.63,58,894,360,0,5,-7.6000000000000005,96,0,0,96,0.298,77.5,70.26,0.9400000000000001,0.8,783,0.5,244,2.5
+2023,1,3,15,0,-4.5,1.23,0.027,0.63,53,847,293,0,5,-7.300000000000001,78,0,0,78,0.298,80.52,73.54,0.9400000000000001,0.8,783,0.5,243,2.2
+2023,1,3,15,30,-5.300000000000001,1.23,0.027,0.63,45,776,216,0,5,-7.300000000000001,70,5,0,71,0.299,85.54,77.3,0.9400000000000001,0.8,783,0.5,241,1.9000000000000001
+2023,1,3,16,0,-6.1000000000000005,1.21,0.027,0.63,37,662,135,3,5,-8.700000000000001,56,3,43,56,0.3,81.82000000000001,81.45,0.9400000000000001,0.8,783,0.5,239,1.6
+2023,1,3,16,30,-7,1.21,0.027,0.63,25,460,58,7,5,-8.700000000000001,27,0,100,27,0.301,87.77,85.91,0.9500000000000001,0.8,784,0.5,237,1.6
+2023,1,3,17,0,-8,1.2,0.027,0.63,7,80,6,3,5,-10.600000000000001,2,0,43,2,0.303,81.33,90.88,0.9500000000000001,0.8,784,0.5,236,1.6
+2023,1,3,17,30,-8.4,1.2,0.027,0.63,0,0,0,0,8,-10.600000000000001,0,0,0,0,0.304,83.9,95.94,0.9500000000000001,0.8,784,0.5,238,1.6
+2023,1,3,18,0,-8.9,1.2,0.027,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.306,81.54,101.19,0.9500000000000001,0.8,785,0.5,240,1.7000000000000002
+2023,1,3,18,30,-9.3,1.2,0.027,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.308,84.13,106.60000000000001,0.9400000000000001,0.8,785,0.5,243,1.7000000000000002
+2023,1,3,19,0,-9.600000000000001,1.2,0.025,0.63,0,0,0,0,4,-12,0,0,0,0,0.31,82.63,112.13,0.9400000000000001,0.8,785,0.5,246,1.7000000000000002
+2023,1,3,19,30,-10,1.2,0.025,0.63,0,0,0,0,5,-12,0,0,0,0,0.313,85.28,117.75,0.9400000000000001,0.8,785,0.5,250,1.7000000000000002
+2023,1,3,20,0,-10.3,1.21,0.025,0.63,0,0,0,0,8,-12.4,0,0,0,0,0.315,84.63,123.42,0.9400000000000001,0.8,785,0.5,255,1.7000000000000002
+2023,1,3,20,30,-10.600000000000001,1.21,0.025,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.318,86.67,129.12,0.9400000000000001,0.8,785,0.4,259,1.7000000000000002
+2023,1,3,21,0,-11,1.21,0.024,0.63,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.32,86.93,134.79,0.9400000000000001,0.8,786,0.4,264,1.7000000000000002
+2023,1,3,21,30,-11.200000000000001,1.21,0.024,0.63,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.322,88.33,140.39000000000001,0.9400000000000001,0.8,786,0.4,268,1.7000000000000002
+2023,1,3,22,0,-11.5,1.22,0.022,0.63,0,0,0,0,7,-13,0,0,0,0,0.324,88.45,145.83,0.9400000000000001,0.8,786,0.4,271,1.7000000000000002
+2023,1,3,22,30,-11.8,1.22,0.022,0.63,0,0,0,0,7,-13,0,0,0,0,0.326,90.60000000000001,150.99,0.93,0.8,786,0.4,274,1.6
+2023,1,3,23,0,-12.100000000000001,1.24,0.019,0.63,0,0,0,0,7,-13.4,0,0,0,0,0.328,90.24,155.65,0.93,0.8,786,0.4,277,1.5
+2023,1,3,23,30,-12.600000000000001,1.24,0.019,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.329,93.95,159.43,0.92,0.8,786,0.30000000000000004,279,1.5
+2023,1,4,0,0,-13.100000000000001,1.23,0.016,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.33,92.54,161.76,0.92,0.8,786,0.30000000000000004,281,1.5
+2023,1,4,0,30,-13.700000000000001,1.23,0.016,0.63,0,0,0,0,0,-14,0,0,0,0,0.33,97.29,162.05,0.92,0.8,787,0.30000000000000004,282,1.5
+2023,1,4,1,0,-14.200000000000001,1.21,0.014,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.331,94.88,160.20000000000002,0.91,0.8,787,0.30000000000000004,283,1.5
+2023,1,4,1,30,-14.5,1.21,0.014,0.63,0,0,0,0,4,-14.8,0,0,0,0,0.331,97.25,156.73,0.91,0.8,787,0.30000000000000004,282,1.4000000000000001
+2023,1,4,2,0,-14.8,1.19,0.013000000000000001,0.63,0,0,0,0,4,-15.4,0,0,0,0,0.331,95.39,152.26,0.91,0.8,788,0.30000000000000004,282,1.4000000000000001
+2023,1,4,2,30,-15,1.19,0.013000000000000001,0.63,0,0,0,0,4,-15.4,0,0,0,0,0.332,96.98,147.20000000000002,0.91,0.8,788,0.30000000000000004,278,1.3
+2023,1,4,3,0,-15.100000000000001,1.18,0.013000000000000001,0.63,0,0,0,0,4,-15.700000000000001,0,0,0,0,0.332,95,141.82,0.91,0.8,788,0.30000000000000004,275,1.2000000000000002
+2023,1,4,3,30,-15.3,1.18,0.013000000000000001,0.63,0,0,0,0,4,-15.700000000000001,0,0,0,0,0.332,96.71000000000001,136.25,0.91,0.8,789,0.30000000000000004,265,1.1
+2023,1,4,4,0,-15.600000000000001,1.19,0.012,0.63,0,0,0,0,4,-16.2,0,0,0,0,0.332,95.5,130.59,0.91,0.8,789,0.30000000000000004,255,1
+2023,1,4,4,30,-15.8,1.19,0.012,0.63,0,0,0,0,4,-16.2,0,0,0,0,0.332,97.10000000000001,124.89,0.91,0.8,789,0.30000000000000004,243,1.1
+2023,1,4,5,0,-16.1,1.21,0.012,0.63,0,0,0,0,8,-16.6,0,0,0,0,0.332,95.88,119.21000000000001,0.91,0.8,790,0.30000000000000004,232,1.1
+2023,1,4,5,30,-16.3,1.21,0.012,0.63,0,0,0,0,7,-16.6,0,0,0,0,0.332,97.49000000000001,113.57000000000001,0.91,0.8,790,0.30000000000000004,226,1.2000000000000002
+2023,1,4,6,0,-16.5,1.23,0.012,0.63,0,0,0,0,7,-17,0,0,0,0,0.333,95.94,108.01,0.91,0.8,790,0.30000000000000004,221,1.3
+2023,1,4,6,30,-16.6,1.23,0.012,0.63,0,0,0,0,4,-17,0,0,0,0,0.334,96.74000000000001,102.56,0.91,0.8,790,0.30000000000000004,217,1.3
+2023,1,4,7,0,-16.7,1.25,0.012,0.63,0,0,0,0,0,-17.3,0,0,0,0,0.335,95.37,97.26,0.91,0.8,790,0.30000000000000004,213,1.3
+2023,1,4,7,30,-16.3,1.25,0.012,0.63,0,0,0,1,0,-17.3,0,0,11,0,0.336,92.35000000000001,92.14,0.91,0.8,791,0.30000000000000004,213,1.4000000000000001
+2023,1,4,8,0,-15.9,1.27,0.012,0.63,19,428,41,2,0,-17.2,20,284,36,35,0.337,89.59,87.05,0.91,0.8,791,0.30000000000000004,214,1.4000000000000001
+2023,1,4,8,30,-14.5,1.27,0.012,0.63,29,692,119,1,0,-17.2,32,620,11,112,0.339,79.8,82.54,0.91,0.8,791,0.30000000000000004,217,1.5
+2023,1,4,9,0,-13.100000000000001,1.3,0.011,0.63,36,814,201,0,0,-15.5,36,814,0,201,0.34,82.01,78.28,0.91,0.8,791,0.30000000000000004,220,1.5
+2023,1,4,9,30,-11.200000000000001,1.3,0.011,0.63,41,888,280,0,0,-15.5,51,834,0,275,0.34,70.47,74.41,0.91,0.8,792,0.30000000000000004,223,2
+2023,1,4,10,0,-9.4,1.32,0.011,0.63,45,936,350,0,0,-13,45,936,0,350,0.34,75.16,70.99,0.91,0.8,792,0.30000000000000004,227,2.5
+2023,1,4,10,30,-8.200000000000001,1.32,0.011,0.63,48,969,409,0,0,-13,48,969,0,409,0.338,68.43,68.1,0.9,0.8,792,0.30000000000000004,229,2.8000000000000003
+2023,1,4,11,0,-6.9,1.32,0.01,0.63,51,990,456,0,0,-11.600000000000001,51,990,0,456,0.337,68.91,65.83,0.9,0.8,792,0.30000000000000004,232,3.2
+2023,1,4,11,30,-6.1000000000000005,1.32,0.01,0.63,52,1004,488,0,0,-11.600000000000001,52,1004,0,488,0.335,64.82000000000001,64.23,0.9,0.8,792,0.30000000000000004,233,3.5
+2023,1,4,12,0,-5.2,1.32,0.01,0.63,53,1010,506,0,0,-10.8,53,1010,0,506,0.334,64.95,63.36,0.9,0.8,792,0.30000000000000004,234,3.9000000000000004
+2023,1,4,12,30,-4.9,1.32,0.01,0.63,53,1011,508,0,0,-10.8,53,1011,0,508,0.332,63.5,63.25,0.91,0.8,792,0.30000000000000004,237,4
+2023,1,4,13,0,-4.5,1.32,0.01,0.63,53,1006,495,0,0,-10,53,1006,0,495,0.329,65.48,63.910000000000004,0.91,0.8,792,0.30000000000000004,240,4.1000000000000005
+2023,1,4,13,30,-4.5,1.32,0.01,0.63,51,995,467,0,0,-10,51,995,0,467,0.326,65.48,65.3,0.91,0.8,792,0.30000000000000004,238,3.7
+2023,1,4,14,0,-4.4,1.31,0.011,0.63,50,975,425,0,0,-9.3,50,975,0,425,0.322,68.82000000000001,67.4,0.92,0.8,792,0.30000000000000004,237,3.3000000000000003
+2023,1,4,14,30,-4.7,1.31,0.011,0.63,48,944,369,0,0,-9.3,48,944,0,369,0.319,70.39,70.12,0.93,0.8,792,0.30000000000000004,232,2.7
+2023,1,4,15,0,-5.1000000000000005,1.3,0.014,0.63,46,898,303,0,0,-8.6,46,898,0,303,0.317,76.51,73.4,0.9400000000000001,0.8,791,0.30000000000000004,227,2.2
+2023,1,4,15,30,-6.4,1.3,0.014,0.63,41,829,225,0,0,-8.6,41,829,0,225,0.314,84.57000000000001,77.15,0.9400000000000001,0.8,792,0.30000000000000004,220,1.8
+2023,1,4,16,0,-7.800000000000001,1.3,0.018000000000000002,0.63,35,717,143,0,0,-10.8,35,717,0,143,0.312,79.34,81.3,0.9500000000000001,0.8,792,0.30000000000000004,213,1.4000000000000001
+2023,1,4,16,30,-9,1.3,0.018000000000000002,0.63,25,520,63,0,0,-10.8,25,520,0,63,0.31,87.11,85.76,0.9500000000000001,0.8,792,0.30000000000000004,207,1.5
+2023,1,4,17,0,-10.200000000000001,1.31,0.023,0.63,7,96,7,1,0,-12.8,7,96,11,7,0.308,81.48,90.23,0.96,0.8,792,0.30000000000000004,201,1.5
+2023,1,4,17,30,-10.8,1.31,0.023,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.306,85.45,95.79,0.96,0.8,792,0.4,196,1.6
+2023,1,4,18,0,-11.3,1.32,0.025,0.63,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.304,85.73,101.05,0.96,0.8,792,0.4,192,1.6
+2023,1,4,18,30,-11.700000000000001,1.32,0.025,0.63,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.303,88.52,106.45,0.96,0.8,792,0.4,188,1.7000000000000002
+2023,1,4,19,0,-12.100000000000001,1.32,0.026000000000000002,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.302,88.76,111.99000000000001,0.96,0.8,792,0.4,185,1.7000000000000002
+2023,1,4,19,30,-12.600000000000001,1.32,0.026000000000000002,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.302,92.53,117.60000000000001,0.96,0.8,793,0.4,183,1.8
+2023,1,4,20,0,-13,1.32,0.027,0.63,0,0,0,0,0,-14,0,0,0,0,0.301,92.55,123.28,0.96,0.8,793,0.4,182,1.9000000000000001
+2023,1,4,20,30,-13.200000000000001,1.32,0.027,0.63,0,0,0,0,0,-14,0,0,0,0,0.3,94.06,128.97,0.96,0.8,793,0.4,182,2
+2023,1,4,21,0,-13.5,1.31,0.028,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.3,94.10000000000001,134.65,0.97,0.8,793,0.5,181,2.1
+2023,1,4,21,30,-13.600000000000001,1.31,0.028,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.299,94.87,140.24,0.96,0.8,793,0.5,183,2.2
+2023,1,4,22,0,-13.700000000000001,1.31,0.026000000000000002,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,93.69,145.68,0.96,0.8,792,0.5,185,2.2
+2023,1,4,22,30,-13.700000000000001,1.31,0.026000000000000002,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,93.81,150.84,0.96,0.8,793,0.6000000000000001,186,2.2
+2023,1,4,23,0,-13.8,1.32,0.025,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.297,94.06,155.5,0.96,0.8,793,0.6000000000000001,188,2.2
+2023,1,4,23,30,-13.8,1.32,0.025,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.298,94.06,159.29,0.96,0.8,793,0.6000000000000001,189,2.1
+2023,1,5,0,0,-13.9,1.32,0.025,0.63,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.298,94.12,161.63,0.96,0.8,793,0.7000000000000001,190,2.1
+2023,1,5,0,30,-13.9,1.32,0.025,0.63,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.299,94.12,161.95000000000002,0.96,0.8,793,0.7000000000000001,189,2.1
+2023,1,5,1,0,-14,1.33,0.027,0.63,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.3,94.14,160.14000000000001,0.96,0.8,793,0.8,187,2.1
+2023,1,5,1,30,-14,1.33,0.027,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.3,94.02,156.71,0.96,0.8,792,0.8,181,2.1
+2023,1,5,2,0,-14,1.33,0.03,0.63,0,0,0,0,0,-14.9,0,0,0,0,0.301,92.88,152.25,0.96,0.8,792,0.8,176,2.1
+2023,1,5,2,30,-14,1.33,0.03,0.63,0,0,0,0,4,-14.9,0,0,0,0,0.3,92.88,147.21,0.96,0.8,792,0.9,172,2.1
+2023,1,5,3,0,-13.9,1.31,0.035,0.63,0,0,0,0,4,-15,0,0,0,0,0.3,91.66,141.84,0.97,0.8,792,0.9,168,2.2
+2023,1,5,3,30,-13.700000000000001,1.31,0.035,0.63,0,0,0,0,4,-15,0,0,0,0,0.3,90.17,136.27,0.97,0.8,792,0.9,168,2.2
+2023,1,5,4,0,-13.5,1.28,0.039,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.3,89.64,130.61,0.97,0.8,792,0.9,168,2.2
+2023,1,5,4,30,-13.100000000000001,1.28,0.039,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.299,86.77,124.92,0.97,0.8,792,0.8,169,2.1
+2023,1,5,5,0,-12.8,1.26,0.041,0.63,0,0,0,0,6,-14.4,0,0,0,0,0.299,87.78,119.23,0.97,0.8,792,0.8,171,2.1
+2023,1,5,5,30,-12.4,1.26,0.041,0.63,0,0,0,0,7,-14.4,0,0,0,0,0.299,84.99,113.59,0.97,0.8,792,0.8,174,2.1
+2023,1,5,6,0,-12,1.25,0.041,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.299,86.39,108.02,0.97,0.8,792,0.7000000000000001,176,2
+2023,1,5,6,30,-11.600000000000001,1.25,0.041,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.299,83.66,102.57000000000001,0.97,0.8,792,0.7000000000000001,180,2
+2023,1,5,7,0,-11.200000000000001,1.26,0.038,0.63,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.299,85.67,97.27,0.97,0.8,791,0.7000000000000001,184,2
+2023,1,5,7,30,-10.600000000000001,1.26,0.038,0.63,0,0,0,1,7,-13.100000000000001,0,0,18,0,0.299,81.78,92.14,0.97,0.8,792,0.7000000000000001,188,2
+2023,1,5,8,0,-9.9,1.27,0.036000000000000004,0.63,22,324,39,7,7,-11.8,24,1,100,24,0.299,86.09,87.04,0.96,0.8,792,0.6000000000000001,193,2.1
+2023,1,5,8,30,-8.8,1.27,0.036000000000000004,0.63,36,590,113,4,7,-11.8,64,7,57,65,0.3,78.96000000000001,82.52,0.96,0.8,792,0.6000000000000001,195,2.3000000000000003
+2023,1,5,9,0,-7.7,1.29,0.034,0.63,46,727,194,0,7,-9.700000000000001,89,8,0,91,0.301,85.82000000000001,78.26,0.96,0.8,792,0.6000000000000001,198,2.5
+2023,1,5,9,30,-6.6000000000000005,1.29,0.034,0.63,53,811,272,0,7,-9.700000000000001,97,5,0,98,0.301,78.85000000000001,74.37,0.96,0.8,792,0.6000000000000001,199,2.8000000000000003
+2023,1,5,10,0,-5.6000000000000005,1.29,0.032,0.63,60,867,343,0,7,-7.6000000000000005,123,16,0,128,0.302,86.06,70.94,0.96,0.8,792,0.6000000000000001,199,3
+2023,1,5,10,30,-4.4,1.29,0.032,0.63,65,901,402,0,6,-7.6000000000000005,90,1,0,90,0.302,78.60000000000001,68.04,0.96,0.8,792,0.6000000000000001,202,3.7
+2023,1,5,11,0,-3.3000000000000003,1.26,0.035,0.63,69,922,448,0,6,-5.300000000000001,108,3,0,109,0.302,86.13,65.75,0.96,0.8,791,0.6000000000000001,204,4.4
+2023,1,5,11,30,-2.8000000000000003,1.26,0.035,0.63,71,938,480,0,7,-5.300000000000001,99,2,7,100,0.302,82.99,64.14,0.96,0.8,791,0.6000000000000001,205,4.6000000000000005
+2023,1,5,12,0,-2.2,1.26,0.031,0.63,71,948,498,2,7,-4.1000000000000005,100,4,25,102,0.303,86.95,63.26,0.96,0.8,790,0.6000000000000001,206,4.800000000000001
+2023,1,5,12,30,-2,1.26,0.031,0.63,69,953,500,0,7,-4.1000000000000005,155,33,0,170,0.303,85.67,63.13,0.9500000000000001,0.8,790,0.6000000000000001,207,4.800000000000001
+2023,1,5,13,0,-1.7000000000000002,1.28,0.025,0.63,67,954,488,0,7,-3.5,212,78,0,246,0.303,87.7,63.78,0.9500000000000001,0.8,790,0.6000000000000001,208,4.9
+2023,1,5,13,30,-1.6,1.28,0.025,0.63,64,945,461,0,6,-3.5,164,14,0,170,0.302,86.95,65.17,0.9500000000000001,0.8,789,0.6000000000000001,208,4.7
+2023,1,5,14,0,-1.5,1.29,0.023,0.63,60,926,418,0,6,-3.2,110,1,0,110,0.302,88.06,67.26,0.9500000000000001,0.8,789,0.6000000000000001,207,4.6000000000000005
+2023,1,5,14,30,-1.6,1.29,0.023,0.63,56,893,362,0,7,-3.2,113,84,0,142,0.303,88.71000000000001,69.97,0.9500000000000001,0.8,789,0.6000000000000001,207,4
+2023,1,5,15,0,-1.8,1.27,0.024,0.63,52,844,295,0,7,-3.1,161,90,0,187,0.304,90.89,73.25,0.9500000000000001,0.8,789,0.7000000000000001,207,3.4000000000000004
+2023,1,5,15,30,-2.5,1.27,0.024,0.63,45,775,219,0,7,-3.1,135,50,0,146,0.305,95.7,77,0.9500000000000001,0.8,789,0.7000000000000001,205,2.5
+2023,1,5,16,0,-3.3000000000000003,1.28,0.025,0.63,37,664,139,3,7,-3.8000000000000003,80,50,43,88,0.307,96.39,81.15,0.9500000000000001,0.8,789,0.7000000000000001,203,1.7000000000000002
+2023,1,5,16,30,-4.3,1.28,0.025,0.63,24,479,61,7,7,-4.3,32,1,100,32,0.309,100,85.62,0.9400000000000001,0.8,789,0.7000000000000001,201,1.6
+2023,1,5,17,0,-5.300000000000001,1.32,0.022,0.63,7,91,7,3,6,-5.5,3,0,43,3,0.311,98.48,90.11,0.9400000000000001,0.78,789,0.6000000000000001,199,1.6
+2023,1,5,17,30,-6.1000000000000005,1.32,0.022,0.63,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.312,100,95.64,0.9400000000000001,0.78,789,0.6000000000000001,196,1.7000000000000002
+2023,1,5,18,0,-6.9,1.31,0.022,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.313,100,100.89,0.9400000000000001,0.78,789,0.7000000000000001,193,1.8
+2023,1,5,18,30,-7.1000000000000005,1.31,0.022,0.63,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.314,100,106.3,0.9400000000000001,0.78,789,0.7000000000000001,192,2
+2023,1,5,19,0,-7.300000000000001,1.29,0.021,0.63,0,0,0,0,6,-7.300000000000001,0,0,0,0,0.316,100,111.84,0.9400000000000001,0.78,789,0.7000000000000001,190,2.2
+2023,1,5,19,30,-7.2,1.29,0.021,0.63,0,0,0,0,9,-7.300000000000001,0,0,0,0,0.316,99.33,117.45,0.9400000000000001,0.78,788,0.7000000000000001,189,2.2
+2023,1,5,20,0,-7.2,1.28,0.02,0.63,0,0,0,0,9,-7.4,0,0,0,0,0.317,98.38,123.13000000000001,0.9500000000000001,0.78,788,0.7000000000000001,188,2.2
+2023,1,5,20,30,-7.2,1.28,0.02,0.63,0,0,0,0,6,-7.4,0,0,0,0,0.318,98.38,128.82,0.9500000000000001,0.78,788,0.8,188,2.2
+2023,1,5,21,0,-7.300000000000001,1.22,0.023,0.63,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.319,97.43,134.5,0.96,0.78,788,0.8,189,2.1
+2023,1,5,21,30,-7.2,1.22,0.023,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.32,96.68,140.09,0.96,0.78,788,0.8,189,2
+2023,1,5,22,0,-7.1000000000000005,1.18,0.026000000000000002,0.63,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.322,95.88,145.53,0.96,0.78,788,0.8,189,2
+2023,1,5,22,30,-7.1000000000000005,1.18,0.026000000000000002,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.323,95.76,150.69,0.96,0.78,787,0.8,188,1.9000000000000001
+2023,1,5,23,0,-7,1.16,0.029,0.63,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.324,95.62,155.35,0.96,0.78,787,0.8,188,1.8
+2023,1,5,23,30,-7,1.16,0.029,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.326,95.62,159.14000000000001,0.96,0.78,787,0.8,187,1.7000000000000002
+2023,1,6,0,0,-7.1000000000000005,1.17,0.028,0.63,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.327,95.96000000000001,161.5,0.96,0.78,787,0.8,185,1.6
+2023,1,6,0,30,-7.300000000000001,1.17,0.028,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.327,97.32000000000001,161.85,0.96,0.78,786,0.8,185,1.6
+2023,1,6,1,0,-7.6000000000000005,1.16,0.026000000000000002,0.63,0,0,0,0,6,-8,0,0,0,0,0.327,97.08,160.08,0.96,0.78,786,0.8,185,1.6
+2023,1,6,1,30,-7.6000000000000005,1.16,0.026000000000000002,0.63,0,0,0,0,7,-8,0,0,0,0,0.327,97.08,156.67000000000002,0.96,0.78,786,0.8,188,1.7000000000000002
+2023,1,6,2,0,-7.6000000000000005,1.1400000000000001,0.032,0.63,0,0,0,0,6,-8,0,0,0,0,0.327,97.2,152.24,0.96,0.78,786,0.8,192,1.7000000000000002
+2023,1,6,2,30,-7.300000000000001,1.1400000000000001,0.032,0.63,0,0,0,0,7,-8,0,0,0,0,0.326,94.97,147.21,0.96,0.78,786,0.8,195,1.7000000000000002
+2023,1,6,3,0,-7,1.1400000000000001,0.035,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.326,96.86,141.85,0.96,0.78,786,0.8,199,1.7000000000000002
+2023,1,6,3,30,-6.7,1.1400000000000001,0.035,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.327,94.65,136.29,0.96,0.78,786,0.8,201,1.8
+2023,1,6,4,0,-6.5,1.1400000000000001,0.032,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.327,96.61,130.63,0.96,0.78,786,0.8,204,1.8
+2023,1,6,4,30,-6.4,1.1400000000000001,0.032,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.328,95.87,124.93,0.96,0.78,786,0.8,207,1.8
+2023,1,6,5,0,-6.300000000000001,1.17,0.031,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.329,95.73,119.25,0.96,0.78,786,0.8,209,1.8
+2023,1,6,5,30,-6.5,1.17,0.031,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.329,97.2,113.60000000000001,0.96,0.78,786,0.8,213,1.9000000000000001
+2023,1,6,6,0,-6.6000000000000005,1.19,0.029,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.33,95.89,108.04,0.9500000000000001,0.78,786,0.7000000000000001,217,1.9000000000000001
+2023,1,6,6,30,-6.800000000000001,1.19,0.029,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.329,97.37,102.58,0.9500000000000001,0.78,786,0.7000000000000001,221,1.9000000000000001
+2023,1,6,7,0,-7,1.2,0.028,0.63,0,0,0,0,8,-7.5,0,0,0,0,0.329,96.09,97.27,0.9500000000000001,0.78,787,0.7000000000000001,225,1.9000000000000001
+2023,1,6,7,30,-6.6000000000000005,1.2,0.028,0.63,0,0,0,1,5,-7.5,0,0,14,0,0.328,93.18,92.14,0.9500000000000001,0.78,787,0.7000000000000001,228,2
+2023,1,6,8,0,-6.300000000000001,1.2,0.031,0.63,21,334,38,7,4,-6.9,12,0,100,12,0.327,95.32000000000001,87.03,0.96,0.78,787,0.7000000000000001,231,2.1
+2023,1,6,8,30,-5.300000000000001,1.2,0.031,0.63,34,594,112,5,8,-6.9,31,0,71,31,0.327,88.33,82.5,0.96,0.78,787,0.7000000000000001,233,2.5
+2023,1,6,9,0,-4.3,1.22,0.031,0.63,45,726,193,2,8,-4.9,67,1,21,67,0.326,95.38,78.23,0.96,0.78,788,0.7000000000000001,235,2.9000000000000004
+2023,1,6,9,30,-3.4000000000000004,1.22,0.031,0.63,52,810,271,1,7,-4.9,69,3,11,70,0.325,89.17,74.33,0.9500000000000001,0.78,788,0.7000000000000001,236,3.1
+2023,1,6,10,0,-2.6,1.25,0.028,0.63,57,866,341,0,7,-3.6,152,61,0,172,0.324,92.55,70.88,0.9500000000000001,0.78,788,0.7000000000000001,237,3.3000000000000003
+2023,1,6,10,30,-2,1.25,0.028,0.63,61,904,400,0,7,-3.6,199,321,0,319,0.324,88.54,67.97,0.9500000000000001,0.78,788,0.7000000000000001,239,3.3000000000000003
+2023,1,6,11,0,-1.3,1.26,0.025,0.63,63,930,446,0,7,-2.8000000000000003,230,79,0,263,0.323,89.66,65.67,0.9400000000000001,0.78,788,0.7000000000000001,241,3.3000000000000003
+2023,1,6,11,30,-1,1.26,0.025,0.63,64,947,479,0,7,-2.8000000000000003,273,67,0,302,0.322,87.72,64.04,0.9400000000000001,0.78,788,0.7000000000000001,242,3.3000000000000003
+2023,1,6,12,0,-0.7000000000000001,1.27,0.022,0.63,65,957,497,0,7,-2.4000000000000004,261,43,0,280,0.321,88.06,63.14,0.9400000000000001,0.78,788,0.7000000000000001,243,3.2
+2023,1,6,12,30,-0.5,1.27,0.022,0.63,63,960,499,0,7,-2.4000000000000004,278,53,0,302,0.32,86.78,63.01,0.93,0.78,788,0.7000000000000001,242,3.1
+2023,1,6,13,0,-0.30000000000000004,1.25,0.02,0.63,63,956,487,0,7,-2.2,289,75,0,322,0.32,87.32000000000001,63.65,0.93,0.78,789,0.7000000000000001,241,3
+2023,1,6,13,30,-0.30000000000000004,1.25,0.02,0.63,60,944,459,0,7,-2.2,244,30,0,257,0.319,87.32000000000001,65.03,0.9400000000000001,0.78,789,0.7000000000000001,239,2.9000000000000004
+2023,1,6,14,0,-0.30000000000000004,1.22,0.021,0.63,59,923,418,0,7,-2,209,22,0,218,0.319,88.56,67.11,0.9400000000000001,0.78,789,0.7000000000000001,237,2.8000000000000003
+2023,1,6,14,30,-0.5,1.22,0.021,0.63,55,892,363,0,7,-2,180,20,0,187,0.319,89.85000000000001,69.82000000000001,0.9400000000000001,0.78,789,0.7000000000000001,232,2.4000000000000004
+2023,1,6,15,0,-0.7000000000000001,1.2,0.022,0.63,50,845,296,0,7,-1.7000000000000002,149,17,0,154,0.318,92.66,73.09,0.9400000000000001,0.78,790,0.7000000000000001,227,2
+2023,1,6,15,30,-1.5,1.2,0.022,0.63,45,775,221,0,7,-1.7000000000000002,125,16,0,129,0.318,98.24000000000001,76.85000000000001,0.9400000000000001,0.78,790,0.7000000000000001,223,1.7000000000000002
+2023,1,6,16,0,-2.4000000000000004,1.18,0.023,0.63,36,666,140,3,7,-2.8000000000000003,65,5,43,66,0.318,96.82000000000001,81,0.9400000000000001,0.78,790,0.7000000000000001,219,1.3
+2023,1,6,16,30,-3.1,1.18,0.023,0.63,25,479,63,7,7,-3.1,21,0,100,21,0.319,100,85.46000000000001,0.9400000000000001,0.78,791,0.7000000000000001,220,1.4000000000000001
+2023,1,6,17,0,-3.7,1.16,0.023,0.63,7,90,7,4,7,-4.1000000000000005,3,0,57,3,0.319,96.71000000000001,89.98,0.9400000000000001,0.8,791,0.7000000000000001,220,1.4000000000000001
+2023,1,6,17,30,-3.9000000000000004,1.16,0.023,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.319,98.17,95.49,0.9400000000000001,0.8,791,0.7000000000000001,224,1.4000000000000001
+2023,1,6,18,0,-4.1000000000000005,1.1500000000000001,0.022,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.319,97.13,100.74000000000001,0.9400000000000001,0.8,792,0.7000000000000001,228,1.4000000000000001
+2023,1,6,18,30,-4.3,1.1500000000000001,0.022,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.319,98.60000000000001,106.15,0.9400000000000001,0.8,792,0.8,232,1.4000000000000001
+2023,1,6,19,0,-4.4,1.1500000000000001,0.021,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.32,97.98,111.68,0.93,0.8,793,0.8,237,1.4000000000000001
+2023,1,6,19,30,-4.6000000000000005,1.1500000000000001,0.021,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.32,99.46000000000001,117.3,0.93,0.8,793,0.8,242,1.4000000000000001
+2023,1,6,20,0,-4.800000000000001,1.17,0.019,0.63,0,0,0,0,7,-5,0,0,0,0,0.32,98.34,122.98,0.93,0.8,793,0.8,247,1.4000000000000001
+2023,1,6,20,30,-5.1000000000000005,1.17,0.019,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.32,100,128.67000000000002,0.93,0.8,793,0.7000000000000001,252,1.4000000000000001
+2023,1,6,21,0,-5.300000000000001,1.21,0.017,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.319,98.21000000000001,134.34,0.92,0.8,793,0.7000000000000001,256,1.3
+2023,1,6,21,30,-5.7,1.21,0.017,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.319,100,139.94,0.92,0.8,793,0.7000000000000001,261,1.2000000000000002
+2023,1,6,22,0,-6.1000000000000005,1.26,0.015,0.63,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.319,98.47,145.38,0.91,0.8,794,0.7000000000000001,265,1.2000000000000002
+2023,1,6,22,30,-6.6000000000000005,1.26,0.015,0.63,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.318,100,150.53,0.91,0.8,794,0.7000000000000001,275,1.1
+2023,1,6,23,0,-7.1000000000000005,1.28,0.014,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.317,99.15,155.19,0.9,0.8,794,0.7000000000000001,285,1.1
+2023,1,6,23,30,-7.300000000000001,1.28,0.014,0.63,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.316,100,158.98,0.9,0.8,794,0.7000000000000001,292,1
+2023,1,7,0,0,-7.6000000000000005,1.3,0.013000000000000001,0.63,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.315,100,161.36,0.9,0.8,794,0.7000000000000001,299,1
+2023,1,7,0,30,-7.7,1.3,0.013000000000000001,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.314,100,161.74,0.91,0.8,794,0.7000000000000001,309,0.8
+2023,1,7,1,0,-7.800000000000001,1.31,0.012,0.63,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.313,100,160,0.91,0.8,794,0.7000000000000001,319,0.7000000000000001
+2023,1,7,1,30,-8,1.31,0.012,0.63,0,0,0,0,4,-8,0,0,0,0,0.312,100,156.63,0.91,0.8,794,0.7000000000000001,335,0.6000000000000001
+2023,1,7,2,0,-8.200000000000001,1.3,0.013000000000000001,0.63,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.311,100,152.22,0.91,0.8,794,0.7000000000000001,352,0.5
+2023,1,7,2,30,-8.5,1.3,0.013000000000000001,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.311,100,147.21,0.91,0.8,794,0.6000000000000001,176,0.4
+2023,1,7,3,0,-8.9,1.31,0.012,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.311,100,141.85,0.91,0.8,794,0.6000000000000001,0,0.30000000000000004
+2023,1,7,3,30,-9.200000000000001,1.31,0.012,0.63,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.31,100,136.3,0.91,0.8,795,0.6000000000000001,145,0.30000000000000004
+2023,1,7,4,0,-9.5,1.31,0.012,0.63,0,0,0,0,4,-9.5,0,0,29,0,0.31,100,130.64000000000001,0.91,0.8,795,0.6000000000000001,291,0.2
+2023,1,7,4,30,-9.8,1.31,0.012,0.63,0,0,0,0,4,-9.8,0,0,0,0,0.31,100,124.95,0.91,0.8,795,0.6000000000000001,259,0.30000000000000004
+2023,1,7,5,0,-10.200000000000001,1.31,0.012,0.63,0,0,0,0,4,-10.200000000000001,0,0,0,0,0.31,100,119.26,0.91,0.8,795,0.6000000000000001,226,0.30000000000000004
+2023,1,7,5,30,-10.4,1.31,0.012,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.309,100,113.61,0.91,0.8,795,0.6000000000000001,213,0.30000000000000004
+2023,1,7,6,0,-10.600000000000001,1.31,0.012,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.308,100,108.04,0.91,0.8,796,0.6000000000000001,200,0.30000000000000004
+2023,1,7,6,30,-10.8,1.31,0.012,0.63,0,0,0,0,4,-10.8,0,0,0,0,0.307,100,102.58,0.91,0.8,796,0.5,194,0.4
+2023,1,7,7,0,-10.9,1.3,0.011,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.306,100,97.26,0.91,0.8,796,0.5,189,0.4
+2023,1,7,7,30,-10.600000000000001,1.3,0.011,0.63,0,0,0,2,4,-10.700000000000001,0,0,29,0,0.305,99,92.12,0.91,0.8,796,0.5,179,0.5
+2023,1,7,8,0,-10.4,1.3,0.011,0.63,20,411,41,7,4,-10.600000000000001,20,0,100,20,0.304,98.51,87.01,0.91,0.8,796,0.5,169,0.6000000000000001
+2023,1,7,8,30,-9.1,1.3,0.011,0.63,29,672,117,4,4,-10.600000000000001,61,159,57,82,0.303,89.03,82.47,0.91,0.8,797,0.5,167,0.8
+2023,1,7,9,0,-7.800000000000001,1.31,0.011,0.63,36,797,199,0,0,-8.5,50,694,0,192,0.303,95,78.18,0.91,0.8,797,0.5,165,1
+2023,1,7,9,30,-6.4,1.31,0.011,0.63,42,875,279,0,0,-8.5,42,875,0,279,0.302,85.29,74.27,0.91,0.8,797,0.4,170,1.4000000000000001
+2023,1,7,10,0,-5,1.32,0.011,0.63,46,926,350,0,0,-6,46,926,0,350,0.301,92.89,70.82000000000001,0.91,0.8,797,0.4,175,1.8
+2023,1,7,10,30,-3.9000000000000004,1.32,0.011,0.63,49,958,410,0,0,-6,49,958,0,410,0.301,85.51,67.89,0.92,0.8,797,0.4,183,2
+2023,1,7,11,0,-2.9000000000000004,1.25,0.012,0.63,54,978,458,0,0,-4.4,54,978,0,458,0.3,89.39,65.58,0.92,0.8,796,0.4,191,2.2
+2023,1,7,11,30,-2.2,1.25,0.012,0.63,55,992,491,0,0,-4.4,55,992,0,491,0.3,84.87,63.93,0.92,0.8,796,0.4,199,2.4000000000000004
+2023,1,7,12,0,-1.5,1.24,0.012,0.63,57,999,510,0,7,-3.6,165,660,0,464,0.299,85.79,63.03,0.93,0.8,796,0.4,207,2.7
+2023,1,7,12,30,-1.3,1.24,0.012,0.63,56,1000,512,0,0,-3.6,105,846,0,491,0.3,84.54,62.88,0.92,0.8,796,0.4,213,2.8000000000000003
+2023,1,7,13,0,-1.1,1.23,0.012,0.63,56,995,500,0,0,-3.4000000000000004,56,995,0,500,0.3,84.61,63.51,0.92,0.8,795,0.4,219,2.9000000000000004
+2023,1,7,13,30,-1.1,1.23,0.012,0.63,54,984,472,0,0,-3.4000000000000004,61,964,18,470,0.3,84.61,64.88,0.92,0.8,795,0.4,221,2.9000000000000004
+2023,1,7,14,0,-1.1,1.23,0.012,0.63,52,966,430,0,0,-3.4000000000000004,82,859,14,418,0.3,84.3,66.96000000000001,0.92,0.8,795,0.4,224,2.8000000000000003
+2023,1,7,14,30,-1.4000000000000001,1.23,0.012,0.63,48,938,374,0,7,-3.4000000000000004,134,599,14,342,0.3,86.17,69.67,0.92,0.8,795,0.4,225,2.4000000000000004
+2023,1,7,15,0,-1.8,1.22,0.012,0.63,44,896,307,0,0,-3.5,56,841,14,303,0.299,88.35000000000001,72.93,0.92,0.8,795,0.4,225,1.9000000000000001
+2023,1,7,15,30,-3.2,1.22,0.012,0.63,39,833,231,0,0,-3.5,39,833,0,231,0.299,98,76.68,0.92,0.8,795,0.4,224,1.5
+2023,1,7,16,0,-4.5,1.21,0.013000000000000001,0.63,32,732,149,0,0,-5.9,32,732,0,149,0.298,89.95,80.84,0.92,0.8,795,0.4,222,1.2000000000000002
+2023,1,7,16,30,-5.7,1.21,0.013000000000000001,0.63,23,556,69,0,0,-5.9,23,556,0,69,0.298,98.5,85.3,0.92,0.8,795,0.4,218,1.3
+2023,1,7,17,0,-6.800000000000001,1.19,0.014,0.63,8,113,8,0,0,-7.800000000000001,8,113,0,8,0.297,92.42,89.83,0.92,0.8,795,0.4,214,1.3
+2023,1,7,17,30,-7.4,1.19,0.014,0.63,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.297,96.79,95.33,0.92,0.8,795,0.4,209,1.4000000000000001
+2023,1,7,18,0,-8,1.17,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.297,96.68,100.58,0.93,0.8,795,0.4,204,1.4000000000000001
+2023,1,7,18,30,-8.6,1.17,0.015,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.296,100,105.99000000000001,0.93,0.8,795,0.4,203,1.4000000000000001
+2023,1,7,19,0,-9.200000000000001,1.1500000000000001,0.016,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.296,100,111.53,0.93,0.8,795,0.4,202,1.5
+2023,1,7,19,30,-9.8,1.1500000000000001,0.016,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.295,100,117.15,0.93,0.8,795,0.4,201,1.5
+2023,1,7,20,0,-10.3,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.295,100,122.82000000000001,0.93,0.8,795,0.4,200,1.5
+2023,1,7,20,30,-10.700000000000001,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.295,100,128.52,0.93,0.8,795,0.4,197,1.6
+2023,1,7,21,0,-11.100000000000001,1.11,0.018000000000000002,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.294,100,134.19,0.93,0.8,795,0.4,193,1.6
+2023,1,7,21,30,-11.200000000000001,1.11,0.018000000000000002,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.294,100,139.78,0.93,0.8,795,0.4,190,1.8
+2023,1,7,22,0,-11.200000000000001,1.11,0.02,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.294,100,145.22,0.93,0.8,795,0.4,187,1.9000000000000001
+2023,1,7,22,30,-11.100000000000001,1.11,0.02,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.293,100,150.37,0.93,0.8,795,0.4,186,1.9000000000000001
+2023,1,7,23,0,-10.9,1.12,0.022,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.291,98.58,155.03,0.9400000000000001,0.8,795,0.4,185,1.9000000000000001
+2023,1,7,23,30,-10.700000000000001,1.12,0.022,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.29,97.03,158.82,0.9400000000000001,0.8,795,0.4,188,1.9000000000000001
+2023,1,8,0,0,-10.5,1.1400000000000001,0.024,0.63,0,0,0,0,7,-11,0,0,0,0,0.28800000000000003,95.95,161.21,0.9400000000000001,0.8,794,0.4,190,1.8
+2023,1,8,0,30,-10.3,1.1400000000000001,0.024,0.63,0,0,0,0,7,-11,0,0,0,0,0.28600000000000003,94.44,161.62,0.9400000000000001,0.8,794,0.5,192,1.8
+2023,1,8,1,0,-10.100000000000001,1.1400000000000001,0.027,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.28500000000000003,94.54,159.92000000000002,0.9500000000000001,0.8,794,0.5,194,1.8
+2023,1,8,1,30,-9.700000000000001,1.1400000000000001,0.027,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.28400000000000003,91.60000000000001,156.58,0.9500000000000001,0.8,794,0.5,195,1.8
+2023,1,8,2,0,-9.3,1.1500000000000001,0.03,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.28300000000000003,92.43,152.19,0.9500000000000001,0.8,794,0.6000000000000001,195,1.7000000000000002
+2023,1,8,2,30,-9,1.1500000000000001,0.03,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.28300000000000003,90.28,147.20000000000002,0.9500000000000001,0.8,794,0.6000000000000001,194,1.7000000000000002
+2023,1,8,3,0,-8.700000000000001,1.17,0.03,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.28300000000000003,91.14,141.85,0.9500000000000001,0.8,794,0.6000000000000001,194,1.8
+2023,1,8,3,30,-8.700000000000001,1.17,0.03,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.28200000000000003,91.14,136.3,0.9500000000000001,0.8,794,0.6000000000000001,195,1.8
+2023,1,8,4,0,-8.700000000000001,1.2,0.028,0.63,0,0,0,0,6,-10.100000000000001,0,0,0,0,0.28200000000000003,89.84,130.65,0.9400000000000001,0.8,793,0.7000000000000001,196,1.8
+2023,1,8,4,30,-8.9,1.2,0.028,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.281,91.26,124.95,0.9400000000000001,0.8,793,0.6000000000000001,198,1.8
+2023,1,8,5,0,-9.200000000000001,1.21,0.027,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.281,88.9,119.26,0.9400000000000001,0.8,793,0.6000000000000001,200,1.9000000000000001
+2023,1,8,5,30,-9.3,1.21,0.027,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.281,89.60000000000001,113.61,0.9400000000000001,0.8,793,0.6000000000000001,201,1.9000000000000001
+2023,1,8,6,0,-9.5,1.23,0.025,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.281,86.79,108.04,0.9400000000000001,0.8,793,0.6000000000000001,203,1.9000000000000001
+2023,1,8,6,30,-9.5,1.23,0.025,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.28200000000000003,86.79,102.57000000000001,0.9400000000000001,0.8,793,0.6000000000000001,203,1.9000000000000001
+2023,1,8,7,0,-9.600000000000001,1.26,0.022,0.63,0,0,0,0,6,-11.8,0,0,0,0,0.28200000000000003,84.16,97.25,0.9400000000000001,0.8,793,0.6000000000000001,204,2
+2023,1,8,7,30,-9.1,1.26,0.022,0.63,0,0,0,2,6,-11.8,0,0,29,0,0.28200000000000003,80.92,92.10000000000001,0.93,0.8,793,0.6000000000000001,204,2.1
+2023,1,8,8,0,-8.700000000000001,1.29,0.02,0.63,21,381,41,7,6,-11.5,16,0,100,16,0.28200000000000003,80.09,86.98,0.93,0.8,792,0.6000000000000001,205,2.2
+2023,1,8,8,30,-7.2,1.29,0.02,0.63,32,644,117,4,6,-11.5,37,0,57,37,0.28200000000000003,71.39,82.43,0.93,0.8,793,0.6000000000000001,208,2.3000000000000003
+2023,1,8,9,0,-5.7,1.32,0.019,0.63,41,769,199,0,6,-9,51,0,0,51,0.28200000000000003,77.8,78.14,0.93,0.8,793,0.6000000000000001,212,2.5
+2023,1,8,9,30,-4.5,1.32,0.019,0.63,47,844,277,0,6,-9,87,3,0,88,0.28200000000000003,71.05,74.22,0.93,0.8,793,0.6000000000000001,217,2.9000000000000004
+2023,1,8,10,0,-3.2,1.32,0.02,0.63,54,893,348,0,7,-7,160,206,0,228,0.28300000000000003,75.13,70.75,0.93,0.8,793,0.6000000000000001,222,3.4000000000000004
+2023,1,8,10,30,-2.4000000000000004,1.32,0.02,0.63,58,926,408,0,7,-7,200,383,7,345,0.28300000000000003,70.71000000000001,67.81,0.93,0.8,792,0.6000000000000001,224,3.9000000000000004
+2023,1,8,11,0,-1.7000000000000002,1.32,0.021,0.63,62,948,455,0,7,-5.4,139,667,14,416,0.28300000000000003,75.60000000000001,65.48,0.93,0.8,792,0.6000000000000001,226,4.4
+2023,1,8,11,30,-1.3,1.32,0.021,0.63,64,961,488,0,7,-5.4,150,695,7,457,0.28200000000000003,73.41,63.82,0.93,0.8,792,0.6000000000000001,226,4.7
+2023,1,8,12,0,-0.9,1.31,0.023,0.63,65,967,506,0,7,-4.7,139,729,7,471,0.281,75.34,62.9,0.93,0.8,792,0.6000000000000001,225,4.9
+2023,1,8,12,30,-0.8,1.31,0.023,0.63,67,968,510,0,7,-4.7,209,515,4,445,0.281,74.69,62.75,0.93,0.8,791,0.6000000000000001,224,4.9
+2023,1,8,13,0,-0.6000000000000001,1.32,0.023,0.63,65,963,497,0,7,-4.5,105,830,14,477,0.281,75.19,63.36,0.93,0.8,791,0.6000000000000001,222,4.9
+2023,1,8,13,30,-0.6000000000000001,1.32,0.023,0.63,63,953,470,0,7,-4.5,86,849,18,448,0.28200000000000003,75.19,64.73,0.93,0.8,791,0.6000000000000001,220,4.7
+2023,1,8,14,0,-0.5,1.35,0.021,0.63,60,935,428,0,7,-4.2,133,660,21,393,0.28200000000000003,76.12,66.8,0.93,0.8,791,0.6000000000000001,218,4.4
+2023,1,8,14,30,-0.8,1.35,0.021,0.63,56,906,373,0,7,-4.2,159,113,4,199,0.28400000000000003,77.8,69.5,0.93,0.8,791,0.6000000000000001,216,3.7
+2023,1,8,15,0,-1,1.35,0.022,0.63,51,862,306,0,0,-3.9000000000000004,92,559,0,258,0.28700000000000003,80.95,72.77,0.93,0.8,791,0.6000000000000001,214,3
+2023,1,8,15,30,-2.5,1.35,0.022,0.63,45,794,230,0,0,-3.9000000000000004,51,764,14,229,0.289,90.39,76.52,0.93,0.8,791,0.6000000000000001,213,2.4000000000000004
+2023,1,8,16,0,-3.9000000000000004,1.32,0.024,0.63,38,687,149,2,7,-5.9,72,160,36,98,0.292,85.73,80.67,0.9400000000000001,0.8,791,0.6000000000000001,212,1.9000000000000001
+2023,1,8,16,30,-5.300000000000001,1.32,0.024,0.63,26,505,69,7,7,-5.9,25,0,100,25,0.295,95.27,85.14,0.9400000000000001,0.8,791,0.6000000000000001,213,1.9000000000000001
+2023,1,8,17,0,-6.800000000000001,1.26,0.025,0.63,10,133,11,4,7,-8.8,6,0,57,6,0.298,85.55,89.69,0.9400000000000001,0.8,791,0.6000000000000001,215,1.9000000000000001
+2023,1,8,17,30,-7,1.26,0.025,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.3,86.88,95.16,0.9500000000000001,0.8,791,0.7000000000000001,215,2.1
+2023,1,8,18,0,-7.2,1.21,0.024,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.302,85.65,100.42,0.9500000000000001,0.8,792,0.7000000000000001,216,2.2
+2023,1,8,18,30,-6.800000000000001,1.21,0.024,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.303,83.05,105.83,0.9500000000000001,0.8,792,0.7000000000000001,215,2.2
+2023,1,8,19,0,-6.4,1.19,0.023,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.303,86.21000000000001,111.37,0.9500000000000001,0.8,792,0.8,215,2.3000000000000003
+2023,1,8,19,30,-6.2,1.19,0.023,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.303,84.91,116.99000000000001,0.9500000000000001,0.8,792,0.7000000000000001,214,2.3000000000000003
+2023,1,8,20,0,-6,1.2,0.022,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.303,88.17,122.67,0.9400000000000001,0.8,792,0.7000000000000001,214,2.3000000000000003
+2023,1,8,20,30,-6.300000000000001,1.2,0.022,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.302,90.22,128.36,0.9400000000000001,0.8,792,0.7000000000000001,213,2.2
+2023,1,8,21,0,-6.5,1.23,0.019,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.3,89.98,134.03,0.93,0.8,793,0.6000000000000001,212,2.1
+2023,1,8,21,30,-7.2,1.23,0.019,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.301,94.96000000000001,139.62,0.93,0.8,793,0.6000000000000001,212,2
+2023,1,8,22,0,-7.800000000000001,1.26,0.016,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.301,92.63,145.06,0.92,0.8,793,0.5,212,1.9000000000000001
+2023,1,8,22,30,-8.5,1.26,0.016,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.301,97.81,150.21,0.92,0.8,793,0.5,211,1.9000000000000001
+2023,1,8,23,0,-9.200000000000001,1.27,0.014,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.302,95.39,154.86,0.91,0.8,793,0.5,210,1.9000000000000001
+2023,1,8,23,30,-9.700000000000001,1.27,0.014,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.302,99.21000000000001,158.66,0.91,0.8,793,0.4,208,1.9000000000000001
+2023,1,9,0,0,-10.200000000000001,1.27,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.301,97.4,161.06,0.91,0.8,793,0.4,206,1.8
+2023,1,9,0,30,-10.600000000000001,1.27,0.014,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.3,100,161.49,0.91,0.8,792,0.4,205,1.8
+2023,1,9,1,0,-10.9,1.28,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.3,99.62,159.83,0.91,0.8,792,0.4,203,1.8
+2023,1,9,1,30,-11,1.28,0.014,0.63,0,0,0,0,0,-11,0,0,0,0,0.299,100,156.52,0.91,0.8,792,0.4,200,1.7000000000000002
+2023,1,9,2,0,-11.200000000000001,1.29,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.297,100,152.16,0.91,0.8,792,0.4,197,1.7000000000000002
+2023,1,9,2,30,-11.100000000000001,1.29,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.296,99.55,147.18,0.91,0.8,792,0.4,194,1.6
+2023,1,9,3,0,-11.100000000000001,1.3,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.294,99.57000000000001,141.84,0.91,0.8,792,0.5,192,1.6
+2023,1,9,3,30,-11,1.3,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.292,98.66,136.3,0.92,0.8,791,0.5,193,1.5
+2023,1,9,4,0,-11,1.32,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.289,97.97,130.65,0.92,0.8,791,0.5,193,1.5
+2023,1,9,4,30,-10.8,1.32,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.28700000000000003,96.42,124.95,0.92,0.8,791,0.5,193,1.5
+2023,1,9,5,0,-10.700000000000001,1.33,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.28500000000000003,95.46000000000001,119.26,0.92,0.8,791,0.6000000000000001,194,1.4000000000000001
+2023,1,9,5,30,-10.600000000000001,1.33,0.014,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.28500000000000003,94.7,113.61,0.92,0.8,791,0.6000000000000001,191,1.5
+2023,1,9,6,0,-10.600000000000001,1.34,0.015,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.28400000000000003,94.26,108.03,0.92,0.8,791,0.6000000000000001,189,1.6
+2023,1,9,6,30,-10.5,1.34,0.015,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.28400000000000003,93.52,102.56,0.92,0.8,791,0.6000000000000001,190,1.6
+2023,1,9,7,0,-10.4,1.32,0.017,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.28400000000000003,91.92,97.23,0.93,0.8,791,0.6000000000000001,192,1.7000000000000002
+2023,1,9,7,30,-9.5,1.32,0.017,0.63,0,0,0,2,7,-11.5,0,0,29,0,0.28400000000000003,85.62,92.08,0.93,0.8,791,0.6000000000000001,193,2
+2023,1,9,8,0,-8.6,1.3,0.02,0.63,21,380,41,7,7,-10.5,23,1,100,23,0.28400000000000003,85.81,86.95,0.93,0.8,791,0.6000000000000001,194,2.2
+2023,1,9,8,30,-7,1.3,0.02,0.63,33,635,117,3,7,-10.5,71,11,46,72,0.28500000000000003,75.81,82.39,0.9400000000000001,0.8,791,0.7000000000000001,194,2.4000000000000004
+2023,1,9,9,0,-5.4,1.3,0.021,0.63,42,755,198,0,7,-7.9,128,39,0,136,0.28500000000000003,82.3,78.08,0.9400000000000001,0.8,791,0.7000000000000001,194,2.6
+2023,1,9,9,30,-4,1.3,0.021,0.63,50,829,276,0,7,-7.9,172,149,0,213,0.28500000000000003,74.05,74.15,0.9400000000000001,0.8,791,0.8,197,3
+2023,1,9,10,0,-2.6,1.27,0.024,0.63,56,873,345,0,7,-5.6000000000000005,167,90,0,197,0.28500000000000003,79.97,70.67,0.9500000000000001,0.8,791,0.8,201,3.5
+2023,1,9,10,30,-2,1.27,0.024,0.63,60,908,404,0,6,-5.6000000000000005,142,3,0,143,0.28500000000000003,76.51,67.72,0.9500000000000001,0.8,791,0.8,205,3.6
+2023,1,9,11,0,-1.4000000000000001,1.25,0.022,0.63,62,930,450,0,6,-4.1000000000000005,148,2,0,149,0.28500000000000003,81.74,65.37,0.9400000000000001,0.8,791,0.9,209,3.7
+2023,1,9,11,30,-1.1,1.25,0.022,0.63,64,944,482,0,6,-4.1000000000000005,177,5,0,179,0.28500000000000003,79.86,63.7,0.9500000000000001,0.8,790,0.9,208,4
+2023,1,9,12,0,-0.9,1.24,0.021,0.63,65,952,501,0,6,-3.4000000000000004,238,26,0,250,0.28500000000000003,82.89,62.77,0.9500000000000001,0.8,790,0.9,207,4.2
+2023,1,9,12,30,-0.7000000000000001,1.24,0.021,0.63,65,951,503,0,6,-3.5,197,6,0,200,0.28600000000000003,81.59,62.6,0.9500000000000001,0.8,789,0.9,207,4.5
+2023,1,9,13,0,-0.5,1.21,0.023,0.63,66,944,491,0,6,-2.9000000000000004,172,3,0,173,0.28600000000000003,83.76,63.21,0.9500000000000001,0.8,789,1,207,4.9
+2023,1,9,13,30,-0.30000000000000004,1.21,0.023,0.63,64,931,464,0,6,-2.9000000000000004,160,3,0,161,0.28700000000000003,82.55,64.57000000000001,0.9500000000000001,0.8,789,1,206,5
+2023,1,9,14,0,-0.1,1.2,0.024,0.63,62,911,423,0,6,-2.4000000000000004,190,23,0,199,0.28700000000000003,84.38,66.63,0.9500000000000001,0.8,789,1,206,5.1000000000000005
+2023,1,9,14,30,-0.1,1.2,0.024,0.63,57,883,369,0,7,-2.4000000000000004,209,38,0,222,0.28800000000000003,84.27,69.33,0.9500000000000001,0.8,788,0.9,204,4.800000000000001
+2023,1,9,15,0,-0.1,1.2,0.023,0.63,52,841,303,0,7,-2.2,168,33,0,178,0.28800000000000003,85.68,72.60000000000001,0.9500000000000001,0.8,788,0.9,203,4.5
+2023,1,9,15,30,-0.6000000000000001,1.2,0.023,0.63,46,777,229,0,7,-2.2,99,23,0,104,0.28700000000000003,88.85000000000001,76.35000000000001,0.9500000000000001,0.8,788,0.9,203,4.2
+2023,1,9,16,0,-1.1,1.21,0.022,0.63,37,675,148,2,6,-2.7,48,3,29,48,0.28600000000000003,88.66,80.51,0.9500000000000001,0.8,788,0.9,204,3.9000000000000004
+2023,1,9,16,30,-1.7000000000000002,1.21,0.022,0.63,26,500,70,7,7,-2.7,22,0,100,22,0.28700000000000003,92.65,84.98,0.9500000000000001,0.8,788,0.9,206,3.8000000000000003
+2023,1,9,17,0,-2.3000000000000003,1.21,0.022,0.63,10,136,11,4,6,-3.9000000000000004,4,0,57,4,0.28700000000000003,88.75,89.55,0.9500000000000001,0.68,788,0.9,207,3.7
+2023,1,9,17,30,-2.6,1.21,0.022,0.63,0,0,0,0,6,-3.9000000000000004,0,0,0,0,0.28800000000000003,90.74,95,0.9500000000000001,0.68,788,1,207,3.9000000000000004
+2023,1,9,18,0,-2.9000000000000004,1.21,0.021,0.63,0,0,0,0,6,-4.6000000000000005,0,0,0,0,0.28800000000000003,88.18,100.26,0.9500000000000001,0.68,788,1,208,4.1000000000000005
+2023,1,9,18,30,-3,1.21,0.021,0.63,0,0,0,0,6,-4.6000000000000005,0,0,0,0,0.289,88.83,105.67,0.9500000000000001,0.68,788,1,208,4.1000000000000005
+2023,1,9,19,0,-3.2,1.19,0.022,0.63,0,0,0,0,6,-4.800000000000001,0,0,0,0,0.29,88.60000000000001,111.21000000000001,0.9500000000000001,0.68,788,1,208,4.2
+2023,1,9,19,30,-3.1,1.19,0.022,0.63,0,0,0,0,6,-4.800000000000001,0,0,0,0,0.291,87.95,116.83,0.9500000000000001,0.68,788,1,208,4.3
+2023,1,9,20,0,-3.1,1.16,0.023,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.293,90.27,122.51,0.9500000000000001,0.68,788,1.1,208,4.4
+2023,1,9,20,30,-3,1.16,0.023,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.294,89.60000000000001,128.2,0.96,0.68,788,1.1,207,4.4
+2023,1,9,21,0,-3,1.12,0.024,0.63,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.295,93.88,133.87,0.96,0.68,788,1.1,205,4.3
+2023,1,9,21,30,-3,1.12,0.024,0.63,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.296,93.88,139.46,0.96,0.68,788,1.1,204,4.1000000000000005
+2023,1,9,22,0,-3.1,1.09,0.023,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.297,97.04,144.89000000000001,0.96,0.68,788,1.1,203,3.8000000000000003
+2023,1,9,22,30,-3.1,1.09,0.023,0.63,0,0,0,0,7,-3.5,0,0,0,0,0.298,96.92,150.04,0.96,0.68,787,1.1,200,3.7
+2023,1,9,23,0,-3.1,1.1,0.024,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,97.54,154.69,0.96,0.68,787,1.1,197,3.6
+2023,1,9,23,30,-3.1,1.1,0.024,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,97.54,158.49,0.96,0.68,787,1.1,195,3.6
+2023,1,10,0,0,-3.1,1.11,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,97.59,160.9,0.96,0.68,786,1.1,192,3.7
+2023,1,10,0,30,-3.2,1.11,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.298,98.32000000000001,161.36,0.96,0.68,786,1.1,192,3.8000000000000003
+2023,1,10,1,0,-3.2,1.09,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.298,98.23,159.73,0.96,0.68,786,1.1,191,4
+2023,1,10,1,30,-3.1,1.09,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.298,97.5,156.46,0.96,0.68,786,1.1,193,4.1000000000000005
+2023,1,10,2,0,-3,1.11,0.029,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.298,97.12,152.12,0.96,0.68,786,1.1,194,4.2
+2023,1,10,2,30,-3,1.11,0.029,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.298,97.12,147.15,0.96,0.68,786,1.1,194,4.1000000000000005
+2023,1,10,3,0,-3,1.12,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,96.83,141.82,0.96,0.68,785,1.1,194,4.1000000000000005
+2023,1,10,3,30,-3,1.12,0.025,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,96.83,136.29,0.96,0.68,785,1.1,193,4
+2023,1,10,4,0,-3,1.09,0.021,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.299,95.98,130.64000000000001,0.96,0.68,785,1.1,192,4
+2023,1,10,4,30,-2.9000000000000004,1.09,0.021,0.63,0,0,0,0,6,-3.6,0,0,0,0,0.3,95.15,124.95,0.96,0.68,784,1.1,191,4.2
+2023,1,10,5,0,-2.9000000000000004,1.06,0.021,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.3,95.8,119.25,0.96,0.68,784,1.1,190,4.4
+2023,1,10,5,30,-2.8000000000000003,1.06,0.021,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.301,95.09,113.60000000000001,0.96,0.68,784,1.1,191,4.6000000000000005
+2023,1,10,6,0,-2.7,1.03,0.024,0.63,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.302,95.89,108.02,0.96,0.68,784,1.1,192,4.800000000000001
+2023,1,10,6,30,-2.7,1.03,0.024,0.63,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.304,95.89,102.54,0.96,0.68,784,1,196,5.2
+2023,1,10,7,0,-2.6,1.03,0.028,0.63,0,0,0,0,6,-3.1,0,0,0,0,0.305,96.56,97.2,0.96,0.68,785,1,200,5.5
+2023,1,10,7,30,-2.4000000000000004,1.03,0.028,0.63,0,0,0,2,8,-3.1,0,0,29,0,0.307,95.14,92.05,0.96,0.68,785,0.9,201,5.6000000000000005
+2023,1,10,8,0,-2.3000000000000003,1.07,0.029,0.63,21,335,39,7,7,-2.8000000000000003,20,0,100,20,0.31,96.01,86.92,0.96,0.68,785,0.8,202,5.6000000000000005
+2023,1,10,8,30,-1.8,1.07,0.029,0.63,34,606,115,3,7,-2.8000000000000003,57,5,43,58,0.31,92.54,82.34,0.9500000000000001,0.68,785,0.8,204,6
+2023,1,10,9,0,-1.2000000000000002,1.11,0.023,0.63,43,748,198,0,7,-2.1,102,15,0,105,0.311,93.82000000000001,78.02,0.9500000000000001,0.68,785,0.7000000000000001,207,6.300000000000001
+2023,1,10,9,30,-0.7000000000000001,1.11,0.023,0.63,48,832,276,0,7,-2,125,43,0,137,0.311,90.57000000000001,74.08,0.9400000000000001,0.68,786,0.7000000000000001,209,6.300000000000001
+2023,1,10,10,0,-0.1,1.1,0.019,0.63,52,891,348,0,4,-1.2000000000000002,116,13,0,120,0.311,92.32000000000001,70.58,0.9400000000000001,0.68,786,0.6000000000000001,211,6.300000000000001
+2023,1,10,10,30,0.2,1.1,0.019,0.63,56,928,409,0,4,-1.2000000000000002,157,386,0,304,0.311,90.33,67.62,0.9400000000000001,0.68,786,0.6000000000000001,211,6.1000000000000005
+2023,1,10,11,0,0.5,1.1300000000000001,0.019,0.63,59,952,457,0,0,-0.9,107,787,0,436,0.311,90.51,65.26,0.9400000000000001,0.68,786,0.6000000000000001,211,5.9
+2023,1,10,11,30,0.8,1.1300000000000001,0.019,0.63,60,967,490,0,0,-0.9,60,967,0,490,0.311,88.58,63.58,0.9400000000000001,0.68,786,0.6000000000000001,211,5.7
+2023,1,10,12,0,1.1,1.17,0.018000000000000002,0.63,61,973,508,0,0,-0.7000000000000001,171,619,7,456,0.31,87.68,62.63,0.9400000000000001,0.68,785,0.6000000000000001,211,5.6000000000000005
+2023,1,10,12,30,1.3,1.17,0.018000000000000002,0.63,60,973,510,0,0,-0.7000000000000001,124,771,7,481,0.31,86.43,62.45,0.93,0.68,785,0.7000000000000001,210,5.4
+2023,1,10,13,0,1.5,1.2,0.017,0.63,59,967,497,0,0,-0.6000000000000001,62,955,11,495,0.31,85.7,63.050000000000004,0.93,0.68,785,0.7000000000000001,210,5.2
+2023,1,10,13,30,1.6,1.2,0.017,0.63,57,955,470,0,7,-0.6000000000000001,105,784,43,444,0.31,85.09,64.4,0.93,0.68,785,0.7000000000000001,209,4.800000000000001
+2023,1,10,14,0,1.6,1.22,0.017,0.63,55,932,427,0,7,-0.6000000000000001,154,589,25,389,0.311,85.35000000000001,66.46000000000001,0.93,0.68,785,0.8,209,4.5
+2023,1,10,14,30,1.5,1.22,0.017,0.63,53,899,373,0,7,-0.6000000000000001,133,529,11,321,0.311,85.85000000000001,69.16,0.93,0.68,784,0.8,207,4
+2023,1,10,15,0,1.4000000000000001,1.22,0.021,0.63,50,851,307,0,7,-0.6000000000000001,121,337,4,223,0.312,86.82000000000001,72.43,0.93,0.68,784,0.9,206,3.5
+2023,1,10,15,30,0.8,1.22,0.021,0.63,45,780,231,0,7,-0.6000000000000001,92,489,0,209,0.313,90.64,76.18,0.9400000000000001,0.68,784,0.9,202,3.1
+2023,1,10,16,0,0.2,1.2,0.026000000000000002,0.63,37,670,150,2,7,-0.9,95,111,29,114,0.313,92.18,80.33,0.9400000000000001,0.68,784,0.9,199,2.7
+2023,1,10,16,30,0,1.2,0.026000000000000002,0.63,28,491,72,7,7,-0.9,42,4,100,42,0.315,93.52,84.81,0.9400000000000001,0.68,784,0.9,195,2.8000000000000003
+2023,1,10,17,0,-0.30000000000000004,1.21,0.029,0.63,10,130,11,4,6,-1.2000000000000002,6,0,57,6,0.316,93.78,89.4,0.9500000000000001,0.67,784,0.9,192,2.8000000000000003
+2023,1,10,17,30,-0.1,1.21,0.029,0.63,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.317,92.43,94.83,0.9500000000000001,0.67,784,0.9,189,3
+2023,1,10,18,0,0,1.21,0.029,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.318,93.92,100.09,0.9500000000000001,0.67,783,0.9,186,3.1
+2023,1,10,18,30,-0.1,1.21,0.029,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.321,94.60000000000001,105.51,0.9500000000000001,0.67,783,0.9,183,3.1
+2023,1,10,19,0,-0.2,1.21,0.028,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.324,95.18,111.04,0.9500000000000001,0.67,783,0.9,179,3.1
+2023,1,10,19,30,-0.4,1.21,0.028,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.327,96.45,116.67,0.9400000000000001,0.67,782,0.9,175,3
+2023,1,10,20,0,-0.5,1.23,0.025,0.63,0,0,0,0,9,-1.1,0,0,0,0,0.331,95.37,122.34,0.9400000000000001,0.67,782,0.9,172,3
+2023,1,10,20,30,-0.7000000000000001,1.23,0.025,0.63,0,0,0,0,9,-1.2000000000000002,0,0,0,0,0.334,96.65,128.04,0.9400000000000001,0.67,781,0.9,171,3
+2023,1,10,21,0,-0.8,1.26,0.021,0.63,0,0,0,0,9,-1.5,0,0,0,0,0.336,94.81,133.71,0.93,0.67,781,0.8,170,3
+2023,1,10,21,30,-0.9,1.26,0.021,0.63,0,0,0,0,6,-1.5,0,0,0,0,0.338,95.5,139.3,0.93,0.67,781,0.8,171,3.2
+2023,1,10,22,0,-1,1.31,0.018000000000000002,0.63,0,0,0,0,6,-1.9000000000000001,0,0,0,0,0.339,93.36,144.72,0.92,0.67,780,0.8,171,3.4000000000000004
+2023,1,10,22,30,-0.8,1.31,0.018000000000000002,0.63,0,0,0,0,9,-1.9000000000000001,0,0,0,0,0.34,92.01,149.87,0.93,0.67,780,0.8,170,3.8000000000000003
+2023,1,10,23,0,-0.6000000000000001,1.27,0.023,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.341,92.91,154.51,0.93,0.67,779,0.9,170,4.2
+2023,1,10,23,30,-0.4,1.27,0.023,0.63,0,0,0,0,9,-1.6,0,0,0,0,0.342,91.57000000000001,158.31,0.9400000000000001,0.67,779,0.9,169,4.7
+2023,1,11,0,0,-0.30000000000000004,1.1300000000000001,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.34400000000000003,95.28,160.73,0.9400000000000001,0.67,778,0.9,169,5.2
+2023,1,11,0,30,-0.2,1.1300000000000001,0.028,0.63,0,0,0,0,6,-1,0,0,0,0,0.34500000000000003,94.59,161.21,0.9400000000000001,0.67,778,0.9,177,5.9
+2023,1,11,1,0,-0.2,1.05,0.026000000000000002,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.34600000000000003,95.21000000000001,159.62,0.93,0.67,778,0.9,186,6.7
+2023,1,11,1,30,-0.4,1.05,0.026000000000000002,0.63,0,0,0,0,6,-0.9,0,0,0,0,0.34900000000000003,96.60000000000001,156.38,0.9400000000000001,0.67,778,0.8,196,6.800000000000001
+2023,1,11,2,0,-0.7000000000000001,1.07,0.028,0.63,0,0,0,0,6,-1.1,0,0,0,0,0.352,96.87,152.07,0.9400000000000001,0.67,778,0.8,206,6.9
+2023,1,11,2,30,-1.1,1.07,0.028,0.63,0,0,0,0,9,-1.1,0,0,0,0,0.355,99.74000000000001,147.12,0.9400000000000001,0.67,778,0.8,215,6.2
+2023,1,11,3,0,-1.6,1.12,0.024,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.359,98.82000000000001,141.8,0.9400000000000001,0.67,779,0.7000000000000001,224,5.4
+2023,1,11,3,30,-2.3000000000000003,1.12,0.024,0.63,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.362,100,136.27,0.93,0.67,779,0.7000000000000001,236,4.800000000000001
+2023,1,11,4,0,-3,1.1500000000000001,0.02,0.63,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.365,97.03,130.63,0.93,0.67,780,0.7000000000000001,247,4.2
+2023,1,11,4,30,-3.6,1.1500000000000001,0.02,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.367,100,124.93,0.93,0.67,780,0.6000000000000001,263,3.9000000000000004
+2023,1,11,5,0,-4.2,1.12,0.018000000000000002,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.369,89.9,119.24000000000001,0.93,0.67,781,0.6000000000000001,278,3.7
+2023,1,11,5,30,-4.5,1.12,0.018000000000000002,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.371,92.07000000000001,113.58,0.92,0.67,782,0.6000000000000001,284,3.5
+2023,1,11,6,0,-4.800000000000001,1.11,0.015,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.373,85.17,108,0.92,0.67,782,0.5,290,3.3000000000000003
+2023,1,11,6,30,-5,1.11,0.015,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.375,86.57000000000001,102.52,0.92,0.67,783,0.5,288,3.1
+2023,1,11,7,0,-5.2,1.11,0.013000000000000001,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.376,83.52,97.17,0.92,0.67,783,0.5,286,2.9000000000000004
+2023,1,11,7,30,-4.9,1.11,0.013000000000000001,0.63,0,0,0,2,7,-7.5,0,0,29,0,0.377,81.75,92.01,0.92,0.67,784,0.5,283,2.9000000000000004
+2023,1,11,8,0,-4.7,1.1400000000000001,0.011,0.63,19,416,42,7,7,-7.300000000000001,17,0,100,17,0.378,82.25,86.87,0.92,0.67,784,0.5,279,3
+2023,1,11,8,30,-3.7,1.1400000000000001,0.011,0.63,27,675,118,3,7,-7.300000000000001,51,3,43,51,0.378,76.3,82.28,0.91,0.67,784,0.5,276,3.3000000000000003
+2023,1,11,9,0,-2.8000000000000003,1.16,0.011,0.63,34,796,200,0,7,-5.800000000000001,102,11,0,104,0.377,79.65,77.96000000000001,0.91,0.67,785,0.5,272,3.6
+2023,1,11,9,30,-2.1,1.16,0.011,0.63,39,869,279,0,7,-5.800000000000001,140,18,0,145,0.376,75.63,74,0.91,0.67,785,0.5,270,3.9000000000000004
+2023,1,11,10,0,-1.4000000000000001,1.16,0.011,0.63,44,916,350,0,7,-5,191,34,0,202,0.374,76.58,70.49,0.91,0.67,786,0.5,268,4.2
+2023,1,11,10,30,-1,1.16,0.011,0.63,49,945,410,0,7,-5,241,130,0,291,0.372,74.37,67.51,0.91,0.67,786,0.5,270,4.3
+2023,1,11,11,0,-0.6000000000000001,1.18,0.012,0.63,52,964,457,0,7,-4.5,233,275,0,349,0.369,74.71000000000001,65.14,0.92,0.67,786,0.6000000000000001,272,4.3
+2023,1,11,11,30,-0.4,1.18,0.012,0.63,52,979,490,0,8,-4.5,207,442,0,405,0.367,73.63,63.440000000000005,0.91,0.67,786,0.6000000000000001,277,4.4
+2023,1,11,12,0,-0.2,1.2,0.011,0.63,53,987,509,0,4,-4.3,251,408,0,440,0.365,73.82000000000001,62.480000000000004,0.91,0.67,786,0.6000000000000001,282,4.5
+2023,1,11,12,30,0,1.2,0.011,0.63,53,989,513,0,5,-4.3,193,605,14,474,0.363,72.85000000000001,62.300000000000004,0.91,0.67,787,0.6000000000000001,288,4.6000000000000005
+2023,1,11,13,0,0.1,1.19,0.011,0.63,52,985,501,0,5,-4.2,266,325,7,414,0.361,72.73,62.89,0.9,0.67,787,0.6000000000000001,293,4.7
+2023,1,11,13,30,0.1,1.19,0.011,0.63,52,974,475,0,0,-4.2,145,674,0,438,0.358,72.73,64.23,0.91,0.67,787,0.6000000000000001,295,4.7
+2023,1,11,14,0,0,1.19,0.012,0.63,50,955,434,0,0,-4.2,50,955,0,434,0.356,73.55,66.28,0.91,0.67,788,0.6000000000000001,297,4.7
+2023,1,11,14,30,-0.2,1.19,0.012,0.63,47,928,380,0,0,-4.1000000000000005,77,763,7,351,0.353,74.72,68.98,0.91,0.67,789,0.6000000000000001,297,4.4
+2023,1,11,15,0,-0.5,1.19,0.012,0.63,43,888,314,0,5,-4.3,121,203,7,183,0.34900000000000003,75.75,72.24,0.91,0.67,789,0.6000000000000001,297,4
+2023,1,11,15,30,-1.6,1.19,0.012,0.63,38,829,239,0,5,-4.2,80,320,29,157,0.34500000000000003,82.2,76,0.91,0.67,790,0.5,298,3.4000000000000004
+2023,1,11,16,0,-2.6,1.2,0.012,0.63,32,736,158,2,8,-5.4,57,368,57,120,0.342,81.14,80.15,0.9,0.67,790,0.5,298,2.7
+2023,1,11,16,30,-3.9000000000000004,1.2,0.012,0.63,24,579,78,6,5,-5.4,26,66,89,32,0.339,89.5,84.64,0.9,0.67,791,0.5,300,2.4000000000000004
+2023,1,11,17,0,-5.2,1.21,0.011,0.63,11,176,13,5,5,-7.6000000000000005,4,0,71,4,0.336,83.10000000000001,89.24,0.9,0.8,792,0.5,302,2.2
+2023,1,11,17,30,-5.800000000000001,1.21,0.011,0.63,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.334,86.98,94.66,0.9,0.8,792,0.5,303,2
+2023,1,11,18,0,-6.5,1.21,0.011,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.331,83.37,99.92,0.9,0.8,792,0.5,304,1.9000000000000001
+2023,1,11,18,30,-7,1.21,0.011,0.63,0,0,0,0,4,-8.8,0,0,0,0,0.329,86.74,105.34,0.9,0.8,793,0.5,300,1.8
+2023,1,11,19,0,-7.4,1.22,0.01,0.63,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.326,84.45,110.88,0.9,0.8,793,0.5,296,1.7000000000000002
+2023,1,11,19,30,-7.7,1.22,0.01,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.324,86.43,116.5,0.89,0.8,793,0.4,289,1.6
+2023,1,11,20,0,-8,1.23,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.322,86.13,122.18,0.89,0.8,794,0.4,283,1.5
+2023,1,11,20,30,-8.3,1.23,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.32,88.16,127.87,0.89,0.8,794,0.4,277,1.3
+2023,1,11,21,0,-8.6,1.24,0.01,0.63,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.318,88.58,133.54,0.89,0.8,794,0.4,271,1.2000000000000002
+2023,1,11,21,30,-8.8,1.24,0.01,0.63,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.317,89.97,139.13,0.89,0.8,794,0.4,267,1
+2023,1,11,22,0,-9,1.25,0.01,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.315,91.06,144.55,0.89,0.8,795,0.4,263,0.9
+2023,1,11,22,30,-9.4,1.25,0.01,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.315,93.96000000000001,149.69,0.89,0.8,795,0.4,257,0.8
+2023,1,11,23,0,-9.8,1.25,0.01,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.314,94.35000000000001,154.33,0.9,0.8,795,0.30000000000000004,252,0.8
+2023,1,11,23,30,-10.200000000000001,1.25,0.01,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.313,97.37,158.13,0.9,0.8,795,0.30000000000000004,252,0.7000000000000001
+2023,1,12,0,0,-10.600000000000001,1.26,0.01,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.312,97.57000000000001,160.55,0.9,0.8,796,0.30000000000000004,253,0.7000000000000001
+2023,1,12,0,30,-10.9,1.26,0.01,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.311,99.93,161.06,0.9,0.8,796,0.30000000000000004,223,0.6000000000000001
+2023,1,12,1,0,-11.200000000000001,1.26,0.01,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.31,99.72,159.51,0.91,0.8,796,0.30000000000000004,194,0.5
+2023,1,12,1,30,-11.4,1.26,0.01,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.308,100,156.3,0.91,0.8,796,0.4,181,0.5
+2023,1,12,2,0,-11.700000000000001,1.26,0.01,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.307,100,152.01,0.91,0.8,797,0.4,169,0.4
+2023,1,12,2,30,-11.700000000000001,1.26,0.01,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.306,100,147.08,0.91,0.8,797,0.4,99,0.30000000000000004
+2023,1,12,3,0,-11.8,1.25,0.01,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.304,100,141.77,0.91,0.8,797,0.4,29,0.30000000000000004
+2023,1,12,3,30,-12,1.25,0.01,0.63,0,0,0,0,0,-12,0,0,0,0,0.303,100,136.25,0.91,0.8,798,0.4,35,0.4
+2023,1,12,4,0,-12.100000000000001,1.24,0.01,0.63,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.302,100,130.61,0.91,0.8,798,0.4,41,0.5
+2023,1,12,4,30,-12.200000000000001,1.24,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.301,100,124.92,0.92,0.8,798,0.4,45,0.6000000000000001
+2023,1,12,5,0,-12.200000000000001,1.22,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.3,99.77,119.22,0.92,0.8,798,0.4,48,0.6000000000000001
+2023,1,12,5,30,-12.200000000000001,1.22,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.299,99.89,113.56,0.92,0.8,799,0.4,62,0.7000000000000001
+2023,1,12,6,0,-12.200000000000001,1.2,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.299,97.88,107.97,0.93,0.8,799,0.4,75,0.8
+2023,1,12,6,30,-12.100000000000001,1.2,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.298,97.09,102.49000000000001,0.93,0.8,799,0.5,87,0.8
+2023,1,12,7,0,-12,1.19,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.298,95.72,97.14,0.93,0.8,799,0.5,99,0.9
+2023,1,12,7,30,-11.700000000000001,1.19,0.011,0.63,0,0,0,2,7,-12.5,0,0,29,0,0.297,93.44,91.96000000000001,0.93,0.8,799,0.5,119,0.8
+2023,1,12,8,0,-11.3,1.2,0.01,0.63,19,425,43,7,7,-12.5,23,1,100,23,0.297,91.10000000000001,86.81,0.93,0.8,799,0.5,140,0.8
+2023,1,12,8,30,-10.100000000000001,1.2,0.01,0.63,29,683,121,3,7,-12.5,80,52,43,87,0.297,82.81,82.22,0.92,0.8,799,0.5,162,0.9
+2023,1,12,9,0,-8.9,1.22,0.01,0.63,36,801,204,0,7,-10.700000000000001,122,228,0,170,0.297,86.55,77.88,0.92,0.8,800,0.5,185,1
+2023,1,12,9,30,-7.300000000000001,1.22,0.01,0.63,42,874,284,0,0,-10.700000000000001,79,697,7,272,0.297,76.44,73.91,0.92,0.8,800,0.5,194,1.1
+2023,1,12,10,0,-5.7,1.22,0.01,0.63,46,921,355,0,0,-8.1,57,883,7,353,0.298,83.02,70.39,0.92,0.8,800,0.5,203,1.3
+2023,1,12,10,30,-4.4,1.22,0.01,0.63,53,945,416,0,0,-8.1,53,945,0,416,0.297,75.24,67.39,0.93,0.8,800,0.6000000000000001,206,1.7000000000000002
+2023,1,12,11,0,-3,1.35,0.017,0.63,60,957,464,0,0,-6.5,60,957,0,464,0.297,76.73,65.01,0.9400000000000001,0.8,800,0.6000000000000001,209,2.1
+2023,1,12,11,30,-2.1,1.35,0.017,0.63,61,970,497,0,0,-6.5,61,970,0,497,0.297,71.78,63.300000000000004,0.9400000000000001,0.8,800,0.6000000000000001,215,2.5
+2023,1,12,12,0,-1.1,1.32,0.017,0.63,63,978,517,0,0,-6.5,63,978,0,517,0.297,66.87,62.33,0.9400000000000001,0.8,799,0.6000000000000001,220,3
+2023,1,12,12,30,-0.9,1.32,0.017,0.63,62,980,520,0,0,-6.5,62,980,0,520,0.296,65.9,62.13,0.9400000000000001,0.8,799,0.6000000000000001,222,3
+2023,1,12,13,0,-0.7000000000000001,1.31,0.016,0.63,61,975,508,0,0,-6.4,61,975,0,508,0.295,65.28,62.71,0.9400000000000001,0.8,799,0.6000000000000001,224,3.1
+2023,1,12,13,30,-0.7000000000000001,1.31,0.016,0.63,59,963,480,0,0,-6.4,59,963,0,480,0.294,65.28,64.05,0.9400000000000001,0.8,799,0.7000000000000001,223,2.9000000000000004
+2023,1,12,14,0,-0.7000000000000001,1.29,0.016,0.63,56,942,438,0,0,-6.300000000000001,56,942,0,438,0.293,66.01,66.1,0.9400000000000001,0.8,799,0.7000000000000001,222,2.7
+2023,1,12,14,30,-1,1.29,0.016,0.63,53,915,384,0,0,-6.300000000000001,53,915,0,384,0.292,67.47,68.8,0.9400000000000001,0.8,799,0.7000000000000001,220,2.3000000000000003
+2023,1,12,15,0,-1.3,1.28,0.015,0.63,48,875,318,0,0,-5.7,65,808,21,314,0.291,71.79,72.06,0.9400000000000001,0.8,799,0.7000000000000001,218,2
+2023,1,12,15,30,-2.6,1.28,0.015,0.63,42,816,242,0,7,-5.7,88,550,21,223,0.29,79,75.81,0.9400000000000001,0.8,799,0.7000000000000001,215,1.6
+2023,1,12,16,0,-3.9000000000000004,1.3,0.014,0.63,35,724,161,1,7,-7.4,86,277,14,134,0.289,76.38,79.97,0.9400000000000001,0.8,799,0.7000000000000001,211,1.2000000000000002
+2023,1,12,16,30,-5,1.3,0.014,0.63,25,565,80,7,7,-7.4,45,6,100,46,0.28800000000000003,83.08,84.46000000000001,0.93,0.8,800,0.7000000000000001,209,1.3
+2023,1,12,17,0,-6.2,1.31,0.013000000000000001,0.63,11,172,14,5,7,-10,8,1,71,8,0.28700000000000003,74.26,89.07000000000001,0.93,0.8,800,0.8,207,1.3
+2023,1,12,17,30,-6.7,1.31,0.013000000000000001,0.63,0,0,0,0,7,-10,0,0,0,0,0.28700000000000003,77.15,94.48,0.93,0.8,800,0.8,206,1.4000000000000001
+2023,1,12,18,0,-7.300000000000001,1.34,0.012,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.28600000000000003,76.4,99.75,0.92,0.8,800,0.8,206,1.4000000000000001
+2023,1,12,18,30,-7.7,1.34,0.012,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.28500000000000003,78.8,105.17,0.92,0.8,800,0.8,203,1.4000000000000001
+2023,1,12,19,0,-8.1,1.34,0.011,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.28400000000000003,79.22,110.71000000000001,0.92,0.8,800,0.8,201,1.3
+2023,1,12,19,30,-8.4,1.34,0.011,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.28300000000000003,81.09,116.33,0.92,0.8,800,0.8,196,1.3
+2023,1,12,20,0,-8.700000000000001,1.33,0.012,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.28300000000000003,82.36,122.01,0.92,0.8,800,0.8,192,1.3
+2023,1,12,20,30,-8.8,1.33,0.012,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.28300000000000003,83,127.7,0.93,0.8,800,0.8,189,1.2000000000000002
+2023,1,12,21,0,-9,1.32,0.012,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.28300000000000003,85.05,133.37,0.93,0.8,800,0.8,185,1.2000000000000002
+2023,1,12,21,30,-9.1,1.32,0.012,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.28300000000000003,85.72,138.96,0.93,0.8,800,0.8,186,1.2000000000000002
+2023,1,12,22,0,-9.200000000000001,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.28300000000000003,87.04,144.38,0.92,0.8,800,0.8,186,1.1
+2023,1,12,22,30,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.28200000000000003,87.61,149.51,0.93,0.8,799,0.8,189,1.1
+2023,1,12,23,0,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.281,87.48,154.15,0.93,0.8,799,0.8,192,1
+2023,1,12,23,30,-9.3,1.33,0.012,0.63,0,0,0,0,0,-11,0,0,0,0,0.28,87.48,157.94,0.93,0.8,799,0.8,193,1
+2023,1,13,0,0,-9.3,1.29,0.014,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.279,86.81,160.37,0.93,0.8,799,0.8,194,0.9
+2023,1,13,0,30,-9.3,1.29,0.014,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.279,86.81,160.9,0.93,0.8,799,0.8,193,0.9
+2023,1,13,1,0,-9.200000000000001,1.3,0.013000000000000001,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.278,85.08,159.38,0.93,0.8,799,0.8,192,0.9
+2023,1,13,1,30,-9.3,1.3,0.013000000000000001,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.278,85.64,156.21,0.93,0.8,798,0.8,188,0.9
+2023,1,13,2,0,-9.3,1.31,0.013000000000000001,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.277,83.99,151.95000000000002,0.93,0.8,798,0.8,184,0.9
+2023,1,13,2,30,-9.3,1.31,0.013000000000000001,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.277,83.99,147.03,0.93,0.8,798,0.8,185,1
+2023,1,13,3,0,-9.4,1.34,0.012,0.63,0,0,0,0,6,-11.9,0,0,0,0,0.276,82.24,141.74,0.92,0.8,798,0.8,187,1
+2023,1,13,3,30,-9.5,1.34,0.012,0.63,0,0,0,0,6,-11.9,0,0,0,0,0.276,82.88,136.22,0.92,0.8,798,0.8,193,1
+2023,1,13,4,0,-9.600000000000001,1.35,0.012,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.275,80.82000000000001,130.58,0.93,0.8,798,0.8,199,1
+2023,1,13,4,30,-9.600000000000001,1.35,0.012,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.275,80.82000000000001,124.89,0.93,0.8,798,0.8,203,1.1
+2023,1,13,5,0,-9.700000000000001,1.35,0.013000000000000001,0.63,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.275,79.47,119.2,0.93,0.8,798,0.8,206,1.1
+2023,1,13,5,30,-9.700000000000001,1.35,0.013000000000000001,0.63,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.275,79.47,113.54,0.93,0.8,798,0.8,206,1.1
+2023,1,13,6,0,-9.8,1.33,0.014,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.276,78.67,107.94,0.93,0.8,798,0.8,205,1.1
+2023,1,13,6,30,-9.8,1.33,0.014,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.276,78.67,102.45,0.93,0.8,798,0.8,204,1.1
+2023,1,13,7,0,-9.9,1.31,0.014,0.63,0,0,0,0,7,-13,0,0,0,0,0.277,77.96000000000001,97.09,0.93,0.8,798,0.7000000000000001,203,1.2000000000000002
+2023,1,13,7,30,-9.1,1.31,0.014,0.63,0,0,0,2,7,-13,0,0,29,0,0.278,73.21000000000001,91.91,0.93,0.8,798,0.7000000000000001,204,1.2000000000000002
+2023,1,13,8,0,-8.3,1.32,0.014,0.63,20,402,43,7,7,-12.200000000000001,22,1,100,22,0.279,73.36,86.75,0.93,0.8,798,0.7000000000000001,204,1.3
+2023,1,13,8,30,-6.7,1.32,0.014,0.63,31,659,121,3,7,-12.200000000000001,71,18,43,73,0.279,64.83,82.15,0.93,0.8,798,0.7000000000000001,199,1.4000000000000001
+2023,1,13,9,0,-5.1000000000000005,1.33,0.013000000000000001,0.63,38,780,203,0,7,-9.8,133,114,0,157,0.28,69.34,77.8,0.93,0.8,798,0.7000000000000001,194,1.5
+2023,1,13,9,30,-3.6,1.33,0.013000000000000001,0.63,44,854,282,0,7,-9.8,153,302,0,237,0.28,61.940000000000005,73.82000000000001,0.93,0.8,798,0.7000000000000001,195,1.6
+2023,1,13,10,0,-2.2,1.34,0.013000000000000001,0.63,49,903,354,0,7,-7.6000000000000005,162,454,0,315,0.28,66.74,70.28,0.93,0.8,797,0.7000000000000001,197,1.8
+2023,1,13,10,30,-1.1,1.34,0.013000000000000001,0.63,52,936,414,0,7,-7.6000000000000005,188,466,0,368,0.28,61.56,67.27,0.93,0.8,797,0.7000000000000001,205,2.1
+2023,1,13,11,0,0,1.32,0.013000000000000001,0.63,56,957,462,0,7,-5.5,116,786,39,450,0.28,66.71000000000001,64.87,0.93,0.8,797,0.7000000000000001,213,2.3000000000000003
+2023,1,13,11,30,0.4,1.32,0.013000000000000001,0.63,57,971,496,0,7,-5.5,170,643,14,460,0.28,64.73,63.15,0.93,0.8,796,0.7000000000000001,218,2.5
+2023,1,13,12,0,0.9,1.3,0.014,0.63,59,978,516,0,7,-4.3,270,353,0,435,0.28,68.28,62.17,0.93,0.8,796,0.7000000000000001,222,2.6
+2023,1,13,12,30,1.1,1.3,0.014,0.63,59,980,520,0,7,-4.3,252,421,0,450,0.28,67.23,61.96,0.93,0.8,795,0.7000000000000001,223,2.6
+2023,1,13,13,0,1.3,1.3,0.014,0.63,59,976,509,0,7,-3.8000000000000003,189,594,21,463,0.28,68.82000000000001,62.53,0.93,0.8,795,0.7000000000000001,224,2.7
+2023,1,13,13,30,1.3,1.3,0.014,0.63,57,965,482,0,7,-3.8000000000000003,167,628,14,444,0.281,68.82000000000001,63.870000000000005,0.93,0.8,795,0.7000000000000001,223,2.6
+2023,1,13,14,0,1.3,1.28,0.014,0.63,55,947,442,0,7,-3.5,130,710,36,420,0.28200000000000003,70.12,65.91,0.93,0.8,794,0.7000000000000001,223,2.6
+2023,1,13,14,30,1,1.28,0.014,0.63,51,923,388,0,7,-3.5,144,570,14,352,0.28200000000000003,71.65,68.61,0.93,0.8,794,0.7000000000000001,222,2.1
+2023,1,13,15,0,0.6000000000000001,1.28,0.014,0.63,48,885,323,0,7,-2.9000000000000004,181,266,0,264,0.28300000000000003,77.23,71.87,0.93,0.8,794,0.7000000000000001,222,1.7000000000000002
+2023,1,13,15,30,-0.5,1.28,0.014,0.63,42,828,248,0,7,-2.9000000000000004,153,176,0,197,0.28300000000000003,83.63,75.62,0.93,0.8,794,0.6000000000000001,221,1.4000000000000001
+2023,1,13,16,0,-1.6,1.28,0.015,0.63,36,736,166,1,7,-4.2,110,42,14,117,0.28300000000000003,82.24,79.79,0.93,0.8,794,0.6000000000000001,221,1.1
+2023,1,13,16,30,-2.5,1.28,0.015,0.63,26,578,84,7,6,-4.2,47,4,100,47,0.28400000000000003,87.77,84.28,0.93,0.8,793,0.6000000000000001,219,1.2000000000000002
+2023,1,13,17,0,-3.4000000000000004,1.28,0.015,0.63,13,218,17,5,7,-6.2,9,0,71,9,0.28500000000000003,80.85000000000001,88.91,0.93,0.73,793,0.6000000000000001,216,1.2000000000000002
+2023,1,13,17,30,-3.9000000000000004,1.28,0.015,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.28500000000000003,83.93,94.3,0.9400000000000001,0.73,793,0.6000000000000001,210,1.2000000000000002
+2023,1,13,18,0,-4.3,1.28,0.016,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.28500000000000003,82.85000000000001,99.57000000000001,0.9400000000000001,0.73,793,0.6000000000000001,204,1.2000000000000002
+2023,1,13,18,30,-4.6000000000000005,1.28,0.016,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.28600000000000003,84.75,104.99000000000001,0.9400000000000001,0.73,793,0.6000000000000001,200,1.3
+2023,1,13,19,0,-4.9,1.28,0.017,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.28600000000000003,85.68,110.53,0.9400000000000001,0.73,793,0.6000000000000001,195,1.4000000000000001
+2023,1,13,19,30,-5.1000000000000005,1.28,0.017,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.28700000000000003,86.88,116.16,0.9400000000000001,0.73,792,0.6000000000000001,194,1.5
+2023,1,13,20,0,-5.4,1.28,0.018000000000000002,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.289,87.69,121.84,0.9400000000000001,0.73,792,0.6000000000000001,192,1.7000000000000002
+2023,1,13,20,30,-5.4,1.28,0.018000000000000002,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.29,87.69,127.53,0.9400000000000001,0.73,792,0.6000000000000001,193,1.8
+2023,1,13,21,0,-5.4,1.29,0.018000000000000002,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.291,87.26,133.2,0.9400000000000001,0.73,792,0.6000000000000001,193,1.9000000000000001
+2023,1,13,21,30,-5.4,1.29,0.018000000000000002,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.291,87.26,138.78,0.9400000000000001,0.73,792,0.6000000000000001,195,1.9000000000000001
+2023,1,13,22,0,-5.4,1.3,0.017,0.63,0,0,0,0,6,-7.300000000000001,0,0,0,0,0.292,86.57000000000001,144.20000000000002,0.93,0.73,791,0.7000000000000001,197,2
+2023,1,13,22,30,-5.5,1.3,0.017,0.63,0,0,0,0,6,-7.300000000000001,0,0,0,0,0.292,87.23,149.33,0.93,0.73,791,0.7000000000000001,198,2
+2023,1,13,23,0,-5.6000000000000005,1.31,0.018000000000000002,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.292,86.48,153.96,0.93,0.73,791,0.7000000000000001,199,2
+2023,1,13,23,30,-5.7,1.31,0.018000000000000002,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.293,87.03,157.75,0.9400000000000001,0.73,790,0.7000000000000001,200,2.1
+2023,1,14,0,0,-5.800000000000001,1.29,0.02,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.294,86.67,160.18,0.9400000000000001,0.73,790,0.7000000000000001,200,2.1
+2023,1,14,0,30,-5.800000000000001,1.29,0.02,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.296,86.67,160.74,0.9400000000000001,0.73,790,0.7000000000000001,202,2.1
+2023,1,14,1,0,-5.7,1.28,0.022,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.298,86.45,159.25,0.9400000000000001,0.73,789,0.7000000000000001,203,2.2
+2023,1,14,1,30,-5.6000000000000005,1.28,0.022,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.302,85.79,156.11,0.93,0.73,789,0.7000000000000001,204,2.1
+2023,1,14,2,0,-5.4,1.31,0.021,0.63,0,0,0,0,6,-7.4,0,0,0,0,0.306,85.83,151.87,0.93,0.73,789,0.7000000000000001,204,2.1
+2023,1,14,2,30,-5.6000000000000005,1.31,0.021,0.63,0,0,0,0,7,-7.4,0,0,0,0,0.309,87.14,146.98,0.93,0.73,789,0.7000000000000001,203,2.1
+2023,1,14,3,0,-5.800000000000001,1.35,0.019,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.312,86.56,141.69,0.92,0.73,789,0.7000000000000001,202,2.1
+2023,1,14,3,30,-6,1.35,0.019,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.315,87.89,136.18,0.92,0.73,789,0.6000000000000001,201,2.1
+2023,1,14,4,0,-6.300000000000001,1.36,0.019,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.317,85.86,130.55,0.92,0.73,788,0.6000000000000001,199,2.1
+2023,1,14,4,30,-6.5,1.36,0.019,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.319,87.19,124.86,0.92,0.73,788,0.6000000000000001,199,2.1
+2023,1,14,5,0,-6.7,1.36,0.02,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.321,84.61,119.17,0.92,0.73,788,0.6000000000000001,198,2.2
+2023,1,14,5,30,-6.7,1.36,0.02,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.323,84.61,113.5,0.92,0.73,788,0.6000000000000001,198,2.1
+2023,1,14,6,0,-6.6000000000000005,1.33,0.022,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.324,81.47,107.91,0.92,0.73,788,0.6000000000000001,198,2.1
+2023,1,14,6,30,-6.4,1.33,0.022,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.323,80.23,102.41,0.92,0.73,788,0.6000000000000001,198,2
+2023,1,14,7,0,-6.1000000000000005,1.33,0.021,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.323,78.11,97.04,0.92,0.73,787,0.6000000000000001,197,2
+2023,1,14,7,30,-5.2,1.33,0.021,0.63,1,10,1,2,7,-9.3,0,0,29,0,0.322,72.94,91.85000000000001,0.92,0.73,787,0.6000000000000001,198,2
+2023,1,14,8,0,-4.2,1.33,0.021,0.63,22,404,45,6,7,-8.1,26,63,89,30,0.321,74.14,86.7,0.92,0.73,787,0.6000000000000001,198,2
+2023,1,14,8,30,-2.7,1.33,0.021,0.63,33,655,123,0,0,-8.1,47,494,7,115,0.32,66.29,82.07000000000001,0.92,0.73,787,0.5,201,2.4000000000000004
+2023,1,14,9,0,-1.2000000000000002,1.33,0.021,0.63,42,777,207,0,0,-5.9,44,762,0,206,0.319,70.23,77.71000000000001,0.92,0.73,787,0.5,203,2.8000000000000003
+2023,1,14,9,30,-0.30000000000000004,1.33,0.021,0.63,48,852,287,0,7,-5.9,116,487,7,253,0.318,65.77,73.72,0.92,0.73,787,0.5,205,2.9000000000000004
+2023,1,14,10,0,0.5,1.31,0.023,0.63,55,900,360,0,6,-4.4,193,61,0,214,0.318,69.55,70.17,0.92,0.73,786,0.5,207,3
+2023,1,14,10,30,0.9,1.31,0.023,0.63,60,930,421,0,7,-4.4,204,380,0,352,0.318,67.57000000000001,67.15,0.93,0.73,786,0.6000000000000001,210,3.3000000000000003
+2023,1,14,11,0,1.4000000000000001,1.28,0.026000000000000002,0.63,64,949,469,0,7,-3.8000000000000003,180,575,0,425,0.318,68.12,64.73,0.93,0.73,785,0.6000000000000001,212,3.6
+2023,1,14,11,30,1.6,1.28,0.026000000000000002,0.63,67,959,502,0,7,-3.9000000000000004,172,629,7,458,0.318,67.07000000000001,63,0.93,0.73,784,0.6000000000000001,214,3.9000000000000004
+2023,1,14,12,0,1.7000000000000002,1.26,0.029,0.63,68,964,521,0,7,-3.5,228,487,7,457,0.317,68.60000000000001,62,0.93,0.73,784,0.6000000000000001,216,4.2
+2023,1,14,12,30,1.7000000000000002,1.26,0.029,0.63,69,966,526,0,7,-3.5,240,449,0,452,0.315,68.51,61.78,0.93,0.73,783,0.6000000000000001,216,4.3
+2023,1,14,13,0,1.7000000000000002,1.25,0.029,0.63,69,961,515,0,7,-3,302,212,0,400,0.313,70.79,62.35,0.9400000000000001,0.73,783,0.6000000000000001,216,4.3
+2023,1,14,13,30,1.6,1.25,0.029,0.63,66,949,487,0,7,-3,264,111,0,313,0.312,71.3,63.68,0.9400000000000001,0.73,783,0.7000000000000001,216,4.1000000000000005
+2023,1,14,14,0,1.5,1.26,0.027,0.63,63,929,445,0,7,-2.6,253,106,0,297,0.311,74.06,65.72,0.93,0.73,783,0.7000000000000001,215,3.8000000000000003
+2023,1,14,14,30,1.2000000000000002,1.26,0.027,0.63,59,900,390,0,7,-2.6,231,82,0,261,0.311,75.57000000000001,68.41,0.93,0.73,782,0.7000000000000001,213,3.4000000000000004
+2023,1,14,15,0,1,1.28,0.027,0.63,54,859,324,0,7,-2.4000000000000004,189,147,0,235,0.311,77.85000000000001,71.67,0.93,0.73,782,0.7000000000000001,211,3.1
+2023,1,14,15,30,0.1,1.28,0.027,0.63,48,800,249,0,7,-2.4000000000000004,135,19,0,140,0.312,83.07000000000001,75.43,0.93,0.73,782,0.7000000000000001,210,2.8000000000000003
+2023,1,14,16,0,-0.7000000000000001,1.31,0.025,0.63,39,707,167,1,7,-3.2,64,4,14,65,0.312,83.33,79.60000000000001,0.93,0.73,782,0.7000000000000001,210,2.4000000000000004
+2023,1,14,16,30,-1.6,1.31,0.025,0.63,29,546,85,7,7,-3.2,21,0,100,21,0.312,89,84.09,0.93,0.73,782,0.7000000000000001,210,2.4000000000000004
+2023,1,14,17,0,-2.6,1.3,0.025,0.63,14,200,18,5,4,-4.5,6,0,71,6,0.312,86.56,88.75,0.93,0.7000000000000001,782,0.7000000000000001,210,2.3000000000000003
+2023,1,14,17,30,-2.9000000000000004,1.3,0.025,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.311,88.51,94.12,0.93,0.7000000000000001,782,0.7000000000000001,210,2.3000000000000003
+2023,1,14,18,0,-3.2,1.29,0.027,0.63,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.311,86.88,99.39,0.9400000000000001,0.7000000000000001,782,0.8,209,2.3000000000000003
+2023,1,14,18,30,-3.5,1.29,0.027,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.31,88.85000000000001,104.82000000000001,0.9400000000000001,0.7000000000000001,782,0.8,209,2.4000000000000004
+2023,1,14,19,0,-3.8000000000000003,1.3,0.027,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.31,87.92,110.36,0.9400000000000001,0.7000000000000001,782,0.8,209,2.6
+2023,1,14,19,30,-4.1000000000000005,1.3,0.027,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.31,89.91,115.99000000000001,0.9400000000000001,0.7000000000000001,782,0.8,208,2.5
+2023,1,14,20,0,-4.3,1.3,0.027,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.309,89.96000000000001,121.67,0.9400000000000001,0.7000000000000001,782,0.8,207,2.4000000000000004
+2023,1,14,20,30,-4.5,1.3,0.027,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.31,91.32000000000001,127.36,0.9400000000000001,0.7000000000000001,782,0.8,203,2.3000000000000003
+2023,1,14,21,0,-4.7,1.29,0.03,0.63,0,0,0,0,4,-5.7,0,0,0,0,0.311,92.7,133.03,0.9400000000000001,0.7000000000000001,781,0.8,200,2.2
+2023,1,14,21,30,-4.7,1.29,0.03,0.63,0,0,0,0,4,-5.7,0,0,0,0,0.312,92.7,138.61,0.9500000000000001,0.7000000000000001,781,0.9,195,2.2
+2023,1,14,22,0,-4.800000000000001,1.25,0.033,0.63,0,0,0,0,5,-5.5,0,0,0,0,0.314,95.16,144.02,0.9500000000000001,0.7000000000000001,781,0.9,191,2.2
+2023,1,14,22,30,-4.6000000000000005,1.25,0.033,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.314,93.61,149.14000000000001,0.9500000000000001,0.7000000000000001,780,0.9,187,2.2
+2023,1,14,23,0,-4.3,1.22,0.037,0.63,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.315,96.24000000000001,153.76,0.96,0.7000000000000001,780,0.9,183,2.3000000000000003
+2023,1,14,23,30,-4.1000000000000005,1.22,0.037,0.63,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.315,94.68,157.55,0.96,0.7000000000000001,779,0.9,181,2.3000000000000003
+2023,1,15,0,0,-3.8000000000000003,1.23,0.04,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.315,97.67,159.99,0.96,0.7000000000000001,779,0.9,180,2.3000000000000003
+2023,1,15,0,30,-3.6,1.23,0.04,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.316,96.09,160.57,0.96,0.7000000000000001,778,0.9,178,2.3000000000000003
+2023,1,15,1,0,-3.5,1.23,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.316,98.42,159.11,0.96,0.7000000000000001,778,0.9,177,2.3000000000000003
+2023,1,15,1,30,-3.5,1.23,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.317,98.29,156,0.96,0.7000000000000001,777,0.9,176,2.2
+2023,1,15,2,0,-3.5,1.23,0.045,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.318,98.95,151.8,0.96,0.7000000000000001,777,0.9,176,2.2
+2023,1,15,2,30,-3.6,1.23,0.045,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,99.56,146.92000000000002,0.96,0.7000000000000001,776,0.9,175,2.2
+2023,1,15,3,0,-3.7,1.22,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,99.66,141.64000000000001,0.96,0.7000000000000001,776,0.9,175,2.2
+2023,1,15,3,30,-3.6,1.22,0.042,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.319,98.91,136.14000000000001,0.96,0.7000000000000001,776,0.9,175,2.2
+2023,1,15,4,0,-3.5,1.22,0.035,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.32,98.67,130.51,0.9500000000000001,0.7000000000000001,775,0.9,175,2.3000000000000003
+2023,1,15,4,30,-3.5,1.22,0.035,0.63,0,0,0,0,6,-3.7,0,0,0,0,0.321,98.67,124.83,0.9500000000000001,0.7000000000000001,775,0.9,175,2.2
+2023,1,15,5,0,-3.4000000000000004,1.22,0.033,0.63,0,0,0,0,6,-3.5,0,0,0,0,0.322,99.12,119.13,0.9500000000000001,0.7000000000000001,775,0.9,174,2.1
+2023,1,15,5,30,-3.6,1.22,0.033,0.63,0,0,0,0,6,-3.6,0,0,0,0,0.324,100,113.46000000000001,0.9500000000000001,0.7000000000000001,775,0.9,175,2.1
+2023,1,15,6,0,-3.9000000000000004,1.24,0.033,0.63,0,0,0,0,6,-3.9000000000000004,0,0,0,0,0.325,100,107.86,0.9500000000000001,0.7000000000000001,774,0.9,177,2
+2023,1,15,6,30,-4.1000000000000005,1.24,0.033,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.325,100,102.36,0.9500000000000001,0.7000000000000001,774,0.8,178,2
+2023,1,15,7,0,-4.2,1.24,0.03,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.325,100,96.99000000000001,0.9400000000000001,0.7000000000000001,774,0.8,179,1.9000000000000001
+2023,1,15,7,30,-3.6,1.24,0.03,0.63,3,31,2,2,9,-4.1000000000000005,0,0,29,0,0.325,96.11,91.79,0.9400000000000001,0.7000000000000001,774,0.8,180,2.1
+2023,1,15,8,0,-3.1,1.25,0.031,0.63,23,380,45,7,9,-3.5,13,0,100,13,0.325,97.03,86.63,0.9400000000000001,0.7000000000000001,774,0.8,181,2.3000000000000003
+2023,1,15,8,30,-2.3000000000000003,1.25,0.031,0.63,36,604,120,3,9,-3.5,43,2,43,43,0.327,91.44,81.99,0.9400000000000001,0.7000000000000001,774,0.8,183,2.7
+2023,1,15,9,0,-1.5,1.24,0.034,0.63,45,730,202,0,9,-2.3000000000000003,60,1,0,60,0.329,94.33,77.62,0.9400000000000001,0.7000000000000001,774,0.8,185,3.1
+2023,1,15,9,30,-0.9,1.24,0.034,0.63,53,810,282,0,7,-2.3000000000000003,126,22,0,132,0.331,90.28,73.61,0.9400000000000001,0.7000000000000001,774,0.8,195,3.9000000000000004
+2023,1,15,10,0,-0.30000000000000004,1.24,0.033,0.63,59,863,353,0,7,-1.7000000000000002,156,31,0,167,0.334,90,70.05,0.93,0.7000000000000001,773,0.8,204,4.7
+2023,1,15,10,30,0,1.24,0.033,0.63,64,897,414,2,8,-1.7000000000000002,97,253,43,196,0.336,88.07000000000001,67.01,0.93,0.7000000000000001,773,0.8,210,5.1000000000000005
+2023,1,15,11,0,0.30000000000000004,1.23,0.036000000000000004,0.63,69,919,463,0,7,-1.7000000000000002,177,318,21,314,0.338,86.39,64.58,0.9400000000000001,0.7000000000000001,773,0.8,216,5.5
+2023,1,15,11,30,0.5,1.23,0.036000000000000004,0.63,70,935,497,0,6,-1.7000000000000002,191,10,0,196,0.34,85.05,62.84,0.9400000000000001,0.7000000000000001,772,0.8,217,5.6000000000000005
+2023,1,15,12,0,0.6000000000000001,1.22,0.035,0.63,71,944,517,0,7,-1.8,201,30,0,215,0.342,84.05,61.83,0.9400000000000001,0.7000000000000001,772,0.8,218,5.7
+2023,1,15,12,30,0.7000000000000001,1.22,0.035,0.63,71,949,522,0,8,-1.8,153,12,0,159,0.34400000000000003,83.45,61.6,0.9400000000000001,0.7000000000000001,772,0.8,218,5.7
+2023,1,15,13,0,0.8,1.21,0.032,0.63,69,948,512,0,8,-2,148,26,0,160,0.34500000000000003,81.61,62.160000000000004,0.9400000000000001,0.7000000000000001,771,0.8,219,5.800000000000001
+2023,1,15,13,30,0.7000000000000001,1.21,0.032,0.63,69,937,487,0,7,-2,257,78,0,292,0.34700000000000003,82.3,63.480000000000004,0.9400000000000001,0.7000000000000001,772,0.7000000000000001,220,5.6000000000000005
+2023,1,15,14,0,0.6000000000000001,1.2,0.034,0.63,66,917,446,0,7,-2.2,239,48,0,259,0.34900000000000003,81.62,65.52,0.9500000000000001,0.7000000000000001,772,0.7000000000000001,222,5.5
+2023,1,15,14,30,0.4,1.2,0.034,0.63,63,887,392,0,7,-2.2,220,73,0,247,0.35000000000000003,82.81,68.21000000000001,0.9500000000000001,0.7000000000000001,772,0.7000000000000001,223,5
+2023,1,15,15,0,0.2,1.21,0.038,0.63,59,841,326,0,7,-2.3000000000000003,186,146,0,232,0.35100000000000003,83.5,71.48,0.9500000000000001,0.7000000000000001,772,0.7000000000000001,224,4.5
+2023,1,15,15,30,-0.7000000000000001,1.21,0.038,0.63,52,776,250,0,7,-2.2,142,127,0,174,0.35100000000000003,89.25,75.23,0.9500000000000001,0.7000000000000001,773,0.7000000000000001,224,3.7
+2023,1,15,16,0,-1.5,1.22,0.04,0.63,44,675,168,0,0,-2.9000000000000004,59,489,11,149,0.35100000000000003,90.03,79.41,0.9500000000000001,0.7000000000000001,773,0.7000000000000001,224,3
+2023,1,15,16,30,-2.4000000000000004,1.22,0.04,0.63,32,508,86,6,7,-2.9000000000000004,43,67,89,50,0.352,96.2,83.91,0.9500000000000001,0.7000000000000001,773,0.7000000000000001,225,2.7
+2023,1,15,17,0,-3.2,1.22,0.041,0.63,15,175,19,5,7,-3.9000000000000004,10,0,71,10,0.352,94.59,88.58,0.9500000000000001,0.8,774,0.7000000000000001,227,2.5
+2023,1,15,17,30,-3.4000000000000004,1.22,0.041,0.63,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.352,96.02,93.94,0.9500000000000001,0.8,774,0.7000000000000001,228,2.5
+2023,1,15,18,0,-3.5,1.23,0.038,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.352,95.24,99.21000000000001,0.9500000000000001,0.8,775,0.7000000000000001,230,2.6
+2023,1,15,18,30,-3.7,1.23,0.038,0.63,0,0,0,0,7,-4.2,0,0,0,0,0.35100000000000003,96.68,104.64,0.9400000000000001,0.8,775,0.7000000000000001,234,2.6
+2023,1,15,19,0,-3.9000000000000004,1.23,0.029,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.35100000000000003,96.35000000000001,110.18,0.9400000000000001,0.8,776,0.7000000000000001,237,2.6
+2023,1,15,19,30,-4.2,1.23,0.029,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.35000000000000003,98.54,115.81,0.93,0.8,776,0.7000000000000001,236,2.5
+2023,1,15,20,0,-4.5,1.23,0.022,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.34800000000000003,97.24000000000001,121.49000000000001,0.93,0.8,776,0.6000000000000001,235,2.3000000000000003
+2023,1,15,20,30,-5,1.23,0.022,0.63,0,0,0,0,7,-5,0,0,0,0,0.34700000000000003,100,127.19,0.92,0.8,776,0.6000000000000001,231,2.3000000000000003
+2023,1,15,21,0,-5.4,1.23,0.017,0.63,0,0,0,0,8,-5.6000000000000005,0,0,0,0,0.34700000000000003,98.83,132.85,0.92,0.8,777,0.6000000000000001,226,2.2
+2023,1,15,21,30,-5.9,1.23,0.017,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.34600000000000003,100,138.43,0.92,0.8,777,0.6000000000000001,221,2.2
+2023,1,15,22,0,-6.5,1.23,0.014,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.34600000000000003,100,143.84,0.92,0.8,777,0.6000000000000001,217,2.2
+2023,1,15,22,30,-6.9,1.23,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.34600000000000003,100,148.95000000000002,0.92,0.8,777,0.6000000000000001,213,2.3000000000000003
+2023,1,15,23,0,-7.4,1.23,0.014,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.34600000000000003,100,153.57,0.92,0.8,777,0.6000000000000001,209,2.4000000000000004
+2023,1,15,23,30,-7.7,1.23,0.014,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.34600000000000003,100,157.35,0.92,0.8,777,0.5,207,2.4000000000000004
+2023,1,16,0,0,-8.1,1.23,0.014,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.34600000000000003,100,159.79,0.92,0.8,777,0.5,205,2.4000000000000004
+2023,1,16,0,30,-8.4,1.23,0.014,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.34400000000000003,100,160.38,0.92,0.8,778,0.5,203,2.3000000000000003
+2023,1,16,1,0,-8.700000000000001,1.22,0.014,0.63,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.343,100,158.96,0.92,0.8,778,0.5,200,2.3000000000000003
+2023,1,16,1,30,-8.9,1.22,0.014,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.342,100,155.89000000000001,0.93,0.8,778,0.5,200,2.2
+2023,1,16,2,0,-9.200000000000001,1.21,0.014,0.63,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.34,100,151.71,0.93,0.8,778,0.5,199,2.1
+2023,1,16,2,30,-9.4,1.21,0.014,0.63,0,0,0,0,0,-9.4,0,0,0,0,0.339,100,146.85,0.93,0.8,778,0.5,201,1.9000000000000001
+2023,1,16,3,0,-9.5,1.2,0.014,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.338,99.58,141.59,0.93,0.8,778,0.5,202,1.8
+2023,1,16,3,30,-9.700000000000001,1.2,0.014,0.63,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.338,100,136.09,0.93,0.8,778,0.5,204,1.7000000000000002
+2023,1,16,4,0,-9.8,1.18,0.015,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.338,99.31,130.47,0.93,0.8,778,0.5,206,1.7000000000000002
+2023,1,16,4,30,-9.9,1.18,0.015,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.338,100,124.78,0.93,0.8,778,0.5,206,1.5
+2023,1,16,5,0,-10,1.16,0.016,0.63,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.337,98.87,119.09,0.93,0.8,778,0.5,207,1.4000000000000001
+2023,1,16,5,30,-10.100000000000001,1.16,0.016,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.336,99.78,113.42,0.9400000000000001,0.8,779,0.5,206,1.2000000000000002
+2023,1,16,6,0,-10.200000000000001,1.1500000000000001,0.018000000000000002,0.63,0,0,0,0,5,-10.4,0,0,0,0,0.336,98.78,107.81,0.9400000000000001,0.8,779,0.6000000000000001,204,1
+2023,1,16,6,30,-10.3,1.1500000000000001,0.018000000000000002,0.63,0,0,0,0,5,-10.4,0,0,0,0,0.334,99.57000000000001,102.3,0.9400000000000001,0.8,779,0.6000000000000001,206,1
+2023,1,16,7,0,-10.4,1.1400000000000001,0.02,0.63,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.333,98.48,96.93,0.9400000000000001,0.8,779,0.6000000000000001,208,1
+2023,1,16,7,30,-9.8,1.1400000000000001,0.02,0.63,3,37,2,2,4,-10.600000000000001,1,0,29,1,0.333,93.91,91.72,0.9500000000000001,0.8,779,0.6000000000000001,206,1.2000000000000002
+2023,1,16,8,0,-9.200000000000001,1.12,0.024,0.63,23,420,48,7,7,-10.100000000000001,29,2,100,29,0.333,93.38,86.55,0.9500000000000001,0.8,779,0.6000000000000001,205,1.5
+2023,1,16,8,30,-7.800000000000001,1.12,0.024,0.63,35,640,125,3,7,-10.100000000000001,74,11,43,76,0.334,83.83,81.9,0.96,0.8,780,0.6000000000000001,208,1.7000000000000002
+2023,1,16,9,0,-6.4,1.1300000000000001,0.027,0.63,45,760,209,0,7,-8,134,130,0,162,0.335,88.48,77.52,0.96,0.8,780,0.6000000000000001,211,1.9000000000000001
+2023,1,16,9,30,-4.9,1.1300000000000001,0.027,0.63,52,838,290,0,7,-8,183,122,0,218,0.336,78.95,73.5,0.96,0.8,780,0.6000000000000001,217,2.7
+2023,1,16,10,0,-3.3000000000000003,1.1500000000000001,0.026000000000000002,0.63,58,889,363,0,7,-5.7,230,150,0,281,0.338,83.59,69.92,0.96,0.8,780,0.6000000000000001,223,3.4000000000000004
+2023,1,16,10,30,-2.5,1.1500000000000001,0.026000000000000002,0.63,62,924,425,0,7,-5.7,267,152,0,327,0.339,78.76,66.87,0.9500000000000001,0.8,780,0.6000000000000001,223,3.9000000000000004
+2023,1,16,11,0,-1.6,1.16,0.026000000000000002,0.63,65,947,474,0,7,-4.800000000000001,265,301,0,395,0.341,78.89,64.43,0.9500000000000001,0.8,779,0.6000000000000001,223,4.4
+2023,1,16,11,30,-1.3,1.16,0.026000000000000002,0.63,68,962,510,0,7,-4.800000000000001,202,565,0,461,0.341,77.17,62.67,0.9500000000000001,0.8,779,0.6000000000000001,221,4.5
+2023,1,16,12,0,-1,1.16,0.026000000000000002,0.63,70,969,530,0,7,-4.6000000000000005,254,358,0,424,0.341,76.60000000000001,61.65,0.96,0.8,779,0.6000000000000001,219,4.6000000000000005
+2023,1,16,12,30,-1,1.16,0.026000000000000002,0.63,70,970,534,0,7,-4.6000000000000005,243,365,7,418,0.341,76.5,61.410000000000004,0.9500000000000001,0.8,778,0.6000000000000001,216,4.5
+2023,1,16,13,0,-0.9,1.1400000000000001,0.026000000000000002,0.63,69,965,523,0,7,-4.5,251,374,0,427,0.34,76.41,61.96,0.9500000000000001,0.8,778,0.7000000000000001,213,4.3
+2023,1,16,13,30,-0.9,1.1400000000000001,0.026000000000000002,0.63,67,956,497,0,7,-4.5,223,443,0,422,0.34,76.41,63.27,0.9500000000000001,0.8,778,0.6000000000000001,208,4
+2023,1,16,14,0,-0.9,1.1300000000000001,0.026000000000000002,0.63,64,939,456,0,0,-4.5,102,814,0,442,0.339,76.79,65.31,0.9500000000000001,0.8,777,0.6000000000000001,204,3.7
+2023,1,16,14,30,-1,1.1300000000000001,0.026000000000000002,0.63,60,913,402,0,4,-4.5,244,63,0,268,0.339,77.35000000000001,68,0.9500000000000001,0.8,777,0.6000000000000001,199,3.4000000000000004
+2023,1,16,15,0,-1.2000000000000002,1.1300000000000001,0.024,0.63,54,875,335,0,4,-4.4,196,69,0,218,0.339,78.93,71.27,0.9400000000000001,0.8,777,0.6000000000000001,195,3.2
+2023,1,16,15,30,-2,1.1300000000000001,0.024,0.63,47,819,259,0,7,-4.4,159,120,0,190,0.338,83.7,75.03,0.9400000000000001,0.8,777,0.6000000000000001,195,2.7
+2023,1,16,16,0,-2.9000000000000004,1.12,0.022,0.63,39,730,176,0,7,-5,118,72,0,131,0.337,85.52,79.21000000000001,0.9400000000000001,0.8,778,0.6000000000000001,195,2.1
+2023,1,16,16,30,-3.7,1.12,0.022,0.63,29,580,93,6,7,-5,51,4,86,51,0.336,90.77,83.71000000000001,0.9400000000000001,0.8,778,0.6000000000000001,189,1.7000000000000002
+2023,1,16,17,0,-4.5,1.12,0.019,0.63,15,226,21,6,7,-5.7,12,0,86,12,0.336,91,88.4,0.9400000000000001,0.75,778,0.7000000000000001,183,1.3
+2023,1,16,17,30,-4.5,1.12,0.019,0.63,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.336,90.88,93.75,0.9400000000000001,0.75,777,0.7000000000000001,167,1.3
+2023,1,16,18,0,-4.5,1.11,0.02,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.337,92.93,99.03,0.9400000000000001,0.75,777,0.7000000000000001,150,1.3
+2023,1,16,18,30,-4.6000000000000005,1.11,0.02,0.63,0,0,0,0,4,-5.5,0,0,0,0,0.339,93.64,104.46000000000001,0.9500000000000001,0.75,777,0.7000000000000001,145,1.6
+2023,1,16,19,0,-4.6000000000000005,1.11,0.023,0.63,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.341,94.85000000000001,110.01,0.9500000000000001,0.75,777,0.7000000000000001,139,1.8
+2023,1,16,19,30,-4.6000000000000005,1.11,0.023,0.63,0,0,0,0,4,-5.300000000000001,0,0,0,0,0.34400000000000003,94.85000000000001,115.64,0.9500000000000001,0.75,777,0.7000000000000001,147,2.1
+2023,1,16,20,0,-4.6000000000000005,1.12,0.027,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.34600000000000003,95.51,121.32000000000001,0.9500000000000001,0.75,777,0.7000000000000001,155,2.3000000000000003
+2023,1,16,20,30,-4.6000000000000005,1.12,0.027,0.63,0,0,0,0,4,-5.2,0,0,0,0,0.34700000000000003,95.51,127.01,0.9500000000000001,0.75,777,0.7000000000000001,161,2.4000000000000004
+2023,1,16,21,0,-4.6000000000000005,1.12,0.028,0.63,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.34900000000000003,96.54,132.67000000000002,0.9500000000000001,0.75,777,0.7000000000000001,168,2.6
+2023,1,16,21,30,-4.5,1.12,0.028,0.63,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.34900000000000003,95.82000000000001,138.25,0.9400000000000001,0.75,777,0.7000000000000001,178,3
+2023,1,16,22,0,-4.3,1.12,0.023,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.35000000000000003,97.72,143.65,0.93,0.75,777,0.7000000000000001,187,3.3000000000000003
+2023,1,16,22,30,-4.4,1.12,0.023,0.63,0,0,0,0,6,-4.6000000000000005,0,0,0,0,0.35000000000000003,98.46000000000001,148.76,0.93,0.75,777,0.6000000000000001,191,3.4000000000000004
+2023,1,16,23,0,-4.5,1.11,0.02,0.63,0,0,0,0,9,-4.5,0,0,0,0,0.35000000000000003,100,153.37,0.93,0.75,777,0.6000000000000001,195,3.5
+2023,1,16,23,30,-4.6000000000000005,1.11,0.02,0.63,0,0,0,0,6,-4.6000000000000005,0,0,0,0,0.35000000000000003,100,157.14000000000001,0.92,0.75,777,0.6000000000000001,195,3.5
+2023,1,17,0,0,-4.7,1.06,0.019,0.63,0,0,0,0,6,-4.7,0,0,0,0,0.35000000000000003,100,159.59,0.92,0.75,777,0.7000000000000001,196,3.5
+2023,1,17,0,30,-4.4,1.06,0.019,0.63,0,0,0,0,6,-4.4,0,0,0,0,0.34900000000000003,100,160.20000000000002,0.92,0.75,777,0.7000000000000001,197,3.7
+2023,1,17,1,0,-4.1000000000000005,1,0.02,0.63,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.34900000000000003,99.96000000000001,158.81,0.92,0.75,777,0.7000000000000001,199,4
+2023,1,17,1,30,-3.9000000000000004,1,0.02,0.63,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.34800000000000003,98.47,155.77,0.93,0.75,777,0.7000000000000001,201,4
+2023,1,17,2,0,-3.6,0.96,0.024,0.63,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.34800000000000003,98.87,151.61,0.93,0.75,777,0.7000000000000001,202,4
+2023,1,17,2,30,-4,0.96,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.34900000000000003,100,146.77,0.93,0.75,777,0.6000000000000001,202,3.5
+2023,1,17,3,0,-4.4,0.9400000000000001,0.026000000000000002,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.34900000000000003,100,141.53,0.93,0.75,777,0.6000000000000001,202,3
+2023,1,17,3,30,-5.1000000000000005,0.9400000000000001,0.026000000000000002,0.63,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.35000000000000003,100,136.04,0.93,0.75,777,0.6000000000000001,199,2.5
+2023,1,17,4,0,-5.9,0.91,0.026000000000000002,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.35100000000000003,100,130.42000000000002,0.93,0.75,777,0.6000000000000001,197,2
+2023,1,17,4,30,-6.4,0.91,0.026000000000000002,0.63,0,0,0,0,4,-6.4,0,0,0,0,0.352,100,124.74000000000001,0.93,0.75,777,0.6000000000000001,195,1.8
+2023,1,17,5,0,-6.800000000000001,0.91,0.026000000000000002,0.63,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.353,100,119.04,0.93,0.75,777,0.5,194,1.5
+2023,1,17,5,30,-7,0.91,0.026000000000000002,0.63,0,0,0,0,4,-7,0,0,0,0,0.354,100,113.37,0.93,0.75,777,0.5,192,1.3
+2023,1,17,6,0,-7.2,0.92,0.026000000000000002,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.354,100,107.76,0.93,0.75,777,0.5,190,1.2000000000000002
+2023,1,17,6,30,-7.4,0.92,0.026000000000000002,0.63,0,0,0,0,4,-7.4,0,0,0,0,0.355,100,102.24000000000001,0.93,0.75,777,0.5,184,1
+2023,1,17,7,0,-7.5,0.93,0.025,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.355,100,96.86,0.93,0.75,777,0.5,178,0.9
+2023,1,17,7,30,-7.2,0.93,0.025,0.63,3,35,2,0,0,-7.2,3,27,4,2,0.356,100,91.65,0.93,0.75,777,0.5,160,1.1
+2023,1,17,8,0,-6.800000000000001,0.9500000000000001,0.027,0.63,23,416,49,4,7,-7.1000000000000005,26,114,64,33,0.356,97.91,86.47,0.93,0.75,777,0.5,143,1.2000000000000002
+2023,1,17,8,30,-5.800000000000001,0.9500000000000001,0.027,0.63,36,640,127,3,7,-7.1000000000000005,64,281,43,104,0.356,90.7,81.81,0.93,0.75,777,0.5,123,1.4000000000000001
+2023,1,17,9,0,-4.800000000000001,0.97,0.029,0.63,46,763,212,0,7,-5.800000000000001,98,239,0,150,0.357,92.71000000000001,77.41,0.9400000000000001,0.75,777,0.5,104,1.5
+2023,1,17,9,30,-3.4000000000000004,0.97,0.029,0.63,53,839,293,0,7,-5.800000000000001,139,21,0,145,0.358,83.47,73.38,0.9400000000000001,0.75,777,0.5,96,1.3
+2023,1,17,10,0,-2,0.97,0.03,0.63,60,889,367,0,6,-4.3,142,10,0,145,0.358,84.08,69.79,0.93,0.75,777,0.5,89,1.1
+2023,1,17,10,30,-1.4000000000000001,0.97,0.03,0.63,65,921,429,0,7,-4.3,214,52,0,235,0.359,80.46000000000001,66.72,0.9400000000000001,0.75,777,0.5,73,1.2000000000000002
+2023,1,17,11,0,-0.7000000000000001,0.98,0.035,0.63,71,938,478,0,6,-4.3,174,8,0,177,0.359,76.44,64.27,0.9400000000000001,0.75,777,0.5,57,1.3
+2023,1,17,11,30,-0.5,0.98,0.035,0.63,74,946,511,0,9,-4.3,174,3,0,175,0.358,75.24,62.49,0.9500000000000001,0.75,776,0.6000000000000001,52,1.7000000000000002
+2023,1,17,12,0,-0.30000000000000004,0.97,0.042,0.63,78,946,530,0,6,-4.5,202,5,0,204,0.357,73.54,61.46,0.9500000000000001,0.75,776,0.6000000000000001,47,2
+2023,1,17,12,30,-0.4,0.97,0.042,0.63,79,945,534,0,6,-4.5,220,20,0,230,0.357,74.08,61.21,0.9500000000000001,0.75,776,0.6000000000000001,42,2.4000000000000004
+2023,1,17,13,0,-0.5,0.9400000000000001,0.046,0.63,79,937,523,0,6,-4.4,204,5,0,206,0.356,74.76,61.75,0.96,0.75,775,0.6000000000000001,37,2.8000000000000003
+2023,1,17,13,30,-0.6000000000000001,0.9400000000000001,0.046,0.63,78,926,497,0,6,-4.4,192,5,0,194,0.356,75.3,63.07,0.96,0.75,775,0.6000000000000001,29,3.1
+2023,1,17,14,0,-0.8,0.93,0.046,0.63,75,906,456,0,6,-4.3,173,4,0,175,0.355,76.89,65.1,0.96,0.75,775,0.6000000000000001,21,3.3000000000000003
+2023,1,17,14,30,-1.1,0.93,0.046,0.63,71,876,402,0,6,-4.3,139,2,0,140,0.355,78.60000000000001,67.79,0.96,0.75,775,0.6000000000000001,18,3.2
+2023,1,17,15,0,-1.4000000000000001,0.93,0.047,0.63,65,832,335,0,6,-4.4,105,1,0,105,0.355,79.76,71.06,0.96,0.75,775,0.6000000000000001,15,3.1
+2023,1,17,15,30,-2,0.93,0.047,0.63,58,763,258,0,7,-4.4,138,16,0,142,0.356,83.35000000000001,74.83,0.96,0.75,775,0.6000000000000001,16,2.7
+2023,1,17,16,0,-2.7,0.96,0.052000000000000005,0.63,49,658,174,0,7,-4.9,110,15,0,113,0.356,84.73,79.01,0.96,0.75,776,0.6000000000000001,17,2.4000000000000004
+2023,1,17,16,30,-3.1,0.96,0.052000000000000005,0.63,36,484,91,6,7,-4.9,42,2,86,42,0.358,87.29,83.52,0.96,0.75,776,0.6000000000000001,17,2.6
+2023,1,17,17,0,-3.6,1,0.06,0.63,17,172,22,6,7,-5.5,9,0,86,9,0.361,86.72,88.22,0.96,0.79,776,0.6000000000000001,17,2.8000000000000003
+2023,1,17,17,30,-3.8000000000000003,1,0.06,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.364,88.02,93.56,0.96,0.79,776,0.6000000000000001,15,3.2
+2023,1,17,18,0,-4,1.04,0.064,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.367,88.18,98.84,0.97,0.79,776,0.6000000000000001,13,3.6
+2023,1,17,18,30,-4.2,1.04,0.064,0.63,0,0,0,0,7,-5.7,0,0,0,0,0.37,89.52,104.27,0.96,0.79,776,0.6000000000000001,11,4
+2023,1,17,19,0,-4.3,1.05,0.063,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.374,88.79,109.82000000000001,0.96,0.79,776,0.6000000000000001,8,4.3
+2023,1,17,19,30,-4.6000000000000005,1.05,0.063,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.377,90.81,115.46000000000001,0.96,0.79,776,0.6000000000000001,5,4.5
+2023,1,17,20,0,-4.800000000000001,1.05,0.063,0.63,0,0,0,0,6,-6.2,0,0,0,0,0.38,89.71000000000001,121.14,0.96,0.79,776,0.6000000000000001,3,4.7
+2023,1,17,20,30,-5,1.05,0.063,0.63,0,0,0,0,6,-6.2,0,0,0,0,0.383,91.08,126.83,0.96,0.79,776,0.6000000000000001,181,4.7
+2023,1,17,21,0,-5.300000000000001,1.06,0.064,0.63,0,0,0,0,6,-6.6000000000000005,0,0,0,0,0.385,90.54,132.49,0.96,0.79,777,0.6000000000000001,359,4.7
+2023,1,17,21,30,-5.5,1.06,0.064,0.63,0,0,0,0,6,-6.6000000000000005,0,0,0,0,0.387,91.92,138.06,0.97,0.79,777,0.6000000000000001,359,4.7
+2023,1,17,22,0,-5.6000000000000005,1.07,0.064,0.63,0,0,0,0,6,-6.9,0,0,0,0,0.389,90.24,143.46,0.97,0.79,777,0.6000000000000001,358,4.800000000000001
+2023,1,17,22,30,-5.800000000000001,1.07,0.064,0.63,0,0,0,0,6,-6.9,0,0,0,0,0.39,91.62,148.56,0.97,0.79,777,0.6000000000000001,356,4.7
+2023,1,17,23,0,-6,1.09,0.066,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.391,90.57000000000001,153.16,0.97,0.79,777,0.6000000000000001,354,4.7
+2023,1,17,23,30,-6.2,1.09,0.066,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.391,91.96000000000001,156.93,0.97,0.79,777,0.6000000000000001,351,4.800000000000001
+2023,1,18,0,0,-6.300000000000001,1.1300000000000001,0.062,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.392,90.06,159.37,0.97,0.79,777,0.6000000000000001,348,4.800000000000001
+2023,1,18,0,30,-6.5,1.1300000000000001,0.062,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.391,91.45,160,0.96,0.79,777,0.6000000000000001,347,4.9
+2023,1,18,1,0,-6.7,1.1400000000000001,0.053,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.389,89.82000000000001,158.65,0.96,0.79,777,0.6000000000000001,346,4.9
+2023,1,18,1,30,-6.9,1.1400000000000001,0.053,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.386,91.33,155.64000000000001,0.96,0.79,778,0.6000000000000001,346,4.7
+2023,1,18,2,0,-7,1.12,0.052000000000000005,0.63,0,0,0,0,6,-8.5,0,0,0,0,0.383,88.91,151.51,0.96,0.79,778,0.6000000000000001,346,4.6000000000000005
+2023,1,18,2,30,-7.2,1.12,0.052000000000000005,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.38,90.29,146.69,0.96,0.79,778,0.5,344,4.6000000000000005
+2023,1,18,3,0,-7.300000000000001,1.12,0.049,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.376,88.36,141.46,0.96,0.79,778,0.5,343,4.7
+2023,1,18,3,30,-7.4,1.12,0.049,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.373,89.16,135.98,0.96,0.79,779,0.5,341,4.800000000000001
+2023,1,18,4,0,-7.5,1.11,0.044,0.63,0,0,0,0,6,-9.3,0,0,0,0,0.37,87.10000000000001,130.36,0.96,0.79,779,0.5,340,4.800000000000001
+2023,1,18,4,30,-7.7,1.11,0.044,0.63,0,0,0,0,6,-9.3,0,0,0,0,0.367,88.46000000000001,124.68,0.9500000000000001,0.79,779,0.5,340,4.7
+2023,1,18,5,0,-7.9,1.1,0.04,0.63,0,0,0,0,6,-9.700000000000001,0,0,0,0,0.364,86.68,118.98,0.9500000000000001,0.79,780,0.5,340,4.6000000000000005
+2023,1,18,5,30,-8.200000000000001,1.1,0.04,0.63,0,0,0,0,6,-9.700000000000001,0,0,0,0,0.362,88.72,113.31,0.9500000000000001,0.79,780,0.5,339,4.3
+2023,1,18,6,0,-8.5,1.09,0.036000000000000004,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.36,86.57000000000001,107.69,0.9500000000000001,0.79,780,0.5,337,4.1000000000000005
+2023,1,18,6,30,-8.8,1.09,0.036000000000000004,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.358,88.73,102.18,0.9500000000000001,0.79,781,0.5,336,3.9000000000000004
+2023,1,18,7,0,-9.1,1.09,0.034,0.63,0,0,0,0,6,-11,0,0,0,0,0.356,86.17,96.79,0.9500000000000001,0.79,781,0.5,335,3.7
+2023,1,18,7,30,-8.8,1.09,0.034,0.63,4,35,3,2,6,-11,1,0,29,1,0.355,84.28,91.56,0.9400000000000001,0.79,782,0.5,333,3.7
+2023,1,18,8,0,-8.5,1.09,0.032,0.63,24,409,50,7,6,-10.9,19,0,100,19,0.355,83.03,86.38,0.9400000000000001,0.79,782,0.5,332,3.6
+2023,1,18,8,30,-7.5,1.09,0.032,0.63,37,636,129,3,7,-10.9,47,2,43,47,0.355,76.83,81.71000000000001,0.9400000000000001,0.79,782,0.5,334,3.9000000000000004
+2023,1,18,9,0,-6.4,1.1,0.03,0.63,47,765,215,0,7,-9.5,79,4,0,80,0.356,78.57000000000001,77.29,0.9400000000000001,0.79,783,0.5,336,4.1000000000000005
+2023,1,18,9,30,-5.300000000000001,1.1,0.03,0.63,54,843,297,0,7,-9.5,104,5,0,105,0.357,72.25,73.25,0.9400000000000001,0.79,783,0.5,341,4.4
+2023,1,18,10,0,-4.2,1.11,0.029,0.63,60,895,371,0,7,-8.200000000000001,157,19,0,164,0.358,73.61,69.64,0.9400000000000001,0.79,783,0.5,346,4.800000000000001
+2023,1,18,10,30,-3.5,1.11,0.029,0.63,64,933,435,0,7,-8.200000000000001,250,214,0,335,0.359,69.85000000000001,66.57000000000001,0.9400000000000001,0.79,783,0.5,344,4.7
+2023,1,18,11,0,-2.8000000000000003,1.11,0.027,0.63,67,958,485,0,7,-7.800000000000001,242,384,0,410,0.359,68.53,64.1,0.9400000000000001,0.79,783,0.5,342,4.6000000000000005
+2023,1,18,11,30,-2.5,1.11,0.027,0.63,69,973,521,0,7,-7.800000000000001,211,541,0,462,0.361,67.02,62.31,0.9400000000000001,0.79,783,0.5,336,4.5
+2023,1,18,12,0,-2.2,1.12,0.026000000000000002,0.63,69,983,542,0,7,-7.9,201,608,0,493,0.362,65.11,61.26,0.9400000000000001,0.79,783,0.5,330,4.4
+2023,1,18,12,30,-2,1.12,0.026000000000000002,0.63,69,988,548,0,7,-7.9,172,657,0,490,0.363,64.16,61.01,0.93,0.79,783,0.4,325,4.2
+2023,1,18,13,0,-1.8,1.1400000000000001,0.023,0.63,68,989,539,0,0,-8,156,700,0,490,0.365,62.52,61.54,0.93,0.79,783,0.4,319,4.1000000000000005
+2023,1,18,13,30,-1.8,1.1400000000000001,0.023,0.63,64,981,512,0,7,-8,204,531,0,446,0.366,62.52,62.85,0.92,0.79,783,0.4,316,4
+2023,1,18,14,0,-1.7000000000000002,1.16,0.02,0.63,61,967,471,0,0,-8.1,81,899,0,462,0.367,61.63,64.89,0.92,0.79,783,0.4,313,3.8000000000000003
+2023,1,18,14,30,-2.1,1.16,0.02,0.63,55,946,416,0,0,-8.1,58,936,0,415,0.367,63.550000000000004,67.58,0.91,0.79,784,0.4,312,3.4000000000000004
+2023,1,18,15,0,-2.4000000000000004,1.18,0.015,0.63,49,915,349,0,0,-8.1,49,915,0,349,0.367,64.87,70.85000000000001,0.91,0.79,784,0.4,311,3.1
+2023,1,18,15,30,-3.7,1.18,0.015,0.63,43,871,274,0,0,-8.1,43,871,0,274,0.366,71.45,74.62,0.9,0.79,784,0.30000000000000004,310,2.4000000000000004
+2023,1,18,16,0,-4.9,1.21,0.012,0.63,35,798,190,0,0,-9.600000000000001,35,798,0,190,0.365,69.61,78.8,0.89,0.79,784,0.30000000000000004,309,1.8
+2023,1,18,16,30,-6.300000000000001,1.21,0.012,0.63,26,664,103,0,0,-9.600000000000001,26,664,0,103,0.362,77.52,83.32000000000001,0.88,0.79,785,0.30000000000000004,305,1.7000000000000002
+2023,1,18,17,0,-7.800000000000001,1.25,0.01,0.63,16,337,28,0,0,-12,16,337,0,28,0.36,71.56,88.03,0.87,0.8,785,0.30000000000000004,302,1.5
+2023,1,18,17,30,-8.4,1.25,0.01,0.63,0,0,0,0,0,-12,0,0,0,0,0.356,74.97,93.37,0.87,0.8,785,0.30000000000000004,299,1.5
+2023,1,18,18,0,-9.1,1.27,0.01,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.353,74.59,98.65,0.87,0.8,786,0.30000000000000004,296,1.5
+2023,1,18,18,30,-9.700000000000001,1.27,0.01,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.35000000000000003,78.18,104.09,0.87,0.8,786,0.30000000000000004,294,1.5
+2023,1,18,19,0,-10.200000000000001,1.26,0.01,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.34700000000000003,79.41,109.64,0.87,0.8,786,0.30000000000000004,292,1.5
+2023,1,18,19,30,-10.700000000000001,1.26,0.01,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.34500000000000003,82.62,115.28,0.87,0.8,786,0.30000000000000004,290,1.5
+2023,1,18,20,0,-11.200000000000001,1.24,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.34400000000000003,84.65,120.96000000000001,0.87,0.8,786,0.30000000000000004,289,1.5
+2023,1,18,20,30,-11.600000000000001,1.24,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.34400000000000003,87.4,126.65,0.87,0.8,786,0.30000000000000004,289,1.4000000000000001
+2023,1,18,21,0,-11.9,1.21,0.014,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.34400000000000003,88.57000000000001,132.31,0.88,0.8,786,0.30000000000000004,288,1.4000000000000001
+2023,1,18,21,30,-12.200000000000001,1.21,0.014,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.34600000000000003,90.85000000000001,137.88,0.88,0.8,787,0.30000000000000004,287,1.3
+2023,1,18,22,0,-12.4,1.2,0.015,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.34800000000000003,91.17,143.27,0.88,0.8,787,0.30000000000000004,285,1.2000000000000002
+2023,1,18,22,30,-12.700000000000001,1.2,0.015,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.35100000000000003,93.41,148.36,0.88,0.8,787,0.30000000000000004,280,1.1
+2023,1,18,23,0,-12.9,1.2,0.016,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.354,93.65,152.95000000000002,0.88,0.8,787,0.30000000000000004,275,1
+2023,1,18,23,30,-13.200000000000001,1.2,0.016,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.355,95.95,156.71,0.88,0.8,787,0.30000000000000004,265,0.9
+2023,1,19,0,0,-13.5,1.2,0.017,0.63,0,0,0,0,0,-14,0,0,0,0,0.357,96.29,159.16,0.88,0.8,787,0.30000000000000004,254,0.8
+2023,1,19,0,30,-13.9,1.2,0.017,0.63,0,0,0,0,0,-14,0,0,0,0,0.358,99.48,159.8,0.88,0.8,787,0.30000000000000004,240,0.8
+2023,1,19,1,0,-14.3,1.21,0.018000000000000002,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.358,99.08,158.47,0.89,0.8,787,0.30000000000000004,225,0.8
+2023,1,19,1,30,-14.700000000000001,1.21,0.018000000000000002,0.63,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.358,100,155.5,0.89,0.8,787,0.30000000000000004,212,0.9
+2023,1,19,2,0,-15,1.23,0.018000000000000002,0.63,0,0,0,0,0,-15,0,0,0,0,0.359,100,151.4,0.89,0.8,787,0.30000000000000004,198,1
+2023,1,19,2,30,-15.200000000000001,1.23,0.018000000000000002,0.63,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.359,100,146.6,0.89,0.8,787,0.30000000000000004,189,1.1
+2023,1,19,3,0,-15.4,1.24,0.019,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.359,99.68,141.38,0.89,0.8,787,0.30000000000000004,180,1.2000000000000002
+2023,1,19,3,30,-15.600000000000001,1.24,0.019,0.63,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.358,100,135.91,0.89,0.8,787,0.30000000000000004,175,1.5
+2023,1,19,4,0,-15.700000000000001,1.26,0.019,0.63,0,0,0,0,0,-16,0,0,0,0,0.357,97.33,130.3,0.9,0.8,787,0.30000000000000004,169,1.7000000000000002
+2023,1,19,4,30,-15.8,1.26,0.019,0.63,0,0,0,0,0,-16,0,0,0,0,0.357,98.14,124.62,0.9,0.8,787,0.30000000000000004,167,1.8
+2023,1,19,5,0,-15.8,1.27,0.022,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.356,94.52,118.92,0.91,0.8,788,0.30000000000000004,165,2
+2023,1,19,5,30,-15.8,1.27,0.022,0.63,0,0,0,0,0,-16.5,0,0,0,0,0.355,94.52,113.24000000000001,0.92,0.8,788,0.30000000000000004,165,2
+2023,1,19,6,0,-15.8,1.25,0.026000000000000002,0.63,0,0,0,0,0,-16.7,0,0,0,0,0.355,92.54,107.63,0.93,0.8,788,0.30000000000000004,166,2
+2023,1,19,6,30,-15.8,1.25,0.026000000000000002,0.63,0,0,0,0,0,-16.7,0,0,0,0,0.354,92.54,102.10000000000001,0.93,0.8,788,0.30000000000000004,166,2
+2023,1,19,7,0,-15.700000000000001,1.23,0.03,0.63,0,0,0,0,7,-17,0,0,0,0,0.353,90,96.71000000000001,0.93,0.8,788,0.30000000000000004,167,1.9000000000000001
+2023,1,19,7,30,-15.100000000000001,1.23,0.03,0.63,4,39,3,2,7,-17,1,0,29,1,0.352,85.63,91.47,0.93,0.8,788,0.4,170,1.9000000000000001
+2023,1,19,8,0,-14.4,1.23,0.032,0.63,25,436,53,4,7,-16.6,28,214,57,42,0.35100000000000003,83.49,86.28,0.9400000000000001,0.8,788,0.4,172,1.9000000000000001
+2023,1,19,8,30,-12.9,1.23,0.032,0.63,37,655,133,2,7,-16.6,73,240,21,108,0.35100000000000003,73.88,81.60000000000001,0.9400000000000001,0.8,788,0.4,178,1.9000000000000001
+2023,1,19,9,0,-11.4,1.25,0.032,0.63,48,775,220,0,7,-14.3,141,161,0,177,0.35100000000000003,78.81,77.17,0.9400000000000001,0.8,788,0.4,184,1.9000000000000001
+2023,1,19,9,30,-9.700000000000001,1.25,0.032,0.63,55,851,302,0,7,-14.3,188,175,0,239,0.352,68.86,73.11,0.9400000000000001,0.8,788,0.4,193,2.2
+2023,1,19,10,0,-8,1.25,0.031,0.63,61,902,377,0,7,-11.700000000000001,218,266,0,311,0.353,74.92,69.5,0.9400000000000001,0.8,788,0.4,203,2.5
+2023,1,19,10,30,-6.6000000000000005,1.25,0.031,0.63,66,936,441,0,7,-11.700000000000001,275,161,0,339,0.353,67.25,66.4,0.9400000000000001,0.8,788,0.4,208,2.8000000000000003
+2023,1,19,11,0,-5.300000000000001,1.24,0.032,0.63,70,958,491,0,7,-10.3,295,222,0,393,0.354,68.16,63.92,0.9400000000000001,0.8,787,0.4,213,3
+2023,1,19,11,30,-4.7,1.24,0.032,0.63,72,973,527,0,7,-10.3,310,262,0,433,0.353,65.14,62.120000000000005,0.9400000000000001,0.8,787,0.4,212,3
+2023,1,19,12,0,-4,1.23,0.032,0.63,74,980,548,0,7,-9.700000000000001,320,281,0,456,0.353,64.38,61.06,0.9400000000000001,0.8,787,0.4,212,2.9000000000000004
+2023,1,19,12,30,-3.7,1.23,0.032,0.63,74,984,554,0,7,-9.700000000000001,312,321,0,469,0.352,62.870000000000005,60.79,0.9400000000000001,0.8,786,0.4,210,2.8000000000000003
+2023,1,19,13,0,-3.3000000000000003,1.24,0.03,0.63,72,981,543,0,7,-9.4,291,355,0,461,0.352,62.74,61.32,0.9400000000000001,0.8,786,0.4,208,2.7
+2023,1,19,13,30,-3.2,1.24,0.03,0.63,70,972,517,0,7,-9.4,261,397,0,444,0.352,62.27,62.63,0.9400000000000001,0.8,786,0.4,208,2.6
+2023,1,19,14,0,-3,1.25,0.029,0.63,66,957,476,0,7,-9.1,161,634,7,432,0.352,62.72,64.66,0.9400000000000001,0.8,786,0.4,208,2.5
+2023,1,19,14,30,-3.2,1.25,0.029,0.63,64,928,421,0,7,-9.1,130,694,14,397,0.352,63.660000000000004,67.36,0.9400000000000001,0.8,786,0.4,209,2.2
+2023,1,19,15,0,-3.4000000000000004,1.22,0.031,0.63,58,888,353,0,7,-8.3,122,623,14,329,0.352,68.89,70.63,0.9400000000000001,0.8,786,0.4,210,1.9000000000000001
+2023,1,19,15,30,-4.2,1.22,0.031,0.63,54,827,276,0,7,-8.3,113,518,21,252,0.352,73.14,74.4,0.9400000000000001,0.8,786,0.4,212,1.5
+2023,1,19,16,0,-4.9,1.2,0.034,0.63,45,734,190,0,7,-8.9,99,336,0,165,0.35100000000000003,73.51,78.59,0.9500000000000001,0.8,786,0.4,215,1.1
+2023,1,19,16,30,-5.5,1.2,0.034,0.63,34,582,104,6,7,-8.9,66,30,86,70,0.352,77.03,83.12,0.9500000000000001,0.8,787,0.4,220,0.9
+2023,1,19,17,0,-6,1.18,0.036000000000000004,0.63,18,262,28,6,7,-10,18,1,86,18,0.352,73.18,87.84,0.9500000000000001,0.8,787,0.4,225,0.8
+2023,1,19,17,30,-6.1000000000000005,1.18,0.036000000000000004,0.63,0,0,0,0,7,-10,0,0,0,0,0.352,73.74,93.17,0.9500000000000001,0.8,787,0.5,231,0.7000000000000001
+2023,1,19,18,0,-6.2,1.18,0.038,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.352,72.74,98.46000000000001,0.9500000000000001,0.8,787,0.5,236,0.5
+2023,1,19,18,30,-6.4,1.18,0.038,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.353,73.86,103.9,0.9500000000000001,0.8,787,0.5,260,0.30000000000000004
+2023,1,19,19,0,-6.5,1.17,0.04,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.354,74.10000000000001,109.46000000000001,0.9500000000000001,0.8,788,0.5,283,0.2
+2023,1,19,19,30,-6.7,1.17,0.04,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.355,75.25,115.09,0.9500000000000001,0.8,788,0.5,155,0.30000000000000004
+2023,1,19,20,0,-6.9,1.16,0.04,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.356,76.43,120.78,0.9500000000000001,0.8,788,0.5,27,0.4
+2023,1,19,20,30,-7.2,1.16,0.04,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.358,78.22,126.47,0.96,0.8,788,0.5,33,0.6000000000000001
+2023,1,19,21,0,-7.4,1.16,0.041,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.359,79.67,132.13,0.96,0.8,788,0.5,40,0.7000000000000001
+2023,1,19,21,30,-7.800000000000001,1.16,0.041,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.36,82.17,137.69,0.96,0.8,788,0.5,42,0.9
+2023,1,19,22,0,-8.1,1.16,0.041,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.362,83.18,143.08,0.96,0.8,788,0.5,45,1
+2023,1,19,22,30,-8.4,1.16,0.041,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.363,85.14,148.16,0.96,0.8,788,0.5,46,1.3
+2023,1,19,23,0,-8.6,1.16,0.041,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.364,84.87,152.74,0.96,0.8,787,0.5,47,1.5
+2023,1,19,23,30,-8.9,1.16,0.041,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.366,86.88,156.49,0.96,0.8,787,0.5,48,1.6
+2023,1,20,0,0,-9.1,1.16,0.041,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.367,87.28,158.93,0.96,0.8,787,0.5,49,1.8
+2023,1,20,0,30,-9.3,1.16,0.041,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.368,88.66,159.59,0.96,0.8,787,0.5,48,1.8
+2023,1,20,1,0,-9.4,1.16,0.041,0.63,0,0,0,0,7,-11,0,0,0,0,0.369,88.32000000000001,158.29,0.96,0.8,787,0.5,48,1.9000000000000001
+2023,1,20,1,30,-9.600000000000001,1.16,0.041,0.63,0,0,0,0,7,-11,0,0,0,0,0.37,89.72,155.35,0.96,0.8,787,0.5,47,1.9000000000000001
+2023,1,20,2,0,-9.700000000000001,1.17,0.041,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.371,88.89,151.28,0.96,0.8,787,0.5,47,1.9000000000000001
+2023,1,20,2,30,-9.8,1.17,0.041,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.372,89.59,146.5,0.9500000000000001,0.8,787,0.5,45,1.9000000000000001
+2023,1,20,3,0,-9.9,1.18,0.041,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.372,88.2,141.3,0.9500000000000001,0.8,787,0.5,43,1.9000000000000001
+2023,1,20,3,30,-10.200000000000001,1.18,0.041,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.373,90.31,135.84,0.9500000000000001,0.8,787,0.5,40,1.9000000000000001
+2023,1,20,4,0,-10.5,1.2,0.039,0.63,0,0,0,0,7,-12,0,0,0,0,0.373,89.06,130.23,0.9500000000000001,0.8,787,0.5,37,1.9000000000000001
+2023,1,20,4,30,-10.8,1.2,0.039,0.63,0,0,0,0,7,-12,0,0,0,0,0.373,91.2,124.55,0.9500000000000001,0.8,787,0.4,35,2
+2023,1,20,5,0,-11.100000000000001,1.21,0.038,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,89.21000000000001,118.85000000000001,0.9500000000000001,0.8,787,0.4,32,2.1
+2023,1,20,5,30,-11.3,1.21,0.038,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,90.64,113.17,0.9500000000000001,0.8,787,0.4,30,2.2
+2023,1,20,6,0,-11.5,1.21,0.038,0.63,0,0,0,0,7,-13,0,0,0,0,0.374,88.69,107.55,0.9500000000000001,0.8,787,0.4,28,2.4000000000000004
+2023,1,20,6,30,-11.5,1.21,0.038,0.63,0,0,0,0,7,-13,0,0,0,0,0.373,88.69,102.02,0.9500000000000001,0.8,787,0.4,26,2.7
+2023,1,20,7,0,-11.5,1.2,0.04,0.63,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.373,87.14,96.62,0.9500000000000001,0.8,787,0.4,25,3
+2023,1,20,7,30,-10.8,1.2,0.04,0.63,4,34,3,2,7,-13.200000000000001,2,0,29,2,0.372,82.51,91.38,0.9500000000000001,0.8,788,0.4,23,3.3000000000000003
+2023,1,20,8,0,-10.100000000000001,1.18,0.042,0.63,26,400,53,7,7,-12.3,33,2,100,33,0.372,83.94,86.18,0.9500000000000001,0.8,788,0.4,22,3.7
+2023,1,20,8,30,-9.1,1.18,0.042,0.63,41,623,133,2,7,-12.3,85,12,29,87,0.373,77.59,81.48,0.9500000000000001,0.8,788,0.4,21,4.1000000000000005
+2023,1,20,9,0,-8,1.18,0.043000000000000003,0.63,52,749,220,0,7,-11,144,33,0,151,0.373,79.08,77.05,0.9500000000000001,0.8,788,0.4,20,4.6000000000000005
+2023,1,20,9,30,-7.2,1.18,0.043000000000000003,0.63,60,829,303,0,7,-11,198,77,0,221,0.374,74.34,72.97,0.9500000000000001,0.8,788,0.4,20,4.800000000000001
+2023,1,20,10,0,-6.5,1.18,0.042,0.63,66,883,378,0,7,-10.200000000000001,248,111,0,287,0.375,74.87,69.34,0.9500000000000001,0.8,788,0.4,20,5
+2023,1,20,10,30,-5.7,1.18,0.042,0.63,72,918,442,0,7,-10.200000000000001,266,235,0,361,0.376,70.43,66.23,0.9500000000000001,0.8,788,0.4,18,5.1000000000000005
+2023,1,20,11,0,-5,1.18,0.042,0.63,75,942,492,0,7,-9.4,201,554,0,446,0.377,71.44,63.74,0.9500000000000001,0.8,788,0.4,17,5.2
+2023,1,20,11,30,-4.4,1.18,0.042,0.63,79,957,529,0,7,-9.4,154,731,0,498,0.377,68.19,61.92,0.9500000000000001,0.8,787,0.4,16,5.2
+2023,1,20,12,0,-3.9000000000000004,1.18,0.042,0.63,80,965,550,0,7,-8.8,267,456,0,489,0.378,69.01,60.86,0.9500000000000001,0.8,787,0.4,14,5.2
+2023,1,20,12,30,-3.5,1.18,0.042,0.63,80,965,554,0,7,-8.8,320,305,0,470,0.379,66.97,60.58,0.9500000000000001,0.8,787,0.4,14,5.2
+2023,1,20,13,0,-3.2,1.18,0.043000000000000003,0.63,80,958,543,0,7,-8.4,339,212,0,441,0.379,67.33,61.1,0.9500000000000001,0.8,787,0.5,13,5.2
+2023,1,20,13,30,-3.1,1.18,0.043000000000000003,0.63,78,948,517,0,7,-8.4,323,189,0,411,0.379,66.83,62.4,0.9500000000000001,0.8,787,0.5,13,5.1000000000000005
+2023,1,20,14,0,-3,1.2,0.042,0.63,74,931,476,0,7,-8.200000000000001,301,178,0,378,0.379,67.41,64.44,0.9500000000000001,0.8,787,0.5,12,5.1000000000000005
+2023,1,20,14,30,-3.2,1.2,0.042,0.63,69,902,420,0,7,-8.200000000000001,266,180,0,336,0.378,68.42,67.13,0.9500000000000001,0.8,787,0.5,12,4.800000000000001
+2023,1,20,15,0,-3.5,1.2,0.043000000000000003,0.63,65,859,353,0,7,-8.1,220,198,0,286,0.378,70.23,70.41,0.9500000000000001,0.8,787,0.5,12,4.5
+2023,1,20,15,30,-4.2,1.2,0.043000000000000003,0.63,58,796,275,0,7,-8.1,165,238,0,230,0.377,74.01,74.19,0.9500000000000001,0.8,787,0.5,10,3.9000000000000004
+2023,1,20,16,0,-5,1.19,0.047,0.63,49,698,190,0,7,-8.5,124,143,0,153,0.376,76.2,78.38,0.9500000000000001,0.8,787,0.5,9,3.3000000000000003
+2023,1,20,16,30,-5.800000000000001,1.19,0.047,0.63,37,544,104,5,7,-8.5,59,6,71,60,0.375,81.07000000000001,82.91,0.9500000000000001,0.8,788,0.5,6,3.1
+2023,1,20,17,0,-6.7,1.19,0.048,0.63,19,239,29,7,7,-9.5,20,1,100,20,0.374,80.23,87.65,0.9500000000000001,0.8,788,0.5,2,2.9000000000000004
+2023,1,20,17,30,-7.1000000000000005,1.19,0.048,0.63,0,0,0,1,7,-9.5,0,0,14,0,0.373,82.74,92.97,0.9500000000000001,0.8,788,0.5,181,3.1
+2023,1,20,18,0,-7.5,1.21,0.047,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.372,82.76,98.27,0.9500000000000001,0.8,789,0.5,360,3.2
+2023,1,20,18,30,-8,1.21,0.047,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.372,86.02,103.71000000000001,0.9500000000000001,0.8,789,0.5,359,3.2
+2023,1,20,19,0,-8.5,1.26,0.043000000000000003,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.372,85.83,109.27,0.9400000000000001,0.8,789,0.5,358,3.2
+2023,1,20,19,30,-9.3,1.26,0.043000000000000003,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.372,91.38,114.91,0.9400000000000001,0.8,789,0.5,358,3.1
+2023,1,20,20,0,-10.100000000000001,1.32,0.037,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.372,89.64,120.59,0.9400000000000001,0.8,789,0.5,357,3
+2023,1,20,20,30,-10.9,1.32,0.037,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.373,95.63,126.29,0.9400000000000001,0.8,790,0.5,357,2.9000000000000004
+2023,1,20,21,0,-11.600000000000001,1.33,0.036000000000000004,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.374,93.01,131.94,0.9400000000000001,0.8,790,0.5,357,2.9000000000000004
+2023,1,20,21,30,-12,1.33,0.036000000000000004,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.375,96.05,137.5,0.9400000000000001,0.8,790,0.4,356,2.8000000000000003
+2023,1,20,22,0,-12.5,1.31,0.039,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.375,95.43,142.88,0.9400000000000001,0.8,790,0.4,355,2.7
+2023,1,20,22,30,-12.700000000000001,1.31,0.039,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.375,96.98,147.96,0.9400000000000001,0.8,790,0.4,356,2.5
+2023,1,20,23,0,-12.9,1.29,0.043000000000000003,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.375,96.28,152.53,0.9500000000000001,0.8,790,0.4,357,2.4000000000000004
+2023,1,20,23,30,-13,1.29,0.043000000000000003,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.374,97.07000000000001,156.26,0.9500000000000001,0.8,790,0.4,179,2.3000000000000003
+2023,1,21,0,0,-13.100000000000001,1.27,0.044,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.373,96.25,158.71,0.9500000000000001,0.8,790,0.4,1,2.1
+2023,1,21,0,30,-13.200000000000001,1.27,0.044,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.371,97.03,159.38,0.9500000000000001,0.8,790,0.4,5,2
+2023,1,21,1,0,-13.4,1.26,0.043000000000000003,0.63,0,0,0,0,7,-13.9,0,0,0,0,0.37,96.4,158.11,0.9500000000000001,0.8,790,0.5,8,2
+2023,1,21,1,30,-13.5,1.26,0.043000000000000003,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.368,97.19,155.20000000000002,0.9500000000000001,0.8,790,0.5,10,2
+2023,1,21,2,0,-13.600000000000001,1.24,0.042,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.366,95.55,151.16,0.9500000000000001,0.8,790,0.5,12,2
+2023,1,21,2,30,-13.700000000000001,1.24,0.042,0.63,0,0,0,0,7,-14.100000000000001,0,0,0,0,0.364,96.45,146.4,0.9500000000000001,0.8,791,0.5,13,1.9000000000000001
+2023,1,21,3,0,-13.9,1.22,0.039,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.363,95.2,141.20000000000002,0.9500000000000001,0.8,791,0.5,14,1.9000000000000001
+2023,1,21,3,30,-14.100000000000001,1.22,0.039,0.63,0,0,0,0,7,-14.5,0,0,0,0,0.361,96.77,135.75,0.9500000000000001,0.8,791,0.5,15,1.9000000000000001
+2023,1,21,4,0,-14.3,1.22,0.036000000000000004,0.63,0,0,0,0,0,-14.9,0,0,29,0,0.36,94.89,130.15,0.9400000000000001,0.8,791,0.5,16,1.9000000000000001
+2023,1,21,4,30,-14.5,1.22,0.036000000000000004,0.63,0,0,0,0,7,-14.9,0,0,14,0,0.358,96.46000000000001,124.48,0.9400000000000001,0.8,791,0.5,17,1.9000000000000001
+2023,1,21,5,0,-14.600000000000001,1.21,0.036000000000000004,0.63,0,0,0,0,7,-15.3,0,0,0,0,0.356,94.54,118.78,0.9400000000000001,0.8,791,0.5,18,1.9000000000000001
+2023,1,21,5,30,-14.600000000000001,1.21,0.036000000000000004,0.63,0,0,0,0,7,-15.3,0,0,0,0,0.354,94.54,113.10000000000001,0.9500000000000001,0.8,791,0.5,15,1.9000000000000001
+2023,1,21,6,0,-14.600000000000001,1.21,0.037,0.63,0,0,0,0,7,-15.4,0,0,0,0,0.352,93.79,107.47,0.9500000000000001,0.8,791,0.5,13,1.9000000000000001
+2023,1,21,6,30,-14.600000000000001,1.21,0.037,0.63,0,0,0,0,8,-15.4,0,0,0,0,0.35000000000000003,93.79,101.94,0.9500000000000001,0.8,791,0.5,11,1.9000000000000001
+2023,1,21,7,0,-14.5,1.22,0.037,0.63,0,0,0,0,0,-15.5,0,0,0,0,0.34800000000000003,92.18,96.53,0.9500000000000001,0.8,791,0.5,8,1.9000000000000001
+2023,1,21,7,30,-13.9,1.22,0.037,0.63,4,36,3,0,0,-15.5,4,36,0,3,0.34700000000000003,87.87,91.28,0.9500000000000001,0.8,792,0.5,9,1.7000000000000002
+2023,1,21,8,0,-13.200000000000001,1.24,0.037,0.63,26,412,54,0,0,-14.9,26,383,7,52,0.34600000000000003,87.28,86.07000000000001,0.9500000000000001,0.8,792,0.5,9,1.6
+2023,1,21,8,30,-11.700000000000001,1.24,0.037,0.63,39,630,134,0,0,-14.9,39,630,0,134,0.34600000000000003,77.33,81.36,0.9500000000000001,0.8,792,0.5,6,1.7000000000000002
+2023,1,21,9,0,-10.3,1.25,0.037,0.63,50,754,221,0,0,-12.9,50,754,0,221,0.34600000000000003,80.99,76.91,0.9500000000000001,0.8,792,0.5,3,1.7000000000000002
+2023,1,21,9,30,-9.200000000000001,1.25,0.037,0.63,58,834,304,0,0,-12.9,58,834,0,304,0.34700000000000003,74.27,72.82000000000001,0.9500000000000001,0.8,792,0.5,177,1.6
+2023,1,21,10,0,-8.200000000000001,1.25,0.034,0.63,63,888,379,0,0,-11.5,63,888,0,379,0.34700000000000003,77.23,69.18,0.9500000000000001,0.8,792,0.5,351,1.4000000000000001
+2023,1,21,10,30,-7.300000000000001,1.25,0.034,0.63,68,924,443,0,0,-11.5,68,924,0,443,0.34800000000000003,72.03,66.06,0.9500000000000001,0.8,792,0.5,334,1.5
+2023,1,21,11,0,-6.4,1.26,0.032,0.63,71,950,494,0,0,-10.4,71,950,0,494,0.34800000000000003,73.10000000000001,63.550000000000004,0.9500000000000001,0.8,792,0.5,317,1.5
+2023,1,21,11,30,-5.7,1.26,0.032,0.63,72,968,531,0,0,-10.4,72,968,0,531,0.34800000000000003,69.3,61.72,0.9500000000000001,0.8,792,0.5,312,1.9000000000000001
+2023,1,21,12,0,-4.9,1.26,0.027,0.63,72,980,552,0,0,-9.9,72,980,0,552,0.34700000000000003,67.77,60.64,0.9400000000000001,0.8,791,0.5,308,2.2
+2023,1,21,12,30,-4.5,1.26,0.027,0.63,70,986,558,0,0,-9.9,70,986,0,558,0.34700000000000003,65.76,60.36,0.9400000000000001,0.8,791,0.5,308,2.4000000000000004
+2023,1,21,13,0,-4.1000000000000005,1.25,0.02,0.63,67,988,548,0,0,-9.8,67,988,0,548,0.34600000000000003,64.64,60.870000000000005,0.93,0.8,791,0.5,309,2.5
+2023,1,21,13,30,-3.8000000000000003,1.25,0.02,0.63,64,982,522,0,0,-9.8,64,982,0,522,0.34500000000000003,63.21,62.17,0.93,0.8,791,0.5,311,2.6
+2023,1,21,14,0,-3.6,1.24,0.016,0.63,59,970,481,0,0,-9.8,59,970,0,481,0.34400000000000003,62.35,64.21000000000001,0.92,0.8,791,0.5,313,2.6
+2023,1,21,14,30,-3.7,1.24,0.016,0.63,54,948,426,0,0,-9.8,54,948,0,426,0.343,62.74,66.9,0.92,0.8,790,0.5,316,2.4000000000000004
+2023,1,21,15,0,-3.7,1.23,0.013000000000000001,0.63,49,915,359,0,0,-9.3,49,915,0,359,0.341,64.89,70.19,0.91,0.8,790,0.5,318,2.2
+2023,1,21,15,30,-4.6000000000000005,1.23,0.013000000000000001,0.63,43,865,282,0,0,-9.3,43,865,0,282,0.34,69.43,73.97,0.91,0.8,790,0.5,318,1.7000000000000002
+2023,1,21,16,0,-5.4,1.22,0.012,0.63,36,788,198,0,0,-10.200000000000001,36,788,0,198,0.338,68.98,78.17,0.91,0.8,790,0.5,319,1.2000000000000002
+2023,1,21,16,30,-6.6000000000000005,1.22,0.012,0.63,28,659,112,0,0,-10.200000000000001,28,659,0,112,0.338,75.59,82.7,0.91,0.8,790,0.5,310,1
+2023,1,21,17,0,-7.9,1.22,0.011,0.63,18,341,33,0,0,-11.9,18,341,0,33,0.337,72.69,87.45,0.91,0.8,790,0.5,302,0.7000000000000001
+2023,1,21,17,30,-8.6,1.22,0.011,0.63,0,0,0,0,0,-11.9,0,0,0,0,0.336,76.76,92.77,0.91,0.8,790,0.5,294,0.7000000000000001
+2023,1,21,18,0,-9.3,1.24,0.011,0.63,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.335,76.55,98.07000000000001,0.9,0.8,791,0.5,286,0.8
+2023,1,21,18,30,-9.9,1.24,0.011,0.63,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.335,80.15,103.52,0.91,0.8,790,0.5,279,0.8
+2023,1,21,19,0,-10.4,1.27,0.011,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.334,80.43,109.08,0.91,0.8,790,0.5,272,0.8
+2023,1,21,19,30,-10.8,1.27,0.011,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.333,83.02,114.72,0.91,0.8,790,0.5,263,0.8
+2023,1,21,20,0,-11.200000000000001,1.29,0.012,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.333,83.43,120.41,0.9,0.8,790,0.5,254,0.8
+2023,1,21,20,30,-11.4,1.29,0.012,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.333,84.78,126.10000000000001,0.9,0.8,790,0.5,246,0.8
+2023,1,21,21,0,-11.700000000000001,1.3,0.012,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.332,84.99,131.75,0.9,0.8,790,0.5,237,0.8
+2023,1,21,21,30,-12,1.3,0.012,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.332,87.06,137.31,0.9,0.8,790,0.5,224,0.8
+2023,1,21,22,0,-12.200000000000001,1.31,0.012,0.63,0,0,0,0,0,-14,0,0,0,0,0.331,86.57000000000001,142.68,0.9,0.8,789,0.5,212,0.8
+2023,1,21,22,30,-12.5,1.31,0.012,0.63,0,0,0,0,0,-14,0,0,0,0,0.33,88.69,147.75,0.9,0.8,789,0.5,199,0.9
+2023,1,21,23,0,-12.700000000000001,1.33,0.012,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.33,88.37,152.31,0.9,0.8,789,0.5,187,1
+2023,1,21,23,30,-13,1.33,0.012,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.329,90.54,156.03,0.9,0.8,789,0.5,182,1.2000000000000002
+2023,1,22,0,0,-13.4,1.34,0.013000000000000001,0.63,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.329,90.72,158.47,0.9,0.8,788,0.5,177,1.4000000000000001
+2023,1,22,0,30,-13.700000000000001,1.34,0.013000000000000001,0.63,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.328,92.97,159.16,0.9,0.8,788,0.5,176,1.6
+2023,1,22,1,0,-14,1.34,0.012,0.63,0,0,0,0,0,-15,0,0,0,0,0.328,92.2,157.91,0.9,0.8,788,0.5,174,1.7000000000000002
+2023,1,22,1,30,-14.200000000000001,1.34,0.012,0.63,0,0,0,0,0,-15,0,0,0,0,0.327,93.72,155.04,0.9,0.8,788,0.5,174,1.8
+2023,1,22,2,0,-14.4,1.34,0.012,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.325,92.3,151.02,0.9,0.8,787,0.5,173,1.9000000000000001
+2023,1,22,2,30,-14.600000000000001,1.34,0.012,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.323,93.82000000000001,146.28,0.9,0.8,787,0.5,175,2
+2023,1,22,3,0,-14.8,1.34,0.013000000000000001,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.321,92.08,141.11,0.91,0.8,787,0.5,177,2.1
+2023,1,22,3,30,-15,1.34,0.013000000000000001,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.321,93.49,135.66,0.91,0.8,786,0.5,178,2.1
+2023,1,22,4,0,-15.200000000000001,1.32,0.014,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.32,91.14,130.07,0.92,0.8,786,0.5,179,2.2
+2023,1,22,4,30,-15.3,1.32,0.014,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.321,91.9,124.4,0.92,0.8,786,0.5,181,2.2
+2023,1,22,5,0,-15.4,1.3,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.323,88.84,118.7,0.93,0.8,786,0.4,183,2.2
+2023,1,22,5,30,-15.5,1.3,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.325,89.58,113.01,0.93,0.8,786,0.4,186,2.1
+2023,1,22,6,0,-15.5,1.28,0.019,0.63,0,0,0,0,0,-17.1,0,0,0,0,0.327,87.18,107.38,0.93,0.8,785,0.4,189,2
+2023,1,22,6,30,-15.4,1.28,0.019,0.63,0,0,0,0,7,-17.1,0,0,0,0,0.329,86.46000000000001,101.84,0.93,0.8,785,0.4,188,1.9000000000000001
+2023,1,22,7,0,-15.3,1.26,0.019,0.63,0,0,0,0,7,-17.2,0,0,0,0,0.331,85.7,96.43,0.93,0.8,785,0.4,186,1.8
+2023,1,22,7,30,-14.600000000000001,1.26,0.019,0.63,4,49,3,2,7,-17.2,4,37,21,3,0.332,80.89,91.17,0.9400000000000001,0.8,785,0.4,183,1.8
+2023,1,22,8,0,-13.8,1.26,0.02,0.63,24,494,59,0,0,-16.2,25,460,7,57,0.333,81.74,85.95,0.9400000000000001,0.8,785,0.4,180,1.8
+2023,1,22,8,30,-12.5,1.26,0.02,0.63,35,695,141,0,0,-16.2,37,674,4,140,0.334,73.56,81.23,0.9400000000000001,0.8,785,0.4,178,1.6
+2023,1,22,9,0,-11.100000000000001,1.25,0.022,0.63,44,807,229,0,0,-14.200000000000001,44,807,0,229,0.334,77.91,76.77,0.9400000000000001,0.8,785,0.4,175,1.4000000000000001
+2023,1,22,9,30,-9.8,1.25,0.022,0.63,52,877,313,0,0,-14.200000000000001,52,877,0,313,0.334,70.28,72.67,0.9400000000000001,0.8,785,0.4,184,1.2000000000000002
+2023,1,22,10,0,-8.6,1.23,0.024,0.63,58,922,388,0,0,-12.100000000000001,113,716,0,369,0.333,75.63,69.01,0.9400000000000001,0.8,785,0.4,192,1.1
+2023,1,22,10,30,-7.300000000000001,1.23,0.024,0.63,63,954,453,0,7,-12.100000000000001,225,396,0,387,0.333,68.29,65.88,0.9400000000000001,0.8,784,0.4,207,1.1
+2023,1,22,11,0,-6,1.23,0.024,0.63,66,976,504,0,7,-10.700000000000001,201,567,0,455,0.332,69.31,63.35,0.9400000000000001,0.8,784,0.4,222,1.2000000000000002
+2023,1,22,11,30,-5.1000000000000005,1.23,0.024,0.63,69,990,541,0,0,-10.700000000000001,69,990,0,541,0.332,64.64,61.51,0.9400000000000001,0.8,783,0.4,229,1
+2023,1,22,12,0,-4.2,1.24,0.025,0.63,70,997,562,0,0,-10.200000000000001,70,997,0,562,0.332,63.07,60.42,0.9400000000000001,0.8,783,0.4,236,0.8
+2023,1,22,12,30,-3.8000000000000003,1.24,0.025,0.63,70,999,568,0,0,-10.200000000000001,85,940,0,553,0.331,61.13,60.13,0.9400000000000001,0.8,782,0.4,138,0.6000000000000001
+2023,1,22,13,0,-3.4000000000000004,1.25,0.025,0.63,70,995,558,0,7,-10,312,299,0,459,0.331,60.34,60.64,0.9400000000000001,0.8,782,0.4,41,0.4
+2023,1,22,13,30,-3.2,1.25,0.025,0.63,69,985,532,0,7,-10,206,565,14,472,0.33,59.45,61.940000000000005,0.9400000000000001,0.8,782,0.4,44,0.9
+2023,1,22,14,0,-3.1,1.25,0.026000000000000002,0.63,67,965,490,0,7,-9.8,242,388,7,412,0.33,59.93,63.97,0.9500000000000001,0.8,781,0.4,46,1.4000000000000001
+2023,1,22,14,30,-3.2,1.25,0.026000000000000002,0.63,63,937,434,0,7,-9.8,198,469,14,384,0.329,60.370000000000005,66.67,0.9500000000000001,0.8,781,0.5,43,1.7000000000000002
+2023,1,22,15,0,-3.4000000000000004,1.25,0.027,0.63,58,896,365,0,7,-8.8,135,583,32,335,0.328,66.36,69.96000000000001,0.9500000000000001,0.8,781,0.5,39,1.9000000000000001
+2023,1,22,15,30,-4.2,1.25,0.027,0.63,52,841,287,0,7,-8.8,81,691,46,274,0.327,70.54,73.74,0.9500000000000001,0.8,782,0.5,34,1.9000000000000001
+2023,1,22,16,0,-5,1.25,0.028,0.63,44,756,202,0,7,-9.200000000000001,108,222,7,154,0.326,72.5,77.95,0.9500000000000001,0.8,782,0.5,29,1.8
+2023,1,22,16,30,-6.1000000000000005,1.25,0.028,0.63,34,619,115,2,7,-9.200000000000001,50,366,32,98,0.326,78.82000000000001,82.49,0.9500000000000001,0.8,782,0.5,26,1.9000000000000001
+2023,1,22,17,0,-7.2,1.24,0.028,0.63,21,342,37,6,7,-10.700000000000001,21,43,79,23,0.325,76.08,87.26,0.9500000000000001,0.8,782,0.5,22,2
+2023,1,22,17,30,-7.5,1.24,0.028,0.63,0,0,0,0,7,-10.700000000000001,0,0,7,0,0.324,77.86,92.57000000000001,0.9500000000000001,0.8,782,0.5,20,2.3000000000000003
+2023,1,22,18,0,-7.9,1.23,0.028,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.324,75.65,97.87,0.9500000000000001,0.8,783,0.5,18,2.7
+2023,1,22,18,30,-8.1,1.23,0.028,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.323,76.83,103.33,0.9500000000000001,0.8,783,0.5,15,2.9000000000000004
+2023,1,22,19,0,-8.3,1.22,0.028,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.323,76.95,108.89,0.9500000000000001,0.8,783,0.5,12,3.2
+2023,1,22,19,30,-8.4,1.22,0.028,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.323,77.55,114.54,0.9500000000000001,0.8,783,0.5,10,3.4000000000000004
+2023,1,22,20,0,-8.6,1.22,0.03,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.323,79.24,120.22,0.9500000000000001,0.8,783,0.5,8,3.5
+2023,1,22,20,30,-8.700000000000001,1.22,0.03,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.322,79.86,125.91,0.96,0.8,783,0.6000000000000001,7,3.7
+2023,1,22,21,0,-8.8,1.21,0.035,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.322,81.57000000000001,131.56,0.96,0.8,783,0.6000000000000001,7,3.8000000000000003
+2023,1,22,21,30,-8.8,1.21,0.035,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.322,81.68,137.11,0.96,0.8,784,0.6000000000000001,8,3.9000000000000004
+2023,1,22,22,0,-8.9,1.21,0.041,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.321,84.3,142.48,0.96,0.8,784,0.6000000000000001,9,3.9000000000000004
+2023,1,22,22,30,-8.8,1.21,0.041,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.32,83.64,147.54,0.96,0.8,784,0.6000000000000001,10,4
+2023,1,22,23,0,-8.8,1.2,0.049,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.32,86.04,152.08,0.97,0.8,784,0.6000000000000001,12,4.1000000000000005
+2023,1,22,23,30,-8.8,1.2,0.049,0.63,0,0,0,0,6,-10.700000000000001,0,0,0,0,0.319,86.04,155.8,0.97,0.8,784,0.6000000000000001,13,4.2
+2023,1,23,0,0,-8.700000000000001,1.21,0.056,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,87.35000000000001,158.23,0.97,0.8,784,0.6000000000000001,15,4.4
+2023,1,23,0,30,-8.700000000000001,1.21,0.056,0.63,0,0,0,0,6,-10.4,0,0,0,0,0.317,87.35000000000001,158.93,0.97,0.8,784,0.6000000000000001,17,4.6000000000000005
+2023,1,23,1,0,-8.700000000000001,1.23,0.057,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.317,88.08,157.71,0.97,0.8,784,0.6000000000000001,18,4.800000000000001
+2023,1,23,1,30,-8.700000000000001,1.23,0.057,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.317,88.08,154.87,0.96,0.8,784,0.6000000000000001,17,4.9
+2023,1,23,2,0,-8.700000000000001,1.24,0.057,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,87.68,150.88,0.96,0.8,784,0.6000000000000001,17,4.9
+2023,1,23,2,30,-8.8,1.24,0.057,0.63,0,0,0,0,7,-10.4,0,0,0,0,0.318,88.36,146.16,0.96,0.8,784,0.6000000000000001,16,4.9
+2023,1,23,3,0,-8.8,1.25,0.057,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.319,87.66,141,0.96,0.8,785,0.6000000000000001,15,4.800000000000001
+2023,1,23,3,30,-8.9,1.25,0.057,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.319,88.34,135.57,0.96,0.8,785,0.6000000000000001,16,4.800000000000001
+2023,1,23,4,0,-8.9,1.24,0.055,0.63,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.32,87.28,129.98,0.96,0.8,785,0.6000000000000001,16,4.7
+2023,1,23,4,30,-9,1.24,0.055,0.63,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.321,87.97,124.31,0.96,0.8,785,0.6000000000000001,18,4.6000000000000005
+2023,1,23,5,0,-9.1,1.25,0.052000000000000005,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.322,87.52,118.61,0.96,0.8,786,0.6000000000000001,19,4.6000000000000005
+2023,1,23,5,30,-9.3,1.25,0.052000000000000005,0.63,0,0,0,0,8,-10.8,0,0,0,0,0.323,88.9,112.92,0.96,0.8,786,0.6000000000000001,20,4.5
+2023,1,23,6,0,-9.5,1.28,0.047,0.63,0,0,0,0,8,-11.100000000000001,0,0,0,0,0.325,88.35000000000001,107.29,0.9500000000000001,0.8,786,0.6000000000000001,22,4.5
+2023,1,23,6,30,-9.8,1.28,0.047,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.326,90.57000000000001,101.75,0.9500000000000001,0.8,787,0.6000000000000001,25,4.3
+2023,1,23,7,0,-10,1.31,0.038,0.63,0,0,0,0,4,-11.5,0,0,0,0,0.328,88.71000000000001,96.32000000000001,0.9500000000000001,0.8,787,0.5,28,4.2
+2023,1,23,7,30,-9.5,1.31,0.038,0.63,5,50,4,3,8,-11.5,2,0,43,2,0.33,85.29,91.06,0.9400000000000001,0.8,787,0.5,31,4.4
+2023,1,23,8,0,-8.9,1.34,0.032,0.63,25,449,58,5,8,-10.9,31,157,71,42,0.333,85.38,85.84,0.9400000000000001,0.8,787,0.5,33,4.6000000000000005
+2023,1,23,8,30,-7.800000000000001,1.34,0.032,0.63,39,661,141,0,0,-10.9,41,568,4,129,0.335,78.48,81.10000000000001,0.9400000000000001,0.8,788,0.5,36,4.9
+2023,1,23,9,0,-6.7,1.36,0.029,0.63,47,783,228,0,0,-9.600000000000001,49,644,0,198,0.337,79.75,76.63,0.9400000000000001,0.8,788,0.5,38,5.2
+2023,1,23,9,30,-5.800000000000001,1.36,0.029,0.63,54,858,312,0,0,-9.600000000000001,51,674,0,254,0.338,74.45,72.51,0.93,0.8,788,0.5,39,5
+2023,1,23,10,0,-4.9,1.36,0.026000000000000002,0.63,59,909,387,0,0,-8.6,61,813,0,354,0.34,75.14,68.84,0.93,0.8,788,0.5,39,4.800000000000001
+2023,1,23,10,30,-4.1000000000000005,1.36,0.026000000000000002,0.63,64,943,452,0,0,-8.6,64,943,0,452,0.34,70.75,65.69,0.93,0.8,788,0.5,35,4.4
+2023,1,23,11,0,-3.4000000000000004,1.36,0.025,0.63,66,969,504,0,0,-7.7,66,969,0,504,0.34,72.07000000000001,63.15,0.93,0.8,788,0.5,31,4
+2023,1,23,11,30,-2.9000000000000004,1.36,0.025,0.63,69,985,542,0,0,-7.7,69,985,0,542,0.339,69.35000000000001,61.29,0.93,0.8,787,0.5,23,3.7
+2023,1,23,12,0,-2.3000000000000003,1.36,0.025,0.63,69,993,563,0,0,-7.300000000000001,69,993,0,563,0.338,68.59,60.19,0.93,0.8,787,0.5,15,3.5
+2023,1,23,12,30,-2.1,1.36,0.025,0.63,70,995,569,0,0,-7.300000000000001,70,995,0,569,0.337,67.58,59.89,0.93,0.8,787,0.5,8,3.5
+2023,1,23,13,0,-1.8,1.36,0.025,0.63,71,991,560,0,0,-7,71,991,0,560,0.336,67.75,60.4,0.93,0.8,787,0.5,2,3.6
+2023,1,23,13,30,-1.8,1.36,0.025,0.63,68,982,534,0,0,-7,68,982,0,534,0.334,67.75,61.690000000000005,0.93,0.8,787,0.5,179,3.6
+2023,1,23,14,0,-1.8,1.35,0.025,0.63,65,966,493,0,0,-6.9,65,966,0,493,0.332,68.37,63.730000000000004,0.93,0.8,787,0.5,356,3.5
+2023,1,23,14,30,-2,1.35,0.025,0.63,62,942,439,0,0,-6.9,62,942,0,439,0.331,69.38,66.43,0.9400000000000001,0.8,787,0.5,355,3.3000000000000003
+2023,1,23,15,0,-2.3000000000000003,1.35,0.025,0.63,58,906,372,0,0,-6.800000000000001,58,906,0,372,0.329,71.34,69.72,0.9400000000000001,0.8,787,0.5,354,3.1
+2023,1,23,15,30,-3.4000000000000004,1.35,0.025,0.63,52,854,294,0,0,-6.800000000000001,52,854,0,294,0.328,77.41,73.52,0.9400000000000001,0.8,787,0.5,354,2.6
+2023,1,23,16,0,-4.6000000000000005,1.35,0.025,0.63,44,774,208,0,0,-8,44,774,0,208,0.327,77.41,77.73,0.9400000000000001,0.8,788,0.5,354,2.1
+2023,1,23,16,30,-6.1000000000000005,1.35,0.025,0.63,34,646,121,0,0,-8,34,646,0,121,0.327,86.74,82.28,0.9400000000000001,0.8,788,0.4,357,1.8
+2023,1,23,17,0,-7.7,1.36,0.024,0.63,21,377,40,0,0,-9.9,22,349,7,40,0.327,84.08,87.05,0.9400000000000001,0.8,788,0.4,360,1.4000000000000001
+2023,1,23,17,30,-8.200000000000001,1.36,0.024,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.327,87.4,92.37,0.9400000000000001,0.8,788,0.4,183,1.3
+2023,1,23,18,0,-8.8,1.36,0.023,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.328,86.66,97.68,0.9400000000000001,0.8,788,0.4,6,1.3
+2023,1,23,18,30,-9.200000000000001,1.36,0.023,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.327,89.53,103.13,0.9400000000000001,0.8,789,0.4,6,1.2000000000000002
+2023,1,23,19,0,-9.700000000000001,1.36,0.022,0.63,0,0,0,0,0,-11,0,0,0,0,0.327,90.33,108.7,0.9400000000000001,0.8,789,0.4,6,1.1
+2023,1,23,19,30,-10,1.36,0.022,0.63,0,0,0,0,0,-11,0,0,0,0,0.326,92.49,114.35000000000001,0.9400000000000001,0.8,789,0.4,6,1
+2023,1,23,20,0,-10.4,1.36,0.021,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.325,93.59,120.03,0.93,0.8,789,0.4,5,0.9
+2023,1,23,20,30,-10.600000000000001,1.36,0.021,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.324,95.09,125.72,0.93,0.8,789,0.4,8,0.8
+2023,1,23,21,0,-10.9,1.35,0.02,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.323,96.21000000000001,131.37,0.93,0.8,789,0.4,11,0.7000000000000001
+2023,1,23,21,30,-11.100000000000001,1.35,0.02,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.323,97.76,136.92000000000002,0.93,0.8,789,0.4,21,0.5
+2023,1,23,22,0,-11.4,1.34,0.018000000000000002,0.63,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.323,98.61,142.28,0.92,0.8,789,0.4,31,0.4
+2023,1,23,22,30,-11.700000000000001,1.34,0.018000000000000002,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.323,100,147.32,0.92,0.8,789,0.4,55,0.30000000000000004
+2023,1,23,23,0,-12,1.32,0.018000000000000002,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,100,151.86,0.92,0.8,789,0.4,79,0.2
+2023,1,23,23,30,-12.3,1.32,0.018000000000000002,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.322,100,155.56,0.93,0.8,789,0.4,76,0.2
+2023,1,24,0,0,-12.5,1.29,0.019,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.322,100,157.99,0.93,0.8,789,0.4,72,0.2
+2023,1,24,0,30,-12.600000000000001,1.29,0.019,0.63,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.32,100,158.69,0.93,0.8,789,0.4,41,0.2
+2023,1,24,1,0,-12.600000000000001,1.27,0.019,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.319,97.95,157.5,0.93,0.8,789,0.4,10,0.2
+2023,1,24,1,30,-12.3,1.27,0.019,0.63,0,0,0,0,7,-12.9,0,0,0,0,0.318,95.61,154.69,0.9400000000000001,0.8,789,0.4,183,0.30000000000000004
+2023,1,24,2,0,-11.9,1.26,0.023,0.63,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.318,93.44,150.73,0.9400000000000001,0.8,790,0.4,357,0.5
+2023,1,24,2,30,-11.600000000000001,1.26,0.023,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.318,91.10000000000001,146.04,0.9500000000000001,0.8,789,0.5,189,0.5
+2023,1,24,3,0,-11.3,1.25,0.027,0.63,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.318,90.33,140.89000000000001,0.9500000000000001,0.8,789,0.5,21,0.5
+2023,1,24,3,30,-11.100000000000001,1.25,0.027,0.63,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.317,88.9,135.47,0.9500000000000001,0.8,789,0.5,34,0.5
+2023,1,24,4,0,-10.9,1.25,0.029,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.317,88.28,129.88,0.9500000000000001,0.8,789,0.5,47,0.5
+2023,1,24,4,30,-10.9,1.25,0.029,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.317,88.39,124.21000000000001,0.9500000000000001,0.8,790,0.5,46,0.5
+2023,1,24,5,0,-10.8,1.26,0.03,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.317,87.3,118.52,0.9500000000000001,0.8,790,0.5,45,0.5
+2023,1,24,5,30,-10.9,1.26,0.03,0.63,0,0,0,0,7,-12.5,0,0,0,0,0.318,88,112.83,0.9400000000000001,0.8,790,0.5,38,0.5
+2023,1,24,6,0,-10.9,1.27,0.029,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.319,86.07000000000001,107.19,0.9400000000000001,0.8,790,0.5,30,0.6000000000000001
+2023,1,24,6,30,-11.100000000000001,1.27,0.029,0.63,0,0,0,0,7,-12.8,0,0,0,0,0.321,87.46000000000001,101.64,0.9400000000000001,0.8,790,0.5,22,0.7000000000000001
+2023,1,24,7,0,-11.200000000000001,1.27,0.028,0.63,0,0,0,0,4,-13,0,0,0,0,0.323,86.29,96.21000000000001,0.9400000000000001,0.8,791,0.4,14,0.9
+2023,1,24,7,30,-10.700000000000001,1.27,0.028,0.63,7,81,6,3,8,-13,3,0,43,3,0.327,82.92,90.94,0.9400000000000001,0.8,791,0.4,186,1.3
+2023,1,24,8,0,-10.3,1.27,0.03,0.63,26,469,61,6,8,-12.9,33,63,89,38,0.33,81.04,85.71000000000001,0.9500000000000001,0.8,791,0.4,359,1.7000000000000002
+2023,1,24,8,30,-9.1,1.27,0.03,0.63,39,673,145,1,7,-12.9,74,286,14,119,0.334,73.73,80.96000000000001,0.9500000000000001,0.8,791,0.4,355,2.5
+2023,1,24,9,0,-7.9,1.25,0.031,0.63,48,789,233,0,7,-11.700000000000001,125,314,0,198,0.337,74.02,76.47,0.9500000000000001,0.8,792,0.4,351,3.2
+2023,1,24,9,30,-7.2,1.25,0.031,0.63,56,864,318,0,7,-11.700000000000001,143,454,0,281,0.34,70.12,72.35000000000001,0.9500000000000001,0.8,792,0.4,349,3.6
+2023,1,24,10,0,-6.4,1.25,0.029,0.63,62,914,395,0,0,-11,70,884,0,392,0.343,69.62,68.66,0.9500000000000001,0.8,792,0.4,347,4
+2023,1,24,10,30,-5.800000000000001,1.25,0.029,0.63,66,947,459,0,0,-11,66,947,0,459,0.34500000000000003,66.51,65.49,0.9500000000000001,0.8,792,0.4,345,4.1000000000000005
+2023,1,24,11,0,-5.2,1.24,0.029,0.63,70,969,511,0,0,-10.4,70,969,0,511,0.34800000000000003,66.8,62.940000000000005,0.9500000000000001,0.8,791,0.4,343,4.2
+2023,1,24,11,30,-4.7,1.24,0.029,0.63,71,987,548,0,0,-10.4,95,913,0,537,0.34900000000000003,64.33,61.07,0.9400000000000001,0.8,791,0.4,341,4.3
+2023,1,24,12,0,-4.2,1.26,0.024,0.63,70,999,570,0,0,-10.100000000000001,70,999,0,570,0.35100000000000003,63.410000000000004,59.96,0.9400000000000001,0.8,791,0.4,339,4.4
+2023,1,24,12,30,-3.9000000000000004,1.26,0.024,0.63,69,1008,578,0,0,-10.100000000000001,69,1008,0,578,0.353,62,59.65,0.93,0.8,791,0.4,338,4.6000000000000005
+2023,1,24,13,0,-3.6,1.26,0.018000000000000002,0.63,65,1017,571,0,0,-10.5,65,1017,0,571,0.355,58.84,60.15,0.93,0.8,790,0.30000000000000004,336,4.800000000000001
+2023,1,24,13,30,-3.5,1.26,0.018000000000000002,0.63,61,1012,545,0,0,-10.5,61,1012,0,545,0.356,58.4,61.45,0.91,0.8,790,0.30000000000000004,336,4.800000000000001
+2023,1,24,14,0,-3.4000000000000004,1.26,0.013000000000000001,0.63,56,1001,503,0,0,-11,56,1001,0,503,0.358,55.5,63.480000000000004,0.9,0.8,790,0.30000000000000004,336,4.7
+2023,1,24,14,30,-3.6,1.26,0.013000000000000001,0.63,52,980,448,0,0,-11,52,980,0,448,0.358,56.33,66.19,0.9,0.8,790,0.30000000000000004,335,4.6000000000000005
+2023,1,24,15,0,-3.9000000000000004,1.26,0.01,0.63,46,951,379,0,0,-11.3,46,951,0,379,0.359,56.660000000000004,69.49,0.89,0.8,790,0.30000000000000004,335,4.4
+2023,1,24,15,30,-4.9,1.26,0.01,0.63,41,903,301,0,0,-11.3,41,903,0,301,0.359,61.09,73.29,0.89,0.8,790,0.30000000000000004,334,3.9000000000000004
+2023,1,24,16,0,-5.9,1.26,0.01,0.63,36,829,215,0,0,-12.100000000000001,36,829,0,215,0.359,61.550000000000004,77.51,0.89,0.8,790,0.30000000000000004,333,3.5
+2023,1,24,16,30,-7.6000000000000005,1.26,0.01,0.63,31,698,127,0,0,-12.100000000000001,31,698,0,127,0.359,70.21000000000001,82.07000000000001,0.91,0.8,791,0.30000000000000004,330,3.1
+2023,1,24,17,0,-9.3,1.22,0.018000000000000002,0.63,21,415,44,0,0,-13.8,21,415,0,44,0.359,70.01,86.85000000000001,0.93,0.8,791,0.30000000000000004,328,2.8000000000000003
+2023,1,24,17,30,-9.9,1.22,0.018000000000000002,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.359,73.4,92.16,0.9400000000000001,0.8,791,0.30000000000000004,325,2.9000000000000004
+2023,1,24,18,0,-10.5,1.16,0.023,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.359,74.9,97.48,0.9400000000000001,0.8,791,0.30000000000000004,323,3
+2023,1,24,18,30,-10.600000000000001,1.16,0.023,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.36,75.5,102.94,0.9400000000000001,0.8,791,0.30000000000000004,321,3
+2023,1,24,19,0,-10.700000000000001,1.16,0.023,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.362,77.67,108.51,0.9400000000000001,0.8,791,0.30000000000000004,320,3
+2023,1,24,19,30,-11,1.16,0.023,0.63,0,0,0,0,7,-13.8,0,0,0,0,0.364,79.54,114.16,0.9400000000000001,0.8,791,0.4,320,2.9000000000000004
+2023,1,24,20,0,-11.200000000000001,1.18,0.021,0.63,0,0,0,0,7,-14,0,0,0,0,0.366,79.69,119.84,0.93,0.8,791,0.4,321,2.8000000000000003
+2023,1,24,20,30,-11.5,1.18,0.021,0.63,0,0,0,0,0,-14,0,0,0,0,0.369,81.62,125.53,0.93,0.8,791,0.4,322,2.7
+2023,1,24,21,0,-11.8,1.19,0.02,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.371,81.69,131.18,0.93,0.8,791,0.4,323,2.6
+2023,1,24,21,30,-11.8,1.19,0.02,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.373,81.69,136.72,0.93,0.8,791,0.4,324,2.4000000000000004
+2023,1,24,22,0,-11.8,1.17,0.02,0.63,0,0,0,0,7,-14.100000000000001,0,0,0,0,0.375,83.08,142.07,0.93,0.8,791,0.4,324,2.2
+2023,1,24,22,30,-11.600000000000001,1.17,0.02,0.63,0,0,0,0,7,-14.100000000000001,0,0,0,0,0.376,81.76,147.11,0.93,0.8,791,0.4,325,2.1
+2023,1,24,23,0,-11.5,1.1500000000000001,0.021,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.377,84.24,151.63,0.9400000000000001,0.8,791,0.4,326,2
+2023,1,24,23,30,-11.3,1.1500000000000001,0.021,0.63,0,0,0,0,7,-13.600000000000001,0,0,0,0,0.377,82.9,155.32,0.9400000000000001,0.8,791,0.4,328,2
+2023,1,25,0,0,-11.200000000000001,1.1500000000000001,0.024,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.377,84.21000000000001,157.74,0.9400000000000001,0.8,791,0.4,329,2
+2023,1,25,0,30,-11.200000000000001,1.1500000000000001,0.024,0.63,0,0,0,0,7,-13.3,0,0,0,0,0.376,84.21000000000001,158.45000000000002,0.9400000000000001,0.8,791,0.4,332,2
+2023,1,25,1,0,-11.100000000000001,1.1500000000000001,0.025,0.63,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.375,84.83,157.29,0.9400000000000001,0.8,791,0.4,334,2.1
+2023,1,25,1,30,-11.200000000000001,1.1500000000000001,0.025,0.63,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.374,85.51,154.51,0.9400000000000001,0.8,791,0.4,334,2.2
+2023,1,25,2,0,-11.3,1.16,0.026000000000000002,0.63,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.372,85.87,150.57,0.9400000000000001,0.8,791,0.4,334,2.3000000000000003
+2023,1,25,2,30,-11.4,1.16,0.026000000000000002,0.63,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.37,86.56,145.9,0.9400000000000001,0.8,791,0.4,335,2.5
+2023,1,25,3,0,-11.5,1.19,0.026000000000000002,0.63,0,0,0,0,6,-13.4,0,0,0,0,0.368,85.55,140.77,0.9400000000000001,0.8,791,0.4,336,2.7
+2023,1,25,3,30,-11.8,1.19,0.026000000000000002,0.63,0,0,0,0,7,-13.4,0,0,0,0,0.366,87.63,135.36,0.9400000000000001,0.8,791,0.4,337,2.6
+2023,1,25,4,0,-12.100000000000001,1.23,0.022,0.63,0,0,0,0,7,-14,0,0,0,0,0.364,85.75,129.78,0.9400000000000001,0.8,791,0.30000000000000004,338,2.6
+2023,1,25,4,30,-12.600000000000001,1.23,0.022,0.63,0,0,0,0,7,-14,0,0,0,0,0.362,89.27,124.11,0.93,0.8,791,0.30000000000000004,337,2.4000000000000004
+2023,1,25,5,0,-13.100000000000001,1.29,0.019,0.63,0,0,0,0,7,-14.8,0,0,0,0,0.36,86.7,118.42,0.92,0.8,792,0.30000000000000004,337,2.1
+2023,1,25,5,30,-13.5,1.29,0.019,0.63,0,0,0,0,4,-14.8,0,0,0,0,0.358,89.56,112.73,0.92,0.8,792,0.30000000000000004,335,2
+2023,1,25,6,0,-13.9,1.33,0.017,0.63,0,0,0,0,5,-15.4,0,0,0,0,0.356,88.26,107.09,0.92,0.8,792,0.30000000000000004,333,1.8
+2023,1,25,6,30,-14,1.33,0.017,0.63,0,0,0,0,5,-15.4,0,0,0,0,0.355,88.99,101.53,0.92,0.8,792,0.30000000000000004,331,1.7000000000000002
+2023,1,25,7,0,-14.100000000000001,1.36,0.018000000000000002,0.63,0,0,0,0,5,-15.700000000000001,0,0,0,0,0.353,88.02,96.09,0.92,0.8,793,0.30000000000000004,329,1.7000000000000002
+2023,1,25,7,30,-13.3,1.36,0.018000000000000002,0.63,7,98,7,2,0,-15.700000000000001,5,51,29,5,0.353,82.45,90.29,0.92,0.8,793,0.30000000000000004,329,1.8
+2023,1,25,8,0,-12.5,1.37,0.021,0.63,25,522,65,1,0,-15.100000000000001,27,440,18,61,0.353,80.66,85.58,0.92,0.8,793,0.30000000000000004,329,2
+2023,1,25,8,30,-10.8,1.37,0.021,0.63,37,716,151,0,0,-15.100000000000001,37,716,0,151,0.354,70.48,80.81,0.92,0.8,794,0.30000000000000004,335,2.4000000000000004
+2023,1,25,9,0,-9.1,1.3800000000000001,0.022,0.63,46,825,241,0,0,-13.100000000000001,75,596,0,216,0.356,72.57000000000001,76.31,0.92,0.8,794,0.30000000000000004,341,2.9000000000000004
+2023,1,25,9,30,-8,1.3800000000000001,0.022,0.63,52,895,326,0,7,-13.100000000000001,142,448,0,279,0.357,66.6,72.17,0.92,0.8,794,0.30000000000000004,348,3
+2023,1,25,10,0,-6.9,1.3800000000000001,0.02,0.63,57,943,403,0,7,-11.9,159,550,0,361,0.358,67.67,68.47,0.92,0.8,794,0.30000000000000004,354,3.1
+2023,1,25,10,30,-6.4,1.3800000000000001,0.02,0.63,61,973,468,0,7,-11.9,229,425,0,407,0.359,65.12,65.29,0.93,0.8,794,0.30000000000000004,357,2.9000000000000004
+2023,1,25,11,0,-6,1.35,0.021,0.63,64,994,520,0,0,-11.700000000000001,119,839,0,504,0.361,64.17,62.72,0.93,0.8,794,0.30000000000000004,359,2.6
+2023,1,25,11,30,-6,1.35,0.021,0.63,68,1006,558,0,0,-11.700000000000001,68,1006,0,558,0.362,64.17,60.84,0.9400000000000001,0.8,794,0.30000000000000004,354,2.4000000000000004
+2023,1,25,12,0,-5.9,1.29,0.023,0.63,70,1012,580,0,0,-11.8,129,778,7,521,0.363,62.9,59.72,0.9400000000000001,0.8,794,0.30000000000000004,350,2.1
+2023,1,25,12,30,-5.9,1.29,0.023,0.63,72,1012,587,0,7,-11.8,206,634,0,529,0.365,62.9,59.4,0.9400000000000001,0.8,794,0.30000000000000004,342,2
+2023,1,25,13,0,-6,1.25,0.025,0.63,71,1006,576,0,8,-11.9,245,381,0,436,0.367,62.84,59.9,0.9400000000000001,0.8,794,0.30000000000000004,334,2
+2023,1,25,13,30,-6.1000000000000005,1.25,0.025,0.63,69,996,549,0,8,-11.9,261,37,0,279,0.368,63.32,61.2,0.9400000000000001,0.8,794,0.30000000000000004,330,2.1
+2023,1,25,14,0,-6.1000000000000005,1.23,0.025,0.63,67,980,508,0,7,-11.9,234,318,0,377,0.37,63.39,63.230000000000004,0.9400000000000001,0.8,794,0.30000000000000004,325,2.1
+2023,1,25,14,30,-6.2,1.23,0.025,0.63,63,960,454,0,8,-11.9,180,135,0,235,0.371,63.88,65.94,0.9400000000000001,0.8,794,0.30000000000000004,326,2.1
+2023,1,25,15,0,-6.2,1.23,0.022,0.63,57,930,386,0,0,-11.600000000000001,87,596,4,298,0.372,65.64,69.25,0.9400000000000001,0.8,794,0.30000000000000004,327,2
+2023,1,25,15,30,-6.6000000000000005,1.23,0.022,0.63,49,884,307,0,0,-11.600000000000001,49,884,0,307,0.372,67.68,73.05,0.9400000000000001,0.8,794,0.30000000000000004,330,1.8
+2023,1,25,16,0,-7.1000000000000005,1.26,0.017,0.63,42,815,221,0,0,-12.4,42,815,0,221,0.372,66.11,77.28,0.93,0.8,794,0.30000000000000004,332,1.6
+2023,1,25,16,30,-8,1.26,0.017,0.63,32,699,131,0,0,-12.4,32,699,0,131,0.372,70.87,81.85000000000001,0.92,0.8,794,0.30000000000000004,336,1.3
+2023,1,25,17,0,-8.9,1.3,0.014,0.63,21,440,47,0,0,-13.5,21,440,0,47,0.373,69.13,86.64,0.92,0.8,794,0.30000000000000004,340,1
+2023,1,25,17,30,-9.5,1.3,0.014,0.63,0,0,0,0,0,-13.5,0,0,0,0,0.372,72.45,91.96000000000001,0.91,0.8,794,0.30000000000000004,339,1
+2023,1,25,18,0,-10.100000000000001,1.31,0.012,0.63,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.372,69.2,97.27,0.91,0.8,794,0.30000000000000004,338,1
+2023,1,25,18,30,-10.700000000000001,1.31,0.012,0.63,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.371,72.66,102.74000000000001,0.91,0.8,795,0.30000000000000004,336,1.1
+2023,1,25,19,0,-11.200000000000001,1.32,0.011,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.371,71.2,108.32000000000001,0.91,0.8,795,0.30000000000000004,334,1.3
+2023,1,25,19,30,-11.700000000000001,1.32,0.011,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.37,74.11,113.96000000000001,0.91,0.8,795,0.30000000000000004,337,1.3
+2023,1,25,20,0,-12.3,1.31,0.011,0.63,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.37,75.57000000000001,119.65,0.91,0.8,795,0.30000000000000004,340,1.4000000000000001
+2023,1,25,20,30,-12.700000000000001,1.31,0.011,0.63,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.371,78.05,125.34,0.91,0.8,795,0.30000000000000004,346,1.5
+2023,1,25,21,0,-13.200000000000001,1.31,0.011,0.63,0,0,0,0,7,-15.8,0,0,0,0,0.371,80.8,130.98,0.91,0.8,795,0.30000000000000004,351,1.5
+2023,1,25,21,30,-13.5,1.31,0.011,0.63,0,0,0,0,8,-15.8,0,0,0,0,0.372,82.9,136.52,0.91,0.8,796,0.30000000000000004,176,1.4000000000000001
+2023,1,25,22,0,-13.8,1.3,0.011,0.63,0,0,0,0,7,-15.700000000000001,0,0,0,0,0.372,85.47,141.86,0.91,0.8,796,0.30000000000000004,0,1.4000000000000001
+2023,1,25,22,30,-14.200000000000001,1.3,0.011,0.63,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.372,88.32000000000001,146.89000000000001,0.91,0.8,796,0.30000000000000004,4,1.3
+2023,1,25,23,0,-14.5,1.29,0.011,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.372,89.89,151.4,0.91,0.8,796,0.30000000000000004,7,1.3
+2023,1,25,23,30,-14.9,1.29,0.011,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.37,92.9,155.07,0.91,0.8,796,0.30000000000000004,11,1.3
+2023,1,26,0,0,-15.200000000000001,1.28,0.012,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.369,92.82000000000001,157.49,0.91,0.8,796,0.30000000000000004,14,1.3
+2023,1,26,0,30,-15.5,1.28,0.012,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.367,95.16,158.20000000000002,0.91,0.8,796,0.30000000000000004,18,1.3
+2023,1,26,1,0,-15.8,1.27,0.012,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.365,94.77,157.06,0.91,0.8,797,0.30000000000000004,21,1.2000000000000002
+2023,1,26,1,30,-15.8,1.27,0.012,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.362,94.77,154.31,0.92,0.8,797,0.30000000000000004,20,1.2000000000000002
+2023,1,26,2,0,-15.9,1.27,0.013000000000000001,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.36,94.13,150.41,0.92,0.8,797,0.30000000000000004,20,1.2000000000000002
+2023,1,26,2,30,-15.9,1.27,0.013000000000000001,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.357,94.13,145.76,0.92,0.8,797,0.30000000000000004,15,1.1
+2023,1,26,3,0,-15.8,1.29,0.014,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.354,93.5,140.64000000000001,0.92,0.8,797,0.30000000000000004,9,1
+2023,1,26,3,30,-15.9,1.29,0.014,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.352,94.28,135.24,0.92,0.8,797,0.30000000000000004,5,0.9
+2023,1,26,4,0,-15.9,1.32,0.015,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.34900000000000003,94,129.67000000000002,0.92,0.8,797,0.30000000000000004,1,0.8
+2023,1,26,4,30,-16,1.32,0.015,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.34600000000000003,94.78,124.01,0.92,0.8,797,0.30000000000000004,178,0.8
+2023,1,26,5,0,-16.2,1.32,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.34400000000000003,95.26,118.31,0.92,0.8,797,0.30000000000000004,355,0.7000000000000001
+2023,1,26,5,30,-16.2,1.32,0.017,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.34400000000000003,95.26,112.62,0.92,0.8,797,0.30000000000000004,347,0.6000000000000001
+2023,1,26,6,0,-16.2,1.33,0.017,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.343,94.48,106.98,0.92,0.8,797,0.30000000000000004,339,0.5
+2023,1,26,6,30,-16.2,1.33,0.017,0.63,0,0,0,0,7,-16.900000000000002,0,0,0,0,0.342,94.48,101.41,0.92,0.8,797,0.30000000000000004,298,0.4
+2023,1,26,7,0,-16.1,1.33,0.018000000000000002,0.63,0,0,0,0,0,-17,0,0,0,0,0.342,93.14,95.97,0.92,0.8,797,0.30000000000000004,256,0.4
+2023,1,26,7,30,-15.4,1.33,0.018000000000000002,0.63,7,105,7,0,0,-17,7,105,0,7,0.341,87.88,90.17,0.92,0.8,797,0.30000000000000004,234,0.7000000000000001
+2023,1,26,8,0,-14.600000000000001,1.35,0.018000000000000002,0.63,25,540,68,0,0,-16.6,24,521,4,66,0.341,84.51,85.43,0.92,0.8,797,0.30000000000000004,211,1
+2023,1,26,8,30,-13,1.35,0.018000000000000002,0.63,36,724,153,0,0,-16.6,41,669,0,150,0.34,74.16,80.66,0.91,0.8,797,0.4,209,1.3
+2023,1,26,9,0,-11.3,1.36,0.017,0.63,43,826,241,0,0,-14.5,43,826,0,241,0.338,77.25,76.15,0.91,0.8,797,0.4,207,1.7000000000000002
+2023,1,26,9,30,-9.600000000000001,1.36,0.017,0.63,50,894,326,0,0,-14.5,50,894,0,326,0.336,67.51,71.99,0.91,0.8,797,0.4,222,2.1
+2023,1,26,10,0,-7.9,1.36,0.017,0.63,55,937,402,0,0,-12.100000000000001,55,937,0,402,0.333,71.84,68.28,0.91,0.8,797,0.4,237,2.6
+2023,1,26,10,30,-6.6000000000000005,1.36,0.017,0.63,62,955,464,0,0,-12.100000000000001,62,955,0,464,0.331,64.99,65.08,0.92,0.8,797,0.5,246,2.9000000000000004
+2023,1,26,11,0,-5.300000000000001,1.17,0.027,0.63,69,966,515,0,0,-10.3,69,966,0,515,0.328,67.68,62.5,0.9400000000000001,0.8,796,0.5,255,3.3000000000000003
+2023,1,26,11,30,-4.5,1.17,0.027,0.63,72,978,552,0,0,-10.3,72,978,0,552,0.327,63.71,60.61,0.9400000000000001,0.8,796,0.5,258,3.4000000000000004
+2023,1,26,12,0,-3.8000000000000003,1.16,0.027,0.63,73,981,571,0,0,-9.3,200,615,0,512,0.325,65.86,59.480000000000004,0.9400000000000001,0.8,795,0.6000000000000001,261,3.6
+2023,1,26,12,30,-3.3000000000000003,1.16,0.027,0.63,72,984,577,0,7,-9.3,310,148,0,386,0.324,63.440000000000005,59.15,0.9400000000000001,0.8,795,0.6000000000000001,263,3.7
+2023,1,26,13,0,-2.9000000000000004,1.17,0.024,0.63,71,983,568,0,7,-8.5,294,324,0,458,0.322,65.46000000000001,59.65,0.9400000000000001,0.8,794,0.6000000000000001,265,3.9000000000000004
+2023,1,26,13,30,-2.8000000000000003,1.17,0.024,0.63,68,975,542,0,7,-8.5,277,378,0,461,0.32,64.98,60.94,0.9400000000000001,0.8,794,0.6000000000000001,264,3.9000000000000004
+2023,1,26,14,0,-2.6,1.2,0.023,0.63,66,960,502,0,7,-7.9,294,230,0,398,0.317,66.96000000000001,62.980000000000004,0.9400000000000001,0.8,794,0.6000000000000001,262,3.9000000000000004
+2023,1,26,14,30,-2.7,1.2,0.023,0.63,62,936,447,0,7,-7.9,233,338,0,372,0.315,67.46000000000001,65.7,0.9400000000000001,0.8,794,0.6000000000000001,259,3.6
+2023,1,26,15,0,-2.8000000000000003,1.22,0.022,0.63,56,903,380,0,6,-7.5,146,56,0,166,0.314,70.28,69,0.9400000000000001,0.8,793,0.6000000000000001,256,3.4000000000000004
+2023,1,26,15,30,-3.6,1.22,0.022,0.63,52,851,303,0,6,-7.5,86,1,0,86,0.313,74.60000000000001,72.82000000000001,0.9400000000000001,0.8,793,0.7000000000000001,250,2.8000000000000003
+2023,1,26,16,0,-4.3,1.22,0.022,0.63,45,774,218,0,6,-7.7,59,0,0,59,0.313,77.04,77.05,0.9400000000000001,0.8,793,0.7000000000000001,244,2.2
+2023,1,26,16,30,-5.5,1.22,0.022,0.63,35,648,129,4,7,-7.7,44,2,57,44,0.314,84.35000000000001,81.63,0.9400000000000001,0.8,793,0.7000000000000001,241,1.9000000000000001
+2023,1,26,17,0,-6.7,1.23,0.024,0.63,23,420,49,7,7,-9.3,19,0,100,19,0.315,81.54,86.44,0.9400000000000001,0.8,793,0.7000000000000001,237,1.7000000000000002
+2023,1,26,17,30,-7.1000000000000005,1.23,0.024,0.63,3,36,2,2,7,-9.3,1,0,29,1,0.315,84.08,91.75,0.9500000000000001,0.8,793,0.7000000000000001,234,1.7000000000000002
+2023,1,26,18,0,-7.6000000000000005,1.23,0.028,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.316,83.72,97.07000000000001,0.9500000000000001,0.8,794,0.7000000000000001,232,1.8
+2023,1,26,18,30,-7.6000000000000005,1.23,0.028,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.315,83.72,102.54,0.9500000000000001,0.8,794,0.7000000000000001,229,1.9000000000000001
+2023,1,26,19,0,-7.6000000000000005,1.21,0.03,0.63,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.315,85.29,108.12,0.9500000000000001,0.8,793,0.7000000000000001,225,2.1
+2023,1,26,19,30,-7.6000000000000005,1.21,0.03,0.63,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.315,85.29,113.77,0.9500000000000001,0.8,793,0.7000000000000001,221,2.2
+2023,1,26,20,0,-7.6000000000000005,1.2,0.026000000000000002,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.314,88.58,119.46000000000001,0.9500000000000001,0.8,794,0.7000000000000001,216,2.4000000000000004
+2023,1,26,20,30,-7.6000000000000005,1.2,0.026000000000000002,0.63,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.313,88.47,125.15,0.9500000000000001,0.8,793,0.7000000000000001,212,2.5
+2023,1,26,21,0,-7.6000000000000005,1.2,0.022,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.313,90.60000000000001,130.79,0.9500000000000001,0.8,793,0.7000000000000001,208,2.6
+2023,1,26,21,30,-7.7,1.2,0.022,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.313,91.3,136.32,0.9500000000000001,0.8,793,0.7000000000000001,205,2.7
+2023,1,26,22,0,-7.800000000000001,1.21,0.021,0.63,0,0,0,0,6,-8.8,0,0,0,0,0.313,92.69,141.66,0.9500000000000001,0.8,793,0.7000000000000001,201,2.8000000000000003
+2023,1,26,22,30,-7.9,1.21,0.021,0.63,0,0,0,0,6,-8.8,0,0,0,0,0.314,93.41,146.67000000000002,0.9500000000000001,0.8,793,0.7000000000000001,198,2.9000000000000004
+2023,1,26,23,0,-8,1.23,0.02,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.314,93.54,151.16,0.9500000000000001,0.8,793,0.7000000000000001,195,3
+2023,1,26,23,30,-8.1,1.23,0.02,0.63,0,0,0,0,6,-8.9,0,0,0,0,0.315,94.27,154.82,0.9500000000000001,0.8,793,0.7000000000000001,194,3.1
+2023,1,27,0,0,-8.3,1.23,0.02,0.63,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.316,93.56,157.23,0.9500000000000001,0.8,792,0.7000000000000001,192,3.1
+2023,1,27,0,30,-8.5,1.23,0.02,0.63,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.317,95.02,157.95000000000002,0.9500000000000001,0.8,792,0.7000000000000001,193,3.1
+2023,1,27,1,0,-8.700000000000001,1.23,0.02,0.63,0,0,0,0,6,-9.600000000000001,0,0,0,0,0.318,93.11,156.83,0.9500000000000001,0.8,792,0.7000000000000001,193,3.1
+2023,1,27,1,30,-8.8,1.23,0.02,0.63,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.318,93.84,154.11,0.9500000000000001,0.8,792,0.7000000000000001,192,3.1
+2023,1,27,2,0,-8.9,1.23,0.021,0.63,0,0,0,0,7,-10,0,0,0,0,0.318,91.86,150.24,0.9500000000000001,0.8,792,0.7000000000000001,192,3
+2023,1,27,2,30,-8.9,1.23,0.021,0.63,0,0,0,0,7,-10,0,0,0,0,0.317,91.74,145.61,0.9500000000000001,0.8,791,0.7000000000000001,191,2.9000000000000004
+2023,1,27,3,0,-9,1.21,0.022,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.317,90.64,140.51,0.9500000000000001,0.8,791,0.7000000000000001,189,2.8000000000000003
+2023,1,27,3,30,-9,1.21,0.022,0.63,0,0,0,0,6,-10.3,0,0,0,0,0.316,90.64,135.12,0.9500000000000001,0.8,791,0.7000000000000001,188,2.8000000000000003
+2023,1,27,4,0,-9.1,1.19,0.023,0.63,0,0,0,0,6,-10.5,0,0,0,0,0.314,89.9,129.55,0.9500000000000001,0.8,791,0.7000000000000001,186,2.8000000000000003
+2023,1,27,4,30,-9.1,1.19,0.023,0.63,0,0,0,0,6,-10.5,0,0,0,0,0.313,89.78,123.89,0.96,0.8,790,0.7000000000000001,184,3
+2023,1,27,5,0,-9.1,1.18,0.024,0.63,0,0,0,0,6,-10.600000000000001,0,0,0,0,0.312,88.87,118.2,0.96,0.8,790,0.7000000000000001,183,3.1
+2023,1,27,5,30,-9.1,1.18,0.024,0.63,0,0,0,0,6,-10.600000000000001,0,0,0,0,0.31,88.87,112.5,0.96,0.8,790,0.7000000000000001,183,3.3000000000000003
+2023,1,27,6,0,-9.1,1.17,0.025,0.63,0,0,0,0,6,-10.700000000000001,0,0,0,0,0.309,87.84,106.86,0.96,0.8,789,0.7000000000000001,184,3.4000000000000004
+2023,1,27,6,30,-9.1,1.17,0.025,0.63,0,0,0,0,6,-10.700000000000001,0,0,0,0,0.307,87.84,101.29,0.96,0.8,789,0.7000000000000001,186,3.4000000000000004
+2023,1,27,7,0,-9.1,1.16,0.028,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.305,87.33,95.84,0.96,0.8,789,0.7000000000000001,188,3.4000000000000004
+2023,1,27,7,30,-8.9,1.16,0.028,0.63,7,80,7,3,6,-10.8,3,0,43,3,0.304,85.97,90.06,0.96,0.8,789,0.7000000000000001,190,3.7
+2023,1,27,8,0,-8.6,1.1500000000000001,0.033,0.63,28,457,65,7,6,-10.5,24,0,100,24,0.303,86.47,85.3,0.96,0.8,789,0.7000000000000001,192,3.9000000000000004
+2023,1,27,8,30,-8.200000000000001,1.1500000000000001,0.033,0.63,42,651,149,1,6,-10.5,44,0,14,44,0.304,83.82000000000001,80.51,0.96,0.8,789,0.7000000000000001,193,4.3
+2023,1,27,9,0,-7.800000000000001,1.1500000000000001,0.038,0.63,52,759,236,0,6,-9.700000000000001,75,1,0,75,0.304,86.16,75.98,0.96,0.8,788,0.7000000000000001,195,4.6000000000000005
+2023,1,27,9,30,-7.2,1.1500000000000001,0.038,0.63,61,831,320,0,6,-9.700000000000001,135,12,0,139,0.305,82.26,71.81,0.96,0.8,788,0.7000000000000001,197,5.1000000000000005
+2023,1,27,10,0,-6.6000000000000005,1.1500000000000001,0.041,0.63,68,878,396,0,7,-8.6,201,33,0,213,0.305,85.68,68.08,0.96,0.8,788,0.7000000000000001,200,5.5
+2023,1,27,10,30,-5.9,1.1500000000000001,0.041,0.63,72,913,460,0,7,-8.6,278,73,0,309,0.306,81.11,64.87,0.96,0.8,787,0.7000000000000001,202,5.800000000000001
+2023,1,27,11,0,-5.300000000000001,1.17,0.039,0.63,76,937,512,0,7,-7.5,296,49,0,319,0.306,84.42,62.27,0.96,0.8,786,0.7000000000000001,204,6.1000000000000005
+2023,1,27,11,30,-4.7,1.17,0.039,0.63,77,956,550,0,6,-7.5,250,19,0,259,0.306,80.68,60.370000000000005,0.96,0.8,786,0.7000000000000001,205,6.4
+2023,1,27,12,0,-4.1000000000000005,1.2,0.032,0.63,77,970,573,0,6,-6.6000000000000005,241,7,0,245,0.306,82.84,59.230000000000004,0.96,0.8,785,0.7000000000000001,207,6.7
+2023,1,27,12,30,-3.6,1.2,0.032,0.63,75,976,579,0,6,-6.6000000000000005,257,14,0,264,0.306,79.69,58.9,0.96,0.8,784,0.7000000000000001,209,6.800000000000001
+2023,1,27,13,0,-3,1.21,0.026000000000000002,0.63,73,977,570,0,7,-5.7,277,337,0,449,0.306,81.34,59.39,0.96,0.8,783,0.7000000000000001,212,6.9
+2023,1,27,13,30,-2.5,1.21,0.026000000000000002,0.63,71,967,545,0,4,-5.7,289,160,7,367,0.305,78.38,60.68,0.96,0.8,783,0.7000000000000001,215,6.7
+2023,1,27,14,0,-2.1,1.22,0.028,0.63,70,950,505,0,7,-4.9,285,120,0,340,0.305,81.04,62.72,0.96,0.8,783,0.7000000000000001,218,6.6000000000000005
+2023,1,27,14,30,-1.8,1.22,0.028,0.63,66,926,451,0,7,-4.9,251,174,0,323,0.305,79.27,65.44,0.96,0.8,783,0.7000000000000001,218,6.4
+2023,1,27,15,0,-1.5,1.24,0.029,0.63,61,891,384,0,7,-4.2,212,57,0,233,0.304,81.72,68.76,0.96,0.8,782,0.7000000000000001,217,6.1000000000000005
+2023,1,27,15,30,-1.7000000000000002,1.24,0.029,0.63,54,841,306,0,7,-4.2,170,39,0,182,0.304,82.93,72.58,0.96,0.8,782,0.7000000000000001,218,5.800000000000001
+2023,1,27,16,0,-1.9000000000000001,1.23,0.027,0.63,46,766,221,0,7,-4,99,11,7,102,0.303,85.7,76.82000000000001,0.96,0.8,782,0.7000000000000001,219,5.5
+2023,1,27,16,30,-2.4000000000000004,1.23,0.027,0.63,37,641,133,5,8,-4,29,0,71,29,0.304,88.92,81.41,0.96,0.8,782,0.7000000000000001,222,5.300000000000001
+2023,1,27,17,0,-2.8000000000000003,1.22,0.029,0.63,25,418,52,7,7,-4.2,19,0,100,19,0.304,89.9,86.23,0.96,0.8,782,0.7000000000000001,225,5.1000000000000005
+2023,1,27,17,30,-3.3000000000000003,1.22,0.029,0.63,4,36,3,2,7,-4.2,1,0,29,1,0.306,93.3,91.54,0.9500000000000001,0.8,782,0.7000000000000001,228,4.7
+2023,1,27,18,0,-3.7,1.24,0.023,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.307,93.15,96.87,0.9500000000000001,0.8,783,0.6000000000000001,230,4.4
+2023,1,27,18,30,-4.2,1.24,0.023,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.308,96.7,102.34,0.9400000000000001,0.8,783,0.6000000000000001,231,4.1000000000000005
+2023,1,27,19,0,-4.7,1.28,0.016,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.31,94.96000000000001,107.92,0.93,0.8,783,0.6000000000000001,232,3.7
+2023,1,27,19,30,-5.4,1.28,0.016,0.63,0,0,0,0,4,-5.4,0,0,0,0,0.31,100,113.58,0.92,0.8,783,0.6000000000000001,232,3.4000000000000004
+2023,1,27,20,0,-6.1000000000000005,1.32,0.014,0.63,0,0,0,0,8,-6.4,0,0,0,0,0.311,97.83,119.27,0.92,0.8,783,0.5,232,3
+2023,1,27,20,30,-6.800000000000001,1.32,0.014,0.63,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.312,100,124.95,0.92,0.8,783,0.5,232,2.7
+2023,1,27,21,0,-7.5,1.34,0.013000000000000001,0.63,0,0,0,0,4,-7.5,0,0,0,0,0.312,100,130.59,0.92,0.8,783,0.5,232,2.5
+2023,1,27,21,30,-8,1.34,0.013000000000000001,0.63,0,0,0,0,4,-8,0,0,0,0,0.313,100,136.12,0.92,0.8,783,0.5,233,2.3000000000000003
+2023,1,27,22,0,-8.5,1.35,0.012,0.63,0,0,0,0,4,-8.5,0,0,0,0,0.314,100,141.44,0.92,0.8,783,0.5,233,2.1
+2023,1,27,22,30,-8.9,1.35,0.012,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.315,100,146.45000000000002,0.92,0.8,783,0.5,232,2
+2023,1,27,23,0,-9.200000000000001,1.32,0.013000000000000001,0.63,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.315,100,150.92000000000002,0.92,0.8,783,0.5,231,1.9000000000000001
+2023,1,27,23,30,-9.5,1.32,0.013000000000000001,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.316,100,154.57,0.92,0.8,783,0.5,228,1.9000000000000001
+2023,1,28,0,0,-9.700000000000001,1.31,0.014,0.63,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.317,100,156.96,0.92,0.8,783,0.5,225,1.9000000000000001
+2023,1,28,0,30,-9.9,1.31,0.014,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.318,100,157.69,0.93,0.8,783,0.5,220,1.8
+2023,1,28,1,0,-10,1.29,0.015,0.63,0,0,0,0,4,-10,0,0,0,0,0.32,100,156.6,0.93,0.8,783,0.5,215,1.8
+2023,1,28,1,30,-10.100000000000001,1.29,0.015,0.63,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.321,100,153.91,0.93,0.8,783,0.5,210,1.9000000000000001
+2023,1,28,2,0,-10.200000000000001,1.27,0.018000000000000002,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.322,98.94,150.06,0.9400000000000001,0.8,783,0.5,205,1.9000000000000001
+2023,1,28,2,30,-10.200000000000001,1.27,0.018000000000000002,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.323,98.81,145.45000000000002,0.9400000000000001,0.8,782,0.5,205,2.1
+2023,1,28,3,0,-10.3,1.25,0.02,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.324,96.92,140.37,0.9400000000000001,0.8,782,0.5,205,2.2
+2023,1,28,3,30,-10.200000000000001,1.25,0.02,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.325,96.15,134.99,0.9400000000000001,0.8,782,0.5,205,2.4000000000000004
+2023,1,28,4,0,-10.100000000000001,1.24,0.021,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.326,94.14,129.43,0.9400000000000001,0.8,782,0.5,205,2.5
+2023,1,28,4,30,-10,1.24,0.021,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.326,93.4,123.77,0.9500000000000001,0.8,782,0.5,203,2.6
+2023,1,28,5,0,-9.8,1.22,0.024,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.325,92.39,118.08,0.9500000000000001,0.8,782,0.5,202,2.7
+2023,1,28,5,30,-9.700000000000001,1.22,0.024,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.323,91.66,112.38,0.9500000000000001,0.8,782,0.5,202,2.8000000000000003
+2023,1,28,6,0,-9.700000000000001,1.23,0.024,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.322,92.36,106.73,0.9500000000000001,0.8,782,0.5,202,2.9000000000000004
+2023,1,28,6,30,-9.600000000000001,1.23,0.024,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.318,91.63,101.16,0.9400000000000001,0.8,782,0.5,203,2.9000000000000004
+2023,1,28,7,0,-9.600000000000001,1.25,0.02,0.63,0,0,0,0,4,-10.700000000000001,0,0,0,0,0.315,91.91,95.7,0.9400000000000001,0.8,782,0.5,204,2.9000000000000004
+2023,1,28,7,30,-9,1.25,0.02,0.63,8,104,8,4,7,-10.700000000000001,3,0,57,3,0.313,87.68,89.94,0.9400000000000001,0.8,782,0.5,208,3.1
+2023,1,28,8,0,-8.4,1.28,0.018000000000000002,0.63,26,533,71,7,7,-9.8,30,1,100,30,0.31,89.62,85.15,0.93,0.8,782,0.5,212,3.4000000000000004
+2023,1,28,8,30,-7.300000000000001,1.28,0.018000000000000002,0.63,37,723,158,1,5,-9.8,63,1,14,63,0.309,82.3,80.34,0.93,0.8,782,0.5,219,3.8000000000000003
+2023,1,28,9,0,-6.2,1.32,0.017,0.63,43,834,248,1,8,-8.200000000000001,122,18,18,126,0.308,85.63,75.8,0.92,0.8,782,0.4,225,4.3
+2023,1,28,9,30,-5,1.32,0.017,0.63,49,903,334,2,7,-8.200000000000001,106,434,32,243,0.307,78.17,71.62,0.91,0.8,782,0.4,231,4.6000000000000005
+2023,1,28,10,0,-3.8000000000000003,1.37,0.016,0.63,55,949,412,0,0,-7,115,721,0,387,0.307,78.66,67.87,0.91,0.8,782,0.4,237,5
+2023,1,28,10,30,-3,1.37,0.016,0.63,58,979,477,0,0,-7,95,858,0,462,0.308,74.10000000000001,64.65,0.9,0.8,782,0.4,244,5.1000000000000005
+2023,1,28,11,0,-2.1,1.3900000000000001,0.015,0.63,60,1000,529,0,0,-6.800000000000001,60,1000,0,529,0.308,69.96000000000001,62.04,0.9,0.8,782,0.4,250,5.2
+2023,1,28,11,30,-1.8,1.3900000000000001,0.015,0.63,62,1013,567,0,0,-6.800000000000001,79,972,0,563,0.309,68.43,60.120000000000005,0.9,0.8,782,0.4,254,5.300000000000001
+2023,1,28,12,0,-1.4000000000000001,1.3800000000000001,0.015,0.63,63,1020,589,0,0,-7.5,63,1020,0,589,0.309,63.29,58.97,0.9,0.8,782,0.4,259,5.300000000000001
+2023,1,28,12,30,-1.4000000000000001,1.3800000000000001,0.015,0.63,64,1022,596,0,0,-7.5,64,1022,0,596,0.31,63.29,58.63,0.9,0.8,782,0.4,260,5.1000000000000005
+2023,1,28,13,0,-1.4000000000000001,1.34,0.016,0.63,63,1019,586,0,0,-7.9,63,1019,0,586,0.31,61.36,59.120000000000005,0.91,0.8,782,0.4,262,5
+2023,1,28,13,30,-1.4000000000000001,1.34,0.016,0.63,62,1010,561,0,0,-7.9,62,1010,0,561,0.311,61.36,60.410000000000004,0.91,0.8,782,0.4,261,4.800000000000001
+2023,1,28,14,0,-1.5,1.29,0.017,0.63,61,993,520,0,0,-7.800000000000001,61,993,0,520,0.312,62.06,62.46,0.92,0.8,782,0.4,261,4.6000000000000005
+2023,1,28,14,30,-1.7000000000000002,1.29,0.017,0.63,58,969,465,0,0,-7.800000000000001,92,860,0,453,0.312,62.980000000000004,65.19,0.92,0.8,782,0.4,260,4.2
+2023,1,28,15,0,-1.9000000000000001,1.27,0.018000000000000002,0.63,55,934,397,0,7,-7.6000000000000005,112,693,14,366,0.313,65.28,68.51,0.92,0.8,782,0.5,258,3.8000000000000003
+2023,1,28,15,30,-2.6,1.27,0.018000000000000002,0.63,49,886,318,0,7,-7.6000000000000005,134,504,14,287,0.313,68.75,72.34,0.93,0.8,782,0.5,256,3.1
+2023,1,28,16,0,-3.2,1.28,0.018000000000000002,0.63,42,813,231,0,7,-7.6000000000000005,95,506,7,212,0.314,71.4,76.59,0.93,0.8,782,0.5,253,2.4000000000000004
+2023,1,28,16,30,-4.3,1.28,0.018000000000000002,0.63,34,695,141,3,7,-7.6000000000000005,67,276,57,109,0.315,77.52,81.18,0.93,0.8,782,0.5,248,2
+2023,1,28,17,0,-5.300000000000001,1.28,0.019,0.63,23,484,57,7,7,-8.700000000000001,29,1,100,29,0.316,76.78,86.02,0.93,0.8,783,0.5,244,1.6
+2023,1,28,17,30,-5.7,1.28,0.019,0.63,4,47,3,2,7,-8.700000000000001,2,0,29,2,0.318,79.14,91.33,0.93,0.8,783,0.5,241,1.6
+2023,1,28,18,0,-6.2,1.28,0.019,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.32,78.19,96.66,0.93,0.8,783,0.5,238,1.6
+2023,1,28,18,30,-6.300000000000001,1.28,0.019,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.321,78.79,102.14,0.93,0.8,783,0.5,236,1.5
+2023,1,28,19,0,-6.4,1.28,0.02,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.323,79.23,107.73,0.93,0.8,783,0.5,235,1.5
+2023,1,28,19,30,-6.5,1.28,0.02,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.324,79.84,113.38,0.93,0.8,783,0.5,232,1.4000000000000001
+2023,1,28,20,0,-6.6000000000000005,1.27,0.021,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.325,80.58,119.07000000000001,0.93,0.8,783,0.5,229,1.4000000000000001
+2023,1,28,20,30,-6.800000000000001,1.27,0.021,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.325,81.83,124.76,0.93,0.8,783,0.5,224,1.4000000000000001
+2023,1,28,21,0,-7,1.27,0.022,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.326,83.05,130.39000000000001,0.9400000000000001,0.8,783,0.5,218,1.4000000000000001
+2023,1,28,21,30,-7.300000000000001,1.27,0.022,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.326,84.88,135.91,0.9400000000000001,0.8,782,0.5,213,1.5
+2023,1,28,22,0,-7.6000000000000005,1.26,0.024,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.326,85.92,141.23,0.9400000000000001,0.8,782,0.5,209,1.6
+2023,1,28,22,30,-7.9,1.26,0.024,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.326,87.94,146.22,0.9500000000000001,0.8,782,0.5,208,1.9000000000000001
+2023,1,28,23,0,-8.1,1.26,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.325,87.9,150.68,0.9500000000000001,0.8,782,0.5,208,2.1
+2023,1,28,23,30,-8.3,1.26,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.326,89.28,154.31,0.9500000000000001,0.8,782,0.5,207,2.4000000000000004
+2023,1,29,0,0,-8.4,1.28,0.028,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.326,89.65,156.70000000000002,0.9500000000000001,0.8,782,0.5,206,2.6
+2023,1,29,0,30,-8.6,1.28,0.028,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.327,91.06,157.43,0.9500000000000001,0.8,782,0.5,201,2.7
+2023,1,29,1,0,-8.700000000000001,1.29,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.328,91.59,156.35,0.9500000000000001,0.8,781,0.5,197,2.8000000000000003
+2023,1,29,1,30,-8.8,1.29,0.027,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,92.31,153.69,0.9500000000000001,0.8,781,0.5,195,2.8000000000000003
+2023,1,29,2,0,-8.9,1.27,0.027,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.33,92.56,149.87,0.9500000000000001,0.8,781,0.5,193,2.8000000000000003
+2023,1,29,2,30,-8.9,1.27,0.027,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.56,145.29,0.9500000000000001,0.8,781,0.5,190,2.8000000000000003
+2023,1,29,3,0,-9,1.24,0.026000000000000002,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.95,140.22,0.9500000000000001,0.8,781,0.5,188,2.8000000000000003
+2023,1,29,3,30,-9,1.24,0.026000000000000002,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.331,92.95,134.85,0.9500000000000001,0.8,781,0.5,184,2.8000000000000003
+2023,1,29,4,0,-9.1,1.19,0.029,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.332,92.59,129.3,0.9500000000000001,0.8,780,0.5,181,2.8000000000000003
+2023,1,29,4,30,-9.1,1.19,0.029,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.332,92.59,123.65,0.96,0.8,780,0.5,178,2.9000000000000004
+2023,1,29,5,0,-9.200000000000001,1.1400000000000001,0.034,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.333,92.55,117.95,0.96,0.8,780,0.5,175,3
+2023,1,29,5,30,-9.1,1.1400000000000001,0.034,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.333,91.83,112.26,0.96,0.8,780,0.5,175,3.1
+2023,1,29,6,0,-9,1.09,0.04,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.334,91.31,106.60000000000001,0.96,0.8,780,0.5,176,3.3000000000000003
+2023,1,29,6,30,-9,1.09,0.04,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.334,91.31,101.03,0.96,0.8,780,0.5,177,3.4000000000000004
+2023,1,29,7,0,-8.9,1.04,0.046,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.335,91.10000000000001,95.56,0.97,0.8,780,0.5,178,3.4000000000000004
+2023,1,29,7,30,-8.5,1.04,0.046,0.63,8,68,8,4,7,-10.100000000000001,5,0,57,5,0.335,88.3,89.82000000000001,0.97,0.8,780,0.6000000000000001,181,3.5
+2023,1,29,8,0,-8.1,1.02,0.054,0.63,33,417,69,7,7,-9.5,46,4,100,46,0.335,89.61,84.99,0.97,0.8,780,0.6000000000000001,185,3.5
+2023,1,29,8,30,-7.300000000000001,1.02,0.054,0.63,47,620,153,3,7,-9.5,90,13,39,92,0.335,84.34,80.17,0.97,0.8,781,0.6000000000000001,192,3.8000000000000003
+2023,1,29,9,0,-6.6000000000000005,1.02,0.056,0.63,59,735,242,6,7,-8.4,94,7,79,96,0.335,87.12,75.62,0.97,0.8,781,0.6000000000000001,200,4.1000000000000005
+2023,1,29,9,30,-5.9,1.02,0.056,0.63,69,813,328,2,7,-8.4,148,55,25,166,0.334,82.59,71.42,0.97,0.8,781,0.6000000000000001,207,4.4
+2023,1,29,10,0,-5.1000000000000005,1.02,0.053,0.63,75,868,405,0,7,-7.300000000000001,256,68,0,282,0.334,84.8,67.66,0.97,0.8,781,0.6000000000000001,214,4.7
+2023,1,29,10,30,-4.5,1.02,0.053,0.63,81,902,470,0,7,-7.300000000000001,291,63,0,318,0.333,81.05,64.43,0.97,0.8,781,0.6000000000000001,219,4.800000000000001
+2023,1,29,11,0,-3.9000000000000004,1.03,0.054,0.63,86,925,523,0,7,-6.4,331,92,0,374,0.333,82.98,61.800000000000004,0.97,0.8,781,0.6000000000000001,224,4.9
+2023,1,29,11,30,-3.5,1.03,0.054,0.63,89,938,560,0,7,-6.4,358,96,0,406,0.332,80.53,59.870000000000005,0.97,0.8,781,0.6000000000000001,228,4.7
+2023,1,29,12,0,-3.1,1.02,0.056,0.63,91,945,582,0,7,-5.800000000000001,375,114,0,434,0.332,81.43,58.71,0.97,0.8,780,0.6000000000000001,232,4.5
+2023,1,29,12,30,-3,1.02,0.056,0.63,92,945,588,0,7,-5.800000000000001,370,96,0,420,0.332,80.83,58.370000000000005,0.97,0.8,780,0.6000000000000001,238,4
+2023,1,29,13,0,-2.8000000000000003,1.01,0.06,0.63,93,939,579,0,7,-5.6000000000000005,364,85,0,408,0.332,81.03,58.85,0.97,0.8,780,0.6000000000000001,244,3.6
+2023,1,29,13,30,-3.1,1.01,0.06,0.63,94,921,553,0,7,-5.6000000000000005,356,112,0,412,0.332,82.85000000000001,60.14,0.97,0.8,780,0.6000000000000001,256,3
+2023,1,29,14,0,-3.3000000000000003,1,0.074,0.63,95,892,511,0,7,-5.800000000000001,331,127,0,390,0.332,82.58,62.190000000000005,0.97,0.8,780,0.6000000000000001,268,2.4000000000000004
+2023,1,29,14,30,-4.1000000000000005,1,0.074,0.63,92,856,455,0,7,-5.800000000000001,298,117,0,348,0.333,87.67,64.93,0.98,0.8,780,0.6000000000000001,300,2.2
+2023,1,29,15,0,-4.800000000000001,0.99,0.088,0.63,89,805,387,0,7,-6.800000000000001,236,32,0,248,0.333,86.06,68.26,0.98,0.8,780,0.6000000000000001,333,1.9000000000000001
+2023,1,29,15,30,-6.1000000000000005,0.99,0.088,0.63,80,741,308,0,7,-6.800000000000001,191,26,0,199,0.334,95.11,72.09,0.98,0.8,781,0.6000000000000001,176,2.7
+2023,1,29,16,0,-7.4,0.98,0.095,0.63,70,646,222,0,7,-8.700000000000001,133,12,0,136,0.334,90.19,76.35000000000001,0.98,0.8,781,0.6000000000000001,20,3.4000000000000004
+2023,1,29,16,30,-9,0.98,0.095,0.63,56,489,133,3,7,-9,84,5,43,85,0.336,100,80.96000000000001,0.98,0.8,782,0.5,26,4.3
+2023,1,29,17,0,-10.600000000000001,1,0.11900000000000001,0.63,34,239,52,7,7,-11.9,35,1,100,35,0.337,90.38,85.8,0.98,0.8,782,0.5,32,5.2
+2023,1,29,17,30,-11.9,1,0.11900000000000001,0.63,3,14,3,3,7,-11.9,1,0,43,1,0.338,100,91.11,0.98,0.8,783,0.5,34,5.7
+2023,1,29,18,0,-13.100000000000001,1.02,0.128,0.63,0,0,0,0,7,-15,0,0,0,0,0.339,85.39,96.45,0.98,0.8,783,0.5,35,6.300000000000001
+2023,1,29,18,30,-14,1.02,0.128,0.63,0,0,0,0,7,-15,0,0,0,0,0.34,91.89,101.94,0.98,0.8,783,0.5,36,6.4
+2023,1,29,19,0,-15,1.02,0.11800000000000001,0.63,0,0,0,0,7,-17.7,0,0,0,0,0.341,79.68,107.53,0.98,0.8,783,0.5,37,6.5
+2023,1,29,19,30,-15.4,1.02,0.11800000000000001,0.63,0,0,0,0,7,-17.7,0,0,0,0,0.342,82.46000000000001,113.19,0.98,0.8,784,0.5,38,6.300000000000001
+2023,1,29,20,0,-15.9,1.04,0.126,0.63,0,0,0,0,7,-19.3,0,0,0,0,0.343,75.14,118.88,0.98,0.8,784,0.5,38,6.1000000000000005
+2023,1,29,20,30,-16.2,1.04,0.126,0.63,0,0,0,0,7,-19.3,0,0,0,0,0.34400000000000003,77.04,124.56,0.98,0.8,784,0.5,37,5.9
+2023,1,29,21,0,-16.400000000000002,1.06,0.129,0.63,0,0,0,0,7,-19.900000000000002,0,0,0,0,0.34500000000000003,74.13,130.19,0.98,0.8,784,0.5,35,5.6000000000000005
+2023,1,29,21,30,-16.6,1.06,0.129,0.63,0,0,0,0,7,-19.900000000000002,0,0,0,0,0.34600000000000003,75.38,135.7,0.98,0.8,784,0.5,34,5.300000000000001
+2023,1,29,22,0,-16.7,1.06,0.122,0.63,0,0,0,0,7,-20.3,0,0,0,0,0.34700000000000003,73.49,141.01,0.98,0.8,784,0.5,32,5
+2023,1,29,22,30,-16.8,1.06,0.122,0.63,0,0,0,0,7,-20.3,0,0,0,0,0.34700000000000003,74.11,145.99,0.98,0.8,784,0.5,31,4.7
+2023,1,29,23,0,-16.8,1.07,0.125,0.63,0,0,0,0,7,-20.5,0,0,0,0,0.34800000000000003,73.10000000000001,150.43,0.98,0.8,784,0.5,30,4.4
+2023,1,29,23,30,-16.8,1.07,0.125,0.63,0,0,0,0,7,-20.5,0,0,0,0,0.34800000000000003,73.10000000000001,154.05,0.98,0.8,784,0.5,28,4.1000000000000005
+2023,1,30,0,0,-16.8,1.08,0.129,0.63,0,0,0,0,7,-20.400000000000002,0,0,0,0,0.34900000000000003,73.78,156.42000000000002,0.98,0.8,784,0.5,27,3.8000000000000003
+2023,1,30,0,30,-16.7,1.08,0.129,0.63,0,0,0,0,7,-20.400000000000002,0,0,0,0,0.34900000000000003,73.16,157.16,0.98,0.8,784,0.5,26,3.4000000000000004
+2023,1,30,1,0,-16.7,1.08,0.123,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.34900000000000003,74.64,156.1,0.98,0.8,784,0.5,25,3.1
+2023,1,30,1,30,-16.6,1.08,0.123,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.34900000000000003,74.02,153.47,0.98,0.8,784,0.5,24,2.9000000000000004
+2023,1,30,2,0,-16.5,1.1,0.121,0.63,0,0,0,0,7,-20,0,0,0,0,0.34900000000000003,74.65,149.68,0.98,0.8,784,0.5,24,2.7
+2023,1,30,2,30,-16.6,1.1,0.121,0.63,0,0,0,0,7,-19.900000000000002,0,0,0,0,0.34900000000000003,75.27,145.12,0.98,0.8,784,0.4,24,2.6
+2023,1,30,3,0,-16.7,1.1300000000000001,0.114,0.63,0,0,0,0,8,-20.1,0,0,0,0,0.34900000000000003,75.09,140.07,0.98,0.8,784,0.4,24,2.5
+2023,1,30,3,30,-17,1.1300000000000001,0.114,0.63,0,0,0,0,7,-20.1,0,0,0,0,0.34900000000000003,77,134.71,0.98,0.8,784,0.4,25,2.4000000000000004
+2023,1,30,4,0,-17.3,1.1500000000000001,0.10300000000000001,0.63,0,0,0,0,7,-20.8,0,0,0,0,0.34900000000000003,74.39,129.16,0.98,0.8,784,0.4,25,2.4000000000000004
+2023,1,30,4,30,-17.7,1.1500000000000001,0.10300000000000001,0.63,0,0,0,0,7,-20.8,0,0,0,0,0.34900000000000003,76.94,123.52,0.98,0.8,784,0.4,27,2.4000000000000004
+2023,1,30,5,0,-18.2,1.1500000000000001,0.1,0.63,0,0,0,0,7,-21.6,0,0,0,0,0.34900000000000003,74.9,117.82000000000001,0.98,0.8,784,0.4,28,2.4000000000000004
+2023,1,30,5,30,-18.400000000000002,1.1500000000000001,0.1,0.63,0,0,0,0,4,-21.5,0,0,0,0,0.35000000000000003,76.28,112.12,0.98,0.8,785,0.4,28,2.4000000000000004
+2023,1,30,6,0,-18.7,1.1500000000000001,0.098,0.63,0,0,0,0,4,-22,0,0,0,0,0.35100000000000003,74.99,106.47,0.98,0.8,785,0.4,29,2.4000000000000004
+2023,1,30,6,30,-18.7,1.1500000000000001,0.098,0.63,0,0,0,0,4,-22,0,0,0,0,0.35100000000000003,74.99,100.88,0.98,0.8,785,0.4,29,2.4000000000000004
+2023,1,30,7,0,-18.8,1.1400000000000001,0.094,0.63,0,0,0,0,4,-22.1,0,0,0,0,0.35100000000000003,74.99,95.41,0.98,0.8,786,0.4,30,2.4000000000000004
+2023,1,30,7,30,-18,1.1400000000000001,0.094,0.63,10,71,10,4,4,-22.1,4,0,57,4,0.352,70.06,89.66,0.98,0.8,786,0.4,31,2.6
+2023,1,30,8,0,-17.2,1.1400000000000001,0.088,0.63,37,370,70,7,4,-20.8,40,0,100,40,0.352,73.44,84.82000000000001,0.97,0.8,786,0.4,31,2.8000000000000003
+2023,1,30,8,30,-16.3,1.1400000000000001,0.088,0.63,55,587,157,1,4,-20.8,78,1,14,78,0.353,68.18,79.99,0.97,0.8,787,0.4,31,3.1
+2023,1,30,9,0,-15.3,1.1400000000000001,0.08,0.63,68,723,250,0,4,-19.400000000000002,76,4,0,77,0.354,70.73,75.43,0.97,0.8,787,0.30000000000000004,32,3.5
+2023,1,30,9,30,-14.600000000000001,1.1400000000000001,0.08,0.63,78,809,338,0,4,-19.400000000000002,95,0,0,95,0.354,66.77,71.22,0.97,0.8,787,0.30000000000000004,30,3.5
+2023,1,30,10,0,-13.9,1.16,0.07100000000000001,0.63,83,870,417,0,4,-18.400000000000002,192,20,0,200,0.355,68.96000000000001,67.44,0.97,0.8,787,0.30000000000000004,29,3.5
+2023,1,30,10,30,-13.100000000000001,1.16,0.07100000000000001,0.63,87,913,485,0,4,-18.400000000000002,289,27,0,301,0.355,64.61,64.19,0.97,0.8,787,0.30000000000000004,26,3.4000000000000004
+2023,1,30,11,0,-12.4,1.2,0.061,0.63,88,946,539,0,4,-17.5,331,37,0,349,0.356,65.87,61.550000000000004,0.97,0.8,787,0.30000000000000004,24,3.4000000000000004
+2023,1,30,11,30,-11.600000000000001,1.2,0.061,0.63,89,968,579,0,4,-17.5,353,207,7,458,0.356,61.77,59.61,0.96,0.8,787,0.30000000000000004,20,3.3000000000000003
+2023,1,30,12,0,-10.9,1.26,0.049,0.63,87,985,603,0,5,-17,251,557,29,543,0.356,60.84,58.44,0.96,0.8,787,0.30000000000000004,16,3.1
+2023,1,30,12,30,-10.3,1.26,0.049,0.63,85,997,612,0,4,-17,349,300,11,508,0.356,58.01,58.09,0.9500000000000001,0.8,787,0.30000000000000004,14,3
+2023,1,30,13,0,-9.700000000000001,1.3,0.039,0.63,81,1012,609,0,4,-16.900000000000002,338,350,4,521,0.356,55.79,58.57,0.9500000000000001,0.8,786,0.2,11,2.8000000000000003
+2023,1,30,13,30,-9.4,1.3,0.039,0.63,78,1009,584,0,7,-16.900000000000002,224,606,14,528,0.357,54.49,59.870000000000005,0.9400000000000001,0.8,786,0.2,8,2.6
+2023,1,30,14,0,-9.1,1.31,0.031,0.63,72,1001,543,0,0,-17.1,143,801,0,520,0.357,52.33,61.92,0.9400000000000001,0.8,786,0.2,5,2.4000000000000004
+2023,1,30,14,30,-9.1,1.31,0.031,0.63,67,982,487,0,0,-17.1,101,885,7,480,0.358,52.33,64.66,0.93,0.8,786,0.2,4,2.2
+2023,1,30,15,0,-9,1.32,0.026000000000000002,0.63,60,955,418,0,0,-16.7,85,867,21,410,0.358,53.59,68,0.93,0.8,787,0.2,3,1.9000000000000001
+2023,1,30,15,30,-9.8,1.32,0.026000000000000002,0.63,54,912,338,0,7,-16.7,81,762,7,318,0.36,57.06,71.85000000000001,0.92,0.8,787,0.2,6,1.7000000000000002
+2023,1,30,16,0,-10.5,1.31,0.021,0.63,46,848,249,0,0,-17.900000000000002,46,840,0,248,0.361,54.78,76.12,0.92,0.8,787,0.2,10,1.5
+2023,1,30,16,30,-11.9,1.31,0.021,0.63,35,742,155,1,0,-17.900000000000002,41,660,11,147,0.362,61.26,80.73,0.91,0.8,787,0.2,23,1.4000000000000001
+2023,1,30,17,0,-13.3,1.32,0.018000000000000002,0.63,24,551,66,2,0,-20,28,378,32,57,0.364,57.13,85.59,0.91,0.8,787,0.2,35,1.3
+2023,1,30,17,30,-14.4,1.32,0.018000000000000002,0.63,9,105,7,1,0,-20,6,67,11,5,0.365,62.58,90.9,0.9,0.8,788,0.2,41,1.4000000000000001
+2023,1,30,18,0,-15.4,1.32,0.016,0.63,0,0,0,0,0,-21.6,0,0,0,0,0.366,58.81,96.25,0.9,0.8,788,0.2,47,1.5
+2023,1,30,18,30,-16.1,1.32,0.016,0.63,0,0,0,0,0,-21.6,0,0,0,0,0.367,62.33,101.74000000000001,0.9,0.8,788,0.2,49,1.5
+2023,1,30,19,0,-16.900000000000002,1.33,0.015,0.63,0,0,0,0,0,-22.6,0,0,0,0,0.368,61.18,107.33,0.9,0.8,788,0.2,52,1.5
+2023,1,30,19,30,-17.3,1.33,0.015,0.63,0,0,0,0,0,-22.6,0,0,0,0,0.369,63.36,112.99000000000001,0.9,0.8,789,0.2,52,1.4000000000000001
+2023,1,30,20,0,-17.8,1.34,0.014,0.63,0,0,0,0,0,-23,0,0,0,0,0.37,63.54,118.68,0.9,0.8,789,0.2,53,1.4000000000000001
+2023,1,30,20,30,-18.1,1.34,0.014,0.63,0,0,0,0,0,-23,0,0,0,0,0.371,65.18,124.36,0.9,0.8,789,0.2,52,1.3
+2023,1,30,21,0,-18.400000000000002,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,66.28,129.99,0.9,0.8,789,0.2,52,1.2000000000000002
+2023,1,30,21,30,-18.6,1.33,0.014,0.63,0,0,0,0,8,-23.1,0,0,0,0,0.371,67.42,135.5,0.9,0.8,789,0.1,48,1.2000000000000002
+2023,1,30,22,0,-18.7,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.372,68.52,140.8,0.9,0.8,790,0.1,44,1.1
+2023,1,30,22,30,-18.900000000000002,1.33,0.014,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,69.7,145.76,0.9,0.8,790,0.1,37,1.1
+2023,1,30,23,0,-19,1.32,0.013000000000000001,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.371,70.14,150.19,0.89,0.8,790,0.1,30,1
+2023,1,30,23,30,-19.200000000000003,1.32,0.013000000000000001,0.63,0,0,0,0,0,-23.1,0,0,0,0,0.37,71.35000000000001,153.78,0.89,0.8,790,0.1,27,1
+2023,1,31,0,0,-19.3,1.32,0.012,0.63,0,0,0,0,0,-23.200000000000003,0,0,0,0,0.37,71.3,156.15,0.89,0.8,790,0.1,24,1
+2023,1,31,0,30,-19.5,1.32,0.012,0.63,0,0,0,0,0,-23.200000000000003,0,0,0,0,0.367,72.54,156.88,0.88,0.8,790,0.1,26,1
+2023,1,31,1,0,-19.700000000000003,1.31,0.011,0.63,0,0,0,0,0,-23.400000000000002,0,0,0,0,0.365,72.2,155.85,0.88,0.8,790,0.1,28,0.9
+2023,1,31,1,30,-19.900000000000002,1.31,0.011,0.63,0,0,0,0,0,-23.400000000000002,0,0,0,0,0.362,73.46000000000001,153.24,0.88,0.8,790,0.1,33,0.9
+2023,1,31,2,0,-20.1,1.31,0.01,0.63,0,0,0,0,0,-23.8,0,0,0,0,0.358,72.5,149.48,0.87,0.8,790,0.1,39,1
+2023,1,31,2,30,-20.5,1.31,0.01,0.63,0,0,0,0,0,-23.8,0,0,0,0,0.354,75.06,144.94,0.87,0.8,790,0.1,45,1
+2023,1,31,3,0,-20.8,1.3,0.01,0.63,0,0,0,0,0,-24.200000000000003,0,0,0,0,0.35000000000000003,74.04,139.9,0.87,0.8,790,0.1,52,1.1
+2023,1,31,3,30,-21.1,1.3,0.01,0.63,0,0,0,0,0,-24.200000000000003,0,0,0,0,0.34700000000000003,76,134.56,0.87,0.8,790,0.1,58,1.1
+2023,1,31,4,0,-21.400000000000002,1.28,0.01,0.63,0,0,0,0,0,-24.6,0,0,0,0,0.34400000000000003,75.42,129.02,0.87,0.8,790,0.1,64,1.2000000000000002
+2023,1,31,4,30,-21.700000000000003,1.28,0.01,0.63,0,0,0,0,0,-24.6,0,0,0,0,0.342,77.43,123.38000000000001,0.87,0.8,790,0.1,69,1.2000000000000002
+2023,1,31,5,0,-21.900000000000002,1.26,0.01,0.63,0,0,0,0,0,-24.900000000000002,0,0,0,0,0.34,76.41,117.68,0.88,0.8,791,0.1,73,1.2000000000000002
+2023,1,31,5,30,-22,1.26,0.01,0.63,0,0,0,0,0,-24.900000000000002,0,0,0,0,0.338,77.08,111.99000000000001,0.88,0.8,791,0.1,75,1.2000000000000002
+2023,1,31,6,0,-22.200000000000003,1.26,0.012,0.63,0,0,0,0,0,-25.200000000000003,0,0,0,0,0.336,76.35000000000001,106.32000000000001,0.89,0.8,791,0.1,78,1.2000000000000002
+2023,1,31,6,30,-22.1,1.26,0.012,0.63,0,0,0,0,0,-25.200000000000003,0,0,0,0,0.334,75.68,100.74000000000001,0.89,0.8,791,0.1,84,1.3
+2023,1,31,7,0,-22.1,1.27,0.013000000000000001,0.63,0,0,0,0,0,-25.5,0,0,0,0,0.332,73.85000000000001,95.26,0.89,0.8,792,0.1,90,1.3
+2023,1,31,7,30,-21.1,1.27,0.013000000000000001,0.63,11,191,13,0,0,-25.5,11,154,7,12,0.329,67.65,89.51,0.9,0.8,792,0.1,98,1.4000000000000001
+2023,1,31,8,0,-20.200000000000003,1.29,0.015,0.63,26,628,85,2,0,-25.3,31,503,21,78,0.327,63.690000000000005,84.65,0.9,0.8,792,0.1,106,1.5
+2023,1,31,8,30,-18.1,1.29,0.015,0.63,36,782,174,0,0,-25.3,62,515,0,153,0.325,53.2,79.81,0.9,0.8,792,0.2,110,1.4000000000000001
+2023,1,31,9,0,-16.1,1.31,0.016,0.63,44,878,268,0,0,-23.3,72,715,0,254,0.323,53.730000000000004,75.23,0.9,0.8,792,0.2,114,1.2000000000000002
+2023,1,31,9,30,-14.5,1.31,0.016,0.63,50,939,356,0,0,-23.3,64,881,0,351,0.321,47.06,71.01,0.9,0.8,792,0.2,128,1
+2023,1,31,10,0,-13,1.33,0.017,0.63,56,979,435,0,0,-21.900000000000002,56,979,0,435,0.319,47.410000000000004,67.22,0.91,0.8,793,0.2,142,0.8
+2023,1,31,10,30,-12,1.33,0.017,0.63,59,1008,502,0,0,-21.900000000000002,59,1008,0,502,0.317,43.68,63.95,0.9,0.8,792,0.2,176,0.8
+2023,1,31,11,0,-11,1.36,0.017,0.63,62,1028,556,0,0,-20.3,62,1028,0,556,0.315,46.19,61.300000000000004,0.9,0.8,792,0.2,209,0.8
+2023,1,31,11,30,-10.200000000000001,1.36,0.017,0.63,65,1039,595,0,0,-20.3,65,1039,0,595,0.314,43.35,59.35,0.9,0.8,792,0.2,221,1
+2023,1,31,12,0,-9.5,1.37,0.016,0.63,66,1042,616,0,0,-19,66,1042,0,616,0.313,45.83,58.17,0.9,0.8,792,0.2,232,1.3
+2023,1,31,12,30,-8.9,1.37,0.016,0.63,65,1039,619,0,0,-19,65,1039,0,619,0.312,43.72,57.81,0.9,0.8,792,0.30000000000000004,234,1.5
+2023,1,31,13,0,-8.3,1.3800000000000001,0.016,0.63,65,1033,608,0,0,-17.900000000000002,65,1033,0,608,0.311,46.09,58.29,0.9,0.8,791,0.30000000000000004,237,1.7000000000000002
+2023,1,31,13,30,-8,1.3800000000000001,0.016,0.63,63,1026,582,0,0,-17.900000000000002,63,1026,0,582,0.31,45.03,59.59,0.9,0.8,791,0.30000000000000004,233,1.7000000000000002
+2023,1,31,14,0,-7.6000000000000005,1.4000000000000001,0.015,0.63,60,1013,541,0,0,-17,60,1013,0,541,0.309,46.78,61.65,0.9,0.8,791,0.30000000000000004,229,1.7000000000000002
+2023,1,31,14,30,-7.5,1.4000000000000001,0.015,0.63,57,993,486,0,0,-17,57,993,0,486,0.307,46.42,64.39,0.9,0.8,791,0.30000000000000004,221,1.6
+2023,1,31,15,0,-7.5,1.4000000000000001,0.014,0.63,53,964,418,0,0,-16,53,964,0,418,0.306,50.59,67.74,0.9,0.8,791,0.30000000000000004,212,1.5
+2023,1,31,15,30,-8.200000000000001,1.4000000000000001,0.014,0.63,47,921,338,0,0,-16,47,921,0,338,0.305,53.410000000000004,71.60000000000001,0.9,0.8,791,0.30000000000000004,200,1.5
+2023,1,31,16,0,-8.9,1.4000000000000001,0.014,0.63,41,856,250,0,0,-16.1,41,856,0,250,0.304,56.120000000000005,75.88,0.9,0.8,791,0.30000000000000004,189,1.4000000000000001
+2023,1,31,16,30,-10.600000000000001,1.4000000000000001,0.014,0.63,34,750,158,1,0,-16.1,39,675,11,150,0.305,64.16,80.5,0.9,0.8,791,0.30000000000000004,184,1.5
+2023,1,31,17,0,-12.3,1.4000000000000001,0.014,0.62,24,561,69,2,0,-18.2,26,442,21,62,0.305,61.4,85.37,0.9,0.8,792,0.30000000000000004,178,1.5
+2023,1,31,17,30,-13.3,1.4000000000000001,0.014,0.62,7,111,7,1,0,-18.2,6,83,11,6,0.306,66.58,90.18,0.9,0.8,792,0.30000000000000004,179,1.6
+2023,1,31,18,0,-14.200000000000001,1.3900000000000001,0.016,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.307,62.33,96.04,0.91,0.8,792,0.30000000000000004,180,1.7000000000000002
+2023,1,31,18,30,-14.600000000000001,1.3900000000000001,0.016,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.307,64.41,101.53,0.91,0.8,792,0.30000000000000004,183,1.6
+2023,1,31,19,0,-14.9,1.3800000000000001,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.308,62.980000000000004,107.13,0.91,0.8,792,0.30000000000000004,187,1.6
+2023,1,31,19,30,-15,1.3800000000000001,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.308,63.5,112.79,0.91,0.8,792,0.30000000000000004,194,1.4000000000000001
+2023,1,31,20,0,-15,1.3800000000000001,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.309,63.49,118.48,0.91,0.8,792,0.30000000000000004,202,1.2000000000000002
+2023,1,31,20,30,-15,1.3800000000000001,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.308,63.57,124.17,0.91,0.8,793,0.4,210,1.1
+2023,1,31,21,0,-15.100000000000001,1.35,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.307,64.19,129.79,0.91,0.8,793,0.4,217,0.9
+2023,1,31,21,30,-15.3,1.35,0.018000000000000002,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.306,65.26,135.29,0.92,0.8,793,0.4,219,0.9
+2023,1,31,22,0,-15.5,1.29,0.019,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.305,65.84,140.58,0.92,0.8,793,0.4,222,0.8
+2023,1,31,22,30,-15.700000000000001,1.29,0.019,0.62,0,0,0,0,0,-20.400000000000002,0,0,0,0,0.304,66.94,145.53,0.92,0.8,793,0.4,221,0.8
+2023,1,31,23,0,-16,1.24,0.019,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.303,68.05,149.94,0.92,0.8,793,0.4,221,0.8
+2023,1,31,23,30,-16.1,1.24,0.019,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.302,68.62,153.51,0.92,0.8,793,0.4,224,0.7000000000000001
+2023,2,1,0,0,-16.3,1.21,0.02,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.301,70.3,155.86,0.92,0.8,793,0.4,226,0.7000000000000001
+2023,2,1,0,30,-16.400000000000002,1.21,0.02,0.62,0,0,0,0,0,-20.5,0,0,0,0,0.301,70.89,156.6,0.92,0.8,793,0.4,227,0.7000000000000001
+2023,2,1,1,0,-16.5,1.2,0.02,0.62,0,0,0,0,0,-20.3,0,0,0,0,0.3,72.48,155.58,0.92,0.8,793,0.4,228,0.7000000000000001
+2023,2,1,1,30,-16.5,1.2,0.02,0.62,0,0,0,0,0,-20.3,0,0,0,0,0.3,72.39,153.01,0.92,0.8,792,0.4,222,0.7000000000000001
+2023,2,1,2,0,-16.5,1.21,0.02,0.62,0,0,0,0,0,-20.200000000000003,0,0,0,0,0.3,72.9,149.27,0.92,0.8,792,0.4,215,0.7000000000000001
+2023,2,1,2,30,-16.400000000000002,1.21,0.02,0.62,0,0,0,0,0,-20.200000000000003,0,0,0,0,0.3,72.29,144.75,0.92,0.8,792,0.4,212,0.7000000000000001
+2023,2,1,3,0,-16.3,1.24,0.019,0.62,0,0,0,0,0,-20.200000000000003,0,0,0,0,0.3,72.06,139.73,0.92,0.8,792,0.4,210,0.8
+2023,2,1,3,30,-16.2,1.24,0.019,0.62,0,0,0,0,0,-20.200000000000003,0,0,0,0,0.3,71.46000000000001,134.4,0.92,0.8,792,0.4,211,0.8
+2023,2,1,4,0,-16,1.27,0.018000000000000002,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.3,70.41,128.87,0.92,0.8,792,0.4,213,0.8
+2023,2,1,4,30,-15.8,1.27,0.018000000000000002,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.3,69.34,123.23,0.92,0.8,793,0.4,215,0.8
+2023,2,1,5,0,-15.700000000000001,1.29,0.017,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.299,68.92,117.54,0.92,0.8,793,0.4,218,0.7000000000000001
+2023,2,1,5,30,-15.5,1.29,0.017,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.299,67.79,111.84,0.92,0.8,793,0.4,218,0.7000000000000001
+2023,2,1,6,0,-15.4,1.31,0.016,0.62,0,0,0,0,7,-20.1,0,0,0,0,0.299,67.19,106.18,0.92,0.8,793,0.4,217,0.7000000000000001
+2023,2,1,6,30,-15.200000000000001,1.31,0.016,0.62,0,0,0,0,7,-20.1,0,0,0,0,0.298,66.09,100.58,0.92,0.8,793,0.4,216,0.7000000000000001
+2023,2,1,7,0,-14.9,1.33,0.015,0.62,0,0,0,0,0,-19.900000000000002,0,0,0,0,0.298,65.74,95.10000000000001,0.91,0.8,793,0.4,214,0.6000000000000001
+2023,2,1,7,30,-13.9,1.33,0.015,0.62,11,174,13,0,0,-19.900000000000002,10,141,7,12,0.298,60.56,89.37,0.91,0.8,793,0.4,223,0.7000000000000001
+2023,2,1,8,0,-12.9,1.35,0.015,0.62,26,589,83,3,0,-19,33,337,39,65,0.298,60.050000000000004,84.48,0.91,0.8,793,0.4,231,0.8
+2023,2,1,8,30,-11.4,1.35,0.015,0.62,36,758,173,0,0,-19,42,713,0,170,0.298,53.22,79.62,0.91,0.8,793,0.4,241,0.8
+2023,2,1,9,0,-9.8,1.37,0.014,0.62,43,856,264,0,0,-16.3,43,856,0,264,0.298,59.19,75.03,0.91,0.8,793,0.4,251,0.9
+2023,2,1,9,30,-8.200000000000001,1.37,0.014,0.62,49,917,351,0,0,-16.3,49,917,0,351,0.298,52.29,70.79,0.91,0.8,794,0.4,251,1.2000000000000002
+2023,2,1,10,0,-6.6000000000000005,1.37,0.014,0.62,54,958,428,0,0,-14.3,54,958,0,428,0.298,54.5,66.99,0.91,0.8,794,0.4,252,1.6
+2023,2,1,10,30,-5.5,1.37,0.014,0.62,58,987,495,0,0,-14.3,58,987,0,495,0.298,50.11,63.71,0.91,0.8,794,0.4,255,1.8
+2023,2,1,11,0,-4.4,1.3800000000000001,0.014,0.62,60,1006,547,0,0,-12.3,60,1006,0,547,0.298,54.24,61.050000000000004,0.91,0.8,793,0.4,258,2
+2023,2,1,11,30,-3.7,1.3800000000000001,0.014,0.62,63,1018,586,0,0,-12.3,63,1018,0,586,0.299,51.47,59.08,0.91,0.8,793,0.4,257,2
+2023,2,1,12,0,-3.1,1.3800000000000001,0.014,0.62,63,1023,607,0,0,-10.700000000000001,63,1023,0,607,0.299,55.59,57.89,0.91,0.8,793,0.4,257,1.9000000000000001
+2023,2,1,12,30,-2.6,1.3800000000000001,0.014,0.62,64,1022,613,0,0,-10.700000000000001,64,1022,0,613,0.299,53.56,57.53,0.91,0.8,793,0.5,254,1.9000000000000001
+2023,2,1,13,0,-2.1,1.37,0.015,0.62,64,1016,602,0,0,-9.600000000000001,64,1016,0,602,0.299,56.300000000000004,58.01,0.91,0.8,792,0.5,251,1.9000000000000001
+2023,2,1,13,30,-1.9000000000000001,1.37,0.015,0.62,63,1007,577,0,0,-9.600000000000001,63,1007,0,577,0.298,55.480000000000004,59.31,0.91,0.8,792,0.5,249,1.8
+2023,2,1,14,0,-1.7000000000000002,1.35,0.015,0.62,60,994,536,0,0,-9.1,60,994,0,536,0.298,57.21,61.370000000000005,0.92,0.8,792,0.5,247,1.7000000000000002
+2023,2,1,14,30,-1.7000000000000002,1.35,0.015,0.62,57,973,482,0,0,-9.1,57,973,0,482,0.297,57.21,64.12,0.92,0.8,792,0.5,244,1.5
+2023,2,1,15,0,-1.7000000000000002,1.33,0.014,0.62,54,943,415,0,0,-8,54,943,0,415,0.296,62.02,67.48,0.92,0.8,792,0.5,242,1.3
+2023,2,1,15,30,-2.5,1.33,0.014,0.62,48,900,336,0,0,-8,48,900,0,336,0.295,65.79,71.35000000000001,0.92,0.8,792,0.5,226,1.1
+2023,2,1,16,0,-3.3000000000000003,1.31,0.014,0.62,42,835,249,0,0,-8,42,835,0,249,0.295,70.07000000000001,75.64,0.92,0.8,792,0.5,211,0.9
+2023,2,1,16,30,-4.800000000000001,1.31,0.014,0.62,34,731,158,0,0,-8,40,665,7,152,0.295,78.51,80.27,0.92,0.8,793,0.5,202,1.1
+2023,2,1,17,0,-6.300000000000001,1.29,0.014,0.62,24,547,70,2,0,-11.200000000000001,31,366,36,62,0.295,68.34,85.15,0.92,0.8,793,0.5,194,1.3
+2023,2,1,17,30,-7.300000000000001,1.29,0.014,0.62,8,109,8,2,0,-11.200000000000001,6,55,21,6,0.294,73.79,90,0.92,0.8,793,0.5,194,1.3
+2023,2,1,18,0,-8.200000000000001,1.27,0.014,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.294,71.15,95.83,0.92,0.8,793,0.5,195,1.4000000000000001
+2023,2,1,18,30,-8.8,1.27,0.014,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.294,74.56,101.33,0.92,0.8,793,0.5,200,1.3
+2023,2,1,19,0,-9.4,1.24,0.016,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.294,73.77,106.93,0.93,0.8,793,0.5,204,1.3
+2023,2,1,19,30,-9.8,1.24,0.016,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.294,76.13,112.59,0.93,0.8,793,0.5,210,1.3
+2023,2,1,20,0,-10.200000000000001,1.21,0.018000000000000002,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.293,76.47,118.29,0.93,0.8,794,0.5,216,1.2000000000000002
+2023,2,1,20,30,-10.4,1.21,0.018000000000000002,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.293,77.69,123.97,0.93,0.8,794,0.5,221,1.2000000000000002
+2023,2,1,21,0,-10.600000000000001,1.18,0.019,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.293,78.46000000000001,129.58,0.93,0.8,794,0.5,226,1.1
+2023,2,1,21,30,-10.700000000000001,1.18,0.019,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.294,79.09,135.08,0.93,0.8,794,0.5,228,1.1
+2023,2,1,22,0,-10.8,1.1500000000000001,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.294,80.23,140.36,0.93,0.8,794,0.6000000000000001,231,1
+2023,2,1,22,30,-10.9,1.1500000000000001,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.295,80.97,145.29,0.93,0.8,795,0.6000000000000001,231,0.9
+2023,2,1,23,0,-11,1.16,0.023,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.295,82.48,149.68,0.93,0.8,795,0.6000000000000001,232,0.9
+2023,2,1,23,30,-11.200000000000001,1.16,0.023,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.296,83.8,153.24,0.93,0.8,795,0.6000000000000001,232,0.8
+2023,2,2,0,0,-11.3,1.18,0.024,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.297,84.89,155.58,0.93,0.8,795,0.6000000000000001,231,0.7000000000000001
+2023,2,2,0,30,-11.5,1.18,0.024,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.298,86.26,156.32,0.93,0.8,795,0.6000000000000001,230,0.6000000000000001
+2023,2,2,1,0,-11.600000000000001,1.22,0.025,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.299,87.22,155.32,0.93,0.8,795,0.6000000000000001,229,0.5
+2023,2,2,1,30,-11.700000000000001,1.22,0.025,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.3,87.92,152.76,0.93,0.8,795,0.6000000000000001,220,0.4
+2023,2,2,2,0,-11.9,1.23,0.027,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.3,89.03,149.05,0.93,0.8,795,0.6000000000000001,212,0.30000000000000004
+2023,2,2,2,30,-12,1.23,0.027,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.301,89.75,144.56,0.93,0.8,795,0.6000000000000001,189,0.30000000000000004
+2023,2,2,3,0,-12.100000000000001,1.24,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.301,90.07000000000001,139.56,0.93,0.8,795,0.6000000000000001,166,0.30000000000000004
+2023,2,2,3,30,-12.200000000000001,1.24,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.301,90.92,134.24,0.9400000000000001,0.8,796,0.5,157,0.30000000000000004
+2023,2,2,4,0,-12.200000000000001,1.25,0.031,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.301,90.22,128.72,0.9400000000000001,0.8,796,0.5,147,0.30000000000000004
+2023,2,2,4,30,-12.4,1.25,0.031,0.62,0,0,0,0,7,-13.5,0,0,0,0,0.302,91.69,123.08,0.93,0.8,796,0.5,155,0.30000000000000004
+2023,2,2,5,0,-12.5,1.27,0.027,0.62,0,0,0,0,7,-13.700000000000001,0,0,0,0,0.302,90.89,117.39,0.93,0.8,796,0.5,163,0.30000000000000004
+2023,2,2,5,30,-12.700000000000001,1.27,0.027,0.62,0,0,0,0,7,-13.700000000000001,0,0,0,0,0.303,92.37,111.69,0.92,0.8,796,0.4,177,0.4
+2023,2,2,6,0,-12.9,1.28,0.022,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.304,91.99,106.02,0.92,0.8,797,0.4,190,0.4
+2023,2,2,6,30,-13,1.28,0.022,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.304,92.74,100.42,0.91,0.8,797,0.4,190,0.4
+2023,2,2,7,0,-13,1.28,0.017,0.62,0,0,0,0,7,-14,0,0,0,0,0.304,91.97,94.93,0.91,0.8,797,0.30000000000000004,191,0.4
+2023,2,2,7,30,-12,1.28,0.017,0.62,11,184,14,5,7,-14,8,17,68,8,0.304,84.94,89.22,0.91,0.8,798,0.30000000000000004,181,0.5
+2023,2,2,8,0,-11,1.28,0.015,0.62,27,609,87,1,0,-13.4,30,508,18,80,0.304,82.5,84.3,0.9,0.8,798,0.30000000000000004,172,0.6000000000000001
+2023,2,2,8,30,-9.3,1.28,0.015,0.62,36,776,178,0,0,-13.4,36,776,0,178,0.304,72.12,79.43,0.9,0.8,798,0.30000000000000004,173,0.7000000000000001
+2023,2,2,9,0,-7.6000000000000005,1.29,0.013000000000000001,0.62,42,874,271,0,0,-11.3,42,874,0,271,0.304,75.06,74.83,0.9,0.8,798,0.30000000000000004,175,0.8
+2023,2,2,9,30,-6.1000000000000005,1.29,0.013000000000000001,0.62,47,934,358,0,0,-11.200000000000001,47,934,0,358,0.304,66.98,70.57000000000001,0.9,0.8,799,0.30000000000000004,185,1
+2023,2,2,10,0,-4.6000000000000005,1.3,0.012,0.62,51,976,436,0,0,-9.5,51,976,0,436,0.304,68.51,66.76,0.9,0.8,799,0.30000000000000004,195,1.3
+2023,2,2,10,30,-3.4000000000000004,1.3,0.012,0.62,55,1003,503,0,0,-9.5,55,1003,0,503,0.304,62.620000000000005,63.46,0.9,0.8,799,0.30000000000000004,208,1.7000000000000002
+2023,2,2,11,0,-2.2,1.25,0.012,0.62,58,1022,557,0,0,-8.6,58,1022,0,557,0.304,61.410000000000004,60.78,0.9,0.8,799,0.30000000000000004,221,2
+2023,2,2,11,30,-1.4000000000000001,1.25,0.012,0.62,60,1034,595,0,0,-8.6,60,1034,0,595,0.303,57.83,58.81,0.9,0.8,798,0.30000000000000004,226,2.2
+2023,2,2,12,0,-0.7000000000000001,1.28,0.011,0.62,60,1041,618,0,0,-7.9,60,1041,0,618,0.303,58.370000000000005,57.61,0.9,0.8,798,0.30000000000000004,230,2.4000000000000004
+2023,2,2,12,30,-0.30000000000000004,1.28,0.011,0.62,60,1044,625,0,0,-7.9,60,1044,0,625,0.303,56.7,57.24,0.9,0.8,798,0.30000000000000004,231,2.4000000000000004
+2023,2,2,13,0,0.1,1.29,0.011,0.62,60,1041,616,0,0,-7.5,60,1041,0,616,0.304,56.53,57.72,0.9,0.8,798,0.30000000000000004,231,2.5
+2023,2,2,13,30,0.30000000000000004,1.29,0.011,0.62,59,1034,591,0,0,-7.5,59,1034,0,591,0.304,55.72,59.02,0.9,0.8,798,0.30000000000000004,231,2.6
+2023,2,2,14,0,0.4,1.24,0.011,0.62,56,1021,550,0,0,-7.2,56,1021,0,550,0.305,56.59,61.09,0.9,0.8,798,0.30000000000000004,230,2.6
+2023,2,2,14,30,0.30000000000000004,1.24,0.011,0.62,54,1001,495,0,0,-7.2,54,1001,0,495,0.304,57,63.85,0.9,0.8,798,0.30000000000000004,230,2.5
+2023,2,2,15,0,0.1,1.23,0.011,0.62,49,973,426,0,0,-6.6000000000000005,49,973,0,426,0.304,60.76,67.22,0.9,0.8,798,0.30000000000000004,230,2.3000000000000003
+2023,2,2,15,30,-0.9,1.23,0.011,0.62,45,931,347,0,0,-6.6000000000000005,45,931,0,347,0.303,65.34,71.09,0.9,0.8,798,0.30000000000000004,227,1.8
+2023,2,2,16,0,-2,1.21,0.011,0.62,40,869,259,0,0,-6.7,40,869,0,259,0.301,69.97,75.4,0.9,0.8,798,0.30000000000000004,225,1.3
+2023,2,2,16,30,-3.5,1.21,0.011,0.62,33,770,166,0,0,-6.7,35,745,4,164,0.301,78.2,80.04,0.9,0.8,798,0.30000000000000004,220,1.3
+2023,2,2,17,0,-5,1.18,0.01,0.62,23,595,76,0,0,-10.3,24,575,4,75,0.3,66.56,84.93,0.9,0.8,799,0.30000000000000004,216,1.3
+2023,2,2,17,30,-5.7,1.18,0.01,0.62,9,124,9,0,0,-10.3,9,124,0,9,0.301,70.19,89.82000000000001,0.9,0.8,799,0.30000000000000004,212,1.4000000000000001
+2023,2,2,18,0,-6.4,1.1500000000000001,0.01,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.301,68.39,95.62,0.9,0.8,799,0.30000000000000004,208,1.4000000000000001
+2023,2,2,18,30,-7,1.1500000000000001,0.01,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.301,71.62,101.12,0.9,0.8,799,0.30000000000000004,206,1.4000000000000001
+2023,2,2,19,0,-7.6000000000000005,1.11,0.011,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.301,72.84,106.73,0.9,0.8,799,0.30000000000000004,204,1.4000000000000001
+2023,2,2,19,30,-8.1,1.11,0.011,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.301,75.82000000000001,112.39,0.9,0.8,800,0.30000000000000004,204,1.4000000000000001
+2023,2,2,20,0,-8.700000000000001,1.08,0.011,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.301,77.61,118.09,0.9,0.8,800,0.30000000000000004,205,1.3
+2023,2,2,20,30,-9.1,1.08,0.011,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.301,80.07000000000001,123.77,0.9,0.8,800,0.30000000000000004,205,1.3
+2023,2,2,21,0,-9.600000000000001,1.06,0.011,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.302,81.8,129.38,0.9,0.8,800,0.30000000000000004,205,1.3
+2023,2,2,21,30,-10,1.06,0.011,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.302,84.42,134.86,0.9,0.8,800,0.30000000000000004,205,1.4000000000000001
+2023,2,2,22,0,-10.3,1.04,0.012,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.302,85.4,140.13,0.9,0.8,800,0.30000000000000004,205,1.4000000000000001
+2023,2,2,22,30,-10.700000000000001,1.04,0.012,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.302,88.16,145.05,0.9,0.8,800,0.30000000000000004,206,1.4000000000000001
+2023,2,2,23,0,-11,1.03,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.301,89.68,149.43,0.9,0.8,800,0.30000000000000004,207,1.4000000000000001
+2023,2,2,23,30,-11.3,1.03,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.3,91.85000000000001,152.97,0.9,0.8,800,0.30000000000000004,208,1.5
+2023,2,3,0,0,-11.600000000000001,1.01,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.299,93.68,155.29,0.9,0.8,799,0.30000000000000004,208,1.5
+2023,2,3,0,30,-11.8,1.01,0.012,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.298,95.19,156.03,0.9,0.8,799,0.30000000000000004,207,1.5
+2023,2,3,1,0,-12,1,0.012,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.297,96.4,155.04,0.9,0.8,799,0.30000000000000004,205,1.5
+2023,2,3,1,30,-12.3,1,0.012,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.296,98.75,152.52,0.9,0.8,799,0.30000000000000004,202,1.5
+2023,2,3,2,0,-12.5,0.98,0.013000000000000001,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.295,99.62,148.83,0.9,0.8,799,0.30000000000000004,199,1.5
+2023,2,3,2,30,-12.700000000000001,0.98,0.013000000000000001,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.293,100,144.36,0.9,0.8,799,0.30000000000000004,199,1.6
+2023,2,3,3,0,-13,0.96,0.013000000000000001,0.62,0,0,0,0,0,-13,0,0,0,0,0.291,100,139.38,0.9,0.8,799,0.30000000000000004,199,1.6
+2023,2,3,3,30,-13.200000000000001,0.96,0.013000000000000001,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.29,100,134.07,0.9,0.8,799,0.2,201,1.7000000000000002
+2023,2,3,4,0,-13.5,0.96,0.013000000000000001,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.28800000000000003,100,128.55,0.91,0.8,799,0.2,203,1.8
+2023,2,3,4,30,-13.600000000000001,0.96,0.013000000000000001,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.28700000000000003,100,122.92,0.91,0.8,799,0.2,201,1.8
+2023,2,3,5,0,-13.700000000000001,0.97,0.014,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.28600000000000003,100,117.23,0.91,0.8,799,0.2,198,1.8
+2023,2,3,5,30,-13.700000000000001,0.97,0.014,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.28500000000000003,100,111.53,0.91,0.8,799,0.2,193,1.8
+2023,2,3,6,0,-13.700000000000001,0.99,0.015,0.62,0,0,0,0,8,-13.700000000000001,0,0,0,0,0.28500000000000003,100,105.86,0.92,0.8,799,0.2,187,1.8
+2023,2,3,6,30,-13.4,0.99,0.015,0.62,0,0,0,0,8,-13.5,0,0,0,0,0.28500000000000003,99.51,100.26,0.92,0.8,799,0.2,186,1.8
+2023,2,3,7,0,-13.200000000000001,1.01,0.015,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.28500000000000003,97.08,94.76,0.92,0.8,799,0.2,184,1.8
+2023,2,3,7,30,-11.700000000000001,1.01,0.015,0.62,13,191,16,0,0,-13.600000000000001,11,155,7,14,0.28500000000000003,86.02,89.06,0.92,0.8,799,0.2,189,2
+2023,2,3,8,0,-10.3,1.06,0.016,0.62,29,627,93,1,0,-12.4,34,474,18,83,0.28500000000000003,84.84,84.11,0.92,0.8,799,0.2,194,2.3000000000000003
+2023,2,3,8,30,-8.6,1.06,0.016,0.62,39,791,187,0,0,-12.4,75,478,0,164,0.28500000000000003,74.23,79.23,0.93,0.8,799,0.2,202,2.4000000000000004
+2023,2,3,9,0,-7,1.1,0.017,0.62,47,884,282,0,7,-10.200000000000001,157,277,0,231,0.28600000000000003,78.12,74.61,0.93,0.8,799,0.2,209,2.5
+2023,2,3,9,30,-5.5,1.1,0.017,0.62,54,943,371,0,7,-10.200000000000001,191,371,0,316,0.28600000000000003,69.66,70.35000000000001,0.93,0.8,799,0.2,214,2.8000000000000003
+2023,2,3,10,0,-4.1000000000000005,1.1300000000000001,0.019,0.62,60,982,451,0,7,-8.700000000000001,211,466,0,397,0.28700000000000003,70.37,66.52,0.93,0.8,799,0.2,219,3.1
+2023,2,3,10,30,-3,1.1300000000000001,0.019,0.62,64,1009,519,0,7,-8.700000000000001,245,475,0,459,0.28700000000000003,64.74,63.21,0.93,0.8,798,0.2,221,3.4000000000000004
+2023,2,3,11,0,-1.9000000000000001,1.16,0.02,0.62,68,1027,573,0,7,-7.6000000000000005,280,458,0,505,0.28800000000000003,65.25,60.52,0.93,0.8,798,0.2,223,3.7
+2023,2,3,11,30,-1.1,1.16,0.02,0.62,70,1040,613,0,7,-7.6000000000000005,276,521,0,548,0.28800000000000003,61.53,58.53,0.93,0.8,798,0.2,224,3.9000000000000004
+2023,2,3,12,0,-0.30000000000000004,1.2,0.019,0.62,70,1044,634,0,0,-7.1000000000000005,115,939,7,622,0.289,59.980000000000004,57.32,0.92,0.8,797,0.2,225,4.1000000000000005
+2023,2,3,12,30,0.1,1.2,0.019,0.62,70,1037,636,0,0,-7.1000000000000005,70,1037,0,636,0.289,58.26,56.95,0.92,0.8,797,0.30000000000000004,226,4.2
+2023,2,3,13,0,0.5,1.23,0.018000000000000002,0.62,68,1034,625,0,0,-6.9,68,1034,0,625,0.29,57.71,57.42,0.92,0.8,796,0.30000000000000004,228,4.3
+2023,2,3,13,30,0.6000000000000001,1.23,0.018000000000000002,0.62,68,1025,600,0,0,-6.9,75,1010,14,599,0.291,57.300000000000004,58.730000000000004,0.92,0.8,796,0.30000000000000004,230,4.3
+2023,2,3,14,0,0.7000000000000001,1.25,0.02,0.62,66,1010,559,0,0,-6.7,73,995,0,558,0.293,57.9,60.800000000000004,0.92,0.8,796,0.30000000000000004,233,4.3
+2023,2,3,14,30,0.5,1.25,0.02,0.62,64,986,503,0,0,-6.7,64,986,0,503,0.295,58.74,63.58,0.92,0.8,796,0.30000000000000004,234,4.1000000000000005
+2023,2,3,15,0,0.30000000000000004,1.28,0.022,0.62,60,948,431,0,0,-6.4,75,896,7,426,0.297,60.52,66.95,0.92,0.8,796,0.4,234,3.9000000000000004
+2023,2,3,15,30,-0.8,1.28,0.022,0.62,56,897,350,0,0,-6.4,60,875,14,347,0.298,65.56,70.84,0.93,0.8,796,0.4,232,3
+2023,2,3,16,0,-1.9000000000000001,1.27,0.026000000000000002,0.62,49,826,261,0,7,-6.6000000000000005,105,464,18,224,0.3,70.46000000000001,75.15,0.93,0.8,796,0.4,229,2.1
+2023,2,3,16,30,-3.4000000000000004,1.27,0.026000000000000002,0.62,42,714,168,2,7,-6.6000000000000005,89,106,29,108,0.3,78.74,79.8,0.9400000000000001,0.8,796,0.4,222,1.8
+2023,2,3,17,0,-4.9,1.23,0.032,0.62,29,516,77,7,7,-8.8,35,1,100,35,0.301,73.99,84.71000000000001,0.9400000000000001,0.78,796,0.4,214,1.5
+2023,2,3,17,30,-5.4,1.23,0.032,0.62,10,134,11,4,7,-8.8,6,0,57,6,0.302,76.75,89.63,0.9400000000000001,0.78,795,0.4,207,1.6
+2023,2,3,18,0,-5.800000000000001,1.22,0.034,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.302,74.91,95.41,0.9400000000000001,0.78,795,0.4,199,1.6
+2023,2,3,18,30,-6.1000000000000005,1.22,0.034,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.303,76.64,100.92,0.9400000000000001,0.78,795,0.4,195,1.7000000000000002
+2023,2,3,19,0,-6.5,1.22,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.304,76.97,106.52,0.9400000000000001,0.78,795,0.4,191,1.8
+2023,2,3,19,30,-6.7,1.22,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.305,78.16,112.19,0.9400000000000001,0.78,795,0.4,190,1.9000000000000001
+2023,2,3,20,0,-6.800000000000001,1.19,0.037,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.305,78.44,117.89,0.9500000000000001,0.78,794,0.4,188,1.9000000000000001
+2023,2,3,20,30,-6.800000000000001,1.19,0.037,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.307,78.44,123.56,0.9500000000000001,0.78,794,0.5,190,1.9000000000000001
+2023,2,3,21,0,-6.7,1.18,0.039,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.309,78.65,129.17000000000002,0.9500000000000001,0.78,794,0.5,191,2
+2023,2,3,21,30,-6.7,1.18,0.039,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.31,78.65,134.65,0.9500000000000001,0.78,794,0.5,195,1.9000000000000001
+2023,2,3,22,0,-6.6000000000000005,1.2,0.038,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.312,78.37,139.91,0.9500000000000001,0.78,794,0.5,199,1.8
+2023,2,3,22,30,-7,1.2,0.038,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.315,80.81,144.81,0.9400000000000001,0.78,794,0.5,203,1.8
+2023,2,3,23,0,-7.300000000000001,1.23,0.031,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.317,79.32000000000001,149.17000000000002,0.9400000000000001,0.78,794,0.5,207,1.7000000000000002
+2023,2,3,23,30,-7.6000000000000005,1.23,0.031,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.319,81.18,152.69,0.9400000000000001,0.78,794,0.5,209,1.7000000000000002
+2023,2,4,0,0,-8,1.23,0.028,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.322,80.4,154.99,0.9400000000000001,0.78,794,0.5,210,1.7000000000000002
+2023,2,4,0,30,-8.200000000000001,1.23,0.028,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.325,81.66,155.73,0.9400000000000001,0.78,794,0.5,211,1.7000000000000002
+2023,2,4,1,0,-8.4,1.22,0.028,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.328,81.04,154.76,0.9400000000000001,0.78,793,0.5,212,1.7000000000000002
+2023,2,4,1,30,-8.5,1.22,0.028,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.33,81.67,152.26,0.9400000000000001,0.78,793,0.5,213,1.6
+2023,2,4,2,0,-8.700000000000001,1.22,0.029,0.62,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.332,81.9,148.6,0.9400000000000001,0.78,793,0.5,214,1.6
+2023,2,4,2,30,-8.700000000000001,1.22,0.029,0.62,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.331,81.9,144.15,0.9400000000000001,0.78,793,0.5,217,1.5
+2023,2,4,3,0,-8.8,1.21,0.03,0.62,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.331,82.5,139.19,0.9400000000000001,0.78,793,0.5,219,1.5
+2023,2,4,3,30,-8.700000000000001,1.21,0.03,0.62,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.33,81.86,133.89000000000001,0.9400000000000001,0.78,793,0.5,220,1.4000000000000001
+2023,2,4,4,0,-8.5,1.22,0.028,0.62,0,0,0,0,7,-11,0,0,29,0,0.33,82.42,128.38,0.9400000000000001,0.78,793,0.5,222,1.4000000000000001
+2023,2,4,4,30,-8.8,1.22,0.028,0.62,0,0,0,0,7,-11,0,0,14,0,0.329,84.37,122.76,0.93,0.78,793,0.5,223,1.3
+2023,2,4,5,0,-9.1,1.27,0.022,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.328,85.71000000000001,117.07000000000001,0.92,0.78,793,0.5,225,1.3
+2023,2,4,5,30,-9.600000000000001,1.27,0.022,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.328,89.14,111.37,0.91,0.78,793,0.5,227,1.4000000000000001
+2023,2,4,6,0,-10,1.29,0.018000000000000002,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.329,88.64,105.7,0.9,0.78,793,0.4,230,1.4000000000000001
+2023,2,4,6,30,-10.100000000000001,1.29,0.018000000000000002,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.326,89.34,100.09,0.9,0.78,793,0.4,231,1.4000000000000001
+2023,2,4,7,0,-10.200000000000001,1.3,0.018000000000000002,0.62,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.323,88.61,94.58,0.9,0.78,793,0.4,232,1.4000000000000001
+2023,2,4,7,30,-8.8,1.3,0.018000000000000002,0.62,14,219,18,0,0,-11.700000000000001,14,219,4,18,0.321,79.38,88.9,0.9,0.78,793,0.4,231,1.7000000000000002
+2023,2,4,8,0,-7.4,1.32,0.022,0.62,29,588,91,0,0,-10.4,29,588,0,91,0.319,78.88,83.92,0.9,0.78,794,0.4,230,2
+2023,2,4,8,30,-5.7,1.32,0.022,0.62,40,749,183,0,0,-10.4,40,749,0,183,0.317,69.24,79.03,0.91,0.78,794,0.4,227,2.2
+2023,2,4,9,0,-4,1.33,0.025,0.62,50,841,276,0,0,-8.4,50,841,29,276,0.316,71.69,74.4,0.91,0.78,794,0.4,224,2.4000000000000004
+2023,2,4,9,30,-2.6,1.33,0.025,0.62,57,901,363,0,0,-8.4,57,901,0,363,0.314,64.59,70.12,0.91,0.78,794,0.4,226,2.6
+2023,2,4,10,0,-1.2000000000000002,1.34,0.027,0.62,63,940,441,0,0,-7.300000000000001,63,940,0,441,0.312,63.24,66.27,0.91,0.78,794,0.4,229,2.9000000000000004
+2023,2,4,10,30,-0.1,1.34,0.027,0.62,68,966,507,0,0,-7.300000000000001,68,966,0,507,0.311,58.370000000000005,62.95,0.91,0.78,794,0.5,232,3
+2023,2,4,11,0,0.9,1.34,0.028,0.62,72,985,561,0,0,-6.5,72,985,0,561,0.31,57.550000000000004,60.24,0.91,0.78,794,0.5,235,3.1
+2023,2,4,11,30,1.5,1.34,0.028,0.62,75,996,599,0,0,-6.6000000000000005,75,996,0,599,0.311,55.06,58.24,0.91,0.78,793,0.5,235,3
+2023,2,4,12,0,2.1,1.34,0.029,0.62,76,1002,621,0,0,-6,76,1002,0,621,0.312,54.92,57.03,0.91,0.78,793,0.5,235,2.9000000000000004
+2023,2,4,12,30,2.4000000000000004,1.34,0.029,0.62,77,1001,627,0,0,-6,91,964,0,621,0.312,53.76,56.65,0.91,0.78,793,0.5,234,3.1
+2023,2,4,13,0,2.7,1.37,0.031,0.62,77,997,618,0,0,-6,91,960,0,612,0.312,52.94,57.120000000000005,0.91,0.78,793,0.5,234,3.2
+2023,2,4,13,30,2.7,1.37,0.031,0.62,76,987,593,0,0,-6,76,987,0,593,0.31,52.94,58.43,0.92,0.78,793,0.5,233,3.3000000000000003
+2023,2,4,14,0,2.8000000000000003,1.3900000000000001,0.034,0.62,75,970,552,0,0,-5.9,75,970,0,552,0.308,52.660000000000004,60.52,0.92,0.78,793,0.5,232,3.3000000000000003
+2023,2,4,14,30,2.6,1.3900000000000001,0.034,0.62,73,944,497,0,0,-5.9,73,944,0,497,0.307,53.410000000000004,63.300000000000004,0.92,0.78,793,0.5,230,3.1
+2023,2,4,15,0,2.4000000000000004,1.36,0.041,0.62,69,907,428,0,0,-5.5,69,907,4,428,0.306,56,66.68,0.93,0.78,793,0.5,228,2.9000000000000004
+2023,2,4,15,30,1.2000000000000002,1.36,0.041,0.62,64,853,348,0,0,-5.5,64,853,4,348,0.304,61.01,70.58,0.9400000000000001,0.78,793,0.5,226,2.2
+2023,2,4,16,0,0,1.31,0.049,0.62,57,774,259,0,0,-5,57,774,0,259,0.303,69.29,74.91,0.9400000000000001,0.78,793,0.5,223,1.6
+2023,2,4,16,30,-1.3,1.31,0.049,0.62,46,666,167,1,0,-5,54,582,18,159,0.302,76.18,79.57000000000001,0.9400000000000001,0.78,793,0.5,218,1.5
+2023,2,4,17,0,-2.6,1.31,0.045,0.62,32,481,78,6,7,-7.5,41,46,89,45,0.301,69.04,84.49,0.9400000000000001,0.71,793,0.5,213,1.5
+2023,2,4,17,30,-3.1,1.31,0.045,0.62,11,121,12,3,0,-7.5,8,21,43,8,0.3,71.65,89.44,0.9400000000000001,0.71,793,0.5,208,1.5
+2023,2,4,18,0,-3.6,1.32,0.038,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.299,70.17,95.19,0.9400000000000001,0.71,793,0.5,204,1.4000000000000001
+2023,2,4,18,30,-4,1.32,0.038,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.299,72.3,100.71000000000001,0.9400000000000001,0.71,793,0.5,200,1.4000000000000001
+2023,2,4,19,0,-4.3,1.32,0.034,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.298,72.5,106.32000000000001,0.93,0.71,793,0.5,196,1.4000000000000001
+2023,2,4,19,30,-4.7,1.32,0.034,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.297,74.71000000000001,111.99000000000001,0.9400000000000001,0.71,793,0.5,194,1.5
+2023,2,4,20,0,-5.1000000000000005,1.32,0.032,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.296,76.3,117.69,0.9400000000000001,0.71,793,0.5,192,1.5
+2023,2,4,20,30,-5.4,1.32,0.032,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.295,78.05,123.36,0.9400000000000001,0.71,793,0.5,193,1.6
+2023,2,4,21,0,-5.6000000000000005,1.3,0.032,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.294,79.78,128.96,0.9400000000000001,0.71,793,0.5,194,1.7000000000000002
+2023,2,4,21,30,-5.7,1.3,0.032,0.62,0,0,0,0,6,-8.5,0,0,0,0,0.293,80.39,134.43,0.9400000000000001,0.71,793,0.5,195,1.7000000000000002
+2023,2,4,22,0,-5.800000000000001,1.29,0.034,0.62,0,0,0,0,6,-8.4,0,0,0,0,0.292,81.92,139.68,0.9400000000000001,0.71,793,0.5,197,1.8
+2023,2,4,22,30,-5.7,1.29,0.034,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.291,81.2,144.57,0.9400000000000001,0.71,792,0.5,197,1.9000000000000001
+2023,2,4,23,0,-5.7,1.28,0.035,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.29,82.33,148.91,0.9400000000000001,0.71,792,0.5,197,1.9000000000000001
+2023,2,4,23,30,-5.7,1.28,0.035,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.29,82.33,152.4,0.9400000000000001,0.71,792,0.5,197,2
+2023,2,5,0,0,-5.7,1.28,0.036000000000000004,0.62,0,0,0,0,7,-8,0,0,0,0,0.29,83.51,154.70000000000002,0.9400000000000001,0.71,792,0.5,196,2
+2023,2,5,0,30,-5.6000000000000005,1.28,0.036000000000000004,0.62,0,0,0,0,7,-8,0,0,0,0,0.29,82.88,155.43,0.9400000000000001,0.71,792,0.5,195,2
+2023,2,5,1,0,-5.6000000000000005,1.29,0.036000000000000004,0.62,0,0,0,0,6,-7.800000000000001,0,0,0,0,0.29,84.18,154.47,0.9400000000000001,0.71,792,0.6000000000000001,193,2.1
+2023,2,5,1,30,-5.7,1.29,0.036000000000000004,0.62,0,0,0,0,6,-7.800000000000001,0,0,0,0,0.29,84.83,152,0.9400000000000001,0.71,792,0.6000000000000001,191,2.1
+2023,2,5,2,0,-5.800000000000001,1.32,0.032,0.62,0,0,0,0,6,-7.800000000000001,0,0,0,0,0.29,85.74,148.37,0.9400000000000001,0.71,791,0.6000000000000001,189,2.1
+2023,2,5,2,30,-6.1000000000000005,1.32,0.032,0.62,0,0,0,0,6,-7.800000000000001,0,0,0,0,0.29,87.72,143.94,0.93,0.71,791,0.6000000000000001,187,2.1
+2023,2,5,3,0,-6.300000000000001,1.34,0.029,0.62,0,0,0,0,6,-8,0,0,0,0,0.29,87.95,138.99,0.93,0.71,791,0.6000000000000001,184,2.2
+2023,2,5,3,30,-6.5,1.34,0.029,0.62,0,0,0,0,6,-8,0,0,0,0,0.29,89.31,133.71,0.93,0.71,791,0.6000000000000001,183,2.2
+2023,2,5,4,0,-6.7,1.37,0.027,0.62,0,0,0,0,6,-8.3,0,0,0,0,0.29,88.53,128.21,0.93,0.71,790,0.6000000000000001,181,2.3000000000000003
+2023,2,5,4,30,-6.800000000000001,1.37,0.027,0.62,0,0,0,0,6,-8.3,0,0,0,0,0.29,89.21000000000001,122.59,0.93,0.71,790,0.6000000000000001,180,2.3000000000000003
+2023,2,5,5,0,-7,1.41,0.025,0.62,0,0,0,0,6,-8.700000000000001,0,0,0,0,0.29,88,116.9,0.92,0.71,790,0.6000000000000001,179,2.3000000000000003
+2023,2,5,5,30,-7.1000000000000005,1.41,0.025,0.62,0,0,0,0,6,-8.700000000000001,0,0,0,0,0.289,88.56,111.2,0.92,0.71,789,0.6000000000000001,179,2.4000000000000004
+2023,2,5,6,0,-7.2,1.43,0.025,0.62,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.28800000000000003,85.91,105.53,0.92,0.71,789,0.6000000000000001,178,2.4000000000000004
+2023,2,5,6,30,-7.1000000000000005,1.43,0.025,0.62,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.28600000000000003,85.25,99.91,0.92,0.71,789,0.6000000000000001,178,2.4000000000000004
+2023,2,5,7,0,-6.9,1.44,0.026000000000000002,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.28500000000000003,81.55,94.4,0.92,0.71,789,0.5,178,2.5
+2023,2,5,7,30,-5.5,1.44,0.026000000000000002,0.62,14,210,19,4,7,-9.5,14,94,50,16,0.28300000000000003,73.27,88.73,0.92,0.71,789,0.6000000000000001,180,2.7
+2023,2,5,8,0,-4,1.45,0.026000000000000002,0.62,31,572,93,0,0,-8.5,34,468,7,85,0.28200000000000003,71.02,83.73,0.92,0.71,789,0.6000000000000001,181,3
+2023,2,5,8,30,-2.6,1.45,0.026000000000000002,0.62,42,734,184,0,0,-8.5,48,683,0,180,0.28200000000000003,63.9,78.82000000000001,0.92,0.71,788,0.6000000000000001,184,3.3000000000000003
+2023,2,5,9,0,-1.1,1.45,0.027,0.62,50,830,276,0,0,-6.9,63,757,0,269,0.28200000000000003,64.51,74.17,0.92,0.71,788,0.6000000000000001,188,3.5
+2023,2,5,9,30,0.2,1.45,0.027,0.62,57,893,364,0,0,-6.9,105,653,7,330,0.28300000000000003,58.69,69.88,0.91,0.71,788,0.5,192,4
+2023,2,5,10,0,1.5,1.44,0.027,0.62,61,937,442,0,0,-5.5,112,738,0,412,0.28300000000000003,59.45,66.02,0.91,0.71,788,0.5,197,4.5
+2023,2,5,10,30,2.4000000000000004,1.44,0.027,0.62,67,966,510,0,0,-5.6000000000000005,72,947,0,507,0.28400000000000003,55.69,62.68,0.91,0.71,787,0.5,201,5.300000000000001
+2023,2,5,11,0,3.4000000000000004,1.3,0.028,0.62,70,985,563,1,7,-5.2,189,590,18,484,0.28600000000000003,53.52,59.96,0.91,0.71,787,0.5,205,6.1000000000000005
+2023,2,5,11,30,3.9000000000000004,1.3,0.028,0.62,72,998,602,0,0,-5.2,162,766,7,568,0.28600000000000003,51.61,57.95,0.91,0.71,786,0.5,207,6.5
+2023,2,5,12,0,4.5,1.28,0.028,0.62,74,1004,625,0,0,-5.1000000000000005,74,1004,0,625,0.28700000000000003,49.660000000000004,56.730000000000004,0.91,0.71,785,0.5,209,6.9
+2023,2,5,12,30,4.800000000000001,1.28,0.028,0.62,75,1003,631,0,0,-5.1000000000000005,127,864,0,606,0.289,48.57,56.35,0.91,0.71,784,0.5,211,7.2
+2023,2,5,13,0,5.1000000000000005,1.27,0.03,0.62,74,998,620,0,0,-5.2,74,998,0,620,0.29,47.27,56.82,0.91,0.71,784,0.6000000000000001,213,7.5
+2023,2,5,13,30,5,1.27,0.03,0.62,76,982,594,0,0,-5.2,76,982,0,594,0.291,47.6,58.13,0.92,0.71,784,0.6000000000000001,217,7.6000000000000005
+2023,2,5,14,0,4.9,1.09,0.038,0.62,75,960,552,0,0,-5.300000000000001,75,960,0,552,0.293,47.71,60.230000000000004,0.92,0.71,783,0.6000000000000001,220,7.7
+2023,2,5,14,30,4.5,1.09,0.038,0.62,74,932,497,0,0,-5.300000000000001,74,932,0,497,0.295,49.06,63.02,0.93,0.71,783,0.6000000000000001,224,7.300000000000001
+2023,2,5,15,0,4,1.09,0.047,0.62,71,891,428,0,0,-5,71,891,0,428,0.297,52.09,66.41,0.93,0.71,783,0.6000000000000001,228,6.800000000000001
+2023,2,5,15,30,2.9000000000000004,1.09,0.047,0.62,67,830,347,0,0,-5,67,830,0,347,0.299,56.28,70.32000000000001,0.9400000000000001,0.71,783,0.7000000000000001,231,5.5
+2023,2,5,16,0,1.8,1.07,0.06,0.62,61,740,257,0,0,-4.1000000000000005,61,740,0,257,0.301,65.01,74.66,0.9500000000000001,0.71,783,0.7000000000000001,234,4.2
+2023,2,5,16,30,0.5,1.07,0.06,0.62,53,599,164,1,0,-4.1000000000000005,67,448,21,150,0.303,71.46000000000001,79.34,0.96,0.71,784,0.7000000000000001,242,3.2
+2023,2,5,17,0,-0.9,1.04,0.088,0.62,39,365,75,7,8,-3.8000000000000003,35,1,100,35,0.305,80.89,84.27,0.97,0.73,784,0.8,249,2.2
+2023,2,5,17,30,-1.3,1.04,0.088,0.62,11,75,12,4,8,-3.8000000000000003,5,0,57,5,0.307,83.29,89.25,0.97,0.73,784,0.8,268,2.1
+2023,2,5,18,0,-1.7000000000000002,1.03,0.10300000000000001,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.308,89.07000000000001,94.98,0.97,0.73,784,0.8,288,1.9000000000000001
+2023,2,5,18,30,-2,1.03,0.10300000000000001,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.309,91.06,100.5,0.97,0.73,784,0.8,303,2.2
+2023,2,5,19,0,-2.3000000000000003,1.05,0.088,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.311,91.51,106.12,0.97,0.73,784,0.7000000000000001,319,2.5
+2023,2,5,19,30,-2.6,1.05,0.088,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.312,93.57000000000001,111.79,0.97,0.73,784,0.7000000000000001,322,2.4000000000000004
+2023,2,5,20,0,-3,1.07,0.074,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.314,90.22,117.49000000000001,0.97,0.73,784,0.7000000000000001,326,2.3000000000000003
+2023,2,5,20,30,-3.2,1.07,0.074,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.316,91.69,123.16,0.97,0.73,785,0.6000000000000001,324,2
+2023,2,5,21,0,-3.4000000000000004,1.09,0.058,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.319,87.15,128.76,0.96,0.73,785,0.6000000000000001,322,1.8
+2023,2,5,21,30,-3.6,1.09,0.058,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.321,88.46000000000001,134.22,0.96,0.73,785,0.5,323,1.6
+2023,2,5,22,0,-3.8000000000000003,1.09,0.048,0.62,0,0,0,0,6,-5.9,0,0,0,0,0.323,85.12,139.45000000000002,0.96,0.73,785,0.5,325,1.4000000000000001
+2023,2,5,22,30,-3.9000000000000004,1.09,0.048,0.62,0,0,0,0,6,-6,0,0,0,0,0.324,85.65,144.32,0.96,0.73,784,0.5,326,1.4000000000000001
+2023,2,5,23,0,-4.1000000000000005,1.09,0.045,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.325,83.58,148.64000000000001,0.9500000000000001,0.73,784,0.5,328,1.3
+2023,2,5,23,30,-4.2,1.09,0.045,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.327,84.21000000000001,152.12,0.9500000000000001,0.73,784,0.5,325,1.5
+2023,2,6,0,0,-4.2,1.1,0.044,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.329,81.46000000000001,154.4,0.9500000000000001,0.73,784,0.5,322,1.7000000000000002
+2023,2,6,0,30,-4.2,1.1,0.044,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.332,81.46000000000001,155.13,0.9500000000000001,0.73,784,0.4,322,2.1
+2023,2,6,1,0,-4.2,1.1,0.041,0.62,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.335,79.99,154.18,0.9500000000000001,0.73,785,0.4,322,2.4000000000000004
+2023,2,6,1,30,-4.2,1.1,0.041,0.62,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.338,79.99,151.73,0.9500000000000001,0.73,785,0.4,322,2.6
+2023,2,6,2,0,-4.3,1.11,0.035,0.62,0,0,0,0,6,-7.300000000000001,0,0,0,0,0.34,79.87,148.13,0.9400000000000001,0.73,785,0.4,321,2.7
+2023,2,6,2,30,-4.5,1.11,0.035,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.341,81.08,143.72,0.9400000000000001,0.73,785,0.4,320,2.8000000000000003
+2023,2,6,3,0,-4.6000000000000005,1.1300000000000001,0.029,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.342,79.55,138.79,0.9400000000000001,0.73,785,0.4,318,2.8000000000000003
+2023,2,6,3,30,-5,1.1300000000000001,0.029,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.343,81.99,133.52,0.93,0.73,785,0.4,316,2.6
+2023,2,6,4,0,-5.4,1.1500000000000001,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.343,81.06,128.03,0.93,0.73,785,0.4,313,2.3000000000000003
+2023,2,6,4,30,-5.9,1.1500000000000001,0.023,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.34400000000000003,84.2,122.41,0.92,0.73,785,0.4,310,2.2
+2023,2,6,5,0,-6.5,1.19,0.018000000000000002,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.34400000000000003,83.17,116.73,0.92,0.73,785,0.4,307,2
+2023,2,6,5,30,-7,1.19,0.018000000000000002,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.34500000000000003,86.54,111.03,0.92,0.73,786,0.4,304,1.9000000000000001
+2023,2,6,6,0,-7.5,1.24,0.015,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.34500000000000003,84.66,105.35000000000001,0.91,0.73,786,0.4,302,1.8
+2023,2,6,6,30,-7.5,1.24,0.015,0.62,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.34500000000000003,84.66,99.73,0.91,0.73,786,0.4,299,1.8
+2023,2,6,7,0,-7.6000000000000005,1.29,0.014,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.34500000000000003,83.25,94.21000000000001,0.91,0.73,786,0.4,296,1.9000000000000001
+2023,2,6,7,30,-6.300000000000001,1.29,0.014,0.62,15,251,21,4,7,-9.9,9,0,64,9,0.34600000000000003,75.33,88.55,0.9,0.73,786,0.4,296,2.5
+2023,2,6,8,0,-5.1000000000000005,1.32,0.014,0.62,27,630,98,5,8,-9,45,119,82,58,0.34600000000000003,73.9,83.53,0.9,0.73,787,0.4,296,3.2
+2023,2,6,8,30,-3.9000000000000004,1.32,0.014,0.62,36,782,191,0,7,-9,56,573,25,169,0.34700000000000003,67.52,78.60000000000001,0.9,0.73,787,0.4,304,4.1000000000000005
+2023,2,6,9,0,-2.7,1.35,0.014,0.62,43,870,284,0,7,-7.7,137,293,4,218,0.34800000000000003,68.41,73.94,0.9,0.73,787,0.4,311,5.1000000000000005
+2023,2,6,9,30,-2.2,1.35,0.014,0.62,49,927,372,0,7,-7.7,209,42,0,224,0.34900000000000003,65.93,69.64,0.9,0.73,787,0.4,316,5.4
+2023,2,6,10,0,-1.7000000000000002,1.36,0.015,0.62,53,966,450,0,7,-7.7,265,154,0,328,0.35000000000000003,63.59,65.76,0.9,0.73,787,0.4,320,5.7
+2023,2,6,10,30,-1.5,1.36,0.015,0.62,58,992,517,0,7,-7.7,191,589,0,464,0.35000000000000003,62.660000000000004,62.410000000000004,0.9,0.73,787,0.4,322,5.5
+2023,2,6,11,0,-1.4000000000000001,1.37,0.016,0.62,61,1010,571,0,7,-8.1,230,485,0,475,0.35000000000000003,60.26,59.68,0.9,0.73,787,0.4,324,5.4
+2023,2,6,11,30,-1.4000000000000001,1.37,0.016,0.62,64,1021,610,1,8,-8.1,319,92,18,368,0.34900000000000003,60.26,57.660000000000004,0.9,0.73,787,0.4,325,5.1000000000000005
+2023,2,6,12,0,-1.3,1.36,0.017,0.62,67,1026,634,0,4,-8.4,380,51,0,408,0.34800000000000003,58.52,56.43,0.91,0.73,787,0.4,325,4.800000000000001
+2023,2,6,12,30,-1.2000000000000002,1.36,0.017,0.62,67,1028,641,0,5,-8.4,382,124,0,451,0.34700000000000003,58.1,56.04,0.91,0.73,787,0.4,326,4.6000000000000005
+2023,2,6,13,0,-1,1.34,0.017,0.62,66,1023,630,0,8,-8.4,365,215,0,484,0.34600000000000003,57.01,56.52,0.91,0.73,787,0.4,326,4.4
+2023,2,6,13,30,-0.9,1.34,0.017,0.62,65,1013,604,0,8,-8.4,184,691,21,552,0.34500000000000003,56.660000000000004,57.83,0.91,0.73,788,0.5,328,4.2
+2023,2,6,14,0,-0.8,1.33,0.016,0.62,62,997,562,0,0,-8.200000000000001,85,935,18,553,0.34400000000000003,57.230000000000004,59.93,0.91,0.73,788,0.5,330,4
+2023,2,6,14,30,-0.9,1.33,0.016,0.62,59,977,507,0,0,-8.200000000000001,110,750,14,454,0.34400000000000003,57.65,62.730000000000004,0.92,0.73,788,0.5,333,3.8000000000000003
+2023,2,6,15,0,-0.9,1.33,0.017,0.62,56,947,439,0,5,-7.7,228,262,7,334,0.34400000000000003,60.15,66.14,0.92,0.73,788,0.5,336,3.5
+2023,2,6,15,30,-1.3,1.33,0.017,0.62,51,906,360,0,0,-7.6000000000000005,102,697,7,340,0.34400000000000003,62.01,70.06,0.92,0.73,789,0.5,339,2.8000000000000003
+2023,2,6,16,0,-1.7000000000000002,1.35,0.018000000000000002,0.62,45,844,272,0,0,-6.800000000000001,75,640,21,247,0.34500000000000003,68,74.41,0.92,0.73,789,0.5,341,2.2
+2023,2,6,16,30,-2.5,1.35,0.018000000000000002,0.62,37,749,179,0,0,-6.800000000000001,54,581,0,164,0.34500000000000003,72.23,79.10000000000001,0.92,0.73,790,0.5,343,1.6
+2023,2,6,17,0,-3.3000000000000003,1.37,0.016,0.62,27,587,88,4,5,-7.300000000000001,29,256,61,56,0.34500000000000003,73.83,84.04,0.92,0.8,790,0.5,345,1
+2023,2,6,17,30,-3.6,1.37,0.016,0.62,12,176,15,5,7,-7.300000000000001,6,0,71,6,0.34500000000000003,75.5,89.04,0.91,0.8,790,0.5,345,1
+2023,2,6,18,0,-4,1.32,0.016,0.62,0,0,0,0,5,-7.9,0,0,0,0,0.34400000000000003,74.51,94.77,0.91,0.8,791,0.5,344,1
+2023,2,6,18,30,-4.4,1.32,0.016,0.62,0,0,0,0,5,-7.9,0,0,0,0,0.34400000000000003,76.78,100.29,0.91,0.8,791,0.5,341,1
+2023,2,6,19,0,-4.800000000000001,1.24,0.015,0.62,0,0,0,0,5,-8.200000000000001,0,0,0,0,0.343,77.34,105.91,0.91,0.8,791,0.5,339,1
+2023,2,6,19,30,-5.300000000000001,1.24,0.015,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.343,80.42,111.59,0.91,0.8,792,0.5,337,1
+2023,2,6,20,0,-5.7,1.18,0.015,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.34400000000000003,81.62,117.28,0.91,0.8,792,0.5,335,1.1
+2023,2,6,20,30,-6.2,1.18,0.015,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.34400000000000003,84.79,122.95,0.91,0.8,792,0.5,337,1.2000000000000002
+2023,2,6,21,0,-6.7,1.16,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.34400000000000003,87.22,128.55,0.91,0.8,792,0.4,339,1.2000000000000002
+2023,2,6,21,30,-7.1000000000000005,1.16,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.34400000000000003,89.94,134,0.91,0.8,792,0.4,341,1.3
+2023,2,6,22,0,-7.5,1.1500000000000001,0.015,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.34400000000000003,93.03,139.22,0.9,0.8,792,0.4,344,1.4000000000000001
+2023,2,6,22,30,-7.9,1.1500000000000001,0.015,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.342,96.08,144.08,0.9,0.8,793,0.4,347,1.4000000000000001
+2023,2,6,23,0,-8.3,1.1400000000000001,0.015,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.341,98.11,148.37,0.9,0.8,793,0.4,350,1.4000000000000001
+2023,2,6,23,30,-8.700000000000001,1.1400000000000001,0.015,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.339,100,151.83,0.9,0.8,793,0.4,354,1.4000000000000001
+2023,2,7,0,0,-9.1,1.12,0.016,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.337,100,154.09,0.91,0.8,793,0.4,358,1.4000000000000001
+2023,2,7,0,30,-9.3,1.12,0.016,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.335,100,154.82,0.91,0.8,793,0.4,182,1.4000000000000001
+2023,2,7,1,0,-9.5,1.09,0.016,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.333,100,153.89000000000001,0.91,0.8,793,0.4,5,1.4000000000000001
+2023,2,7,1,30,-9.700000000000001,1.09,0.016,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.331,100,151.46,0.91,0.8,793,0.4,4,1.5
+2023,2,7,2,0,-9.9,1.08,0.017,0.62,0,0,0,0,0,-10,0,0,0,0,0.329,99.25,147.88,0.91,0.8,793,0.4,2,1.6
+2023,2,7,2,30,-10.100000000000001,1.08,0.017,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.328,100,143.5,0.91,0.8,794,0.30000000000000004,181,1.6
+2023,2,7,3,0,-10.4,1.06,0.017,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.328,100,138.58,0.91,0.8,794,0.30000000000000004,359,1.5
+2023,2,7,3,30,-10.600000000000001,1.06,0.017,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.327,100,133.32,0.91,0.8,794,0.30000000000000004,359,1.5
+2023,2,7,4,0,-10.8,1.05,0.017,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.326,100,127.84,0.91,0.8,794,0.30000000000000004,359,1.5
+2023,2,7,4,30,-10.9,1.05,0.017,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.326,100,122.23,0.91,0.8,794,0.30000000000000004,359,1.5
+2023,2,7,5,0,-11.100000000000001,1.05,0.017,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.325,100,116.55,0.91,0.8,794,0.30000000000000004,360,1.4000000000000001
+2023,2,7,5,30,-11.200000000000001,1.05,0.017,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.324,100,110.85000000000001,0.91,0.8,794,0.30000000000000004,182,1.3
+2023,2,7,6,0,-11.3,1.06,0.017,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.323,100,105.17,0.91,0.8,795,0.30000000000000004,4,1.2000000000000002
+2023,2,7,6,30,-11.100000000000001,1.06,0.017,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.322,100,99.54,0.91,0.8,795,0.30000000000000004,8,1.1
+2023,2,7,7,0,-10.9,1.08,0.017,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.321,98.66,94.02,0.91,0.8,795,0.30000000000000004,13,1
+2023,2,7,7,30,-9.8,1.08,0.017,0.62,16,247,23,0,0,-11.100000000000001,16,247,0,23,0.321,90.54,88.35000000000001,0.91,0.8,796,0.4,27,1
+2023,2,7,8,0,-8.700000000000001,1.1,0.017,0.62,29,623,102,0,0,-10.200000000000001,29,623,0,102,0.32,88.58,83.31,0.92,0.8,796,0.4,40,0.9
+2023,2,7,8,30,-7.2,1.1,0.017,0.62,40,775,196,0,0,-10.200000000000001,76,456,0,168,0.32,78.85000000000001,78.38,0.92,0.8,796,0.4,29,0.9
+2023,2,7,9,0,-5.800000000000001,1.1300000000000001,0.018000000000000002,0.62,48,864,290,0,0,-8.8,79,711,0,278,0.32,79.09,73.71000000000001,0.92,0.8,796,0.4,18,0.9
+2023,2,7,9,30,-4.3,1.1300000000000001,0.018000000000000002,0.62,55,919,378,0,0,-8.8,67,854,0,368,0.319,70.60000000000001,69.39,0.92,0.8,796,0.4,183,1.1
+2023,2,7,10,0,-2.8000000000000003,1.1500000000000001,0.019,0.62,60,955,456,0,0,-7.7,60,955,0,456,0.319,68.84,65.5,0.92,0.8,796,0.5,348,1.4000000000000001
+2023,2,7,10,30,-1.7000000000000002,1.1500000000000001,0.019,0.62,65,975,521,0,0,-7.7,65,975,0,521,0.318,63.47,62.14,0.92,0.8,796,0.5,342,1.4000000000000001
+2023,2,7,11,0,-0.6000000000000001,1.1400000000000001,0.023,0.62,71,990,575,0,0,-7,71,990,0,575,0.317,61.79,59.39,0.93,0.8,796,0.5,337,1.5
+2023,2,7,11,30,0.1,1.1400000000000001,0.023,0.62,74,1002,614,0,0,-7,74,1002,0,614,0.316,58.730000000000004,57.36,0.93,0.8,796,0.5,329,1.3
+2023,2,7,12,0,0.7000000000000001,1.1400000000000001,0.025,0.62,76,1008,638,0,0,-6.300000000000001,76,1008,0,638,0.315,59.4,56.120000000000005,0.93,0.8,795,0.5,322,1.2000000000000002
+2023,2,7,12,30,1.1,1.1400000000000001,0.025,0.62,76,1010,645,0,0,-6.300000000000001,76,1010,0,645,0.314,57.72,55.730000000000004,0.93,0.8,795,0.5,312,1.1
+2023,2,7,13,0,1.5,1.1500000000000001,0.025,0.62,75,1008,636,0,0,-6.1000000000000005,75,1008,0,636,0.313,57.11,56.2,0.93,0.8,795,0.5,303,1.1
+2023,2,7,13,30,1.7000000000000002,1.1500000000000001,0.025,0.62,76,997,611,0,0,-6.1000000000000005,76,997,0,611,0.312,56.300000000000004,57.53,0.9400000000000001,0.8,795,0.5,299,1
+2023,2,7,14,0,1.8,1.1300000000000001,0.029,0.62,74,979,569,0,0,-6,74,979,0,569,0.311,56.1,59.63,0.9400000000000001,0.8,794,0.5,296,0.8
+2023,2,7,14,30,1.8,1.1300000000000001,0.029,0.62,70,958,513,0,0,-6,70,958,0,513,0.309,56.1,62.440000000000005,0.9400000000000001,0.8,794,0.6000000000000001,285,0.6000000000000001
+2023,2,7,15,0,1.8,1.1500000000000001,0.028,0.62,65,929,445,0,0,-5.9,65,929,0,445,0.308,56.45,65.87,0.9400000000000001,0.8,794,0.6000000000000001,275,0.4
+2023,2,7,15,30,1.1,1.1500000000000001,0.028,0.62,59,886,365,0,0,-5.9,59,886,0,365,0.305,59.35,69.8,0.9400000000000001,0.8,794,0.6000000000000001,229,0.5
+2023,2,7,16,0,0.5,1.16,0.027,0.62,52,822,276,0,0,-4.5,52,822,0,276,0.303,69.04,74.16,0.9400000000000001,0.8,794,0.6000000000000001,184,0.5
+2023,2,7,16,30,-1,1.16,0.027,0.62,43,722,182,0,0,-4.5,43,722,0,182,0.301,76.98,78.86,0.9400000000000001,0.8,794,0.6000000000000001,184,0.7000000000000001
+2023,2,7,17,0,-2.4000000000000004,1.18,0.027,0.62,30,553,90,0,0,-6.4,30,553,0,90,0.299,73.79,83.81,0.9400000000000001,0.75,794,0.6000000000000001,184,0.9
+2023,2,7,17,30,-3,1.18,0.027,0.62,14,195,18,0,0,-6.4,14,195,0,18,0.297,77.24,88.84,0.93,0.75,795,0.6000000000000001,188,0.9
+2023,2,7,18,0,-3.6,1.18,0.027,0.62,0,0,0,0,0,-7,0,0,0,0,0.295,77.52,94.55,0.93,0.75,795,0.6000000000000001,192,0.9
+2023,2,7,18,30,-3.9000000000000004,1.18,0.027,0.62,0,0,0,0,0,-7,0,0,0,0,0.293,79.28,100.09,0.93,0.75,795,0.6000000000000001,196,0.9
+2023,2,7,19,0,-4.2,1.19,0.026000000000000002,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.292,79.99,105.71000000000001,0.93,0.75,795,0.6000000000000001,201,0.8
+2023,2,7,19,30,-4.5,1.19,0.026000000000000002,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.291,81.81,111.39,0.93,0.75,795,0.6000000000000001,202,0.8
+2023,2,7,20,0,-4.7,1.2,0.025,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.291,82.26,117.08,0.93,0.75,795,0.6000000000000001,204,0.8
+2023,2,7,20,30,-5,1.2,0.025,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.29,84.15,122.75,0.93,0.75,795,0.6000000000000001,207,0.8
+2023,2,7,21,0,-5.300000000000001,1.21,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.29,85.45,128.34,0.92,0.75,795,0.6000000000000001,211,0.8
+2023,2,7,21,30,-5.5,1.21,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.29,86.75,133.78,0.92,0.75,795,0.6000000000000001,210,0.8
+2023,2,7,22,0,-5.800000000000001,1.22,0.022,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.29,87.7,138.99,0.92,0.75,795,0.6000000000000001,210,0.9
+2023,2,7,22,30,-6,1.22,0.022,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.29,88.93,143.83,0.92,0.75,794,0.6000000000000001,210,0.9
+2023,2,7,23,0,-6.300000000000001,1.22,0.022,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.29,89.33,148.1,0.92,0.75,794,0.6000000000000001,210,0.9
+2023,2,7,23,30,-6.6000000000000005,1.22,0.022,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.29,91.41,151.54,0.92,0.75,794,0.6000000000000001,210,0.9
+2023,2,8,0,0,-6.9,1.24,0.022,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,91.97,153.78,0.92,0.75,794,0.6000000000000001,211,0.9
+2023,2,8,0,30,-7.1000000000000005,1.24,0.022,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,93.39,154.51,0.92,0.75,794,0.6000000000000001,212,0.9
+2023,2,8,1,0,-7.4,1.26,0.022,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.291,93.59,153.58,0.92,0.75,794,0.6000000000000001,212,0.8
+2023,2,8,1,30,-7.6000000000000005,1.26,0.022,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.291,95.05,151.18,0.92,0.75,794,0.6000000000000001,213,0.8
+2023,2,8,2,0,-7.800000000000001,1.3,0.025,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.291,94.15,147.62,0.92,0.75,793,0.6000000000000001,213,0.8
+2023,2,8,2,30,-8,1.3,0.025,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.292,95.62,143.26,0.93,0.75,793,0.6000000000000001,211,0.8
+2023,2,8,3,0,-8.200000000000001,1.33,0.03,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.292,94.67,138.37,0.93,0.75,793,0.6000000000000001,209,0.8
+2023,2,8,3,30,-8.4,1.33,0.03,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.293,96.15,133.12,0.93,0.75,793,0.6000000000000001,208,0.7000000000000001
+2023,2,8,4,0,-8.5,1.33,0.037,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.294,94.51,127.65,0.9400000000000001,0.75,793,0.7000000000000001,207,0.7000000000000001
+2023,2,8,4,30,-8.700000000000001,1.33,0.037,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.295,96,122.04,0.9400000000000001,0.75,793,0.6000000000000001,215,0.7000000000000001
+2023,2,8,5,0,-8.8,1.28,0.043000000000000003,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.296,94.63,116.36,0.9400000000000001,0.75,793,0.6000000000000001,222,0.7000000000000001
+2023,2,8,5,30,-8.700000000000001,1.28,0.043000000000000003,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.297,93.89,110.66,0.9400000000000001,0.75,793,0.6000000000000001,234,0.7000000000000001
+2023,2,8,6,0,-8.6,1.24,0.041,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.298,93.52,104.98,0.9400000000000001,0.75,793,0.5,246,0.6000000000000001
+2023,2,8,6,30,-8.4,1.24,0.041,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.3,92.07000000000001,99.35000000000001,0.9400000000000001,0.75,793,0.5,248,0.7000000000000001
+2023,2,8,7,0,-8.1,1.24,0.032,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.301,91.37,93.82000000000001,0.9400000000000001,0.75,793,0.5,250,0.7000000000000001
+2023,2,8,7,30,-7.1000000000000005,1.24,0.032,0.62,18,270,27,6,7,-9.3,9,0,86,9,0.303,84.58,88.16,0.93,0.75,793,0.4,246,1
+2023,2,8,8,0,-6.1000000000000005,1.25,0.024,0.62,32,614,106,5,7,-8.6,54,126,68,69,0.304,82.74,83.10000000000001,0.93,0.75,793,0.4,243,1.3
+2023,2,8,8,30,-4.5,1.25,0.024,0.62,42,772,200,0,0,-8.6,45,752,0,199,0.305,73.29,78.16,0.92,0.75,793,0.4,245,1.6
+2023,2,8,9,0,-2.9000000000000004,1.24,0.019,0.62,48,868,295,0,0,-7.5,53,845,0,293,0.306,70.56,73.47,0.91,0.75,793,0.4,247,1.9000000000000001
+2023,2,8,9,30,-1.4000000000000001,1.24,0.019,0.62,53,927,383,0,4,-7.5,151,554,11,348,0.307,63.160000000000004,69.14,0.91,0.75,793,0.4,251,2.4000000000000004
+2023,2,8,10,0,0.2,1.24,0.016,0.62,56,968,462,0,4,-6.800000000000001,263,290,0,385,0.309,59.370000000000005,65.23,0.91,0.75,793,0.4,255,2.9000000000000004
+2023,2,8,10,30,1.1,1.24,0.016,0.62,61,995,530,0,0,-6.800000000000001,163,713,7,499,0.31,55.57,61.86,0.91,0.75,792,0.4,254,3.3000000000000003
+2023,2,8,11,0,1.9000000000000001,1.23,0.015,0.62,62,1014,583,0,0,-6.7,62,1014,0,583,0.311,52.93,59.1,0.91,0.75,792,0.4,252,3.7
+2023,2,8,11,30,2.2,1.23,0.015,0.62,64,1026,622,0,0,-6.7,64,1026,0,622,0.311,51.81,57.050000000000004,0.91,0.75,792,0.4,250,4.1000000000000005
+2023,2,8,12,0,2.5,1.19,0.016,0.62,66,1032,646,0,0,-7.2,155,831,14,622,0.31,48.96,55.81,0.91,0.75,791,0.4,248,4.5
+2023,2,8,12,30,2.7,1.19,0.016,0.62,68,1033,654,0,4,-7.2,422,124,0,492,0.311,48.21,55.410000000000004,0.91,0.75,790,0.4,248,4.7
+2023,2,8,13,0,2.8000000000000003,1.1400000000000001,0.018000000000000002,0.62,69,1028,645,0,4,-7.5,365,20,0,376,0.312,46.82,55.89,0.92,0.75,790,0.4,249,5
+2023,2,8,13,30,2.7,1.1400000000000001,0.018000000000000002,0.62,67,1017,618,0,4,-7.5,365,43,0,388,0.313,47.1,57.22,0.92,0.75,789,0.4,253,5.300000000000001
+2023,2,8,14,0,2.6,1.1400000000000001,0.02,0.62,67,1000,577,0,4,-7.4,306,260,0,439,0.315,47.79,59.33,0.93,0.75,789,0.5,257,5.5
+2023,2,8,14,30,2.2,1.1400000000000001,0.02,0.62,64,976,520,0,4,-7.4,202,384,7,381,0.316,49.17,62.160000000000004,0.93,0.75,789,0.5,266,5.800000000000001
+2023,2,8,15,0,1.7000000000000002,1.1300000000000001,0.023,0.62,61,943,451,0,4,-7.1000000000000005,192,25,0,202,0.316,51.910000000000004,65.59,0.93,0.75,789,0.5,275,6
+2023,2,8,15,30,0.7000000000000001,1.1300000000000001,0.023,0.62,57,902,372,0,6,-7.1000000000000005,139,14,0,144,0.318,55.78,69.54,0.93,0.75,789,0.5,286,5.9
+2023,2,8,16,0,-0.30000000000000004,1.12,0.024,0.62,50,841,283,0,6,-7.300000000000001,123,30,0,131,0.319,59.29,73.91,0.93,0.75,789,0.5,298,5.800000000000001
+2023,2,8,16,30,-1.5,1.12,0.024,0.62,42,751,190,0,6,-7.300000000000001,75,4,0,76,0.321,64.72,78.62,0.92,0.75,789,0.4,308,5.9
+2023,2,8,17,0,-2.8000000000000003,1.1300000000000001,0.025,0.62,31,586,96,6,6,-8.5,32,0,86,32,0.324,64.85,83.59,0.92,0.8,790,0.4,317,6.1000000000000005
+2023,2,8,17,30,-3.7,1.1300000000000001,0.025,0.62,15,217,20,5,6,-8.5,9,0,71,9,0.326,69.44,88.64,0.92,0.8,791,0.4,322,6.5
+2023,2,8,18,0,-4.7,1.17,0.021,0.62,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.329,63.22,94.34,0.92,0.8,791,0.30000000000000004,327,6.9
+2023,2,8,18,30,-5.6000000000000005,1.17,0.021,0.62,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.33,67.76,99.88,0.92,0.8,792,0.30000000000000004,329,6.6000000000000005
+2023,2,8,19,0,-6.4,1.18,0.017,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.331,62.03,105.5,0.91,0.8,792,0.2,331,6.2
+2023,2,8,19,30,-7,1.18,0.017,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.332,64.95,111.18,0.91,0.8,792,0.2,330,5.800000000000001
+2023,2,8,20,0,-7.6000000000000005,1.18,0.016,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.333,64.29,116.88,0.92,0.8,792,0.2,330,5.300000000000001
+2023,2,8,20,30,-7.9,1.18,0.016,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.333,65.8,122.54,0.92,0.8,792,0.2,329,5.2
+2023,2,8,21,0,-8.200000000000001,1.1500000000000001,0.02,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.334,67.16,128.12,0.93,0.8,793,0.30000000000000004,328,5.2
+2023,2,8,21,30,-8.200000000000001,1.1500000000000001,0.02,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.334,67.16,133.56,0.9400000000000001,0.8,793,0.30000000000000004,329,5.4
+2023,2,8,22,0,-8.3,1.09,0.026000000000000002,0.62,0,0,0,0,9,-13,0,0,0,0,0.334,68.76,138.75,0.9500000000000001,0.8,793,0.30000000000000004,331,5.6000000000000005
+2023,2,8,22,30,-8.200000000000001,1.09,0.026000000000000002,0.62,0,0,0,0,6,-13,0,0,0,0,0.334,68.23,143.58,0.9500000000000001,0.8,793,0.30000000000000004,332,5.800000000000001
+2023,2,8,23,0,-8.200000000000001,1.05,0.03,0.62,0,0,0,0,6,-12.700000000000001,0,0,0,0,0.334,69.95,147.83,0.9500000000000001,0.8,793,0.30000000000000004,333,6
+2023,2,8,23,30,-8.200000000000001,1.05,0.03,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.334,69.95,151.24,0.9500000000000001,0.8,793,0.4,335,6.1000000000000005
+2023,2,9,0,0,-8.3,1.05,0.031,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.8,153.47,0.9500000000000001,0.8,794,0.4,337,6.300000000000001
+2023,2,9,0,30,-8.3,1.05,0.031,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.8,154.19,0.9500000000000001,0.8,794,0.4,342,6.300000000000001
+2023,2,9,1,0,-8.3,1.1500000000000001,0.027,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.334,71.74,153.28,0.9500000000000001,0.8,794,0.30000000000000004,347,6.300000000000001
+2023,2,9,1,30,-8.6,1.1500000000000001,0.027,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.334,73.52,150.89000000000001,0.9400000000000001,0.8,795,0.30000000000000004,351,6
+2023,2,9,2,0,-8.9,1.24,0.02,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.334,73.8,147.36,0.93,0.8,795,0.30000000000000004,355,5.6000000000000005
+2023,2,9,2,30,-9.3,1.24,0.02,0.62,0,0,0,0,5,-12.700000000000001,0,0,0,0,0.335,76.15,143.02,0.92,0.8,795,0.30000000000000004,356,5.1000000000000005
+2023,2,9,3,0,-9.600000000000001,1.24,0.018000000000000002,0.62,0,0,0,0,5,-12.9,0,0,0,0,0.335,76.97,138.15,0.92,0.8,795,0.30000000000000004,358,4.6000000000000005
+2023,2,9,3,30,-10,1.24,0.018000000000000002,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,79.54,132.91,0.92,0.8,796,0.30000000000000004,358,4
+2023,2,9,4,0,-10.4,1.23,0.019,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,81.85000000000001,127.45,0.92,0.8,796,0.30000000000000004,358,3.4000000000000004
+2023,2,9,4,30,-10.9,1.23,0.019,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.335,85.16,121.85000000000001,0.92,0.8,796,0.30000000000000004,355,2.9000000000000004
+2023,2,9,5,0,-11.3,1.23,0.022,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.335,86.74,116.17,0.93,0.8,797,0.30000000000000004,351,2.3000000000000003
+2023,2,9,5,30,-11.600000000000001,1.23,0.022,0.62,0,0,0,0,5,-13.100000000000001,0,0,0,0,0.335,88.84,110.47,0.93,0.8,797,0.30000000000000004,349,2.2
+2023,2,9,6,0,-11.8,1.22,0.023,0.62,0,0,0,0,4,-13.3,0,0,0,0,0.335,88.42,104.78,0.93,0.8,798,0.30000000000000004,346,2
+2023,2,9,6,30,-11.600000000000001,1.22,0.023,0.62,0,0,0,0,5,-13.3,0,0,0,0,0.334,87.01,99.15,0.93,0.8,798,0.30000000000000004,347,2.1
+2023,2,9,7,0,-11.3,1.2,0.023,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.334,85.05,93.62,0.93,0.8,798,0.30000000000000004,347,2.2
+2023,2,9,7,30,-10.100000000000001,1.2,0.023,0.62,18,302,29,6,7,-13.3,15,39,79,16,0.333,77.41,87.96000000000001,0.93,0.8,799,0.30000000000000004,353,2.8000000000000003
+2023,2,9,8,0,-8.9,1.19,0.021,0.62,33,641,112,0,0,-12.5,34,603,7,109,0.333,75.2,82.88,0.92,0.8,799,0.30000000000000004,359,3.4000000000000004
+2023,2,9,8,30,-7.800000000000001,1.19,0.021,0.62,42,791,208,0,0,-12.5,42,791,0,208,0.333,69.03,77.92,0.92,0.8,799,0.30000000000000004,192,3.8000000000000003
+2023,2,9,9,0,-6.7,1.19,0.019,0.62,50,881,304,0,0,-11.9,50,881,0,304,0.333,66.47,73.23,0.92,0.8,799,0.30000000000000004,25,4.2
+2023,2,9,9,30,-6.2,1.19,0.019,0.62,55,937,393,0,0,-11.9,55,937,0,393,0.333,63.980000000000004,68.88,0.92,0.8,799,0.30000000000000004,31,4
+2023,2,9,10,0,-5.7,1.2,0.018000000000000002,0.62,60,976,473,0,0,-12.9,60,976,0,473,0.333,57.07,64.96000000000001,0.92,0.8,799,0.30000000000000004,38,3.8000000000000003
+2023,2,9,10,30,-5.300000000000001,1.2,0.018000000000000002,0.62,64,1002,541,0,0,-12.9,64,1002,0,541,0.333,55.370000000000005,61.57,0.92,0.8,799,0.30000000000000004,37,3.3000000000000003
+2023,2,9,11,0,-4.800000000000001,1.19,0.019,0.62,68,1019,596,0,0,-13.200000000000001,68,1019,0,596,0.333,51.79,58.800000000000004,0.92,0.8,799,0.30000000000000004,37,2.8000000000000003
+2023,2,9,11,30,-4.5,1.19,0.019,0.62,71,1031,636,0,0,-13.200000000000001,71,1031,0,636,0.332,50.63,56.74,0.92,0.8,799,0.30000000000000004,29,2.2
+2023,2,9,12,0,-4.1000000000000005,1.18,0.019,0.62,72,1038,660,0,0,-13.4,72,1038,0,660,0.332,48.480000000000004,55.49,0.92,0.8,799,0.30000000000000004,21,1.7000000000000002
+2023,2,9,12,30,-3.8000000000000003,1.18,0.019,0.62,71,1041,667,0,0,-13.4,71,1041,0,667,0.332,47.4,55.09,0.92,0.8,799,0.30000000000000004,182,1.4000000000000001
+2023,2,9,13,0,-3.5,1.17,0.018000000000000002,0.62,71,1039,658,0,0,-13.600000000000001,71,1039,0,658,0.332,45.39,55.57,0.92,0.8,799,0.30000000000000004,343,1.2000000000000002
+2023,2,9,13,30,-3.2,1.17,0.018000000000000002,0.62,68,1033,632,0,0,-13.600000000000001,68,1033,0,632,0.332,44.33,56.9,0.92,0.8,798,0.30000000000000004,339,1.2000000000000002
+2023,2,9,14,0,-3,1.16,0.016,0.62,65,1022,591,0,0,-13.9,65,1022,0,591,0.332,42.63,59.03,0.92,0.8,798,0.30000000000000004,335,1.2000000000000002
+2023,2,9,14,30,-3,1.16,0.016,0.62,61,1004,535,0,0,-13.9,61,1004,0,535,0.331,42.63,61.86,0.91,0.8,798,0.30000000000000004,346,1.3
+2023,2,9,15,0,-3,1.17,0.015,0.62,56,978,465,0,0,-14.200000000000001,56,978,0,465,0.33,41.65,65.31,0.91,0.8,798,0.30000000000000004,358,1.4000000000000001
+2023,2,9,15,30,-3.4000000000000004,1.17,0.015,0.62,51,940,384,0,0,-14.200000000000001,51,940,0,384,0.329,42.910000000000004,69.27,0.91,0.8,798,0.30000000000000004,191,1.3
+2023,2,9,16,0,-3.7,1.18,0.015,0.62,46,883,294,0,0,-14.4,46,883,0,294,0.328,43.18,73.66,0.91,0.8,798,0.30000000000000004,23,1.2000000000000002
+2023,2,9,16,30,-4.800000000000001,1.18,0.015,0.62,38,798,199,0,0,-14.4,38,798,0,199,0.327,46.9,78.38,0.91,0.8,798,0.30000000000000004,51,0.9
+2023,2,9,17,0,-5.800000000000001,1.21,0.015,0.62,29,648,104,1,0,-12.200000000000001,35,546,18,98,0.327,60.71,83.36,0.91,0.8,798,0.30000000000000004,78,0.7000000000000001
+2023,2,9,17,30,-6.5,1.21,0.015,0.62,16,262,23,2,7,-12.200000000000001,15,147,32,19,0.327,64.04,88.43,0.91,0.8,798,0.30000000000000004,94,0.8
+2023,2,9,18,0,-7.2,1.23,0.015,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.328,63,94.12,0.91,0.8,798,0.30000000000000004,110,0.9
+2023,2,9,18,30,-7.800000000000001,1.23,0.015,0.62,0,0,0,0,0,-13,0,0,0,0,0.328,65.99,99.67,0.91,0.8,798,0.30000000000000004,119,1
+2023,2,9,19,0,-8.4,1.24,0.015,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.328,65.37,105.3,0.91,0.8,799,0.30000000000000004,127,1.1
+2023,2,9,19,30,-8.9,1.24,0.015,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.327,67.97,110.98,0.91,0.8,799,0.30000000000000004,137,1.1
+2023,2,9,20,0,-9.5,1.26,0.014,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.327,69.41,116.67,0.91,0.8,799,0.30000000000000004,147,1.2000000000000002
+2023,2,9,20,30,-10,1.26,0.014,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.327,72.2,122.33,0.91,0.8,799,0.30000000000000004,158,1.2000000000000002
+2023,2,9,21,0,-10.600000000000001,1.27,0.013000000000000001,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.326,75.03,127.91,0.9,0.8,799,0.30000000000000004,168,1.2000000000000002
+2023,2,9,21,30,-11,1.27,0.013000000000000001,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.326,77.46000000000001,133.34,0.9,0.8,799,0.30000000000000004,174,1.3
+2023,2,9,22,0,-11.5,1.27,0.012,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.326,80.05,138.52,0.9,0.8,799,0.30000000000000004,181,1.3
+2023,2,9,22,30,-11.9,1.27,0.012,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.326,82.66,143.32,0.9,0.8,799,0.30000000000000004,183,1.4000000000000001
+2023,2,9,23,0,-12.3,1.27,0.013000000000000001,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.326,84.61,147.56,0.9,0.8,799,0.30000000000000004,186,1.4000000000000001
+2023,2,9,23,30,-12.600000000000001,1.27,0.013000000000000001,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.325,86.68,150.95000000000002,0.9,0.8,799,0.30000000000000004,184,1.4000000000000001
+2023,2,10,0,0,-12.9,1.26,0.013000000000000001,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.325,87.84,153.15,0.9,0.8,799,0.30000000000000004,182,1.4000000000000001
+2023,2,10,0,30,-13.200000000000001,1.26,0.013000000000000001,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.325,90.01,153.87,0.9,0.8,799,0.30000000000000004,179,1.4000000000000001
+2023,2,10,1,0,-13.5,1.26,0.014,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.324,90.31,152.96,0.9,0.8,799,0.30000000000000004,176,1.5
+2023,2,10,1,30,-13.700000000000001,1.26,0.014,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.323,91.8,150.6,0.9,0.8,799,0.30000000000000004,173,1.5
+2023,2,10,2,0,-13.9,1.26,0.015,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.322,90.3,147.09,0.9,0.8,798,0.30000000000000004,170,1.5
+2023,2,10,2,30,-14,1.26,0.015,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.321,91.05,142.78,0.9,0.8,798,0.30000000000000004,169,1.5
+2023,2,10,3,0,-14.100000000000001,1.26,0.015,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.32,87.67,137.92000000000002,0.9,0.8,798,0.30000000000000004,168,1.5
+2023,2,10,3,30,-14.200000000000001,1.26,0.015,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.319,88.39,132.7,0.9,0.8,798,0.30000000000000004,169,1.5
+2023,2,10,4,0,-14.3,1.25,0.016,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.317,85.05,127.24000000000001,0.9,0.8,798,0.30000000000000004,170,1.5
+2023,2,10,4,30,-14.3,1.25,0.016,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.316,85.05,121.65,0.9,0.8,798,0.30000000000000004,172,1.5
+2023,2,10,5,0,-14.4,1.24,0.016,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.314,82.5,115.97,0.91,0.8,798,0.30000000000000004,175,1.4000000000000001
+2023,2,10,5,30,-14.4,1.24,0.016,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.312,82.5,110.27,0.91,0.8,798,0.30000000000000004,177,1.4000000000000001
+2023,2,10,6,0,-14.4,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.311,80.03,104.59,0.91,0.8,798,0.30000000000000004,180,1.3
+2023,2,10,6,30,-14.100000000000001,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.309,78.08,98.95,0.91,0.8,798,0.4,183,1.4000000000000001
+2023,2,10,7,0,-13.700000000000001,1.23,0.017,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.306,75.52,93.41,0.91,0.8,798,0.4,186,1.4000000000000001
+2023,2,10,7,30,-12.4,1.23,0.017,0.62,19,319,31,0,0,-17.1,19,319,0,31,0.305,68.05,87.76,0.91,0.8,799,0.4,190,1.7000000000000002
+2023,2,10,8,0,-11.100000000000001,1.24,0.017,0.62,32,651,115,0,0,-16.400000000000002,33,634,0,114,0.303,65.19,82.66,0.91,0.8,799,0.4,194,2
+2023,2,10,8,30,-9.3,1.24,0.017,0.62,41,794,210,0,0,-16.400000000000002,41,794,0,210,0.302,56.54,77.69,0.91,0.8,799,0.4,201,2.3000000000000003
+2023,2,10,9,0,-7.6000000000000005,1.25,0.017,0.62,48,878,305,0,0,-14.5,48,878,0,305,0.3,57.79,72.98,0.91,0.8,799,0.4,207,2.6
+2023,2,10,9,30,-6,1.25,0.017,0.62,54,933,394,0,0,-14.5,54,933,0,394,0.299,51.11,68.62,0.91,0.8,799,0.4,213,3
+2023,2,10,10,0,-4.4,1.26,0.017,0.62,59,970,474,0,0,-13.3,59,970,0,474,0.299,49.75,64.68,0.9,0.8,799,0.4,219,3.4000000000000004
+2023,2,10,10,30,-3.4000000000000004,1.26,0.017,0.62,63,996,542,0,0,-13.4,63,996,0,542,0.298,46.1,61.28,0.9,0.8,798,0.4,219,3.5
+2023,2,10,11,0,-2.4000000000000004,1.27,0.017,0.62,66,1014,596,0,0,-12.4,66,1014,0,596,0.297,46.38,58.49,0.9,0.8,798,0.4,219,3.6
+2023,2,10,11,30,-1.6,1.27,0.017,0.62,68,1026,635,0,0,-12.4,68,1026,0,635,0.297,43.730000000000004,56.43,0.9,0.8,798,0.4,217,3.6
+2023,2,10,12,0,-0.8,1.27,0.017,0.62,69,1033,659,0,0,-11.5,69,1033,0,659,0.296,44.21,55.17,0.9,0.8,797,0.4,216,3.7
+2023,2,10,12,30,-0.30000000000000004,1.27,0.017,0.62,68,1036,666,0,0,-11.5,68,1036,0,666,0.295,42.63,54.77,0.9,0.8,797,0.4,215,3.7
+2023,2,10,13,0,0.2,1.27,0.016,0.62,68,1034,657,0,0,-10.8,68,1034,0,657,0.295,43.44,55.25,0.9,0.8,797,0.4,214,3.8000000000000003
+2023,2,10,13,30,0.4,1.27,0.016,0.62,67,1027,632,0,0,-10.8,67,1027,0,632,0.295,42.82,56.59,0.9,0.8,797,0.4,213,3.8000000000000003
+2023,2,10,14,0,0.6000000000000001,1.28,0.015,0.62,64,1015,591,0,0,-10.4,64,1015,0,591,0.295,43.67,58.72,0.89,0.8,796,0.4,213,3.8000000000000003
+2023,2,10,14,30,0.5,1.28,0.015,0.62,60,998,535,0,0,-10.4,60,998,0,535,0.295,43.980000000000004,61.57,0.89,0.8,796,0.4,212,3.7
+2023,2,10,15,0,0.4,1.28,0.015,0.62,56,972,466,0,0,-10,56,972,0,466,0.296,45.42,65.03,0.89,0.8,796,0.4,211,3.7
+2023,2,10,15,30,-0.2,1.28,0.015,0.62,51,934,386,0,0,-10,51,934,0,386,0.297,47.44,69.01,0.89,0.8,796,0.4,208,3.2
+2023,2,10,16,0,-0.9,1.28,0.014,0.62,45,878,296,0,0,-9.200000000000001,45,878,0,296,0.297,53.21,73.4,0.89,0.8,796,0.4,205,2.7
+2023,2,10,16,30,-2.6,1.28,0.014,0.62,37,791,200,0,0,-9.200000000000001,37,791,0,200,0.298,60.300000000000004,78.14,0.89,0.8,796,0.4,199,2.1
+2023,2,10,17,0,-4.3,1.28,0.014,0.62,29,645,106,0,0,-9.1,29,645,0,106,0.298,69.18,83.13,0.89,0.79,796,0.4,193,1.5
+2023,2,10,17,30,-5,1.28,0.014,0.62,16,264,24,1,0,-9.1,17,202,14,23,0.297,72.93,88.22,0.9,0.79,796,0.4,191,1.6
+2023,2,10,18,0,-5.7,1.26,0.014,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.297,73.04,93.91,0.9,0.79,796,0.4,189,1.7000000000000002
+2023,2,10,18,30,-6.1000000000000005,1.26,0.014,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.295,75.3,99.46000000000001,0.9,0.79,796,0.4,188,1.8
+2023,2,10,19,0,-6.6000000000000005,1.23,0.015,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.294,76.03,105.09,0.9,0.79,796,0.30000000000000004,188,1.9000000000000001
+2023,2,10,19,30,-7,1.23,0.015,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.293,78.4,110.78,0.9,0.79,796,0.30000000000000004,186,1.9000000000000001
+2023,2,10,20,0,-7.5,1.22,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,80.4,116.47,0.9,0.79,796,0.30000000000000004,185,2
+2023,2,10,20,30,-7.800000000000001,1.22,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,82.29,122.13,0.9,0.79,796,0.30000000000000004,183,2
+2023,2,10,21,0,-8.1,1.21,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,83.94,127.7,0.9,0.79,796,0.30000000000000004,181,2
+2023,2,10,21,30,-8.4,1.21,0.015,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.291,85.82000000000001,133.11,0.9,0.79,795,0.30000000000000004,180,2
+2023,2,10,22,0,-8.700000000000001,1.2,0.015,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.291,87.3,138.28,0.9,0.79,795,0.30000000000000004,178,2
+2023,2,10,22,30,-9,1.2,0.015,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.291,89.37,143.07,0.9,0.79,795,0.30000000000000004,179,2
+2023,2,10,23,0,-9.200000000000001,1.2,0.016,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.29,89.53,147.28,0.9,0.79,795,0.30000000000000004,179,2
+2023,2,10,23,30,-9.4,1.2,0.016,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.289,90.95,150.64000000000001,0.9,0.79,795,0.30000000000000004,181,2
+2023,2,11,0,0,-9.600000000000001,1.19,0.016,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.28800000000000003,90.29,152.83,0.9,0.79,794,0.30000000000000004,183,1.9000000000000001
+2023,2,11,0,30,-9.8,1.19,0.016,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.28800000000000003,91.72,153.54,0.9,0.79,794,0.30000000000000004,186,1.9000000000000001
+2023,2,11,1,0,-9.9,1.18,0.016,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.28700000000000003,90.02,152.65,0.9,0.79,794,0.30000000000000004,188,1.8
+2023,2,11,1,30,-10.100000000000001,1.18,0.016,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.28800000000000003,91.45,150.3,0.9,0.79,794,0.30000000000000004,192,1.7000000000000002
+2023,2,11,2,0,-10.200000000000001,1.17,0.016,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.289,89.5,146.82,0.9,0.79,794,0.30000000000000004,196,1.7000000000000002
+2023,2,11,2,30,-10.3,1.17,0.016,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.29,90.10000000000001,142.53,0.9,0.79,793,0.30000000000000004,200,1.6
+2023,2,11,3,0,-10.4,1.1500000000000001,0.017,0.62,0,0,0,0,7,-12,0,0,0,0,0.291,88.01,137.68,0.9,0.79,793,0.2,204,1.5
+2023,2,11,3,30,-10.4,1.1500000000000001,0.017,0.62,0,0,0,0,7,-12,0,0,0,0,0.293,88.01,132.48,0.9,0.79,793,0.2,207,1.5
+2023,2,11,4,0,-10.4,1.16,0.017,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.295,85.3,127.03,0.91,0.79,793,0.2,209,1.4000000000000001
+2023,2,11,4,30,-10.3,1.16,0.017,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.295,84.63,121.44,0.91,0.79,793,0.2,211,1.3
+2023,2,11,5,0,-10.3,1.16,0.017,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.296,81.68,115.77,0.91,0.79,793,0.2,213,1.2000000000000002
+2023,2,11,5,30,-10.200000000000001,1.16,0.017,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.296,81.04,110.07000000000001,0.9,0.79,793,0.2,216,1.2000000000000002
+2023,2,11,6,0,-10.100000000000001,1.16,0.016,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.295,77.34,104.38,0.9,0.79,793,0.2,218,1.1
+2023,2,11,6,30,-9.8,1.16,0.016,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.295,75.53,98.74000000000001,0.9,0.79,793,0.2,220,1
+2023,2,11,7,0,-9.4,1.16,0.017,0.62,0,0,0,0,7,-13.4,0,0,7,0,0.294,72.86,93.2,0.9,0.79,793,0.2,222,1
+2023,2,11,7,30,-7.9,1.16,0.017,0.62,20,346,35,6,7,-13.4,19,1,93,19,0.293,64.82000000000001,87.55,0.91,0.79,793,0.2,221,1
+2023,2,11,8,0,-6.4,1.1500000000000001,0.019,0.62,33,685,123,4,7,-11.9,76,18,57,78,0.293,64.96000000000001,82.43,0.92,0.79,793,0.2,220,1
+2023,2,11,8,30,-5.2,1.1500000000000001,0.019,0.62,44,816,221,0,7,-11.9,143,85,0,161,0.293,59.29,77.45,0.92,0.79,793,0.30000000000000004,219,0.9
+2023,2,11,9,0,-3.9000000000000004,1.1500000000000001,0.022,0.62,52,889,316,0,7,-11.5,186,222,0,252,0.293,55.410000000000004,72.73,0.92,0.79,793,0.30000000000000004,218,0.9
+2023,2,11,9,30,-2.4000000000000004,1.1500000000000001,0.022,0.62,59,939,405,0,7,-11.5,181,482,0,359,0.294,49.56,68.35000000000001,0.92,0.79,793,0.30000000000000004,223,1.2000000000000002
+2023,2,11,10,0,-1,1.16,0.023,0.62,64,976,486,0,7,-10.5,162,713,7,470,0.294,48.61,64.4,0.92,0.79,792,0.30000000000000004,227,1.4000000000000001
+2023,2,11,10,30,0.2,1.16,0.023,0.62,69,1002,555,0,7,-10.5,165,778,25,542,0.293,44.550000000000004,60.980000000000004,0.93,0.79,792,0.30000000000000004,226,1.9000000000000001
+2023,2,11,11,0,1.4000000000000001,1.18,0.023,0.62,72,1020,610,0,7,-10,199,728,11,583,0.293,42.53,58.19,0.93,0.79,792,0.30000000000000004,225,2.3000000000000003
+2023,2,11,11,30,2.1,1.18,0.023,0.62,75,1031,650,0,7,-10,292,524,0,584,0.293,40.4,56.11,0.93,0.79,791,0.30000000000000004,226,2.6
+2023,2,11,12,0,2.7,1.2,0.024,0.62,77,1037,674,0,7,-9.600000000000001,343,420,0,585,0.292,39.980000000000004,54.84,0.93,0.79,791,0.30000000000000004,226,2.8000000000000003
+2023,2,11,12,30,3,1.2,0.024,0.62,77,1038,681,0,7,-9.600000000000001,279,576,0,614,0.293,39.14,54.44,0.93,0.79,791,0.30000000000000004,226,3
+2023,2,11,13,0,3.2,1.2,0.025,0.62,77,1035,672,0,7,-9.3,183,800,29,643,0.293,39.36,54.92,0.9400000000000001,0.79,790,0.30000000000000004,227,3.1
+2023,2,11,13,30,3.2,1.2,0.025,0.62,77,1027,647,0,7,-9.3,266,584,14,590,0.294,39.36,56.27,0.9400000000000001,0.79,790,0.30000000000000004,229,3
+2023,2,11,14,0,3.1,1.19,0.027,0.62,75,1013,605,0,7,-8.9,272,509,14,539,0.294,40.85,58.42,0.9400000000000001,0.79,790,0.30000000000000004,232,2.9000000000000004
+2023,2,11,14,30,2.6,1.19,0.027,0.62,71,994,549,0,7,-8.9,258,459,7,479,0.296,42.32,61.28,0.9400000000000001,0.79,790,0.30000000000000004,237,2.3000000000000003
+2023,2,11,15,0,2.2,1.19,0.027,0.62,67,967,479,0,7,-6.7,279,140,0,339,0.297,51.81,64.75,0.9400000000000001,0.79,789,0.30000000000000004,243,1.7000000000000002
+2023,2,11,15,30,1.4000000000000001,1.19,0.027,0.62,61,927,397,0,7,-6.7,212,73,0,238,0.299,54.85,68.74,0.9400000000000001,0.79,789,0.30000000000000004,252,1.3
+2023,2,11,16,0,0.7000000000000001,1.18,0.026000000000000002,0.62,54,870,306,0,6,-6,104,4,0,105,0.3,61.02,73.15,0.9500000000000001,0.79,789,0.30000000000000004,261,0.9
+2023,2,11,16,30,0.2,1.18,0.026000000000000002,0.62,44,781,208,0,7,-6,128,35,0,135,0.302,63.27,77.9,0.9500000000000001,0.79,789,0.30000000000000004,269,0.9
+2023,2,11,17,0,-0.30000000000000004,1.18,0.025,0.62,33,630,111,5,7,-7.800000000000001,60,9,75,61,0.303,57.15,82.9,0.9500000000000001,0.66,789,0.30000000000000004,277,0.9
+2023,2,11,17,30,-0.4,1.18,0.025,0.62,18,290,28,6,7,-7.800000000000001,16,1,86,16,0.305,57.57,88.02,0.9500000000000001,0.66,789,0.30000000000000004,279,0.8
+2023,2,11,18,0,-0.5,1.19,0.025,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.306,54.370000000000005,93.69,0.9500000000000001,0.66,789,0.4,281,0.8
+2023,2,11,18,30,-0.7000000000000001,1.19,0.025,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.308,55.17,99.25,0.9500000000000001,0.66,789,0.4,277,0.8
+2023,2,11,19,0,-0.9,1.21,0.027,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.31,54.47,104.89,0.9500000000000001,0.66,789,0.4,274,0.8
+2023,2,11,19,30,-1.1,1.21,0.027,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.31,55.27,110.57000000000001,0.9500000000000001,0.66,789,0.4,265,0.8
+2023,2,11,20,0,-1.4000000000000001,1.22,0.03,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.311,55.120000000000005,116.26,0.9500000000000001,0.66,789,0.5,257,0.9
+2023,2,11,20,30,-1.8,1.22,0.03,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.312,56.76,121.92,0.9500000000000001,0.66,789,0.5,249,0.9
+2023,2,11,21,0,-2.1,1.23,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.312,58.03,127.48,0.9500000000000001,0.66,789,0.5,242,1
+2023,2,11,21,30,-2.4000000000000004,1.23,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.313,59.33,132.89000000000001,0.9500000000000001,0.66,789,0.5,239,1
+2023,2,11,22,0,-2.7,1.22,0.039,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.313,60.24,138.04,0.9500000000000001,0.66,790,0.6000000000000001,235,1
+2023,2,11,22,30,-2.8000000000000003,1.22,0.039,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.314,60.69,142.81,0.96,0.66,790,0.6000000000000001,234,1
+2023,2,11,23,0,-2.9000000000000004,1.2,0.043000000000000003,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,61.15,147,0.96,0.66,790,0.6000000000000001,232,1
+2023,2,11,23,30,-3,1.2,0.043000000000000003,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.315,61.6,150.34,0.96,0.66,790,0.6000000000000001,229,1
+2023,2,12,0,0,-3,1.19,0.046,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,61.86,152.51,0.96,0.66,790,0.6000000000000001,225,0.9
+2023,2,12,0,30,-3.2,1.19,0.046,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.315,62.79,153.21,0.96,0.66,790,0.6000000000000001,218,0.9
+2023,2,12,1,0,-3.3000000000000003,1.18,0.048,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,64.65,152.33,0.96,0.66,790,0.6000000000000001,211,1
+2023,2,12,1,30,-3.4000000000000004,1.18,0.048,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,65.13,150,0.96,0.66,790,0.7000000000000001,204,1
+2023,2,12,2,0,-3.6,1.19,0.047,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.316,68.28,146.54,0.96,0.66,790,0.7000000000000001,198,1.1
+2023,2,12,2,30,-3.9000000000000004,1.19,0.047,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.316,69.83,142.27,0.9500000000000001,0.66,790,0.7000000000000001,196,1.1
+2023,2,12,3,0,-4.2,1.24,0.039,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.317,70.82000000000001,137.45000000000002,0.9500000000000001,0.66,789,0.7000000000000001,195,1.2000000000000002
+2023,2,12,3,30,-4.6000000000000005,1.24,0.039,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.317,72.98,132.25,0.9500000000000001,0.66,789,0.7000000000000001,200,1.2000000000000002
+2023,2,12,4,0,-5,1.27,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.318,71.88,126.82000000000001,0.9400000000000001,0.66,789,0.7000000000000001,206,1.2000000000000002
+2023,2,12,4,30,-5.300000000000001,1.27,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.318,73.53,121.23,0.9400000000000001,0.66,789,0.6000000000000001,212,1.2000000000000002
+2023,2,12,5,0,-5.5,1.28,0.033,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.318,73.76,115.56,0.9400000000000001,0.66,789,0.6000000000000001,219,1.2000000000000002
+2023,2,12,5,30,-5.6000000000000005,1.28,0.033,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.319,74.32000000000001,109.86,0.9400000000000001,0.66,789,0.6000000000000001,224,1.2000000000000002
+2023,2,12,6,0,-5.7,1.28,0.034,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.319,75.52,104.17,0.9500000000000001,0.66,789,0.6000000000000001,229,1.1
+2023,2,12,6,30,-5.6000000000000005,1.28,0.034,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.319,75.05,98.53,0.9500000000000001,0.66,790,0.6000000000000001,235,1
+2023,2,12,7,0,-5.4,1.27,0.036000000000000004,0.62,0,0,0,1,7,-8.9,0,0,14,0,0.318,76.56,92.98,0.9500000000000001,0.66,790,0.6000000000000001,240,0.9
+2023,2,12,7,30,-4.3,1.27,0.036000000000000004,0.62,20,276,33,7,7,-8.9,14,0,100,14,0.318,70.45,87.34,0.9500000000000001,0.66,790,0.6000000000000001,244,0.9
+2023,2,12,8,0,-3.2,1.26,0.037,0.62,37,592,117,4,7,-7.300000000000001,54,239,57,86,0.318,73.16,82.2,0.9500000000000001,0.66,790,0.6000000000000001,248,0.9
+2023,2,12,8,30,-2,1.26,0.037,0.62,48,738,212,0,0,-7.300000000000001,48,738,0,212,0.317,67.02,77.2,0.9500000000000001,0.66,791,0.6000000000000001,258,1.1
+2023,2,12,9,0,-0.9,1.25,0.037,0.62,57,828,306,0,0,-8,66,765,0,296,0.317,58.74,72.47,0.9500000000000001,0.66,791,0.6000000000000001,268,1.4000000000000001
+2023,2,12,9,30,0.2,1.25,0.037,0.62,64,890,396,0,7,-8,114,674,14,366,0.317,54.22,68.08,0.9500000000000001,0.66,791,0.6000000000000001,277,1.5
+2023,2,12,10,0,1.3,1.25,0.035,0.62,68,936,477,0,0,-8.5,88,876,0,470,0.316,48,64.12,0.9500000000000001,0.66,791,0.5,287,1.7000000000000002
+2023,2,12,10,30,2.1,1.25,0.035,0.62,73,966,546,0,0,-8.5,73,966,0,546,0.316,45.34,60.68,0.9500000000000001,0.66,791,0.5,296,1.6
+2023,2,12,11,0,2.8000000000000003,1.28,0.032,0.62,75,988,600,0,0,-8.700000000000001,75,988,0,600,0.315,42.63,57.870000000000005,0.9400000000000001,0.66,791,0.5,305,1.6
+2023,2,12,11,30,3.5,1.28,0.032,0.62,75,1004,639,0,0,-8.700000000000001,75,1004,0,639,0.315,40.58,55.79,0.9400000000000001,0.66,791,0.5,313,1.4000000000000001
+2023,2,12,12,0,4.1000000000000005,1.33,0.026000000000000002,0.62,74,1016,664,0,0,-9.1,74,1016,0,664,0.314,37.65,54.51,0.93,0.66,790,0.5,320,1.3
+2023,2,12,12,30,4.5,1.33,0.026000000000000002,0.62,74,1024,674,0,0,-9.1,74,1024,0,674,0.314,36.61,54.11,0.93,0.66,790,0.5,326,1.1
+2023,2,12,13,0,4.9,1.36,0.023,0.62,71,1028,667,0,0,-9.600000000000001,71,1028,0,667,0.314,34.32,54.6,0.92,0.66,790,0.4,331,0.8
+2023,2,12,13,30,5,1.36,0.023,0.62,70,1021,642,0,0,-9.600000000000001,70,1021,0,642,0.314,34.08,55.95,0.92,0.66,790,0.4,301,0.6000000000000001
+2023,2,12,14,0,5.2,1.28,0.023,0.62,68,1008,601,0,0,-9.8,68,1008,0,601,0.315,33.04,58.11,0.92,0.66,789,0.4,271,0.30000000000000004
+2023,2,12,14,30,5,1.28,0.023,0.62,64,991,545,0,0,-9.8,64,991,0,545,0.315,33.5,60.980000000000004,0.92,0.66,789,0.4,237,0.6000000000000001
+2023,2,12,15,0,4.9,1.28,0.021,0.62,60,965,476,0,0,-8.9,60,965,0,476,0.316,36.08,64.47,0.92,0.66,789,0.4,204,0.9
+2023,2,12,15,30,3.8000000000000003,1.28,0.021,0.62,54,928,395,0,0,-8.9,54,928,0,395,0.317,38.96,68.47,0.91,0.66,789,0.4,198,0.9
+2023,2,12,16,0,2.8000000000000003,1.29,0.02,0.62,48,873,305,0,0,-5.2,48,873,0,305,0.318,55.620000000000005,72.89,0.91,0.66,789,0.4,193,0.9
+2023,2,12,16,30,1.4000000000000001,1.29,0.02,0.62,41,792,210,0,0,-5.2,41,792,7,210,0.319,61.45,77.66,0.91,0.66,789,0.4,192,1.1
+2023,2,12,17,0,0.1,1.29,0.019,0.62,31,657,115,2,0,-8.5,41,532,29,109,0.32,52.43,82.67,0.91,0.67,789,0.30000000000000004,191,1.3
+2023,2,12,17,30,-0.5,1.29,0.019,0.62,19,321,31,2,0,-8.5,19,234,21,28,0.321,54.76,87.81,0.91,0.67,789,0.30000000000000004,191,1.3
+2023,2,12,18,0,-1.1,1.28,0.018000000000000002,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.321,56.01,93.48,0.9,0.67,789,0.30000000000000004,190,1.3
+2023,2,12,18,30,-1.4000000000000001,1.28,0.018000000000000002,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.321,57.26,99.04,0.9,0.67,789,0.30000000000000004,191,1.2000000000000002
+2023,2,12,19,0,-1.8,1.27,0.018000000000000002,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.322,60.910000000000004,104.68,0.9,0.67,789,0.30000000000000004,191,1.2000000000000002
+2023,2,12,19,30,-2,1.27,0.018000000000000002,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.322,61.81,110.37,0.9,0.67,789,0.30000000000000004,190,1.1
+2023,2,12,20,0,-2.2,1.25,0.018000000000000002,0.62,0,0,0,0,8,-8,0,0,0,0,0.322,64.26,116.06,0.9,0.67,789,0.30000000000000004,189,1
+2023,2,12,20,30,-2.4000000000000004,1.25,0.018000000000000002,0.62,0,0,0,0,8,-8,0,0,0,0,0.322,65.22,121.71000000000001,0.9,0.67,789,0.30000000000000004,187,0.9
+2023,2,12,21,0,-2.5,1.24,0.018000000000000002,0.62,0,0,0,0,8,-7.800000000000001,0,0,0,0,0.322,67.05,127.26,0.9,0.67,789,0.30000000000000004,184,0.8
+2023,2,12,21,30,-2.7,1.24,0.018000000000000002,0.62,0,0,0,0,8,-7.800000000000001,0,0,0,0,0.323,68.05,132.66,0.9,0.67,789,0.30000000000000004,179,0.7000000000000001
+2023,2,12,22,0,-2.8000000000000003,1.23,0.018000000000000002,0.62,0,0,0,0,8,-7.7,0,0,0,0,0.323,69.10000000000001,137.8,0.89,0.67,789,0.30000000000000004,175,0.7000000000000001
+2023,2,12,22,30,-3,1.23,0.018000000000000002,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,70.14,142.55,0.89,0.67,789,0.30000000000000004,169,0.6000000000000001
+2023,2,12,23,0,-3.2,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.324,71.19,146.72,0.89,0.67,789,0.30000000000000004,164,0.6000000000000001
+2023,2,12,23,30,-3.5,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.7,0,0,14,0,0.324,72.8,150.03,0.89,0.67,789,0.30000000000000004,160,0.6000000000000001
+2023,2,13,0,0,-3.7,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.7,0,0,14,0,0.324,73.61,152.18,0.89,0.67,789,0.30000000000000004,156,0.6000000000000001
+2023,2,13,0,30,-3.9000000000000004,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.325,74.72,152.88,0.89,0.67,789,0.30000000000000004,153,0.5
+2023,2,13,1,0,-4.1000000000000005,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.325,74.97,152,0.9,0.67,789,0.30000000000000004,149,0.5
+2023,2,13,1,30,-4.3,1.22,0.018000000000000002,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.326,76.01,149.69,0.9,0.67,788,0.30000000000000004,150,0.5
+2023,2,13,2,0,-4.5,1.23,0.018000000000000002,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.327,75.99,146.26,0.9,0.67,788,0.30000000000000004,151,0.5
+2023,2,13,2,30,-4.7,1.23,0.018000000000000002,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.327,77.15,142.01,0.9,0.67,788,0.30000000000000004,156,0.5
+2023,2,13,3,0,-4.9,1.24,0.018000000000000002,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.328,77.10000000000001,137.20000000000002,0.9,0.67,788,0.30000000000000004,161,0.5
+2023,2,13,3,30,-5.1000000000000005,1.24,0.018000000000000002,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.328,78.17,132.02,0.9,0.67,787,0.30000000000000004,167,0.5
+2023,2,13,4,0,-5.300000000000001,1.25,0.018000000000000002,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.329,78.15,126.60000000000001,0.9,0.67,787,0.30000000000000004,172,0.5
+2023,2,13,4,30,-5.5,1.25,0.018000000000000002,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.33,79.34,121.02,0.9,0.67,787,0.30000000000000004,177,0.6000000000000001
+2023,2,13,5,0,-5.7,1.25,0.018000000000000002,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.33,78.85000000000001,115.35000000000001,0.9,0.67,787,0.30000000000000004,182,0.7000000000000001
+2023,2,13,5,30,-6,1.25,0.018000000000000002,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.33,80.57000000000001,109.65,0.9,0.67,786,0.30000000000000004,185,0.8
+2023,2,13,6,0,-6.300000000000001,1.26,0.018000000000000002,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.331,80.11,103.96000000000001,0.9,0.67,786,0.30000000000000004,189,0.8
+2023,2,13,6,30,-6.300000000000001,1.26,0.018000000000000002,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.331,80.11,98.31,0.9,0.67,786,0.30000000000000004,191,0.9
+2023,2,13,7,0,-6.2,1.27,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.331,78.41,92.75,0.9,0.67,786,0.30000000000000004,193,1
+2023,2,13,7,30,-5,1.27,0.019,0.62,21,398,41,1,0,-9.4,19,306,18,34,0.331,71.49,87.12,0.9,0.67,785,0.30000000000000004,193,1.3
+2023,2,13,8,0,-3.8000000000000003,1.28,0.019,0.62,32,684,128,2,0,-9.1,45,480,25,112,0.332,66.74,81.96000000000001,0.9,0.67,785,0.30000000000000004,194,1.6
+2023,2,13,8,30,-2.5,1.28,0.019,0.62,42,807,224,0,0,-9.1,45,785,0,222,0.332,60.58,76.95,0.9,0.67,785,0.4,200,1.8
+2023,2,13,9,0,-1.2000000000000002,1.31,0.02,0.62,49,883,319,0,0,-8.3,49,883,0,319,0.331,58.7,72.21000000000001,0.9,0.67,785,0.4,206,1.9000000000000001
+2023,2,13,9,30,0.6000000000000001,1.31,0.02,0.62,56,934,409,0,0,-8.3,56,934,0,409,0.331,51.44,67.8,0.91,0.67,784,0.4,211,2.6
+2023,2,13,10,0,2.4000000000000004,1.35,0.022,0.62,62,967,488,0,0,-8.1,62,967,0,488,0.331,45.87,63.83,0.91,0.67,784,0.4,216,3.3000000000000003
+2023,2,13,10,30,3.3000000000000003,1.35,0.022,0.62,66,984,552,0,0,-8.1,66,984,0,552,0.331,42.99,60.38,0.92,0.67,783,0.5,218,3.8000000000000003
+2023,2,13,11,0,4.2,1.3900000000000001,0.025,0.62,70,1000,606,0,0,-7.800000000000001,70,1000,0,606,0.331,41.17,57.56,0.92,0.67,783,0.5,220,4.2
+2023,2,13,11,30,4.7,1.3900000000000001,0.025,0.62,72,1010,645,0,0,-7.9,72,1010,0,645,0.33,39.71,55.46,0.92,0.67,782,0.5,222,4.5
+2023,2,13,12,0,5.1000000000000005,1.41,0.028,0.62,74,1011,666,0,0,-7.5,74,1011,0,666,0.33,39.77,54.18,0.92,0.67,781,0.6000000000000001,224,4.7
+2023,2,13,12,30,5.2,1.41,0.028,0.62,76,1008,672,0,0,-7.5,76,1008,0,672,0.33,39.49,53.77,0.93,0.67,781,0.6000000000000001,224,4.800000000000001
+2023,2,13,13,0,5.4,1.41,0.032,0.62,77,1002,662,0,0,-6.800000000000001,77,1002,0,662,0.329,41.02,54.26,0.93,0.67,780,0.6000000000000001,224,4.9
+2023,2,13,13,30,5.300000000000001,1.41,0.032,0.62,78,991,637,0,0,-6.800000000000001,78,991,7,637,0.329,41.25,55.63,0.93,0.67,779,0.6000000000000001,222,4.800000000000001
+2023,2,13,14,0,5.1000000000000005,1.36,0.04,0.62,78,972,596,0,7,-6.1000000000000005,127,850,36,580,0.329,44.09,57.79,0.9400000000000001,0.67,779,0.6000000000000001,219,4.800000000000001
+2023,2,13,14,30,4.6000000000000005,1.36,0.04,0.62,77,945,540,0,7,-6.2,294,317,0,449,0.329,45.6,60.68,0.9400000000000001,0.67,778,0.6000000000000001,217,4.5
+2023,2,13,15,0,4.1000000000000005,1.28,0.051000000000000004,0.62,75,906,470,0,7,-5.300000000000001,269,230,0,369,0.329,50.550000000000004,64.18,0.9500000000000001,0.67,778,0.6000000000000001,215,4.2
+2023,2,13,15,30,2.8000000000000003,1.28,0.051000000000000004,0.62,70,860,389,0,6,-5.300000000000001,146,17,0,152,0.329,55.39,68.2,0.9500000000000001,0.67,778,0.6000000000000001,213,3.4000000000000004
+2023,2,13,16,0,1.5,1.25,0.056,0.62,63,792,299,0,6,-4.2,96,4,0,97,0.328,65.65,72.64,0.9500000000000001,0.67,777,0.6000000000000001,211,2.6
+2023,2,13,16,30,0.30000000000000004,1.25,0.056,0.62,53,695,204,0,7,-4.2,80,5,0,81,0.328,71.57000000000001,77.41,0.9500000000000001,0.67,777,0.6000000000000001,210,2.4000000000000004
+2023,2,13,17,0,-0.8,1.25,0.057,0.62,40,535,110,5,7,-4.2,49,2,71,49,0.328,77.86,82.44,0.9500000000000001,0.75,777,0.6000000000000001,209,2.3000000000000003
+2023,2,13,17,30,-1.2000000000000002,1.25,0.057,0.62,20,227,30,6,7,-4.2,15,0,86,15,0.327,80.17,87.60000000000001,0.9500000000000001,0.75,777,0.6000000000000001,209,2.3000000000000003
+2023,2,13,18,0,-1.6,1.27,0.053,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.327,84.57000000000001,93.26,0.9500000000000001,0.75,776,0.6000000000000001,208,2.4000000000000004
+2023,2,13,18,30,-2,1.27,0.053,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.325,87.10000000000001,98.83,0.9500000000000001,0.75,776,0.6000000000000001,208,2.5
+2023,2,13,19,0,-2.4000000000000004,1.32,0.046,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.324,91.87,104.47,0.9500000000000001,0.75,775,0.6000000000000001,209,2.6
+2023,2,13,19,30,-2.8000000000000003,1.32,0.046,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.323,94.63,110.16,0.9500000000000001,0.75,775,0.6000000000000001,210,2.7
+2023,2,13,20,0,-3.1,1.34,0.042,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.322,97.52,115.85000000000001,0.9400000000000001,0.75,775,0.5,212,2.8000000000000003
+2023,2,13,20,30,-3.4000000000000004,1.34,0.042,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.32,99.60000000000001,121.5,0.9400000000000001,0.75,774,0.5,215,2.9000000000000004
+2023,2,13,21,0,-3.7,1.34,0.04,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.318,100,127.05,0.9400000000000001,0.75,774,0.5,217,3
+2023,2,13,21,30,-3.9000000000000004,1.34,0.04,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.315,100,132.43,0.9400000000000001,0.75,774,0.5,217,3.2
+2023,2,13,22,0,-4.2,1.35,0.037,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.312,100,137.56,0.93,0.75,773,0.5,216,3.4000000000000004
+2023,2,13,22,30,-4.3,1.35,0.037,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.309,100,142.29,0.93,0.75,773,0.5,213,3.6
+2023,2,13,23,0,-4.4,1.32,0.035,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.307,100,146.43,0.93,0.75,773,0.5,210,3.8000000000000003
+2023,2,13,23,30,-4.5,1.32,0.035,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.307,100,149.72,0.93,0.75,773,0.5,207,4
+2023,2,14,0,0,-4.6000000000000005,1.26,0.034,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.307,99.48,151.85,0.93,0.75,773,0.5,203,4.1000000000000005
+2023,2,14,0,30,-4.7,1.26,0.034,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.31,100,152.54,0.93,0.75,772,0.5,204,4.1000000000000005
+2023,2,14,1,0,-4.800000000000001,1.18,0.033,0.62,0,0,0,0,7,-5,0,0,0,0,0.314,98.26,151.67000000000002,0.93,0.75,772,0.5,204,4.1000000000000005
+2023,2,14,1,30,-5,1.18,0.033,0.62,0,0,0,0,7,-5,0,0,0,0,0.318,99.75,149.38,0.9400000000000001,0.75,772,0.5,208,3.9000000000000004
+2023,2,14,2,0,-5.1000000000000005,1.11,0.034,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.323,98.38,145.97,0.9400000000000001,0.75,772,0.5,212,3.7
+2023,2,14,2,30,-5.2,1.11,0.034,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.326,99.13,141.74,0.9400000000000001,0.75,772,0.5,219,3.4000000000000004
+2023,2,14,3,0,-5.4,1.07,0.033,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.328,98.87,136.95000000000002,0.9500000000000001,0.75,771,0.5,226,3.1
+2023,2,14,3,30,-5.5,1.07,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.328,99.75,131.78,0.9500000000000001,0.75,772,0.5,238,2.9000000000000004
+2023,2,14,4,0,-5.6000000000000005,1.08,0.031,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.328,98.25,126.37,0.9400000000000001,0.75,772,0.4,251,2.6
+2023,2,14,4,30,-5.800000000000001,1.08,0.031,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.329,99.76,120.8,0.9400000000000001,0.75,772,0.4,268,2.5
+2023,2,14,5,0,-6.1000000000000005,1.11,0.03,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.331,95.39,115.13,0.9400000000000001,0.75,773,0.4,284,2.5
+2023,2,14,5,30,-6.4,1.11,0.03,0.62,0,0,0,0,5,-6.7,0,0,0,0,0.334,97.60000000000001,109.43,0.93,0.75,773,0.30000000000000004,297,2.6
+2023,2,14,6,0,-6.7,1.09,0.025,0.62,0,0,0,0,4,-8.700000000000001,0,0,0,0,0.338,85.97,103.74000000000001,0.93,0.75,774,0.30000000000000004,311,2.7
+2023,2,14,6,30,-6.7,1.09,0.025,0.62,0,0,0,0,5,-8.700000000000001,0,0,0,0,0.34,85.97,98.09,0.93,0.75,774,0.30000000000000004,314,3
+2023,2,14,7,0,-6.800000000000001,1.07,0.02,0.62,0,0,0,1,7,-11.100000000000001,0,0,14,0,0.342,71.46000000000001,92.53,0.93,0.75,774,0.30000000000000004,317,3.3000000000000003
+2023,2,14,7,30,-6.4,1.07,0.02,0.62,22,412,44,7,7,-11.100000000000001,20,0,100,20,0.34400000000000003,69.39,86.89,0.93,0.75,775,0.30000000000000004,315,3.4000000000000004
+2023,2,14,8,0,-6.1000000000000005,1.06,0.02,0.62,34,706,136,3,5,-13,48,2,43,48,0.34500000000000003,58.17,81.72,0.93,0.75,775,0.2,313,3.5
+2023,2,14,8,30,-5.7,1.06,0.02,0.62,43,837,236,0,7,-13,96,21,0,101,0.34900000000000003,56.42,76.7,0.93,0.75,775,0.2,306,3.3000000000000003
+2023,2,14,9,0,-5.300000000000001,1.07,0.019,0.62,51,916,335,0,7,-14.3,159,67,0,180,0.352,49.14,71.94,0.93,0.75,775,0.2,298,3.1
+2023,2,14,9,30,-4.800000000000001,1.07,0.019,0.62,56,968,426,0,7,-14.3,241,105,0,281,0.355,47.31,67.52,0.93,0.75,775,0.2,289,3.1
+2023,2,14,10,0,-4.3,1.07,0.018000000000000002,0.62,60,1004,508,0,7,-15.200000000000001,273,339,0,424,0.359,42.35,63.53,0.93,0.75,775,0.2,281,3.1
+2023,2,14,10,30,-3.7,1.07,0.018000000000000002,0.62,64,1029,577,0,6,-15.200000000000001,327,142,0,398,0.362,40.49,60.07,0.92,0.75,775,0.2,277,3.2
+2023,2,14,11,0,-3.2,1.08,0.017,0.62,65,1047,632,0,6,-15.8,315,50,0,342,0.366,37.050000000000004,57.230000000000004,0.92,0.75,775,0.2,274,3.2
+2023,2,14,11,30,-2.8000000000000003,1.08,0.017,0.62,69,1056,673,0,6,-15.8,335,76,0,378,0.369,35.92,55.13,0.93,0.75,774,0.2,281,3
+2023,2,14,12,0,-2.4000000000000004,1.12,0.02,0.62,73,1060,698,0,7,-16.400000000000002,348,438,0,606,0.372,33.24,53.84,0.93,0.75,774,0.2,287,2.8000000000000003
+2023,2,14,12,30,-2.3000000000000003,1.12,0.02,0.62,81,1046,704,0,7,-16.400000000000002,273,639,0,654,0.376,33,53.43,0.9500000000000001,0.75,774,0.2,287,2.7
+2023,2,14,13,0,-2.1,1.17,0.05,0.62,92,1022,694,0,7,-17,211,763,14,660,0.379,30.91,53.93,0.96,0.75,773,0.2,286,2.5
+2023,2,14,13,30,-2.3000000000000003,1.17,0.05,0.62,91,1014,668,0,7,-17,324,213,0,445,0.382,31.37,55.300000000000004,0.96,0.75,773,0.2,288,2.4000000000000004
+2023,2,14,14,0,-2.5,1.1400000000000001,0.049,0.62,87,1000,625,0,6,-17.6,250,4,0,252,0.384,30.25,57.480000000000004,0.96,0.75,773,0.2,289,2.2
+2023,2,14,14,30,-2.8000000000000003,1.1400000000000001,0.049,0.62,81,985,568,0,6,-17.6,214,4,0,216,0.385,30.93,60.38,0.96,0.75,773,0.2,305,2
+2023,2,14,15,0,-3.1,1.12,0.041,0.62,74,964,498,0,6,-17.900000000000002,225,55,0,249,0.386,30.84,63.9,0.9500000000000001,0.75,773,0.2,321,1.7000000000000002
+2023,2,14,15,30,-3.5,1.12,0.041,0.62,67,924,414,0,7,-17.900000000000002,181,361,0,317,0.387,31.77,67.93,0.9500000000000001,0.75,773,0.2,163,1.9000000000000001
+2023,2,14,16,0,-3.9000000000000004,1.11,0.04,0.62,59,865,321,0,7,-17.2,118,567,25,290,0.388,34.87,72.38,0.9500000000000001,0.75,774,0.2,5,2
+2023,2,14,16,30,-4.4,1.11,0.04,0.62,50,767,220,0,7,-17.2,96,290,14,160,0.389,36.2,77.17,0.9500000000000001,0.75,774,0.30000000000000004,13,2.3000000000000003
+2023,2,14,17,0,-4.9,1.1,0.042,0.62,38,609,121,5,7,-15.200000000000001,61,95,79,74,0.39,44.26,82.21000000000001,0.9500000000000001,0.8,774,0.30000000000000004,22,2.5
+2023,2,14,17,30,-5.2,1.1,0.042,0.62,21,276,34,7,7,-15.200000000000001,22,2,100,22,0.392,45.28,87.38,0.9500000000000001,0.8,774,0.30000000000000004,26,3
+2023,2,14,18,0,-5.5,1.08,0.043000000000000003,0.62,0,0,0,1,7,-15.3,0,0,14,0,0.393,45.88,93.05,0.9500000000000001,0.8,774,0.30000000000000004,29,3.6
+2023,2,14,18,30,-5.800000000000001,1.08,0.043000000000000003,0.62,0,0,0,0,7,-15.3,0,0,0,0,0.394,46.94,98.62,0.9500000000000001,0.8,774,0.30000000000000004,31,4.1000000000000005
+2023,2,14,19,0,-6.1000000000000005,1.05,0.044,0.62,0,0,0,0,7,-15.3,0,0,0,0,0.395,48.28,104.26,0.96,0.8,775,0.30000000000000004,33,4.7
+2023,2,14,19,30,-6.4,1.05,0.044,0.62,0,0,0,0,6,-15.3,0,0,0,0,0.397,49.4,109.95,0.9500000000000001,0.8,775,0.30000000000000004,33,5.2
+2023,2,14,20,0,-6.6000000000000005,1.04,0.044,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.398,53.96,115.64,0.9500000000000001,0.8,775,0.30000000000000004,33,5.7
+2023,2,14,20,30,-6.9,1.04,0.044,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.399,55.22,121.28,0.9500000000000001,0.8,775,0.30000000000000004,33,6
+2023,2,14,21,0,-7.2,1.04,0.045,0.62,0,0,0,0,9,-13.600000000000001,0,0,0,0,0.4,60.07,126.83,0.96,0.8,775,0.30000000000000004,32,6.300000000000001
+2023,2,14,21,30,-7.4,1.04,0.045,0.62,0,0,0,0,6,-13.600000000000001,0,0,0,0,0.4,61.01,132.2,0.9500000000000001,0.8,775,0.4,32,6.300000000000001
+2023,2,14,22,0,-7.6000000000000005,1.04,0.046,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.4,66.01,137.31,0.9500000000000001,0.8,775,0.4,32,6.300000000000001
+2023,2,14,22,30,-7.7,1.04,0.046,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.4,66.52,142.02,0.9500000000000001,0.8,775,0.4,33,6.300000000000001
+2023,2,14,23,0,-7.7,1.01,0.046,0.62,0,0,0,0,6,-12.200000000000001,0,0,0,0,0.4,70.4,146.14000000000001,0.9500000000000001,0.8,774,0.4,34,6.4
+2023,2,14,23,30,-7.9,1.01,0.046,0.62,0,0,0,0,6,-12.200000000000001,0,0,0,0,0.4,71.49,149.41,0.9500000000000001,0.8,774,0.4,35,7.1000000000000005
+2023,2,15,0,0,-8.1,1,0.043000000000000003,0.62,0,0,0,0,6,-12.200000000000001,0,0,0,0,0.4,72.2,151.52,0.9500000000000001,0.8,774,0.4,36,7.7
+2023,2,15,0,30,-8.6,1,0.043000000000000003,0.62,0,0,0,0,6,-12.200000000000001,0,0,0,0,0.4,75.07000000000001,152.20000000000002,0.9500000000000001,0.8,774,0.4,35,8.8
+2023,2,15,1,0,-9,0.99,0.044,0.62,0,0,0,0,6,-13.4,0,0,0,0,0.399,70.27,151.33,0.9500000000000001,0.8,774,0.4,35,9.8
+2023,2,15,1,30,-9.5,0.99,0.044,0.62,0,0,0,0,9,-13.4,0,0,0,0,0.398,73.08,149.06,0.9500000000000001,0.8,774,0.4,34,10.3
+2023,2,15,2,0,-10,0.98,0.056,0.62,0,0,0,0,9,-14.5,0,0,0,0,0.397,69.56,145.67000000000002,0.9500000000000001,0.8,774,0.4,33,10.9
+2023,2,15,2,30,-10.4,0.98,0.056,0.62,0,0,0,0,9,-14.5,0,0,0,0,0.396,71.8,141.47,0.9500000000000001,0.8,774,0.4,34,11.3
+2023,2,15,3,0,-10.8,0.97,0.066,0.62,0,0,0,0,9,-15.3,0,0,0,0,0.395,69.44,136.69,0.96,0.8,774,0.4,34,11.700000000000001
+2023,2,15,3,30,-11.100000000000001,0.97,0.066,0.62,0,0,0,0,6,-15.3,0,0,0,0,0.395,71.21000000000001,131.54,0.96,0.8,775,0.4,35,11.9
+2023,2,15,4,0,-11.5,0.96,0.07,0.62,0,0,0,0,6,-16,0,0,0,0,0.394,69.09,126.14,0.96,0.8,775,0.4,36,12
+2023,2,15,4,30,-11.9,0.96,0.07,0.62,0,0,0,0,9,-16,0,0,0,0,0.393,71.34,120.57000000000001,0.96,0.8,775,0.4,36,12.3
+2023,2,15,5,0,-12.3,0.97,0.07100000000000001,0.62,0,0,0,0,9,-17,0,0,0,0,0.393,67.83,114.91,0.96,0.8,776,0.30000000000000004,36,12.600000000000001
+2023,2,15,5,30,-12.700000000000001,0.97,0.07100000000000001,0.62,0,0,0,0,9,-17,0,0,0,0,0.394,70.05,109.21000000000001,0.96,0.8,776,0.30000000000000004,35,12.700000000000001
+2023,2,15,6,0,-13.100000000000001,0.99,0.07,0.62,0,0,0,0,6,-18.1,0,0,0,0,0.395,66.19,103.52,0.96,0.8,776,0.30000000000000004,35,12.8
+2023,2,15,6,30,-13.3,0.99,0.07,0.62,0,0,0,0,6,-18.1,0,0,0,0,0.394,67.36,97.86,0.96,0.8,777,0.30000000000000004,36,12.600000000000001
+2023,2,15,7,0,-13.5,1,0.07,0.62,0,0,0,2,6,-18.8,0,0,21,0,0.393,64.39,92.29,0.96,0.8,777,0.30000000000000004,36,12.4
+2023,2,15,7,30,-13.3,1,0.07,0.62,27,275,43,7,6,-18.8,17,0,100,17,0.393,63.440000000000005,86.66,0.96,0.8,778,0.30000000000000004,36,12.3
+2023,2,15,8,0,-13.200000000000001,1,0.07,0.62,47,558,130,3,9,-19.1,36,0,43,36,0.392,61.11,81.47,0.96,0.8,778,0.30000000000000004,36,12.100000000000001
+2023,2,15,8,30,-12.8,1,0.07,0.62,62,708,228,0,6,-19.1,71,1,0,71,0.393,59.230000000000004,76.44,0.96,0.8,779,0.30000000000000004,36,11.9
+2023,2,15,9,0,-12.3,1,0.07100000000000001,0.62,74,800,326,0,6,-19.1,112,1,0,112,0.394,56.980000000000004,71.66,0.96,0.8,779,0.30000000000000004,36,11.8
+2023,2,15,9,30,-11.700000000000001,1,0.07100000000000001,0.62,84,863,418,0,6,-19.1,152,2,0,153,0.394,54.300000000000004,67.23,0.96,0.8,779,0.30000000000000004,36,11.700000000000001
+2023,2,15,10,0,-11.200000000000001,1.01,0.07,0.62,91,908,500,0,6,-18.7,195,4,0,197,0.394,53.870000000000005,63.230000000000004,0.96,0.8,780,0.30000000000000004,36,11.5
+2023,2,15,10,30,-10.5,1.01,0.07,0.62,98,938,570,0,6,-18.7,239,5,0,242,0.394,50.95,59.76,0.96,0.8,780,0.30000000000000004,36,11.4
+2023,2,15,11,0,-9.9,1.02,0.07,0.62,102,960,626,0,6,-18.2,281,7,0,285,0.394,50.95,56.910000000000004,0.96,0.8,780,0.30000000000000004,37,11.200000000000001
+2023,2,15,11,30,-9.3,1.02,0.07,0.62,104,974,666,0,6,-18.2,285,6,0,288,0.393,48.6,54.79,0.96,0.8,780,0.30000000000000004,36,10.9
+2023,2,15,12,0,-8.700000000000001,1.03,0.069,0.62,107,982,691,0,6,-17.6,347,39,0,370,0.393,48.76,53.5,0.96,0.8,780,0.30000000000000004,36,10.5
+2023,2,15,12,30,-8.3,1.03,0.069,0.62,106,988,699,0,6,-17.5,373,83,0,423,0.393,47.32,53.09,0.96,0.8,781,0.30000000000000004,34,10.200000000000001
+2023,2,15,13,0,-7.800000000000001,1.05,0.062,0.62,102,990,690,0,6,-17.2,337,46,0,364,0.393,47.03,53.59,0.96,0.8,781,0.30000000000000004,33,9.9
+2023,2,15,13,30,-7.7,1.05,0.062,0.62,100,983,664,0,7,-17.2,370,332,0,561,0.392,46.67,54.97,0.96,0.8,781,0.30000000000000004,32,9.5
+2023,2,15,14,0,-7.5,1.05,0.061,0.62,96,970,622,0,7,-17,351,304,0,516,0.392,46.43,57.160000000000004,0.96,0.8,781,0.30000000000000004,31,9.200000000000001
+2023,2,15,14,30,-7.800000000000001,1.05,0.061,0.62,92,946,564,0,7,-17,323,173,0,409,0.391,47.58,60.08,0.96,0.8,782,0.30000000000000004,31,8.9
+2023,2,15,15,0,-8,1.03,0.065,0.62,88,912,493,0,7,-17,287,253,0,399,0.39,48.43,63.61,0.96,0.8,783,0.30000000000000004,31,8.5
+2023,2,15,15,30,-8.5,1.03,0.065,0.62,80,869,410,0,7,-17,246,133,0,297,0.389,50.35,67.66,0.96,0.8,783,0.30000000000000004,30,8.3
+2023,2,15,16,0,-8.9,1.03,0.063,0.62,70,807,318,0,7,-17,141,11,0,144,0.389,51.78,72.12,0.96,0.8,784,0.30000000000000004,28,8.1
+2023,2,15,16,30,-9.4,1.03,0.063,0.62,57,720,220,0,6,-17,57,0,0,57,0.388,53.85,76.92,0.96,0.8,784,0.30000000000000004,27,7.7
+2023,2,15,17,0,-9.9,1.06,0.055,0.62,42,577,123,4,6,-17.3,38,0,57,38,0.388,54.82,81.98,0.96,0.8,785,0.30000000000000004,25,7.4
+2023,2,15,17,30,-10.4,1.06,0.055,0.62,24,291,38,7,6,-17.3,14,0,100,14,0.388,57.03,87.16,0.96,0.8,785,0.30000000000000004,24,6.9
+2023,2,15,18,0,-10.9,1.08,0.044,0.62,0,0,0,1,6,-17.7,0,0,14,0,0.388,57.47,92.83,0.9500000000000001,0.8,786,0.30000000000000004,22,6.4
+2023,2,15,18,30,-11.4,1.08,0.044,0.62,0,0,0,0,6,-17.7,0,0,0,0,0.388,59.81,98.4,0.9500000000000001,0.8,786,0.30000000000000004,21,5.800000000000001
+2023,2,15,19,0,-11.9,1.09,0.036000000000000004,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.387,60.11,104.06,0.9400000000000001,0.8,787,0.30000000000000004,20,5.300000000000001
+2023,2,15,19,30,-12.5,1.09,0.036000000000000004,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.387,63.08,109.75,0.9400000000000001,0.8,787,0.30000000000000004,19,4.7
+2023,2,15,20,0,-13.100000000000001,1.08,0.03,0.62,0,0,0,0,7,-18.400000000000002,0,0,0,0,0.386,64.28,115.43,0.93,0.8,787,0.30000000000000004,18,4.2
+2023,2,15,20,30,-13.600000000000001,1.08,0.03,0.62,0,0,0,0,7,-18.400000000000002,0,0,0,0,0.386,67.03,121.07000000000001,0.93,0.8,788,0.30000000000000004,18,3.9000000000000004
+2023,2,15,21,0,-14.100000000000001,1.07,0.026000000000000002,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.386,67.65,126.61,0.93,0.8,788,0.2,18,3.7
+2023,2,15,21,30,-14.600000000000001,1.07,0.026000000000000002,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.386,70.49,131.97,0.92,0.8,788,0.2,18,3.3000000000000003
+2023,2,15,22,0,-15,1.06,0.024,0.62,0,0,0,0,7,-19,0,0,0,0,0.386,71.28,137.07,0.92,0.8,788,0.2,19,2.8000000000000003
+2023,2,15,22,30,-15.4,1.06,0.024,0.62,0,0,0,0,7,-19,0,0,0,0,0.386,73.77,141.76,0.92,0.8,789,0.2,20,2.5
+2023,2,15,23,0,-15.8,1.04,0.023,0.62,0,0,0,0,0,-19.3,0,0,0,0,0.386,74.74,145.85,0.92,0.8,789,0.2,22,2.1
+2023,2,15,23,30,-16.1,1.04,0.023,0.62,0,0,0,0,0,-19.3,0,0,0,0,0.386,76.63,149.1,0.91,0.8,789,0.2,22,1.8
+2023,2,16,0,0,-16.5,1.01,0.022,0.62,0,0,0,0,0,-19.5,0,0,0,0,0.386,77.43,151.19,0.91,0.8,789,0.2,22,1.6
+2023,2,16,0,30,-16.8,1.01,0.022,0.62,0,0,0,0,0,-19.5,0,0,0,0,0.385,79.5,151.85,0.91,0.8,790,0.2,21,1.4000000000000001
+2023,2,16,1,0,-17,0.98,0.021,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.384,78.75,150.99,0.91,0.8,790,0.1,20,1.2000000000000002
+2023,2,16,1,30,-17.2,0.98,0.021,0.62,0,0,0,0,0,-19.8,0,0,0,0,0.383,80.08,148.74,0.9,0.8,790,0.1,19,1.1
+2023,2,16,2,0,-17.400000000000002,0.9500000000000001,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.382,79.96000000000001,145.37,0.9,0.8,790,0.1,19,0.9
+2023,2,16,2,30,-17.400000000000002,0.9500000000000001,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.38,79.96000000000001,141.19,0.9,0.8,790,0.1,20,0.8
+2023,2,16,3,0,-17.400000000000002,0.9500000000000001,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.379,79.62,136.43,0.91,0.8,791,0.1,21,0.7000000000000001
+2023,2,16,3,30,-17.400000000000002,0.9500000000000001,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.378,79.62,131.29,0.91,0.8,791,0.1,23,0.6000000000000001
+2023,2,16,4,0,-17.400000000000002,0.96,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.378,79.68,125.9,0.91,0.8,791,0.2,25,0.5
+2023,2,16,4,30,-17.400000000000002,0.96,0.023,0.62,0,0,0,0,0,-20.1,0,0,0,0,0.377,79.68,120.34,0.91,0.8,791,0.2,23,0.4
+2023,2,16,5,0,-17.400000000000002,0.96,0.023,0.62,0,0,0,0,0,-20,0,0,0,0,0.376,80.04,114.68,0.91,0.8,791,0.2,20,0.30000000000000004
+2023,2,16,5,30,-17.5,0.96,0.023,0.62,0,0,0,0,0,-20,0,0,0,0,0.375,80.72,108.99000000000001,0.91,0.8,791,0.2,147,0.2
+2023,2,16,6,0,-17.5,0.98,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.374,80.97,103.29,0.91,0.8,792,0.2,274,0.1
+2023,2,16,6,30,-17.2,0.98,0.022,0.62,0,0,0,0,0,-20,0,0,0,0,0.373,78.95,97.63,0.91,0.8,792,0.2,235,0.30000000000000004
+2023,2,16,7,0,-16.8,1,0.022,0.62,3,40,2,0,0,-19.700000000000003,3,30,4,2,0.373,78.23,92.06,0.91,0.8,792,0.2,196,0.4
+2023,2,16,7,30,-15.5,1,0.022,0.62,24,472,53,2,0,-19.700000000000003,23,357,21,45,0.373,70.19,86.42,0.91,0.8,792,0.2,221,0.5
+2023,2,16,8,0,-14.200000000000001,1.04,0.021,0.62,36,710,144,0,0,-19.200000000000003,45,606,7,138,0.374,65.88,81.22,0.91,0.8,793,0.2,245,0.5
+2023,2,16,8,30,-12.700000000000001,1.04,0.021,0.62,45,837,245,0,0,-19.200000000000003,45,837,0,245,0.374,58.31,76.17,0.91,0.8,793,0.2,279,0.8
+2023,2,16,9,0,-11.200000000000001,1.08,0.02,0.62,53,915,345,0,0,-17.900000000000002,53,915,0,345,0.374,57.85,71.39,0.91,0.8,793,0.2,314,1
+2023,2,16,9,30,-9.700000000000001,1.08,0.02,0.62,58,964,436,0,0,-17.900000000000002,58,964,0,436,0.373,51.36,66.94,0.91,0.8,793,0.2,322,1.2000000000000002
+2023,2,16,10,0,-8.3,1.11,0.019,0.62,63,994,515,0,0,-16.6,63,994,0,515,0.371,51.03,62.93,0.91,0.8,793,0.30000000000000004,330,1.4000000000000001
+2023,2,16,10,30,-7.2,1.11,0.019,0.62,66,1013,581,0,0,-16.6,66,1013,0,581,0.37,46.86,59.44,0.91,0.8,793,0.30000000000000004,332,1.3
+2023,2,16,11,0,-6.1000000000000005,1.1400000000000001,0.017,0.62,68,1031,636,0,0,-16,68,1031,0,636,0.368,45.6,56.58,0.91,0.8,793,0.30000000000000004,334,1.3
+2023,2,16,11,30,-5.300000000000001,1.1400000000000001,0.017,0.62,70,1043,676,0,0,-16,70,1043,0,676,0.366,42.910000000000004,54.45,0.91,0.8,793,0.30000000000000004,332,1.1
+2023,2,16,12,0,-4.5,1.16,0.016,0.62,69,1050,699,0,0,-15.5,69,1050,0,699,0.365,41.97,53.15,0.91,0.8,793,0.30000000000000004,329,1
+2023,2,16,12,30,-3.9000000000000004,1.16,0.016,0.62,70,1052,707,0,0,-15.5,70,1052,0,707,0.363,40.12,52.74,0.91,0.8,793,0.30000000000000004,323,0.9
+2023,2,16,13,0,-3.3000000000000003,1.18,0.016,0.62,70,1050,698,0,0,-15.200000000000001,70,1050,0,698,0.362,39.28,53.25,0.91,0.8,792,0.30000000000000004,316,0.7000000000000001
+2023,2,16,13,30,-2.9000000000000004,1.18,0.016,0.62,68,1043,672,0,0,-15.200000000000001,68,1043,0,672,0.36,38.13,54.64,0.91,0.8,792,0.30000000000000004,311,0.7000000000000001
+2023,2,16,14,0,-2.5,1.2,0.016,0.62,67,1031,631,0,0,-15,67,1031,0,631,0.358,37.61,56.84,0.91,0.8,792,0.30000000000000004,305,0.6000000000000001
+2023,2,16,14,30,-2.4000000000000004,1.2,0.016,0.62,63,1014,574,0,0,-15,63,1014,0,574,0.356,37.33,59.77,0.91,0.8,792,0.30000000000000004,284,0.6000000000000001
+2023,2,16,15,0,-2.2,1.21,0.017,0.62,60,989,504,0,0,-14.8,60,989,0,504,0.354,37.43,63.32,0.91,0.8,792,0.30000000000000004,264,0.6000000000000001
+2023,2,16,15,30,-2.5,1.21,0.017,0.62,55,953,422,0,0,-14.8,55,953,0,422,0.35100000000000003,38.27,67.38,0.91,0.8,792,0.30000000000000004,244,0.8
+2023,2,16,16,0,-2.7,1.22,0.017,0.62,49,902,330,0,0,-14.4,49,902,0,330,0.34900000000000003,40.19,71.87,0.9,0.8,792,0.30000000000000004,224,1
+2023,2,16,16,30,-4,1.22,0.017,0.62,42,824,232,0,0,-14.4,42,824,0,232,0.34600000000000003,44.28,76.68,0.9,0.8,792,0.30000000000000004,208,1.2000000000000002
+2023,2,16,17,0,-5.300000000000001,1.23,0.017,0.62,33,691,132,0,0,-11.600000000000001,36,644,7,128,0.343,61.24,81.75,0.9,0.8,793,0.30000000000000004,192,1.3
+2023,2,16,17,30,-6.2,1.23,0.017,0.62,21,408,43,2,0,-11.600000000000001,23,309,25,39,0.34,65.58,86.95,0.9,0.8,793,0.30000000000000004,191,1.6
+2023,2,16,18,0,-7.2,1.24,0.017,0.62,0,0,0,0,0,-12.600000000000001,0,0,4,0,0.338,65.24,92.61,0.9,0.8,793,0.30000000000000004,190,2
+2023,2,16,18,30,-7.9,1.24,0.017,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.336,68.96000000000001,98.19,0.9,0.8,794,0.30000000000000004,191,2.1
+2023,2,16,19,0,-8.700000000000001,1.24,0.017,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.335,69.85000000000001,103.85000000000001,0.9,0.8,794,0.30000000000000004,192,2.2
+2023,2,16,19,30,-9.3,1.24,0.017,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.334,73.21000000000001,109.54,0.9,0.8,794,0.30000000000000004,191,2.3000000000000003
+2023,2,16,20,0,-9.9,1.24,0.017,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.332,74.17,115.22,0.9,0.8,795,0.30000000000000004,190,2.3000000000000003
+2023,2,16,20,30,-10.4,1.24,0.017,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.331,77.16,120.86,0.9,0.8,795,0.30000000000000004,189,2.3000000000000003
+2023,2,16,21,0,-10.9,1.23,0.018000000000000002,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.33,77.51,126.39,0.9,0.8,795,0.30000000000000004,189,2.3000000000000003
+2023,2,16,21,30,-11.4,1.23,0.018000000000000002,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.329,80.67,131.74,0.9,0.8,795,0.30000000000000004,187,2.3000000000000003
+2023,2,16,22,0,-11.8,1.22,0.018000000000000002,0.62,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.327,79.88,136.82,0.89,0.8,795,0.30000000000000004,185,2.2
+2023,2,16,22,30,-12.100000000000001,1.22,0.018000000000000002,0.62,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.326,81.83,141.49,0.89,0.8,795,0.30000000000000004,183,2.2
+2023,2,16,23,0,-12.5,1.23,0.017,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.324,81.05,145.56,0.89,0.8,795,0.30000000000000004,180,2.1
+2023,2,16,23,30,-12.8,1.23,0.017,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.323,83.04,148.78,0.89,0.8,795,0.30000000000000004,178,2
+2023,2,17,0,0,-13.100000000000001,1.24,0.017,0.62,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.322,81.8,150.85,0.89,0.8,795,0.30000000000000004,176,1.9000000000000001
+2023,2,17,0,30,-13.4,1.24,0.017,0.62,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.323,83.82000000000001,151.5,0.89,0.8,795,0.30000000000000004,176,1.8
+2023,2,17,1,0,-13.600000000000001,1.24,0.017,0.62,0,0,0,0,0,-16,0,0,0,0,0.323,81.94,150.65,0.89,0.8,795,0.30000000000000004,176,1.8
+2023,2,17,1,30,-13.8,1.24,0.017,0.62,0,0,0,0,0,-16,0,0,0,0,0.323,83.29,148.42000000000002,0.89,0.8,795,0.30000000000000004,178,1.7000000000000002
+2023,2,17,2,0,-14,1.23,0.017,0.62,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.324,81.92,145.07,0.89,0.8,795,0.30000000000000004,181,1.7000000000000002
+2023,2,17,2,30,-14.100000000000001,1.23,0.017,0.62,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.323,82.60000000000001,140.9,0.89,0.8,795,0.30000000000000004,183,1.6
+2023,2,17,3,0,-14.3,1.23,0.018000000000000002,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.321,82.2,136.16,0.89,0.8,795,0.30000000000000004,186,1.6
+2023,2,17,3,30,-14.4,1.23,0.018000000000000002,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.319,82.88,131.04,0.89,0.8,795,0.30000000000000004,187,1.6
+2023,2,17,4,0,-14.5,1.22,0.018000000000000002,0.62,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.317,82.27,125.65,0.89,0.8,795,0.30000000000000004,189,1.5
+2023,2,17,4,30,-14.700000000000001,1.22,0.018000000000000002,0.62,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.317,83.63,120.10000000000001,0.89,0.8,795,0.30000000000000004,191,1.5
+2023,2,17,5,0,-14.8,1.21,0.02,0.62,0,0,0,0,0,-17,0,0,0,0,0.316,83.27,114.45,0.9,0.8,796,0.30000000000000004,194,1.4000000000000001
+2023,2,17,5,30,-14.9,1.21,0.02,0.62,0,0,0,0,0,-17,0,0,0,0,0.315,83.96000000000001,108.75,0.9,0.8,796,0.30000000000000004,197,1.4000000000000001
+2023,2,17,6,0,-14.9,1.2,0.023,0.62,0,0,0,0,0,-17.2,0,0,0,0,0.315,82.82000000000001,103.06,0.91,0.8,796,0.2,200,1.4000000000000001
+2023,2,17,6,30,-14.3,1.2,0.023,0.62,0,0,0,0,0,-17.2,0,0,0,0,0.313,78.84,97.4,0.91,0.8,796,0.2,203,1.5
+2023,2,17,7,0,-13.700000000000001,1.19,0.025,0.62,4,43,3,0,0,-16.900000000000002,4,43,0,3,0.312,76.73,91.81,0.91,0.8,796,0.2,206,1.7000000000000002
+2023,2,17,7,30,-12.200000000000001,1.19,0.025,0.62,25,482,57,0,0,-16.900000000000002,25,482,0,57,0.311,67.94,86.18,0.91,0.8,796,0.2,210,2.2
+2023,2,17,8,0,-10.8,1.2,0.025,0.62,38,714,150,0,0,-16.3,46,624,4,144,0.311,63.78,80.96000000000001,0.91,0.8,796,0.2,213,2.8000000000000003
+2023,2,17,8,30,-9,1.2,0.025,0.62,48,839,252,0,0,-16.3,59,774,0,247,0.311,55.4,75.91,0.91,0.8,797,0.2,216,3.3000000000000003
+2023,2,17,9,0,-7.2,1.2,0.024,0.62,55,916,352,0,0,-15.4,62,888,0,349,0.312,52.15,71.11,0.91,0.8,797,0.2,219,3.8000000000000003
+2023,2,17,9,30,-5.6000000000000005,1.2,0.024,0.62,62,967,445,0,0,-15.4,109,810,0,430,0.313,46.09,66.65,0.91,0.8,796,0.2,220,4.2
+2023,2,17,10,0,-4.1000000000000005,1.21,0.022,0.62,66,1003,527,0,0,-14.3,66,1003,0,527,0.314,45.1,62.620000000000005,0.91,0.8,796,0.2,221,4.5
+2023,2,17,10,30,-2.9000000000000004,1.21,0.022,0.62,69,1028,597,0,0,-14.3,69,1028,0,597,0.315,41.230000000000004,59.120000000000005,0.9,0.8,796,0.2,221,4.7
+2023,2,17,11,0,-1.8,1.22,0.019,0.62,70,1047,652,0,0,-13.100000000000001,70,1047,0,652,0.315,41.82,56.24,0.9,0.8,796,0.2,221,4.9
+2023,2,17,11,30,-0.9,1.22,0.019,0.62,73,1058,693,0,0,-13.100000000000001,73,1058,0,693,0.315,39.1,54.11,0.9,0.8,795,0.2,221,5.1000000000000005
+2023,2,17,12,0,0,1.21,0.019,0.62,74,1064,717,0,0,-12.200000000000001,74,1064,0,717,0.315,39.37,52.800000000000004,0.9,0.8,795,0.2,221,5.2
+2023,2,17,12,30,0.6000000000000001,1.21,0.019,0.62,75,1066,725,0,0,-12.200000000000001,75,1066,0,725,0.314,37.7,52.4,0.9,0.8,795,0.2,222,5.300000000000001
+2023,2,17,13,0,1.1,1.21,0.019,0.62,73,1064,715,0,7,-11.700000000000001,128,966,29,711,0.313,37.85,52.9,0.9,0.8,794,0.2,222,5.300000000000001
+2023,2,17,13,30,1.3,1.21,0.019,0.62,72,1057,689,0,7,-11.700000000000001,146,919,54,682,0.313,37.31,54.300000000000004,0.9,0.8,794,0.2,223,5.2
+2023,2,17,14,0,1.5,1.21,0.02,0.62,71,1044,647,0,7,-11.5,168,832,43,627,0.312,37.39,56.52,0.91,0.8,794,0.2,224,5.1000000000000005
+2023,2,17,14,30,1.3,1.21,0.02,0.62,68,1023,588,0,7,-11.5,164,793,29,567,0.312,37.93,59.47,0.91,0.8,794,0.2,223,4.9
+2023,2,17,15,0,1.1,1.2,0.022,0.62,65,996,517,0,7,-11.4,114,881,18,514,0.311,38.800000000000004,63.03,0.91,0.8,793,0.2,223,4.7
+2023,2,17,15,30,0.4,1.2,0.022,0.62,59,963,434,0,7,-11.4,106,822,29,426,0.311,40.81,67.11,0.91,0.8,793,0.2,221,4
+2023,2,17,16,0,-0.30000000000000004,1.2,0.021,0.62,53,915,342,0,7,-10.5,150,498,21,307,0.31,46.04,71.61,0.91,0.8,793,0.2,219,3.3000000000000003
+2023,2,17,16,30,-2.1,1.2,0.021,0.62,45,836,241,0,7,-10.5,138,253,0,197,0.309,52.52,76.44,0.91,0.8,793,0.2,211,2.4000000000000004
+2023,2,17,17,0,-3.9000000000000004,1.18,0.023,0.62,36,703,140,4,7,-9.4,85,94,57,99,0.308,65.72,81.52,0.92,0.79,793,0.2,203,1.5
+2023,2,17,17,30,-4.6000000000000005,1.18,0.023,0.62,23,414,47,7,7,-9.4,28,3,100,28,0.308,69.27,86.73,0.92,0.79,793,0.2,197,1.6
+2023,2,17,18,0,-5.2,1.17,0.025,0.62,0,0,0,1,6,-9.8,0,0,14,0,0.308,69.97,92.4,0.93,0.79,793,0.2,190,1.7000000000000002
+2023,2,17,18,30,-5.800000000000001,1.17,0.025,0.62,0,0,0,0,6,-9.8,0,0,0,0,0.309,73.23,97.98,0.93,0.79,793,0.2,189,1.8
+2023,2,17,19,0,-6.300000000000001,1.17,0.025,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.309,74.32000000000001,103.64,0.92,0.79,793,0.2,187,2
+2023,2,17,19,30,-6.9,1.17,0.025,0.62,0,0,0,0,6,-10.100000000000001,0,0,0,0,0.31,77.82000000000001,109.33,0.92,0.79,793,0.2,188,2
+2023,2,17,20,0,-7.4,1.17,0.023,0.62,0,0,0,0,6,-10.200000000000001,0,0,0,0,0.311,80.16,115.02,0.92,0.79,793,0.2,189,2.1
+2023,2,17,20,30,-7.800000000000001,1.17,0.023,0.62,0,0,0,0,6,-10.200000000000001,0,0,0,0,0.312,82.67,120.65,0.92,0.79,793,0.2,190,2
+2023,2,17,21,0,-8.3,1.16,0.022,0.62,0,0,0,0,6,-10.3,0,0,0,0,0.313,85.69,126.17,0.92,0.79,793,0.2,192,1.9000000000000001
+2023,2,17,21,30,-8.700000000000001,1.16,0.022,0.62,0,0,0,0,6,-10.3,0,0,0,0,0.314,88.41,131.51,0.92,0.79,793,0.2,194,1.8
+2023,2,17,22,0,-9,1.1400000000000001,0.023,0.62,0,0,0,0,6,-10.4,0,0,0,0,0.315,89.36,136.57,0.92,0.79,792,0.2,195,1.8
+2023,2,17,22,30,-9.200000000000001,1.1400000000000001,0.023,0.62,0,0,0,0,6,-10.4,0,0,0,0,0.316,90.77,141.22,0.92,0.79,792,0.2,198,1.8
+2023,2,17,23,0,-9.5,1.1300000000000001,0.023,0.62,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.317,90.75,145.27,0.92,0.79,792,0.2,200,1.8
+2023,2,17,23,30,-9.600000000000001,1.1300000000000001,0.023,0.62,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.318,91.47,148.46,0.92,0.79,792,0.2,201,1.7000000000000002
+2023,2,18,0,0,-9.700000000000001,1.12,0.025,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.318,89.87,150.51,0.93,0.79,791,0.2,203,1.7000000000000002
+2023,2,18,0,30,-9.700000000000001,1.12,0.025,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.319,89.87,151.15,0.93,0.79,791,0.2,204,1.6
+2023,2,18,1,0,-9.600000000000001,1.12,0.025,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.32,87.72,150.3,0.93,0.79,791,0.2,205,1.5
+2023,2,18,1,30,-9.600000000000001,1.12,0.025,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.321,87.72,148.08,0.93,0.79,791,0.2,207,1.5
+2023,2,18,2,0,-9.600000000000001,1.11,0.026000000000000002,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.323,86.84,144.76,0.93,0.79,790,0.2,210,1.5
+2023,2,18,2,30,-9.700000000000001,1.11,0.026000000000000002,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.324,87.52,140.61,0.93,0.79,790,0.2,212,1.4000000000000001
+2023,2,18,3,0,-9.8,1.11,0.027,0.62,0,0,0,0,7,-11.5,0,0,0,0,0.326,87.64,135.89000000000001,0.93,0.79,790,0.2,215,1.4000000000000001
+2023,2,18,3,30,-9.9,1.11,0.027,0.62,0,0,0,0,7,-11.5,0,0,0,0,0.328,88.34,130.78,0.93,0.79,790,0.2,215,1.4000000000000001
+2023,2,18,4,0,-10,1.1,0.027,0.62,0,0,0,0,7,-11.600000000000001,0,0,29,0,0.329,88.14,125.41,0.93,0.79,789,0.2,216,1.4000000000000001
+2023,2,18,4,30,-10.200000000000001,1.1,0.027,0.62,0,0,0,0,7,-11.600000000000001,0,0,14,0,0.331,89.54,119.86,0.93,0.79,789,0.2,215,1.5
+2023,2,18,5,0,-10.4,1.11,0.027,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.333,89.61,114.21000000000001,0.93,0.79,789,0.2,214,1.5
+2023,2,18,5,30,-10.700000000000001,1.11,0.027,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.334,91.76,108.52,0.93,0.79,789,0.2,212,1.5
+2023,2,18,6,0,-10.9,1.11,0.027,0.62,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.336,91.13,102.82000000000001,0.92,0.79,789,0.2,211,1.6
+2023,2,18,6,30,-10.4,1.11,0.027,0.62,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.337,87.58,97.16,0.92,0.79,789,0.2,210,1.7000000000000002
+2023,2,18,7,0,-9.9,1.1,0.027,0.62,4,44,3,2,7,-11.9,1,0,29,1,0.338,85.22,91.57000000000001,0.92,0.79,789,0.2,208,1.7000000000000002
+2023,2,18,7,30,-8.3,1.1,0.027,0.62,26,482,60,7,7,-11.9,29,1,100,29,0.339,75.18,85.94,0.93,0.79,789,0.2,209,2.4000000000000004
+2023,2,18,8,0,-6.7,1.1,0.029,0.62,40,709,154,2,7,-11.3,98,55,29,107,0.341,69.52,80.71000000000001,0.93,0.79,789,0.2,210,3.1
+2023,2,18,8,30,-5.2,1.1,0.029,0.62,50,830,256,0,7,-11.4,152,36,0,161,0.341,61.93,75.64,0.93,0.79,788,0.2,213,3.7
+2023,2,18,9,0,-3.7,1.1,0.031,0.62,59,904,356,0,7,-11.4,194,41,29,207,0.342,54.96,70.83,0.93,0.79,788,0.2,217,4.3
+2023,2,18,9,30,-2.4000000000000004,1.1,0.031,0.62,66,954,449,0,7,-11.4,277,203,0,358,0.342,49.9,66.35,0.93,0.79,788,0.2,220,4.9
+2023,2,18,10,0,-1.2000000000000002,1.1,0.033,0.62,73,987,532,0,7,-11.8,314,277,0,443,0.343,44.550000000000004,62.31,0.93,0.79,788,0.2,223,5.5
+2023,2,18,10,30,-0.2,1.1,0.033,0.62,78,1011,602,0,7,-11.8,329,377,0,524,0.343,41.42,58.79,0.93,0.79,788,0.2,224,5.9
+2023,2,18,11,0,0.7000000000000001,1.1,0.035,0.62,83,1023,656,0,7,-11.8,247,651,0,612,0.342,38.800000000000004,55.910000000000004,0.9400000000000001,0.79,788,0.2,224,6.2
+2023,2,18,11,30,1.3,1.1,0.035,0.62,85,1028,693,0,0,-11.8,85,1028,0,693,0.342,37.11,53.76,0.9400000000000001,0.79,787,0.30000000000000004,225,6.300000000000001
+2023,2,18,12,0,1.9000000000000001,1.11,0.035,0.62,86,1030,714,0,0,-11.700000000000001,86,1030,0,714,0.341,35.83,52.45,0.93,0.79,787,0.30000000000000004,225,6.5
+2023,2,18,12,30,2.2,1.11,0.035,0.62,86,1032,721,0,0,-11.700000000000001,86,1032,0,721,0.34,35.07,52.04,0.93,0.79,787,0.30000000000000004,225,6.6000000000000005
+2023,2,18,13,0,2.5,1.1300000000000001,0.034,0.62,86,1030,712,0,7,-11.600000000000001,197,798,7,682,0.339,34.56,52.56,0.93,0.79,786,0.30000000000000004,224,6.6000000000000005
+2023,2,18,13,30,2.6,1.1300000000000001,0.034,0.62,84,1023,686,0,7,-11.600000000000001,317,512,0,618,0.339,34.32,53.97,0.93,0.79,786,0.30000000000000004,223,6.6000000000000005
+2023,2,18,14,0,2.6,1.1400000000000001,0.035,0.62,82,1011,644,0,7,-11.5,201,738,29,612,0.338,34.54,56.2,0.93,0.79,786,0.30000000000000004,223,6.5
+2023,2,18,14,30,2.4000000000000004,1.1400000000000001,0.035,0.62,77,993,586,0,7,-11.5,235,592,7,538,0.338,34.99,59.160000000000004,0.93,0.79,785,0.30000000000000004,223,6.300000000000001
+2023,2,18,15,0,2.3000000000000003,1.1400000000000001,0.034,0.62,72,967,515,0,7,-11.3,186,633,21,476,0.339,35.88,62.74,0.93,0.79,785,0.30000000000000004,223,6.2
+2023,2,18,15,30,1.6,1.1400000000000001,0.034,0.62,65,932,432,0,7,-11.3,131,722,29,415,0.34,37.71,66.84,0.93,0.79,785,0.30000000000000004,221,5.4
+2023,2,18,16,0,0.9,1.1500000000000001,0.031,0.62,58,882,340,0,7,-10.3,91,751,46,331,0.34,43.050000000000004,71.35000000000001,0.93,0.79,785,0.30000000000000004,219,4.7
+2023,2,18,16,30,-0.8,1.1500000000000001,0.031,0.62,48,805,240,0,7,-10.3,58,755,57,238,0.341,48.69,76.19,0.92,0.79,785,0.30000000000000004,215,3.8000000000000003
+2023,2,18,17,0,-2.5,1.1500000000000001,0.027,0.62,37,679,140,3,7,-9.4,60,360,79,115,0.342,58.97,81.29,0.92,0.73,785,0.30000000000000004,212,3
+2023,2,18,17,30,-3.1,1.1500000000000001,0.027,0.62,24,401,48,3,0,-9.4,24,187,39,35,0.343,61.660000000000004,86.52,0.92,0.73,785,0.30000000000000004,212,3.3000000000000003
+2023,2,18,18,0,-3.7,1.1500000000000001,0.025,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.34400000000000003,62.26,92.18,0.91,0.73,786,0.30000000000000004,212,3.5
+2023,2,18,18,30,-4,1.1500000000000001,0.025,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.34500000000000003,63.67,97.77,0.92,0.73,786,0.30000000000000004,213,3.8000000000000003
+2023,2,18,19,0,-4.3,1.1400000000000001,0.026000000000000002,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.34600000000000003,63.77,103.43,0.92,0.73,786,0.30000000000000004,214,4
+2023,2,18,19,30,-4.7,1.1400000000000001,0.026000000000000002,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.34700000000000003,65.72,109.12,0.92,0.73,786,0.30000000000000004,215,3.9000000000000004
+2023,2,18,20,0,-5.2,1.1400000000000001,0.03,0.62,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.34800000000000003,67.97,114.81,0.93,0.73,786,0.30000000000000004,215,3.8000000000000003
+2023,2,18,20,30,-5.300000000000001,1.1400000000000001,0.03,0.62,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.35000000000000003,68.57000000000001,120.43,0.93,0.73,787,0.30000000000000004,215,3.7
+2023,2,18,21,0,-5.5,1.1300000000000001,0.033,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.35100000000000003,70.3,125.94,0.93,0.73,787,0.30000000000000004,214,3.6
+2023,2,18,21,30,-5.7,1.1300000000000001,0.033,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.353,71.38,131.27,0.93,0.73,787,0.30000000000000004,213,3.3000000000000003
+2023,2,18,22,0,-5.9,1.12,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.354,73.33,136.32,0.93,0.73,787,0.30000000000000004,211,3
+2023,2,18,22,30,-6.1000000000000005,1.12,0.033,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.356,74.46000000000001,140.95000000000002,0.93,0.73,787,0.4,209,2.7
+2023,2,18,23,0,-6.2,1.11,0.032,0.62,0,0,0,0,6,-9.700000000000001,0,0,0,0,0.358,76.10000000000001,144.97,0.93,0.73,787,0.4,207,2.4000000000000004
+2023,2,18,23,30,-6.4,1.11,0.032,0.62,0,0,0,0,6,-9.700000000000001,0,0,0,0,0.36,77.28,148.14000000000001,0.9400000000000001,0.73,787,0.4,206,2.3000000000000003
+2023,2,19,0,0,-6.5,1.1,0.033,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.361,79.03,150.16,0.9400000000000001,0.73,787,0.4,204,2.1
+2023,2,19,0,30,-6.6000000000000005,1.1,0.033,0.62,0,0,0,0,6,-9.5,0,0,0,0,0.362,79.64,150.8,0.9400000000000001,0.73,787,0.4,203,2.1
+2023,2,19,1,0,-6.7,1.08,0.036000000000000004,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.362,81.61,149.95000000000002,0.9400000000000001,0.73,787,0.4,202,2
+2023,2,19,1,30,-6.800000000000001,1.08,0.036000000000000004,0.62,0,0,0,0,6,-9.3,0,0,0,0,0.363,82.24,147.75,0.9400000000000001,0.73,787,0.5,205,2
+2023,2,19,2,0,-6.800000000000001,1.07,0.038,0.62,0,0,0,0,6,-9.1,0,0,0,0,0.363,83.53,144.44,0.9500000000000001,0.73,787,0.5,207,2
+2023,2,19,2,30,-6.800000000000001,1.07,0.038,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.364,83.53,140.32,0.9500000000000001,0.73,787,0.5,211,2
+2023,2,19,3,0,-6.800000000000001,1.07,0.037,0.62,0,0,0,0,7,-9,0,0,0,0,0.364,84.60000000000001,135.62,0.9500000000000001,0.73,787,0.5,215,2
+2023,2,19,3,30,-6.800000000000001,1.07,0.037,0.62,0,0,0,0,7,-9,0,0,0,0,0.366,84.60000000000001,130.52,0.9500000000000001,0.73,787,0.5,218,2
+2023,2,19,4,0,-6.800000000000001,1.07,0.037,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.367,85.59,125.15,0.9500000000000001,0.73,787,0.5,221,2
+2023,2,19,4,30,-6.7,1.07,0.037,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.369,84.93,119.61,0.9500000000000001,0.73,787,0.5,223,2
+2023,2,19,5,0,-6.7,1.08,0.039,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.37,85.96000000000001,113.97,0.9500000000000001,0.73,787,0.6000000000000001,225,2
+2023,2,19,5,30,-6.7,1.08,0.039,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.371,85.96000000000001,108.28,0.9500000000000001,0.73,787,0.5,227,1.9000000000000001
+2023,2,19,6,0,-6.7,1.09,0.037,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.373,86.72,102.58,0.9500000000000001,0.73,787,0.5,229,1.9000000000000001
+2023,2,19,6,30,-6.4,1.09,0.037,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.373,84.85000000000001,96.91,0.9400000000000001,0.73,788,0.5,233,2
+2023,2,19,7,0,-6.1000000000000005,1.1,0.031,0.62,4,40,3,3,7,-8.4,1,0,43,1,0.373,84.01,91.32000000000001,0.9400000000000001,0.73,788,0.5,238,2
+2023,2,19,7,30,-5.1000000000000005,1.1,0.031,0.62,26,453,60,7,7,-8.4,26,0,100,26,0.373,77.86,85.69,0.93,0.73,788,0.5,246,2.6
+2023,2,19,8,0,-4,1.09,0.026000000000000002,0.62,38,685,152,2,8,-8.5,88,79,29,101,0.374,70.65,80.44,0.93,0.73,789,0.5,253,3.1
+2023,2,19,8,30,-3,1.09,0.026000000000000002,0.62,48,813,253,0,5,-8.5,158,98,0,183,0.375,65.57000000000001,75.36,0.92,0.73,789,0.4,262,3.5
+2023,2,19,9,0,-2,1.08,0.024,0.62,54,890,351,0,4,-9,233,64,0,254,0.377,58.730000000000004,70.54,0.92,0.73,789,0.4,270,3.9000000000000004
+2023,2,19,9,30,-1.3,1.08,0.024,0.62,61,939,442,0,4,-9,266,41,0,283,0.378,55.79,66.05,0.92,0.73,789,0.4,269,4.1000000000000005
+2023,2,19,10,0,-0.7000000000000001,1.05,0.023,0.62,66,974,523,0,0,-9.4,153,704,0,484,0.379,51.76,62,0.92,0.73,789,0.4,267,4.4
+2023,2,19,10,30,-0.1,1.05,0.023,0.62,70,997,592,0,0,-9.4,70,997,0,592,0.378,49.550000000000004,58.46,0.92,0.73,789,0.4,261,4.7
+2023,2,19,11,0,0.6000000000000001,1.01,0.025,0.62,74,1013,647,0,0,-9.700000000000001,74,1013,0,647,0.377,45.87,55.57,0.92,0.73,789,0.4,256,4.9
+2023,2,19,11,30,1.2000000000000002,1.01,0.025,0.62,77,1024,687,0,0,-9.8,77,1024,0,687,0.375,43.88,53.410000000000004,0.92,0.73,788,0.4,251,5.2
+2023,2,19,12,0,1.8,1.04,0.025,0.62,77,1030,710,0,0,-9.9,77,1030,0,710,0.373,41.550000000000004,52.1,0.93,0.73,788,0.4,246,5.5
+2023,2,19,12,30,2.2,1.04,0.025,0.62,78,1033,718,0,0,-9.9,78,1033,0,718,0.37,40.38,51.69,0.92,0.73,788,0.4,245,5.7
+2023,2,19,13,0,2.7,1.07,0.023,0.62,76,1032,708,0,0,-9.9,88,1010,14,707,0.366,39.03,52.21,0.92,0.73,787,0.4,243,5.9
+2023,2,19,13,30,3,1.07,0.023,0.62,76,1020,681,0,7,-9.9,217,701,0,633,0.363,38.21,53.63,0.93,0.73,787,0.5,243,6
+2023,2,19,14,0,3.2,0.9400000000000001,0.027,0.62,74,1001,636,0,7,-9.700000000000001,233,577,7,557,0.36,38.13,55.870000000000005,0.93,0.73,787,0.5,243,6
+2023,2,19,14,30,3.2,0.9400000000000001,0.027,0.62,72,983,580,0,0,-9.700000000000001,88,941,7,575,0.357,38.13,58.85,0.92,0.73,787,0.5,244,6
+2023,2,19,15,0,3.1,0.9,0.025,0.62,66,960,510,0,0,-9.4,83,919,7,508,0.354,39.52,62.45,0.92,0.73,786,0.5,245,5.9
+2023,2,19,15,30,2.5,0.9,0.025,0.62,60,925,428,0,0,-9.4,64,915,0,428,0.352,41.230000000000004,66.57000000000001,0.92,0.73,786,0.5,245,5.2
+2023,2,19,16,0,1.8,0.89,0.023,0.62,53,875,337,0,0,-8.5,53,875,36,337,0.35100000000000003,46.46,71.09,0.92,0.73,786,0.5,246,4.4
+2023,2,19,16,30,0,0.89,0.023,0.62,45,798,239,0,7,-8.5,80,620,50,231,0.35000000000000003,52.95,75.95,0.92,0.73,787,0.5,247,3.5
+2023,2,19,17,0,-1.9000000000000001,0.92,0.022,0.62,36,671,140,3,7,-7.800000000000001,80,99,43,95,0.34900000000000003,63.980000000000004,81.05,0.92,0.68,787,0.5,248,2.5
+2023,2,19,17,30,-2.5,0.92,0.022,0.62,23,435,51,7,6,-7.800000000000001,21,0,100,21,0.34800000000000003,66.88,86.3,0.92,0.68,787,0.5,247,2.5
+2023,2,19,18,0,-3.1,0.96,0.022,0.62,3,36,2,2,6,-8,1,0,29,1,0.34700000000000003,68.82000000000001,91.96000000000001,0.92,0.68,787,0.5,247,2.5
+2023,2,19,18,30,-3.4000000000000004,0.96,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.34600000000000003,70.38,97.56,0.92,0.68,787,0.6000000000000001,247,2.4000000000000004
+2023,2,19,19,0,-3.7,0.96,0.02,0.62,0,0,0,0,6,-7.9,0,0,0,0,0.34500000000000003,72.85000000000001,103.22,0.92,0.68,788,0.6000000000000001,247,2.3000000000000003
+2023,2,19,19,30,-3.9000000000000004,0.96,0.02,0.62,0,0,0,0,6,-7.9,0,0,0,0,0.34400000000000003,73.95,108.92,0.92,0.68,788,0.6000000000000001,245,2.2
+2023,2,19,20,0,-4.2,0.99,0.017,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.342,76.27,114.60000000000001,0.92,0.68,788,0.6000000000000001,243,2.1
+2023,2,19,20,30,-4.3,0.99,0.017,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.341,76.85000000000001,120.22,0.92,0.68,788,0.6000000000000001,235,2.3000000000000003
+2023,2,19,21,0,-4.3,1.03,0.015,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.341,77.52,125.72,0.92,0.68,788,0.6000000000000001,228,2.5
+2023,2,19,21,30,-4.3,1.03,0.015,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.34,77.52,131.04,0.92,0.68,788,0.6000000000000001,224,2.9000000000000004
+2023,2,19,22,0,-4.4,1.05,0.014,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.34,78.99,136.07,0.92,0.68,788,0.6000000000000001,219,3.4000000000000004
+2023,2,19,22,30,-4.6000000000000005,1.05,0.014,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.339,80.19,140.67000000000002,0.92,0.68,788,0.6000000000000001,217,3.4000000000000004
+2023,2,19,23,0,-4.9,1.05,0.014,0.62,0,0,0,0,6,-7.300000000000001,0,0,0,0,0.338,83.43,144.67000000000002,0.91,0.68,788,0.6000000000000001,215,3.4000000000000004
+2023,2,19,23,30,-5.2,1.05,0.014,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.337,85.35000000000001,147.81,0.91,0.68,788,0.6000000000000001,214,3.3000000000000003
+2023,2,20,0,0,-5.5,1.05,0.014,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.337,87.78,149.81,0.91,0.68,788,0.6000000000000001,214,3.2
+2023,2,20,0,30,-5.800000000000001,1.05,0.014,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.336,89.8,150.44,0.92,0.68,788,0.6000000000000001,214,2.9000000000000004
+2023,2,20,1,0,-6,1.05,0.018000000000000002,0.62,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.334,90.54,149.6,0.93,0.68,788,0.7000000000000001,214,2.6
+2023,2,20,1,30,-6,1.05,0.018000000000000002,0.62,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.332,90.54,147.41,0.93,0.68,788,0.7000000000000001,212,2.6
+2023,2,20,2,0,-6.1000000000000005,1.05,0.021,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.329,90.46000000000001,144.12,0.93,0.68,788,0.7000000000000001,210,2.5
+2023,2,20,2,30,-6.1000000000000005,1.05,0.021,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.326,90.46000000000001,140.02,0.93,0.68,788,0.7000000000000001,215,2.4000000000000004
+2023,2,20,3,0,-6.1000000000000005,1.06,0.018000000000000002,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.323,89.38,135.33,0.93,0.68,788,0.7000000000000001,220,2.3000000000000003
+2023,2,20,3,30,-6,1.06,0.018000000000000002,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.322,88.71000000000001,130.25,0.93,0.68,788,0.7000000000000001,221,2.4000000000000004
+2023,2,20,4,0,-5.9,1.05,0.018000000000000002,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.32,86.10000000000001,124.9,0.93,0.68,788,0.8,222,2.5
+2023,2,20,4,30,-5.800000000000001,1.05,0.018000000000000002,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.32,85.45,119.36,0.9400000000000001,0.68,788,0.8,221,2.6
+2023,2,20,5,0,-5.7,1.05,0.02,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.319,84.5,113.72,0.9400000000000001,0.68,788,0.8,220,2.7
+2023,2,20,5,30,-5.6000000000000005,1.05,0.02,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.319,83.86,108.03,0.9400000000000001,0.68,788,0.8,219,2.7
+2023,2,20,6,0,-5.5,1.05,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.319,82.8,102.33,0.9400000000000001,0.68,788,0.8,218,2.8000000000000003
+2023,2,20,6,30,-5,1.05,0.022,0.62,0,0,0,0,6,-8,0,0,0,0,0.318,79.72,96.66,0.9400000000000001,0.68,788,0.8,218,3
+2023,2,20,7,0,-4.6000000000000005,1.07,0.022,0.62,7,80,6,3,6,-7.800000000000001,2,0,43,2,0.317,78.37,91.06,0.9400000000000001,0.68,788,0.8,217,3.2
+2023,2,20,7,30,-3.6,1.07,0.022,0.62,25,473,63,7,6,-7.800000000000001,19,0,100,19,0.317,72.71000000000001,85.43,0.9400000000000001,0.68,788,0.8,217,3.7
+2023,2,20,8,0,-2.7,1.1,0.021,0.62,38,683,154,1,6,-7.300000000000001,45,2,14,45,0.317,70.61,80.18,0.9400000000000001,0.68,788,0.8,217,4.2
+2023,2,20,8,30,-1.6,1.1,0.021,0.62,45,801,251,0,6,-7.300000000000001,82,9,0,84,0.317,65.11,75.08,0.93,0.68,788,0.8,219,4.6000000000000005
+2023,2,20,9,0,-0.5,1.1,0.019,0.62,51,875,347,2,7,-6.7,128,97,36,161,0.318,62.86,70.25,0.93,0.68,788,0.8,222,5.1000000000000005
+2023,2,20,9,30,1,1.1,0.019,0.62,56,924,436,2,7,-6.7,134,16,29,141,0.318,56.39,65.75,0.93,0.68,788,0.8,231,5.4
+2023,2,20,10,0,2.5,1.04,0.017,0.62,60,960,515,0,7,-5.7,216,72,0,250,0.318,54.6,61.68,0.92,0.68,788,0.8,240,5.800000000000001
+2023,2,20,10,30,3.4000000000000004,1.04,0.017,0.62,66,980,583,0,7,-5.7,273,69,0,309,0.317,51.24,58.13,0.93,0.68,788,0.8,248,5.7
+2023,2,20,11,0,4.4,1.02,0.023,0.62,72,990,637,0,6,-4.800000000000001,216,5,0,219,0.315,51.31,55.22,0.9400000000000001,0.68,788,0.8,256,5.6000000000000005
+2023,2,20,11,30,4.7,1.02,0.023,0.62,74,1002,676,0,6,-4.800000000000001,254,8,0,259,0.313,50.25,53.06,0.9400000000000001,0.68,788,0.8,258,5.300000000000001
+2023,2,20,12,0,5.1000000000000005,1.03,0.023,0.62,75,1008,699,0,6,-4.2,298,30,0,317,0.312,51.050000000000004,51.74,0.9400000000000001,0.68,788,0.8,260,5
+2023,2,20,12,30,5.2,1.03,0.023,0.62,76,1010,707,0,7,-4.2,375,173,0,483,0.311,50.69,51.33,0.9400000000000001,0.68,788,0.8,261,4.6000000000000005
+2023,2,20,13,0,5.300000000000001,1.03,0.022,0.62,74,1008,697,0,7,-3.7,273,519,7,594,0.31,52.2,51.86,0.9400000000000001,0.68,788,0.8,261,4.3
+2023,2,20,13,30,5.2,1.03,0.022,0.62,74,1000,672,0,5,-3.7,301,488,14,593,0.309,52.5,53.29,0.9400000000000001,0.68,787,0.8,257,3.9000000000000004
+2023,2,20,14,0,5.1000000000000005,1.01,0.024,0.62,72,988,631,0,8,-3.3000000000000003,273,455,21,530,0.308,54.58,55.550000000000004,0.9400000000000001,0.68,787,0.8,254,3.6
+2023,2,20,14,30,4.9,1.01,0.024,0.62,68,972,575,0,7,-3.3000000000000003,301,303,0,459,0.309,55.34,58.54,0.9400000000000001,0.68,787,0.8,244,3.3000000000000003
+2023,2,20,15,0,4.7,0.9500000000000001,0.022,0.62,63,948,506,0,8,-2.9000000000000004,225,158,0,299,0.309,58.01,62.160000000000004,0.93,0.68,787,0.8,235,3.1
+2023,2,20,15,30,4.1000000000000005,0.9500000000000001,0.022,0.62,58,916,426,0,7,-2.9000000000000004,201,170,0,269,0.31,60.49,66.29,0.92,0.68,787,0.8,228,2.5
+2023,2,20,16,0,3.4000000000000004,0.93,0.018000000000000002,0.62,50,872,336,0,8,-1.9000000000000001,151,134,0,195,0.31,68.5,70.83,0.92,0.68,787,0.8,222,1.9000000000000001
+2023,2,20,16,30,1.8,0.93,0.018000000000000002,0.62,44,795,240,0,7,-1.9000000000000001,105,162,4,145,0.31,76.73,75.7,0.92,0.68,787,0.8,225,1.7000000000000002
+2023,2,20,17,0,0.2,0.96,0.019,0.62,34,668,141,3,7,-3.2,57,7,43,58,0.31,77.79,80.82000000000001,0.92,0.66,787,0.8,228,1.4000000000000001
+2023,2,20,17,30,-0.4,0.96,0.019,0.62,23,437,53,7,7,-3.2,21,0,100,21,0.31,81.25,86.09,0.92,0.66,787,0.8,229,1.4000000000000001
+2023,2,20,18,0,-1.1,0.9400000000000001,0.021,0.62,4,37,3,2,7,-3.9000000000000004,1,0,29,1,0.311,81.27,91.75,0.92,0.66,787,0.8,230,1.5
+2023,2,20,18,30,-1.5,0.9400000000000001,0.021,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.311,83.69,97.35000000000001,0.92,0.66,787,0.8,226,1.5
+2023,2,20,19,0,-2,0.92,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.311,86.08,103.02,0.92,0.66,787,0.8,221,1.5
+2023,2,20,19,30,-2.3000000000000003,0.92,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.31,88.01,108.71000000000001,0.92,0.66,787,0.8,226,1.5
+2023,2,20,20,0,-2.6,0.89,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.309,89.76,114.39,0.92,0.66,787,0.8,231,1.5
+2023,2,20,20,30,-2.8000000000000003,0.89,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.309,91.10000000000001,120,0.92,0.66,787,0.8,232,1.5
+2023,2,20,21,0,-3,0.87,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.308,92.69,125.5,0.92,0.66,787,0.7000000000000001,233,1.6
+2023,2,20,21,30,-3.2,0.87,0.019,0.62,0,0,0,0,0,-4,0,0,0,0,0.308,93.96000000000001,130.8,0.92,0.66,786,0.7000000000000001,227,1.6
+2023,2,20,22,0,-3.4000000000000004,0.87,0.02,0.62,0,0,0,0,7,-4,0,0,0,0,0.308,95.89,135.81,0.92,0.66,786,0.7000000000000001,221,1.7000000000000002
+2023,2,20,22,30,-3.5,0.87,0.02,0.62,0,0,0,0,7,-4,0,0,0,0,0.307,96.61,140.4,0.92,0.66,786,0.7000000000000001,218,2
+2023,2,20,23,0,-3.6,0.85,0.02,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.307,98.12,144.37,0.92,0.66,785,0.7000000000000001,214,2.3000000000000003
+2023,2,20,23,30,-3.6,0.85,0.02,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.306,98.12,147.48,0.92,0.66,785,0.7000000000000001,214,2.5
+2023,2,21,0,0,-3.7,0.87,0.02,0.62,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.305,99.49000000000001,149.47,0.92,0.66,784,0.7000000000000001,214,2.8000000000000003
+2023,2,21,0,30,-3.7,0.87,0.02,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.305,99.49000000000001,150.08,0.92,0.66,784,0.7000000000000001,213,3.1
+2023,2,21,1,0,-3.8000000000000003,0.89,0.02,0.62,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.304,99.87,149.24,0.92,0.66,783,0.7000000000000001,212,3.4000000000000004
+2023,2,21,1,30,-3.8000000000000003,0.89,0.02,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.303,99.87,147.07,0.92,0.66,783,0.7000000000000001,210,3.6
+2023,2,21,2,0,-3.8000000000000003,0.91,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.301,98.65,143.8,0.92,0.66,782,0.7000000000000001,209,3.9000000000000004
+2023,2,21,2,30,-3.9000000000000004,0.91,0.02,0.62,0,0,0,0,0,-4,0,0,0,0,0.3,99.39,139.71,0.92,0.66,782,0.7000000000000001,208,3.9000000000000004
+2023,2,21,3,0,-4,0.91,0.022,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.299,98.35000000000001,135.05,0.92,0.66,781,0.7000000000000001,207,3.9000000000000004
+2023,2,21,3,30,-4.1000000000000005,0.91,0.022,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.297,99.09,129.98,0.92,0.66,781,0.7000000000000001,205,3.8000000000000003
+2023,2,21,4,0,-4.2,0.91,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.296,97.96000000000001,124.63000000000001,0.92,0.66,780,0.8,203,3.8000000000000003
+2023,2,21,4,30,-4.3,0.91,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.294,98.7,119.11,0.93,0.66,780,0.8,203,3.7
+2023,2,21,5,0,-4.4,0.93,0.024,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.293,97.59,113.47,0.93,0.66,779,0.8,202,3.6
+2023,2,21,5,30,-4.5,0.93,0.024,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.292,98.32000000000001,107.78,0.93,0.66,779,0.8,201,3.6
+2023,2,21,6,0,-4.6000000000000005,0.9500000000000001,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.291,97.4,102.08,0.93,0.66,779,0.9,200,3.5
+2023,2,21,6,30,-4.1000000000000005,0.9500000000000001,0.025,0.62,0,0,0,0,7,-5,0,0,0,0,0.29,93.68,96.41,0.93,0.66,778,0.9,200,3.9000000000000004
+2023,2,21,7,0,-3.5,0.96,0.025,0.62,6,80,6,3,7,-5,3,0,43,3,0.29,89.68,90.31,0.93,0.66,778,0.9,199,4.4
+2023,2,21,7,30,-2.3000000000000003,0.96,0.025,0.62,27,468,66,7,7,-4.9,30,17,96,31,0.289,82.03,85.18,0.9400000000000001,0.66,778,0.9,201,4.9
+2023,2,21,8,0,-1,0.98,0.026000000000000002,0.62,39,672,157,1,7,-4.2,93,133,14,116,0.289,78.76,79.91,0.9400000000000001,0.66,777,0.9,202,5.5
+2023,2,21,8,30,0.4,0.98,0.026000000000000002,0.62,49,786,255,0,7,-4.2,102,480,11,228,0.289,71.14,74.8,0.9400000000000001,0.66,777,1,207,6.5
+2023,2,21,9,0,1.9000000000000001,1,0.028,0.62,57,856,350,0,7,-3,155,345,0,273,0.28800000000000003,69.82000000000001,69.95,0.9400000000000001,0.66,776,1,213,7.4
+2023,2,21,9,30,2.7,1,0.028,0.62,63,902,438,0,7,-3,198,92,0,236,0.28800000000000003,65.96000000000001,65.44,0.9500000000000001,0.66,776,1,217,8
+2023,2,21,10,0,3.5,1.01,0.031,0.62,69,934,517,0,6,-2.4000000000000004,204,29,0,218,0.28700000000000003,65.3,61.35,0.9500000000000001,0.66,775,1,220,8.6
+2023,2,21,10,30,3.6,1.01,0.031,0.62,76,953,584,0,7,-2.4000000000000004,259,93,0,309,0.28700000000000003,64.76,57.800000000000004,0.9500000000000001,0.66,774,1,221,8.700000000000001
+2023,2,21,11,0,3.8000000000000003,1.01,0.04,0.62,82,963,636,0,6,-2.2,270,23,0,283,0.28700000000000003,64.89,54.870000000000005,0.96,0.66,774,1,222,8.8
+2023,2,21,11,30,3.7,1.01,0.04,0.62,84,975,675,0,6,-2.2,315,84,0,366,0.28600000000000003,65.26,52.7,0.96,0.66,773,1,221,8.700000000000001
+2023,2,21,12,0,3.7,1.02,0.04,0.62,86,981,698,0,6,-2.1,269,22,0,283,0.28600000000000003,65.74,51.38,0.96,0.66,772,1.1,220,8.700000000000001
+2023,2,21,12,30,3.7,1.02,0.04,0.62,85,984,705,0,6,-2.1,289,37,0,312,0.28600000000000003,65.65,50.97,0.96,0.66,771,1.1,220,8.700000000000001
+2023,2,21,13,0,3.7,1.01,0.038,0.62,84,984,697,0,6,-2,232,5,0,235,0.28500000000000003,66.29,51.5,0.96,0.66,771,1,220,8.700000000000001
+2023,2,21,13,30,3.7,1.01,0.038,0.62,84,976,672,0,7,-2,256,13,0,264,0.28500000000000003,66.21000000000001,52.94,0.96,0.66,770,1,219,8.700000000000001
+2023,2,21,14,0,3.8000000000000003,1,0.039,0.62,81,964,631,0,7,-1.9000000000000001,326,88,0,376,0.28500000000000003,66.58,55.22,0.96,0.66,770,1,219,8.700000000000001
+2023,2,21,14,30,3.5,1,0.039,0.62,77,946,575,0,6,-1.9000000000000001,233,18,0,242,0.28500000000000003,67.91,58.24,0.96,0.66,769,1,218,8.4
+2023,2,21,15,0,3.3000000000000003,1,0.038,0.62,72,920,506,0,6,-1.7000000000000002,162,3,0,163,0.28600000000000003,69.89,61.870000000000005,0.96,0.66,769,1,218,8.1
+2023,2,21,15,30,2.6,1,0.038,0.62,67,883,426,0,6,-1.7000000000000002,131,2,0,132,0.28700000000000003,73.44,66.02,0.96,0.66,769,1,216,6.9
+2023,2,21,16,0,2,0.99,0.038,0.62,60,828,335,0,6,-1.2000000000000002,98,2,0,99,0.28800000000000003,79.47,70.58,0.96,0.66,768,1,214,5.800000000000001
+2023,2,21,16,30,1,0.99,0.038,0.62,53,741,239,0,9,-1.2000000000000002,57,0,0,57,0.289,85.36,75.46000000000001,0.96,0.66,768,1,210,4.9
+2023,2,21,17,0,0.1,0.99,0.046,0.62,43,599,141,3,6,-1,36,0,43,36,0.29,92.19,80.59,0.96,0.65,768,1,205,3.9000000000000004
+2023,2,21,17,30,-0.2,0.99,0.046,0.62,28,353,53,7,6,-1,21,0,100,21,0.291,94.22,85.87,0.96,0.65,768,1,200,3.9000000000000004
+2023,2,21,18,0,-0.5,0.98,0.054,0.62,4,24,3,2,7,-0.9,1,0,29,1,0.292,97.32000000000001,91.53,0.96,0.65,768,1,195,3.9000000000000004
+2023,2,21,18,30,-0.6000000000000001,0.98,0.054,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.293,97.91,97.14,0.96,0.65,767,1,191,4.3
+2023,2,21,19,0,-0.7000000000000001,0.97,0.057,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.293,98.61,102.81,0.96,0.65,767,1,187,4.6000000000000005
+2023,2,21,19,30,-0.7000000000000001,0.97,0.057,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.294,98.61,108.5,0.97,0.65,767,0.9,186,4.800000000000001
+2023,2,21,20,0,-0.7000000000000001,1,0.064,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.295,97.25,114.18,0.97,0.65,766,0.9,186,5
+2023,2,21,20,30,-0.7000000000000001,1,0.064,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.297,97.25,119.78,0.97,0.65,766,0.9,185,5
+2023,2,21,21,0,-0.7000000000000001,1,0.063,0.62,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.298,96.23,125.27,0.97,0.65,766,0.9,184,5
+2023,2,21,21,30,-0.7000000000000001,1,0.063,0.62,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.3,96.10000000000001,130.56,0.96,0.65,765,0.9,182,5
+2023,2,21,22,0,-0.7000000000000001,0.97,0.056,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.302,95.68,135.56,0.96,0.65,765,0.9,179,4.9
+2023,2,21,22,30,-0.8,0.97,0.056,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.305,96.38,140.12,0.96,0.65,765,0.9,176,4.9
+2023,2,21,23,0,-0.8,0.9500000000000001,0.06,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.307,96.46000000000001,144.07,0.96,0.65,764,0.9,172,4.9
+2023,2,21,23,30,-0.7000000000000001,0.9500000000000001,0.06,0.62,0,0,0,0,6,-1.3,0,0,0,0,0.309,95.76,147.15,0.97,0.65,764,0.9,168,5.1000000000000005
+2023,2,22,0,0,-0.7000000000000001,0.96,0.078,0.62,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.311,96.65,149.11,0.97,0.65,763,0.9,165,5.300000000000001
+2023,2,22,0,30,-0.6000000000000001,0.96,0.078,0.62,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.313,95.83,149.72,0.97,0.65,762,0.9,165,5.7
+2023,2,22,1,0,-0.4,0.9500000000000001,0.09,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.315,96.10000000000001,148.88,0.97,0.65,762,0.9,165,6
+2023,2,22,1,30,-0.4,0.9500000000000001,0.09,0.62,0,0,0,0,6,-0.9,0,0,0,0,0.316,96.10000000000001,146.72,0.97,0.65,762,0.9,167,6.300000000000001
+2023,2,22,2,0,-0.4,0.9500000000000001,0.09,0.62,0,0,0,0,7,-0.8,0,0,0,0,0.317,96.97,143.47,0.97,0.65,761,0.9,169,6.6000000000000005
+2023,2,22,2,30,-0.30000000000000004,0.9500000000000001,0.09,0.62,0,0,0,0,6,-0.8,0,0,0,0,0.318,96.27,139.4,0.96,0.65,761,0.9,174,7.300000000000001
+2023,2,22,3,0,-0.30000000000000004,0.97,0.075,0.62,0,0,0,0,6,-0.8,0,0,0,0,0.319,96.08,134.75,0.96,0.65,761,0.8,179,7.9
+2023,2,22,3,30,-0.2,0.97,0.075,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.32,95.26,129.7,0.96,0.65,760,0.8,180,8
+2023,2,22,4,0,-0.2,0.97,0.055,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.321,93.92,124.37,0.9500000000000001,0.65,760,0.8,182,8
+2023,2,22,4,30,-0.30000000000000004,0.97,0.055,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.322,94.61,118.85000000000001,0.9400000000000001,0.65,760,0.7000000000000001,184,8
+2023,2,22,5,0,-0.4,0.9500000000000001,0.038,0.62,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.323,93.02,113.22,0.9400000000000001,0.65,760,0.7000000000000001,185,7.9
+2023,2,22,5,30,-0.6000000000000001,0.9500000000000001,0.038,0.62,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.325,94.39,107.53,0.93,0.65,760,0.7000000000000001,186,7.6000000000000005
+2023,2,22,6,0,-0.8,0.96,0.032,0.62,0,0,0,0,7,-1.8,0,0,0,0,0.326,93.10000000000001,101.83,0.93,0.65,760,0.6000000000000001,187,7.300000000000001
+2023,2,22,6,30,-0.6000000000000001,0.96,0.032,0.62,0,0,0,0,6,-1.8,0,0,0,0,0.328,91.76,96.15,0.93,0.65,760,0.6000000000000001,186,7
+2023,2,22,7,0,-0.4,0.9400000000000001,0.034,0.62,7,79,7,3,6,-1.8,3,0,43,3,0.329,90.52,90.10000000000001,0.93,0.65,759,0.6000000000000001,185,6.800000000000001
+2023,2,22,7,30,0.1,0.9400000000000001,0.034,0.62,29,447,69,7,6,-1.8,19,0,100,19,0.329,87.3,84.92,0.9400000000000001,0.65,759,0.7000000000000001,180,6.6000000000000005
+2023,2,22,8,0,0.7000000000000001,0.88,0.049,0.62,46,636,160,1,9,-1.2000000000000002,35,0,14,35,0.33,87.39,79.63,0.9400000000000001,0.65,759,0.7000000000000001,176,6.4
+2023,2,22,8,30,0.9,0.88,0.049,0.62,59,745,258,0,6,-1.2000000000000002,56,0,0,56,0.33,86.02,74.51,0.9500000000000001,0.65,758,0.7000000000000001,178,7.800000000000001
+2023,2,22,9,0,1,0.8,0.066,0.62,72,807,353,0,9,-1.5,97,1,0,97,0.331,83.29,69.65,0.9500000000000001,0.65,758,0.7000000000000001,181,9.200000000000001
+2023,2,22,9,30,0.7000000000000001,0.8,0.066,0.62,81,863,444,0,9,-1.5,120,2,0,121,0.334,85.11,65.13,0.9500000000000001,0.65,758,0.7000000000000001,196,10.200000000000001
+2023,2,22,10,0,0.4,0.8,0.067,0.62,89,905,527,0,6,-3.6,180,10,0,185,0.336,74.29,61.03,0.9500000000000001,0.65,758,0.6000000000000001,211,11.200000000000001
+2023,2,22,10,30,0.2,0.8,0.067,0.62,91,947,600,0,7,-3.6,234,30,4,250,0.34,75.48,57.46,0.9400000000000001,0.65,759,0.5,221,10.5
+2023,2,22,11,0,0,0.86,0.051000000000000004,0.62,90,984,661,0,6,-7.4,263,39,4,286,0.34400000000000003,57.31,54.52,0.9400000000000001,0.65,759,0.4,230,9.9
+2023,2,22,11,30,-0.1,0.86,0.051000000000000004,0.62,91,1002,703,0,6,-7.4,275,9,0,280,0.34700000000000003,57.81,52.34,0.9400000000000001,0.65,760,0.4,224,10
+2023,2,22,12,0,-0.2,0.96,0.046,0.62,90,1014,728,0,6,-10.9,304,44,0,332,0.35000000000000003,44.5,51.01,0.9400000000000001,0.65,760,0.4,219,10
+2023,2,22,12,30,-0.6000000000000001,0.96,0.046,0.62,91,1015,735,0,6,-10.9,333,150,0,428,0.35100000000000003,45.82,50.61,0.9500000000000001,0.65,760,0.4,216,10.4
+2023,2,22,13,0,-1,0.97,0.048,0.62,91,1010,725,0,7,-11.100000000000001,373,288,0,554,0.352,46.14,51.14,0.9500000000000001,0.65,761,0.4,212,10.700000000000001
+2023,2,22,13,30,-1.8,0.97,0.048,0.62,92,998,698,0,6,-11.100000000000001,301,81,0,350,0.352,48.93,52.6,0.9500000000000001,0.65,761,0.4,215,10.4
+2023,2,22,14,0,-2.5,0.91,0.055,0.62,91,980,655,0,7,-11.3,359,279,0,519,0.352,51.02,54.89,0.96,0.65,762,0.4,217,10.200000000000001
+2023,2,22,14,30,-3.1,0.91,0.055,0.62,88,961,598,0,7,-11.200000000000001,353,136,0,425,0.354,53.410000000000004,57.92,0.96,0.65,763,0.4,223,9.600000000000001
+2023,2,22,15,0,-3.7,0.93,0.056,0.62,83,936,528,0,7,-11.9,307,86,0,348,0.355,52.800000000000004,61.58,0.96,0.65,763,0.4,228,9
+2023,2,22,15,30,-4.3,0.93,0.056,0.62,77,899,446,0,7,-11.9,249,51,0,270,0.357,55.300000000000004,65.74,0.96,0.65,764,0.30000000000000004,237,8.4
+2023,2,22,16,0,-4.800000000000001,1.02,0.059000000000000004,0.62,70,844,354,0,7,-12.8,215,68,0,238,0.358,53.5,70.32000000000001,0.96,0.65,765,0.30000000000000004,247,7.800000000000001
+2023,2,22,16,30,-5.800000000000001,1.02,0.059000000000000004,0.62,61,754,253,0,7,-12.8,150,59,0,165,0.36,57.79,75.22,0.96,0.65,766,0.30000000000000004,260,7.300000000000001
+2023,2,22,17,0,-6.7,1.08,0.067,0.62,49,608,151,2,7,-14,88,48,29,96,0.362,56.33,80.36,0.96,0.8,768,0.30000000000000004,273,6.800000000000001
+2023,2,22,17,30,-8.1,1.08,0.067,0.62,31,368,59,7,7,-13.9,26,0,100,26,0.364,62.84,85.65,0.96,0.8,769,0.30000000000000004,287,6.6000000000000005
+2023,2,22,18,0,-9.4,1.1,0.066,0.62,4,28,3,3,7,-16,1,0,43,1,0.365,58.79,91.31,0.96,0.8,770,0.30000000000000004,300,6.300000000000001
+2023,2,22,18,30,-10.600000000000001,1.1,0.066,0.62,0,0,0,0,7,-15.9,0,0,0,0,0.367,64.8,96.93,0.96,0.8,772,0.30000000000000004,306,5.6000000000000005
+2023,2,22,19,0,-11.8,1.1,0.058,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.368,59.300000000000004,102.60000000000001,0.96,0.8,773,0.2,311,5
+2023,2,22,19,30,-12.200000000000001,1.1,0.058,0.62,0,0,0,0,7,-18.1,0,0,0,0,0.369,61.32,108.29,0.96,0.8,774,0.2,313,4.1000000000000005
+2023,2,22,20,0,-12.700000000000001,1.08,0.05,0.62,0,0,0,0,7,-18.900000000000002,0,0,0,0,0.371,59.67,113.96000000000001,0.96,0.8,774,0.2,315,3.3000000000000003
+2023,2,22,20,30,-12.700000000000001,1.08,0.05,0.62,0,0,0,0,4,-18.900000000000002,0,0,0,0,0.371,59.74,119.57000000000001,0.96,0.8,775,0.2,321,2.5
+2023,2,22,21,0,-12.8,1.06,0.046,0.62,0,0,0,0,7,-18.8,0,0,0,0,0.372,60.910000000000004,125.04,0.96,0.8,775,0.2,327,1.7000000000000002
+2023,2,22,21,30,-12.8,1.06,0.046,0.62,0,0,0,0,6,-18.8,0,0,0,0,0.372,60.99,130.32,0.96,0.8,776,0.2,178,1.1
+2023,2,22,22,0,-12.700000000000001,1.02,0.045,0.62,0,0,0,0,7,-18.2,0,0,0,0,0.372,63.300000000000004,135.3,0.96,0.8,776,0.2,29,0.5
+2023,2,22,22,30,-12.700000000000001,1.02,0.045,0.62,0,0,0,0,7,-18.2,0,0,0,0,0.372,63.300000000000004,139.84,0.96,0.8,776,0.30000000000000004,73,0.8
+2023,2,22,23,0,-12.700000000000001,0.99,0.044,0.62,0,0,0,0,7,-17.6,0,0,0,0,0.371,66.63,143.76,0.96,0.8,777,0.30000000000000004,117,1.1
+2023,2,22,23,30,-12.700000000000001,0.99,0.044,0.62,0,0,0,0,8,-17.6,0,0,0,0,0.37,66.63,146.82,0.96,0.8,777,0.30000000000000004,123,1.5
+2023,2,23,0,0,-12.700000000000001,0.98,0.039,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.37,69.59,148.76,0.96,0.8,777,0.30000000000000004,130,1.8
+2023,2,23,0,30,-12.700000000000001,0.98,0.039,0.62,0,0,0,0,0,-17.1,0,0,0,0,0.369,69.59,149.35,0.96,0.8,777,0.30000000000000004,135,2.1
+2023,2,23,1,0,-12.700000000000001,0.97,0.035,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.368,72.16,148.52,0.96,0.8,777,0.30000000000000004,140,2.3000000000000003
+2023,2,23,1,30,-12.600000000000001,0.97,0.035,0.62,0,0,0,0,0,-16.7,0,0,0,0,0.368,71.58,146.37,0.96,0.8,777,0.30000000000000004,144,2.4000000000000004
+2023,2,23,2,0,-12.600000000000001,0.9400000000000001,0.033,0.62,0,0,0,0,7,-16.3,0,0,0,0,0.367,74.13,143.14000000000001,0.96,0.8,778,0.30000000000000004,148,2.4000000000000004
+2023,2,23,2,30,-12.600000000000001,0.9400000000000001,0.033,0.62,0,0,0,0,7,-16.3,0,0,0,0,0.368,74.13,139.09,0.96,0.8,778,0.30000000000000004,152,2.3000000000000003
+2023,2,23,3,0,-12.600000000000001,0.92,0.033,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.368,76.12,134.46,0.96,0.8,778,0.30000000000000004,155,2.2
+2023,2,23,3,30,-12.700000000000001,0.92,0.033,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.369,76.74,129.42000000000002,0.96,0.8,778,0.30000000000000004,158,1.9000000000000001
+2023,2,23,4,0,-12.9,0.93,0.033,0.62,0,0,0,0,7,-15.600000000000001,0,0,0,0,0.37,80.03,124.09,0.96,0.8,778,0.30000000000000004,160,1.7000000000000002
+2023,2,23,4,30,-13,0.93,0.033,0.62,0,0,0,0,7,-15.600000000000001,0,0,0,0,0.371,80.68,118.58,0.96,0.8,778,0.30000000000000004,161,1.6
+2023,2,23,5,0,-13.200000000000001,0.9400000000000001,0.035,0.62,0,0,0,0,7,-15.5,0,0,0,0,0.371,83.06,112.96000000000001,0.96,0.8,778,0.30000000000000004,163,1.5
+2023,2,23,5,30,-13.3,0.9400000000000001,0.035,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.372,83.84,107.27,0.96,0.8,779,0.30000000000000004,163,1.5
+2023,2,23,6,0,-13.4,0.9400000000000001,0.041,0.62,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.372,86.36,101.57000000000001,0.96,0.8,779,0.30000000000000004,164,1.4000000000000001
+2023,2,23,6,30,-12.9,0.9400000000000001,0.041,0.62,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.372,82.92,95.89,0.96,0.8,779,0.30000000000000004,163,1.6
+2023,2,23,7,0,-12.5,0.88,0.051000000000000004,0.62,8,75,8,4,7,-14.600000000000001,4,0,57,4,0.372,84.43,89.84,0.97,0.8,780,0.30000000000000004,162,1.7000000000000002
+2023,2,23,7,30,-11.3,0.88,0.051000000000000004,0.62,34,438,75,6,7,-14.600000000000001,43,41,86,47,0.372,76.67,84.64,0.97,0.8,780,0.30000000000000004,170,2.2
+2023,2,23,8,0,-10.100000000000001,0.8200000000000001,0.066,0.62,53,632,170,0,7,-13.100000000000001,98,168,0,129,0.372,78.55,79.35000000000001,0.97,0.8,780,0.30000000000000004,179,2.7
+2023,2,23,8,30,-9.1,0.8200000000000001,0.066,0.62,67,757,273,0,7,-13.100000000000001,184,92,0,209,0.372,72.60000000000001,74.22,0.97,0.8,780,0.30000000000000004,187,3.6
+2023,2,23,9,0,-8.200000000000001,0.77,0.067,0.62,80,835,374,0,7,-12.100000000000001,208,310,7,317,0.372,73.58,69.35000000000001,0.97,0.8,780,0.30000000000000004,196,4.4
+2023,2,23,9,30,-7.300000000000001,0.77,0.067,0.62,86,896,467,0,0,-12.100000000000001,152,685,7,444,0.371,68.63,64.81,0.97,0.8,780,0.30000000000000004,200,5.2
+2023,2,23,10,0,-6.4,0.75,0.057,0.62,90,942,551,0,7,-11.8,255,499,0,499,0.371,65.46000000000001,60.7,0.96,0.8,780,0.30000000000000004,204,6
+2023,2,23,10,30,-5.6000000000000005,0.75,0.057,0.62,94,973,622,0,0,-11.8,186,753,0,595,0.369,61.59,57.11,0.96,0.8,780,0.30000000000000004,206,6.5
+2023,2,23,11,0,-4.800000000000001,0.8,0.048,0.62,94,999,679,0,7,-12.200000000000001,255,651,0,636,0.368,56.32,54.17,0.96,0.8,780,0.30000000000000004,209,7.1000000000000005
+2023,2,23,11,30,-4.4,0.8,0.048,0.62,99,1008,720,0,7,-12.200000000000001,394,389,0,634,0.367,54.64,51.980000000000004,0.96,0.8,780,0.30000000000000004,208,7.4
+2023,2,23,12,0,-4,0.8200000000000001,0.053,0.62,102,1012,744,0,7,-12.3,445,311,0,642,0.366,52.61,50.64,0.96,0.8,779,0.30000000000000004,207,7.7
+2023,2,23,12,30,-4,0.8200000000000001,0.053,0.62,103,1011,750,0,7,-12.3,463,266,0,633,0.365,52.61,50.24,0.96,0.8,779,0.30000000000000004,207,8.1
+2023,2,23,13,0,-3.9000000000000004,0.81,0.058,0.62,105,1003,739,0,7,-11.5,460,235,0,609,0.364,55.61,50.79,0.96,0.8,779,0.30000000000000004,206,8.4
+2023,2,23,13,30,-3.9000000000000004,0.81,0.058,0.62,100,996,710,0,7,-11.5,440,219,0,574,0.363,55.61,52.25,0.96,0.8,779,0.4,208,8.8
+2023,2,23,14,0,-3.9000000000000004,0.8300000000000001,0.051000000000000004,0.62,95,988,668,0,7,-11.4,391,253,0,538,0.362,56.17,54.56,0.96,0.8,779,0.4,210,9.1
+2023,2,23,14,30,-4,0.8300000000000001,0.051000000000000004,0.62,89,977,612,0,7,-11.4,326,146,0,404,0.36,56.59,57.61,0.96,0.8,779,0.30000000000000004,212,9
+2023,2,23,15,0,-4.1000000000000005,0.87,0.041,0.62,80,960,541,0,7,-11.9,278,97,0,325,0.359,54.43,61.29,0.96,0.8,780,0.30000000000000004,213,9
+2023,2,23,15,30,-4.3,0.87,0.041,0.62,73,924,457,0,7,-11.9,268,173,0,340,0.358,55.25,65.47,0.96,0.8,780,0.30000000000000004,212,8.5
+2023,2,23,16,0,-4.6000000000000005,0.91,0.04,0.62,65,875,363,0,7,-12,207,44,0,222,0.358,56.1,70.06,0.96,0.8,780,0.30000000000000004,211,8
+2023,2,23,16,30,-5.1000000000000005,0.91,0.04,0.62,56,794,262,0,7,-12,127,16,0,131,0.358,58.33,74.97,0.96,0.8,781,0.30000000000000004,208,7.1000000000000005
+2023,2,23,17,0,-5.6000000000000005,0.92,0.042,0.62,44,663,158,2,7,-11.600000000000001,70,7,29,71,0.358,62.89,80.13,0.96,0.8,781,0.4,205,6.300000000000001
+2023,2,23,17,30,-6.1000000000000005,0.92,0.042,0.62,30,432,64,7,7,-11.5,30,1,100,30,0.358,65.41,85.43,0.96,0.8,782,0.4,204,5.800000000000001
+2023,2,23,18,0,-6.5,0.92,0.043000000000000003,0.62,7,62,6,3,7,-11.100000000000001,2,0,43,2,0.358,69.97,91.10000000000001,0.96,0.8,782,0.4,202,5.4
+2023,2,23,18,30,-6.800000000000001,0.92,0.043000000000000003,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.358,71.60000000000001,96.71000000000001,0.96,0.8,782,0.4,201,5.1000000000000005
+2023,2,23,19,0,-7,0.9400000000000001,0.043000000000000003,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.358,74.58,102.39,0.96,0.8,783,0.4,200,4.7
+2023,2,23,19,30,-7.4,0.9400000000000001,0.043000000000000003,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.358,76.91,108.08,0.96,0.8,783,0.4,198,4.5
+2023,2,23,20,0,-7.800000000000001,0.9500000000000001,0.042,0.62,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.359,79.56,113.75,0.96,0.8,783,0.4,195,4.2
+2023,2,23,20,30,-8.1,0.9500000000000001,0.042,0.62,0,0,0,0,6,-10.700000000000001,0,0,0,0,0.359,81.53,119.35000000000001,0.96,0.8,784,0.4,192,4.2
+2023,2,23,21,0,-8.4,0.96,0.042,0.62,0,0,0,0,6,-10.600000000000001,0,0,0,0,0.36,83.92,124.82000000000001,0.96,0.8,784,0.4,189,4.2
+2023,2,23,21,30,-8.6,0.96,0.042,0.62,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.36,85.24,130.08,0.96,0.8,784,0.4,186,4
+2023,2,23,22,0,-8.8,0.96,0.039,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.36,87.67,135.04,0.96,0.8,784,0.4,184,3.8000000000000003
+2023,2,23,22,30,-8.9,0.96,0.039,0.62,0,0,0,0,8,-10.5,0,0,0,0,0.361,88.36,139.56,0.96,0.8,784,0.4,179,3.4000000000000004
+2023,2,23,23,0,-9.1,0.9400000000000001,0.038,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.361,90.86,143.45000000000002,0.96,0.8,784,0.4,174,3
+2023,2,23,23,30,-9.1,0.9400000000000001,0.038,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.361,90.86,146.49,0.96,0.8,784,0.4,169,3
+2023,2,24,0,0,-9,0.9,0.036000000000000004,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.361,91.53,148.4,0.96,0.8,784,0.5,163,2.9000000000000004
+2023,2,24,0,30,-9,0.9,0.036000000000000004,0.62,0,0,0,0,6,-10.100000000000001,0,0,0,0,0.361,91.53,148.98,0.9500000000000001,0.8,784,0.5,157,2.9000000000000004
+2023,2,24,1,0,-9,0.85,0.035,0.62,0,0,0,0,6,-10,0,0,0,0,0.36,92.37,148.15,0.9500000000000001,0.8,784,0.5,152,2.8000000000000003
+2023,2,24,1,30,-9,0.85,0.035,0.62,0,0,0,0,6,-10,0,0,0,0,0.359,92.26,146.01,0.9500000000000001,0.8,783,0.5,147,2.7
+2023,2,24,2,0,-9,0.79,0.04,0.62,0,0,0,0,6,-10,0,0,0,0,0.358,92.49,142.8,0.9500000000000001,0.8,783,0.5,142,2.6
+2023,2,24,2,30,-8.9,0.79,0.04,0.62,0,0,0,0,6,-10,0,0,0,0,0.357,91.77,138.77,0.9500000000000001,0.8,783,0.5,149,2.5
+2023,2,24,3,0,-8.9,0.78,0.042,0.62,0,0,0,0,6,-9.9,0,0,0,0,0.357,92.60000000000001,134.16,0.9500000000000001,0.8,782,0.5,156,2.4000000000000004
+2023,2,24,3,30,-8.700000000000001,0.78,0.042,0.62,0,0,0,0,9,-9.9,0,0,0,0,0.357,91.16,129.13,0.9500000000000001,0.8,782,0.5,173,2.9000000000000004
+2023,2,24,4,0,-8.4,0.8,0.037,0.62,0,0,0,0,9,-9.200000000000001,0,0,0,0,0.357,93.59,123.82000000000001,0.9500000000000001,0.8,782,0.5,189,3.4000000000000004
+2023,2,24,4,30,-8,0.8,0.037,0.62,0,0,0,0,6,-9.200000000000001,0,0,0,0,0.358,90.84,118.32000000000001,0.9500000000000001,0.8,783,0.5,197,3.7
+2023,2,24,5,0,-7.7,0.8200000000000001,0.04,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.359,96.64,112.69,0.96,0.8,783,0.5,204,4
+2023,2,24,5,30,-7.5,0.8200000000000001,0.04,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.36,95.16,107.01,0.9500000000000001,0.8,783,0.5,207,4.4
+2023,2,24,6,0,-7.300000000000001,0.87,0.038,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.361,97.10000000000001,101.31,0.9500000000000001,0.8,784,0.4,210,4.800000000000001
+2023,2,24,6,30,-7,0.87,0.038,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.362,94.88,95.63,0.9500000000000001,0.8,784,0.4,213,5.2
+2023,2,24,7,0,-6.800000000000001,0.9,0.036000000000000004,0.62,11,123,12,4,7,-7.6000000000000005,5,0,57,5,0.362,94.24,89.61,0.9500000000000001,0.8,785,0.4,215,5.7
+2023,2,24,7,30,-6.2,0.9,0.036000000000000004,0.62,32,498,81,6,7,-7.6000000000000005,46,13,86,47,0.362,90.12,84.37,0.9500000000000001,0.8,786,0.4,220,6.2
+2023,2,24,8,0,-5.6000000000000005,0.9400000000000001,0.041,0.62,47,690,178,0,7,-7.7,97,37,0,104,0.362,85.27,79.07000000000001,0.96,0.8,786,0.4,225,6.7
+2023,2,24,8,30,-5,0.9400000000000001,0.041,0.62,58,807,281,0,4,-7.7,140,263,0,213,0.36,81.59,73.93,0.9500000000000001,0.8,787,0.4,229,6.9
+2023,2,24,9,0,-4.3,0.98,0.037,0.62,65,882,381,0,7,-8.200000000000001,190,354,0,317,0.359,74.04,69.04,0.9500000000000001,0.8,788,0.4,234,7.2
+2023,2,24,9,30,-3.8000000000000003,0.98,0.037,0.62,71,933,473,0,0,-8.200000000000001,92,854,0,460,0.356,71.31,64.49,0.9500000000000001,0.8,788,0.4,235,6.9
+2023,2,24,10,0,-3.4000000000000004,1,0.033,0.62,76,971,556,0,0,-8.9,115,868,0,544,0.353,65.92,60.370000000000005,0.9500000000000001,0.8,789,0.4,236,6.6000000000000005
+2023,2,24,10,30,-3.1,1,0.033,0.62,80,998,627,0,0,-8.9,80,998,0,627,0.35100000000000003,64.47,56.77,0.9500000000000001,0.8,789,0.4,235,6.4
+2023,2,24,11,0,-2.8000000000000003,1.02,0.033,0.62,84,1016,684,0,0,-9.5,84,1016,0,684,0.34900000000000003,60.160000000000004,53.81,0.9500000000000001,0.8,790,0.4,233,6.2
+2023,2,24,11,30,-2.7,1.02,0.033,0.62,87,1027,725,0,0,-9.5,87,1027,0,725,0.34700000000000003,59.72,51.61,0.9500000000000001,0.8,790,0.4,231,6.2
+2023,2,24,12,0,-2.5,1.04,0.034,0.62,89,1034,750,0,0,-9.8,97,1019,0,748,0.34600000000000003,57.14,50.27,0.9500000000000001,0.8,790,0.30000000000000004,229,6.1000000000000005
+2023,2,24,12,30,-2.5,1.04,0.034,0.62,89,1039,759,0,0,-9.8,107,1003,7,753,0.34500000000000003,57.14,49.870000000000005,0.9500000000000001,0.8,790,0.30000000000000004,225,6
+2023,2,24,13,0,-2.4000000000000004,1.06,0.033,0.62,88,1038,749,0,7,-10.3,172,864,14,722,0.34500000000000003,54.61,50.43,0.9500000000000001,0.8,790,0.30000000000000004,221,5.9
+2023,2,24,13,30,-2.2,1.06,0.033,0.62,86,1033,723,0,7,-10.3,150,900,29,705,0.34400000000000003,53.74,51.910000000000004,0.9500000000000001,0.8,789,0.30000000000000004,217,6
+2023,2,24,14,0,-2.1,1.06,0.03,0.62,81,1024,680,0,7,-10.600000000000001,169,831,29,655,0.34400000000000003,52.28,54.230000000000004,0.9400000000000001,0.8,789,0.30000000000000004,214,6.1000000000000005
+2023,2,24,14,30,-2,1.06,0.03,0.62,77,1008,622,0,7,-10.600000000000001,205,691,14,578,0.34400000000000003,51.89,57.300000000000004,0.9400000000000001,0.8,789,0.30000000000000004,213,6.1000000000000005
+2023,2,24,15,0,-2,1.06,0.028,0.62,72,985,550,0,7,-10.600000000000001,178,691,7,513,0.34500000000000003,51.67,60.99,0.9400000000000001,0.8,789,0.30000000000000004,211,6.2
+2023,2,24,15,30,-2.3000000000000003,1.06,0.028,0.62,66,952,465,0,7,-10.600000000000001,229,425,0,407,0.34700000000000003,52.89,65.19,0.9400000000000001,0.8,790,0.30000000000000004,210,5.800000000000001
+2023,2,24,16,0,-2.6,1.07,0.027,0.62,59,905,371,0,7,-10.600000000000001,186,400,0,324,0.34800000000000003,54.06,69.8,0.9400000000000001,0.8,790,0.30000000000000004,210,5.4
+2023,2,24,16,30,-3.8000000000000003,1.07,0.027,0.62,50,834,270,0,7,-10.600000000000001,150,309,0,231,0.35000000000000003,59.11,74.73,0.9400000000000001,0.8,790,0.30000000000000004,207,4.3
+2023,2,24,17,0,-4.9,1.08,0.026000000000000002,0.62,40,720,166,2,6,-10.8,107,51,29,116,0.352,63.07,79.9,0.9400000000000001,0.76,790,0.30000000000000004,204,3.2
+2023,2,24,17,30,-6.1000000000000005,1.08,0.026000000000000002,0.62,27,510,70,7,6,-10.8,40,3,100,40,0.352,69.09,85.21000000000001,0.9400000000000001,0.76,790,0.30000000000000004,200,2.6
+2023,2,24,18,0,-7.300000000000001,1.08,0.024,0.62,8,90,7,3,6,-11.3,3,0,43,3,0.35100000000000003,73.18,90.88,0.9400000000000001,0.76,791,0.4,196,2.1
+2023,2,24,18,30,-7.7,1.08,0.024,0.62,0,0,0,0,6,-11.3,0,0,0,0,0.35000000000000003,75.48,96.5,0.9400000000000001,0.76,791,0.4,196,2
+2023,2,24,19,0,-8.200000000000001,1.08,0.024,0.62,0,0,0,0,6,-11.5,0,0,0,0,0.34900000000000003,76.8,102.18,0.9400000000000001,0.76,791,0.4,196,1.9000000000000001
+2023,2,24,19,30,-8.4,1.08,0.024,0.62,0,0,0,0,6,-11.5,0,0,0,0,0.34800000000000003,78,107.88,0.9400000000000001,0.76,791,0.4,197,1.9000000000000001
+2023,2,24,20,0,-8.700000000000001,1.07,0.025,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.34700000000000003,78.52,113.54,0.9400000000000001,0.76,791,0.4,198,1.8
+2023,2,24,20,30,-8.9,1.07,0.025,0.62,0,0,0,0,7,-11.8,0,0,0,0,0.34700000000000003,79.76,119.13,0.9400000000000001,0.76,791,0.4,200,1.7000000000000002
+2023,2,24,21,0,-9.1,1.06,0.026000000000000002,0.62,0,0,0,0,7,-12,0,0,0,0,0.34600000000000003,79.37,124.59,0.9400000000000001,0.76,792,0.4,202,1.6
+2023,2,24,21,30,-9.200000000000001,1.06,0.026000000000000002,0.62,0,0,0,0,7,-12,0,0,0,0,0.34600000000000003,80,129.84,0.9400000000000001,0.76,792,0.4,203,1.5
+2023,2,24,22,0,-9.3,1.05,0.026000000000000002,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.34500000000000003,79.09,134.78,0.9400000000000001,0.76,792,0.4,204,1.5
+2023,2,24,22,30,-9.3,1.05,0.026000000000000002,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.34500000000000003,79.09,139.28,0.9400000000000001,0.76,792,0.4,204,1.4000000000000001
+2023,2,24,23,0,-9.3,1.04,0.027,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.34500000000000003,77.99,143.14000000000001,0.9400000000000001,0.76,792,0.4,204,1.4000000000000001
+2023,2,24,23,30,-9.4,1.04,0.027,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.34500000000000003,78.61,146.15,0.9400000000000001,0.76,792,0.4,202,1.4000000000000001
+2023,2,25,0,0,-9.5,1.04,0.026000000000000002,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.34400000000000003,77.67,148.04,0.9400000000000001,0.76,791,0.4,201,1.4000000000000001
+2023,2,25,0,30,-9.600000000000001,1.04,0.026000000000000002,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.34400000000000003,78.28,148.61,0.9400000000000001,0.76,791,0.4,198,1.4000000000000001
+2023,2,25,1,0,-9.8,1.03,0.025,0.62,0,0,0,0,7,-13,0,0,0,0,0.34500000000000003,77.60000000000001,147.78,0.9400000000000001,0.76,791,0.4,196,1.4000000000000001
+2023,2,25,1,30,-9.9,1.03,0.025,0.62,0,0,0,0,7,-13,0,0,0,0,0.34500000000000003,78.21000000000001,145.65,0.93,0.76,791,0.5,195,1.4000000000000001
+2023,2,25,2,0,-10,1.02,0.023,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.34500000000000003,77.29,142.46,0.93,0.76,791,0.5,194,1.4000000000000001
+2023,2,25,2,30,-9.9,1.02,0.023,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.34500000000000003,76.69,138.45000000000002,0.93,0.76,791,0.5,193,1.4000000000000001
+2023,2,25,3,0,-9.8,1.01,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.34600000000000003,75.42,133.85,0.93,0.76,790,0.5,193,1.4000000000000001
+2023,2,25,3,30,-9.8,1.01,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.34500000000000003,75.42,128.84,0.93,0.76,790,0.5,192,1.4000000000000001
+2023,2,25,4,0,-9.700000000000001,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.34500000000000003,74.48,123.54,0.93,0.76,790,0.5,191,1.4000000000000001
+2023,2,25,4,30,-9.600000000000001,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.34600000000000003,73.9,118.04,0.92,0.76,790,0.5,192,1.3
+2023,2,25,5,0,-9.5,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.34600000000000003,73.3,112.43,0.92,0.76,790,0.5,193,1.3
+2023,2,25,5,30,-9.4,1,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.34600000000000003,72.73,106.74000000000001,0.93,0.76,790,0.5,196,1.3
+2023,2,25,6,0,-9.200000000000001,1,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.34700000000000003,72.21000000000001,101.04,0.93,0.76,791,0.5,199,1.2000000000000002
+2023,2,25,6,30,-8.5,1,0.022,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.34700000000000003,68.36,95.36,0.92,0.76,791,0.6000000000000001,201,1.2000000000000002
+2023,2,25,7,0,-7.7,0.99,0.021,0.62,11,152,13,0,0,-12,11,152,0,13,0.34800000000000003,71.43,89.36,0.92,0.76,791,0.6000000000000001,202,1.1
+2023,2,25,7,30,-5.800000000000001,0.99,0.021,0.62,29,549,85,0,0,-12,29,549,0,85,0.34800000000000003,61.74,84.10000000000001,0.92,0.76,791,0.6000000000000001,202,1.5
+2023,2,25,8,0,-3.9000000000000004,0.96,0.021,0.62,40,728,182,0,0,-10,40,728,0,182,0.34900000000000003,62.71,78.78,0.92,0.76,791,0.6000000000000001,202,1.8
+2023,2,25,8,30,-2.2,0.96,0.021,0.62,49,829,283,0,0,-10,49,829,0,283,0.34900000000000003,55.26,73.63,0.92,0.76,791,0.6000000000000001,205,2.4000000000000004
+2023,2,25,9,0,-0.6000000000000001,0.92,0.023,0.62,57,893,381,0,0,-7.800000000000001,57,893,0,381,0.34900000000000003,58.06,68.74,0.92,0.76,791,0.6000000000000001,208,2.9000000000000004
+2023,2,25,9,30,0.6000000000000001,0.92,0.023,0.62,64,937,472,0,0,-7.800000000000001,64,937,0,472,0.34800000000000003,53.22,64.17,0.92,0.76,791,0.6000000000000001,211,3.6
+2023,2,25,10,0,1.8,0.89,0.024,0.62,69,968,553,0,0,-6.1000000000000005,69,968,0,553,0.34800000000000003,55.83,60.03,0.92,0.76,791,0.6000000000000001,215,4.2
+2023,2,25,10,30,2.5,0.89,0.024,0.62,73,990,621,0,0,-6.1000000000000005,73,990,0,621,0.34700000000000003,53.120000000000005,56.42,0.92,0.76,791,0.6000000000000001,216,4.5
+2023,2,25,11,0,3.2,0.88,0.025,0.62,77,1005,676,0,0,-5.2,77,1005,0,676,0.34600000000000003,54.03,53.45,0.92,0.76,791,0.6000000000000001,217,4.800000000000001
+2023,2,25,11,30,3.7,0.88,0.025,0.62,79,1016,715,0,0,-5.2,79,1016,0,715,0.34400000000000003,52.09,51.24,0.92,0.76,790,0.6000000000000001,217,4.9
+2023,2,25,12,0,4.1000000000000005,0.87,0.025,0.62,80,1024,740,0,0,-4.7,80,1024,0,740,0.343,52.54,49.9,0.92,0.76,790,0.6000000000000001,217,5
+2023,2,25,12,30,4.4,0.87,0.025,0.62,81,1029,749,0,0,-4.7,94,1007,7,748,0.341,51.45,49.5,0.92,0.76,790,0.5,217,5
+2023,2,25,13,0,4.7,0.89,0.024,0.62,79,1029,740,0,0,-4.5,93,1006,14,739,0.339,51.22,50.06,0.92,0.76,789,0.5,216,5
+2023,2,25,13,30,4.9,0.89,0.024,0.62,77,1024,714,0,0,-4.5,77,1024,0,714,0.338,50.51,51.56,0.92,0.76,789,0.5,215,4.9
+2023,2,25,14,0,5,0.92,0.023,0.62,75,1014,672,0,0,-4.5,98,970,18,670,0.336,50.410000000000004,53.9,0.92,0.76,789,0.5,215,4.7
+2023,2,25,14,30,5,0.92,0.023,0.62,71,998,615,0,0,-4.5,93,956,14,614,0.335,50.35,56.99,0.92,0.76,788,0.5,213,4.5
+2023,2,25,15,0,5,0.9500000000000001,0.021,0.62,66,976,544,0,0,-4.3,87,928,14,541,0.333,50.86,60.7,0.92,0.76,788,0.5,211,4.3
+2023,2,25,15,30,4.2,0.9500000000000001,0.021,0.62,60,945,461,0,0,-4.3,60,945,0,461,0.332,53.77,64.92,0.91,0.76,788,0.5,208,3.3000000000000003
+2023,2,25,16,0,3.5,0.96,0.019,0.62,53,901,368,0,0,-3,53,901,0,368,0.33,62.59,69.54,0.91,0.76,788,0.5,205,2.4000000000000004
+2023,2,25,16,30,1.5,0.96,0.019,0.62,47,832,269,0,0,-3,47,832,0,269,0.329,72.05,74.49,0.91,0.76,787,0.5,199,2
+2023,2,25,17,0,-0.6000000000000001,0.97,0.019,0.62,38,722,167,0,0,-4.5,38,722,0,167,0.327,75.17,79.67,0.91,0.65,787,0.5,193,1.6
+2023,2,25,17,30,-1.4000000000000001,0.97,0.019,0.62,26,518,71,1,0,-4.5,30,429,18,67,0.325,79.69,85,0.91,0.65,787,0.5,187,1.6
+2023,2,25,18,0,-2.3000000000000003,1,0.022,0.62,7,93,7,0,0,-5.7,7,93,0,7,0.324,77.53,90.19,0.91,0.65,787,0.5,181,1.6
+2023,2,25,18,30,-2.6,1,0.022,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.321,79.27,96.29,0.92,0.65,787,0.5,178,1.6
+2023,2,25,19,0,-2.9000000000000004,1.03,0.027,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.319,81.62,101.97,0.92,0.65,787,0.5,174,1.6
+2023,2,25,19,30,-3.1,1.03,0.027,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.319,82.84,107.67,0.92,0.65,787,0.5,171,1.6
+2023,2,25,20,0,-3.2,1.03,0.028,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.319,83.25,113.33,0.92,0.65,786,0.5,169,1.6
+2023,2,25,20,30,-3.3000000000000003,1.03,0.028,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.32,83.87,118.91,0.92,0.65,786,0.4,167,1.6
+2023,2,25,21,0,-3.4000000000000004,1.03,0.027,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.321,83.31,124.36,0.92,0.65,786,0.4,166,1.6
+2023,2,25,21,30,-3.4000000000000004,1.03,0.027,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.321,83.31,129.6,0.93,0.65,786,0.4,165,1.6
+2023,2,25,22,0,-3.3000000000000003,1.02,0.029,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.321,80.74,134.52,0.93,0.65,786,0.4,164,1.5
+2023,2,25,22,30,-3.1,1.02,0.029,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.321,79.44,138.99,0.93,0.65,785,0.4,162,1.5
+2023,2,25,23,0,-2.9000000000000004,1.03,0.031,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.32,76.92,142.83,0.93,0.65,785,0.4,159,1.5
+2023,2,25,23,30,-2.8000000000000003,1.03,0.031,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.32,76.25,145.82,0.93,0.65,784,0.4,157,1.5
+2023,2,26,0,0,-2.8000000000000003,1.03,0.033,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.321,73.68,147.68,0.93,0.65,784,0.4,156,1.5
+2023,2,26,0,30,-2.8000000000000003,1.03,0.033,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.322,73.58,148.24,0.9400000000000001,0.65,783,0.5,160,1.6
+2023,2,26,1,0,-2.9000000000000004,1.03,0.035,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.323,71.7,147.41,0.9400000000000001,0.65,783,0.5,164,1.7000000000000002
+2023,2,26,1,30,-2.8000000000000003,1.03,0.035,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.326,71.08,145.29,0.9400000000000001,0.65,782,0.5,168,1.9000000000000001
+2023,2,26,2,0,-2.7,1.03,0.037,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.329,70.01,142.11,0.9400000000000001,0.65,782,0.5,173,2
+2023,2,26,2,30,-2.7,1.03,0.037,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.333,69.92,138.12,0.9400000000000001,0.65,781,0.5,175,2
+2023,2,26,3,0,-2.7,1.03,0.04,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.338,70.8,133.54,0.9400000000000001,0.65,781,0.5,178,2
+2023,2,26,3,30,-2.7,1.03,0.04,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.343,70.71000000000001,128.54,0.9400000000000001,0.65,780,0.5,177,1.9000000000000001
+2023,2,26,4,0,-2.7,1.01,0.041,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.34900000000000003,71.9,123.25,0.9400000000000001,0.65,780,0.5,176,1.9000000000000001
+2023,2,26,4,30,-2.8000000000000003,1.01,0.041,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.355,72.34,117.77,0.9400000000000001,0.65,779,0.5,172,2
+2023,2,26,5,0,-2.8000000000000003,0.99,0.041,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.361,73.5,112.16,0.9400000000000001,0.65,779,0.5,168,2
+2023,2,26,5,30,-2.9000000000000004,0.99,0.041,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.368,74.05,106.47,0.9400000000000001,0.65,779,0.6000000000000001,166,2
+2023,2,26,6,0,-3,0.98,0.039,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.375,75.36,100.77,0.93,0.65,778,0.6000000000000001,164,2
+2023,2,26,6,30,-2.4000000000000004,0.98,0.039,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.383,72.08,95.09,0.9400000000000001,0.65,778,0.6000000000000001,165,2.1
+2023,2,26,7,0,-1.8,0.97,0.037,0.62,12,133,14,5,7,-5.800000000000001,6,0,71,6,0.39,73.91,89.13,0.9400000000000001,0.65,777,0.6000000000000001,166,2.1
+2023,2,26,7,30,-0.4,0.97,0.037,0.62,32,510,87,6,7,-5.800000000000001,47,8,86,48,0.395,66.72,83.83,0.9400000000000001,0.65,777,0.6000000000000001,170,2.3000000000000003
+2023,2,26,8,0,1,0.96,0.036000000000000004,0.62,45,693,183,0,7,-4.2,117,35,0,124,0.399,68.08,78.49,0.9400000000000001,0.65,777,0.7000000000000001,173,2.6
+2023,2,26,8,30,1.6,0.96,0.036000000000000004,0.62,54,798,283,0,7,-4.2,177,109,0,208,0.402,65.22,73.33,0.9400000000000001,0.65,777,0.7000000000000001,179,2.8000000000000003
+2023,2,26,9,0,2.2,0.96,0.034,0.62,61,868,380,4,8,-3.7,109,114,57,151,0.405,65.01,68.42,0.9500000000000001,0.65,777,0.7000000000000001,184,3.1
+2023,2,26,9,30,2.5,0.96,0.034,0.62,67,912,469,4,8,-3.7,73,1,64,73,0.406,63.64,63.85,0.9500000000000001,0.65,777,0.8,189,3.9000000000000004
+2023,2,26,10,0,2.8000000000000003,0.9500000000000001,0.032,0.62,71,946,548,0,6,-2.6,206,22,0,217,0.40700000000000003,67.84,59.69,0.9500000000000001,0.65,776,0.8,194,4.800000000000001
+2023,2,26,10,30,2.8000000000000003,0.9500000000000001,0.032,0.62,76,967,616,0,6,-2.6,237,71,0,277,0.40900000000000003,67.84,56.07,0.9500000000000001,0.65,776,0.8,198,5.4
+2023,2,26,11,0,2.8000000000000003,0.9,0.035,0.62,80,979,668,0,7,-1.6,338,79,0,385,0.41000000000000003,72.92,53.08,0.9500000000000001,0.65,776,0.9,201,5.9
+2023,2,26,11,30,2.9000000000000004,0.9,0.035,0.62,83,991,708,0,7,-1.6,381,256,0,543,0.40900000000000003,72.4,50.870000000000005,0.9500000000000001,0.65,776,0.8,208,6.1000000000000005
+2023,2,26,12,0,2.9000000000000004,0.9,0.035,0.62,84,998,732,0,7,-1.2000000000000002,337,279,0,518,0.40800000000000003,74.26,49.52,0.9500000000000001,0.65,776,0.8,215,6.300000000000001
+2023,2,26,12,30,3.3000000000000003,0.9,0.035,0.62,82,1007,741,0,8,-1.2000000000000002,221,54,0,256,0.397,72.19,49.13,0.9500000000000001,0.65,776,0.8,222,6.300000000000001
+2023,2,26,13,0,3.7,0.91,0.027,0.62,78,1014,734,0,8,-1.5,318,32,0,339,0.386,68.68,49.7,0.9400000000000001,0.65,775,0.7000000000000001,229,6.300000000000001
+2023,2,26,13,30,4,0.91,0.027,0.62,76,1016,712,0,8,-1.5,249,582,0,614,0.365,67.25,51.21,0.93,0.65,775,0.6000000000000001,232,6.2
+2023,2,26,14,0,4.3,0.9,0.021,0.62,71,1014,673,0,0,-2.5,71,1014,0,673,0.34400000000000003,61.09,53.57,0.92,0.65,775,0.6000000000000001,236,6.1000000000000005
+2023,2,26,14,30,4.1000000000000005,0.9,0.021,0.62,68,1002,618,0,0,-2.5,68,1002,0,618,0.328,62.03,56.68,0.92,0.65,776,0.5,233,6.1000000000000005
+2023,2,26,15,0,3.9000000000000004,0.92,0.021,0.62,64,981,548,0,8,-3.8000000000000003,164,692,7,506,0.312,57.22,60.410000000000004,0.92,0.65,776,0.5,231,6
+2023,2,26,15,30,3.3000000000000003,0.92,0.021,0.62,61,946,466,0,0,-3.8000000000000003,95,829,7,450,0.305,59.69,64.65,0.93,0.65,776,0.5,229,5.9
+2023,2,26,16,0,2.7,0.96,0.025,0.62,56,896,373,0,0,-4.5,56,896,0,373,0.299,59.25,69.29,0.9400000000000001,0.65,777,0.5,227,5.7
+2023,2,26,16,30,1.1,0.96,0.025,0.62,49,824,273,0,0,-4.5,49,824,0,273,0.296,66.42,74.24,0.9400000000000001,0.65,777,0.5,226,4.9
+2023,2,26,17,0,-0.4,1,0.028,0.62,41,707,171,0,0,-4.9,41,707,0,171,0.292,71.86,79.44,0.9400000000000001,0.73,778,0.5,225,4.1000000000000005
+2023,2,26,17,30,-1.4000000000000001,1,0.028,0.62,29,507,75,3,0,-4.9,36,310,46,64,0.291,77.31,84.78,0.9400000000000001,0.73,778,0.5,225,4.2
+2023,2,26,18,0,-2.5,1.01,0.027,0.62,8,92,8,3,7,-5.7,3,0,43,3,0.289,78.75,90.01,0.9400000000000001,0.73,779,0.5,226,4.2
+2023,2,26,18,30,-3,1.01,0.027,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.28800000000000003,81.73,96.08,0.9400000000000001,0.73,779,0.5,226,4.3
+2023,2,26,19,0,-3.5,1,0.023,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.28700000000000003,80.51,101.77,0.9400000000000001,0.73,779,0.5,226,4.5
+2023,2,26,19,30,-4,1,0.023,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.28700000000000003,83.68,107.46000000000001,0.93,0.73,780,0.5,223,4.5
+2023,2,26,20,0,-4.4,1.01,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.28600000000000003,82.01,113.12,0.93,0.73,780,0.5,221,4.5
+2023,2,26,20,30,-4.7,1.01,0.02,0.62,0,0,0,0,4,-7,0,0,0,0,0.28600000000000003,83.88,118.7,0.93,0.73,780,0.5,218,4.5
+2023,2,26,21,0,-5.1000000000000005,1.03,0.018000000000000002,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.28700000000000003,82.98,124.13000000000001,0.92,0.73,781,0.5,216,4.6000000000000005
+2023,2,26,21,30,-5.2,1.03,0.018000000000000002,0.62,0,0,0,0,4,-7.5,0,0,0,0,0.28700000000000003,83.61,129.35,0.92,0.73,781,0.5,215,4.7
+2023,2,26,22,0,-5.4,1.06,0.017,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.28700000000000003,81.29,134.26,0.92,0.73,781,0.5,214,4.7
+2023,2,26,22,30,-5.4,1.06,0.017,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.28700000000000003,81.29,138.71,0.93,0.73,781,0.5,212,4.800000000000001
+2023,2,26,23,0,-5.5,1.05,0.019,0.62,0,0,0,0,8,-8.6,0,0,0,0,0.28700000000000003,78.86,142.52,0.93,0.73,781,0.5,210,4.800000000000001
+2023,2,26,23,30,-5.4,1.05,0.019,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.28700000000000003,78.36,145.48,0.9400000000000001,0.73,782,0.6000000000000001,210,4.9
+2023,2,27,0,0,-5.2,1.03,0.024,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.28700000000000003,75.86,147.32,0.9400000000000001,0.73,782,0.6000000000000001,209,5
+2023,2,27,0,30,-5,1.03,0.024,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.28700000000000003,74.72,147.86,0.9400000000000001,0.73,782,0.6000000000000001,207,5
+2023,2,27,1,0,-4.800000000000001,1.03,0.028,0.62,0,0,0,0,4,-8.5,0,0,0,0,0.28700000000000003,75.04,147.03,0.9500000000000001,0.73,782,0.6000000000000001,206,5.1000000000000005
+2023,2,27,1,30,-4.800000000000001,1.03,0.028,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.28700000000000003,75.04,144.93,0.9500000000000001,0.73,782,0.6000000000000001,204,5.1000000000000005
+2023,2,27,2,0,-4.800000000000001,1.04,0.03,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.28800000000000003,77.89,141.77,0.9500000000000001,0.73,782,0.6000000000000001,203,5.2
+2023,2,27,2,30,-4.9,1.04,0.03,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.28800000000000003,78.48,137.79,0.9500000000000001,0.73,782,0.6000000000000001,202,5.1000000000000005
+2023,2,27,3,0,-5,1.05,0.032,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.28800000000000003,81.3,133.23,0.9500000000000001,0.73,782,0.6000000000000001,200,5.1000000000000005
+2023,2,27,3,30,-5.1000000000000005,1.05,0.032,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.28800000000000003,81.91,128.24,0.9500000000000001,0.73,782,0.6000000000000001,199,5
+2023,2,27,4,0,-5.2,1.06,0.032,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.28800000000000003,84.01,122.97,0.9500000000000001,0.73,782,0.6000000000000001,198,4.9
+2023,2,27,4,30,-5.300000000000001,1.06,0.032,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.28800000000000003,84.65,117.49000000000001,0.9500000000000001,0.73,782,0.6000000000000001,198,4.800000000000001
+2023,2,27,5,0,-5.4,1.07,0.033,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.28800000000000003,86.53,111.88,0.9500000000000001,0.73,783,0.6000000000000001,197,4.800000000000001
+2023,2,27,5,30,-5.4,1.07,0.033,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.28800000000000003,86.53,106.2,0.9500000000000001,0.73,783,0.6000000000000001,198,4.800000000000001
+2023,2,27,6,0,-5.5,1.08,0.036000000000000004,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.28800000000000003,87.67,100.5,0.9500000000000001,0.73,783,0.6000000000000001,199,4.800000000000001
+2023,2,27,6,30,-5.300000000000001,1.08,0.036000000000000004,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.28700000000000003,86.35000000000001,94.81,0.9500000000000001,0.73,783,0.6000000000000001,198,5
+2023,2,27,7,0,-5.1000000000000005,1.09,0.038,0.62,15,176,18,5,7,-7.1000000000000005,10,0,71,10,0.28700000000000003,85.8,88.87,0.9500000000000001,0.73,783,0.6000000000000001,198,5.2
+2023,2,27,7,30,-4.6000000000000005,1.09,0.038,0.62,34,531,94,5,7,-7.1000000000000005,56,26,71,59,0.28700000000000003,82.62,83.54,0.96,0.73,783,0.5,201,5.800000000000001
+2023,2,27,8,0,-4.2,1.1,0.042,0.62,48,707,193,0,7,-7,92,78,7,108,0.28700000000000003,80.71000000000001,78.2,0.96,0.73,783,0.5,203,6.5
+2023,2,27,8,30,-3.7,1.1,0.042,0.62,59,816,297,5,8,-7,69,19,68,75,0.28800000000000003,77.74,73.03,0.96,0.73,783,0.5,206,6.9
+2023,2,27,9,0,-3.2,1.11,0.04,0.62,66,885,396,1,4,-7.2,219,41,11,234,0.289,74.13,68.11,0.9500000000000001,0.73,783,0.5,209,7.300000000000001
+2023,2,27,9,30,-2.8000000000000003,1.11,0.04,0.62,73,933,489,0,4,-7.2,176,5,0,178,0.289,71.95,63.52,0.9500000000000001,0.73,783,0.5,210,7.5
+2023,2,27,10,0,-2.3000000000000003,1.11,0.035,0.62,76,969,570,0,4,-7.5,193,46,0,216,0.29,67.55,59.35,0.9500000000000001,0.73,783,0.5,210,7.7
+2023,2,27,10,30,-1.9000000000000001,1.11,0.035,0.62,81,993,640,0,4,-7.5,257,52,0,286,0.29,65.59,55.71,0.9500000000000001,0.73,783,0.5,211,7.9
+2023,2,27,11,0,-1.4000000000000001,1.1300000000000001,0.033,0.62,82,1010,694,0,4,-7.7,263,12,0,270,0.29,62.190000000000005,52.72,0.9400000000000001,0.73,783,0.5,212,8.1
+2023,2,27,11,30,-0.9,1.1300000000000001,0.033,0.62,84,1021,734,0,4,-7.7,367,21,0,380,0.29,59.96,50.49,0.9400000000000001,0.73,783,0.5,212,8.1
+2023,2,27,12,0,-0.5,1.1400000000000001,0.032,0.62,85,1027,757,0,4,-7.800000000000001,361,237,4,516,0.29,57.75,49.15,0.9400000000000001,0.73,782,0.5,213,8.200000000000001
+2023,2,27,12,30,-0.1,1.1400000000000001,0.032,0.62,86,1029,764,0,0,-7.800000000000001,156,903,14,751,0.291,56.1,48.75,0.9400000000000001,0.73,782,0.5,214,8.1
+2023,2,27,13,0,0.2,1.1300000000000001,0.032,0.62,85,1028,755,0,4,-7.800000000000001,376,388,4,629,0.291,55.02,49.33,0.9400000000000001,0.73,782,0.5,214,8.1
+2023,2,27,13,30,0.2,1.1300000000000001,0.032,0.62,83,1023,729,0,4,-7.800000000000001,410,33,0,431,0.291,54.95,50.86,0.9400000000000001,0.73,781,0.5,215,8.1
+2023,2,27,14,0,0.2,1.1500000000000001,0.03,0.62,80,1013,686,0,4,-7.9,389,48,0,418,0.292,54.49,53.24,0.9400000000000001,0.73,781,0.5,216,8
+2023,2,27,14,30,0.1,1.1500000000000001,0.03,0.62,76,996,628,0,4,-7.9,333,248,14,470,0.293,54.88,56.370000000000005,0.9400000000000001,0.73,781,0.5,216,7.9
+2023,2,27,15,0,0,1.1500000000000001,0.031,0.62,73,972,557,0,4,-8,270,401,0,470,0.294,54.730000000000004,60.120000000000005,0.9400000000000001,0.73,781,0.5,217,7.7
+2023,2,27,15,30,-0.4,1.1500000000000001,0.031,0.62,68,935,472,0,0,-8,110,799,0,456,0.296,56.34,64.37,0.9400000000000001,0.73,781,0.5,216,7.300000000000001
+2023,2,27,16,0,-0.8,1.17,0.034,0.62,62,884,378,0,0,-8,62,884,0,378,0.298,58.09,69.03,0.9500000000000001,0.73,781,0.5,215,6.800000000000001
+2023,2,27,16,30,-1.5,1.17,0.034,0.62,55,807,277,0,0,-8,64,764,0,275,0.299,61.14,74,0.9500000000000001,0.73,781,0.5,213,6
+2023,2,27,17,0,-2.3000000000000003,1.17,0.041,0.62,46,685,174,1,0,-7.9,59,555,18,163,0.301,65.65,79.21000000000001,0.9500000000000001,0.73,781,0.5,211,5.1000000000000005
+2023,2,27,17,30,-2.7,1.17,0.041,0.62,32,473,77,6,7,-7.9,36,40,89,40,0.303,67.62,84.57000000000001,0.96,0.73,781,0.5,208,4.800000000000001
+2023,2,27,18,0,-3.2,1.1500000000000001,0.047,0.62,9,92,9,4,7,-7.6000000000000005,6,11,54,6,0.304,71.71000000000001,89.82000000000001,0.96,0.73,781,0.5,205,4.5
+2023,2,27,18,30,-3.4000000000000004,1.1500000000000001,0.047,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.306,72.78,95.87,0.96,0.73,781,0.5,202,4.5
+2023,2,27,19,0,-3.5,1.11,0.053,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.308,75.71000000000001,101.56,0.96,0.73,781,0.5,198,4.5
+2023,2,27,19,30,-3.7,1.11,0.053,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.311,76.75,107.25,0.96,0.73,780,0.5,194,4.5
+2023,2,27,20,0,-3.8000000000000003,1.06,0.057,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.313,79.52,112.91,0.96,0.73,780,0.6000000000000001,190,4.6000000000000005
+2023,2,27,20,30,-3.8000000000000003,1.06,0.057,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.316,79.42,118.48,0.96,0.73,779,0.6000000000000001,188,4.7
+2023,2,27,21,0,-3.8000000000000003,1.01,0.057,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.319,81.8,123.9,0.96,0.73,779,0.6000000000000001,185,4.9
+2023,2,27,21,30,-3.8000000000000003,1.01,0.057,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.323,81.69,129.11,0.96,0.73,778,0.6000000000000001,185,5.2
+2023,2,27,22,0,-3.8000000000000003,0.99,0.051000000000000004,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.327,83.79,133.99,0.96,0.73,778,0.6000000000000001,184,5.5
+2023,2,27,22,30,-3.8000000000000003,0.99,0.051000000000000004,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.331,83.79,138.42000000000002,0.96,0.73,778,0.6000000000000001,185,5.9
+2023,2,27,23,0,-3.7,1,0.047,0.62,0,0,0,0,7,-6,0,0,0,0,0.335,84.19,142.21,0.96,0.73,777,0.6000000000000001,187,6.2
+2023,2,27,23,30,-3.7,1,0.047,0.62,0,0,0,0,7,-6,0,0,0,0,0.338,84.19,145.13,0.9500000000000001,0.73,777,0.6000000000000001,191,6.6000000000000005
+2023,2,28,0,0,-3.6,1.02,0.044,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.341,83.8,146.96,0.9500000000000001,0.73,777,0.6000000000000001,195,7
+2023,2,28,0,30,-3.6,1.02,0.044,0.62,0,0,0,0,7,-6,0,0,0,0,0.343,83.69,147.48,0.9500000000000001,0.73,776,0.6000000000000001,200,7.1000000000000005
+2023,2,28,1,0,-3.6,1.04,0.04,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.34500000000000003,83.91,146.65,0.9500000000000001,0.73,776,0.6000000000000001,205,7.1000000000000005
+2023,2,28,1,30,-3.7,1.04,0.04,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.34700000000000003,84.54,144.56,0.9500000000000001,0.73,776,0.6000000000000001,209,6.800000000000001
+2023,2,28,2,0,-3.9000000000000004,1.04,0.042,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.34800000000000003,87.03,141.41,0.9500000000000001,0.73,776,0.6000000000000001,212,6.5
+2023,2,28,2,30,-4.1000000000000005,1.04,0.042,0.62,0,0,0,0,6,-5.800000000000001,0,0,0,0,0.34900000000000003,88.23,137.46,0.96,0.73,775,0.6000000000000001,213,6.2
+2023,2,28,3,0,-4.2,1.03,0.047,0.62,0,0,0,0,9,-5.6000000000000005,0,0,0,0,0.35100000000000003,90.14,132.91,0.96,0.73,775,0.6000000000000001,214,5.9
+2023,2,28,3,30,-4.2,1.03,0.047,0.62,0,0,0,0,9,-5.6000000000000005,0,0,0,0,0.353,90.14,127.94,0.96,0.73,775,0.5,213,6
+2023,2,28,4,0,-4.2,1.02,0.042,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.355,91.42,122.67,0.96,0.73,775,0.5,212,6.2
+2023,2,28,4,30,-4.2,1.02,0.042,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.356,91.42,117.2,0.9500000000000001,0.73,775,0.5,210,6.4
+2023,2,28,5,0,-4.2,1.04,0.032,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.357,91.34,111.60000000000001,0.9500000000000001,0.73,775,0.5,209,6.6000000000000005
+2023,2,28,5,30,-4.3,1.04,0.032,0.62,0,0,0,0,6,-5.4,0,0,0,0,0.356,92.03,105.93,0.9500000000000001,0.73,775,0.5,209,6.800000000000001
+2023,2,28,6,0,-4.4,1.02,0.031,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.356,90.54,100.22,0.9500000000000001,0.73,774,0.5,209,7.1000000000000005
+2023,2,28,6,30,-4.3,1.02,0.031,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.356,89.98,94.53,0.9500000000000001,0.73,775,0.5,217,7.4
+2023,2,28,7,0,-4.1000000000000005,0.98,0.041,0.62,16,178,20,5,8,-5.9,5,0,71,5,0.357,87.10000000000001,88.61,0.96,0.73,775,0.5,224,7.7
+2023,2,28,7,30,-4,0.98,0.041,0.62,35,543,99,5,7,-5.9,38,3,71,38,0.358,86.56,83.26,0.9500000000000001,0.73,776,0.4,240,7.9
+2023,2,28,8,0,-4,0.99,0.038,0.62,48,727,200,0,7,-8.1,77,7,0,78,0.359,72.96000000000001,77.91,0.9500000000000001,0.73,777,0.4,257,8.200000000000001
+2023,2,28,8,30,-3.9000000000000004,0.99,0.038,0.62,55,851,308,0,7,-8.1,132,15,0,136,0.359,72.42,72.72,0.9400000000000001,0.73,777,0.30000000000000004,262,7.9
+2023,2,28,9,0,-3.9000000000000004,1.02,0.023,0.62,59,935,412,0,7,-13.4,217,179,0,285,0.36,47.800000000000004,67.79,0.92,0.73,778,0.30000000000000004,267,7.5
+2023,2,28,9,30,-3.2,1.02,0.023,0.62,62,992,509,0,0,-13.4,70,969,0,507,0.359,45.37,63.190000000000005,0.92,0.73,778,0.2,261,7.9
+2023,2,28,10,0,-2.5,1.02,0.016,0.62,64,1030,594,0,0,-15.700000000000001,181,686,0,534,0.359,35.6,59.01,0.91,0.73,778,0.2,256,8.3
+2023,2,28,10,30,-2,1.02,0.016,0.62,68,1049,664,0,0,-15.700000000000001,175,784,0,621,0.358,34.35,55.35,0.92,0.73,779,0.2,255,8.700000000000001
+2023,2,28,11,0,-1.6,0.97,0.019,0.62,72,1061,720,0,0,-15.8,72,1061,0,720,0.357,32.99,52.35,0.93,0.73,779,0.2,253,9.200000000000001
+2023,2,28,11,30,-1.6,0.97,0.019,0.62,76,1069,761,0,0,-15.8,76,1069,0,761,0.356,32.99,50.120000000000005,0.93,0.73,779,0.2,252,9.1
+2023,2,28,12,0,-1.6,0.9500000000000001,0.021,0.62,78,1072,785,0,0,-15.600000000000001,78,1072,0,785,0.355,33.53,48.77,0.9400000000000001,0.73,779,0.2,251,9.1
+2023,2,28,12,30,-1.5,0.9500000000000001,0.021,0.62,79,1071,790,0,0,-15.600000000000001,79,1071,0,790,0.355,33.29,48.370000000000005,0.9400000000000001,0.73,779,0.2,250,9.1
+2023,2,28,13,0,-1.5,0.98,0.023,0.62,79,1066,779,0,0,-15.600000000000001,79,1066,0,779,0.354,33.17,48.97,0.9400000000000001,0.73,779,0.2,249,9
+2023,2,28,13,30,-1.6,0.98,0.023,0.62,77,1060,751,0,0,-15.600000000000001,77,1060,0,751,0.355,33.42,50.51,0.9400000000000001,0.73,779,0.2,250,8.9
+2023,2,28,14,0,-1.7000000000000002,1.01,0.023,0.62,75,1046,706,0,0,-15.700000000000001,75,1046,0,706,0.355,33.47,52.910000000000004,0.93,0.73,779,0.30000000000000004,251,8.9
+2023,2,28,14,30,-2,1.01,0.023,0.62,71,1031,647,0,0,-15.700000000000001,71,1031,0,647,0.355,34.22,56.050000000000004,0.93,0.73,779,0.30000000000000004,253,8.700000000000001
+2023,2,28,15,0,-2.3000000000000003,1.02,0.022,0.62,66,1010,574,0,0,-15.700000000000001,72,996,0,573,0.355,35.03,59.82,0.93,0.73,779,0.30000000000000004,254,8.5
+2023,2,28,15,30,-2.7,1.02,0.022,0.62,61,986,492,0,0,-15.700000000000001,61,986,0,492,0.355,36.13,64.1,0.93,0.73,780,0.2,256,8
+2023,2,28,16,0,-3.1,1.04,0.019,0.62,54,947,397,0,0,-15.8,54,947,0,397,0.355,36.97,68.77,0.92,0.73,780,0.2,257,7.4
+2023,2,28,16,30,-4.1000000000000005,1.04,0.019,0.62,46,886,294,0,0,-15.8,57,837,7,291,0.356,39.84,73.76,0.92,0.73,780,0.2,256,6.1000000000000005
+2023,2,28,17,0,-5,1.08,0.016,0.62,37,789,188,0,0,-15.9,37,789,0,188,0.357,42.34,78.98,0.91,0.8,780,0.2,255,4.800000000000001
+2023,2,28,17,30,-6.2,1.08,0.016,0.62,27,611,87,0,0,-15.8,27,611,0,87,0.358,46.44,84.35000000000001,0.91,0.8,781,0.2,249,3.5
+2023,2,28,18,0,-7.4,1.09,0.015,0.62,12,176,13,0,0,-14.600000000000001,12,176,0,13,0.36,56.46,89.62,0.91,0.8,781,0.2,243,2.3000000000000003
+2023,2,28,18,30,-7.800000000000001,1.09,0.015,0.62,0,0,0,0,7,-14.600000000000001,0,0,0,0,0.36,58.230000000000004,95.67,0.91,0.8,781,0.2,237,1.9000000000000001
+2023,2,28,19,0,-8.3,1.11,0.015,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.361,64.83,101.35000000000001,0.91,0.8,781,0.2,231,1.6
+2023,2,28,19,30,-8.6,1.11,0.015,0.62,0,0,0,0,7,-13.700000000000001,0,0,0,0,0.361,66.36,107.04,0.91,0.8,781,0.2,224,1.4000000000000001
+2023,2,28,20,0,-8.9,1.1500000000000001,0.014,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.361,68.82000000000001,112.69,0.91,0.8,781,0.2,217,1.3
+2023,2,28,20,30,-9.1,1.1500000000000001,0.014,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.361,69.91,118.26,0.91,0.8,781,0.2,205,1.2000000000000002
+2023,2,28,21,0,-9.4,1.18,0.014,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.361,70.32000000000001,123.67,0.92,0.8,781,0.2,194,1.2000000000000002
+2023,2,28,21,30,-9.600000000000001,1.18,0.014,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.36,71.44,128.86,0.92,0.8,781,0.30000000000000004,183,1.3
+2023,2,28,22,0,-9.9,1.2,0.016,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.359,71.27,133.73,0.92,0.8,781,0.30000000000000004,172,1.4000000000000001
+2023,2,28,22,30,-10.200000000000001,1.2,0.016,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.358,72.88,138.13,0.93,0.8,780,0.30000000000000004,166,1.6
+2023,2,28,23,0,-10.4,1.22,0.018000000000000002,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.357,72.27,141.89000000000001,0.93,0.8,780,0.30000000000000004,161,1.7000000000000002
+2023,2,28,23,30,-10.600000000000001,1.22,0.018000000000000002,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.356,73.43,144.79,0.93,0.8,780,0.30000000000000004,160,1.9000000000000001
+2023,3,1,0,0,-10.8,1.22,0.02,0.62,0,0,0,0,6,-14.600000000000001,0,0,0,0,0.355,73.31,146.59,0.93,0.8,780,0.30000000000000004,159,2
+2023,3,1,0,30,-10.8,1.22,0.02,0.62,0,0,0,0,6,-14.700000000000001,0,0,14,0,0.355,73.22,147.1,0.9400000000000001,0.8,779,0.30000000000000004,161,2.1
+2023,3,1,1,0,-10.9,1.19,0.023,0.62,0,0,0,0,6,-14.700000000000001,0,0,14,0,0.354,73.52,146.27,0.9400000000000001,0.8,779,0.4,162,2.1
+2023,3,1,1,30,-10.9,1.19,0.023,0.62,0,0,0,0,7,-14.700000000000001,0,0,0,0,0.354,73.52,144.19,0.9400000000000001,0.8,779,0.4,162,2.1
+2023,3,1,2,0,-10.9,1.1500000000000001,0.027,0.62,0,0,0,0,7,-14.4,0,0,0,0,0.354,75.36,141.06,0.9500000000000001,0.8,779,0.4,162,2
+2023,3,1,2,30,-10.700000000000001,1.1500000000000001,0.027,0.62,0,0,0,0,6,-14.4,0,0,0,0,0.354,74.18,137.12,0.9500000000000001,0.8,779,0.4,158,1.9000000000000001
+2023,3,1,3,0,-10.600000000000001,1.1400000000000001,0.032,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.355,77.58,132.59,0.9500000000000001,0.8,778,0.5,155,1.8
+2023,3,1,3,30,-10.4,1.1400000000000001,0.032,0.62,0,0,0,0,7,-13.8,0,0,0,0,0.355,76.36,127.64,0.96,0.8,778,0.5,147,1.7000000000000002
+2023,3,1,4,0,-10.200000000000001,1.1300000000000001,0.036000000000000004,0.62,0,0,0,0,7,-13,0,0,0,0,0.356,79.98,122.38,0.96,0.8,778,0.5,140,1.6
+2023,3,1,4,30,-10,1.1300000000000001,0.036000000000000004,0.62,0,0,0,0,7,-13,0,0,0,0,0.357,78.63,116.91,0.96,0.8,777,0.5,131,1.6
+2023,3,1,5,0,-9.8,1.1,0.04,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.357,81.87,111.32000000000001,0.96,0.8,777,0.5,122,1.6
+2023,3,1,5,30,-9.5,1.1,0.04,0.62,0,0,0,0,6,-12.3,0,0,0,0,0.358,79.96000000000001,105.65,0.96,0.8,777,0.5,113,1.8
+2023,3,1,6,0,-9.3,1.08,0.042,0.62,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.358,82.45,99.94,0.97,0.8,777,0.5,105,1.9000000000000001
+2023,3,1,6,30,-9,1.08,0.042,0.62,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.358,80.53,94.25,0.97,0.8,777,0.5,96,2.3000000000000003
+2023,3,1,7,0,-8.6,1.08,0.043000000000000003,0.62,17,187,22,5,7,-11.3,12,0,71,12,0.359,81.10000000000001,88.34,0.97,0.8,776,0.6000000000000001,88,2.7
+2023,3,1,7,30,-8.200000000000001,1.08,0.043000000000000003,0.62,37,535,102,5,7,-11.3,53,3,71,53,0.36,78.61,82.97,0.97,0.8,776,0.6000000000000001,85,2.8000000000000003
+2023,3,1,8,0,-7.800000000000001,1.08,0.048,0.62,52,701,202,0,7,-10.5,123,20,0,127,0.361,80.7,77.61,0.97,0.8,776,0.6000000000000001,82,2.9000000000000004
+2023,3,1,8,30,-7,1.08,0.048,0.62,63,798,304,0,7,-10.5,174,23,0,181,0.363,75.87,72.42,0.97,0.8,776,0.6000000000000001,91,2.7
+2023,3,1,9,0,-6.2,1.09,0.053,0.62,74,861,404,0,6,-8.9,204,18,0,211,0.365,80.96000000000001,67.47,0.97,0.8,776,0.6000000000000001,101,2.5
+2023,3,1,9,30,-5.2,1.09,0.053,0.62,81,907,495,0,6,-8.9,222,8,0,226,0.368,75.03,62.86,0.97,0.8,776,0.6000000000000001,120,2.4000000000000004
+2023,3,1,10,0,-4.1000000000000005,1.09,0.053,0.62,88,938,576,0,6,-7.4,309,44,0,332,0.37,77.98,58.660000000000004,0.97,0.8,776,0.6000000000000001,138,2.4000000000000004
+2023,3,1,10,30,-3.4000000000000004,1.09,0.053,0.62,94,961,645,0,7,-7.4,393,125,0,465,0.373,74,54.99,0.97,0.8,776,0.6000000000000001,152,2.3000000000000003
+2023,3,1,11,0,-2.7,1.1,0.054,0.62,98,978,700,0,7,-6.7,425,150,0,517,0.375,74.07000000000001,51.980000000000004,0.97,0.8,776,0.6000000000000001,166,2.2
+2023,3,1,11,30,-2.4000000000000004,1.1,0.054,0.62,100,988,739,0,6,-6.7,416,56,0,452,0.378,72.44,49.74,0.97,0.8,776,0.6000000000000001,178,2.2
+2023,3,1,12,0,-2.1,1.11,0.055,0.62,102,993,762,0,6,-6.4,431,16,0,442,0.382,72.58,48.38,0.97,0.8,776,0.6000000000000001,191,2.2
+2023,3,1,12,30,-1.9000000000000001,1.11,0.055,0.62,104,994,769,0,6,-6.4,451,24,0,467,0.385,71.52,48,0.97,0.8,776,0.6000000000000001,200,2.3000000000000003
+2023,3,1,13,0,-1.8,1.1,0.056,0.62,103,990,758,0,6,-6.1000000000000005,461,40,0,487,0.389,72.48,48.6,0.97,0.8,776,0.6000000000000001,209,2.4000000000000004
+2023,3,1,13,30,-1.7000000000000002,1.1,0.056,0.62,101,983,731,0,6,-6.1000000000000005,438,62,0,478,0.392,71.95,50.15,0.97,0.8,776,0.6000000000000001,218,2.5
+2023,3,1,14,0,-1.5,1.11,0.056,0.62,98,971,688,0,6,-5.9,406,83,0,456,0.395,72.13,52.57,0.97,0.8,776,0.6000000000000001,227,2.6
+2023,3,1,14,30,-1.5,1.11,0.056,0.62,93,954,630,0,6,-5.9,309,20,0,320,0.398,72.13,55.74,0.97,0.8,776,0.6000000000000001,234,2.6
+2023,3,1,15,0,-1.4000000000000001,1.12,0.054,0.62,87,929,558,0,7,-5.7,284,31,0,300,0.4,72.59,59.53,0.97,0.8,777,0.6000000000000001,241,2.7
+2023,3,1,15,30,-1.6,1.12,0.054,0.62,79,895,474,0,7,-5.7,287,61,0,314,0.403,73.66,63.83,0.97,0.8,777,0.6000000000000001,246,2.5
+2023,3,1,16,0,-1.8,1.1300000000000001,0.05,0.62,69,848,380,0,7,-5.5,203,40,0,218,0.405,75.75,68.52,0.97,0.8,777,0.6000000000000001,251,2.3000000000000003
+2023,3,1,16,30,-2.4000000000000004,1.1300000000000001,0.05,0.62,59,778,280,0,0,-5.5,89,321,0,180,0.40700000000000003,79.28,73.52,0.97,0.8,778,0.6000000000000001,255,1.6
+2023,3,1,17,0,-3,1.17,0.046,0.62,48,668,178,0,0,-5.2,48,668,11,178,0.41000000000000003,84.53,78.75,0.97,0.78,778,0.6000000000000001,259,1
+2023,3,1,17,30,-3.4000000000000004,1.17,0.046,0.62,31,485,81,0,0,-5.2,32,468,4,80,0.41200000000000003,87.2,84.13,0.97,0.78,779,0.6000000000000001,265,0.8
+2023,3,1,18,0,-3.8000000000000003,1.21,0.039,0.62,11,126,12,0,0,-5.9,11,126,0,12,0.41400000000000003,85.14,89.44,0.97,0.78,779,0.6000000000000001,272,0.7000000000000001
+2023,3,1,18,30,-3.9000000000000004,1.21,0.039,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.41600000000000004,85.89,95.46000000000001,0.96,0.78,780,0.6000000000000001,280,0.7000000000000001
+2023,3,1,19,0,-3.9000000000000004,1.25,0.033,0.62,0,0,0,0,8,-6.4,0,0,0,0,0.417,83.05,101.14,0.96,0.78,780,0.5,288,0.6000000000000001
+2023,3,1,19,30,-4.1000000000000005,1.25,0.033,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.417,84.31,106.83,0.96,0.78,780,0.5,299,0.4
+2023,3,1,20,0,-4.2,1.26,0.029,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.417,83.98,112.48,0.96,0.78,780,0.5,310,0.30000000000000004
+2023,3,1,20,30,-4.5,1.26,0.029,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.417,86.01,118.04,0.96,0.78,781,0.5,185,0.2
+2023,3,1,21,0,-4.9,1.27,0.027,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.417,88.01,123.44,0.96,0.78,781,0.5,60,0.2
+2023,3,1,21,30,-5.4,1.27,0.027,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.417,91.41,128.62,0.96,0.78,781,0.5,75,0.2
+2023,3,1,22,0,-5.9,1.27,0.025,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.417,94.41,133.46,0.9500000000000001,0.78,781,0.5,89,0.30000000000000004
+2023,3,1,22,30,-6.300000000000001,1.27,0.025,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.418,97.34,137.84,0.9500000000000001,0.78,781,0.5,81,0.4
+2023,3,1,23,0,-6.800000000000001,1.25,0.025,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.418,100,141.57,0.9500000000000001,0.78,781,0.5,72,0.5
+2023,3,1,23,30,-7.2,1.25,0.025,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.419,100,144.45000000000002,0.96,0.78,781,0.5,64,0.6000000000000001
+2023,3,2,0,0,-7.6000000000000005,1.22,0.026000000000000002,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.42,100,146.22,0.96,0.78,781,0.4,55,0.7000000000000001
+2023,3,2,0,30,-8,1.22,0.026000000000000002,0.62,0,0,0,0,4,-8,0,0,0,0,0.419,100,146.72,0.96,0.78,781,0.4,53,0.8
+2023,3,2,1,0,-8.3,1.16,0.027,0.62,0,0,0,0,4,-8.3,0,0,0,0,0.419,100,145.89000000000001,0.96,0.78,781,0.4,51,0.9
+2023,3,2,1,30,-8.6,1.16,0.027,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.41600000000000004,100,143.81,0.96,0.78,781,0.4,48,0.9
+2023,3,2,2,0,-8.8,1.1,0.028,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.41300000000000003,100,140.70000000000002,0.9500000000000001,0.78,781,0.4,45,0.9
+2023,3,2,2,30,-9.1,1.1,0.028,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.40900000000000003,100,136.78,0.9500000000000001,0.78,781,0.4,41,1
+2023,3,2,3,0,-9.4,1.07,0.028,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.404,100,132.27,0.9500000000000001,0.78,781,0.4,37,1
+2023,3,2,3,30,-9.600000000000001,1.07,0.028,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.399,100,127.33,0.9500000000000001,0.78,781,0.4,32,1.2000000000000002
+2023,3,2,4,0,-9.9,1.07,0.027,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.393,100,122.08,0.9500000000000001,0.78,781,0.4,27,1.3
+2023,3,2,4,30,-10.100000000000001,1.07,0.027,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.387,100,116.62,0.9500000000000001,0.78,781,0.4,21,1.6
+2023,3,2,5,0,-10.3,1.09,0.026000000000000002,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.381,100,111.03,0.9500000000000001,0.78,781,0.4,14,1.8
+2023,3,2,5,30,-10.5,1.09,0.026000000000000002,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.377,100,105.36,0.9500000000000001,0.78,781,0.4,9,2.2
+2023,3,2,6,0,-10.700000000000001,1.11,0.025,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.373,99.52,99.66,0.9400000000000001,0.78,781,0.4,4,2.6
+2023,3,2,6,30,-10.100000000000001,1.11,0.025,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.37,95.02,93.97,0.9500000000000001,0.78,782,0.4,4,3
+2023,3,2,7,0,-9.5,1.1400000000000001,0.026000000000000002,0.62,19,279,28,0,0,-10.700000000000001,19,279,0,28,0.368,90.79,88.07000000000001,0.9500000000000001,0.78,782,0.4,5,3.5
+2023,3,2,7,30,-8.1,1.1400000000000001,0.026000000000000002,0.62,34,626,114,0,0,-10.700000000000001,34,626,0,114,0.366,81.38,82.68,0.9400000000000001,0.78,782,0.30000000000000004,4,3.8000000000000003
+2023,3,2,8,0,-6.800000000000001,1.17,0.025,0.62,44,786,217,0,0,-9.700000000000001,44,786,0,217,0.363,79.87,77.31,0.9400000000000001,0.78,783,0.30000000000000004,3,4.1000000000000005
+2023,3,2,8,30,-5.4,1.17,0.025,0.62,53,880,323,0,0,-9.700000000000001,53,880,0,323,0.36,71.77,72.10000000000001,0.9400000000000001,0.78,783,0.30000000000000004,179,4.2
+2023,3,2,9,0,-4,1.17,0.022,0.62,59,942,425,0,0,-9.5,85,799,0,395,0.356,65.34,67.15,0.9400000000000001,0.78,783,0.30000000000000004,355,4.4
+2023,3,2,9,30,-3.1,1.17,0.022,0.62,64,984,518,0,0,-9.5,141,704,0,466,0.353,61.09,62.52,0.93,0.78,783,0.30000000000000004,350,4.2
+2023,3,2,10,0,-2.1,1.16,0.019,0.62,67,1015,600,0,0,-10.100000000000001,67,1015,14,600,0.34900000000000003,54.47,58.31,0.93,0.78,783,0.30000000000000004,345,4
+2023,3,2,10,30,-1.4000000000000001,1.16,0.019,0.62,69,1037,669,0,0,-10.100000000000001,69,1037,0,669,0.34700000000000003,51.730000000000004,54.63,0.92,0.78,783,0.30000000000000004,340,4
+2023,3,2,11,0,-0.7000000000000001,1.16,0.016,0.62,70,1053,724,0,0,-10.9,70,1053,0,724,0.34400000000000003,45.95,51.6,0.92,0.78,783,0.30000000000000004,335,4.1000000000000005
+2023,3,2,11,30,-0.2,1.16,0.016,0.62,71,1061,762,0,0,-10.9,101,1006,0,756,0.341,44.31,49.35,0.92,0.78,783,0.30000000000000004,330,4
+2023,3,2,12,0,0.30000000000000004,1.18,0.013000000000000001,0.62,69,1063,780,0,0,-11.8,69,1063,0,780,0.339,39.800000000000004,48,0.91,0.78,783,0.4,325,4
+2023,3,2,12,30,0.6000000000000001,1.18,0.013000000000000001,0.62,69,1061,784,0,0,-11.8,69,1061,0,784,0.337,38.95,47.62,0.91,0.78,783,0.4,320,3.8000000000000003
+2023,3,2,13,0,0.9,1.22,0.012,0.62,67,1060,773,0,0,-12.4,67,1060,0,773,0.335,36.43,48.230000000000004,0.91,0.78,783,0.4,315,3.5
+2023,3,2,13,30,1,1.22,0.012,0.62,65,1054,745,0,0,-12.4,65,1054,0,745,0.334,36.17,49.800000000000004,0.91,0.78,783,0.4,311,3.3000000000000003
+2023,3,2,14,0,1.2000000000000002,1.2,0.011,0.62,62,1039,698,0,0,-12.4,62,1039,0,698,0.333,35.59,52.24,0.9,0.78,782,0.5,308,3
+2023,3,2,14,30,1.1,1.2,0.011,0.62,59,1022,639,0,0,-12.4,59,1022,0,639,0.332,35.84,55.43,0.91,0.78,782,0.5,307,3
+2023,3,2,15,0,1.1,1.23,0.011,0.62,56,1001,568,0,0,-11.9,56,1001,0,568,0.331,37.39,59.24,0.91,0.78,782,0.5,307,3
+2023,3,2,15,30,0.7000000000000001,1.23,0.011,0.62,54,967,485,0,0,-11.9,58,957,7,484,0.329,38.480000000000004,63.550000000000004,0.92,0.78,782,0.5,309,2.9000000000000004
+2023,3,2,16,0,0.4,1.23,0.015,0.62,51,918,391,0,7,-11,169,468,21,342,0.327,42.26,68.26,0.93,0.78,783,0.6000000000000001,312,2.8000000000000003
+2023,3,2,16,30,-0.8,1.23,0.015,0.62,46,847,290,0,7,-11,168,95,0,195,0.326,46.1,73.28,0.9400000000000001,0.78,783,0.6000000000000001,314,2
+2023,3,2,17,0,-2,1.2,0.021,0.62,40,738,187,0,6,-9.200000000000001,99,41,0,107,0.326,57.67,78.52,0.9400000000000001,0.73,783,0.6000000000000001,315,1.1
+2023,3,2,17,30,-2.5,1.2,0.021,0.62,29,560,88,6,6,-9.200000000000001,34,1,86,34,0.326,59.84,83.92,0.9400000000000001,0.73,783,0.6000000000000001,318,1
+2023,3,2,18,0,-3.1,1.2,0.022,0.62,12,157,14,4,6,-9.5,6,0,57,6,0.326,61.43,89.25,0.9400000000000001,0.73,783,0.6000000000000001,320,0.8
+2023,3,2,18,30,-3.3000000000000003,1.2,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.325,62.35,95.25,0.9400000000000001,0.73,783,0.6000000000000001,321,0.8
+2023,3,2,19,0,-3.4000000000000004,1.19,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.325,62.9,100.94,0.9400000000000001,0.73,784,0.6000000000000001,322,0.8
+2023,3,2,19,30,-3.6,1.19,0.022,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.324,63.84,106.62,0.93,0.73,784,0.6000000000000001,319,0.6000000000000001
+2023,3,2,20,0,-3.9000000000000004,1.18,0.021,0.62,0,0,0,0,7,-9,0,0,0,0,0.324,67.63,112.27,0.93,0.73,784,0.6000000000000001,316,0.4
+2023,3,2,20,30,-4,1.18,0.021,0.62,0,0,0,0,7,-9,0,0,0,0,0.323,68.14,117.82000000000001,0.93,0.73,784,0.6000000000000001,258,0.30000000000000004
+2023,3,2,21,0,-4.1000000000000005,1.16,0.022,0.62,0,0,0,0,0,-9,0,0,0,0,0.322,68.77,123.21000000000001,0.93,0.73,784,0.6000000000000001,200,0.1
+2023,3,2,21,30,-4.1000000000000005,1.16,0.022,0.62,0,0,0,0,0,-9,0,0,0,0,0.32,68.77,128.37,0.93,0.73,784,0.6000000000000001,187,0.30000000000000004
+2023,3,2,22,0,-4.2,1.11,0.024,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.319,67.63,133.19,0.93,0.73,784,0.6000000000000001,174,0.5
+2023,3,2,22,30,-4.3,1.11,0.024,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.317,68.05,137.55,0.93,0.73,783,0.6000000000000001,174,0.7000000000000001
+2023,3,2,23,0,-4.4,1.05,0.028,0.62,0,0,0,0,4,-9,0,0,0,0,0.315,70.18,141.26,0.9400000000000001,0.73,783,0.6000000000000001,174,0.8
+2023,3,2,23,30,-4.5,1.05,0.028,0.62,0,0,0,0,0,-9,0,0,0,0,0.315,70.71000000000001,144.1,0.9400000000000001,0.73,783,0.6000000000000001,174,0.9
+2023,3,3,0,0,-4.5,0.97,0.032,0.62,0,0,0,0,0,-9,0,0,0,0,0.315,70.73,145.85,0.9400000000000001,0.73,783,0.6000000000000001,175,1
+2023,3,3,0,30,-4.6000000000000005,0.97,0.032,0.62,0,0,0,0,7,-9,0,0,0,0,0.315,71.27,146.34,0.9400000000000001,0.73,783,0.6000000000000001,177,1
+2023,3,3,1,0,-4.6000000000000005,0.9,0.037,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.316,69.63,145.5,0.9400000000000001,0.73,783,0.6000000000000001,179,1.1
+2023,3,3,1,30,-4.7,0.9,0.037,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.317,70.16,143.44,0.9400000000000001,0.73,783,0.6000000000000001,174,1
+2023,3,3,2,0,-4.800000000000001,0.8300000000000001,0.042,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.318,70.99,140.34,0.9400000000000001,0.73,783,0.6000000000000001,169,0.9
+2023,3,3,2,30,-5.2,0.8300000000000001,0.042,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.319,73.08,136.44,0.9400000000000001,0.73,782,0.6000000000000001,155,0.8
+2023,3,3,3,0,-5.5,0.79,0.047,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.319,75.56,131.94,0.9400000000000001,0.73,782,0.5,141,0.8
+2023,3,3,3,30,-5.9,0.79,0.047,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.32,77.9,127.01,0.9400000000000001,0.73,782,0.5,132,0.8
+2023,3,3,4,0,-6.300000000000001,0.79,0.052000000000000005,0.62,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.32,80.12,121.78,0.9400000000000001,0.73,782,0.5,124,0.9
+2023,3,3,4,30,-6.7,0.79,0.052000000000000005,0.62,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.32,82.61,116.33,0.9400000000000001,0.73,782,0.5,119,0.9
+2023,3,3,5,0,-7.1000000000000005,0.81,0.056,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.32,84.33,110.74000000000001,0.9400000000000001,0.73,782,0.5,115,0.9
+2023,3,3,5,30,-7.4,0.81,0.056,0.62,0,0,0,0,5,-9.3,0,0,0,0,0.321,86.3,105.08,0.9400000000000001,0.73,782,0.5,115,0.9
+2023,3,3,6,0,-7.7,0.84,0.058,0.62,0,0,0,0,5,-9.5,0,0,0,0,0.322,86.98,99.37,0.9400000000000001,0.73,782,0.5,114,0.9
+2023,3,3,6,30,-7.1000000000000005,0.84,0.058,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.324,83.04,93.68,0.9400000000000001,0.73,782,0.5,119,1.2000000000000002
+2023,3,3,7,0,-6.5,0.86,0.061,0.62,21,195,28,6,8,-9.3,11,0,86,11,0.325,80.78,87.8,0.9400000000000001,0.73,782,0.5,125,1.5
+2023,3,3,7,30,-5.300000000000001,0.86,0.061,0.62,43,509,110,4,8,-9.3,58,5,57,59,0.327,73.72,82.39,0.9400000000000001,0.73,782,0.5,135,1.5
+2023,3,3,8,0,-4.1000000000000005,0.89,0.066,0.62,58,676,210,2,8,-8.8,112,11,25,114,0.328,69.64,77,0.9400000000000001,0.73,782,0.5,146,1.5
+2023,3,3,8,30,-3.1,0.89,0.066,0.62,71,778,314,1,5,-8.8,198,80,11,223,0.33,64.62,71.79,0.9400000000000001,0.73,782,0.5,177,1.6
+2023,3,3,9,0,-2.1,0.93,0.07100000000000001,0.62,82,843,414,0,5,-8.6,271,86,4,305,0.332,61.26,66.82000000000001,0.9500000000000001,0.73,782,0.5,209,1.7000000000000002
+2023,3,3,9,30,-1.5,0.93,0.07100000000000001,0.62,92,890,507,0,5,-8.6,266,35,0,282,0.334,58.620000000000005,62.18,0.9500000000000001,0.73,782,0.5,221,2.3000000000000003
+2023,3,3,10,0,-0.9,0.96,0.07200000000000001,0.62,99,924,589,0,7,-8.1,182,108,29,239,0.337,58.03,57.96,0.9500000000000001,0.73,781,0.5,234,2.8000000000000003
+2023,3,3,10,30,-0.7000000000000001,0.96,0.07200000000000001,0.62,103,951,658,0,7,-8.1,329,367,0,543,0.339,57.19,54.27,0.9500000000000001,0.73,781,0.5,237,3.2
+2023,3,3,11,0,-0.5,0.97,0.066,0.62,105,972,714,0,7,-7.800000000000001,310,516,0,633,0.341,57.660000000000004,51.230000000000004,0.9500000000000001,0.73,781,0.5,241,3.7
+2023,3,3,11,30,-0.4,0.97,0.066,0.62,106,987,754,0,7,-7.800000000000001,309,570,7,683,0.342,57.24,48.97,0.9500000000000001,0.73,781,0.5,243,4
+2023,3,3,12,0,-0.30000000000000004,0.97,0.059000000000000004,0.62,104,998,777,0,7,-7.7,374,479,0,697,0.342,57.46,47.61,0.9500000000000001,0.73,781,0.5,245,4.3
+2023,3,3,12,30,-0.30000000000000004,0.97,0.059000000000000004,0.62,102,1004,784,0,8,-7.7,374,225,0,527,0.342,57.46,47.230000000000004,0.9500000000000001,0.73,781,0.5,247,4.6000000000000005
+2023,3,3,13,0,-0.2,0.96,0.05,0.62,99,1007,775,0,4,-7.5,363,333,14,586,0.341,57.800000000000004,47.86,0.9500000000000001,0.73,781,0.5,250,4.800000000000001
+2023,3,3,13,30,-0.2,0.96,0.05,0.62,96,1002,748,0,8,-7.5,323,408,7,588,0.34,57.800000000000004,49.44,0.9500000000000001,0.73,781,0.5,251,4.9
+2023,3,3,14,0,-0.1,0.9500000000000001,0.046,0.62,91,993,704,0,8,-7.5,341,91,0,397,0.339,57.51,51.910000000000004,0.9500000000000001,0.73,780,0.5,253,5
+2023,3,3,14,30,-0.1,0.9500000000000001,0.046,0.62,88,976,646,0,8,-7.5,282,80,0,328,0.338,57.51,55.120000000000005,0.9400000000000001,0.73,780,0.5,254,5
+2023,3,3,15,0,-0.1,0.9400000000000001,0.047,0.62,83,956,576,0,4,-8,190,156,0,270,0.337,55.43,58.95,0.9400000000000001,0.73,780,0.5,256,5.1000000000000005
+2023,3,3,15,30,-0.30000000000000004,0.9400000000000001,0.047,0.62,78,923,493,0,4,-8,238,120,0,292,0.336,56.24,63.28,0.9400000000000001,0.73,780,0.4,259,4.9
+2023,3,3,16,0,-0.4,0.89,0.049,0.62,70,873,397,0,4,-9.200000000000001,194,104,0,233,0.335,51.58,68.01,0.93,0.73,780,0.4,262,4.800000000000001
+2023,3,3,16,30,-1.4000000000000001,0.89,0.049,0.62,61,808,297,0,4,-9.200000000000001,102,64,0,121,0.335,55.56,73.04,0.93,0.73,781,0.30000000000000004,267,3.9000000000000004
+2023,3,3,17,0,-2.3000000000000003,0.85,0.049,0.62,51,699,193,0,0,-10.100000000000001,68,388,11,147,0.334,55.230000000000004,78.3,0.93,0.8,781,0.30000000000000004,272,3
+2023,3,3,17,30,-3.5,0.85,0.049,0.62,35,508,91,0,0,-10.100000000000001,35,508,0,91,0.335,60.38,83.7,0.92,0.8,781,0.30000000000000004,278,2.8000000000000003
+2023,3,3,18,0,-4.7,0.84,0.047,0.62,13,131,15,0,0,-11.200000000000001,13,131,0,15,0.336,60.34,89.06,0.92,0.8,782,0.2,284,2.5
+2023,3,3,18,30,-5.300000000000001,0.84,0.047,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.335,63.14,95.04,0.92,0.8,782,0.2,289,2.4000000000000004
+2023,3,3,19,0,-5.9,0.88,0.044,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.335,63.230000000000004,100.73,0.92,0.8,783,0.2,295,2.4000000000000004
+2023,3,3,19,30,-6.4,0.88,0.044,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.333,65.69,106.42,0.92,0.8,783,0.2,298,2
+2023,3,3,20,0,-7,0.92,0.039,0.62,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.331,69.9,112.05,0.92,0.8,784,0.2,301,1.7000000000000002
+2023,3,3,20,30,-7.300000000000001,0.92,0.039,0.62,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.327,71.54,117.59,0.92,0.8,784,0.2,301,1.4000000000000001
+2023,3,3,21,0,-7.6000000000000005,0.9500000000000001,0.036000000000000004,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.324,73.84,122.97,0.92,0.8,784,0.2,301,1
+2023,3,3,21,30,-7.6000000000000005,0.9500000000000001,0.036000000000000004,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.321,73.84,128.12,0.92,0.8,784,0.2,293,0.9
+2023,3,3,22,0,-7.6000000000000005,0.98,0.034,0.62,0,0,0,0,0,-12,0,0,0,0,0.317,70.63,132.92000000000002,0.92,0.8,784,0.2,286,0.7000000000000001
+2023,3,3,22,30,-7.7,0.98,0.034,0.62,0,0,0,0,0,-12,0,0,0,0,0.315,71.18,137.26,0.92,0.8,784,0.2,241,0.6000000000000001
+2023,3,3,23,0,-7.800000000000001,1.02,0.034,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.312,69.26,140.93,0.92,0.8,784,0.2,196,0.6000000000000001
+2023,3,3,23,30,-8.5,1.02,0.034,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.312,73.13,143.75,0.92,0.8,784,0.2,183,0.8
+2023,3,4,0,0,-9.1,1.06,0.037,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.312,77.11,145.48,0.92,0.8,785,0.2,169,1
+2023,3,4,0,30,-9.700000000000001,1.06,0.037,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.313,80.83,145.95000000000002,0.92,0.8,785,0.2,168,1.1
+2023,3,4,1,0,-10.200000000000001,1.07,0.038,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.313,84.21000000000001,145.12,0.92,0.8,785,0.2,166,1.2000000000000002
+2023,3,4,1,30,-10.600000000000001,1.07,0.038,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.314,86.92,143.06,0.92,0.8,785,0.2,166,1.2000000000000002
+2023,3,4,2,0,-11,1.08,0.037,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.315,90.15,139.98,0.92,0.8,784,0.2,165,1.3
+2023,3,4,2,30,-11.3,1.08,0.037,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.315,92.34,136.09,0.92,0.8,784,0.2,165,1.3
+2023,3,4,3,0,-11.700000000000001,1.07,0.037,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.315,96.04,131.61,0.92,0.8,784,0.2,164,1.4000000000000001
+2023,3,4,3,30,-12,1.07,0.037,0.62,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.314,98.38,126.69,0.92,0.8,784,0.2,165,1.5
+2023,3,4,4,0,-12.3,1.07,0.036000000000000004,0.62,0,0,0,0,7,-12.3,0,0,29,0,0.312,100,121.47,0.92,0.8,784,0.2,165,1.5
+2023,3,4,4,30,-12.600000000000001,1.07,0.036000000000000004,0.62,0,0,0,0,7,-12.600000000000001,0,0,14,0,0.311,100,116.03,0.93,0.8,784,0.2,165,1.6
+2023,3,4,5,0,-12.8,1.05,0.037,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.311,100,110.45,0.93,0.8,784,0.2,164,1.7000000000000002
+2023,3,4,5,30,-12.9,1.05,0.037,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.31,100,104.79,0.93,0.8,784,0.30000000000000004,164,1.7000000000000002
+2023,3,4,6,0,-13.100000000000001,1.03,0.042,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.31,100,99.09,0.9400000000000001,0.8,784,0.30000000000000004,165,1.7000000000000002
+2023,3,4,6,30,-12.100000000000001,1.03,0.042,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.308,95.47,93.39,0.9400000000000001,0.8,784,0.30000000000000004,167,2.2
+2023,3,4,7,0,-11.200000000000001,1,0.052000000000000005,0.62,21,246,32,6,7,-12.600000000000001,20,1,86,20,0.307,89.39,87.52,0.9500000000000001,0.8,784,0.30000000000000004,170,2.6
+2023,3,4,7,30,-9.9,1,0.052000000000000005,0.62,43,568,121,4,7,-12.600000000000001,78,10,57,79,0.304,80.63,82.09,0.9500000000000001,0.8,784,0.30000000000000004,173,2.6
+2023,3,4,8,0,-8.700000000000001,0.97,0.06,0.62,59,720,225,0,7,-11.700000000000001,153,98,0,176,0.302,78.94,76.7,0.9500000000000001,0.8,784,0.30000000000000004,177,2.5
+2023,3,4,8,30,-7.1000000000000005,0.97,0.06,0.62,71,815,330,0,7,-11.700000000000001,191,42,0,204,0.301,69.73,71.48,0.9500000000000001,0.8,784,0.30000000000000004,188,3.1
+2023,3,4,9,0,-5.4,0.9500000000000001,0.063,0.62,81,872,429,0,7,-11.700000000000001,181,17,29,188,0.3,61.34,66.5,0.9500000000000001,0.8,784,0.4,198,3.6
+2023,3,4,9,30,-4.4,0.9500000000000001,0.063,0.62,90,916,522,0,6,-11.700000000000001,218,15,0,225,0.3,56.88,61.84,0.9500000000000001,0.8,784,0.4,201,4.1000000000000005
+2023,3,4,10,0,-3.4000000000000004,0.9500000000000001,0.061,0.62,96,950,605,0,6,-11.9,186,4,29,188,0.3,51.76,57.61,0.9500000000000001,0.8,784,0.4,204,4.5
+2023,3,4,10,30,-2.8000000000000003,0.9500000000000001,0.061,0.62,102,972,675,0,6,-11.9,354,21,0,366,0.3,49.44,53.9,0.9500000000000001,0.8,783,0.4,204,4.7
+2023,3,4,11,0,-2.1,0.97,0.064,0.62,107,987,730,0,6,-11.5,391,21,0,404,0.3,48.5,50.85,0.9500000000000001,0.8,783,0.4,204,5
+2023,3,4,11,30,-1.6,0.97,0.064,0.62,112,995,770,0,6,-11.5,435,32,0,456,0.299,46.75,48.58,0.9500000000000001,0.8,783,0.4,203,5.2
+2023,3,4,12,0,-1,1,0.069,0.62,115,997,792,0,6,-10.8,432,19,0,445,0.298,47.480000000000004,47.22,0.9500000000000001,0.8,782,0.4,202,5.4
+2023,3,4,12,30,-0.8,1,0.069,0.62,117,990,794,0,6,-10.8,475,95,0,540,0.298,46.79,46.85,0.9500000000000001,0.8,782,0.5,202,5.7
+2023,3,4,13,0,-0.5,1.01,0.075,0.62,118,983,782,0,6,-9.9,441,25,0,458,0.297,49.08,47.49,0.9500000000000001,0.8,781,0.5,201,6
+2023,3,4,13,30,-0.4,1.01,0.075,0.62,117,973,754,0,6,-9.9,355,6,0,359,0.298,48.730000000000004,49.09,0.96,0.8,781,0.5,201,6.2
+2023,3,4,14,0,-0.30000000000000004,1.01,0.08,0.62,114,954,707,0,6,-8.9,316,7,0,320,0.298,52.43,51.57,0.96,0.8,780,0.6000000000000001,200,6.4
+2023,3,4,14,30,-0.30000000000000004,1.01,0.08,0.62,110,929,646,0,6,-8.9,267,5,0,270,0.299,52.43,54.800000000000004,0.96,0.8,780,0.6000000000000001,201,6.5
+2023,3,4,15,0,-0.4,1,0.084,0.62,104,899,572,0,6,-7.800000000000001,221,3,0,223,0.3,57.58,58.660000000000004,0.96,0.8,779,0.6000000000000001,201,6.6000000000000005
+2023,3,4,15,30,-0.6000000000000001,1,0.084,0.62,97,859,487,0,6,-7.800000000000001,173,2,0,174,0.303,58.42,63.01,0.96,0.8,779,0.6000000000000001,202,6.5
+2023,3,4,16,0,-0.8,0.99,0.08700000000000001,0.62,88,802,392,0,6,-6.7,123,1,0,123,0.306,64.18,67.76,0.96,0.8,779,0.6000000000000001,203,6.4
+2023,3,4,16,30,-1.3,0.99,0.08700000000000001,0.62,78,716,290,0,7,-6.7,153,50,0,168,0.308,66.56,72.8,0.96,0.8,779,0.6000000000000001,204,5.800000000000001
+2023,3,4,17,0,-1.8,0.99,0.097,0.62,64,585,185,0,7,-5.9,125,50,0,135,0.311,73.53,78.07000000000001,0.96,0.73,779,0.6000000000000001,205,5.300000000000001
+2023,3,4,17,30,-2.3000000000000003,0.99,0.097,0.62,44,377,87,6,7,-5.9,37,12,86,38,0.314,76.29,83.49,0.96,0.73,779,0.6000000000000001,207,4.9
+2023,3,4,18,0,-2.9000000000000004,0.99,0.107,0.62,14,85,16,5,5,-5.4,6,0,71,6,0.317,82.71000000000001,88.87,0.97,0.73,779,0.6000000000000001,208,4.6000000000000005
+2023,3,4,18,30,-3.1,0.99,0.107,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.319,83.95,94.83,0.96,0.73,779,0.6000000000000001,208,4.3
+2023,3,4,19,0,-3.4000000000000004,1,0.101,0.62,0,0,0,0,5,-5.300000000000001,0,0,0,0,0.322,86.97,100.52,0.96,0.73,779,0.6000000000000001,208,4
+2023,3,4,19,30,-3.6,1,0.101,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.323,88.28,106.21000000000001,0.96,0.73,779,0.6000000000000001,206,3.8000000000000003
+2023,3,4,20,0,-3.9000000000000004,1.02,0.09,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.323,88.99,111.84,0.9500000000000001,0.73,779,0.6000000000000001,205,3.6
+2023,3,4,20,30,-4.4,1.02,0.09,0.62,0,0,0,0,5,-5.5,0,0,0,0,0.323,92.27,117.37,0.9500000000000001,0.73,778,0.5,205,3.5
+2023,3,4,21,0,-4.800000000000001,1.04,0.085,0.62,0,0,0,0,0,-6,0,0,0,0,0.323,91.11,122.74000000000001,0.9500000000000001,0.73,778,0.5,206,3.5
+2023,3,4,21,30,-5,1.04,0.085,0.62,0,0,0,0,8,-6,0,0,0,0,0.323,92.5,127.87,0.9500000000000001,0.73,778,0.5,208,3.9000000000000004
+2023,3,4,22,0,-5.2,1.04,0.081,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.323,89.97,132.65,0.9500000000000001,0.73,778,0.5,210,4.2
+2023,3,4,22,30,-5.6000000000000005,1.04,0.081,0.62,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.323,92.74,136.96,0.9500000000000001,0.73,778,0.5,210,4.2
+2023,3,4,23,0,-5.9,1.05,0.075,0.62,0,0,0,0,4,-7.2,0,0,0,0,0.323,90.63,140.61,0.9400000000000001,0.73,778,0.5,210,4.1000000000000005
+2023,3,4,23,30,-6.4,1.05,0.075,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.323,94.16,143.4,0.9400000000000001,0.73,778,0.5,207,3.8000000000000003
+2023,3,5,0,0,-6.9,1.05,0.078,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,94.05,145.11,0.9400000000000001,0.73,778,0.5,203,3.6
+2023,3,5,0,30,-7,1.05,0.078,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.323,94.77,145.57,0.9500000000000001,0.73,778,0.5,204,3.8000000000000003
+2023,3,5,1,0,-7.1000000000000005,1.02,0.106,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.323,92.56,144.73,0.9500000000000001,0.73,778,0.5,204,4
+2023,3,5,1,30,-6.4,1.02,0.106,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.326,87.72,142.68,0.96,0.73,778,0.5,208,4.6000000000000005
+2023,3,5,2,0,-5.800000000000001,1.02,0.14,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.328,84.84,139.61,0.96,0.73,778,0.5,212,5.2
+2023,3,5,2,30,-5.7,1.02,0.14,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.332,84.2,135.74,0.96,0.73,778,0.5,212,4.9
+2023,3,5,3,0,-5.7,1.02,0.14,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.336,86.13,131.28,0.96,0.73,778,0.5,213,4.7
+2023,3,5,3,30,-5.9,1.02,0.14,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.341,87.46000000000001,126.38000000000001,0.9500000000000001,0.73,778,0.5,213,4.3
+2023,3,5,4,0,-6.1000000000000005,1.02,0.127,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.34600000000000003,90.3,121.16,0.9500000000000001,0.73,779,0.5,213,3.9000000000000004
+2023,3,5,4,30,-6.300000000000001,1.02,0.127,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.35100000000000003,91.69,115.73,0.9500000000000001,0.73,779,0.5,213,3.6
+2023,3,5,5,0,-6.5,1.04,0.125,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.356,94.11,110.16,0.96,0.73,779,0.5,213,3.3000000000000003
+2023,3,5,5,30,-6.6000000000000005,1.04,0.125,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.361,94.83,104.5,0.96,0.73,779,0.5,211,3
+2023,3,5,6,0,-6.6000000000000005,1.04,0.136,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.366,95.81,98.8,0.96,0.73,779,0.5,209,2.8000000000000003
+2023,3,5,6,30,-6.2,1.04,0.136,0.62,0,0,0,1,5,-7.2,0,0,14,0,0.371,92.92,93.10000000000001,0.96,0.73,779,0.5,210,2.9000000000000004
+2023,3,5,7,0,-5.7,1.02,0.15,0.62,24,122,30,7,7,-6.800000000000001,13,0,100,13,0.376,92.2,87.24,0.96,0.73,779,0.6000000000000001,211,3
+2023,3,5,7,30,-4.9,1.02,0.15,0.62,59,358,110,3,7,-6.7,53,2,43,53,0.379,86.88,81.79,0.97,0.73,780,0.6000000000000001,213,3.4000000000000004
+2023,3,5,8,0,-4.1000000000000005,1.02,0.171,0.62,87,514,208,0,7,-6.1000000000000005,116,13,0,119,0.381,86.25,76.39,0.97,0.73,780,0.6000000000000001,215,3.8000000000000003
+2023,3,5,8,30,-3.2,1.02,0.171,0.62,104,641,311,0,7,-6.1000000000000005,131,10,0,134,0.381,80.64,71.16,0.97,0.73,780,0.6000000000000001,220,4.3
+2023,3,5,9,0,-2.3000000000000003,1.04,0.15,0.62,116,735,413,4,8,-5.5,74,2,54,75,0.381,78.65,66.17,0.97,0.73,780,0.6000000000000001,224,4.800000000000001
+2023,3,5,9,30,-1.5,1.04,0.15,0.62,123,807,508,1,8,-5.5,117,3,18,118,0.381,74.15,61.5,0.97,0.73,780,0.6000000000000001,230,5.1000000000000005
+2023,3,5,10,0,-0.8,1.03,0.11900000000000001,0.62,123,868,593,3,8,-5.7,66,1,61,67,0.381,69.63,57.25,0.97,0.73,781,0.5,236,5.300000000000001
+2023,3,5,10,30,-0.30000000000000004,1.03,0.11900000000000001,0.62,128,901,664,2,7,-5.7,193,20,29,205,0.381,67.14,53.53,0.97,0.73,781,0.5,242,5.4
+2023,3,5,11,0,0.1,1.04,0.111,0.62,131,926,720,0,7,-6.300000000000001,358,76,0,406,0.381,62.300000000000004,50.47,0.97,0.73,781,0.5,247,5.5
+2023,3,5,11,30,0.4,1.04,0.111,0.62,133,940,760,3,8,-6.300000000000001,156,7,46,161,0.38,60.96,48.2,0.96,0.73,781,0.5,249,5.5
+2023,3,5,12,0,0.7000000000000001,1.05,0.106,0.62,133,950,783,2,7,-6.6000000000000005,243,48,21,276,0.379,58.160000000000004,46.83,0.96,0.73,781,0.5,251,5.5
+2023,3,5,12,30,0.7000000000000001,1.05,0.106,0.62,132,955,790,0,8,-6.6000000000000005,277,45,0,308,0.378,58.160000000000004,46.47,0.96,0.73,781,0.5,253,5.300000000000001
+2023,3,5,13,0,0.7000000000000001,1.06,0.099,0.62,128,956,779,0,7,-6.800000000000001,387,100,0,455,0.378,57.36,47.11,0.96,0.73,781,0.5,254,5.1000000000000005
+2023,3,5,13,30,0.7000000000000001,1.06,0.099,0.62,125,950,752,0,8,-6.800000000000001,335,118,0,413,0.377,57.36,48.74,0.96,0.73,781,0.5,255,4.7
+2023,3,5,14,0,0.7000000000000001,1.06,0.094,0.62,120,940,708,0,7,-6.800000000000001,387,168,0,492,0.375,57.14,51.24,0.96,0.73,781,0.5,256,4.4
+2023,3,5,14,30,0.6000000000000001,1.06,0.094,0.62,113,924,650,0,7,-6.800000000000001,315,375,0,533,0.373,57.63,54.49,0.97,0.73,782,0.5,257,3.8000000000000003
+2023,3,5,15,0,0.5,1.07,0.08600000000000001,0.62,104,902,577,0,7,-6.7,255,467,7,500,0.37,58.31,58.370000000000005,0.97,0.73,782,0.5,259,3.3000000000000003
+2023,3,5,15,30,0.2,1.07,0.08600000000000001,0.62,94,871,493,0,7,-6.7,301,192,0,389,0.368,59.58,62.74,0.96,0.73,782,0.5,265,2.4000000000000004
+2023,3,5,16,0,-0.1,1.08,0.076,0.62,83,826,399,0,7,-6.300000000000001,238,77,0,267,0.365,62.940000000000005,67.5,0.96,0.73,782,0.5,271,1.6
+2023,3,5,16,30,-0.8,1.08,0.076,0.62,71,754,297,0,7,-6.300000000000001,151,174,7,203,0.363,66.22,72.56,0.96,0.73,782,0.5,146,1
+2023,3,5,17,0,-1.4000000000000001,1.11,0.073,0.62,58,643,193,0,7,-5.800000000000001,108,104,0,130,0.361,71.73,77.85000000000001,0.96,0.6900000000000001,783,0.5,21,0.4
+2023,3,5,17,30,-2,1.11,0.073,0.62,40,462,94,6,7,-5.800000000000001,44,17,86,46,0.358,74.96000000000001,83.27,0.96,0.6900000000000001,783,0.5,45,1
+2023,3,5,18,0,-2.7,1.1400000000000001,0.066,0.62,16,141,19,5,7,-6.6000000000000005,8,0,71,8,0.356,74.51,88.67,0.96,0.6900000000000001,783,0.5,69,1.6
+2023,3,5,18,30,-3.1,1.1400000000000001,0.066,0.62,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.354,76.76,94.63,0.96,0.6900000000000001,783,0.5,73,2
+2023,3,5,19,0,-3.6,1.16,0.059000000000000004,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.353,81.24,100.32000000000001,0.96,0.6900000000000001,783,0.5,77,2.3000000000000003
+2023,3,5,19,30,-3.8000000000000003,1.16,0.059000000000000004,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.35100000000000003,82.46000000000001,106,0.96,0.6900000000000001,783,0.5,80,2.4000000000000004
+2023,3,5,20,0,-3.9000000000000004,1.1500000000000001,0.058,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.35000000000000003,84.72,111.63,0.96,0.6900000000000001,783,0.5,82,2.5
+2023,3,5,20,30,-3.9000000000000004,1.1500000000000001,0.058,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.34800000000000003,84.72,117.15,0.96,0.6900000000000001,783,0.5,87,2.4000000000000004
+2023,3,5,21,0,-3.9000000000000004,1.1300000000000001,0.059000000000000004,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34600000000000003,86.38,122.51,0.97,0.6900000000000001,783,0.5,91,2.2
+2023,3,5,21,30,-3.8000000000000003,1.1300000000000001,0.059000000000000004,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34500000000000003,85.74,127.62,0.96,0.6900000000000001,783,0.6000000000000001,104,2
+2023,3,5,22,0,-3.7,1.12,0.055,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.343,86.51,132.38,0.96,0.6900000000000001,783,0.6000000000000001,117,1.7000000000000002
+2023,3,5,22,30,-3.5,1.12,0.055,0.62,0,0,0,0,8,-5.6000000000000005,0,0,0,0,0.342,85.23,136.66,0.96,0.6900000000000001,783,0.6000000000000001,138,1.8
+2023,3,5,23,0,-3.4000000000000004,1.09,0.046,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.341,84.56,140.29,0.96,0.6900000000000001,782,0.6000000000000001,158,2
+2023,3,5,23,30,-3.2,1.09,0.046,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.341,83.31,143.05,0.96,0.6900000000000001,782,0.5,169,2.6
+2023,3,6,0,0,-3,1.04,0.038,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.341,81.16,144.73,0.9500000000000001,0.6900000000000001,782,0.5,179,3.2
+2023,3,6,0,30,-2.8000000000000003,1.04,0.038,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.341,79.96000000000001,145.18,0.9500000000000001,0.6900000000000001,782,0.5,184,3.8000000000000003
+2023,3,6,1,0,-2.7,0.99,0.035,0.62,0,0,0,0,4,-6,0,0,0,0,0.342,77.9,144.34,0.9500000000000001,0.6900000000000001,782,0.5,188,4.4
+2023,3,6,1,30,-2.8000000000000003,0.99,0.035,0.62,0,0,0,0,0,-6,0,0,0,0,0.342,78.48,142.3,0.9500000000000001,0.6900000000000001,782,0.5,190,4.6000000000000005
+2023,3,6,2,0,-3,0.98,0.034,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.343,77.57000000000001,139.24,0.9500000000000001,0.6900000000000001,782,0.5,192,4.800000000000001
+2023,3,6,2,30,-3.5,0.98,0.034,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.343,80.51,135.39000000000001,0.9500000000000001,0.6900000000000001,782,0.6000000000000001,190,4.3
+2023,3,6,3,0,-4,1.01,0.038,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.343,81.75,130.94,0.9500000000000001,0.6900000000000001,782,0.6000000000000001,188,3.9000000000000004
+2023,3,6,3,30,-4.1000000000000005,1.01,0.038,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.342,82.47,126.05,0.9500000000000001,0.6900000000000001,783,0.6000000000000001,190,4
+2023,3,6,4,0,-4.3,1.03,0.044,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.341,83.15,120.85000000000001,0.96,0.6900000000000001,783,0.6000000000000001,191,4
+2023,3,6,4,30,-4.2,1.03,0.044,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.34,82.53,115.43,0.96,0.6900000000000001,783,0.6000000000000001,197,4.2
+2023,3,6,5,0,-4.2,1.04,0.054,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.339,84.29,109.86,0.96,0.6900000000000001,783,0.6000000000000001,202,4.3
+2023,3,6,5,30,-4.4,1.04,0.054,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.337,85.56,104.2,0.97,0.6900000000000001,783,0.6000000000000001,207,3.9000000000000004
+2023,3,6,6,0,-4.5,1.04,0.062,0.62,0,0,0,0,4,-6.2,0,0,0,0,0.335,88.01,98.5,0.97,0.6900000000000001,783,0.6000000000000001,211,3.5
+2023,3,6,6,30,-4.1000000000000005,1.04,0.062,0.62,0,0,0,1,4,-6.2,0,0,14,0,0.334,85.51,92.8,0.97,0.6900000000000001,784,0.6000000000000001,218,3.3000000000000003
+2023,3,6,7,0,-3.7,1.04,0.065,0.62,25,250,38,7,5,-5.7,14,0,100,14,0.332,86.08,86.96000000000001,0.97,0.6900000000000001,784,0.6000000000000001,225,3.1
+2023,3,6,7,30,-3,1.04,0.065,0.62,46,527,124,3,4,-5.7,51,58,50,60,0.332,81.71000000000001,81.49,0.97,0.6900000000000001,784,0.6000000000000001,231,3.3000000000000003
+2023,3,6,8,0,-2.2,1.05,0.076,0.62,63,674,225,0,4,-5.300000000000001,107,3,0,108,0.331,79.04,76.08,0.97,0.6900000000000001,784,0.6000000000000001,237,3.5
+2023,3,6,8,30,-1.6,1.05,0.076,0.62,75,774,329,0,5,-5.300000000000001,210,134,0,254,0.331,75.62,70.84,0.97,0.6900000000000001,784,0.6000000000000001,238,3.8000000000000003
+2023,3,6,9,0,-1,1.06,0.076,0.62,86,841,430,0,5,-5.4,234,344,0,375,0.331,72.12,65.84,0.97,0.6900000000000001,785,0.6000000000000001,240,4.2
+2023,3,6,9,30,-0.5,1.06,0.076,0.62,92,893,523,0,5,-5.4,268,416,7,469,0.33,69.54,61.160000000000004,0.97,0.6900000000000001,785,0.6000000000000001,239,4.4
+2023,3,6,10,0,0,1.06,0.068,0.62,97,932,606,0,7,-5.6000000000000005,280,319,14,454,0.33,66.22,56.89,0.97,0.6900000000000001,785,0.6000000000000001,239,4.7
+2023,3,6,10,30,0.4,1.06,0.068,0.62,99,961,675,0,5,-5.6000000000000005,411,229,0,548,0.329,64.33,53.160000000000004,0.97,0.6900000000000001,785,0.6000000000000001,238,4.9
+2023,3,6,11,0,0.8,1.1,0.058,0.62,100,984,731,0,5,-5.7,455,126,4,536,0.329,61.95,50.09,0.97,0.6900000000000001,785,0.6000000000000001,237,5.1000000000000005
+2023,3,6,11,30,1.1,1.1,0.058,0.62,102,995,770,0,5,-5.7,366,499,18,701,0.328,60.620000000000005,47.81,0.97,0.6900000000000001,785,0.6000000000000001,237,5.300000000000001
+2023,3,6,12,0,1.4000000000000001,1.09,0.058,0.62,104,1000,793,0,7,-5.800000000000001,186,854,36,775,0.327,58.660000000000004,46.44,0.97,0.6900000000000001,785,0.6000000000000001,236,5.4
+2023,3,6,12,30,1.6,1.09,0.058,0.62,103,1003,799,0,0,-5.800000000000001,121,971,14,795,0.326,57.83,46.08,0.97,0.6900000000000001,785,0.6000000000000001,235,5.5
+2023,3,6,13,0,1.8,1.07,0.054,0.62,101,1003,788,0,0,-6.1000000000000005,160,897,36,775,0.324,55.97,46.74,0.97,0.6900000000000001,785,0.6000000000000001,234,5.5
+2023,3,6,13,30,1.9000000000000001,1.07,0.054,0.62,99,997,761,0,7,-6.1000000000000005,269,661,14,708,0.323,55.57,48.38,0.97,0.6900000000000001,785,0.6000000000000001,234,5.5
+2023,3,6,14,0,1.9000000000000001,1.06,0.052000000000000005,0.62,95,987,717,0,7,-6.300000000000001,231,699,7,672,0.323,54.57,50.9,0.97,0.6900000000000001,785,0.6000000000000001,234,5.4
+2023,3,6,14,30,1.9000000000000001,1.06,0.052000000000000005,0.62,90,972,659,0,7,-6.300000000000001,198,722,21,621,0.323,54.57,54.18,0.97,0.6900000000000001,785,0.6000000000000001,235,5.1000000000000005
+2023,3,6,15,0,1.8,1.04,0.049,0.62,85,950,587,0,7,-6.4,213,624,7,543,0.323,54.44,58.08,0.97,0.6900000000000001,785,0.5,236,4.800000000000001
+2023,3,6,15,30,1.5,1.04,0.049,0.62,79,918,503,0,8,-6.4,215,461,11,428,0.323,55.69,62.47,0.97,0.6900000000000001,786,0.5,240,4.1000000000000005
+2023,3,6,16,0,1.1,1.04,0.048,0.62,71,872,408,0,8,-6.1000000000000005,188,410,0,347,0.324,58.75,67.25,0.97,0.6900000000000001,786,0.5,244,3.3000000000000003
+2023,3,6,16,30,0,1.04,0.048,0.62,62,803,306,0,7,-6.1000000000000005,149,356,7,257,0.325,63.6,72.33,0.97,0.6900000000000001,786,0.5,254,2.3000000000000003
+2023,3,6,17,0,-1.1,1.04,0.049,0.62,52,696,201,0,7,-5.300000000000001,106,179,11,144,0.326,73.11,77.62,0.97,0.74,786,0.5,265,1.3
+2023,3,6,17,30,-1.9000000000000001,1.04,0.049,0.62,37,520,100,5,7,-5.300000000000001,43,2,71,43,0.327,77.53,83.06,0.96,0.74,786,0.5,281,1.3
+2023,3,6,18,0,-2.6,1.04,0.048,0.62,16,172,21,5,7,-6.300000000000001,10,0,71,10,0.328,75.86,88.48,0.96,0.74,786,0.5,296,1.2000000000000002
+2023,3,6,18,30,-2.9000000000000004,1.04,0.048,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.328,77.67,94.42,0.96,0.74,787,0.5,310,1.3
+2023,3,6,19,0,-3.3000000000000003,1.03,0.046,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.329,76.5,100.11,0.96,0.74,787,0.5,324,1.4000000000000001
+2023,3,6,19,30,-3.5,1.03,0.046,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.329,77.65,105.79,0.96,0.74,787,0.5,334,1.6
+2023,3,6,20,0,-3.8000000000000003,1.03,0.045,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.328,75.07000000000001,111.41,0.96,0.74,787,0.5,344,1.9000000000000001
+2023,3,6,20,30,-4.2,1.03,0.045,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.328,77.35000000000001,116.93,0.96,0.74,787,0.5,348,2
+2023,3,6,21,0,-4.5,1.03,0.043000000000000003,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.328,74.62,122.27,0.96,0.74,787,0.5,352,2.2
+2023,3,6,21,30,-4.800000000000001,1.03,0.043000000000000003,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.328,76.43,127.37,0.96,0.74,788,0.5,354,2.2
+2023,3,6,22,0,-5.1000000000000005,1.03,0.041,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.328,74.61,132.11,0.96,0.74,788,0.5,356,2.3000000000000003
+2023,3,6,22,30,-5.4,1.03,0.041,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.328,76.32000000000001,136.37,0.96,0.74,788,0.5,357,2.2
+2023,3,6,23,0,-5.6000000000000005,1.03,0.041,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.327,75.3,139.96,0.96,0.74,788,0.5,358,2.2
+2023,3,6,23,30,-5.9,1.03,0.041,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.327,77.04,142.70000000000002,0.96,0.74,788,0.5,179,2.1
+2023,3,7,0,0,-6.1000000000000005,1.03,0.041,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.326,76.72,144.36,0.96,0.74,788,0.5,1,2.1
+2023,3,7,0,30,-6.300000000000001,1.03,0.041,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.326,77.9,144.79,0.96,0.74,788,0.5,5,2
+2023,3,7,1,0,-6.5,1.03,0.041,0.62,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.326,78.28,143.95000000000002,0.96,0.74,788,0.5,10,2
+2023,3,7,1,30,-6.800000000000001,1.03,0.041,0.62,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.327,80.10000000000001,141.91,0.96,0.74,788,0.5,18,2
+2023,3,7,2,0,-7,1.03,0.041,0.62,0,0,0,0,5,-9.8,0,0,0,0,0.327,80.68,138.87,0.96,0.74,788,0.5,26,2
+2023,3,7,2,30,-7.2,1.03,0.041,0.62,0,0,0,0,5,-9.8,0,0,0,0,0.327,81.93,135.04,0.96,0.74,788,0.5,33,2
+2023,3,7,3,0,-7.5,1.03,0.04,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.327,83.04,130.6,0.96,0.74,788,0.5,40,2
+2023,3,7,3,30,-7.7,1.03,0.04,0.62,0,0,0,0,4,-9.9,0,0,0,0,0.328,84.34,125.73,0.96,0.74,788,0.5,45,2
+2023,3,7,4,0,-7.9,1.03,0.04,0.62,0,0,0,0,4,-10,0,0,0,0,0.328,84.67,120.54,0.96,0.74,788,0.5,50,2
+2023,3,7,4,30,-8,1.03,0.04,0.62,0,0,0,0,4,-10,0,0,0,0,0.33,85.33,115.12,0.96,0.74,788,0.5,57,2
+2023,3,7,5,0,-8.200000000000001,1.03,0.04,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.331,86.01,109.56,0.96,0.74,788,0.5,63,2.1
+2023,3,7,5,30,-8.3,1.03,0.04,0.62,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.332,86.68,103.91,0.96,0.74,788,0.5,67,2.1
+2023,3,7,6,0,-8.4,1.04,0.04,0.62,0,0,0,0,5,-10.200000000000001,0,0,0,0,0.334,87,98.21000000000001,0.96,0.74,788,0.5,72,2.1
+2023,3,7,6,30,-7.800000000000001,1.04,0.04,0.62,0,0,0,1,4,-10.200000000000001,0,0,14,0,0.336,83.04,92.51,0.96,0.74,788,0.5,75,2.2
+2023,3,7,7,0,-7.300000000000001,1.05,0.04,0.62,25,332,44,7,5,-9.9,18,0,100,18,0.338,81.5,86.66,0.96,0.74,788,0.5,78,2.3000000000000003
+2023,3,7,7,30,-6.2,1.05,0.04,0.62,41,618,136,3,5,-9.9,73,100,43,88,0.34,74.9,81.19,0.96,0.74,788,0.5,81,1.9000000000000001
+2023,3,7,8,0,-5.1000000000000005,1.04,0.041,0.62,54,761,241,0,4,-9.600000000000001,106,395,21,203,0.342,70.51,75.77,0.96,0.74,788,0.5,84,1.6
+2023,3,7,8,30,-4.1000000000000005,1.04,0.041,0.62,64,850,347,2,4,-9.600000000000001,160,81,32,187,0.34400000000000003,65.4,70.52,0.96,0.74,788,0.4,139,1.2000000000000002
+2023,3,7,9,0,-3.1,1.04,0.042,0.62,72,909,449,3,8,-9.4,175,49,43,195,0.34600000000000003,61.800000000000004,65.5,0.96,0.74,788,0.4,194,0.9
+2023,3,7,9,30,-2.2,1.04,0.042,0.62,78,951,542,0,8,-9.4,252,83,0,292,0.34800000000000003,57.81,60.81,0.96,0.74,788,0.4,212,1.8
+2023,3,7,10,0,-1.4000000000000001,1.03,0.04,0.62,83,981,624,0,8,-9,317,67,0,354,0.35000000000000003,56.29,56.54,0.96,0.74,788,0.4,230,2.6
+2023,3,7,10,30,-0.7000000000000001,1.03,0.04,0.62,88,1002,694,2,8,-9,394,113,21,462,0.353,53.480000000000004,52.79,0.96,0.74,788,0.4,233,3.3000000000000003
+2023,3,7,11,0,0,1.02,0.038,0.62,90,1018,748,2,8,-8.8,427,188,29,549,0.356,51.74,49.7,0.96,0.74,788,0.4,237,3.9000000000000004
+2023,3,7,11,30,0.5,1.02,0.038,0.62,91,1028,787,0,8,-8.8,416,318,7,631,0.359,49.9,47.42,0.96,0.74,788,0.4,239,4.4
+2023,3,7,12,0,1.1,1.03,0.036000000000000004,0.62,92,1035,810,0,5,-8.700000000000001,418,450,7,730,0.363,48.08,46.050000000000004,0.9500000000000001,0.74,787,0.4,241,5
+2023,3,7,12,30,1.3,1.03,0.036000000000000004,0.62,92,1037,816,0,5,-8.700000000000001,448,406,7,732,0.368,47.39,45.69,0.9500000000000001,0.74,787,0.4,243,5.2
+2023,3,7,13,0,1.6,1.04,0.033,0.62,89,1037,805,0,5,-8.8,408,434,0,708,0.372,45.85,46.36,0.9500000000000001,0.74,787,0.4,244,5.4
+2023,3,7,13,30,1.7000000000000002,1.04,0.033,0.62,90,1025,776,0,5,-8.8,353,518,7,699,0.377,45.52,48.02,0.9500000000000001,0.74,787,0.4,244,5.4
+2023,3,7,14,0,1.8,0.88,0.042,0.62,92,1007,732,0,5,-9,283,625,14,680,0.382,44.56,50.57,0.9500000000000001,0.74,787,0.4,245,5.300000000000001
+2023,3,7,14,30,1.7000000000000002,0.88,0.042,0.62,88,991,672,0,7,-9,181,768,14,634,0.385,44.88,53.870000000000005,0.9500000000000001,0.74,787,0.4,245,5
+2023,3,7,15,0,1.7000000000000002,0.91,0.041,0.62,82,969,599,0,7,-9.1,169,754,21,571,0.388,44.660000000000004,57.79,0.9500000000000001,0.74,787,0.4,245,4.7
+2023,3,7,15,30,1.3,0.91,0.041,0.62,76,938,513,0,0,-9.1,76,938,0,513,0.39,45.96,62.2,0.9500000000000001,0.74,787,0.4,245,4.1000000000000005
+2023,3,7,16,0,1,0.9400000000000001,0.039,0.62,68,895,418,0,0,-8.700000000000001,139,642,7,390,0.391,48.25,67,0.9500000000000001,0.74,787,0.4,246,3.5
+2023,3,7,16,30,-0.1,0.9400000000000001,0.039,0.62,59,828,314,0,4,-8.700000000000001,203,73,0,225,0.391,52.24,72.09,0.9500000000000001,0.74,787,0.4,249,2.3000000000000003
+2023,3,7,17,0,-1.3,0.97,0.041,0.62,50,726,208,0,0,-7.2,72,499,0,181,0.391,64.43,77.4,0.9500000000000001,0.65,787,0.4,252,1.2000000000000002
+2023,3,7,17,30,-1.7000000000000002,0.97,0.041,0.62,36,551,105,1,0,-7.1000000000000005,40,505,11,103,0.389,66.43,82.84,0.9500000000000001,0.65,788,0.4,267,1
+2023,3,7,18,0,-2.1,0.99,0.044,0.62,16,190,22,2,0,-9.3,17,147,25,21,0.388,57.97,88.28,0.96,0.65,788,0.4,282,0.8
+2023,3,7,18,30,-2.4000000000000004,0.99,0.044,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.385,59.27,94.21000000000001,0.96,0.65,788,0.4,316,0.8
+2023,3,7,19,0,-2.8000000000000003,0.99,0.048,0.62,0,0,0,0,5,-9.200000000000001,0,0,0,0,0.382,61.27,99.91,0.96,0.65,788,0.5,351,0.8
+2023,3,7,19,30,-3.1,0.99,0.048,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.38,62.65,105.58,0.96,0.65,788,0.5,184,0.8
+2023,3,7,20,0,-3.4000000000000004,0.99,0.056,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.378,68.82000000000001,111.2,0.97,0.65,788,0.5,18,0.9
+2023,3,7,20,30,-3.3000000000000003,0.99,0.056,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.376,68.31,116.7,0.97,0.65,788,0.5,27,0.9
+2023,3,7,21,0,-3.2,0.99,0.061,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.375,70.52,122.04,0.97,0.65,788,0.5,35,0.9
+2023,3,7,21,30,-3.2,0.99,0.061,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.373,70.52,127.11,0.97,0.65,788,0.5,41,0.9
+2023,3,7,22,0,-3.1,0.99,0.058,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.372,71.4,131.84,0.97,0.65,788,0.5,47,0.9
+2023,3,7,22,30,-3.1,0.99,0.058,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.371,71.4,136.07,0.97,0.65,788,0.5,52,0.8
+2023,3,7,23,0,-3,0.99,0.055,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.369,71.66,139.64000000000001,0.96,0.65,788,0.6000000000000001,57,0.7000000000000001
+2023,3,7,23,30,-3.1,0.99,0.055,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.368,72.19,142.34,0.96,0.65,788,0.6000000000000001,65,0.7000000000000001
+2023,3,8,0,0,-3.1,1,0.051000000000000004,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.367,71.63,143.98,0.96,0.65,787,0.6000000000000001,72,0.6000000000000001
+2023,3,8,0,30,-3.1,1,0.051000000000000004,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.366,71.63,144.4,0.96,0.65,787,0.6000000000000001,87,0.6000000000000001
+2023,3,8,1,0,-3.1,1,0.046,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.365,70.93,143.55,0.96,0.65,787,0.6000000000000001,102,0.6000000000000001
+2023,3,8,1,30,-3.2,1,0.046,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.365,71.46000000000001,141.53,0.96,0.65,787,0.6000000000000001,111,0.6000000000000001
+2023,3,8,2,0,-3.3000000000000003,1.01,0.043000000000000003,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.364,72.24,138.5,0.9500000000000001,0.65,787,0.5,121,0.6000000000000001
+2023,3,8,2,30,-3.4000000000000004,1.01,0.043000000000000003,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.365,72.69,134.68,0.9500000000000001,0.65,786,0.5,120,0.6000000000000001
+2023,3,8,3,0,-3.5,1.02,0.04,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.365,72.68,130.26,0.9500000000000001,0.65,786,0.5,120,0.7000000000000001
+2023,3,8,3,30,-3.7,1.02,0.04,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.366,73.77,125.4,0.9500000000000001,0.65,786,0.5,121,0.7000000000000001
+2023,3,8,4,0,-3.8000000000000003,1.02,0.036000000000000004,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.367,73.7,120.22,0.9500000000000001,0.65,786,0.5,121,0.7000000000000001
+2023,3,8,4,30,-3.9000000000000004,1.02,0.036000000000000004,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.368,74.26,114.81,0.9500000000000001,0.65,786,0.5,122,0.8
+2023,3,8,5,0,-4.1000000000000005,1.03,0.034,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.368,75.11,109.26,0.9400000000000001,0.65,786,0.5,124,0.8
+2023,3,8,5,30,-4.2,1.03,0.034,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.368,75.68,103.61,0.9400000000000001,0.65,786,0.5,124,0.8
+2023,3,8,6,0,-4.3,1.03,0.032,0.62,0,0,0,0,0,-8,0,0,0,0,0.367,75.62,97.91,0.9400000000000001,0.65,786,0.5,124,0.8
+2023,3,8,6,30,-3.6,1.03,0.032,0.62,0,0,0,0,0,-8,0,0,0,0,0.367,71.75,92.21000000000001,0.9400000000000001,0.65,786,0.5,123,0.8
+2023,3,8,7,0,-2.9000000000000004,1.03,0.031,0.62,25,370,48,0,0,-6.9,25,370,0,48,0.366,73.65,86.38,0.9400000000000001,0.65,786,0.5,123,0.9
+2023,3,8,7,30,-1.6,1.03,0.031,0.62,38,653,142,0,0,-6.9,38,653,0,142,0.365,66.9,80.88,0.9400000000000001,0.65,786,0.5,141,1
+2023,3,8,8,0,-0.30000000000000004,1.02,0.029,0.62,48,791,247,0,0,-7.7,48,791,0,247,0.365,57.26,75.46000000000001,0.9400000000000001,0.65,786,0.5,159,1.1
+2023,3,8,8,30,0.8,1.02,0.029,0.62,57,873,353,0,0,-7.7,57,873,0,353,0.364,52.88,70.19,0.9400000000000001,0.65,786,0.5,181,1.9000000000000001
+2023,3,8,9,0,2,1.02,0.029,0.62,63,928,453,0,0,-7.800000000000001,63,928,0,453,0.363,48.36,65.17,0.93,0.65,786,0.5,202,2.6
+2023,3,8,9,30,2.7,1.02,0.029,0.62,68,967,545,0,0,-7.800000000000001,68,967,0,545,0.363,46.01,60.46,0.93,0.65,786,0.5,205,3.3000000000000003
+2023,3,8,10,0,3.4000000000000004,1.01,0.027,0.62,72,995,626,0,0,-7.9,72,995,0,626,0.363,43.39,56.18,0.93,0.65,786,0.5,208,3.9000000000000004
+2023,3,8,10,30,4,1.01,0.027,0.62,77,1014,695,0,0,-7.9,77,1014,0,695,0.363,41.54,52.42,0.93,0.65,785,0.5,210,4.4
+2023,3,8,11,0,4.6000000000000005,1.01,0.027,0.62,79,1028,749,0,0,-8.1,79,1028,0,749,0.362,39.11,49.32,0.93,0.65,785,0.5,212,4.9
+2023,3,8,11,30,5,1.01,0.027,0.62,82,1036,788,0,0,-8.1,82,1036,0,788,0.362,38.03,47.02,0.93,0.65,785,0.5,213,5.300000000000001
+2023,3,8,12,0,5.4,1.01,0.028,0.62,83,1040,810,0,0,-8.3,83,1040,0,810,0.361,36.45,45.660000000000004,0.93,0.65,784,0.5,214,5.800000000000001
+2023,3,8,12,30,5.6000000000000005,1.01,0.028,0.62,84,1038,814,0,0,-8.3,90,1029,0,814,0.359,35.95,45.300000000000004,0.9400000000000001,0.65,784,0.5,215,6.1000000000000005
+2023,3,8,13,0,5.800000000000001,1,0.031,0.62,85,1032,802,0,0,-8.4,85,1032,0,802,0.358,35.2,45.99,0.9400000000000001,0.65,784,0.5,215,6.5
+2023,3,8,13,30,5.800000000000001,1,0.031,0.62,84,1024,774,0,0,-8.4,84,1024,0,774,0.357,35.160000000000004,47.67,0.9400000000000001,0.65,783,0.5,217,6.7
+2023,3,8,14,0,5.7,1.01,0.035,0.62,83,1011,730,0,0,-8.4,83,1011,7,730,0.355,35.410000000000004,50.24,0.9400000000000001,0.65,783,0.5,218,7
+2023,3,8,14,30,5.4,1.01,0.035,0.62,82,991,671,0,0,-8.4,82,991,7,671,0.355,36.160000000000004,53.56,0.9500000000000001,0.65,783,0.5,220,7.1000000000000005
+2023,3,8,15,0,5.1000000000000005,1,0.041,0.62,80,964,598,0,0,-8.4,116,865,14,581,0.354,37,57.5,0.9500000000000001,0.65,783,0.5,222,7.2
+2023,3,8,15,30,4.5,1,0.041,0.62,76,926,512,0,0,-8.4,76,926,0,512,0.354,38.58,61.940000000000005,0.9500000000000001,0.65,783,0.5,223,6.6000000000000005
+2023,3,8,16,0,3.8000000000000003,0.99,0.052000000000000005,0.62,72,871,416,0,0,-8.1,72,871,0,416,0.354,41.6,66.75,0.96,0.65,783,0.5,224,6.1000000000000005
+2023,3,8,16,30,2.5,0.99,0.052000000000000005,0.62,66,789,312,0,0,-8.1,66,789,0,312,0.355,45.6,71.86,0.96,0.65,783,0.5,225,4.9
+2023,3,8,17,0,1.2000000000000002,0.98,0.068,0.62,58,663,205,0,7,-7.1000000000000005,76,538,14,195,0.355,54.04,77.18,0.97,0.66,783,0.6000000000000001,226,3.8000000000000003
+2023,3,8,17,30,0.30000000000000004,0.98,0.068,0.62,43,469,103,5,7,-7.1000000000000005,47,138,86,65,0.356,57.660000000000004,82.63,0.97,0.66,783,0.6000000000000001,227,3.3000000000000003
+2023,3,8,18,0,-0.6000000000000001,0.96,0.081,0.62,19,150,24,6,7,-6.4,11,5,82,11,0.357,65,88.09,0.97,0.66,783,0.6000000000000001,227,2.8000000000000003
+2023,3,8,18,30,-0.9,0.96,0.081,0.62,0,0,0,0,8,-6.4,0,0,0,0,0.358,66.44,94.01,0.97,0.66,783,0.6000000000000001,227,2.5
+2023,3,8,19,0,-1.2000000000000002,0.9500000000000001,0.079,0.62,0,0,0,0,8,-5.800000000000001,0,0,0,0,0.358,70.85000000000001,99.7,0.97,0.66,784,0.6000000000000001,227,2.2
+2023,3,8,19,30,-1.5,0.9500000000000001,0.079,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.358,72.43,105.37,0.97,0.66,784,0.6000000000000001,227,1.9000000000000001
+2023,3,8,20,0,-1.8,0.96,0.08,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.359,75.77,110.99000000000001,0.97,0.66,784,0.6000000000000001,226,1.5
+2023,3,8,20,30,-2,0.96,0.08,0.62,0,0,0,0,6,-5.5,0,0,0,0,0.359,76.89,116.48,0.97,0.66,784,0.6000000000000001,228,1.4000000000000001
+2023,3,8,21,0,-2.1,0.97,0.08600000000000001,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.359,79.28,121.8,0.97,0.66,784,0.6000000000000001,230,1.4000000000000001
+2023,3,8,21,30,-2.3000000000000003,0.97,0.08600000000000001,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.359,80.46000000000001,126.86,0.97,0.66,784,0.6000000000000001,239,1.6
+2023,3,8,22,0,-2.4000000000000004,0.99,0.091,0.62,0,0,0,0,7,-5,0,0,0,0,0.36,82.47,131.56,0.97,0.66,784,0.6000000000000001,248,1.7000000000000002
+2023,3,8,22,30,-2.5,0.99,0.091,0.62,0,0,0,0,4,-5,0,0,0,0,0.36,83.08,135.77,0.97,0.66,784,0.6000000000000001,260,2.1
+2023,3,8,23,0,-2.7,1.03,0.10300000000000001,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.361,85.11,139.31,0.98,0.66,785,0.6000000000000001,272,2.4000000000000004
+2023,3,8,23,30,-2.9000000000000004,1.03,0.10300000000000001,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.361,86.38,141.99,0.97,0.66,785,0.6000000000000001,281,2.4000000000000004
+2023,3,9,0,0,-3.1,1.09,0.08700000000000001,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.362,85.31,143.6,0.97,0.66,785,0.6000000000000001,290,2.5
+2023,3,9,0,30,-3.4000000000000004,1.09,0.08700000000000001,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.361,87.35000000000001,144.01,0.97,0.66,786,0.5,293,2.1
+2023,3,9,1,0,-3.8000000000000003,1.1300000000000001,0.06,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.36,83.43,143.16,0.96,0.66,786,0.5,295,1.7000000000000002
+2023,3,9,1,30,-4,1.1300000000000001,0.06,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.357,84.8,141.14000000000001,0.96,0.66,787,0.5,285,1.5
+2023,3,9,2,0,-4.2,1.1500000000000001,0.047,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.354,81.78,138.13,0.9500000000000001,0.66,787,0.4,275,1.2000000000000002
+2023,3,9,2,30,-4.4,1.1500000000000001,0.047,0.62,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.35100000000000003,83.02,134.32,0.9500000000000001,0.66,787,0.4,259,1.2000000000000002
+2023,3,9,3,0,-4.6000000000000005,1.1500000000000001,0.039,0.62,0,0,0,0,4,-7,0,0,0,0,0.34700000000000003,83.36,129.92000000000002,0.9500000000000001,0.66,788,0.4,242,1.3
+2023,3,9,3,30,-4.9,1.1500000000000001,0.039,0.62,0,0,0,0,0,-7,0,0,0,0,0.34500000000000003,85.27,125.07000000000001,0.9400000000000001,0.66,788,0.4,235,1.4000000000000001
+2023,3,9,4,0,-5.2,1.1500000000000001,0.034,0.62,0,0,0,0,0,-7,0,0,0,0,0.342,87.28,119.9,0.9400000000000001,0.66,788,0.4,228,1.6
+2023,3,9,4,30,-5.4,1.1500000000000001,0.034,0.62,0,0,0,0,0,-7,0,0,0,0,0.339,88.73,114.5,0.9400000000000001,0.66,789,0.4,227,1.7000000000000002
+2023,3,9,5,0,-5.6000000000000005,1.1400000000000001,0.03,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.336,90.76,108.95,0.93,0.66,789,0.4,225,1.9000000000000001
+2023,3,9,5,30,-5.7,1.1400000000000001,0.03,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.334,91.45,103.3,0.93,0.66,789,0.4,227,2.1
+2023,3,9,6,0,-5.7,1.1500000000000001,0.026000000000000002,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.332,91.41,97.61,0.93,0.66,790,0.4,228,2.4000000000000004
+2023,3,9,6,30,-4.800000000000001,1.1500000000000001,0.026000000000000002,0.62,4,40,3,1,0,-6.9,3,21,14,2,0.331,85.39,91.91,0.93,0.66,790,0.4,230,2.8000000000000003
+2023,3,9,7,0,-3.9000000000000004,1.17,0.024,0.62,24,465,56,1,0,-7.2,21,383,18,47,0.331,77.99,86.08,0.93,0.66,790,0.30000000000000004,232,3.2
+2023,3,9,7,30,-2.9000000000000004,1.17,0.024,0.62,37,705,152,0,0,-7.2,38,662,7,146,0.332,72.48,80.58,0.92,0.66,791,0.30000000000000004,241,3.4000000000000004
+2023,3,9,8,0,-1.8,1.17,0.02,0.62,45,835,259,0,0,-9,45,835,0,259,0.332,58.11,75.14,0.92,0.66,791,0.30000000000000004,250,3.5
+2023,3,9,8,30,-1.1,1.17,0.02,0.62,52,910,365,0,0,-9,52,910,0,365,0.333,55.21,69.87,0.92,0.66,791,0.30000000000000004,247,3.7
+2023,3,9,9,0,-0.30000000000000004,1.18,0.018000000000000002,0.62,57,959,465,0,0,-10.8,57,959,0,465,0.334,45.14,64.83,0.92,0.66,791,0.4,244,3.9000000000000004
+2023,3,9,9,30,0.4,1.18,0.018000000000000002,0.62,61,991,555,0,0,-10.8,61,991,0,555,0.335,42.910000000000004,60.120000000000005,0.92,0.66,791,0.4,241,4.3
+2023,3,9,10,0,1.1,1.18,0.018000000000000002,0.62,66,1015,636,0,0,-11.600000000000001,66,1015,0,636,0.337,38.28,55.81,0.92,0.66,792,0.4,238,4.7
+2023,3,9,10,30,1.7000000000000002,1.18,0.018000000000000002,0.62,69,1033,704,0,0,-11.600000000000001,69,1033,0,704,0.338,36.67,52.04,0.92,0.66,792,0.4,237,5
+2023,3,9,11,0,2.3000000000000003,1.16,0.017,0.62,71,1045,758,0,0,-11.8,71,1045,0,758,0.34,34.47,48.93,0.92,0.66,791,0.4,236,5.300000000000001
+2023,3,9,11,30,2.8000000000000003,1.16,0.017,0.62,73,1054,797,0,0,-11.8,73,1054,0,797,0.341,33.27,46.63,0.92,0.66,791,0.4,236,5.5
+2023,3,9,12,0,3.2,1.1500000000000001,0.017,0.62,74,1059,819,0,0,-11.700000000000001,74,1059,0,819,0.342,32.65,45.26,0.92,0.66,791,0.4,236,5.7
+2023,3,9,12,30,3.5,1.1500000000000001,0.017,0.62,73,1060,824,0,0,-11.700000000000001,73,1060,0,824,0.342,31.970000000000002,44.910000000000004,0.92,0.66,791,0.4,235,5.7
+2023,3,9,13,0,3.8000000000000003,1.12,0.017,0.62,73,1058,813,0,0,-11.4,73,1058,0,813,0.341,31.92,45.61,0.92,0.66,791,0.4,234,5.7
+2023,3,9,13,30,3.9000000000000004,1.12,0.017,0.62,71,1053,785,0,0,-11.5,71,1053,0,785,0.341,31.650000000000002,47.31,0.92,0.66,790,0.4,232,5.5
+2023,3,9,14,0,4.1000000000000005,1.1,0.016,0.62,69,1044,741,0,0,-11.200000000000001,135,913,7,723,0.34,31.830000000000002,49.9,0.92,0.66,790,0.4,230,5.300000000000001
+2023,3,9,14,30,4.1000000000000005,1.1,0.016,0.62,66,1029,682,0,7,-11.200000000000001,255,602,0,615,0.34,31.830000000000002,53.25,0.92,0.66,790,0.4,228,5.1000000000000005
+2023,3,9,15,0,4,1.08,0.016,0.62,62,1010,609,0,7,-11,307,305,0,472,0.339,32.57,57.22,0.92,0.66,789,0.4,225,4.9
+2023,3,9,15,30,3.7,1.08,0.016,0.62,58,981,524,0,7,-11,287,254,0,408,0.339,33.26,61.67,0.92,0.66,789,0.4,222,4.5
+2023,3,9,16,0,3.3000000000000003,1.05,0.016,0.62,53,942,429,0,0,-10.200000000000001,92,804,0,413,0.339,36.4,66.5,0.92,0.66,789,0.4,218,4.1000000000000005
+2023,3,9,16,30,1.5,1.05,0.016,0.62,49,883,327,0,0,-10.200000000000001,49,883,0,327,0.34,41.37,71.62,0.92,0.66,789,0.4,212,3
+2023,3,9,17,0,-0.4,0.99,0.018000000000000002,0.62,41,792,220,0,0,-8,41,792,0,220,0.34,56.52,76.95,0.92,0.65,789,0.4,206,1.9000000000000001
+2023,3,9,17,30,-1.9000000000000001,0.99,0.018000000000000002,0.62,31,641,116,0,0,-8,31,641,0,116,0.34,63.08,82.42,0.92,0.65,789,0.4,200,1.9000000000000001
+2023,3,9,18,0,-3.4000000000000004,0.97,0.019,0.62,18,298,29,0,0,-9.4,18,298,0,29,0.341,63.410000000000004,87.89,0.92,0.65,789,0.4,194,1.9000000000000001
+2023,3,9,18,30,-3.4000000000000004,0.97,0.019,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.34,63.410000000000004,93.8,0.92,0.65,789,0.4,192,2
+2023,3,9,19,0,-3.5,0.9400000000000001,0.019,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.339,64.74,99.49000000000001,0.93,0.65,789,0.4,189,2.1
+2023,3,9,19,30,-3.5,0.9400000000000001,0.019,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.338,64.74,105.17,0.93,0.65,789,0.4,189,2.1
+2023,3,9,20,0,-3.5,0.93,0.022,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.337,66.6,110.77,0.93,0.65,788,0.4,189,2.1
+2023,3,9,20,30,-3.5,0.93,0.022,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.335,66.6,116.26,0.9400000000000001,0.65,788,0.4,192,2
+2023,3,9,21,0,-3.5,0.98,0.024,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.334,68.8,121.56,0.9400000000000001,0.65,788,0.4,195,1.9000000000000001
+2023,3,9,21,30,-3.4000000000000004,0.98,0.024,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.333,68.29,126.61,0.9400000000000001,0.65,788,0.4,194,1.9000000000000001
+2023,3,9,22,0,-3.3000000000000003,0.97,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.331,69.36,131.29,0.9400000000000001,0.65,788,0.4,193,1.9000000000000001
+2023,3,9,22,30,-3.3000000000000003,0.97,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.329,69.36,135.47,0.9400000000000001,0.65,788,0.5,189,2
+2023,3,9,23,0,-3.3000000000000003,0.93,0.026000000000000002,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.327,68.73,138.98,0.9400000000000001,0.65,787,0.5,185,2.1
+2023,3,9,23,30,-3.1,0.93,0.026000000000000002,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.324,67.72,141.63,0.9400000000000001,0.65,787,0.5,183,2.3000000000000003
+2023,3,10,0,0,-3,0.92,0.027,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.321,67.01,143.23,0.9400000000000001,0.65,786,0.5,181,2.6
+2023,3,10,0,30,-2.8000000000000003,0.92,0.027,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.318,66.02,143.62,0.9400000000000001,0.65,786,0.6000000000000001,182,2.9000000000000004
+2023,3,10,1,0,-2.6,0.96,0.024,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.315,66.11,142.76,0.9400000000000001,0.65,786,0.7000000000000001,184,3.1
+2023,3,10,1,30,-2.5,0.96,0.024,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.313,65.62,140.75,0.9500000000000001,0.65,786,0.7000000000000001,187,3.4000000000000004
+2023,3,10,2,0,-2.4000000000000004,1,0.026000000000000002,0.62,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.31,67.42,137.75,0.9500000000000001,0.65,785,0.8,190,3.7
+2023,3,10,2,30,-2.5,1,0.026000000000000002,0.62,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.31,67.92,133.96,0.9500000000000001,0.65,785,0.8,192,3.9000000000000004
+2023,3,10,3,0,-2.6,1.08,0.035,0.62,0,0,0,0,6,-7.2,0,0,0,0,0.309,70.42,129.57,0.9500000000000001,0.65,785,0.8,194,4.2
+2023,3,10,3,30,-2.3000000000000003,1.08,0.035,0.62,0,0,0,0,9,-7.2,0,0,0,0,0.308,68.87,124.74000000000001,0.9500000000000001,0.65,785,0.8,200,5.4
+2023,3,10,4,0,-2.1,1.1,0.039,0.62,0,0,0,0,6,-8,0,0,0,0,0.308,63.84,119.58,0.9500000000000001,0.65,784,0.8,206,6.6000000000000005
+2023,3,10,4,30,-2,1.1,0.039,0.62,0,0,0,0,6,-8,0,0,0,0,0.306,63.370000000000005,114.19,0.9500000000000001,0.65,784,0.8,206,6.7
+2023,3,10,5,0,-1.9000000000000001,1.1,0.039,0.62,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.304,65.25,108.65,0.9500000000000001,0.65,784,0.9,206,6.7
+2023,3,10,5,30,-1.8,1.1,0.039,0.62,0,0,0,0,6,-7.6000000000000005,0,0,0,0,0.302,64.77,103,0.9500000000000001,0.65,784,0.9,206,6.6000000000000005
+2023,3,10,6,0,-1.8,1.1,0.041,0.62,0,0,0,0,6,-6.6000000000000005,0,0,0,0,0.3,69.79,97.31,0.96,0.65,784,1,207,6.5
+2023,3,10,6,30,-1.4000000000000001,1.1,0.041,0.62,4,30,3,2,7,-6.6000000000000005,1,0,29,1,0.298,67.77,91.60000000000001,0.96,0.65,784,1,205,6.6000000000000005
+2023,3,10,7,0,-1.1,1.08,0.039,0.62,27,385,55,7,7,-5.6000000000000005,24,0,100,24,0.297,71.24,85.79,0.96,0.65,784,1,204,6.7
+2023,3,10,7,30,-0.4,1.08,0.039,0.62,42,622,147,2,7,-5.6000000000000005,69,10,29,71,0.296,67.69,80.27,0.96,0.65,784,1,204,7
+2023,3,10,8,0,0.30000000000000004,1.06,0.039,0.62,53,755,251,0,7,-5,85,6,0,87,0.296,67.81,74.83,0.9500000000000001,0.65,784,0.9,204,7.2
+2023,3,10,8,30,1,1.06,0.039,0.62,62,839,355,0,7,-5,171,23,0,179,0.295,64.47,69.54,0.9500000000000001,0.65,784,0.9,205,7.7
+2023,3,10,9,0,1.7000000000000002,1.03,0.037,0.62,69,897,455,0,6,-4.5,199,25,0,210,0.293,63.21,64.5,0.9500000000000001,0.65,784,0.8,206,8.1
+2023,3,10,9,30,2,1.03,0.037,0.62,75,932,544,0,6,-4.5,236,61,0,267,0.292,61.870000000000005,59.77,0.9500000000000001,0.65,784,0.9,206,8.3
+2023,3,10,10,0,2.3000000000000003,1.03,0.038,0.62,80,958,623,0,6,-4.1000000000000005,305,98,0,361,0.29,62.71,55.45,0.9500000000000001,0.65,784,0.9,206,8.5
+2023,3,10,10,30,2.4000000000000004,1.03,0.038,0.62,84,974,688,0,6,-4.1000000000000005,245,5,0,248,0.289,62.26,51.660000000000004,0.96,0.65,784,1,205,8.5
+2023,3,10,11,0,2.5,1.04,0.04,0.62,88,985,740,0,6,-3,294,6,0,298,0.28800000000000003,67.18,48.550000000000004,0.96,0.65,784,1.1,203,8.5
+2023,3,10,11,30,3.1,1.04,0.04,0.62,89,994,776,0,9,-3,327,10,0,334,0.28800000000000003,64.3,46.24,0.96,0.65,783,1.1,202,8.8
+2023,3,10,12,0,3.6,1.07,0.036000000000000004,0.62,89,1001,798,0,9,-1.9000000000000001,381,26,0,399,0.28700000000000003,67.41,44.87,0.9500000000000001,0.65,782,1.1,200,9.1
+2023,3,10,12,30,4.3,1.07,0.036000000000000004,0.62,87,1004,803,0,9,-1.9000000000000001,368,17,0,380,0.28600000000000003,64.18,44.53,0.9500000000000001,0.65,782,1.1,201,9.4
+2023,3,10,13,0,5,1.06,0.032,0.62,85,1004,792,0,9,-1.1,345,12,0,353,0.28500000000000003,64.6,45.24,0.9500000000000001,0.65,781,1.1,203,9.700000000000001
+2023,3,10,13,30,5.2,1.06,0.032,0.62,84,999,766,0,9,-1.1,304,7,0,309,0.28500000000000003,63.71,46.96,0.9500000000000001,0.65,781,1.1,203,9.700000000000001
+2023,3,10,14,0,5.4,1.06,0.031,0.62,82,989,723,0,6,-0.7000000000000001,265,4,0,268,0.28400000000000003,64.75,49.57,0.96,0.65,780,1.1,204,9.700000000000001
+2023,3,10,14,30,5.2,1.06,0.031,0.62,78,973,664,0,6,-0.7000000000000001,230,5,0,233,0.28300000000000003,65.65,52.94,0.96,0.65,780,1.1,202,9.600000000000001
+2023,3,10,15,0,5,1.08,0.031,0.62,74,952,593,0,6,-0.5,222,33,0,240,0.28200000000000003,67.68,56.93,0.96,0.65,779,1.1,200,9.5
+2023,3,10,15,30,4.5,1.08,0.031,0.62,70,918,509,0,7,-0.5,184,294,4,325,0.281,70.08,61.410000000000004,0.96,0.65,779,1.1,199,9.200000000000001
+2023,3,10,16,0,4.1000000000000005,1.07,0.034,0.62,64,872,415,0,6,-0.1,150,218,0,238,0.28,74.10000000000001,66.26,0.96,0.65,779,1.2000000000000002,197,8.9
+2023,3,10,16,30,3.2,1.07,0.034,0.62,57,809,315,0,4,-0.1,122,21,0,129,0.28,78.94,71.39,0.96,0.65,779,1.2000000000000002,196,8.8
+2023,3,10,17,0,2.4000000000000004,1.06,0.037,0.62,49,711,212,0,4,0.4,82,17,0,86,0.279,86.52,76.73,0.96,0.65,779,1.2000000000000002,194,8.700000000000001
+2023,3,10,17,30,1.9000000000000001,1.06,0.037,0.62,36,558,112,4,4,0.4,37,26,54,41,0.28,89.54,82.21000000000001,0.96,0.65,778,1.1,193,8.8
+2023,3,10,18,0,1.4000000000000001,1.05,0.034,0.62,19,242,29,6,7,0.6000000000000001,11,0,86,11,0.28,94.41,87.7,0.96,0.65,778,1.1,192,8.8
+2023,3,10,18,30,1.1,1.05,0.034,0.62,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.28,96.46000000000001,93.59,0.96,0.65,778,1.1,194,8.3
+2023,3,10,19,0,0.9,1.03,0.03,0.62,0,0,0,0,7,0.9,0,0,0,0,0.28,100,99.29,0.96,0.65,778,1.1,196,7.9
+2023,3,10,19,30,0.9,1.03,0.03,0.62,0,0,0,0,7,0.9,0,0,0,0,0.28,100,104.96000000000001,0.96,0.65,778,1.1,202,7.300000000000001
+2023,3,10,20,0,0.8,1.01,0.028,0.62,0,0,0,0,6,0.8,0,0,0,0,0.28,100,110.56,0.96,0.65,778,1.2000000000000002,207,6.6000000000000005
+2023,3,10,20,30,0.7000000000000001,1.01,0.028,0.62,0,0,0,0,6,0.7000000000000001,0,0,0,0,0.28,100,116.03,0.96,0.65,778,1.2000000000000002,216,5.5
+2023,3,10,21,0,0.5,0.98,0.027,0.62,0,0,0,0,6,0.5,0,0,0,0,0.28,100,121.32000000000001,0.9500000000000001,0.65,779,1.2000000000000002,224,4.4
+2023,3,10,21,30,0.1,0.98,0.027,0.62,0,0,0,0,7,0.1,0,0,0,0,0.28,100,126.35000000000001,0.9500000000000001,0.65,779,1.1,231,3.5
+2023,3,10,22,0,-0.4,0.9500000000000001,0.023,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.28,100,131.01,0.9400000000000001,0.65,779,1,238,2.6
+2023,3,10,22,30,-0.5,0.9500000000000001,0.023,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.281,100,135.17000000000002,0.9400000000000001,0.65,780,1,242,2.2
+2023,3,10,23,0,-0.7000000000000001,0.93,0.024,0.62,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.28200000000000003,100,138.65,0.9400000000000001,0.65,780,0.9,246,1.7000000000000002
+2023,3,10,23,30,-0.9,0.93,0.024,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.281,100,141.28,0.9400000000000001,0.65,780,0.8,264,1.6
+2023,3,11,0,0,-1.1,0.92,0.022,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.281,100,142.85,0.93,0.65,781,0.8,283,1.4000000000000001
+2023,3,11,0,30,-1.2000000000000002,0.92,0.022,0.62,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.28,100,143.22,0.93,0.65,781,0.7000000000000001,296,1.5
+2023,3,11,1,0,-1.4000000000000001,0.91,0.02,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.279,96.34,142.36,0.93,0.65,781,0.6000000000000001,310,1.6
+2023,3,11,1,30,-1.6,0.91,0.02,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.278,97.76,140.36,0.92,0.65,781,0.6000000000000001,314,1.8
+2023,3,11,2,0,-1.8,0.91,0.018000000000000002,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.278,89.45,137.37,0.92,0.65,782,0.5,318,1.9000000000000001
+2023,3,11,2,30,-2.1,0.91,0.018000000000000002,0.62,0,0,0,0,4,-3.3000000000000003,0,0,0,0,0.278,91.45,133.6,0.92,0.65,782,0.5,318,2
+2023,3,11,3,0,-2.4000000000000004,0.91,0.017,0.62,0,0,0,0,4,-5,0,0,0,0,0.279,82.22,129.22,0.91,0.65,782,0.4,319,2.1
+2023,3,11,3,30,-2.8000000000000003,0.91,0.017,0.62,0,0,0,0,4,-5,0,0,0,0,0.28200000000000003,84.69,124.4,0.91,0.65,782,0.4,320,2
+2023,3,11,4,0,-3.2,0.9,0.016,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.28400000000000003,78.75,119.25,0.9,0.65,783,0.30000000000000004,321,1.9000000000000001
+2023,3,11,4,30,-3.9000000000000004,0.9,0.016,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.28600000000000003,82.98,113.88,0.9,0.65,783,0.30000000000000004,321,1.7000000000000002
+2023,3,11,5,0,-4.7,0.85,0.014,0.62,0,0,0,0,5,-7.800000000000001,0,0,0,0,0.28800000000000003,79.08,108.34,0.89,0.65,783,0.30000000000000004,320,1.5
+2023,3,11,5,30,-4.9,0.85,0.014,0.62,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.28600000000000003,80.29,102.7,0.89,0.65,783,0.30000000000000004,320,1.4000000000000001
+2023,3,11,6,0,-5.2,0.79,0.013000000000000001,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.28500000000000003,77.12,97,0.89,0.65,784,0.2,319,1.3
+2023,3,11,6,30,-4,0.79,0.013000000000000001,0.62,5,57,4,3,4,-8.6,2,0,39,2,0.28400000000000003,70.46000000000001,91.3,0.89,0.65,784,0.2,319,1.8
+2023,3,11,7,0,-2.9000000000000004,0.76,0.012,0.62,24,563,68,7,8,-9,25,1,100,25,0.28400000000000003,62.82,85.48,0.89,0.65,784,0.2,318,2.4000000000000004
+2023,3,11,7,30,-2,0.76,0.012,0.62,33,772,168,1,4,-9,96,70,14,108,0.28500000000000003,58.77,79.96000000000001,0.89,0.65,784,0.2,320,2.8000000000000003
+2023,3,11,8,0,-1.1,0.75,0.012,0.62,41,884,277,0,4,-10.100000000000001,173,40,0,184,0.28600000000000003,50.54,74.51,0.89,0.65,784,0.2,322,3.2
+2023,3,11,8,30,-0.4,0.75,0.012,0.62,47,952,385,0,4,-10.100000000000001,235,162,0,292,0.28700000000000003,48.08,69.22,0.89,0.65,785,0.2,321,2.9000000000000004
+2023,3,11,9,0,0.2,0.76,0.012,0.62,53,998,488,0,4,-10.700000000000001,242,389,0,412,0.289,43.61,64.16,0.89,0.65,785,0.2,320,2.7
+2023,3,11,9,30,0.9,0.76,0.012,0.62,57,1026,579,0,0,-10.700000000000001,57,1026,0,579,0.29,41.46,59.42,0.89,0.65,785,0.2,313,2.5
+2023,3,11,10,0,1.6,0.78,0.012,0.62,60,1043,657,0,0,-11.3,60,1043,0,657,0.292,37.84,55.09,0.89,0.65,785,0.30000000000000004,305,2.2
+2023,3,11,10,30,2.3000000000000003,0.78,0.012,0.62,64,1054,723,0,0,-11.3,64,1054,0,723,0.293,36,51.29,0.89,0.65,785,0.30000000000000004,294,2.3000000000000003
+2023,3,11,11,0,2.9000000000000004,0.8,0.013000000000000001,0.62,66,1066,777,0,0,-11.5,66,1066,0,777,0.295,33.84,48.160000000000004,0.89,0.65,785,0.30000000000000004,282,2.3000000000000003
+2023,3,11,11,30,3.5,0.8,0.013000000000000001,0.62,67,1074,815,0,0,-11.5,67,1074,0,815,0.296,32.43,45.84,0.89,0.65,785,0.30000000000000004,275,2.6
+2023,3,11,12,0,4.1000000000000005,0.84,0.013000000000000001,0.62,69,1077,838,0,0,-11.9,69,1077,0,838,0.297,30.080000000000002,44.47,0.9,0.65,784,0.30000000000000004,268,2.8000000000000003
+2023,3,11,12,30,4.5,0.84,0.013000000000000001,0.62,69,1079,843,0,0,-11.9,69,1079,0,843,0.298,29.25,44.13,0.89,0.65,784,0.30000000000000004,263,3.2
+2023,3,11,13,0,5,0.88,0.013000000000000001,0.62,68,1076,831,0,0,-12.3,68,1076,0,831,0.299,27.46,44.86,0.89,0.65,784,0.30000000000000004,258,3.5
+2023,3,11,13,30,5.2,0.88,0.013000000000000001,0.62,68,1070,803,0,0,-12.3,68,1070,0,803,0.299,27.080000000000002,46.6,0.9,0.65,784,0.30000000000000004,255,3.7
+2023,3,11,14,0,5.4,0.9,0.014,0.62,66,1061,759,0,0,-12.5,66,1061,0,759,0.299,26.23,49.24,0.9,0.65,784,0.30000000000000004,253,3.9000000000000004
+2023,3,11,14,30,5.300000000000001,0.9,0.014,0.62,65,1047,700,0,0,-12.5,65,1047,0,700,0.3,26.41,52.63,0.9,0.65,784,0.30000000000000004,252,4
+2023,3,11,15,0,5.2,0.91,0.015,0.62,61,1027,626,0,0,-12.4,61,1027,0,626,0.3,26.82,56.65,0.91,0.65,784,0.30000000000000004,251,4
+2023,3,11,15,30,4.800000000000001,0.91,0.015,0.62,58,999,540,0,0,-12.4,58,999,0,540,0.301,27.580000000000002,61.14,0.91,0.65,784,0.30000000000000004,252,3.8000000000000003
+2023,3,11,16,0,4.3,0.92,0.016,0.62,54,959,444,0,0,-11.100000000000001,54,959,0,444,0.302,31.7,66.01,0.91,0.65,784,0.4,252,3.5
+2023,3,11,16,30,2.6,0.92,0.016,0.62,48,899,338,0,0,-11.100000000000001,48,899,0,338,0.302,35.730000000000004,71.16,0.91,0.65,784,0.4,255,2.5
+2023,3,11,17,0,0.9,0.92,0.016,0.62,41,810,230,0,0,-7.5,73,577,14,208,0.303,53.4,76.51,0.91,0.6900000000000001,784,0.4,257,1.5
+2023,3,11,17,30,-0.8,0.92,0.016,0.62,33,664,125,3,4,-7.5,64,241,68,98,0.303,60.4,82,0.91,0.6900000000000001,784,0.4,271,1.4000000000000001
+2023,3,11,18,0,-2.4000000000000004,0.93,0.017,0.62,20,323,34,6,8,-9.4,22,3,86,22,0.302,58.81,87.5,0.91,0.6900000000000001,785,0.4,284,1.3
+2023,3,11,18,30,-3.2,0.93,0.017,0.62,0,0,0,0,8,-9.4,0,0,0,0,0.302,62.410000000000004,93.39,0.92,0.6900000000000001,785,0.4,296,1.2000000000000002
+2023,3,11,19,0,-3.9000000000000004,0.9400000000000001,0.019,0.62,0,0,0,0,8,-9.1,0,0,0,0,0.302,66.99,99.08,0.92,0.6900000000000001,785,0.4,307,1.1
+2023,3,11,19,30,-4.1000000000000005,0.9400000000000001,0.019,0.62,0,0,0,0,4,-9.1,0,0,0,0,0.301,68.09,104.75,0.92,0.6900000000000001,786,0.4,318,1.1
+2023,3,11,20,0,-4.3,0.9500000000000001,0.022,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.301,70.48,110.34,0.93,0.6900000000000001,786,0.4,329,1
+2023,3,11,20,30,-4.3,0.9500000000000001,0.022,0.62,0,0,0,0,4,-8.9,0,0,0,0,0.301,70.48,115.81,0.93,0.6900000000000001,786,0.4,165,1
+2023,3,11,21,0,-4.4,0.9500000000000001,0.023,0.62,0,0,0,0,8,-8.8,0,0,0,0,0.301,71.5,121.09,0.93,0.6900000000000001,787,0.4,1,1.1
+2023,3,11,21,30,-4.7,0.9500000000000001,0.023,0.62,0,0,0,0,8,-8.8,0,0,0,0,0.301,73.13,126.10000000000001,0.93,0.6900000000000001,787,0.4,15,1.1
+2023,3,11,22,0,-5,0.9500000000000001,0.022,0.62,0,0,0,0,8,-8.9,0,0,0,0,0.301,74.15,130.73,0.92,0.6900000000000001,787,0.4,29,1.2000000000000002
+2023,3,11,22,30,-5.4,0.9500000000000001,0.022,0.62,0,0,0,0,8,-8.9,0,0,0,0,0.3,76.43,134.86,0.92,0.6900000000000001,787,0.4,37,1.3
+2023,3,11,23,0,-5.800000000000001,0.9500000000000001,0.022,0.62,0,0,0,0,8,-9.1,0,0,0,0,0.3,77.34,138.32,0.92,0.6900000000000001,787,0.4,44,1.4000000000000001
+2023,3,11,23,30,-6.1000000000000005,0.9500000000000001,0.022,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.299,79.13,140.92000000000002,0.92,0.6900000000000001,787,0.4,49,1.5
+2023,3,12,0,0,-6.4,0.9500000000000001,0.021,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.299,79.45,142.47,0.92,0.6900000000000001,787,0.4,54,1.6
+2023,3,12,0,30,-6.6000000000000005,0.9500000000000001,0.021,0.62,0,0,0,0,8,-9.4,0,0,0,0,0.299,80.68,142.83,0.92,0.6900000000000001,787,0.4,57,1.7000000000000002
+2023,3,12,1,0,-6.800000000000001,0.9500000000000001,0.019,0.62,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.299,80.72,141.97,0.92,0.6900000000000001,787,0.4,60,1.9000000000000001
+2023,3,12,1,30,-7,0.9500000000000001,0.019,0.62,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.299,81.97,139.97,0.92,0.6900000000000001,787,0.4,64,1.7000000000000002
+2023,3,12,2,0,-7.1000000000000005,0.96,0.019,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.3,82.81,136.99,0.92,0.6900000000000001,787,0.4,68,1.6
+2023,3,12,2,30,-7,0.96,0.019,0.62,0,0,0,0,8,-9.5,0,0,0,0,0.301,82.18,133.23,0.92,0.6900000000000001,787,0.5,76,1.3
+2023,3,12,3,0,-7,0.98,0.019,0.62,0,0,0,0,8,-9.3,0,0,0,0,0.302,83.67,128.87,0.93,0.6900000000000001,787,0.5,84,1
+2023,3,12,3,30,-6.9,0.98,0.019,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.304,83.03,124.06,0.93,0.6900000000000001,787,0.5,87,1
+2023,3,12,4,0,-6.7,0.99,0.019,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.305,83.01,118.93,0.93,0.6900000000000001,788,0.6000000000000001,89,0.9
+2023,3,12,4,30,-6.4,0.99,0.019,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.307,81.12,113.56,0.93,0.6900000000000001,788,0.6000000000000001,90,1
+2023,3,12,5,0,-6,0.99,0.018000000000000002,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.308,78.33,108.03,0.93,0.6900000000000001,788,0.6000000000000001,91,1.1
+2023,3,12,5,30,-5.6000000000000005,0.99,0.018000000000000002,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.308,75.98,102.39,0.93,0.6900000000000001,788,0.6000000000000001,88,1
+2023,3,12,6,0,-5.300000000000001,1,0.019,0.62,0,0,0,0,5,-8.9,0,0,0,0,0.308,75.64,96.7,0.93,0.6900000000000001,788,0.6000000000000001,85,0.9
+2023,3,12,6,30,-4.6000000000000005,1,0.019,0.62,8,87,6,3,4,-8.9,2,0,43,2,0.308,71.74,90.99,0.93,0.6900000000000001,788,0.6000000000000001,88,0.9
+2023,3,12,7,0,-3.9000000000000004,1.01,0.02,0.62,26,495,68,7,4,-8.700000000000001,16,0,100,16,0.308,69.11,85.18,0.9400000000000001,0.6900000000000001,788,0.7000000000000001,90,1
+2023,3,12,7,30,-2.8000000000000003,1.01,0.02,0.62,38,700,164,1,4,-8.700000000000001,26,0,14,26,0.308,63.67,79.65,0.9400000000000001,0.6900000000000001,788,0.7000000000000001,135,0.7000000000000001
+2023,3,12,8,0,-1.8,1.02,0.023,0.62,49,812,270,0,4,-8.700000000000001,21,0,0,21,0.308,59.43,74.19,0.9400000000000001,0.6900000000000001,788,0.7000000000000001,179,0.5
+2023,3,12,8,30,-0.7000000000000001,1.02,0.023,0.62,57,883,375,0,4,-8.700000000000001,66,0,0,66,0.309,54.83,68.89,0.9400000000000001,0.6900000000000001,788,0.7000000000000001,207,1
+2023,3,12,9,0,0.4,1.04,0.025,0.62,63,931,474,1,4,-7.7,74,0,11,74,0.309,54.620000000000005,63.82,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,236,1.6
+2023,3,12,9,30,1.2000000000000002,1.04,0.025,0.62,70,965,566,0,4,-7.7,134,0,0,134,0.31,51.56,59.06,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,242,2
+2023,3,12,10,0,2,1.06,0.027,0.62,75,989,646,0,5,-6.5,208,0,0,208,0.311,53.22,54.72,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,248,2.4000000000000004
+2023,3,12,10,30,2.7,1.06,0.027,0.62,80,1006,714,1,5,-6.5,257,1,11,258,0.312,50.64,50.910000000000004,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,252,2.6
+2023,3,12,11,0,3.3000000000000003,1.08,0.027,0.62,82,1019,767,3,8,-5.7,297,18,39,309,0.313,51.75,47.77,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,257,2.8000000000000003
+2023,3,12,11,30,3.8000000000000003,1.08,0.027,0.62,84,1027,805,3,8,-5.7,311,11,46,319,0.313,49.96,45.44,0.9500000000000001,0.6900000000000001,788,0.7000000000000001,260,2.8000000000000003
+2023,3,12,12,0,4.4,1.1,0.029,0.62,85,1031,826,0,8,-5.1000000000000005,257,2,0,258,0.314,49.97,44.07,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,262,2.8000000000000003
+2023,3,12,12,30,4.7,1.1,0.029,0.62,87,1030,831,0,8,-5.1000000000000005,252,197,0,394,0.314,48.93,43.74,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,262,2.8000000000000003
+2023,3,12,13,0,5,1.1,0.029,0.62,86,1027,819,0,0,-4.800000000000001,137,854,0,746,0.315,49.14,44.49,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,262,2.8000000000000003
+2023,3,12,13,30,4.9,1.1,0.029,0.62,84,1019,789,0,0,-4.800000000000001,177,550,0,557,0.316,49.480000000000004,46.25,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,260,2.8000000000000003
+2023,3,12,14,0,4.9,1.12,0.03,0.62,82,1008,745,0,4,-4.6000000000000005,337,59,0,376,0.317,50.18,48.910000000000004,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,258,2.8000000000000003
+2023,3,12,14,30,4.6000000000000005,1.12,0.03,0.62,80,992,686,0,4,-4.6000000000000005,336,38,0,359,0.317,51.230000000000004,52.33,0.9500000000000001,0.6900000000000001,787,0.7000000000000001,255,2.7
+2023,3,12,15,0,4.4,1.1300000000000001,0.032,0.62,76,969,613,0,4,-4.4,277,127,0,347,0.318,52.980000000000004,56.36,0.96,0.6900000000000001,787,0.7000000000000001,253,2.6
+2023,3,12,15,30,3.9000000000000004,1.1300000000000001,0.032,0.62,72,938,528,0,5,-4.4,196,50,0,220,0.319,54.870000000000005,60.88,0.96,0.6900000000000001,787,0.7000000000000001,250,2.3000000000000003
+2023,3,12,16,0,3.4000000000000004,1.1300000000000001,0.035,0.62,66,891,432,0,5,-3.6,133,69,0,161,0.32,60.03,65.76,0.96,0.6900000000000001,787,0.8,247,2
+2023,3,12,16,30,2.4000000000000004,1.1300000000000001,0.035,0.62,59,826,329,0,4,-3.6,129,311,0,231,0.32,64.52,70.93,0.96,0.6900000000000001,788,0.8,240,1.4000000000000001
+2023,3,12,17,0,1.4000000000000001,1.1300000000000001,0.04,0.62,50,729,223,0,4,-2.5,108,127,0,138,0.321,75.26,76.29,0.96,0.65,788,0.8,233,0.8
+2023,3,12,17,30,0.8,1.1300000000000001,0.04,0.62,38,575,120,0,0,-2.5,38,575,0,120,0.321,78.58,81.79,0.96,0.65,788,0.8,222,0.7000000000000001
+2023,3,12,18,0,0.2,1.1300000000000001,0.04,0.62,21,257,33,0,0,-3.7,21,257,0,33,0.322,75.02,87.3,0.96,0.65,788,0.8,211,0.6000000000000001
+2023,3,12,18,30,-0.2,1.1300000000000001,0.04,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.322,77.22,93.19,0.96,0.65,788,0.8,200,0.6000000000000001
+2023,3,12,19,0,-0.5,1.12,0.038,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.322,78.2,98.88,0.96,0.65,788,0.8,189,0.5
+2023,3,12,19,30,-0.9,1.12,0.038,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.321,80.62,104.54,0.96,0.65,789,0.8,181,0.4
+2023,3,12,20,0,-1.2000000000000002,1.12,0.037,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.321,81.82000000000001,110.13,0.96,0.65,789,0.8,174,0.30000000000000004
+2023,3,12,20,30,-1.5,1.12,0.037,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.32,83.64,115.58,0.96,0.65,789,0.7000000000000001,160,0.2
+2023,3,12,21,0,-1.7000000000000002,1.12,0.037,0.62,0,0,0,0,0,-4,0,0,0,0,0.32,84.5,120.85000000000001,0.96,0.65,789,0.7000000000000001,147,0.2
+2023,3,12,21,30,-1.9000000000000001,1.12,0.037,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,85.76,125.84,0.96,0.65,789,0.7000000000000001,151,0.2
+2023,3,12,22,0,-2.1,1.11,0.036000000000000004,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,86.81,130.45,0.96,0.65,789,0.7000000000000001,155,0.2
+2023,3,12,22,30,-2.3000000000000003,1.11,0.036000000000000004,0.62,0,0,0,0,4,-4,0,0,0,0,0.319,88.10000000000001,134.56,0.96,0.65,789,0.7000000000000001,176,0.30000000000000004
+2023,3,12,23,0,-2.5,1.11,0.035,0.62,0,0,0,0,4,-4,0,0,0,0,0.32,89.60000000000001,137.99,0.96,0.65,789,0.7000000000000001,196,0.30000000000000004
+2023,3,12,23,30,-2.7,1.11,0.035,0.62,0,0,0,0,4,-4,0,0,0,0,0.321,90.94,140.56,0.96,0.65,789,0.7000000000000001,202,0.4
+2023,3,13,0,0,-2.9000000000000004,1.11,0.034,0.62,0,0,0,0,4,-4,0,0,0,0,0.323,92.4,142.08,0.96,0.65,789,0.7000000000000001,208,0.4
+2023,3,13,0,30,-3.1,1.11,0.034,0.62,0,0,0,0,4,-4,0,0,0,0,0.325,93.78,142.43,0.9500000000000001,0.65,789,0.7000000000000001,198,0.4
+2023,3,13,1,0,-3.2,1.11,0.032,0.62,0,0,0,0,4,-4,0,0,0,0,0.326,94.48,141.57,0.9500000000000001,0.65,789,0.7000000000000001,187,0.4
+2023,3,13,1,30,-3.5,1.11,0.032,0.62,0,0,0,0,4,-4,0,0,0,0,0.328,96.61,139.57,0.9500000000000001,0.65,789,0.7000000000000001,174,0.5
+2023,3,13,2,0,-3.7,1.1,0.029,0.62,0,0,0,0,4,-4,0,0,0,0,0.33,97.95,136.61,0.9500000000000001,0.65,789,0.7000000000000001,161,0.5
+2023,3,13,2,30,-4,1.1,0.029,0.62,0,0,0,0,4,-4,0,0,0,0,0.331,100,132.86,0.9500000000000001,0.65,789,0.7000000000000001,159,0.7000000000000001
+2023,3,13,3,0,-4.3,1.1,0.027,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.332,100,128.52,0.9500000000000001,0.65,789,0.7000000000000001,158,0.8
+2023,3,13,3,30,-4.5,1.1,0.027,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.333,100,123.72,0.9500000000000001,0.65,789,0.7000000000000001,164,0.8
+2023,3,13,4,0,-4.7,1.08,0.027,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.333,100,118.60000000000001,0.9500000000000001,0.65,789,0.7000000000000001,169,0.9
+2023,3,13,4,30,-4.7,1.08,0.027,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.333,100,113.24000000000001,0.9500000000000001,0.65,789,0.7000000000000001,181,0.9
+2023,3,13,5,0,-4.7,1.07,0.029,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.333,100,107.71000000000001,0.9500000000000001,0.65,789,0.7000000000000001,192,1
+2023,3,13,5,30,-4.7,1.07,0.029,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.332,100,102.08,0.9500000000000001,0.65,790,0.7000000000000001,198,1.3
+2023,3,13,6,0,-4.6000000000000005,1.06,0.031,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.331,100,96.39,0.9500000000000001,0.65,790,0.7000000000000001,205,1.5
+2023,3,13,6,30,-3.7,1.06,0.031,0.62,7,79,7,0,0,-4.4,7,79,0,7,0.33,94.84,90.2,0.96,0.65,790,0.7000000000000001,203,1.9000000000000001
+2023,3,13,7,0,-2.8000000000000003,1.05,0.032,0.62,28,466,70,1,0,-3.8000000000000003,26,362,18,58,0.329,92.83,84.88,0.96,0.65,790,0.7000000000000001,200,2.2
+2023,3,13,7,30,-1.4000000000000001,1.05,0.032,0.62,42,675,167,1,4,-3.8000000000000003,98,128,14,122,0.329,83.72,79.33,0.96,0.65,790,0.7000000000000001,204,2.4000000000000004
+2023,3,13,8,0,0,1.04,0.032,0.62,53,792,273,0,4,-3,176,78,0,198,0.328,80.08,73.87,0.96,0.65,790,0.7000000000000001,207,2.6
+2023,3,13,8,30,1.3,1.04,0.032,0.62,60,868,377,0,4,-3,209,243,0,298,0.328,72.92,68.56,0.9500000000000001,0.65,790,0.7000000000000001,214,2.8000000000000003
+2023,3,13,9,0,2.6,1.02,0.031,0.62,67,919,477,0,4,-2.9000000000000004,229,383,0,400,0.328,66.84,63.480000000000004,0.9500000000000001,0.65,790,0.7000000000000001,221,2.9000000000000004
+2023,3,13,9,30,3.4000000000000004,1.02,0.031,0.62,73,954,568,0,0,-2.9000000000000004,104,863,0,552,0.327,63.17,58.71,0.9500000000000001,0.65,790,0.7000000000000001,225,3.1
+2023,3,13,10,0,4.3,1,0.031,0.62,77,980,648,0,0,-3.1,77,980,0,648,0.327,58.76,54.35,0.9500000000000001,0.65,790,0.7000000000000001,230,3.3000000000000003
+2023,3,13,10,30,4.9,1,0.031,0.62,81,999,716,0,0,-3.1,135,876,7,692,0.327,56.35,50.53,0.9500000000000001,0.65,790,0.7000000000000001,232,3.5
+2023,3,13,11,0,5.5,0.98,0.03,0.62,83,1012,768,0,7,-3.2,186,797,7,726,0.327,53.57,47.38,0.9500000000000001,0.65,789,0.7000000000000001,234,3.6
+2023,3,13,11,30,5.9,0.98,0.03,0.62,86,1021,807,0,7,-3.2,173,851,7,774,0.327,52.11,45.04,0.9500000000000001,0.65,789,0.7000000000000001,235,3.8000000000000003
+2023,3,13,12,0,6.2,0.98,0.03,0.62,86,1026,828,0,7,-3.3000000000000003,129,954,29,819,0.327,50.57,43.67,0.9500000000000001,0.65,789,0.7000000000000001,236,3.9000000000000004
+2023,3,13,12,30,6.2,0.98,0.03,0.62,86,1027,833,0,0,-3.3000000000000003,100,1007,0,832,0.327,50.57,43.35,0.9500000000000001,0.65,789,0.7000000000000001,237,4
+2023,3,13,13,0,6.2,0.98,0.029,0.62,85,1024,820,0,0,-3.5,85,1024,0,820,0.326,49.94,44.11,0.9500000000000001,0.65,789,0.7000000000000001,237,4
+2023,3,13,13,30,6,0.98,0.029,0.62,83,1017,791,0,0,-3.5,136,932,14,785,0.326,50.57,45.89,0.9500000000000001,0.65,788,0.7000000000000001,237,4
+2023,3,13,14,0,5.800000000000001,0.97,0.029,0.62,81,1006,747,0,7,-3.6,145,888,14,732,0.326,50.72,48.58,0.9500000000000001,0.65,788,0.8,237,4
+2023,3,13,14,30,5.5,0.97,0.029,0.62,78,991,688,0,0,-3.6,78,991,14,688,0.326,51.79,52.02,0.9500000000000001,0.65,788,0.7000000000000001,236,3.9000000000000004
+2023,3,13,15,0,5.2,0.97,0.029,0.62,74,971,616,0,0,-3.7,143,743,7,558,0.326,52.47,56.08,0.9500000000000001,0.65,788,0.7000000000000001,235,3.8000000000000003
+2023,3,13,15,30,4.800000000000001,0.97,0.029,0.62,69,944,532,0,7,-3.7,152,666,25,479,0.326,53.95,60.620000000000005,0.9500000000000001,0.65,788,0.7000000000000001,232,3.5
+2023,3,13,16,0,4.4,0.97,0.028,0.62,63,905,438,0,7,-3.5,211,359,0,360,0.326,56.53,65.52,0.9500000000000001,0.65,788,0.7000000000000001,230,3.3000000000000003
+2023,3,13,16,30,3.1,0.97,0.028,0.62,55,850,336,0,7,-3.5,128,433,32,271,0.326,61.940000000000005,70.7,0.9500000000000001,0.65,788,0.7000000000000001,226,2.4000000000000004
+2023,3,13,17,0,1.8,0.96,0.025,0.62,46,766,230,1,7,-2.5,68,602,46,213,0.325,73.26,76.07000000000001,0.9400000000000001,0.65,788,0.7000000000000001,223,1.6
+2023,3,13,17,30,0.2,0.96,0.025,0.62,35,625,127,0,0,-2.5,35,625,0,127,0.325,82.19,81.58,0.9400000000000001,0.65,788,0.7000000000000001,220,1.5
+2023,3,13,18,0,-1.4000000000000001,0.96,0.024,0.62,21,338,38,1,0,-4,21,338,14,38,0.324,82.49,87.10000000000001,0.9400000000000001,0.65,789,0.7000000000000001,217,1.4000000000000001
+2023,3,13,18,30,-1.9000000000000001,0.96,0.024,0.62,0,0,0,1,0,-4,0,0,14,0,0.323,85.58,92.98,0.9400000000000001,0.65,789,0.7000000000000001,217,1.4000000000000001
+2023,3,13,19,0,-2.4000000000000004,0.97,0.023,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.322,86.79,98.67,0.9400000000000001,0.65,789,0.6000000000000001,216,1.4000000000000001
+2023,3,13,19,30,-2.8000000000000003,0.97,0.023,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.322,89.4,104.33,0.9400000000000001,0.65,789,0.6000000000000001,215,1.4000000000000001
+2023,3,13,20,0,-3.1,0.99,0.023,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.321,90.82000000000001,109.91,0.9400000000000001,0.65,789,0.6000000000000001,214,1.4000000000000001
+2023,3,13,20,30,-3.3000000000000003,0.99,0.023,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.32,92.18,115.36,0.9400000000000001,0.65,789,0.6000000000000001,212,1.4000000000000001
+2023,3,13,21,0,-3.5,0.99,0.024,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,93.43,120.61,0.9400000000000001,0.65,789,0.6000000000000001,211,1.4000000000000001
+2023,3,13,21,30,-3.6,0.99,0.024,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,94.13,125.58,0.9400000000000001,0.65,789,0.6000000000000001,210,1.4000000000000001
+2023,3,13,22,0,-3.8000000000000003,1,0.025,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.318,95.66,130.17000000000002,0.9500000000000001,0.65,789,0.6000000000000001,209,1.4000000000000001
+2023,3,13,22,30,-3.8000000000000003,1,0.025,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.319,95.66,134.25,0.9500000000000001,0.65,789,0.6000000000000001,209,1.5
+2023,3,13,23,0,-3.9000000000000004,1.01,0.028,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.319,96.7,137.66,0.9500000000000001,0.65,789,0.6000000000000001,209,1.5
+2023,3,13,23,30,-4,1.01,0.028,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,97.43,140.20000000000002,0.9500000000000001,0.65,789,0.6000000000000001,208,1.5
+2023,3,14,0,0,-4.1000000000000005,1.02,0.03,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,98.44,141.70000000000002,0.9500000000000001,0.65,789,0.6000000000000001,207,1.6
+2023,3,14,0,30,-4.1000000000000005,1.02,0.03,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.317,98.44,142.03,0.9500000000000001,0.65,789,0.7000000000000001,207,1.6
+2023,3,14,1,0,-4.2,1.02,0.031,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,141.17000000000002,0.9500000000000001,0.65,789,0.7000000000000001,208,1.6
+2023,3,14,1,30,-4.2,1.02,0.031,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,139.18,0.9500000000000001,0.65,789,0.7000000000000001,207,1.6
+2023,3,14,2,0,-4.2,1.03,0.034,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.316,99.31,136.23,0.9500000000000001,0.65,789,0.7000000000000001,205,1.7000000000000002
+2023,3,14,2,30,-4.1000000000000005,1.03,0.034,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.317,98.57000000000001,132.5,0.9500000000000001,0.65,789,0.7000000000000001,202,1.7000000000000002
+2023,3,14,3,0,-4,1.01,0.038,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,97.76,128.17000000000002,0.9500000000000001,0.65,789,0.7000000000000001,198,1.7000000000000002
+2023,3,14,3,30,-3.9000000000000004,1.01,0.038,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,97.03,123.38000000000001,0.9500000000000001,0.65,789,0.7000000000000001,197,1.7000000000000002
+2023,3,14,4,0,-3.8000000000000003,0.97,0.038,0.62,0,0,0,0,5,-4.3,0,0,0,0,0.319,96.10000000000001,118.27,0.9500000000000001,0.65,788,0.7000000000000001,195,1.7000000000000002
+2023,3,14,4,30,-3.7,0.97,0.038,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.319,95.5,112.92,0.9500000000000001,0.65,789,0.7000000000000001,194,1.8
+2023,3,14,5,0,-3.6,0.91,0.036000000000000004,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.318,94.76,107.4,0.9500000000000001,0.65,789,0.7000000000000001,194,1.8
+2023,3,14,5,30,-3.4000000000000004,0.91,0.036000000000000004,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.318,93.36,101.77,0.9500000000000001,0.65,789,0.7000000000000001,193,1.9000000000000001
+2023,3,14,6,0,-3.2,0.85,0.032,0.62,0,0,0,0,4,-4.2,0,0,0,0,0.317,92.5,96.08,0.9500000000000001,0.65,789,0.7000000000000001,192,2
+2023,3,14,6,30,-1.5,0.85,0.032,0.62,8,84,8,4,8,-4.2,3,0,57,3,0.315,81.57000000000001,89.94,0.9500000000000001,0.65,789,0.7000000000000001,193,2.7
+2023,3,14,7,0,0.1,0.8300000000000001,0.03,0.62,30,477,75,6,7,-3.5,28,1,86,28,0.314,76.64,84.58,0.9500000000000001,0.65,789,0.8,194,3.5
+2023,3,14,7,30,1.7000000000000002,0.8300000000000001,0.03,0.62,42,682,172,0,7,-3.5,80,231,0,124,0.312,68.31,79.02,0.9400000000000001,0.65,789,0.8,201,4.2
+2023,3,14,8,0,3.4000000000000004,0.8,0.029,0.62,52,799,278,0,0,-2.8000000000000003,52,799,0,278,0.31,63.690000000000005,73.55,0.9400000000000001,0.65,789,0.8,208,4.9
+2023,3,14,8,30,4.5,0.8,0.029,0.62,59,874,383,0,0,-2.8000000000000003,59,874,0,383,0.309,58.96,68.23,0.9400000000000001,0.65,789,0.8,211,5.5
+2023,3,14,9,0,5.7,0.79,0.026000000000000002,0.62,65,925,483,0,0,-2.9000000000000004,65,925,0,483,0.308,53.83,63.14,0.9400000000000001,0.65,789,0.8,214,6
+2023,3,14,9,30,6.300000000000001,0.79,0.026000000000000002,0.62,70,960,574,0,0,-2.9000000000000004,70,960,0,574,0.307,51.65,58.36,0.9400000000000001,0.65,789,0.8,214,6.2
+2023,3,14,10,0,7,0.79,0.025,0.62,74,986,654,0,0,-3.2,74,986,0,654,0.307,48.29,53.99,0.9400000000000001,0.65,789,0.8,214,6.300000000000001
+2023,3,14,10,30,7.5,0.79,0.025,0.62,78,1003,721,0,0,-3.2,105,947,0,712,0.306,46.67,50.15,0.9400000000000001,0.65,789,0.8,214,6.5
+2023,3,14,11,0,8,0.8,0.026000000000000002,0.62,80,1016,773,0,0,-3.4000000000000004,80,1016,0,773,0.306,44.35,46.980000000000004,0.9400000000000001,0.65,788,0.8,213,6.7
+2023,3,14,11,30,8.4,0.8,0.026000000000000002,0.62,83,1023,811,0,0,-3.4000000000000004,123,943,11,794,0.305,43.160000000000004,44.64,0.9400000000000001,0.65,788,0.8,213,6.800000000000001
+2023,3,14,12,0,8.8,0.8,0.028,0.62,85,1026,832,0,0,-3.5,85,1026,4,832,0.303,41.6,43.27,0.9500000000000001,0.65,788,0.8,212,7
+2023,3,14,12,30,9.1,0.8,0.028,0.62,86,1025,836,0,0,-3.6,127,952,7,824,0.301,40.72,42.96,0.9500000000000001,0.65,787,0.8,211,7.2
+2023,3,14,13,0,9.3,0.8200000000000001,0.028,0.62,85,1022,824,0,7,-3.7,433,317,0,662,0.299,39.86,43.730000000000004,0.9500000000000001,0.65,787,0.8,211,7.5
+2023,3,14,13,30,9.200000000000001,0.8200000000000001,0.028,0.62,83,1016,795,0,7,-3.7,441,158,0,552,0.297,40.12,45.54,0.9500000000000001,0.65,787,0.8,210,7.5
+2023,3,14,14,0,9,0.85,0.029,0.62,82,1005,751,0,7,-3.8000000000000003,390,188,0,515,0.296,40.2,48.25,0.9500000000000001,0.65,786,0.8,210,7.6000000000000005
+2023,3,14,14,30,8.6,0.85,0.029,0.62,79,988,691,0,7,-3.8000000000000003,236,577,36,593,0.295,41.300000000000004,51.72,0.9500000000000001,0.65,786,0.9,209,7.5
+2023,3,14,15,0,8.200000000000001,0.86,0.03,0.62,75,964,617,0,7,-3.7,267,423,14,505,0.294,42.82,55.800000000000004,0.9500000000000001,0.65,786,0.9,208,7.5
+2023,3,14,15,30,7.5,0.86,0.03,0.62,70,933,532,0,6,-3.7,190,11,0,195,0.293,44.9,60.35,0.9500000000000001,0.65,786,0.9,208,7.1000000000000005
+2023,3,14,16,0,6.9,0.85,0.031,0.62,65,890,437,0,6,-3.3000000000000003,127,2,0,128,0.293,48.34,65.28,0.96,0.65,786,1,207,6.7
+2023,3,14,16,30,5.800000000000001,0.85,0.031,0.62,57,828,334,0,7,-3.3000000000000003,168,103,0,202,0.293,52.14,70.47,0.96,0.65,786,1,205,5.9
+2023,3,14,17,0,4.800000000000001,0.88,0.033,0.62,49,737,229,0,7,-2.3000000000000003,135,55,0,148,0.294,60.01,75.86,0.96,0.65,786,1,203,5.1000000000000005
+2023,3,14,17,30,3.8000000000000003,0.88,0.033,0.62,38,590,127,4,7,-2.3000000000000003,80,29,57,84,0.295,64.36,81.37,0.96,0.65,786,1,201,4.7
+2023,3,14,18,0,2.9000000000000004,0.92,0.034,0.62,23,302,39,7,6,-1.6,21,1,100,21,0.296,72.37,86.91,0.96,0.65,785,1.1,198,4.3
+2023,3,14,18,30,2.4000000000000004,0.92,0.034,0.62,0,0,0,1,7,-1.6,0,0,14,0,0.297,74.98,92.78,0.97,0.65,785,1.1,198,4.5
+2023,3,14,19,0,1.9000000000000001,0.9500000000000001,0.037,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.299,80.59,98.47,0.97,0.65,785,1.1,198,4.7
+2023,3,14,19,30,1.6,0.9500000000000001,0.037,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.3,82.33,104.12,0.97,0.65,785,1.1,197,5
+2023,3,14,20,0,1.3,0.9500000000000001,0.039,0.62,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.301,87.01,109.69,0.97,0.65,786,1.1,197,5.300000000000001
+2023,3,14,20,30,1.1,0.9500000000000001,0.039,0.62,0,0,0,0,6,-0.6000000000000001,0,0,0,0,0.302,88.16,115.13,0.96,0.65,785,1.2000000000000002,195,5.5
+2023,3,14,21,0,0.9,0.9500000000000001,0.039,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.303,90.98,120.37,0.96,0.65,785,1.2000000000000002,193,5.7
+2023,3,14,21,30,0.6000000000000001,0.9500000000000001,0.039,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.305,92.97,125.32000000000001,0.96,0.65,785,1.2000000000000002,193,5.7
+2023,3,14,22,0,0.30000000000000004,0.9500000000000001,0.04,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.307,94.79,129.89000000000001,0.9500000000000001,0.65,785,1.1,192,5.7
+2023,3,14,22,30,0.30000000000000004,0.9500000000000001,0.04,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.309,94.79,133.95,0.96,0.65,785,1.2000000000000002,195,6.1000000000000005
+2023,3,14,23,0,0.30000000000000004,0.96,0.046,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.31,95.14,137.32,0.96,0.65,784,1.2000000000000002,199,6.5
+2023,3,14,23,30,0.30000000000000004,0.96,0.046,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.31,95.14,139.84,0.96,0.65,784,1.1,200,6.4
+2023,3,15,0,0,0.2,0.97,0.051000000000000004,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.311,97.16,141.32,0.96,0.65,784,1.1,201,6.300000000000001
+2023,3,15,0,30,0.1,0.97,0.051000000000000004,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.311,97.87,141.64000000000001,0.96,0.65,784,1.1,200,6.2
+2023,3,15,1,0,0,0.96,0.056,0.62,0,0,0,0,6,0,0,0,0,0,0.311,99.7,140.77,0.96,0.65,784,1.1,200,6
+2023,3,15,1,30,0,0.96,0.056,0.62,0,0,0,0,6,0,0,0,0,0,0.312,99.7,138.78,0.96,0.65,784,1.1,200,6.1000000000000005
+2023,3,15,2,0,0,0.97,0.062,0.62,0,0,0,0,6,0,0,0,0,0,0.313,100,135.84,0.96,0.65,784,1.1,200,6.2
+2023,3,15,2,30,0,0.97,0.062,0.62,0,0,0,0,6,0,0,0,0,0,0.314,100,132.13,0.96,0.65,783,1.1,200,5.800000000000001
+2023,3,15,3,0,-0.1,0.98,0.063,0.62,0,0,0,0,7,-0.1,0,0,0,0,0.315,100,127.81,0.96,0.65,783,1.2000000000000002,199,5.300000000000001
+2023,3,15,3,30,-0.2,0.98,0.063,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.315,100,123.04,0.96,0.65,783,1.2000000000000002,197,5
+2023,3,15,4,0,-0.30000000000000004,0.96,0.06,0.62,0,0,0,0,7,-0.30000000000000004,0,0,0,0,0.316,100,117.94,0.96,0.65,783,1.2000000000000002,195,4.6000000000000005
+2023,3,15,4,30,-0.2,0.96,0.06,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.315,100,112.60000000000001,0.96,0.65,782,1.2000000000000002,197,4.800000000000001
+2023,3,15,5,0,-0.2,0.9500000000000001,0.06,0.62,0,0,0,0,6,-0.2,0,0,0,0,0.314,99.69,107.08,0.97,0.65,782,1.2000000000000002,198,4.9
+2023,3,15,5,30,-0.1,0.9500000000000001,0.06,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.314,98.96000000000001,101.46000000000001,0.97,0.65,782,1.2000000000000002,200,5.1000000000000005
+2023,3,15,6,0,0,0.97,0.058,0.62,0,0,0,0,7,-0.2,0,0,0,0,0.314,98.56,95.77,0.97,0.65,782,1.2000000000000002,201,5.4
+2023,3,15,6,30,0.5,0.97,0.058,0.62,9,87,10,4,7,-0.2,5,0,57,5,0.315,95.06,89.67,0.96,0.65,782,1.2000000000000002,203,5.800000000000001
+2023,3,15,7,0,1,0.96,0.053,0.62,33,416,75,6,7,0.2,29,0,86,29,0.315,94.38,84.27,0.96,0.65,782,1.2000000000000002,205,6.2
+2023,3,15,7,30,1.6,0.96,0.053,0.62,49,622,171,0,7,0.2,60,4,0,61,0.316,90.41,78.71000000000001,0.97,0.65,782,1.1,205,6.2
+2023,3,15,8,0,2.1,0.97,0.053,0.62,61,742,275,0,6,0.7000000000000001,75,1,0,75,0.317,90.34,73.22,0.97,0.65,782,1.1,206,6.300000000000001
+2023,3,15,8,30,2.7,0.97,0.053,0.62,70,821,379,0,6,0.7000000000000001,135,6,0,137,0.317,86.57000000000001,67.9,0.97,0.65,782,1.1,206,6.5
+2023,3,15,9,0,3.3000000000000003,0.98,0.05,0.62,77,876,477,0,6,1.2000000000000002,185,7,0,188,0.317,85.99,62.800000000000004,0.97,0.65,782,1.2000000000000002,206,6.7
+2023,3,15,9,30,4,0.98,0.05,0.62,82,916,567,0,6,1.2000000000000002,255,16,0,263,0.317,81.86,58,0.96,0.65,782,1.2000000000000002,207,7
+2023,3,15,10,0,4.800000000000001,0.99,0.044,0.62,85,947,647,0,6,1.6,325,50,0,355,0.317,79.84,53.620000000000005,0.96,0.65,782,1.2000000000000002,208,7.300000000000001
+2023,3,15,10,30,5.5,0.99,0.044,0.62,88,968,713,0,7,1.6,398,111,0,470,0.317,75.95,49.77,0.96,0.65,781,1.2000000000000002,211,7.4
+2023,3,15,11,0,6.1000000000000005,1,0.041,0.62,90,983,766,0,7,1.8,431,214,0,578,0.316,74.11,46.59,0.96,0.65,781,1.2000000000000002,213,7.5
+2023,3,15,11,30,6.4,1,0.041,0.62,93,991,803,0,7,1.8,460,228,0,623,0.316,72.60000000000001,44.25,0.96,0.65,781,1.2000000000000002,216,7.4
+2023,3,15,12,0,6.7,1.01,0.042,0.62,95,995,824,0,7,1.9000000000000001,465,255,0,652,0.316,71.37,42.87,0.97,0.65,781,1.2000000000000002,218,7.4
+2023,3,15,12,30,6.5,1.01,0.042,0.62,96,994,828,0,7,1.9000000000000001,470,244,0,650,0.316,72.26,42.57,0.97,0.65,780,1.2000000000000002,221,7
+2023,3,15,13,0,6.4,1.02,0.047,0.62,97,989,816,0,7,1.9000000000000001,464,245,0,642,0.315,72.78,43.36,0.97,0.65,780,1.2000000000000002,223,6.7
+2023,3,15,13,30,6.1000000000000005,1.02,0.047,0.62,96,980,787,0,7,1.9000000000000001,417,155,0,526,0.315,74.3,45.18,0.97,0.65,780,1.2000000000000002,227,6.1000000000000005
+2023,3,15,14,0,5.7,1.03,0.054,0.62,97,964,743,0,7,1.9000000000000001,421,146,0,519,0.314,76.46000000000001,47.92,0.97,0.65,780,1.2000000000000002,230,5.5
+2023,3,15,14,30,5.2,1.03,0.054,0.62,95,945,684,0,7,1.9000000000000001,386,234,0,532,0.314,79.16,51.410000000000004,0.97,0.65,780,1.2000000000000002,237,4.6000000000000005
+2023,3,15,15,0,4.7,1.02,0.059000000000000004,0.62,91,918,611,0,7,1.7000000000000002,356,122,0,425,0.313,81.05,55.52,0.97,0.65,780,1.2000000000000002,245,3.7
+2023,3,15,15,30,4,1.02,0.059000000000000004,0.62,85,884,526,0,7,1.7000000000000002,265,86,0,308,0.313,85.11,60.09,0.97,0.65,780,1.1,266,3.1
+2023,3,15,16,0,3.3000000000000003,1.02,0.064,0.62,79,837,432,0,6,1.3,132,3,0,133,0.314,86.63,65.03,0.97,0.65,781,1.1,287,2.5
+2023,3,15,16,30,2.4000000000000004,1.02,0.064,0.62,70,773,331,0,7,1.3,141,15,0,146,0.315,92.32000000000001,70.24,0.97,0.65,781,1.1,307,2.5
+2023,3,15,17,0,1.5,1.03,0.065,0.62,59,678,227,0,7,0.30000000000000004,107,11,0,110,0.316,91.85000000000001,75.64,0.97,0.6900000000000001,781,1.1,327,2.5
+2023,3,15,17,30,0.8,1.03,0.065,0.62,44,531,126,3,6,0.30000000000000004,31,0,43,31,0.32,96.7,81.16,0.96,0.6900000000000001,782,1,334,2.6
+2023,3,15,18,0,0.1,1.03,0.06,0.62,24,259,39,7,7,-1,15,0,100,15,0.323,92.5,86.71000000000001,0.96,0.6900000000000001,782,1,341,2.6
+2023,3,15,18,30,-0.30000000000000004,1.03,0.06,0.62,0,0,0,1,6,-1,0,0,14,0,0.327,95.23,92.57000000000001,0.96,0.6900000000000001,782,0.9,344,2.8000000000000003
+2023,3,15,19,0,-0.6000000000000001,1.03,0.052000000000000005,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.331,89.13,98.26,0.96,0.6900000000000001,783,0.9,348,3
+2023,3,15,19,30,-1,1.03,0.052000000000000005,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.336,91.77,103.91,0.96,0.6900000000000001,783,0.8,350,3.1
+2023,3,15,20,0,-1.4000000000000001,1.03,0.047,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.34,86.08,109.48,0.96,0.6900000000000001,783,0.8,353,3.3000000000000003
+2023,3,15,20,30,-1.9000000000000001,1.03,0.047,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.343,89.3,114.9,0.9500000000000001,0.6900000000000001,783,0.7000000000000001,354,3.4000000000000004
+2023,3,15,21,0,-2.4000000000000004,1.03,0.045,0.62,0,0,0,0,6,-4.7,0,0,0,0,0.34600000000000003,84.13,120.12,0.9500000000000001,0.6900000000000001,783,0.7000000000000001,354,3.5
+2023,3,15,21,30,-2.8000000000000003,1.03,0.045,0.62,0,0,0,0,6,-4.7,0,0,0,0,0.34700000000000003,86.77,125.06,0.9500000000000001,0.6900000000000001,784,0.7000000000000001,354,3.4000000000000004
+2023,3,15,22,0,-3.3000000000000003,1.02,0.047,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.34900000000000003,84.93,129.61,0.9500000000000001,0.6900000000000001,784,0.6000000000000001,353,3.4000000000000004
+2023,3,15,22,30,-3.5,1.02,0.047,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.35100000000000003,86.21000000000001,133.64000000000001,0.9500000000000001,0.6900000000000001,784,0.6000000000000001,352,3.4000000000000004
+2023,3,15,23,0,-3.8000000000000003,1.02,0.05,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.352,85.69,136.99,0.9500000000000001,0.6900000000000001,784,0.5,352,3.5
+2023,3,15,23,30,-4.1000000000000005,1.02,0.05,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.353,87.64,139.48,0.9500000000000001,0.6900000000000001,784,0.5,354,3.5
+2023,3,16,0,0,-4.3,1.04,0.053,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.354,87.3,140.93,0.9500000000000001,0.6900000000000001,784,0.5,357,3.6
+2023,3,16,0,30,-4.5,1.04,0.053,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.355,88.63,141.24,0.9500000000000001,0.6900000000000001,784,0.5,183,3.8000000000000003
+2023,3,16,1,0,-4.7,1.06,0.055,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.356,87.61,140.37,0.9500000000000001,0.6900000000000001,785,0.4,9,3.9000000000000004
+2023,3,16,1,30,-4.9,1.06,0.055,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.357,88.94,138.39000000000001,0.9400000000000001,0.6900000000000001,785,0.4,13,4
+2023,3,16,2,0,-5.1000000000000005,1.06,0.05,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.358,84.93,135.46,0.9400000000000001,0.6900000000000001,785,0.4,18,4.1000000000000005
+2023,3,16,2,30,-5.4,1.06,0.05,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.36,86.89,131.75,0.9400000000000001,0.6900000000000001,785,0.4,20,4.2
+2023,3,16,3,0,-5.6000000000000005,1.04,0.041,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.361,81.74,127.45,0.9400000000000001,0.6900000000000001,785,0.30000000000000004,22,4.4
+2023,3,16,3,30,-5.9,1.04,0.041,0.62,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.362,83.62,122.7,0.93,0.6900000000000001,785,0.30000000000000004,23,4.3
+2023,3,16,4,0,-6.2,1.02,0.035,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.364,81.52,117.61,0.93,0.6900000000000001,786,0.30000000000000004,24,4.2
+2023,3,16,4,30,-6.300000000000001,1.02,0.035,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.366,82.15,112.27,0.93,0.6900000000000001,786,0.30000000000000004,25,4.2
+2023,3,16,5,0,-6.5,0.99,0.031,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.367,80.83,106.77,0.92,0.6900000000000001,786,0.30000000000000004,27,4.2
+2023,3,16,5,30,-6.5,0.99,0.031,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.369,80.93,101.15,0.92,0.6900000000000001,787,0.30000000000000004,28,4.2
+2023,3,16,6,0,-6.5,0.98,0.029,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.371,79.5,95.46000000000001,0.92,0.6900000000000001,787,0.30000000000000004,29,4.3
+2023,3,16,6,30,-5.6000000000000005,0.98,0.029,0.62,11,147,13,4,7,-9.5,7,0,57,7,0.373,74.22,89.39,0.92,0.6900000000000001,787,0.30000000000000004,32,5.2
+2023,3,16,7,0,-4.6000000000000005,0.98,0.03,0.62,31,552,89,6,7,-9.600000000000001,50,9,86,51,0.375,67.96000000000001,83.96000000000001,0.92,0.6900000000000001,788,0.30000000000000004,34,6.2
+2023,3,16,7,30,-3.9000000000000004,0.98,0.03,0.62,43,738,192,0,7,-9.600000000000001,101,246,0,151,0.376,64.48,78.39,0.92,0.6900000000000001,788,0.30000000000000004,36,6.7
+2023,3,16,8,0,-3.1,0.98,0.032,0.62,54,842,302,0,7,-11,110,548,4,271,0.377,54.26,72.9,0.92,0.6900000000000001,788,0.30000000000000004,37,7.2
+2023,3,16,8,30,-2.5,0.98,0.032,0.62,62,913,411,0,0,-11,78,857,0,405,0.377,51.89,67.56,0.92,0.6900000000000001,788,0.30000000000000004,37,7.1000000000000005
+2023,3,16,9,0,-2,0.99,0.032,0.62,70,961,514,0,0,-11.9,70,961,0,514,0.377,46.800000000000004,62.45,0.92,0.6900000000000001,789,0.30000000000000004,36,7
+2023,3,16,9,30,-1.4000000000000001,0.99,0.032,0.62,75,998,609,0,0,-11.9,75,998,0,609,0.377,44.78,57.65,0.92,0.6900000000000001,789,0.30000000000000004,35,6.9
+2023,3,16,10,0,-0.7000000000000001,0.99,0.031,0.62,80,1027,694,0,0,-12.3,80,1027,0,694,0.377,41.07,53.25,0.92,0.6900000000000001,789,0.2,35,6.800000000000001
+2023,3,16,10,30,-0.1,0.99,0.031,0.62,84,1047,765,0,0,-12.3,84,1047,0,765,0.376,39.31,49.39,0.92,0.6900000000000001,789,0.2,34,6.7
+2023,3,16,11,0,0.5,1.01,0.031,0.62,86,1059,819,0,0,-12.8,86,1059,0,819,0.376,36.32,46.2,0.92,0.6900000000000001,789,0.2,33,6.6000000000000005
+2023,3,16,11,30,0.9,1.01,0.031,0.62,88,1067,858,0,0,-12.8,88,1067,0,858,0.376,35.24,43.84,0.92,0.6900000000000001,788,0.2,33,6.5
+2023,3,16,12,0,1.4000000000000001,0.99,0.031,0.62,89,1071,879,0,0,-13.3,89,1071,0,879,0.375,32.57,42.47,0.91,0.6900000000000001,788,0.2,32,6.4
+2023,3,16,12,30,1.6,0.99,0.031,0.62,90,1072,884,0,0,-13.3,90,1072,0,884,0.374,32.11,42.18,0.91,0.6900000000000001,788,0.2,33,6.300000000000001
+2023,3,16,13,0,1.9000000000000001,0.98,0.031,0.62,88,1070,871,0,0,-13.700000000000001,88,1070,0,871,0.373,30.330000000000002,42.980000000000004,0.91,0.6900000000000001,788,0.2,33,6.2
+2023,3,16,13,30,1.9000000000000001,0.98,0.031,0.62,87,1064,842,0,0,-13.700000000000001,87,1064,0,842,0.372,30.330000000000002,44.83,0.91,0.6900000000000001,788,0.2,33,6
+2023,3,16,14,0,2,0.97,0.031,0.62,85,1054,796,0,0,-14,85,1054,0,796,0.371,29.44,47.59,0.91,0.6900000000000001,788,0.2,34,5.9
+2023,3,16,14,30,1.7000000000000002,0.97,0.031,0.62,81,1040,734,0,0,-14,81,1040,0,734,0.37,30.080000000000002,51.11,0.91,0.6900000000000001,788,0.2,35,5.800000000000001
+2023,3,16,15,0,1.4000000000000001,0.96,0.031,0.62,77,1020,659,0,0,-14.200000000000001,77,1020,0,659,0.369,30.35,55.24,0.91,0.6900000000000001,788,0.2,36,5.6000000000000005
+2023,3,16,15,30,0.9,0.96,0.031,0.62,71,993,570,0,0,-14.200000000000001,71,993,0,570,0.367,31.46,59.84,0.91,0.6900000000000001,788,0.2,37,5.4
+2023,3,16,16,0,0.30000000000000004,0.9500000000000001,0.03,0.62,65,955,472,0,0,-14.200000000000001,65,955,0,472,0.365,32.81,64.79,0.91,0.6900000000000001,789,0.2,39,5.300000000000001
+2023,3,16,16,30,-0.9,0.9500000000000001,0.03,0.62,58,901,366,0,0,-14.200000000000001,58,901,0,366,0.363,35.79,70.01,0.91,0.6900000000000001,789,0.2,41,4.6000000000000005
+2023,3,16,17,0,-2,0.9500000000000001,0.03,0.62,50,819,256,0,0,-13.600000000000001,50,819,0,256,0.361,40.81,75.42,0.91,0.78,789,0.2,44,3.9000000000000004
+2023,3,16,17,30,-3.9000000000000004,0.9500000000000001,0.03,0.62,38,684,146,0,0,-13.600000000000001,38,684,0,146,0.359,46.99,80.95,0.91,0.78,789,0.2,49,3.1
+2023,3,16,18,0,-5.9,0.96,0.03,0.62,24,393,48,0,0,-12.600000000000001,25,369,7,48,0.357,59.24,86.5,0.91,0.78,790,0.2,53,2.4000000000000004
+2023,3,16,18,30,-6.300000000000001,0.96,0.03,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.357,61.08,92.37,0.91,0.78,790,0.2,56,2.5
+2023,3,16,19,0,-6.7,0.96,0.029,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.357,63.08,98.06,0.9,0.78,790,0.2,59,2.6
+2023,3,16,19,30,-7,0.96,0.029,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.357,64.55,103.7,0.9,0.78,790,0.2,59,2.6
+2023,3,16,20,0,-7.2,0.96,0.028,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.358,67.04,109.26,0.9,0.78,791,0.2,59,2.6
+2023,3,16,20,30,-7.4,0.96,0.028,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.359,68.09,114.68,0.9,0.78,791,0.2,58,2.6
+2023,3,16,21,0,-7.5,0.9500000000000001,0.028,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.36,69.73,119.88,0.9,0.78,791,0.2,56,2.6
+2023,3,16,21,30,-7.6000000000000005,0.9500000000000001,0.028,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.36,70.27,124.8,0.9,0.78,791,0.2,55,2.6
+2023,3,16,22,0,-7.800000000000001,0.9400000000000001,0.028,0.62,0,0,0,0,0,-12,0,0,0,0,0.36,71.74,129.33,0.9,0.78,791,0.2,53,2.7
+2023,3,16,22,30,-7.9,0.9400000000000001,0.028,0.62,0,0,0,0,0,-12,0,0,0,0,0.359,72.3,133.33,0.9,0.78,791,0.2,52,2.7
+2023,3,16,23,0,-8,0.93,0.028,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.359,72.05,136.65,0.9,0.78,791,0.2,51,2.8000000000000003
+2023,3,16,23,30,-8.1,0.93,0.028,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.358,72.61,139.11,0.9,0.78,791,0.2,51,2.9000000000000004
+2023,3,17,0,0,-8.200000000000001,0.93,0.028,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.357,71.34,140.55,0.9,0.78,791,0.2,50,3
+2023,3,17,0,30,-8.4,0.93,0.028,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.355,72.46000000000001,140.84,0.9,0.78,791,0.2,50,3
+2023,3,17,1,0,-8.6,0.93,0.029,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.353,72.01,139.96,0.9,0.78,791,0.2,49,3
+2023,3,17,1,30,-8.700000000000001,0.93,0.029,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.34900000000000003,72.58,137.99,0.9,0.78,791,0.2,48,2.9000000000000004
+2023,3,17,2,0,-8.9,0.93,0.029,0.62,0,0,0,0,0,-13,0,0,0,0,0.34500000000000003,72.39,135.07,0.9,0.78,791,0.2,47,2.8000000000000003
+2023,3,17,2,30,-9,0.93,0.029,0.62,0,0,0,0,0,-13,0,0,0,0,0.341,72.96000000000001,131.38,0.9,0.78,791,0.2,46,2.8000000000000003
+2023,3,17,3,0,-9.200000000000001,0.9400000000000001,0.03,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.336,72.8,127.10000000000001,0.9,0.78,791,0.2,44,2.7
+2023,3,17,3,30,-9.200000000000001,0.9400000000000001,0.03,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.332,72.8,122.35000000000001,0.9,0.78,791,0.2,44,2.8000000000000003
+2023,3,17,4,0,-9.3,0.9500000000000001,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.328,71.81,117.27,0.9,0.78,790,0.2,44,2.8000000000000003
+2023,3,17,4,30,-9.4,0.9500000000000001,0.03,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.325,72.47,111.95,0.91,0.78,791,0.2,44,2.8000000000000003
+2023,3,17,5,0,-9.4,0.96,0.031,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.322,71.21000000000001,106.45,0.91,0.78,791,0.2,44,2.8000000000000003
+2023,3,17,5,30,-9.4,0.96,0.031,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.32,71.21000000000001,100.83,0.91,0.78,791,0.2,45,3
+2023,3,17,6,0,-9.3,0.96,0.033,0.62,0,0,0,0,0,-14,0,0,0,0,0.318,68.43,95.15,0.91,0.78,791,0.2,45,3.1
+2023,3,17,6,30,-8.3,0.96,0.033,0.62,13,155,15,0,0,-14,13,155,4,15,0.318,63.29,89.10000000000001,0.91,0.78,791,0.2,48,3.6
+2023,3,17,7,0,-7.300000000000001,0.96,0.035,0.62,33,567,96,0,0,-15,34,550,4,95,0.317,54.29,83.65,0.91,0.78,791,0.2,51,4.1000000000000005
+2023,3,17,7,30,-6,0.96,0.035,0.62,47,751,202,0,0,-15,47,751,0,202,0.318,49.14,78.07000000000001,0.91,0.78,791,0.2,52,4.4
+2023,3,17,8,0,-4.800000000000001,0.96,0.037,0.62,58,854,314,0,0,-15.8,58,854,0,314,0.318,41.72,72.58,0.91,0.78,791,0.2,53,4.800000000000001
+2023,3,17,8,30,-3.9000000000000004,0.96,0.037,0.62,68,920,424,0,0,-15.8,68,920,0,424,0.318,38.99,67.23,0.91,0.78,791,0.2,53,4.800000000000001
+2023,3,17,9,0,-2.9000000000000004,0.9500000000000001,0.04,0.62,76,964,527,0,0,-15.600000000000001,76,964,0,527,0.319,36.92,62.11,0.91,0.78,791,0.2,53,4.800000000000001
+2023,3,17,9,30,-2.1,0.9500000000000001,0.04,0.62,84,996,622,0,0,-15.600000000000001,84,996,0,622,0.319,34.79,57.29,0.91,0.78,791,0.2,53,4.800000000000001
+2023,3,17,10,0,-1.3,0.9500000000000001,0.042,0.62,89,1020,705,0,0,-14.8,89,1020,0,705,0.319,35.17,52.88,0.91,0.78,792,0.2,53,4.800000000000001
+2023,3,17,10,30,-0.6000000000000001,0.9500000000000001,0.042,0.62,94,1037,774,0,0,-14.8,94,1037,0,774,0.319,33.42,49,0.91,0.78,792,0.2,53,4.9
+2023,3,17,11,0,0,0.9500000000000001,0.043000000000000003,0.62,98,1048,829,0,0,-14.200000000000001,98,1048,0,829,0.319,33.53,45.800000000000004,0.91,0.78,792,0.2,53,4.9
+2023,3,17,11,30,0.5,0.9500000000000001,0.043000000000000003,0.62,100,1057,867,0,0,-14.200000000000001,100,1057,0,867,0.319,32.34,43.44,0.91,0.78,792,0.2,54,5
+2023,3,17,12,0,1,0.96,0.043000000000000003,0.62,101,1061,889,0,0,-14,101,1061,0,889,0.318,31.62,42.07,0.91,0.78,792,0.2,55,5.1000000000000005
+2023,3,17,12,30,1.3,0.96,0.043000000000000003,0.62,101,1063,894,0,0,-14,101,1063,0,894,0.318,30.91,41.78,0.91,0.78,791,0.2,55,5.1000000000000005
+2023,3,17,13,0,1.6,0.97,0.041,0.62,100,1061,881,0,0,-14.200000000000001,100,1061,0,881,0.317,29.97,42.61,0.91,0.78,791,0.2,56,5.1000000000000005
+2023,3,17,13,30,1.6,0.97,0.041,0.62,97,1056,851,0,0,-14.200000000000001,97,1056,0,851,0.316,29.97,44.47,0.92,0.78,791,0.2,57,5.1000000000000005
+2023,3,17,14,0,1.6,0.98,0.039,0.62,94,1047,805,0,0,-14.4,94,1047,0,805,0.316,29.400000000000002,47.26,0.92,0.78,791,0.2,58,5.1000000000000005
+2023,3,17,14,30,1.3,0.98,0.039,0.62,90,1034,743,0,0,-14.4,90,1034,0,743,0.316,30.04,50.81,0.92,0.78,791,0.2,59,5
+2023,3,17,15,0,1,0.98,0.036000000000000004,0.62,84,1016,667,0,0,-14.600000000000001,84,1016,0,667,0.316,30.19,54.96,0.92,0.78,791,0.2,61,5
+2023,3,17,15,30,0.4,0.98,0.036000000000000004,0.62,77,990,578,0,0,-14.600000000000001,77,990,0,578,0.317,31.560000000000002,59.58,0.92,0.78,792,0.2,62,4.800000000000001
+2023,3,17,16,0,-0.1,0.97,0.034,0.62,69,953,479,0,0,-14.600000000000001,69,953,0,479,0.318,32.58,64.55,0.92,0.78,792,0.2,64,4.6000000000000005
+2023,3,17,16,30,-1.3,0.97,0.034,0.62,61,900,372,0,0,-14.600000000000001,61,900,0,372,0.319,35.56,69.79,0.92,0.78,792,0.2,67,3.7
+2023,3,17,17,0,-2.5,0.9500000000000001,0.032,0.62,52,820,261,0,0,-13.3,52,820,0,261,0.321,43.37,75.21000000000001,0.92,0.74,792,0.2,70,2.8000000000000003
+2023,3,17,17,30,-4.3,0.9500000000000001,0.032,0.62,40,686,150,0,0,-13.3,40,686,0,150,0.322,49.6,80.75,0.92,0.74,792,0.2,75,2.2
+2023,3,17,18,0,-6.2,0.92,0.031,0.62,25,414,52,2,0,-12,28,301,32,47,0.324,63.58,86.31,0.92,0.74,792,0.2,80,1.5
+2023,3,17,18,30,-6.5,0.92,0.031,0.62,2,16,1,1,0,-12,1,8,14,1,0.325,65.14,92.17,0.92,0.74,793,0.2,81,1.4000000000000001
+2023,3,17,19,0,-6.800000000000001,0.91,0.031,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.326,67.6,97.86,0.92,0.74,793,0.2,82,1.4000000000000001
+2023,3,17,19,30,-6.9,0.91,0.031,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.326,68.12,103.5,0.92,0.74,793,0.2,81,1.3
+2023,3,17,20,0,-7.1000000000000005,0.91,0.031,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.327,70.65,109.04,0.92,0.74,793,0.2,81,1.3
+2023,3,17,20,30,-7.1000000000000005,0.91,0.031,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.327,70.65,114.45,0.92,0.74,793,0.2,81,1.2000000000000002
+2023,3,17,21,0,-7.2,0.92,0.03,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.328,72.85000000000001,119.64,0.92,0.74,793,0.2,81,1.2000000000000002
+2023,3,17,21,30,-7.2,0.92,0.03,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.328,72.95,124.54,0.92,0.74,794,0.2,81,1.2000000000000002
+2023,3,17,22,0,-7.300000000000001,0.92,0.03,0.62,0,0,0,0,0,-11,0,0,0,0,0.328,74.88,129.04,0.92,0.74,794,0.2,81,1.1
+2023,3,17,22,30,-7.300000000000001,0.92,0.03,0.62,0,0,0,0,0,-11,0,0,0,0,0.328,74.88,133.02,0.92,0.74,794,0.2,80,1.1
+2023,3,17,23,0,-7.4,0.92,0.03,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.327,76.35000000000001,136.32,0.92,0.74,794,0.2,79,1
+2023,3,17,23,30,-7.4,0.92,0.03,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.327,76.35000000000001,138.75,0.92,0.74,794,0.2,77,1
+2023,3,18,0,0,-7.4,0.93,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.326,76.98,140.17000000000002,0.92,0.74,794,0.2,75,0.9
+2023,3,18,0,30,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.326,77.58,140.44,0.92,0.74,794,0.2,71,0.9
+2023,3,18,1,0,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.325,77.93,139.56,0.92,0.74,794,0.2,68,0.9
+2023,3,18,1,30,-7.5,0.93,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.324,77.93,137.59,0.92,0.74,794,0.2,64,0.8
+2023,3,18,2,0,-7.5,0.9400000000000001,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.324,78.12,134.68,0.92,0.74,794,0.2,60,0.7000000000000001
+2023,3,18,2,30,-7.5,0.9400000000000001,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.323,78.12,131.01,0.92,0.74,794,0.2,54,0.7000000000000001
+2023,3,18,3,0,-7.6000000000000005,0.9500000000000001,0.029,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.323,78.51,126.74000000000001,0.92,0.74,794,0.2,49,0.7000000000000001
+2023,3,18,3,30,-7.6000000000000005,0.9500000000000001,0.029,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.322,78.60000000000001,122.01,0.92,0.74,795,0.2,48,0.7000000000000001
+2023,3,18,4,0,-7.6000000000000005,0.9500000000000001,0.029,0.62,0,0,0,0,0,-10.8,0,0,29,0,0.322,77.56,116.94,0.92,0.74,795,0.2,48,0.7000000000000001
+2023,3,18,4,30,-7.7,0.9500000000000001,0.029,0.62,0,0,0,0,0,-10.8,0,0,14,0,0.322,78.17,111.62,0.92,0.74,795,0.2,57,0.7000000000000001
+2023,3,18,5,0,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.322,76.39,106.13,0.92,0.74,795,0.2,67,0.7000000000000001
+2023,3,18,5,30,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.322,76.39,100.52,0.92,0.74,795,0.2,82,0.8
+2023,3,18,6,0,-7.7,0.96,0.029,0.62,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.322,72.73,94.84,0.92,0.74,795,0.2,97,1
+2023,3,18,6,30,-6.7,0.96,0.029,0.62,16,210,20,0,0,-11.700000000000001,15,194,4,19,0.321,67.42,88.82000000000001,0.92,0.74,796,0.2,102,1.3
+2023,3,18,7,0,-5.7,0.97,0.029,0.62,33,600,103,0,0,-14,37,527,7,98,0.321,51.980000000000004,83.34,0.92,0.74,796,0.2,107,1.5
+2023,3,18,7,30,-4.3,0.97,0.029,0.62,46,783,212,0,0,-14,51,749,0,210,0.321,46.75,77.76,0.92,0.74,796,0.2,104,1.6
+2023,3,18,8,0,-3,0.96,0.028,0.62,56,886,326,0,0,-15.9,56,886,0,326,0.321,36.19,72.25,0.92,0.74,796,0.2,101,1.7000000000000002
+2023,3,18,8,30,-1.8,0.96,0.028,0.62,63,952,437,0,0,-15.9,63,952,0,437,0.32,33.12,66.9,0.92,0.74,796,0.2,98,1.8
+2023,3,18,9,0,-0.7000000000000001,0.9500000000000001,0.027,0.62,70,1001,543,0,0,-16.5,70,1001,0,543,0.32,29.240000000000002,61.77,0.92,0.74,796,0.1,95,2
+2023,3,18,9,30,0.1,0.9500000000000001,0.027,0.62,74,1033,638,0,0,-16.5,74,1033,0,638,0.32,27.580000000000002,56.94,0.92,0.74,796,0.1,99,2.1
+2023,3,18,10,0,0.9,0.93,0.026000000000000002,0.62,79,1056,722,0,0,-16.5,79,1056,0,722,0.319,26.060000000000002,52.51,0.92,0.74,795,0.1,103,2.2
+2023,3,18,10,30,1.5,0.93,0.026000000000000002,0.62,83,1073,792,0,0,-16.5,83,1073,0,792,0.319,24.96,48.620000000000005,0.92,0.74,795,0.1,108,2.3000000000000003
+2023,3,18,11,0,2.2,0.9,0.024,0.62,84,1086,846,0,0,-16.400000000000002,84,1086,0,846,0.319,23.830000000000002,45.410000000000004,0.91,0.74,795,0.1,113,2.3000000000000003
+2023,3,18,11,30,2.6,0.9,0.024,0.62,86,1093,885,0,0,-16.400000000000002,86,1093,0,885,0.319,23.17,43.04,0.91,0.74,795,0.1,117,2.3000000000000003
+2023,3,18,12,0,3.1,0.88,0.023,0.62,87,1094,904,0,0,-16.5,87,1094,0,904,0.319,22.23,41.67,0.91,0.74,795,0.2,121,2.4000000000000004
+2023,3,18,12,30,3.4000000000000004,0.88,0.023,0.62,86,1094,907,0,0,-16.5,86,1094,0,907,0.319,21.740000000000002,41.39,0.91,0.74,794,0.2,126,2.4000000000000004
+2023,3,18,13,0,3.7,0.87,0.023,0.62,85,1090,892,0,0,-16.8,85,1090,0,892,0.319,20.79,42.230000000000004,0.91,0.74,794,0.2,130,2.4000000000000004
+2023,3,18,13,30,3.7,0.87,0.023,0.62,83,1078,857,0,0,-16.8,83,1078,0,857,0.319,20.79,44.12,0.91,0.74,794,0.2,134,2.4000000000000004
+2023,3,18,14,0,3.8000000000000003,0.87,0.023,0.62,81,1066,809,0,0,-17.1,81,1066,0,809,0.319,20.16,46.93,0.92,0.74,794,0.2,139,2.5
+2023,3,18,14,30,3.6,0.87,0.023,0.62,78,1052,747,0,0,-17.1,78,1052,0,747,0.319,20.45,50.51,0.92,0.74,794,0.2,142,2.5
+2023,3,18,15,0,3.4000000000000004,0.87,0.023,0.62,75,1033,672,0,0,-17.2,75,1033,0,672,0.319,20.43,54.68,0.92,0.74,793,0.2,145,2.5
+2023,3,18,15,30,2.9000000000000004,0.87,0.023,0.62,69,1007,583,0,0,-17.2,69,1007,0,583,0.319,21.17,59.32,0.92,0.74,793,0.2,145,2.5
+2023,3,18,16,0,2.5,0.88,0.024,0.62,64,970,484,0,0,-16.6,64,970,0,484,0.319,23.05,64.31,0.92,0.74,793,0.2,145,2.5
+2023,3,18,16,30,0.9,0.88,0.024,0.62,57,917,377,0,0,-16.6,57,917,0,377,0.32,25.84,69.56,0.92,0.74,793,0.2,142,1.9000000000000001
+2023,3,18,17,0,-0.7000000000000001,0.89,0.025,0.62,49,838,266,0,0,-10.700000000000001,49,838,0,266,0.321,46.78,74.99,0.92,0.68,793,0.2,139,1.3
+2023,3,18,17,30,-2.6,0.89,0.025,0.62,39,708,155,2,0,-10.700000000000001,50,572,25,144,0.321,53.79,80.54,0.93,0.68,793,0.2,136,1.4000000000000001
+2023,3,18,18,0,-4.4,0.9,0.027,0.62,26,458,57,4,7,-12.200000000000001,31,200,57,45,0.322,54.51,86.11,0.93,0.68,794,0.2,134,1.5
+2023,3,18,18,30,-4.7,0.9,0.027,0.62,4,38,3,1,7,-12.200000000000001,3,19,14,2,0.322,55.76,91.97,0.93,0.68,794,0.2,134,1.5
+2023,3,18,19,0,-5.1000000000000005,0.91,0.029,0.62,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.322,60.230000000000004,97.65,0.93,0.68,794,0.2,134,1.6
+2023,3,18,19,30,-5.2,0.91,0.029,0.62,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.323,60.69,103.29,0.93,0.68,794,0.2,136,1.5
+2023,3,18,20,0,-5.300000000000001,0.91,0.031,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.323,65.18,108.83,0.93,0.68,794,0.2,138,1.5
+2023,3,18,20,30,-5.4,0.91,0.031,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.324,65.68,114.22,0.93,0.68,794,0.2,140,1.5
+2023,3,18,21,0,-5.4,0.91,0.032,0.62,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.324,69.07000000000001,119.4,0.93,0.68,794,0.2,143,1.4000000000000001
+2023,3,18,21,30,-5.4,0.91,0.032,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.325,69.07000000000001,124.28,0.93,0.68,794,0.2,146,1.4000000000000001
+2023,3,18,22,0,-5.4,0.9,0.032,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.326,70.8,128.76,0.93,0.68,793,0.2,149,1.4000000000000001
+2023,3,18,22,30,-5.5,0.9,0.032,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.326,71.34,132.71,0.93,0.68,793,0.2,152,1.4000000000000001
+2023,3,18,23,0,-5.5,0.9,0.032,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,71.81,135.98,0.93,0.68,793,0.2,155,1.4000000000000001
+2023,3,18,23,30,-5.6000000000000005,0.9,0.032,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,72.35000000000001,138.39000000000001,0.93,0.68,793,0.2,159,1.4000000000000001
+2023,3,19,0,0,-5.7,0.9,0.031,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.326,72.64,139.78,0.93,0.68,792,0.2,164,1.4000000000000001
+2023,3,19,0,30,-5.7,0.9,0.031,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.325,72.64,140.05,0.93,0.68,792,0.2,167,1.4000000000000001
+2023,3,19,1,0,-5.800000000000001,0.89,0.03,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.325,72.72,139.16,0.92,0.68,792,0.2,171,1.4000000000000001
+2023,3,19,1,30,-5.9,0.89,0.03,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.324,73.28,137.20000000000002,0.92,0.68,792,0.2,173,1.5
+2023,3,19,2,0,-6,0.88,0.029,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.323,72.9,134.3,0.92,0.68,791,0.2,175,1.6
+2023,3,19,2,30,-6.1000000000000005,0.88,0.029,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.323,73.46000000000001,130.64000000000001,0.91,0.68,791,0.2,175,1.7000000000000002
+2023,3,19,3,0,-6.1000000000000005,0.86,0.028,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.322,72.69,126.38000000000001,0.91,0.68,791,0.2,176,1.8
+2023,3,19,3,30,-6.300000000000001,0.86,0.028,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.322,73.81,121.66,0.91,0.68,791,0.2,175,1.9000000000000001
+2023,3,19,4,0,-6.4,0.85,0.028,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,73.95,116.60000000000001,0.91,0.68,791,0.2,174,2
+2023,3,19,4,30,-6.5,0.85,0.028,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,74.52,111.3,0.91,0.68,791,0.2,174,2.1
+2023,3,19,5,0,-6.5,0.85,0.029,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,74.32000000000001,105.81,0.91,0.68,791,0.2,174,2.2
+2023,3,19,5,30,-6.4,0.85,0.029,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.32,73.75,100.2,0.91,0.68,791,0.2,176,2.5
+2023,3,19,6,0,-6.300000000000001,0.88,0.033,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.32,72.48,94.53,0.92,0.68,791,0.2,178,2.7
+2023,3,19,6,30,-5.300000000000001,0.88,0.033,0.62,17,205,22,2,0,-10.4,17,175,21,21,0.32,67.17,88.54,0.92,0.68,791,0.2,181,3.1
+2023,3,19,7,0,-4.2,0.9,0.038,0.62,36,582,107,1,0,-10.100000000000001,44,402,14,93,0.32,63.35,83.03,0.93,0.68,791,0.2,184,3.4000000000000004
+2023,3,19,7,30,-2.3000000000000003,0.9,0.038,0.62,49,750,212,0,0,-10.100000000000001,75,594,0,204,0.32,54.99,77.44,0.93,0.68,791,0.30000000000000004,195,4.2
+2023,3,19,8,0,-0.5,0.92,0.041,0.62,60,841,321,0,0,-10.4,60,841,0,321,0.32,47.21,71.93,0.93,0.68,791,0.30000000000000004,207,5
+2023,3,19,8,30,0.9,0.92,0.041,0.62,69,905,429,0,0,-10.4,69,905,0,429,0.32,42.67,66.57000000000001,0.93,0.68,791,0.30000000000000004,213,6
+2023,3,19,9,0,2.4000000000000004,0.9400000000000001,0.042,0.62,77,950,531,0,0,-10.700000000000001,77,950,0,531,0.32,37.42,61.42,0.93,0.68,791,0.30000000000000004,220,6.9
+2023,3,19,9,30,3,0.9400000000000001,0.042,0.62,82,984,624,0,0,-10.700000000000001,82,984,0,624,0.32,35.82,56.58,0.93,0.68,790,0.30000000000000004,221,7.1000000000000005
+2023,3,19,10,0,3.7,0.9500000000000001,0.041,0.62,87,1008,706,0,0,-10.3,103,976,0,702,0.32,35.11,52.15,0.93,0.68,790,0.30000000000000004,222,7.300000000000001
+2023,3,19,10,30,4.3,0.9500000000000001,0.041,0.62,91,1025,774,0,7,-10.3,146,929,14,765,0.32,33.660000000000004,48.24,0.93,0.68,790,0.30000000000000004,224,7.4
+2023,3,19,11,0,4.800000000000001,0.97,0.042,0.62,95,1036,827,0,7,-10,172,908,36,814,0.32,33.26,45.02,0.93,0.68,790,0.30000000000000004,225,7.5
+2023,3,19,11,30,5.2,0.97,0.042,0.62,98,1036,860,0,7,-10.100000000000001,232,823,36,837,0.32,32.31,42.64,0.9400000000000001,0.68,789,0.4,226,7.6000000000000005
+2023,3,19,12,0,5.7,1,0.045,0.62,99,1036,878,0,7,-9.700000000000001,132,990,36,876,0.319,32.1,41.27,0.9400000000000001,0.68,789,0.4,227,7.7
+2023,3,19,12,30,5.9,1,0.045,0.62,101,1035,882,0,0,-9.700000000000001,101,1035,0,882,0.319,31.62,41,0.9400000000000001,0.68,788,0.4,228,7.800000000000001
+2023,3,19,13,0,6.1000000000000005,1.02,0.049,0.62,102,1030,869,0,7,-9,183,905,46,857,0.319,32.910000000000004,41.86,0.9400000000000001,0.68,788,0.4,229,7.800000000000001
+2023,3,19,13,30,6,1.02,0.049,0.62,100,1020,837,0,7,-9,320,630,14,775,0.319,33.09,43.77,0.9400000000000001,0.68,787,0.5,229,7.7
+2023,3,19,14,0,6,1.03,0.052000000000000005,0.62,99,1002,787,0,7,-8.1,247,739,25,755,0.319,35.49,46.61,0.9500000000000001,0.68,787,0.5,230,7.6000000000000005
+2023,3,19,14,30,5.6000000000000005,1.03,0.052000000000000005,0.62,96,985,726,0,7,-8.1,373,395,0,626,0.319,36.49,50.21,0.9500000000000001,0.68,787,0.5,230,7.300000000000001
+2023,3,19,15,0,5.300000000000001,1.06,0.055,0.62,91,962,651,0,7,-7.300000000000001,305,463,0,574,0.319,39.68,54.410000000000004,0.9500000000000001,0.68,786,0.5,230,7
+2023,3,19,15,30,4.6000000000000005,1.06,0.055,0.62,87,925,562,0,7,-7.300000000000001,201,628,21,524,0.319,41.660000000000004,59.07,0.9500000000000001,0.68,786,0.6000000000000001,229,6.4
+2023,3,19,16,0,4,1.08,0.06,0.62,80,876,463,0,7,-6.6000000000000005,236,348,14,388,0.32,46.02,64.08,0.96,0.68,786,0.6000000000000001,229,5.9
+2023,3,19,16,30,2.7,1.08,0.06,0.62,73,812,359,0,7,-6.6000000000000005,180,98,0,215,0.32,50.44,69.34,0.96,0.68,786,0.6000000000000001,228,4.7
+2023,3,19,17,0,1.4000000000000001,1.1,0.067,0.62,62,716,250,0,6,-5.5,93,17,0,97,0.32,60.33,74.78,0.96,0.65,786,0.6000000000000001,227,3.4000000000000004
+2023,3,19,17,30,0,1.1,0.067,0.62,49,566,144,2,7,-5.5,78,43,29,85,0.32,66.74,80.34,0.96,0.65,786,0.6000000000000001,225,2.7
+2023,3,19,18,0,-1.3,1.11,0.073,0.62,30,308,52,7,6,-5.1000000000000005,27,1,100,27,0.32,75.33,85.92,0.96,0.65,786,0.7000000000000001,224,1.9000000000000001
+2023,3,19,18,30,-1.5,1.11,0.073,0.62,3,19,2,2,6,-5.1000000000000005,1,0,29,1,0.321,76.34,91.76,0.96,0.65,785,0.7000000000000001,223,1.7000000000000002
+2023,3,19,19,0,-1.6,1.1,0.079,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.321,78.18,97.45,0.96,0.65,785,0.7000000000000001,222,1.5
+2023,3,19,19,30,-1.7000000000000002,1.1,0.079,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.321,78.75,103.08,0.97,0.65,785,0.7000000000000001,219,1.4000000000000001
+2023,3,19,20,0,-1.7000000000000002,1.09,0.084,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.322,79.60000000000001,108.61,0.97,0.65,785,0.7000000000000001,217,1.3
+2023,3,19,20,30,-1.8,1.09,0.084,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.323,80.19,113.99000000000001,0.97,0.65,785,0.7000000000000001,213,1.2000000000000002
+2023,3,19,21,0,-1.8,1.08,0.088,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.323,80.8,119.15,0.97,0.65,785,0.7000000000000001,208,1.2000000000000002
+2023,3,19,21,30,-1.8,1.08,0.088,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.324,80.7,124.01,0.97,0.65,784,0.7000000000000001,202,1.1
+2023,3,19,22,0,-1.9000000000000001,1.07,0.089,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.325,82.15,128.47,0.97,0.65,784,0.7000000000000001,195,1.1
+2023,3,19,22,30,-1.9000000000000001,1.07,0.089,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.326,82.15,132.4,0.97,0.65,784,0.7000000000000001,187,1.2000000000000002
+2023,3,19,23,0,-2,1.07,0.084,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.327,83.57000000000001,135.64000000000001,0.97,0.65,784,0.7000000000000001,179,1.2000000000000002
+2023,3,19,23,30,-2.1,1.07,0.084,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.328,84.08,138.02,0.97,0.65,783,0.8,173,1.3
+2023,3,20,0,0,-2.1,1.07,0.077,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.329,84.47,139.4,0.97,0.65,783,0.8,168,1.5
+2023,3,20,0,30,-2.2,1.07,0.077,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.33,84.99,139.65,0.97,0.65,782,0.8,168,1.6
+2023,3,20,1,0,-2.3000000000000003,1.07,0.07,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.331,85.82000000000001,138.76,0.97,0.65,782,0.8,169,1.8
+2023,3,20,1,30,-2.3000000000000003,1.07,0.07,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.331,85.82000000000001,136.8,0.97,0.65,782,0.8,173,2.1
+2023,3,20,2,0,-2.3000000000000003,1.07,0.066,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.331,86.76,133.91,0.97,0.65,781,0.8,178,2.4000000000000004
+2023,3,20,2,30,-2.3000000000000003,1.07,0.066,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.332,86.76,130.26,0.97,0.65,781,0.8,179,2.6
+2023,3,20,3,0,-2.3000000000000003,1.06,0.067,0.62,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.333,89.24,126.02,0.97,0.65,781,0.8,180,2.7
+2023,3,20,3,30,-2.2,1.06,0.067,0.62,0,0,0,0,6,-3.8000000000000003,0,0,0,0,0.335,88.58,121.31,0.97,0.65,781,0.8,181,2.8000000000000003
+2023,3,20,4,0,-2.2,1.08,0.069,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.337,91.18,116.27,0.97,0.65,780,0.8,183,2.9000000000000004
+2023,3,20,4,30,-2.2,1.08,0.069,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.339,91.18,110.97,0.97,0.65,780,0.8,185,2.9000000000000004
+2023,3,20,5,0,-2.2,1.11,0.07200000000000001,0.62,0,0,0,0,6,-3.1,0,0,0,0,0.342,93.36,105.49000000000001,0.97,0.65,780,0.8,187,2.9000000000000004
+2023,3,20,5,30,-2.1,1.11,0.07200000000000001,0.62,0,0,0,0,7,-3.1,0,0,0,0,0.34400000000000003,92.68,99.89,0.97,0.65,780,0.8,189,3
+2023,3,20,6,0,-2,1.12,0.069,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.34500000000000003,93.72,94.21000000000001,0.97,0.65,780,0.8,191,3.2
+2023,3,20,6,30,-1.3,1.12,0.069,0.62,16,159,21,6,7,-2.9000000000000004,7,0,86,7,0.34500000000000003,89.02,88.25,0.96,0.65,780,0.8,197,3.9000000000000004
+2023,3,20,7,0,-0.5,1.12,0.057,0.62,39,497,102,4,7,-2.5,43,2,57,43,0.34600000000000003,86.39,82.72,0.96,0.65,780,0.7000000000000001,202,4.6000000000000005
+2023,3,20,7,30,0.6000000000000001,1.12,0.057,0.62,52,682,204,0,7,-2.5,87,6,0,88,0.34400000000000003,79.77,77.13,0.96,0.65,780,0.7000000000000001,209,5.2
+2023,3,20,8,0,1.6,1.09,0.048,0.62,62,796,313,0,7,-2.6,118,21,0,125,0.343,73.8,71.61,0.9500000000000001,0.65,781,0.7000000000000001,216,5.800000000000001
+2023,3,20,8,30,2.1,1.09,0.048,0.62,72,860,418,1,8,-2.6,107,1,68,107,0.342,71.22,66.24,0.96,0.65,781,0.7000000000000001,220,6
+2023,3,20,9,0,2.7,1.06,0.054,0.62,81,902,517,0,4,-2.8000000000000003,234,6,14,237,0.34,66.9,61.08,0.96,0.65,781,0.7000000000000001,224,6.2
+2023,3,20,9,30,3,1.06,0.054,0.62,88,933,607,0,4,-2.8000000000000003,253,44,0,277,0.34,65.5,56.230000000000004,0.96,0.65,781,0.8,224,6.1000000000000005
+2023,3,20,10,0,3.4000000000000004,1.05,0.059000000000000004,0.62,95,955,686,1,4,-2.7,246,419,57,505,0.339,64.27,51.78,0.96,0.65,781,0.8,225,6.1000000000000005
+2023,3,20,10,30,3.4000000000000004,1.05,0.059000000000000004,0.62,102,969,752,1,4,-2.7,324,123,36,407,0.34,64.19,47.86,0.96,0.65,780,0.8,225,5.9
+2023,3,20,11,0,3.5,1.05,0.066,0.62,107,978,803,0,7,-2.6,379,263,14,566,0.341,64.19,44.62,0.97,0.65,780,0.8,224,5.7
+2023,3,20,11,30,3.3000000000000003,1.05,0.066,0.62,111,984,839,0,7,-2.6,432,303,0,656,0.342,65.11,42.24,0.97,0.65,780,0.8,225,5.5
+2023,3,20,12,0,3.2,1.05,0.07,0.62,113,986,859,0,7,-2.6,415,414,0,728,0.34400000000000003,65.83,40.87,0.97,0.65,780,0.8,226,5.300000000000001
+2023,3,20,12,30,3,1.05,0.07,0.62,114,987,863,0,6,-2.6,451,154,0,568,0.34600000000000003,66.68,40.61,0.97,0.65,779,0.8,228,5.1000000000000005
+2023,3,20,13,0,2.8000000000000003,1.06,0.07,0.62,113,984,850,0,6,-2.5,485,95,0,556,0.34700000000000003,68.04,41.480000000000004,0.97,0.65,779,0.8,229,4.800000000000001
+2023,3,20,13,30,2.7,1.06,0.07,0.62,110,977,820,0,6,-2.5,439,49,0,475,0.35000000000000003,68.52,43.42,0.97,0.65,779,0.8,229,4.5
+2023,3,20,14,0,2.6,1.07,0.07,0.62,108,965,775,0,7,-2.4000000000000004,434,91,0,497,0.352,69.51,46.29,0.97,0.65,779,0.8,229,4.3
+2023,3,20,14,30,2.4000000000000004,1.07,0.07,0.62,103,948,714,0,6,-2.4000000000000004,320,15,0,330,0.354,70.5,49.910000000000004,0.97,0.65,779,0.8,227,4
+2023,3,20,15,0,2.3000000000000003,1.09,0.07100000000000001,0.62,99,924,640,0,6,-2.3000000000000003,273,44,0,299,0.357,71.79,54.13,0.97,0.65,779,0.8,224,3.8000000000000003
+2023,3,20,15,30,2,1.09,0.07100000000000001,0.62,92,892,554,0,7,-2.3000000000000003,307,228,0,425,0.359,73.25,58.82,0.97,0.65,778,0.8,218,3.3000000000000003
+2023,3,20,16,0,1.7000000000000002,1.09,0.073,0.62,85,847,458,0,7,-1.9000000000000001,229,131,0,287,0.361,77.15,63.84,0.97,0.65,778,0.8,213,2.9000000000000004
+2023,3,20,16,30,1,1.09,0.073,0.62,76,784,355,0,7,-1.9000000000000001,172,276,11,270,0.361,81.11,69.12,0.97,0.65,778,0.8,203,2.1
+2023,3,20,17,0,0.2,1.08,0.074,0.62,64,692,248,0,7,-1.4000000000000001,125,53,0,139,0.362,88.99,74.57000000000001,0.97,0.67,778,0.8,193,1.3
+2023,3,20,17,30,-0.7000000000000001,1.08,0.074,0.62,50,547,144,2,6,-1.4000000000000001,64,9,29,66,0.362,95,80.13,0.97,0.67,778,0.8,187,1.3
+2023,3,20,18,0,-1.7000000000000002,1.03,0.076,0.62,31,301,53,7,6,-1.8,16,0,100,16,0.361,98.93,85.72,0.97,0.67,778,0.8,182,1.3
+2023,3,20,18,30,-1.8,1.03,0.076,0.62,4,19,3,2,7,-1.8,1,0,29,1,0.359,99.66,91.56,0.97,0.67,778,0.8,187,1.5
+2023,3,20,19,0,-1.9000000000000001,0.99,0.079,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.357,100,97.24000000000001,0.97,0.67,778,0.8,192,1.6
+2023,3,20,19,30,-1.9000000000000001,0.99,0.079,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.356,100,102.87,0.97,0.67,779,0.8,206,1.8
+2023,3,20,20,0,-1.9000000000000001,0.99,0.08700000000000001,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.354,99.92,108.39,0.97,0.67,779,0.8,220,2
+2023,3,20,20,30,-2,0.99,0.08700000000000001,0.62,0,0,0,0,7,-2,0,0,0,0,0.353,100,113.76,0.97,0.67,779,0.8,237,2.1
+2023,3,20,21,0,-2.1,1.03,0.076,0.62,0,0,0,0,7,-2.3000000000000003,0,0,0,0,0.352,98.73,118.91,0.96,0.67,779,0.7000000000000001,254,2.2
+2023,3,20,21,30,-2.7,1.03,0.076,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.354,100,123.75,0.9500000000000001,0.67,780,0.6000000000000001,263,1.9000000000000001
+2023,3,20,22,0,-3.3000000000000003,1.04,0.045,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.355,100,128.19,0.9400000000000001,0.67,780,0.5,273,1.5
+2023,3,20,22,30,-3.9000000000000004,1.04,0.045,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.356,100,132.09,0.93,0.67,780,0.4,270,1.3
+2023,3,20,23,0,-4.5,0.98,0.029,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.357,100,135.3,0.92,0.67,780,0.30000000000000004,266,1.1
+2023,3,20,23,30,-4.9,0.98,0.029,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.358,100,137.66,0.92,0.67,780,0.30000000000000004,251,1.1
+2023,3,21,0,0,-5.2,0.9500000000000001,0.024,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.359,100,139.01,0.92,0.67,780,0.2,236,1.1
+2023,3,21,0,30,-5.5,0.9500000000000001,0.024,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.36,100,139.25,0.92,0.67,780,0.2,224,1.2000000000000002
+2023,3,21,1,0,-5.7,0.9500000000000001,0.025,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.36,100,138.36,0.92,0.67,781,0.2,212,1.3
+2023,3,21,1,30,-5.6000000000000005,0.9500000000000001,0.025,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.359,100,136.4,0.92,0.67,781,0.2,207,1.6
+2023,3,21,2,0,-5.4,0.96,0.027,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.357,100,133.52,0.92,0.67,781,0.2,203,1.8
+2023,3,21,2,30,-5.5,0.96,0.027,0.62,0,0,0,0,4,-5.5,0,0,0,0,0.354,100,129.89000000000001,0.93,0.67,781,0.30000000000000004,201,2
+2023,3,21,3,0,-5.6000000000000005,0.98,0.032,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.352,100,125.66,0.93,0.67,781,0.30000000000000004,198,2.2
+2023,3,21,3,30,-5.800000000000001,0.98,0.032,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.35000000000000003,100,120.97,0.9400000000000001,0.67,781,0.30000000000000004,196,2.2
+2023,3,21,4,0,-6,0.99,0.037,0.62,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.34800000000000003,99.58,115.93,0.9400000000000001,0.67,781,0.30000000000000004,193,2.2
+2023,3,21,4,30,-6,0.99,0.037,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.34600000000000003,99.58,110.64,0.9400000000000001,0.67,781,0.4,193,2.2
+2023,3,21,5,0,-6,0.99,0.043000000000000003,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.34400000000000003,97.29,105.17,0.9500000000000001,0.67,781,0.4,194,2.2
+2023,3,21,5,30,-5.7,0.99,0.043000000000000003,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.34,95.09,99.57000000000001,0.9500000000000001,0.67,781,0.4,198,2.4000000000000004
+2023,3,21,6,0,-5.300000000000001,0.97,0.05,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.337,93.46000000000001,93.9,0.9500000000000001,0.67,781,0.4,202,2.5
+2023,3,21,6,30,-4.4,0.97,0.05,0.62,19,214,27,1,0,-6.2,20,180,14,26,0.335,87.32000000000001,87.96000000000001,0.9500000000000001,0.67,781,0.5,204,2.7
+2023,3,21,7,0,-3.6,0.96,0.05,0.62,40,539,111,0,0,-5.9,40,539,0,111,0.332,84.13,82.41,0.9500000000000001,0.67,781,0.5,207,2.8000000000000003
+2023,3,21,7,30,-2.4000000000000004,0.96,0.05,0.62,53,711,215,0,0,-5.9,69,609,0,208,0.33,77.05,76.81,0.9500000000000001,0.67,782,0.5,212,3.2
+2023,3,21,8,0,-1.3,0.9500000000000001,0.048,0.62,63,815,325,0,7,-7.1000000000000005,143,469,0,294,0.328,64.57000000000001,71.28,0.9500000000000001,0.67,782,0.5,216,3.6
+2023,3,21,8,30,-0.2,0.9500000000000001,0.048,0.62,71,883,432,0,0,-7.1000000000000005,133,679,0,410,0.328,59.6,65.9,0.9500000000000001,0.67,782,0.5,220,3.9000000000000004
+2023,3,21,9,0,0.9,0.9500000000000001,0.045,0.62,78,931,533,0,7,-8.4,203,580,0,486,0.328,49.74,60.74,0.9500000000000001,0.67,782,0.5,224,4.2
+2023,3,21,9,30,1.8,0.9500000000000001,0.045,0.62,84,965,625,0,7,-8.4,322,314,0,498,0.328,46.57,55.870000000000005,0.9400000000000001,0.67,781,0.5,226,4.3
+2023,3,21,10,0,2.7,0.9500000000000001,0.042,0.62,88,991,706,0,7,-8.700000000000001,365,357,0,588,0.329,42.97,51.410000000000004,0.9400000000000001,0.67,781,0.5,228,4.4
+2023,3,21,10,30,3.3000000000000003,0.9500000000000001,0.042,0.62,92,1008,773,0,7,-8.700000000000001,448,272,0,632,0.328,41.18,47.480000000000004,0.9400000000000001,0.67,781,0.5,228,4.5
+2023,3,21,11,0,3.9000000000000004,0.9500000000000001,0.042,0.62,94,1020,825,0,7,-8.700000000000001,475,212,0,627,0.328,39.21,44.230000000000004,0.9400000000000001,0.67,781,0.5,228,4.6000000000000005
+2023,3,21,11,30,4,0.9500000000000001,0.042,0.62,98,1026,862,0,6,-8.700000000000001,483,101,0,558,0.327,38.94,41.84,0.9500000000000001,0.67,781,0.5,225,4.800000000000001
+2023,3,21,12,0,4.2,0.9500000000000001,0.046,0.62,101,1024,880,0,7,-8.700000000000001,508,205,0,664,0.325,38.59,40.47,0.9500000000000001,0.67,781,0.6000000000000001,222,5
+2023,3,21,12,30,3.9000000000000004,0.9500000000000001,0.046,0.62,102,1022,882,0,7,-8.700000000000001,447,415,0,764,0.324,39.410000000000004,40.21,0.9500000000000001,0.67,781,0.6000000000000001,219,5
+2023,3,21,13,0,3.7,0.96,0.047,0.62,101,1018,868,0,7,-8.1,380,529,0,779,0.323,41.74,41.11,0.9500000000000001,0.67,781,0.6000000000000001,216,5
+2023,3,21,13,30,3.3000000000000003,0.96,0.047,0.62,99,1012,838,0,7,-8.1,365,528,14,751,0.323,42.93,43.07,0.9500000000000001,0.67,781,0.6000000000000001,212,4.7
+2023,3,21,14,0,3,0.97,0.046,0.62,95,1003,792,0,7,-7.300000000000001,420,361,0,671,0.322,46.89,45.96,0.9500000000000001,0.67,781,0.6000000000000001,208,4.5
+2023,3,21,14,30,2.6,0.97,0.046,0.62,90,989,731,0,7,-7.300000000000001,256,643,0,673,0.321,48.24,49.61,0.9500000000000001,0.67,781,0.6000000000000001,202,4.1000000000000005
+2023,3,21,15,0,2.3000000000000003,0.99,0.043000000000000003,0.62,84,968,655,0,7,-6.4,324,308,0,506,0.321,52.78,53.86,0.9500000000000001,0.67,781,0.7000000000000001,197,3.8000000000000003
+2023,3,21,15,30,1.9000000000000001,0.99,0.043000000000000003,0.62,78,940,568,0,7,-6.4,296,165,0,382,0.32,54.24,58.56,0.9400000000000001,0.67,780,0.7000000000000001,190,3.4000000000000004
+2023,3,21,16,0,1.6,1.01,0.037,0.62,70,905,472,0,7,-5.5,220,424,0,408,0.32,59.08,63.61,0.9400000000000001,0.67,780,0.7000000000000001,183,3.1
+2023,3,21,16,30,0.8,1.01,0.037,0.62,62,854,369,0,7,-5.5,181,312,0,293,0.32,62.57,68.9,0.9400000000000001,0.67,780,0.7000000000000001,176,2.5
+2023,3,21,17,0,0.1,1.01,0.033,0.62,51,779,261,0,8,-4.2,127,106,0,156,0.32,72.8,74.36,0.9400000000000001,0.65,780,0.7000000000000001,170,1.9000000000000001
+2023,3,21,17,30,-0.9,1.01,0.033,0.62,41,654,155,0,7,-4.2,64,355,7,126,0.32,78.29,79.93,0.9400000000000001,0.65,780,0.8,163,1.6
+2023,3,21,18,0,-1.9000000000000001,1.01,0.03,0.62,26,431,60,5,7,-4.1000000000000005,28,158,71,40,0.32,85.2,85.52,0.9400000000000001,0.65,780,0.8,157,1.3
+2023,3,21,18,30,-2.3000000000000003,1.01,0.03,0.62,4,37,3,3,8,-4,1,0,43,1,0.321,87.87,91.36,0.9400000000000001,0.65,781,0.8,158,1.4000000000000001
+2023,3,21,19,0,-2.6,1.01,0.03,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.322,91.57000000000001,97.04,0.9400000000000001,0.65,781,0.8,159,1.6
+2023,3,21,19,30,-2.7,1.01,0.03,0.62,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.322,92.25,102.66,0.9400000000000001,0.65,781,0.8,162,1.8
+2023,3,21,20,0,-2.9000000000000004,1.03,0.031,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,95.93,108.18,0.9400000000000001,0.65,781,0.8,166,2
+2023,3,21,20,30,-3.1,1.03,0.031,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,97.37,113.53,0.9400000000000001,0.65,781,0.8,169,2
+2023,3,21,21,0,-3.3000000000000003,1.05,0.029,0.62,0,0,0,0,4,-3.3000000000000003,0,0,0,0,0.322,100,118.66,0.93,0.65,780,0.8,172,1.9000000000000001
+2023,3,21,21,30,-3.5,1.05,0.029,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.322,100,123.49000000000001,0.93,0.65,780,0.8,175,1.8
+2023,3,21,22,0,-3.6,1.06,0.027,0.62,0,0,0,0,4,-3.6,0,0,0,0,0.322,100,127.9,0.93,0.65,780,0.8,177,1.6
+2023,3,21,22,30,-3.2,1.06,0.027,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.322,100,131.78,0.93,0.65,780,0.8,179,1.9000000000000001
+2023,3,21,23,0,-2.8000000000000003,1.03,0.029,0.62,0,0,0,0,4,-2.9000000000000004,0,0,0,0,0.322,99.44,134.96,0.9400000000000001,0.65,780,0.9,181,2.1
+2023,3,21,23,30,-2.6,1.03,0.029,0.62,0,0,0,0,4,-2.9000000000000004,0,0,0,0,0.323,97.98,137.3,0.9400000000000001,0.65,780,0.9,182,2.1
+2023,3,22,0,0,-2.4000000000000004,1.03,0.028,0.62,0,0,0,0,6,-2.6,0,0,0,0,0.324,98.72,138.63,0.93,0.65,780,0.9,183,2.1
+2023,3,22,0,30,-2.7,1.03,0.028,0.62,0,0,0,0,6,-2.7,0,0,0,0,0.324,100,138.85,0.9400000000000001,0.65,779,0.9,183,1.7000000000000002
+2023,3,22,1,0,-2.9000000000000004,0.96,0.029,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.324,100,137.95000000000002,0.9400000000000001,0.65,779,0.9,183,1.3
+2023,3,22,1,30,-2.7,0.96,0.029,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.324,100,136,0.9400000000000001,0.65,779,0.9,177,1.2000000000000002
+2023,3,22,2,0,-2.5,0.89,0.031,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.324,100,133.13,0.9400000000000001,0.65,778,0.9,171,1.1
+2023,3,22,2,30,-2.3000000000000003,0.89,0.031,0.62,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.325,100,129.51,0.9400000000000001,0.65,778,0.9,173,1.2000000000000002
+2023,3,22,3,0,-2.2,0.85,0.032,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.327,100,125.29,0.9400000000000001,0.65,778,1,175,1.3
+2023,3,22,3,30,-2.2,0.85,0.032,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.33,100,120.62,0.93,0.65,778,0.9,178,1.6
+2023,3,22,4,0,-2.2,0.86,0.031,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.332,100,115.59,0.93,0.65,778,0.9,181,1.8
+2023,3,22,4,30,-2.7,0.86,0.031,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.335,100,110.31,0.93,0.65,778,0.8,182,1.5
+2023,3,22,5,0,-3.2,0.88,0.027,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.338,100,104.85000000000001,0.93,0.65,778,0.7000000000000001,183,1.3
+2023,3,22,5,30,-3,0.88,0.027,0.62,0,0,0,0,7,-3,0,0,0,0,0.338,100,99.26,0.93,0.65,778,0.7000000000000001,188,1.2000000000000002
+2023,3,22,6,0,-2.9000000000000004,0.89,0.026000000000000002,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.338,100,93.59,0.93,0.65,777,0.7000000000000001,193,1.2000000000000002
+2023,3,22,6,30,-1.7000000000000002,0.89,0.026000000000000002,0.62,19,270,30,6,7,-2.2,10,0,86,10,0.339,96.34,87.66,0.93,0.65,778,0.7000000000000001,190,2.1
+2023,3,22,7,0,-0.5,0.91,0.027,0.62,35,600,117,4,7,-1.3,36,1,57,36,0.339,94.3,82.10000000000001,0.93,0.65,778,0.7000000000000001,187,3
+2023,3,22,7,30,0.6000000000000001,0.91,0.027,0.62,45,758,222,0,7,-1.3,87,7,0,89,0.34,87.08,76.49,0.93,0.65,778,0.6000000000000001,196,3.7
+2023,3,22,8,0,1.6,0.93,0.024,0.62,53,853,331,0,7,-1.3,144,19,0,150,0.341,81.23,70.96000000000001,0.93,0.65,778,0.6000000000000001,206,4.4
+2023,3,22,8,30,2.5,0.93,0.024,0.62,59,912,436,0,7,-1.3,222,249,0,325,0.342,76.19,65.57000000000001,0.93,0.65,778,0.6000000000000001,208,5.300000000000001
+2023,3,22,9,0,3.3000000000000003,0.93,0.023,0.62,66,952,536,1,7,-2.3000000000000003,228,154,14,304,0.342,66.93,60.4,0.93,0.65,778,0.7000000000000001,210,6.1000000000000005
+2023,3,22,9,30,3.6,0.93,0.023,0.62,70,983,626,0,7,-2.3000000000000003,336,107,0,397,0.34500000000000003,65.53,55.52,0.93,0.65,778,0.7000000000000001,209,6.800000000000001
+2023,3,22,10,0,3.9000000000000004,0.92,0.022,0.62,72,1006,705,0,7,-3.1,389,142,0,478,0.34800000000000003,60.39,51.04,0.93,0.65,778,0.7000000000000001,208,7.6000000000000005
+2023,3,22,10,30,4.2,0.92,0.022,0.62,75,1023,772,0,7,-3.1,354,371,0,607,0.35100000000000003,59.13,47.09,0.93,0.65,778,0.6000000000000001,209,8.200000000000001
+2023,3,22,11,0,4.5,0.93,0.02,0.62,77,1036,824,0,7,-3.7,426,285,0,632,0.355,55.44,43.84,0.93,0.65,778,0.6000000000000001,210,8.8
+2023,3,22,11,30,4.5,0.93,0.02,0.62,78,1044,861,0,7,-3.7,306,599,0,755,0.358,55.44,41.44,0.93,0.65,778,0.6000000000000001,211,9.4
+2023,3,22,12,0,4.6000000000000005,0.97,0.02,0.62,80,1047,881,0,7,-4.6000000000000005,459,324,0,707,0.361,51.14,40.07,0.9400000000000001,0.65,778,0.6000000000000001,212,10
+2023,3,22,12,30,4.3,0.97,0.02,0.62,81,1047,885,0,7,-4.6000000000000005,452,392,0,753,0.362,52.29,39.82,0.9400000000000001,0.65,779,0.6000000000000001,214,10.3
+2023,3,22,13,0,4.1000000000000005,1.01,0.022,0.62,81,1044,872,0,7,-5.5,174,867,7,831,0.362,49.72,40.730000000000004,0.9400000000000001,0.65,779,0.6000000000000001,217,10.600000000000001
+2023,3,22,13,30,3.9000000000000004,1.01,0.022,0.62,78,1042,844,0,7,-5.5,368,417,0,674,0.363,50.42,42.72,0.9400000000000001,0.65,779,0.6000000000000001,219,10.4
+2023,3,22,14,0,3.7,1.06,0.02,0.62,76,1036,800,0,7,-6.4,417,304,0,630,0.363,47.76,45.64,0.9400000000000001,0.65,779,0.5,221,10.200000000000001
+2023,3,22,14,30,3.5,1.06,0.02,0.62,72,1025,740,0,7,-6.4,405,276,0,585,0.363,48.44,49.32,0.9400000000000001,0.65,779,0.5,221,9.8
+2023,3,22,15,0,3.3000000000000003,1.07,0.019,0.62,68,1008,666,0,7,-7.1000000000000005,372,157,0,465,0.363,46.34,53.59,0.9400000000000001,0.65,780,0.5,222,9.4
+2023,3,22,15,30,2.7,1.07,0.019,0.62,64,980,579,0,7,-7.1000000000000005,242,451,11,479,0.362,48.35,58.31,0.9400000000000001,0.65,780,0.5,220,8.700000000000001
+2023,3,22,16,0,2.1,1.01,0.022,0.62,60,939,481,0,7,-6.800000000000001,259,107,0,307,0.361,51.64,63.370000000000005,0.9500000000000001,0.65,781,0.6000000000000001,219,8.1
+2023,3,22,16,30,1.2000000000000002,1.01,0.022,0.62,56,881,376,0,7,-6.800000000000001,191,159,7,249,0.36,55.07,68.68,0.9500000000000001,0.65,781,0.6000000000000001,217,6.9
+2023,3,22,17,0,0.30000000000000004,0.9500000000000001,0.027,0.62,50,800,268,0,7,-5.9,139,110,7,169,0.36,63.29,74.15,0.9500000000000001,0.6900000000000001,782,0.6000000000000001,214,5.7
+2023,3,22,17,30,-0.6000000000000001,0.9500000000000001,0.027,0.62,40,675,160,0,7,-5.9,63,333,4,122,0.361,67.56,79.73,0.96,0.6900000000000001,782,0.6000000000000001,210,4.6000000000000005
+2023,3,22,18,0,-1.5,0.9400000000000001,0.03,0.62,28,448,64,0,0,-5.2,28,448,0,64,0.362,76.14,85.33,0.96,0.6900000000000001,782,0.6000000000000001,206,3.5
+2023,3,22,18,30,-2,0.9400000000000001,0.03,0.62,7,70,6,0,0,-5.1000000000000005,7,70,0,6,0.362,79.10000000000001,91.16,0.9500000000000001,0.6900000000000001,783,0.6000000000000001,204,3.3000000000000003
+2023,3,22,19,0,-2.4000000000000004,0.98,0.029,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.363,82.74,96.84,0.9500000000000001,0.6900000000000001,783,0.6000000000000001,202,3
+2023,3,22,19,30,-2.7,0.98,0.029,0.62,0,0,0,0,8,-4.9,0,0,0,0,0.363,84.60000000000001,102.45,0.9500000000000001,0.6900000000000001,783,0.6000000000000001,205,3
+2023,3,22,20,0,-3,1.04,0.028,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.363,86.54,107.96000000000001,0.9500000000000001,0.6900000000000001,784,0.6000000000000001,207,2.9000000000000004
+2023,3,22,20,30,-3.3000000000000003,1.04,0.028,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.362,88.49,113.3,0.9400000000000001,0.6900000000000001,784,0.6000000000000001,210,2.8000000000000003
+2023,3,22,21,0,-3.5,1.09,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.362,90.01,118.42,0.9400000000000001,0.6900000000000001,784,0.6000000000000001,213,2.7
+2023,3,22,21,30,-3.8000000000000003,1.09,0.025,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.361,92.17,123.22,0.93,0.6900000000000001,785,0.6000000000000001,216,2.6
+2023,3,22,22,0,-4.1000000000000005,1.11,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.36,93.91,127.61,0.93,0.6900000000000001,785,0.6000000000000001,220,2.6
+2023,3,22,22,30,-4.3,1.11,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.36,95.33,131.46,0.93,0.6900000000000001,785,0.6000000000000001,221,2.5
+2023,3,22,23,0,-4.6000000000000005,1.1,0.021,0.62,0,0,0,0,7,-5,0,0,0,0,0.359,96.82000000000001,134.62,0.92,0.6900000000000001,785,0.6000000000000001,223,2.4000000000000004
+2023,3,22,23,30,-4.9,1.1,0.021,0.62,0,0,0,0,0,-5,0,0,0,0,0.358,99.04,136.93,0.92,0.6900000000000001,785,0.6000000000000001,222,2.3000000000000003
+2023,3,23,0,0,-5.1000000000000005,1.09,0.02,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.358,99.36,138.24,0.92,0.6900000000000001,785,0.6000000000000001,222,2.2
+2023,3,23,0,30,-5.4,1.09,0.02,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.357,100,138.45000000000002,0.92,0.6900000000000001,786,0.5,219,2.1
+2023,3,23,1,0,-5.6000000000000005,1.08,0.019,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.357,100,137.55,0.92,0.6900000000000001,786,0.5,217,2
+2023,3,23,1,30,-5.7,1.08,0.019,0.62,0,0,0,0,4,-5.7,0,0,0,0,0.357,100,135.6,0.92,0.6900000000000001,786,0.5,216,2.1
+2023,3,23,2,0,-5.800000000000001,1.07,0.019,0.62,0,0,0,0,5,-5.800000000000001,0,0,0,0,0.356,100,132.75,0.92,0.6900000000000001,786,0.5,215,2.2
+2023,3,23,2,30,-5.800000000000001,1.07,0.019,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.356,100,129.14000000000001,0.92,0.6900000000000001,786,0.5,216,2.4000000000000004
+2023,3,23,3,0,-5.9,1.06,0.019,0.62,0,0,0,0,0,-6,0,0,0,0,0.357,99.53,124.93,0.92,0.6900000000000001,786,0.5,218,2.5
+2023,3,23,3,30,-6,1.06,0.019,0.62,0,0,0,0,5,-6,0,0,0,0,0.358,100,120.27,0.92,0.6900000000000001,786,0.5,218,2.4000000000000004
+2023,3,23,4,0,-6.1000000000000005,1.07,0.019,0.62,0,0,0,0,5,-6.2,0,0,0,0,0.358,99.43,115.26,0.92,0.6900000000000001,786,0.5,219,2.3000000000000003
+2023,3,23,4,30,-6.2,1.07,0.019,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.36,100,109.98,0.92,0.6900000000000001,786,0.5,217,2.2
+2023,3,23,5,0,-6.2,1.09,0.021,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.361,98.53,104.53,0.93,0.6900000000000001,786,0.5,216,2.1
+2023,3,23,5,30,-6.1000000000000005,1.09,0.021,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.363,97.91,98.94,0.93,0.6900000000000001,787,0.5,214,2.2
+2023,3,23,6,0,-5.9,1.1,0.022,0.62,0,0,0,0,0,-6.4,0,0,7,0,0.365,96.03,93.27,0.93,0.6900000000000001,787,0.5,212,2.2
+2023,3,23,6,30,-4.6000000000000005,1.1,0.022,0.62,20,307,34,6,7,-6.4,20,1,93,20,0.367,87.02,87.36,0.93,0.6900000000000001,787,0.5,216,2.4000000000000004
+2023,3,23,7,0,-3.3000000000000003,1.12,0.023,0.62,34,636,125,3,8,-5.6000000000000005,73,28,43,77,0.369,83.85000000000001,81.79,0.93,0.6900000000000001,787,0.5,221,2.6
+2023,3,23,7,30,-1.8,1.12,0.023,0.62,44,781,231,0,7,-5.6000000000000005,120,222,7,173,0.372,75.03,76.17,0.93,0.6900000000000001,787,0.5,235,2.8000000000000003
+2023,3,23,8,0,-0.30000000000000004,1.12,0.023,0.62,53,867,340,0,8,-5.6000000000000005,164,196,4,229,0.374,67.28,70.64,0.93,0.6900000000000001,787,0.5,249,3
+2023,3,23,8,30,0.4,1.12,0.023,0.62,60,925,447,0,7,-5.6000000000000005,206,314,14,338,0.377,63.95,65.24,0.93,0.6900000000000001,787,0.5,254,3
+2023,3,23,9,0,1.1,1.12,0.022,0.62,65,965,547,2,7,-6.2,281,145,21,353,0.379,58.09,60.06,0.93,0.6900000000000001,787,0.5,258,3
+2023,3,23,9,30,1.4000000000000001,1.12,0.022,0.62,71,993,638,2,8,-6.2,305,92,25,358,0.381,56.85,55.160000000000004,0.93,0.6900000000000001,787,0.5,256,2.9000000000000004
+2023,3,23,10,0,1.7000000000000002,1.12,0.023,0.62,74,1014,717,4,7,-6.7,336,45,57,365,0.382,53.72,50.67,0.93,0.6900000000000001,787,0.5,255,2.7
+2023,3,23,10,30,1.8,1.12,0.023,0.62,80,1027,784,3,7,-6.7,372,236,43,534,0.382,53.34,46.71,0.93,0.6900000000000001,787,0.5,250,2.7
+2023,3,23,11,0,1.9000000000000001,1.11,0.027,0.62,84,1036,836,0,7,-7.1000000000000005,368,397,0,656,0.383,51.43,43.44,0.9400000000000001,0.6900000000000001,787,0.5,245,2.7
+2023,3,23,11,30,1.9000000000000001,1.11,0.027,0.62,87,1042,873,0,7,-7.1000000000000005,252,734,14,806,0.382,51.43,41.04,0.9400000000000001,0.6900000000000001,787,0.5,240,2.7
+2023,3,23,12,0,1.9000000000000001,1.11,0.03,0.62,89,1044,893,0,7,-7.2,257,741,0,827,0.38,50.94,39.67,0.9400000000000001,0.6900000000000001,787,0.5,235,2.8000000000000003
+2023,3,23,12,30,1.8,1.11,0.03,0.62,90,1043,896,0,7,-7.2,180,888,43,866,0.378,51.300000000000004,39.43,0.9500000000000001,0.6900000000000001,787,0.5,232,2.9000000000000004
+2023,3,23,13,0,1.7000000000000002,1.1,0.032,0.62,91,1037,881,0,7,-7.1000000000000005,191,876,43,859,0.376,52.22,40.36,0.9500000000000001,0.6900000000000001,787,0.5,229,2.9000000000000004
+2023,3,23,13,30,1.5,1.1,0.032,0.62,89,1030,850,0,7,-7.1000000000000005,262,708,29,785,0.374,52.910000000000004,42.38,0.9500000000000001,0.6900000000000001,786,0.6000000000000001,227,3
+2023,3,23,14,0,1.2000000000000002,1.1,0.034,0.62,88,1018,804,0,7,-6.800000000000001,403,391,0,678,0.371,55.01,45.32,0.9500000000000001,0.6900000000000001,786,0.6000000000000001,226,3
+2023,3,23,14,30,0.9,1.1,0.034,0.62,84,1003,742,0,7,-6.800000000000001,330,470,11,638,0.367,56.21,49.03,0.9500000000000001,0.6900000000000001,786,0.6000000000000001,226,3
+2023,3,23,15,0,0.6000000000000001,1.1300000000000001,0.034,0.62,80,982,667,0,7,-6.5,303,363,4,520,0.364,59.04,53.32,0.9500000000000001,0.6900000000000001,786,0.6000000000000001,226,2.9000000000000004
+2023,3,23,15,30,0.2,1.1300000000000001,0.034,0.62,75,955,580,0,7,-6.5,299,214,0,412,0.362,60.77,58.07,0.9500000000000001,0.6900000000000001,786,0.6000000000000001,226,2.7
+2023,3,23,16,0,-0.2,1.1500000000000001,0.034,0.62,68,918,483,0,7,-5.9,277,183,0,360,0.359,65.58,63.14,0.96,0.6900000000000001,787,0.6000000000000001,225,2.6
+2023,3,23,16,30,-0.9,1.1500000000000001,0.034,0.62,61,865,379,0,7,-5.9,192,228,0,276,0.358,69.01,68.46000000000001,0.96,0.6900000000000001,787,0.6000000000000001,223,1.9000000000000001
+2023,3,23,17,0,-1.5,1.16,0.035,0.62,53,788,271,0,7,-4.800000000000001,120,282,4,198,0.357,78.03,73.94,0.96,0.72,787,0.6000000000000001,221,1.3
+2023,3,23,17,30,-2.4000000000000004,1.16,0.035,0.62,42,667,163,2,7,-4.800000000000001,96,177,29,128,0.357,83.38,79.52,0.96,0.72,787,0.6000000000000001,215,1.1
+2023,3,23,18,0,-3.2,1.18,0.035,0.62,28,451,66,7,7,-5.1000000000000005,34,2,100,34,0.357,86.88,85.13,0.96,0.72,787,0.6000000000000001,209,0.9
+2023,3,23,18,30,-3.5,1.18,0.035,0.62,7,73,6,3,7,-5.1000000000000005,3,0,43,3,0.356,88.84,90.96000000000001,0.96,0.72,787,0.6000000000000001,203,0.8
+2023,3,23,19,0,-3.7,1.19,0.034,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.354,89.08,96.63,0.9500000000000001,0.72,787,0.6000000000000001,198,0.8
+2023,3,23,19,30,-3.9000000000000004,1.19,0.034,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.353,90.42,102.24000000000001,0.9500000000000001,0.72,787,0.6000000000000001,197,0.9
+2023,3,23,20,0,-4.1000000000000005,1.2,0.033,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.35100000000000003,90.93,107.74000000000001,0.9500000000000001,0.72,787,0.6000000000000001,196,0.9
+2023,3,23,20,30,-4.3,1.2,0.033,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.35000000000000003,92.3,113.07000000000001,0.9500000000000001,0.72,787,0.6000000000000001,198,0.9
+2023,3,23,21,0,-4.6000000000000005,1.2,0.033,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.34800000000000003,93.29,118.17,0.9500000000000001,0.72,787,0.6000000000000001,201,1
+2023,3,23,21,30,-4.800000000000001,1.2,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.34700000000000003,94.71000000000001,122.96000000000001,0.9500000000000001,0.72,787,0.6000000000000001,205,1
+2023,3,23,22,0,-5,1.2,0.035,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.34600000000000003,95.18,127.33,0.9500000000000001,0.72,787,0.6000000000000001,209,1
+2023,3,23,22,30,-5.300000000000001,1.2,0.035,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.34500000000000003,97.37,131.15,0.9500000000000001,0.72,787,0.6000000000000001,211,1.1
+2023,3,23,23,0,-5.6000000000000005,1.19,0.035,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.34400000000000003,98.62,134.28,0.9500000000000001,0.72,787,0.6000000000000001,213,1.1
+2023,3,23,23,30,-5.7,1.19,0.035,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.34400000000000003,99.24000000000001,136.57,0.9500000000000001,0.72,786,0.6000000000000001,213,1.1
+2023,3,24,0,0,-5.9,1.17,0.036000000000000004,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.343,99.78,137.86,0.9500000000000001,0.72,786,0.6000000000000001,213,1.2000000000000002
+2023,3,24,0,30,-6,1.17,0.036000000000000004,0.62,0,0,0,0,4,-6,0,0,0,0,0.343,100,138.06,0.9500000000000001,0.72,786,0.5,211,1.2000000000000002
+2023,3,24,1,0,-6.1000000000000005,1.1500000000000001,0.035,0.62,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.343,100,137.15,0.9500000000000001,0.72,786,0.5,209,1.3
+2023,3,24,1,30,-6.1000000000000005,1.1500000000000001,0.035,0.62,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.342,100,135.21,0.9500000000000001,0.72,786,0.5,206,1.3
+2023,3,24,2,0,-6.1000000000000005,1.1400000000000001,0.035,0.62,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.342,98.52,132.36,0.9500000000000001,0.72,785,0.5,202,1.2000000000000002
+2023,3,24,2,30,-6.1000000000000005,1.1400000000000001,0.035,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.342,98.52,128.76,0.9500000000000001,0.72,785,0.5,199,1.3
+2023,3,24,3,0,-6.1000000000000005,1.12,0.037,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.342,97.36,124.57000000000001,0.9500000000000001,0.72,785,0.5,196,1.3
+2023,3,24,3,30,-6.2,1.12,0.037,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.342,98.11,119.92,0.9500000000000001,0.72,785,0.5,191,1.3
+2023,3,24,4,0,-6.300000000000001,1.1,0.039,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.342,97.11,114.92,0.96,0.72,785,0.5,186,1.2000000000000002
+2023,3,24,4,30,-6.300000000000001,1.1,0.039,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.34400000000000003,97.11,109.66,0.96,0.72,785,0.5,181,1.2000000000000002
+2023,3,24,5,0,-6.300000000000001,1.09,0.043000000000000003,0.62,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.34500000000000003,95.9,104.2,0.96,0.72,785,0.5,177,1.1
+2023,3,24,5,30,-6,1.09,0.043000000000000003,0.62,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.34600000000000003,93.73,98.62,0.96,0.72,785,0.5,175,1.2000000000000002
+2023,3,24,6,0,-5.7,1.08,0.045,0.62,0,0,0,1,4,-6.800000000000001,0,0,14,0,0.34800000000000003,92.01,92.96000000000001,0.96,0.72,784,0.5,172,1.3
+2023,3,24,6,30,-4.6000000000000005,1.08,0.045,0.62,23,295,38,6,4,-6.800000000000001,18,33,93,20,0.35000000000000003,84.66,87.06,0.96,0.72,784,0.5,170,1.3
+2023,3,24,7,0,-3.6,1.09,0.044,0.62,40,591,128,2,4,-6.4,62,253,36,99,0.352,80.8,81.48,0.96,0.72,784,0.5,167,1.4000000000000001
+2023,3,24,7,30,-2.3000000000000003,1.09,0.044,0.62,53,746,235,0,4,-6.4,128,246,4,188,0.352,73.36,75.86,0.96,0.72,784,0.5,179,1.5
+2023,3,24,8,0,-1.1,1.09,0.04,0.62,62,841,345,0,4,-6.5,220,116,0,259,0.353,66.62,70.31,0.96,0.72,784,0.5,192,1.6
+2023,3,24,8,30,-0.30000000000000004,1.09,0.04,0.62,70,902,452,0,4,-6.5,234,114,0,282,0.352,62.85,64.91,0.9500000000000001,0.72,784,0.5,203,2.1
+2023,3,24,9,0,0.4,1.08,0.038,0.62,75,947,553,0,4,-7,277,20,0,287,0.35100000000000003,57.730000000000004,59.71,0.9500000000000001,0.72,784,0.5,214,2.5
+2023,3,24,9,30,1,1.08,0.038,0.62,81,978,645,0,4,-7,353,85,0,402,0.34900000000000003,55.22,54.81,0.9500000000000001,0.72,783,0.5,218,3
+2023,3,24,10,0,1.5,1.08,0.036000000000000004,0.62,86,1001,725,0,4,-7,265,27,0,282,0.34700000000000003,53.230000000000004,50.31,0.9500000000000001,0.72,783,0.5,223,3.4000000000000004
+2023,3,24,10,30,1.6,1.08,0.036000000000000004,0.62,93,1013,792,0,4,-7,376,74,0,427,0.34600000000000003,52.85,46.33,0.9500000000000001,0.72,783,0.5,226,3.8000000000000003
+2023,3,24,11,0,1.7000000000000002,1.06,0.044,0.62,99,1020,844,0,4,-6.800000000000001,456,213,7,612,0.34500000000000003,53.26,43.050000000000004,0.96,0.72,783,0.5,228,4.2
+2023,3,24,11,30,1.7000000000000002,1.06,0.044,0.62,101,1026,880,0,0,-6.800000000000001,214,759,0,790,0.34500000000000003,53.26,40.64,0.96,0.72,783,0.5,231,4.4
+2023,3,24,12,0,1.7000000000000002,1.06,0.048,0.62,104,1025,898,0,0,-6.5,109,1017,7,896,0.34600000000000003,54.370000000000005,39.27,0.96,0.72,782,0.6000000000000001,234,4.7
+2023,3,24,12,30,1.4000000000000001,1.06,0.048,0.62,105,1023,900,0,7,-6.5,188,883,21,874,0.34700000000000003,55.550000000000004,39.04,0.96,0.72,782,0.6000000000000001,239,4.7
+2023,3,24,13,0,1.1,1.05,0.052000000000000005,0.62,106,1017,885,0,7,-6.4,281,640,18,771,0.34900000000000003,57.4,39.99,0.97,0.72,782,0.6000000000000001,245,4.800000000000001
+2023,3,24,13,30,0.5,1.05,0.052000000000000005,0.62,106,1007,854,0,6,-6.4,412,168,0,537,0.35000000000000003,59.93,42.03,0.97,0.72,782,0.6000000000000001,255,4.6000000000000005
+2023,3,24,14,0,-0.1,1.04,0.058,0.62,105,992,806,0,6,-6.300000000000001,358,10,0,365,0.352,63.24,45,0.97,0.72,781,0.6000000000000001,265,4.4
+2023,3,24,14,30,-0.6000000000000001,1.04,0.058,0.62,102,976,746,0,6,-6.300000000000001,320,104,0,389,0.353,65.58,48.74,0.97,0.72,781,0.6000000000000001,279,4.3
+2023,3,24,15,0,-1,1.02,0.06,0.62,98,954,671,0,6,-6.4,301,371,7,524,0.354,66.78,53.06,0.97,0.72,781,0.6000000000000001,294,4.3
+2023,3,24,15,30,-1.5,1.02,0.06,0.62,90,927,584,0,9,-6.4,216,5,0,219,0.356,69.27,57.82,0.96,0.72,781,0.5,302,4.3
+2023,3,24,16,0,-2,0.98,0.059000000000000004,0.62,83,890,488,0,9,-7.300000000000001,153,2,0,154,0.357,67.19,62.910000000000004,0.96,0.72,781,0.5,310,4.4
+2023,3,24,16,30,-2.5,0.98,0.059000000000000004,0.62,74,832,382,0,6,-7.300000000000001,104,1,0,104,0.359,69.8,68.24,0.96,0.72,782,0.5,312,4.2
+2023,3,24,17,0,-3.1,0.9400000000000001,0.061,0.62,64,746,273,0,6,-8.5,67,1,0,67,0.36,66.39,73.73,0.96,0.79,782,0.5,313,3.9000000000000004
+2023,3,24,17,30,-3.7,0.9400000000000001,0.061,0.62,50,618,165,1,7,-8.5,91,65,14,103,0.362,69.43,79.32000000000001,0.96,0.79,782,0.5,309,3.7
+2023,3,24,18,0,-4.2,0.88,0.061,0.62,33,392,68,7,7,-9.8,25,0,100,25,0.364,65.24,84.94,0.96,0.79,783,0.4,305,3.6
+2023,3,24,18,30,-4.7,0.88,0.061,0.62,6,54,6,3,7,-9.8,4,0,43,4,0.366,67.74,90.27,0.9500000000000001,0.79,783,0.4,302,3.8000000000000003
+2023,3,24,19,0,-5.2,0.8200000000000001,0.058,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.368,62.36,96.43,0.9500000000000001,0.79,784,0.4,299,4
+2023,3,24,19,30,-5.6000000000000005,0.8200000000000001,0.058,0.62,0,0,0,0,7,-11.3,0,0,0,0,0.369,64.28,102.03,0.9400000000000001,0.79,784,0.30000000000000004,298,4.1000000000000005
+2023,3,24,20,0,-5.9,0.81,0.052000000000000005,0.62,0,0,0,0,7,-12.5,0,0,0,0,0.371,59.5,107.52,0.9400000000000001,0.79,785,0.30000000000000004,298,4.2
+2023,3,24,20,30,-6.2,0.81,0.052000000000000005,0.62,0,0,0,0,5,-12.5,0,0,0,0,0.373,60.88,112.84,0.93,0.79,785,0.30000000000000004,296,4.1000000000000005
+2023,3,24,21,0,-6.5,0.84,0.047,0.62,0,0,0,0,5,-13.200000000000001,0,0,0,0,0.375,59.13,117.93,0.93,0.79,785,0.30000000000000004,295,4.1000000000000005
+2023,3,24,21,30,-6.7,0.84,0.047,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.377,60.04,122.69,0.93,0.79,785,0.30000000000000004,292,3.9000000000000004
+2023,3,24,22,0,-6.9,0.91,0.043000000000000003,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.38,61.01,127.04,0.92,0.79,785,0.30000000000000004,289,3.6
+2023,3,24,22,30,-7,0.91,0.043000000000000003,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.382,61.480000000000004,130.84,0.93,0.79,785,0.30000000000000004,284,3.4000000000000004
+2023,3,24,23,0,-7.2,0.9500000000000001,0.038,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.384,62.56,133.94,0.93,0.79,785,0.30000000000000004,280,3.1
+2023,3,24,23,30,-7.300000000000001,0.9500000000000001,0.038,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.386,63.04,136.2,0.93,0.79,785,0.30000000000000004,273,2.8000000000000003
+2023,3,25,0,0,-7.5,0.9500000000000001,0.031,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.389,64.3,137.47,0.93,0.79,785,0.30000000000000004,267,2.6
+2023,3,25,0,30,-7.7,0.9500000000000001,0.031,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.39,65.3,137.66,0.93,0.79,785,0.30000000000000004,261,2.5
+2023,3,25,1,0,-7.800000000000001,0.92,0.026000000000000002,0.62,0,0,0,0,7,-13,0,0,0,0,0.392,66.49,136.75,0.93,0.79,785,0.30000000000000004,255,2.4000000000000004
+2023,3,25,1,30,-8.1,0.92,0.026000000000000002,0.62,0,0,0,0,7,-13,0,0,0,0,0.393,68.05,134.81,0.93,0.79,785,0.30000000000000004,251,2.4000000000000004
+2023,3,25,2,0,-8.3,0.91,0.025,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.395,69.65,131.97,0.93,0.79,785,0.30000000000000004,246,2.5
+2023,3,25,2,30,-8.4,0.91,0.025,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.395,70.19,128.39000000000001,0.93,0.79,785,0.30000000000000004,243,2.6
+2023,3,25,3,0,-8.5,0.92,0.024,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.396,70.74,124.21000000000001,0.93,0.79,784,0.30000000000000004,240,2.8000000000000003
+2023,3,25,3,30,-8.6,0.92,0.024,0.62,0,0,0,0,6,-12.9,0,0,0,0,0.397,71.3,119.57000000000001,0.93,0.79,784,0.30000000000000004,239,2.9000000000000004
+2023,3,25,4,0,-8.700000000000001,0.93,0.024,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.397,72.55,114.58,0.93,0.79,784,0.30000000000000004,237,3
+2023,3,25,4,30,-8.700000000000001,0.93,0.024,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.397,72.55,109.33,0.93,0.79,784,0.2,238,3
+2023,3,25,5,0,-8.8,0.9400000000000001,0.024,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.397,73.11,103.88,0.93,0.79,784,0.2,239,3
+2023,3,25,5,30,-8.700000000000001,0.9400000000000001,0.024,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.398,72.63,98.31,0.93,0.79,785,0.2,243,3
+2023,3,25,6,0,-8.5,0.9500000000000001,0.024,0.62,0,0,0,0,0,-13,0,0,4,0,0.398,69.72,92.65,0.92,0.79,785,0.2,247,3.1
+2023,3,25,6,30,-7.5,0.9500000000000001,0.024,0.62,23,395,45,4,7,-13,25,157,61,34,0.399,64.51,86.76,0.92,0.79,785,0.2,257,3.5
+2023,3,25,7,0,-6.5,0.96,0.024,0.62,36,689,142,2,7,-13.5,67,345,29,120,0.4,57.34,81.16,0.92,0.79,785,0.2,268,3.8000000000000003
+2023,3,25,7,30,-5.7,0.96,0.024,0.62,47,825,253,0,0,-13.5,47,825,0,253,0.401,53.94,75.54,0.92,0.79,785,0.2,273,4.2
+2023,3,25,8,0,-4.9,0.97,0.024,0.62,56,907,366,0,0,-14.600000000000001,56,907,0,366,0.402,46.4,69.99,0.92,0.79,785,0.2,279,4.6000000000000005
+2023,3,25,8,30,-4.5,0.97,0.024,0.62,64,960,476,0,0,-14.600000000000001,64,960,0,476,0.403,45.02,64.58,0.93,0.79,785,0.2,280,4.800000000000001
+2023,3,25,9,0,-4,0.96,0.026000000000000002,0.62,72,996,579,0,0,-15.8,72,996,0,579,0.403,39.53,59.370000000000005,0.93,0.79,785,0.2,281,5
+2023,3,25,9,30,-3.8000000000000003,0.96,0.026000000000000002,0.62,78,1024,673,0,0,-15.8,78,1024,0,673,0.403,38.94,54.46,0.93,0.79,785,0.2,280,5
+2023,3,25,10,0,-3.5,0.9500000000000001,0.027,0.62,82,1044,754,0,0,-16.2,111,985,0,745,0.403,36.84,49.94,0.93,0.79,785,0.2,279,5
+2023,3,25,10,30,-3.2,0.9500000000000001,0.027,0.62,86,1058,822,0,7,-16.2,245,777,0,785,0.403,35.980000000000004,45.95,0.93,0.79,784,0.2,277,5
+2023,3,25,11,0,-2.9000000000000004,0.93,0.028,0.62,90,1068,875,0,0,-16.2,90,1068,0,875,0.402,35.160000000000004,42.660000000000004,0.93,0.79,784,0.2,275,4.9
+2023,3,25,11,30,-2.7,0.93,0.028,0.62,91,1075,912,0,0,-16.2,98,1065,0,911,0.401,34.64,40.24,0.93,0.79,784,0.2,273,4.800000000000001
+2023,3,25,12,0,-2.5,0.92,0.028,0.62,94,1078,933,0,0,-16,123,1036,0,930,0.401,34.75,38.87,0.93,0.79,784,0.2,271,4.7
+2023,3,25,12,30,-2.4000000000000004,0.92,0.028,0.62,94,1076,934,0,7,-16,250,818,21,889,0.4,34.49,38.65,0.93,0.79,784,0.2,268,4.7
+2023,3,25,13,0,-2.4000000000000004,0.91,0.029,0.62,93,1070,917,0,7,-15.700000000000001,276,769,21,868,0.399,35.36,39.62,0.93,0.79,784,0.30000000000000004,266,4.6000000000000005
+2023,3,25,13,30,-2.4000000000000004,0.91,0.029,0.62,92,1060,884,0,7,-15.700000000000001,238,833,14,860,0.398,35.36,41.69,0.93,0.79,784,0.30000000000000004,264,4.5
+2023,3,25,14,0,-2.4000000000000004,0.89,0.031,0.62,90,1046,834,0,0,-15.3,107,1016,7,829,0.397,36.46,44.69,0.93,0.79,784,0.30000000000000004,261,4.5
+2023,3,25,14,30,-2.6,0.89,0.031,0.62,87,1029,770,0,7,-15.3,179,863,21,751,0.396,37,48.45,0.93,0.79,784,0.30000000000000004,260,4.4
+2023,3,25,15,0,-2.8000000000000003,0.88,0.033,0.62,84,1009,694,0,7,-14.9,185,800,21,669,0.395,38.76,52.79,0.93,0.79,784,0.30000000000000004,258,4.3
+2023,3,25,15,30,-3.1,0.88,0.033,0.62,79,981,605,0,7,-14.9,161,770,18,574,0.394,39.63,57.57,0.93,0.79,784,0.30000000000000004,259,4.2
+2023,3,25,16,0,-3.5,0.87,0.036000000000000004,0.62,73,943,506,0,0,-14.5,83,915,4,503,0.393,42.230000000000004,62.68,0.9400000000000001,0.79,784,0.30000000000000004,259,4
+2023,3,25,16,30,-3.9000000000000004,0.87,0.036000000000000004,0.62,66,890,399,0,0,-14.5,69,876,0,397,0.392,43.51,68.02,0.9400000000000001,0.79,784,0.30000000000000004,263,3.7
+2023,3,25,17,0,-4.4,0.86,0.038,0.62,57,812,287,0,0,-14.3,69,762,7,285,0.392,45.9,73.53,0.9400000000000001,0.8,784,0.30000000000000004,268,3.4000000000000004
+2023,3,25,17,30,-4.9,0.86,0.038,0.62,46,689,176,0,0,-14.3,48,675,0,175,0.392,47.660000000000004,79.12,0.9400000000000001,0.8,784,0.30000000000000004,275,3.1
+2023,3,25,18,0,-5.5,0.85,0.041,0.62,31,468,74,0,0,-14.100000000000001,32,444,7,73,0.393,50.72,84.74,0.9400000000000001,0.8,784,0.30000000000000004,281,2.7
+2023,3,25,18,30,-5.7,0.85,0.041,0.62,7,76,7,0,0,-14.100000000000001,7,58,7,7,0.393,51.56,90.09,0.9400000000000001,0.8,785,0.30000000000000004,288,2.7
+2023,3,25,19,0,-6,0.85,0.043000000000000003,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.393,53.67,96.23,0.9400000000000001,0.8,785,0.30000000000000004,295,2.6
+2023,3,25,19,30,-6.2,0.85,0.043000000000000003,0.62,0,0,0,0,7,-13.9,0,0,0,0,0.393,54.5,101.83,0.9400000000000001,0.8,785,0.30000000000000004,299,2.6
+2023,3,25,20,0,-6.300000000000001,0.85,0.045,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.393,54.83,107.3,0.9400000000000001,0.8,785,0.30000000000000004,303,2.6
+2023,3,25,20,30,-6.5,0.85,0.045,0.62,0,0,0,0,5,-13.9,0,0,0,0,0.392,55.75,112.61,0.93,0.8,786,0.30000000000000004,304,2.5
+2023,3,25,21,0,-6.7,0.86,0.046,0.62,0,0,0,0,8,-14.100000000000001,0,0,0,0,0.392,55.82,117.68,0.93,0.8,786,0.30000000000000004,305,2.5
+2023,3,25,21,30,-6.9,0.86,0.046,0.62,0,0,0,0,7,-14.100000000000001,0,0,14,0,0.391,56.68,122.43,0.93,0.8,786,0.30000000000000004,305,2.3000000000000003
+2023,3,25,22,0,-7.2,0.87,0.047,0.62,0,0,0,0,8,-14.3,0,0,0,0,0.39,56.68,126.75,0.93,0.8,786,0.30000000000000004,306,2.1
+2023,3,25,22,30,-7.5,0.87,0.047,0.62,0,0,0,0,5,-14.4,0,0,0,0,0.389,57.93,130.52,0.93,0.8,785,0.30000000000000004,305,1.9000000000000001
+2023,3,25,23,0,-7.7,0.9,0.047,0.62,0,0,0,0,5,-14.200000000000001,0,0,0,0,0.389,59.5,133.61,0.93,0.8,785,0.30000000000000004,305,1.6
+2023,3,25,23,30,-8,0.9,0.047,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.389,60.89,135.84,0.93,0.8,785,0.30000000000000004,303,1.4000000000000001
+2023,3,26,0,0,-8.3,0.9500000000000001,0.046,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.39,62.730000000000004,137.09,0.93,0.8,785,0.2,302,1.2000000000000002
+2023,3,26,0,30,-8.5,0.9500000000000001,0.046,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.391,63.71,137.26,0.93,0.8,785,0.2,301,1.1
+2023,3,26,1,0,-8.700000000000001,0.98,0.046,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.392,62.63,136.35,0.93,0.8,785,0.2,300,1
+2023,3,26,1,30,-8.8,0.98,0.046,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.393,63.120000000000005,134.41,0.93,0.8,785,0.2,301,0.9
+2023,3,26,2,0,-8.9,1,0.047,0.62,0,0,0,0,0,-15,0,0,0,0,0.393,61.39,131.58,0.93,0.8,785,0.2,301,0.7000000000000001
+2023,3,26,2,30,-9.1,1,0.047,0.62,0,0,0,0,0,-15,0,0,0,0,0.393,62.36,128.01,0.93,0.8,785,0.2,303,0.6000000000000001
+2023,3,26,3,0,-9.200000000000001,1.01,0.047,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.393,62.26,123.85000000000001,0.93,0.8,785,0.2,305,0.4
+2023,3,26,3,30,-9.3,1.01,0.047,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.393,62.75,119.22,0.93,0.8,785,0.2,303,0.30000000000000004
+2023,3,26,4,0,-9.4,1.04,0.047,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.392,64.93,114.24000000000001,0.9400000000000001,0.8,785,0.2,301,0.1
+2023,3,26,4,30,-9.600000000000001,1.04,0.047,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.392,65.96000000000001,109,0.9400000000000001,0.8,785,0.2,224,0.2
+2023,3,26,5,0,-9.8,1.07,0.048,0.62,0,0,0,0,0,-15,0,0,0,0,0.392,65.54,103.56,0.9400000000000001,0.8,785,0.2,146,0.30000000000000004
+2023,3,26,5,30,-9.8,1.07,0.048,0.62,0,0,0,0,0,-15,0,0,0,0,0.392,65.54,97.99000000000001,0.9400000000000001,0.8,785,0.2,147,0.4
+2023,3,26,6,0,-9.8,1.09,0.05,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.393,67.55,92.33,0.9400000000000001,0.8,785,0.2,149,0.6000000000000001
+2023,3,26,6,30,-8.8,1.09,0.05,0.62,26,340,47,0,0,-14.700000000000001,26,340,0,47,0.394,62.45,86.46000000000001,0.9400000000000001,0.8,785,0.2,163,0.9
+2023,3,26,7,0,-7.800000000000001,1.11,0.052000000000000005,0.62,44,628,144,0,0,-15.200000000000001,44,628,0,144,0.394,55.27,80.85000000000001,0.9400000000000001,0.8,785,0.2,176,1.3
+2023,3,26,7,30,-7,1.11,0.052000000000000005,0.62,58,771,255,0,0,-15.200000000000001,58,771,0,255,0.395,51.96,75.22,0.9400000000000001,0.8,785,0.2,194,1.6
+2023,3,26,8,0,-6.1000000000000005,1.12,0.054,0.62,70,859,368,0,0,-16.1,70,859,0,368,0.396,45.01,69.67,0.9400000000000001,0.8,785,0.2,212,2
+2023,3,26,8,30,-5.6000000000000005,1.12,0.054,0.62,80,918,479,0,0,-16.1,80,918,0,479,0.396,43.38,64.25,0.9400000000000001,0.8,786,0.2,217,2.3000000000000003
+2023,3,26,9,0,-5.1000000000000005,1.1400000000000001,0.056,0.62,89,959,582,0,0,-16.400000000000002,89,959,0,582,0.397,40.84,59.03,0.9400000000000001,0.8,786,0.2,222,2.6
+2023,3,26,9,30,-4.5,1.1400000000000001,0.056,0.62,96,990,676,0,0,-16.400000000000002,96,990,0,676,0.397,39.03,54.11,0.9400000000000001,0.8,786,0.2,222,2.9000000000000004
+2023,3,26,10,0,-3.9000000000000004,1.16,0.056,0.62,102,1012,758,0,0,-16,102,1012,0,758,0.397,38.39,49.57,0.9400000000000001,0.8,786,0.2,222,3.1
+2023,3,26,10,30,-3.4000000000000004,1.16,0.056,0.62,108,1027,827,0,0,-16,108,1027,0,827,0.397,36.93,45.57,0.9500000000000001,0.8,785,0.2,222,3.4000000000000004
+2023,3,26,11,0,-2.9000000000000004,1.17,0.059000000000000004,0.62,112,1038,880,0,0,-15.700000000000001,112,1038,0,880,0.396,36.6,42.27,0.9500000000000001,0.8,785,0.2,221,3.6
+2023,3,26,11,30,-2.6,1.17,0.059000000000000004,0.62,117,1042,917,0,0,-15.700000000000001,117,1042,0,917,0.396,35.79,39.84,0.9500000000000001,0.8,785,0.2,222,3.8000000000000003
+2023,3,26,12,0,-2.3000000000000003,1.17,0.068,0.62,122,1041,937,0,0,-15.5,122,1041,0,937,0.396,35.660000000000004,38.47,0.96,0.8,785,0.2,222,4.1000000000000005
+2023,3,26,12,30,-2.2,1.17,0.068,0.62,127,1029,935,0,0,-15.5,127,1029,0,935,0.397,35.4,38.27,0.96,0.8,785,0.30000000000000004,224,4.3
+2023,3,26,13,0,-2.2,1.1400000000000001,0.08700000000000001,0.62,134,1009,915,0,0,-15.200000000000001,201,890,7,890,0.397,36.160000000000004,39.25,0.96,0.8,785,0.30000000000000004,226,4.5
+2023,3,26,13,30,-2.5,1.1400000000000001,0.08700000000000001,0.62,135,993,881,0,7,-15.200000000000001,255,817,18,868,0.398,36.97,41.34,0.97,0.8,785,0.30000000000000004,229,4.6000000000000005
+2023,3,26,14,0,-2.8000000000000003,1.11,0.10200000000000001,0.62,136,973,832,0,7,-14.600000000000001,400,547,0,791,0.399,39.910000000000004,44.37,0.97,0.8,785,0.30000000000000004,231,4.800000000000001
+2023,3,26,14,30,-3.3000000000000003,1.11,0.10200000000000001,0.62,130,957,768,0,7,-14.600000000000001,460,260,0,633,0.4,41.42,48.160000000000004,0.97,0.8,785,0.30000000000000004,235,4.800000000000001
+2023,3,26,15,0,-3.7,1.12,0.099,0.62,122,935,691,0,7,-13.700000000000001,348,450,0,622,0.401,45.83,52.53,0.97,0.8,785,0.30000000000000004,238,4.7
+2023,3,26,15,30,-4.1000000000000005,1.12,0.099,0.62,115,901,601,0,7,-13.700000000000001,291,260,0,431,0.401,47.22,57.33,0.97,0.8,785,0.30000000000000004,242,4.5
+2023,3,26,16,0,-4.6000000000000005,1.12,0.10300000000000001,0.62,106,854,501,0,6,-13.4,169,1,0,169,0.402,50.120000000000005,62.45,0.97,0.8,785,0.30000000000000004,245,4.2
+2023,3,26,16,30,-4.9,1.12,0.10300000000000001,0.62,94,791,393,0,6,-13.4,116,1,0,116,0.402,51.27,67.81,0.97,0.8,785,0.30000000000000004,248,3.7
+2023,3,26,17,0,-5.300000000000001,1.1300000000000001,0.106,0.62,80,700,281,0,6,-13.700000000000001,73,0,0,73,0.402,51.59,73.32000000000001,0.97,0.8,786,0.30000000000000004,251,3.3000000000000003
+2023,3,26,17,30,-5.7,1.1300000000000001,0.106,0.62,62,565,171,1,6,-13.700000000000001,43,0,14,43,0.402,53.18,78.92,0.97,0.8,786,0.30000000000000004,253,2.8000000000000003
+2023,3,26,18,0,-6,1.1400000000000001,0.10400000000000001,0.62,39,344,72,7,6,-13.9,32,0,100,32,0.403,53.74,84.55,0.97,0.8,786,0.30000000000000004,256,2.4000000000000004
+2023,3,26,18,30,-6.1000000000000005,1.1400000000000001,0.10400000000000001,0.62,7,46,7,4,6,-13.9,4,0,57,4,0.404,54.15,89.92,0.97,0.8,786,0.30000000000000004,260,2.1
+2023,3,26,19,0,-6.300000000000001,1.1400000000000001,0.1,0.62,0,0,0,0,6,-13.600000000000001,0,0,0,0,0.405,56.24,96.03,0.97,0.8,786,0.30000000000000004,265,1.8
+2023,3,26,19,30,-6.4,1.1400000000000001,0.1,0.62,0,0,0,0,9,-13.600000000000001,0,0,0,0,0.406,56.67,101.62,0.97,0.8,786,0.30000000000000004,274,1.7000000000000002
+2023,3,26,20,0,-6.4,1.12,0.096,0.62,0,0,0,0,9,-13.600000000000001,0,0,0,0,0.40700000000000003,56.800000000000004,107.09,0.97,0.8,786,0.30000000000000004,284,1.7000000000000002
+2023,3,26,20,30,-6.6000000000000005,1.12,0.096,0.62,0,0,0,0,6,-13.600000000000001,0,0,0,0,0.40800000000000003,57.68,112.38,0.97,0.8,786,0.30000000000000004,293,1.9000000000000001
+2023,3,26,21,0,-6.7,1.09,0.091,0.62,0,0,0,0,9,-13.700000000000001,0,0,0,0,0.40900000000000003,57.57,117.43,0.97,0.8,786,0.30000000000000004,301,2
+2023,3,26,21,30,-6.800000000000001,1.09,0.091,0.62,0,0,0,0,6,-13.700000000000001,0,0,14,0,0.41000000000000003,58.08,122.16,0.97,0.8,787,0.30000000000000004,307,2.2
+2023,3,26,22,0,-7,1.07,0.079,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.41100000000000003,58.53,126.46000000000001,0.96,0.8,787,0.30000000000000004,312,2.5
+2023,3,26,22,30,-7.2,1.07,0.079,0.62,0,0,0,0,6,-13.8,0,0,0,0,0.41300000000000003,59.44,130.21,0.96,0.8,787,0.30000000000000004,315,2.6
+2023,3,26,23,0,-7.4,1.05,0.064,0.62,0,0,0,0,7,-14,0,0,0,0,0.41400000000000003,59.08,133.27,0.96,0.8,787,0.30000000000000004,318,2.7
+2023,3,26,23,30,-7.6000000000000005,1.05,0.064,0.62,0,0,0,0,7,-14,0,0,0,0,0.41600000000000004,60,135.48,0.96,0.8,787,0.30000000000000004,318,2.7
+2023,3,27,0,0,-7.9,1.05,0.05,0.62,0,0,0,0,7,-14.3,0,0,0,0,0.417,60.050000000000004,136.71,0.96,0.8,787,0.30000000000000004,318,2.7
+2023,3,27,0,30,-8.200000000000001,1.05,0.05,0.62,0,0,0,0,7,-14.3,0,0,0,0,0.419,61.46,136.87,0.9500000000000001,0.8,787,0.30000000000000004,314,2.7
+2023,3,27,1,0,-8.5,1.06,0.039,0.62,0,0,0,0,7,-14.5,0,0,0,0,0.42,61.910000000000004,135.95,0.9500000000000001,0.8,788,0.30000000000000004,310,2.7
+2023,3,27,1,30,-8.9,1.06,0.039,0.62,0,0,0,0,7,-14.5,0,0,0,0,0.421,63.870000000000005,134.02,0.9400000000000001,0.8,788,0.2,307,2.6
+2023,3,27,2,0,-9.200000000000001,1.07,0.031,0.62,0,0,0,0,7,-14.700000000000001,0,0,0,0,0.422,64.34,131.2,0.9400000000000001,0.8,788,0.2,304,2.6
+2023,3,27,2,30,-9.600000000000001,1.07,0.031,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.423,66.39,127.64,0.93,0.8,788,0.2,302,2.4000000000000004
+2023,3,27,3,0,-10,1.09,0.026000000000000002,0.62,0,0,0,0,0,-15,0,0,0,0,0.424,66.79,123.49000000000001,0.93,0.8,788,0.2,301,2.3000000000000003
+2023,3,27,3,30,-10.5,1.09,0.026000000000000002,0.62,0,0,0,0,0,-15,0,0,0,0,0.427,69.57000000000001,118.87,0.92,0.8,789,0.2,300,2.1
+2023,3,27,4,0,-11,1.1,0.023,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.429,70.17,113.9,0.92,0.8,789,0.2,300,1.9000000000000001
+2023,3,27,4,30,-11.5,1.1,0.023,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.431,73.03,108.67,0.92,0.8,789,0.2,298,1.7000000000000002
+2023,3,27,5,0,-12,1.11,0.023,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.433,73.7,103.24000000000001,0.92,0.8,789,0.2,296,1.5
+2023,3,27,5,30,-12,1.11,0.023,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.436,73.79,97.67,0.93,0.8,790,0.2,294,1.6
+2023,3,27,6,0,-11.9,1.11,0.024,0.62,3,40,2,0,0,-16,3,30,4,2,0.438,71.34,92.02,0.93,0.8,790,0.2,292,1.7000000000000002
+2023,3,27,6,30,-10.600000000000001,1.11,0.024,0.62,24,468,55,2,0,-16,25,369,21,50,0.441,64.3,86.15,0.93,0.8,790,0.2,292,1.9000000000000001
+2023,3,27,7,0,-9.3,1.12,0.025,0.62,37,704,153,0,0,-16.3,39,681,4,151,0.444,56.730000000000004,80.54,0.93,0.8,791,0.2,293,2.2
+2023,3,27,7,30,-7.7,1.12,0.025,0.62,49,830,265,0,0,-16.3,49,830,0,265,0.446,50.08,74.91,0.93,0.8,791,0.2,288,2.2
+2023,3,27,8,0,-6.1000000000000005,1.1400000000000001,0.026000000000000002,0.62,58,907,378,0,0,-17.7,58,907,0,378,0.448,39.34,69.35000000000001,0.93,0.8,791,0.2,283,2.2
+2023,3,27,8,30,-5.5,1.1400000000000001,0.026000000000000002,0.62,65,960,487,0,0,-17.7,65,960,0,487,0.449,37.63,63.92,0.93,0.8,792,0.2,279,2.3000000000000003
+2023,3,27,9,0,-4.800000000000001,1.1400000000000001,0.026000000000000002,0.62,72,998,590,0,0,-18.400000000000002,72,998,0,590,0.45,33.68,58.7,0.93,0.8,792,0.2,275,2.3000000000000003
+2023,3,27,9,30,-4.3,1.1400000000000001,0.026000000000000002,0.62,78,1024,683,0,0,-18.400000000000002,99,978,0,677,0.45,32.44,53.76,0.93,0.8,792,0.2,277,2.6
+2023,3,27,10,0,-3.7,1.1300000000000001,0.027,0.62,83,1043,764,0,0,-18,214,729,0,690,0.449,32.04,49.21,0.93,0.8,792,0.2,279,2.8000000000000003
+2023,3,27,10,30,-3.4000000000000004,1.1300000000000001,0.027,0.62,86,1058,832,0,7,-18,315,466,21,643,0.448,31.37,45.19,0.93,0.8,793,0.2,281,3
+2023,3,27,11,0,-3,1.11,0.028,0.62,91,1067,885,0,8,-17.6,417,271,7,619,0.447,31.61,41.88,0.93,0.8,793,0.2,284,3.2
+2023,3,27,11,30,-2.7,1.11,0.028,0.62,93,1073,922,0,7,-17.6,310,671,18,828,0.445,30.91,39.44,0.93,0.8,793,0.2,286,3.4000000000000004
+2023,3,27,12,0,-2.4000000000000004,1.1,0.029,0.62,95,1076,942,0,7,-17.2,464,421,4,795,0.444,31.12,38.07,0.93,0.8,793,0.2,287,3.5
+2023,3,27,12,30,-2.2,1.1,0.029,0.62,95,1076,944,0,7,-17.2,537,338,0,804,0.442,30.66,37.88,0.93,0.8,793,0.2,288,3.6
+2023,3,27,13,0,-2,1.09,0.03,0.62,95,1073,930,0,7,-17,461,499,4,849,0.44,30.830000000000002,38.89,0.93,0.8,793,0.2,289,3.7
+2023,3,27,13,30,-1.8,1.09,0.03,0.62,93,1067,898,0,7,-17,394,566,0,821,0.438,30.38,41,0.92,0.8,793,0.2,288,3.6
+2023,3,27,14,0,-1.7000000000000002,1.07,0.031,0.62,90,1057,850,0,7,-16.900000000000002,408,468,0,744,0.436,30.41,44.06,0.92,0.8,794,0.2,288,3.5
+2023,3,27,14,30,-1.6,1.07,0.031,0.62,87,1044,787,0,7,-16.900000000000002,259,676,7,712,0.433,30.19,47.870000000000005,0.92,0.8,794,0.2,286,3.2
+2023,3,27,15,0,-1.6,1.04,0.03,0.62,82,1026,710,0,8,-16.900000000000002,203,772,7,676,0.431,30.02,52.26,0.92,0.8,794,0.2,284,2.9000000000000004
+2023,3,27,15,30,-1.7000000000000002,1.04,0.03,0.62,77,1002,621,0,0,-16.900000000000002,170,749,0,577,0.429,30.240000000000002,57.09,0.92,0.8,794,0.2,279,2.6
+2023,3,27,16,0,-1.9000000000000001,1.04,0.028,0.62,69,970,521,0,0,-16.900000000000002,73,955,7,518,0.427,30.72,62.230000000000004,0.91,0.8,794,0.2,273,2.3000000000000003
+2023,3,27,16,30,-2.4000000000000004,1.04,0.028,0.62,61,924,413,0,0,-16.900000000000002,61,924,0,413,0.425,31.87,67.6,0.91,0.8,794,0.2,261,2
+2023,3,27,17,0,-2.9000000000000004,1.08,0.026000000000000002,0.62,51,857,300,0,0,-16.6,51,857,0,300,0.422,33.95,73.12,0.91,0.76,794,0.2,249,1.8
+2023,3,27,17,30,-4.2,1.08,0.026000000000000002,0.62,42,748,188,0,0,-16.6,42,748,0,188,0.419,37.410000000000004,78.72,0.91,0.76,794,0.2,227,1.4000000000000001
+2023,3,27,18,0,-5.5,1.08,0.027,0.62,28,555,83,0,0,-12.5,28,555,0,83,0.41600000000000004,57.89,84.35000000000001,0.9,0.76,795,0.2,206,1
+2023,3,27,18,30,-6,1.08,0.027,0.62,10,145,11,0,0,-12.5,10,145,0,11,0.41200000000000003,60.13,89.74,0.9,0.76,795,0.2,195,1.1
+2023,3,27,19,0,-6.5,1.08,0.027,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.40900000000000003,61.660000000000004,95.83,0.9,0.76,795,0.2,184,1.2000000000000002
+2023,3,27,19,30,-6.7,1.08,0.027,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.406,62.61,101.41,0.9,0.76,795,0.2,181,1.3
+2023,3,27,20,0,-6.9,1.08,0.026000000000000002,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.404,62.690000000000005,106.87,0.9,0.76,795,0.2,177,1.3
+2023,3,27,20,30,-7.1000000000000005,1.08,0.026000000000000002,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.402,63.660000000000004,112.15,0.9,0.76,795,0.2,177,1.4000000000000001
+2023,3,27,21,0,-7.300000000000001,1.08,0.025,0.62,0,0,0,0,0,-12.9,0,0,0,0,0.401,64.18,117.19,0.9,0.76,795,0.2,176,1.4000000000000001
+2023,3,27,21,30,-7.5,1.08,0.025,0.62,0,0,0,0,0,-12.9,0,0,14,0,0.399,65.17,121.89,0.9,0.76,795,0.2,177,1.5
+2023,3,27,22,0,-7.7,1.1,0.022,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.397,65.04,126.17,0.9,0.76,795,0.2,178,1.6
+2023,3,27,22,30,-8,1.1,0.022,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.396,66.57000000000001,129.9,0.89,0.76,795,0.2,178,1.7000000000000002
+2023,3,27,23,0,-8.200000000000001,1.09,0.021,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.395,66.77,132.93,0.89,0.76,795,0.2,178,1.8
+2023,3,27,23,30,-8.6,1.09,0.021,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.394,68.88,135.11,0.89,0.76,795,0.2,177,1.8
+2023,3,28,0,0,-8.9,1.09,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.393,69.5,136.32,0.89,0.76,795,0.2,177,1.9000000000000001
+2023,3,28,0,30,-9.3,1.09,0.021,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.391,71.71000000000001,136.47,0.89,0.76,795,0.2,177,1.9000000000000001
+2023,3,28,1,0,-9.8,1.1,0.022,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.389,73.36,135.55,0.89,0.76,795,0.2,177,1.9000000000000001
+2023,3,28,1,30,-10.100000000000001,1.1,0.022,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.386,75.12,133.62,0.89,0.76,795,0.30000000000000004,175,2
+2023,3,28,2,0,-10.5,1.1400000000000001,0.025,0.62,0,0,0,0,0,-14,0,0,0,0,0.383,75.76,130.81,0.9,0.76,795,0.30000000000000004,174,2.1
+2023,3,28,2,30,-10.8,1.1400000000000001,0.025,0.62,0,0,0,0,0,-14,0,0,0,0,0.381,77.49,127.26,0.9,0.76,794,0.30000000000000004,173,2.1
+2023,3,28,3,0,-11.100000000000001,1.18,0.028,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.378,77.62,123.12,0.91,0.76,794,0.30000000000000004,172,2.2
+2023,3,28,3,30,-11.3,1.18,0.028,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.377,78.87,118.52,0.91,0.76,794,0.30000000000000004,173,2.1
+2023,3,28,4,0,-11.600000000000001,1.21,0.031,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.375,79.11,113.56,0.91,0.76,794,0.30000000000000004,173,2
+2023,3,28,4,30,-11.8,1.21,0.031,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.374,80.39,108.34,0.91,0.76,794,0.30000000000000004,173,1.9000000000000001
+2023,3,28,5,0,-12,1.23,0.036000000000000004,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.373,79.83,102.92,0.92,0.76,794,0.30000000000000004,172,1.8
+2023,3,28,5,30,-11.700000000000001,1.23,0.036000000000000004,0.62,0,0,0,0,4,-14.8,0,0,0,0,0.372,77.93,97.36,0.92,0.76,794,0.4,170,1.9000000000000001
+2023,3,28,6,0,-11.4,1.22,0.038,0.62,4,35,3,1,0,-15,3,18,14,2,0.371,74.7,91.71000000000001,0.92,0.76,794,0.4,169,2.1
+2023,3,28,6,30,-10,1.22,0.038,0.62,26,425,57,6,5,-15,26,59,86,30,0.369,66.84,85.85000000000001,0.92,0.76,794,0.4,169,2.3000000000000003
+2023,3,28,7,0,-8.6,1.21,0.035,0.62,41,662,153,2,0,-14.4,60,362,21,121,0.368,62.72,80.23,0.92,0.76,794,0.4,168,2.6
+2023,3,28,7,30,-6.6000000000000005,1.21,0.035,0.62,52,794,263,0,0,-14.4,58,742,0,255,0.368,53.74,74.60000000000001,0.91,0.76,794,0.4,180,3
+2023,3,28,8,0,-4.5,1.18,0.031,0.62,60,878,374,0,0,-14.3,60,878,0,374,0.367,46.2,69.03,0.91,0.76,794,0.4,191,3.4000000000000004
+2023,3,28,8,30,-2.9000000000000004,1.18,0.031,0.62,67,936,483,0,0,-14.3,113,791,0,465,0.368,40.99,63.59,0.91,0.76,794,0.4,197,3.9000000000000004
+2023,3,28,9,0,-1.2000000000000002,1.1400000000000001,0.029,0.62,73,976,585,0,7,-15.100000000000001,245,534,7,525,0.369,33.910000000000004,58.36,0.91,0.76,793,0.4,203,4.3
+2023,3,28,9,30,-0.2,1.1400000000000001,0.029,0.62,78,1003,676,0,0,-15.100000000000001,140,867,0,657,0.369,31.53,53.410000000000004,0.91,0.76,793,0.4,205,4.4
+2023,3,28,10,0,0.9,1.1300000000000001,0.028,0.62,83,1023,756,0,0,-14.3,83,1023,0,756,0.369,31.12,48.85,0.91,0.76,793,0.4,207,4.6000000000000005
+2023,3,28,10,30,1.8,1.1300000000000001,0.028,0.62,85,1036,820,0,0,-14.3,111,994,25,816,0.368,29.14,44.82,0.91,0.76,792,0.4,209,4.800000000000001
+2023,3,28,11,0,2.7,1.1400000000000001,0.027,0.62,88,1046,872,0,7,-13.5,165,921,39,855,0.367,29.330000000000002,41.49,0.91,0.76,792,0.4,211,5
+2023,3,28,11,30,3.3000000000000003,1.1400000000000001,0.027,0.62,89,1054,908,0,0,-13.5,98,1043,4,908,0.366,28.11,39.050000000000004,0.91,0.76,792,0.4,211,5.2
+2023,3,28,12,0,4,1.1400000000000001,0.027,0.62,90,1057,927,0,0,-12.9,90,1057,0,927,0.365,28.07,37.67,0.91,0.76,791,0.4,212,5.4
+2023,3,28,12,30,4.3,1.1400000000000001,0.027,0.62,91,1057,930,0,0,-12.9,91,1057,0,930,0.364,27.490000000000002,37.49,0.91,0.76,791,0.4,212,5.5
+2023,3,28,13,0,4.7,1.12,0.028,0.62,91,1054,916,0,0,-12.5,91,1054,0,916,0.364,27.490000000000002,38.52,0.92,0.76,791,0.4,212,5.6000000000000005
+2023,3,28,13,30,4.7,1.12,0.028,0.62,91,1047,885,0,0,-12.5,91,1047,0,885,0.363,27.46,40.660000000000004,0.92,0.76,790,0.4,213,5.7
+2023,3,28,14,0,4.800000000000001,1.04,0.032,0.62,90,1032,835,0,0,-12.4,90,1032,0,835,0.363,27.57,43.75,0.92,0.76,790,0.5,213,5.7
+2023,3,28,14,30,4.6000000000000005,1.04,0.032,0.62,86,1014,770,0,0,-12.4,86,1014,0,770,0.361,27.95,47.59,0.92,0.76,790,0.5,214,5.5
+2023,3,28,15,0,4.4,0.99,0.033,0.62,83,993,694,0,0,-12.200000000000001,83,993,0,694,0.36,28.740000000000002,52.01,0.92,0.76,789,0.5,215,5.4
+2023,3,28,15,30,4,0.99,0.033,0.62,78,966,606,0,0,-12.200000000000001,78,966,0,606,0.358,29.55,56.85,0.92,0.76,789,0.5,215,5.1000000000000005
+2023,3,28,16,0,3.7,0.99,0.035,0.62,72,930,508,0,0,-11.600000000000001,72,930,0,508,0.357,31.66,62.01,0.92,0.76,789,0.5,216,4.800000000000001
+2023,3,28,16,30,2.6,0.99,0.035,0.62,65,879,403,0,0,-11.600000000000001,65,879,0,403,0.356,34.22,67.39,0.92,0.76,789,0.5,216,3.7
+2023,3,28,17,0,1.6,1.02,0.037,0.62,55,805,292,0,0,-9,55,805,0,292,0.355,45.21,72.91,0.92,0.65,789,0.5,217,2.6
+2023,3,28,17,30,-0.2,1.02,0.037,0.62,46,686,182,0,0,-9,46,686,0,182,0.354,51.47,78.53,0.93,0.65,789,0.5,216,2.1
+2023,3,28,18,0,-1.9000000000000001,1.05,0.042,0.62,32,481,81,0,0,-8.5,32,481,0,81,0.353,60.51,84.16,0.93,0.65,789,0.5,215,1.6
+2023,3,28,18,30,-2.3000000000000003,1.05,0.042,0.62,10,115,11,0,0,-8.5,10,115,0,11,0.353,62.32,89.58,0.9400000000000001,0.65,789,0.5,213,1.5
+2023,3,28,19,0,-2.8000000000000003,1.07,0.047,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.353,63.68,95.62,0.9400000000000001,0.65,789,0.5,211,1.4000000000000001
+2023,3,28,19,30,-2.9000000000000004,1.07,0.047,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.353,64.15,101.2,0.9400000000000001,0.65,789,0.6000000000000001,205,1.3
+2023,3,28,20,0,-3.1,1.1,0.05,0.62,0,0,0,0,6,-8.700000000000001,0,0,0,0,0.353,65.43,106.65,0.9400000000000001,0.65,789,0.6000000000000001,199,1.3
+2023,3,28,20,30,-3.2,1.1,0.05,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.353,65.92,111.92,0.9400000000000001,0.65,789,0.6000000000000001,192,1.3
+2023,3,28,21,0,-3.2,1.1,0.05,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.352,67.12,116.94,0.93,0.65,789,0.6000000000000001,184,1.3
+2023,3,28,21,30,-3.2,1.1,0.05,0.62,0,0,0,0,7,-8.4,0,0,14,0,0.35100000000000003,67.12,121.63,0.93,0.65,789,0.6000000000000001,180,1.3
+2023,3,28,22,0,-3.2,1.12,0.051000000000000004,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.35100000000000003,69.03,125.88000000000001,0.93,0.65,788,0.6000000000000001,175,1.3
+2023,3,28,22,30,-3.2,1.12,0.051000000000000004,0.62,0,0,0,0,6,-8.1,0,0,0,0,0.35000000000000003,69.03,129.58,0.9400000000000001,0.65,788,0.6000000000000001,172,1.4000000000000001
+2023,3,28,23,0,-3.3000000000000003,1.16,0.059000000000000004,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.34900000000000003,71.43,132.59,0.9400000000000001,0.65,788,0.6000000000000001,169,1.4000000000000001
+2023,3,28,23,30,-3.3000000000000003,1.16,0.059000000000000004,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.34800000000000003,71.43,134.75,0.9500000000000001,0.65,788,0.7000000000000001,166,1.4000000000000001
+2023,3,29,0,0,-3.4000000000000004,1.19,0.079,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.34700000000000003,73.91,135.94,0.9500000000000001,0.65,787,0.7000000000000001,164,1.4000000000000001
+2023,3,29,0,30,-3.2,1.19,0.079,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.34600000000000003,72.82000000000001,136.08,0.96,0.65,787,0.7000000000000001,161,1.4000000000000001
+2023,3,29,1,0,-3.1,1.2,0.088,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.34500000000000003,75.01,135.15,0.96,0.65,787,0.7000000000000001,159,1.4000000000000001
+2023,3,29,1,30,-2.9000000000000004,1.2,0.088,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.34400000000000003,73.9,133.23,0.96,0.65,787,0.7000000000000001,158,1.4000000000000001
+2023,3,29,2,0,-2.6,1.2,0.08700000000000001,0.62,0,0,0,0,6,-6.300000000000001,0,0,0,0,0.343,75.98,130.43,0.96,0.65,787,0.7000000000000001,157,1.3
+2023,3,29,2,30,-2.5,1.2,0.08700000000000001,0.62,0,0,0,0,6,-6.300000000000001,0,0,0,0,0.343,75.32000000000001,126.89,0.96,0.65,786,0.7000000000000001,158,1.2000000000000002
+2023,3,29,3,0,-2.3000000000000003,1.2,0.08700000000000001,0.62,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.342,78.28,122.76,0.96,0.65,786,0.7000000000000001,158,1.1
+2023,3,29,3,30,-2.1,1.2,0.08700000000000001,0.62,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.341,77.13,118.17,0.96,0.65,786,0.7000000000000001,159,1.1
+2023,3,29,4,0,-2,1.21,0.085,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.34,78.09,113.23,0.9500000000000001,0.65,786,0.7000000000000001,159,1
+2023,3,29,4,30,-1.9000000000000001,1.21,0.085,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.34,77.52,108.01,0.9500000000000001,0.65,786,0.7000000000000001,162,1.1
+2023,3,29,5,0,-1.8,1.22,0.077,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.34,77.42,102.60000000000001,0.9500000000000001,0.65,785,0.8,164,1.1
+2023,3,29,5,30,-1.5,1.22,0.077,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.339,75.73,97.04,0.9500000000000001,0.65,785,0.8,169,1.2000000000000002
+2023,3,29,6,0,-1.3,1.24,0.066,0.62,4,25,3,2,7,-4.9,2,0,36,2,0.339,76.24,91.4,0.9400000000000001,0.65,785,0.8,173,1.3
+2023,3,29,6,30,-0.1,1.24,0.066,0.62,30,340,56,7,7,-4.9,33,2,100,33,0.338,69.85000000000001,85.56,0.9400000000000001,0.65,785,0.8,179,1.7000000000000002
+2023,3,29,7,0,1,1.27,0.067,0.62,48,574,148,1,7,-4.7,94,63,14,105,0.336,65.49,79.93,0.9400000000000001,0.65,785,0.8,184,2.1
+2023,3,29,7,30,2.2,1.27,0.067,0.62,63,702,253,0,7,-4.7,117,13,0,121,0.336,60.1,74.28,0.9500000000000001,0.65,785,0.8,192,2.5
+2023,3,29,8,0,3.3000000000000003,1.26,0.08,0.62,78,779,361,0,7,-4.9,208,141,0,259,0.335,54.88,68.71000000000001,0.9500000000000001,0.65,785,0.8,199,2.9000000000000004
+2023,3,29,8,30,4.5,1.26,0.08,0.62,87,844,467,0,7,-4.9,244,342,0,398,0.335,50.45,63.27,0.9500000000000001,0.65,785,0.8,205,3.6
+2023,3,29,9,0,5.7,1.24,0.075,0.62,94,891,566,0,7,-4.800000000000001,258,454,7,498,0.335,46.800000000000004,58.02,0.9500000000000001,0.65,784,0.8,211,4.2
+2023,3,29,9,30,6.6000000000000005,1.24,0.075,0.62,100,927,657,0,7,-4.800000000000001,187,742,14,633,0.334,43.99,53.06,0.9500000000000001,0.65,784,0.8,211,4.7
+2023,3,29,10,0,7.5,1.24,0.069,0.62,103,956,737,0,0,-4.9,126,921,0,736,0.333,41.02,48.49,0.9500000000000001,0.65,784,0.8,211,5.2
+2023,3,29,10,30,8.1,1.24,0.069,0.62,106,977,804,0,7,-4.9,247,740,11,775,0.331,39.38,44.44,0.9400000000000001,0.65,784,0.7000000000000001,210,5.6000000000000005
+2023,3,29,11,0,8.700000000000001,1.24,0.065,0.62,108,992,856,0,7,-5.4,164,905,46,846,0.329,36.54,41.1,0.9400000000000001,0.65,784,0.7000000000000001,209,6
+2023,3,29,11,30,9,1.24,0.065,0.62,110,1000,891,0,0,-5.4,160,925,14,882,0.327,35.76,38.65,0.9400000000000001,0.65,783,0.7000000000000001,209,6.2
+2023,3,29,12,0,9.4,1.24,0.063,0.62,111,1007,912,0,0,-5.800000000000001,136,969,7,907,0.324,33.63,37.28,0.9400000000000001,0.65,783,0.7000000000000001,208,6.5
+2023,3,29,12,30,9.700000000000001,1.24,0.063,0.62,110,1010,915,0,7,-5.800000000000001,159,938,39,907,0.322,32.96,37.11,0.9400000000000001,0.65,783,0.7000000000000001,208,6.800000000000001
+2023,3,29,13,0,10,1.23,0.06,0.62,108,1008,901,0,7,-6.1000000000000005,145,952,54,894,0.32,31.650000000000002,38.160000000000004,0.9400000000000001,0.65,782,0.7000000000000001,208,7
+2023,3,29,13,30,10.100000000000001,1.23,0.06,0.62,106,1002,870,0,7,-6.1000000000000005,430,379,11,719,0.319,31.44,40.33,0.9400000000000001,0.65,782,0.7000000000000001,208,7.2
+2023,3,29,14,0,10.200000000000001,1.23,0.059000000000000004,0.62,103,993,824,0,7,-6.1000000000000005,307,576,18,725,0.318,31.14,43.44,0.9400000000000001,0.65,782,0.7000000000000001,208,7.4
+2023,3,29,14,30,10,1.23,0.059000000000000004,0.62,96,983,763,0,7,-6.1000000000000005,131,917,43,753,0.318,31.560000000000002,47.31,0.93,0.65,782,0.6000000000000001,208,7.300000000000001
+2023,3,29,15,0,9.9,1.17,0.05,0.62,89,969,689,0,7,-6,303,494,7,609,0.318,32.15,51.75,0.93,0.65,781,0.6000000000000001,208,7.300000000000001
+2023,3,29,15,30,9.4,1.17,0.05,0.62,81,949,603,0,7,-6,292,389,4,506,0.318,33.25,56.61,0.92,0.65,781,0.6000000000000001,207,6.800000000000001
+2023,3,29,16,0,9,1.06,0.039,0.62,72,920,507,0,7,-5.4,280,106,0,330,0.317,35.63,61.79,0.91,0.65,781,0.6000000000000001,206,6.300000000000001
+2023,3,29,16,30,7.4,1.06,0.039,0.62,64,872,402,0,7,-5.4,195,124,0,243,0.317,39.71,67.18,0.91,0.65,781,0.6000000000000001,204,5
+2023,3,29,17,0,5.9,1,0.037,0.62,54,803,293,0,7,-4.1000000000000005,111,478,39,253,0.316,48.68,72.71000000000001,0.91,0.65,781,0.6000000000000001,202,3.7
+2023,3,29,17,30,3.4000000000000004,1,0.037,0.62,45,694,185,0,7,-4.1000000000000005,79,302,32,140,0.316,57.94,78.33,0.91,0.65,781,0.6000000000000001,198,3.2
+2023,3,29,18,0,0.8,0.98,0.036000000000000004,0.62,31,503,84,1,0,-4.5,35,417,21,79,0.315,67.48,83.97,0.91,0.65,781,0.6000000000000001,194,2.7
+2023,3,29,18,30,0.30000000000000004,0.98,0.036000000000000004,0.62,11,126,12,0,0,-4.6000000000000005,11,126,0,12,0.315,69.87,89.41,0.91,0.65,780,0.6000000000000001,192,2.8000000000000003
+2023,3,29,19,0,-0.2,1,0.036000000000000004,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.314,72.55,95.42,0.91,0.65,780,0.6000000000000001,189,2.9000000000000004
+2023,3,29,19,30,-0.4,1,0.036000000000000004,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.314,73.61,100.99000000000001,0.91,0.65,780,0.6000000000000001,188,2.9000000000000004
+2023,3,29,20,0,-0.6000000000000001,1.04,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.314,76.12,106.43,0.91,0.65,780,0.6000000000000001,188,2.9000000000000004
+2023,3,29,20,30,-0.6000000000000001,1.04,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.314,76.12,111.69,0.92,0.65,780,0.6000000000000001,190,3
+2023,3,29,21,0,-0.7000000000000001,1.08,0.045,0.62,0,0,0,0,0,-4,0,0,0,0,0.314,78.17,116.69,0.92,0.65,780,0.7000000000000001,193,3.1
+2023,3,29,21,30,-0.5,1.08,0.045,0.62,0,0,0,0,0,-4,0,0,14,0,0.314,76.94,121.36,0.92,0.65,779,0.7000000000000001,198,3.3000000000000003
+2023,3,29,22,0,-0.4,1.08,0.042,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.314,78.02,125.59,0.91,0.65,779,0.7000000000000001,203,3.5
+2023,3,29,22,30,-0.8,1.08,0.042,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.314,80.32000000000001,129.27,0.91,0.65,779,0.6000000000000001,205,3.2
+2023,3,29,23,0,-1.2000000000000002,1.01,0.039,0.62,0,0,0,0,0,-4,0,0,0,0,0.314,81.29,132.25,0.91,0.65,779,0.6000000000000001,207,3
+2023,3,29,23,30,-1.9000000000000001,1.01,0.039,0.62,0,0,0,0,0,-4,0,0,0,0,0.315,85.58,134.39000000000001,0.91,0.65,779,0.6000000000000001,203,2.7
+2023,3,30,0,0,-2.5,0.93,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.316,87.11,135.56,0.92,0.65,779,0.6000000000000001,199,2.4000000000000004
+2023,3,30,0,30,-2.8000000000000003,0.93,0.04,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.316,89.07000000000001,135.69,0.92,0.65,779,0.6000000000000001,194,2.3000000000000003
+2023,3,30,1,0,-3.1,0.86,0.041,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.317,91.85000000000001,134.76,0.92,0.65,779,0.6000000000000001,188,2.2
+2023,3,30,1,30,-3,0.86,0.041,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.317,91.17,132.84,0.93,0.65,779,0.6000000000000001,185,2.3000000000000003
+2023,3,30,2,0,-3,0.8200000000000001,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.318,93.16,130.04,0.93,0.65,778,0.6000000000000001,181,2.3000000000000003
+2023,3,30,2,30,-2.7,0.8200000000000001,0.042,0.62,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.319,91.11,126.52,0.93,0.65,778,0.6000000000000001,180,2.3000000000000003
+2023,3,30,3,0,-2.5,0.8300000000000001,0.047,0.62,0,0,0,0,4,-3.7,0,0,0,0,0.319,91.60000000000001,122.4,0.9400000000000001,0.65,778,0.7000000000000001,178,2.2
+2023,3,30,3,30,-2.3000000000000003,0.8300000000000001,0.047,0.62,0,0,0,0,5,-3.7,0,0,0,0,0.321,90.25,117.83,0.9400000000000001,0.65,778,0.7000000000000001,178,2.2
+2023,3,30,4,0,-2,0.8200000000000001,0.056,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.322,89.43,112.89,0.9500000000000001,0.65,777,0.7000000000000001,177,2.2
+2023,3,30,4,30,-1.7000000000000002,0.8200000000000001,0.056,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.325,87.47,107.69,0.9500000000000001,0.65,777,0.8,177,2.2
+2023,3,30,5,0,-1.3,0.75,0.062,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.328,85.7,102.28,0.9500000000000001,0.65,777,0.8,178,2.2
+2023,3,30,5,30,-0.7000000000000001,0.75,0.062,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.329,81.92,96.73,0.9500000000000001,0.65,776,0.8,181,2.7
+2023,3,30,6,0,-0.1,0.66,0.064,0.62,6,37,5,3,7,-3.2,2,0,43,2,0.331,79.36,91.09,0.9500000000000001,0.65,776,0.8,184,3.1
+2023,3,30,6,30,1,0.66,0.064,0.62,33,332,60,7,7,-3.2,22,0,100,22,0.333,73.3,85.26,0.9500000000000001,0.65,776,0.8,191,4.3
+2023,3,30,7,0,2.2,0.66,0.065,0.62,51,572,154,1,0,-3.1,76,346,14,138,0.334,68.19,79.62,0.9500000000000001,0.65,775,0.7000000000000001,197,5.6000000000000005
+2023,3,30,7,30,2.8000000000000003,0.66,0.065,0.62,65,708,261,0,0,-3.1,67,700,11,260,0.336,65.35,73.97,0.96,0.65,775,0.7000000000000001,207,6.4
+2023,3,30,8,0,3.5,0.72,0.07,0.62,77,793,369,0,0,-2.9000000000000004,77,793,0,369,0.337,63.03,68.4,0.96,0.65,775,0.7000000000000001,216,7.2
+2023,3,30,8,30,3.6,0.72,0.07,0.62,87,852,475,0,0,-2.9000000000000004,107,792,0,467,0.339,62.67,62.940000000000005,0.96,0.65,776,0.8,225,7.300000000000001
+2023,3,30,9,0,3.7,0.76,0.07200000000000001,0.62,96,894,574,0,0,-2.5,112,855,0,569,0.341,64.02,57.69,0.96,0.65,776,0.8,234,7.300000000000001
+2023,3,30,9,30,3.6,0.76,0.07200000000000001,0.62,102,927,664,0,7,-2.5,235,616,4,608,0.343,64.47,52.71,0.96,0.65,776,0.8,240,6.7
+2023,3,30,10,0,3.5,0.81,0.07,0.62,107,952,742,0,7,-2.9000000000000004,444,203,0,579,0.34500000000000003,62.940000000000005,48.13,0.96,0.65,776,0.8,247,6
+2023,3,30,10,30,3.4000000000000004,0.81,0.07,0.62,111,972,809,0,7,-2.9000000000000004,467,257,0,652,0.34800000000000003,63.38,44.07,0.96,0.65,776,0.7000000000000001,252,5.6000000000000005
+2023,3,30,11,0,3.2,0.85,0.067,0.62,113,987,861,0,7,-3.8000000000000003,490,284,0,705,0.35000000000000003,60.22,40.71,0.96,0.65,776,0.7000000000000001,257,5.1000000000000005
+2023,3,30,11,30,3.2,0.85,0.067,0.62,113,997,896,0,7,-3.8000000000000003,520,222,0,694,0.353,60.22,38.26,0.96,0.65,776,0.7000000000000001,260,4.800000000000001
+2023,3,30,12,0,3.2,0.89,0.061,0.62,112,1004,915,0,7,-4.6000000000000005,529,224,0,708,0.356,56.57,36.88,0.9500000000000001,0.65,776,0.7000000000000001,263,4.5
+2023,3,30,12,30,3.2,0.89,0.061,0.62,112,1006,918,0,7,-4.6000000000000005,528,234,0,716,0.358,56.57,36.730000000000004,0.96,0.65,776,0.7000000000000001,262,4.3
+2023,3,30,13,0,3.2,0.91,0.061,0.62,111,1004,904,0,7,-5,524,203,0,684,0.36,54.94,37.79,0.96,0.65,776,0.7000000000000001,261,4.1000000000000005
+2023,3,30,13,30,2.8000000000000003,0.91,0.061,0.62,110,995,872,0,7,-5,502,172,0,634,0.361,56.52,39.99,0.96,0.65,776,0.7000000000000001,257,4.2
+2023,3,30,14,0,2.3000000000000003,0.91,0.066,0.62,109,981,825,0,6,-5,378,31,0,401,0.363,58.51,43.13,0.96,0.65,776,0.7000000000000001,254,4.3
+2023,3,30,14,30,1.8,0.91,0.066,0.62,106,965,764,0,7,-5,386,73,0,436,0.364,60.63,47.03,0.97,0.65,776,0.7000000000000001,251,4.4
+2023,3,30,15,0,1.3,0.91,0.07100000000000001,0.62,102,941,688,0,7,-5,392,202,0,518,0.365,62.79,51.49,0.97,0.65,776,0.7000000000000001,249,4.6000000000000005
+2023,3,30,15,30,0.9,0.91,0.07100000000000001,0.62,96,912,601,0,7,-5,308,240,0,441,0.367,64.62,56.38,0.97,0.65,776,0.6000000000000001,248,4.4
+2023,3,30,16,0,0.4,0.93,0.07200000000000001,0.62,88,873,504,0,7,-5,252,286,7,388,0.368,67.14,61.56,0.97,0.65,777,0.6000000000000001,246,4.3
+2023,3,30,16,30,0,0.93,0.07200000000000001,0.62,80,819,400,0,7,-5,236,130,0,287,0.37,69.11,66.97,0.97,0.65,777,0.6000000000000001,244,3.6
+2023,3,30,17,0,-0.5,0.97,0.07100000000000001,0.62,68,741,291,0,7,-4.7,120,296,7,209,0.371,73.45,72.51,0.97,0.68,777,0.6000000000000001,242,2.9000000000000004
+2023,3,30,17,30,-1.2000000000000002,0.97,0.07100000000000001,0.62,54,626,183,0,7,-4.7,113,77,0,129,0.374,77.3,78.14,0.96,0.68,777,0.6000000000000001,237,2.3000000000000003
+2023,3,30,18,0,-1.9000000000000001,1.01,0.063,0.62,37,436,84,6,7,-4.6000000000000005,36,2,86,36,0.376,81.76,83.78,0.96,0.68,778,0.6000000000000001,233,1.6
+2023,3,30,18,30,-2.3000000000000003,1.01,0.063,0.62,12,99,13,4,6,-4.6000000000000005,5,0,57,5,0.378,84.21000000000001,89.23,0.96,0.68,778,0.6000000000000001,233,1.5
+2023,3,30,19,0,-2.7,1.05,0.052000000000000005,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.381,83.13,95.22,0.9500000000000001,0.68,778,0.5,233,1.5
+2023,3,30,19,30,-3.1,1.05,0.052000000000000005,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.383,85.64,100.79,0.9500000000000001,0.68,778,0.5,239,1.5
+2023,3,30,20,0,-3.4000000000000004,1.07,0.044,0.62,0,0,0,0,6,-5.800000000000001,0,0,0,0,0.385,83.26,106.22,0.9400000000000001,0.68,779,0.5,245,1.5
+2023,3,30,20,30,-3.5,1.07,0.044,0.62,0,0,0,0,6,-5.800000000000001,0,0,0,0,0.387,83.89,111.46000000000001,0.9400000000000001,0.68,779,0.5,250,1.6
+2023,3,30,21,0,-3.7,1.08,0.037,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.39,81.09,116.44,0.9400000000000001,0.68,779,0.5,255,1.8
+2023,3,30,21,30,-3.8000000000000003,1.08,0.037,0.62,0,0,0,0,7,-6.5,0,0,29,0,0.391,81.7,121.09,0.93,0.68,779,0.5,258,1.8
+2023,3,30,22,0,-4,1.08,0.032,0.62,0,0,0,0,7,-7,0,0,0,0,0.393,79.66,125.3,0.93,0.68,779,0.5,262,1.9000000000000001
+2023,3,30,22,30,-4.2,1.08,0.032,0.62,0,0,0,0,8,-7,0,0,0,0,0.394,80.87,128.95,0.93,0.68,779,0.4,261,1.8
+2023,3,30,23,0,-4.5,1.07,0.027,0.62,0,0,0,0,4,-7.4,0,0,0,0,0.395,80.13,131.91,0.92,0.68,779,0.4,260,1.7000000000000002
+2023,3,30,23,30,-4.9,1.07,0.027,0.62,0,0,0,0,5,-7.4,0,0,0,0,0.395,82.69,134.03,0.92,0.68,780,0.4,255,1.6
+2023,3,31,0,0,-5.2,1.07,0.024,0.62,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.396,82.02,135.18,0.91,0.68,780,0.4,251,1.5
+2023,3,31,0,30,-5.7,1.07,0.024,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.397,85.2,135.29,0.91,0.68,780,0.4,246,1.6
+2023,3,31,1,0,-6.1000000000000005,1.07,0.022,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.397,85.09,134.36,0.91,0.68,780,0.4,241,1.6
+2023,3,31,1,30,-6.300000000000001,1.07,0.022,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.397,86.4,132.44,0.91,0.68,780,0.4,237,1.7000000000000002
+2023,3,31,2,0,-6.6000000000000005,1.07,0.021,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.397,87.5,129.66,0.91,0.68,780,0.4,234,1.9000000000000001
+2023,3,31,2,30,-6.7,1.07,0.021,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.397,88.18,126.15,0.91,0.68,780,0.4,231,2.2
+2023,3,31,3,0,-6.800000000000001,1.07,0.022,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.396,88.83,122.04,0.92,0.68,780,0.4,229,2.5
+2023,3,31,3,30,-6.7,1.07,0.022,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.396,88.16,117.48,0.92,0.68,780,0.4,228,2.8000000000000003
+2023,3,31,4,0,-6.6000000000000005,1.08,0.023,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.397,88.07000000000001,112.55,0.92,0.68,781,0.4,228,3.2
+2023,3,31,4,30,-6.4,1.08,0.023,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.398,86.73,107.36,0.92,0.68,781,0.4,230,3.4000000000000004
+2023,3,31,5,0,-6.1000000000000005,1.09,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.399,85.66,101.96000000000001,0.92,0.68,781,0.5,231,3.6
+2023,3,31,5,30,-5.5,1.09,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.401,81.83,96.42,0.92,0.68,781,0.5,235,3.8000000000000003
+2023,3,31,6,0,-4.9,1.1,0.025,0.62,7,88,7,3,6,-7.800000000000001,2,0,43,2,0.402,80.01,90.28,0.91,0.68,782,0.5,240,4.1000000000000005
+2023,3,31,6,30,-4,1.1,0.025,0.62,26,495,70,7,6,-7.800000000000001,20,0,100,20,0.401,74.77,84.95,0.91,0.68,782,0.5,249,4.4
+2023,3,31,7,0,-3.1,1.11,0.025,0.62,39,699,169,1,6,-7.800000000000001,42,0,14,42,0.4,69.82000000000001,79.31,0.91,0.68,782,0.5,258,4.7
+2023,3,31,7,30,-2.1,1.11,0.025,0.62,49,815,278,0,6,-7.800000000000001,93,5,0,94,0.396,64.92,73.66,0.91,0.68,783,0.5,269,5.1000000000000005
+2023,3,31,8,0,-1,1.1,0.025,0.62,56,889,388,0,7,-8,216,47,0,234,0.393,58.85,68.08,0.91,0.68,783,0.5,280,5.4
+2023,3,31,8,30,0.1,1.1,0.025,0.62,63,939,495,0,7,-8,257,309,0,399,0.387,54.32,62.620000000000005,0.91,0.68,783,0.5,286,5.800000000000001
+2023,3,31,9,0,1.1,1.08,0.024,0.62,68,975,594,0,0,-8.200000000000001,88,928,0,589,0.382,49.76,57.36,0.91,0.68,784,0.5,293,6.1000000000000005
+2023,3,31,9,30,1.6,1.08,0.024,0.62,73,1000,684,0,0,-8.200000000000001,86,975,0,681,0.378,48.01,52.370000000000005,0.91,0.68,784,0.5,294,6.4
+2023,3,31,10,0,2.2,1.04,0.027,0.62,79,1017,763,0,0,-8.8,235,722,0,720,0.374,43.980000000000004,47.77,0.91,0.68,784,0.5,295,6.6000000000000005
+2023,3,31,10,30,2.5,1.04,0.027,0.62,84,1029,828,0,5,-8.8,387,450,0,712,0.373,43.11,43.7,0.92,0.68,785,0.5,295,6.6000000000000005
+2023,3,31,11,0,2.9000000000000004,1,0.032,0.62,90,1035,879,0,4,-9,451,80,0,512,0.371,41.22,40.33,0.92,0.68,785,0.5,295,6.6000000000000005
+2023,3,31,11,30,3.2,1,0.032,0.62,94,1039,914,0,4,-9,508,46,0,544,0.371,40.36,37.86,0.92,0.68,785,0.5,294,6.5
+2023,3,31,12,0,3.5,0.97,0.039,0.62,97,1038,932,0,5,-8.9,562,229,0,746,0.371,39.95,36.49,0.93,0.68,786,0.5,293,6.300000000000001
+2023,3,31,12,30,3.7,0.97,0.039,0.62,98,1038,934,0,8,-8.9,422,475,0,805,0.371,39.39,36.34,0.93,0.68,786,0.5,292,6.2
+2023,3,31,13,0,3.8000000000000003,0.97,0.04,0.62,98,1034,919,0,8,-8.6,377,463,7,745,0.371,39.86,37.43,0.93,0.68,786,0.5,290,6
+2023,3,31,13,30,3.8000000000000003,0.97,0.04,0.62,96,1029,888,0,7,-8.6,390,262,0,592,0.371,39.86,39.660000000000004,0.93,0.68,786,0.5,287,5.7
+2023,3,31,14,0,3.8000000000000003,0.98,0.038,0.62,92,1020,840,0,7,-8.4,408,183,0,542,0.371,40.49,42.83,0.93,0.68,787,0.5,283,5.4
+2023,3,31,14,30,3.6,0.98,0.038,0.62,88,1005,777,0,8,-8.4,382,367,0,633,0.37,41.07,46.75,0.93,0.68,787,0.5,280,5.1000000000000005
+2023,3,31,15,0,3.4000000000000004,0.99,0.04,0.62,86,983,701,0,8,-8.200000000000001,328,402,0,580,0.37,42.42,51.24,0.93,0.68,787,0.6000000000000001,276,4.800000000000001
+2023,3,31,15,30,3.1,0.99,0.04,0.62,81,955,613,0,8,-8.200000000000001,272,336,0,459,0.369,43.32,56.14,0.9400000000000001,0.68,787,0.6000000000000001,274,4.5
+2023,3,31,16,0,2.7,0.98,0.043000000000000003,0.62,75,918,515,0,8,-7.7,254,253,0,375,0.369,46.11,61.35,0.9400000000000001,0.68,787,0.6000000000000001,272,4.1000000000000005
+2023,3,31,16,30,2,0.98,0.043000000000000003,0.62,68,869,411,0,8,-7.7,174,128,0,225,0.369,48.52,66.76,0.9400000000000001,0.68,788,0.5,270,3.2
+2023,3,31,17,0,1.3,1.1,0.059000000000000004,0.64,61,783,299,0,8,-6.2,138,114,0,173,0.369,57.26,72.31,0.93,0.65,788,0.5,267,2.3000000000000003
+2023,3,31,17,30,0.1,1.1,0.059000000000000004,0.64,51,661,189,0,4,-6.2,79,75,7,95,0.369,62.51,77.94,0.93,0.65,789,0.5,263,1.9000000000000001
+2023,3,31,18,0,-1.1,1.09,0.056,0.64,35,473,88,6,5,-6.1000000000000005,41,81,86,50,0.369,69.08,83.58,0.93,0.65,789,0.5,258,1.4000000000000001
+2023,3,31,18,30,-1.6,1.09,0.056,0.64,12,117,14,5,5,-6.1000000000000005,6,0,71,6,0.368,71.66,89.05,0.93,0.65,789,0.5,253,1.4000000000000001
+2023,3,31,19,0,-2.1,1.09,0.05,0.64,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.367,71.54,95.02,0.92,0.65,790,0.5,247,1.4000000000000001
+2023,3,31,19,30,-2.5,1.09,0.05,0.64,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.366,73.68,100.58,0.92,0.65,790,0.5,245,1.5
+2023,3,31,20,0,-2.8000000000000003,1.08,0.044,0.64,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.365,75.06,106,0.92,0.65,791,0.5,242,1.5
+2023,3,31,20,30,-3.2,1.08,0.044,0.64,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.365,77.33,111.23,0.92,0.65,791,0.5,241,1.5
+2023,3,31,21,0,-3.5,1.08,0.042,0.64,0,0,0,0,0,-6.9,0,0,0,0,0.364,77.47,116.2,0.92,0.65,791,0.5,239,1.6
+2023,3,31,21,30,-3.8000000000000003,1.08,0.042,0.64,0,0,0,0,0,-6.9,0,0,29,0,0.363,79.23,120.83,0.92,0.65,791,0.5,237,1.6
+2023,3,31,22,0,-4.1000000000000005,1.07,0.044,0.64,0,0,0,0,0,-7,0,0,0,0,0.362,79.95,125.01,0.92,0.65,791,0.5,236,1.6
+2023,3,31,22,30,-4.3,1.07,0.044,0.64,0,0,0,0,0,-7,0,0,0,0,0.361,81.16,128.64000000000001,0.92,0.65,791,0.5,233,1.6
+2023,3,31,23,0,-4.5,1.05,0.047,0.64,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.361,81.84,131.57,0.92,0.65,791,0.5,230,1.7000000000000002
+2023,3,31,23,30,-4.7,1.05,0.047,0.64,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.36,83.08,133.66,0.92,0.65,791,0.6000000000000001,227,1.7000000000000002
+2023,4,1,0,0,-4.800000000000001,1.04,0.051000000000000004,0.64,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.36,83.79,134.8,0.92,0.65,791,0.6000000000000001,223,1.7000000000000002
+2023,4,1,0,30,-4.800000000000001,1.04,0.051000000000000004,0.64,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.359,83.79,134.9,0.93,0.65,791,0.6000000000000001,218,1.7000000000000002
+2023,4,1,1,0,-4.800000000000001,1.02,0.054,0.64,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.358,84.15,133.97,0.93,0.65,791,0.6000000000000001,214,1.7000000000000002
+2023,4,1,1,30,-4.9,1.02,0.054,0.64,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.357,84.79,132.05,0.93,0.65,791,0.6000000000000001,211,1.7000000000000002
+2023,4,1,2,0,-4.9,0.99,0.054,0.64,0,0,0,0,0,-7,0,0,0,0,0.356,84.95,129.28,0.93,0.65,791,0.6000000000000001,208,1.7000000000000002
+2023,4,1,2,30,-4.9,0.99,0.054,0.64,0,0,0,0,0,-7,0,0,0,0,0.355,84.95,125.78,0.93,0.65,791,0.6000000000000001,207,1.7000000000000002
+2023,4,1,3,0,-5,0.97,0.054,0.64,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.354,85.15,121.69,0.92,0.65,791,0.6000000000000001,205,1.7000000000000002
+2023,4,1,3,30,-5,0.97,0.054,0.64,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.353,85.15,117.13,0.92,0.65,791,0.6000000000000001,204,1.7000000000000002
+2023,4,1,4,0,-5,0.9500000000000001,0.055,0.64,0,0,0,0,0,-7.2,0,0,29,0,0.352,84.42,112.22,0.92,0.65,791,0.6000000000000001,203,1.8
+2023,4,1,4,30,-5,0.9500000000000001,0.055,0.64,0,0,0,0,0,-7.2,0,0,0,0,0.35100000000000003,84.42,107.03,0.92,0.65,791,0.6000000000000001,202,1.8
+2023,4,1,5,0,-5.1000000000000005,0.9400000000000001,0.055,0.64,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.34900000000000003,84.28,101.64,0.92,0.65,791,0.6000000000000001,201,1.8
+2023,4,1,5,30,-4.4,0.9400000000000001,0.055,0.64,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.34700000000000003,79.95,96.10000000000001,0.92,0.65,791,0.6000000000000001,200,2.2
+2023,4,1,6,0,-3.8000000000000003,0.9400000000000001,0.056,0.64,7,63,7,3,7,-7.2,4,0,46,4,0.34500000000000003,77.07000000000001,90.01,0.92,0.65,791,0.6000000000000001,199,2.6
+2023,4,1,6,30,-2.3000000000000003,0.9400000000000001,0.056,0.64,33,410,71,6,7,-7.2,38,8,86,39,0.34400000000000003,68.94,84.65,0.92,0.65,791,0.6000000000000001,199,3.2
+2023,4,1,7,0,-0.8,0.9400000000000001,0.057,0.64,48,628,168,0,7,-6.7,110,83,0,126,0.34400000000000003,64.18,79,0.92,0.65,791,0.6000000000000001,198,3.7
+2023,4,1,7,30,1,0.9400000000000001,0.057,0.64,62,755,278,0,7,-6.7,160,174,0,210,0.34400000000000003,56.33,73.35000000000001,0.92,0.65,791,0.5,206,4.800000000000001
+2023,4,1,8,0,2.8000000000000003,0.9400000000000001,0.058,0.64,72,835,388,0,7,-7,216,145,0,271,0.34400000000000003,48.56,67.76,0.92,0.65,791,0.5,215,5.9
+2023,4,1,8,30,3.9000000000000004,0.9400000000000001,0.058,0.64,80,890,494,0,7,-7,150,684,7,468,0.34500000000000003,44.94,62.300000000000004,0.92,0.65,791,0.5,216,6.4
+2023,4,1,9,0,5,0.93,0.057,0.64,88,930,594,0,7,-7,193,677,7,562,0.34600000000000003,41.46,57.02,0.92,0.65,791,0.5,218,6.800000000000001
+2023,4,1,9,30,5.800000000000001,0.93,0.057,0.64,93,960,684,0,7,-7,204,720,29,647,0.34600000000000003,39.230000000000004,52.02,0.92,0.65,791,0.6000000000000001,219,7.1000000000000005
+2023,4,1,10,0,6.6000000000000005,0.93,0.054,0.64,97,983,762,0,7,-7,339,508,7,683,0.34700000000000003,37.300000000000004,47.410000000000004,0.92,0.65,790,0.6000000000000001,219,7.300000000000001
+2023,4,1,10,30,7.2,0.93,0.054,0.64,101,998,827,0,7,-7,358,519,0,736,0.34600000000000003,35.800000000000004,43.32,0.92,0.65,790,0.6000000000000001,220,7.5
+2023,4,1,11,0,7.800000000000001,0.8300000000000001,0.055,0.64,105,1006,876,0,7,-6.800000000000001,431,244,0,618,0.34500000000000003,34.76,39.94,0.92,0.65,790,0.6000000000000001,221,7.6000000000000005
+2023,4,1,11,30,8.3,0.8300000000000001,0.055,0.64,107,1014,912,0,6,-6.800000000000001,428,139,0,538,0.34400000000000003,33.56,37.47,0.92,0.65,789,0.6000000000000001,222,7.800000000000001
+2023,4,1,12,0,8.700000000000001,0.85,0.052000000000000005,0.64,106,1018,929,0,7,-6.7,368,440,7,724,0.343,32.980000000000004,36.1,0.92,0.65,789,0.6000000000000001,222,7.9
+2023,4,1,12,30,9,0.85,0.052000000000000005,0.64,107,1018,931,0,7,-6.7,337,589,36,814,0.343,32.28,35.96,0.92,0.65,788,0.6000000000000001,223,8.1
+2023,4,1,13,0,9.4,0.92,0.054,0.64,106,1014,915,0,7,-6.7,372,457,21,737,0.342,31.38,37.08,0.92,0.65,788,0.6000000000000001,223,8.200000000000001
+2023,4,1,13,30,9.4,0.92,0.054,0.64,110,999,883,0,7,-6.800000000000001,222,787,57,831,0.343,31.34,39.33,0.93,0.65,787,0.6000000000000001,223,8.200000000000001
+2023,4,1,14,0,9.5,0.8300000000000001,0.074,0.64,115,976,834,0,7,-7,137,938,79,828,0.343,30.59,42.53,0.93,0.65,787,0.6000000000000001,223,8.3
+2023,4,1,14,30,9.3,0.8300000000000001,0.074,0.64,109,964,773,0,7,-7,160,870,64,759,0.34400000000000003,30.96,46.480000000000004,0.93,0.65,786,0.6000000000000001,223,8.1
+2023,4,1,15,0,9.1,0.84,0.068,0.64,101,948,698,0,7,-7.4,314,397,14,564,0.34600000000000003,30.53,50.99,0.93,0.65,786,0.6000000000000001,222,8
+2023,4,1,15,30,8.9,0.84,0.068,0.64,92,927,612,0,7,-7.4,195,368,21,401,0.34700000000000003,30.95,55.910000000000004,0.92,0.65,786,0.6000000000000001,222,7.800000000000001
+2023,4,1,16,0,8.700000000000001,0.79,0.056,0.64,82,899,516,0,7,-7.5,157,514,18,405,0.34900000000000003,31.07,61.13,0.92,0.65,786,0.6000000000000001,222,7.6000000000000005
+2023,4,1,16,30,7.9,0.79,0.056,0.64,72,851,411,0,0,-7.5,104,736,32,397,0.34900000000000003,32.76,66.55,0.92,0.65,785,0.6000000000000001,220,6.800000000000001
+2023,4,1,17,0,7.1000000000000005,0.84,0.051000000000000004,0.64,62,781,302,2,7,-7,116,477,61,263,0.34900000000000003,36.050000000000004,72.11,0.92,0.65,785,0.6000000000000001,219,6
+2023,4,1,17,30,5,0.84,0.051000000000000004,0.64,50,669,192,4,7,-7,105,252,75,158,0.34800000000000003,41.72,77.75,0.92,0.65,786,0.6000000000000001,218,5
+2023,4,1,18,0,2.9000000000000004,0.92,0.049,0.64,35,484,91,7,7,-6.300000000000001,62,25,100,65,0.34700000000000003,50.660000000000004,83.4,0.92,0.65,786,0.6000000000000001,217,3.9000000000000004
+2023,4,1,18,30,2.1,0.92,0.049,0.64,14,144,17,5,7,-6.300000000000001,12,1,71,12,0.34600000000000003,53.61,88.88,0.92,0.65,786,0.6000000000000001,217,3.8000000000000003
+2023,4,1,19,0,1.3,1,0.051000000000000004,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.34500000000000003,57.24,94.82000000000001,0.92,0.65,786,0.6000000000000001,217,3.7
+2023,4,1,19,30,1,1,0.051000000000000004,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.34400000000000003,58.49,100.37,0.92,0.65,786,0.6000000000000001,218,3.8000000000000003
+2023,4,1,20,0,0.8,1.02,0.057,0.64,0,0,0,0,0,-6,0,0,0,0,0.342,60.370000000000005,105.78,0.92,0.65,786,0.6000000000000001,218,3.8000000000000003
+2023,4,1,20,30,0.8,1.02,0.057,0.64,0,0,0,0,0,-6,0,0,0,0,0.341,60.370000000000005,111,0.92,0.65,786,0.6000000000000001,219,4
+2023,4,1,21,0,0.7000000000000001,0.97,0.064,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34,61.870000000000005,115.95,0.93,0.65,786,0.6000000000000001,221,4.1000000000000005
+2023,4,1,21,30,0.7000000000000001,0.97,0.064,0.64,0,0,0,0,7,-5.800000000000001,0,0,29,0,0.339,61.79,120.56,0.93,0.65,785,0.6000000000000001,223,4.4
+2023,4,1,22,0,0.7000000000000001,0.91,0.07200000000000001,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.337,61.63,124.72,0.93,0.65,785,0.6000000000000001,226,4.6000000000000005
+2023,4,1,22,30,0.4,0.91,0.07200000000000001,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.337,62.980000000000004,128.33,0.93,0.65,785,0.6000000000000001,227,4.5
+2023,4,1,23,0,0.1,0.88,0.08,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.336,64.64,131.23,0.93,0.65,785,0.6000000000000001,229,4.4
+2023,4,1,23,30,-0.30000000000000004,0.88,0.08,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.336,66.54,133.3,0.93,0.65,785,0.7000000000000001,229,4.1000000000000005
+2023,4,2,0,0,-0.6000000000000001,0.87,0.084,0.64,0,0,0,0,0,-5.7,0,0,0,0,0.337,68.24,134.42000000000002,0.93,0.65,785,0.7000000000000001,229,3.8000000000000003
+2023,4,2,0,30,-0.8,0.87,0.084,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.338,69.15,134.52,0.93,0.65,784,0.7000000000000001,231,3.7
+2023,4,2,1,0,-0.9,0.87,0.082,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.339,69.77,133.58,0.93,0.65,784,0.7000000000000001,232,3.6
+2023,4,2,1,30,-1,0.87,0.082,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.34,70.29,131.67000000000002,0.93,0.65,784,0.7000000000000001,233,3.4000000000000004
+2023,4,2,2,0,-1.2000000000000002,0.88,0.075,0.64,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.341,71.92,128.9,0.93,0.65,784,0.7000000000000001,233,3.1
+2023,4,2,2,30,-1.3,0.88,0.075,0.64,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.342,72.45,125.41,0.93,0.65,784,0.7000000000000001,234,2.8000000000000003
+2023,4,2,3,0,-1.5,0.9,0.068,0.64,0,0,0,0,6,-5.4,0,0,0,0,0.343,74.98,121.33,0.93,0.65,784,0.7000000000000001,235,2.5
+2023,4,2,3,30,-1.6,0.9,0.068,0.64,0,0,0,0,6,-5.4,0,0,0,0,0.34500000000000003,75.53,116.79,0.93,0.65,784,0.8,237,2.2
+2023,4,2,4,0,-1.7000000000000002,0.96,0.064,0.64,0,0,0,0,6,-5,0,0,0,0,0.34600000000000003,78.29,111.89,0.93,0.65,784,0.8,239,1.9000000000000001
+2023,4,2,4,30,-1.8,0.96,0.064,0.64,0,0,0,0,6,-5,0,0,0,0,0.34700000000000003,78.87,106.71000000000001,0.93,0.65,784,0.8,242,1.6
+2023,4,2,5,0,-1.8,1.03,0.064,0.64,0,0,0,0,6,-4.5,0,0,0,0,0.34900000000000003,81.86,101.32000000000001,0.93,0.65,784,0.8,244,1.4000000000000001
+2023,4,2,5,30,-1.3,1.03,0.064,0.64,0,0,0,0,6,-4.5,0,0,0,0,0.35000000000000003,78.91,95.79,0.9400000000000001,0.65,784,0.9,241,1.3
+2023,4,2,6,0,-0.8,1.11,0.068,0.64,10,76,10,4,7,-3.6,6,0,57,6,0.35000000000000003,81.5,89.75,0.9400000000000001,0.65,784,0.9,237,1.1
+2023,4,2,6,30,0.2,1.11,0.068,0.64,34,386,72,5,5,-3.6,38,67,71,45,0.35100000000000003,75.79,84.35000000000001,0.9400000000000001,0.65,784,0.9,237,1.5
+2023,4,2,7,0,1.2000000000000002,1.16,0.07,0.64,51,595,168,0,5,-3.2,87,306,18,147,0.35100000000000003,72.32000000000001,78.7,0.9400000000000001,0.65,785,0.9,237,1.8
+2023,4,2,7,30,2.3000000000000003,1.16,0.07,0.64,63,726,275,0,4,-3.2,158,250,0,231,0.352,66.85,73.05,0.9400000000000001,0.65,785,0.9,233,2.2
+2023,4,2,8,0,3.3000000000000003,1.17,0.061,0.64,72,814,384,0,0,-2.4000000000000004,80,792,0,384,0.353,66.02,67.45,0.9400000000000001,0.65,785,0.9,229,2.6
+2023,4,2,8,30,4.5,1.17,0.061,0.64,80,871,489,0,0,-2.4000000000000004,159,613,11,447,0.353,60.69,61.980000000000004,0.93,0.65,785,0.9,230,3.5
+2023,4,2,9,0,5.7,1.17,0.057,0.64,87,913,588,0,4,-1.4000000000000001,289,68,7,326,0.354,60.160000000000004,56.69,0.93,0.65,784,0.9,231,4.3
+2023,4,2,9,30,6.7,1.17,0.057,0.64,91,944,676,0,4,-1.4000000000000001,193,0,0,193,0.353,56.160000000000004,51.68,0.93,0.65,784,0.9,233,5.2
+2023,4,2,10,0,7.800000000000001,1.16,0.053,0.64,95,968,754,0,4,-1,229,122,4,312,0.352,53.620000000000005,47.06,0.93,0.65,784,0.9,235,6.2
+2023,4,2,10,30,8.4,1.16,0.053,0.64,98,983,818,2,4,-1,343,75,39,398,0.35100000000000003,51.49,42.95,0.93,0.65,784,0.9,236,7
+2023,4,2,11,0,9.1,1.12,0.053,0.64,102,994,868,2,4,-1.3,493,61,25,540,0.34900000000000003,48.07,39.56,0.93,0.65,783,0.9,238,7.7
+2023,4,2,11,30,9.600000000000001,1.12,0.053,0.64,103,1002,902,2,4,-1.3,518,119,21,613,0.34900000000000003,46.480000000000004,37.08,0.92,0.65,783,0.9,239,8.1
+2023,4,2,12,0,10.100000000000001,1.1400000000000001,0.05,0.64,103,1008,921,0,4,-1.7000000000000002,464,234,14,654,0.34800000000000003,43.61,35.71,0.92,0.65,782,0.9,240,8.5
+2023,4,2,12,30,10.4,1.1400000000000001,0.05,0.64,102,1009,923,0,5,-1.7000000000000002,387,536,7,823,0.34800000000000003,42.75,35.59,0.92,0.65,782,0.9,241,8.6
+2023,4,2,13,0,10.700000000000001,1.17,0.05,0.64,101,1007,908,0,0,-2.2,294,684,0,842,0.34800000000000003,40.58,36.72,0.92,0.65,782,0.9,241,8.700000000000001
+2023,4,2,13,30,10.700000000000001,1.17,0.05,0.64,100,1001,878,0,0,-2.2,241,736,0,813,0.34800000000000003,40.58,39,0.93,0.65,782,0.9,242,8.6
+2023,4,2,14,0,10.700000000000001,1.1500000000000001,0.052000000000000005,0.64,98,990,831,0,0,-2.6,167,860,0,804,0.34800000000000003,39.32,42.230000000000004,0.93,0.65,781,0.9,242,8.5
+2023,4,2,14,30,10.600000000000001,1.1500000000000001,0.052000000000000005,0.64,96,974,770,0,0,-2.6,226,697,7,708,0.34800000000000003,39.58,46.2,0.93,0.65,781,0.9,243,8.200000000000001
+2023,4,2,15,0,10.600000000000001,1.1300000000000001,0.055,0.64,92,952,694,0,0,-2.9000000000000004,175,739,21,643,0.34800000000000003,38.71,50.74,0.93,0.65,781,0.9,245,7.800000000000001
+2023,4,2,15,30,10.3,1.1300000000000001,0.055,0.64,87,922,607,0,4,-2.9000000000000004,308,129,7,381,0.34800000000000003,39.49,55.68,0.93,0.65,781,0.9,247,7.300000000000001
+2023,4,2,16,0,10,1.1,0.06,0.64,81,882,510,0,5,-3,252,354,21,424,0.34700000000000003,40.03,60.910000000000004,0.93,0.65,780,0.9,249,6.7
+2023,4,2,16,30,9.200000000000001,1.1,0.06,0.64,75,824,406,0,5,-3,191,329,18,323,0.34700000000000003,42.230000000000004,66.35,0.93,0.65,780,0.9,252,5.300000000000001
+2023,4,2,17,0,8.4,1.07,0.069,0.64,67,741,297,0,4,-2,176,81,4,201,0.34700000000000003,48.050000000000004,71.92,0.9400000000000001,0.65,780,0.9,254,4
+2023,4,2,17,30,6.5,1.07,0.069,0.64,55,620,189,1,5,-2,82,165,29,118,0.34700000000000003,54.69,77.56,0.9400000000000001,0.65,780,0.9,259,2.8000000000000003
+2023,4,2,18,0,4.5,1.05,0.076,0.64,39,421,89,7,8,-1,39,7,96,40,0.34700000000000003,67.72,83.21000000000001,0.9400000000000001,0.65,780,0.9,264,1.6
+2023,4,2,18,30,4,1.05,0.076,0.64,14,116,17,5,7,-1,9,0,71,9,0.34700000000000003,70.13,88.71000000000001,0.9400000000000001,0.65,780,0.9,269,1.5
+2023,4,2,19,0,3.5,1.04,0.084,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.34700000000000003,69.28,94.63,0.9400000000000001,0.65,780,0.9,275,1.3
+2023,4,2,19,30,3.7,1.04,0.084,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.34700000000000003,68.22,100.16,0.9400000000000001,0.65,779,0.9,281,0.9
+2023,4,2,20,0,3.9000000000000004,1.04,0.093,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.34700000000000003,64.59,105.56,0.9400000000000001,0.65,779,0.9,288,0.6000000000000001
+2023,4,2,20,30,3.4000000000000004,1.04,0.093,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.34700000000000003,66.9,110.76,0.9400000000000001,0.65,779,0.9,203,0.6000000000000001
+2023,4,2,21,0,2.9000000000000004,1.06,0.089,0.64,0,0,0,0,7,-2.2,0,0,0,0,0.34700000000000003,69.23,115.7,0.9400000000000001,0.65,779,0.9,118,0.6000000000000001
+2023,4,2,21,30,2.2,1.06,0.089,0.64,0,0,0,0,7,-2.2,0,0,29,0,0.34700000000000003,72.66,120.29,0.93,0.65,778,0.9,136,0.8
+2023,4,2,22,0,1.6,1.06,0.075,0.64,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.34600000000000003,75,124.43,0.93,0.65,778,0.9,153,1.1
+2023,4,2,22,30,1.2000000000000002,1.06,0.075,0.64,0,0,0,0,8,-2.4000000000000004,0,0,14,0,0.34600000000000003,77.18,128.01,0.93,0.65,778,0.8,172,1.2000000000000002
+2023,4,2,23,0,0.7000000000000001,1.03,0.066,0.64,0,0,0,0,7,-2.7,0,0,0,0,0.34600000000000003,77.93,130.9,0.92,0.65,777,0.8,191,1.4000000000000001
+2023,4,2,23,30,0.1,1.03,0.066,0.64,0,0,0,0,0,-2.7,0,0,0,0,0.34500000000000003,81.38,132.95,0.92,0.65,777,0.8,197,1.6
+2023,4,3,0,0,-0.6000000000000001,0.97,0.064,0.64,0,0,0,0,0,-3,0,0,0,0,0.34500000000000003,83.62,134.05,0.92,0.65,777,0.8,202,1.7000000000000002
+2023,4,3,0,30,-1.1,0.97,0.064,0.64,0,0,0,0,0,-3,0,0,0,0,0.34500000000000003,86.73,134.13,0.92,0.65,777,0.8,203,2
+2023,4,3,1,0,-1.6,0.9500000000000001,0.069,0.64,0,0,0,0,0,-3.2,0,0,0,0,0.34400000000000003,88.55,133.18,0.92,0.65,777,0.8,204,2.2
+2023,4,3,1,30,-1.7000000000000002,0.9500000000000001,0.069,0.64,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.34400000000000003,89.09,131.28,0.92,0.65,776,0.8,204,2.6
+2023,4,3,2,0,-1.8,0.9400000000000001,0.07100000000000001,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.34400000000000003,88.33,128.52,0.92,0.65,776,0.8,203,2.9000000000000004
+2023,4,3,2,30,-2.1,0.9400000000000001,0.07100000000000001,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.34400000000000003,90.3,125.04,0.93,0.65,776,0.8,200,2.9000000000000004
+2023,4,3,3,0,-2.3000000000000003,0.9500000000000001,0.074,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.34500000000000003,90.83,120.97,0.93,0.65,776,0.8,197,2.9000000000000004
+2023,4,3,3,30,-2.4000000000000004,0.9500000000000001,0.074,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.34500000000000003,91.38,116.44,0.93,0.65,775,0.8,196,2.9000000000000004
+2023,4,3,4,0,-2.5,0.9500000000000001,0.077,0.64,0,0,0,0,5,-3.6,0,0,0,0,0.34500000000000003,92.14,111.55,0.93,0.65,775,0.8,194,2.8000000000000003
+2023,4,3,4,30,-2.5,0.9500000000000001,0.077,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.34600000000000003,92.14,106.39,0.93,0.65,775,0.8,194,2.8000000000000003
+2023,4,3,5,0,-2.6,0.96,0.077,0.64,0,0,0,0,5,-3.6,0,0,0,0,0.34600000000000003,92.8,101.01,0.9400000000000001,0.65,775,0.8,193,2.9000000000000004
+2023,4,3,5,30,-2.4000000000000004,0.96,0.077,0.64,0,0,0,0,4,-3.6,0,0,0,0,0.34600000000000003,91.44,95.48,0.9400000000000001,0.65,775,0.8,195,3.1
+2023,4,3,6,0,-2.2,0.99,0.076,0.64,10,76,11,4,5,-3.5,4,0,57,4,0.34500000000000003,90.5,89.48,0.9400000000000001,0.65,775,0.8,197,3.3000000000000003
+2023,4,3,6,30,-1.1,0.99,0.076,0.64,36,384,76,6,5,-3.5,28,1,86,28,0.34600000000000003,83.48,84.05,0.9400000000000001,0.65,775,0.8,199,3.8000000000000003
+2023,4,3,7,0,0,1.02,0.075,0.64,55,594,174,0,5,-3.3000000000000003,87,10,0,89,0.34600000000000003,78.26,78.4,0.9400000000000001,0.65,775,0.8,202,4.3
+2023,4,3,7,30,1.4000000000000001,1.02,0.075,0.64,68,718,281,2,5,-3.3000000000000003,142,19,21,148,0.34600000000000003,70.66,72.74,0.9400000000000001,0.65,774,0.8,204,5
+2023,4,3,8,0,2.9000000000000004,1.07,0.078,0.64,80,798,390,0,5,-3.3000000000000003,192,11,0,196,0.34700000000000003,63.82,67.14,0.9500000000000001,0.65,774,0.8,206,5.800000000000001
+2023,4,3,8,30,4.1000000000000005,1.07,0.078,0.64,90,856,496,0,5,-3.3000000000000003,233,10,0,238,0.34700000000000003,58.65,61.660000000000004,0.9500000000000001,0.65,774,0.8,206,6.2
+2023,4,3,9,0,5.4,1.11,0.077,0.64,97,898,594,2,5,-2.8000000000000003,239,42,36,262,0.34700000000000003,55.52,56.370000000000005,0.9500000000000001,0.65,774,0.8,207,6.7
+2023,4,3,9,30,6.4,1.11,0.077,0.64,103,930,684,0,5,-2.8000000000000003,385,31,0,404,0.34700000000000003,51.75,51.34,0.9500000000000001,0.65,773,0.8,208,7.2
+2023,4,3,10,0,7.300000000000001,1.11,0.07200000000000001,0.64,107,955,762,0,5,-2.5,437,43,4,466,0.34700000000000003,49.96,46.7,0.9500000000000001,0.65,773,0.8,209,7.7
+2023,4,3,10,30,7.9,1.11,0.07200000000000001,0.64,118,960,825,0,5,-2.5,484,172,0,611,0.34700000000000003,47.9,42.59,0.9500000000000001,0.65,772,0.8,209,8.200000000000001
+2023,4,3,11,0,8.5,0.9,0.096,0.64,129,958,872,0,5,-2.5,490,247,0,681,0.34700000000000003,45.88,39.18,0.9400000000000001,0.65,772,0.8,210,8.700000000000001
+2023,4,3,11,30,9,0.9,0.096,0.64,130,969,907,0,8,-2.5,450,297,0,688,0.34800000000000003,44.300000000000004,36.69,0.9400000000000001,0.65,771,0.8,209,9.1
+2023,4,3,12,0,9.5,0.91,0.088,0.64,130,976,926,0,7,-2.7,452,399,0,778,0.34800000000000003,42.42,35.32,0.9400000000000001,0.65,771,0.8,209,9.5
+2023,4,3,12,30,9.700000000000001,0.91,0.088,0.64,124,984,928,0,7,-2.7,490,376,0,797,0.34900000000000003,41.800000000000004,35.21,0.9400000000000001,0.65,770,0.8,208,9.8
+2023,4,3,13,0,10,0.91,0.07100000000000001,0.64,117,990,914,0,7,-2.7,503,318,0,759,0.34900000000000003,40.95,36.36,0.9400000000000001,0.65,769,0.8,207,10.100000000000001
+2023,4,3,13,30,10.100000000000001,0.91,0.07100000000000001,0.64,109,991,883,0,7,-2.7,505,245,0,696,0.35000000000000003,40.68,38.67,0.93,0.65,769,0.8,207,10.700000000000001
+2023,4,3,14,0,10.3,1,0.054,0.64,101,992,839,0,7,-3.1,484,193,0,628,0.35100000000000003,38.95,41.93,0.93,0.65,768,0.8,207,11.200000000000001
+2023,4,3,14,30,10.200000000000001,1,0.054,0.64,95,982,778,0,7,-3.1,457,189,0,588,0.352,39.21,45.93,0.93,0.65,768,0.8,207,11.4
+2023,4,3,15,0,10.200000000000001,1.11,0.047,0.64,87,968,703,0,7,-3.6,415,141,0,505,0.353,37.81,50.49,0.93,0.65,768,0.8,208,11.700000000000001
+2023,4,3,15,30,9.700000000000001,1.11,0.047,0.64,83,939,616,0,7,-3.6,356,147,0,439,0.355,39.1,55.45,0.93,0.65,768,0.8,210,11.3
+2023,4,3,16,0,9.3,1.11,0.051000000000000004,0.64,78,902,519,0,7,-3.7,300,76,0,337,0.357,39.71,60.7,0.93,0.65,768,0.8,212,11
+2023,4,3,16,30,8.4,1.11,0.051000000000000004,0.64,71,851,415,0,7,-3.7,229,86,0,264,0.359,42.19,66.15,0.93,0.65,768,0.7000000000000001,215,9.9
+2023,4,3,17,0,7.5,1.08,0.054,0.64,62,777,306,0,7,-3.7,145,165,0,197,0.361,44.910000000000004,71.72,0.93,0.71,768,0.7000000000000001,219,8.8
+2023,4,3,17,30,5.9,1.08,0.054,0.64,52,662,197,0,7,-3.7,95,195,0,138,0.365,50.120000000000005,77.37,0.9400000000000001,0.71,768,0.7000000000000001,224,7.2
+2023,4,3,18,0,4.3,1.05,0.061,0.64,38,471,95,5,7,-3.2,47,2,71,47,0.368,58.06,83.02,0.9400000000000001,0.71,768,0.7000000000000001,229,5.7
+2023,4,3,18,30,3,1.05,0.061,0.64,15,144,19,5,7,-3.2,10,0,71,10,0.372,63.620000000000005,88.53,0.9400000000000001,0.71,768,0.7000000000000001,231,4.6000000000000005
+2023,4,3,19,0,1.7000000000000002,1.03,0.067,0.64,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.376,71.35000000000001,94.43,0.9400000000000001,0.71,768,0.7000000000000001,233,3.5
+2023,4,3,19,30,0.8,1.03,0.067,0.64,0,0,0,0,6,-2.9000000000000004,0,0,0,0,0.38,76.11,99.96000000000001,0.9400000000000001,0.71,768,0.7000000000000001,230,2.7
+2023,4,3,20,0,-0.2,0.98,0.075,0.64,0,0,0,0,6,-3,0,0,0,0,0.384,81.42,105.35000000000001,0.9400000000000001,0.71,768,0.7000000000000001,227,2
+2023,4,3,20,30,-0.9,0.98,0.075,0.64,0,0,0,0,6,-3,0,0,0,0,0.388,85.67,110.53,0.9400000000000001,0.71,768,0.6000000000000001,218,1.7000000000000002
+2023,4,3,21,0,-1.7000000000000002,0.9,0.08700000000000001,0.64,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.392,88.74,115.45,0.9400000000000001,0.71,768,0.6000000000000001,209,1.4000000000000001
+2023,4,3,21,30,-2.2,0.9,0.08700000000000001,0.64,0,0,0,0,7,-3.3000000000000003,0,0,43,0,0.395,92.07000000000001,120.02,0.9400000000000001,0.71,768,0.6000000000000001,197,1.4000000000000001
+2023,4,3,22,0,-2.8000000000000003,0.87,0.091,0.64,0,0,0,0,7,-3.6,0,0,14,0,0.399,93.87,124.15,0.9400000000000001,0.71,768,0.6000000000000001,186,1.3
+2023,4,3,22,30,-3.4000000000000004,0.87,0.091,0.64,0,0,0,0,7,-3.6,0,0,14,0,0.402,98.16,127.7,0.9400000000000001,0.71,768,0.6000000000000001,182,1.4000000000000001
+2023,4,3,23,0,-4.1000000000000005,0.91,0.084,0.64,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.405,99.97,130.56,0.9400000000000001,0.71,768,0.5,178,1.5
+2023,4,3,23,30,-4.4,0.91,0.084,0.64,0,0,0,0,6,-4.4,0,0,0,0,0.406,100,132.59,0.9500000000000001,0.71,768,0.5,188,1.7000000000000002
+2023,4,4,0,0,-4.7,1,0.083,0.64,0,0,0,0,6,-4.800000000000001,0,0,0,0,0.40700000000000003,99.38,133.67000000000002,0.9500000000000001,0.71,768,0.5,199,1.9000000000000001
+2023,4,4,0,30,-4.9,1,0.083,0.64,0,0,0,0,9,-4.9,0,0,0,0,0.40700000000000003,100,133.74,0.96,0.71,768,0.5,206,2.2
+2023,4,4,1,0,-5.1000000000000005,1.09,0.08700000000000001,0.64,0,0,0,0,6,-5.7,0,0,0,0,0.406,95.5,132.8,0.96,0.71,767,0.5,214,2.6
+2023,4,4,1,30,-5.1000000000000005,1.09,0.08700000000000001,0.64,0,0,0,0,6,-5.7,0,0,0,0,0.405,95.62,130.89000000000001,0.96,0.71,768,0.5,218,3.3000000000000003
+2023,4,4,2,0,-5.2,1.16,0.10400000000000001,0.64,0,0,0,0,6,-6.800000000000001,0,0,0,0,0.403,88.29,128.14000000000001,0.97,0.71,768,0.5,223,4
+2023,4,4,2,30,-5.4,1.16,0.10400000000000001,0.64,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.402,89.63,124.67,0.97,0.71,768,0.5,230,4.3
+2023,4,4,3,0,-5.6000000000000005,1.2,0.117,0.64,0,0,0,0,5,-8.1,0,0,0,0,0.402,82.61,120.62,0.97,0.71,768,0.5,237,4.6000000000000005
+2023,4,4,3,30,-5.7,1.2,0.117,0.64,0,0,0,0,4,-8.1,0,0,0,0,0.401,83.24,116.10000000000001,0.97,0.71,768,0.5,241,4.7
+2023,4,4,4,0,-5.9,1.22,0.113,0.64,0,0,0,0,8,-9.3,0,0,0,0,0.401,76.75,111.22,0.97,0.71,768,0.4,246,4.800000000000001
+2023,4,4,4,30,-6,1.22,0.113,0.64,0,0,0,0,7,-9.3,0,0,0,0,0.401,77.44,106.06,0.97,0.71,769,0.4,249,4.800000000000001
+2023,4,4,5,0,-6.1000000000000005,1.23,0.097,0.64,0,0,0,0,7,-10.5,0,0,0,0,0.4,71.21000000000001,100.69,0.97,0.71,769,0.4,252,4.9
+2023,4,4,5,30,-6.1000000000000005,1.23,0.097,0.64,0,0,0,0,7,-10.5,0,0,0,0,0.4,71.21000000000001,95.17,0.96,0.71,769,0.4,254,4.9
+2023,4,4,6,0,-6.1000000000000005,1.23,0.08,0.64,12,97,13,4,7,-11.3,5,0,57,5,0.399,66.63,89.21000000000001,0.96,0.71,769,0.4,256,5
+2023,4,4,6,30,-5.5,1.23,0.08,0.64,38,442,86,5,7,-11.3,43,3,71,43,0.399,63.74,83.75,0.96,0.71,770,0.4,260,5.4
+2023,4,4,7,0,-5,1.21,0.068,0.64,55,656,190,0,7,-12.200000000000001,128,36,0,135,0.398,56.97,78.10000000000001,0.96,0.71,770,0.30000000000000004,263,5.7
+2023,4,4,7,30,-4.3,1.21,0.068,0.64,67,779,302,0,7,-12.200000000000001,200,111,0,233,0.398,54.04,72.44,0.96,0.71,770,0.30000000000000004,264,6
+2023,4,4,8,0,-3.7,1.17,0.064,0.64,78,860,416,0,7,-12.9,262,103,0,303,0.397,49,66.83,0.9500000000000001,0.71,770,0.30000000000000004,265,6.300000000000001
+2023,4,4,8,30,-3.2,1.17,0.064,0.64,88,910,524,0,7,-12.9,329,161,0,406,0.397,47.27,61.35,0.96,0.71,771,0.30000000000000004,265,6.4
+2023,4,4,9,0,-2.7,1.1500000000000001,0.069,0.64,96,945,624,0,7,-13.100000000000001,355,301,0,523,0.397,44.56,56.04,0.96,0.71,771,0.30000000000000004,265,6.6000000000000005
+2023,4,4,9,30,-2.3000000000000003,1.1500000000000001,0.069,0.64,106,966,714,0,7,-13.100000000000001,417,125,0,496,0.397,43.26,51.01,0.96,0.71,771,0.30000000000000004,266,6.7
+2023,4,4,10,0,-1.8,1.1300000000000001,0.081,0.64,116,979,792,0,7,-12.9,497,173,0,616,0.397,42.59,46.35,0.96,0.71,772,0.30000000000000004,267,6.7
+2023,4,4,10,30,-1.6,1.1300000000000001,0.081,0.64,125,987,856,0,7,-12.9,515,236,0,690,0.396,41.97,42.22,0.97,0.71,772,0.4,270,6.800000000000001
+2023,4,4,11,0,-1.4000000000000001,1.1300000000000001,0.097,0.64,135,989,906,0,7,-12.5,516,361,0,797,0.396,42.660000000000004,38.800000000000004,0.97,0.71,772,0.4,272,6.9
+2023,4,4,11,30,-1.6,1.1300000000000001,0.097,0.64,143,987,938,0,7,-12.5,450,517,0,867,0.395,43.34,36.300000000000004,0.97,0.71,773,0.4,277,6.9
+2023,4,4,12,0,-1.7000000000000002,1.1300000000000001,0.11900000000000001,0.64,151,978,953,0,7,-12.3,427,563,0,889,0.394,44.36,34.93,0.97,0.71,773,0.4,281,7
+2023,4,4,12,30,-2,1.1300000000000001,0.11900000000000001,0.64,157,970,953,0,7,-12.3,389,593,0,876,0.393,45.410000000000004,34.83,0.97,0.71,774,0.4,286,6.9
+2023,4,4,13,0,-2.2,1.1500000000000001,0.139,0.64,163,956,936,0,7,-12.200000000000001,407,572,0,870,0.392,46.12,36.01,0.97,0.71,774,0.4,292,6.9
+2023,4,4,13,30,-2.5,1.1500000000000001,0.139,0.64,163,943,903,0,7,-12.200000000000001,432,514,0,835,0.392,47.22,38.34,0.97,0.71,775,0.4,298,6.9
+2023,4,4,14,0,-2.8000000000000003,1.17,0.153,0.64,163,923,853,0,7,-12.3,482,376,0,763,0.391,48.18,41.63,0.98,0.71,775,0.4,304,6.9
+2023,4,4,14,30,-3,1.17,0.153,0.64,159,901,789,0,7,-12.200000000000001,511,218,0,663,0.391,48.97,45.660000000000004,0.98,0.71,776,0.4,311,6.9
+2023,4,4,15,0,-3.3000000000000003,1.18,0.163,0.64,154,871,711,0,7,-12.100000000000001,457,188,0,577,0.391,50.54,50.24,0.98,0.71,776,0.4,318,6.9
+2023,4,4,15,30,-3.6,1.18,0.163,0.64,144,834,620,0,7,-12.100000000000001,393,101,0,451,0.391,51.75,55.22,0.98,0.71,777,0.4,325,6.9
+2023,4,4,16,0,-3.9000000000000004,1.17,0.168,0.64,133,785,520,0,7,-12,345,79,0,384,0.392,53.34,60.49,0.98,0.71,777,0.4,332,6.9
+2023,4,4,16,30,-4.2,1.17,0.168,0.64,118,727,414,0,7,-12,265,46,0,284,0.393,54.63,65.94,0.98,0.71,778,0.4,337,6.800000000000001
+2023,4,4,17,0,-4.6000000000000005,1.16,0.157,0.64,100,648,305,0,7,-12.100000000000001,176,21,0,183,0.393,55.63,71.53,0.97,0.77,779,0.4,343,6.800000000000001
+2023,4,4,17,30,-5,1.16,0.157,0.64,76,544,197,0,6,-12.100000000000001,85,13,0,88,0.394,57.34,77.17,0.97,0.77,779,0.4,347,6.4
+2023,4,4,18,0,-5.4,1.1500000000000001,0.126,0.64,49,382,97,5,6,-12.600000000000001,38,1,71,38,0.395,56.89,82.83,0.97,0.77,780,0.4,351,5.9
+2023,4,4,18,30,-5.6000000000000005,1.1500000000000001,0.126,0.64,17,101,20,5,6,-12.600000000000001,9,0,71,9,0.396,57.84,88.34,0.96,0.77,781,0.30000000000000004,355,5.4
+2023,4,4,19,0,-5.9,1.17,0.092,0.64,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.398,56.72,94.23,0.96,0.77,781,0.30000000000000004,358,4.9
+2023,4,4,19,30,-6.1000000000000005,1.17,0.092,0.64,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.398,57.660000000000004,99.75,0.96,0.77,782,0.30000000000000004,182,4.3
+2023,4,4,20,0,-6.300000000000001,1.17,0.07200000000000001,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.399,57.65,105.13,0.9500000000000001,0.77,782,0.30000000000000004,5,3.7
+2023,4,4,20,30,-6.4,1.17,0.07200000000000001,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.399,58.160000000000004,110.3,0.9500000000000001,0.77,783,0.30000000000000004,8,3.1
+2023,4,4,21,0,-6.5,1.18,0.062,0.64,0,0,0,0,7,-13.3,0,0,0,0,0.4,58.57,115.21000000000001,0.9500000000000001,0.77,783,0.30000000000000004,11,2.6
+2023,4,4,21,30,-6.6000000000000005,1.18,0.062,0.64,0,0,0,0,7,-13.3,0,0,43,0,0.4,59.02,119.76,0.9500000000000001,0.77,783,0.30000000000000004,13,2.1
+2023,4,4,22,0,-6.7,1.18,0.058,0.64,0,0,0,0,7,-12.8,0,0,29,0,0.401,61.93,123.86,0.9500000000000001,0.77,783,0.30000000000000004,15,1.5
+2023,4,4,22,30,-6.7,1.18,0.058,0.64,0,0,0,0,7,-12.8,0,0,29,0,0.402,62.01,127.39,0.9500000000000001,0.77,784,0.30000000000000004,19,1.1
+2023,4,4,23,0,-6.6000000000000005,1.18,0.059000000000000004,0.64,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.403,64.21000000000001,130.22,0.9500000000000001,0.77,784,0.30000000000000004,23,0.7000000000000001
+2023,4,4,23,30,-6.5,1.18,0.059000000000000004,0.64,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.403,63.72,132.23,0.96,0.77,784,0.30000000000000004,82,0.5
+2023,4,5,0,0,-6.4,1.18,0.061,0.64,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.404,58.4,133.3,0.96,0.77,784,0.30000000000000004,141,0.2
+2023,4,5,0,30,-6.300000000000001,1.18,0.061,0.64,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.404,58.03,133.36,0.96,0.77,785,0.30000000000000004,169,0.6000000000000001
+2023,4,5,1,0,-6.2,1.17,0.063,0.64,0,0,0,0,7,-13.9,0,0,0,0,0.405,54.300000000000004,132.41,0.96,0.77,785,0.30000000000000004,197,1.1
+2023,4,5,1,30,-6.300000000000001,1.17,0.063,0.64,0,0,0,0,7,-13.9,0,0,0,0,0.405,54.72,130.51,0.96,0.77,785,0.30000000000000004,197,1.4000000000000001
+2023,4,5,2,0,-6.4,1.17,0.062,0.64,0,0,0,0,7,-13.8,0,0,0,0,0.406,55.52,127.76,0.96,0.77,785,0.30000000000000004,196,1.7000000000000002
+2023,4,5,2,30,-6.5,1.17,0.062,0.64,0,0,0,0,7,-13.8,0,0,0,0,0.40700000000000003,55.95,124.31,0.96,0.77,785,0.30000000000000004,196,1.9000000000000001
+2023,4,5,3,0,-6.6000000000000005,1.17,0.063,0.64,0,0,0,0,7,-13.600000000000001,0,0,0,0,0.40800000000000003,57.69,120.27,0.96,0.77,785,0.30000000000000004,196,2.1
+2023,4,5,3,30,-6.7,1.17,0.063,0.64,0,0,0,0,7,-13.600000000000001,0,0,0,0,0.41000000000000003,58.13,115.76,0.96,0.77,785,0.30000000000000004,198,2.2
+2023,4,5,4,0,-6.800000000000001,1.18,0.064,0.64,0,0,0,0,7,-13.4,0,0,0,0,0.41200000000000003,59.53,110.89,0.96,0.77,785,0.30000000000000004,200,2.3000000000000003
+2023,4,5,4,30,-6.800000000000001,1.18,0.064,0.64,0,0,0,0,7,-13.4,0,0,0,0,0.41600000000000004,59.61,105.74000000000001,0.96,0.77,786,0.30000000000000004,205,2.3000000000000003
+2023,4,5,5,0,-6.800000000000001,1.18,0.067,0.64,0,0,0,0,8,-13.100000000000001,0,0,0,0,0.419,60.72,100.38,0.96,0.77,786,0.30000000000000004,209,2.3000000000000003
+2023,4,5,5,30,-6.5,1.18,0.067,0.64,0,0,0,0,8,-13.100000000000001,0,0,0,0,0.423,59.34,94.87,0.96,0.77,786,0.30000000000000004,213,2.4000000000000004
+2023,4,5,6,0,-6.2,1.19,0.068,0.64,14,137,17,5,7,-13.200000000000001,8,0,71,8,0.426,57.84,88.93,0.96,0.77,786,0.30000000000000004,217,2.5
+2023,4,5,6,30,-5.5,1.19,0.068,0.64,39,477,93,5,7,-13.200000000000001,55,10,71,56,0.43,54.84,83.45,0.96,0.77,786,0.30000000000000004,228,2.7
+2023,4,5,7,0,-4.800000000000001,1.21,0.063,0.64,54,673,196,0,7,-12.5,130,36,0,138,0.433,55.03,77.8,0.96,0.77,786,0.30000000000000004,239,2.8000000000000003
+2023,4,5,7,30,-4.4,1.21,0.063,0.64,66,792,309,0,7,-12.4,184,92,0,212,0.434,53.46,72.13,0.96,0.77,787,0.30000000000000004,253,2.9000000000000004
+2023,4,5,8,0,-3.9000000000000004,1.22,0.056,0.64,75,872,422,0,7,-12,253,61,0,277,0.436,53.27,66.53,0.96,0.77,787,0.30000000000000004,266,2.9000000000000004
+2023,4,5,8,30,-3.7,1.22,0.056,0.64,83,925,531,0,7,-12,334,188,0,425,0.437,52.480000000000004,61.03,0.9500000000000001,0.77,787,0.30000000000000004,275,2.9000000000000004
+2023,4,5,9,0,-3.4000000000000004,1.21,0.052000000000000005,0.64,89,964,632,0,7,-12.200000000000001,362,317,0,541,0.438,50.46,55.72,0.9500000000000001,0.77,787,0.30000000000000004,284,3
+2023,4,5,9,30,-3,1.21,0.052000000000000005,0.64,95,992,724,0,7,-12.200000000000001,423,305,0,616,0.439,49.04,50.67,0.9500000000000001,0.77,788,0.30000000000000004,288,2.9000000000000004
+2023,4,5,10,0,-2.7,1.21,0.048,0.64,99,1014,803,0,7,-12.5,475,231,0,635,0.439,46.93,46,0.9500000000000001,0.77,788,0.30000000000000004,293,2.9000000000000004
+2023,4,5,10,30,-2.4000000000000004,1.21,0.048,0.64,102,1030,869,0,7,-12.5,437,135,0,538,0.439,45.9,41.86,0.9500000000000001,0.77,788,0.30000000000000004,295,2.8000000000000003
+2023,4,5,11,0,-2.1,1.2,0.045,0.64,104,1042,920,0,7,-12.700000000000001,492,167,0,623,0.439,44.27,38.42,0.9500000000000001,0.77,788,0.30000000000000004,297,2.8000000000000003
+2023,4,5,11,30,-1.9000000000000001,1.2,0.045,0.64,104,1049,954,0,7,-12.700000000000001,488,253,0,693,0.438,43.62,35.92,0.9500000000000001,0.77,788,0.30000000000000004,299,2.8000000000000003
+2023,4,5,12,0,-1.7000000000000002,1.19,0.043000000000000003,0.64,106,1053,973,0,7,-12.700000000000001,587,241,0,785,0.438,42.69,34.550000000000004,0.9400000000000001,0.77,788,0.30000000000000004,300,2.8000000000000003
+2023,4,5,12,30,-1.7000000000000002,1.19,0.043000000000000003,0.64,105,1054,974,0,7,-12.700000000000001,595,252,0,803,0.438,42.69,34.46,0.9500000000000001,0.77,788,0.30000000000000004,301,2.7
+2023,4,5,13,0,-1.6,1.18,0.042,0.64,105,1048,956,0,7,-12.700000000000001,573,249,0,775,0.437,42.58,35.660000000000004,0.9500000000000001,0.77,789,0.30000000000000004,303,2.7
+2023,4,5,13,30,-1.7000000000000002,1.18,0.042,0.64,102,1040,921,0,7,-12.700000000000001,512,343,0,782,0.437,42.9,38.02,0.9500000000000001,0.77,789,0.4,304,2.6
+2023,4,5,14,0,-1.8,1.17,0.041,0.64,98,1032,873,0,7,-12.5,496,163,0,618,0.436,43.800000000000004,41.34,0.9500000000000001,0.77,789,0.4,306,2.5
+2023,4,5,14,30,-2,1.17,0.041,0.64,94,1017,808,0,7,-12.5,381,479,0,717,0.436,44.45,45.4,0.9400000000000001,0.77,789,0.4,310,2.4000000000000004
+2023,4,5,15,0,-2.2,1.17,0.04,0.64,88,998,730,0,7,-12.3,340,492,0,656,0.435,45.88,50,0.9400000000000001,0.77,789,0.4,315,2.2
+2023,4,5,15,30,-2.5,1.17,0.04,0.64,83,971,640,0,7,-12.3,337,198,0,451,0.433,46.910000000000004,55,0.9400000000000001,0.77,789,0.4,322,2.1
+2023,4,5,16,0,-2.7,1.17,0.04,0.64,76,938,541,0,6,-12.100000000000001,249,61,0,279,0.432,48.410000000000004,60.28,0.9400000000000001,0.77,790,0.4,330,2
+2023,4,5,16,30,-3.1,1.17,0.04,0.64,68,892,435,0,7,-12.100000000000001,211,281,7,326,0.429,49.870000000000005,65.74,0.9400000000000001,0.77,790,0.4,339,1.9000000000000001
+2023,4,5,17,0,-3.5,1.17,0.041,0.64,59,824,323,0,9,-11.8,84,1,0,84,0.427,52.82,71.33,0.9400000000000001,0.7000000000000001,790,0.4,348,1.8
+2023,4,5,17,30,-4,1.17,0.041,0.64,50,721,212,0,6,-11.700000000000001,60,18,0,64,0.425,54.9,76.98,0.9500000000000001,0.7000000000000001,791,0.4,178,1.6
+2023,4,5,18,0,-4.6000000000000005,1.1500000000000001,0.045,0.64,36,548,106,5,6,-11,36,1,71,36,0.423,60.910000000000004,82.64,0.9500000000000001,0.7000000000000001,791,0.4,8,1.3
+2023,4,5,18,30,-4.7,1.1500000000000001,0.045,0.64,17,195,23,6,6,-11,10,0,86,10,0.42,61.370000000000005,88.15,0.9500000000000001,0.7000000000000001,791,0.4,21,1.2000000000000002
+2023,4,5,19,0,-4.9,1.1300000000000001,0.048,0.64,0,0,0,0,7,-11,0,0,0,0,0.417,62.410000000000004,94.03,0.9500000000000001,0.7000000000000001,792,0.4,34,1.2000000000000002
+2023,4,5,19,30,-4.9,1.1300000000000001,0.048,0.64,0,0,0,0,7,-11,0,0,0,0,0.41400000000000003,62.410000000000004,99.55,0.9500000000000001,0.7000000000000001,792,0.4,46,1.1
+2023,4,5,20,0,-5,1.1,0.051000000000000004,0.64,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.41000000000000003,62.4,104.91,0.9500000000000001,0.7000000000000001,792,0.4,59,1
+2023,4,5,20,30,-5,1.1,0.051000000000000004,0.64,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.40700000000000003,62.4,110.07000000000001,0.9500000000000001,0.7000000000000001,792,0.4,76,0.8
+2023,4,5,21,0,-5,1.06,0.053,0.64,0,0,0,0,7,-10.8,0,0,0,0,0.404,63.57,114.96000000000001,0.9500000000000001,0.7000000000000001,793,0.4,94,0.7000000000000001
+2023,4,5,21,30,-5.1000000000000005,1.06,0.053,0.64,0,0,0,0,7,-10.8,0,0,43,0,0.402,64.06,119.49000000000001,0.9500000000000001,0.7000000000000001,793,0.4,121,0.6000000000000001
+2023,4,5,22,0,-5.1000000000000005,1.04,0.054,0.64,0,0,0,0,7,-10.600000000000001,0,0,43,0,0.399,65.5,123.57000000000001,0.9500000000000001,0.7000000000000001,793,0.4,148,0.6000000000000001
+2023,4,5,22,30,-5.2,1.04,0.054,0.64,0,0,0,0,0,-10.600000000000001,0,0,29,0,0.397,65.99,127.08,0.9400000000000001,0.7000000000000001,793,0.4,172,0.6000000000000001
+2023,4,5,23,0,-5.300000000000001,1.02,0.054,0.64,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.395,68.38,129.89000000000001,0.9400000000000001,0.7000000000000001,793,0.4,196,0.7000000000000001
+2023,4,5,23,30,-5.4,1.02,0.054,0.64,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.393,68.9,131.87,0.9400000000000001,0.7000000000000001,793,0.4,207,0.7000000000000001
+2023,4,6,0,0,-5.5,1.01,0.052000000000000005,0.64,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.391,70,132.92000000000002,0.9400000000000001,0.7000000000000001,793,0.4,219,0.8
+2023,4,6,0,30,-5.6000000000000005,1.01,0.052000000000000005,0.64,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.389,70.53,132.97,0.9400000000000001,0.7000000000000001,793,0.4,223,0.9
+2023,4,6,1,0,-5.7,0.99,0.049,0.64,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.387,71.18,132.02,0.9400000000000001,0.7000000000000001,793,0.4,227,0.9
+2023,4,6,1,30,-5.800000000000001,0.99,0.049,0.64,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.386,71.72,130.13,0.9400000000000001,0.7000000000000001,793,0.4,221,0.9
+2023,4,6,2,0,-6,0.98,0.047,0.64,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.385,74.81,127.39,0.93,0.7000000000000001,793,0.30000000000000004,215,0.8
+2023,4,6,2,30,-6.1000000000000005,0.98,0.047,0.64,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.383,75.38,123.94,0.93,0.7000000000000001,793,0.30000000000000004,212,0.9
+2023,4,6,3,0,-6.2,0.97,0.045,0.64,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.382,76.24,119.92,0.93,0.7000000000000001,793,0.30000000000000004,208,0.9
+2023,4,6,3,30,-6.300000000000001,0.97,0.045,0.64,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.382,76.82000000000001,115.42,0.93,0.7000000000000001,793,0.30000000000000004,203,0.9
+2023,4,6,4,0,-6.5,0.96,0.043000000000000003,0.64,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.382,78.87,110.56,0.93,0.7000000000000001,793,0.30000000000000004,197,0.9
+2023,4,6,4,30,-6.7,0.96,0.043000000000000003,0.64,0,0,0,0,4,-9.5,0,0,0,0,0.383,80.19,105.42,0.93,0.7000000000000001,794,0.30000000000000004,194,0.9
+2023,4,6,5,0,-7,0.96,0.042,0.64,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.383,81.64,100.07000000000001,0.93,0.7000000000000001,794,0.30000000000000004,190,0.9
+2023,4,6,5,30,-6.6000000000000005,0.96,0.042,0.64,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.383,79.17,94.56,0.92,0.7000000000000001,794,0.30000000000000004,188,1.3
+2023,4,6,6,0,-6.2,0.96,0.04,0.64,16,183,20,5,4,-9.9,9,10,68,9,0.383,75.12,88.65,0.92,0.7000000000000001,794,0.30000000000000004,185,1.6
+2023,4,6,6,30,-5,0.96,0.04,0.64,35,548,100,5,4,-9.9,50,25,71,53,0.383,68.57000000000001,83.16,0.92,0.7000000000000001,794,0.30000000000000004,188,2
+2023,4,6,7,0,-3.9000000000000004,0.9400000000000001,0.039,0.64,48,727,205,0,4,-10.4,104,129,0,132,0.383,60.43,77.5,0.92,0.7000000000000001,795,0.30000000000000004,192,2.4000000000000004
+2023,4,6,7,30,-2.9000000000000004,0.9400000000000001,0.039,0.64,59,832,318,0,4,-10.4,172,63,0,192,0.382,56.09,71.83,0.92,0.7000000000000001,795,0.30000000000000004,197,2.6
+2023,4,6,8,0,-1.9000000000000001,0.92,0.038,0.64,67,901,430,0,4,-11.600000000000001,238,149,0,298,0.381,47.33,66.22,0.91,0.7000000000000001,795,0.30000000000000004,203,2.7
+2023,4,6,8,30,-1.1,0.92,0.038,0.64,74,949,538,0,4,-11.600000000000001,333,74,0,369,0.379,44.63,60.72,0.91,0.7000000000000001,795,0.30000000000000004,206,2.9000000000000004
+2023,4,6,9,0,-0.30000000000000004,0.92,0.036000000000000004,0.64,79,984,638,0,4,-12,420,84,0,468,0.377,40.78,55.4,0.91,0.7000000000000001,795,0.30000000000000004,209,3
+2023,4,6,9,30,0.5,0.92,0.036000000000000004,0.64,84,1010,729,0,4,-12,466,124,0,545,0.375,38.49,50.34,0.91,0.7000000000000001,795,0.30000000000000004,210,3.2
+2023,4,6,10,0,1.2000000000000002,0.92,0.034,0.64,88,1030,808,0,0,-12.3,154,898,0,782,0.372,35.93,45.660000000000004,0.91,0.7000000000000001,795,0.30000000000000004,212,3.3000000000000003
+2023,4,6,10,30,1.9000000000000001,0.92,0.034,0.64,91,1044,873,0,0,-12.3,91,1044,0,873,0.37,34.17,41.5,0.91,0.7000000000000001,795,0.30000000000000004,213,3.4000000000000004
+2023,4,6,11,0,2.6,0.91,0.033,0.64,93,1054,923,0,0,-12.3,93,1054,0,923,0.368,32.39,38.050000000000004,0.91,0.7000000000000001,795,0.30000000000000004,214,3.5
+2023,4,6,11,30,3.2,0.91,0.033,0.64,95,1060,958,0,0,-12.3,95,1060,0,958,0.366,31,35.53,0.91,0.7000000000000001,794,0.30000000000000004,215,3.5
+2023,4,6,12,0,3.8000000000000003,0.91,0.033,0.64,97,1063,976,0,0,-12.3,115,1037,0,973,0.365,29.8,34.17,0.91,0.7000000000000001,794,0.30000000000000004,216,3.6
+2023,4,6,12,30,4.2,0.91,0.033,0.64,96,1064,977,0,0,-12.3,135,1004,0,966,0.363,28.97,34.09,0.91,0.7000000000000001,794,0.30000000000000004,217,3.6
+2023,4,6,13,0,4.6000000000000005,0.91,0.032,0.64,95,1061,961,0,0,-12.3,95,1061,0,961,0.361,28.1,35.31,0.91,0.7000000000000001,794,0.30000000000000004,217,3.6
+2023,4,6,13,30,4.800000000000001,0.91,0.032,0.64,100,1047,928,0,0,-12.3,100,1047,0,928,0.359,27.71,37.7,0.91,0.7000000000000001,794,0.30000000000000004,217,3.5
+2023,4,6,14,0,5,0.66,0.049,0.64,104,1027,878,0,0,-12.4,104,1027,0,878,0.357,27.1,41.050000000000004,0.92,0.7000000000000001,794,0.30000000000000004,217,3.4000000000000004
+2023,4,6,14,30,5,0.66,0.049,0.64,100,1014,815,0,0,-12.4,100,1014,0,815,0.356,27.1,45.13,0.92,0.7000000000000001,794,0.30000000000000004,216,3.3000000000000003
+2023,4,6,15,0,5,0.6900000000000001,0.048,0.64,95,996,738,0,0,-12.600000000000001,95,996,0,738,0.354,26.84,49.76,0.92,0.7000000000000001,794,0.30000000000000004,216,3.1
+2023,4,6,15,30,4.7,0.6900000000000001,0.048,0.64,87,972,648,0,0,-12.600000000000001,87,972,0,648,0.354,27.41,54.78,0.91,0.7000000000000001,794,0.30000000000000004,213,2.9000000000000004
+2023,4,6,16,0,4.4,0.71,0.046,0.64,80,939,549,0,0,-12.5,80,939,0,549,0.353,28.13,60.07,0.91,0.7000000000000001,794,0.30000000000000004,211,2.7
+2023,4,6,16,30,3.4000000000000004,0.71,0.046,0.64,72,893,442,0,0,-12.5,72,893,0,442,0.353,30.18,65.54,0.91,0.7000000000000001,794,0.30000000000000004,207,2.1
+2023,4,6,17,0,2.5,0.73,0.045,0.64,62,828,330,0,0,-8.4,62,828,0,330,0.353,44.410000000000004,71.14,0.91,0.65,794,0.30000000000000004,202,1.5
+2023,4,6,17,30,0.6000000000000001,0.73,0.045,0.64,51,727,217,0,0,-8.4,51,727,0,217,0.353,50.88,76.8,0.91,0.65,794,0.30000000000000004,193,1.3
+2023,4,6,18,0,-1.3,0.74,0.044,0.64,38,557,111,0,0,-9.9,38,557,0,111,0.353,52.17,82.45,0.91,0.65,794,0.30000000000000004,184,1.2000000000000002
+2023,4,6,18,30,-1.9000000000000001,0.74,0.044,0.64,18,222,26,0,0,-9.9,18,222,0,26,0.353,54.52,87.98,0.91,0.65,794,0.30000000000000004,178,1.3
+2023,4,6,19,0,-2.6,0.75,0.042,0.64,0,0,0,0,0,-11,0,0,0,0,0.353,52.660000000000004,93.83,0.91,0.65,794,0.30000000000000004,172,1.3
+2023,4,6,19,30,-2.8000000000000003,0.75,0.042,0.64,0,0,0,0,0,-11,0,0,0,0,0.352,53.44,99.34,0.91,0.65,794,0.30000000000000004,171,1.3
+2023,4,6,20,0,-2.9000000000000004,0.76,0.041,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.35100000000000003,54.69,104.7,0.91,0.65,794,0.30000000000000004,170,1.3
+2023,4,6,20,30,-2.9000000000000004,0.76,0.041,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.34900000000000003,54.69,109.84,0.91,0.65,794,0.30000000000000004,173,1.2000000000000002
+2023,4,6,21,0,-2.9000000000000004,0.77,0.04,0.64,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.34600000000000003,55.25,114.71000000000001,0.91,0.65,794,0.30000000000000004,177,1.2000000000000002
+2023,4,6,21,30,-2.9000000000000004,0.77,0.04,0.64,0,0,0,0,0,-10.600000000000001,0,0,43,0,0.34400000000000003,55.25,119.22,0.91,0.65,794,0.30000000000000004,181,1.2000000000000002
+2023,4,6,22,0,-2.9000000000000004,0.79,0.038,0.64,0,0,0,1,0,-10.5,0,0,57,0,0.342,55.7,123.28,0.91,0.65,794,0.30000000000000004,186,1.1
+2023,4,6,22,30,-2.9000000000000004,0.79,0.038,0.64,0,0,0,0,0,-10.5,0,0,29,0,0.339,55.7,126.77,0.91,0.65,794,0.30000000000000004,189,1.1
+2023,4,6,23,0,-2.8000000000000003,0.81,0.036000000000000004,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.337,55.43,129.55,0.91,0.65,794,0.30000000000000004,192,1
+2023,4,6,23,30,-2.8000000000000003,0.81,0.036000000000000004,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.336,55.43,131.52,0.91,0.65,794,0.30000000000000004,194,1
+2023,4,7,0,0,-2.8000000000000003,0.8300000000000001,0.033,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.334,55.49,132.55,0.91,0.65,794,0.30000000000000004,195,0.9
+2023,4,7,0,30,-2.9000000000000004,0.8300000000000001,0.033,0.64,0,0,0,0,0,-10.5,0,0,0,0,0.334,55.9,132.59,0.91,0.65,794,0.30000000000000004,193,0.9
+2023,4,7,1,0,-2.9000000000000004,0.85,0.03,0.64,0,0,0,0,0,-10.4,0,0,0,0,0.333,56.15,131.64000000000001,0.91,0.65,793,0.30000000000000004,192,0.9
+2023,4,7,1,30,-3.1,0.85,0.03,0.64,0,0,0,0,0,-10.4,0,0,0,0,0.333,56.99,129.75,0.91,0.65,793,0.30000000000000004,185,0.9
+2023,4,7,2,0,-3.3000000000000003,0.88,0.028,0.64,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.334,59.08,127.02,0.91,0.65,793,0.30000000000000004,178,1
+2023,4,7,2,30,-3.6,0.88,0.028,0.64,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.334,60.42,123.58,0.91,0.65,793,0.30000000000000004,172,1
+2023,4,7,3,0,-3.8000000000000003,0.89,0.027,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.335,63.2,119.57000000000001,0.91,0.65,793,0.30000000000000004,166,1.1
+2023,4,7,3,30,-4,0.89,0.027,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.335,64.16,115.08,0.91,0.65,793,0.30000000000000004,163,1.1
+2023,4,7,4,0,-4.2,0.9,0.026000000000000002,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.336,66.84,110.24000000000001,0.91,0.65,793,0.30000000000000004,161,1.2000000000000002
+2023,4,7,4,30,-4.3,0.9,0.026000000000000002,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.336,67.35,105.11,0.91,0.65,793,0.30000000000000004,160,1.2000000000000002
+2023,4,7,5,0,-4.3,0.9,0.026000000000000002,0.64,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.336,68.8,99.76,0.91,0.65,793,0.30000000000000004,159,1.2000000000000002
+2023,4,7,5,30,-3.6,0.9,0.026000000000000002,0.64,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.335,65.29,94.26,0.91,0.65,793,0.30000000000000004,159,1.2000000000000002
+2023,4,7,6,0,-2.8000000000000003,0.9,0.026000000000000002,0.64,17,225,23,0,0,-8.1,17,225,0,23,0.334,66.81,88.37,0.91,0.65,793,0.30000000000000004,160,1.3
+2023,4,7,6,30,-1.3,0.9,0.026000000000000002,0.64,33,604,108,0,0,-8.1,33,604,0,108,0.333,59.81,82.87,0.91,0.65,793,0.30000000000000004,169,1.7000000000000002
+2023,4,7,7,0,0.30000000000000004,0.9,0.026000000000000002,0.64,44,768,214,0,0,-9,44,768,0,214,0.333,49.61,77.21000000000001,0.91,0.65,793,0.30000000000000004,177,2.1
+2023,4,7,7,30,1.9000000000000001,0.9,0.026000000000000002,0.64,54,863,327,0,0,-9,54,863,0,327,0.334,44.22,71.54,0.91,0.65,793,0.30000000000000004,190,2.5
+2023,4,7,8,0,3.6,0.91,0.027,0.64,61,921,437,0,0,-10.100000000000001,61,921,0,437,0.334,36,65.92,0.91,0.65,793,0.4,202,2.9000000000000004
+2023,4,7,8,30,4.800000000000001,0.91,0.027,0.64,68,956,540,0,0,-10.100000000000001,68,956,0,540,0.335,33.1,60.410000000000004,0.91,0.65,793,0.4,207,3.4000000000000004
+2023,4,7,9,0,6,0.93,0.029,0.64,74,987,639,0,0,-9.8,74,987,0,639,0.335,31.13,55.08,0.91,0.65,792,0.4,213,3.8000000000000003
+2023,4,7,9,30,7.1000000000000005,0.93,0.029,0.64,79,1010,728,0,0,-9.8,79,1010,0,728,0.335,28.86,50.01,0.91,0.65,792,0.4,215,4.2
+2023,4,7,10,0,8.1,0.96,0.03,0.64,84,1027,806,0,0,-8.700000000000001,84,1027,0,806,0.336,29.330000000000002,45.31,0.91,0.65,792,0.4,218,4.5
+2023,4,7,10,30,8.9,0.96,0.03,0.64,87,1035,866,0,0,-8.700000000000001,87,1035,0,866,0.335,27.78,41.14,0.91,0.65,792,0.5,220,4.7
+2023,4,7,11,0,9.700000000000001,0.99,0.03,0.64,90,1040,913,0,0,-7.6000000000000005,90,1040,0,913,0.334,28.72,37.68,0.91,0.65,792,0.5,221,4.9
+2023,4,7,11,30,10.3,0.99,0.03,0.64,91,1046,946,0,0,-7.6000000000000005,91,1046,0,946,0.334,27.560000000000002,35.15,0.91,0.65,791,0.5,221,4.9
+2023,4,7,12,0,11,1.03,0.032,0.64,92,1048,963,0,0,-6.7,92,1048,0,963,0.333,28.22,33.78,0.91,0.65,791,0.5,222,5
+2023,4,7,12,30,11.5,1.03,0.032,0.64,93,1047,964,0,0,-6.7,93,1047,0,964,0.333,27.3,33.72,0.91,0.65,791,0.5,221,5
+2023,4,7,13,0,11.9,1.06,0.034,0.64,94,1042,948,0,0,-6.2,94,1042,0,948,0.333,27.79,34.96,0.92,0.65,790,0.5,220,5
+2023,4,7,13,30,12.100000000000001,1.06,0.034,0.64,96,1028,913,0,0,-6.2,96,1028,0,913,0.334,27.43,37.38,0.92,0.65,790,0.6000000000000001,219,4.9
+2023,4,7,14,0,12.4,1.02,0.047,0.64,98,1009,862,0,0,-5.9,98,1009,0,862,0.334,27.5,40.76,0.93,0.65,790,0.6000000000000001,218,4.800000000000001
+2023,4,7,14,30,12.3,1.02,0.047,0.64,95,994,799,0,0,-5.9,95,994,0,799,0.334,27.64,44.87,0.93,0.65,789,0.6000000000000001,218,4.800000000000001
+2023,4,7,15,0,12.3,1.05,0.05,0.64,91,973,723,0,0,-5.6000000000000005,91,973,0,723,0.334,28.150000000000002,49.52,0.93,0.65,789,0.6000000000000001,217,4.7
+2023,4,7,15,30,11.8,1.05,0.05,0.64,86,948,636,0,0,-5.6000000000000005,86,948,4,636,0.334,29.09,54.56,0.93,0.65,789,0.6000000000000001,217,4.6000000000000005
+2023,4,7,16,0,11.4,1.09,0.05,0.64,79,914,538,0,0,-5.300000000000001,79,914,25,538,0.334,30.64,59.86,0.93,0.65,789,0.6000000000000001,217,4.5
+2023,4,7,16,30,9.700000000000001,1.09,0.05,0.64,72,869,434,0,0,-5.300000000000001,71,867,25,433,0.334,34.300000000000004,65.35,0.93,0.65,789,0.6000000000000001,219,3.3000000000000003
+2023,4,7,17,0,8.1,1.1400000000000001,0.047,0.64,61,806,324,0,7,-2.4000000000000004,111,617,43,312,0.334,47.52,70.95,0.93,0.65,789,0.6000000000000001,220,2.1
+2023,4,7,17,30,5.9,1.1400000000000001,0.047,0.64,50,708,214,2,7,-2.4000000000000004,106,369,43,191,0.335,55.230000000000004,76.61,0.93,0.65,789,0.6000000000000001,222,1.8
+2023,4,7,18,0,3.7,1.18,0.046,0.64,38,546,111,6,7,-3.9000000000000004,71,144,100,90,0.335,57.38,82.27,0.9400000000000001,0.65,789,0.6000000000000001,225,1.5
+2023,4,7,18,30,3.6,1.18,0.046,0.64,19,227,28,6,7,-3.9000000000000004,20,4,86,20,0.336,57.79,87.8,0.9400000000000001,0.65,789,0.6000000000000001,225,1.4000000000000001
+2023,4,7,19,0,3.6,1.21,0.046,0.64,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.337,51.02,93.63,0.9400000000000001,0.65,789,0.6000000000000001,225,1.3
+2023,4,7,19,30,3.7,1.21,0.046,0.64,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.338,50.660000000000004,99.13,0.9400000000000001,0.65,789,0.6000000000000001,217,1.1
+2023,4,7,20,0,3.9000000000000004,1.21,0.049,0.64,0,0,0,0,6,-6,0,0,0,0,0.339,48.29,104.48,0.9400000000000001,0.65,789,0.6000000000000001,208,0.9
+2023,4,7,20,30,3.8000000000000003,1.21,0.049,0.64,0,0,0,0,6,-6,0,0,0,0,0.341,48.63,109.61,0.9400000000000001,0.65,789,0.6000000000000001,193,0.9
+2023,4,7,21,0,3.6,1.2,0.053,0.64,0,0,0,0,7,-6,0,0,0,0,0.342,49.47,114.46000000000001,0.9400000000000001,0.65,789,0.6000000000000001,178,0.8
+2023,4,7,21,30,3.4000000000000004,1.2,0.053,0.64,0,0,0,0,7,-6,0,0,43,0,0.343,50.17,118.96000000000001,0.9400000000000001,0.65,789,0.7000000000000001,174,0.9
+2023,4,7,22,0,3.1,1.2,0.059000000000000004,0.64,0,0,0,1,7,-5.9,0,0,100,0,0.34500000000000003,51.68,122.99000000000001,0.9400000000000001,0.65,789,0.7000000000000001,170,0.9
+2023,4,7,22,30,2.9000000000000004,1.2,0.059000000000000004,0.64,0,0,0,0,7,-5.9,0,0,14,0,0.34600000000000003,52.410000000000004,126.46000000000001,0.9400000000000001,0.65,789,0.7000000000000001,173,0.9
+2023,4,7,23,0,2.7,1.2,0.065,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34600000000000003,53.45,129.22,0.9400000000000001,0.65,789,0.7000000000000001,177,1
+2023,4,7,23,30,2.4000000000000004,1.2,0.065,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34700000000000003,54.6,131.17000000000002,0.9400000000000001,0.65,789,0.7000000000000001,186,1.1
+2023,4,8,0,0,2.1,1.21,0.069,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34800000000000003,56.03,132.18,0.9400000000000001,0.65,789,0.7000000000000001,195,1.2000000000000002
+2023,4,8,0,30,1.9000000000000001,1.21,0.069,0.64,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34800000000000003,56.76,132.22,0.9400000000000001,0.65,788,0.7000000000000001,203,1.2000000000000002
+2023,4,8,1,0,1.6,1.22,0.074,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.34900000000000003,58.160000000000004,131.26,0.9400000000000001,0.65,788,0.8,210,1.3
+2023,4,8,1,30,1.4000000000000001,1.22,0.074,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.35000000000000003,59,129.37,0.9400000000000001,0.65,788,0.8,216,1.3
+2023,4,8,2,0,1.1,1.22,0.079,0.64,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.35100000000000003,61.02,126.65,0.9400000000000001,0.65,788,0.8,222,1.3
+2023,4,8,2,30,0.9,1.22,0.079,0.64,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.352,61.9,123.22,0.9400000000000001,0.65,788,0.8,223,1.3
+2023,4,8,3,0,0.6000000000000001,1.23,0.084,0.64,0,0,0,0,7,-5.4,0,0,0,0,0.354,64.1,119.22,0.9400000000000001,0.65,788,0.8,224,1.3
+2023,4,8,3,30,0.5,1.23,0.084,0.64,0,0,0,0,7,-5.4,0,0,0,0,0.356,64.56,114.75,0.9400000000000001,0.65,788,0.8,222,1.3
+2023,4,8,4,0,0.4,1.22,0.08700000000000001,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.358,65.91,109.91,0.9400000000000001,0.65,788,0.7000000000000001,219,1.3
+2023,4,8,4,30,0.30000000000000004,1.22,0.08700000000000001,0.64,0,0,0,0,4,-5.2,0,0,0,0,0.36,66.38,104.79,0.9400000000000001,0.65,788,0.7000000000000001,216,1.3
+2023,4,8,5,0,0.2,1.21,0.09,0.64,0,0,0,0,8,-5.1000000000000005,0,0,0,0,0.362,67.56,99.45,0.9400000000000001,0.65,788,0.7000000000000001,214,1.3
+2023,4,8,5,30,0.7000000000000001,1.21,0.09,0.64,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.364,65.25,93.96000000000001,0.9500000000000001,0.65,789,0.7000000000000001,212,1.2000000000000002
+2023,4,8,6,0,1.3,1.19,0.093,0.64,18,141,23,5,7,-3.6,14,0,75,14,0.365,69.94,88.10000000000001,0.9500000000000001,0.65,789,0.7000000000000001,211,1.2000000000000002
+2023,4,8,6,30,2.7,1.19,0.093,0.64,45,422,99,4,7,-3.6,67,63,57,75,0.366,63.300000000000004,82.58,0.9500000000000001,0.65,789,0.7000000000000001,211,1.4000000000000001
+2023,4,8,7,0,4.2,1.18,0.1,0.64,64,596,199,0,7,-2.5,101,350,18,180,0.368,61.53,76.91,0.9500000000000001,0.65,789,0.7000000000000001,212,1.7000000000000002
+2023,4,8,7,30,5.2,1.18,0.1,0.64,81,702,307,0,7,-2.5,191,92,0,221,0.369,57.46,71.24,0.9500000000000001,0.65,790,0.7000000000000001,216,2
+2023,4,8,8,0,6.1000000000000005,1.17,0.114,0.64,97,769,414,0,7,-3.2,262,162,0,329,0.37,51.4,65.62,0.9500000000000001,0.65,790,0.7000000000000001,220,2.2
+2023,4,8,8,30,7.300000000000001,1.17,0.114,0.64,110,821,519,0,7,-3.2,296,176,0,384,0.369,47.34,60.11,0.9500000000000001,0.65,790,0.7000000000000001,224,2.7
+2023,4,8,9,0,8.5,1.18,0.122,0.64,121,857,615,0,6,-4.3,323,92,0,376,0.368,39.99,54.77,0.9500000000000001,0.65,790,0.8,228,3.1
+2023,4,8,9,30,9.4,1.18,0.122,0.64,127,891,704,0,7,-4.3,436,208,0,571,0.367,37.68,49.68,0.9500000000000001,0.65,791,0.8,227,3.5
+2023,4,8,10,0,10.200000000000001,1.2,0.116,0.64,133,918,782,0,7,-5.5,357,489,0,703,0.365,32.68,44.97,0.9500000000000001,0.65,791,0.8,227,4
+2023,4,8,10,30,10.9,1.2,0.116,0.64,137,935,845,0,0,-5.5,137,935,0,845,0.363,31.2,40.78,0.9500000000000001,0.65,791,0.8,225,4.2
+2023,4,8,11,0,11.600000000000001,1.2,0.113,0.64,141,948,895,0,0,-5.5,141,948,0,895,0.361,29.900000000000002,37.31,0.9500000000000001,0.65,791,0.8,224,4.4
+2023,4,8,11,30,12.100000000000001,1.2,0.113,0.64,143,956,928,0,0,-5.5,171,914,0,922,0.359,28.900000000000002,34.77,0.9500000000000001,0.65,790,0.8,223,4.5
+2023,4,8,12,0,12.5,1.21,0.115,0.64,144,959,945,0,0,-5.1000000000000005,174,920,0,942,0.358,29.02,33.410000000000004,0.9500000000000001,0.65,790,0.8,223,4.5
+2023,4,8,12,30,12.700000000000001,1.21,0.115,0.64,147,955,945,0,0,-5.1000000000000005,179,910,0,939,0.356,28.64,33.35,0.9500000000000001,0.65,790,0.8,224,4.4
+2023,4,8,13,0,12.9,1.22,0.121,0.64,147,949,928,0,0,-4.800000000000001,147,949,0,928,0.354,28.86,34.62,0.9500000000000001,0.65,790,0.8,225,4.4
+2023,4,8,13,30,12.8,1.22,0.121,0.64,140,949,897,0,0,-4.800000000000001,140,949,7,897,0.353,29.05,37.07,0.9500000000000001,0.65,790,0.8,229,4.3
+2023,4,8,14,0,12.8,1.3,0.1,0.64,129,949,851,0,0,-4.7,129,949,7,851,0.352,29.28,40.47,0.9500000000000001,0.65,790,0.8,233,4.1000000000000005
+2023,4,8,14,30,12.600000000000001,1.3,0.1,0.64,125,931,788,0,0,-4.7,125,931,0,788,0.35100000000000003,29.66,44.61,0.9500000000000001,0.65,790,0.8,239,4
+2023,4,8,15,0,12.4,1.27,0.10400000000000001,0.64,120,907,712,0,0,-4.6000000000000005,122,900,21,709,0.35100000000000003,30.29,49.28,0.9500000000000001,0.65,790,0.8,245,3.8000000000000003
+2023,4,8,15,30,12,1.27,0.10400000000000001,0.64,113,874,623,0,0,-4.6000000000000005,113,874,0,623,0.352,31.1,54.34,0.9500000000000001,0.65,790,0.8,253,3.6
+2023,4,8,16,0,11.600000000000001,1.21,0.109,0.64,106,829,525,0,0,-4.1000000000000005,106,829,0,525,0.352,33.19,59.660000000000004,0.9500000000000001,0.65,790,0.8,260,3.3000000000000003
+2023,4,8,16,30,10.700000000000001,1.21,0.109,0.64,97,771,421,0,0,-4.1000000000000005,97,771,0,421,0.353,35.22,65.15,0.9500000000000001,0.65,790,0.9,269,2.5
+2023,4,8,17,0,9.8,1.17,0.114,0.64,85,690,312,0,0,-0.5,93,649,7,307,0.354,48.64,70.76,0.96,0.65,791,0.9,278,1.6
+2023,4,8,17,30,8.4,1.17,0.114,0.64,68,582,205,0,0,-0.5,72,541,14,199,0.354,53.44,76.42,0.9500000000000001,0.65,791,0.9,294,1.4000000000000001
+2023,4,8,18,0,7,1.17,0.107,0.64,48,414,105,0,0,-0.4,49,393,7,103,0.354,59.1,82.08,0.9500000000000001,0.65,791,0.9,309,1.1
+2023,4,8,18,30,6.4,1.17,0.107,0.64,20,144,26,3,0,-0.4,19,50,43,21,0.352,61.58,87.62,0.9500000000000001,0.65,791,0.8,323,1.1
+2023,4,8,19,0,5.9,1.19,0.091,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.35100000000000003,56.620000000000005,93.44,0.9400000000000001,0.65,792,0.8,337,1.1
+2023,4,8,19,30,5.4,1.19,0.091,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.34900000000000003,58.61,98.93,0.9400000000000001,0.65,792,0.8,170,1.1
+2023,4,8,20,0,5,1.2,0.075,0.64,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.34700000000000003,56.99,104.26,0.93,0.65,792,0.8,4,1.2000000000000002
+2023,4,8,20,30,4.4,1.2,0.075,0.64,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.34600000000000003,59.5,109.38,0.93,0.65,793,0.8,11,1.2000000000000002
+2023,4,8,21,0,3.8000000000000003,1.19,0.064,0.64,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.34500000000000003,59.19,114.22,0.93,0.65,793,0.7000000000000001,18,1.2000000000000002
+2023,4,8,21,30,3.2,1.19,0.064,0.64,0,0,0,0,0,-3.4000000000000004,0,0,43,0,0.343,61.74,118.69,0.92,0.65,793,0.7000000000000001,20,1.3
+2023,4,8,22,0,2.6,1.18,0.058,0.64,0,0,0,1,0,-3.8000000000000003,0,0,100,0,0.341,62.72,122.7,0.92,0.65,793,0.7000000000000001,22,1.3
+2023,4,8,22,30,2.1,1.18,0.058,0.64,0,0,0,0,0,-3.8000000000000003,0,0,14,0,0.34,64.99,126.15,0.92,0.65,793,0.7000000000000001,21,1.3
+2023,4,8,23,0,1.6,1.18,0.055,0.64,0,0,0,0,0,-4,0,0,0,0,0.339,66.25,128.89000000000001,0.92,0.65,793,0.7000000000000001,20,1.3
+2023,4,8,23,30,1.1,1.18,0.055,0.64,0,0,0,0,0,-4,0,0,0,0,0.338,68.67,130.81,0.92,0.65,793,0.7000000000000001,19,1.3
+2023,4,9,0,0,0.7000000000000001,1.18,0.058,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.337,70.36,131.82,0.93,0.65,793,0.7000000000000001,18,1.3
+2023,4,9,0,30,0.5,1.18,0.058,0.64,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.337,71.38,131.84,0.93,0.65,793,0.7000000000000001,16,1.2000000000000002
+2023,4,9,1,0,0.30000000000000004,1.18,0.065,0.64,0,0,0,0,7,-4,0,0,0,0,0.336,72.87,130.88,0.93,0.65,793,0.7000000000000001,15,1.2000000000000002
+2023,4,9,1,30,0.30000000000000004,1.18,0.065,0.64,0,0,0,0,7,-4,0,0,0,0,0.336,72.96000000000001,128.99,0.93,0.65,794,0.7000000000000001,17,1.1
+2023,4,9,2,0,0.30000000000000004,1.17,0.074,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.336,73.92,126.28,0.93,0.65,794,0.7000000000000001,18,1.1
+2023,4,9,2,30,0.30000000000000004,1.17,0.074,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.337,73.92,122.87,0.9400000000000001,0.65,794,0.7000000000000001,22,1
+2023,4,9,3,0,0.30000000000000004,1.17,0.078,0.64,0,0,0,0,0,-3.7,0,0,0,0,0.337,74.65,118.87,0.9400000000000001,0.65,794,0.7000000000000001,25,1
+2023,4,9,3,30,0.2,1.17,0.078,0.64,0,0,0,0,0,-3.7,0,0,0,0,0.338,75.19,114.41,0.9400000000000001,0.65,794,0.7000000000000001,31,0.9
+2023,4,9,4,0,0.1,1.1500000000000001,0.076,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.339,76.32000000000001,109.59,0.93,0.65,794,0.7000000000000001,38,0.9
+2023,4,9,4,30,0.1,1.1500000000000001,0.076,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.34,76.41,104.48,0.93,0.65,795,0.8,45,0.9
+2023,4,9,5,0,0.1,1.1400000000000001,0.075,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.341,76.77,99.15,0.93,0.65,795,0.8,52,0.9
+2023,4,9,5,30,0.5,1.1400000000000001,0.075,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.342,74.58,93.66,0.93,0.65,795,0.8,56,0.8
+2023,4,9,6,0,0.9,1.1400000000000001,0.077,0.64,19,168,25,6,7,-2.6,13,0,86,13,0.342,77.3,87.82000000000001,0.93,0.65,795,0.8,61,0.8
+2023,4,9,6,30,2.2,1.1400000000000001,0.077,0.64,41,466,104,4,7,-2.6,45,2,57,45,0.342,70.53,82.29,0.93,0.65,796,0.8,57,1
+2023,4,9,7,0,3.6,1.1500000000000001,0.073,0.64,57,642,206,0,7,-1.9000000000000001,96,217,0,146,0.343,67.05,76.62,0.93,0.65,796,0.8,53,1.3
+2023,4,9,7,30,5.5,1.1500000000000001,0.073,0.64,69,753,315,0,0,-1.9000000000000001,69,753,0,315,0.342,58.72,70.95,0.92,0.65,796,0.8,32,1.4000000000000001
+2023,4,9,8,0,7.4,1.16,0.068,0.64,78,828,424,0,0,-2.6,78,828,0,424,0.341,48.94,65.32000000000001,0.92,0.65,796,0.8,11,1.5
+2023,4,9,8,30,8.9,1.16,0.068,0.64,85,880,528,0,0,-2.6,85,880,0,528,0.339,44.26,59.800000000000004,0.91,0.65,797,0.8,180,1.9000000000000001
+2023,4,9,9,0,10.4,1.16,0.065,0.64,92,918,626,0,0,-2,92,918,0,626,0.338,41.99,54.45,0.91,0.65,797,0.8,349,2.3000000000000003
+2023,4,9,9,30,11.3,1.16,0.065,0.64,98,946,714,0,0,-2,98,946,0,714,0.335,39.56,49.36,0.91,0.65,797,0.8,345,2.3000000000000003
+2023,4,9,10,0,12.200000000000001,1.16,0.063,0.64,103,967,791,0,0,-1.5,103,967,0,791,0.333,38.49,44.63,0.91,0.65,797,0.8,341,2.3000000000000003
+2023,4,9,10,30,12.9,1.16,0.063,0.64,107,982,854,0,0,-1.5,107,982,0,854,0.33,36.77,40.43,0.91,0.65,797,0.8,337,2.2
+2023,4,9,11,0,13.700000000000001,1.1300000000000001,0.064,0.64,110,991,902,0,0,-1.5,110,991,0,902,0.328,34.94,36.94,0.91,0.65,797,0.8,334,2.1
+2023,4,9,11,30,14.3,1.1300000000000001,0.064,0.64,111,999,935,0,0,-1.5,111,999,0,935,0.325,33.61,34.4,0.9,0.65,797,0.8,330,1.9000000000000001
+2023,4,9,12,0,15,1.1400000000000001,0.062,0.64,111,1003,952,0,0,-1.8,111,1003,0,952,0.322,31.59,33.03,0.9,0.65,796,0.8,327,1.8
+2023,4,9,12,30,15.4,1.1400000000000001,0.062,0.64,112,1003,953,0,0,-1.7000000000000002,112,1003,0,953,0.318,30.79,32.99,0.91,0.65,796,0.8,324,1.7000000000000002
+2023,4,9,13,0,15.9,1.1500000000000001,0.062,0.64,112,1000,938,0,0,-2.1,112,1000,0,938,0.315,29.14,34.28,0.91,0.65,796,0.8,320,1.6
+2023,4,9,13,30,16.1,1.1500000000000001,0.062,0.64,111,992,906,0,0,-2.1,111,992,0,906,0.313,28.77,36.75,0.91,0.65,796,0.8,321,1.5
+2023,4,9,14,0,16.3,1.02,0.069,0.64,111,978,858,0,0,-2.4000000000000004,111,978,0,858,0.31,27.77,40.19,0.91,0.65,796,0.8,321,1.4000000000000001
+2023,4,9,14,30,16.3,1.02,0.069,0.64,107,964,796,0,0,-2.4000000000000004,107,964,0,796,0.309,27.77,44.36,0.91,0.65,796,0.8,328,1.3
+2023,4,9,15,0,16.2,1.02,0.066,0.64,100,946,720,0,0,-2.7,100,946,0,720,0.308,27.25,49.050000000000004,0.91,0.65,796,0.8,335,1.2000000000000002
+2023,4,9,15,30,15.9,1.02,0.066,0.64,93,921,633,0,0,-2.7,93,921,0,633,0.307,27.78,54.120000000000005,0.91,0.65,796,0.8,347,1.1
+2023,4,9,16,0,15.600000000000001,1,0.063,0.64,86,887,537,0,0,-2.9000000000000004,86,887,0,537,0.306,27.82,59.45,0.91,0.65,796,0.8,360,1.1
+2023,4,9,16,30,14.700000000000001,1,0.063,0.64,77,838,432,0,0,-2.9000000000000004,77,838,0,432,0.306,29.47,64.96000000000001,0.91,0.65,796,0.8,201,0.9
+2023,4,9,17,0,13.9,0.98,0.064,0.64,69,768,324,0,0,-1,69,768,0,324,0.305,35.910000000000004,70.57000000000001,0.91,0.65,796,0.8,42,0.8
+2023,4,9,17,30,11.600000000000001,0.98,0.064,0.64,57,664,215,0,0,-1,57,664,0,215,0.305,41.730000000000004,76.24,0.92,0.65,796,0.8,68,0.9
+2023,4,9,18,0,9.3,0.96,0.066,0.64,42,495,112,0,0,0.8,43,482,4,111,0.304,55.18,81.89,0.92,0.65,796,0.8,95,1
+2023,4,9,18,30,7.800000000000001,0.96,0.066,0.64,20,194,29,0,0,0.8,20,180,7,28,0.305,61.14,87.44,0.91,0.65,797,0.8,100,1.2000000000000002
+2023,4,9,19,0,6.300000000000001,0.97,0.065,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.305,60.54,93.24,0.91,0.65,797,0.8,105,1.3
+2023,4,9,19,30,5.4,0.97,0.065,0.64,0,0,0,0,7,-0.8,0,0,0,0,0.304,64.42,98.72,0.91,0.65,797,0.8,106,1.4000000000000001
+2023,4,9,20,0,4.4,0.99,0.063,0.64,0,0,0,0,7,-1,0,0,0,0,0.304,67.81,104.05,0.91,0.65,798,0.8,107,1.4000000000000001
+2023,4,9,20,30,3.6,0.99,0.063,0.64,0,0,0,0,0,-1,0,0,0,0,0.304,71.72,109.15,0.91,0.65,798,0.8,107,1.4000000000000001
+2023,4,9,21,0,2.8000000000000003,1.02,0.062,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.303,74.54,113.97,0.91,0.65,798,0.8,107,1.4000000000000001
+2023,4,9,21,30,2.1,1.02,0.062,0.64,0,0,0,0,0,-1.3,0,0,43,0,0.302,78.34,118.43,0.91,0.65,798,0.8,106,1.3
+2023,4,9,22,0,1.4000000000000001,1.04,0.06,0.64,0,0,0,1,0,-1.6,0,0,100,0,0.301,80.17,122.42,0.91,0.65,798,0.8,106,1.3
+2023,4,9,22,30,1,1.04,0.06,0.64,0,0,0,0,0,-1.6,0,0,14,0,0.3,82.5,125.84,0.91,0.65,798,0.8,105,1.2000000000000002
+2023,4,9,23,0,0.7000000000000001,1.05,0.058,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.299,81.71000000000001,128.56,0.91,0.65,798,0.8,104,1.2000000000000002
+2023,4,9,23,30,0.4,1.05,0.058,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.298,83.5,130.46,0.91,0.65,798,0.8,102,1.2000000000000002
+2023,4,10,0,0,0.1,1.06,0.056,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.297,82.37,131.45,0.91,0.65,798,0.8,100,1.1
+2023,4,10,0,30,-0.1,1.06,0.056,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.296,83.58,131.46,0.91,0.65,798,0.8,96,1.1
+2023,4,10,1,0,-0.2,1.08,0.054,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.294,80.93,130.5,0.91,0.65,798,0.8,93,1
+2023,4,10,1,30,-0.30000000000000004,1.08,0.054,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.293,81.52,128.62,0.91,0.65,798,0.8,89,0.9
+2023,4,10,2,0,-0.30000000000000004,1.09,0.052000000000000005,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.292,78.57000000000001,125.91,0.91,0.65,798,0.8,85,0.9
+2023,4,10,2,30,-0.1,1.09,0.052000000000000005,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.292,77.43,122.51,0.91,0.65,798,0.8,80,0.8
+2023,4,10,3,0,0,1.1,0.05,0.64,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.291,74.76,118.53,0.91,0.65,798,0.8,75,0.7000000000000001
+2023,4,10,3,30,0.1,1.1,0.05,0.64,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.291,74.22,114.08,0.91,0.65,798,0.8,68,0.6000000000000001
+2023,4,10,4,0,0.30000000000000004,1.12,0.049,0.64,0,0,0,0,0,-4.2,0,0,0,0,0.29,71.75,109.27,0.91,0.65,798,0.8,61,0.5
+2023,4,10,4,30,0.30000000000000004,1.12,0.049,0.64,0,0,0,0,0,-4.2,0,0,0,0,0.29,71.75,104.17,0.91,0.65,798,0.8,57,0.5
+2023,4,10,5,0,0.4,1.1400000000000001,0.051000000000000004,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.289,70.22,98.85000000000001,0.91,0.65,798,0.8,54,0.4
+2023,4,10,5,30,1.1,1.1400000000000001,0.051000000000000004,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.28800000000000003,66.77,93.36,0.91,0.65,798,0.8,58,0.4
+2023,4,10,6,0,1.9000000000000001,1.16,0.052000000000000005,0.64,20,221,29,3,0,-3,15,85,39,19,0.28700000000000003,70.02,87.55,0.91,0.65,798,0.8,61,0.30000000000000004
+2023,4,10,6,30,3.7,1.16,0.052000000000000005,0.64,39,533,113,2,0,-3,47,390,32,101,0.28700000000000003,61.64,82,0.91,0.65,798,0.8,97,0.30000000000000004
+2023,4,10,7,0,5.5,1.17,0.051000000000000004,0.64,53,696,217,0,0,-2.8000000000000003,53,696,0,217,0.28700000000000003,55.08,76.33,0.91,0.65,798,0.8,134,0.4
+2023,4,10,7,30,7.2,1.17,0.051000000000000004,0.64,63,797,327,0,0,-2.8000000000000003,63,797,0,327,0.28700000000000003,49,70.66,0.91,0.65,798,0.8,170,0.8
+2023,4,10,8,0,9,1.17,0.047,0.64,70,866,436,0,0,-2.7,70,866,0,436,0.28700000000000003,43.7,65.03,0.9,0.65,798,0.8,206,1.3
+2023,4,10,8,30,11,1.17,0.047,0.64,77,912,540,0,0,-2.7,77,912,0,540,0.28700000000000003,38.230000000000004,59.5,0.9,0.65,798,0.8,212,2
+2023,4,10,9,0,13.100000000000001,1.17,0.044,0.64,82,947,637,0,0,-2.5,82,947,0,637,0.28800000000000003,33.77,54.14,0.9,0.65,799,0.8,219,2.7
+2023,4,10,9,30,14.3,1.17,0.044,0.64,87,972,724,0,0,-2.5,87,972,0,724,0.28800000000000003,31.21,49.04,0.9,0.65,798,0.8,219,3
+2023,4,10,10,0,15.600000000000001,1.17,0.042,0.64,91,991,800,0,0,-2.7,91,991,0,800,0.289,28.27,44.300000000000004,0.9,0.65,798,0.8,219,3.2
+2023,4,10,10,30,16.5,1.17,0.042,0.64,99,997,862,0,0,-2.7,99,997,0,862,0.289,26.7,40.08,0.9,0.65,798,0.8,218,3.4000000000000004
+2023,4,10,11,0,17.400000000000002,0.91,0.057,0.64,108,998,909,0,0,-3,108,998,0,909,0.289,24.68,36.58,0.91,0.65,798,0.8,216,3.5
+2023,4,10,11,30,18,0.91,0.057,0.64,110,1004,942,0,0,-3,110,1004,0,942,0.29,23.77,34.02,0.91,0.65,798,0.8,215,3.6
+2023,4,10,12,0,18.6,0.92,0.056,0.64,110,1007,958,0,0,-3,110,1007,0,958,0.29,22.900000000000002,32.65,0.91,0.65,798,0.8,213,3.6
+2023,4,10,12,30,19.1,0.92,0.056,0.64,110,1007,958,0,0,-3,110,1007,0,958,0.291,22.17,32.62,0.91,0.65,797,0.8,212,3.7
+2023,4,10,13,0,19.5,0.93,0.055,0.64,108,1004,941,0,0,-2.8000000000000003,108,1004,0,941,0.291,21.93,33.94,0.91,0.65,797,0.9,212,3.8000000000000003
+2023,4,10,13,30,19.6,0.93,0.055,0.64,105,999,909,0,0,-2.8000000000000003,105,999,0,909,0.291,21.8,36.44,0.91,0.65,797,0.9,211,3.7
+2023,4,10,14,0,19.700000000000003,0.9400000000000001,0.052000000000000005,0.64,102,991,862,0,0,-2.7,102,991,0,862,0.291,21.95,39.910000000000004,0.91,0.65,797,0.9,211,3.7
+2023,4,10,14,30,19.6,0.9400000000000001,0.052000000000000005,0.64,97,979,800,0,0,-2.7,97,979,0,800,0.29,22.06,44.1,0.91,0.65,796,0.9,210,3.6
+2023,4,10,15,0,19.400000000000002,0.9500000000000001,0.049,0.64,91,963,725,0,0,-2.5,91,963,0,725,0.29,22.57,48.82,0.9,0.65,796,0.8,209,3.6
+2023,4,10,15,30,19,0.9500000000000001,0.049,0.64,85,940,639,0,0,-2.5,85,940,0,639,0.29,23.14,53.9,0.9,0.65,796,0.8,207,3.5
+2023,4,10,16,0,18.5,0.98,0.047,0.64,78,909,543,0,0,-2.3000000000000003,78,909,0,543,0.29,24.38,59.25,0.9,0.65,796,0.8,205,3.4000000000000004
+2023,4,10,16,30,17.400000000000002,0.98,0.047,0.64,70,865,439,0,0,-2.3000000000000003,70,865,0,439,0.289,26.12,64.76,0.9,0.65,796,0.8,203,2.8000000000000003
+2023,4,10,17,0,16.2,1.02,0.045,0.64,61,804,331,0,0,0.8,61,804,0,331,0.289,35.2,70.38,0.89,0.65,796,0.8,201,2.1
+2023,4,10,17,30,13.600000000000001,1.02,0.045,0.64,50,712,222,0,0,0.8,50,712,0,222,0.289,41.59,76.05,0.89,0.65,796,0.8,196,1.8
+2023,4,10,18,0,11,1.06,0.043000000000000003,0.64,38,562,119,0,0,1.9000000000000001,38,562,0,119,0.289,53.29,81.71000000000001,0.89,0.65,796,0.7000000000000001,190,1.4000000000000001
+2023,4,10,18,30,9.8,1.06,0.043000000000000003,0.64,20,250,32,0,0,1.9000000000000001,20,250,0,32,0.289,57.72,87.26,0.89,0.65,796,0.7000000000000001,185,1.4000000000000001
+2023,4,10,19,0,8.5,1.1,0.041,0.64,0,0,0,0,0,0,0,0,0,0,0.289,54.99,93.05,0.89,0.65,796,0.7000000000000001,181,1.5
+2023,4,10,19,30,7.9,1.1,0.041,0.64,0,0,0,0,0,0,0,0,0,0,0.289,57.27,98.52,0.89,0.65,796,0.7000000000000001,181,1.5
+2023,4,10,20,0,7.2,1.1400000000000001,0.04,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.289,57.33,103.83,0.89,0.65,796,0.7000000000000001,180,1.5
+2023,4,10,20,30,6.9,1.1400000000000001,0.04,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.289,58.52,108.92,0.89,0.65,796,0.6000000000000001,184,1.5
+2023,4,10,21,0,6.5,1.16,0.04,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.289,57.42,113.72,0.88,0.65,796,0.6000000000000001,187,1.5
+2023,4,10,21,30,6.2,1.16,0.04,0.64,0,0,0,0,0,-1.3,0,0,43,0,0.289,58.550000000000004,118.16,0.88,0.65,795,0.6000000000000001,191,1.5
+2023,4,10,22,0,5.800000000000001,1.17,0.04,0.64,0,0,0,1,0,-1.8,0,0,100,0,0.289,57.97,122.13,0.88,0.65,795,0.6000000000000001,195,1.5
+2023,4,10,22,30,5.300000000000001,1.17,0.04,0.64,0,0,0,0,0,-1.8,0,0,14,0,0.289,60.01,125.53,0.88,0.65,795,0.6000000000000001,196,1.5
+2023,4,10,23,0,4.800000000000001,1.17,0.04,0.64,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.289,60.25,128.23,0.88,0.65,795,0.6000000000000001,196,1.6
+2023,4,10,23,30,4.2,1.17,0.04,0.64,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.289,62.83,130.11,0.88,0.65,795,0.5,195,1.6
+2023,4,11,0,0,3.6,1.1500000000000001,0.041,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.289,63.870000000000005,131.09,0.88,0.65,795,0.5,194,1.6
+2023,4,11,0,30,3.1,1.1500000000000001,0.041,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.28800000000000003,66.07000000000001,131.09,0.88,0.65,794,0.5,194,1.7000000000000002
+2023,4,11,1,0,2.5,1.1300000000000001,0.041,0.64,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28800000000000003,67.62,130.13,0.88,0.65,794,0.5,193,1.7000000000000002
+2023,4,11,1,30,2,1.1300000000000001,0.041,0.64,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28800000000000003,70.07000000000001,128.25,0.88,0.65,794,0.5,192,1.7000000000000002
+2023,4,11,2,0,1.6,1.11,0.041,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.28700000000000003,70.77,125.55,0.88,0.65,794,0.5,190,1.7000000000000002
+2023,4,11,2,30,1.2000000000000002,1.11,0.041,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.28700000000000003,72.83,122.16,0.88,0.65,794,0.5,188,1.7000000000000002
+2023,4,11,3,0,0.9,1.1,0.04,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.28700000000000003,72.38,118.19,0.88,0.65,794,0.5,186,1.7000000000000002
+2023,4,11,3,30,0.7000000000000001,1.1,0.04,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.28700000000000003,73.42,113.75,0.88,0.65,794,0.4,185,1.7000000000000002
+2023,4,11,4,0,0.4,1.12,0.039,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28800000000000003,71.97,108.95,0.88,0.65,794,0.4,184,1.7000000000000002
+2023,4,11,4,30,0.30000000000000004,1.12,0.039,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28800000000000003,72.4,103.86,0.88,0.65,793,0.5,185,1.7000000000000002
+2023,4,11,5,0,0.2,1.1500000000000001,0.038,0.64,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28800000000000003,69.09,98.55,0.88,0.65,793,0.5,186,1.7000000000000002
+2023,4,11,5,30,1.4000000000000001,1.1500000000000001,0.038,0.64,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28800000000000003,63.370000000000005,93.07000000000001,0.88,0.65,793,0.5,187,1.7000000000000002
+2023,4,11,6,0,2.6,1.19,0.037,0.64,20,276,33,0,0,-3.8000000000000003,20,276,0,33,0.28700000000000003,62.74,87.27,0.88,0.65,793,0.5,187,1.6
+2023,4,11,6,30,5.2,1.19,0.037,0.64,37,598,123,0,0,-3.8000000000000003,37,598,0,123,0.28800000000000003,52.28,81.72,0.89,0.65,793,0.5,190,2.2
+2023,4,11,7,0,7.7,1.21,0.038,0.64,49,748,229,0,0,-3.7,49,748,0,229,0.28800000000000003,44.36,76.05,0.89,0.65,793,0.5,192,2.7
+2023,4,11,7,30,9.600000000000001,1.21,0.038,0.64,58,839,340,0,0,-3.7,58,839,0,340,0.28800000000000003,39.02,70.37,0.89,0.65,793,0.5,196,2.8000000000000003
+2023,4,11,8,0,11.5,1.21,0.039,0.64,66,899,450,0,0,-3.1,66,899,0,450,0.28800000000000003,35.87,64.74,0.89,0.65,793,0.5,199,3
+2023,4,11,8,30,13.9,1.21,0.039,0.64,74,942,556,0,0,-3.1,74,942,0,556,0.28800000000000003,30.66,59.2,0.89,0.65,793,0.5,206,4
+2023,4,11,9,0,16.3,1.22,0.039,0.64,80,973,654,0,0,-3.6,80,973,0,654,0.289,25.26,53.84,0.89,0.65,793,0.5,213,5.1000000000000005
+2023,4,11,9,30,17.5,1.22,0.039,0.64,85,996,742,0,0,-3.6,85,996,0,742,0.289,23.42,48.72,0.89,0.65,793,0.5,216,5.7
+2023,4,11,10,0,18.7,1.22,0.04,0.64,90,1011,818,0,0,-3.6,90,1011,0,818,0.289,21.76,43.97,0.89,0.65,793,0.5,219,6.2
+2023,4,11,10,30,19.400000000000002,1.22,0.04,0.64,91,1024,879,0,0,-3.6,91,1024,0,879,0.29,20.81,39.730000000000004,0.88,0.65,792,0.6000000000000001,220,6.4
+2023,4,11,11,0,20,1.42,0.036000000000000004,0.64,91,1036,927,0,0,-3.2,91,1036,0,927,0.29,20.7,36.21,0.87,0.65,792,0.6000000000000001,220,6.5
+2023,4,11,11,30,20.5,1.42,0.036000000000000004,0.64,93,1039,958,0,0,-3.2,93,1039,0,958,0.291,20.07,33.65,0.87,0.65,792,0.6000000000000001,220,6.7
+2023,4,11,12,0,20.900000000000002,1.46,0.037,0.64,94,1040,973,0,0,-2.9000000000000004,94,1040,0,973,0.291,20.04,32.28,0.87,0.65,791,0.6000000000000001,220,6.800000000000001
+2023,4,11,12,30,21.200000000000003,1.46,0.037,0.64,95,1039,974,0,0,-2.9000000000000004,95,1039,0,974,0.292,19.67,32.26,0.87,0.65,791,0.6000000000000001,220,6.9
+2023,4,11,13,0,21.5,1.5,0.039,0.64,94,1036,957,0,0,-2.8000000000000003,94,1036,0,957,0.292,19.400000000000002,33.6,0.87,0.65,791,0.6000000000000001,219,7
+2023,4,11,13,30,21.5,1.5,0.039,0.64,94,1028,924,0,0,-2.8000000000000003,94,1028,0,924,0.293,19.37,36.13,0.87,0.65,790,0.6000000000000001,219,7
+2023,4,11,14,0,21.6,1.45,0.043000000000000003,0.64,93,1017,876,0,0,-3,93,1017,0,876,0.293,19.03,39.63,0.87,0.65,790,0.6000000000000001,219,7
+2023,4,11,14,30,21.400000000000002,1.45,0.043000000000000003,0.64,90,1004,814,0,0,-3,90,1004,0,814,0.293,19.26,43.85,0.87,0.65,790,0.6000000000000001,218,6.800000000000001
+2023,4,11,15,0,21.200000000000003,1.56,0.043000000000000003,0.64,85,987,738,0,0,-3.2,85,987,0,738,0.293,19.18,48.59,0.87,0.65,789,0.6000000000000001,218,6.7
+2023,4,11,15,30,20.8,1.56,0.043000000000000003,0.64,79,964,650,0,0,-3.2,79,964,0,650,0.292,19.66,53.69,0.87,0.65,789,0.6000000000000001,217,6.4
+2023,4,11,16,0,20.3,1.59,0.044,0.64,74,932,553,0,0,-3.2,74,932,0,553,0.292,20.31,59.050000000000004,0.87,0.65,789,0.6000000000000001,216,6.2
+2023,4,11,16,30,19.200000000000003,1.59,0.044,0.64,67,887,448,0,0,-3.2,67,887,0,448,0.292,21.740000000000002,64.57000000000001,0.88,0.65,789,0.6000000000000001,213,5.2
+2023,4,11,17,0,18.1,1.61,0.044,0.64,60,824,339,0,0,-1.8,60,824,0,339,0.292,25.94,70.2,0.88,0.65,789,0.7000000000000001,211,4.3
+2023,4,11,17,30,15.3,1.61,0.044,0.64,50,731,228,0,0,-1.8,50,731,0,228,0.292,30.970000000000002,75.87,0.88,0.65,789,0.7000000000000001,207,3.4000000000000004
+2023,4,11,18,0,12.4,1.6500000000000001,0.044,0.64,37,582,123,0,0,0.1,37,582,0,123,0.292,42.74,81.53,0.88,0.65,789,0.7000000000000001,203,2.4000000000000004
+2023,4,11,18,30,11,1.6500000000000001,0.044,0.64,21,301,36,0,0,0.1,21,301,0,36,0.292,46.86,87.08,0.88,0.65,789,0.7000000000000001,200,2.4000000000000004
+2023,4,11,19,0,9.600000000000001,1.7,0.044,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.293,49.69,92.85000000000001,0.88,0.65,789,0.7000000000000001,198,2.3000000000000003
+2023,4,11,19,30,9.1,1.7,0.044,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,51.38,98.31,0.89,0.65,789,0.7000000000000001,196,2.4000000000000004
+2023,4,11,20,0,8.700000000000001,1.7,0.044,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.292,52.19,103.61,0.89,0.65,789,0.8,195,2.5
+2023,4,11,20,30,8.3,1.7,0.044,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.293,53.620000000000005,108.69,0.89,0.65,789,0.8,194,2.6
+2023,4,11,21,0,7.9,1.6600000000000001,0.043000000000000003,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.293,54.61,113.48,0.89,0.65,789,0.8,194,2.7
+2023,4,11,21,30,7.6000000000000005,1.6600000000000001,0.043000000000000003,0.64,0,0,0,0,0,-0.7000000000000001,0,0,29,0,0.293,55.67,117.89,0.89,0.65,788,0.8,195,2.8000000000000003
+2023,4,11,22,0,7.300000000000001,1.61,0.042,0.64,0,0,0,1,0,-0.7000000000000001,0,0,100,0,0.293,56.78,121.85000000000001,0.89,0.65,788,0.8,196,2.9000000000000004
+2023,4,11,22,30,7,1.61,0.042,0.64,0,0,0,0,0,-0.7000000000000001,0,0,14,0,0.293,57.95,125.22,0.89,0.65,788,0.8,197,3
+2023,4,11,23,0,6.7,1.57,0.041,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.293,59.620000000000005,127.9,0.89,0.65,788,0.9,198,3
+2023,4,11,23,30,6.4,1.57,0.041,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.292,60.78,129.77,0.9,0.65,787,0.9,200,2.9000000000000004
+2023,4,12,0,0,6.1000000000000005,1.53,0.043000000000000003,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,62.56,130.73,0.9,0.65,787,0.9,201,2.9000000000000004
+2023,4,12,0,30,5.7,1.53,0.043000000000000003,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,64.31,130.72,0.9,0.65,787,0.9,203,2.8000000000000003
+2023,4,12,1,0,5.4,1.5,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,66.01,129.75,0.91,0.65,787,0.9,205,2.7
+2023,4,12,1,30,4.9,1.5,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.292,68.34,127.88000000000001,0.91,0.65,787,0.9,207,2.6
+2023,4,12,2,0,4.5,1.51,0.05,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,69.99,125.19,0.91,0.65,786,0.9,210,2.5
+2023,4,12,2,30,4.3,1.51,0.05,0.64,0,0,0,0,0,-0.5,0,0,0,0,0.292,70.97,121.81,0.91,0.65,786,0.9,213,2.4000000000000004
+2023,4,12,3,0,4,1.53,0.053,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.292,71.74,117.85000000000001,0.91,0.65,786,0.9,216,2.4000000000000004
+2023,4,12,3,30,3.7,1.53,0.053,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.292,73.26,113.43,0.91,0.65,786,0.9,215,2.3000000000000003
+2023,4,12,4,0,3.4000000000000004,1.55,0.055,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.293,73.41,108.63,0.9,0.65,786,0.8,214,2.2
+2023,4,12,4,30,3.2,1.55,0.055,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.292,74.45,103.55,0.91,0.65,786,0.8,211,2.1
+2023,4,12,5,0,2.9000000000000004,1.53,0.058,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.292,74.42,98.25,0.91,0.65,786,0.7000000000000001,208,2.1
+2023,4,12,5,30,4.1000000000000005,1.53,0.058,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.292,68.4,92.78,0.91,0.65,786,0.7000000000000001,207,2.2
+2023,4,12,6,0,5.2,1.5,0.062,0.64,23,267,37,0,0,-0.5,23,267,0,37,0.291,66.45,87,0.91,0.65,786,0.7000000000000001,206,2.3000000000000003
+2023,4,12,6,30,7.800000000000001,1.5,0.062,0.64,42,548,124,0,0,-0.5,42,548,0,124,0.291,55.58,81.44,0.92,0.65,786,0.6000000000000001,207,3.2
+2023,4,12,7,0,10.3,1.48,0.063,0.64,56,702,229,0,0,-0.2,56,702,4,229,0.291,47.980000000000004,75.77,0.92,0.65,786,0.6000000000000001,209,4.1000000000000005
+2023,4,12,7,30,12.3,1.48,0.063,0.64,67,798,339,0,0,-0.2,70,790,0,339,0.29,42.04,70.09,0.92,0.65,786,0.6000000000000001,211,4.7
+2023,4,12,8,0,14.3,1.48,0.063,0.64,76,866,450,0,0,-1.4000000000000001,114,755,7,440,0.289,34,64.45,0.92,0.65,786,0.6000000000000001,212,5.300000000000001
+2023,4,12,8,30,15.8,1.48,0.063,0.64,84,912,555,0,7,-1.4000000000000001,191,648,18,526,0.289,30.88,58.910000000000004,0.92,0.65,786,0.6000000000000001,213,6.2
+2023,4,12,9,0,17.3,1.49,0.061,0.64,91,946,653,0,7,-3.9000000000000004,277,450,7,544,0.28800000000000003,23.22,53.53,0.92,0.65,785,0.6000000000000001,214,7.2
+2023,4,12,9,30,18,1.49,0.061,0.64,96,970,740,0,7,-3.9000000000000004,391,322,0,605,0.28700000000000003,22.22,48.410000000000004,0.91,0.65,785,0.6000000000000001,213,7.6000000000000005
+2023,4,12,10,0,18.7,1.51,0.059000000000000004,0.64,100,990,816,0,7,-4.1000000000000005,246,735,21,778,0.28700000000000003,20.990000000000002,43.64,0.91,0.65,785,0.6000000000000001,212,7.9
+2023,4,12,10,30,19.3,1.51,0.059000000000000004,0.64,103,1003,878,0,0,-4.1000000000000005,142,948,14,875,0.28600000000000003,20.22,39.39,0.91,0.65,785,0.6000000000000001,211,8.200000000000001
+2023,4,12,11,0,19.900000000000002,1.53,0.057,0.64,105,1011,924,0,7,-3.9000000000000004,137,966,36,920,0.28500000000000003,19.69,35.85,0.91,0.65,784,0.7000000000000001,210,8.4
+2023,4,12,11,30,20.3,1.53,0.057,0.64,107,1016,956,0,7,-3.9000000000000004,160,944,11,949,0.28500000000000003,19.21,33.28,0.91,0.65,784,0.7000000000000001,210,8.700000000000001
+2023,4,12,12,0,20.700000000000003,1.5,0.056,0.64,107,1019,972,0,7,-3.8000000000000003,261,794,29,935,0.28400000000000003,18.88,31.91,0.91,0.65,783,0.7000000000000001,210,8.9
+2023,4,12,12,30,20.900000000000002,1.5,0.056,0.64,109,1017,972,0,7,-3.8000000000000003,188,910,57,960,0.28400000000000003,18.650000000000002,31.91,0.92,0.65,783,0.7000000000000001,210,9.1
+2023,4,12,13,0,21,1.47,0.061,0.64,110,1012,956,0,7,-3.9000000000000004,220,862,50,941,0.28400000000000003,18.52,33.26,0.92,0.65,783,0.7000000000000001,211,9.200000000000001
+2023,4,12,13,30,20.700000000000003,1.47,0.061,0.64,110,1003,923,0,7,-3.9000000000000004,165,922,43,913,0.28300000000000003,18.84,35.83,0.93,0.65,782,0.7000000000000001,212,9.200000000000001
+2023,4,12,14,0,20.5,1.44,0.068,0.64,109,989,874,0,0,-3.8000000000000003,210,820,11,844,0.28300000000000003,19.19,39.35,0.93,0.65,782,0.7000000000000001,213,9.200000000000001
+2023,4,12,14,30,20.1,1.44,0.068,0.64,105,973,810,0,7,-3.8000000000000003,306,608,25,746,0.28300000000000003,19.67,43.6,0.93,0.65,782,0.8,213,9
+2023,4,12,15,0,19.6,1.43,0.068,0.64,100,954,734,0,7,-3.8000000000000003,198,673,50,645,0.28400000000000003,20.32,48.36,0.93,0.65,782,0.8,214,8.9
+2023,4,12,15,30,19,1.43,0.068,0.64,96,926,647,0,6,-3.8000000000000003,275,36,0,296,0.28300000000000003,21.07,53.480000000000004,0.93,0.65,781,0.8,213,8.5
+2023,4,12,16,0,18.3,1.41,0.073,0.64,90,889,550,0,7,-3.9000000000000004,220,432,25,443,0.28300000000000003,21.89,58.85,0.9400000000000001,0.65,781,0.8,213,8.1
+2023,4,12,16,30,17.2,1.41,0.073,0.64,82,841,446,0,7,-3.9000000000000004,154,423,36,337,0.28300000000000003,23.45,64.38,0.9400000000000001,0.65,781,0.7000000000000001,212,7.1000000000000005
+2023,4,12,17,0,16.1,1.3900000000000001,0.075,0.64,72,773,336,0,7,-3.2,160,170,0,218,0.28300000000000003,26.37,70.01,0.9400000000000001,0.65,781,0.7000000000000001,211,6.1000000000000005
+2023,4,12,17,30,14.5,1.3900000000000001,0.075,0.64,59,679,227,0,6,-3.2,118,138,18,152,0.28300000000000003,29.21,75.68,0.9400000000000001,0.65,781,0.7000000000000001,210,5.1000000000000005
+2023,4,12,18,0,12.9,1.3900000000000001,0.07,0.64,44,530,124,4,6,-1.7000000000000002,61,5,57,62,0.28300000000000003,36.24,81.34,0.9400000000000001,0.65,781,0.7000000000000001,208,4.1000000000000005
+2023,4,12,18,30,11.700000000000001,1.3900000000000001,0.07,0.64,23,257,37,7,6,-1.7000000000000002,19,0,100,19,0.28300000000000003,39.21,86.9,0.93,0.65,781,0.7000000000000001,207,3.6
+2023,4,12,19,0,10.5,1.3800000000000001,0.063,0.64,0,0,0,1,6,-0.9,0,0,14,0,0.28400000000000003,45.03,92.65,0.93,0.65,781,0.7000000000000001,206,3.2
+2023,4,12,19,30,9.700000000000001,1.3800000000000001,0.063,0.64,0,0,0,0,6,-0.9,0,0,0,0,0.28400000000000003,47.5,98.11,0.93,0.65,781,0.7000000000000001,205,3
+2023,4,12,20,0,8.8,1.3800000000000001,0.059000000000000004,0.64,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.28400000000000003,51.35,103.4,0.93,0.65,781,0.7000000000000001,204,2.7
+2023,4,12,20,30,8.4,1.3800000000000001,0.059000000000000004,0.64,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.28400000000000003,52.69,108.46000000000001,0.93,0.65,780,0.7000000000000001,206,2.8000000000000003
+2023,4,12,21,0,7.9,1.3800000000000001,0.059000000000000004,0.64,0,0,0,0,7,-0.8,0,0,0,0,0.28500000000000003,54.18,113.23,0.93,0.65,780,0.7000000000000001,207,2.8000000000000003
+2023,4,12,21,30,7.6000000000000005,1.3800000000000001,0.059000000000000004,0.64,0,0,0,0,0,-0.8,0,0,29,0,0.28500000000000003,55.300000000000004,117.63,0.93,0.65,780,0.7000000000000001,209,3
+2023,4,12,22,0,7.300000000000001,1.3800000000000001,0.058,0.64,0,0,0,1,0,-0.9,0,0,86,0,0.28600000000000003,56.11,121.56,0.93,0.65,780,0.8,210,3.1
+2023,4,12,22,30,6.9,1.3800000000000001,0.058,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.28600000000000003,57.660000000000004,124.91,0.92,0.65,780,0.8,210,3.3000000000000003
+2023,4,12,23,0,6.4,1.3800000000000001,0.054,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.28600000000000003,59.71,127.57000000000001,0.92,0.65,780,0.8,210,3.4000000000000004
+2023,4,12,23,30,6,1.3800000000000001,0.054,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.28700000000000003,61.370000000000005,129.42000000000002,0.91,0.65,780,0.8,210,3.7
+2023,4,13,0,0,5.6000000000000005,1.3800000000000001,0.05,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.28700000000000003,64.22,130.37,0.91,0.65,780,0.8,210,3.9000000000000004
+2023,4,13,0,30,5.1000000000000005,1.3800000000000001,0.05,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.28800000000000003,66.48,130.35,0.91,0.65,780,0.8,210,3.9000000000000004
+2023,4,13,1,0,4.7,1.35,0.047,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.28800000000000003,69.58,129.38,0.91,0.65,780,0.8,209,4
+2023,4,13,1,30,4.2,1.35,0.047,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.289,71.96000000000001,127.51,0.91,0.65,779,0.8,208,3.8000000000000003
+2023,4,13,2,0,3.7,1.33,0.046,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.289,74.62,124.83,0.91,0.65,779,0.7000000000000001,206,3.6
+2023,4,13,2,30,3.2,1.33,0.046,0.64,0,0,0,0,7,-0.4,0,0,0,0,0.29,77.29,121.46000000000001,0.91,0.65,779,0.7000000000000001,202,3.4000000000000004
+2023,4,13,3,0,2.8000000000000003,1.32,0.046,0.64,0,0,0,0,7,-0.5,0,0,0,0,0.292,78.91,117.51,0.91,0.65,779,0.7000000000000001,199,3.3000000000000003
+2023,4,13,3,30,2.4000000000000004,1.32,0.046,0.64,0,0,0,0,7,-0.5,0,0,0,0,0.293,81.18,113.10000000000001,0.91,0.65,779,0.7000000000000001,195,3.1
+2023,4,13,4,0,1.9000000000000001,1.31,0.048,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.294,84.8,108.32000000000001,0.91,0.65,778,0.7000000000000001,191,3
+2023,4,13,4,30,1.5,1.31,0.048,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.295,87.25,103.25,0.91,0.65,778,0.7000000000000001,187,2.8000000000000003
+2023,4,13,5,0,1.1,1.32,0.049,0.64,0,0,0,0,7,-0.1,0,0,0,0,0.297,91.97,97.95,0.91,0.65,778,0.7000000000000001,184,2.6
+2023,4,13,5,30,2.2,1.32,0.049,0.64,0,0,0,1,7,-0.1,0,0,14,0,0.299,85.02,92.49,0.91,0.65,778,0.7000000000000001,184,2.8000000000000003
+2023,4,13,6,0,3.4000000000000004,1.33,0.051000000000000004,0.64,23,297,40,6,7,0.7000000000000001,25,45,89,28,0.3,82.25,86.72,0.91,0.65,778,0.7000000000000001,184,3.1
+2023,4,13,6,30,5.300000000000001,1.33,0.051000000000000004,0.64,40,571,128,2,7,0.7000000000000001,65,126,21,84,0.303,72.02,81.16,0.91,0.65,778,0.7000000000000001,188,3.7
+2023,4,13,7,0,7.300000000000001,1.32,0.055,0.64,54,714,233,0,7,1.3,107,375,7,201,0.305,65.56,75.49,0.91,0.65,778,0.7000000000000001,191,4.3
+2023,4,13,7,30,9.200000000000001,1.32,0.055,0.64,65,802,342,0,7,1.3,162,398,0,299,0.307,57.57,69.81,0.92,0.65,777,0.7000000000000001,198,5.300000000000001
+2023,4,13,8,0,11.200000000000001,1.3,0.061,0.64,76,857,450,0,7,0,219,254,0,330,0.309,45.910000000000004,64.16,0.92,0.65,777,0.8,205,6.4
+2023,4,13,8,30,12.4,1.3,0.061,0.64,86,894,552,0,7,0,264,329,7,435,0.31,42.42,58.620000000000005,0.93,0.65,777,0.8,210,7
+2023,4,13,9,0,13.600000000000001,1.29,0.075,0.64,98,918,648,0,7,-2.1,212,559,21,547,0.311,33.74,53.230000000000004,0.93,0.65,777,0.8,216,7.6000000000000005
+2023,4,13,9,30,14.200000000000001,1.29,0.075,0.64,107,938,734,0,7,-2.1,211,730,11,699,0.312,32.45,48.09,0.9400000000000001,0.65,777,0.8,218,7.9
+2023,4,13,10,0,14.700000000000001,1.28,0.08600000000000001,0.64,116,950,807,0,0,-2.9000000000000004,187,784,4,757,0.313,29.48,43.31,0.9400000000000001,0.65,777,0.9,220,8.1
+2023,4,13,10,30,14.8,1.28,0.08600000000000001,0.64,119,964,868,4,7,-2.9000000000000004,348,532,50,761,0.313,29.29,39.050000000000004,0.9400000000000001,0.65,777,0.9,221,8.200000000000001
+2023,4,13,11,0,14.8,1.43,0.08600000000000001,0.64,123,974,916,3,7,-3,363,539,46,802,0.314,29.080000000000002,35.5,0.9500000000000001,0.65,777,0.9,221,8.200000000000001
+2023,4,13,11,30,14.700000000000001,1.43,0.08600000000000001,0.64,128,976,947,0,7,-3,400,524,7,840,0.314,29.27,32.910000000000004,0.9500000000000001,0.65,777,1,222,8.200000000000001
+2023,4,13,12,0,14.5,1.41,0.095,0.64,132,974,962,0,7,-2.7,518,364,0,828,0.314,30.330000000000002,31.54,0.9500000000000001,0.65,777,1,223,8.3
+2023,4,13,12,30,14.100000000000001,1.41,0.095,0.64,134,969,960,0,7,-2.7,330,679,21,909,0.314,31.12,31.55,0.9500000000000001,0.65,777,1,225,8.200000000000001
+2023,4,13,13,0,13.600000000000001,1.3900000000000001,0.105,0.64,137,960,943,0,7,-1.8,421,479,14,823,0.315,34.38,32.93,0.96,0.65,777,1,227,8.200000000000001
+2023,4,13,13,30,12.8,1.3900000000000001,0.105,0.64,136,950,909,0,7,-1.8,496,330,0,765,0.316,36.21,35.52,0.96,0.65,777,1.1,229,7.9
+2023,4,13,14,0,12,1.46,0.108,0.64,132,937,859,0,7,-0.5,394,497,0,780,0.316,42.12,39.08,0.96,0.65,777,1.1,232,7.7
+2023,4,13,14,30,11.100000000000001,1.46,0.108,0.64,130,916,796,0,7,-0.5,394,446,0,718,0.318,44.75,43.35,0.96,0.65,778,1.1,234,7.2
+2023,4,13,15,0,10.100000000000001,1.45,0.11800000000000001,0.64,126,889,719,0,7,0.8,341,471,11,655,0.319,52.6,48.13,0.96,0.65,778,1.2000000000000002,237,6.7
+2023,4,13,15,30,9.3,1.45,0.11800000000000001,0.64,120,854,631,0,7,0.8,252,439,29,515,0.321,55.49,53.27,0.96,0.65,778,1.2000000000000002,238,6
+2023,4,13,16,0,8.4,1.43,0.13,0.64,114,807,534,0,7,1.7000000000000002,288,182,0,383,0.323,62.67,58.65,0.96,0.65,778,1.2000000000000002,240,5.300000000000001
+2023,4,13,16,30,7.6000000000000005,1.43,0.13,0.64,106,745,430,0,7,1.7000000000000002,259,189,0,341,0.325,66.16,64.19,0.97,0.65,778,1.2000000000000002,241,4.6000000000000005
+2023,4,13,17,0,6.800000000000001,1.3900000000000001,0.146,0.64,95,658,322,0,7,2.1,190,207,7,261,0.327,71.93,69.83,0.97,0.65,779,1.2000000000000002,242,3.9000000000000004
+2023,4,13,17,30,5.9,1.3900000000000001,0.146,0.64,80,541,215,0,7,2.1,132,34,0,141,0.328,76.52,75.5,0.97,0.65,779,1.2000000000000002,246,3.1
+2023,4,13,18,0,5,1.35,0.165,0.64,57,368,114,3,7,2.2,66,5,43,67,0.328,82.36,81.16,0.97,0.65,779,1.2000000000000002,250,2.4000000000000004
+2023,4,13,18,30,4.3,1.35,0.165,0.64,26,139,34,7,6,2.2,13,0,100,13,0.329,86.48,86.71000000000001,0.97,0.65,779,1.2000000000000002,263,1.9000000000000001
+2023,4,13,19,0,3.7,1.33,0.17200000000000001,0.64,0,0,0,1,6,1.5,0,0,14,0,0.33,85.54,92.46000000000001,0.97,0.65,780,1.1,277,1.5
+2023,4,13,19,30,3,1.33,0.17200000000000001,0.64,0,0,0,0,7,1.5,0,0,0,0,0.331,89.86,97.91,0.97,0.65,780,1.1,302,1.5
+2023,4,13,20,0,2.4000000000000004,1.31,0.17,0.64,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.332,85.92,103.18,0.97,0.65,780,1.1,326,1.5
+2023,4,13,20,30,1.9000000000000001,1.31,0.17,0.64,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.333,89.04,108.23,0.97,0.65,780,1,341,1.9000000000000001
+2023,4,13,21,0,1.4000000000000001,1.3,0.16,0.64,0,0,0,0,7,-1.8,0,0,0,0,0.335,79.26,112.99000000000001,0.97,0.65,780,1,357,2.4000000000000004
+2023,4,13,21,30,0.9,1.3,0.16,0.64,0,0,0,0,7,-1.8,0,0,29,0,0.336,82.16,117.37,0.97,0.65,780,1,186,2.8000000000000003
+2023,4,13,22,0,0.30000000000000004,1.28,0.154,0.64,0,0,0,1,6,-3.7,0,0,86,0,0.337,74.75,121.28,0.97,0.65,781,0.9,15,3.2
+2023,4,13,22,30,-0.2,1.28,0.154,0.64,0,0,0,0,6,-3.7,0,0,0,0,0.337,77.41,124.61,0.97,0.65,780,0.9,18,3.4000000000000004
+2023,4,13,23,0,-0.7000000000000001,1.26,0.151,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.337,71.71000000000001,127.25,0.97,0.65,780,0.9,22,3.6
+2023,4,13,23,30,-1.2000000000000002,1.26,0.151,0.64,0,0,0,0,7,-5.2,0,0,0,0,0.336,74.48,129.08,0.97,0.65,781,0.9,20,3.6
+2023,4,14,0,0,-1.8,1.22,0.14400000000000002,0.64,0,0,0,0,7,-6,0,0,0,0,0.335,73.15,130.01,0.97,0.65,781,0.9,18,3.6
+2023,4,14,0,30,-2.2,1.22,0.14400000000000002,0.64,0,0,0,0,7,-6,0,0,0,0,0.335,75.34,129.99,0.97,0.65,781,0.9,15,3.6
+2023,4,14,1,0,-2.7,1.2,0.132,0.64,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.334,76.18,129.02,0.97,0.65,781,0.8,11,3.6
+2023,4,14,1,30,-2.9000000000000004,1.2,0.132,0.64,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.334,77.32000000000001,127.15,0.96,0.65,781,0.8,13,3.5
+2023,4,14,2,0,-3.2,1.22,0.13,0.64,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.335,77.12,124.48,0.96,0.65,781,0.8,15,3.4000000000000004
+2023,4,14,2,30,-3.3000000000000003,1.22,0.13,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.337,77.59,121.12,0.96,0.65,780,0.8,17,3
+2023,4,14,3,0,-3.5,1.24,0.125,0.64,0,0,0,0,6,-6.9,0,0,0,0,0.339,77.38,117.18,0.96,0.65,780,0.8,18,2.7
+2023,4,14,3,30,-3.7,1.24,0.125,0.64,0,0,0,0,6,-6.9,0,0,0,0,0.342,78.55,112.78,0.96,0.65,780,0.8,11,2
+2023,4,14,4,0,-3.9000000000000004,1.21,0.116,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.34600000000000003,80.98,108.01,0.96,0.65,780,0.7000000000000001,4,1.4000000000000001
+2023,4,14,4,30,-4,1.21,0.116,0.64,0,0,0,0,6,-6.7,0,0,0,0,0.35000000000000003,81.59,102.95,0.96,0.65,780,0.7000000000000001,174,1.2000000000000002
+2023,4,14,5,0,-4.1000000000000005,1.16,0.12,0.64,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.355,82.91,97.66,0.96,0.65,780,0.7000000000000001,344,1
+2023,4,14,5,30,-3.6,1.16,0.12,0.64,0,0,0,2,7,-6.6000000000000005,0,0,29,0,0.358,79.86,92.2,0.96,0.65,780,0.7000000000000001,342,1.3
+2023,4,14,6,0,-3,1.1300000000000001,0.129,0.64,28,179,39,7,7,-6.7,17,0,100,17,0.361,75.54,86.45,0.96,0.65,781,0.7000000000000001,340,1.6
+2023,4,14,6,30,-2.1,1.1300000000000001,0.129,0.64,57,424,124,2,7,-6.7,77,16,29,80,0.363,70.67,80.88,0.96,0.65,781,0.7000000000000001,341,1.5
+2023,4,14,7,0,-1.2000000000000002,1.12,0.136,0.64,79,580,227,0,7,-6.7,132,24,0,138,0.365,66.38,75.21000000000001,0.96,0.65,781,0.7000000000000001,341,1.5
+2023,4,14,7,30,-0.30000000000000004,1.12,0.136,0.64,95,691,337,0,6,-6.7,177,35,0,189,0.365,62.160000000000004,69.53,0.9500000000000001,0.65,781,0.7000000000000001,328,1.3
+2023,4,14,8,0,0.6000000000000001,1.11,0.132,0.64,108,769,447,0,7,-6.4,254,91,0,294,0.365,59.36,63.88,0.9500000000000001,0.65,781,0.6000000000000001,315,1.1
+2023,4,14,8,30,1.5,1.11,0.132,0.64,118,829,553,0,6,-6.4,242,20,0,253,0.365,55.65,58.33,0.9500000000000001,0.65,781,0.6000000000000001,294,1.2000000000000002
+2023,4,14,9,0,2.4000000000000004,1.1,0.121,0.64,125,875,652,0,6,-6,329,156,0,423,0.364,53.75,52.94,0.9500000000000001,0.65,781,0.6000000000000001,274,1.3
+2023,4,14,9,30,3.3000000000000003,1.1,0.121,0.64,131,906,740,0,7,-6,432,105,0,503,0.365,50.43,47.79,0.9400000000000001,0.65,781,0.6000000000000001,265,1.6
+2023,4,14,10,0,4.2,1.08,0.115,0.64,134,932,816,0,7,-6.1000000000000005,495,197,0,639,0.365,46.93,42.99,0.9400000000000001,0.65,781,0.6000000000000001,256,1.9000000000000001
+2023,4,14,10,30,4.9,1.08,0.115,0.64,139,951,881,0,7,-6.1000000000000005,513,216,0,682,0.365,44.7,38.71,0.9400000000000001,0.65,781,0.6000000000000001,252,2.2
+2023,4,14,11,0,5.6000000000000005,1.03,0.109,0.64,141,966,931,0,7,-6.4,531,154,0,657,0.365,41.89,35.14,0.9400000000000001,0.65,781,0.6000000000000001,247,2.5
+2023,4,14,11,30,6.1000000000000005,1.03,0.109,0.64,142,976,965,0,6,-6.4,565,139,0,682,0.365,40.47,32.55,0.9400000000000001,0.65,781,0.6000000000000001,244,2.8000000000000003
+2023,4,14,12,0,6.6000000000000005,1,0.101,0.64,139,985,982,0,7,-6.5,522,388,0,854,0.364,38.6,31.18,0.93,0.65,781,0.5,241,3.2
+2023,4,14,12,30,6.7,1,0.101,0.64,138,987,982,0,7,-6.5,243,830,18,953,0.364,38.34,31.2,0.93,0.65,781,0.5,240,3.5
+2023,4,14,13,0,6.9,0.99,0.095,0.64,134,986,965,0,0,-6.7,280,683,0,855,0.363,37.31,32.6,0.93,0.65,781,0.5,238,3.8000000000000003
+2023,4,14,13,30,6.7,0.99,0.095,0.64,139,968,930,0,4,-6.7,537,79,0,602,0.364,37.87,35.22,0.9400000000000001,0.65,782,0.6000000000000001,240,4
+2023,4,14,14,0,6.5,0.81,0.117,0.64,145,942,879,0,4,-6.7,567,117,0,658,0.364,38.34,38.81,0.9400000000000001,0.65,782,0.6000000000000001,242,4.2
+2023,4,14,14,30,6.1000000000000005,0.81,0.117,0.64,140,922,813,0,4,-6.7,483,254,0,668,0.364,39.410000000000004,43.1,0.9400000000000001,0.65,782,0.6000000000000001,249,4.2
+2023,4,14,15,0,5.6000000000000005,0.81,0.122,0.64,135,897,736,0,5,-6.6000000000000005,341,488,11,668,0.365,41.230000000000004,47.910000000000004,0.9400000000000001,0.65,782,0.6000000000000001,257,4.2
+2023,4,14,15,30,4.9,0.81,0.122,0.64,127,866,647,0,4,-6.6000000000000005,410,71,0,453,0.365,43.29,53.06,0.9400000000000001,0.65,782,0.6000000000000001,269,4.2
+2023,4,14,16,0,4.2,0.8200000000000001,0.124,0.64,118,823,549,0,4,-6.2,285,339,11,462,0.366,46.71,58.45,0.9400000000000001,0.65,783,0.6000000000000001,282,4.2
+2023,4,14,16,30,3.4000000000000004,0.8200000000000001,0.124,0.64,107,766,443,0,0,-6.2,111,758,4,443,0.367,49.410000000000004,64,0.9400000000000001,0.65,783,0.6000000000000001,295,4.2
+2023,4,14,17,0,2.6,0.86,0.13,0.64,94,686,333,0,0,-6,135,494,0,307,0.368,53.230000000000004,69.64,0.9400000000000001,0.65,784,0.6000000000000001,307,4.3
+2023,4,14,17,30,1.6,0.86,0.13,0.64,78,578,224,0,4,-6,126,232,0,185,0.369,57.160000000000004,75.32000000000001,0.9400000000000001,0.65,784,0.6000000000000001,317,4
+2023,4,14,18,0,0.7000000000000001,0.9,0.128,0.64,57,417,122,0,0,-5.800000000000001,57,417,0,122,0.37,61.660000000000004,80.97,0.9400000000000001,0.65,785,0.6000000000000001,327,3.7
+2023,4,14,18,30,0,0.9,0.128,0.64,28,168,38,0,0,-5.800000000000001,28,168,0,38,0.371,64.86,86.53,0.9400000000000001,0.65,785,0.5,332,3.2
+2023,4,14,19,0,-0.7000000000000001,0.9400000000000001,0.11900000000000001,0.64,0,0,0,0,7,-5.7,0,0,7,0,0.373,68.76,92.26,0.9400000000000001,0.65,786,0.5,336,2.7
+2023,4,14,19,30,-1.1,0.9400000000000001,0.11900000000000001,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.374,70.89,97.7,0.93,0.65,787,0.5,334,2.1
+2023,4,14,20,0,-1.5,0.96,0.109,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.376,73.33,102.97,0.93,0.65,787,0.5,331,1.5
+2023,4,14,20,30,-1.8,0.96,0.109,0.64,0,0,0,0,7,-5.7,0,0,0,0,0.377,74.97,108,0.93,0.65,787,0.5,326,1.2000000000000002
+2023,4,14,21,0,-2.1,0.96,0.10300000000000001,0.64,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.378,75.9,112.74000000000001,0.93,0.65,788,0.5,320,0.9
+2023,4,14,21,30,-2.3000000000000003,0.96,0.10300000000000001,0.64,0,0,0,0,0,-5.800000000000001,0,0,14,0,0.379,77.03,117.10000000000001,0.92,0.65,788,0.4,311,0.9
+2023,4,14,22,0,-2.5,0.93,0.10200000000000001,0.64,0,0,0,1,7,-6.2,0,0,71,0,0.38,75.89,120.99000000000001,0.92,0.65,788,0.4,303,0.8
+2023,4,14,22,30,-2.9000000000000004,0.93,0.10200000000000001,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.382,78.17,124.31,0.92,0.65,788,0.4,297,0.9
+2023,4,14,23,0,-3.3000000000000003,0.89,0.1,0.64,0,0,0,0,7,-7,0,0,0,0,0.383,75.85000000000001,126.92,0.91,0.65,788,0.4,292,1
+2023,4,14,23,30,-3.7,0.89,0.1,0.64,0,0,0,0,0,-6.9,0,0,0,0,0.384,78.25,128.74,0.91,0.65,789,0.4,291,1
+2023,4,15,0,0,-4.2,0.8300000000000001,0.098,0.64,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.385,75.88,129.65,0.91,0.65,789,0.4,290,1.1
+2023,4,15,0,30,-4.5,0.8300000000000001,0.098,0.64,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.384,77.61,129.63,0.91,0.65,789,0.4,289,1.1
+2023,4,15,1,0,-4.9,0.8,0.097,0.64,0,0,0,0,0,-8.5,0,0,0,0,0.384,75.99,128.65,0.91,0.65,789,0.4,289,1.1
+2023,4,15,1,30,-5.2,0.8,0.097,0.64,0,0,0,0,0,-8.5,0,0,0,0,0.383,77.73,126.79,0.91,0.65,789,0.4,290,1.1
+2023,4,15,2,0,-5.5,0.77,0.095,0.64,0,0,0,0,0,-8.9,0,0,0,0,0.382,76.8,124.12,0.91,0.65,790,0.4,291,1.1
+2023,4,15,2,30,-5.9,0.77,0.095,0.64,0,0,0,0,0,-8.9,0,0,0,0,0.379,79.18,120.77,0.91,0.65,790,0.30000000000000004,292,1.1
+2023,4,15,3,0,-6.2,0.75,0.094,0.64,0,0,0,0,0,-9.3,0,0,0,0,0.377,78.75,116.85000000000001,0.91,0.65,790,0.30000000000000004,294,1
+2023,4,15,3,30,-6.4,0.75,0.094,0.64,0,0,0,0,4,-9.3,0,0,0,0,0.375,80.06,112.46000000000001,0.91,0.65,791,0.30000000000000004,294,1
+2023,4,15,4,0,-6.6000000000000005,0.74,0.095,0.64,0,0,0,0,0,-9.4,0,0,29,0,0.372,80.44,107.7,0.91,0.65,791,0.30000000000000004,294,1
+2023,4,15,4,30,-6.800000000000001,0.74,0.095,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.37,81.69,102.65,0.91,0.65,791,0.30000000000000004,293,0.9
+2023,4,15,5,0,-6.9,0.74,0.096,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.368,82.35000000000001,97.37,0.91,0.65,792,0.30000000000000004,293,0.9
+2023,4,15,5,30,-5.9,0.74,0.096,0.64,2,10,2,0,0,-9.4,2,10,0,2,0.366,76.29,91.92,0.91,0.65,792,0.30000000000000004,294,1.2000000000000002
+2023,4,15,6,0,-4.9,0.74,0.095,0.64,30,240,46,0,0,-9.1,30,240,0,46,0.364,72.55,86.17,0.91,0.65,792,0.30000000000000004,295,1.4000000000000001
+2023,4,15,6,30,-3.3000000000000003,0.74,0.095,0.64,52,506,135,0,0,-9.1,52,506,0,135,0.362,64.34,80.60000000000001,0.91,0.65,792,0.30000000000000004,310,2.2
+2023,4,15,7,0,-1.7000000000000002,0.76,0.093,0.64,68,668,242,0,0,-9.5,68,668,0,242,0.36,55.13,74.93,0.9,0.65,793,0.30000000000000004,324,2.9000000000000004
+2023,4,15,7,30,-0.7000000000000001,0.76,0.093,0.64,82,770,355,0,0,-9.5,82,770,0,355,0.358,51.24,69.25,0.9,0.65,793,0.30000000000000004,329,3.1
+2023,4,15,8,0,0.4,0.77,0.092,0.64,94,840,467,0,0,-10.600000000000001,94,840,0,467,0.357,43.57,63.6,0.9,0.65,793,0.30000000000000004,334,3.3000000000000003
+2023,4,15,8,30,1.2000000000000002,0.77,0.092,0.64,103,890,574,0,0,-10.600000000000001,103,890,0,574,0.357,41.19,58.04,0.9,0.65,794,0.30000000000000004,334,3
+2023,4,15,9,0,2,0.79,0.092,0.64,111,926,673,0,0,-10.9,258,587,0,614,0.356,37.78,52.64,0.9,0.65,794,0.30000000000000004,333,2.8000000000000003
+2023,4,15,9,30,2.7,0.79,0.092,0.64,119,953,763,0,4,-10.9,265,452,0,570,0.355,35.95,47.480000000000004,0.91,0.65,794,0.30000000000000004,331,2.6
+2023,4,15,10,0,3.5,0.81,0.092,0.64,125,974,841,0,0,-11.200000000000001,207,722,0,738,0.355,33.1,42.67,0.91,0.65,794,0.30000000000000004,328,2.4000000000000004
+2023,4,15,10,30,4.2,0.81,0.092,0.64,133,983,904,0,0,-11.200000000000001,249,783,0,863,0.35100000000000003,31.51,38.37,0.91,0.65,794,0.30000000000000004,323,2.3000000000000003
+2023,4,15,11,0,4.9,0.72,0.10400000000000001,0.64,140,987,951,0,0,-11.600000000000001,214,865,7,924,0.34800000000000003,29.23,34.79,0.91,0.65,794,0.30000000000000004,319,2.2
+2023,4,15,11,30,5.6000000000000005,0.72,0.10400000000000001,0.64,143,994,984,0,0,-11.600000000000001,143,994,7,984,0.34500000000000003,27.85,32.19,0.91,0.65,794,0.30000000000000004,312,2.2
+2023,4,15,12,0,6.2,0.75,0.10300000000000001,0.64,144,998,1001,0,0,-11.8,144,998,0,1001,0.342,26.19,30.82,0.91,0.65,794,0.30000000000000004,306,2.1
+2023,4,15,12,30,6.7,0.75,0.10300000000000001,0.64,143,999,1001,0,0,-11.8,163,968,0,994,0.34,25.310000000000002,30.85,0.91,0.65,794,0.30000000000000004,300,2.2
+2023,4,15,13,0,7.2,0.76,0.10200000000000001,0.64,142,996,984,0,0,-11.9,142,996,0,984,0.339,24.23,32.28,0.91,0.65,794,0.30000000000000004,294,2.2
+2023,4,15,13,30,7.5,0.76,0.10200000000000001,0.64,141,986,949,0,0,-11.9,141,986,0,949,0.337,23.740000000000002,34.93,0.91,0.65,794,0.30000000000000004,290,2.2
+2023,4,15,14,0,7.9,0.7000000000000001,0.108,0.64,140,970,899,0,0,-12.100000000000001,140,970,0,899,0.336,22.8,38.54,0.91,0.65,794,0.30000000000000004,286,2.3000000000000003
+2023,4,15,14,30,8,0.7000000000000001,0.108,0.64,134,956,835,0,0,-12.100000000000001,134,956,0,835,0.334,22.64,42.86,0.91,0.65,794,0.30000000000000004,285,2.2
+2023,4,15,15,0,8.1,0.73,0.10400000000000001,0.64,127,936,757,0,0,-12.4,127,936,0,757,0.332,22.02,47.68,0.91,0.65,794,0.30000000000000004,283,2.2
+2023,4,15,15,30,8,0.73,0.10400000000000001,0.64,118,908,666,0,0,-12.4,118,908,0,666,0.329,22.17,52.85,0.91,0.65,794,0.4,282,2.1
+2023,4,15,16,0,7.9,0.75,0.099,0.64,107,873,566,0,0,-12.5,107,873,0,566,0.327,22,58.26,0.91,0.65,794,0.4,281,2
+2023,4,15,16,30,7.4,0.75,0.099,0.64,96,825,460,0,0,-12.5,96,825,0,460,0.324,22.76,63.81,0.91,0.65,794,0.4,277,1.6
+2023,4,15,17,0,6.9,0.78,0.094,0.64,83,758,349,0,0,-11.4,83,758,0,349,0.32,25.75,69.46000000000001,0.91,0.65,794,0.4,273,1.2000000000000002
+2023,4,15,17,30,5.6000000000000005,0.78,0.094,0.64,69,656,237,0,0,-11.4,69,656,0,237,0.316,28.16,75.13,0.91,0.65,794,0.4,221,0.8
+2023,4,15,18,0,4.3,0.8300000000000001,0.091,0.64,51,500,131,0,0,-8,51,500,0,131,0.312,40.25,80.79,0.91,0.65,794,0.4,169,0.30000000000000004
+2023,4,15,18,30,3.2,0.8300000000000001,0.091,0.64,28,234,43,5,7,-8,32,96,75,38,0.31,43.49,86.35000000000001,0.91,0.65,794,0.4,150,0.6000000000000001
+2023,4,15,19,0,2,0.86,0.089,0.64,1,5,1,2,7,-9.700000000000001,0,0,29,0,0.307,41.53,92.07000000000001,0.91,0.65,795,0.4,131,0.9
+2023,4,15,19,30,1.2000000000000002,0.86,0.089,0.64,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.307,43.980000000000004,97.5,0.91,0.65,795,0.4,132,1.1
+2023,4,15,20,0,0.4,0.86,0.08700000000000001,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.307,47.2,102.75,0.91,0.65,795,0.4,133,1.2000000000000002
+2023,4,15,20,30,-0.2,0.86,0.08700000000000001,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.307,49.300000000000004,107.77,0.91,0.65,795,0.4,136,1.3
+2023,4,15,21,0,-0.9,0.87,0.08600000000000001,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.307,51.54,112.5,0.91,0.65,796,0.4,140,1.3
+2023,4,15,21,30,-1.4000000000000001,0.87,0.08600000000000001,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.307,53.46,116.84,0.91,0.65,796,0.4,144,1.3
+2023,4,15,22,0,-2,0.88,0.084,0.64,0,0,0,0,0,-9.8,0,0,43,0,0.307,55.230000000000004,120.71000000000001,0.91,0.65,796,0.4,149,1.3
+2023,4,15,22,30,-2.5,0.88,0.084,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.306,57.31,124,0.91,0.65,796,0.4,152,1.4000000000000001
+2023,4,15,23,0,-3,0.9,0.081,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.306,58.910000000000004,126.60000000000001,0.9,0.65,796,0.4,155,1.4000000000000001
+2023,4,15,23,30,-3.4000000000000004,0.9,0.081,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.305,60.69,128.4,0.9,0.65,796,0.4,157,1.4000000000000001
+2023,4,16,0,0,-3.7,0.9400000000000001,0.079,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.305,62.07,129.3,0.9,0.65,795,0.4,159,1.4000000000000001
+2023,4,16,0,30,-3.9000000000000004,0.9400000000000001,0.079,0.64,0,0,0,0,0,-9.9,0,0,0,0,0.304,63,129.27,0.9,0.65,795,0.4,159,1.4000000000000001
+2023,4,16,1,0,-4.2,0.97,0.077,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.304,65.06,128.29,0.9,0.65,795,0.4,159,1.4000000000000001
+2023,4,16,1,30,-4.3,0.97,0.077,0.64,0,0,0,0,0,-9.8,0,0,0,0,0.303,65.55,126.43,0.9,0.65,795,0.4,160,1.3
+2023,4,16,2,0,-4.5,1,0.075,0.64,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.302,67.1,123.77,0.9,0.65,795,0.4,161,1.3
+2023,4,16,2,30,-4.6000000000000005,1,0.075,0.64,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.302,67.61,120.43,0.9,0.65,795,0.4,163,1.3
+2023,4,16,3,0,-4.7,1.04,0.073,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.301,68.53,116.52,0.9,0.65,795,0.5,164,1.3
+2023,4,16,3,30,-4.7,1.04,0.073,0.64,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.301,68.53,112.15,0.9,0.65,795,0.5,166,1.3
+2023,4,16,4,0,-4.800000000000001,1.08,0.07200000000000001,0.64,0,0,0,0,0,-9.5,0,0,0,0,0.3,69.55,107.4,0.91,0.65,795,0.5,167,1.2000000000000002
+2023,4,16,4,30,-4.800000000000001,1.08,0.07200000000000001,0.64,0,0,0,0,0,-9.5,0,0,0,0,0.3,69.55,102.35000000000001,0.91,0.65,795,0.5,169,1.2000000000000002
+2023,4,16,5,0,-4.800000000000001,1.11,0.07100000000000001,0.64,0,0,0,0,0,-9.4,0,0,0,0,0.299,70.33,97.08,0.91,0.65,795,0.5,171,1.2000000000000002
+2023,4,16,5,30,-3.5,1.11,0.07100000000000001,0.64,3,21,2,0,0,-9.4,3,21,0,2,0.298,63.79,91.63,0.91,0.65,795,0.5,173,1.4000000000000001
+2023,4,16,6,0,-2.2,1.1300000000000001,0.069,0.64,29,322,52,0,0,-8.700000000000001,29,322,0,52,0.298,60.870000000000005,85.91,0.91,0.65,795,0.5,175,1.6
+2023,4,16,6,30,-0.6000000000000001,1.1300000000000001,0.069,0.64,47,570,143,0,0,-8.700000000000001,47,570,0,143,0.298,54.14,80.33,0.91,0.65,795,0.5,178,1.8
+2023,4,16,7,0,1,1.1500000000000001,0.067,0.64,61,715,250,0,0,-8.5,61,715,0,250,0.297,49.25,74.66,0.91,0.65,795,0.5,182,2
+2023,4,16,7,30,3.2,1.1500000000000001,0.067,0.64,72,807,361,0,0,-8.5,72,807,0,361,0.297,42.11,68.98,0.9,0.65,795,0.5,202,2.3000000000000003
+2023,4,16,8,0,5.4,1.16,0.065,0.64,80,871,471,0,0,-9,80,871,0,471,0.296,34.52,63.33,0.9,0.65,795,0.5,222,2.7
+2023,4,16,8,30,6.6000000000000005,1.16,0.065,0.64,87,916,576,0,0,-9,87,916,0,576,0.296,31.78,57.76,0.9,0.65,795,0.5,230,2.7
+2023,4,16,9,0,7.800000000000001,1.16,0.063,0.64,94,949,674,0,0,-8.8,94,949,0,674,0.296,29.79,52.35,0.9,0.65,795,0.5,237,2.7
+2023,4,16,9,30,8.8,1.16,0.063,0.64,99,972,760,0,0,-8.8,99,972,0,760,0.296,27.84,47.18,0.9,0.65,795,0.5,238,2.7
+2023,4,16,10,0,9.8,1.1500000000000001,0.062,0.64,104,990,836,0,0,-8.4,104,990,0,836,0.296,26.810000000000002,42.36,0.9,0.65,795,0.5,240,2.6
+2023,4,16,10,30,10.600000000000001,1.1500000000000001,0.062,0.64,103,1009,898,0,0,-8.4,103,1009,0,898,0.296,25.42,38.04,0.9,0.65,795,0.6000000000000001,238,2.6
+2023,4,16,11,0,11.5,1.7,0.046,0.64,98,1028,946,0,0,-7.9,98,1028,0,946,0.297,24.990000000000002,34.45,0.89,0.65,795,0.6000000000000001,236,2.7
+2023,4,16,11,30,12.100000000000001,1.7,0.046,0.64,100,1033,978,0,0,-7.9,100,1033,0,978,0.298,24,31.830000000000002,0.89,0.65,794,0.6000000000000001,233,2.8000000000000003
+2023,4,16,12,0,12.700000000000001,1.67,0.047,0.64,101,1035,993,0,0,-7.4,101,1035,0,993,0.298,24.02,30.46,0.89,0.65,794,0.6000000000000001,230,2.9000000000000004
+2023,4,16,12,30,13.100000000000001,1.67,0.047,0.64,101,1034,992,0,0,-7.4,101,1034,0,992,0.299,23.400000000000002,30.5,0.89,0.65,794,0.6000000000000001,228,3
+2023,4,16,13,0,13.600000000000001,1.6400000000000001,0.048,0.64,101,1029,974,0,0,-7,101,1029,0,974,0.3,23.25,31.95,0.89,0.65,793,0.6000000000000001,226,3.1
+2023,4,16,13,30,13.8,1.6400000000000001,0.048,0.64,102,1018,940,0,0,-7,102,1018,0,940,0.3,22.96,34.63,0.9,0.65,793,0.6000000000000001,224,3.3000000000000003
+2023,4,16,14,0,14,1.25,0.059000000000000004,0.64,104,1002,891,0,0,-6.800000000000001,104,1002,0,891,0.3,23.03,38.27,0.9,0.65,793,0.6000000000000001,222,3.4000000000000004
+2023,4,16,14,30,14,1.25,0.059000000000000004,0.64,101,988,828,0,0,-6.800000000000001,101,988,0,828,0.3,23,42.62,0.9,0.65,792,0.6000000000000001,221,3.5
+2023,4,16,15,0,13.9,1.24,0.058,0.64,96,970,752,0,0,-6.7,96,970,0,752,0.3,23.3,47.46,0.9,0.65,792,0.6000000000000001,220,3.6
+2023,4,16,15,30,13.600000000000001,1.24,0.058,0.64,90,947,665,0,0,-6.7,90,947,0,665,0.3,23.76,52.65,0.9,0.65,792,0.6000000000000001,218,3.6
+2023,4,16,16,0,13.3,1.25,0.057,0.64,83,917,568,0,0,-6.6000000000000005,83,917,0,568,0.299,24.44,58.07,0.9,0.65,792,0.6000000000000001,217,3.6
+2023,4,16,16,30,12.700000000000001,1.25,0.057,0.64,75,876,464,0,0,-6.7,75,876,0,464,0.3,25.38,63.63,0.9,0.65,791,0.6000000000000001,214,3.3000000000000003
+2023,4,16,17,0,12,1.26,0.055,0.64,66,818,355,0,0,-5.4,66,818,0,355,0.301,29.17,69.28,0.9,0.65,791,0.6000000000000001,212,3
+2023,4,16,17,30,9.700000000000001,1.26,0.055,0.64,55,732,245,0,0,-5.4,55,732,0,245,0.302,33.97,74.96000000000001,0.9,0.65,791,0.5,206,2.1
+2023,4,16,18,0,7.5,1.28,0.054,0.64,42,594,139,0,0,-1.5,42,594,0,139,0.303,52.99,80.61,0.9,0.65,791,0.5,201,1.3
+2023,4,16,18,30,6,1.28,0.054,0.64,26,348,49,0,0,-1.5,26,348,0,49,0.304,58.730000000000004,86.17,0.9,0.65,791,0.5,198,1.4000000000000001
+2023,4,16,19,0,4.5,1.29,0.055,0.64,3,24,2,0,0,-3.1,3,24,0,2,0.306,58,91.88,0.9,0.65,791,0.5,195,1.5
+2023,4,16,19,30,3.9000000000000004,1.29,0.055,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.308,60.49,97.3,0.9,0.65,791,0.5,195,1.5
+2023,4,16,20,0,3.4000000000000004,1.29,0.055,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.31,60.58,102.54,0.9,0.65,791,0.5,196,1.5
+2023,4,16,20,30,2.9000000000000004,1.29,0.055,0.64,0,0,0,0,0,-3.5,0,0,0,0,0.313,62.76,107.55,0.9,0.65,791,0.5,198,1.6
+2023,4,16,21,0,2.5,1.26,0.053,0.64,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.316,62.79,112.25,0.9,0.65,790,0.5,200,1.6
+2023,4,16,21,30,2,1.26,0.053,0.64,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.318,65.06,116.58,0.89,0.65,790,0.5,201,1.6
+2023,4,16,22,0,1.6,1.22,0.051000000000000004,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.321,65.06,120.43,0.89,0.65,790,0.5,203,1.6
+2023,4,16,22,30,1.3,1.22,0.051000000000000004,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.322,66.47,123.7,0.89,0.65,790,0.5,202,1.6
+2023,4,16,23,0,0.9,1.18,0.052000000000000005,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.323,66.18,126.28,0.89,0.65,790,0.5,201,1.6
+2023,4,16,23,30,0.7000000000000001,1.18,0.052000000000000005,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.323,67.06,128.06,0.89,0.65,789,0.5,199,1.6
+2023,4,17,0,0,0.4,1.17,0.054,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.323,66.32000000000001,128.95,0.9,0.65,789,0.6000000000000001,197,1.6
+2023,4,17,0,30,0.2,1.17,0.054,0.64,0,0,0,0,0,-5.2,0,0,0,0,0.322,67.29,128.91,0.89,0.65,789,0.6000000000000001,194,1.6
+2023,4,17,1,0,0,1.2,0.053,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.321,66.34,127.93,0.89,0.65,789,0.6000000000000001,191,1.5
+2023,4,17,1,30,-0.30000000000000004,1.2,0.053,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.321,67.71000000000001,126.08,0.89,0.65,788,0.6000000000000001,187,1.6
+2023,4,17,2,0,-0.5,1.25,0.05,0.64,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.321,67.23,123.43,0.89,0.65,788,0.6000000000000001,183,1.6
+2023,4,17,2,30,-0.8,1.25,0.05,0.64,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.321,68.72,120.10000000000001,0.89,0.65,788,0.5,179,1.6
+2023,4,17,3,0,-1.1,1.31,0.046,0.64,0,0,0,0,0,-6,0,0,0,0,0.32,69.21000000000001,116.2,0.89,0.65,788,0.5,176,1.7000000000000002
+2023,4,17,3,30,-1.3,1.31,0.046,0.64,0,0,0,0,0,-6,0,0,0,0,0.32,70.23,111.83,0.89,0.65,788,0.5,174,1.7000000000000002
+2023,4,17,4,0,-1.6,1.32,0.045,0.64,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.32,71.47,107.09,0.89,0.65,788,0.5,173,1.7000000000000002
+2023,4,17,4,30,-1.7000000000000002,1.32,0.045,0.64,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.32,71.91,102.06,0.89,0.65,787,0.5,173,1.7000000000000002
+2023,4,17,5,0,-1.8,1.3,0.045,0.64,0,0,0,0,0,-6,0,0,0,0,0.319,72.88,96.8,0.89,0.65,787,0.5,172,1.7000000000000002
+2023,4,17,5,30,-0.4,1.3,0.045,0.64,4,33,3,0,0,-6,4,33,0,3,0.318,65.78,91.36,0.89,0.65,787,0.5,172,1.9000000000000001
+2023,4,17,6,0,1.1,1.25,0.047,0.64,27,397,57,0,0,-4.6000000000000005,27,397,0,57,0.317,65.75,85.64,0.89,0.65,787,0.5,172,2.1
+2023,4,17,6,30,2.8000000000000003,1.25,0.047,0.64,42,625,150,0,0,-4.6000000000000005,42,625,0,150,0.316,58.25,80.07000000000001,0.89,0.65,787,0.5,174,2.5
+2023,4,17,7,0,4.6000000000000005,1.21,0.049,0.64,56,753,258,0,0,-4.4,56,753,0,258,0.315,52.19,74.4,0.89,0.65,787,0.5,175,2.9000000000000004
+2023,4,17,7,30,6.9,1.21,0.049,0.64,66,834,369,0,0,-4.4,66,834,0,369,0.315,44.52,68.71000000000001,0.9,0.65,787,0.5,185,3.3000000000000003
+2023,4,17,8,0,9.1,1.17,0.055,0.64,76,887,478,0,0,-4.800000000000001,76,887,0,478,0.314,37.01,63.06,0.9,0.65,787,0.5,195,3.7
+2023,4,17,8,30,10.9,1.17,0.055,0.64,85,924,582,0,0,-4.800000000000001,85,924,0,582,0.315,32.82,57.49,0.91,0.65,787,0.5,202,4.1000000000000005
+2023,4,17,9,0,12.700000000000001,1.1400000000000001,0.062,0.64,94,949,677,0,7,-5.9,166,789,0,651,0.315,26.89,52.07,0.91,0.65,786,0.5,208,4.6000000000000005
+2023,4,17,9,30,13.700000000000001,1.1400000000000001,0.062,0.64,101,969,763,0,7,-5.9,240,694,7,714,0.316,25.19,46.88,0.91,0.65,786,0.6000000000000001,208,4.7
+2023,4,17,10,0,14.700000000000001,1.12,0.067,0.64,108,983,838,0,7,-5.800000000000001,278,677,7,781,0.318,23.72,42.050000000000004,0.92,0.65,786,0.6000000000000001,209,4.800000000000001
+2023,4,17,10,30,15.4,1.12,0.067,0.64,113,993,898,0,7,-5.800000000000001,396,483,7,778,0.319,22.68,37.72,0.92,0.65,786,0.6000000000000001,208,4.9
+2023,4,17,11,0,16.1,1.09,0.07,0.64,117,1000,945,0,7,-5.7,377,575,11,853,0.321,21.85,34.11,0.92,0.65,785,0.6000000000000001,207,5.1000000000000005
+2023,4,17,11,30,16.5,1.09,0.07,0.64,116,1010,977,0,0,-5.7,182,909,11,957,0.322,21.3,31.48,0.92,0.65,785,0.6000000000000001,208,5.300000000000001
+2023,4,17,12,0,17,1.11,0.062,0.64,114,1017,994,0,7,-5.7,187,913,11,977,0.323,20.740000000000002,30.1,0.92,0.65,785,0.6000000000000001,208,5.4
+2023,4,17,12,30,17.3,1.11,0.062,0.64,111,1020,993,0,7,-5.7,147,963,21,980,0.324,20.32,30.16,0.91,0.65,784,0.6000000000000001,209,5.6000000000000005
+2023,4,17,13,0,17.6,1.1500000000000001,0.054,0.64,107,1021,976,0,7,-5.7,351,637,14,893,0.324,19.87,31.63,0.91,0.65,784,0.6000000000000001,209,5.800000000000001
+2023,4,17,13,30,17.7,1.1500000000000001,0.054,0.64,104,1016,943,0,0,-5.800000000000001,142,948,7,925,0.326,19.72,34.34,0.91,0.65,783,0.6000000000000001,211,5.9
+2023,4,17,14,0,17.900000000000002,1.16,0.052000000000000005,0.64,101,1008,895,0,7,-5.9,257,751,21,849,0.327,19.31,38.01,0.91,0.65,783,0.6000000000000001,212,6
+2023,4,17,14,30,17.7,1.16,0.052000000000000005,0.64,98,994,832,0,7,-5.9,255,711,32,780,0.328,19.56,42.38,0.91,0.65,783,0.6000000000000001,212,6
+2023,4,17,15,0,17.6,1.1400000000000001,0.055,0.64,95,974,756,0,7,-5.9,212,749,14,720,0.329,19.56,47.25,0.91,0.65,782,0.6000000000000001,213,6
+2023,4,17,15,30,17.2,1.1400000000000001,0.055,0.64,91,947,668,0,7,-5.9,150,810,29,644,0.329,20.06,52.45,0.92,0.65,782,0.6000000000000001,212,5.9
+2023,4,17,16,0,16.7,1.12,0.061,0.64,85,911,570,0,0,-5.800000000000001,101,876,32,567,0.329,20.85,57.870000000000005,0.92,0.65,782,0.6000000000000001,211,5.800000000000001
+2023,4,17,16,30,15.9,1.12,0.061,0.64,78,865,465,0,0,-5.9,78,865,7,465,0.328,21.91,63.45,0.92,0.65,781,0.6000000000000001,209,5.4
+2023,4,17,17,0,15.200000000000001,1.07,0.064,0.64,70,799,355,0,0,-5.2,70,799,0,355,0.328,24.05,69.10000000000001,0.92,0.65,781,0.6000000000000001,207,5
+2023,4,17,17,30,12.9,1.07,0.064,0.64,61,698,244,1,0,-5.2,77,618,36,239,0.327,27.900000000000002,74.78,0.92,0.65,781,0.6000000000000001,204,3.9000000000000004
+2023,4,17,18,0,10.700000000000001,1.06,0.074,0.64,48,541,138,4,7,-2.9000000000000004,83,279,75,129,0.326,38.39,80.43,0.93,0.65,781,0.7000000000000001,201,2.8000000000000003
+2023,4,17,18,30,9.1,1.06,0.074,0.64,29,284,49,7,7,-2.9000000000000004,39,22,100,41,0.325,42.72,85.99,0.93,0.65,781,0.7000000000000001,198,2.8000000000000003
+2023,4,17,19,0,7.6000000000000005,1.07,0.08600000000000001,0.64,2,15,2,2,7,-2.8000000000000003,1,0,29,1,0.324,47.800000000000004,91.68,0.93,0.65,781,0.7000000000000001,196,2.7
+2023,4,17,19,30,7.300000000000001,1.07,0.08600000000000001,0.64,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.322,48.79,97.10000000000001,0.9400000000000001,0.65,781,0.7000000000000001,195,3
+2023,4,17,20,0,7.1000000000000005,1.1,0.099,0.64,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.32,49.18,102.33,0.9400000000000001,0.65,781,0.8,195,3.2
+2023,4,17,20,30,7,1.1,0.099,0.64,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.319,49.52,107.32000000000001,0.9400000000000001,0.65,781,0.8,195,3.4000000000000004
+2023,4,17,21,0,7,1.1300000000000001,0.113,0.64,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.317,49.69,112.01,0.9500000000000001,0.65,781,0.8,196,3.7
+2023,4,17,21,30,7,1.1300000000000001,0.113,0.64,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.316,49.63,116.32000000000001,0.9500000000000001,0.65,780,0.9,198,3.9000000000000004
+2023,4,17,22,0,6.9,1.1400000000000001,0.12,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.315,50.67,120.15,0.9500000000000001,0.65,780,0.9,200,4.1000000000000005
+2023,4,17,22,30,6.7,1.1400000000000001,0.12,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.315,51.370000000000005,123.4,0.9500000000000001,0.65,780,0.9,204,4
+2023,4,17,23,0,6.4,1.16,0.114,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.315,54.08,125.96000000000001,0.9500000000000001,0.65,779,0.9,207,3.9000000000000004
+2023,4,17,23,30,6,1.16,0.114,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.314,55.59,127.72,0.9500000000000001,0.65,779,0.9,212,3.7
+2023,4,18,0,0,5.5,1.17,0.10400000000000001,0.64,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.314,59.800000000000004,128.6,0.9500000000000001,0.65,779,0.9,217,3.4000000000000004
+2023,4,18,0,30,5.2,1.17,0.10400000000000001,0.64,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.314,61.06,128.55,0.9500000000000001,0.65,779,0.9,220,3.2
+2023,4,18,1,0,4.800000000000001,1.1400000000000001,0.10200000000000001,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.314,64.57000000000001,127.58,0.9400000000000001,0.65,779,0.8,223,3
+2023,4,18,1,30,4.7,1.1400000000000001,0.10200000000000001,0.64,0,0,0,0,7,-1.3,0,0,0,0,0.314,65.02,125.72,0.9400000000000001,0.65,779,0.8,223,2.9000000000000004
+2023,4,18,2,0,4.5,1.07,0.111,0.64,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.315,66.29,123.08,0.9400000000000001,0.65,779,0.8,223,2.7
+2023,4,18,2,30,4.3,1.07,0.111,0.64,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.316,67.23,119.77,0.9400000000000001,0.65,779,0.8,223,2.6
+2023,4,18,3,0,4.2,1.03,0.125,0.64,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.317,67.78,115.88,0.9400000000000001,0.65,779,0.8,223,2.4000000000000004
+2023,4,18,3,30,4.1000000000000005,1.03,0.125,0.64,0,0,0,0,6,-1.2000000000000002,0,0,0,0,0.32,68.26,111.52,0.9400000000000001,0.65,779,0.8,223,2.3000000000000003
+2023,4,18,4,0,3.9000000000000004,1.03,0.137,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.322,69.65,106.79,0.9400000000000001,0.65,779,0.8,224,2.2
+2023,4,18,4,30,3.9000000000000004,1.03,0.137,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.324,69.65,101.77,0.9400000000000001,0.65,779,0.8,230,2.2
+2023,4,18,5,0,3.9000000000000004,1.04,0.146,0.64,0,0,0,0,6,-1.1,0,0,0,0,0.327,69.97,96.51,0.9500000000000001,0.65,779,0.8,235,2.2
+2023,4,18,5,30,4.3,1.04,0.146,0.64,4,15,4,3,6,-1.1,2,0,43,2,0.33,68.04,91.08,0.9500000000000001,0.65,779,0.8,234,2.2
+2023,4,18,6,0,4.6000000000000005,1.05,0.154,0.64,36,197,52,7,6,-0.7000000000000001,20,0,100,20,0.333,68.64,85.38,0.9500000000000001,0.65,779,0.9,233,2.1
+2023,4,18,6,30,5.6000000000000005,1.05,0.154,0.64,64,423,139,1,6,-0.7000000000000001,40,0,14,40,0.337,64.03,79.8,0.9500000000000001,0.65,779,0.8,223,2.3000000000000003
+2023,4,18,7,0,6.5,1.03,0.14300000000000002,0.64,84,581,243,0,6,-0.30000000000000004,71,1,0,71,0.341,62.01,74.14,0.9400000000000001,0.65,779,0.8,212,2.5
+2023,4,18,7,30,8.200000000000001,1.03,0.14300000000000002,0.64,97,693,352,0,6,-0.30000000000000004,80,1,0,80,0.34400000000000003,55.15,68.45,0.9400000000000001,0.65,778,0.8,208,4.2
+2023,4,18,8,0,10,0.96,0.122,0.64,106,778,462,0,6,-2.6,153,8,0,157,0.34700000000000003,41.24,62.79,0.9400000000000001,0.65,778,0.8,205,5.800000000000001
+2023,4,18,8,30,11.3,0.96,0.122,0.64,114,839,568,0,7,-2.6,278,83,4,323,0.34900000000000003,37.83,57.21,0.93,0.65,778,0.7000000000000001,205,7.2
+2023,4,18,9,0,12.600000000000001,0.89,0.105,0.64,118,887,667,1,7,-4.9,324,182,21,437,0.35000000000000003,29.29,51.79,0.93,0.65,778,0.7000000000000001,205,8.700000000000001
+2023,4,18,9,30,13.200000000000001,0.89,0.105,0.64,123,919,755,0,7,-4.9,363,42,14,392,0.35100000000000003,28.13,46.59,0.93,0.65,777,0.7000000000000001,206,9.4
+2023,4,18,10,0,13.8,0.89,0.096,0.64,127,945,832,1,7,-5.4,232,720,32,769,0.35100000000000003,25.91,41.74,0.93,0.65,777,0.7000000000000001,206,10.100000000000001
+2023,4,18,10,30,14.200000000000001,0.89,0.096,0.64,126,969,896,0,7,-5.4,287,604,7,767,0.352,25.25,37.39,0.93,0.65,777,0.7000000000000001,208,10.3
+2023,4,18,11,0,14.700000000000001,0.91,0.078,0.64,123,989,945,0,7,-5.6000000000000005,441,394,0,769,0.353,24.12,33.77,0.93,0.65,777,0.7000000000000001,209,10.600000000000001
+2023,4,18,11,30,15,0.91,0.078,0.64,128,989,975,0,7,-5.6000000000000005,500,378,0,824,0.353,23.63,31.13,0.93,0.65,776,0.7000000000000001,213,10.700000000000001
+2023,4,18,12,0,15.3,0.92,0.094,0.64,136,982,989,0,6,-5.5,427,147,0,555,0.352,23.35,29.75,0.9400000000000001,0.65,776,0.7000000000000001,216,10.8
+2023,4,18,12,30,15.3,0.92,0.094,0.64,144,972,987,0,6,-5.5,435,57,0,484,0.35100000000000003,23.35,29.810000000000002,0.9400000000000001,0.65,776,0.7000000000000001,220,10.9
+2023,4,18,13,0,15.3,0.96,0.121,0.64,151,956,968,0,6,-5.7,478,104,0,567,0.35000000000000003,23.07,31.310000000000002,0.9400000000000001,0.65,776,0.7000000000000001,225,11
+2023,4,18,13,30,15,0.96,0.121,0.64,150,947,935,0,6,-5.7,467,46,0,505,0.35000000000000003,23.52,34.05,0.9500000000000001,0.65,776,0.7000000000000001,231,10.8
+2023,4,18,14,0,14.700000000000001,0.98,0.126,0.64,148,933,886,0,6,-6.4,431,64,0,482,0.35000000000000003,22.81,37.75,0.9500000000000001,0.65,776,0.7000000000000001,237,10.600000000000001
+2023,4,18,14,30,14,0.98,0.126,0.64,143,916,822,0,6,-6.4,394,78,0,452,0.35000000000000003,23.86,42.15,0.9500000000000001,0.65,776,0.7000000000000001,244,10.100000000000001
+2023,4,18,15,0,13.3,0.99,0.126,0.64,137,894,746,0,6,-7.1000000000000005,368,50,0,402,0.35000000000000003,23.650000000000002,47.03,0.9500000000000001,0.65,776,0.7000000000000001,252,9.5
+2023,4,18,15,30,12.4,0.99,0.126,0.64,126,869,658,0,7,-7.1000000000000005,331,122,0,406,0.35100000000000003,25.080000000000002,52.25,0.9400000000000001,0.65,776,0.7000000000000001,261,8.8
+2023,4,18,16,0,11.5,0.99,0.117,0.64,114,836,561,0,7,-7.2,191,563,25,492,0.352,26.39,57.68,0.9400000000000001,0.65,777,0.7000000000000001,270,8.200000000000001
+2023,4,18,16,30,10.3,0.99,0.117,0.64,102,787,456,0,7,-7.2,237,82,0,274,0.352,28.580000000000002,63.26,0.9400000000000001,0.65,777,0.7000000000000001,279,7.6000000000000005
+2023,4,18,17,0,9.200000000000001,1,0.112,0.64,89,721,348,0,7,-6.6000000000000005,167,190,7,235,0.352,32.2,68.92,0.9400000000000001,0.65,778,0.7000000000000001,288,7.1000000000000005
+2023,4,18,17,30,7.9,1,0.112,0.64,74,623,239,0,7,-6.6000000000000005,90,236,4,153,0.352,35.2,74.60000000000001,0.9400000000000001,0.65,779,0.7000000000000001,293,6.6000000000000005
+2023,4,18,18,0,6.6000000000000005,1,0.108,0.64,55,474,135,2,7,-6.300000000000001,50,84,29,64,0.352,39.13,80.25,0.9400000000000001,0.65,779,0.7000000000000001,297,6.1000000000000005
+2023,4,18,18,30,5.4,1,0.108,0.64,32,239,49,7,7,-6.300000000000001,24,0,100,24,0.352,42.56,85.81,0.9400000000000001,0.65,780,0.7000000000000001,301,5.7
+2023,4,18,19,0,4.3,1,0.101,0.64,2,13,2,2,7,-6.800000000000001,1,0,29,1,0.352,44.28,91.49,0.9400000000000001,0.65,781,0.7000000000000001,305,5.300000000000001
+2023,4,18,19,30,3.3000000000000003,1,0.101,0.64,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.352,47.5,96.89,0.9400000000000001,0.65,781,0.6000000000000001,309,5.2
+2023,4,18,20,0,2.4000000000000004,1.03,0.10200000000000001,0.64,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.353,47.53,102.11,0.9500000000000001,0.65,782,0.6000000000000001,313,5.1000000000000005
+2023,4,18,20,30,1.5,1.03,0.10200000000000001,0.64,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.354,50.67,107.09,0.9500000000000001,0.65,782,0.6000000000000001,315,5.1000000000000005
+2023,4,18,21,0,0.6000000000000001,1.06,0.112,0.64,0,0,0,0,4,-8.4,0,0,0,0,0.355,51.1,111.77,0.9500000000000001,0.65,783,0.6000000000000001,318,5
+2023,4,18,21,30,-0.1,1.06,0.112,0.64,0,0,0,0,8,-8.4,0,0,0,0,0.356,53.76,116.06,0.96,0.65,783,0.6000000000000001,321,4.800000000000001
+2023,4,18,22,0,-0.8,1.07,0.13,0.64,0,0,0,0,8,-8.6,0,0,0,0,0.357,55.56,119.87,0.96,0.65,783,0.6000000000000001,323,4.6000000000000005
+2023,4,18,22,30,-1.3,1.07,0.13,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.359,57.7,123.10000000000001,0.96,0.65,784,0.6000000000000001,327,4.3
+2023,4,18,23,0,-1.9000000000000001,1.08,0.152,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.36,60.72,125.64,0.96,0.65,784,0.6000000000000001,332,4
+2023,4,18,23,30,-2.3000000000000003,1.08,0.152,0.64,0,0,0,0,7,-8.5,0,0,0,0,0.361,62.54,127.39,0.96,0.65,784,0.6000000000000001,335,3.8000000000000003
+2023,4,19,0,0,-2.8000000000000003,1.06,0.164,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.362,64.09,128.26,0.96,0.65,784,0.6000000000000001,338,3.5
+2023,4,19,0,30,-3.2,1.06,0.164,0.64,0,0,0,0,7,-8.6,0,0,0,0,0.363,66.03,128.2,0.96,0.65,784,0.6000000000000001,337,3.3000000000000003
+2023,4,19,1,0,-3.6,1.04,0.17,0.64,0,0,0,0,7,-8.8,0,0,0,0,0.365,67.13,127.23,0.96,0.65,785,0.6000000000000001,337,3.2
+2023,4,19,1,30,-3.8000000000000003,1.04,0.17,0.64,0,0,0,0,7,-8.8,0,0,0,0,0.366,68.14,125.38000000000001,0.96,0.65,785,0.6000000000000001,336,3
+2023,4,19,2,0,-4.1000000000000005,1.03,0.177,0.64,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.367,67.87,122.74000000000001,0.96,0.65,785,0.6000000000000001,336,2.9000000000000004
+2023,4,19,2,30,-4.3,1.03,0.177,0.64,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.368,68.9,119.44,0.96,0.65,785,0.6000000000000001,334,2.8000000000000003
+2023,4,19,3,0,-4.5,1.02,0.181,0.64,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.37,67.73,115.56,0.96,0.65,785,0.5,332,2.6
+2023,4,19,3,30,-4.7,1.02,0.181,0.64,0,0,0,0,7,-9.600000000000001,0,0,0,0,0.371,68.76,111.22,0.96,0.65,785,0.5,329,2.5
+2023,4,19,4,0,-4.800000000000001,1.02,0.178,0.64,0,0,0,0,7,-9.9,0,0,0,0,0.372,67.42,106.5,0.96,0.65,785,0.5,327,2.4000000000000004
+2023,4,19,4,30,-4.9,1.02,0.178,0.64,0,0,0,0,7,-9.9,0,0,0,0,0.374,67.93,101.48,0.96,0.65,785,0.5,327,2.2
+2023,4,19,5,0,-5,1.03,0.177,0.64,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.376,67.03,96.24000000000001,0.96,0.65,785,0.5,326,2.1
+2023,4,19,5,30,-4.9,1.03,0.177,0.64,5,16,5,3,7,-10.200000000000001,2,0,43,2,0.379,66.53,90.31,0.96,0.65,785,0.5,327,2.2
+2023,4,19,6,0,-4.800000000000001,1.04,0.17200000000000001,0.64,39,200,56,7,7,-10.600000000000001,19,0,100,19,0.381,63.88,85.12,0.96,0.65,785,0.5,328,2.2
+2023,4,19,6,30,-4.5,1.04,0.17200000000000001,0.64,70,418,146,1,7,-10.600000000000001,21,0,14,21,0.383,62.46,79.54,0.96,0.65,785,0.5,328,2.3000000000000003
+2023,4,19,7,0,-4.2,1.05,0.168,0.64,92,571,251,0,7,-11.3,35,0,0,35,0.384,57.84,73.87,0.96,0.65,785,0.5,327,2.4000000000000004
+2023,4,19,7,30,-3.7,1.05,0.168,0.64,110,679,362,0,7,-11.3,63,0,0,63,0.386,55.72,68.18,0.96,0.65,785,0.5,328,2.5
+2023,4,19,8,0,-3.3000000000000003,1.06,0.161,0.64,124,759,474,0,7,-11.9,93,0,0,93,0.387,51.25,62.52,0.96,0.65,785,0.5,328,2.6
+2023,4,19,8,30,-2.8000000000000003,1.06,0.161,0.64,136,818,582,0,7,-11.9,157,1,0,158,0.388,49.38,56.94,0.96,0.65,785,0.4,326,2.6
+2023,4,19,9,0,-2.4000000000000004,1.08,0.154,0.64,144,862,680,0,7,-12.700000000000001,206,2,0,207,0.39,45.2,51.51,0.96,0.65,785,0.4,324,2.6
+2023,4,19,9,30,-1.7000000000000002,1.08,0.154,0.64,149,897,769,0,7,-12.700000000000001,340,8,0,346,0.391,42.93,46.300000000000004,0.96,0.65,785,0.4,320,2.6
+2023,4,19,10,0,-1,1.1,0.139,0.64,151,927,846,0,7,-13.200000000000001,394,10,0,401,0.393,38.95,41.44,0.9500000000000001,0.65,785,0.4,315,2.5
+2023,4,19,10,30,-0.1,1.1,0.139,0.64,151,951,910,0,7,-13.200000000000001,412,11,0,421,0.395,36.480000000000004,37.07,0.9500000000000001,0.65,785,0.4,311,2.4000000000000004
+2023,4,19,11,0,0.8,1.1300000000000001,0.115,0.64,147,974,960,0,7,-13.700000000000001,564,54,0,609,0.397,32.88,33.43,0.9500000000000001,0.65,785,0.4,306,2.4000000000000004
+2023,4,19,11,30,1.7000000000000002,1.1300000000000001,0.115,0.64,145,993,998,0,7,-13.700000000000001,617,74,0,681,0.398,30.830000000000002,30.78,0.9400000000000001,0.65,785,0.30000000000000004,301,2.4000000000000004
+2023,4,19,12,0,2.6,1.1500000000000001,0.098,0.64,139,1008,1017,0,7,-14.200000000000001,612,74,0,676,0.399,27.72,29.400000000000002,0.9400000000000001,0.65,785,0.30000000000000004,296,2.4000000000000004
+2023,4,19,12,30,3.2,1.1500000000000001,0.098,0.64,136,1011,1016,0,7,-14.200000000000001,637,169,0,784,0.399,26.57,29.48,0.93,0.65,785,0.30000000000000004,293,2.5
+2023,4,19,13,0,3.9000000000000004,1.1500000000000001,0.089,0.64,132,1012,999,0,8,-14.700000000000001,548,255,0,767,0.399,24.39,31,0.93,0.65,785,0.30000000000000004,290,2.5
+2023,4,19,13,30,4.2,1.1500000000000001,0.089,0.64,129,1006,965,0,8,-14.700000000000001,536,145,0,657,0.398,23.89,33.76,0.93,0.65,785,0.30000000000000004,289,2.7
+2023,4,19,14,0,4.5,1.1500000000000001,0.088,0.64,125,997,916,0,5,-15.200000000000001,523,48,0,561,0.397,22.44,37.49,0.93,0.65,785,0.30000000000000004,289,2.9000000000000004
+2023,4,19,14,30,4.4,1.1500000000000001,0.088,0.64,121,982,852,0,5,-15.200000000000001,516,207,0,670,0.397,22.6,41.910000000000004,0.93,0.65,785,0.30000000000000004,292,3.2
+2023,4,19,15,0,4.3,1.1500000000000001,0.09,0.64,116,962,774,0,5,-15.600000000000001,439,254,0,613,0.396,22.02,46.82,0.9400000000000001,0.65,785,0.30000000000000004,295,3.4000000000000004
+2023,4,19,15,30,3.9000000000000004,1.1500000000000001,0.09,0.64,111,932,684,0,8,-15.600000000000001,380,248,0,533,0.396,22.650000000000002,52.050000000000004,0.9400000000000001,0.65,785,0.30000000000000004,300,3.6
+2023,4,19,16,0,3.5,1.16,0.098,0.64,105,892,584,0,5,-15.600000000000001,354,182,0,452,0.396,23.23,57.5,0.9400000000000001,0.65,786,0.30000000000000004,306,3.9000000000000004
+2023,4,19,16,30,2.9000000000000004,1.16,0.098,0.64,98,838,477,0,8,-15.600000000000001,265,247,0,377,0.396,24.23,63.08,0.9400000000000001,0.65,786,0.30000000000000004,312,4.1000000000000005
+2023,4,19,17,0,2.2,1.17,0.11,0.64,87,762,363,0,8,-15.4,223,177,0,287,0.396,25.87,68.74,0.9500000000000001,0.26,786,0.30000000000000004,318,4.2
+2023,4,19,17,30,1.3,1.17,0.11,0.64,74,655,250,0,8,-15.4,165,157,0,207,0.396,27.62,74.42,0.9500000000000001,0.26,787,0.30000000000000004,323,4
+2023,4,19,18,0,0.4,1.17,0.125,0.64,58,493,143,2,4,-13.9,92,176,36,122,0.397,33.29,80.07000000000001,0.9500000000000001,0.26,787,0.30000000000000004,329,3.8000000000000003
+2023,4,19,18,30,-0.5,1.17,0.125,0.64,34,253,53,7,8,-13.9,35,3,100,35,0.398,35.58,85.62,0.9500000000000001,0.26,788,0.30000000000000004,334,3.4000000000000004
+2023,4,19,19,0,-1.3,1.17,0.131,0.64,3,14,3,3,4,-12.700000000000001,2,0,43,2,0.399,41.61,91.3,0.9500000000000001,0.26,789,0.30000000000000004,338,3.1
+2023,4,19,19,30,-2,1.17,0.131,0.64,0,0,0,0,8,-12.700000000000001,0,0,0,0,0.399,43.800000000000004,96.69,0.9500000000000001,0.26,789,0.30000000000000004,341,2.6
+2023,4,19,20,0,-2.6,1.17,0.128,0.64,0,0,0,0,8,-12.200000000000001,0,0,0,0,0.4,47.56,101.9,0.9500000000000001,0.26,789,0.30000000000000004,343,2.1
+2023,4,19,20,30,-3,1.17,0.128,0.64,0,0,0,0,8,-12.200000000000001,0,0,0,0,0.4,49.050000000000004,106.87,0.9500000000000001,0.26,790,0.30000000000000004,340,1.7000000000000002
+2023,4,19,21,0,-3.5,1.17,0.124,0.64,0,0,0,0,8,-11.100000000000001,0,0,0,0,0.4,55.46,111.53,0.9500000000000001,0.26,790,0.30000000000000004,338,1.3
+2023,4,19,21,30,-3.9000000000000004,1.17,0.124,0.64,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.399,57.14,115.8,0.9500000000000001,0.26,790,0.30000000000000004,329,1.2000000000000002
+2023,4,19,22,0,-4.3,1.17,0.114,0.64,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.399,60.9,119.59,0.9500000000000001,0.26,790,0.30000000000000004,321,1
+2023,4,19,22,30,-4.6000000000000005,1.17,0.114,0.64,0,0,0,0,8,-10.700000000000001,0,0,0,0,0.399,62.29,122.81,0.9400000000000001,0.26,790,0.30000000000000004,312,1
+2023,4,19,23,0,-5,1.16,0.10400000000000001,0.64,0,0,0,0,8,-10.8,0,0,0,0,0.398,63.7,125.33,0.9400000000000001,0.26,790,0.30000000000000004,302,1
+2023,4,19,23,30,-5.5,1.16,0.10400000000000001,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.398,66.16,127.06,0.9400000000000001,0.26,790,0.30000000000000004,296,1
+2023,4,20,0,0,-5.9,1.1400000000000001,0.08700000000000001,0.64,0,0,0,0,0,-11.4,0,0,0,0,0.397,65.17,127.92,0.93,0.26,790,0.30000000000000004,289,1.1
+2023,4,20,0,30,-6.300000000000001,1.1400000000000001,0.08700000000000001,0.64,0,0,0,0,0,-11.4,0,0,0,0,0.397,67.19,127.86,0.93,0.26,790,0.30000000000000004,287,1.1
+2023,4,20,1,0,-6.6000000000000005,1.09,0.074,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.397,66.11,126.88000000000001,0.92,0.26,790,0.30000000000000004,284,1.2000000000000002
+2023,4,20,1,30,-6.800000000000001,1.09,0.074,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,67.14,125.03,0.92,0.26,790,0.30000000000000004,283,1.2000000000000002
+2023,4,20,2,0,-7,1.05,0.067,0.64,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.396,66.84,122.41,0.92,0.26,790,0.30000000000000004,282,1.2000000000000002
+2023,4,20,2,30,-7.1000000000000005,1.05,0.067,0.64,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.396,67.36,119.11,0.92,0.26,790,0.30000000000000004,282,1.2000000000000002
+2023,4,20,3,0,-7.1000000000000005,1.02,0.066,0.64,0,0,0,0,0,-12,0,0,0,0,0.396,67.78,115.24000000000001,0.92,0.26,790,0.30000000000000004,281,1.2000000000000002
+2023,4,20,3,30,-7.1000000000000005,1.02,0.066,0.64,0,0,0,0,0,-12,0,0,0,0,0.396,67.86,110.91,0.92,0.26,791,0.30000000000000004,279,1.1
+2023,4,20,4,0,-7.1000000000000005,1.01,0.07,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,68.87,106.21000000000001,0.93,0.26,791,0.30000000000000004,278,1.1
+2023,4,20,4,30,-7,1.01,0.07,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.396,68.34,101.2,0.93,0.26,791,0.30000000000000004,277,1.1
+2023,4,20,5,0,-7,0.99,0.076,0.64,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.395,69.59,95.96000000000001,0.93,0.26,791,0.30000000000000004,275,1
+2023,4,20,5,30,-5.6000000000000005,0.99,0.076,0.64,6,47,6,0,0,-11.600000000000001,6,47,0,6,0.395,62.53,90.07000000000001,0.93,0.26,791,0.30000000000000004,276,1.5
+2023,4,20,6,0,-4.3,0.97,0.083,0.64,34,355,66,0,0,-12.200000000000001,34,355,0,66,0.395,54.19,84.86,0.93,0.26,791,0.30000000000000004,277,1.9000000000000001
+2023,4,20,6,30,-2.7,0.97,0.083,0.64,53,573,160,0,0,-12.200000000000001,53,573,0,160,0.395,48.09,79.28,0.93,0.26,791,0.30000000000000004,284,2.4000000000000004
+2023,4,20,7,0,-1.2000000000000002,0.9500000000000001,0.093,0.64,71,699,268,0,0,-13.9,71,699,0,268,0.396,37.62,73.62,0.9400000000000001,0.26,792,0.30000000000000004,291,2.9000000000000004
+2023,4,20,7,30,-0.30000000000000004,0.9500000000000001,0.093,0.64,84,782,378,0,0,-13.8,84,782,0,378,0.397,35.230000000000004,67.93,0.9400000000000001,0.26,792,0.30000000000000004,284,3
+2023,4,20,8,0,0.5,0.96,0.106,0.64,98,835,487,0,0,-14.3,98,835,0,487,0.398,32.02,62.26,0.9400000000000001,0.26,792,0.30000000000000004,278,3.1
+2023,4,20,8,30,1,0.96,0.106,0.64,110,878,592,0,0,-14.3,224,501,0,499,0.4,30.89,56.68,0.9500000000000001,0.26,792,0.30000000000000004,270,3.3000000000000003
+2023,4,20,9,0,1.5,0.99,0.117,0.64,120,906,687,0,8,-13.700000000000001,352,293,0,535,0.402,31.44,51.230000000000004,0.9500000000000001,0.26,792,0.30000000000000004,262,3.6
+2023,4,20,9,30,1.6,0.99,0.117,0.64,128,928,772,0,8,-13.700000000000001,352,87,0,412,0.404,31.21,46.02,0.9500000000000001,0.26,792,0.4,259,3.8000000000000003
+2023,4,20,10,0,1.7000000000000002,1.02,0.11900000000000001,0.64,133,944,844,0,8,-12.700000000000001,318,173,0,448,0.406,33.38,41.14,0.9500000000000001,0.26,792,0.4,255,4.1000000000000005
+2023,4,20,10,30,1.8,1.02,0.11900000000000001,0.64,137,957,904,0,8,-12.8,397,285,0,625,0.40700000000000003,33.1,36.76,0.9500000000000001,0.26,791,0.4,254,4.2
+2023,4,20,11,0,1.9000000000000001,1.05,0.122,0.64,142,967,952,0,7,-11.8,428,274,0,658,0.40900000000000003,35.35,33.1,0.9500000000000001,0.26,791,0.4,254,4.2
+2023,4,20,11,30,1.8,1.05,0.122,0.64,146,971,983,0,7,-11.8,505,219,0,694,0.41100000000000003,35.61,30.43,0.9500000000000001,0.26,791,0.4,257,4.2
+2023,4,20,12,0,1.8,1.05,0.128,0.64,149,971,998,0,7,-11.100000000000001,542,189,0,707,0.41200000000000003,37.910000000000004,29.05,0.9500000000000001,0.26,791,0.4,260,4.1000000000000005
+2023,4,20,12,30,1.8,1.05,0.128,0.64,151,968,996,0,8,-11.100000000000001,478,422,0,847,0.41400000000000003,37.910000000000004,29.14,0.9500000000000001,0.26,791,0.4,268,3.9000000000000004
+2023,4,20,13,0,1.7000000000000002,1.02,0.136,0.64,152,961,978,0,7,-10.3,541,225,0,735,0.41500000000000004,40.660000000000004,30.68,0.9500000000000001,0.26,791,0.4,276,3.8000000000000003
+2023,4,20,13,30,1.5,1.02,0.136,0.64,150,948,941,0,7,-10.3,416,460,14,800,0.417,41.300000000000004,33.480000000000004,0.9500000000000001,0.26,792,0.5,289,3.7
+2023,4,20,14,0,1.4000000000000001,0.9500000000000001,0.14200000000000002,0.64,150,931,891,0,7,-9.700000000000001,393,446,7,748,0.418,43.54,37.24,0.9500000000000001,0.26,792,0.5,303,3.6
+2023,4,20,14,30,1.2000000000000002,0.9500000000000001,0.14200000000000002,0.64,144,916,828,0,7,-9.700000000000001,452,294,0,672,0.42,44.17,41.68,0.9500000000000001,0.26,792,0.5,316,3.8000000000000003
+2023,4,20,15,0,1.1,0.87,0.137,0.64,137,895,752,0,7,-9.8,440,180,0,564,0.422,44.050000000000004,46.6,0.9500000000000001,0.26,792,0.5,328,4
+2023,4,20,15,30,1,0.87,0.137,0.64,126,875,667,0,7,-9.8,384,244,0,535,0.424,44.37,51.85,0.9500000000000001,0.26,792,0.4,334,4.2
+2023,4,20,16,0,0.9,0.81,0.122,0.64,114,845,570,0,7,-10.8,265,449,14,508,0.425,41.2,57.31,0.9400000000000001,0.26,793,0.4,339,4.4
+2023,4,20,16,30,0.7000000000000001,0.81,0.122,0.64,99,805,466,0,7,-10.8,198,518,32,434,0.425,41.800000000000004,62.9,0.9400000000000001,0.26,793,0.4,340,4.2
+2023,4,20,17,0,0.6000000000000001,0.78,0.1,0.64,84,753,359,0,0,-12.200000000000001,125,602,0,345,0.425,37.660000000000004,68.56,0.93,0.26,793,0.4,341,4.1000000000000005
+2023,4,20,17,30,-0.6000000000000001,0.78,0.1,0.64,68,682,253,0,0,-12.200000000000001,68,682,0,253,0.423,41.09,74.24,0.93,0.26,793,0.30000000000000004,340,2.9000000000000004
+2023,4,20,18,0,-1.8,0.78,0.077,0.64,50,561,148,0,0,-10.9,50,561,0,148,0.422,49.76,79.89,0.92,0.26,793,0.30000000000000004,338,1.8
+2023,4,20,18,30,-3.1,0.78,0.077,0.64,31,329,57,0,0,-10.9,31,329,0,57,0.42,54.78,85.44,0.92,0.26,793,0.30000000000000004,332,1.5
+2023,4,20,19,0,-4.3,0.81,0.067,0.64,6,40,5,0,0,-11.5,6,40,0,5,0.419,57.050000000000004,91.11,0.92,0.26,794,0.30000000000000004,326,1.2000000000000002
+2023,4,20,19,30,-4.7,0.81,0.067,0.64,0,0,0,0,0,-11.5,0,0,0,0,0.41600000000000004,58.800000000000004,96.49000000000001,0.92,0.26,794,0.30000000000000004,321,1.2000000000000002
+2023,4,20,20,0,-5,0.84,0.064,0.64,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.41300000000000003,56.99,101.69,0.92,0.26,794,0.30000000000000004,315,1.2000000000000002
+2023,4,20,20,30,-5.1000000000000005,0.84,0.064,0.64,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.41100000000000003,57.5,106.64,0.92,0.26,795,0.30000000000000004,313,1.2000000000000002
+2023,4,20,21,0,-5.300000000000001,0.87,0.063,0.64,0,0,0,0,0,-12.3,0,0,0,0,0.40900000000000003,58.11,111.28,0.92,0.26,795,0.30000000000000004,312,1.2000000000000002
+2023,4,20,21,30,-5.5,0.87,0.063,0.64,0,0,0,0,0,-12.3,0,0,0,0,0.40800000000000003,59,115.54,0.92,0.26,795,0.30000000000000004,309,1.2000000000000002
+2023,4,20,22,0,-5.6000000000000005,0.91,0.063,0.64,0,0,0,0,0,-11.9,0,0,0,0,0.40700000000000003,60.93,119.32000000000001,0.92,0.26,795,0.30000000000000004,306,1.2000000000000002
+2023,4,20,22,30,-5.6000000000000005,0.91,0.063,0.64,0,0,0,0,7,-11.9,0,0,0,0,0.406,60.93,122.51,0.93,0.26,795,0.30000000000000004,303,1.2000000000000002
+2023,4,20,23,0,-5.7,0.9500000000000001,0.064,0.64,0,0,0,0,7,-11.5,0,0,0,0,0.405,63.67,125.02,0.93,0.26,795,0.30000000000000004,300,1.1
+2023,4,20,23,30,-5.7,0.9500000000000001,0.064,0.64,0,0,0,0,7,-11.5,0,0,0,0,0.404,63.67,126.73,0.93,0.26,795,0.30000000000000004,295,1
+2023,4,21,0,0,-5.6000000000000005,0.99,0.066,0.64,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.402,65.25,127.58,0.93,0.26,795,0.30000000000000004,289,0.9
+2023,4,21,0,30,-5.7,0.99,0.066,0.64,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.4,65.75,127.51,0.93,0.26,795,0.30000000000000004,278,0.9
+2023,4,21,1,0,-5.7,1.04,0.069,0.64,0,0,0,0,0,-10.8,0,0,0,0,0.397,67.19,126.53,0.93,0.26,795,0.30000000000000004,268,0.8
+2023,4,21,1,30,-5.7,1.04,0.069,0.64,0,0,0,0,7,-10.8,0,0,0,0,0.395,67.19,124.69,0.9400000000000001,0.26,795,0.30000000000000004,250,0.8
+2023,4,21,2,0,-5.800000000000001,1.09,0.079,0.64,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.393,68.98,122.08,0.9400000000000001,0.26,794,0.4,233,0.8
+2023,4,21,2,30,-5.6000000000000005,1.09,0.079,0.64,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.392,67.94,118.79,0.9400000000000001,0.26,794,0.4,226,0.9
+2023,4,21,3,0,-5.4,1.09,0.093,0.64,0,0,0,0,7,-10.4,0,0,0,0,0.39,67.76,114.93,0.9500000000000001,0.26,794,0.4,219,1.1
+2023,4,21,3,30,-4.9,1.09,0.093,0.64,0,0,0,0,7,-10.4,0,0,0,0,0.389,65.25,110.61,0.9500000000000001,0.26,794,0.5,218,1.4000000000000001
+2023,4,21,4,0,-4.5,1.08,0.079,0.64,0,0,0,0,7,-10.9,0,0,0,0,0.388,61.14,105.92,0.9500000000000001,0.26,794,0.5,218,1.7000000000000002
+2023,4,21,4,30,-4.3,1.08,0.079,0.64,0,0,0,0,7,-10.9,0,0,0,0,0.386,60.230000000000004,100.92,0.9500000000000001,0.26,794,0.5,218,1.8
+2023,4,21,5,0,-4.1000000000000005,1.1,0.067,0.64,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.384,60.730000000000004,95.69,0.9500000000000001,0.26,794,0.6000000000000001,219,1.9000000000000001
+2023,4,21,5,30,-3.8000000000000003,1.1,0.067,0.64,7,60,7,4,7,-10.600000000000001,4,0,57,4,0.383,59.38,89.84,0.9500000000000001,0.26,794,0.6000000000000001,215,2.3000000000000003
+2023,4,21,6,0,-3.4000000000000004,1.12,0.066,0.64,32,389,69,6,7,-10.600000000000001,42,5,86,42,0.381,57.32,84.61,0.9500000000000001,0.26,794,0.6000000000000001,211,2.7
+2023,4,21,6,30,-2.8000000000000003,1.12,0.066,0.64,49,597,163,0,7,-10.600000000000001,109,58,0,120,0.38,54.82,79.03,0.9500000000000001,0.26,794,0.6000000000000001,211,3.1
+2023,4,21,7,0,-2.3000000000000003,1.1300000000000001,0.069,0.64,62,718,268,0,7,-10.700000000000001,146,75,0,167,0.378,52.47,73.36,0.9500000000000001,0.26,794,0.7000000000000001,211,3.5
+2023,4,21,7,30,-1.6,1.1300000000000001,0.069,0.64,73,796,375,0,7,-10.700000000000001,204,49,0,223,0.377,49.83,67.67,0.96,0.26,794,0.7000000000000001,214,3.8000000000000003
+2023,4,21,8,0,-1,1.1300000000000001,0.074,0.64,83,850,482,0,7,-10.200000000000001,258,72,0,292,0.376,49.550000000000004,62.01,0.96,0.26,793,0.7000000000000001,218,4.1000000000000005
+2023,4,21,8,30,-0.4,1.1300000000000001,0.074,0.64,91,892,584,0,7,-10.200000000000001,303,111,0,364,0.375,47.43,56.42,0.96,0.26,793,0.7000000000000001,221,4.3
+2023,4,21,9,0,0.2,1.12,0.077,0.64,98,922,679,0,7,-9.1,362,125,0,441,0.375,49.67,50.96,0.96,0.26,793,0.7000000000000001,224,4.6000000000000005
+2023,4,21,9,30,0.9,1.12,0.077,0.64,104,943,762,0,6,-9.1,406,102,0,477,0.374,47.230000000000004,45.74,0.96,0.26,793,0.8,227,4.7
+2023,4,21,10,0,1.5,1.12,0.079,0.64,109,958,834,0,6,-7.6000000000000005,413,43,0,446,0.374,50.730000000000004,40.84,0.96,0.26,792,0.8,229,4.9
+2023,4,21,10,30,2.2,1.12,0.079,0.64,112,972,894,0,6,-7.6000000000000005,477,113,0,568,0.375,48.26,36.45,0.96,0.26,792,0.8,230,4.9
+2023,4,21,11,0,2.9000000000000004,1.17,0.076,0.64,113,984,940,0,6,-6.1000000000000005,467,52,0,511,0.375,51.56,32.77,0.96,0.26,791,0.8,231,5
+2023,4,21,11,30,3.7,1.17,0.076,0.64,117,985,969,0,6,-6.1000000000000005,460,22,0,479,0.375,48.74,30.09,0.96,0.26,791,0.9,237,4.800000000000001
+2023,4,21,12,0,4.4,1.16,0.085,0.64,120,982,981,0,6,-4.5,481,71,0,543,0.375,52.44,28.71,0.96,0.26,790,0.9,242,4.7
+2023,4,21,12,30,4.9,1.16,0.085,0.64,120,980,979,0,7,-4.5,489,104,0,580,0.375,50.64,28.810000000000002,0.96,0.26,790,0.9,255,4.6000000000000005
+2023,4,21,13,0,5.4,1.1500000000000001,0.08700000000000001,0.64,120,976,962,0,7,-3,511,157,0,646,0.374,54.52,30.38,0.96,0.26,789,0.9,268,4.4
+2023,4,21,13,30,5.6000000000000005,1.1500000000000001,0.08700000000000001,0.64,117,969,928,0,7,-3,462,124,0,566,0.373,53.77,33.2,0.96,0.26,789,1,280,4.5
+2023,4,21,14,0,5.800000000000001,1.1300000000000001,0.082,0.64,113,960,880,0,7,-2.4000000000000004,409,67,0,463,0.372,55.65,36.980000000000004,0.96,0.26,789,1,292,4.6000000000000005
+2023,4,21,14,30,5.800000000000001,1.1300000000000001,0.082,0.64,107,951,820,0,7,-2.4000000000000004,322,42,0,353,0.371,55.65,41.45,0.96,0.26,789,0.9,297,4.5
+2023,4,21,15,0,5.9,1.11,0.07200000000000001,0.64,99,939,747,0,6,-2.7,201,8,0,207,0.369,54.22,46.4,0.9500000000000001,0.26,789,0.9,303,4.4
+2023,4,21,15,30,5.7,1.11,0.07200000000000001,0.64,94,916,662,0,6,-2.7,152,1,0,153,0.369,54.97,51.660000000000004,0.9500000000000001,0.26,789,0.9,306,4.2
+2023,4,21,16,0,5.6000000000000005,1.09,0.067,0.64,85,887,567,0,6,-3,113,1,0,114,0.368,53.86,57.120000000000005,0.9500000000000001,0.26,789,0.9,310,4
+2023,4,21,16,30,4.9,1.09,0.067,0.64,78,844,465,0,6,-3,92,0,0,92,0.367,56.54,62.72,0.9500000000000001,0.26,789,0.9,314,3.4000000000000004
+2023,4,21,17,0,4.3,1.09,0.065,0.64,69,785,358,0,6,-2.4000000000000004,78,3,0,79,0.366,61.52,68.38,0.9500000000000001,0.26,789,0.9,319,2.7
+2023,4,21,17,30,2.8000000000000003,1.09,0.065,0.64,59,701,251,0,6,-2.4000000000000004,36,0,0,36,0.365,68.45,74.07000000000001,0.9500000000000001,0.26,790,0.9,324,2.1
+2023,4,21,18,0,1.4000000000000001,1.08,0.063,0.64,46,571,148,2,6,-2.4000000000000004,17,0,29,17,0.364,75.73,79.72,0.9500000000000001,0.26,790,0.9,330,1.5
+2023,4,21,18,30,0.5,1.08,0.063,0.64,29,351,58,7,6,-2.4000000000000004,15,0,100,15,0.364,80.79,85.26,0.9500000000000001,0.26,790,0.9,335,1.4000000000000001
+2023,4,21,19,0,-0.30000000000000004,1.08,0.06,0.64,6,48,5,3,6,-3.2,2,0,43,2,0.364,80.77,90.92,0.9500000000000001,0.26,791,0.8,339,1.3
+2023,4,21,19,30,-0.5,1.08,0.06,0.64,0,0,0,0,6,-3.2,0,0,0,0,0.364,81.95,96.29,0.9400000000000001,0.26,791,0.8,340,1.2000000000000002
+2023,4,21,20,0,-0.8,1.08,0.056,0.64,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.364,83.06,101.48,0.9400000000000001,0.26,791,0.8,342,1.2000000000000002
+2023,4,21,20,30,-1,1.08,0.056,0.64,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.365,84.28,106.42,0.9400000000000001,0.26,791,0.8,341,1.1
+2023,4,21,21,0,-1.1,1.09,0.054,0.64,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.365,84.52,111.05,0.9400000000000001,0.26,791,0.8,340,1.1
+2023,4,21,21,30,-1.3,1.09,0.054,0.64,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.366,85.77,115.28,0.9400000000000001,0.26,791,0.8,339,1.1
+2023,4,21,22,0,-1.5,1.11,0.053,0.64,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.366,86.64,119.04,0.9400000000000001,0.26,791,0.8,337,1.2000000000000002
+2023,4,21,22,30,-1.7000000000000002,1.11,0.053,0.64,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.366,87.93,122.22,0.9400000000000001,0.26,791,0.8,338,1.2000000000000002
+2023,4,21,23,0,-2,1.1300000000000001,0.053,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.366,89.24,124.71000000000001,0.9400000000000001,0.26,791,0.8,338,1.1
+2023,4,21,23,30,-2.2,1.1300000000000001,0.053,0.64,0,0,0,0,7,-3.5,0,0,0,0,0.366,90.57000000000001,126.41,0.9400000000000001,0.26,791,0.7000000000000001,343,1.1
+2023,4,22,0,0,-2.4000000000000004,1.1500000000000001,0.054,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.366,91.26,127.24000000000001,0.9400000000000001,0.26,791,0.7000000000000001,347,1.1
+2023,4,22,0,30,-2.5,1.1500000000000001,0.054,0.64,0,0,0,0,7,-3.6,0,0,0,0,0.366,91.82000000000001,127.17,0.9400000000000001,0.26,790,0.7000000000000001,349,1.1
+2023,4,22,1,0,-2.6,1.16,0.053,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.365,91.67,126.19,0.9400000000000001,0.26,790,0.7000000000000001,350,1.1
+2023,4,22,1,30,-2.7,1.16,0.053,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.366,92.35000000000001,124.35000000000001,0.9400000000000001,0.26,790,0.7000000000000001,351,1.1
+2023,4,22,2,0,-2.9000000000000004,1.16,0.055,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.367,93.47,121.75,0.9400000000000001,0.26,790,0.7000000000000001,351,1.2000000000000002
+2023,4,22,2,30,-3.1,1.16,0.055,0.64,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.368,94.87,118.47,0.9400000000000001,0.26,790,0.7000000000000001,353,1.3
+2023,4,22,3,0,-3.3000000000000003,1.16,0.061,0.64,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.368,95.60000000000001,114.62,0.9500000000000001,0.26,790,0.7000000000000001,355,1.3
+2023,4,22,3,30,-3.5,1.16,0.061,0.64,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.368,97.04,110.32000000000001,0.9500000000000001,0.26,790,0.7000000000000001,178,1.3
+2023,4,22,4,0,-3.8000000000000003,1.17,0.067,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.368,97.91,105.63,0.9500000000000001,0.26,790,0.7000000000000001,1,1.3
+2023,4,22,4,30,-4,1.17,0.067,0.64,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.367,99.38,100.64,0.9500000000000001,0.26,790,0.7000000000000001,3,1.3
+2023,4,22,5,0,-4.1000000000000005,1.16,0.069,0.64,0,0,0,0,0,-4.3,0,0,0,0,0.367,98.87,95.42,0.9500000000000001,0.26,790,0.6000000000000001,6,1.4000000000000001
+2023,4,22,5,30,-3.2,1.16,0.069,0.64,9,82,10,0,0,-4.3,9,82,0,10,0.367,92.43,89.62,0.9500000000000001,0.26,790,0.6000000000000001,8,1.9000000000000001
+2023,4,22,6,0,-2.3000000000000003,1.16,0.069,0.64,34,397,73,1,0,-4,38,250,18,63,0.367,87.9,84.36,0.9500000000000001,0.26,790,0.6000000000000001,11,2.5
+2023,4,22,6,30,-1.2000000000000002,1.16,0.069,0.64,49,605,167,0,7,-4,73,118,4,96,0.365,81.07000000000001,78.78,0.9500000000000001,0.26,790,0.6000000000000001,9,2.9000000000000004
+2023,4,22,7,0,-0.1,1.16,0.066,0.64,61,732,274,1,8,-4.3,99,73,11,120,0.364,73.24,73.11,0.9500000000000001,0.26,790,0.6000000000000001,8,3.2
+2023,4,22,7,30,0.5,1.16,0.066,0.64,70,817,384,3,8,-4.3,141,22,39,149,0.363,70.13,67.42,0.9500000000000001,0.26,790,0.6000000000000001,182,3.2
+2023,4,22,8,0,1.1,1.18,0.06,0.64,76,880,493,1,4,-5.5,213,41,14,232,0.361,61.38,61.75,0.9500000000000001,0.26,790,0.6000000000000001,356,3.2
+2023,4,22,8,30,1.6,1.18,0.06,0.64,84,922,597,0,4,-5.5,207,6,0,210,0.361,59.22,56.160000000000004,0.9500000000000001,0.26,790,0.6000000000000001,351,3
+2023,4,22,9,0,2,1.18,0.059000000000000004,0.64,88,953,692,0,4,-6.6000000000000005,312,68,0,355,0.36,53.120000000000005,50.7,0.9500000000000001,0.26,790,0.6000000000000001,347,2.9000000000000004
+2023,4,22,9,30,2.6,1.18,0.059000000000000004,0.64,95,974,778,0,4,-6.6000000000000005,358,33,0,381,0.36,50.9,45.46,0.9500000000000001,0.26,790,0.6000000000000001,345,2.8000000000000003
+2023,4,22,10,0,3.1,1.17,0.061,0.64,98,991,851,0,4,-7.2,383,23,0,400,0.361,46.75,40.550000000000004,0.9500000000000001,0.26,790,0.6000000000000001,343,2.7
+2023,4,22,10,30,3.6,1.17,0.061,0.64,102,1002,911,0,4,-7.2,495,82,0,561,0.361,45.13,36.14,0.9500000000000001,0.26,790,0.6000000000000001,341,2.6
+2023,4,22,11,0,4.1000000000000005,1.16,0.063,0.64,106,1010,958,0,4,-7.7,526,206,0,700,0.362,42.09,32.45,0.9500000000000001,0.26,790,0.6000000000000001,339,2.6
+2023,4,22,11,30,4.6000000000000005,1.16,0.063,0.64,108,1014,988,0,7,-7.7,391,376,0,717,0.362,40.65,29.76,0.9500000000000001,0.26,790,0.6000000000000001,338,2.5
+2023,4,22,12,0,5,1.1500000000000001,0.064,0.64,109,1015,1002,0,8,-7.9,446,120,0,552,0.363,38.67,28.37,0.9500000000000001,0.26,790,0.6000000000000001,337,2.4000000000000004
+2023,4,22,12,30,5.4,1.1500000000000001,0.064,0.64,108,1014,999,0,7,-7.9,440,350,0,748,0.363,37.61,28.48,0.9500000000000001,0.26,790,0.6000000000000001,337,2.3000000000000003
+2023,4,22,13,0,5.800000000000001,1.1400000000000001,0.065,0.64,108,1010,982,0,7,-8.1,450,383,0,781,0.364,36,30.07,0.9500000000000001,0.26,790,0.6000000000000001,337,2.3000000000000003
+2023,4,22,13,30,6,1.1400000000000001,0.065,0.64,106,1003,948,0,7,-8.1,250,742,0,873,0.364,35.51,32.92,0.9500000000000001,0.26,790,0.6000000000000001,336,2.1
+2023,4,22,14,0,6.2,1.1300000000000001,0.067,0.64,105,992,900,0,7,-8.4,340,521,0,758,0.364,34.42,36.74,0.9500000000000001,0.26,789,0.6000000000000001,336,2
+2023,4,22,14,30,6.2,1.1300000000000001,0.067,0.64,101,978,837,0,7,-8.4,325,484,0,689,0.363,34.42,41.230000000000004,0.9500000000000001,0.26,789,0.6000000000000001,336,1.9000000000000001
+2023,4,22,15,0,6.300000000000001,1.12,0.069,0.64,98,959,762,0,7,-8.5,276,554,0,660,0.362,33.71,46.19,0.9500000000000001,0.26,789,0.6000000000000001,337,1.8
+2023,4,22,15,30,6,1.12,0.069,0.64,94,933,675,0,7,-8.5,305,362,0,531,0.362,34.410000000000004,51.46,0.9500000000000001,0.26,789,0.6000000000000001,341,1.7000000000000002
+2023,4,22,16,0,5.7,1.1300000000000001,0.07200000000000001,0.64,88,897,577,0,8,-8.6,279,267,0,425,0.361,34.87,56.94,0.9500000000000001,0.26,789,0.7000000000000001,344,1.5
+2023,4,22,16,30,5.2,1.1300000000000001,0.07200000000000001,0.64,81,850,473,0,7,-8.6,229,320,0,377,0.36,36.1,62.54,0.9500000000000001,0.26,789,0.7000000000000001,173,1.4000000000000001
+2023,4,22,17,0,4.7,1.1500000000000001,0.075,0.64,73,785,364,0,7,-8.4,195,264,0,293,0.36,38.230000000000004,68.21000000000001,0.9500000000000001,0.26,789,0.7000000000000001,1,1.3
+2023,4,22,17,30,3.8000000000000003,1.1500000000000001,0.075,0.64,62,696,255,0,7,-8.4,133,147,0,174,0.358,40.71,73.89,0.9500000000000001,0.26,789,0.7000000000000001,16,1
+2023,4,22,18,0,2.9000000000000004,1.18,0.077,0.64,49,560,151,2,7,-4.5,84,57,29,94,0.357,58.2,79.54,0.9500000000000001,0.26,789,0.7000000000000001,31,0.6000000000000001
+2023,4,22,18,30,2.2,1.18,0.077,0.64,32,340,61,7,7,-4.5,37,4,100,37,0.356,61.17,85.09,0.9500000000000001,0.26,789,0.7000000000000001,45,0.7000000000000001
+2023,4,22,19,0,1.5,1.19,0.076,0.64,6,46,6,3,7,-4.4,3,0,43,3,0.355,64.97,90.25,0.9500000000000001,0.26,789,0.7000000000000001,59,0.7000000000000001
+2023,4,22,19,30,1.1,1.19,0.076,0.64,0,0,0,0,7,-4.4,0,0,0,0,0.354,66.86,96.09,0.9500000000000001,0.26,789,0.7000000000000001,71,0.7000000000000001
+2023,4,22,20,0,0.8,1.19,0.073,0.64,0,0,0,0,7,-5,0,0,0,0,0.353,65.12,101.27,0.9500000000000001,0.26,789,0.7000000000000001,83,0.7000000000000001
+2023,4,22,20,30,0.4,1.19,0.073,0.64,0,0,0,0,7,-5,0,0,0,0,0.352,67.02,106.19,0.9500000000000001,0.26,789,0.7000000000000001,95,0.7000000000000001
+2023,4,22,21,0,0.1,1.18,0.07,0.64,0,0,0,0,8,-5.7,0,0,0,0,0.35000000000000003,65.17,110.81,0.9500000000000001,0.26,789,0.7000000000000001,107,0.7000000000000001
+2023,4,22,21,30,-0.2,1.18,0.07,0.64,0,0,0,0,8,-5.7,0,0,0,0,0.35000000000000003,66.6,115.03,0.9500000000000001,0.26,789,0.7000000000000001,120,0.7000000000000001
+2023,4,22,22,0,-0.6000000000000001,1.1500000000000001,0.066,0.64,0,0,0,0,8,-6,0,0,0,0,0.34900000000000003,66.75,118.77,0.9500000000000001,0.26,789,0.7000000000000001,133,0.7000000000000001
+2023,4,22,22,30,-0.9,1.1500000000000001,0.066,0.64,0,0,0,0,8,-6,0,0,0,0,0.34900000000000003,68.22,121.93,0.9500000000000001,0.26,789,0.7000000000000001,145,0.6000000000000001
+2023,4,22,23,0,-1.2000000000000002,1.07,0.062,0.64,0,0,0,0,4,-6.4,0,0,0,0,0.34900000000000003,67.78,124.4,0.9400000000000001,0.26,789,0.7000000000000001,157,0.6000000000000001
+2023,4,22,23,30,-1.6,1.07,0.062,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.35000000000000003,69.8,126.09,0.9400000000000001,0.26,789,0.7000000000000001,173,0.6000000000000001
+2023,4,23,0,0,-1.9000000000000001,0.99,0.059000000000000004,0.64,0,0,0,0,0,-7,0,0,0,0,0.35100000000000003,68.08,126.91,0.9400000000000001,0.26,789,0.6000000000000001,189,0.5
+2023,4,23,0,30,-2.2,0.99,0.059000000000000004,0.64,0,0,0,0,4,-7,0,0,0,0,0.35000000000000003,69.60000000000001,126.83,0.93,0.26,789,0.6000000000000001,206,0.5
+2023,4,23,1,0,-2.4000000000000004,0.9400000000000001,0.057,0.64,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.35000000000000003,69.02,125.85000000000001,0.93,0.26,789,0.6000000000000001,223,0.5
+2023,4,23,1,30,-2.5,0.9400000000000001,0.057,0.64,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.34900000000000003,69.53,124.02,0.93,0.26,789,0.6000000000000001,243,0.4
+2023,4,23,2,0,-2.6,0.88,0.058,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34800000000000003,69.57000000000001,121.42,0.93,0.26,789,0.6000000000000001,264,0.30000000000000004
+2023,4,23,2,30,-2.8000000000000003,0.88,0.058,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34800000000000003,70.61,118.15,0.93,0.26,789,0.6000000000000001,308,0.30000000000000004
+2023,4,23,3,0,-2.9000000000000004,0.8,0.062,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34700000000000003,71.07000000000001,114.32000000000001,0.93,0.26,789,0.5,353,0.30000000000000004
+2023,4,23,3,30,-3.1,0.8,0.062,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34700000000000003,72.14,110.02,0.93,0.26,789,0.5,191,0.4
+2023,4,23,4,0,-3.3000000000000003,0.76,0.066,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34700000000000003,73.53,105.35000000000001,0.93,0.26,789,0.5,29,0.6000000000000001
+2023,4,23,4,30,-3.5,0.76,0.066,0.64,0,0,0,0,4,-7.4,0,0,0,0,0.34700000000000003,74.63,100.37,0.93,0.26,789,0.5,38,0.6000000000000001
+2023,4,23,5,0,-3.7,0.75,0.067,0.64,0,0,0,0,0,-7.2,0,0,0,0,0.34700000000000003,76.69,95.16,0.93,0.26,788,0.5,47,0.7000000000000001
+2023,4,23,5,30,-2.7,0.75,0.067,0.64,10,81,11,0,0,-7.2,10,81,0,11,0.34700000000000003,71.19,89.39,0.93,0.26,788,0.5,54,0.9
+2023,4,23,6,0,-1.6,0.77,0.068,0.64,35,398,76,0,0,-6.5,35,398,0,76,0.34700000000000003,69.23,84.11,0.93,0.26,788,0.5,60,1.1
+2023,4,23,6,30,0,0.77,0.068,0.64,52,605,172,0,0,-6.5,52,605,0,172,0.34600000000000003,61.61,78.53,0.93,0.26,788,0.5,81,1
+2023,4,23,7,0,1.6,0.8,0.07,0.64,64,730,279,0,0,-7.1000000000000005,67,703,0,274,0.34600000000000003,52.620000000000005,72.87,0.93,0.26,788,0.5,102,0.9
+2023,4,23,7,30,2.7,0.8,0.07,0.64,75,810,389,0,0,-7.1000000000000005,80,782,0,383,0.34500000000000003,48.660000000000004,67.18,0.93,0.26,788,0.5,137,1.1
+2023,4,23,8,0,3.8000000000000003,0.81,0.073,0.64,84,865,497,0,4,-6.9,209,364,0,383,0.34500000000000003,45.63,61.51,0.93,0.26,788,0.5,172,1.2000000000000002
+2023,4,23,8,30,4.7,0.81,0.073,0.64,92,906,600,0,4,-6.9,307,137,0,384,0.34400000000000003,42.85,55.910000000000004,0.93,0.26,788,0.5,186,1.4000000000000001
+2023,4,23,9,0,5.6000000000000005,0.81,0.076,0.64,100,935,695,0,4,-6.6000000000000005,351,247,0,508,0.343,41.01,50.44,0.93,0.26,788,0.5,200,1.6
+2023,4,23,9,30,6.4,0.81,0.076,0.64,106,958,781,0,0,-6.6000000000000005,215,497,0,565,0.342,38.81,45.19,0.9400000000000001,0.26,788,0.5,209,1.7000000000000002
+2023,4,23,10,0,7.300000000000001,0.8200000000000001,0.078,0.64,110,975,854,0,4,-6.5,327,96,0,400,0.342,36.89,40.27,0.9400000000000001,0.26,788,0.5,218,1.8
+2023,4,23,10,30,8.1,0.8200000000000001,0.078,0.64,114,988,915,0,4,-6.5,363,3,0,365,0.341,34.94,35.84,0.9400000000000001,0.26,788,0.5,225,1.9000000000000001
+2023,4,23,11,0,8.8,0.89,0.078,0.64,116,995,959,0,4,-6.4,520,108,0,611,0.34,33.61,32.13,0.9400000000000001,0.26,788,0.6000000000000001,231,2
+2023,4,23,11,30,9.5,0.89,0.078,0.64,118,1000,989,0,4,-6.4,521,72,0,584,0.34,32.02,29.42,0.9400000000000001,0.26,787,0.6000000000000001,235,2.1
+2023,4,23,12,0,10.100000000000001,0.97,0.08,0.64,119,1000,1002,0,4,-6.4,558,116,0,660,0.339,30.79,28.03,0.9400000000000001,0.26,787,0.6000000000000001,239,2.2
+2023,4,23,12,30,10.600000000000001,0.97,0.08,0.64,119,999,1000,0,4,-6.4,576,117,0,679,0.339,29.78,28.150000000000002,0.9400000000000001,0.26,787,0.6000000000000001,240,2.2
+2023,4,23,13,0,11,1,0.081,0.64,118,996,983,0,4,-6.4,540,212,0,724,0.34,28.84,29.77,0.9400000000000001,0.26,787,0.6000000000000001,242,2.3000000000000003
+2023,4,23,13,30,11.3,1,0.081,0.64,117,989,950,0,0,-6.5,216,820,0,906,0.34,28.240000000000002,32.65,0.9500000000000001,0.26,786,0.6000000000000001,243,2.3000000000000003
+2023,4,23,14,0,11.600000000000001,1.01,0.082,0.64,115,978,901,0,0,-6.6000000000000005,164,902,0,889,0.341,27.35,36.49,0.9500000000000001,0.26,786,0.6000000000000001,244,2.4000000000000004
+2023,4,23,14,30,11.600000000000001,1.01,0.082,0.64,113,961,838,0,0,-6.6000000000000005,211,774,0,795,0.341,27.35,41.01,0.9500000000000001,0.26,786,0.6000000000000001,244,2.4000000000000004
+2023,4,23,15,0,11.600000000000001,0.99,0.089,0.64,110,938,762,0,0,-6.9,217,742,0,733,0.342,26.72,45.980000000000004,0.9500000000000001,0.26,785,0.6000000000000001,243,2.4000000000000004
+2023,4,23,15,30,11.200000000000001,0.99,0.089,0.64,105,909,674,0,7,-6.9,298,485,0,601,0.343,27.43,51.27,0.9500000000000001,0.26,785,0.6000000000000001,242,2.3000000000000003
+2023,4,23,16,0,10.9,0.97,0.096,0.64,100,870,577,0,7,-7.2,279,408,0,503,0.343,27.3,56.76,0.9500000000000001,0.26,785,0.6000000000000001,241,2.3000000000000003
+2023,4,23,16,30,10.4,0.97,0.096,0.64,93,822,474,0,7,-7.300000000000001,252,309,0,395,0.34400000000000003,28.22,62.370000000000005,0.9500000000000001,0.26,785,0.6000000000000001,238,2
+2023,4,23,17,0,9.8,0.93,0.097,0.64,83,757,366,0,6,-7,222,139,0,274,0.34500000000000003,29.97,68.04,0.9500000000000001,0.25,785,0.6000000000000001,236,1.8
+2023,4,23,17,30,8.700000000000001,0.93,0.097,0.64,71,664,257,0,7,-7,157,186,7,209,0.34600000000000003,32.27,73.72,0.9500000000000001,0.25,785,0.6000000000000001,229,1.2000000000000002
+2023,4,23,18,0,7.6000000000000005,0.88,0.096,0.64,55,524,152,1,7,-2.2,99,209,21,138,0.34700000000000003,49.77,79.37,0.9500000000000001,0.25,785,0.6000000000000001,222,0.7000000000000001
+2023,4,23,18,30,6.9,0.88,0.096,0.64,36,296,62,7,7,-2.2,45,8,100,46,0.34700000000000003,52.27,84.91,0.9500000000000001,0.25,786,0.6000000000000001,213,0.6000000000000001
+2023,4,23,19,0,6.300000000000001,0.84,0.097,0.64,6,33,6,3,7,-4.4,4,0,43,4,0.34800000000000003,46.18,90.09,0.9500000000000001,0.25,786,0.6000000000000001,203,0.6000000000000001
+2023,4,23,19,30,6.1000000000000005,0.84,0.097,0.64,0,0,0,0,7,-4.4,0,0,0,0,0.34900000000000003,46.82,95.9,0.9400000000000001,0.25,786,0.6000000000000001,199,0.5
+2023,4,23,20,0,5.9,0.81,0.095,0.64,0,0,0,0,7,-5.5,0,0,0,0,0.34900000000000003,43.63,101.06,0.9400000000000001,0.25,786,0.6000000000000001,194,0.5
+2023,4,23,20,30,5.5,0.81,0.095,0.64,0,0,0,0,7,-5.5,0,0,0,0,0.34900000000000003,44.86,105.97,0.9400000000000001,0.25,786,0.6000000000000001,196,0.5
+2023,4,23,21,0,5.2,0.8,0.093,0.64,0,0,0,0,7,-5.9,0,0,0,0,0.35000000000000003,44.49,110.57000000000001,0.9400000000000001,0.25,786,0.6000000000000001,199,0.6000000000000001
+2023,4,23,21,30,4.800000000000001,0.8,0.093,0.64,0,0,0,0,7,-5.9,0,0,0,0,0.35100000000000003,45.74,114.77,0.9400000000000001,0.25,786,0.6000000000000001,205,0.5
+2023,4,23,22,0,4.4,0.76,0.088,0.64,0,0,0,0,7,-6.2,0,0,0,0,0.35100000000000003,45.92,118.5,0.9400000000000001,0.25,786,0.6000000000000001,211,0.5
+2023,4,23,22,30,4.1000000000000005,0.76,0.088,0.64,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.352,46.84,121.64,0.9400000000000001,0.25,785,0.6000000000000001,227,0.5
+2023,4,23,23,0,3.7,0.74,0.084,0.64,0,0,0,0,8,-6.6000000000000005,0,0,0,0,0.353,47.02,124.09,0.9400000000000001,0.25,785,0.6000000000000001,244,0.5
+2023,4,23,23,30,3.2,0.74,0.084,0.64,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.354,48.7,125.77,0.9400000000000001,0.25,785,0.6000000000000001,256,0.6000000000000001
+2023,4,24,0,0,2.7,0.75,0.085,0.64,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.355,50.44,126.58,0.9400000000000001,0.25,785,0.6000000000000001,267,0.6000000000000001
+2023,4,24,0,30,2.2,0.75,0.085,0.64,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.355,52.26,126.5,0.9400000000000001,0.25,785,0.6000000000000001,272,0.7000000000000001
+2023,4,24,1,0,1.7000000000000002,0.77,0.08600000000000001,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.355,54.730000000000004,125.52,0.9400000000000001,0.25,785,0.6000000000000001,276,0.8
+2023,4,24,1,30,1.4000000000000001,0.77,0.08600000000000001,0.64,0,0,0,0,0,-6.4,0,0,0,0,0.356,55.92,123.69,0.9400000000000001,0.25,785,0.6000000000000001,281,0.8
+2023,4,24,2,0,1,0.78,0.089,0.64,0,0,0,0,5,-6.5,0,0,0,0,0.357,57.410000000000004,121.10000000000001,0.9400000000000001,0.25,785,0.6000000000000001,286,0.8
+2023,4,24,2,30,0.7000000000000001,0.78,0.089,0.64,0,0,0,0,4,-6.5,0,0,0,0,0.358,58.660000000000004,117.84,0.9400000000000001,0.25,785,0.6000000000000001,293,0.7000000000000001
+2023,4,24,3,0,0.30000000000000004,0.77,0.09,0.64,0,0,0,0,8,-6.7,0,0,0,0,0.359,59.35,114.02,0.9400000000000001,0.25,785,0.6000000000000001,300,0.7000000000000001
+2023,4,24,3,30,0,0.77,0.09,0.64,0,0,0,0,0,-6.7,0,0,0,0,0.361,60.65,109.73,0.93,0.25,785,0.6000000000000001,308,0.7000000000000001
+2023,4,24,4,0,-0.4,0.75,0.08700000000000001,0.64,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.362,62.050000000000004,105.07000000000001,0.93,0.25,785,0.6000000000000001,316,0.6000000000000001
+2023,4,24,4,30,-0.6000000000000001,0.75,0.08700000000000001,0.64,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.364,62.96,100.10000000000001,0.93,0.25,785,0.7000000000000001,324,0.6000000000000001
+2023,4,24,5,0,-0.9,0.7000000000000001,0.081,0.64,0,0,0,0,0,-6.5,0,0,0,0,0.366,65.99,94.9,0.93,0.25,785,0.7000000000000001,331,0.5
+2023,4,24,5,30,0.2,0.7000000000000001,0.081,0.64,11,71,12,0,0,-6.5,11,71,0,12,0.367,60.92,89.17,0.93,0.25,785,0.7000000000000001,172,0.4
+2023,4,24,6,0,1.3,0.67,0.079,0.64,38,365,77,0,0,-4.2,38,365,0,77,0.367,66.98,83.87,0.93,0.25,786,0.7000000000000001,12,0.30000000000000004
+2023,4,24,6,30,3,0.67,0.079,0.64,55,571,171,0,0,-4.2,55,571,0,171,0.368,59.35,78.29,0.93,0.25,786,0.7000000000000001,127,0.2
+2023,4,24,7,0,4.800000000000001,0.66,0.078,0.64,67,699,276,0,0,-5,67,699,0,276,0.368,49.14,72.63,0.93,0.25,786,0.7000000000000001,241,0.2
+2023,4,24,7,30,6.5,0.66,0.078,0.64,78,784,385,0,0,-5,78,784,0,385,0.367,43.63,66.94,0.93,0.25,785,0.7000000000000001,237,0.6000000000000001
+2023,4,24,8,0,8.200000000000001,0.67,0.077,0.64,86,844,492,0,0,-5,86,844,0,492,0.367,38.95,61.26,0.93,0.25,785,0.7000000000000001,233,1.1
+2023,4,24,8,30,9.200000000000001,0.67,0.077,0.64,95,884,594,0,0,-5,95,884,0,594,0.365,36.410000000000004,55.660000000000004,0.93,0.25,785,0.7000000000000001,226,1.4000000000000001
+2023,4,24,9,0,10.200000000000001,0.71,0.083,0.64,103,913,688,0,0,-4.3,103,913,0,688,0.364,35.81,50.18,0.93,0.25,785,0.7000000000000001,220,1.8
+2023,4,24,9,30,10.9,0.71,0.083,0.64,111,933,772,0,0,-4.3,230,719,0,739,0.362,34.18,44.92,0.9400000000000001,0.25,785,0.7000000000000001,217,2.1
+2023,4,24,10,0,11.5,0.76,0.096,0.64,121,943,843,0,0,-3.6,347,557,0,774,0.361,34.62,39.99,0.9400000000000001,0.25,785,0.8,214,2.4000000000000004
+2023,4,24,10,30,11.9,0.76,0.096,0.64,124,954,900,0,3,-3.6,457,413,0,793,0.359,33.68,35.54,0.9400000000000001,0.25,784,0.8,215,2.7
+2023,4,24,11,0,12.200000000000001,0.85,0.098,0.64,128,963,946,0,3,-3,446,350,0,743,0.358,34.45,31.810000000000002,0.9500000000000001,0.25,784,0.8,217,2.9000000000000004
+2023,4,24,11,30,12.200000000000001,0.85,0.098,0.64,130,968,976,0,8,-3,437,365,0,756,0.356,34.45,29.09,0.9500000000000001,0.25,784,0.8,219,3.2
+2023,4,24,12,0,12.200000000000001,0.91,0.10200000000000001,0.64,133,966,988,0,8,-2.5,435,380,0,771,0.355,35.79,27.7,0.9500000000000001,0.25,784,0.9,222,3.5
+2023,4,24,12,30,11.9,0.91,0.10200000000000001,0.64,132,964,985,0,7,-2.5,402,485,7,831,0.353,36.5,27.830000000000002,0.9500000000000001,0.25,784,0.9,224,3.7
+2023,4,24,13,0,11.600000000000001,0.97,0.107,0.64,133,957,966,0,7,-1.9000000000000001,407,487,7,831,0.352,38.910000000000004,29.47,0.96,0.25,784,1,225,3.9000000000000004
+2023,4,24,13,30,11.200000000000001,0.97,0.107,0.64,132,947,932,0,7,-1.9000000000000001,349,569,0,830,0.35100000000000003,39.9,32.38,0.96,0.25,783,1,227,4
+2023,4,24,14,0,10.700000000000001,1.02,0.113,0.64,131,933,883,0,7,-1.2000000000000002,368,510,0,779,0.35000000000000003,43.480000000000004,36.25,0.96,0.25,783,1,228,4.1000000000000005
+2023,4,24,14,30,10.3,1.02,0.113,0.64,126,917,820,0,7,-1.2000000000000002,412,321,0,655,0.35000000000000003,44.65,40.79,0.96,0.25,783,1,229,4
+2023,4,24,15,0,9.8,1.07,0.112,0.64,120,896,745,0,7,-0.5,367,129,0,457,0.35000000000000003,48.77,45.78,0.96,0.25,783,1.1,230,3.9000000000000004
+2023,4,24,15,30,9.4,1.07,0.112,0.64,112,870,659,0,7,-0.5,334,117,0,408,0.35000000000000003,50.09,51.08,0.96,0.25,783,1.1,230,3.7
+2023,4,24,16,0,9,1.1,0.109,0.64,105,835,565,0,7,0.2,291,205,0,404,0.35000000000000003,53.97,56.58,0.96,0.25,783,1.1,230,3.5
+2023,4,24,16,30,8.4,1.1,0.109,0.64,97,782,462,0,7,0.2,208,124,0,266,0.352,56.19,62.190000000000005,0.96,0.25,783,1.1,230,3
+2023,4,24,17,0,7.800000000000001,1.1300000000000001,0.11900000000000001,0.64,88,710,356,0,7,1.1,131,424,25,291,0.353,62.46,67.86,0.97,0.25,783,1.1,230,2.6
+2023,4,24,17,30,6.9,1.1300000000000001,0.11900000000000001,0.64,76,611,249,0,7,1.1,96,385,36,205,0.355,66.41,73.55,0.97,0.25,783,1.1,233,1.8
+2023,4,24,18,0,6.1000000000000005,1.1300000000000001,0.129,0.64,60,465,147,1,9,2.7,65,5,14,66,0.357,78.63,79.19,0.97,0.25,783,1.1,236,1.1
+2023,4,24,18,30,5.300000000000001,1.1300000000000001,0.129,0.64,36,258,60,7,9,2.7,14,0,100,14,0.359,83.10000000000001,84.73,0.96,0.25,783,1.1,246,0.9
+2023,4,24,19,0,4.6000000000000005,1.11,0.122,0.64,6,30,6,4,9,2.6,2,0,57,2,0.361,87.04,89.93,0.96,0.25,783,1.1,256,0.7000000000000001
+2023,4,24,19,30,4.2,1.11,0.122,0.64,0,0,0,0,9,2.6,0,0,0,0,0.362,89.62,95.7,0.96,0.25,784,1.1,270,0.7000000000000001
+2023,4,24,20,0,3.8000000000000003,1.07,0.114,0.64,0,0,0,0,9,2.2,0,0,0,0,0.364,89.43,100.85000000000001,0.96,0.25,784,1.1,285,0.6000000000000001
+2023,4,24,20,30,3.4000000000000004,1.07,0.114,0.64,0,0,0,0,6,2.2,0,0,0,0,0.366,91.98,105.75,0.9500000000000001,0.25,784,1,296,0.6000000000000001
+2023,4,24,21,0,3,1.01,0.098,0.64,0,0,0,0,6,1.7000000000000002,0,0,0,0,0.367,91.14,110.33,0.9500000000000001,0.25,784,1,307,0.7000000000000001
+2023,4,24,21,30,2.5,1.01,0.098,0.64,0,0,0,0,6,1.7000000000000002,0,0,0,0,0.368,94.42,114.52,0.9400000000000001,0.25,784,0.9,313,0.7000000000000001
+2023,4,24,22,0,2,0.9400000000000001,0.084,0.64,0,0,0,0,7,1.1,0,0,0,0,0.368,93.62,118.23,0.9400000000000001,0.25,784,0.9,318,0.7000000000000001
+2023,4,24,22,30,1.6,0.9400000000000001,0.084,0.64,0,0,0,0,4,1.1,0,0,0,0,0.368,96.33,121.35000000000001,0.9400000000000001,0.25,784,0.8,318,0.8
+2023,4,24,23,0,1.2000000000000002,0.88,0.078,0.64,0,0,0,0,4,0.6000000000000001,0,0,0,0,0.368,95.92,123.79,0.93,0.25,784,0.8,319,0.8
+2023,4,24,23,30,0.8,0.88,0.078,0.64,0,0,0,0,4,0.6000000000000001,0,0,0,0,0.368,98.72,125.45,0.93,0.25,784,0.8,317,0.8
+2023,4,25,0,0,0.4,0.86,0.079,0.64,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.367,99.23,126.26,0.93,0.25,784,0.8,315,0.8
+2023,4,25,0,30,0.1,0.86,0.079,0.64,0,0,0,0,4,0.1,0,0,0,0,0.367,100,126.17,0.9400000000000001,0.25,784,0.8,317,0.8
+2023,4,25,1,0,-0.30000000000000004,0.85,0.084,0.64,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.367,100,125.19,0.9400000000000001,0.25,783,0.8,319,0.8
+2023,4,25,1,30,-0.6000000000000001,0.85,0.084,0.64,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.366,100,123.37,0.9400000000000001,0.25,783,0.8,323,0.8
+2023,4,25,2,0,-0.8,0.86,0.08700000000000001,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.366,100,120.78,0.9400000000000001,0.25,783,0.8,326,0.7000000000000001
+2023,4,25,2,30,-1.1,0.86,0.08700000000000001,0.64,0,0,0,0,4,-1.1,0,0,0,0,0.365,100,117.53,0.9400000000000001,0.25,783,0.8,330,0.7000000000000001
+2023,4,25,3,0,-1.3,0.86,0.092,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.364,100,113.72,0.9400000000000001,0.25,783,0.8,333,0.6000000000000001
+2023,4,25,3,30,-1.5,0.86,0.092,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.363,100,109.45,0.9400000000000001,0.25,783,0.8,334,0.5
+2023,4,25,4,0,-1.7000000000000002,0.88,0.097,0.64,0,0,0,0,4,-1.7000000000000002,0,0,0,0,0.362,100,104.8,0.9400000000000001,0.25,783,0.8,336,0.5
+2023,4,25,4,30,-1.8,0.88,0.097,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.361,100,99.84,0.9500000000000001,0.25,783,0.8,334,0.5
+2023,4,25,5,0,-1.9000000000000001,0.9,0.1,0.64,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.361,100,94.64,0.9500000000000001,0.25,783,0.8,332,0.4
+2023,4,25,5,30,-1,0.9,0.1,0.64,13,77,14,5,7,-1.2000000000000002,6,0,71,6,0.361,98.55,88.94,0.9500000000000001,0.25,783,0.8,337,0.8
+2023,4,25,6,0,-0.2,0.93,0.10200000000000001,0.64,41,344,79,5,8,-0.8,30,17,71,32,0.361,96.05,83.63,0.9500000000000001,0.25,783,0.8,341,1.1
+2023,4,25,6,30,0.7000000000000001,0.93,0.10200000000000001,0.64,60,544,173,0,7,-0.7000000000000001,83,289,0,143,0.361,90.11,78.05,0.9500000000000001,0.25,784,0.8,340,1.8
+2023,4,25,7,0,1.6,0.93,0.101,0.64,74,673,278,0,4,-0.9,113,160,0,161,0.362,83.51,72.39,0.9500000000000001,0.25,784,0.8,340,2.4000000000000004
+2023,4,25,7,30,2.1,0.93,0.101,0.64,86,760,387,0,4,-0.9,149,38,0,164,0.363,80.59,66.7,0.9500000000000001,0.25,784,0.8,341,2.9000000000000004
+2023,4,25,8,0,2.7,0.93,0.098,0.64,95,824,494,0,4,-2,226,83,0,266,0.365,71.33,61.02,0.9500000000000001,0.25,784,0.7000000000000001,342,3.3000000000000003
+2023,4,25,8,30,3.2,0.93,0.098,0.64,101,873,597,0,8,-2,252,44,0,277,0.366,68.86,55.410000000000004,0.9500000000000001,0.25,784,0.7000000000000001,345,3.4000000000000004
+2023,4,25,9,0,3.7,0.91,0.088,0.64,105,912,692,0,7,-3.1,269,105,0,337,0.368,61,49.93,0.9500000000000001,0.25,785,0.7000000000000001,348,3.5
+2023,4,25,9,30,4.3,0.91,0.088,0.64,108,940,777,0,8,-3.1,379,168,7,498,0.369,58.49,44.660000000000004,0.9500000000000001,0.25,785,0.7000000000000001,353,3.4000000000000004
+2023,4,25,10,0,4.9,0.89,0.079,0.64,109,963,850,0,8,-4,391,379,0,683,0.37,52.6,39.71,0.9400000000000001,0.25,785,0.7000000000000001,358,3.3000000000000003
+2023,4,25,10,30,5.5,0.89,0.079,0.64,116,971,909,0,8,-4,358,475,0,746,0.37,50.45,35.25,0.9400000000000001,0.25,785,0.7000000000000001,183,3.3000000000000003
+2023,4,25,11,0,6.1000000000000005,0.93,0.093,0.64,125,974,955,0,7,-4.5,455,366,0,767,0.371,46.62,31.5,0.9400000000000001,0.25,785,0.7000000000000001,9,3.2
+2023,4,25,11,30,6.6000000000000005,0.93,0.093,0.64,125,983,987,0,7,-4.5,450,423,0,821,0.37,45.04,28.77,0.9400000000000001,0.25,785,0.7000000000000001,13,3.3000000000000003
+2023,4,25,12,0,7.2,0.91,0.088,0.64,124,989,1002,0,0,-4.800000000000001,225,804,0,939,0.37,42.1,27.37,0.9400000000000001,0.25,785,0.7000000000000001,18,3.3000000000000003
+2023,4,25,12,30,7.6000000000000005,0.91,0.088,0.64,123,990,1001,0,0,-4.800000000000001,209,837,0,951,0.37,40.97,27.51,0.9400000000000001,0.25,785,0.7000000000000001,20,3.5
+2023,4,25,13,0,8,0.89,0.084,0.64,120,989,984,0,8,-5.1000000000000005,417,436,0,798,0.369,39.21,29.17,0.9400000000000001,0.25,785,0.7000000000000001,22,3.6
+2023,4,25,13,30,8.200000000000001,0.89,0.084,0.64,119,982,951,0,8,-5.1000000000000005,429,177,0,579,0.368,38.68,32.11,0.9400000000000001,0.25,785,0.6000000000000001,21,3.8000000000000003
+2023,4,25,14,0,8.5,0.86,0.08700000000000001,0.64,118,972,904,0,8,-5.2,404,274,0,626,0.367,37.45,36,0.9400000000000001,0.25,785,0.6000000000000001,21,3.9000000000000004
+2023,4,25,14,30,8.5,0.86,0.08700000000000001,0.64,113,958,841,0,4,-5.2,367,108,0,449,0.365,37.5,40.57,0.9400000000000001,0.25,786,0.6000000000000001,20,4
+2023,4,25,15,0,8.6,0.85,0.085,0.64,108,940,766,0,8,-5.300000000000001,290,473,21,621,0.364,36.910000000000004,45.58,0.9400000000000001,0.25,786,0.6000000000000001,19,4.1000000000000005
+2023,4,25,15,30,8.5,0.85,0.085,0.64,103,914,680,0,8,-5.300000000000001,339,203,0,467,0.362,37.160000000000004,50.89,0.9400000000000001,0.25,786,0.6000000000000001,19,4.2
+2023,4,25,16,0,8.4,0.86,0.08600000000000001,0.64,96,880,583,0,4,-5.4,319,260,0,463,0.36,37.300000000000004,56.4,0.9400000000000001,0.25,786,0.6000000000000001,18,4.2
+2023,4,25,16,30,8,0.86,0.08600000000000001,0.64,90,829,479,0,4,-5.4,228,383,14,408,0.359,38.33,62.02,0.9400000000000001,0.25,786,0.6000000000000001,19,4.1000000000000005
+2023,4,25,17,0,7.6000000000000005,0.91,0.096,0.64,80,758,368,0,4,-5,164,362,36,301,0.357,40.6,67.69,0.9400000000000001,0.13,787,0.6000000000000001,19,4
+2023,4,25,17,30,6.4,0.91,0.096,0.64,68,664,258,0,4,-5,138,107,7,169,0.356,44.07,73.37,0.9400000000000001,0.13,787,0.7000000000000001,15,3.2
+2023,4,25,18,0,5.300000000000001,0.9500000000000001,0.101,0.64,55,522,154,1,4,-2.9000000000000004,83,158,29,113,0.355,55.370000000000005,79.02,0.9500000000000001,0.13,787,0.7000000000000001,11,2.3000000000000003
+2023,4,25,18,30,3.9000000000000004,0.9500000000000001,0.101,0.64,36,307,65,7,8,-2.9000000000000004,48,19,100,50,0.355,61.13,84.55,0.9500000000000001,0.13,788,0.7000000000000001,6,2.2
+2023,4,25,19,0,2.5,0.98,0.101,0.64,9,49,9,4,4,-2.5,5,0,57,5,0.356,69.48,89.76,0.9500000000000001,0.13,788,0.7000000000000001,1,2.1
+2023,4,25,19,30,2.1,0.98,0.101,0.64,0,0,0,0,4,-2.5,0,0,0,0,0.356,71.57000000000001,95.5,0.9500000000000001,0.13,789,0.8,179,2.3000000000000003
+2023,4,25,20,0,1.6,1.01,0.097,0.64,0,0,0,0,8,-2.2,0,0,0,0,0.357,75.78,100.64,0.9500000000000001,0.13,789,0.8,357,2.5
+2023,4,25,20,30,1.2000000000000002,1.01,0.097,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.358,77.98,105.53,0.9500000000000001,0.13,789,0.8,355,2.5
+2023,4,25,21,0,0.7000000000000001,1.05,0.092,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.358,84.24,110.10000000000001,0.9500000000000001,0.13,789,0.8,353,2.4000000000000004
+2023,4,25,21,30,0.30000000000000004,1.05,0.092,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.358,86.82000000000001,114.27,0.9400000000000001,0.13,790,0.8,352,2.4000000000000004
+2023,4,25,22,0,-0.2,1.06,0.08700000000000001,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.358,92.19,117.96000000000001,0.9400000000000001,0.13,790,0.8,352,2.3000000000000003
+2023,4,25,22,30,-0.6000000000000001,1.06,0.08700000000000001,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.357,94.91,121.07000000000001,0.9400000000000001,0.13,790,0.8,352,2.3000000000000003
+2023,4,25,23,0,-1,1.03,0.083,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.356,98.8,123.49000000000001,0.9400000000000001,0.13,790,0.8,352,2.3000000000000003
+2023,4,25,23,30,-1.3,1.03,0.083,0.64,0,0,0,0,0,-1.3,0,0,0,0,0.356,100,125.14,0.9400000000000001,0.13,790,0.8,352,2.3000000000000003
+2023,4,26,0,0,-1.6,0.98,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.356,100,125.93,0.9400000000000001,0.13,790,0.7000000000000001,351,2.3000000000000003
+2023,4,26,0,30,-1.9000000000000001,0.98,0.081,0.64,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.356,100,125.84,0.9400000000000001,0.13,790,0.7000000000000001,352,2.3000000000000003
+2023,4,26,1,0,-2.2,0.92,0.082,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.356,100,124.86,0.9400000000000001,0.13,790,0.7000000000000001,352,2.3000000000000003
+2023,4,26,1,30,-2.4000000000000004,0.92,0.082,0.64,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.356,100,123.04,0.9400000000000001,0.13,790,0.7000000000000001,354,2.3000000000000003
+2023,4,26,2,0,-2.5,0.9,0.088,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.356,100,120.47,0.9400000000000001,0.13,790,0.7000000000000001,357,2.3000000000000003
+2023,4,26,2,30,-2.6,0.9,0.088,0.64,0,0,0,0,0,-2.6,0,0,0,0,0.357,100,117.23,0.9400000000000001,0.13,791,0.7000000000000001,182,2.1
+2023,4,26,3,0,-2.7,0.9,0.091,0.64,0,0,0,0,4,-2.7,0,0,0,0,0.357,100,113.43,0.9400000000000001,0.13,791,0.7000000000000001,8,2
+2023,4,26,3,30,-2.9000000000000004,0.9,0.091,0.64,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.357,100,109.17,0.9400000000000001,0.13,791,0.7000000000000001,13,1.9000000000000001
+2023,4,26,4,0,-3,0.91,0.09,0.64,0,0,0,0,0,-3,0,0,0,0,0.357,100,104.52,0.9400000000000001,0.13,791,0.7000000000000001,19,1.8
+2023,4,26,4,30,-3.1,0.91,0.09,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.356,100,99.58,0.9400000000000001,0.13,791,0.7000000000000001,22,1.8
+2023,4,26,5,0,-3.2,0.92,0.092,0.64,0,0,0,0,0,-3.2,0,0,0,0,0.356,100,94.39,0.9400000000000001,0.13,792,0.7000000000000001,25,1.7000000000000002
+2023,4,26,5,30,-2.3000000000000003,0.92,0.092,0.64,14,94,16,0,0,-2.5,14,94,0,16,0.354,98.55,88.71000000000001,0.9400000000000001,0.13,792,0.7000000000000001,25,1.9000000000000001
+2023,4,26,6,0,-1.3,0.93,0.092,0.64,40,376,83,0,0,-2.1,40,376,0,83,0.352,94.12,83.39,0.9400000000000001,0.13,792,0.7000000000000001,25,2.2
+2023,4,26,6,30,0.4,0.93,0.092,0.64,55,574,176,0,0,-2.1,54,382,0,135,0.35000000000000003,83.17,77.82000000000001,0.93,0.13,792,0.7000000000000001,22,2.4000000000000004
+2023,4,26,7,0,2,0.9400000000000001,0.088,0.64,67,700,281,0,4,-1.1,102,304,0,195,0.34800000000000003,79.99,72.16,0.93,0.13,792,0.7000000000000001,19,2.7
+2023,4,26,7,30,4,0.9400000000000001,0.088,0.64,75,783,388,0,4,-1.1,180,153,0,241,0.34700000000000003,69.45,66.46000000000001,0.93,0.13,792,0.7000000000000001,17,3
+2023,4,26,8,0,6,0.93,0.085,0.64,83,843,494,0,0,-0.6000000000000001,170,508,0,418,0.34500000000000003,62.54,60.79,0.93,0.13,792,0.7000000000000001,16,3.4000000000000004
+2023,4,26,8,30,7.6000000000000005,0.93,0.085,0.64,88,886,594,0,0,-0.6000000000000001,97,865,0,591,0.343,56.050000000000004,55.17,0.93,0.13,792,0.7000000000000001,16,3.6
+2023,4,26,9,0,9.1,0.92,0.084,0.64,93,918,687,0,0,-1.1,93,918,0,687,0.341,48.81,49.68,0.93,0.13,792,0.7000000000000001,16,3.7
+2023,4,26,9,30,10.200000000000001,0.92,0.084,0.64,98,941,770,0,0,-1.1,98,941,0,770,0.339,45.35,44.4,0.93,0.13,792,0.7000000000000001,14,3.6
+2023,4,26,10,0,11.3,0.88,0.083,0.64,101,959,842,0,0,-1.6,101,959,0,842,0.337,40.61,39.44,0.93,0.13,792,0.7000000000000001,12,3.4000000000000004
+2023,4,26,10,30,12.200000000000001,0.88,0.083,0.64,101,976,901,0,0,-1.6,101,976,0,901,0.336,38.28,34.96,0.92,0.13,792,0.7000000000000001,9,3.3000000000000003
+2023,4,26,11,0,13.100000000000001,0.85,0.074,0.64,100,990,947,0,0,-2,100,990,0,947,0.335,35.19,31.19,0.92,0.13,792,0.7000000000000001,5,3.1
+2023,4,26,11,30,13.8,0.85,0.074,0.64,100,997,977,0,0,-2,176,824,0,900,0.335,33.58,28.45,0.92,0.13,791,0.7000000000000001,181,3
+2023,4,26,12,0,14.5,0.81,0.069,0.64,100,1002,992,0,0,-2.3000000000000003,252,690,0,867,0.336,31.330000000000002,27.05,0.92,0.13,791,0.7000000000000001,356,2.9000000000000004
+2023,4,26,12,30,15,0.81,0.069,0.64,98,1004,991,0,3,-2.3000000000000003,446,202,0,626,0.336,30.34,27.2,0.92,0.13,791,0.7000000000000001,352,2.9000000000000004
+2023,4,26,13,0,15.5,0.78,0.063,0.64,96,1002,973,0,4,-2.6,401,185,0,563,0.336,28.7,28.88,0.92,0.13,791,0.7000000000000001,347,3
+2023,4,26,13,30,15.700000000000001,0.78,0.063,0.64,98,990,939,0,5,-2.6,420,335,0,705,0.336,28.3,31.85,0.92,0.13,790,0.7000000000000001,344,2.9000000000000004
+2023,4,26,14,0,16,0.77,0.078,0.64,100,972,889,0,3,-3,361,438,0,716,0.335,27.060000000000002,35.77,0.92,0.13,790,0.7000000000000001,340,2.9000000000000004
+2023,4,26,14,30,16,0.77,0.078,0.64,98,956,827,0,0,-3,292,569,0,726,0.333,27.060000000000002,40.35,0.92,0.13,790,0.8,337,2.8000000000000003
+2023,4,26,15,0,15.9,0.76,0.081,0.64,96,935,753,0,0,-3.3000000000000003,188,738,0,706,0.331,26.51,45.38,0.92,0.13,790,0.8,334,2.7
+2023,4,26,15,30,15.600000000000001,0.76,0.081,0.64,93,907,667,0,0,-3.3000000000000003,126,840,0,658,0.328,27.03,50.71,0.93,0.13,790,0.8,332,2.7
+2023,4,26,16,0,15.3,0.75,0.08700000000000001,0.64,89,869,572,0,0,-3.7,104,831,7,566,0.326,26.89,56.22,0.93,0.13,789,0.8,330,2.6
+2023,4,26,16,30,14.8,0.75,0.08700000000000001,0.64,84,819,470,0,0,-3.7,84,819,0,470,0.326,27.76,61.85,0.93,0.13,789,0.8,328,2.4000000000000004
+2023,4,26,17,0,14.200000000000001,0.75,0.092,0.64,76,752,364,0,0,-3.5,76,752,0,364,0.325,29.28,67.52,0.93,0.13,789,0.8,327,2.3000000000000003
+2023,4,26,17,30,12.700000000000001,0.75,0.092,0.64,68,659,258,0,0,-3.5,68,659,0,258,0.327,32.27,73.21000000000001,0.93,0.13,789,0.8,326,1.6
+2023,4,26,18,0,11.200000000000001,0.77,0.097,0.64,55,519,155,0,0,0.5,55,519,0,155,0.328,47.84,78.84,0.93,0.13,789,0.8,324,0.9
+2023,4,26,18,30,10.100000000000001,0.77,0.097,0.64,36,302,66,0,0,0.6000000000000001,38,278,7,65,0.33,51.53,84.38,0.93,0.13,790,0.8,320,0.8
+2023,4,26,19,0,9.1,0.78,0.1,0.64,9,47,9,2,0,-1.1,8,34,21,8,0.332,49.02,89.60000000000001,0.93,0.13,790,0.9,315,0.8
+2023,4,26,19,30,8.6,0.78,0.1,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.334,50.7,95.31,0.93,0.13,790,0.9,308,0.8
+2023,4,26,20,0,8.200000000000001,0.77,0.101,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.335,52.54,100.44,0.93,0.13,790,0.9,301,0.8
+2023,4,26,20,30,7.6000000000000005,0.77,0.101,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,54.72,105.31,0.93,0.13,790,0.9,298,0.9
+2023,4,26,21,0,7,0.79,0.10400000000000001,0.64,0,0,0,0,0,-0.8,0,0,0,0,0.336,57.71,109.86,0.93,0.13,790,0.9,294,1
+2023,4,26,21,30,6.4,0.79,0.10400000000000001,0.64,0,0,0,0,5,-0.8,0,0,0,0,0.334,60.13,114.02,0.9400000000000001,0.13,790,1,297,1.1
+2023,4,26,22,0,5.800000000000001,0.8200000000000001,0.115,0.64,0,0,0,0,5,-0.9,0,0,0,0,0.333,62.15,117.69,0.9400000000000001,0.13,790,1,300,1.2000000000000002
+2023,4,26,22,30,5.4,0.8200000000000001,0.115,0.64,0,0,0,0,7,-0.9,0,0,0,0,0.332,63.89,120.78,0.9400000000000001,0.13,790,1,305,1.3
+2023,4,26,23,0,4.9,0.86,0.136,0.64,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.33,67.01,123.19,0.9500000000000001,0.13,790,1,311,1.4000000000000001
+2023,4,26,23,30,4.6000000000000005,0.86,0.136,0.64,0,0,0,0,6,-0.7000000000000001,0,0,0,0,0.33,68.43,124.83,0.9500000000000001,0.13,790,1,315,1.4000000000000001
+2023,4,27,0,0,4.3,0.87,0.14,0.64,0,0,0,0,6,-0.30000000000000004,0,0,0,0,0.33,71.85000000000001,125.61,0.9500000000000001,0.13,790,1,320,1.5
+2023,4,27,0,30,4.1000000000000005,0.87,0.14,0.64,0,0,0,0,6,-0.30000000000000004,0,0,0,0,0.33,72.87,125.52,0.9500000000000001,0.13,790,1,323,1.5
+2023,4,27,1,0,4,0.86,0.132,0.64,0,0,0,0,6,-0.1,0,0,0,0,0.33,74.7,124.54,0.9400000000000001,0.13,789,1,327,1.5
+2023,4,27,1,30,3.4000000000000004,0.86,0.132,0.64,0,0,0,0,6,-0.1,0,0,0,0,0.331,77.91,122.73,0.9400000000000001,0.13,789,1,329,1.4000000000000001
+2023,4,27,2,0,2.9000000000000004,0.8,0.1,0.64,0,0,0,0,6,-0.4,0,0,0,0,0.333,79.03,120.16,0.93,0.13,789,1,331,1.4000000000000001
+2023,4,27,2,30,2.3000000000000003,0.8,0.1,0.64,0,0,0,0,7,-0.4,0,0,0,0,0.335,82.47,116.93,0.93,0.13,789,0.9,330,1.4000000000000001
+2023,4,27,3,0,1.8,0.74,0.085,0.64,0,0,0,0,0,-1,0,0,0,0,0.338,81.65,113.14,0.92,0.13,789,0.9,329,1.3
+2023,4,27,3,30,1.5,0.74,0.085,0.64,0,0,0,0,0,-1,0,0,0,0,0.339,83.42,108.89,0.92,0.13,789,0.8,325,1.2000000000000002
+2023,4,27,4,0,1.2000000000000002,0.74,0.091,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.34,82.35000000000001,104.26,0.92,0.13,789,0.8,321,1.2000000000000002
+2023,4,27,4,30,1.1,0.74,0.091,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.342,82.95,99.32000000000001,0.93,0.13,789,0.8,312,1.1
+2023,4,27,5,0,1,0.75,0.105,0.64,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.343,81.14,94.14,0.93,0.13,789,0.8,304,0.9
+2023,4,27,5,30,2.3000000000000003,0.75,0.105,0.64,14,82,16,0,0,-1.9000000000000001,14,82,0,16,0.34500000000000003,73.94,88.5,0.93,0.13,789,0.8,290,1
+2023,4,27,6,0,3.6,0.7000000000000001,0.10300000000000001,0.64,42,349,84,0,0,-0.9,42,349,0,84,0.34700000000000003,72.67,83.16,0.93,0.13,789,0.7000000000000001,277,1
+2023,4,27,6,30,5.5,0.7000000000000001,0.10300000000000001,0.64,60,546,177,0,0,-0.8,60,546,0,177,0.34900000000000003,63.65,77.59,0.93,0.13,789,0.7000000000000001,278,1.6
+2023,4,27,7,0,7.300000000000001,0.6900000000000001,0.10300000000000001,0.64,73,671,281,0,0,-2,73,671,0,281,0.35100000000000003,51.56,71.93,0.93,0.13,789,0.7000000000000001,279,2.1
+2023,4,27,7,30,9.3,0.6900000000000001,0.10300000000000001,0.64,84,753,387,0,0,-2,156,495,0,355,0.352,45.03,66.24,0.93,0.13,789,0.7000000000000001,291,2.8000000000000003
+2023,4,27,8,0,11.200000000000001,0.72,0.108,0.64,93,811,492,0,8,-3.9000000000000004,206,429,0,417,0.354,34.44,60.56,0.93,0.13,789,0.7000000000000001,302,3.6
+2023,4,27,8,30,12.200000000000001,0.72,0.108,0.64,101,853,591,0,7,-3.9000000000000004,228,456,0,490,0.355,32.25,54.94,0.93,0.13,789,0.7000000000000001,300,3.6
+2023,4,27,9,0,13.200000000000001,0.74,0.113,0.64,109,883,683,0,7,-4.3,241,539,0,591,0.356,29.27,49.44,0.9400000000000001,0.13,789,0.7000000000000001,298,3.7
+2023,4,27,9,30,13.9,0.74,0.113,0.64,115,906,765,0,7,-4.4,245,580,0,661,0.357,27.93,44.15,0.9400000000000001,0.13,788,0.7000000000000001,297,3.8000000000000003
+2023,4,27,10,0,14.700000000000001,0.71,0.11800000000000001,0.64,121,922,836,0,0,-4.6000000000000005,183,787,0,793,0.357,26.11,39.17,0.9400000000000001,0.13,788,0.7000000000000001,297,4
+2023,4,27,10,30,15.3,0.71,0.11800000000000001,0.64,118,948,898,0,0,-4.6000000000000005,197,814,0,866,0.357,25.13,34.68,0.9400000000000001,0.13,788,0.7000000000000001,296,4.2
+2023,4,27,11,0,15.9,0.93,0.095,0.64,112,972,946,0,0,-4.800000000000001,147,914,0,931,0.358,23.830000000000002,30.89,0.9400000000000001,0.13,788,0.7000000000000001,295,4.4
+2023,4,27,11,30,16.3,0.93,0.095,0.64,114,978,976,0,7,-4.800000000000001,223,750,0,884,0.358,23.2,28.13,0.9400000000000001,0.13,787,0.7000000000000001,295,4.7
+2023,4,27,12,0,16.8,0.8300000000000001,0.092,0.64,114,981,990,0,0,-4.9,211,784,0,911,0.358,22.29,26.72,0.9400000000000001,0.13,787,0.7000000000000001,295,5
+2023,4,27,12,30,17,0.8300000000000001,0.092,0.64,115,978,987,0,3,-4.9,362,500,0,808,0.359,22.01,26.89,0.9400000000000001,0.13,787,0.7000000000000001,297,5.300000000000001
+2023,4,27,13,0,17.2,0.86,0.098,0.64,115,971,968,0,0,-4.800000000000001,145,912,0,946,0.359,21.8,28.59,0.9400000000000001,0.13,786,0.8,299,5.6000000000000005
+2023,4,27,13,30,17,0.86,0.098,0.64,115,962,934,0,7,-4.800000000000001,223,773,0,881,0.36,22.080000000000002,31.59,0.9400000000000001,0.13,786,0.8,301,5.800000000000001
+2023,4,27,14,0,16.900000000000002,1.06,0.10200000000000001,0.64,112,951,886,0,7,-4.6000000000000005,228,680,0,781,0.36,22.650000000000002,35.53,0.9500000000000001,0.13,786,0.8,304,6.1000000000000005
+2023,4,27,14,30,16.400000000000002,1.06,0.10200000000000001,0.64,112,932,824,0,7,-4.6000000000000005,210,714,4,756,0.361,23.35,40.14,0.9500000000000001,0.13,785,0.8,307,6.300000000000001
+2023,4,27,15,0,16,0.93,0.108,0.64,109,906,748,0,8,-4.2,251,603,7,676,0.361,24.7,45.19,0.9500000000000001,0.13,785,0.9,311,6.4
+2023,4,27,15,30,15.3,0.93,0.108,0.64,102,879,661,0,7,-4.2,326,198,0,452,0.362,25.830000000000002,50.53,0.9400000000000001,0.13,785,0.9,315,6.6000000000000005
+2023,4,27,16,0,14.600000000000001,0.88,0.10300000000000001,0.64,96,846,568,0,7,-3.3000000000000003,255,288,0,416,0.364,28.87,56.050000000000004,0.9400000000000001,0.13,785,0.9,319,6.9
+2023,4,27,16,30,13.100000000000001,0.88,0.10300000000000001,0.64,88,796,466,0,7,-3.3000000000000003,155,605,21,442,0.366,31.85,61.68,0.9400000000000001,0.13,786,1,328,7
+2023,4,27,17,0,11.5,0.91,0.105,0.64,80,728,360,0,7,-1,162,402,4,317,0.369,41.86,67.36,0.9500000000000001,0.13,786,1.1,336,7.1000000000000005
+2023,4,27,17,30,8.9,0.91,0.105,0.64,69,639,255,0,7,-1,111,306,25,200,0.373,49.84,73.04,0.9500000000000001,0.13,787,1.1,169,7.300000000000001
+2023,4,27,18,0,6.300000000000001,0.97,0.105,0.64,54,508,154,1,8,0.7000000000000001,70,122,21,94,0.377,67.32000000000001,78.67,0.9500000000000001,0.13,788,1.2000000000000002,3,7.6000000000000005
+2023,4,27,18,30,4.2,0.97,0.105,0.64,35,324,68,7,7,0.7000000000000001,35,3,100,35,0.38,77.98,84.2,0.9500000000000001,0.13,789,1.1,11,7.9
+2023,4,27,19,0,2,0.98,0.081,0.64,9,68,10,4,6,-1.5,3,0,57,3,0.384,77.56,89.43,0.9400000000000001,0.13,790,1,20,8.200000000000001
+2023,4,27,19,30,1.3,0.98,0.081,0.64,0,0,0,0,7,-1.5,0,0,0,0,0.384,81.64,95.11,0.93,0.13,791,0.9,21,7.7
+2023,4,27,20,0,0.7000000000000001,0.9,0.054,0.64,0,0,0,0,7,-4.3,0,0,0,0,0.385,68.97,100.23,0.92,0.13,791,0.7000000000000001,23,7.300000000000001
+2023,4,27,20,30,0.5,0.9,0.054,0.64,0,0,0,0,8,-4.3,0,0,0,0,0.382,70.06,105.09,0.92,0.13,792,0.7000000000000001,23,6.7
+2023,4,27,21,0,0.30000000000000004,0.88,0.047,0.64,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.38,69.83,109.63,0.92,0.13,792,0.6000000000000001,23,6
+2023,4,27,21,30,0,0.88,0.047,0.64,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.376,71.36,113.77,0.92,0.13,792,0.6000000000000001,23,5.5
+2023,4,27,22,0,-0.30000000000000004,0.9,0.045,0.64,0,0,0,0,8,-4.4,0,0,0,0,0.372,74.06,117.43,0.92,0.13,792,0.6000000000000001,24,5
+2023,4,27,22,30,-0.7000000000000001,0.9,0.045,0.64,0,0,0,0,5,-4.3,0,0,0,0,0.371,76.34,120.5,0.92,0.13,793,0.5,22,4.4
+2023,4,27,23,0,-1.2000000000000002,0.9,0.043000000000000003,0.64,0,0,0,0,5,-4.5,0,0,0,0,0.369,78.51,122.9,0.91,0.13,793,0.5,20,3.8000000000000003
+2023,4,27,23,30,-1.8,0.9,0.043000000000000003,0.64,0,0,0,0,5,-4.5,0,0,0,0,0.369,82.05,124.52,0.91,0.13,793,0.5,16,3.3000000000000003
+2023,4,28,0,0,-2.4000000000000004,0.9,0.042,0.64,0,0,0,0,5,-4.7,0,0,0,0,0.369,84.10000000000001,125.3,0.91,0.13,793,0.4,12,2.8000000000000003
+2023,4,28,0,30,-3,0.9,0.042,0.64,0,0,0,0,5,-4.7,0,0,0,0,0.367,87.92,125.2,0.91,0.13,793,0.4,8,2.5
+2023,4,28,1,0,-3.5,0.91,0.043000000000000003,0.64,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.366,88.82000000000001,124.22,0.91,0.13,793,0.4,3,2.3000000000000003
+2023,4,28,1,30,-3.9000000000000004,0.91,0.043000000000000003,0.64,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.364,91.64,122.41,0.91,0.13,794,0.4,2,2.4000000000000004
+2023,4,28,2,0,-4.2,0.91,0.046,0.64,0,0,0,0,0,-5.4,0,0,0,0,0.362,91.33,119.85000000000001,0.91,0.13,794,0.4,1,2.5
+2023,4,28,2,30,-4.4,0.91,0.046,0.64,0,0,0,0,0,-5.4,0,0,0,0,0.359,92.71000000000001,116.63,0.91,0.13,794,0.4,2,2.5
+2023,4,28,3,0,-4.7,0.91,0.049,0.64,0,0,0,0,4,-5.7,0,0,0,0,0.357,92.55,112.86,0.91,0.13,794,0.4,3,2.6
+2023,4,28,3,30,-5,0.91,0.049,0.64,0,0,0,0,4,-5.7,0,0,0,0,0.355,94.67,108.62,0.91,0.13,794,0.4,5,2.5
+2023,4,28,4,0,-5.300000000000001,0.9,0.051000000000000004,0.64,0,0,0,0,4,-6,0,0,0,0,0.353,94.93,104,0.91,0.13,795,0.4,7,2.3000000000000003
+2023,4,28,4,30,-5.300000000000001,0.9,0.051000000000000004,0.64,0,0,0,0,0,-6,0,0,0,0,0.35100000000000003,94.93,99.07000000000001,0.91,0.13,795,0.4,9,2.3000000000000003
+2023,4,28,5,0,-5.300000000000001,0.88,0.052000000000000005,0.64,0,0,0,0,0,-6.2,0,0,0,0,0.34900000000000003,93.69,93.9,0.91,0.13,795,0.4,11,2.2
+2023,4,28,5,30,-4,0.88,0.052000000000000005,0.64,15,165,20,0,0,-6.2,15,165,0,20,0.34700000000000003,84.94,88.27,0.92,0.13,795,0.4,15,2.7
+2023,4,28,6,0,-2.8000000000000003,0.86,0.054,0.64,35,500,97,0,0,-5.9,35,500,0,97,0.34500000000000003,79.12,82.92,0.92,0.13,795,0.4,19,3.1
+2023,4,28,6,30,-0.8,0.86,0.054,0.64,48,677,196,0,0,-5.9,48,677,0,196,0.343,68.29,77.36,0.92,0.13,795,0.4,30,3.4000000000000004
+2023,4,28,7,0,1.1,0.84,0.054,0.64,57,784,303,0,0,-6.1000000000000005,68,613,0,260,0.341,58.77,71.7,0.92,0.13,795,0.4,42,3.7
+2023,4,28,7,30,2.4000000000000004,0.84,0.054,0.64,63,854,410,0,0,-6.1000000000000005,124,443,0,304,0.339,53.56,66.01,0.91,0.13,795,0.4,42,3.6
+2023,4,28,8,0,3.7,0.84,0.053,0.64,69,903,516,0,0,-7,162,475,0,397,0.338,45.43,60.33,0.91,0.13,796,0.5,42,3.5
+2023,4,28,8,30,4.800000000000001,0.84,0.053,0.64,73,938,615,0,0,-7,195,525,0,498,0.336,42.06,54.71,0.92,0.13,796,0.5,39,3.4000000000000004
+2023,4,28,9,0,6,0.87,0.051000000000000004,0.64,76,967,708,0,0,-8.4,133,825,0,672,0.334,34.730000000000004,49.2,0.92,0.13,796,0.5,36,3.3000000000000003
+2023,4,28,9,30,7.1000000000000005,0.87,0.051000000000000004,0.64,79,988,791,0,0,-8.4,79,988,0,791,0.333,32.21,43.9,0.92,0.13,796,0.5,33,3.3000000000000003
+2023,4,28,10,0,8.200000000000001,0.9,0.05,0.64,82,1004,863,0,0,-9.3,92,986,0,859,0.332,27.88,38.910000000000004,0.92,0.13,795,0.5,30,3.3000000000000003
+2023,4,28,10,30,9.200000000000001,0.9,0.05,0.64,79,1020,921,0,0,-9.3,79,1020,0,921,0.332,26.060000000000002,34.4,0.92,0.13,795,0.5,27,3.3000000000000003
+2023,4,28,11,0,10.200000000000001,1.22,0.038,0.64,77,1033,966,0,0,-9.600000000000001,77,1033,0,966,0.331,23.78,30.6,0.92,0.13,795,0.6000000000000001,24,3.3000000000000003
+2023,4,28,11,30,11,1.22,0.038,0.64,77,1036,993,0,0,-9.600000000000001,77,1036,0,993,0.33,22.55,27.82,0.92,0.13,795,0.6000000000000001,22,3.3000000000000003
+2023,4,28,12,0,11.9,1.24,0.037,0.64,77,1038,1007,0,0,-9.600000000000001,135,944,0,980,0.329,21.27,26.41,0.92,0.13,795,0.6000000000000001,20,3.2
+2023,4,28,12,30,12.5,1.24,0.037,0.64,76,1039,1005,0,0,-9.600000000000001,76,1039,0,1005,0.328,20.45,26.580000000000002,0.91,0.13,795,0.6000000000000001,18,3.2
+2023,4,28,13,0,13.200000000000001,1.24,0.035,0.64,75,1037,988,0,0,-9.4,75,1037,0,988,0.326,19.78,28.310000000000002,0.91,0.13,795,0.6000000000000001,16,3.2
+2023,4,28,13,30,13.600000000000001,1.24,0.035,0.64,79,1023,953,0,0,-9.5,79,1023,0,953,0.325,19.25,31.330000000000002,0.91,0.13,794,0.6000000000000001,15,3.2
+2023,4,28,14,0,14.100000000000001,0.85,0.055,0.64,85,1002,903,0,0,-9.3,85,1002,0,903,0.324,18.92,35.300000000000004,0.91,0.13,794,0.6000000000000001,13,3.2
+2023,4,28,14,30,14.3,0.85,0.055,0.64,86,984,841,0,0,-9.3,86,984,0,841,0.322,18.68,39.93,0.92,0.13,794,0.6000000000000001,12,3.2
+2023,4,28,15,0,14.4,0.77,0.065,0.64,86,960,765,0,0,-9.1,86,960,0,765,0.321,18.79,45,0.92,0.13,794,0.6000000000000001,11,3.2
+2023,4,28,15,30,14.3,0.77,0.065,0.64,84,932,679,0,0,-9.1,84,932,0,679,0.319,18.91,50.34,0.92,0.13,794,0.6000000000000001,11,3.1
+2023,4,28,16,0,14.100000000000001,0.71,0.073,0.64,82,894,584,0,0,-8.9,82,894,0,584,0.318,19.490000000000002,55.870000000000005,0.92,0.13,794,0.6000000000000001,10,3
+2023,4,28,16,30,13.700000000000001,0.71,0.073,0.64,77,847,481,0,0,-8.9,77,847,0,481,0.316,20,61.51,0.92,0.13,794,0.7000000000000001,9,2.6
+2023,4,28,17,0,13.200000000000001,0.67,0.079,0.64,72,782,375,0,0,-8.200000000000001,72,782,0,375,0.315,21.8,67.19,0.92,0.13,794,0.7000000000000001,8,2.3000000000000003
+2023,4,28,17,30,11.8,0.67,0.079,0.64,64,694,268,0,0,-8.200000000000001,64,694,0,268,0.314,23.89,72.87,0.92,0.13,794,0.7000000000000001,13,1.5
+2023,4,28,18,0,10.4,0.6900000000000001,0.081,0.64,53,563,165,0,0,-2.6,53,563,0,165,0.312,40.12,78.5,0.93,0.13,794,0.7000000000000001,17,0.7000000000000001
+2023,4,28,18,30,9.5,0.6900000000000001,0.081,0.64,37,349,73,5,3,-2.6,47,134,71,61,0.311,42.6,84.03,0.93,0.13,794,0.7000000000000001,60,0.5
+2023,4,28,19,0,8.700000000000001,0.75,0.09,0.64,10,62,11,2,0,-5.4,8,13,29,8,0.311,36.300000000000004,89.27,0.93,0.13,795,0.7000000000000001,103,0.30000000000000004
+2023,4,28,19,30,7.9,0.75,0.09,0.64,0,0,0,0,0,-5.5,0,0,0,0,0.31,38.32,94.92,0.93,0.13,795,0.7000000000000001,136,0.6000000000000001
+2023,4,28,20,0,7.2,0.8200000000000001,0.10200000000000001,0.64,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.309,39.62,100.03,0.93,0.13,795,0.7000000000000001,170,0.9
+2023,4,28,20,30,6.300000000000001,0.8200000000000001,0.10200000000000001,0.64,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.309,42.14,104.88,0.93,0.13,795,0.7000000000000001,180,1
+2023,4,28,21,0,5.4,0.87,0.113,0.64,0,0,0,0,0,-5,0,0,0,0,0.309,47.24,109.4,0.93,0.13,795,0.7000000000000001,191,1.2000000000000002
+2023,4,28,21,30,4.7,0.87,0.113,0.64,0,0,0,0,0,-5,0,0,0,0,0.309,49.6,113.53,0.93,0.13,795,0.7000000000000001,198,1.2000000000000002
+2023,4,28,22,0,3.9000000000000004,0.88,0.112,0.64,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.309,53.19,117.17,0.93,0.13,795,0.7000000000000001,206,1.3
+2023,4,28,22,30,3.4000000000000004,0.88,0.112,0.64,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.309,55.09,120.23,0.93,0.13,795,0.7000000000000001,211,1.3
+2023,4,28,23,0,2.9000000000000004,0.87,0.108,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.309,57.45,122.61,0.92,0.13,795,0.8,216,1.3
+2023,4,28,23,30,2.7,0.87,0.108,0.64,0,0,0,0,0,-4.7,0,0,0,0,0.308,58.27,124.22,0.92,0.13,795,0.8,220,1.2000000000000002
+2023,4,29,0,0,2.5,0.89,0.11,0.64,0,0,0,0,8,-4.5,0,0,0,0,0.308,59.72,124.99000000000001,0.92,0.13,795,0.8,224,1.2000000000000002
+2023,4,29,0,30,2.3000000000000003,0.89,0.11,0.64,0,0,0,0,0,-4.5,0,0,0,0,0.307,60.57,124.88000000000001,0.92,0.13,795,0.8,227,1.1
+2023,4,29,1,0,2.1,0.9,0.10200000000000001,0.64,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.307,61,123.91,0.92,0.13,795,0.8,231,1.1
+2023,4,29,1,30,1.7000000000000002,0.9,0.10200000000000001,0.64,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.307,62.77,122.10000000000001,0.91,0.13,795,0.8,231,1.1
+2023,4,29,2,0,1.2000000000000002,0.87,0.089,0.64,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.308,61.9,119.55,0.91,0.13,795,0.8,232,1.1
+2023,4,29,2,30,1,0.87,0.089,0.64,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.309,62.79,116.34,0.91,0.13,795,0.8,231,1.1
+2023,4,29,3,0,0.7000000000000001,0.88,0.082,0.64,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.309,62.660000000000004,112.58,0.91,0.13,795,0.8,231,1.1
+2023,4,29,3,30,0.6000000000000001,0.88,0.082,0.64,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.31,63.11,108.35000000000001,0.9,0.13,795,0.8,232,1.1
+2023,4,29,4,0,0.4,0.91,0.076,0.64,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.311,63.35,103.74000000000001,0.9,0.13,795,0.9,233,1
+2023,4,29,4,30,0.30000000000000004,0.91,0.076,0.64,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.312,63.81,98.82000000000001,0.9,0.13,795,0.9,233,1
+2023,4,29,5,0,0.30000000000000004,0.9400000000000001,0.07200000000000001,0.64,0,0,0,0,0,-5.7,0,0,0,0,0.313,64.1,93.66,0.9,0.13,795,0.9,234,1
+2023,4,29,5,30,1.8,0.9400000000000001,0.07200000000000001,0.64,17,153,22,0,0,-5.7,17,153,0,22,0.314,57.550000000000004,88.05,0.9,0.13,795,0.9,227,1
+2023,4,29,6,0,3.3000000000000003,0.9500000000000001,0.07,0.64,37,447,94,0,0,-3.8000000000000003,37,447,0,94,0.315,59.59,82.7,0.9,0.13,795,0.8,220,1.1
+2023,4,29,6,30,5.1000000000000005,0.9500000000000001,0.07,0.64,50,624,189,0,0,-3.8000000000000003,50,624,0,189,0.315,52.54,77.14,0.9,0.13,795,0.8,218,1.2000000000000002
+2023,4,29,7,0,6.800000000000001,0.96,0.069,0.64,60,734,293,0,0,-5.1000000000000005,60,734,0,293,0.316,42.53,71.48,0.9,0.13,795,0.8,217,1.3
+2023,4,29,7,30,9.3,0.96,0.069,0.64,68,808,399,0,0,-5.1000000000000005,68,808,0,399,0.316,35.9,65.79,0.9,0.13,795,0.8,241,1.4000000000000001
+2023,4,29,8,0,11.700000000000001,0.96,0.07,0.64,74,861,503,0,0,-6.1000000000000005,74,861,0,503,0.316,28.240000000000002,60.11,0.9,0.13,795,0.8,265,1.5
+2023,4,29,8,30,13.200000000000001,0.96,0.07,0.64,80,899,602,0,0,-6.1000000000000005,80,899,0,602,0.316,25.6,54.480000000000004,0.9,0.13,795,0.8,270,1.3
+2023,4,29,9,0,14.700000000000001,0.97,0.07100000000000001,0.64,84,928,693,0,0,-5.9,84,928,0,693,0.315,23.63,48.97,0.9,0.13,795,0.8,275,1.2000000000000002
+2023,4,29,9,30,15.700000000000001,0.97,0.07100000000000001,0.64,88,950,775,0,0,-5.9,88,950,0,775,0.314,22.17,43.660000000000004,0.9,0.13,795,0.8,268,1.3
+2023,4,29,10,0,16.8,0.99,0.073,0.64,92,966,846,0,0,-5.1000000000000005,92,966,0,846,0.314,21.95,38.65,0.9,0.13,795,0.8,261,1.3
+2023,4,29,10,30,17.7,0.99,0.073,0.64,88,989,907,0,0,-5.1000000000000005,88,989,0,907,0.313,20.71,34.12,0.9,0.13,794,0.8,257,1.5
+2023,4,29,11,0,18.6,1.3800000000000001,0.051000000000000004,0.64,82,1010,954,0,0,-4.4,82,1010,0,954,0.312,20.63,30.3,0.89,0.13,794,0.8,252,1.7000000000000002
+2023,4,29,11,30,19.200000000000003,1.3800000000000001,0.051000000000000004,0.64,84,1014,983,0,0,-4.4,84,1014,0,983,0.311,19.87,27.51,0.9,0.13,794,0.8,250,1.9000000000000001
+2023,4,29,12,0,19.900000000000002,1.34,0.053,0.64,85,1015,997,0,0,-4.1000000000000005,85,1015,0,997,0.31,19.490000000000002,26.09,0.9,0.13,793,0.8,248,2.2
+2023,4,29,12,30,20.400000000000002,1.34,0.053,0.64,86,1013,994,0,0,-4.1000000000000005,86,1013,0,994,0.309,18.900000000000002,26.28,0.9,0.13,793,0.8,248,2.4000000000000004
+2023,4,29,13,0,20.900000000000002,1.2,0.058,0.64,88,1008,978,0,0,-4.1000000000000005,107,981,0,973,0.308,18.36,28.03,0.91,0.13,793,0.8,247,2.7
+2023,4,29,13,30,21.1,1.2,0.058,0.64,86,1004,946,0,0,-4.1000000000000005,86,1004,0,946,0.308,18.11,31.07,0.91,0.13,792,0.8,247,2.8000000000000003
+2023,4,29,14,0,21.400000000000002,1.18,0.057,0.64,85,996,900,0,0,-4.3,85,996,0,900,0.307,17.490000000000002,35.07,0.92,0.13,792,0.8,247,2.9000000000000004
+2023,4,29,14,30,21.3,1.18,0.057,0.64,84,980,838,0,0,-4.3,84,980,0,838,0.307,17.6,39.72,0.92,0.13,792,0.8,247,3
+2023,4,29,15,0,21.3,1.06,0.064,0.64,84,960,765,0,0,-4.6000000000000005,84,960,0,765,0.306,17.150000000000002,44.800000000000004,0.92,0.13,791,0.7000000000000001,247,3
+2023,4,29,15,30,21,1.06,0.064,0.64,82,933,680,0,0,-4.6000000000000005,82,933,0,680,0.306,17.47,50.17,0.92,0.13,791,0.7000000000000001,249,2.9000000000000004
+2023,4,29,16,0,20.700000000000003,0.99,0.07,0.64,79,898,585,0,0,-4.800000000000001,79,898,0,585,0.306,17.61,55.7,0.92,0.13,791,0.7000000000000001,250,2.8000000000000003
+2023,4,29,16,30,20.1,0.99,0.07,0.64,74,854,484,0,0,-4.800000000000001,74,854,0,484,0.306,18.27,61.34,0.92,0.13,791,0.7000000000000001,253,2.4000000000000004
+2023,4,29,17,0,19.5,0.98,0.075,0.64,68,793,378,0,0,-3.9000000000000004,68,793,0,378,0.306,20.26,67.02,0.92,0.13,790,0.7000000000000001,255,2.1
+2023,4,29,17,30,17.5,0.98,0.075,0.64,61,706,271,0,0,-3.9000000000000004,61,706,0,271,0.306,22.95,72.7,0.91,0.13,790,0.7000000000000001,256,1.4000000000000001
+2023,4,29,18,0,15.600000000000001,1,0.082,0.64,50,577,167,0,0,2.7,50,577,0,167,0.306,41.81,78.33,0.91,0.13,790,0.7000000000000001,258,0.8
+2023,4,29,18,30,14.200000000000001,1,0.082,0.64,35,371,75,0,0,2.7,35,371,0,75,0.306,45.74,83.86,0.91,0.13,790,0.7000000000000001,269,0.8
+2023,4,29,19,0,12.700000000000001,0.98,0.089,0.64,10,74,11,0,0,-0.4,10,74,0,11,0.307,40.43,89.11,0.91,0.13,791,0.7000000000000001,280,0.8
+2023,4,29,19,30,11.9,0.98,0.089,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.307,42.6,94.73,0.91,0.13,791,0.7000000000000001,294,0.8
+2023,4,29,20,0,11.100000000000001,0.93,0.096,0.64,0,0,0,0,0,-1,0,0,0,0,0.307,42.910000000000004,99.83,0.91,0.13,791,0.7000000000000001,308,0.8
+2023,4,29,20,30,10.4,0.93,0.096,0.64,0,0,0,0,0,-1,0,0,0,0,0.307,44.95,104.66,0.91,0.13,791,0.8,317,0.9
+2023,4,29,21,0,9.700000000000001,0.9,0.101,0.64,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.307,45.95,109.17,0.91,0.13,791,0.8,327,0.9
+2023,4,29,21,30,9.1,0.9,0.101,0.64,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.307,47.84,113.28,0.91,0.13,791,0.8,332,0.9
+2023,4,29,22,0,8.4,0.89,0.10200000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.307,49.29,116.91,0.91,0.13,791,0.8,338,1
+2023,4,29,22,30,7.9,0.89,0.10200000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.307,50.99,119.95,0.91,0.13,791,0.8,341,1
+2023,4,29,23,0,7.300000000000001,0.9,0.099,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.307,52.71,122.32000000000001,0.9,0.13,791,0.8,343,1
+2023,4,29,23,30,6.7,0.9,0.099,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.307,54.92,123.92,0.9,0.13,791,0.8,345,0.9
+2023,4,30,0,0,6.1000000000000005,0.92,0.094,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.306,57.300000000000004,124.68,0.9,0.13,791,0.8,346,0.9
+2023,4,30,0,30,5.5,0.92,0.094,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.306,59.730000000000004,124.57000000000001,0.91,0.13,791,0.8,347,0.9
+2023,4,30,1,0,5,0.9400000000000001,0.08700000000000001,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.305,61.97,123.60000000000001,0.91,0.13,791,0.8,349,0.9
+2023,4,30,1,30,4.6000000000000005,0.9400000000000001,0.08700000000000001,0.64,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.305,63.72,121.8,0.91,0.13,791,0.8,350,0.9
+2023,4,30,2,0,4.2,0.96,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,65.86,119.25,0.91,0.13,791,0.8,351,0.8
+2023,4,30,2,30,3.8000000000000003,0.96,0.081,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,67.74,116.06,0.91,0.13,791,0.8,352,0.8
+2023,4,30,3,0,3.5,0.97,0.075,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,69.23,112.3,0.91,0.13,791,0.8,352,0.7000000000000001
+2023,4,30,3,30,3.2,0.97,0.075,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,70.71000000000001,108.08,0.91,0.13,791,0.8,354,0.7000000000000001
+2023,4,30,4,0,3,0.98,0.07200000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.305,71.59,103.48,0.91,0.13,791,0.8,356,0.6000000000000001
+2023,4,30,4,30,2.9000000000000004,0.98,0.07200000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.306,72.10000000000001,98.57000000000001,0.92,0.13,791,0.8,179,0.6000000000000001
+2023,4,30,5,0,2.8000000000000003,1.02,0.07100000000000001,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.306,73.18,93.42,0.92,0.13,791,0.9,2,0.5
+2023,4,30,5,30,4.2,1.02,0.07100000000000001,0.64,18,164,24,0,0,-1.5,18,164,0,24,0.307,66.32000000000001,87.84,0.92,0.13,791,0.9,3,0.5
+2023,4,30,6,0,5.7,1.07,0.075,0.64,39,452,98,0,0,0.30000000000000004,39,452,0,98,0.308,68.07000000000001,82.48,0.92,0.13,791,0.9,4,0.5
+2023,4,30,6,30,7.4,1.07,0.075,0.64,53,620,193,0,0,0.30000000000000004,53,620,0,193,0.309,60.57,76.92,0.92,0.13,791,0.9,17,0.4
+2023,4,30,7,0,9.200000000000001,1.11,0.08,0.64,65,724,297,0,0,-0.6000000000000001,65,724,0,297,0.31,50.42,71.27,0.93,0.13,791,0.9,29,0.30000000000000004
+2023,4,30,7,30,11.4,1.11,0.08,0.64,72,798,402,0,0,-0.6000000000000001,72,798,0,402,0.311,43.550000000000004,65.57000000000001,0.93,0.13,791,0.9,187,0.8
+2023,4,30,8,0,13.700000000000001,1.1400000000000001,0.081,0.64,79,850,505,0,0,-1.5,79,850,0,505,0.312,35.12,59.89,0.93,0.13,791,0.9,345,1.2000000000000002
+2023,4,30,8,30,15.100000000000001,1.1400000000000001,0.081,0.64,83,890,603,0,0,-1.4000000000000001,83,890,0,603,0.313,32.09,54.26,0.92,0.13,791,0.9,347,1.5
+2023,4,30,9,0,16.5,1.1500000000000001,0.079,0.64,87,920,694,0,0,-2,87,920,0,694,0.313,28.12,48.74,0.92,0.13,791,0.9,349,1.9000000000000001
+2023,4,30,9,30,17.5,1.1500000000000001,0.079,0.64,91,943,776,0,0,-2,91,943,0,776,0.313,26.400000000000002,43.42,0.92,0.13,791,0.9,349,1.8
+2023,4,30,10,0,18.400000000000002,1.16,0.076,0.64,92,962,846,0,0,-1.9000000000000001,150,851,0,817,0.313,25.1,38.4,0.92,0.13,790,0.9,349,1.7000000000000002
+2023,4,30,10,30,19.200000000000003,1.16,0.076,0.64,90,983,906,0,7,-1.9000000000000001,262,608,0,767,0.313,23.88,33.85,0.91,0.13,790,0.9,346,1.5
+2023,4,30,11,0,19.900000000000002,1.28,0.055,0.64,84,1002,952,0,7,-1.8,234,675,0,818,0.313,23.02,30.02,0.91,0.13,790,0.9,342,1.4000000000000001
+2023,4,30,11,30,20.5,1.28,0.055,0.64,85,1006,980,0,0,-1.8,118,936,0,950,0.313,22.18,27.21,0.91,0.13,790,1,333,1.2000000000000002
+2023,4,30,12,0,21.1,1.26,0.054,0.64,85,1008,993,0,0,-1.8,132,924,0,964,0.313,21.44,25.79,0.91,0.13,789,1,323,1
+2023,4,30,12,30,21.5,1.26,0.054,0.64,86,1006,990,0,0,-1.8,195,824,0,936,0.312,20.92,25.98,0.91,0.13,789,1,306,1
+2023,4,30,13,0,21.900000000000002,1.22,0.056,0.64,87,1000,972,0,0,-1.8,263,646,0,835,0.312,20.42,27.75,0.91,0.13,789,1,289,0.9
+2023,4,30,13,30,22.1,1.22,0.056,0.64,90,987,938,0,0,-1.8,135,915,0,921,0.312,20.14,30.82,0.92,0.13,788,1,278,1
+2023,4,30,14,0,22.3,1.16,0.076,0.64,93,967,887,0,0,-1.8,249,626,0,763,0.312,19.91,34.85,0.92,0.13,788,1.1,267,1.1
+2023,4,30,14,30,22.200000000000003,1.16,0.076,0.64,94,948,825,0,0,-1.8,232,645,0,730,0.312,20.03,39.52,0.93,0.13,788,1.1,264,1.1
+2023,4,30,15,0,22.1,1.1500000000000001,0.089,0.64,94,921,750,0,0,-1.7000000000000002,201,693,0,694,0.312,20.29,44.62,0.93,0.13,788,1.1,260,1.2000000000000002
+2023,4,30,15,30,21.700000000000003,1.1500000000000001,0.089,0.64,93,892,666,0,3,-1.7000000000000002,296,321,0,502,0.312,20.76,49.99,0.93,0.13,787,1.1,258,1.2000000000000002
+2023,4,30,16,0,21.3,1.1500000000000001,0.099,0.64,89,853,572,0,5,-1.6,268,113,0,332,0.312,21.55,55.53,0.93,0.13,787,1.1,257,1.2000000000000002
+2023,4,30,16,30,20.700000000000003,1.1500000000000001,0.099,0.64,84,804,472,0,5,-1.6,249,170,4,331,0.312,22.35,61.17,0.93,0.13,787,1.2000000000000002,254,1.1
+2023,4,30,17,0,20.200000000000003,1.1400000000000001,0.10400000000000001,0.64,77,741,368,0,3,-0.9,177,316,7,301,0.312,24.19,66.86,0.93,0.14,787,1.2000000000000002,250,0.9
+2023,4,30,17,30,19.200000000000003,1.1400000000000001,0.10400000000000001,0.64,67,655,264,0,0,-0.9,89,556,0,256,0.313,25.740000000000002,72.54,0.93,0.14,787,1.2000000000000002,227,0.6000000000000001
+2023,4,30,18,0,18.1,1.1300000000000001,0.107,0.64,55,527,163,0,0,4,57,516,4,163,0.313,39.31,78.17,0.93,0.14,787,1.2000000000000002,203,0.30000000000000004
+2023,4,30,18,30,17.1,1.1300000000000001,0.107,0.64,37,333,74,0,0,4,37,333,0,74,0.313,41.86,83.69,0.93,0.14,787,1.2000000000000002,165,0.5
+2023,4,30,19,0,16,1.12,0.108,0.64,12,76,13,0,0,2.1,12,76,0,13,0.314,39.230000000000004,88.95,0.93,0.14,787,1.2000000000000002,127,0.7000000000000001
+2023,4,30,19,30,15,1.12,0.108,0.64,0,0,0,0,0,2.1,0,0,0,0,0.314,41.82,94.54,0.93,0.14,787,1.2000000000000002,119,0.9
+2023,4,30,20,0,14,1.11,0.105,0.64,0,0,0,0,0,2.6,0,0,0,0,0.314,46.08,99.62,0.93,0.14,787,1.2000000000000002,112,1.1
+2023,4,30,20,30,13.200000000000001,1.11,0.105,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,48.53,104.45,0.93,0.14,787,1.2000000000000002,110,1.2000000000000002
+2023,4,30,21,0,12.3,1.09,0.099,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,51.43,108.95,0.93,0.14,787,1.2000000000000002,107,1.2000000000000002
+2023,4,30,21,30,11.600000000000001,1.09,0.099,0.64,0,0,0,0,0,2.6,0,0,0,0,0.315,53.85,113.04,0.93,0.14,787,1.2000000000000002,107,1.3
+2023,4,30,22,0,10.9,1.07,0.091,0.64,0,0,0,0,0,2,0,0,0,0,0.315,54.01,116.65,0.93,0.14,787,1.2000000000000002,107,1.3
+2023,4,30,22,30,10.4,1.07,0.091,0.64,0,0,0,0,0,2,0,0,0,0,0.315,55.83,119.68,0.92,0.14,787,1.2000000000000002,107,1.3
+2023,4,30,23,0,9.8,1.05,0.085,0.64,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.315,55.95,122.03,0.92,0.14,787,1.2000000000000002,106,1.3
+2023,4,30,23,30,9.3,1.05,0.085,0.64,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.315,57.85,123.62,0.92,0.14,787,1.2000000000000002,105,1.3
+2023,5,1,0,0,8.8,1.04,0.08,0.64,0,0,0,0,0,1,0,0,0,0,0.315,57.97,124.38000000000001,0.92,0.14,786,1.1,104,1.2000000000000002
+2023,5,1,0,30,8.3,1.04,0.08,0.64,0,0,0,0,0,1,0,0,0,0,0.315,59.96,124.26,0.92,0.14,786,1.1,103,1.2000000000000002
+2023,5,1,1,0,7.800000000000001,1.03,0.076,0.64,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.314,60.7,123.29,0.92,0.14,786,1.1,102,1.2000000000000002
+2023,5,1,1,30,7.5,1.03,0.076,0.64,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.314,61.95,121.5,0.92,0.14,786,1.1,103,1.2000000000000002
+2023,5,1,2,0,7.2,1.04,0.075,0.64,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.315,61.72,118.96000000000001,0.92,0.14,786,1.1,105,1.1
+2023,5,1,2,30,7,1.04,0.075,0.64,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.315,62.57,115.77,0.92,0.14,786,1.1,108,1.1
+2023,5,1,3,0,6.800000000000001,1.07,0.076,0.64,0,0,0,0,0,0,0,0,0,0,0.316,61.93,112.03,0.92,0.14,786,1.1,110,1
+2023,5,1,3,30,6.5,1.07,0.076,0.64,0,0,0,0,0,0,0,0,0,0,0.317,63.21,107.82000000000001,0.93,0.14,786,1.1,112,0.9
+2023,5,1,4,0,6.300000000000001,1.09,0.077,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.317,62.980000000000004,103.23,0.93,0.14,786,1.1,113,0.9
+2023,5,1,4,30,6.2,1.09,0.077,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.318,63.410000000000004,98.33,0.93,0.14,786,1.1,113,0.8
+2023,5,1,5,0,6.1000000000000005,1.12,0.078,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.319,64.15,93.19,0.93,0.14,786,1.1,113,0.8
+2023,5,1,5,30,7.4,1.12,0.078,0.64,18,169,25,0,0,-0.2,18,169,0,25,0.32,58.68,87.63,0.93,0.14,786,1,116,0.8
+2023,5,1,6,0,8.700000000000001,1.1400000000000001,0.076,0.64,39,454,100,0,0,1.7000000000000002,39,454,0,100,0.321,61.25,82.27,0.93,0.14,786,1,118,0.9
+2023,5,1,6,30,10.3,1.1400000000000001,0.076,0.64,53,623,196,0,0,1.7000000000000002,53,623,0,196,0.322,55.02,76.71000000000001,0.93,0.14,786,1,114,1.1
+2023,5,1,7,0,11.9,1.1400000000000001,0.074,0.64,62,732,300,0,0,0.5,62,732,0,300,0.323,45.5,71.05,0.93,0.14,786,1,110,1.3
+2023,5,1,7,30,14.200000000000001,1.1400000000000001,0.074,0.64,70,806,406,0,0,0.5,70,806,0,406,0.323,39.17,65.36,0.93,0.14,786,1,125,1.4000000000000001
+2023,5,1,8,0,16.6,1.1400000000000001,0.073,0.64,76,858,509,0,0,0,76,858,0,509,0.323,32.29,59.68,0.93,0.14,786,0.9,141,1.5
+2023,5,1,8,30,18.1,1.1400000000000001,0.073,0.64,81,897,608,0,0,0,81,897,0,608,0.323,29.38,54.04,0.93,0.14,786,0.9,150,1.7000000000000002
+2023,5,1,9,0,19.700000000000003,1.1400000000000001,0.07200000000000001,0.64,84,928,699,0,0,-0.30000000000000004,84,928,0,699,0.322,26.150000000000002,48.52,0.93,0.14,786,0.9,160,2
+2023,5,1,9,30,20.6,1.1400000000000001,0.07200000000000001,0.64,88,950,781,0,0,-0.30000000000000004,88,950,0,781,0.322,24.71,43.19,0.93,0.14,785,0.9,165,2.2
+2023,5,1,10,0,21.5,1.1400000000000001,0.07200000000000001,0.64,91,966,851,0,0,-0.30000000000000004,91,966,0,851,0.321,23.27,38.15,0.93,0.14,785,0.9,170,2.3000000000000003
+2023,5,1,10,30,22.3,1.1400000000000001,0.07200000000000001,0.64,92,980,908,0,0,-0.30000000000000004,92,980,0,908,0.32,22.17,33.59,0.93,0.14,785,0.9,176,2.6
+2023,5,1,11,0,23,1.18,0.067,0.64,92,990,952,0,0,-0.5,92,990,0,952,0.32,21.03,29.740000000000002,0.93,0.14,785,0.9,182,2.9000000000000004
+2023,5,1,11,30,23.5,1.18,0.067,0.64,95,992,980,0,0,-0.5,95,992,0,980,0.319,20.41,26.91,0.9400000000000001,0.14,785,1,187,3.2
+2023,5,1,12,0,24,1.18,0.074,0.64,96,991,991,0,0,-0.6000000000000001,153,905,0,970,0.318,19.67,25.48,0.9400000000000001,0.14,784,1,191,3.5
+2023,5,1,12,30,24.200000000000003,1.18,0.074,0.64,98,987,988,0,0,-0.6000000000000001,122,952,0,980,0.318,19.43,25.68,0.9400000000000001,0.14,784,1,195,3.8000000000000003
+2023,5,1,13,0,24.400000000000002,1.18,0.082,0.64,100,980,970,0,0,-0.6000000000000001,100,980,0,970,0.317,19.12,27.47,0.9500000000000001,0.14,784,1,198,4.1000000000000005
+2023,5,1,13,30,24.3,1.18,0.082,0.64,100,971,936,0,6,-0.6000000000000001,316,495,0,742,0.316,19.240000000000002,30.580000000000002,0.9500000000000001,0.14,784,1.1,201,4.1000000000000005
+2023,5,1,14,0,24.3,1.18,0.085,0.64,100,958,888,0,6,-0.6000000000000001,404,122,0,504,0.315,19.32,34.63,0.9500000000000001,0.14,784,1.1,203,4.2
+2023,5,1,14,30,24,1.18,0.085,0.64,98,942,827,0,6,-0.6000000000000001,376,184,0,518,0.315,19.64,39.32,0.9500000000000001,0.14,783,1.1,204,4.2
+2023,5,1,15,0,23.700000000000003,1.17,0.089,0.64,96,922,754,0,6,-0.4,348,198,0,489,0.315,20.35,44.43,0.9500000000000001,0.14,783,1.1,205,4.1000000000000005
+2023,5,1,15,30,23.200000000000003,1.17,0.089,0.64,91,897,670,0,6,-0.4,320,156,0,421,0.315,20.97,49.81,0.9400000000000001,0.14,783,1.1,205,3.9000000000000004
+2023,5,1,16,0,22.700000000000003,1.17,0.09,0.64,87,864,578,0,8,-0.30000000000000004,226,400,14,453,0.315,21.67,55.36,0.9400000000000001,0.14,783,1.1,204,3.7
+2023,5,1,16,30,21.900000000000002,1.17,0.09,0.64,80,826,480,0,8,-0.30000000000000004,193,377,21,376,0.315,22.740000000000002,61.01,0.9400000000000001,0.14,783,1.1,201,3.3000000000000003
+2023,5,1,17,0,21.200000000000003,1.17,0.082,0.64,70,775,377,0,0,0.8,115,608,14,355,0.315,25.84,66.7,0.93,0.14,783,1.1,199,2.8000000000000003
+2023,5,1,17,30,19.400000000000002,1.17,0.082,0.64,61,704,274,0,8,0.8,77,468,21,219,0.315,28.86,72.37,0.93,0.14,783,1,195,2
+2023,5,1,18,0,17.6,1.16,0.07100000000000001,0.64,49,598,173,0,0,6.300000000000001,66,471,4,164,0.315,47.58,78,0.92,0.14,783,1,191,1.1
+2023,5,1,18,30,16.5,1.16,0.07100000000000001,0.64,34,419,81,0,0,6.300000000000001,34,419,0,81,0.315,51,83.52,0.91,0.14,783,1,185,1.2000000000000002
+2023,5,1,19,0,15.4,1.1400000000000001,0.063,0.64,12,124,15,1,0,3.7,13,106,11,15,0.315,45.61,88.78,0.91,0.14,783,1,179,1.2000000000000002
+2023,5,1,19,30,15,1.1400000000000001,0.063,0.64,0,0,0,0,0,3.7,0,0,0,0,0.315,46.79,94.35000000000001,0.91,0.14,783,1,168,1.2000000000000002
+2023,5,1,20,0,14.600000000000001,1.12,0.06,0.64,0,0,0,0,3,2.8000000000000003,0,0,0,0,0.315,45.07,99.42,0.91,0.14,784,1,157,1.2000000000000002
+2023,5,1,20,30,14,1.12,0.06,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.315,46.85,104.24000000000001,0.91,0.14,784,1,144,1.2000000000000002
+2023,5,1,21,0,13.3,1.11,0.06,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.315,48.89,108.72,0.91,0.14,784,1.1,132,1.2000000000000002
+2023,5,1,21,30,12.5,1.11,0.06,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.316,51.45,112.8,0.91,0.14,783,1.1,123,1.3
+2023,5,1,22,0,11.700000000000001,1.12,0.063,0.64,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.316,54.85,116.4,0.91,0.14,783,1.1,115,1.4000000000000001
+2023,5,1,22,30,10.9,1.12,0.063,0.64,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.316,57.83,119.41,0.92,0.14,783,1.2000000000000002,111,1.5
+2023,5,1,23,0,10.100000000000001,1.1300000000000001,0.069,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.316,62.870000000000005,121.75,0.92,0.14,783,1.2000000000000002,107,1.6
+2023,5,1,23,30,9.600000000000001,1.1300000000000001,0.069,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.315,65.01,123.33,0.93,0.14,783,1.2000000000000002,107,1.6
+2023,5,2,0,0,9,1.1500000000000001,0.074,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.315,70.03,124.08,0.93,0.14,783,1.3,107,1.7000000000000002
+2023,5,2,0,30,8.6,1.1500000000000001,0.074,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.314,71.95,123.96000000000001,0.93,0.14,783,1.3,111,1.7000000000000002
+2023,5,2,1,0,8.200000000000001,1.1500000000000001,0.082,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.314,75.46000000000001,122.99000000000001,0.9400000000000001,0.14,783,1.3,115,1.7000000000000002
+2023,5,2,1,30,8,1.1500000000000001,0.082,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.313,76.49,121.2,0.9400000000000001,0.14,783,1.3,128,1.7000000000000002
+2023,5,2,2,0,7.800000000000001,1.1500000000000001,0.09,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.313,77.62,118.68,0.9400000000000001,0.14,783,1.3,141,1.8
+2023,5,2,2,30,7.5,1.1500000000000001,0.09,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.313,79.32000000000001,115.5,0.9500000000000001,0.14,784,1.4000000000000001,155,2.1
+2023,5,2,3,0,7.300000000000001,1.1500000000000001,0.109,0.64,0,0,0,0,0,4,0,0,0,0,0.314,79.38,111.76,0.9500000000000001,0.14,784,1.4000000000000001,169,2.3000000000000003
+2023,5,2,3,30,7.1000000000000005,1.1500000000000001,0.109,0.64,0,0,0,0,8,4,0,0,0,0,0.314,80.58,107.57000000000001,0.9500000000000001,0.14,785,1.4000000000000001,172,2.3000000000000003
+2023,5,2,4,0,6.9,1.1300000000000001,0.131,0.64,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.314,81.17,102.99000000000001,0.9500000000000001,0.14,785,1.4000000000000001,176,2.3000000000000003
+2023,5,2,4,30,6.7,1.1300000000000001,0.131,0.64,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.314,82.39,98.10000000000001,0.9500000000000001,0.14,786,1.3,176,2.2
+2023,5,2,5,0,6.6000000000000005,1.11,0.148,0.64,0,0,0,1,7,4.1000000000000005,0,0,14,0,0.314,83.91,92.96000000000001,0.9500000000000001,0.14,786,1.3,176,2.1
+2023,5,2,5,30,7.2,1.11,0.148,0.64,20,99,24,7,7,4.1000000000000005,19,1,100,19,0.314,80.53,87.42,0.9500000000000001,0.14,786,1.3,180,2.5
+2023,5,2,6,0,7.800000000000001,1.1,0.159,0.64,51,321,95,3,7,4.6000000000000005,66,21,43,69,0.314,79.98,82.06,0.96,0.14,786,1.3,185,2.9000000000000004
+2023,5,2,6,30,8.700000000000001,1.1,0.159,0.64,72,487,186,0,7,4.6000000000000005,120,112,0,146,0.314,75.35000000000001,76.5,0.96,0.14,787,1.3,192,3.6
+2023,5,2,7,0,9.600000000000001,1.11,0.164,0.64,89,599,285,0,7,4.6000000000000005,161,100,0,194,0.314,71,70.85000000000001,0.96,0.14,787,1.4000000000000001,199,4.2
+2023,5,2,7,30,10.8,1.11,0.164,0.64,99,687,388,0,7,4.6000000000000005,200,101,0,242,0.314,65.55,65.16,0.96,0.14,787,1.4000000000000001,202,4.2
+2023,5,2,8,0,11.9,1.12,0.152,0.64,106,753,489,0,7,3.9000000000000004,240,227,0,355,0.315,58.19,59.47,0.96,0.14,787,1.4000000000000001,205,4.3
+2023,5,2,8,30,13.200000000000001,1.12,0.152,0.64,111,808,588,0,8,3.9000000000000004,212,503,0,509,0.315,53.44,53.83,0.96,0.14,787,1.4000000000000001,204,4.4
+2023,5,2,9,0,14.4,1.09,0.131,0.64,113,853,680,0,8,3.5,276,415,0,552,0.315,47.980000000000004,48.300000000000004,0.9500000000000001,0.14,787,1.4000000000000001,204,4.4
+2023,5,2,9,30,15.100000000000001,1.09,0.131,0.64,114,886,762,0,7,3.5,314,270,0,512,0.315,45.87,42.96,0.9500000000000001,0.14,787,1.3,204,4.7
+2023,5,2,10,0,15.8,1.05,0.111,0.64,111,915,833,0,7,3,315,23,0,333,0.315,42.32,37.910000000000004,0.9500000000000001,0.14,787,1.3,203,5
+2023,5,2,10,30,16.3,1.05,0.111,0.64,109,937,892,0,7,3,397,141,0,515,0.316,40.99,33.33,0.9400000000000001,0.14,787,1.3,200,4.9
+2023,5,2,11,0,16.8,1,0.09,0.64,106,956,938,0,7,2.8000000000000003,375,38,0,408,0.316,39.06,29.46,0.9400000000000001,0.14,787,1.3,196,4.9
+2023,5,2,11,30,17.400000000000002,1,0.09,0.64,104,967,968,0,7,2.8000000000000003,453,211,0,642,0.317,37.61,26.62,0.9400000000000001,0.14,787,1.3,193,4.6000000000000005
+2023,5,2,12,0,18,0.99,0.078,0.64,101,975,983,0,7,2.5,437,286,0,696,0.317,35.5,25.18,0.93,0.14,787,1.3,191,4.3
+2023,5,2,12,30,18.7,0.99,0.078,0.64,98,978,982,0,7,2.5,373,436,0,767,0.317,33.980000000000004,25.39,0.93,0.14,787,1.3,191,4.1000000000000005
+2023,5,2,13,0,19.400000000000002,0.99,0.07100000000000001,0.64,96,978,966,0,7,2,300,590,0,825,0.318,31.28,27.2,0.93,0.14,787,1.2000000000000002,191,3.8000000000000003
+2023,5,2,13,30,19.8,0.99,0.07100000000000001,0.64,94,973,934,0,7,2,218,725,7,844,0.319,30.51,30.330000000000002,0.93,0.14,787,1.2000000000000002,190,3.8000000000000003
+2023,5,2,14,0,20.1,0.97,0.069,0.64,92,966,889,0,7,1.1,232,683,7,795,0.32,28.16,34.410000000000004,0.93,0.14,786,1.2000000000000002,190,3.7
+2023,5,2,14,30,20.1,0.97,0.069,0.64,91,953,830,0,8,1.1,165,796,7,783,0.321,28.16,39.12,0.93,0.14,786,1.1,192,3.8000000000000003
+2023,5,2,15,0,20.1,0.9500000000000001,0.07100000000000001,0.64,88,936,758,0,7,0.1,270,504,7,631,0.322,26.3,44.25,0.93,0.14,786,1.1,193,3.8000000000000003
+2023,5,2,15,30,19.900000000000002,0.9500000000000001,0.07100000000000001,0.64,85,913,676,0,7,0.1,266,447,7,555,0.324,26.63,49.64,0.93,0.14,786,1.1,197,3.9000000000000004
+2023,5,2,16,0,19.6,0.91,0.074,0.64,81,881,584,0,7,-0.7000000000000001,209,514,7,502,0.325,25.54,55.2,0.93,0.14,786,1,200,3.9000000000000004
+2023,5,2,16,30,19,0.91,0.074,0.64,76,841,486,0,7,-0.7000000000000001,158,521,21,412,0.326,26.51,60.85,0.93,0.14,786,1,204,3.9000000000000004
+2023,5,2,17,0,18.5,0.85,0.077,0.64,70,783,382,0,7,-1.1,95,572,21,323,0.327,26.53,66.53,0.93,0.13,786,0.9,208,3.8000000000000003
+2023,5,2,17,30,16.6,0.85,0.077,0.64,62,704,277,0,6,-1.1,54,465,0,196,0.328,29.89,72.21000000000001,0.93,0.13,786,0.9,213,2.9000000000000004
+2023,5,2,18,0,14.700000000000001,0.77,0.079,0.64,52,583,175,0,7,1.6,81,176,0,118,0.329,41.17,77.83,0.93,0.13,786,0.8,217,2.1
+2023,5,2,18,30,12.600000000000001,0.77,0.079,0.64,37,392,82,6,7,1.6,56,13,86,58,0.331,47.24,83.35000000000001,0.92,0.13,787,0.8,222,1.9000000000000001
+2023,5,2,19,0,10.4,0.6900000000000001,0.077,0.64,14,102,16,5,7,0.7000000000000001,13,2,71,13,0.333,51.14,88.61,0.92,0.13,787,0.7000000000000001,226,1.7000000000000002
+2023,5,2,19,30,9.700000000000001,0.6900000000000001,0.077,0.64,0,0,0,0,8,0.7000000000000001,0,0,0,0,0.335,53.58,94.16,0.92,0.13,787,0.7000000000000001,229,1.7000000000000002
+2023,5,2,20,0,8.9,0.63,0.076,0.64,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.337,52.49,99.23,0.91,0.13,788,0.6000000000000001,232,1.7000000000000002
+2023,5,2,20,30,8.4,0.63,0.076,0.64,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.34,54.29,104.03,0.91,0.13,788,0.6000000000000001,234,1.6
+2023,5,2,21,0,7.9,0.6,0.076,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.343,52.77,108.5,0.91,0.13,788,0.6000000000000001,235,1.6
+2023,5,2,21,30,7.5,0.6,0.076,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.34500000000000003,54.230000000000004,112.57000000000001,0.91,0.13,788,0.5,237,1.6
+2023,5,2,22,0,7.1000000000000005,0.61,0.076,0.64,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.34800000000000003,52.86,116.15,0.91,0.13,788,0.5,239,1.5
+2023,5,2,22,30,6.800000000000001,0.61,0.076,0.64,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.34900000000000003,53.96,119.15,0.91,0.13,788,0.5,240,1.5
+2023,5,2,23,0,6.5,0.63,0.076,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.35000000000000003,52.5,121.47,0.91,0.13,788,0.5,241,1.4000000000000001
+2023,5,2,23,30,6.300000000000001,0.63,0.076,0.64,0,0,0,0,0,-2.5,0,0,0,0,0.35000000000000003,53.22,123.04,0.91,0.13,788,0.5,242,1.4000000000000001
+2023,5,3,0,0,6,0.64,0.077,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.35000000000000003,52.02,123.78,0.91,0.13,788,0.5,243,1.4000000000000001
+2023,5,3,0,30,5.9,0.64,0.077,0.64,0,0,0,0,0,-3.1,0,0,0,0,0.34900000000000003,52.38,123.66,0.91,0.13,788,0.5,243,1.4000000000000001
+2023,5,3,1,0,5.7,0.63,0.083,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.34800000000000003,51.120000000000005,122.69,0.91,0.13,788,0.5,243,1.3
+2023,5,3,1,30,5.6000000000000005,0.63,0.083,0.64,0,0,0,0,0,-3.6,0,0,0,0,0.34700000000000003,51.480000000000004,120.91,0.92,0.13,788,0.5,240,1.3
+2023,5,3,2,0,5.4,0.6,0.093,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.34700000000000003,50.550000000000004,118.39,0.92,0.13,788,0.5,238,1.3
+2023,5,3,2,30,5.300000000000001,0.6,0.093,0.64,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.34700000000000003,50.9,115.22,0.92,0.13,788,0.5,232,1.2000000000000002
+2023,5,3,3,0,5.1000000000000005,0.5700000000000001,0.099,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.34700000000000003,50.39,111.5,0.92,0.13,789,0.5,226,1.2000000000000002
+2023,5,3,3,30,5,0.5700000000000001,0.099,0.64,0,0,0,0,0,-4.4,0,0,0,0,0.34700000000000003,50.74,107.32000000000001,0.92,0.13,789,0.5,218,1.2000000000000002
+2023,5,3,4,0,4.9,0.55,0.099,0.64,0,0,0,0,0,-4.6000000000000005,0,0,29,0,0.34800000000000003,50.300000000000004,102.75,0.92,0.13,789,0.5,210,1.2000000000000002
+2023,5,3,4,30,4.7,0.55,0.099,0.64,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.34700000000000003,51,97.87,0.92,0.13,789,0.5,202,1.2000000000000002
+2023,5,3,5,0,4.6000000000000005,0.56,0.097,0.64,0,0,0,0,0,-4.3,0,0,4,0,0.34700000000000003,52.54,92.74,0.92,0.13,789,0.5,194,1.2000000000000002
+2023,5,3,5,30,6,0.56,0.097,0.64,23,150,30,0,0,-4.3,23,147,7,30,0.34700000000000003,47.68,87.21000000000001,0.92,0.13,789,0.5,189,1.2000000000000002
+2023,5,3,6,0,7.300000000000001,0.59,0.096,0.64,46,418,105,0,0,-0.7000000000000001,46,418,0,105,0.34700000000000003,56.7,81.85000000000001,0.92,0.13,789,0.6000000000000001,184,1.1
+2023,5,3,6,30,9.3,0.59,0.096,0.64,61,590,201,0,0,-0.7000000000000001,61,590,0,201,0.34600000000000003,49.52,76.29,0.92,0.13,789,0.6000000000000001,184,1.5
+2023,5,3,7,0,11.4,0.63,0.099,0.64,74,701,306,0,0,-3,74,701,0,306,0.34600000000000003,36.5,70.64,0.92,0.13,789,0.6000000000000001,185,1.8
+2023,5,3,7,30,13.8,0.63,0.099,0.64,82,779,412,0,0,-3,82,779,0,412,0.34400000000000003,31.2,64.96000000000001,0.92,0.13,789,0.6000000000000001,202,2.2
+2023,5,3,8,0,16.2,0.67,0.099,0.64,90,835,517,0,0,-4.5,90,835,0,517,0.342,23.86,59.27,0.93,0.13,789,0.6000000000000001,220,2.6
+2023,5,3,8,30,17.3,0.67,0.099,0.64,96,876,616,0,0,-4.5,96,876,0,616,0.34,22.26,53.620000000000005,0.93,0.13,789,0.6000000000000001,221,2.8000000000000003
+2023,5,3,9,0,18.3,0.6900000000000001,0.1,0.64,101,907,707,0,0,-4.3,153,781,29,675,0.337,21.12,48.09,0.93,0.13,789,0.6000000000000001,223,3
+2023,5,3,9,30,19,0.6900000000000001,0.1,0.64,105,928,787,0,8,-4.3,233,628,0,694,0.336,20.22,42.74,0.93,0.13,789,0.7000000000000001,222,3
+2023,5,3,10,0,19.700000000000003,0.71,0.10200000000000001,0.64,110,944,857,0,3,-4,281,650,0,795,0.335,19.93,37.68,0.93,0.13,788,0.7000000000000001,220,3
+2023,5,3,10,30,20.3,0.71,0.10200000000000001,0.64,106,965,915,0,3,-4,341,576,0,824,0.334,19.21,33.08,0.93,0.13,788,0.7000000000000001,219,3.1
+2023,5,3,11,0,20.900000000000002,0.84,0.079,0.64,100,987,962,0,3,-3.6,285,705,0,900,0.333,18.95,29.19,0.93,0.13,788,0.7000000000000001,217,3.1
+2023,5,3,11,30,21.3,0.84,0.079,0.64,102,992,991,0,7,-3.6,233,716,0,875,0.333,18.5,26.330000000000002,0.93,0.13,788,0.7000000000000001,216,3.1
+2023,5,3,12,0,21.8,0.86,0.079,0.64,102,995,1005,0,7,-3.4000000000000004,317,579,0,842,0.333,18.28,24.88,0.93,0.13,787,0.7000000000000001,215,3.1
+2023,5,3,12,30,22.1,0.86,0.079,0.64,102,994,1002,0,7,-3.4000000000000004,263,682,0,881,0.334,17.95,25.1,0.93,0.13,787,0.7000000000000001,214,3.1
+2023,5,3,13,0,22.400000000000002,0.85,0.08,0.64,102,988,983,0,7,-3.2,253,706,0,882,0.334,17.82,26.94,0.93,0.13,787,0.8,213,3
+2023,5,3,13,30,22.5,0.85,0.08,0.64,100,982,950,0,7,-3.2,283,640,0,837,0.335,17.69,30.09,0.93,0.13,786,0.8,208,3
+2023,5,3,14,0,22.6,0.79,0.079,0.64,99,972,903,0,7,-3.1,293,581,0,774,0.336,17.76,34.19,0.93,0.13,786,0.8,204,3
+2023,5,3,14,30,22.5,0.79,0.079,0.64,97,956,841,0,7,-3.1,246,619,7,728,0.338,17.87,38.92,0.93,0.13,786,0.8,200,3.1
+2023,5,3,15,0,22.3,0.72,0.082,0.64,95,935,767,0,8,-3.1,162,753,7,703,0.339,18.1,44.06,0.93,0.13,785,0.8,196,3.1
+2023,5,3,15,30,21.900000000000002,0.72,0.082,0.64,91,909,682,0,8,-3.1,179,709,7,640,0.34,18.54,49.47,0.93,0.13,785,0.8,193,3.1
+2023,5,3,16,0,21.6,0.67,0.083,0.64,86,875,588,0,8,-3,188,634,14,551,0.342,18.990000000000002,55.03,0.93,0.13,785,0.8,189,3.1
+2023,5,3,16,30,20.900000000000002,0.67,0.083,0.64,82,832,489,0,0,-3,95,799,4,486,0.343,19.82,60.69,0.93,0.13,785,0.8,185,3
+2023,5,3,17,0,20.3,0.62,0.083,0.64,74,773,384,0,0,-2.6,74,773,0,384,0.34400000000000003,21.26,66.37,0.93,0.14,785,0.8,182,2.9000000000000004
+2023,5,3,17,30,18.400000000000002,0.62,0.083,0.64,66,692,279,0,0,-2.6,66,692,0,279,0.34500000000000003,23.91,72.05,0.93,0.14,785,0.8,177,2.1
+2023,5,3,18,0,16.5,0.6,0.082,0.64,54,571,176,2,3,3.6,71,457,50,169,0.34500000000000003,42.07,77.67,0.93,0.14,785,0.8,172,1.3
+2023,5,3,18,30,14.700000000000001,0.6,0.082,0.64,39,379,84,4,0,3.6,52,210,61,77,0.34500000000000003,47.19,83.18,0.93,0.14,785,0.8,163,1.3
+2023,5,3,19,0,12.9,0.6,0.081,0.64,14,97,17,5,8,2.5,12,1,71,12,0.34500000000000003,49.28,88.45,0.93,0.14,784,0.9,154,1.3
+2023,5,3,19,30,12.5,0.6,0.081,0.64,0,0,0,0,8,2.5,0,0,0,0,0.34500000000000003,50.58,93.97,0.93,0.14,784,0.9,141,1.3
+2023,5,3,20,0,12,0.62,0.08,0.64,0,0,0,0,0,1.8,0,0,0,0,0.34500000000000003,49.51,99.03,0.93,0.14,784,0.9,129,1.4000000000000001
+2023,5,3,20,30,11.600000000000001,0.62,0.08,0.64,0,0,0,0,3,1.8,0,0,0,0,0.34400000000000003,50.83,103.82000000000001,0.93,0.14,784,0.9,116,1.4000000000000001
+2023,5,3,21,0,11.100000000000001,0.64,0.076,0.64,0,0,0,0,8,1.4000000000000001,0,0,0,0,0.343,51.13,108.28,0.93,0.14,784,0.9,103,1.4000000000000001
+2023,5,3,21,30,10.600000000000001,0.64,0.076,0.64,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.341,52.79,112.33,0.93,0.14,783,0.9,107,1.4000000000000001
+2023,5,3,22,0,10.100000000000001,0.68,0.075,0.64,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.34,54.65,115.9,0.9400000000000001,0.14,783,1,112,1.3
+2023,5,3,22,30,9.700000000000001,0.68,0.075,0.64,0,0,0,0,8,1.4000000000000001,0,0,0,0,0.339,56.13,118.88,0.9400000000000001,0.14,783,1.1,146,1.4000000000000001
+2023,5,3,23,0,9.3,0.71,0.081,0.64,0,0,0,0,8,1.9000000000000001,0,0,0,0,0.337,59.81,121.2,0.9400000000000001,0.14,784,1.2000000000000002,179,1.5
+2023,5,3,23,30,8.8,0.71,0.081,0.64,0,0,0,0,7,1.9000000000000001,0,0,0,0,0.336,61.85,122.76,0.9400000000000001,0.14,784,1.3,201,2.1
+2023,5,4,0,0,8.200000000000001,0.72,0.08600000000000001,0.64,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.334,71.23,123.49000000000001,0.9400000000000001,0.14,784,1.4000000000000001,223,2.7
+2023,5,4,0,30,7.800000000000001,0.72,0.08600000000000001,0.64,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.333,73.28,123.37,0.9500000000000001,0.14,785,1.5,229,3
+2023,5,4,1,0,7.5,0.74,0.099,0.64,0,0,0,0,7,4.9,0,0,0,0,0.331,83.77,122.4,0.9500000000000001,0.14,785,1.6,235,3.2
+2023,5,4,1,30,6.9,0.74,0.099,0.64,0,0,0,0,7,4.9,0,0,0,0,0.33,87.28,120.63,0.9500000000000001,0.14,785,1.6,229,2.6
+2023,5,4,2,0,6.300000000000001,0.8300000000000001,0.124,0.64,0,0,0,0,8,5.4,0,0,0,0,0.33,94.17,118.11,0.96,0.14,785,1.7000000000000002,223,2
+2023,5,4,2,30,5.300000000000001,0.8300000000000001,0.124,0.64,0,0,0,0,7,5.300000000000001,0,0,0,0,0.33,100,114.96000000000001,0.96,0.14,785,1.7000000000000002,208,2.1
+2023,5,4,3,0,4.3,0.93,0.14200000000000002,0.64,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.33,97.2,111.24000000000001,0.97,0.14,785,1.7000000000000002,194,2.1
+2023,5,4,3,30,3.5,0.93,0.14200000000000002,0.64,0,0,0,0,7,3.5,0,0,0,0,0.331,100,107.07000000000001,0.96,0.14,785,1.6,179,1.8
+2023,5,4,4,0,2.6,1,0.14400000000000002,0.64,0,0,0,0,7,2,0,0,0,0,0.332,95.51,102.51,0.96,0.14,785,1.6,164,1.5
+2023,5,4,4,30,2.6,1,0.14400000000000002,0.64,0,0,0,0,7,2,0,0,0,0,0.335,95.51,97.64,0.96,0.14,785,1.5,127,1.3
+2023,5,4,5,0,2.6,1.06,0.131,0.64,0,0,0,1,7,1.6,0,0,14,0,0.337,93.39,92.52,0.96,0.14,785,1.5,90,1.1
+2023,5,4,5,30,3.1,1.06,0.131,0.64,23,140,30,7,6,1.6,8,0,100,8,0.34,90.14,87.01,0.9500000000000001,0.14,785,1.4000000000000001,77,1.5
+2023,5,4,6,0,3.6,1.1,0.123,0.64,47,382,103,3,6,2,8,0,43,8,0.343,89.44,81.64,0.9500000000000001,0.14,785,1.4000000000000001,64,1.8
+2023,5,4,6,30,4.5,1.1,0.123,0.64,65,543,196,0,6,2,4,0,0,4,0.34500000000000003,84.08,76.09,0.9500000000000001,0.14,786,1.4000000000000001,68,1.9000000000000001
+2023,5,4,7,0,5.5,1.12,0.127,0.64,78,650,296,0,6,2.8000000000000003,16,0,0,16,0.34600000000000003,82.85000000000001,70.45,0.9500000000000001,0.14,786,1.4000000000000001,72,1.9000000000000001
+2023,5,4,7,30,6.800000000000001,1.12,0.127,0.64,89,726,399,0,6,2.8000000000000003,77,14,0,83,0.34500000000000003,75.75,64.76,0.9500000000000001,0.14,786,1.4000000000000001,93,1.9000000000000001
+2023,5,4,8,0,8.1,1.1300000000000001,0.129,0.64,98,782,500,0,7,3.5,248,129,0,314,0.34500000000000003,72.89,59.07,0.9500000000000001,0.14,786,1.3,115,1.9000000000000001
+2023,5,4,8,30,9.9,1.1300000000000001,0.129,0.64,103,831,598,0,6,3.5,78,3,0,80,0.343,64.58,53.42,0.9400000000000001,0.14,786,1.3,144,2.4000000000000004
+2023,5,4,9,0,11.700000000000001,1.1300000000000001,0.114,0.64,103,873,689,0,6,3.4000000000000004,147,2,0,148,0.342,56.95,47.88,0.9400000000000001,0.14,786,1.3,173,2.9000000000000004
+2023,5,4,9,30,13.200000000000001,1.1300000000000001,0.114,0.64,105,905,772,0,6,3.4000000000000004,179,3,0,181,0.34,51.56,42.52,0.9400000000000001,0.14,785,1.3,183,3.4000000000000004
+2023,5,4,10,0,14.8,1.12,0.095,0.64,102,933,843,0,7,2.7,209,7,0,215,0.338,44.13,37.45,0.93,0.14,785,1.2000000000000002,192,4
+2023,5,4,10,30,16,1.12,0.095,0.64,100,956,903,0,7,2.7,411,105,0,499,0.337,40.87,32.83,0.93,0.14,785,1.2000000000000002,195,4.3
+2023,5,4,11,0,17.2,1.23,0.07100000000000001,0.64,94,978,950,0,7,2,438,160,0,578,0.336,35.96,28.92,0.92,0.14,785,1.2000000000000002,198,4.7
+2023,5,4,11,30,17.8,1.23,0.07100000000000001,0.64,97,981,978,0,7,2,389,408,0,756,0.335,34.59,26.05,0.93,0.14,784,1.2000000000000002,199,5
+2023,5,4,12,0,18.5,1.19,0.078,0.64,99,981,991,0,0,1.3,147,874,0,942,0.334,31.57,24.59,0.93,0.14,784,1.2000000000000002,199,5.4
+2023,5,4,12,30,18.400000000000002,1.19,0.078,0.64,100,978,988,0,0,1.3,179,856,0,956,0.334,31.77,24.82,0.93,0.14,784,1.2000000000000002,199,5.7
+2023,5,4,13,0,18.3,1.1400000000000001,0.084,0.64,101,972,970,0,0,0.8,215,725,0,863,0.335,30.73,26.67,0.9400000000000001,0.14,784,1.2000000000000002,198,6.1000000000000005
+2023,5,4,13,30,18.2,1.1400000000000001,0.084,0.64,98,970,939,0,9,0.8,220,171,0,368,0.336,30.92,29.85,0.93,0.14,784,1.1,197,6.1000000000000005
+2023,5,4,14,0,18,1.1,0.07200000000000001,0.64,92,967,894,0,9,0.30000000000000004,220,116,0,316,0.337,30.25,33.980000000000004,0.93,0.14,783,1.1,197,6.2
+2023,5,4,14,30,18,1.1,0.07200000000000001,0.64,90,955,835,0,8,0.30000000000000004,339,200,0,495,0.336,30.25,38.730000000000004,0.93,0.14,783,1.1,197,6.1000000000000005
+2023,5,4,15,0,18,1.01,0.073,0.64,89,937,764,0,7,-0.4,240,569,0,650,0.336,28.810000000000002,43.88,0.93,0.14,783,1,197,6
+2023,5,4,15,30,17.900000000000002,1.01,0.073,0.64,86,913,681,0,7,-0.4,218,622,4,624,0.334,28.990000000000002,49.300000000000004,0.93,0.14,783,1,199,5.9
+2023,5,4,16,0,17.7,0.98,0.078,0.64,83,880,589,0,7,-1.1,190,557,25,511,0.331,27.88,54.870000000000005,0.93,0.14,783,1,200,5.7
+2023,5,4,16,30,17.2,0.98,0.078,0.64,77,839,490,0,8,-1.1,172,448,7,392,0.328,28.77,60.53,0.93,0.14,783,1,203,5.5
+2023,5,4,17,0,16.7,0.96,0.081,0.64,72,782,387,0,8,-1.7000000000000002,92,399,11,253,0.325,28.53,66.21000000000001,0.93,0.14,783,1,206,5.300000000000001
+2023,5,4,17,30,15.3,0.96,0.081,0.64,63,708,283,0,0,-1.7000000000000002,79,582,7,260,0.323,31.18,71.89,0.93,0.14,783,0.9,208,4.2
+2023,5,4,18,0,14,0.9400000000000001,0.076,0.64,51,600,181,0,0,-0.5,51,600,0,181,0.32,37,77.5,0.93,0.14,783,0.9,210,3.2
+2023,5,4,18,30,11.8,0.9400000000000001,0.076,0.64,37,427,89,0,0,-0.5,37,427,0,89,0.318,42.71,83.01,0.93,0.14,783,0.9,211,2.5
+2023,5,4,19,0,9.600000000000001,0.92,0.067,0.64,15,133,19,0,0,0.2,15,133,0,19,0.316,52.04,88.28,0.92,0.14,783,0.8,212,1.9000000000000001
+2023,5,4,19,30,8.9,0.92,0.067,0.64,0,0,0,0,0,0.2,0,0,0,0,0.314,54.61,93.79,0.92,0.14,784,0.8,213,1.9000000000000001
+2023,5,4,20,0,8.1,0.88,0.063,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.312,54.870000000000005,98.83,0.92,0.14,784,0.8,215,1.9000000000000001
+2023,5,4,20,30,7.5,0.88,0.063,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.31,57.15,103.61,0.92,0.14,784,0.8,216,1.9000000000000001
+2023,5,4,21,0,6.9,0.81,0.061,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.309,56.370000000000005,108.06,0.92,0.14,784,0.7000000000000001,217,2
+2023,5,4,21,30,6.5,0.81,0.061,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.308,57.94,112.10000000000001,0.92,0.14,784,0.8,218,2.2
+2023,5,4,22,0,6,0.71,0.061,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,57.53,115.65,0.92,0.14,784,0.8,219,2.4000000000000004
+2023,5,4,22,30,5.7,0.71,0.061,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,58.730000000000004,118.62,0.92,0.14,784,0.8,221,2.5
+2023,5,4,23,0,5.300000000000001,0.64,0.063,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.308,60.02,120.93,0.92,0.14,785,0.8,222,2.7
+2023,5,4,23,30,4.7,0.64,0.063,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.309,62.58,122.47,0.92,0.14,785,0.8,221,2.5
+2023,5,5,0,0,4.2,0.64,0.063,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.309,66.01,123.2,0.92,0.14,785,0.8,220,2.4000000000000004
+2023,5,5,0,30,3.6,0.64,0.063,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.31,68.85000000000001,123.08,0.92,0.14,785,0.8,216,2.2
+2023,5,5,1,0,3,0.6900000000000001,0.061,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.311,72.03,122.12,0.92,0.14,785,0.7000000000000001,212,2
+2023,5,5,1,30,2.5,0.6900000000000001,0.061,0.64,0,0,0,0,7,-1.6,0,0,0,0,0.311,74.63,120.34,0.92,0.14,785,0.7000000000000001,207,1.9000000000000001
+2023,5,5,2,0,2,0.77,0.06,0.64,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.312,76.44,117.84,0.92,0.14,786,0.7000000000000001,201,1.8
+2023,5,5,2,30,1.6,0.77,0.06,0.64,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.312,78.65,114.69,0.92,0.14,786,0.7000000000000001,197,1.7000000000000002
+2023,5,5,3,0,1.2000000000000002,0.84,0.062,0.64,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.313,79.69,110.99000000000001,0.92,0.14,786,0.7000000000000001,193,1.6
+2023,5,5,3,30,1,0.84,0.062,0.64,0,0,0,0,8,-1.9000000000000001,0,0,0,0,0.314,80.84,106.83,0.92,0.14,786,0.7000000000000001,191,1.6
+2023,5,5,4,0,0.7000000000000001,0.87,0.065,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.315,81.06,102.28,0.92,0.14,786,0.7000000000000001,189,1.5
+2023,5,5,4,30,0.8,0.87,0.065,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.317,80.47,97.42,0.92,0.14,786,0.7000000000000001,188,1.4000000000000001
+2023,5,5,5,0,0.9,0.9,0.066,0.64,0,0,0,0,0,-2.2,0,0,0,0,0.319,79.57000000000001,92.31,0.92,0.14,786,0.7000000000000001,187,1.4000000000000001
+2023,5,5,5,30,2.9000000000000004,0.9,0.066,0.64,23,235,36,0,0,-2.2,23,235,0,36,0.32,68.99,86.81,0.92,0.14,786,0.7000000000000001,189,1.9000000000000001
+2023,5,5,6,0,4.800000000000001,0.91,0.068,0.64,41,506,116,0,0,-2,45,426,0,108,0.322,61.56,81.44,0.92,0.14,786,0.7000000000000001,190,2.4000000000000004
+2023,5,5,6,30,6.6000000000000005,0.91,0.068,0.64,54,658,214,0,8,-2,112,153,0,149,0.323,54.36,75.9,0.93,0.14,786,0.7000000000000001,198,2.8000000000000003
+2023,5,5,7,0,8.4,0.93,0.073,0.64,64,754,319,0,0,-3.1,129,429,0,274,0.324,44.18,70.25,0.93,0.14,786,0.7000000000000001,205,3.3000000000000003
+2023,5,5,7,30,9.8,0.93,0.073,0.64,73,817,424,0,0,-3.1,79,794,0,420,0.324,40.21,64.57000000000001,0.93,0.14,786,0.7000000000000001,208,3.7
+2023,5,5,8,0,11.100000000000001,0.9500000000000001,0.082,0.64,81,861,526,0,0,-4.1000000000000005,81,861,0,526,0.324,34.34,58.870000000000005,0.93,0.14,786,0.7000000000000001,210,4.1000000000000005
+2023,5,5,8,30,11.8,0.9500000000000001,0.082,0.64,88,895,624,0,0,-4.1000000000000005,88,895,0,624,0.323,32.79,53.230000000000004,0.9400000000000001,0.14,786,0.7000000000000001,212,4.4
+2023,5,5,9,0,12.4,0.96,0.089,0.64,95,920,714,0,0,-4.3,95,920,0,714,0.322,30.95,47.68,0.9400000000000001,0.14,786,0.7000000000000001,213,4.7
+2023,5,5,9,30,12.8,0.96,0.089,0.64,99,940,794,0,0,-4.3,148,842,0,771,0.321,30.16,42.31,0.9400000000000001,0.14,786,0.7000000000000001,215,5
+2023,5,5,10,0,13.200000000000001,0.97,0.092,0.64,104,953,863,0,0,-4.3,203,781,0,825,0.32,29.38,37.22,0.9400000000000001,0.14,786,0.8,216,5.300000000000001
+2023,5,5,10,30,13.4,0.97,0.092,0.64,101,975,922,0,8,-4.3,241,682,0,816,0.32,29,32.59,0.9400000000000001,0.14,786,0.8,217,5.6000000000000005
+2023,5,5,11,0,13.600000000000001,0.99,0.067,0.64,94,995,967,0,8,-4.3,247,703,0,864,0.319,28.52,28.66,0.9400000000000001,0.14,786,0.8,218,5.9
+2023,5,5,11,30,13.5,0.99,0.067,0.64,95,999,995,0,7,-4.3,390,406,0,756,0.318,28.71,25.77,0.9400000000000001,0.14,786,0.8,216,6.1000000000000005
+2023,5,5,12,0,13.4,0.96,0.067,0.64,96,1002,1009,0,7,-4.5,443,263,0,683,0.317,28.47,24.310000000000002,0.9400000000000001,0.14,786,0.8,215,6.4
+2023,5,5,12,30,13.200000000000001,0.96,0.067,0.64,95,1001,1006,0,8,-4.5,374,403,0,741,0.316,28.84,24.54,0.9400000000000001,0.14,786,0.8,214,6.5
+2023,5,5,13,0,13,0.9500000000000001,0.067,0.64,95,998,989,0,8,-4.7,390,385,0,735,0.315,28.85,26.41,0.93,0.14,786,0.8,213,6.7
+2023,5,5,13,30,12.700000000000001,0.9500000000000001,0.067,0.64,93,993,956,0,8,-4.7,376,218,0,566,0.315,29.42,29.62,0.93,0.14,786,0.8,213,6.5
+2023,5,5,14,0,12.5,0.9400000000000001,0.063,0.64,90,986,910,0,5,-4.7,285,43,0,321,0.314,29.79,33.77,0.93,0.14,786,0.8,212,6.4
+2023,5,5,14,30,12.4,0.9400000000000001,0.063,0.64,87,976,850,0,5,-4.7,255,154,0,375,0.313,29.98,38.54,0.93,0.14,786,0.8,212,6.2
+2023,5,5,15,0,12.4,0.9,0.056,0.64,82,963,778,0,8,-4.7,280,438,0,597,0.313,30.04,43.71,0.92,0.14,786,0.8,213,5.9
+2023,5,5,15,30,12.200000000000001,0.9,0.056,0.64,77,943,694,0,8,-4.7,240,487,0,559,0.313,30.43,49.13,0.92,0.14,786,0.8,214,5.7
+2023,5,5,16,0,12.100000000000001,0.88,0.053,0.64,72,918,602,0,0,-4.7,157,692,7,557,0.312,30.73,54.71,0.92,0.14,786,0.8,215,5.5
+2023,5,5,16,30,11.700000000000001,0.88,0.053,0.64,68,880,503,0,0,-4.7,136,677,4,471,0.312,31.55,60.370000000000005,0.92,0.14,786,0.8,218,5.2
+2023,5,5,17,0,11.3,0.87,0.053,0.64,61,829,398,0,0,-4.5,78,766,0,389,0.312,32.89,66.05,0.92,0.13,786,0.8,220,4.9
+2023,5,5,17,30,10.4,0.87,0.053,0.64,55,755,292,0,0,-4.5,82,619,4,276,0.313,34.910000000000004,71.73,0.92,0.13,786,0.8,223,4.1000000000000005
+2023,5,5,18,0,9.5,0.9,0.056,0.64,46,646,188,0,0,-3.4000000000000004,46,646,0,188,0.314,40.230000000000004,77.34,0.92,0.13,786,0.8,226,3.3000000000000003
+2023,5,5,18,30,7.7,0.9,0.056,0.64,35,470,94,0,0,-3.4000000000000004,35,470,0,94,0.315,45.43,82.84,0.92,0.13,786,0.8,229,2.5
+2023,5,5,19,0,5.800000000000001,0.9400000000000001,0.059000000000000004,0.64,16,169,22,2,0,-1.7000000000000002,15,113,36,19,0.316,58.42,88.11,0.93,0.13,786,0.8,232,1.6
+2023,5,5,19,30,5.2,0.9400000000000001,0.059000000000000004,0.64,0,0,0,0,5,-1.7000000000000002,0,0,0,0,0.317,60.9,93.60000000000001,0.93,0.13,786,0.8,233,1.5
+2023,5,5,20,0,4.5,0.99,0.064,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,63.79,98.64,0.93,0.13,786,0.8,233,1.4000000000000001
+2023,5,5,20,30,4.2,0.99,0.064,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,65.23,103.41,0.93,0.13,787,0.8,231,1.3
+2023,5,5,21,0,3.8000000000000003,1.05,0.07100000000000001,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,66.94,107.84,0.93,0.13,787,0.8,228,1.2000000000000002
+2023,5,5,21,30,3.6,1.05,0.07100000000000001,0.64,0,0,0,0,5,-1.8,0,0,0,0,0.318,67.89,111.87,0.9400000000000001,0.13,787,0.9,224,1.2000000000000002
+2023,5,5,22,0,3.4000000000000004,1.08,0.079,0.64,0,0,0,0,8,-1.8,0,0,0,0,0.318,68.57000000000001,115.41,0.9400000000000001,0.13,787,0.9,220,1.2000000000000002
+2023,5,5,22,30,3.2,1.08,0.079,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.318,69.54,118.37,0.9400000000000001,0.13,787,0.9,213,1.2000000000000002
+2023,5,5,23,0,3,1.07,0.082,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.318,70.61,120.66,0.9400000000000001,0.13,787,0.9,207,1.2000000000000002
+2023,5,5,23,30,2.8000000000000003,1.07,0.082,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.319,71.61,122.2,0.9400000000000001,0.13,787,0.9,203,1.3
+2023,5,6,0,0,2.5,1.03,0.08,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.319,73.10000000000001,122.92,0.9400000000000001,0.13,787,0.9,199,1.4000000000000001
+2023,5,6,0,30,2.1,1.03,0.08,0.64,0,0,0,0,0,-1.8,0,0,0,0,0.32,75.21000000000001,122.8,0.9400000000000001,0.13,787,0.9,200,1.6
+2023,5,6,1,0,1.7000000000000002,0.98,0.073,0.64,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.321,76.86,121.83,0.9400000000000001,0.13,787,0.9,201,1.7000000000000002
+2023,5,6,1,30,1.4000000000000001,0.98,0.073,0.64,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.322,78.53,120.07000000000001,0.9400000000000001,0.13,787,0.9,204,2
+2023,5,6,2,0,1.1,0.96,0.069,0.64,0,0,0,0,8,-1.8,0,0,0,0,0.323,80.77,117.57000000000001,0.9400000000000001,0.13,787,0.9,207,2.2
+2023,5,6,2,30,0.6000000000000001,0.96,0.069,0.64,0,0,0,0,4,-1.8,0,0,0,0,0.323,83.73,114.44,0.9400000000000001,0.13,787,0.9,209,2.3000000000000003
+2023,5,6,3,0,0.1,0.98,0.067,0.64,0,0,0,0,8,-1.6,0,0,0,0,0.323,88.65,110.74000000000001,0.9400000000000001,0.13,787,0.9,210,2.3000000000000003
+2023,5,6,3,30,-0.30000000000000004,0.98,0.067,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.324,91.26,106.59,0.9400000000000001,0.13,787,0.9,210,2.3000000000000003
+2023,5,6,4,0,-0.7000000000000001,1.01,0.066,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.324,95.52,102.05,0.9400000000000001,0.13,787,0.8,209,2.3000000000000003
+2023,5,6,4,30,-0.7000000000000001,1.01,0.066,0.64,0,0,0,0,4,-1.3,0,0,0,0,0.324,95.52,97.2,0.9400000000000001,0.13,787,0.8,207,2.3000000000000003
+2023,5,6,5,0,-0.7000000000000001,1.02,0.064,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.325,97.07000000000001,92.10000000000001,0.9400000000000001,0.13,788,0.8,204,2.4000000000000004
+2023,5,6,5,30,0.6000000000000001,1.02,0.064,0.64,24,256,39,0,0,-1.1,24,256,0,39,0.324,88.34,86.62,0.9400000000000001,0.13,788,0.8,205,3
+2023,5,6,6,0,1.8,1.01,0.062,0.64,40,526,120,0,0,-0.4,40,526,0,120,0.324,85.54,81.25,0.9400000000000001,0.13,788,0.8,205,3.6
+2023,5,6,6,30,3.5,1.01,0.062,0.64,51,680,219,0,0,-0.4,51,680,0,219,0.324,75.83,75.7,0.9400000000000001,0.13,788,0.7000000000000001,212,4
+2023,5,6,7,0,5.1000000000000005,0.98,0.057,0.64,59,781,325,0,0,-0.5,59,781,0,325,0.324,67.35,70.07000000000001,0.93,0.13,788,0.7000000000000001,219,4.4
+2023,5,6,7,30,6.2,0.98,0.057,0.64,65,846,431,0,0,-0.5,65,846,0,431,0.324,62.42,64.38,0.93,0.13,788,0.7000000000000001,221,4.5
+2023,5,6,8,0,7.4,0.97,0.057,0.64,71,893,535,0,0,-2.1,71,893,0,535,0.325,50.800000000000004,58.69,0.93,0.13,788,0.7000000000000001,223,4.7
+2023,5,6,8,30,8.200000000000001,0.97,0.057,0.64,76,926,633,0,0,-2.1,76,926,0,633,0.326,48.11,53.03,0.93,0.13,788,0.7000000000000001,222,4.7
+2023,5,6,9,0,9.1,0.99,0.061,0.64,82,949,723,0,0,-3.2,82,949,0,723,0.327,42,47.480000000000004,0.9400000000000001,0.13,788,0.7000000000000001,221,4.800000000000001
+2023,5,6,9,30,9.8,0.99,0.061,0.64,86,966,803,0,7,-3.1,233,624,0,696,0.328,40.07,42.1,0.9400000000000001,0.13,788,0.7000000000000001,220,4.800000000000001
+2023,5,6,10,0,10.4,1.01,0.07100000000000001,0.64,93,976,872,0,7,-3.8000000000000003,350,401,0,670,0.328,36.68,37,0.9400000000000001,0.13,788,0.7000000000000001,219,4.800000000000001
+2023,5,6,10,30,11,1.01,0.07100000000000001,0.64,94,990,930,0,7,-3.8000000000000003,377,349,0,672,0.329,35.25,32.36,0.9400000000000001,0.13,788,0.7000000000000001,218,4.7
+2023,5,6,11,0,11.5,1.03,0.067,0.64,95,1000,975,0,6,-4.4,365,382,0,701,0.329,32.57,28.400000000000002,0.9500000000000001,0.13,788,0.7000000000000001,217,4.6000000000000005
+2023,5,6,11,30,12.4,1.03,0.067,0.64,93,1008,1003,0,8,-4.4,220,786,0,929,0.329,30.7,25.490000000000002,0.9400000000000001,0.13,788,0.7000000000000001,215,4.7
+2023,5,6,12,0,13.200000000000001,1.01,0.058,0.64,91,1015,1018,0,3,-4.9,346,618,0,910,0.33,28.11,24.02,0.9400000000000001,0.13,788,0.7000000000000001,214,4.800000000000001
+2023,5,6,12,30,13.9,1.01,0.058,0.64,90,1013,1014,0,0,-4.9,164,895,0,980,0.33,26.82,24.26,0.9400000000000001,0.13,787,0.7000000000000001,213,5
+2023,5,6,13,0,14.5,0.98,0.059000000000000004,0.64,89,1010,996,0,0,-5.300000000000001,146,917,0,969,0.33,24.990000000000002,26.16,0.9400000000000001,0.13,787,0.7000000000000001,212,5.2
+2023,5,6,13,30,14.600000000000001,0.98,0.059000000000000004,0.64,89,1004,964,0,0,-5.300000000000001,158,876,0,921,0.33,24.830000000000002,29.39,0.9400000000000001,0.13,787,0.7000000000000001,211,5.4
+2023,5,6,14,0,14.700000000000001,1.07,0.061,0.64,89,993,916,0,0,-5.800000000000001,245,620,0,762,0.331,23.87,33.56,0.9500000000000001,0.13,787,0.7000000000000001,210,5.6000000000000005
+2023,5,6,14,30,14.3,1.07,0.061,0.64,87,977,853,0,8,-5.800000000000001,306,329,0,564,0.332,24.490000000000002,38.35,0.9500000000000001,0.13,787,0.8,212,5.7
+2023,5,6,15,0,13.9,1.08,0.066,0.64,86,955,778,0,3,-5.7,285,449,7,611,0.332,25.18,43.53,0.9500000000000001,0.13,786,0.8,213,5.800000000000001
+2023,5,6,15,30,13.5,1.08,0.066,0.64,83,930,694,0,0,-5.7,157,662,0,592,0.334,25.84,48.97,0.9500000000000001,0.13,786,0.8,217,5.7
+2023,5,6,16,0,13,1.1,0.07100000000000001,0.64,80,898,601,0,0,-5.2,80,898,0,601,0.336,27.79,54.550000000000004,0.9500000000000001,0.13,786,0.8,221,5.5
+2023,5,6,16,30,12.600000000000001,1.1,0.07100000000000001,0.64,76,856,501,0,0,-5.2,76,856,0,501,0.336,28.53,60.21,0.9500000000000001,0.13,786,0.8,224,5.2
+2023,5,6,17,0,12.200000000000001,1.12,0.076,0.64,71,799,397,0,0,-4.7,71,799,0,397,0.337,30.34,65.9,0.9500000000000001,0.13,787,0.8,227,4.9
+2023,5,6,17,30,11.200000000000001,1.12,0.076,0.64,63,724,292,0,0,-4.7,63,724,0,292,0.337,32.410000000000004,71.57000000000001,0.9500000000000001,0.13,787,0.8,230,3.9000000000000004
+2023,5,6,18,0,10.3,1.11,0.077,0.64,53,613,189,0,0,-3.1,53,613,0,189,0.337,38.88,77.18,0.9500000000000001,0.13,787,0.8,232,2.9000000000000004
+2023,5,6,18,30,8.8,1.11,0.077,0.64,38,436,94,0,0,-3.1,38,436,0,94,0.337,42.99,82.68,0.9500000000000001,0.13,787,0.8,235,2.1
+2023,5,6,19,0,7.2,1.06,0.08,0.64,18,150,23,4,5,-1.1,16,90,54,19,0.337,55.71,87.95,0.9500000000000001,0.13,787,0.8,237,1.4000000000000001
+2023,5,6,19,30,6.7,1.06,0.08,0.64,0,0,0,0,0,-1.1,0,0,0,0,0.337,57.65,93.42,0.9500000000000001,0.13,787,0.8,240,1.3
+2023,5,6,20,0,6.1000000000000005,1,0.089,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,60.75,98.45,0.9500000000000001,0.13,788,0.9,243,1.2000000000000002
+2023,5,6,20,30,5.800000000000001,1,0.089,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.336,62.03,103.2,0.9500000000000001,0.13,788,0.9,250,1.3
+2023,5,6,21,0,5.4,0.96,0.101,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.336,64.61,107.62,0.9500000000000001,0.13,788,0.9,257,1.3
+2023,5,6,21,30,5.1000000000000005,0.96,0.101,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.336,65.97,111.64,0.9500000000000001,0.13,788,0.9,267,1.4000000000000001
+2023,5,6,22,0,4.7,0.9500000000000001,0.109,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.336,69.35000000000001,115.17,0.9500000000000001,0.13,788,1,276,1.5
+2023,5,6,22,30,4.1000000000000005,0.9500000000000001,0.109,0.64,0,0,0,0,0,-0.4,0,0,0,0,0.336,72.32000000000001,118.11,0.9500000000000001,0.13,788,1,286,1.4000000000000001
+2023,5,6,23,0,3.5,0.97,0.106,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.336,76.99,120.39,0.9500000000000001,0.13,788,1,295,1.2000000000000002
+2023,5,6,23,30,2.9000000000000004,0.97,0.106,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.335,80.32000000000001,121.92,0.9500000000000001,0.13,788,1,297,1.1
+2023,5,7,0,0,2.3000000000000003,1.03,0.10300000000000001,0.64,0,0,0,0,0,-0.1,0,0,0,0,0.335,84.36,122.64,0.9500000000000001,0.13,788,1,300,0.9
+2023,5,7,0,30,2,1.03,0.10300000000000001,0.64,0,0,0,0,0,-0.1,0,0,0,0,0.334,86.18,122.52,0.9500000000000001,0.13,788,1,294,0.8
+2023,5,7,1,0,1.8,1.1,0.101,0.64,0,0,0,0,7,0,0,0,0,0,0.334,87.98,121.56,0.9500000000000001,0.13,788,0.9,288,0.7000000000000001
+2023,5,7,1,30,1.6,1.1,0.101,0.64,0,0,0,0,8,0,0,0,0,0,0.333,89.24,119.8,0.9500000000000001,0.13,788,0.9,279,0.7000000000000001
+2023,5,7,2,0,1.4000000000000001,1.1500000000000001,0.098,0.64,0,0,0,0,8,0.1,0,0,0,0,0.333,90.93,117.31,0.96,0.13,788,0.9,269,0.7000000000000001
+2023,5,7,2,30,1.4000000000000001,1.1500000000000001,0.098,0.64,0,0,0,0,8,0.1,0,0,0,0,0.332,90.93,114.18,0.96,0.13,788,0.9,260,0.7000000000000001
+2023,5,7,3,0,1.4000000000000001,1.1500000000000001,0.10300000000000001,0.64,0,0,0,0,8,0.30000000000000004,0,0,0,0,0.332,92.53,110.5,0.96,0.13,788,0.9,250,0.7000000000000001
+2023,5,7,3,30,1.4000000000000001,1.1500000000000001,0.10300000000000001,0.64,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.332,92.65,106.36,0.96,0.13,789,0.9,245,0.7000000000000001
+2023,5,7,4,0,1.4000000000000001,1.1400000000000001,0.105,0.64,0,0,0,0,6,0.5,0,0,0,0,0.332,93.56,101.83,0.96,0.13,789,0.9,240,0.7000000000000001
+2023,5,7,4,30,1.5,1.1400000000000001,0.105,0.64,0,0,0,0,6,0.5,0,0,0,0,0.333,92.89,96.99000000000001,0.96,0.13,789,0.9,235,0.7000000000000001
+2023,5,7,5,0,1.5,1.12,0.106,0.64,2,9,2,2,7,0.6000000000000001,0,0,29,0,0.333,93.91,91.89,0.96,0.13,789,0.9,229,0.8
+2023,5,7,5,30,2.1,1.12,0.106,0.64,27,209,40,7,7,0.6000000000000001,12,0,100,12,0.334,89.97,86.43,0.96,0.13,789,0.9,223,1.1
+2023,5,7,6,0,2.7,1.08,0.10300000000000001,0.64,47,448,117,2,7,1,34,1,29,34,0.335,88.41,81.06,0.9500000000000001,0.13,790,0.9,217,1.4000000000000001
+2023,5,7,6,30,3.8000000000000003,1.08,0.10300000000000001,0.64,61,606,213,0,7,1,96,23,0,102,0.336,81.81,75.52,0.9500000000000001,0.13,790,0.9,220,1.7000000000000002
+2023,5,7,7,0,5,0.99,0.096,0.64,72,712,317,0,0,0.6000000000000001,107,385,0,239,0.337,73.28,69.88,0.9500000000000001,0.13,790,0.9,224,2
+2023,5,7,7,30,6.300000000000001,0.99,0.096,0.64,80,786,422,0,0,0.6000000000000001,80,786,0,422,0.338,66.98,64.2,0.9400000000000001,0.13,790,0.9,224,2.2
+2023,5,7,8,0,7.7,0.91,0.089,0.64,85,842,525,0,0,-0.30000000000000004,85,842,0,525,0.338,56.83,58.5,0.9400000000000001,0.13,790,0.9,225,2.3000000000000003
+2023,5,7,8,30,8.700000000000001,0.91,0.089,0.64,92,878,622,0,0,-0.30000000000000004,118,810,0,607,0.338,53.11,52.85,0.9400000000000001,0.13,790,0.9,221,2.7
+2023,5,7,9,0,9.600000000000001,0.86,0.092,0.64,97,905,711,1,8,-0.7000000000000001,259,328,14,481,0.339,48.5,47.29,0.9400000000000001,0.13,790,0.9,216,3
+2023,5,7,9,30,10.100000000000001,0.86,0.092,0.64,102,925,790,1,5,-0.7000000000000001,249,66,14,298,0.339,46.9,41.9,0.9400000000000001,0.13,790,0.9,213,3.3000000000000003
+2023,5,7,10,0,10.700000000000001,0.8200000000000001,0.098,0.64,107,939,859,0,5,-0.8,256,240,0,448,0.339,44.72,36.79,0.9400000000000001,0.13,790,0.9,211,3.6
+2023,5,7,10,30,11.100000000000001,0.8200000000000001,0.098,0.64,107,958,918,1,8,-0.8,164,12,14,174,0.34,43.550000000000004,32.12,0.9500000000000001,0.13,790,0.9,210,3.9000000000000004
+2023,5,7,11,0,11.5,0.8300000000000001,0.08,0.64,102,976,963,0,8,-1.2000000000000002,337,301,0,602,0.34,41.32,28.150000000000002,0.9500000000000001,0.13,790,0.9,209,4.1000000000000005
+2023,5,7,11,30,11.8,0.8300000000000001,0.08,0.64,103,982,991,0,0,-1.2000000000000002,257,638,0,834,0.34,40.46,25.23,0.9500000000000001,0.13,789,0.9,209,4.3
+2023,5,7,12,0,12.100000000000001,0.85,0.08,0.64,103,984,1004,0,5,-1.5,418,61,0,474,0.339,38.800000000000004,23.75,0.9500000000000001,0.13,789,0.9,208,4.5
+2023,5,7,12,30,12.3,0.85,0.08,0.64,103,984,1002,0,5,-1.5,353,62,0,410,0.338,38.29,23.990000000000002,0.9500000000000001,0.13,789,0.9,209,4.7
+2023,5,7,13,0,12.600000000000001,0.84,0.081,0.64,104,980,985,0,5,-1.7000000000000002,425,362,0,751,0.337,37.15,25.91,0.9500000000000001,0.13,789,0.9,210,4.800000000000001
+2023,5,7,13,30,12.8,0.84,0.081,0.64,103,972,952,0,5,-1.7000000000000002,375,98,0,461,0.336,36.67,29.16,0.9500000000000001,0.13,789,0.9,211,4.800000000000001
+2023,5,7,14,0,12.9,0.85,0.084,0.64,102,962,905,0,8,-1.9000000000000001,371,287,0,611,0.335,35.81,33.36,0.9500000000000001,0.13,789,0.9,213,4.9
+2023,5,7,14,30,13,0.85,0.084,0.64,100,946,844,0,8,-1.9000000000000001,288,456,0,647,0.335,35.57,38.160000000000004,0.9500000000000001,0.13,789,0.9,214,4.9
+2023,5,7,15,0,13,0.8300000000000001,0.09,0.64,99,924,771,0,5,-2.1,347,154,0,459,0.335,35.17,43.36,0.9500000000000001,0.13,789,0.9,216,4.9
+2023,5,7,15,30,12.8,0.8300000000000001,0.09,0.64,96,896,686,0,8,-2.1,280,100,0,346,0.335,35.63,48.800000000000004,0.9500000000000001,0.13,789,0.9,218,4.800000000000001
+2023,5,7,16,0,12.700000000000001,0.84,0.097,0.64,93,860,594,0,8,-2.1,107,207,7,228,0.335,35.83,54.39,0.9500000000000001,0.13,789,0.9,219,4.7
+2023,5,7,16,30,12.3,0.84,0.097,0.64,88,813,494,0,0,-2.1,122,721,14,482,0.336,36.79,60.050000000000004,0.9500000000000001,0.13,789,1,221,4.3
+2023,5,7,17,0,11.9,0.87,0.10400000000000001,0.64,81,751,390,0,0,-1.9000000000000001,81,751,0,390,0.336,38.36,65.74,0.9500000000000001,0.13,789,1,222,4
+2023,5,7,17,30,11,0.87,0.10400000000000001,0.64,73,668,286,0,0,-1.9000000000000001,73,668,4,286,0.336,40.71,71.41,0.9500000000000001,0.13,789,1,222,2.9000000000000004
+2023,5,7,18,0,10.100000000000001,0.91,0.11,0.64,61,546,184,0,3,0.30000000000000004,91,367,29,173,0.337,50.5,77.02,0.9500000000000001,0.13,789,1,222,1.9000000000000001
+2023,5,7,18,30,8.8,0.91,0.11,0.64,44,368,92,5,5,0.30000000000000004,48,14,71,50,0.336,55.17,82.51,0.9500000000000001,0.13,790,1,224,1.5
+2023,5,7,19,0,7.5,0.91,0.111,0.64,19,113,23,6,5,1.1,15,0,86,15,0.336,63.89,87.79,0.9500000000000001,0.13,790,1,226,1
+2023,5,7,19,30,7.300000000000001,0.91,0.111,0.64,0,0,0,0,0,1.1,0,0,0,0,0.336,64.76,93.24,0.9500000000000001,0.13,790,1,229,1
+2023,5,7,20,0,7.1000000000000005,0.9,0.105,0.64,0,0,0,0,4,0.5,0,0,0,0,0.336,62.690000000000005,98.26,0.9500000000000001,0.13,790,1,233,0.9
+2023,5,7,20,30,6.9,0.9,0.105,0.64,0,0,0,0,4,0.5,0,0,0,0,0.336,63.550000000000004,103,0.9500000000000001,0.13,790,1,232,0.8
+2023,5,7,21,0,6.7,0.88,0.097,0.64,0,0,0,0,5,-0.1,0,0,0,0,0.337,61.67,107.41,0.9500000000000001,0.13,790,0.9,231,0.8
+2023,5,7,21,30,6.4,0.88,0.097,0.64,0,0,0,0,5,-0.1,0,0,0,0,0.336,62.95,111.41,0.9400000000000001,0.13,790,0.9,227,0.8
+2023,5,7,22,0,6.1000000000000005,0.84,0.091,0.64,0,0,0,0,5,-0.6000000000000001,0,0,0,0,0.336,62.230000000000004,114.93,0.9400000000000001,0.13,790,0.9,224,0.8
+2023,5,7,22,30,5.800000000000001,0.84,0.091,0.64,0,0,0,0,5,-0.6000000000000001,0,0,0,0,0.335,63.53,117.86,0.9400000000000001,0.13,790,0.9,222,0.8
+2023,5,7,23,0,5.4,0.84,0.089,0.64,0,0,0,0,5,-1,0,0,0,0,0.334,63.51,120.13,0.9400000000000001,0.13,790,0.9,221,0.8
+2023,5,7,23,30,5.1000000000000005,0.84,0.089,0.64,0,0,0,0,0,-1,0,0,0,0,0.331,64.84,121.66,0.9400000000000001,0.13,790,0.9,222,0.8
+2023,5,8,0,0,4.800000000000001,0.86,0.09,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.329,64.99,122.37,0.9400000000000001,0.13,790,0.9,224,0.8
+2023,5,8,0,30,4.6000000000000005,0.86,0.09,0.64,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.328,65.9,122.24000000000001,0.9400000000000001,0.13,790,0.9,228,0.8
+2023,5,8,1,0,4.3,0.85,0.091,0.64,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.326,66.28,121.28,0.9400000000000001,0.13,790,0.9,232,0.7000000000000001
+2023,5,8,1,30,4.1000000000000005,0.85,0.091,0.64,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.326,67.21000000000001,119.53,0.93,0.13,790,0.8,241,0.6000000000000001
+2023,5,8,2,0,4,0.79,0.088,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.326,66.79,117.05,0.93,0.13,790,0.8,250,0.5
+2023,5,8,2,30,3.6,0.79,0.088,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.327,68.69,113.93,0.93,0.13,790,0.8,133,0.30000000000000004
+2023,5,8,3,0,3.3000000000000003,0.72,0.08600000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.327,70.15,110.26,0.93,0.13,790,0.7000000000000001,16,0.2
+2023,5,8,3,30,2.6,0.72,0.08600000000000001,0.64,0,0,0,0,0,-1.6,0,0,0,0,0.328,73.71000000000001,106.13,0.93,0.13,790,0.7000000000000001,39,0.4
+2023,5,8,4,0,2,0.67,0.08600000000000001,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.329,77.62,101.61,0.93,0.13,790,0.7000000000000001,61,0.6000000000000001
+2023,5,8,4,30,1.5,0.67,0.08600000000000001,0.64,0,0,0,0,0,-1.5,0,0,0,0,0.329,80.44,96.78,0.92,0.13,790,0.7000000000000001,64,0.7000000000000001
+2023,5,8,5,0,1.1,0.64,0.08700000000000001,0.64,2,10,2,1,0,-1.2000000000000002,1,0,14,1,0.329,84.55,91.69,0.92,0.13,790,0.7000000000000001,68,0.8
+2023,5,8,5,30,2.4000000000000004,0.64,0.08700000000000001,0.64,27,222,42,7,5,-1.2000000000000002,21,0,100,21,0.329,77.05,86.24,0.92,0.13,790,0.7000000000000001,69,1.2000000000000002
+2023,5,8,6,0,3.8000000000000003,0.64,0.08700000000000001,0.64,47,471,122,2,0,-0.2,52,361,29,109,0.328,74.89,80.88,0.92,0.13,790,0.7000000000000001,71,1.5
+2023,5,8,6,30,5.5,0.64,0.08700000000000001,0.64,61,630,220,0,4,-0.2,100,146,0,137,0.328,66.61,75.34,0.92,0.13,791,0.6000000000000001,74,1.6
+2023,5,8,7,0,7.300000000000001,0.64,0.08600000000000001,0.64,70,734,325,0,5,-0.8,153,235,0,235,0.327,56.47,69.7,0.92,0.13,791,0.6000000000000001,77,1.8
+2023,5,8,7,30,9.200000000000001,0.64,0.08600000000000001,0.64,78,804,430,0,0,-0.8,143,566,0,391,0.327,49.65,64.02,0.92,0.13,791,0.7000000000000001,86,1.4000000000000001
+2023,5,8,8,0,11.100000000000001,0.66,0.085,0.64,85,855,534,0,0,-2.5,198,535,0,479,0.326,38.51,58.33,0.92,0.13,790,0.7000000000000001,96,1.1
+2023,5,8,8,30,12.4,0.66,0.085,0.64,90,892,631,0,0,-2.5,135,773,0,604,0.325,35.35,52.67,0.92,0.13,790,0.7000000000000001,128,1
+2023,5,8,9,0,13.8,0.73,0.083,0.64,94,923,722,0,0,-3.8000000000000003,94,923,0,722,0.324,29.400000000000002,47.1,0.93,0.13,790,0.7000000000000001,159,1
+2023,5,8,9,30,14.700000000000001,0.73,0.083,0.64,97,944,802,0,0,-3.8000000000000003,97,944,0,802,0.323,27.75,41.7,0.93,0.13,790,0.7000000000000001,172,1.4000000000000001
+2023,5,8,10,0,15.600000000000001,0.8200000000000001,0.08600000000000001,0.64,102,957,870,0,0,-4,112,939,0,866,0.322,25.66,36.58,0.93,0.13,790,0.8,185,1.8
+2023,5,8,10,30,16.3,0.8200000000000001,0.08600000000000001,0.64,98,976,927,0,0,-4,110,958,0,923,0.321,24.54,31.900000000000002,0.9400000000000001,0.13,790,0.8,190,2.3000000000000003
+2023,5,8,11,0,17,1.02,0.066,0.64,94,995,973,0,0,-3.7,94,995,0,973,0.319,24.04,27.91,0.9500000000000001,0.13,789,0.8,195,2.8000000000000003
+2023,5,8,11,30,17.5,1.02,0.066,0.64,94,999,1000,0,0,-3.7,123,960,0,993,0.318,23.29,24.96,0.9500000000000001,0.13,789,0.9,198,3.2
+2023,5,8,12,0,18.1,1.09,0.065,0.64,94,1000,1011,0,0,-3.2,145,909,0,979,0.317,23.28,23.48,0.9500000000000001,0.13,788,0.9,202,3.7
+2023,5,8,12,30,18.400000000000002,1.09,0.065,0.64,93,1001,1009,0,3,-3.2,307,564,0,823,0.316,22.85,23.73,0.9500000000000001,0.13,788,0.9,204,4.1000000000000005
+2023,5,8,13,0,18.7,1.17,0.061,0.64,92,999,992,0,3,-2.7,318,492,0,761,0.315,23.34,25.66,0.9500000000000001,0.13,788,0.9,206,4.5
+2023,5,8,13,30,18.900000000000002,1.17,0.061,0.64,88,994,958,0,8,-2.7,310,498,0,746,0.314,23.02,28.94,0.9400000000000001,0.13,787,1,207,4.800000000000001
+2023,5,8,14,0,19.200000000000003,1.2,0.055,0.64,85,988,912,0,8,-2.4000000000000004,348,314,0,611,0.313,23.01,33.160000000000004,0.9400000000000001,0.13,787,1,209,5.1000000000000005
+2023,5,8,14,30,19.200000000000003,1.2,0.055,0.64,81,979,853,0,8,-2.4000000000000004,219,605,0,696,0.312,23.01,37.980000000000004,0.9400000000000001,0.13,787,1,210,5.300000000000001
+2023,5,8,15,0,19.3,1.1,0.048,0.64,76,967,781,0,0,-2.6,150,719,0,674,0.312,22.59,43.19,0.93,0.13,786,1,211,5.6000000000000005
+2023,5,8,15,30,19.1,1.1,0.048,0.64,73,947,699,0,3,-2.6,213,473,4,526,0.313,22.87,48.64,0.93,0.13,786,0.9,212,5.800000000000001
+2023,5,8,16,0,18.8,0.96,0.048,0.64,69,920,607,0,8,-2.9000000000000004,206,552,7,529,0.313,22.75,54.230000000000004,0.93,0.13,786,0.9,212,5.9
+2023,5,8,16,30,18.2,0.96,0.048,0.64,67,882,509,0,8,-2.9000000000000004,220,402,7,422,0.314,23.61,59.9,0.93,0.13,786,0.9,213,5.9
+2023,5,8,17,0,17.6,0.88,0.051000000000000004,0.64,61,832,405,0,8,-3.2,140,463,11,331,0.315,24.01,65.59,0.93,0.14,786,0.9,214,5.800000000000001
+2023,5,8,17,30,16.400000000000002,0.88,0.051000000000000004,0.64,57,757,300,0,0,-3.2,68,708,11,295,0.315,25.900000000000002,71.26,0.93,0.14,786,0.9,216,5
+2023,5,8,18,0,15.100000000000001,0.86,0.059000000000000004,0.64,49,645,196,0,8,-2.4000000000000004,85,379,7,171,0.315,29.98,76.86,0.9400000000000001,0.14,786,0.9,217,4.2
+2023,5,8,18,30,13,0.86,0.059000000000000004,0.64,38,467,100,5,5,-2.4000000000000004,55,79,82,66,0.315,34.34,82.35000000000001,0.9400000000000001,0.14,786,0.9,225,3.3000000000000003
+2023,5,8,19,0,10.8,0.9400000000000001,0.07100000000000001,0.64,19,169,26,6,5,-0.7000000000000001,14,0,86,14,0.315,44.75,87.63,0.9500000000000001,0.14,787,0.9,233,2.5
+2023,5,8,19,30,10.200000000000001,0.9400000000000001,0.07100000000000001,0.64,0,0,0,0,5,-0.7000000000000001,0,0,0,0,0.314,46.57,93.06,0.9500000000000001,0.14,787,1,249,2.4000000000000004
+2023,5,8,20,0,9.600000000000001,1.05,0.084,0.64,0,0,0,0,3,0.2,0,0,0,0,0.314,51.95,98.07000000000001,0.9500000000000001,0.14,787,1,265,2.4000000000000004
+2023,5,8,20,30,9.1,1.05,0.084,0.64,0,0,0,0,3,0.2,0,0,0,0,0.314,53.800000000000004,102.8,0.9500000000000001,0.14,788,1,279,2.4000000000000004
+2023,5,8,21,0,8.5,1.16,0.092,0.64,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.314,61.02,107.2,0.9500000000000001,0.14,788,1.1,293,2.5
+2023,5,8,21,30,7.9,1.16,0.092,0.64,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.314,63.56,111.19,0.9500000000000001,0.14,788,1.1,301,2.2
+2023,5,8,22,0,7.2,1.22,0.093,0.64,0,0,0,0,8,2.6,0,0,0,0,0.313,72.58,114.69,0.9500000000000001,0.14,788,1.1,310,2
+2023,5,8,22,30,6.5,1.22,0.093,0.64,0,0,0,0,5,2.6,0,0,0,0,0.312,76.15,117.62,0.9500000000000001,0.14,788,1.1,319,1.6
+2023,5,8,23,0,5.9,1.21,0.092,0.64,0,0,0,0,5,3.1,0,0,0,0,0.311,82.36,119.88,0.9500000000000001,0.14,788,1.1,329,1.3
+2023,5,8,23,30,5.4,1.21,0.092,0.64,0,0,0,0,5,3.1,0,0,0,0,0.309,85.26,121.39,0.9400000000000001,0.14,788,1.1,341,1.2000000000000002
+2023,5,9,0,0,4.9,1.1500000000000001,0.08700000000000001,0.64,0,0,0,0,5,3.1,0,0,0,0,0.308,87.9,122.10000000000001,0.9400000000000001,0.14,788,1.1,353,1.1
+2023,5,9,0,30,4.5,1.1500000000000001,0.08700000000000001,0.64,0,0,0,0,0,3.1,0,0,0,0,0.306,90.38,121.97,0.9400000000000001,0.14,788,1,184,1.1
+2023,5,9,1,0,4.1000000000000005,1.07,0.08700000000000001,0.64,0,0,0,0,0,3,0,0,0,0,0.305,92.78,121.02,0.9400000000000001,0.14,788,1,16,1.1
+2023,5,9,1,30,3.7,1.07,0.08700000000000001,0.64,0,0,0,0,0,3,0,0,0,0,0.303,95.42,119.27,0.9400000000000001,0.14,788,1,25,1.1
+2023,5,9,2,0,3.3000000000000003,1.02,0.092,0.64,0,0,0,0,0,3,0,0,0,0,0.302,98.14,116.8,0.9400000000000001,0.14,788,1,34,1.1
+2023,5,9,2,30,3,1.02,0.092,0.64,0,0,0,0,0,3,0,0,0,0,0.3,100,113.69,0.9400000000000001,0.14,788,1,41,1.2000000000000002
+2023,5,9,3,0,2.7,0.98,0.10200000000000001,0.64,0,0,0,0,0,2.7,0,0,0,0,0.299,100,110.03,0.9400000000000001,0.14,789,1,49,1.2000000000000002
+2023,5,9,3,30,2.4000000000000004,0.98,0.10200000000000001,0.64,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.299,100,105.91,0.9400000000000001,0.14,789,1,56,1.2000000000000002
+2023,5,9,4,0,2.2,0.9500000000000001,0.105,0.64,0,0,0,0,0,2.2,0,0,0,0,0.298,100,101.4,0.9400000000000001,0.14,789,1,62,1.2000000000000002
+2023,5,9,4,30,2.2,0.9500000000000001,0.105,0.64,0,0,0,0,0,2.2,0,0,0,0,0.298,100,96.58,0.9400000000000001,0.14,789,1,68,1.3
+2023,5,9,5,0,2.2,0.9,0.105,0.64,2,10,2,0,0,2.2,2,10,0,2,0.298,100,91.5,0.93,0.14,789,1,73,1.3
+2023,5,9,5,30,3.8000000000000003,0.9,0.105,0.64,28,213,43,0,0,2.7,28,213,0,43,0.297,92.64,86.06,0.93,0.14,789,0.9,75,1.9000000000000001
+2023,5,9,6,0,5.5,0.85,0.10300000000000001,0.64,50,448,122,0,0,2.6,50,448,0,122,0.297,81.35000000000001,80.7,0.93,0.14,789,0.9,77,2.5
+2023,5,9,6,30,7.5,0.85,0.10300000000000001,0.64,63,604,218,0,0,2.6,63,604,0,218,0.297,71,75.16,0.93,0.14,790,0.9,85,2.4000000000000004
+2023,5,9,7,0,9.4,0.81,0.1,0.64,74,709,322,0,0,1.9000000000000001,74,709,0,322,0.297,59.54,69.53,0.93,0.14,790,0.9,92,2.3000000000000003
+2023,5,9,7,30,11.200000000000001,0.81,0.1,0.64,83,782,428,0,0,1.9000000000000001,83,782,0,428,0.297,52.82,63.85,0.93,0.14,790,0.9,118,2
+2023,5,9,8,0,12.9,0.78,0.099,0.64,90,834,530,0,0,0.8,90,834,0,530,0.297,43.56,58.15,0.93,0.14,790,0.8,144,1.7000000000000002
+2023,5,9,8,30,14.3,0.78,0.099,0.64,96,873,628,0,0,0.8,96,873,0,628,0.297,39.78,52.49,0.93,0.14,790,0.8,171,2.2
+2023,5,9,9,0,15.700000000000001,0.77,0.1,0.64,101,903,718,0,0,-0.4,101,903,0,718,0.297,33.25,46.92,0.93,0.14,790,0.8,197,2.6
+2023,5,9,9,30,16.6,0.77,0.1,0.64,106,924,798,0,0,-0.4,106,924,0,798,0.297,31.400000000000002,41.51,0.93,0.14,790,0.8,203,3.2
+2023,5,9,10,0,17.5,0.76,0.10300000000000001,0.64,110,940,867,0,0,-1.6,110,940,0,867,0.297,27.330000000000002,36.38,0.93,0.14,790,0.8,209,3.7
+2023,5,9,10,30,18.2,0.76,0.10300000000000001,0.64,111,957,925,0,0,-1.6,111,957,0,925,0.297,26.12,31.68,0.93,0.14,789,0.8,210,4
+2023,5,9,11,0,18.900000000000002,0.71,0.095,0.64,111,970,970,0,0,-2.7,111,970,0,970,0.297,23.07,27.67,0.93,0.14,789,0.8,211,4.3
+2023,5,9,11,30,19.3,0.71,0.095,0.64,114,973,998,0,0,-2.7,129,947,4,989,0.297,22.5,24.71,0.93,0.14,789,0.7000000000000001,211,4.6000000000000005
+2023,5,9,12,0,19.8,0.6900000000000001,0.105,0.64,119,971,1011,0,0,-3.7,137,936,4,997,0.297,20.13,23.21,0.93,0.14,789,0.7000000000000001,212,4.800000000000001
+2023,5,9,12,30,20.1,0.6900000000000001,0.105,0.64,119,970,1009,0,0,-3.8000000000000003,119,970,0,1009,0.297,19.740000000000002,23.46,0.93,0.14,788,0.7000000000000001,211,4.9
+2023,5,9,13,0,20.3,0.66,0.11,0.64,120,963,990,0,0,-4.7,164,895,0,972,0.298,18.1,25.42,0.93,0.14,788,0.7000000000000001,211,5
+2023,5,9,13,30,20.5,0.66,0.11,0.64,116,962,960,0,3,-4.7,306,577,0,812,0.298,17.88,28.72,0.93,0.14,788,0.7000000000000001,212,5
+2023,5,9,14,0,20.6,0.63,0.097,0.64,111,960,916,0,0,-5.5,235,667,0,795,0.298,16.71,32.96,0.93,0.14,788,0.7000000000000001,212,5
+2023,5,9,14,30,20.5,0.63,0.097,0.64,108,947,856,0,0,-5.6000000000000005,176,779,0,792,0.3,16.79,37.800000000000004,0.93,0.14,787,0.6000000000000001,213,5
+2023,5,9,15,0,20.400000000000002,0.62,0.097,0.64,105,928,783,0,0,-6.1000000000000005,154,765,0,713,0.301,16.18,43.02,0.92,0.14,787,0.6000000000000001,214,5
+2023,5,9,15,30,20.1,0.62,0.097,0.64,99,907,700,0,0,-6.1000000000000005,107,884,0,693,0.303,16.48,48.480000000000004,0.92,0.14,787,0.6000000000000001,215,4.9
+2023,5,9,16,0,19.8,0.66,0.094,0.64,93,878,608,0,0,-6.300000000000001,95,872,0,607,0.304,16.6,54.08,0.92,0.14,787,0.6000000000000001,216,4.800000000000001
+2023,5,9,16,30,19.200000000000003,0.66,0.094,0.64,86,838,508,0,0,-6.300000000000001,93,818,0,505,0.306,17.23,59.75,0.92,0.14,787,0.6000000000000001,217,4.4
+2023,5,9,17,0,18.6,0.68,0.091,0.64,79,785,405,0,0,-6.300000000000001,96,730,0,399,0.307,17.89,65.44,0.92,0.14,787,0.6000000000000001,218,4.1000000000000005
+2023,5,9,17,30,16.900000000000002,0.68,0.091,0.64,69,709,299,0,0,-6.300000000000001,83,651,7,294,0.308,19.91,71.10000000000001,0.92,0.14,787,0.6000000000000001,219,2.9000000000000004
+2023,5,9,18,0,15.200000000000001,0.71,0.088,0.64,57,600,195,0,0,-0.30000000000000004,87,432,0,186,0.308,34.660000000000004,76.7,0.92,0.14,787,0.6000000000000001,220,1.7000000000000002
+2023,5,9,18,30,13.9,0.71,0.088,0.64,43,428,101,2,0,-0.30000000000000004,57,266,32,93,0.309,37.69,82.19,0.92,0.14,787,0.7000000000000001,224,1.4000000000000001
+2023,5,9,19,0,12.600000000000001,0.75,0.085,0.64,19,152,26,6,3,-0.9,18,16,79,19,0.31,39.160000000000004,87.46000000000001,0.92,0.14,787,0.7000000000000001,228,1.1
+2023,5,9,19,30,12.8,0.75,0.085,0.64,0,0,0,0,0,-0.9,0,0,0,0,0.311,38.7,92.88,0.92,0.14,788,0.7000000000000001,252,0.8
+2023,5,9,20,0,12.9,0.78,0.085,0.64,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.312,33.160000000000004,97.88,0.92,0.14,788,0.7000000000000001,275,0.4
+2023,5,9,20,30,11.9,0.78,0.085,0.64,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.312,35.410000000000004,102.60000000000001,0.92,0.14,788,0.7000000000000001,156,0.6000000000000001
+2023,5,9,21,0,10.8,0.8,0.08700000000000001,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.313,40.54,106.99000000000001,0.93,0.14,787,0.8,36,0.9
+2023,5,9,21,30,9.600000000000001,0.8,0.08700000000000001,0.64,0,0,0,0,0,-2.1,0,0,0,0,0.313,43.910000000000004,110.97,0.93,0.14,787,0.8,45,1
+2023,5,9,22,0,8.4,0.81,0.093,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.314,52.93,114.46000000000001,0.93,0.14,787,0.8,55,1.2000000000000002
+2023,5,9,22,30,7.800000000000001,0.81,0.093,0.64,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.314,55.13,117.37,0.93,0.14,787,0.8,60,1.2000000000000002
+2023,5,9,23,0,7.300000000000001,0.8300000000000001,0.096,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.314,59.04,119.62,0.93,0.14,786,0.9,65,1.3
+2023,5,9,23,30,6.9,0.8300000000000001,0.096,0.64,0,0,0,0,0,-0.2,0,0,0,0,0.314,60.67,121.13,0.93,0.14,786,0.9,68,1.4000000000000001
+2023,5,10,0,0,6.6000000000000005,0.85,0.096,0.64,0,0,0,0,8,0,0,0,0,0,0.314,62.56,121.84,0.93,0.14,786,0.9,71,1.4000000000000001
+2023,5,10,0,30,6.300000000000001,0.85,0.096,0.64,0,0,0,0,8,-0.1,0,0,0,0,0.314,63.78,121.71000000000001,0.93,0.14,785,0.9,73,1.4000000000000001
+2023,5,10,1,0,6,0.89,0.095,0.64,0,0,0,0,8,0.1,0,0,0,0,0.314,65.72,120.75,0.93,0.14,785,0.9,74,1.5
+2023,5,10,1,30,5.7,0.89,0.095,0.64,0,0,0,0,8,0.1,0,0,0,0,0.314,67.09,119.01,0.93,0.14,785,0.9,78,1.4000000000000001
+2023,5,10,2,0,5.5,0.92,0.091,0.64,0,0,0,0,7,0.2,0,0,0,0,0.315,68.68,116.55,0.93,0.14,784,0.9,81,1.3
+2023,5,10,2,30,5.300000000000001,0.92,0.091,0.64,0,0,0,0,7,0.2,0,0,0,0,0.315,69.64,113.45,0.93,0.14,784,0.9,87,1.2000000000000002
+2023,5,10,3,0,5,0.9500000000000001,0.088,0.64,0,0,0,0,8,0.2,0,0,0,0,0.316,71.25,109.8,0.93,0.14,784,0.8,93,1.1
+2023,5,10,3,30,4.9,0.9500000000000001,0.088,0.64,0,0,0,0,0,0.2,0,0,0,0,0.316,71.75,105.69,0.92,0.14,784,0.8,102,1
+2023,5,10,4,0,4.9,0.98,0.088,0.64,0,0,0,0,0,0.2,0,0,0,0,0.317,71.48,101.19,0.92,0.14,784,0.8,110,1
+2023,5,10,4,30,5.1000000000000005,0.98,0.088,0.64,0,0,0,0,8,0.2,0,0,0,0,0.317,70.49,96.38,0.92,0.14,784,0.8,124,0.9
+2023,5,10,5,0,5.4,1.02,0.089,0.64,2,16,2,1,0,0.30000000000000004,1,0,14,1,0.318,69.86,91.31,0.92,0.14,785,0.8,139,0.9
+2023,5,10,5,30,6.9,1.02,0.089,0.64,27,259,46,7,7,0.30000000000000004,31,3,100,31,0.319,63,85.88,0.92,0.14,785,0.8,156,1.1
+2023,5,10,6,0,8.4,1.06,0.091,0.64,46,490,127,2,7,1,77,161,36,104,0.321,59.81,80.52,0.92,0.14,785,0.8,173,1.4000000000000001
+2023,5,10,6,30,10.200000000000001,1.06,0.091,0.64,60,637,225,0,7,1,104,316,0,186,0.322,53,74.99,0.92,0.14,785,0.8,182,1.5
+2023,5,10,7,0,12,1.08,0.091,0.64,69,734,328,0,7,0.4,136,429,14,287,0.323,44.78,69.36,0.92,0.14,785,0.8,192,1.7000000000000002
+2023,5,10,7,30,14.200000000000001,1.08,0.091,0.64,77,803,433,0,3,0.4,168,443,0,364,0.324,38.800000000000004,63.68,0.91,0.14,785,0.8,196,2.9000000000000004
+2023,5,10,8,0,16.400000000000002,1.07,0.088,0.64,83,854,536,0,0,-2.5,83,854,0,536,0.325,27.32,57.99,0.91,0.14,785,0.8,201,4
+2023,5,10,8,30,17.2,1.07,0.088,0.64,88,892,633,0,0,-2.5,88,892,0,633,0.326,25.97,52.32,0.91,0.14,785,0.8,196,4.4
+2023,5,10,9,0,18.1,1.07,0.085,0.64,91,921,722,0,0,-3.8000000000000003,136,809,4,690,0.326,22.29,46.75,0.91,0.14,785,0.8,191,4.7
+2023,5,10,9,30,18.6,1.07,0.085,0.64,95,942,802,2,8,-3.8000000000000003,355,220,29,520,0.326,21.6,41.33,0.92,0.14,785,0.8,187,4.9
+2023,5,10,10,0,19.200000000000003,1.06,0.084,0.64,98,958,871,1,7,-3.7,345,347,11,625,0.326,20.97,36.18,0.92,0.14,785,0.9,184,5.1000000000000005
+2023,5,10,10,30,19.5,1.06,0.084,0.64,95,977,928,0,8,-3.7,301,526,0,750,0.326,20.59,31.470000000000002,0.92,0.14,785,0.9,183,5.1000000000000005
+2023,5,10,11,0,19.900000000000002,1.2,0.063,0.64,90,995,973,0,7,-3.2,326,521,0,788,0.325,20.830000000000002,27.44,0.92,0.14,784,0.9,182,5.2
+2023,5,10,11,30,20.1,1.2,0.063,0.64,91,999,1000,0,7,-3.2,390,414,0,767,0.325,20.57,24.46,0.92,0.14,784,0.9,183,5.1000000000000005
+2023,5,10,12,0,20.3,1.23,0.064,0.64,92,999,1012,0,6,-2.6,453,276,0,707,0.324,21.17,22.95,0.92,0.14,784,1,185,5.1000000000000005
+2023,5,10,12,30,20.3,1.23,0.064,0.64,94,995,1008,0,9,-2.6,475,172,0,633,0.324,21.17,23.21,0.92,0.14,784,1,188,4.800000000000001
+2023,5,10,13,0,20.3,1.23,0.07100000000000001,0.64,95,988,989,0,9,-2.2,460,78,0,531,0.323,21.86,25.18,0.93,0.14,783,1,192,4.6000000000000005
+2023,5,10,13,30,20.1,1.23,0.07100000000000001,0.64,100,972,954,0,9,-2.2,450,97,0,535,0.324,22.13,28.51,0.93,0.14,783,1,198,4.4
+2023,5,10,14,0,19.8,1.21,0.096,0.64,106,949,904,0,6,-1.9000000000000001,287,22,0,306,0.324,22.990000000000002,32.76,0.9400000000000001,0.14,783,1.1,205,4.2
+2023,5,10,14,30,18.900000000000002,1.21,0.096,0.64,112,919,840,0,6,-1.9000000000000001,217,24,0,236,0.325,24.310000000000002,37.62,0.9500000000000001,0.14,783,1.1,203,4
+2023,5,10,15,0,18,1.18,0.135,0.64,118,880,763,0,9,-1.3,328,44,0,360,0.326,26.990000000000002,42.86,0.96,0.14,783,1.2000000000000002,201,3.7
+2023,5,10,15,30,16.6,1.18,0.135,0.64,114,848,678,0,6,-1.3,239,18,0,251,0.327,29.51,48.32,0.96,0.14,784,1.2000000000000002,191,3.8000000000000003
+2023,5,10,16,0,15.3,1.16,0.146,0.64,111,805,585,0,9,0.4,231,25,0,246,0.328,36.13,53.93,0.96,0.14,784,1.3,181,3.9000000000000004
+2023,5,10,16,30,13.9,1.16,0.146,0.64,100,768,489,0,9,0.4,145,13,0,152,0.328,39.59,59.6,0.96,0.14,785,1.3,178,3.7
+2023,5,10,17,0,12.600000000000001,1.1500000000000001,0.129,0.64,88,719,389,0,9,1.9000000000000001,88,4,0,90,0.329,48.03,65.29,0.96,0.14,785,1.3,175,3.4000000000000004
+2023,5,10,17,30,11.8,1.1500000000000001,0.129,0.64,72,668,290,0,9,1.9000000000000001,105,45,0,120,0.332,50.620000000000005,70.95,0.9500000000000001,0.14,785,1.2000000000000002,174,2.3000000000000003
+2023,5,10,18,0,11,1.09,0.085,0.64,55,597,194,0,6,2.8000000000000003,65,106,0,90,0.335,56.84,76.55,0.9400000000000001,0.14,785,1.2000000000000002,173,1.1
+2023,5,10,18,30,9.8,1.09,0.085,0.64,41,432,101,4,6,2.8000000000000003,34,3,57,34,0.335,61.57,82.03,0.9400000000000001,0.14,785,1.1,152,1
+2023,5,10,19,0,8.5,1.06,0.088,0.64,21,171,29,7,6,3.5,14,0,100,14,0.335,70.87,87.3,0.9400000000000001,0.14,785,1.1,132,0.9
+2023,5,10,19,30,8.4,1.06,0.088,0.64,0,0,0,1,6,3.5,0,0,14,0,0.333,71.35000000000001,92.71000000000001,0.9400000000000001,0.14,785,1.1,134,1.1
+2023,5,10,20,0,8.200000000000001,1.07,0.105,0.64,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.331,74.43,97.7,0.9500000000000001,0.14,786,1.1,136,1.4000000000000001
+2023,5,10,20,30,8.200000000000001,1.07,0.105,0.64,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.331,74.43,102.41,0.9500000000000001,0.14,786,1.1,141,1.3
+2023,5,10,21,0,8.200000000000001,1.08,0.111,0.64,0,0,0,0,6,4.4,0,0,0,0,0.33,76.88,106.79,0.9500000000000001,0.14,786,1.2000000000000002,145,1.2000000000000002
+2023,5,10,21,30,8.1,1.08,0.111,0.64,0,0,0,0,6,4.4,0,0,0,0,0.33,77.41,110.75,0.9500000000000001,0.14,786,1.2000000000000002,144,1
+2023,5,10,22,0,8.1,1.09,0.112,0.64,0,0,0,0,6,4.5,0,0,0,0,0.331,77.83,114.23,0.9500000000000001,0.14,786,1.2000000000000002,143,0.8
+2023,5,10,22,30,8,1.09,0.112,0.64,0,0,0,0,7,4.5,0,0,0,0,0.331,78.36,117.13,0.9500000000000001,0.14,786,1.2000000000000002,141,0.6000000000000001
+2023,5,10,23,0,8,1.1,0.115,0.64,0,0,0,0,7,4.4,0,0,0,0,0.332,78.03,119.38,0.9500000000000001,0.14,786,1.2000000000000002,138,0.5
+2023,5,10,23,30,8,1.1,0.115,0.64,0,0,0,0,7,4.4,0,0,0,0,0.333,78.03,120.88,0.9500000000000001,0.14,786,1.2000000000000002,161,0.30000000000000004
+2023,5,11,0,0,8,1.12,0.11900000000000001,0.64,0,0,0,0,6,4.3,0,0,0,0,0.333,77.42,121.58,0.9500000000000001,0.14,786,1.3,183,0.2
+2023,5,11,0,30,7.9,1.12,0.11900000000000001,0.64,0,0,0,0,7,4.3,0,0,0,0,0.334,77.94,121.45,0.9500000000000001,0.14,786,1.3,244,0.30000000000000004
+2023,5,11,1,0,7.9,1.1300000000000001,0.126,0.64,0,0,0,0,6,4,0,0,0,0,0.335,76.53,120.5,0.9500000000000001,0.14,786,1.3,305,0.4
+2023,5,11,1,30,7.5,1.1300000000000001,0.126,0.64,0,0,0,0,6,4,0,0,0,0,0.335,78.64,118.76,0.96,0.14,786,1.3,315,0.7000000000000001
+2023,5,11,2,0,7.1000000000000005,1.1400000000000001,0.136,0.64,0,0,0,0,7,4,0,0,0,0,0.335,80.52,116.31,0.96,0.14,786,1.3,325,0.9
+2023,5,11,2,30,6.7,1.1400000000000001,0.136,0.64,0,0,0,0,6,4,0,0,0,0,0.336,82.76,113.22,0.96,0.14,786,1.3,326,1.1
+2023,5,11,3,0,6.2,1.1400000000000001,0.147,0.64,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.336,85.07000000000001,109.58,0.96,0.14,786,1.3,326,1.3
+2023,5,11,3,30,5.9,1.1400000000000001,0.147,0.64,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.337,86.85000000000001,105.48,0.96,0.14,786,1.3,325,1.5
+2023,5,11,4,0,5.6000000000000005,1.1400000000000001,0.156,0.64,0,0,0,0,7,3.6,0,0,0,0,0.337,87.12,100.99000000000001,0.96,0.14,786,1.3,325,1.7000000000000002
+2023,5,11,4,30,5.4,1.1400000000000001,0.156,0.64,0,0,0,0,6,3.6,0,0,0,0,0.337,88.34,96.19,0.96,0.14,786,1.3,326,1.9000000000000001
+2023,5,11,5,0,5.300000000000001,1.1400000000000001,0.164,0.64,2,8,2,3,6,3.4000000000000004,1,0,43,1,0.337,87.49,91.13,0.96,0.14,786,1.3,328,2
+2023,5,11,5,30,5.7,1.1400000000000001,0.164,0.64,32,170,45,7,7,3.4000000000000004,18,0,100,18,0.338,85.10000000000001,85.71000000000001,0.96,0.14,786,1.3,329,2.5
+2023,5,11,6,0,6.2,1.1500000000000001,0.165,0.64,58,374,121,1,7,3.2,42,1,14,42,0.338,81.39,80.35000000000001,0.96,0.14,787,1.3,331,3
+2023,5,11,6,30,7,1.1500000000000001,0.165,0.64,75,533,215,0,7,3.2,83,6,0,85,0.338,76.94,74.82000000000001,0.96,0.14,786,1.3,332,3.8000000000000003
+2023,5,11,7,0,7.7,1.17,0.146,0.64,87,649,317,0,8,3.1,92,4,0,93,0.339,72.54,69.2,0.9500000000000001,0.14,786,1.3,333,4.7
+2023,5,11,7,30,9.1,1.17,0.146,0.64,95,726,419,0,8,3.1,102,4,0,104,0.338,65.99,63.52,0.9500000000000001,0.14,786,1.3,336,5.1000000000000005
+2023,5,11,8,0,10.4,1.17,0.138,0.64,102,784,520,0,8,3.3000000000000003,137,9,0,142,0.338,61.26,57.82,0.9500000000000001,0.14,786,1.3,339,5.5
+2023,5,11,8,30,11.200000000000001,1.17,0.138,0.64,111,822,615,0,8,3.3000000000000003,135,3,0,137,0.336,58.17,52.160000000000004,0.96,0.14,787,1.3,346,5.300000000000001
+2023,5,11,9,0,12.100000000000001,1.18,0.14400000000000002,0.64,118,850,702,0,8,3.2,147,2,0,148,0.334,54.43,46.58,0.96,0.14,787,1.3,353,5.1000000000000005
+2023,5,11,9,30,12.700000000000001,1.18,0.14400000000000002,0.64,121,877,781,0,8,3.2,143,2,0,145,0.334,52.34,41.15,0.96,0.14,787,1.3,356,5
+2023,5,11,10,0,13.3,1.19,0.135,0.64,122,900,850,0,8,3,293,54,0,337,0.333,49.69,35.99,0.96,0.14,787,1.3,360,4.9
+2023,5,11,10,30,13.8,1.19,0.135,0.64,118,924,908,0,5,3,398,178,0,550,0.333,48.1,31.26,0.96,0.14,787,1.3,185,4.9
+2023,5,11,11,0,14.3,1.27,0.10300000000000001,0.64,111,947,953,0,5,2.7,480,177,0,637,0.333,45.58,27.21,0.96,0.14,787,1.3,11,4.800000000000001
+2023,5,11,11,30,14.5,1.27,0.10300000000000001,0.64,111,955,982,0,8,2.7,432,198,0,613,0.333,45,24.21,0.96,0.14,787,1.3,16,4.7
+2023,5,11,12,0,14.700000000000001,1.26,0.096,0.64,110,960,996,0,5,2.5,368,80,0,442,0.333,43.77,22.69,0.96,0.14,787,1.3,22,4.6000000000000005
+2023,5,11,12,30,14.8,1.26,0.096,0.64,107,963,994,0,5,2.5,313,31,0,342,0.333,43.49,22.95,0.96,0.14,787,1.3,25,4.4
+2023,5,11,13,0,15,1.24,0.088,0.64,104,964,978,0,8,2.4000000000000004,336,166,0,487,0.333,42.63,24.94,0.9500000000000001,0.14,787,1.3,29,4.2
+2023,5,11,13,30,15,1.24,0.088,0.64,104,956,946,0,8,2.4000000000000004,360,230,0,563,0.334,42.63,28.29,0.9500000000000001,0.14,787,1.3,29,3.9000000000000004
+2023,5,11,14,0,15,1.1500000000000001,0.093,0.64,104,943,899,0,8,2.2,317,298,0,568,0.334,42.02,32.57,0.9500000000000001,0.14,787,1.3,28,3.7
+2023,5,11,14,30,15,1.1500000000000001,0.093,0.64,100,932,840,0,8,2.2,277,89,0,348,0.335,42.02,37.44,0.9500000000000001,0.14,787,1.3,25,3.6
+2023,5,11,15,0,15,1.12,0.08700000000000001,0.64,96,917,770,0,8,1.9000000000000001,181,5,0,185,0.335,41.19,42.69,0.9500000000000001,0.14,787,1.3,22,3.5
+2023,5,11,15,30,14.8,1.12,0.08700000000000001,0.64,91,896,689,0,7,1.9000000000000001,190,9,0,196,0.335,41.72,48.17,0.9500000000000001,0.14,787,1.3,21,3.5
+2023,5,11,16,0,14.600000000000001,1.1,0.083,0.64,84,869,598,0,8,1.7000000000000002,191,20,0,203,0.335,41.54,53.77,0.9400000000000001,0.14,787,1.3,21,3.5
+2023,5,11,16,30,14.200000000000001,1.1,0.083,0.64,78,832,501,0,8,1.7000000000000002,223,129,0,289,0.335,42.63,59.45,0.9400000000000001,0.14,787,1.3,23,3.5
+2023,5,11,17,0,13.8,1.12,0.078,0.64,70,784,400,0,7,1.6,173,116,0,222,0.334,43.660000000000004,65.14,0.9400000000000001,0.14,787,1.3,25,3.5
+2023,5,11,17,30,13,1.12,0.078,0.64,63,715,298,0,7,1.7000000000000002,139,205,0,206,0.333,46.050000000000004,70.8,0.9400000000000001,0.14,788,1.3,30,3.1
+2023,5,11,18,0,12.200000000000001,1.1300000000000001,0.075,0.64,52,615,197,0,8,2.4000000000000004,106,259,0,167,0.332,51.18,76.39,0.9400000000000001,0.14,788,1.3,36,2.7
+2023,5,11,18,30,10.600000000000001,1.1300000000000001,0.075,0.64,39,459,104,4,8,2.4000000000000004,73,130,57,91,0.331,56.88,81.87,0.9400000000000001,0.14,788,1.3,44,2.1
+2023,5,11,19,0,8.9,1.1400000000000001,0.074,0.64,21,202,31,7,8,3.5,23,6,100,23,0.33,68.9,87.14,0.9400000000000001,0.14,788,1.3,51,1.5
+2023,5,11,19,30,8.3,1.1400000000000001,0.074,0.64,0,0,0,1,8,3.5,0,0,14,0,0.329,71.84,92.53,0.9400000000000001,0.14,789,1.3,53,1.5
+2023,5,11,20,0,7.6000000000000005,1.1500000000000001,0.074,0.64,0,0,0,0,8,3.4000000000000004,0,0,0,0,0.328,74.73,97.51,0.9400000000000001,0.14,789,1.3,55,1.4000000000000001
+2023,5,11,20,30,7.2,1.1500000000000001,0.074,0.64,0,0,0,0,8,3.4000000000000004,0,0,0,0,0.328,76.89,102.22,0.9400000000000001,0.14,790,1.3,53,1.4000000000000001
+2023,5,11,21,0,6.7,1.1500000000000001,0.075,0.64,0,0,0,0,8,3.3000000000000003,0,0,0,0,0.327,79.08,106.58,0.9400000000000001,0.14,790,1.3,51,1.3
+2023,5,11,21,30,6.4,1.1500000000000001,0.075,0.64,0,0,0,0,8,3.3000000000000003,0,0,0,0,0.327,80.73,110.54,0.9400000000000001,0.14,790,1.3,45,1.3
+2023,5,11,22,0,6,1.1300000000000001,0.073,0.64,0,0,0,0,8,3.2,0,0,0,0,0.327,81.99,114.01,0.9400000000000001,0.14,790,1.3,39,1.2000000000000002
+2023,5,11,22,30,5.6000000000000005,1.1300000000000001,0.073,0.64,0,0,0,0,5,3.2,0,0,0,0,0.327,84.4,116.9,0.9400000000000001,0.14,791,1.3,30,1.2000000000000002
+2023,5,11,23,0,5.300000000000001,1.11,0.068,0.64,0,0,0,0,5,3,0,0,0,0,0.327,84.83,119.13,0.9400000000000001,0.14,791,1.3,21,1.2000000000000002
+2023,5,11,23,30,5,1.11,0.068,0.64,0,0,0,0,5,3,0,0,0,0,0.327,86.61,120.62,0.93,0.14,791,1.3,16,1.2000000000000002
+2023,5,12,0,0,4.7,1.09,0.065,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.327,87.5,121.32000000000001,0.93,0.14,791,1.3,10,1.2000000000000002
+2023,5,12,0,30,4.4,1.09,0.065,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.327,89.35000000000001,121.19,0.93,0.14,791,1.3,11,1.2000000000000002
+2023,5,12,1,0,4.1000000000000005,1.08,0.063,0.64,0,0,0,0,4,2.8000000000000003,0,0,0,0,0.328,91.11,120.25,0.93,0.14,791,1.2000000000000002,12,1.3
+2023,5,12,1,30,3.8000000000000003,1.08,0.063,0.64,0,0,0,0,4,2.8000000000000003,0,0,0,0,0.328,93.05,118.52,0.93,0.14,791,1.2000000000000002,14,1.3
+2023,5,12,2,0,3.5,1.07,0.062,0.64,0,0,0,0,4,2.8000000000000003,0,0,0,0,0.328,95.51,116.07000000000001,0.93,0.14,791,1.2000000000000002,15,1.3
+2023,5,12,2,30,3.2,1.07,0.062,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.328,97.55,112.99000000000001,0.93,0.14,791,1.2000000000000002,15,1.4000000000000001
+2023,5,12,3,0,2.8000000000000003,1.05,0.06,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.329,100,109.37,0.93,0.14,791,1.2000000000000002,16,1.4000000000000001
+2023,5,12,3,30,2.5,1.05,0.06,0.64,0,0,0,0,4,2.5,0,0,0,0,0.329,100,105.27,0.93,0.14,791,1.2000000000000002,17,1.5
+2023,5,12,4,0,2.2,1.04,0.06,0.64,0,0,0,0,4,2.2,0,0,0,0,0.329,100,100.8,0.93,0.14,792,1.2000000000000002,17,1.5
+2023,5,12,4,30,2.4000000000000004,1.04,0.06,0.64,0,0,0,0,4,2.4000000000000004,0,0,0,0,0.329,100,96,0.93,0.14,792,1.2000000000000002,20,1.6
+2023,5,12,5,0,2.6,1.03,0.06,0.64,6,42,5,3,5,2.6,2,0,43,2,0.33,100,90.95,0.93,0.14,792,1.2000000000000002,22,1.8
+2023,5,12,5,30,4.1000000000000005,1.03,0.06,0.64,27,324,52,7,5,3.3000000000000003,30,1,100,30,0.33,94.32000000000001,85.54,0.93,0.14,792,1.2000000000000002,27,2.7
+2023,5,12,6,0,5.6000000000000005,1.04,0.062,0.64,42,542,134,1,5,3.5,84,50,14,93,0.33,86.34,80.19,0.93,0.14,792,1.1,32,3.7
+2023,5,12,6,30,6.9,1.04,0.062,0.64,53,676,232,0,0,3.5,93,436,0,208,0.33,79.05,74.66,0.93,0.14,793,1.1,34,4.4
+2023,5,12,7,0,8.200000000000001,1.03,0.063,0.64,61,765,335,0,0,3.1,79,663,0,316,0.33,70.23,69.04,0.93,0.14,793,1.1,37,5.1000000000000005
+2023,5,12,7,30,9.3,1.03,0.063,0.64,67,827,438,0,3,3.1,168,339,0,320,0.329,65.21000000000001,63.36,0.93,0.14,793,1.1,36,5.2
+2023,5,12,8,0,10.4,1.02,0.062,0.64,74,872,540,0,3,2.4000000000000004,241,278,0,390,0.329,57.77,57.67,0.93,0.14,793,1.1,35,5.4
+2023,5,12,8,30,11.4,1.02,0.062,0.64,77,906,635,0,4,2.4000000000000004,330,96,0,389,0.328,54.07,52,0.93,0.14,793,1.1,34,5.300000000000001
+2023,5,12,9,0,12.3,0.99,0.062,0.64,82,931,724,0,4,2,348,60,0,389,0.327,49.56,46.410000000000004,0.93,0.14,793,1.1,34,5.300000000000001
+2023,5,12,9,30,13.200000000000001,0.99,0.062,0.64,84,952,803,0,4,2,342,88,0,408,0.327,46.730000000000004,40.980000000000004,0.93,0.14,793,1.1,34,5.2
+2023,5,12,10,0,14.100000000000001,0.96,0.061,0.64,87,967,871,0,4,1.9000000000000001,347,42,0,381,0.326,43.46,35.81,0.92,0.14,793,1.1,33,5.1000000000000005
+2023,5,12,10,30,14.9,0.96,0.061,0.64,88,978,926,0,3,1.9000000000000001,358,40,0,392,0.326,41.28,31.060000000000002,0.92,0.14,793,1.1,33,5
+2023,5,12,11,0,15.700000000000001,0.9500000000000001,0.059000000000000004,0.64,89,986,968,0,4,1.7000000000000002,401,66,0,460,0.325,38.74,26.990000000000002,0.92,0.14,793,1.1,33,4.9
+2023,5,12,11,30,16.3,0.9500000000000001,0.059000000000000004,0.64,90,991,996,0,4,1.7000000000000002,468,268,0,713,0.325,37.29,23.97,0.92,0.14,793,1.1,33,4.800000000000001
+2023,5,12,12,0,16.8,0.9400000000000001,0.06,0.64,91,992,1008,0,3,1.5,429,242,0,653,0.324,35.72,22.44,0.92,0.14,793,1.1,33,4.800000000000001
+2023,5,12,12,30,17.2,0.9400000000000001,0.06,0.64,92,991,1006,0,4,1.5,399,151,0,538,0.324,34.83,22.7,0.92,0.14,793,1.2000000000000002,33,4.7
+2023,5,12,13,0,17.5,0.9400000000000001,0.061,0.64,90,988,988,0,3,1.5,426,297,0,696,0.323,34.08,24.71,0.92,0.14,793,1.2000000000000002,33,4.7
+2023,5,12,13,30,17.6,0.9400000000000001,0.061,0.64,91,980,956,0,5,1.5,424,130,0,539,0.323,33.87,28.080000000000002,0.92,0.14,793,1.2000000000000002,33,4.7
+2023,5,12,14,0,17.6,0.92,0.067,0.64,91,967,908,0,5,1.4000000000000001,384,157,0,517,0.323,33.74,32.38,0.92,0.14,792,1.2000000000000002,33,4.800000000000001
+2023,5,12,14,30,17.5,0.92,0.067,0.64,89,955,849,0,3,1.4000000000000001,267,545,0,701,0.323,33.95,37.27,0.93,0.14,792,1.2000000000000002,33,4.9
+2023,5,12,15,0,17.3,0.9500000000000001,0.067,0.64,87,938,778,0,0,1.3,139,787,0,719,0.323,34.14,42.53,0.93,0.14,792,1.2000000000000002,33,5
+2023,5,12,15,30,16.900000000000002,0.9500000000000001,0.067,0.64,83,917,696,0,0,1.3,228,550,0,596,0.324,35.01,48.01,0.93,0.14,792,1.2000000000000002,34,5
+2023,5,12,16,0,16.6,0.98,0.067,0.64,78,888,605,0,0,1.2000000000000002,132,759,0,582,0.324,35.35,53.620000000000005,0.93,0.14,792,1.2000000000000002,35,5
+2023,5,12,16,30,15.9,0.98,0.067,0.64,74,851,508,0,0,1.2000000000000002,107,766,0,498,0.324,37.01,59.300000000000004,0.93,0.14,793,1.2000000000000002,35,5
+2023,5,12,17,0,15.3,1.01,0.067,0.64,67,801,406,0,0,1.2000000000000002,110,648,0,384,0.324,38.410000000000004,64.99,0.93,0.14,793,1.2000000000000002,36,5
+2023,5,12,17,30,14.4,1.01,0.067,0.64,60,734,303,0,0,1.2000000000000002,63,724,11,303,0.324,40.7,70.65,0.93,0.14,793,1.2000000000000002,38,4.7
+2023,5,12,18,0,13.5,1.03,0.065,0.64,51,635,202,0,0,1.5,51,635,0,202,0.324,44,76.24,0.93,0.14,793,1.2000000000000002,39,4.4
+2023,5,12,18,30,12.200000000000001,1.03,0.065,0.64,38,485,108,0,0,1.5,38,485,0,108,0.324,47.89,81.71000000000001,0.93,0.14,793,1.2000000000000002,40,3.9000000000000004
+2023,5,12,19,0,10.9,1.04,0.061,0.64,21,228,33,4,0,2.1,22,96,50,27,0.325,54.63,86.98,0.93,0.14,794,1.2000000000000002,41,3.4000000000000004
+2023,5,12,19,30,10.200000000000001,1.04,0.061,0.64,0,0,0,0,0,2.1,0,0,0,0,0.325,57.230000000000004,92.36,0.92,0.14,794,1.2000000000000002,42,3.3000000000000003
+2023,5,12,20,0,9.4,1.05,0.056,0.64,0,0,0,0,0,2.5,0,0,0,0,0.325,61.93,97.33,0.92,0.14,794,1.2000000000000002,42,3.3000000000000003
+2023,5,12,20,30,8.8,1.05,0.056,0.64,0,0,0,0,0,2.5,0,0,0,0,0.325,64.48,102.03,0.92,0.14,794,1.2000000000000002,41,3.3000000000000003
+2023,5,12,21,0,8.200000000000001,1.05,0.052000000000000005,0.64,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.325,68.65,106.38,0.91,0.14,794,1.2000000000000002,41,3.3000000000000003
+2023,5,12,21,30,7.7,1.05,0.052000000000000005,0.64,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.326,71.11,110.33,0.91,0.14,795,1.2000000000000002,40,3.3000000000000003
+2023,5,12,22,0,7.1000000000000005,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.326,75,113.78,0.91,0.14,795,1.2000000000000002,39,3.4000000000000004
+2023,5,12,22,30,6.6000000000000005,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.327,77.61,116.67,0.91,0.14,795,1.2000000000000002,39,3.5
+2023,5,12,23,0,6.2,1.04,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.327,80.11,118.89,0.91,0.14,795,1.2000000000000002,38,3.5
+2023,5,12,23,30,5.7,1.04,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.328,82.92,120.38,0.91,0.14,795,1.2000000000000002,38,3.6
+2023,5,13,0,0,5.300000000000001,1.05,0.049,0.64,0,0,0,0,0,3,0,0,14,0,0.329,85.13,121.07000000000001,0.91,0.14,795,1.2000000000000002,37,3.6
+2023,5,13,0,30,4.9,1.05,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.329,87.53,120.94,0.91,0.14,795,1.2000000000000002,37,3.6
+2023,5,13,1,0,4.4,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,90.48,120,0.91,0.14,795,1.2000000000000002,37,3.6
+2023,5,13,1,30,4,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,93.05,118.28,0.91,0.14,795,1.2000000000000002,37,3.5
+2023,5,13,2,0,3.6,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,95.81,115.84,0.91,0.14,795,1.2000000000000002,36,3.3000000000000003
+2023,5,13,2,30,3.3000000000000003,1.06,0.05,0.64,0,0,0,0,0,3,0,0,0,0,0.33,97.85000000000001,112.77,0.91,0.14,795,1.2000000000000002,37,3.2
+2023,5,13,3,0,3,1.07,0.049,0.64,0,0,0,0,0,3,0,0,0,0,0.329,100,109.15,0.91,0.14,795,1.2000000000000002,38,3
+2023,5,13,3,30,2.8000000000000003,1.07,0.049,0.64,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.329,100,105.07000000000001,0.91,0.14,795,1.2000000000000002,41,2.9000000000000004
+2023,5,13,4,0,2.6,1.08,0.05,0.64,0,0,0,0,0,2.6,0,0,29,0,0.328,100,100.61,0.92,0.14,795,1.2000000000000002,44,2.9000000000000004
+2023,5,13,4,30,2.8000000000000003,1.08,0.05,0.64,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.327,100,95.82000000000001,0.92,0.14,795,1.1,43,3.2
+2023,5,13,5,0,3.1,1.09,0.051000000000000004,0.64,5,52,5,0,0,3,5,52,0,5,0.327,99.01,90.28,0.92,0.14,796,1.1,43,3.6
+2023,5,13,5,30,4.2,1.09,0.051000000000000004,0.64,26,360,55,0,0,3,26,360,0,55,0.326,91.64,85.38,0.92,0.14,796,1.1,45,4.2
+2023,5,13,6,0,5.4,1.1,0.05,0.64,40,574,139,0,0,2.6,40,574,0,139,0.326,82.33,80.03,0.92,0.14,796,1.1,47,4.9
+2023,5,13,6,30,6.9,1.1,0.05,0.64,49,703,237,0,0,2.6,49,650,0,223,0.326,74.16,74.51,0.92,0.14,795,1.1,49,5.5
+2023,5,13,7,0,8.4,1.1,0.049,0.64,56,788,340,0,0,1.9000000000000001,69,677,0,313,0.326,63.46,68.89,0.92,0.14,795,1.1,52,6.2
+2023,5,13,7,30,9.8,1.1,0.049,0.64,62,848,444,0,0,1.9000000000000001,106,557,0,357,0.326,57.76,63.21,0.91,0.14,795,1.1,52,6.5
+2023,5,13,8,0,11.100000000000001,1.08,0.047,0.64,67,891,545,0,0,1.5,106,677,0,470,0.327,51.660000000000004,57.52,0.91,0.14,795,1.1,53,6.9
+2023,5,13,8,30,12.3,1.08,0.047,0.64,70,923,640,0,3,1.5,234,452,0,513,0.327,47.74,51.85,0.91,0.14,795,1.1,53,7
+2023,5,13,9,0,13.5,1.08,0.047,0.64,74,947,729,0,0,1.3,179,634,0,617,0.328,43.42,46.25,0.91,0.14,795,1.1,54,7.1000000000000005
+2023,5,13,9,30,14.600000000000001,1.08,0.047,0.64,77,964,807,0,0,1.3,211,582,0,652,0.328,40.44,40.81,0.91,0.14,795,1.1,54,7
+2023,5,13,10,0,15.600000000000001,1.11,0.05,0.64,80,976,873,0,0,1.1,210,663,0,749,0.329,37.33,35.63,0.91,0.14,794,1.2000000000000002,55,6.9
+2023,5,13,10,30,16.400000000000002,1.11,0.05,0.64,81,987,928,0,0,1.1,183,764,0,839,0.329,35.480000000000004,30.87,0.91,0.14,794,1.2000000000000002,55,6.6000000000000005
+2023,5,13,11,0,17.1,1.36,0.049,0.64,83,994,970,0,0,1,218,735,0,874,0.33,33.79,26.78,0.92,0.14,794,1.2000000000000002,55,6.4
+2023,5,13,11,30,17.5,1.36,0.049,0.64,86,994,996,0,0,1,173,848,0,949,0.33,32.95,23.73,0.93,0.14,794,1.2000000000000002,55,6.1000000000000005
+2023,5,13,12,0,17.8,1.41,0.065,0.64,91,988,1006,0,0,1.2000000000000002,142,905,0,980,0.33,32.67,22.19,0.93,0.14,793,1.3,55,5.800000000000001
+2023,5,13,12,30,17.8,1.41,0.065,0.64,94,985,1004,0,0,1.2000000000000002,242,673,0,864,0.33,32.67,22.46,0.9400000000000001,0.14,793,1.3,56,5.6000000000000005
+2023,5,13,13,0,17.8,1.41,0.069,0.64,93,980,985,0,3,1.5,374,439,0,774,0.329,33.38,24.490000000000002,0.9400000000000001,0.14,793,1.3,57,5.300000000000001
+2023,5,13,13,30,17.7,1.41,0.069,0.64,92,973,952,0,3,1.5,378,374,0,709,0.328,33.59,27.88,0.9400000000000001,0.14,793,1.3,59,5.1000000000000005
+2023,5,13,14,0,17.6,1.42,0.07,0.64,91,963,906,0,0,1.7000000000000002,242,658,0,799,0.327,34.43,32.2,0.9400000000000001,0.14,793,1.3,60,4.9
+2023,5,13,14,30,17.3,1.42,0.07,0.64,89,950,847,0,0,1.7000000000000002,128,870,0,822,0.325,35.09,37.1,0.9400000000000001,0.14,793,1.3,59,4.7
+2023,5,13,15,0,17,1.43,0.07100000000000001,0.64,87,933,776,0,0,1.9000000000000001,97,907,0,767,0.324,36.230000000000004,42.37,0.9400000000000001,0.14,793,1.3,58,4.5
+2023,5,13,15,30,16.7,1.43,0.07100000000000001,0.64,82,912,694,0,0,1.9000000000000001,105,859,14,681,0.322,36.92,47.86,0.9400000000000001,0.14,793,1.4000000000000001,56,4.6000000000000005
+2023,5,13,16,0,16.400000000000002,1.43,0.069,0.64,78,885,605,0,7,2.1,156,666,29,552,0.321,38.24,53.480000000000004,0.9400000000000001,0.14,793,1.4000000000000001,54,4.6000000000000005
+2023,5,13,16,30,16,1.43,0.069,0.64,72,851,508,0,7,2.1,224,271,7,363,0.32,39.230000000000004,59.15,0.93,0.14,793,1.4000000000000001,52,4.7
+2023,5,13,17,0,15.600000000000001,1.41,0.063,0.64,65,807,408,0,6,2.6,133,17,0,140,0.319,41.480000000000004,64.84,0.93,0.14,793,1.3,49,4.800000000000001
+2023,5,13,17,30,14.8,1.41,0.063,0.64,58,744,306,0,6,2.5,92,99,0,125,0.318,43.660000000000004,70.5,0.93,0.14,793,1.3,47,4.800000000000001
+2023,5,13,18,0,13.9,1.3800000000000001,0.058,0.64,48,654,205,0,6,3.5,87,22,0,92,0.317,49.45,76.09,0.92,0.14,793,1.3,45,4.7
+2023,5,13,18,30,12.8,1.3800000000000001,0.058,0.64,36,508,111,4,6,3.5,52,9,57,53,0.316,53.18,81.56,0.92,0.14,794,1.3,45,4.800000000000001
+2023,5,13,19,0,11.700000000000001,1.35,0.057,0.64,21,252,35,7,6,3.9000000000000004,16,0,100,16,0.316,58.93,86.83,0.92,0.14,794,1.3,46,4.800000000000001
+2023,5,13,19,30,11.100000000000001,1.35,0.057,0.64,0,0,0,1,6,3.9000000000000004,0,0,14,0,0.315,61.31,92.19,0.92,0.14,794,1.4000000000000001,48,4.9
+2023,5,13,20,0,10.5,1.34,0.059000000000000004,0.64,0,0,0,0,6,4.3,0,0,0,0,0.315,65.67,97.15,0.92,0.14,795,1.4000000000000001,51,5
+2023,5,13,20,30,10.100000000000001,1.34,0.059000000000000004,0.64,0,0,0,0,7,4.3,0,0,0,0,0.315,67.44,101.84,0.93,0.14,795,1.4000000000000001,55,5.1000000000000005
+2023,5,13,21,0,9.8,1.35,0.06,0.64,0,0,0,0,7,4.7,0,0,0,0,0.314,70.45,106.18,0.93,0.14,795,1.4000000000000001,58,5.2
+2023,5,13,21,30,9.3,1.35,0.06,0.64,0,0,0,0,8,4.7,0,0,0,0,0.314,72.85000000000001,110.12,0.92,0.14,795,1.4000000000000001,61,5
+2023,5,13,22,0,8.9,1.37,0.061,0.64,0,0,0,0,8,4.9,0,0,0,0,0.313,76.08,113.56,0.92,0.14,795,1.4000000000000001,64,4.800000000000001
+2023,5,13,22,30,8.6,1.37,0.061,0.64,0,0,0,0,5,4.9,0,0,0,0,0.313,77.64,116.44,0.93,0.14,795,1.4000000000000001,65,4.6000000000000005
+2023,5,13,23,0,8.200000000000001,1.4000000000000001,0.063,0.64,0,0,0,0,3,5,0,0,0,0,0.312,80.32000000000001,118.65,0.93,0.14,795,1.4000000000000001,65,4.4
+2023,5,13,23,30,7.800000000000001,1.4000000000000001,0.063,0.64,0,0,0,0,3,5,0,0,0,0,0.312,82.53,120.14,0.93,0.14,795,1.4000000000000001,63,4.3
+2023,5,14,0,0,7.4,1.42,0.063,0.64,0,0,0,0,0,5,0,0,0,0,0.311,84.55,120.83,0.93,0.14,795,1.3,60,4.2
+2023,5,14,0,30,6.9,1.42,0.063,0.64,0,0,0,0,0,5,0,0,0,0,0.311,87.49,120.7,0.93,0.14,795,1.3,56,4.1000000000000005
+2023,5,14,1,0,6.4,1.43,0.061,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.311,89.75,119.76,0.93,0.14,795,1.3,52,4.1000000000000005
+2023,5,14,1,30,5.9,1.43,0.061,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.311,92.89,118.04,0.93,0.14,795,1.3,50,4
+2023,5,14,2,0,5.4,1.44,0.059000000000000004,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.311,94.87,115.62,0.92,0.14,796,1.3,47,3.9000000000000004
+2023,5,14,2,30,4.9,1.44,0.059000000000000004,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.312,98.22,112.56,0.92,0.14,796,1.4000000000000001,46,3.6
+2023,5,14,3,0,4.4,1.45,0.058,0.64,0,0,0,0,0,4.3,0,0,0,0,0.312,99.59,108.95,0.92,0.14,796,1.4000000000000001,45,3.4000000000000004
+2023,5,14,3,30,4.1000000000000005,1.45,0.058,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.313,100,104.88,0.92,0.14,796,1.4000000000000001,45,3.4000000000000004
+2023,5,14,4,0,3.7,1.44,0.062,0.64,0,0,0,0,0,3.7,0,0,0,0,0.314,100,100.42,0.93,0.14,796,1.4000000000000001,45,3.3000000000000003
+2023,5,14,4,30,3.8000000000000003,1.44,0.062,0.64,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.314,100,95.64,0.93,0.14,797,1.5,47,3.5
+2023,5,14,5,0,3.9000000000000004,1.4000000000000001,0.07,0.64,5,48,5,3,4,3.6,3,7,39,3,0.315,98.16,90.14,0.93,0.14,797,1.5,49,3.7
+2023,5,14,5,30,4.800000000000001,1.4000000000000001,0.07,0.64,28,324,55,7,4,3.6,16,7,96,17,0.315,92.17,85.22,0.9400000000000001,0.14,797,1.5,52,3.6
+2023,5,14,6,0,5.800000000000001,1.36,0.079,0.64,45,519,136,1,4,3.6,32,0,14,32,0.316,85.95,79.87,0.9400000000000001,0.14,797,1.5,56,3.5
+2023,5,14,6,30,7.5,1.36,0.079,0.64,57,644,231,0,4,3.7,25,0,0,25,0.316,76.59,74.36,0.9400000000000001,0.14,798,1.5,55,3.2
+2023,5,14,7,0,9.1,1.35,0.088,0.64,68,725,331,0,4,3.9000000000000004,39,0,0,39,0.316,69.69,68.74,0.9500000000000001,0.14,798,1.5,54,2.8000000000000003
+2023,5,14,7,30,10.8,1.35,0.088,0.64,77,785,433,0,4,3.9000000000000004,53,0,0,53,0.316,62.21,63.07,0.9500000000000001,0.14,798,1.5,55,2.2
+2023,5,14,8,0,12.600000000000001,1.33,0.094,0.64,85,828,531,0,5,3.8000000000000003,123,0,0,123,0.315,55.21,57.370000000000005,0.9500000000000001,0.14,798,1.6,56,1.6
+2023,5,14,8,30,13.700000000000001,1.33,0.094,0.64,91,863,626,0,5,3.9000000000000004,194,22,0,208,0.313,51.39,51.7,0.9500000000000001,0.14,798,1.5,63,1.4000000000000001
+2023,5,14,9,0,14.8,1.31,0.096,0.64,96,890,713,0,8,4.1000000000000005,173,18,0,185,0.311,48.78,46.1,0.9500000000000001,0.14,798,1.5,69,1.3
+2023,5,14,9,30,15.600000000000001,1.31,0.096,0.64,99,912,791,0,7,4.1000000000000005,306,291,0,527,0.31,46.34,40.65,0.9500000000000001,0.14,798,1.5,79,1.3
+2023,5,14,10,0,16.3,1.29,0.095,0.64,102,928,858,0,8,4.2,230,606,0,724,0.308,44.65,35.46,0.9500000000000001,0.14,798,1.5,90,1.4000000000000001
+2023,5,14,10,30,16.900000000000002,1.29,0.095,0.64,104,942,914,0,7,4.2,251,613,0,778,0.306,42.980000000000004,30.68,0.9500000000000001,0.14,798,1.5,102,1.4000000000000001
+2023,5,14,11,0,17.400000000000002,1.32,0.089,0.64,104,953,956,0,7,4.2,238,677,0,844,0.304,41.42,26.57,0.9500000000000001,0.14,798,1.5,115,1.5
+2023,5,14,11,30,17.400000000000002,1.32,0.089,0.64,104,960,984,0,7,4.2,264,624,0,836,0.302,41.42,23.51,0.9500000000000001,0.14,798,1.5,129,1.5
+2023,5,14,12,0,17.400000000000002,1.33,0.08600000000000001,0.64,104,964,998,0,7,3.9000000000000004,423,280,0,683,0.3,40.75,21.95,0.9500000000000001,0.14,798,1.5,144,1.5
+2023,5,14,12,30,17.3,1.33,0.08600000000000001,0.64,103,965,996,0,7,3.9000000000000004,423,296,0,697,0.298,41.01,22.22,0.9500000000000001,0.14,798,1.5,155,1.6
+2023,5,14,13,0,17.3,1.33,0.082,0.64,101,964,980,0,7,3.8000000000000003,422,324,0,717,0.296,40.59,24.26,0.9500000000000001,0.14,798,1.5,165,1.7000000000000002
+2023,5,14,13,30,17.3,1.33,0.082,0.64,97,963,950,0,7,3.8000000000000003,426,280,0,674,0.296,40.59,27.68,0.9500000000000001,0.14,798,1.5,169,1.8
+2023,5,14,14,0,17.3,1.45,0.069,0.64,91,961,906,0,7,3.6,414,160,0,550,0.295,40.17,32.01,0.9500000000000001,0.14,798,1.5,173,1.9000000000000001
+2023,5,14,14,30,17.2,1.45,0.069,0.64,89,950,848,0,0,3.6,159,781,0,783,0.296,40.42,36.93,0.9500000000000001,0.14,798,1.4000000000000001,175,1.9000000000000001
+2023,5,14,15,0,17.2,1.47,0.065,0.64,85,936,778,0,8,3.4000000000000004,261,473,0,611,0.297,39.79,42.21,0.9400000000000001,0.14,798,1.4000000000000001,177,1.8
+2023,5,14,15,30,17,1.47,0.065,0.64,80,918,698,0,7,3.4000000000000004,259,350,11,495,0.298,40.300000000000004,47.71,0.9400000000000001,0.14,798,1.4000000000000001,180,1.6
+2023,5,14,16,0,16.8,1.47,0.062,0.64,76,893,609,0,6,3.1,227,165,11,326,0.299,40.04,53.33,0.9400000000000001,0.14,798,1.4000000000000001,182,1.4000000000000001
+2023,5,14,16,30,16.5,1.47,0.062,0.64,70,860,513,0,6,3.1,126,9,0,131,0.3,40.800000000000004,59.01,0.9400000000000001,0.14,798,1.4000000000000001,177,1
+2023,5,14,17,0,16.2,1.46,0.057,0.64,63,816,412,0,6,3.2,143,50,0,164,0.301,41.88,64.7,0.9400000000000001,0.14,798,1.3,172,0.6000000000000001
+2023,5,14,17,30,15.4,1.46,0.057,0.64,56,755,310,0,6,3.2,96,10,0,99,0.303,44.07,70.35000000000001,0.93,0.14,798,1.3,116,0.5
+2023,5,14,18,0,14.700000000000001,1.42,0.053,0.64,48,668,210,0,6,6.300000000000001,75,143,0,110,0.305,57.18,75.94,0.93,0.14,798,1.3,59,0.5
+2023,5,14,18,30,13.600000000000001,1.42,0.053,0.64,36,527,115,4,6,6.300000000000001,44,108,57,60,0.307,61.39,81.4,0.93,0.14,798,1.3,61,0.7000000000000001
+2023,5,14,19,0,12.5,1.37,0.051000000000000004,0.64,21,275,37,7,6,5.5,20,1,100,20,0.308,62.39,86.67,0.93,0.14,798,1.2000000000000002,64,0.9
+2023,5,14,19,30,11.9,1.37,0.051000000000000004,0.64,0,0,0,2,6,5.5,0,0,29,0,0.31,64.89,92.02,0.93,0.14,798,1.2000000000000002,66,0.9
+2023,5,14,20,0,11.4,1.35,0.05,0.64,0,0,0,0,6,4.9,0,0,0,0,0.311,64.22,96.97,0.92,0.14,799,1.2000000000000002,69,0.9
+2023,5,14,20,30,10.8,1.35,0.05,0.64,0,0,0,0,7,4.9,0,0,0,0,0.312,66.82000000000001,101.65,0.92,0.14,799,1.2000000000000002,72,1
+2023,5,14,21,0,10.3,1.34,0.049,0.64,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.313,67.77,105.99000000000001,0.92,0.14,799,1.2000000000000002,74,1
+2023,5,14,21,30,9.600000000000001,1.34,0.049,0.64,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.313,71.01,109.91,0.92,0.14,799,1.2000000000000002,80,1.1
+2023,5,14,22,0,9,1.33,0.049,0.64,0,0,0,0,7,4.5,0,0,0,0,0.313,73.42,113.35000000000001,0.92,0.14,799,1.2000000000000002,86,1.1
+2023,5,14,22,30,8.5,1.33,0.049,0.64,0,0,0,0,7,4.5,0,0,0,0,0.312,75.94,116.21000000000001,0.92,0.14,799,1.2000000000000002,95,1.2000000000000002
+2023,5,14,23,0,8,1.31,0.05,0.64,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.312,78.94,118.42,0.92,0.14,799,1.2000000000000002,103,1.2000000000000002
+2023,5,14,23,30,7.6000000000000005,1.31,0.05,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.311,81.11,119.9,0.92,0.14,799,1.2000000000000002,111,1.2000000000000002
+2023,5,15,0,0,7.2,1.26,0.052000000000000005,0.64,0,0,0,0,3,4.7,0,0,0,0,0.311,84.29,120.59,0.92,0.14,799,1.2000000000000002,119,1.2000000000000002
+2023,5,15,0,30,6.800000000000001,1.26,0.052000000000000005,0.64,0,0,0,0,8,4.7,0,0,0,0,0.309,86.63,120.46000000000001,0.92,0.14,799,1.3,124,1.2000000000000002
+2023,5,15,1,0,6.5,1.21,0.054,0.64,0,0,0,0,7,4.800000000000001,0,0,0,0,0.308,88.77,119.52,0.93,0.14,799,1.3,129,1.2000000000000002
+2023,5,15,1,30,6.300000000000001,1.21,0.054,0.64,0,0,0,0,6,4.800000000000001,0,0,0,0,0.307,90,117.81,0.93,0.14,799,1.3,131,1.1
+2023,5,15,2,0,6.1000000000000005,1.16,0.059000000000000004,0.64,0,0,0,0,7,4.800000000000001,0,0,0,0,0.305,91.19,115.4,0.93,0.14,799,1.3,133,1
+2023,5,15,2,30,6.1000000000000005,1.16,0.059000000000000004,0.64,0,0,0,0,8,4.800000000000001,0,0,0,0,0.304,91.19,112.34,0.9400000000000001,0.14,799,1.3,136,1
+2023,5,15,3,0,6.1000000000000005,1.1300000000000001,0.066,0.64,0,0,0,0,5,4.7,0,0,0,0,0.303,90.71000000000001,108.75,0.9400000000000001,0.14,799,1.4000000000000001,140,1
+2023,5,15,3,30,6.1000000000000005,1.1300000000000001,0.066,0.64,0,0,0,0,8,4.7,0,0,0,0,0.303,90.71000000000001,104.69,0.9400000000000001,0.14,799,1.4000000000000001,140,0.9
+2023,5,15,4,0,6,1.11,0.07100000000000001,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.303,90.43,100.24000000000001,0.9400000000000001,0.14,799,1.4000000000000001,139,0.9
+2023,5,15,4,30,6,1.11,0.07100000000000001,0.64,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.302,90.43,95.47,0.9400000000000001,0.14,799,1.4000000000000001,138,0.9
+2023,5,15,5,0,6,1.08,0.075,0.64,6,43,6,0,0,4.5,5,36,4,5,0.302,89.89,90,0.9400000000000001,0.14,799,1.4000000000000001,136,0.9
+2023,5,15,5,30,7.2,1.08,0.075,0.64,30,312,57,5,3,4.5,32,68,75,38,0.301,82.78,85.07000000000001,0.9400000000000001,0.14,799,1.4000000000000001,139,1.1
+2023,5,15,6,0,8.3,1.08,0.078,0.64,47,518,139,1,0,4.5,53,456,11,134,0.301,77.18,79.72,0.9400000000000001,0.14,799,1.4000000000000001,143,1.3
+2023,5,15,6,30,10.3,1.08,0.078,0.64,58,650,235,0,0,4.5,58,650,0,235,0.301,67.49,74.21000000000001,0.9400000000000001,0.14,799,1.4000000000000001,174,1.2000000000000002
+2023,5,15,7,0,12.200000000000001,1.08,0.077,0.64,66,739,336,0,0,4.7,66,739,14,336,0.301,60.01,68.60000000000001,0.9400000000000001,0.14,799,1.4000000000000001,206,1.1
+2023,5,15,7,30,14,1.08,0.077,0.64,74,803,439,0,0,4.7,74,803,0,439,0.301,53.44,62.93,0.9400000000000001,0.14,800,1.4000000000000001,212,1.6
+2023,5,15,8,0,15.8,1.08,0.073,0.64,78,852,539,0,0,4.4,78,852,0,539,0.302,46.49,57.230000000000004,0.93,0.14,800,1.4000000000000001,217,2.1
+2023,5,15,8,30,16.7,1.08,0.073,0.64,82,886,633,0,0,4.4,82,886,0,633,0.301,43.910000000000004,51.56,0.93,0.14,800,1.4000000000000001,219,2.5
+2023,5,15,9,0,17.7,1.06,0.07200000000000001,0.64,86,913,721,0,0,4.5,86,913,0,721,0.301,41.57,45.95,0.93,0.14,800,1.4000000000000001,220,2.8000000000000003
+2023,5,15,9,30,18.3,1.06,0.07200000000000001,0.64,90,933,799,0,0,4.5,90,933,0,799,0.3,39.99,40.5,0.93,0.14,799,1.4000000000000001,224,3.2
+2023,5,15,10,0,18.900000000000002,1.05,0.07200000000000001,0.64,92,948,866,0,0,4.7,92,948,0,866,0.299,39.15,35.29,0.93,0.14,799,1.4000000000000001,227,3.5
+2023,5,15,10,30,19.200000000000003,1.05,0.07200000000000001,0.64,88,970,924,0,0,4.7,88,970,0,924,0.298,38.43,30.5,0.93,0.14,799,1.4000000000000001,228,3.6
+2023,5,15,11,0,19.5,1.28,0.045,0.64,80,992,969,0,0,4.7,150,878,0,937,0.298,37.69,26.37,0.93,0.14,799,1.4000000000000001,230,3.6
+2023,5,15,11,30,19.700000000000003,1.28,0.045,0.64,81,997,997,0,0,4.7,210,792,0,938,0.297,37.230000000000004,23.28,0.93,0.14,799,1.4000000000000001,230,3.6
+2023,5,15,12,0,20,1.3,0.045,0.64,82,999,1010,0,0,4.4,215,773,0,933,0.296,35.89,21.71,0.93,0.14,799,1.4000000000000001,230,3.5
+2023,5,15,12,30,20.3,1.3,0.045,0.64,83,997,1007,0,0,4.4,126,907,0,967,0.295,35.230000000000004,21.990000000000002,0.93,0.14,799,1.4000000000000001,230,3.3000000000000003
+2023,5,15,13,0,20.5,1.3,0.048,0.64,82,993,989,0,0,4,149,833,0,910,0.295,33.74,24.05,0.93,0.14,799,1.4000000000000001,230,3.1
+2023,5,15,13,30,20.5,1.3,0.048,0.64,81,987,957,0,0,4,133,856,0,892,0.294,33.74,27.48,0.9400000000000001,0.14,799,1.4000000000000001,229,2.8000000000000003
+2023,5,15,14,0,20.6,1.33,0.047,0.64,80,979,912,0,0,3.6,220,604,0,733,0.293,32.58,31.830000000000002,0.9400000000000001,0.14,798,1.4000000000000001,229,2.6
+2023,5,15,14,30,20.5,1.33,0.047,0.64,78,968,853,0,3,3.6,262,541,0,695,0.292,32.78,36.77,0.9400000000000001,0.14,798,1.4000000000000001,231,2.3000000000000003
+2023,5,15,15,0,20.400000000000002,1.32,0.047,0.64,76,952,783,0,8,3.2,322,189,0,462,0.291,32.15,42.06,0.9400000000000001,0.14,798,1.4000000000000001,233,2.1
+2023,5,15,15,30,20.1,1.32,0.047,0.64,72,933,702,0,7,3.2,216,53,0,252,0.291,32.75,47.56,0.9400000000000001,0.14,798,1.5,240,1.9000000000000001
+2023,5,15,16,0,19.900000000000002,1.32,0.046,0.64,69,907,612,0,7,3,157,12,0,164,0.291,32.56,53.19,0.9400000000000001,0.14,797,1.5,248,1.7000000000000002
+2023,5,15,16,30,19.400000000000002,1.32,0.046,0.64,65,873,516,0,8,3,203,80,0,244,0.29,33.59,58.870000000000005,0.9400000000000001,0.14,797,1.5,257,1.7000000000000002
+2023,5,15,17,0,19,1.32,0.047,0.64,61,827,416,0,7,3,164,107,0,210,0.29,34.58,64.55,0.9400000000000001,0.14,797,1.5,267,1.6
+2023,5,15,17,30,18.1,1.32,0.047,0.64,54,764,313,0,8,3,124,95,0,156,0.29,36.58,70.21000000000001,0.9400000000000001,0.14,797,1.5,276,1.4000000000000001
+2023,5,15,18,0,17.2,1.31,0.049,0.64,47,671,212,0,5,5.9,117,69,0,134,0.29,47.24,75.79,0.9400000000000001,0.14,797,1.5,284,1.1
+2023,5,15,18,30,15.700000000000001,1.31,0.049,0.64,37,527,117,4,3,5.9,57,93,54,71,0.29,51.96,81.25,0.9400000000000001,0.14,797,1.5,291,1
+2023,5,15,19,0,14.200000000000001,1.28,0.053,0.64,22,276,39,7,5,6.2,22,0,100,22,0.29,58.74,86.52,0.9400000000000001,0.14,797,1.5,299,1
+2023,5,15,19,30,13.5,1.28,0.053,0.64,0,5,0,2,3,6.300000000000001,0,0,29,0,0.29,61.54,91.85000000000001,0.9400000000000001,0.14,798,1.5,304,1
+2023,5,15,20,0,12.8,1.26,0.056,0.64,0,0,0,0,3,5.800000000000001,0,0,0,0,0.29,62.45,96.8,0.9400000000000001,0.14,798,1.5,309,1
+2023,5,15,20,30,12.3,1.26,0.056,0.64,0,0,0,0,5,5.800000000000001,0,0,0,0,0.29,64.53,101.47,0.9400000000000001,0.14,798,1.5,311,1
+2023,5,15,21,0,11.8,1.24,0.058,0.64,0,0,0,0,0,5.800000000000001,0,0,0,0,0.29,66.52,105.79,0.9400000000000001,0.14,798,1.5,313,1
+2023,5,15,21,30,11.3,1.24,0.058,0.64,0,0,0,0,0,5.800000000000001,0,0,0,0,0.29,68.75,109.71000000000001,0.9400000000000001,0.14,798,1.5,313,1
+2023,5,15,22,0,10.8,1.22,0.058,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.289,70.39,113.14,0.9400000000000001,0.14,798,1.5,313,0.9
+2023,5,15,22,30,10.4,1.22,0.058,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.289,72.2,115.99000000000001,0.9400000000000001,0.14,797,1.5,309,0.9
+2023,5,15,23,0,10,1.2,0.058,0.64,0,0,0,0,0,5.5,0,0,0,0,0.289,73.59,118.19,0.9400000000000001,0.14,797,1.4000000000000001,306,0.9
+2023,5,15,23,30,9.600000000000001,1.2,0.058,0.64,0,0,0,0,0,5.5,0,0,0,0,0.289,75.58,119.67,0.93,0.14,797,1.4000000000000001,301,0.9
+2023,5,16,0,0,9.3,1.17,0.058,0.64,0,0,0,0,0,5.4,0,0,0,0,0.289,76.77,120.35000000000001,0.93,0.14,797,1.3,296,0.9
+2023,5,16,0,30,9,1.17,0.058,0.64,0,0,0,0,0,5.4,0,0,0,0,0.289,78.33,120.23,0.93,0.14,797,1.3,291,0.9
+2023,5,16,1,0,8.700000000000001,1.1500000000000001,0.058,0.64,0,0,0,0,0,5.300000000000001,0,0,0,0,0.289,79.13,119.3,0.93,0.14,797,1.3,286,0.9
+2023,5,16,1,30,8.6,1.1500000000000001,0.058,0.64,0,0,0,0,0,5.300000000000001,0,0,0,0,0.29,79.57000000000001,117.59,0.93,0.14,796,1.2000000000000002,284,0.9
+2023,5,16,2,0,8.4,1.1400000000000001,0.06,0.64,0,0,0,0,0,5,0,0,0,0,0.29,79.38,115.18,0.93,0.14,796,1.2000000000000002,282,0.9
+2023,5,16,2,30,8.3,1.1400000000000001,0.06,0.64,0,0,0,0,0,5,0,0,0,0,0.291,79.92,112.14,0.93,0.14,796,1.2000000000000002,283,0.8
+2023,5,16,3,0,8.200000000000001,1.1400000000000001,0.064,0.64,0,0,0,0,0,4.7,0,0,0,0,0.291,78.72,108.55,0.93,0.14,796,1.2000000000000002,284,0.7000000000000001
+2023,5,16,3,30,8,1.1400000000000001,0.064,0.64,0,0,0,0,0,4.7,0,0,0,0,0.292,79.79,104.5,0.93,0.14,796,1.2000000000000002,287,0.6000000000000001
+2023,5,16,4,0,7.9,1.16,0.07,0.64,0,0,0,0,0,4.4,0,0,0,0,0.293,78.5,100.06,0.93,0.14,797,1.2000000000000002,290,0.6000000000000001
+2023,5,16,4,30,7.9,1.16,0.07,0.64,0,0,0,0,0,4.4,0,0,0,0,0.293,78.5,95.3,0.93,0.14,797,1.2000000000000002,297,0.5
+2023,5,16,5,0,7.9,1.18,0.079,0.64,6,46,6,0,0,4.3,6,46,0,6,0.294,77.81,89.86,0.9400000000000001,0.14,797,1.2000000000000002,304,0.4
+2023,5,16,5,30,9.200000000000001,1.18,0.079,0.64,31,314,59,2,0,4.3,30,187,21,47,0.294,71.27,84.92,0.9400000000000001,0.14,797,1.2000000000000002,312,0.4
+2023,5,16,6,0,10.5,1.19,0.093,0.64,48,506,140,1,4,4.6000000000000005,61,4,14,62,0.295,66.86,79.58,0.9400000000000001,0.14,797,1.3,319,0.4
+2023,5,16,6,30,12.4,1.19,0.093,0.64,63,626,235,0,0,4.6000000000000005,105,372,0,207,0.295,58.980000000000004,74.07000000000001,0.9500000000000001,0.14,797,1.3,307,0.6000000000000001
+2023,5,16,7,0,14.3,1.18,0.111,0.64,78,701,335,0,0,4,81,689,0,334,0.296,50.02,68.46000000000001,0.9500000000000001,0.14,797,1.3,295,0.8
+2023,5,16,7,30,16,1.18,0.111,0.64,88,761,436,0,0,4,88,761,0,436,0.296,44.86,62.79,0.9500000000000001,0.14,797,1.4000000000000001,292,1.2000000000000002
+2023,5,16,8,0,17.7,1.17,0.121,0.64,98,803,534,0,0,3.1,98,803,0,534,0.295,37.61,57.1,0.9500000000000001,0.14,797,1.4000000000000001,289,1.6
+2023,5,16,8,30,18.6,1.17,0.121,0.64,102,843,628,0,0,3.1,123,784,0,612,0.294,35.550000000000004,51.42,0.9500000000000001,0.14,797,1.4000000000000001,283,1.8
+2023,5,16,9,0,19.5,1.17,0.115,0.64,106,875,716,0,0,2.6,195,674,0,665,0.293,32.59,45.81,0.9500000000000001,0.14,797,1.4000000000000001,276,2
+2023,5,16,9,30,20.200000000000003,1.17,0.115,0.64,109,900,795,0,0,2.6,153,815,0,774,0.292,31.17,40.35,0.9500000000000001,0.14,796,1.4000000000000001,272,2.2
+2023,5,16,10,0,20.8,1.16,0.106,0.64,109,921,862,0,5,2.6,356,473,0,743,0.291,29.94,35.13,0.9400000000000001,0.14,796,1.4000000000000001,267,2.4000000000000004
+2023,5,16,10,30,21.3,1.16,0.106,0.64,103,948,921,0,0,2.6,169,823,0,879,0.289,29.03,30.32,0.9400000000000001,0.14,796,1.4000000000000001,267,2.6
+2023,5,16,11,0,21.8,1.45,0.067,0.64,92,975,967,0,0,2.6,92,975,0,967,0.28800000000000003,28.240000000000002,26.17,0.9400000000000001,0.14,796,1.4000000000000001,266,2.8000000000000003
+2023,5,16,11,30,22.1,1.45,0.067,0.64,93,980,995,0,0,2.6,193,575,0,722,0.28600000000000003,27.7,23.07,0.9400000000000001,0.14,795,1.4000000000000001,267,2.9000000000000004
+2023,5,16,12,0,22.400000000000002,1.44,0.067,0.64,93,982,1007,0,8,2.6,225,23,0,246,0.28400000000000003,27.150000000000002,21.48,0.9400000000000001,0.14,795,1.4000000000000001,267,3
+2023,5,16,12,30,22.6,1.44,0.067,0.64,95,980,1005,0,8,2.6,275,247,0,504,0.28300000000000003,26.830000000000002,21.76,0.9400000000000001,0.14,795,1.4000000000000001,268,3.1
+2023,5,16,13,0,22.8,1.44,0.07100000000000001,0.64,95,975,987,0,8,2.5,282,88,0,362,0.281,26.400000000000002,23.830000000000002,0.9400000000000001,0.14,794,1.4000000000000001,268,3.1
+2023,5,16,13,30,22.8,1.44,0.07100000000000001,0.64,92,971,955,0,8,2.5,245,336,7,544,0.28,26.400000000000002,27.29,0.9400000000000001,0.14,794,1.4000000000000001,270,3.1
+2023,5,16,14,0,22.900000000000002,1.56,0.067,0.64,89,964,910,0,3,2.4000000000000004,297,506,0,728,0.28,26,31.66,0.9500000000000001,0.14,794,1.5,271,3
+2023,5,16,14,30,22.700000000000003,1.56,0.067,0.64,89,949,851,0,0,2.4000000000000004,185,739,0,778,0.28,26.32,36.61,0.9500000000000001,0.14,794,1.5,272,2.9000000000000004
+2023,5,16,15,0,22.6,1.52,0.074,0.64,88,930,780,0,0,2.1,275,536,0,674,0.28,25.97,41.910000000000004,0.9500000000000001,0.14,793,1.5,274,2.8000000000000003
+2023,5,16,15,30,22.200000000000003,1.52,0.074,0.64,86,906,699,0,5,2.1,327,183,0,451,0.28,26.6,47.42,0.9500000000000001,0.14,793,1.5,276,2.7
+2023,5,16,16,0,21.900000000000002,1.48,0.079,0.64,83,875,609,0,8,1.9000000000000001,263,367,14,484,0.28,26.64,53.04,0.9500000000000001,0.14,793,1.5,278,2.6
+2023,5,16,16,30,21.400000000000002,1.48,0.079,0.64,78,838,513,0,7,1.9000000000000001,224,127,0,290,0.281,27.46,58.730000000000004,0.9500000000000001,0.14,793,1.5,281,2.4000000000000004
+2023,5,16,17,0,20.900000000000002,1.45,0.08,0.64,72,789,413,0,7,1.8,129,289,4,254,0.281,28.11,64.41,0.9500000000000001,0.14,793,1.4000000000000001,285,2.2
+2023,5,16,17,30,19.8,1.45,0.08,0.64,64,724,311,0,8,1.8,149,257,7,237,0.281,30.080000000000002,70.06,0.9500000000000001,0.14,793,1.4000000000000001,289,1.5
+2023,5,16,18,0,18.8,1.42,0.078,0.64,55,631,211,0,5,6,117,189,7,164,0.28200000000000003,43.14,75.64,0.9500000000000001,0.14,793,1.4000000000000001,293,0.9
+2023,5,16,18,30,17.7,1.42,0.078,0.64,42,490,118,3,5,6,65,102,43,81,0.28300000000000003,46.21,81.10000000000001,0.9500000000000001,0.14,793,1.4000000000000001,300,0.8
+2023,5,16,19,0,16.7,1.3800000000000001,0.075,0.64,25,265,42,6,3,5.4,28,18,93,29,0.28300000000000003,47.1,86.36,0.9500000000000001,0.14,793,1.3,307,0.7000000000000001
+2023,5,16,19,30,16.1,1.3800000000000001,0.075,0.64,3,17,2,2,5,5.4,1,0,29,1,0.28400000000000003,48.93,91.69,0.9400000000000001,0.14,793,1.3,318,0.7000000000000001
+2023,5,16,20,0,15.5,1.35,0.074,0.64,0,0,0,0,3,4.2,0,0,0,0,0.28500000000000003,46.95,96.63,0.9400000000000001,0.14,793,1.3,330,0.7000000000000001
+2023,5,16,20,30,14.8,1.35,0.074,0.64,0,0,0,0,3,4.2,0,0,0,0,0.28600000000000003,49.1,101.29,0.9400000000000001,0.14,793,1.3,341,0.6000000000000001
+2023,5,16,21,0,14.100000000000001,1.34,0.075,0.64,0,0,0,0,0,4.2,0,0,0,0,0.28700000000000003,51.370000000000005,105.60000000000001,0.9400000000000001,0.14,793,1.3,351,0.6000000000000001
+2023,5,16,21,30,13.4,1.34,0.075,0.64,0,0,0,0,0,4.2,0,0,0,0,0.28700000000000003,53.76,109.51,0.9400000000000001,0.14,793,1.3,179,0.7000000000000001
+2023,5,16,22,0,12.700000000000001,1.34,0.074,0.64,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.28800000000000003,55.22,112.93,0.9400000000000001,0.14,793,1.3,7,0.8
+2023,5,16,22,30,12.200000000000001,1.34,0.074,0.64,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.28800000000000003,57.06,115.78,0.9400000000000001,0.14,793,1.3,11,0.9
+2023,5,16,23,0,11.600000000000001,1.34,0.07200000000000001,0.64,0,0,0,0,0,3.7,0,0,0,0,0.28800000000000003,58.44,117.97,0.9400000000000001,0.14,793,1.3,15,1.1
+2023,5,16,23,30,11.200000000000001,1.34,0.07200000000000001,0.64,0,0,0,0,0,3.7,0,0,0,0,0.28800000000000003,60,119.44,0.9400000000000001,0.14,793,1.3,16,1.1
+2023,5,17,0,0,10.700000000000001,1.34,0.07200000000000001,0.64,0,0,0,0,0,3.7,0,0,0,0,0.28800000000000003,61.980000000000004,120.12,0.9400000000000001,0.14,793,1.3,17,1.2000000000000002
+2023,5,17,0,30,10.3,1.34,0.07200000000000001,0.64,0,0,0,0,0,3.7,0,0,0,0,0.28800000000000003,63.65,120,0.9400000000000001,0.14,793,1.3,17,1.2000000000000002
+2023,5,17,1,0,9.9,1.33,0.075,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,65.75,119.07000000000001,0.9400000000000001,0.14,793,1.3,17,1.2000000000000002
+2023,5,17,1,30,9.600000000000001,1.33,0.075,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,67.09,117.37,0.9400000000000001,0.14,793,1.3,16,1.1
+2023,5,17,2,0,9.3,1.34,0.077,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,68.44,114.97,0.9400000000000001,0.14,793,1.3,15,1.1
+2023,5,17,2,30,8.9,1.34,0.077,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,70.31,111.94,0.9400000000000001,0.14,793,1.3,15,1.1
+2023,5,17,3,0,8.6,1.33,0.084,0.64,0,0,0,0,0,3.6,0,0,0,0,0.28800000000000003,70.93,108.36,0.9400000000000001,0.14,793,1.3,15,1.2000000000000002
+2023,5,17,3,30,8.200000000000001,1.33,0.084,0.64,0,0,0,0,0,3.6,0,0,0,0,0.28800000000000003,72.88,104.32000000000001,0.9500000000000001,0.14,793,1.3,18,1.2000000000000002
+2023,5,17,4,0,7.7,1.3,0.091,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28700000000000003,73.67,99.89,0.9500000000000001,0.14,793,1.3,21,1.2000000000000002
+2023,5,17,4,30,7.9,1.3,0.091,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28800000000000003,72.68,95.14,0.9500000000000001,0.14,793,1.2000000000000002,23,1.3
+2023,5,17,5,0,8.1,1.29,0.091,0.64,8,58,8,0,0,3.4000000000000004,8,58,0,8,0.28800000000000003,72.45,89.73,0.9500000000000001,0.14,793,1.2000000000000002,25,1.4000000000000001
+2023,5,17,5,30,9.4,1.29,0.091,0.64,32,316,61,0,0,3.4000000000000004,32,316,0,61,0.289,66.37,84.78,0.9500000000000001,0.14,793,1.2000000000000002,27,2
+2023,5,17,6,0,10.8,1.28,0.093,0.64,50,514,144,0,0,3.3000000000000003,48,318,0,106,0.29,59.96,79.44,0.9500000000000001,0.14,793,1.2000000000000002,29,2.6
+2023,5,17,6,30,12.4,1.28,0.093,0.64,61,646,240,0,3,3.3000000000000003,102,351,0,199,0.29,53.96,73.94,0.9400000000000001,0.14,793,1.2000000000000002,30,2.6
+2023,5,17,7,0,14,1.3,0.091,0.64,71,735,342,0,8,2.9000000000000004,178,261,0,274,0.291,47.12,68.33,0.9400000000000001,0.14,793,1.2000000000000002,31,2.7
+2023,5,17,7,30,16,1.3,0.091,0.64,77,801,445,0,5,2.9000000000000004,254,100,0,300,0.292,41.45,62.660000000000004,0.9400000000000001,0.14,793,1.2000000000000002,26,2.9000000000000004
+2023,5,17,8,0,17.900000000000002,1.32,0.085,0.64,82,851,546,0,5,0.5,287,179,7,385,0.292,31.02,56.97,0.9400000000000001,0.14,793,1.2000000000000002,22,3.1
+2023,5,17,8,30,18.8,1.32,0.085,0.64,87,886,641,0,0,0.5,186,643,7,588,0.292,29.28,51.29,0.9400000000000001,0.14,792,1.2000000000000002,19,2.8000000000000003
+2023,5,17,9,0,19.700000000000003,1.33,0.084,0.64,90,913,728,0,0,0.30000000000000004,90,913,0,728,0.293,27.3,45.68,0.9400000000000001,0.14,792,1.2000000000000002,17,2.5
+2023,5,17,9,30,20.3,1.33,0.084,0.64,97,929,806,0,0,0.30000000000000004,97,929,0,806,0.293,26.310000000000002,40.21,0.9400000000000001,0.14,792,1.2000000000000002,12,2.3000000000000003
+2023,5,17,10,0,21,1.32,0.094,0.64,103,940,873,0,0,0.4,103,940,0,873,0.293,25.36,34.980000000000004,0.9500000000000001,0.14,792,1.2000000000000002,7,2
+2023,5,17,10,30,21.400000000000002,1.32,0.094,0.64,101,958,929,0,0,0.4,101,958,0,929,0.293,24.72,30.150000000000002,0.9500000000000001,0.14,791,1.2000000000000002,176,1.8
+2023,5,17,11,0,21.8,1.6,0.077,0.64,96,974,972,0,0,0.4,96,974,0,972,0.293,24.16,25.98,0.9500000000000001,0.14,791,1.2000000000000002,345,1.7000000000000002
+2023,5,17,11,30,22,1.6,0.077,0.64,98,978,999,0,0,0.4,160,882,0,973,0.294,23.87,22.86,0.9500000000000001,0.14,791,1.3,332,1.7000000000000002
+2023,5,17,12,0,22.200000000000003,1.59,0.078,0.64,99,980,1012,0,0,0.4,110,962,0,1007,0.294,23.59,21.26,0.9500000000000001,0.14,790,1.3,320,1.8
+2023,5,17,12,30,22.200000000000003,1.59,0.078,0.64,98,978,1008,0,0,0.4,237,701,0,889,0.294,23.59,21.54,0.9500000000000001,0.14,790,1.3,313,2
+2023,5,17,13,0,22.200000000000003,1.58,0.08,0.64,99,973,990,0,8,0.6000000000000001,330,474,0,764,0.295,23.81,23.62,0.9500000000000001,0.14,790,1.3,306,2.1
+2023,5,17,13,30,22,1.58,0.08,0.64,101,962,957,0,8,0.6000000000000001,334,461,0,744,0.295,24.1,27.09,0.9500000000000001,0.14,790,1.3,304,2.2
+2023,5,17,14,0,21.8,1.3800000000000001,0.093,0.64,103,945,909,0,8,0.8,306,427,0,670,0.295,24.8,31.490000000000002,0.9500000000000001,0.14,789,1.4000000000000001,301,2.3000000000000003
+2023,5,17,14,30,21.5,1.3800000000000001,0.093,0.64,101,931,850,0,8,0.8,327,92,0,401,0.295,25.26,36.45,0.9500000000000001,0.14,789,1.4000000000000001,302,2.5
+2023,5,17,15,0,21.200000000000003,1.3800000000000001,0.094,0.64,98,912,778,0,7,1.1,297,371,0,574,0.296,26.38,41.76,0.9500000000000001,0.14,789,1.4000000000000001,302,2.7
+2023,5,17,15,30,20.6,1.3800000000000001,0.094,0.64,94,888,697,0,8,1.1,258,463,7,572,0.296,27.37,47.27,0.9500000000000001,0.14,789,1.5,305,3
+2023,5,17,16,0,20,1.3900000000000001,0.097,0.64,91,856,607,0,8,1.8,198,610,0,566,0.296,29.84,52.9,0.9500000000000001,0.14,789,1.5,308,3.3000000000000003
+2023,5,17,16,30,19.1,1.3900000000000001,0.097,0.64,85,815,510,0,8,1.8,193,483,11,445,0.296,31.55,58.59,0.9500000000000001,0.14,789,1.5,313,3.5
+2023,5,17,17,0,18.2,1.3900000000000001,0.1,0.64,78,762,409,0,3,2.8000000000000003,106,626,32,378,0.296,35.9,64.27,0.96,0.14,789,1.6,318,3.7
+2023,5,17,17,30,17.2,1.3900000000000001,0.1,0.64,70,693,308,0,8,2.8000000000000003,115,486,36,282,0.296,38.22,69.92,0.9500000000000001,0.14,789,1.6,325,3.6
+2023,5,17,18,0,16.1,1.3900000000000001,0.098,0.64,59,596,208,0,8,4.4,79,451,71,192,0.296,45.72,75.5,0.9500000000000001,0.14,790,1.6,333,3.5
+2023,5,17,18,30,15,1.3900000000000001,0.098,0.64,44,456,116,5,8,4.4,72,120,82,91,0.296,49.04,80.95,0.9500000000000001,0.14,790,1.6,341,2.8000000000000003
+2023,5,17,19,0,13.9,1.4000000000000001,0.091,0.64,26,241,42,7,8,5.6000000000000005,31,7,100,31,0.296,57.32,86.21000000000001,0.9500000000000001,0.14,790,1.6,350,2.2
+2023,5,17,19,30,13.200000000000001,1.4000000000000001,0.091,0.64,2,15,2,2,5,5.6000000000000005,1,0,29,1,0.297,59.980000000000004,91.53,0.9500000000000001,0.14,790,1.6,184,1.7000000000000002
+2023,5,17,20,0,12.600000000000001,1.42,0.081,0.64,0,0,0,0,3,6.2,0,0,0,0,0.297,65.21000000000001,96.46000000000001,0.9400000000000001,0.14,790,1.5,18,1.3
+2023,5,17,20,30,12.100000000000001,1.42,0.081,0.64,0,0,0,0,0,6.2,0,0,0,0,0.297,67.38,101.11,0.9400000000000001,0.14,790,1.5,30,1.1
+2023,5,17,21,0,11.600000000000001,1.43,0.068,0.64,0,0,0,0,0,6,0,0,0,0,0.297,68.59,105.42,0.93,0.14,790,1.4000000000000001,42,0.9
+2023,5,17,21,30,11.200000000000001,1.43,0.068,0.64,0,0,0,0,5,6,0,0,0,0,0.297,70.43,109.31,0.93,0.14,790,1.4000000000000001,56,0.8
+2023,5,17,22,0,10.8,1.42,0.058,0.64,0,0,0,0,3,5.6000000000000005,0,0,0,0,0.297,70.2,112.72,0.92,0.14,790,1.4000000000000001,69,0.7000000000000001
+2023,5,17,22,30,10.4,1.42,0.058,0.64,0,0,0,0,3,5.6000000000000005,0,0,0,0,0.297,72.09,115.56,0.92,0.14,790,1.3,88,0.7000000000000001
+2023,5,17,23,0,9.9,1.4000000000000001,0.053,0.64,0,0,0,0,0,5.4,0,0,0,0,0.297,73.45,117.75,0.92,0.14,790,1.3,106,0.6000000000000001
+2023,5,17,23,30,9.5,1.4000000000000001,0.053,0.64,0,0,0,0,0,5.4,0,0,0,0,0.296,75.44,119.22,0.92,0.14,790,1.2000000000000002,119,0.6000000000000001
+2023,5,18,0,0,9.1,1.37,0.051000000000000004,0.64,0,0,0,0,0,5.2,0,0,0,0,0.296,76.79,119.9,0.92,0.14,790,1.2000000000000002,132,0.6000000000000001
+2023,5,18,0,30,8.8,1.37,0.051000000000000004,0.64,0,0,0,0,0,5.2,0,0,0,0,0.296,78.36,119.78,0.92,0.14,790,1.2000000000000002,144,0.5
+2023,5,18,1,0,8.5,1.35,0.053,0.64,0,0,0,0,3,5.1000000000000005,0,0,0,0,0.296,79.15,118.85000000000001,0.92,0.14,790,1.2000000000000002,155,0.4
+2023,5,18,1,30,8.5,1.35,0.053,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.296,79.15,117.16,0.92,0.14,790,1.2000000000000002,191,0.30000000000000004
+2023,5,18,2,0,8.5,1.33,0.056,0.64,0,0,0,0,0,4.9,0,0,0,0,0.296,78.02,114.77,0.92,0.14,790,1.2000000000000002,228,0.1
+2023,5,18,2,30,8.3,1.33,0.056,0.64,0,0,0,0,0,4.9,0,0,0,0,0.297,79.09,111.75,0.92,0.14,790,1.2000000000000002,288,0.30000000000000004
+2023,5,18,3,0,8.1,1.31,0.06,0.64,0,0,0,0,0,4.7,0,0,0,0,0.297,78.93,108.18,0.93,0.14,790,1.2000000000000002,348,0.4
+2023,5,18,3,30,7.800000000000001,1.31,0.06,0.64,0,0,0,0,0,4.7,0,0,0,0,0.298,80.55,104.15,0.93,0.14,790,1.2000000000000002,354,0.5
+2023,5,18,4,0,7.5,1.3,0.064,0.64,0,0,0,0,0,4.5,0,0,0,0,0.298,81.18,99.73,0.93,0.14,790,1.2000000000000002,360,0.6000000000000001
+2023,5,18,4,30,7.5,1.3,0.064,0.64,0,0,0,0,0,4.5,0,0,0,0,0.298,81.18,94.99,0.93,0.14,790,1.3,183,0.7000000000000001
+2023,5,18,5,0,7.4,1.3,0.068,0.64,8,76,9,2,0,4.6000000000000005,7,39,29,7,0.299,82.32000000000001,89.60000000000001,0.93,0.14,790,1.3,7,0.7000000000000001
+2023,5,18,5,30,8.700000000000001,1.3,0.068,0.64,30,359,64,2,0,4.6000000000000005,32,165,36,47,0.299,75.37,84.64,0.93,0.14,790,1.3,6,1.2000000000000002
+2023,5,18,6,0,10,1.32,0.073,0.64,45,549,147,0,0,4.7,65,323,0,125,0.3,69.72,79.31,0.93,0.14,790,1.3,6,1.7000000000000002
+2023,5,18,6,30,11.8,1.32,0.073,0.64,56,670,243,0,0,4.7,76,536,0,225,0.301,61.96,73.81,0.93,0.14,791,1.4000000000000001,4,2
+2023,5,18,7,0,13.5,1.34,0.076,0.64,65,751,344,0,0,4.1000000000000005,123,497,0,308,0.301,53.09,68.2,0.93,0.14,791,1.4000000000000001,3,2.2
+2023,5,18,7,30,14.600000000000001,1.34,0.076,0.64,72,808,445,0,0,4.1000000000000005,72,808,0,445,0.302,49.45,62.54,0.93,0.14,791,1.4000000000000001,2,2.2
+2023,5,18,8,0,15.700000000000001,1.36,0.081,0.64,80,849,544,0,0,3.5,104,779,0,530,0.302,44.08,56.84,0.9400000000000001,0.14,791,1.4000000000000001,0,2.2
+2023,5,18,8,30,16.2,1.36,0.081,0.64,87,879,638,0,0,3.5,107,835,0,631,0.303,42.7,51.160000000000004,0.9400000000000001,0.14,791,1.4000000000000001,179,2.1
+2023,5,18,9,0,16.6,1.37,0.089,0.64,93,901,724,0,0,3.5,153,767,0,690,0.303,41.49,45.550000000000004,0.9400000000000001,0.14,791,1.4000000000000001,358,2
+2023,5,18,9,30,16.900000000000002,1.37,0.089,0.64,97,919,800,0,3,3.5,256,602,0,717,0.304,40.71,40.07,0.9400000000000001,0.14,791,1.5,356,2.1
+2023,5,18,10,0,17.1,1.3800000000000001,0.093,0.64,101,932,866,0,0,3.6,149,849,0,846,0.305,40.74,34.83,0.9400000000000001,0.14,791,1.5,354,2.1
+2023,5,18,10,30,17.2,1.3800000000000001,0.093,0.64,98,952,923,0,0,3.6,201,448,0,589,0.307,40.480000000000004,29.990000000000002,0.9400000000000001,0.14,791,1.5,353,2.2
+2023,5,18,11,0,17.3,1.41,0.069,0.64,93,971,967,0,5,3.9000000000000004,290,398,0,648,0.308,40.86,25.8,0.9400000000000001,0.14,791,1.5,352,2.3000000000000003
+2023,5,18,11,30,17.3,1.41,0.069,0.64,94,976,995,0,6,3.9000000000000004,329,337,0,640,0.309,40.86,22.650000000000002,0.9400000000000001,0.14,791,1.5,354,2.3000000000000003
+2023,5,18,12,0,17.3,1.42,0.067,0.64,94,979,1008,0,6,3.9000000000000004,345,326,0,649,0.311,40.92,21.04,0.9500000000000001,0.14,791,1.5,355,2.4000000000000004
+2023,5,18,12,30,17.400000000000002,1.42,0.067,0.64,93,980,1006,0,0,3.9000000000000004,198,802,0,945,0.312,40.660000000000004,21.32,0.9400000000000001,0.14,791,1.5,180,2.4000000000000004
+2023,5,18,13,0,17.400000000000002,1.44,0.063,0.64,91,979,989,0,3,3.8000000000000003,340,208,0,531,0.314,40.36,23.42,0.9400000000000001,0.14,791,1.5,4,2.5
+2023,5,18,13,30,17.400000000000002,1.44,0.063,0.64,90,972,957,0,6,3.8000000000000003,241,7,0,247,0.314,40.36,26.91,0.9400000000000001,0.14,791,1.5,8,2.5
+2023,5,18,14,0,17.5,1.46,0.066,0.64,89,962,911,0,6,3.6,287,46,0,326,0.314,39.58,31.32,0.9400000000000001,0.14,791,1.5,12,2.4000000000000004
+2023,5,18,14,30,17.5,1.46,0.066,0.64,88,948,852,0,7,3.6,247,551,0,691,0.314,39.58,36.29,0.9400000000000001,0.14,791,1.5,12,2.4000000000000004
+2023,5,18,15,0,17.5,1.51,0.07100000000000001,0.64,87,930,782,0,8,3.3000000000000003,292,278,0,500,0.313,38.84,41.61,0.9400000000000001,0.14,790,1.5,13,2.4000000000000004
+2023,5,18,15,30,17.3,1.51,0.07100000000000001,0.64,85,905,701,0,5,3.3000000000000003,312,99,0,379,0.312,39.38,47.13,0.9400000000000001,0.14,791,1.5,13,2.5
+2023,5,18,16,0,17.1,1.57,0.079,0.64,83,873,611,0,5,3.3000000000000003,245,62,0,283,0.311,39.62,52.76,0.9400000000000001,0.14,791,1.5,13,2.6
+2023,5,18,16,30,16.6,1.57,0.079,0.64,80,830,514,0,8,3.3000000000000003,154,90,0,201,0.31,40.9,58.45,0.9400000000000001,0.14,791,1.5,15,2.7
+2023,5,18,17,0,16.2,1.6,0.093,0.64,76,772,413,0,8,3.4000000000000004,142,464,36,344,0.309,42.43,64.13,0.9400000000000001,0.14,791,1.5,18,2.8000000000000003
+2023,5,18,17,30,15.5,1.6,0.093,0.64,68,702,311,0,3,3.4000000000000004,96,602,50,304,0.308,44.37,69.78,0.9400000000000001,0.14,791,1.5,24,2.5
+2023,5,18,18,0,14.8,1.6400000000000001,0.101,0.64,59,601,211,0,0,4.5,72,405,21,174,0.307,50.08,75.35000000000001,0.9400000000000001,0.14,791,1.5,29,2.2
+2023,5,18,18,30,13.4,1.6400000000000001,0.101,0.64,45,465,119,1,4,4.5,57,161,21,83,0.307,54.89,80.8,0.9400000000000001,0.14,792,1.5,35,1.8
+2023,5,18,19,0,12,1.69,0.097,0.64,25,256,43,0,0,5.6000000000000005,25,256,0,43,0.306,64.76,86.06,0.9400000000000001,0.14,792,1.5,41,1.4000000000000001
+2023,5,18,19,30,11.4,1.69,0.097,0.64,2,18,2,0,3,5.6000000000000005,2,18,0,2,0.306,67.37,91.37,0.93,0.14,792,1.4000000000000001,44,1.5
+2023,5,18,20,0,10.700000000000001,1.73,0.094,0.64,0,0,0,0,3,5.2,0,0,0,0,0.305,68.82000000000001,96.29,0.93,0.14,792,1.4000000000000001,47,1.6
+2023,5,18,20,30,10.3,1.73,0.094,0.64,0,0,0,0,8,5.2,0,0,0,0,0.305,70.76,100.93,0.92,0.14,793,1.4000000000000001,47,1.6
+2023,5,18,21,0,9.8,1.73,0.097,0.64,0,0,0,0,8,5,0,0,0,0,0.305,71.95,105.23,0.92,0.14,793,1.4000000000000001,47,1.7000000000000002
+2023,5,18,21,30,9.4,1.73,0.097,0.64,0,0,0,0,8,5,0,0,0,0,0.305,73.91,109.12,0.92,0.14,793,1.4000000000000001,46,1.8
+2023,5,18,22,0,9,1.73,0.107,0.64,0,0,0,0,0,4.9,0,0,0,0,0.304,75.32000000000001,112.52,0.92,0.14,793,1.4000000000000001,45,1.9000000000000001
+2023,5,18,22,30,8.6,1.73,0.107,0.64,0,0,0,0,0,4.9,0,0,0,0,0.305,77.38,115.36,0.92,0.14,793,1.4000000000000001,43,2
+2023,5,18,23,0,8.1,1.74,0.12,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.305,79.74,117.54,0.92,0.14,793,1.3,41,2
+2023,5,18,23,30,7.800000000000001,1.74,0.12,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.305,81.38,119,0.92,0.14,793,1.3,39,2.1
+2023,5,19,0,0,7.4,1.78,0.136,0.64,0,0,0,0,0,4.7,0,0,0,0,0.305,83.24,119.68,0.92,0.14,794,1.3,37,2.2
+2023,5,19,0,30,7,1.78,0.136,0.64,0,0,0,0,0,4.7,0,0,0,0,0.306,85.55,119.56,0.92,0.14,794,1.3,36,2.3000000000000003
+2023,5,19,1,0,6.6000000000000005,1.83,0.154,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.306,87.01,118.64,0.92,0.14,794,1.3,35,2.4000000000000004
+2023,5,19,1,30,6.300000000000001,1.83,0.154,0.64,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.307,88.82000000000001,116.96000000000001,0.92,0.14,794,1.3,33,2.4000000000000004
+2023,5,19,2,0,5.9,1.8800000000000001,0.17300000000000001,0.64,0,0,0,0,0,4.4,0,0,0,0,0.308,90.22,114.57000000000001,0.92,0.14,794,1.3,32,2.5
+2023,5,19,2,30,5.5,1.8800000000000001,0.17300000000000001,0.64,0,0,0,0,0,4.4,0,0,0,0,0.309,92.75,111.56,0.92,0.14,794,1.2000000000000002,31,2.5
+2023,5,19,3,0,5.1000000000000005,1.92,0.191,0.64,0,0,0,0,0,4.2,0,0,0,0,0.31,94.18,108,0.92,0.14,794,1.2000000000000002,30,2.5
+2023,5,19,3,30,4.7,1.92,0.191,0.64,0,0,0,0,0,4.2,0,0,0,0,0.311,96.84,103.98,0.92,0.14,794,1.2000000000000002,30,2.4000000000000004
+2023,5,19,4,0,4.3,1.94,0.20400000000000001,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.312,98.66,99.57000000000001,0.92,0.14,794,1.2000000000000002,29,2.4000000000000004
+2023,5,19,4,30,4.5,1.94,0.20400000000000001,0.64,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.312,97.41,94.84,0.92,0.14,795,1.2000000000000002,29,2.6
+2023,5,19,5,0,4.6000000000000005,1.94,0.213,0.64,8,42,8,0,0,4.1000000000000005,8,42,0,8,0.313,96.59,89.47,0.92,0.14,795,1.1,29,2.8000000000000003
+2023,5,19,5,30,5.7,1.94,0.213,0.64,36,233,58,0,0,4.1000000000000005,36,233,0,58,0.313,89.48,84.51,0.91,0.14,795,1.1,28,3.1
+2023,5,19,6,0,6.800000000000001,1.94,0.213,0.64,61,405,137,0,0,4.3,61,405,0,137,0.313,83.98,79.18,0.91,0.14,795,1.1,27,3.5
+2023,5,19,6,30,8.8,1.94,0.213,0.64,81,533,231,0,0,4.3,81,533,0,231,0.313,73.31,73.68,0.91,0.14,795,1.1,33,4
+2023,5,19,7,0,10.8,1.93,0.20700000000000002,0.64,96,629,331,0,0,3.6,96,629,0,331,0.312,61.17,68.08,0.91,0.14,795,1.1,40,4.6000000000000005
+2023,5,19,7,30,12.100000000000001,1.93,0.20700000000000002,0.64,108,703,433,0,0,3.6,108,703,0,433,0.312,56.14,62.42,0.91,0.14,795,1,40,4.5
+2023,5,19,8,0,13.5,1.93,0.197,0.64,116,760,533,0,0,2.5,116,760,0,533,0.312,47.27,56.72,0.91,0.14,795,1,41,4.5
+2023,5,19,8,30,14.5,1.93,0.197,0.64,122,804,628,0,0,2.5,122,804,0,628,0.312,44.32,51.04,0.91,0.14,795,1,38,4.4
+2023,5,19,9,0,15.600000000000001,1.93,0.185,0.64,127,841,717,0,0,1.6,127,841,0,717,0.312,38.89,45.42,0.91,0.14,795,1,34,4.2
+2023,5,19,9,30,16.5,1.93,0.185,0.64,130,868,796,0,0,1.6,130,868,0,796,0.312,36.730000000000004,39.94,0.9,0.14,795,1,31,4.2
+2023,5,19,10,0,17.5,1.94,0.177,0.64,132,891,865,0,0,0.6000000000000001,132,891,0,865,0.311,32.03,34.69,0.9,0.14,795,0.9,28,4.2
+2023,5,19,10,30,18.3,1.94,0.177,0.64,137,904,921,0,0,0.6000000000000001,137,904,0,921,0.311,30.47,29.830000000000002,0.9,0.14,795,0.9,26,4.2
+2023,5,19,11,0,19,1.95,0.18,0.64,139,913,962,0,0,-0.30000000000000004,139,913,0,962,0.311,27.27,25.62,0.9,0.14,795,0.9,24,4.2
+2023,5,19,11,30,19.6,1.95,0.18,0.64,142,918,990,0,0,-0.30000000000000004,142,918,0,990,0.311,26.27,22.45,0.9,0.14,795,0.9,23,4.2
+2023,5,19,12,0,20.200000000000003,1.97,0.185,0.64,143,919,1002,0,0,-0.9,143,919,0,1002,0.311,24.21,20.830000000000002,0.9,0.14,795,0.9,23,4.3
+2023,5,19,12,30,20.6,1.97,0.185,0.64,144,916,999,0,0,-0.9,144,916,0,999,0.312,23.62,21.1,0.9,0.14,795,0.9,24,4.3
+2023,5,19,13,0,21,1.98,0.191,0.64,145,910,981,0,0,-1.2000000000000002,145,910,0,981,0.312,22.53,23.22,0.9,0.14,794,0.9,25,4.3
+2023,5,19,13,30,21.1,1.98,0.191,0.64,154,883,943,0,0,-1.2000000000000002,154,883,0,943,0.311,22.39,26.72,0.9,0.14,794,1,26,4.3
+2023,5,19,14,0,21.200000000000003,1.94,0.263,0.64,167,844,889,0,0,-1.3,167,844,0,889,0.311,22.16,31.150000000000002,0.9,0.14,794,1,28,4.3
+2023,5,19,14,30,21.1,1.94,0.263,0.64,164,823,829,0,0,-1.3,164,823,0,829,0.311,22.3,36.14,0.9,0.14,794,1,30,4.3
+2023,5,19,15,0,21,1.96,0.276,0.64,161,796,758,0,0,-1.1,161,796,0,758,0.311,22.64,41.46,0.91,0.14,794,1,33,4.3
+2023,5,19,15,30,20.700000000000003,1.96,0.276,0.64,156,764,677,0,0,-1.1,156,764,0,677,0.311,23.06,46.99,0.91,0.14,794,1,35,4.2
+2023,5,19,16,0,20.3,1.97,0.28700000000000003,0.64,148,724,587,0,0,-0.8,148,724,0,587,0.31,24.29,52.63,0.91,0.14,794,1,37,4.1000000000000005
+2023,5,19,16,30,19.8,1.97,0.28700000000000003,0.64,138,674,492,0,0,-0.8,138,674,0,492,0.31,25.05,58.31,0.91,0.14,794,1.1,40,3.9000000000000004
+2023,5,19,17,0,19.200000000000003,1.97,0.296,0.64,125,611,393,0,0,-0.1,125,611,0,393,0.31,27.27,64,0.91,0.14,794,1.1,42,3.8000000000000003
+2023,5,19,17,30,18,1.97,0.296,0.64,109,531,294,0,0,-0.1,109,531,0,294,0.31,29.39,69.64,0.92,0.14,794,1.1,45,2.9000000000000004
+2023,5,19,18,0,16.8,1.96,0.304,0.64,88,427,197,0,0,2.8000000000000003,88,427,0,197,0.309,39.03,75.21000000000001,0.92,0.14,794,1.1,47,2.1
+2023,5,19,18,30,14.9,1.96,0.304,0.64,60,297,108,0,0,2.8000000000000003,60,297,0,108,0.309,44.050000000000004,80.66,0.92,0.14,794,1.1,51,1.7000000000000002
+2023,5,19,19,0,13,1.97,0.303,0.64,27,137,37,0,0,4.6000000000000005,27,137,0,37,0.309,56.53,85.91,0.92,0.14,794,1.1,54,1.2000000000000002
+2023,5,19,19,30,12.200000000000001,1.97,0.303,0.64,2,8,2,0,0,4.6000000000000005,2,8,0,2,0.309,59.64,91.21000000000001,0.92,0.14,795,1.2000000000000002,58,1.2000000000000002
+2023,5,19,20,0,11.5,1.97,0.297,0.64,0,0,0,0,0,4.5,0,0,0,0,0.309,62.050000000000004,96.13,0.92,0.14,795,1.2000000000000002,63,1.2000000000000002
+2023,5,19,20,30,11,1.97,0.297,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,64.14,100.76,0.92,0.14,795,1.2000000000000002,67,1.2000000000000002
+2023,5,19,21,0,10.5,1.99,0.277,0.64,0,0,0,0,0,4.7,0,0,0,0,0.308,67.34,105.05,0.92,0.14,795,1.2000000000000002,71,1.2000000000000002
+2023,5,19,21,30,10,1.99,0.277,0.64,0,0,0,0,0,4.7,0,0,0,0,0.308,69.63,108.93,0.92,0.14,795,1.2000000000000002,72,1.2000000000000002
+2023,5,19,22,0,9.5,2,0.26,0.64,0,0,0,0,0,5,0,0,0,0,0.308,73.62,112.33,0.92,0.14,795,1.2000000000000002,74,1.1
+2023,5,19,22,30,9.1,2,0.26,0.64,0,0,0,0,0,5,0,0,0,0,0.308,75.63,115.15,0.92,0.14,795,1.2000000000000002,74,1.1
+2023,5,19,23,0,8.6,2,0.247,0.64,0,0,0,0,0,5.4,0,0,0,0,0.307,80.13,117.33,0.91,0.14,796,1.2000000000000002,73,1.1
+2023,5,19,23,30,8.3,2,0.247,0.64,0,0,0,0,0,5.4,0,0,0,0,0.307,81.77,118.79,0.91,0.14,796,1.2000000000000002,71,1
+2023,5,20,0,0,7.9,2,0.23700000000000002,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.307,85.3,119.47,0.91,0.14,796,1.2000000000000002,69,1
+2023,5,20,0,30,7.5,2,0.23700000000000002,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.307,87.65,119.35000000000001,0.91,0.14,796,1.1,68,1
+2023,5,20,1,0,7.1000000000000005,1.99,0.227,0.64,0,0,0,0,0,5.7,0,0,0,0,0.307,90.60000000000001,118.43,0.91,0.14,796,1.1,67,1
+2023,5,20,1,30,6.800000000000001,1.99,0.227,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,92.48,116.76,0.91,0.14,796,1.1,68,1
+2023,5,20,2,0,6.4,1.98,0.213,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,95.02,114.38,0.91,0.14,796,1,68,1
+2023,5,20,2,30,6.1000000000000005,1.98,0.213,0.64,0,0,0,0,0,5.7,0,0,0,0,0.306,97,111.38,0.91,0.14,796,1,70,0.9
+2023,5,20,3,0,5.9,1.96,0.199,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.306,98.06,107.83,0.91,0.14,796,1,71,0.9
+2023,5,20,3,30,5.7,1.96,0.199,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.306,99.42,103.82000000000001,0.91,0.14,796,0.9,69,0.8
+2023,5,20,4,0,5.6000000000000005,1.94,0.189,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.307,99.7,99.42,0.91,0.14,796,0.9,67,0.8
+2023,5,20,4,30,5.7,1.94,0.189,0.64,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.307,99.01,94.69,0.91,0.14,796,0.9,61,0.7000000000000001
+2023,5,20,5,0,5.800000000000001,1.93,0.181,0.64,8,53,9,0,0,5.6000000000000005,8,53,0,9,0.307,98.49000000000001,89.35000000000001,0.91,0.14,796,0.9,55,0.5
+2023,5,20,5,30,7.300000000000001,1.93,0.181,0.64,35,271,62,0,0,5.6000000000000005,35,271,0,62,0.307,88.85000000000001,84.38,0.91,0.14,796,0.9,44,0.7000000000000001
+2023,5,20,6,0,8.700000000000001,1.92,0.17400000000000002,0.64,58,451,144,0,0,5.800000000000001,58,451,0,144,0.307,82.28,79.05,0.91,0.14,797,0.9,33,0.8
+2023,5,20,6,30,10.700000000000001,1.92,0.17400000000000002,0.64,75,581,239,0,0,5.9,75,581,0,239,0.308,71.98,73.56,0.91,0.14,797,0.9,27,1
+2023,5,20,7,0,12.700000000000001,1.93,0.165,0.64,86,676,340,0,0,4.5,86,676,0,340,0.308,57.39,67.97,0.9,0.14,797,0.9,21,1.3
+2023,5,20,7,30,14.5,1.93,0.165,0.64,97,745,443,0,0,4.5,97,745,0,443,0.308,51.07,62.300000000000004,0.9,0.14,797,0.9,17,1.6
+2023,5,20,8,0,16.3,1.92,0.159,0.64,104,798,543,0,0,1.1,104,798,0,543,0.309,35.71,56.61,0.9,0.14,797,0.9,13,1.9000000000000001
+2023,5,20,8,30,17.5,1.92,0.159,0.64,110,838,638,0,0,1.1,110,838,0,638,0.309,33.06,50.93,0.9,0.14,796,0.9,10,2
+2023,5,20,9,0,18.8,1.9100000000000001,0.154,0.64,115,870,727,0,0,-0.5,115,870,0,727,0.31,27.12,45.300000000000004,0.9,0.14,796,0.9,7,2.2
+2023,5,20,9,30,19.700000000000003,1.9100000000000001,0.154,0.64,118,895,806,0,0,-0.5,118,895,0,806,0.31,25.650000000000002,39.81,0.9,0.14,796,0.9,7,2.1
+2023,5,20,10,0,20.6,1.9000000000000001,0.147,0.64,120,915,874,0,0,-1.2000000000000002,120,915,0,874,0.31,23.09,34.550000000000004,0.9,0.14,796,0.9,7,2.1
+2023,5,20,10,30,21.400000000000002,1.9000000000000001,0.147,0.64,122,930,930,0,0,-1.2000000000000002,122,930,0,930,0.31,21.990000000000002,29.68,0.9,0.14,796,0.9,7,2
+2023,5,20,11,0,22.1,1.8900000000000001,0.14,0.64,122,941,972,0,0,-1.8,122,941,0,972,0.311,20.2,25.45,0.9,0.14,796,0.9,6,1.9000000000000001
+2023,5,20,11,30,22.700000000000003,1.8900000000000001,0.14,0.64,123,948,1000,0,0,-1.8,123,948,0,1000,0.311,19.46,22.26,0.9,0.14,795,0.9,5,1.8
+2023,5,20,12,0,23.200000000000003,1.9000000000000001,0.136,0.64,122,953,1014,0,0,-2.3000000000000003,186,822,0,955,0.311,18.16,20.62,0.9,0.14,795,0.9,3,1.6
+2023,5,20,12,30,23.6,1.9000000000000001,0.136,0.64,122,952,1011,0,0,-2.3000000000000003,298,521,0,785,0.311,17.73,20.89,0.9,0.14,795,0.9,180,1.5
+2023,5,20,13,0,24,1.9100000000000001,0.134,0.64,121,949,994,0,0,-2.7,121,949,0,994,0.311,16.78,23.02,0.9,0.14,795,0.9,356,1.4000000000000001
+2023,5,20,13,30,24.1,1.9100000000000001,0.134,0.64,123,938,962,0,0,-2.8000000000000003,123,938,0,962,0.311,16.66,26.55,0.91,0.14,794,0.9,353,1.3
+2023,5,20,14,0,24.200000000000003,1.83,0.15,0.64,124,922,914,0,0,-3.2,124,922,0,914,0.31,16.080000000000002,30.990000000000002,0.91,0.14,794,0.9,349,1.2000000000000002
+2023,5,20,14,30,24.1,1.83,0.15,0.64,122,906,855,0,0,-3.2,122,906,0,855,0.31,16.17,35.980000000000004,0.91,0.14,794,0.9,348,1.1
+2023,5,20,15,0,24,1.84,0.155,0.64,119,885,784,0,0,-3.6,119,885,0,784,0.309,15.77,41.32,0.91,0.14,793,0.9,347,1.1
+2023,5,20,15,30,23.700000000000003,1.84,0.155,0.64,118,856,703,0,0,-3.6,118,856,0,703,0.309,16.06,46.85,0.92,0.14,793,0.9,346,1
+2023,5,20,16,0,23.400000000000002,1.81,0.169,0.64,115,817,612,0,0,-3.9000000000000004,123,792,0,605,0.308,15.97,52.49,0.92,0.14,793,0.9,344,1
+2023,5,20,16,30,22.8,1.81,0.169,0.64,109,770,515,0,0,-3.9000000000000004,124,730,0,509,0.308,16.56,58.18,0.93,0.14,793,1,341,0.9
+2023,5,20,17,0,22.3,1.8,0.18,0.64,101,709,413,0,0,-3.9000000000000004,117,655,0,406,0.307,17.05,63.86,0.93,0.13,793,1,337,0.8
+2023,5,20,17,30,21.3,1.8,0.18,0.64,90,632,311,0,0,-3.9000000000000004,122,468,0,286,0.307,18.12,69.51,0.93,0.13,793,1,318,0.5
+2023,5,20,18,0,20.400000000000002,1.79,0.19,0.64,76,525,211,0,5,1.4000000000000001,128,39,0,138,0.307,28.240000000000002,75.07000000000001,0.93,0.13,793,1,298,0.2
+2023,5,20,18,30,19,1.79,0.19,0.64,56,382,119,3,5,1.4000000000000001,66,20,43,69,0.307,30.8,80.52,0.9400000000000001,0.13,793,1,252,0.4
+2023,5,20,19,0,17.6,1.79,0.199,0.64,30,188,44,7,5,2.7,33,2,100,33,0.306,37.04,85.77,0.9400000000000001,0.13,793,1,205,0.6000000000000001
+2023,5,20,19,30,16.6,1.79,0.199,0.64,2,12,2,3,5,2.8000000000000003,2,0,43,2,0.306,39.51,91.05,0.9400000000000001,0.13,794,1,206,0.8
+2023,5,20,20,0,15.600000000000001,1.79,0.21,0.64,0,0,0,0,0,2.7,0,0,0,0,0.306,42.03,95.96000000000001,0.9400000000000001,0.13,794,1,207,1
+2023,5,20,20,30,14.8,1.79,0.21,0.64,0,0,0,0,3,2.7,0,0,0,0,0.306,44.230000000000004,100.59,0.9400000000000001,0.13,794,1.1,210,1
+2023,5,20,21,0,14.100000000000001,1.79,0.215,0.64,0,0,0,0,3,3,0,0,0,0,0.306,47.15,104.88,0.9400000000000001,0.13,794,1.1,212,1
+2023,5,20,21,30,13.5,1.79,0.215,0.64,0,0,0,0,3,3,0,0,0,0,0.306,49.02,108.75,0.9400000000000001,0.13,794,1.1,215,1.1
+2023,5,20,22,0,12.9,1.84,0.20400000000000001,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.306,50.28,112.14,0.9400000000000001,0.13,794,1.1,217,1.1
+2023,5,20,22,30,12.4,1.84,0.20400000000000001,0.64,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.306,51.95,114.96000000000001,0.93,0.13,794,1.1,217,1.1
+2023,5,20,23,0,11.8,1.87,0.19,0.64,0,0,0,0,0,2.5,0,0,0,0,0.306,52.96,117.13,0.93,0.13,794,1.1,216,1.2000000000000002
+2023,5,20,23,30,11.3,1.87,0.19,0.64,0,0,0,0,0,2.5,0,0,0,0,0.306,54.74,118.58,0.93,0.13,794,1.1,215,1.2000000000000002
+2023,5,21,0,0,10.8,1.8900000000000001,0.183,0.64,0,0,0,0,0,2.5,0,0,0,0,0.305,56.370000000000005,119.26,0.93,0.13,794,1.2000000000000002,213,1.3
+2023,5,21,0,30,10.3,1.8900000000000001,0.183,0.64,0,0,0,0,0,2.5,0,0,0,0,0.305,58.28,119.14,0.93,0.13,794,1.2000000000000002,211,1.3
+2023,5,21,1,0,9.8,1.9000000000000001,0.179,0.64,0,0,0,0,8,2.6,0,0,0,0,0.305,61.04,118.23,0.93,0.13,794,1.2000000000000002,209,1.4000000000000001
+2023,5,21,1,30,9.4,1.9000000000000001,0.179,0.64,0,0,0,0,8,2.6,0,0,0,0,0.305,62.7,116.56,0.93,0.13,794,1.2000000000000002,208,1.4000000000000001
+2023,5,21,2,0,8.9,1.9000000000000001,0.177,0.64,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.305,66.16,114.2,0.93,0.13,794,1.3,208,1.4000000000000001
+2023,5,21,2,30,8.6,1.9000000000000001,0.177,0.64,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.305,67.52,111.2,0.93,0.13,794,1.3,207,1.3
+2023,5,21,3,0,8.200000000000001,1.8800000000000001,0.179,0.64,0,0,0,0,7,3.2,0,0,0,0,0.305,70.93,107.67,0.93,0.13,794,1.3,207,1.2000000000000002
+2023,5,21,3,30,8.1,1.8800000000000001,0.179,0.64,0,0,0,0,8,3.2,0,0,0,0,0.305,71.41,103.66,0.93,0.13,794,1.3,205,1.2000000000000002
+2023,5,21,4,0,8,1.87,0.181,0.64,0,0,0,0,8,3.5,0,0,0,0,0.305,73.15,99.27,0.93,0.13,794,1.3,203,1.1
+2023,5,21,4,30,8.200000000000001,1.87,0.181,0.64,0,0,0,0,8,3.5,0,0,0,0,0.305,72.16,94.56,0.93,0.13,794,1.3,199,1.1
+2023,5,21,5,0,8.4,1.86,0.182,0.64,8,51,9,4,8,4,7,0,64,7,0.305,73.78,89.24,0.93,0.13,795,1.3,196,1.2000000000000002
+2023,5,21,5,30,9.5,1.86,0.182,0.64,37,260,63,6,3,4,46,30,86,49,0.305,68.52,84.26,0.93,0.13,795,1.3,199,1.4000000000000001
+2023,5,21,6,0,10.600000000000001,1.86,0.181,0.64,61,435,144,0,0,4.2,67,368,0,138,0.305,64.74,78.94,0.93,0.13,795,1.3,201,1.5
+2023,5,21,6,30,12.3,1.86,0.181,0.64,78,563,238,0,0,4.2,87,510,0,232,0.305,57.870000000000005,73.45,0.93,0.13,795,1.3,218,1.5
+2023,5,21,7,0,14,1.87,0.17200000000000001,0.64,90,658,338,0,0,3.9000000000000004,90,658,0,338,0.305,50.61,67.86,0.93,0.13,795,1.3,234,1.5
+2023,5,21,7,30,15.8,1.87,0.17200000000000001,0.64,98,733,440,0,0,3.9000000000000004,98,733,0,440,0.305,45.08,62.190000000000005,0.93,0.13,795,1.3,256,1.1
+2023,5,21,8,0,17.6,1.9000000000000001,0.15,0.64,102,795,541,0,0,2.5,102,795,0,541,0.305,36.34,56.5,0.92,0.13,795,1.2000000000000002,278,0.7000000000000001
+2023,5,21,8,30,18.900000000000002,1.9000000000000001,0.15,0.64,107,837,636,0,0,2.5,107,837,0,636,0.304,33.46,50.82,0.92,0.13,794,1.2000000000000002,162,0.7000000000000001
+2023,5,21,9,0,20.1,1.9100000000000001,0.137,0.64,109,872,724,0,0,1.2000000000000002,109,872,0,724,0.303,28.47,45.19,0.92,0.13,794,1.2000000000000002,45,0.7000000000000001
+2023,5,21,9,30,20.900000000000002,1.9100000000000001,0.137,0.64,113,896,802,0,0,1.2000000000000002,113,896,0,802,0.302,27.1,39.69,0.92,0.13,794,1.2000000000000002,65,0.9
+2023,5,21,10,0,21.8,1.9000000000000001,0.131,0.64,115,915,870,0,0,0.6000000000000001,115,915,0,870,0.302,24.42,34.42,0.92,0.13,794,1.2000000000000002,84,1.2000000000000002
+2023,5,21,10,30,22.400000000000002,1.9000000000000001,0.131,0.64,113,936,927,0,0,0.6000000000000001,113,936,0,927,0.301,23.52,29.54,0.92,0.13,793,1.2000000000000002,91,1.4000000000000001
+2023,5,21,11,0,23,1.87,0.108,0.64,109,954,972,0,0,0.1,109,954,0,972,0.3,21.93,25.29,0.92,0.13,793,1.2000000000000002,98,1.5
+2023,5,21,11,30,23.400000000000002,1.87,0.108,0.64,111,959,1000,0,0,0.1,111,959,0,1000,0.299,21.41,22.080000000000002,0.92,0.13,793,1.2000000000000002,102,1.5
+2023,5,21,12,0,23.8,1.85,0.111,0.64,112,961,1013,0,0,-0.30000000000000004,112,961,0,1013,0.299,20.29,20.42,0.92,0.13,792,1.1,107,1.5
+2023,5,21,12,30,24,1.85,0.111,0.64,113,960,1011,0,0,-0.30000000000000004,137,926,0,1003,0.298,20.04,20.69,0.92,0.13,792,1.1,112,1.5
+2023,5,21,13,0,24.3,1.84,0.113,0.64,113,956,994,0,0,-0.7000000000000001,166,880,0,977,0.297,19.21,22.830000000000002,0.92,0.13,792,1.1,118,1.4000000000000001
+2023,5,21,13,30,24.400000000000002,1.84,0.113,0.64,112,950,963,0,0,-0.7000000000000001,151,861,0,922,0.297,19.07,26.37,0.92,0.13,791,1.1,119,1.3
+2023,5,21,14,0,24.5,1.82,0.112,0.64,109,941,917,0,0,-1.1,109,941,0,917,0.296,18.44,30.830000000000002,0.92,0.13,791,1.1,121,1.1
+2023,5,21,14,30,24.5,1.82,0.112,0.64,108,926,859,0,0,-1.1,108,926,0,859,0.296,18.44,35.84,0.93,0.13,791,1.1,120,1
+2023,5,21,15,0,24.400000000000002,1.8,0.11900000000000001,0.64,107,905,788,0,0,-1.5,210,726,0,756,0.296,17.93,41.18,0.93,0.13,791,1.1,119,0.9
+2023,5,21,15,30,24.200000000000003,1.8,0.11900000000000001,0.64,105,877,706,0,8,-1.5,269,203,0,408,0.297,18.150000000000002,46.72,0.93,0.13,791,1.1,119,0.8
+2023,5,21,16,0,23.900000000000002,1.78,0.131,0.64,101,841,615,0,5,-1.9000000000000001,264,310,0,453,0.297,17.91,52.36,0.93,0.13,790,1.2000000000000002,120,0.7000000000000001
+2023,5,21,16,30,23.5,1.78,0.131,0.64,98,794,518,0,8,-1.9000000000000001,205,210,0,316,0.297,18.34,58.050000000000004,0.93,0.13,790,1.2000000000000002,124,0.7000000000000001
+2023,5,21,17,0,23,1.74,0.147,0.64,93,732,417,0,8,-2.1,195,102,0,240,0.297,18.69,63.730000000000004,0.9400000000000001,0.13,790,1.2000000000000002,128,0.7000000000000001
+2023,5,21,17,30,22.1,1.74,0.147,0.64,84,655,315,0,8,-2.1,174,260,0,266,0.297,19.740000000000002,69.37,0.9400000000000001,0.13,790,1.2000000000000002,138,0.6000000000000001
+2023,5,21,18,0,21.200000000000003,1.72,0.16,0.64,72,549,215,0,5,2.8000000000000003,121,70,0,139,0.297,29.73,74.93,0.9400000000000001,0.13,790,1.2000000000000002,148,0.4
+2023,5,21,18,30,19.8,1.72,0.16,0.64,54,407,122,2,5,2.8000000000000003,74,31,29,79,0.297,32.4,80.38,0.9400000000000001,0.13,790,1.2000000000000002,161,0.5
+2023,5,21,19,0,18.400000000000002,1.72,0.168,0.64,30,208,46,7,5,5,36,4,100,36,0.297,41.25,85.63,0.9400000000000001,0.13,791,1.2000000000000002,175,0.6000000000000001
+2023,5,21,19,30,17.400000000000002,1.72,0.168,0.64,4,22,4,3,5,5,2,0,43,2,0.297,43.92,90.9,0.9400000000000001,0.13,791,1.2000000000000002,181,0.7000000000000001
+2023,5,21,20,0,16.5,1.73,0.165,0.64,0,0,0,0,0,4.7,0,0,0,0,0.297,45.480000000000004,95.8,0.9400000000000001,0.13,791,1.2000000000000002,187,0.9
+2023,5,21,20,30,15.700000000000001,1.73,0.165,0.64,0,0,0,0,0,4.7,0,0,0,0,0.296,47.85,100.42,0.9400000000000001,0.13,791,1.2000000000000002,191,1
+2023,5,21,21,0,14.9,1.74,0.157,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.296,50.870000000000005,104.7,0.9400000000000001,0.13,791,1.2000000000000002,196,1.2000000000000002
+2023,5,21,21,30,14.3,1.74,0.157,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.296,52.870000000000005,108.57000000000001,0.9400000000000001,0.13,791,1.2000000000000002,199,1.3
+2023,5,21,22,0,13.700000000000001,1.75,0.152,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.295,55.03,111.95,0.9400000000000001,0.13,791,1.2000000000000002,201,1.5
+2023,5,21,22,30,13.200000000000001,1.75,0.152,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.295,56.84,114.76,0.9400000000000001,0.13,791,1.3,202,1.7000000000000002
+2023,5,21,23,0,12.700000000000001,1.75,0.15,0.64,0,0,0,0,0,5,0,0,0,0,0.295,59.46,116.93,0.9400000000000001,0.13,791,1.3,202,1.9000000000000001
+2023,5,21,23,30,12.3,1.75,0.15,0.64,0,0,0,0,3,5,0,0,0,0,0.295,61.03,118.38,0.9400000000000001,0.13,791,1.3,202,2.2
+2023,5,22,0,0,12,1.75,0.145,0.64,0,0,0,0,3,5.300000000000001,0,0,0,0,0.295,63.71,119.06,0.9400000000000001,0.13,791,1.3,201,2.4000000000000004
+2023,5,22,0,30,11.600000000000001,1.75,0.145,0.64,0,0,0,0,5,5.300000000000001,0,0,0,0,0.295,65.41,118.95,0.9400000000000001,0.13,791,1.4000000000000001,201,2.7
+2023,5,22,1,0,11.3,1.75,0.139,0.64,0,0,0,0,5,5.7,0,0,0,0,0.295,68.62,118.04,0.9400000000000001,0.13,791,1.4000000000000001,201,3
+2023,5,22,1,30,11.100000000000001,1.75,0.139,0.64,0,0,0,0,5,5.7,0,0,0,0,0.295,69.53,116.38,0.9400000000000001,0.13,791,1.4000000000000001,200,3.2
+2023,5,22,2,0,10.8,1.75,0.135,0.64,0,0,0,0,5,6.2,0,0,0,0,0.296,73.21000000000001,114.02,0.9400000000000001,0.13,791,1.4000000000000001,199,3.4000000000000004
+2023,5,22,2,30,10.5,1.75,0.135,0.64,0,0,0,0,5,6.2,0,0,0,0,0.296,74.68,111.03,0.9400000000000001,0.13,791,1.5,199,3.5
+2023,5,22,3,0,10.200000000000001,1.74,0.137,0.64,0,0,0,0,5,6.4,0,0,0,0,0.296,77.46000000000001,107.51,0.9400000000000001,0.13,791,1.5,199,3.5
+2023,5,22,3,30,9.9,1.74,0.137,0.64,0,0,0,0,5,6.4,0,0,0,0,0.297,79.03,103.51,0.9400000000000001,0.13,791,1.5,199,3.4000000000000004
+2023,5,22,4,0,9.600000000000001,1.74,0.137,0.64,0,0,0,0,4,6.5,0,0,0,0,0.297,81.25,99.13,0.9400000000000001,0.13,791,1.5,198,3.3000000000000003
+2023,5,22,4,30,9.700000000000001,1.74,0.137,0.64,0,0,0,0,3,6.5,0,0,0,0,0.298,80.71000000000001,94.42,0.9400000000000001,0.13,791,1.5,197,3.3000000000000003
+2023,5,22,5,0,9.8,1.74,0.14100000000000001,0.64,9,61,10,5,5,6.800000000000001,6,0,71,6,0.298,81.58,89.13,0.9400000000000001,0.13,791,1.5,196,3.3000000000000003
+2023,5,22,5,30,10.9,1.74,0.14100000000000001,0.64,36,291,66,6,3,6.800000000000001,43,32,82,46,0.299,75.82000000000001,84.14,0.9400000000000001,0.13,791,1.5,196,3.6
+2023,5,22,6,0,11.9,1.74,0.145,0.64,57,466,147,0,0,7,75,328,0,139,0.299,71.73,78.82000000000001,0.9400000000000001,0.13,791,1.5,197,3.9000000000000004
+2023,5,22,6,30,13.4,1.74,0.145,0.64,72,588,241,0,0,7,78,561,0,239,0.299,65.03,73.34,0.9400000000000001,0.13,791,1.5,203,4.3
+2023,5,22,7,0,14.9,1.74,0.146,0.64,85,675,341,0,0,6.7,85,675,0,341,0.3,58.11,67.75,0.9400000000000001,0.13,791,1.5,210,4.800000000000001
+2023,5,22,7,30,16.2,1.74,0.146,0.64,94,741,441,0,0,6.7,94,741,0,441,0.3,53.480000000000004,62.09,0.9400000000000001,0.13,791,1.5,217,4.800000000000001
+2023,5,22,8,0,17.400000000000002,1.74,0.14200000000000002,0.64,101,791,539,0,0,6.300000000000001,101,791,0,539,0.3,48.19,56.4,0.9400000000000001,0.13,791,1.5,224,4.800000000000001
+2023,5,22,8,30,18.3,1.74,0.14200000000000002,0.64,108,828,632,0,0,6.300000000000001,108,828,0,632,0.3,45.550000000000004,50.71,0.9400000000000001,0.13,791,1.5,227,4.5
+2023,5,22,9,0,19.3,1.74,0.14100000000000001,0.64,113,857,718,0,0,6,113,857,0,718,0.3,41.74,45.08,0.9400000000000001,0.13,791,1.6,230,4.2
+2023,5,22,9,30,20,1.74,0.14100000000000001,0.64,118,878,795,0,0,6,118,878,0,795,0.301,39.97,39.58,0.9400000000000001,0.13,791,1.6,229,4
+2023,5,22,10,0,20.8,1.73,0.14300000000000002,0.64,122,895,861,0,0,5.6000000000000005,122,895,0,861,0.301,37,34.300000000000004,0.9400000000000001,0.13,790,1.6,228,3.8000000000000003
+2023,5,22,10,30,21.200000000000003,1.73,0.14300000000000002,0.64,117,919,918,0,0,5.6000000000000005,117,919,0,918,0.301,36.11,29.400000000000002,0.9400000000000001,0.13,790,1.6,225,3.7
+2023,5,22,11,0,21.700000000000003,1.57,0.10400000000000001,0.64,110,943,964,0,0,5.300000000000001,110,943,0,964,0.301,34.43,25.13,0.9500000000000001,0.13,790,1.6,222,3.6
+2023,5,22,11,30,22,1.57,0.10400000000000001,0.64,112,946,990,0,0,5.300000000000001,137,902,0,974,0.301,33.81,21.900000000000002,0.9500000000000001,0.13,790,1.6,220,3.7
+2023,5,22,12,0,22.200000000000003,1.55,0.111,0.64,115,945,1002,0,0,5.2,202,612,0,776,0.3,33.18,20.22,0.9500000000000001,0.13,790,1.6,217,3.7
+2023,5,22,12,30,22.200000000000003,1.55,0.111,0.64,118,939,998,0,8,5.2,293,222,0,501,0.3,33.18,20.490000000000002,0.96,0.13,790,1.6,217,3.8000000000000003
+2023,5,22,13,0,22.200000000000003,1.51,0.128,0.64,123,928,979,0,6,5.2,401,99,0,492,0.299,33.03,22.64,0.96,0.13,790,1.6,216,3.9000000000000004
+2023,5,22,13,30,21.900000000000002,1.51,0.128,0.64,130,907,944,0,6,5.2,327,11,0,337,0.298,33.63,26.2,0.96,0.13,790,1.7000000000000002,219,3.9000000000000004
+2023,5,22,14,0,21.5,1.54,0.171,0.64,139,878,894,0,6,5.300000000000001,237,4,0,240,0.298,34.76,30.67,0.96,0.13,790,1.7000000000000002,221,3.8000000000000003
+2023,5,22,14,30,20.8,1.54,0.171,0.64,138,860,836,0,6,5.300000000000001,169,5,0,173,0.297,36.28,35.69,0.96,0.13,790,1.7000000000000002,227,3.6
+2023,5,22,15,0,20.1,1.53,0.18,0.64,135,835,765,0,9,5.7,89,3,0,91,0.296,38.92,41.04,0.97,0.13,790,1.7000000000000002,233,3.4000000000000004
+2023,5,22,15,30,19.400000000000002,1.53,0.18,0.64,131,808,686,0,6,5.7,45,0,0,45,0.295,40.64,46.58,0.97,0.13,790,1.7000000000000002,245,3.4000000000000004
+2023,5,22,16,0,18.7,1.52,0.183,0.64,124,773,597,0,6,6.1000000000000005,148,11,0,155,0.294,43.69,52.230000000000004,0.97,0.13,790,1.8,257,3.3000000000000003
+2023,5,22,16,30,17.7,1.52,0.183,0.64,116,729,503,0,6,6.1000000000000005,238,42,0,260,0.293,46.51,57.92,0.97,0.13,790,1.8,272,3.5
+2023,5,22,17,0,16.7,1.51,0.185,0.64,106,672,405,0,7,6.6000000000000005,167,239,0,273,0.292,51.2,63.6,0.97,0.13,790,1.8,286,3.6
+2023,5,22,17,30,15.5,1.51,0.185,0.64,94,602,307,0,6,6.6000000000000005,100,116,0,141,0.292,55.33,69.24,0.97,0.13,791,1.7000000000000002,299,3.7
+2023,5,22,18,0,14.200000000000001,1.49,0.178,0.64,77,508,210,0,7,7.5,68,293,0,145,0.291,64.14,74.8,0.97,0.13,791,1.7000000000000002,311,3.8000000000000003
+2023,5,22,18,30,12.9,1.49,0.178,0.64,57,379,121,2,7,7.5,60,53,29,69,0.291,69.79,80.23,0.97,0.13,791,1.7000000000000002,318,3.8000000000000003
+2023,5,22,19,0,11.700000000000001,1.48,0.16,0.64,31,198,47,7,7,7.7,32,3,100,32,0.291,76.41,85.48,0.97,0.13,791,1.7000000000000002,325,3.8000000000000003
+2023,5,22,19,30,11.200000000000001,1.48,0.16,0.64,4,20,4,3,7,7.7,2,0,43,2,0.291,78.98,90.28,0.97,0.13,791,1.6,326,3.4000000000000004
+2023,5,22,20,0,10.600000000000001,1.47,0.14300000000000002,0.64,0,0,0,0,8,7.6000000000000005,0,0,0,0,0.291,81.59,95.65,0.97,0.13,792,1.6,328,3
+2023,5,22,20,30,10.5,1.47,0.14300000000000002,0.64,0,0,0,0,5,7.6000000000000005,0,0,0,0,0.291,82.14,100.26,0.97,0.13,792,1.6,324,2.4000000000000004
+2023,5,22,21,0,10.3,1.46,0.132,0.64,0,0,0,0,5,7.5,0,0,0,0,0.291,82.61,104.53,0.97,0.13,792,1.7000000000000002,321,1.7000000000000002
+2023,5,22,21,30,10,1.46,0.132,0.64,0,0,0,0,5,7.5,0,0,0,0,0.292,84.28,108.39,0.96,0.13,792,1.7000000000000002,316,1.1
+2023,5,22,22,0,9.700000000000001,1.48,0.117,0.64,0,0,0,0,3,7.5,0,0,0,0,0.292,85.9,111.76,0.96,0.13,792,1.7000000000000002,311,0.5
+2023,5,22,22,30,9.4,1.48,0.117,0.64,0,0,0,0,0,7.5,0,0,0,0,0.292,87.64,114.57000000000001,0.96,0.13,792,1.7000000000000002,287,0.4
+2023,5,22,23,0,9.1,1.47,0.109,0.64,0,0,0,0,3,7.300000000000001,0,0,0,0,0.292,88.57000000000001,116.73,0.96,0.13,792,1.7000000000000002,262,0.4
+2023,5,22,23,30,9,1.47,0.109,0.64,0,0,0,0,0,7.300000000000001,0,0,0,0,0.293,89.16,118.18,0.96,0.13,792,1.7000000000000002,249,0.4
+2023,5,23,0,0,8.8,1.47,0.10200000000000001,0.64,0,0,0,0,0,7.2,0,0,0,0,0.293,89.87,118.86,0.96,0.13,792,1.7000000000000002,235,0.4
+2023,5,23,0,30,8.700000000000001,1.47,0.10200000000000001,0.64,0,0,0,0,0,7.2,0,0,0,0,0.293,90.48,118.75,0.96,0.13,792,1.6,228,0.4
+2023,5,23,1,0,8.6,1.46,0.094,0.64,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.294,90.42,117.85000000000001,0.96,0.13,791,1.6,220,0.30000000000000004
+2023,5,23,1,30,8.5,1.46,0.094,0.64,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.294,91.03,116.2,0.96,0.13,791,1.6,184,0.30000000000000004
+2023,5,23,2,0,8.5,1.45,0.08700000000000001,0.64,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.295,90.64,113.84,0.96,0.13,791,1.6,148,0.2
+2023,5,23,2,30,8.3,1.45,0.08700000000000001,0.64,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.295,91.87,110.87,0.96,0.13,791,1.6,132,0.4
+2023,5,23,3,0,8,1.43,0.083,0.64,0,0,0,0,0,7,0,0,0,0,0.296,93.47,107.35000000000001,0.96,0.13,791,1.5,115,0.5
+2023,5,23,3,30,7.7,1.43,0.083,0.64,0,0,0,0,0,7,0,0,0,0,0.296,95.39,103.37,0.96,0.13,791,1.6,117,0.7000000000000001
+2023,5,23,4,0,7.5,1.41,0.083,0.64,0,0,0,0,0,6.9,0,0,0,0,0.297,96.27,98.99000000000001,0.9500000000000001,0.13,791,1.6,119,0.8
+2023,5,23,4,30,7.7,1.41,0.083,0.64,0,0,0,0,0,6.9,0,0,0,0,0.297,94.97,94.3,0.96,0.13,791,1.6,124,0.8
+2023,5,23,5,0,8,1.41,0.08600000000000001,0.64,10,80,11,0,0,7,10,80,0,11,0.297,93.49,89.01,0.96,0.13,791,1.6,130,0.8
+2023,5,23,5,30,9.5,1.41,0.08600000000000001,0.64,33,351,70,0,0,7,33,351,0,70,0.297,84.49,84.03,0.96,0.13,791,1.6,138,1.3
+2023,5,23,6,0,11.100000000000001,1.4000000000000001,0.091,0.64,50,528,153,0,0,7.2,50,528,0,153,0.297,76.82000000000001,78.72,0.96,0.13,791,1.6,145,1.8
+2023,5,23,6,30,12.9,1.4000000000000001,0.091,0.64,63,643,248,0,0,7.2,63,643,0,248,0.297,68.25,73.24,0.96,0.13,791,1.7000000000000002,155,2
+2023,5,23,7,0,14.700000000000001,1.41,0.099,0.64,73,720,347,0,0,6.5,73,720,0,347,0.297,57.85,67.65,0.96,0.13,791,1.7000000000000002,165,2.2
+2023,5,23,7,30,15.8,1.41,0.099,0.64,83,773,446,0,0,6.5,83,773,0,446,0.297,53.92,61.99,0.96,0.13,791,1.7000000000000002,173,2.3000000000000003
+2023,5,23,8,0,16.8,1.41,0.115,0.64,94,808,542,0,0,5.800000000000001,94,808,0,542,0.297,48.25,56.300000000000004,0.96,0.13,791,1.7000000000000002,182,2.5
+2023,5,23,8,30,17.400000000000002,1.41,0.115,0.64,103,834,632,0,0,5.800000000000001,103,834,0,632,0.296,46.46,50.61,0.96,0.13,791,1.8,188,2.8000000000000003
+2023,5,23,9,0,17.900000000000002,1.43,0.14100000000000001,0.64,114,849,715,0,0,5.5,114,849,0,715,0.296,43.97,44.980000000000004,0.97,0.13,791,1.8,195,3.1
+2023,5,23,9,30,18.2,1.43,0.14100000000000001,0.64,125,861,790,0,0,5.5,125,861,29,790,0.295,43.15,39.47,0.97,0.13,791,1.8,199,3.5
+2023,5,23,10,0,18.5,1.45,0.17500000000000002,0.64,137,864,852,0,0,5.4,137,864,0,852,0.295,42.06,34.18,0.97,0.13,791,1.8,203,3.8000000000000003
+2023,5,23,10,30,18.6,1.45,0.17500000000000002,0.64,133,888,908,0,0,5.4,133,888,0,908,0.294,41.800000000000004,29.27,0.97,0.13,791,1.8,207,4
+2023,5,23,11,0,18.8,1.32,0.138,0.64,127,910,952,0,0,5.5,127,910,0,952,0.294,41.68,24.98,0.97,0.13,791,1.8,211,4.2
+2023,5,23,11,30,18.900000000000002,1.32,0.138,0.64,126,919,980,0,0,5.5,126,919,0,980,0.294,41.42,21.73,0.97,0.13,791,1.8,215,4.1000000000000005
+2023,5,23,12,0,19,1.35,0.127,0.64,124,925,993,0,0,5.7,127,914,0,986,0.293,41.79,20.03,0.97,0.13,790,1.8,220,4.1000000000000005
+2023,5,23,12,30,19,1.35,0.127,0.64,119,932,993,0,7,5.7,257,685,0,899,0.293,41.79,20.3,0.96,0.13,790,1.8,222,3.9000000000000004
+2023,5,23,13,0,19.1,1.35,0.10400000000000001,0.64,112,938,979,0,7,5.9,329,529,0,818,0.293,42.11,22.46,0.96,0.13,790,1.8,224,3.7
+2023,5,23,13,30,19.400000000000002,1.35,0.10400000000000001,0.64,103,945,952,0,7,5.9,363,440,0,758,0.293,41.33,26.03,0.96,0.13,790,1.8,220,3.5
+2023,5,23,14,0,19.8,1.2,0.067,0.64,91,953,912,0,7,5.800000000000001,225,653,0,788,0.294,39.980000000000004,30.52,0.96,0.13,790,1.8,216,3.4000000000000004
+2023,5,23,14,30,19.900000000000002,1.2,0.067,0.64,88,943,855,0,7,5.800000000000001,186,738,14,786,0.294,39.730000000000004,35.550000000000004,0.96,0.13,790,1.7000000000000002,212,3.3000000000000003
+2023,5,23,15,0,20.1,1.21,0.062,0.64,84,932,788,0,7,5.4,203,673,36,712,0.295,38.12,40.910000000000004,0.96,0.13,789,1.7000000000000002,207,3.3000000000000003
+2023,5,23,15,30,20,1.21,0.062,0.64,80,915,710,0,7,5.4,160,720,43,656,0.295,38.36,46.45,0.96,0.13,789,1.7000000000000002,204,3.2
+2023,5,23,16,0,19.900000000000002,1.21,0.057,0.64,75,892,623,0,7,5.1000000000000005,142,717,61,582,0.295,37.910000000000004,52.1,0.96,0.13,789,1.7000000000000002,201,3.1
+2023,5,23,16,30,19.6,1.21,0.057,0.64,70,861,529,0,7,5.1000000000000005,212,360,25,404,0.296,38.62,57.79,0.96,0.13,789,1.6,197,2.7
+2023,5,23,17,0,19.3,1.19,0.054,0.64,64,820,430,0,6,5.2,104,399,0,282,0.296,39.61,63.47,0.96,0.13,789,1.6,192,2.4000000000000004
+2023,5,23,17,30,18.400000000000002,1.19,0.054,0.64,58,764,330,0,7,5.2,99,390,0,238,0.296,41.89,69.11,0.96,0.13,789,1.6,181,1.7000000000000002
+2023,5,23,18,0,17.400000000000002,1.19,0.051000000000000004,0.64,49,683,230,0,6,8.5,73,56,0,88,0.296,55.74,74.67,0.96,0.13,789,1.6,170,1
+2023,5,23,18,30,16.1,1.19,0.051000000000000004,0.64,40,558,136,2,7,8.5,56,47,29,64,0.296,60.52,80.10000000000001,0.96,0.13,789,1.5,160,1
+2023,5,23,19,0,14.700000000000001,1.2,0.05,0.64,26,354,55,7,7,7.7,37,8,100,38,0.296,62.76,85.35000000000001,0.96,0.13,789,1.5,150,1.1
+2023,5,23,19,30,14.100000000000001,1.2,0.05,0.64,5,53,5,3,5,7.7,3,0,43,3,0.296,65.23,90.16,0.96,0.13,789,1.6,159,1.1
+2023,5,23,20,0,13.5,1.24,0.054,0.64,0,0,0,0,5,7,0,0,0,0,0.296,64.91,95.49,0.96,0.13,790,1.6,168,1.1
+2023,5,23,20,30,13.100000000000001,1.24,0.054,0.64,0,0,0,0,8,7,0,0,0,0,0.296,66.62,100.10000000000001,0.96,0.13,790,1.7000000000000002,187,1.1
+2023,5,23,21,0,12.700000000000001,1.26,0.057,0.64,0,0,0,0,3,6.9,0,0,0,0,0.296,67.99,104.37,0.96,0.13,790,1.7000000000000002,205,1.1
+2023,5,23,21,30,12.100000000000001,1.26,0.057,0.64,0,0,0,0,8,6.9,0,0,0,0,0.296,70.71000000000001,108.22,0.96,0.13,790,1.7000000000000002,222,1.2000000000000002
+2023,5,23,22,0,11.600000000000001,1.26,0.058,0.64,0,0,0,0,6,6.9,0,0,0,0,0.296,73.03,111.59,0.96,0.13,790,1.7000000000000002,238,1.4000000000000001
+2023,5,23,22,30,11,1.26,0.058,0.64,0,0,0,0,7,6.9,0,0,0,0,0.296,75.98,114.39,0.96,0.13,790,1.7000000000000002,248,1.4000000000000001
+2023,5,23,23,0,10.5,1.24,0.055,0.64,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.295,79.26,116.55,0.97,0.13,790,1.7000000000000002,258,1.4000000000000001
+2023,5,23,23,30,10,1.24,0.055,0.64,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.295,81.95,117.99000000000001,0.97,0.13,790,1.7000000000000002,262,1.3
+2023,5,24,0,0,9.5,1.23,0.054,0.64,0,0,0,0,7,7.2,0,0,0,0,0.295,85.34,118.67,0.97,0.13,790,1.7000000000000002,266,1.3
+2023,5,24,0,30,9.200000000000001,1.23,0.054,0.64,0,0,0,0,6,7.2,0,0,0,0,0.295,87.07000000000001,118.57000000000001,0.97,0.13,790,1.7000000000000002,265,1.2000000000000002
+2023,5,24,1,0,8.9,1.22,0.055,0.64,0,0,0,0,6,7.2,0,0,0,0,0.294,88.84,117.67,0.97,0.13,790,1.7000000000000002,263,1.1
+2023,5,24,1,30,8.700000000000001,1.22,0.055,0.64,0,0,0,0,6,7.2,0,0,0,0,0.295,90.05,116.02,0.97,0.13,790,1.8,254,1
+2023,5,24,2,0,8.5,1.22,0.061,0.64,0,0,0,0,4,7.1000000000000005,0,0,0,0,0.295,90.61,113.68,0.97,0.13,790,1.8,245,1
+2023,5,24,2,30,8.200000000000001,1.22,0.061,0.64,0,0,0,0,4,7.1000000000000005,0,0,0,0,0.295,92.47,110.71000000000001,0.97,0.13,790,1.8,239,1
+2023,5,24,3,0,8,1.22,0.07,0.64,0,0,0,0,4,6.9,0,0,0,0,0.296,92.97,107.2,0.97,0.13,790,1.8,233,1
+2023,5,24,3,30,7.800000000000001,1.22,0.07,0.64,0,0,0,0,5,7,0,0,0,0,0.297,94.36,103.23,0.97,0.13,791,1.8,232,1
+2023,5,24,4,0,7.6000000000000005,1.22,0.084,0.64,0,0,0,0,4,6.800000000000001,0,0,29,0,0.299,94.95,98.86,0.97,0.13,791,1.9000000000000001,230,1
+2023,5,24,4,30,8.1,1.22,0.084,0.64,0,0,0,0,5,6.800000000000001,0,0,0,0,0.299,91.78,94.17,0.97,0.13,791,1.9000000000000001,232,1
+2023,5,24,5,0,8.6,1.21,0.097,0.64,11,80,13,5,5,7.2,4,0,71,4,0.3,90.83,88.91,0.97,0.13,791,1.9000000000000001,234,0.9
+2023,5,24,5,30,9.3,1.21,0.097,0.64,36,322,70,5,5,7.2,39,1,71,39,0.301,86.64,83.92,0.97,0.13,791,1.9000000000000001,234,1.2000000000000002
+2023,5,24,6,0,10.100000000000001,1.21,0.10400000000000001,0.64,53,499,152,1,8,7.5,51,7,11,52,0.302,83.64,78.61,0.97,0.13,791,1.9000000000000001,234,1.4000000000000001
+2023,5,24,6,30,10.9,1.21,0.10400000000000001,0.64,65,624,246,0,8,7.5,81,16,0,86,0.303,79.3,73.14,0.96,0.13,791,1.9000000000000001,221,1.4000000000000001
+2023,5,24,7,0,11.700000000000001,1.2,0.098,0.64,74,713,346,0,7,7.7,88,10,0,92,0.304,76.29,67.56,0.96,0.13,791,1.8,208,1.4000000000000001
+2023,5,24,7,30,12.700000000000001,1.2,0.098,0.64,81,779,448,0,7,7.7,188,254,0,308,0.305,71.45,61.9,0.96,0.13,791,1.8,197,2
+2023,5,24,8,0,13.700000000000001,1.2,0.088,0.64,85,831,547,0,8,7.7,238,151,7,322,0.305,67.02,56.21,0.96,0.13,791,1.8,187,2.5
+2023,5,24,8,30,14.8,1.2,0.088,0.64,89,867,640,0,8,7.7,190,164,0,294,0.305,62.35,50.52,0.9500000000000001,0.13,790,1.7000000000000002,190,2.9000000000000004
+2023,5,24,9,0,15.9,1.2,0.082,0.64,91,897,726,0,8,7.5,266,120,0,351,0.305,57.480000000000004,44.89,0.9500000000000001,0.13,790,1.7000000000000002,194,3.4000000000000004
+2023,5,24,9,30,17.1,1.2,0.082,0.64,93,921,805,0,7,7.5,239,151,0,356,0.305,53.27,39.37,0.9500000000000001,0.13,790,1.7000000000000002,199,3.6
+2023,5,24,10,0,18.3,1.2,0.074,0.64,93,940,872,0,7,7.4,144,1,0,145,0.305,49.14,34.07,0.9500000000000001,0.13,790,1.7000000000000002,205,3.8000000000000003
+2023,5,24,10,30,19.200000000000003,1.2,0.074,0.64,92,957,928,0,8,7.4,351,165,0,495,0.305,46.47,29.14,0.9500000000000001,0.13,790,1.7000000000000002,207,3.9000000000000004
+2023,5,24,11,0,20.1,1.04,0.057,0.64,89,972,971,0,0,7.1000000000000005,188,813,0,926,0.305,42.910000000000004,24.84,0.9500000000000001,0.13,789,1.7000000000000002,210,3.9000000000000004
+2023,5,24,11,30,20.5,1.04,0.057,0.64,90,976,998,0,0,7.1000000000000005,90,976,0,998,0.305,41.87,21.56,0.9500000000000001,0.13,789,1.7000000000000002,210,3.9000000000000004
+2023,5,24,12,0,20.900000000000002,1.05,0.059000000000000004,0.64,91,978,1011,0,0,6.6000000000000005,91,978,0,1011,0.304,39.35,19.85,0.9500000000000001,0.13,789,1.6,210,3.9000000000000004
+2023,5,24,12,30,21,1.05,0.059000000000000004,0.64,92,977,1009,0,0,6.6000000000000005,92,977,0,1009,0.304,39.11,20.11,0.9500000000000001,0.13,789,1.6,210,3.7
+2023,5,24,13,0,21.1,1.07,0.062,0.64,92,973,992,0,0,5.9,123,917,0,972,0.304,37.1,22.28,0.9500000000000001,0.13,788,1.6,209,3.6
+2023,5,24,13,30,21.200000000000003,1.07,0.062,0.64,92,966,961,0,0,5.9,266,643,0,845,0.305,36.87,25.87,0.9500000000000001,0.13,788,1.7000000000000002,209,3.4000000000000004
+2023,5,24,14,0,21.400000000000002,1.05,0.064,0.64,91,956,916,0,6,5.2,392,284,0,637,0.306,34.800000000000004,30.37,0.96,0.13,788,1.7000000000000002,210,3.1
+2023,5,24,14,30,21.400000000000002,1.05,0.064,0.64,91,941,858,0,9,5.2,166,19,0,181,0.307,34.800000000000004,35.410000000000004,0.96,0.13,788,1.6,208,2.9000000000000004
+2023,5,24,15,0,21.3,1.05,0.075,0.64,90,920,787,0,9,4.7,69,0,0,69,0.307,33.67,40.77,0.96,0.13,787,1.6,207,2.6
+2023,5,24,15,30,21.200000000000003,1.05,0.075,0.64,87,899,708,0,6,4.7,259,111,0,336,0.308,33.88,46.32,0.96,0.13,787,1.6,201,2.4000000000000004
+2023,5,24,16,0,21.1,1.01,0.075,0.64,83,872,620,0,6,4.4,260,367,7,486,0.309,33.38,51.980000000000004,0.9500000000000001,0.13,787,1.6,195,2.2
+2023,5,24,16,30,20.700000000000003,1.01,0.075,0.64,78,837,526,0,6,4.4,193,441,7,429,0.309,34.2,57.660000000000004,0.9500000000000001,0.13,787,1.6,184,2
+2023,5,24,17,0,20.3,0.98,0.074,0.64,73,792,428,0,6,4.3,164,452,25,367,0.309,34.95,63.35,0.9500000000000001,0.13,787,1.6,174,1.9000000000000001
+2023,5,24,17,30,19.400000000000002,0.98,0.074,0.64,65,731,327,0,6,4.3,157,248,0,246,0.309,36.95,68.98,0.9400000000000001,0.13,787,1.5,151,1.7000000000000002
+2023,5,24,18,0,18.5,0.98,0.07200000000000001,0.64,56,646,228,0,6,6.1000000000000005,137,98,0,163,0.309,44.39,74.54,0.9400000000000001,0.13,787,1.5,129,1.5
+2023,5,24,18,30,16.900000000000002,0.98,0.07200000000000001,0.64,44,517,134,2,7,6.1000000000000005,91,106,29,109,0.309,49.08,79.97,0.9400000000000001,0.13,787,1.5,118,1.6
+2023,5,24,19,0,15.3,0.99,0.07,0.64,29,311,55,7,7,7.4,40,10,100,41,0.309,59.13,85.21000000000001,0.9400000000000001,0.13,788,1.4000000000000001,107,1.7000000000000002
+2023,5,24,19,30,14.3,0.99,0.07,0.64,6,42,6,3,6,7.4,3,0,43,3,0.308,63.050000000000004,90.03,0.9400000000000001,0.13,788,1.4000000000000001,109,1.9000000000000001
+2023,5,24,20,0,13.4,1.04,0.07200000000000001,0.64,0,0,0,0,9,7.300000000000001,0,0,0,0,0.308,66.64,95.34,0.9400000000000001,0.13,788,1.3,110,2.1
+2023,5,24,20,30,12.700000000000001,1.04,0.07200000000000001,0.64,0,0,0,0,6,7.300000000000001,0,0,0,0,0.307,69.75,99.94,0.93,0.13,788,1.3,115,1.8
+2023,5,24,21,0,11.9,1.08,0.078,0.64,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.306,72.24,104.2,0.93,0.13,788,1.2000000000000002,121,1.6
+2023,5,24,21,30,11.4,1.08,0.078,0.64,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.305,74.65,108.05,0.93,0.13,788,1.2000000000000002,128,1.4000000000000001
+2023,5,24,22,0,10.8,1.08,0.08600000000000001,0.64,0,0,0,0,0,6.5,0,0,0,0,0.304,75,111.41,0.93,0.13,788,1.2000000000000002,134,1.2000000000000002
+2023,5,24,22,30,10.5,1.08,0.08600000000000001,0.64,0,0,0,0,0,6.5,0,0,0,0,0.304,76.51,114.21000000000001,0.93,0.13,788,1.2000000000000002,138,1.1
+2023,5,24,23,0,10.100000000000001,1.06,0.09,0.64,0,0,0,0,5,6,0,0,0,0,0.304,75.51,116.36,0.93,0.13,788,1.1,142,1
+2023,5,24,23,30,9.9,1.06,0.09,0.64,0,0,0,0,5,6,0,0,0,0,0.305,76.53,117.81,0.93,0.13,788,1.1,144,1
+2023,5,25,0,0,9.700000000000001,1.02,0.09,0.64,0,0,0,0,5,5.300000000000001,0,0,0,0,0.306,73.82000000000001,118.49000000000001,0.93,0.13,787,1.1,145,0.9
+2023,5,25,0,30,9.600000000000001,1.02,0.09,0.64,0,0,0,0,0,5.300000000000001,0,0,0,0,0.307,74.32000000000001,118.38,0.93,0.13,787,1.2000000000000002,145,0.8
+2023,5,25,1,0,9.5,1,0.08600000000000001,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,71.06,117.49000000000001,0.93,0.13,787,1.2000000000000002,145,0.8
+2023,5,25,1,30,9.3,1,0.08600000000000001,0.64,0,0,0,0,0,4.5,0,0,0,0,0.308,72.02,115.85000000000001,0.93,0.13,787,1.2000000000000002,143,0.7000000000000001
+2023,5,25,2,0,9.200000000000001,0.99,0.088,0.64,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.308,69.61,113.52,0.93,0.13,787,1.2000000000000002,141,0.5
+2023,5,25,2,30,9,0.99,0.088,0.64,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.308,70.64,110.56,0.93,0.13,788,1.2000000000000002,127,0.5
+2023,5,25,3,0,8.8,1,0.095,0.64,0,0,0,0,0,3.5,0,0,0,0,0.309,69.61,107.06,0.9400000000000001,0.13,788,1.2000000000000002,113,0.4
+2023,5,25,3,30,8.5,1,0.095,0.64,0,0,0,0,0,3.5,0,0,0,0,0.309,71.03,103.10000000000001,0.9400000000000001,0.13,788,1.2000000000000002,98,0.4
+2023,5,25,4,0,8.200000000000001,1.01,0.098,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.309,71.93,98.74000000000001,0.9400000000000001,0.13,788,1.2000000000000002,83,0.5
+2023,5,25,4,30,8.200000000000001,1.01,0.098,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.31,71.93,94.06,0.9400000000000001,0.13,788,1.2000000000000002,84,0.5
+2023,5,25,5,0,8.200000000000001,1.02,0.099,0.64,12,79,14,3,5,3.9000000000000004,10,47,43,11,0.311,74.24,88.81,0.9400000000000001,0.13,788,1.2000000000000002,85,0.6000000000000001
+2023,5,25,5,30,9.3,1.02,0.099,0.64,36,330,72,1,0,3.9000000000000004,39,282,11,69,0.313,68.93,83.82000000000001,0.9400000000000001,0.13,788,1.2000000000000002,87,0.8
+2023,5,25,6,0,10.5,1,0.1,0.64,53,516,156,0,0,3.6,53,516,0,156,0.315,62.47,78.52,0.9400000000000001,0.13,788,1.2000000000000002,89,1.1
+2023,5,25,6,30,12.100000000000001,1,0.1,0.64,65,640,252,0,0,3.6,65,640,0,252,0.318,56.21,73.05,0.93,0.13,788,1.2000000000000002,117,0.9
+2023,5,25,7,0,13.8,0.96,0.099,0.64,75,726,353,0,0,2.7,100,535,0,305,0.32,47.19,67.47,0.93,0.13,788,1.2000000000000002,145,0.6000000000000001
+2023,5,25,7,30,16,0.96,0.099,0.64,83,787,455,0,0,2.7,90,763,0,450,0.321,40.980000000000004,61.81,0.93,0.13,788,1.2000000000000002,177,1.1
+2023,5,25,8,0,18.2,0.92,0.099,0.64,90,832,554,0,0,1.5,123,745,14,538,0.322,32.71,56.120000000000005,0.93,0.13,788,1.2000000000000002,208,1.6
+2023,5,25,8,30,19.5,0.92,0.099,0.64,97,864,647,0,5,1.5,136,182,7,252,0.321,30.17,50.43,0.93,0.13,788,1.2000000000000002,208,1.9000000000000001
+2023,5,25,9,0,20.700000000000003,0.92,0.10400000000000001,0.64,102,888,732,0,0,1.8,201,544,0,587,0.32,28.490000000000002,44.800000000000004,0.93,0.13,788,1.2000000000000002,208,2.2
+2023,5,25,9,30,21.5,0.92,0.10400000000000001,0.64,107,905,808,0,8,1.8,243,639,0,738,0.319,27.13,39.27,0.93,0.13,788,1.3,208,2.5
+2023,5,25,10,0,22.3,0.93,0.113,0.64,113,917,874,0,7,2.2,278,603,0,778,0.317,26.67,33.96,0.93,0.13,788,1.3,209,2.7
+2023,5,25,10,30,22.6,0.93,0.113,0.64,116,929,928,0,0,2.2,255,706,0,872,0.317,26.19,29.02,0.9400000000000001,0.13,788,1.3,211,3.1
+2023,5,25,11,0,23,0.8200000000000001,0.106,0.64,116,939,969,0,8,2.5,255,684,0,876,0.316,26.080000000000002,24.7,0.9400000000000001,0.13,788,1.4000000000000001,214,3.4000000000000004
+2023,5,25,11,30,23,0.8200000000000001,0.106,0.64,116,945,996,0,7,2.5,244,701,0,897,0.315,26.080000000000002,21.400000000000002,0.9400000000000001,0.13,788,1.4000000000000001,218,3.7
+2023,5,25,12,0,22.900000000000002,0.86,0.10300000000000001,0.64,115,947,1007,0,7,2.6,221,731,0,909,0.314,26.46,19.67,0.9400000000000001,0.13,788,1.4000000000000001,222,3.9000000000000004
+2023,5,25,12,30,22.700000000000003,0.86,0.10300000000000001,0.64,115,947,1005,0,7,2.6,196,779,0,928,0.314,26.78,19.93,0.9400000000000001,0.13,788,1.5,225,4
+2023,5,25,13,0,22.400000000000002,0.91,0.1,0.64,113,944,988,0,7,2.9000000000000004,251,690,0,890,0.313,27.82,22.11,0.9400000000000001,0.13,787,1.5,229,4.1000000000000005
+2023,5,25,13,30,22.200000000000003,0.91,0.1,0.64,112,937,956,0,7,2.9000000000000004,327,540,0,814,0.313,28.16,25.71,0.9500000000000001,0.13,787,1.5,230,4
+2023,5,25,14,0,22,0.9400000000000001,0.10200000000000001,0.64,110,927,911,0,6,3.3000000000000003,385,286,0,632,0.312,29.37,30.22,0.9500000000000001,0.13,787,1.6,231,3.9000000000000004
+2023,5,25,14,30,21.900000000000002,0.9400000000000001,0.10200000000000001,0.64,108,914,854,0,9,3.3000000000000003,181,3,0,183,0.312,29.55,35.27,0.9500000000000001,0.13,787,1.6,230,3.8000000000000003
+2023,5,25,15,0,21.8,0.91,0.101,0.64,104,897,785,0,9,3.5,128,1,0,129,0.312,30.17,40.64,0.9500000000000001,0.13,787,1.5,228,3.7
+2023,5,25,15,30,21.6,0.91,0.101,0.64,100,876,706,0,7,3.5,210,476,32,539,0.312,30.54,46.2,0.9500000000000001,0.13,787,1.5,225,3.6
+2023,5,25,16,0,21.400000000000002,0.88,0.099,0.64,94,850,619,0,7,3.6,182,609,39,558,0.312,31.080000000000002,51.85,0.9500000000000001,0.13,786,1.5,223,3.5
+2023,5,25,16,30,21.200000000000003,0.88,0.099,0.64,88,816,526,0,7,3.6,169,549,36,464,0.311,31.46,57.54,0.9500000000000001,0.13,786,1.5,221,3.3000000000000003
+2023,5,25,17,0,20.900000000000002,0.86,0.092,0.64,79,772,427,0,0,3.5,91,732,18,421,0.311,31.91,63.22,0.9400000000000001,0.13,786,1.4000000000000001,219,3.2
+2023,5,25,17,30,19.900000000000002,0.86,0.092,0.64,70,712,327,0,8,3.5,98,496,25,277,0.311,33.93,68.86,0.9400000000000001,0.13,786,1.4000000000000001,220,2.3000000000000003
+2023,5,25,18,0,19,0.87,0.084,0.64,59,628,228,0,8,6.4,81,458,39,204,0.311,43.9,74.41,0.9400000000000001,0.13,786,1.4000000000000001,221,1.5
+2023,5,25,18,30,17.6,0.87,0.084,0.64,47,499,135,2,6,6.4,43,119,36,64,0.31,47.910000000000004,79.83,0.9400000000000001,0.13,786,1.4000000000000001,219,1.3
+2023,5,25,19,0,16.1,0.92,0.078,0.64,30,298,56,7,6,6.800000000000001,33,3,100,33,0.31,54.03,85.08,0.9400000000000001,0.13,786,1.4000000000000001,218,1.1
+2023,5,25,19,30,15.600000000000001,0.92,0.078,0.64,6,39,6,4,8,6.800000000000001,4,0,57,4,0.31,55.78,89.91,0.9400000000000001,0.13,786,1.3,214,1.1
+2023,5,25,20,0,15.100000000000001,0.97,0.07100000000000001,0.64,0,0,0,0,3,5.7,0,0,0,0,0.31,53.58,95.2,0.9400000000000001,0.13,786,1.3,209,1.2000000000000002
+2023,5,25,20,30,14.5,0.97,0.07100000000000001,0.64,0,0,0,0,0,5.7,0,0,0,0,0.31,55.69,99.79,0.9400000000000001,0.13,786,1.2000000000000002,207,1.2000000000000002
+2023,5,25,21,0,13.9,0.99,0.063,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.31,55.44,104.04,0.93,0.13,786,1.2000000000000002,205,1.3
+2023,5,25,21,30,13.200000000000001,0.99,0.063,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.31,58.02,107.88,0.93,0.13,786,1.1,204,1.3
+2023,5,25,22,0,12.600000000000001,0.9500000000000001,0.056,0.64,0,0,0,0,0,4.4,0,0,0,0,0.31,57.38,111.24000000000001,0.93,0.13,786,1.1,203,1.3
+2023,5,25,22,30,12,0.9500000000000001,0.056,0.64,0,0,0,0,0,4.4,0,0,0,0,0.31,59.68,114.03,0.93,0.13,786,1,200,1.3
+2023,5,25,23,0,11.4,0.9,0.055,0.64,0,0,0,0,0,3.7,0,0,0,0,0.31,59.31,116.19,0.93,0.13,786,1,197,1.3
+2023,5,25,23,30,10.9,0.9,0.055,0.64,0,0,0,0,0,3.7,0,0,0,0,0.31,61.300000000000004,117.63,0.93,0.13,786,1,194,1.2000000000000002
+2023,5,26,0,0,10.5,0.88,0.059000000000000004,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.31,60.95,118.31,0.93,0.13,786,1,190,1.2000000000000002
+2023,5,26,0,30,10.200000000000001,0.88,0.059000000000000004,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.311,62.18,118.21000000000001,0.93,0.13,786,1,187,1.1
+2023,5,26,1,0,9.9,0.91,0.065,0.64,0,0,0,0,0,3.1,0,0,0,0,0.311,62.46,117.32000000000001,0.93,0.13,786,1.1,184,0.9
+2023,5,26,1,30,9.600000000000001,0.91,0.065,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,63.730000000000004,115.69,0.9400000000000001,0.13,786,1.1,184,0.9
+2023,5,26,2,0,9.4,0.97,0.08,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,64.65,113.36,0.9400000000000001,0.13,786,1.1,184,0.8
+2023,5,26,2,30,9.200000000000001,0.97,0.08,0.64,0,0,0,0,0,3.1,0,0,0,0,0.312,65.61,110.41,0.9400000000000001,0.13,787,1.1,189,0.7000000000000001
+2023,5,26,3,0,9.1,1,0.08700000000000001,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.312,66.93,106.92,0.9500000000000001,0.13,787,1.2000000000000002,194,0.7000000000000001
+2023,5,26,3,30,8.9,1,0.08700000000000001,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.313,67.83,102.97,0.9400000000000001,0.13,787,1.2000000000000002,206,0.6000000000000001
+2023,5,26,4,0,8.700000000000001,1.01,0.09,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.313,69.10000000000001,98.62,0.9400000000000001,0.13,787,1.2000000000000002,217,0.5
+2023,5,26,4,30,9,1.01,0.09,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.314,67.72,93.95,0.9400000000000001,0.13,787,1.2000000000000002,229,0.4
+2023,5,26,5,0,9.3,1.02,0.092,0.64,13,88,15,0,0,3.8000000000000003,13,88,0,15,0.314,68.61,88.72,0.9400000000000001,0.13,788,1.2000000000000002,241,0.30000000000000004
+2023,5,26,5,30,10.600000000000001,1.02,0.092,0.64,36,348,74,0,0,3.8000000000000003,36,348,0,74,0.314,62.9,83.73,0.9400000000000001,0.13,788,1.2000000000000002,192,0.30000000000000004
+2023,5,26,6,0,11.9,1.02,0.092,0.64,52,533,159,0,0,3.6,52,533,0,159,0.315,56.63,78.43,0.9400000000000001,0.13,788,1.2000000000000002,144,0.4
+2023,5,26,6,30,13.700000000000001,1.02,0.092,0.64,63,655,255,0,0,3.6,63,655,0,255,0.314,50.35,72.96000000000001,0.93,0.13,788,1.2000000000000002,155,0.8
+2023,5,26,7,0,15.5,1.01,0.091,0.64,72,739,356,0,0,2.9000000000000004,72,739,0,356,0.314,42.68,67.38,0.93,0.13,789,1.2000000000000002,166,1.2000000000000002
+2023,5,26,7,30,16.900000000000002,1.01,0.091,0.64,81,797,458,0,0,2.9000000000000004,83,785,0,455,0.314,39.04,61.730000000000004,0.93,0.13,789,1.2000000000000002,175,1.8
+2023,5,26,8,0,18.3,1.01,0.093,0.64,86,841,556,0,0,2.3000000000000003,127,727,0,533,0.315,34.27,56.04,0.93,0.13,789,1.2000000000000002,183,2.4000000000000004
+2023,5,26,8,30,19.3,1.01,0.093,0.64,92,874,650,0,0,2.3000000000000003,180,647,0,593,0.315,32.21,50.35,0.93,0.13,789,1.2000000000000002,188,3.1
+2023,5,26,9,0,20.200000000000003,0.99,0.094,0.64,97,899,736,0,8,2.3000000000000003,290,401,0,575,0.316,30.560000000000002,44.71,0.93,0.13,789,1.2000000000000002,194,3.7
+2023,5,26,9,30,21,0.99,0.094,0.64,101,920,814,0,7,2.3000000000000003,361,275,0,574,0.317,29.09,39.18,0.93,0.13,789,1.2000000000000002,197,4.3
+2023,5,26,10,0,21.700000000000003,0.96,0.093,0.64,103,936,880,0,7,2.5,335,443,0,703,0.318,28.23,33.86,0.93,0.13,788,1.2000000000000002,200,4.800000000000001
+2023,5,26,10,30,22.200000000000003,0.96,0.093,0.64,103,952,936,0,8,2.5,346,522,0,803,0.318,27.38,28.91,0.93,0.13,788,1.2000000000000002,203,5.2
+2023,5,26,11,0,22.700000000000003,0.64,0.075,0.64,100,968,980,0,7,2.3000000000000003,241,711,0,888,0.318,26.11,24.57,0.93,0.13,788,1.2000000000000002,205,5.6000000000000005
+2023,5,26,11,30,23,0.64,0.075,0.64,101,973,1008,0,3,2.3000000000000003,339,582,0,881,0.318,25.64,21.25,0.93,0.13,788,1.2000000000000002,207,5.800000000000001
+2023,5,26,12,0,23.400000000000002,0.61,0.076,0.64,102,975,1021,0,0,1.3,171,866,0,987,0.318,23.44,19.5,0.93,0.13,788,1.2000000000000002,209,5.9
+2023,5,26,12,30,23.700000000000003,0.61,0.076,0.64,102,975,1020,0,0,1.3,144,907,0,998,0.317,23.02,19.76,0.93,0.13,788,1.2000000000000002,211,6
+2023,5,26,13,0,23.900000000000002,0.59,0.076,0.64,101,973,1004,0,0,0.1,147,890,0,973,0.317,20.72,21.94,0.93,0.13,788,1.1,212,6.1000000000000005
+2023,5,26,13,30,24.1,0.59,0.076,0.64,101,967,973,0,0,0,231,709,0,871,0.317,20.45,25.55,0.93,0.13,787,1.1,212,6.1000000000000005
+2023,5,26,14,0,24.200000000000003,0.44,0.073,0.64,99,959,929,0,0,-1.2000000000000002,187,790,0,871,0.317,18.580000000000002,30.080000000000002,0.93,0.13,787,1.1,213,6
+2023,5,26,14,30,24,0.44,0.073,0.64,98,947,872,0,0,-1.2000000000000002,126,882,0,847,0.317,18.8,35.14,0.93,0.13,787,1.1,212,6
+2023,5,26,15,0,23.900000000000002,0.44,0.075,0.64,94,931,802,0,0,-2.2,102,912,0,795,0.317,17.55,40.52,0.93,0.13,787,1,212,5.9
+2023,5,26,15,30,23.6,0.44,0.075,0.64,91,911,723,0,0,-2.2,116,854,18,708,0.316,17.87,46.08,0.93,0.13,787,1,211,5.800000000000001
+2023,5,26,16,0,23.200000000000003,0.46,0.075,0.64,86,884,634,0,8,-3,143,754,61,610,0.316,17.23,51.730000000000004,0.93,0.13,787,1,210,5.6000000000000005
+2023,5,26,16,30,22.700000000000003,0.46,0.075,0.64,81,852,540,0,7,-3,123,726,61,514,0.316,17.740000000000002,57.42,0.93,0.13,786,1,208,5.300000000000001
+2023,5,26,17,0,22.1,0.48,0.073,0.64,74,808,440,0,7,-3.8000000000000003,108,701,71,425,0.316,17.38,63.1,0.93,0.13,786,0.9,207,5
+2023,5,26,17,30,21,0.48,0.073,0.64,67,747,338,0,7,-3.8000000000000003,126,485,32,302,0.315,18.580000000000002,68.73,0.93,0.13,786,0.9,204,4
+2023,5,26,18,0,19.900000000000002,0.53,0.07100000000000001,0.64,58,660,237,0,7,-2.1,108,343,14,201,0.315,22.64,74.28,0.93,0.13,786,0.9,202,2.9000000000000004
+2023,5,26,18,30,17.5,0.53,0.07100000000000001,0.64,47,518,140,2,8,-2.1,79,247,50,123,0.315,26.29,79.7,0.93,0.13,786,0.9,199,2.2
+2023,5,26,19,0,15.100000000000001,0.65,0.081,0.64,32,296,58,7,7,1.4000000000000001,46,22,100,48,0.315,39.43,84.94,0.9400000000000001,0.13,786,0.9,195,1.5
+2023,5,26,19,30,14.8,0.65,0.081,0.64,6,37,6,4,7,1.4000000000000001,5,0,57,5,0.315,40.2,89.79,0.9500000000000001,0.13,786,1,193,1.9000000000000001
+2023,5,26,20,0,14.4,0.79,0.108,0.64,0,0,0,0,7,0.9,0,0,0,0,0.314,39.9,95.05,0.96,0.13,786,1,191,2.2
+2023,5,26,20,30,14.600000000000001,0.79,0.108,0.64,0,0,0,0,8,0.9,0,0,0,0,0.314,39.44,99.64,0.96,0.13,787,1.1,186,2.8000000000000003
+2023,5,26,21,0,14.700000000000001,0.8200000000000001,0.11800000000000001,0.64,0,0,0,0,5,0.6000000000000001,0,0,0,0,0.314,38.21,103.89,0.96,0.13,787,1.2000000000000002,181,3.4000000000000004
+2023,5,26,21,30,14,0.8200000000000001,0.11800000000000001,0.64,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.315,39.97,107.72,0.9500000000000001,0.13,787,1.2000000000000002,170,2.9000000000000004
+2023,5,26,22,0,13.200000000000001,0.71,0.089,0.64,0,0,0,0,0,2,0,0,0,0,0.315,46.51,111.07000000000001,0.9400000000000001,0.13,787,1.2000000000000002,159,2.5
+2023,5,26,22,30,12.100000000000001,0.71,0.089,0.64,0,0,0,0,0,2,0,0,0,0,0.316,49.980000000000004,113.86,0.93,0.13,787,1.1,153,2.1
+2023,5,26,23,0,11,0.61,0.07200000000000001,0.64,0,0,0,0,0,2.7,0,0,0,0,0.316,56.52,116.01,0.93,0.13,787,1.1,148,1.6
+2023,5,26,23,30,10.700000000000001,0.61,0.07200000000000001,0.64,0,0,0,0,3,2.7,0,0,0,0,0.317,57.660000000000004,117.46000000000001,0.93,0.13,787,1.1,152,1.5
+2023,5,27,0,0,10.4,0.63,0.076,0.64,0,0,0,0,8,2.8000000000000003,0,0,0,0,0.317,59.33,118.14,0.93,0.13,787,1.1,156,1.4000000000000001
+2023,5,27,0,30,10.200000000000001,0.63,0.076,0.64,0,0,0,0,8,2.8000000000000003,0,0,0,0,0.317,60.13,118.04,0.93,0.13,787,1,161,1.2000000000000002
+2023,5,27,1,0,10,0.64,0.081,0.64,0,0,0,0,8,3.1,0,0,0,0,0.317,62.02,117.16,0.93,0.13,787,1,165,1.1
+2023,5,27,1,30,9.5,0.64,0.081,0.64,0,0,0,0,0,3.1,0,0,0,0,0.318,64.13,115.53,0.93,0.13,787,1,160,1
+2023,5,27,2,0,9.1,0.65,0.083,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.319,67.03,113.21000000000001,0.93,0.13,787,1,154,1
+2023,5,27,2,30,8.5,0.65,0.083,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.32,69.79,110.28,0.93,0.13,787,1,148,1.1
+2023,5,27,3,0,8,0.66,0.084,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.321,72.9,106.79,0.93,0.13,787,1,143,1.1
+2023,5,27,3,30,7.5,0.66,0.084,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.322,75.43,102.85000000000001,0.93,0.13,787,1,142,1.1
+2023,5,27,4,0,7,0.66,0.084,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.323,77.11,98.51,0.93,0.13,787,1,141,1.1
+2023,5,27,4,30,7.300000000000001,0.66,0.084,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.324,75.55,93.84,0.93,0.13,787,1,144,1.3
+2023,5,27,5,0,7.6000000000000005,0.67,0.085,0.64,13,86,15,0,0,3.4000000000000004,13,86,0,15,0.324,74.5,88.62,0.93,0.13,787,1,147,1.4000000000000001
+2023,5,27,5,30,9,0.67,0.085,0.64,37,349,76,0,0,3.4000000000000004,37,349,0,76,0.325,67.76,83.63,0.93,0.13,787,1,148,1.7000000000000002
+2023,5,27,6,0,10.4,0.68,0.08600000000000001,0.64,52,538,161,0,0,3.3000000000000003,52,538,0,161,0.327,61.24,78.34,0.93,0.13,787,1,148,2
+2023,5,27,6,30,12.700000000000001,0.68,0.08600000000000001,0.64,64,660,258,0,0,3.3000000000000003,64,660,0,258,0.328,52.620000000000005,72.88,0.93,0.13,787,1,168,2.2
+2023,5,27,7,0,15,0.7000000000000001,0.08700000000000001,0.64,73,743,360,0,0,1.4000000000000001,73,743,0,360,0.329,39.71,67.3,0.93,0.13,787,1,188,2.4000000000000004
+2023,5,27,7,30,16.7,0.7000000000000001,0.08700000000000001,0.64,81,801,461,0,0,1.4000000000000001,147,604,0,434,0.33,35.63,61.65,0.93,0.13,787,1,196,2.9000000000000004
+2023,5,27,8,0,18.400000000000002,0.71,0.091,0.64,88,842,559,0,0,-0.5,130,740,0,544,0.331,27.94,55.96,0.93,0.13,788,1.1,204,3.5
+2023,5,27,8,30,19.200000000000003,0.71,0.091,0.64,94,875,653,0,0,-0.5,171,691,0,613,0.332,26.580000000000002,50.27,0.93,0.13,788,1.1,206,3.9000000000000004
+2023,5,27,9,0,20.1,0.73,0.095,0.64,99,898,738,0,3,-0.6000000000000001,338,401,0,623,0.332,24.94,44.63,0.93,0.13,788,1.1,207,4.3
+2023,5,27,9,30,20.6,0.73,0.095,0.64,105,915,815,0,0,-0.6000000000000001,288,561,0,723,0.333,24.19,39.1,0.9400000000000001,0.13,788,1.1,208,4.5
+2023,5,27,10,0,21.200000000000003,0.78,0.105,0.64,111,926,881,0,0,-0.6000000000000001,111,926,0,881,0.334,23.29,33.77,0.9400000000000001,0.13,788,1.1,209,4.7
+2023,5,27,10,30,21.400000000000002,0.78,0.105,0.64,111,941,936,0,8,-0.6000000000000001,305,548,4,785,0.335,23.01,28.8,0.9400000000000001,0.13,788,1.1,211,4.800000000000001
+2023,5,27,11,0,21.700000000000003,0.65,0.092,0.64,109,954,978,0,6,-0.8,363,317,0,652,0.335,22.19,24.44,0.9400000000000001,0.13,787,1.2000000000000002,212,4.800000000000001
+2023,5,27,11,30,21.6,0.65,0.092,0.64,111,958,1005,0,6,-0.8,431,63,0,490,0.336,22.330000000000002,21.1,0.9400000000000001,0.13,787,1.2000000000000002,214,4.800000000000001
+2023,5,27,12,0,21.6,0.68,0.094,0.64,112,959,1017,0,6,-0.7000000000000001,291,38,0,327,0.337,22.53,19.34,0.9400000000000001,0.13,787,1.2000000000000002,216,4.7
+2023,5,27,12,30,21.6,0.68,0.094,0.64,112,957,1014,0,6,-0.7000000000000001,308,317,0,607,0.338,22.53,19.59,0.9400000000000001,0.13,787,1.2000000000000002,219,4.7
+2023,5,27,13,0,21.6,0.7000000000000001,0.094,0.64,112,953,997,0,6,-0.30000000000000004,437,352,0,764,0.339,23.240000000000002,21.78,0.9400000000000001,0.13,787,1.2000000000000002,221,4.6000000000000005
+2023,5,27,13,30,21.400000000000002,0.7000000000000001,0.094,0.64,112,943,964,0,6,-0.30000000000000004,425,219,0,623,0.339,23.53,25.400000000000002,0.9400000000000001,0.13,787,1.3,225,4.5
+2023,5,27,14,0,21.3,0.8200000000000001,0.106,0.64,114,928,918,0,6,0.2,378,35,0,408,0.34,24.57,29.94,0.9500000000000001,0.13,787,1.3,229,4.3
+2023,5,27,14,30,20.8,0.8200000000000001,0.106,0.64,112,913,860,0,8,0.2,373,291,0,611,0.34,25.330000000000002,35.01,0.9500000000000001,0.13,787,1.3,234,4
+2023,5,27,15,0,20.400000000000002,0.87,0.11,0.64,110,893,790,0,8,0.8,268,564,0,698,0.339,27.02,40.39,0.9500000000000001,0.13,788,1.4000000000000001,239,3.7
+2023,5,27,15,30,19.8,0.87,0.11,0.64,105,870,710,0,8,0.8,245,599,7,661,0.339,28.04,45.95,0.9500000000000001,0.13,788,1.4000000000000001,245,3.3000000000000003
+2023,5,27,16,0,19.200000000000003,0.91,0.112,0.64,100,839,621,0,3,1.3,241,454,14,523,0.338,30.21,51.61,0.9500000000000001,0.13,788,1.4000000000000001,251,2.9000000000000004
+2023,5,27,16,30,18.5,0.91,0.112,0.64,94,799,526,0,8,1.3,192,559,32,494,0.337,31.560000000000002,57.300000000000004,0.9500000000000001,0.13,788,1.4000000000000001,259,2.4000000000000004
+2023,5,27,17,0,17.900000000000002,0.98,0.115,0.64,88,747,427,0,0,1.7000000000000002,115,682,0,425,0.337,33.660000000000004,62.980000000000004,0.9500000000000001,0.13,788,1.4000000000000001,268,1.9000000000000001
+2023,5,27,17,30,17.2,0.98,0.115,0.64,79,681,327,0,0,1.7000000000000002,79,681,0,327,0.336,35.18,68.61,0.9500000000000001,0.13,788,1.4000000000000001,286,1.4000000000000001
+2023,5,27,18,0,16.5,1.04,0.113,0.64,67,591,228,0,0,2.9000000000000004,67,591,0,228,0.335,40.01,74.16,0.9500000000000001,0.13,789,1.4000000000000001,304,0.8
+2023,5,27,18,30,15.600000000000001,1.04,0.113,0.64,52,465,136,0,0,2.8000000000000003,52,465,0,136,0.334,42.36,79.58,0.9500000000000001,0.13,789,1.4000000000000001,168,0.7000000000000001
+2023,5,27,19,0,14.600000000000001,1.09,0.105,0.64,33,274,58,0,0,5.300000000000001,33,274,0,58,0.333,53.53,84.81,0.9500000000000001,0.13,789,1.4000000000000001,31,0.5
+2023,5,27,19,30,13.8,1.09,0.105,0.64,8,45,8,0,0,5.300000000000001,8,45,0,8,0.332,56.36,89.66,0.9500000000000001,0.13,789,1.4000000000000001,46,0.7000000000000001
+2023,5,27,20,0,12.9,1.12,0.097,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.331,59.22,94.91,0.9500000000000001,0.13,790,1.4000000000000001,60,0.8
+2023,5,27,20,30,12.200000000000001,1.12,0.097,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.331,62,99.5,0.9500000000000001,0.13,790,1.3,66,0.9
+2023,5,27,21,0,11.5,1.1500000000000001,0.093,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.33,63.24,103.74000000000001,0.9500000000000001,0.13,790,1.3,71,0.9
+2023,5,27,21,30,10.9,1.1500000000000001,0.093,0.64,0,0,0,0,0,4.800000000000001,0,0,0,0,0.33,65.8,107.57000000000001,0.9500000000000001,0.13,790,1.3,75,1
+2023,5,27,22,0,10.3,1.16,0.092,0.64,0,0,0,0,0,4.4,0,0,0,0,0.33,66.61,110.91,0.9500000000000001,0.13,790,1.3,79,1.1
+2023,5,27,22,30,9.9,1.16,0.092,0.64,0,0,0,0,0,4.4,0,0,0,0,0.329,68.41,113.7,0.9500000000000001,0.13,790,1.3,83,1.2000000000000002
+2023,5,27,23,0,9.5,1.16,0.09,0.64,0,0,0,0,0,4.2,0,0,0,0,0.328,69.60000000000001,115.85000000000001,0.9500000000000001,0.13,790,1.4000000000000001,86,1.3
+2023,5,27,23,30,9,1.16,0.09,0.64,0,0,0,0,0,4.2,0,0,0,0,0.327,71.98,117.29,0.9400000000000001,0.13,790,1.4000000000000001,89,1.4000000000000001
+2023,5,28,0,0,8.6,1.1400000000000001,0.08700000000000001,0.64,0,0,0,0,0,4.2,0,0,0,0,0.326,74.03,117.97,0.9400000000000001,0.13,790,1.4000000000000001,92,1.5
+2023,5,28,0,30,8.200000000000001,1.1400000000000001,0.08700000000000001,0.64,0,0,0,0,0,4.2,0,0,0,0,0.325,76.06,117.88,0.9400000000000001,0.13,790,1.3,94,1.5
+2023,5,28,1,0,7.7,1.1,0.081,0.64,0,0,0,0,0,4.3,0,0,0,0,0.325,79.06,117,0.9400000000000001,0.13,790,1.3,97,1.5
+2023,5,28,1,30,7.300000000000001,1.1,0.081,0.64,0,0,0,0,0,4.3,0,0,0,0,0.324,81.24,115.38,0.9400000000000001,0.13,790,1.3,98,1.4000000000000001
+2023,5,28,2,0,6.9,1.07,0.078,0.64,0,0,0,0,0,4.2,0,0,0,0,0.324,82.94,113.07000000000001,0.9400000000000001,0.13,789,1.3,99,1.3
+2023,5,28,2,30,6.7,1.07,0.078,0.64,0,0,0,0,0,4.2,0,0,0,0,0.323,84.08,110.14,0.9400000000000001,0.13,789,1.3,98,1.2000000000000002
+2023,5,28,3,0,6.4,1.06,0.079,0.64,0,0,0,0,0,4,0,0,0,0,0.323,84.60000000000001,106.67,0.9400000000000001,0.13,789,1.3,96,1.1
+2023,5,28,3,30,6.300000000000001,1.06,0.079,0.64,0,0,0,0,0,4,0,0,0,0,0.322,85.18,102.73,0.9400000000000001,0.13,789,1.3,93,1.1
+2023,5,28,4,0,6.1000000000000005,1.06,0.082,0.64,0,0,0,0,0,3.7,0,0,0,0,0.322,84.65,98.4,0.9400000000000001,0.13,789,1.3,89,1
+2023,5,28,4,30,6.7,1.06,0.082,0.64,0,0,0,0,0,3.7,0,0,0,0,0.322,81.23,93.74,0.9400000000000001,0.13,789,1.3,84,0.9
+2023,5,28,5,0,7.2,1.06,0.085,0.64,13,101,16,5,5,3.8000000000000003,8,0,71,8,0.321,78.85000000000001,88.54,0.9400000000000001,0.13,789,1.3,79,0.8
+2023,5,28,5,30,8.700000000000001,1.06,0.085,0.64,36,366,77,6,4,3.8000000000000003,45,1,79,45,0.321,71.22,83.55,0.9400000000000001,0.13,789,1.3,69,1.1
+2023,5,28,6,0,10.200000000000001,1.05,0.08600000000000001,0.64,51,544,162,0,5,3.3000000000000003,90,85,0,107,0.322,62.370000000000005,78.26,0.9400000000000001,0.13,790,1.3,59,1.3
+2023,5,28,6,30,12.4,1.05,0.08600000000000001,0.64,62,662,258,0,0,3.3000000000000003,110,429,0,237,0.322,53.86,72.8,0.9400000000000001,0.13,789,1.3,66,1
+2023,5,28,7,0,14.600000000000001,1.04,0.08600000000000001,0.64,71,743,359,0,0,2.2,71,743,0,359,0.322,43.06,67.23,0.9400000000000001,0.13,789,1.3,73,0.7000000000000001
+2023,5,28,7,30,16.2,1.04,0.08600000000000001,0.64,78,803,460,0,0,2.2,78,803,0,460,0.321,38.87,61.58,0.9400000000000001,0.13,789,1.3,142,0.8
+2023,5,28,8,0,17.7,1.02,0.084,0.64,83,848,559,0,0,1.4000000000000001,83,848,0,559,0.32,33.44,55.89,0.9400000000000001,0.13,789,1.3,212,0.8
+2023,5,28,8,30,18.6,1.02,0.084,0.64,88,881,652,0,0,1.4000000000000001,88,881,0,652,0.318,31.61,50.2,0.9400000000000001,0.13,789,1.3,224,1.4000000000000001
+2023,5,28,9,0,19.5,1.01,0.083,0.64,93,907,739,0,0,1.6,93,907,0,739,0.316,30.26,44.56,0.9400000000000001,0.13,789,1.3,236,1.9000000000000001
+2023,5,28,9,30,20.1,1.01,0.083,0.64,96,927,816,0,0,1.6,96,927,0,816,0.314,29.16,39.02,0.9400000000000001,0.13,789,1.3,240,2.3000000000000003
+2023,5,28,10,0,20.700000000000003,0.99,0.083,0.64,98,942,882,0,0,1.7000000000000002,200,768,0,839,0.312,28.39,33.68,0.9400000000000001,0.13,789,1.3,244,2.7
+2023,5,28,10,30,21.3,0.99,0.083,0.64,99,957,938,0,0,1.7000000000000002,206,674,0,797,0.31,27.37,28.7,0.9400000000000001,0.13,789,1.3,247,3
+2023,5,28,11,0,21.8,0.92,0.07,0.64,95,971,980,0,3,1.7000000000000002,310,485,0,752,0.307,26.490000000000002,24.330000000000002,0.9400000000000001,0.13,789,1.3,249,3.3000000000000003
+2023,5,28,11,30,22.200000000000003,0.92,0.07,0.64,97,976,1008,0,3,1.7000000000000002,403,375,0,753,0.306,25.85,20.97,0.9400000000000001,0.13,789,1.3,251,3.5
+2023,5,28,12,0,22.5,0.93,0.069,0.64,96,978,1020,0,8,1.5,297,558,0,824,0.304,24.98,19.18,0.9400000000000001,0.13,789,1.3,253,3.7
+2023,5,28,12,30,22.700000000000003,0.93,0.069,0.64,97,978,1019,0,0,1.5,197,750,0,904,0.302,24.650000000000002,19.42,0.9400000000000001,0.13,788,1.3,255,3.9000000000000004
+2023,5,28,13,0,22.900000000000002,0.97,0.069,0.64,96,975,1002,0,0,1.2000000000000002,152,878,0,968,0.301,23.93,21.62,0.9400000000000001,0.13,788,1.3,257,4
+2023,5,28,13,30,22.900000000000002,0.97,0.069,0.64,94,970,971,0,8,1.2000000000000002,302,284,0,559,0.3,23.93,25.26,0.9400000000000001,0.13,788,1.4000000000000001,260,4
+2023,5,28,14,0,22.8,0.99,0.067,0.64,92,962,927,0,8,1,299,177,0,453,0.3,23.72,29.8,0.9400000000000001,0.13,788,1.4000000000000001,263,4
+2023,5,28,14,30,22.6,0.99,0.067,0.64,90,949,869,0,7,1,287,97,0,367,0.3,24,34.88,0.9400000000000001,0.13,788,1.4000000000000001,268,3.9000000000000004
+2023,5,28,15,0,22.3,1.03,0.07200000000000001,0.64,90,931,800,0,6,0.9,340,71,0,394,0.301,24.21,40.27,0.9400000000000001,0.13,788,1.4000000000000001,273,3.9000000000000004
+2023,5,28,15,30,21.8,1.03,0.07200000000000001,0.64,86,910,720,0,6,0.9,271,28,0,291,0.302,24.96,45.84,0.9400000000000001,0.13,788,1.4000000000000001,281,3.8000000000000003
+2023,5,28,16,0,21.400000000000002,1.07,0.073,0.64,82,883,632,0,6,1.1,239,39,0,263,0.303,26.07,51.49,0.9500000000000001,0.13,788,1.4000000000000001,290,3.7
+2023,5,28,16,30,20.6,1.07,0.073,0.64,78,847,537,0,6,1.1,194,135,0,267,0.303,27.37,57.18,0.9500000000000001,0.13,788,1.4000000000000001,300,3.6
+2023,5,28,17,0,19.900000000000002,1.1,0.076,0.64,73,800,438,0,7,1.7000000000000002,203,304,7,342,0.304,29.810000000000002,62.86,0.9500000000000001,0.13,788,1.4000000000000001,310,3.5
+2023,5,28,17,30,18.8,1.1,0.076,0.64,67,735,336,0,8,1.7000000000000002,134,343,11,260,0.304,31.91,68.49,0.9500000000000001,0.13,788,1.5,322,3.4000000000000004
+2023,5,28,18,0,17.7,1.11,0.081,0.64,59,645,236,0,5,3,134,208,7,191,0.304,37.57,74.04,0.9500000000000001,0.13,789,1.5,335,3.2
+2023,5,28,18,30,16.2,1.11,0.081,0.64,48,514,142,1,5,3,96,91,14,113,0.304,41.31,79.45,0.9500000000000001,0.13,789,1.5,168,2.9000000000000004
+2023,5,28,19,0,14.700000000000001,1.1,0.085,0.64,32,313,61,7,5,5,38,1,100,38,0.303,52.04,84.69,0.96,0.13,789,1.5,0,2.6
+2023,5,28,19,30,13.9,1.1,0.085,0.64,9,58,9,4,5,5,5,0,57,5,0.303,54.870000000000005,89.55,0.96,0.13,790,1.6,7,2.6
+2023,5,28,20,0,13.100000000000001,1.08,0.09,0.64,0,0,0,0,3,5.300000000000001,0,0,0,0,0.303,59.14,94.77,0.96,0.13,790,1.6,13,2.6
+2023,5,28,20,30,12.600000000000001,1.08,0.09,0.64,0,0,0,0,0,5.300000000000001,0,0,0,0,0.303,61.1,99.35000000000001,0.96,0.13,790,1.6,19,2.4000000000000004
+2023,5,28,21,0,12.200000000000001,1.04,0.094,0.64,0,0,0,0,3,5.7,0,0,0,0,0.303,64.38,103.59,0.96,0.13,790,1.6,24,2.3000000000000003
+2023,5,28,21,30,11.8,1.04,0.094,0.64,0,0,0,0,0,5.7,0,0,0,0,0.303,66.09,107.42,0.96,0.13,790,1.6,29,2.1
+2023,5,28,22,0,11.4,0.97,0.091,0.64,0,0,0,0,0,5.9,0,0,0,0,0.303,69.15,110.76,0.9500000000000001,0.13,790,1.6,35,1.9000000000000001
+2023,5,28,22,30,10.9,0.97,0.091,0.64,0,0,0,0,0,5.9,0,0,0,0,0.303,71.47,113.54,0.9500000000000001,0.13,790,1.6,42,1.7000000000000002
+2023,5,28,23,0,10.4,0.89,0.083,0.64,0,0,0,0,5,6,0,0,0,0,0.304,73.95,115.68,0.9400000000000001,0.13,790,1.5,49,1.5
+2023,5,28,23,30,9.9,0.89,0.083,0.64,0,0,0,0,0,6,0,0,0,0,0.304,76.46000000000001,117.13,0.9400000000000001,0.13,790,1.5,54,1.4000000000000001
+2023,5,29,0,0,9.5,0.8300000000000001,0.079,0.64,0,0,0,0,0,5.7,0,0,0,0,0.305,77.31,117.81,0.9400000000000001,0.13,790,1.5,60,1.3
+2023,5,29,0,30,9.1,0.8300000000000001,0.079,0.64,0,0,0,0,3,5.7,0,0,0,0,0.305,79.31,117.72,0.9400000000000001,0.13,789,1.4000000000000001,62,1.2000000000000002
+2023,5,29,1,0,8.700000000000001,0.8300000000000001,0.078,0.64,0,0,0,0,7,5.4,0,0,0,0,0.306,79.87,116.85000000000001,0.9400000000000001,0.13,789,1.4000000000000001,65,1.2000000000000002
+2023,5,29,1,30,8.4,0.8300000000000001,0.078,0.64,0,0,0,0,3,5.4,0,0,0,0,0.307,81.51,115.24000000000001,0.9400000000000001,0.13,789,1.4000000000000001,65,1.1
+2023,5,29,2,0,8.1,0.86,0.081,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.308,81.62,112.94,0.9400000000000001,0.13,789,1.4000000000000001,65,1
+2023,5,29,2,30,8,0.86,0.081,0.64,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.309,82.18,110.01,0.9400000000000001,0.13,789,1.4000000000000001,62,1
+2023,5,29,3,0,7.9,0.9,0.084,0.64,0,0,0,0,0,4.9,0,0,0,0,0.309,81.26,106.55,0.9400000000000001,0.13,789,1.4000000000000001,58,0.9
+2023,5,29,3,30,7.9,0.9,0.084,0.64,0,0,0,0,0,4.9,0,0,0,0,0.31,81.26,102.62,0.9400000000000001,0.13,789,1.4000000000000001,52,0.8
+2023,5,29,4,0,7.9,0.9400000000000001,0.089,0.64,0,0,0,0,0,4.7,0,0,0,0,0.31,80.14,98.3,0.9400000000000001,0.13,789,1.4000000000000001,45,0.7000000000000001
+2023,5,29,4,30,8.3,0.9400000000000001,0.089,0.64,0,0,0,0,0,4.7,0,0,0,0,0.311,78.10000000000001,93.65,0.9400000000000001,0.13,790,1.4000000000000001,35,0.7000000000000001
+2023,5,29,5,0,8.700000000000001,0.96,0.089,0.64,13,95,16,0,0,5.1000000000000005,13,95,0,16,0.311,77.98,88.46000000000001,0.9400000000000001,0.13,790,1.4000000000000001,24,0.7000000000000001
+2023,5,29,5,30,9.9,0.96,0.089,0.64,37,360,78,0,0,5.1000000000000005,37,360,0,78,0.312,71.95,83.47,0.9400000000000001,0.13,790,1.4000000000000001,18,1
+2023,5,29,6,0,11.100000000000001,0.96,0.083,0.64,51,547,163,0,0,4.800000000000001,55,507,0,159,0.313,65.1,78.18,0.9400000000000001,0.13,790,1.4000000000000001,11,1.4000000000000001
+2023,5,29,6,30,13.100000000000001,0.96,0.083,0.64,61,670,260,0,0,4.800000000000001,69,630,0,256,0.313,57.09,72.73,0.9400000000000001,0.13,790,1.3,185,1.2000000000000002
+2023,5,29,7,0,15.200000000000001,0.9400000000000001,0.074,0.64,67,757,361,0,0,4,67,757,0,361,0.314,47.1,67.16,0.93,0.13,790,1.3,358,1
+2023,5,29,7,30,16.6,0.9400000000000001,0.074,0.64,74,816,463,0,0,4,74,816,0,463,0.314,43.08,61.52,0.93,0.13,790,1.3,315,1
+2023,5,29,8,0,18,0.93,0.07,0.64,77,861,561,0,0,3.5,95,825,0,558,0.315,38.230000000000004,55.83,0.93,0.13,790,1.3,272,1
+2023,5,29,8,30,18.6,0.93,0.07,0.64,82,892,654,0,0,3.6,118,808,0,636,0.316,36.82,50.14,0.93,0.13,790,1.3,259,1.4000000000000001
+2023,5,29,9,0,19.3,0.9400000000000001,0.07100000000000001,0.64,87,916,740,0,7,4.2,185,694,0,680,0.316,36.76,44.49,0.93,0.13,790,1.4000000000000001,247,1.8
+2023,5,29,9,30,19.900000000000002,0.9400000000000001,0.07100000000000001,0.64,91,934,817,0,8,4.2,205,704,0,753,0.317,35.42,38.94,0.9400000000000001,0.13,790,1.4000000000000001,243,2.2
+2023,5,29,10,0,20.400000000000002,0.97,0.073,0.64,93,947,882,0,3,4.7,246,693,0,823,0.318,35.69,33.6,0.9400000000000001,0.13,790,1.4000000000000001,238,2.5
+2023,5,29,10,30,20.900000000000002,0.97,0.073,0.64,91,965,938,0,0,4.7,125,906,0,920,0.319,34.61,28.61,0.93,0.13,790,1.4000000000000001,236,2.9000000000000004
+2023,5,29,11,0,21.3,0.9500000000000001,0.052000000000000005,0.64,85,981,980,0,0,4.9,97,965,0,977,0.32,34.31,24.21,0.93,0.13,790,1.4000000000000001,234,3.2
+2023,5,29,11,30,21.6,0.9500000000000001,0.052000000000000005,0.64,86,986,1008,0,0,4.9,123,926,0,988,0.321,33.68,20.830000000000002,0.93,0.13,790,1.4000000000000001,234,3.4000000000000004
+2023,5,29,12,0,21.8,1,0.053,0.64,87,987,1020,0,3,5,419,345,0,745,0.322,33.4,19.03,0.93,0.13,790,1.5,234,3.6
+2023,5,29,12,30,22,1,0.053,0.64,86,987,1018,0,8,5,333,504,0,809,0.323,33,19.26,0.93,0.13,790,1.5,235,3.7
+2023,5,29,13,0,22.1,1.02,0.052000000000000005,0.64,85,985,1002,0,8,4.800000000000001,229,723,0,902,0.324,32.47,21.46,0.93,0.13,789,1.5,236,3.8000000000000003
+2023,5,29,13,30,22.400000000000002,1.02,0.052000000000000005,0.64,82,983,972,0,8,4.800000000000001,172,800,0,896,0.324,31.89,25.11,0.93,0.13,789,1.5,237,3.7
+2023,5,29,14,0,22.700000000000003,1.05,0.044,0.64,79,978,929,0,8,4.4,164,809,0,867,0.325,30.34,29.67,0.92,0.13,789,1.5,239,3.6
+2023,5,29,14,30,22.900000000000002,1.05,0.044,0.64,77,968,872,0,0,4.4,77,968,0,872,0.324,29.94,34.75,0.92,0.13,788,1.4000000000000001,241,3.5
+2023,5,29,15,0,23,1.09,0.045,0.64,75,954,804,0,0,3.5,75,954,0,804,0.324,27.97,40.15,0.92,0.13,788,1.4000000000000001,243,3.3000000000000003
+2023,5,29,15,30,23.1,1.09,0.045,0.64,74,933,725,0,0,3.5,89,910,0,724,0.324,27.8,45.72,0.93,0.13,788,1.4000000000000001,248,3.2
+2023,5,29,16,0,23.1,1.12,0.05,0.64,71,907,637,0,0,2.8000000000000003,122,805,0,624,0.323,26.43,51.38,0.93,0.13,788,1.4000000000000001,252,3.1
+2023,5,29,16,30,22.700000000000003,1.12,0.05,0.64,70,869,542,0,7,2.8000000000000003,161,630,7,503,0.323,27.07,57.07,0.9400000000000001,0.13,788,1.4000000000000001,260,2.9000000000000004
+2023,5,29,17,0,22.3,1.16,0.062,0.64,67,818,442,0,7,2.5,132,602,29,408,0.323,27.150000000000002,62.75,0.9400000000000001,0.13,788,1.4000000000000001,269,2.6
+2023,5,29,17,30,21.3,1.16,0.062,0.64,62,756,341,0,7,2.5,136,438,32,297,0.323,28.86,68.38,0.9400000000000001,0.13,788,1.4000000000000001,292,2.2
+2023,5,29,18,0,20.3,1.17,0.07,0.64,55,667,240,0,7,4.4,74,563,71,230,0.324,35.07,73.92,0.9500000000000001,0.13,788,1.4000000000000001,315,1.7000000000000002
+2023,5,29,18,30,18.5,1.17,0.07,0.64,45,548,146,1,7,4.4,62,282,29,114,0.324,39.21,79.33,0.9400000000000001,0.13,788,1.4000000000000001,160,1.9000000000000001
+2023,5,29,19,0,16.6,1.1500000000000001,0.065,0.64,30,361,64,7,7,6.300000000000001,41,7,100,42,0.324,50.71,84.57000000000001,0.9400000000000001,0.13,789,1.4000000000000001,4,2
+2023,5,29,19,30,15.600000000000001,1.1500000000000001,0.065,0.64,9,77,10,4,6,6.300000000000001,6,0,57,6,0.324,54.04,89.43,0.9400000000000001,0.13,789,1.4000000000000001,14,2.3000000000000003
+2023,5,29,20,0,14.5,1.1300000000000001,0.064,0.64,0,0,0,0,6,6.7,0,0,0,0,0.324,59.32,94.64,0.9400000000000001,0.13,789,1.4000000000000001,23,2.6
+2023,5,29,20,30,13.600000000000001,1.1300000000000001,0.064,0.64,0,0,0,0,7,6.7,0,0,0,0,0.324,62.96,99.22,0.93,0.13,790,1.3,27,2.7
+2023,5,29,21,0,12.700000000000001,1.09,0.062,0.64,0,0,0,0,7,7.2,0,0,0,0,0.324,69.04,103.45,0.93,0.13,790,1.3,32,2.8000000000000003
+2023,5,29,21,30,12.100000000000001,1.09,0.062,0.64,0,0,0,0,7,7.2,0,0,0,0,0.325,71.81,107.27,0.93,0.13,790,1.3,33,2.7
+2023,5,29,22,0,11.5,1.05,0.061,0.64,0,0,0,0,7,7.4,0,0,0,0,0.325,76.09,110.61,0.93,0.13,790,1.3,35,2.6
+2023,5,29,22,30,11,1.05,0.061,0.64,0,0,0,0,0,7.4,0,0,0,0,0.325,78.65,113.39,0.93,0.13,790,1.3,38,2.4000000000000004
+2023,5,29,23,0,10.600000000000001,1.01,0.061,0.64,0,0,0,0,0,7.5,0,0,0,0,0.325,81.37,115.53,0.93,0.13,790,1.2000000000000002,40,2.2
+2023,5,29,23,30,10.100000000000001,1.01,0.061,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,84.02,116.97,0.93,0.13,789,1.2000000000000002,43,2
+2023,5,30,0,0,9.700000000000001,0.98,0.062,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,86.2,117.66,0.93,0.13,789,1.2000000000000002,47,1.8
+2023,5,30,0,30,9.3,0.98,0.062,0.64,0,0,0,0,0,7.5,0,0,0,0,0.326,88.54,117.57000000000001,0.93,0.13,789,1.2000000000000002,49,1.7000000000000002
+2023,5,30,1,0,8.9,0.9500000000000001,0.063,0.64,0,0,0,0,0,7.4,0,0,0,0,0.327,90.45,116.71000000000001,0.93,0.13,789,1.2000000000000002,52,1.5
+2023,5,30,1,30,8.6,0.9500000000000001,0.063,0.64,0,0,0,0,0,7.4,0,0,0,0,0.327,92.3,115.10000000000001,0.92,0.13,789,1.2000000000000002,56,1.5
+2023,5,30,2,0,8.3,0.93,0.062,0.64,0,0,0,0,0,7.300000000000001,0,0,0,0,0.327,93.34,112.81,0.92,0.13,789,1.2000000000000002,60,1.4000000000000001
+2023,5,30,2,30,8.1,0.93,0.062,0.64,0,0,0,0,0,7.300000000000001,0,0,0,0,0.328,94.61,109.89,0.92,0.13,789,1.2000000000000002,63,1.3
+2023,5,30,3,0,7.800000000000001,0.91,0.062,0.64,0,0,0,0,0,7,0,0,0,0,0.329,94.98,106.44,0.92,0.13,789,1.2000000000000002,67,1.2000000000000002
+2023,5,30,3,30,7.6000000000000005,0.91,0.062,0.64,0,0,0,0,0,7,0,0,0,0,0.33,96.28,102.52,0.92,0.13,789,1.2000000000000002,69,1.1
+2023,5,30,4,0,7.4,0.9,0.062,0.64,0,0,0,0,0,6.7,0,0,0,0,0.331,95.02,98.2,0.92,0.13,789,1.2000000000000002,71,1.1
+2023,5,30,4,30,8.1,0.9,0.062,0.64,0,0,0,0,0,6.7,0,0,0,0,0.332,90.61,93.56,0.92,0.13,789,1.2000000000000002,72,1
+2023,5,30,5,0,8.700000000000001,0.91,0.062,0.64,13,126,17,0,0,6.4,13,126,0,17,0.333,85.51,88.38,0.92,0.13,789,1.2000000000000002,73,0.9
+2023,5,30,5,30,10.5,0.91,0.062,0.64,33,414,81,0,0,6.4,33,414,0,81,0.334,75.8,83.39,0.93,0.13,789,1.2000000000000002,74,1.1
+2023,5,30,6,0,12.4,0.92,0.064,0.64,47,589,168,0,0,5.800000000000001,47,589,0,168,0.335,64.27,78.11,0.93,0.13,789,1.2000000000000002,76,1.4000000000000001
+2023,5,30,6,30,14.4,0.92,0.064,0.64,56,701,265,0,0,5.9,56,701,0,265,0.335,56.52,72.66,0.93,0.13,790,1.2000000000000002,102,1.2000000000000002
+2023,5,30,7,0,16.400000000000002,0.9400000000000001,0.065,0.64,64,776,366,0,0,4.1000000000000005,64,776,0,366,0.336,44,67.1,0.93,0.13,790,1.2000000000000002,127,1.1
+2023,5,30,7,30,17.8,0.9400000000000001,0.065,0.64,71,831,468,0,0,4.1000000000000005,71,831,0,468,0.336,40.28,61.45,0.93,0.13,790,1.2000000000000002,162,1.1
+2023,5,30,8,0,19.200000000000003,0.9500000000000001,0.066,0.64,76,871,566,0,0,2.2,76,871,0,566,0.335,32.29,55.77,0.93,0.13,790,1.2000000000000002,196,1.1
+2023,5,30,8,30,20.200000000000003,0.9500000000000001,0.066,0.64,81,902,660,0,0,2.2,88,886,0,657,0.334,30.32,50.07,0.93,0.13,789,1.2000000000000002,204,1.4000000000000001
+2023,5,30,9,0,21.1,0.96,0.068,0.64,85,925,746,0,0,1.3,146,789,0,710,0.332,26.830000000000002,44.42,0.93,0.13,789,1.2000000000000002,213,1.6
+2023,5,30,9,30,21.900000000000002,0.96,0.068,0.64,89,943,823,0,8,1.3,218,717,29,776,0.33,25.55,38.88,0.93,0.13,789,1.2000000000000002,211,2
+2023,5,30,10,0,22.700000000000003,0.96,0.07,0.64,91,957,889,0,0,1,99,945,43,887,0.329,23.8,33.53,0.93,0.13,789,1.2000000000000002,210,2.3000000000000003
+2023,5,30,10,30,23.3,0.96,0.07,0.64,88,976,946,0,0,1,116,935,0,938,0.327,22.95,28.52,0.92,0.13,789,1.2000000000000002,211,2.8000000000000003
+2023,5,30,11,0,23.900000000000002,1.03,0.047,0.64,82,995,990,0,0,0.9,108,948,0,973,0.325,21.96,24.11,0.92,0.13,788,1.2000000000000002,213,3.2
+2023,5,30,11,30,24.200000000000003,1.03,0.047,0.64,83,999,1017,0,0,0.9,109,954,0,1001,0.323,21.57,20.71,0.92,0.13,788,1.2000000000000002,216,3.6
+2023,5,30,12,0,24.6,1.05,0.047,0.64,84,1000,1030,0,0,0.8,89,989,14,1025,0.321,20.98,18.89,0.91,0.13,788,1.2000000000000002,219,4
+2023,5,30,12,30,24.8,1.05,0.047,0.64,84,998,1027,0,0,0.8,167,820,14,942,0.318,20.740000000000002,19.11,0.92,0.13,788,1.2000000000000002,222,4.3
+2023,5,30,13,0,25,1.08,0.051000000000000004,0.64,84,994,1010,0,8,0.7000000000000001,274,641,0,871,0.316,20.39,21.32,0.92,0.13,787,1.2000000000000002,225,4.5
+2023,5,30,13,30,24.900000000000002,1.08,0.051000000000000004,0.64,82,990,979,0,8,0.7000000000000001,289,549,0,787,0.314,20.51,24.98,0.92,0.13,787,1.3,228,4.5
+2023,5,30,14,0,24.8,1.08,0.044,0.64,78,986,936,0,7,0.6000000000000001,263,624,7,806,0.313,20.38,29.54,0.91,0.13,787,1.3,230,4.5
+2023,5,30,14,30,24.6,1.08,0.044,0.64,78,973,879,0,8,0.6000000000000001,196,743,0,807,0.313,20.63,34.63,0.92,0.13,787,1.3,232,4.3
+2023,5,30,15,0,24.3,1.09,0.05,0.64,78,955,809,0,0,0.2,137,823,0,767,0.313,20.41,40.03,0.92,0.13,787,1.3,233,4.1000000000000005
+2023,5,30,15,30,24,1.09,0.05,0.64,77,934,730,0,8,0.2,219,449,0,533,0.312,20.78,45.61,0.93,0.13,787,1.3,233,3.9000000000000004
+2023,5,30,16,0,23.6,1.1,0.057,0.64,74,906,641,0,8,-0.30000000000000004,170,598,4,544,0.312,20.5,51.27,0.93,0.13,786,1.3,232,3.7
+2023,5,30,16,30,23.1,1.1,0.057,0.64,71,873,547,0,8,-0.30000000000000004,179,518,7,461,0.312,21.13,56.96,0.93,0.13,786,1.2000000000000002,233,3.5
+2023,5,30,17,0,22.5,1.11,0.06,0.64,67,829,448,0,0,-0.9,84,770,11,438,0.312,21.05,62.64,0.9400000000000001,0.13,786,1.2000000000000002,233,3.3000000000000003
+2023,5,30,17,30,21.5,1.11,0.06,0.64,61,770,346,0,0,-0.9,65,753,14,344,0.311,22.400000000000002,68.26,0.9400000000000001,0.13,787,1.2000000000000002,236,2.5
+2023,5,30,18,0,20.5,1.1,0.062,0.64,54,689,246,0,0,1.8,59,658,0,243,0.311,28.900000000000002,73.8,0.9400000000000001,0.13,787,1.2000000000000002,240,1.8
+2023,5,30,18,30,18.7,1.1,0.062,0.64,43,570,150,0,0,1.8,43,570,0,150,0.311,32.31,79.21000000000001,0.9400000000000001,0.13,787,1.2000000000000002,255,1.4000000000000001
+2023,5,30,19,0,17,1.06,0.061,0.64,30,379,67,2,0,4.800000000000001,34,322,21,65,0.311,44.480000000000004,84.45,0.9400000000000001,0.13,787,1.1,270,1
+2023,5,30,19,30,16,1.06,0.061,0.64,9,84,10,2,0,4.800000000000001,8,35,32,8,0.312,47.4,89.32000000000001,0.93,0.13,787,1.1,287,1
+2023,5,30,20,0,15.100000000000001,1.01,0.056,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.312,46.92,94.51,0.93,0.13,788,1.1,304,1
+2023,5,30,20,30,14.4,1.01,0.056,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.311,49.08,99.08,0.92,0.13,788,1.1,316,1.1
+2023,5,30,21,0,13.8,0.92,0.045,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.311,49.19,103.31,0.92,0.13,788,1,328,1.2000000000000002
+2023,5,30,21,30,13.200000000000001,0.92,0.045,0.64,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.31,51.15,107.13,0.91,0.13,788,1,336,1.2000000000000002
+2023,5,30,22,0,12.600000000000001,0.8200000000000001,0.04,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.31,53.550000000000004,110.46000000000001,0.91,0.13,788,1,345,1.2000000000000002
+2023,5,30,22,30,12.100000000000001,0.8200000000000001,0.04,0.64,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.309,55.33,113.24000000000001,0.91,0.13,788,1,178,1.2000000000000002
+2023,5,30,23,0,11.600000000000001,0.76,0.039,0.64,0,0,0,0,0,3.5,0,0,0,0,0.308,57.46,115.38,0.91,0.13,788,1,10,1.1
+2023,5,30,23,30,11,0.76,0.039,0.64,0,0,0,0,0,3.5,0,0,0,0,0.308,59.79,116.82000000000001,0.91,0.13,788,0.9,25,1.1
+2023,5,31,0,0,10.4,0.74,0.04,0.64,0,0,0,0,0,3.6,0,0,0,0,0.307,62.93,117.51,0.91,0.13,788,0.9,40,1.1
+2023,5,31,0,30,9.700000000000001,0.74,0.04,0.64,0,0,0,0,0,3.6,0,0,0,0,0.307,65.94,117.43,0.91,0.13,788,0.9,50,1.1
+2023,5,31,1,0,9,0.74,0.04,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.307,69.68,116.57000000000001,0.91,0.13,788,0.9,60,1.1
+2023,5,31,1,30,8.5,0.74,0.04,0.64,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.308,72.06,114.97,0.91,0.13,788,0.9,65,1.2000000000000002
+2023,5,31,2,0,8,0.75,0.041,0.64,0,0,0,0,5,3.7,0,0,0,0,0.308,74.43,112.68,0.91,0.13,788,0.9,69,1.2000000000000002
+2023,5,31,2,30,7.6000000000000005,0.75,0.041,0.64,0,0,0,0,3,3.7,0,0,0,0,0.309,76.48,109.78,0.91,0.13,788,0.9,72,1.2000000000000002
+2023,5,31,3,0,7.2,0.76,0.043000000000000003,0.64,0,0,0,0,0,3.6,0,0,0,0,0.309,77.81,106.33,0.91,0.13,788,0.9,75,1.2000000000000002
+2023,5,31,3,30,6.9,0.76,0.043000000000000003,0.64,0,0,0,0,0,3.6,0,0,0,0,0.31,79.32000000000001,102.42,0.91,0.13,787,0.9,76,1.2000000000000002
+2023,5,31,4,0,6.6000000000000005,0.78,0.044,0.64,0,0,0,0,0,3.2,0,0,0,0,0.311,79.15,98.11,0.91,0.13,787,0.8,78,1.2000000000000002
+2023,5,31,4,30,7.300000000000001,0.78,0.044,0.64,0,0,0,0,0,3.2,0,0,0,0,0.311,75.45,93.48,0.91,0.13,787,0.8,78,1.1
+2023,5,31,5,0,8,0.81,0.046,0.64,14,155,19,3,0,3.2,11,22,46,12,0.312,71.77,88.31,0.91,0.13,787,0.8,77,1.1
+2023,5,31,5,30,10.100000000000001,0.81,0.046,0.64,32,468,86,5,5,3.2,49,161,71,68,0.313,62.31,83.32000000000001,0.91,0.13,787,0.8,76,1.5
+2023,5,31,6,0,12.200000000000001,0.85,0.048,0.64,43,637,175,0,0,2.2,43,637,0,175,0.314,50.59,78.05,0.91,0.13,787,0.8,75,2
+2023,5,31,6,30,14.3,0.85,0.048,0.64,52,742,274,0,0,2.2,73,627,0,260,0.315,44.14,72.60000000000001,0.91,0.13,787,0.8,82,1.9000000000000001
+2023,5,31,7,0,16.5,0.91,0.052000000000000005,0.64,60,812,377,0,0,0.30000000000000004,69,777,0,372,0.317,33.34,67.04,0.92,0.13,787,0.8,89,1.7000000000000002
+2023,5,31,7,30,18.7,0.91,0.052000000000000005,0.64,66,863,479,0,0,0.30000000000000004,84,813,0,473,0.318,29.03,61.4,0.92,0.13,787,0.8,120,1.7000000000000002
+2023,5,31,8,0,20.8,0.97,0.056,0.64,72,899,578,0,0,-4.1000000000000005,132,735,0,546,0.319,18.48,55.71,0.92,0.13,786,0.8,150,1.7000000000000002
+2023,5,31,8,30,21.8,0.97,0.056,0.64,79,922,671,0,8,-4.1000000000000005,217,596,0,600,0.319,17.39,50.02,0.93,0.13,786,0.9,169,2.1
+2023,5,31,9,0,22.8,1.04,0.067,0.64,85,938,756,0,0,-5.4,157,762,0,702,0.319,14.74,44.36,0.9400000000000001,0.13,786,0.9,187,2.4000000000000004
+2023,5,31,9,30,23.1,1.04,0.067,0.64,93,947,831,0,7,-5.4,326,406,0,642,0.319,14.48,38.81,0.9500000000000001,0.13,786,0.9,196,3.1
+2023,5,31,10,0,23.3,1.12,0.092,0.64,103,947,893,0,6,-5.1000000000000005,380,102,0,465,0.319,14.71,33.46,0.9500000000000001,0.13,786,1,204,3.8000000000000003
+2023,5,31,10,30,22.3,1.12,0.092,0.64,104,959,947,0,7,-5.1000000000000005,442,210,0,627,0.318,15.63,28.44,0.9500000000000001,0.13,786,1,208,4.7
+2023,5,31,11,0,21.3,1.16,0.08600000000000001,0.64,104,967,987,0,6,-3.6,366,37,0,400,0.317,18.52,24.01,0.9500000000000001,0.13,786,1.1,211,5.5
+2023,5,31,11,30,20.1,1.16,0.08600000000000001,0.64,105,969,1012,0,7,-3.6,414,308,0,702,0.316,19.96,20.59,0.9500000000000001,0.13,787,1.2000000000000002,211,5.7
+2023,5,31,12,0,18.8,1.1500000000000001,0.08600000000000001,0.64,105,969,1023,0,8,-1.3,195,787,0,940,0.316,25.73,18.75,0.9500000000000001,0.13,787,1.2000000000000002,210,5.800000000000001
+2023,5,31,12,30,18,1.1500000000000001,0.08600000000000001,0.64,105,966,1019,0,7,-1.3,265,669,0,898,0.316,27.05,18.96,0.9500000000000001,0.13,787,1.3,205,5.300000000000001
+2023,5,31,13,0,17.2,1.1400000000000001,0.088,0.64,105,961,1001,0,7,0.7000000000000001,432,302,0,714,0.315,32.78,21.17,0.9500000000000001,0.13,787,1.4000000000000001,200,4.9
+2023,5,31,13,30,16.900000000000002,1.1400000000000001,0.088,0.64,99,962,972,0,0,0.7000000000000001,250,635,0,826,0.316,33.410000000000004,24.84,0.9500000000000001,0.13,787,1.4000000000000001,190,4.2
+2023,5,31,14,0,16.6,1.1400000000000001,0.065,0.64,91,964,931,0,0,1.8,91,964,0,931,0.316,36.79,29.41,0.9500000000000001,0.13,787,1.4000000000000001,180,3.6
+2023,5,31,14,30,16.8,1.1400000000000001,0.065,0.64,86,956,874,0,0,1.8,137,849,0,837,0.317,36.32,34.51,0.9400000000000001,0.13,787,1.4000000000000001,164,3.2
+2023,5,31,15,0,16.900000000000002,1.11,0.057,0.64,81,946,807,0,7,2.1,315,405,0,626,0.317,36.85,39.92,0.9400000000000001,0.13,787,1.3,148,2.9000000000000004
+2023,5,31,15,30,17.1,1.11,0.057,0.64,77,931,730,0,7,2.1,299,329,0,530,0.318,36.39,45.5,0.93,0.13,787,1.3,138,3
+2023,5,31,16,0,17.2,1.07,0.049,0.64,71,913,644,0,6,2.1,230,181,0,344,0.318,36.29,51.160000000000004,0.92,0.13,786,1.3,128,3.1
+2023,5,31,16,30,17,1.07,0.049,0.64,66,886,550,0,6,2.1,170,12,0,177,0.318,36.75,56.85,0.92,0.13,786,1.3,123,3.3000000000000003
+2023,5,31,17,0,16.8,1.06,0.042,0.62,59,851,452,0,6,2.3000000000000003,63,2,0,64,0.318,37.81,62.53,0.91,0.13,786,1.2000000000000002,119,3.5
+2023,5,31,17,30,16,1.06,0.042,0.62,53,800,351,0,6,2.3000000000000003,93,15,0,99,0.318,39.78,68.15,0.91,0.13,786,1.2000000000000002,114,3.4000000000000004
+2023,5,31,18,0,15.3,1.05,0.039,0.62,47,728,251,0,6,2.9000000000000004,84,15,0,88,0.317,43.36,73.69,0.91,0.13,786,1.2000000000000002,109,3.3000000000000003
+2023,5,31,18,30,13.600000000000001,1.05,0.039,0.62,39,616,155,1,6,2.9000000000000004,33,74,14,47,0.317,48.38,79.10000000000001,0.91,0.13,786,1.2000000000000002,100,2.8000000000000003
+2023,5,31,19,0,12,1.05,0.039,0.62,28,436,71,7,6,4.3,28,1,100,28,0.317,59.31,84.33,0.91,0.13,786,1.2000000000000002,90,2.2
+2023,5,31,19,30,10.9,1.05,0.039,0.62,9,110,11,5,6,4.3,6,0,71,6,0.317,63.77,89.2,0.91,0.13,786,1.2000000000000002,83,2.2
+2023,5,31,20,0,9.9,1.08,0.042,0.62,0,0,0,0,7,4.9,0,0,0,0,0.317,70.86,94.38,0.91,0.13,786,1.2000000000000002,75,2.2
+2023,5,31,20,30,9.5,1.08,0.042,0.62,0,0,0,0,7,4.9,0,0,0,0,0.316,72.78,98.95,0.92,0.13,786,1.2000000000000002,80,2.2
+2023,5,31,21,0,9.200000000000001,1.17,0.05,0.62,0,0,0,0,7,5.4,0,0,0,0,0.315,76.89,103.17,0.93,0.13,787,1.2000000000000002,84,2.1
+2023,5,31,21,30,9.1,1.17,0.05,0.62,0,0,0,0,7,5.4,0,0,0,0,0.314,77.41,106.99000000000001,0.93,0.13,787,1.3,84,1.9000000000000001
+2023,5,31,22,0,9,1.22,0.054,0.62,0,0,0,0,8,5.7,0,0,0,0,0.313,80.06,110.32000000000001,0.93,0.13,787,1.3,83,1.6
+2023,5,31,22,30,8.8,1.22,0.054,0.62,0,0,0,0,7,5.7,0,0,0,0,0.313,81.15,113.09,0.93,0.13,787,1.3,76,1.3
+2023,5,31,23,0,8.700000000000001,1.23,0.054,0.62,0,0,0,0,7,6,0,0,0,0,0.313,82.9,115.23,0.93,0.13,787,1.3,68,1
+2023,5,31,23,30,8.5,1.23,0.054,0.62,0,0,0,0,8,5.9,0,0,0,0,0.313,83.92,116.68,0.93,0.13,786,1.3,66,0.9
+2023,6,1,0,0,8.3,1.23,0.054,0.62,0,0,0,0,3,6,0,0,0,0,0.312,85.45,117.37,0.93,0.13,786,1.3,64,0.8
+2023,6,1,0,30,8.1,1.23,0.054,0.62,0,0,0,0,8,6,0,0,0,0,0.312,86.61,117.29,0.93,0.13,786,1.3,70,0.7000000000000001
+2023,6,1,1,0,7.9,1.24,0.055,0.62,0,0,0,0,7,6,0,0,0,0,0.311,87.94,116.44,0.9400000000000001,0.13,786,1.3,77,0.7000000000000001
+2023,6,1,1,30,7.800000000000001,1.24,0.055,0.62,0,0,0,0,7,6,0,0,0,0,0.311,88.54,114.85000000000001,0.9400000000000001,0.13,786,1.3,84,0.7000000000000001
+2023,6,1,2,0,7.7,1.24,0.056,0.62,0,0,0,0,8,6,0,0,0,0,0.311,89.24,112.57000000000001,0.9400000000000001,0.13,786,1.3,90,0.7000000000000001
+2023,6,1,2,30,7.7,1.24,0.056,0.62,0,0,0,0,8,6,0,0,0,0,0.312,89.24,109.67,0.9400000000000001,0.13,786,1.3,93,0.7000000000000001
+2023,6,1,3,0,7.7,1.24,0.058,0.62,0,0,0,0,8,6,0,0,0,0,0.313,89.07000000000001,106.23,0.9400000000000001,0.13,786,1.3,97,0.7000000000000001
+2023,6,1,3,30,7.7,1.24,0.058,0.62,0,0,0,0,8,6,0,0,0,0,0.314,89.07000000000001,102.33,0.9400000000000001,0.13,786,1.3,101,0.6000000000000001
+2023,6,1,4,0,7.7,1.24,0.061,0.62,0,0,0,0,4,5.9,0,0,0,0,0.316,88.68,98.03,0.9400000000000001,0.13,786,1.3,104,0.5
+2023,6,1,4,30,8,1.24,0.061,0.62,0,0,0,0,5,5.9,0,0,0,0,0.317,86.78,93.4,0.9400000000000001,0.13,785,1.3,111,0.4
+2023,6,1,5,0,8.3,1.25,0.063,0.62,14,140,18,6,4,5.9,7,0,86,7,0.319,85.10000000000001,88.24,0.9400000000000001,0.13,785,1.3,117,0.30000000000000004
+2023,6,1,5,30,9,1.25,0.063,0.62,34,427,84,5,5,5.9,27,1,71,27,0.32,81.17,83.26,0.9400000000000001,0.13,785,1.3,99,0.30000000000000004
+2023,6,1,6,0,9.600000000000001,1.25,0.066,0.62,47,592,170,0,0,6,73,328,0,141,0.322,78.17,77.99,0.9400000000000001,0.13,786,1.3,81,0.2
+2023,6,1,6,30,10.700000000000001,1.25,0.066,0.62,57,698,266,0,0,6,57,698,0,266,0.324,72.64,72.54,0.9500000000000001,0.13,786,1.4000000000000001,155,0.5
+2023,6,1,7,0,11.8,1.26,0.07,0.62,65,769,366,0,8,5.800000000000001,163,314,0,286,0.326,66.7,66.98,0.9500000000000001,0.13,786,1.4000000000000001,229,0.7000000000000001
+2023,6,1,7,30,13.200000000000001,1.26,0.07,0.62,72,819,465,0,7,5.800000000000001,239,174,0,322,0.327,60.86,61.35,0.9500000000000001,0.13,786,1.4000000000000001,234,1.1
+2023,6,1,8,0,14.700000000000001,1.26,0.076,0.62,80,855,562,0,7,4.800000000000001,271,192,0,379,0.329,51.56,55.660000000000004,0.9500000000000001,0.13,786,1.4000000000000001,240,1.5
+2023,6,1,8,30,15.600000000000001,1.26,0.076,0.62,85,883,653,0,7,4.800000000000001,311,151,0,408,0.33,48.67,49.97,0.9500000000000001,0.13,786,1.5,238,1.6
+2023,6,1,9,0,16.6,1.27,0.083,0.62,91,903,737,0,7,4,278,170,0,400,0.33,43.09,44.31,0.9500000000000001,0.13,786,1.5,236,1.8
+2023,6,1,9,30,16.900000000000002,1.27,0.083,0.62,95,921,813,0,8,4,268,109,0,353,0.331,42.28,38.76,0.9500000000000001,0.13,786,1.6,233,1.9000000000000001
+2023,6,1,10,0,17.3,1.29,0.084,0.62,97,935,878,0,8,3.9000000000000004,337,242,0,539,0.331,40.99,33.39,0.9500000000000001,0.13,786,1.6,229,2
+2023,6,1,10,30,17.2,1.29,0.084,0.62,97,949,932,0,0,3.9000000000000004,136,869,0,901,0.331,41.300000000000004,28.36,0.9500000000000001,0.13,787,1.6,230,2.1
+2023,6,1,11,0,17.1,1.33,0.07200000000000001,0.62,95,960,973,0,8,4.5,244,214,4,440,0.331,43.21,23.92,0.9500000000000001,0.13,787,1.6,231,2.2
+2023,6,1,11,30,16.900000000000002,1.33,0.07200000000000001,0.62,95,966,1000,0,6,4.5,76,0,0,76,0.33,43.76,20.48,0.9500000000000001,0.13,787,1.7000000000000002,234,2.3000000000000003
+2023,6,1,12,0,16.8,1.33,0.07,0.62,96,969,1014,0,6,5.1000000000000005,197,1,0,198,0.329,45.94,18.62,0.9500000000000001,0.13,786,1.7000000000000002,238,2.3000000000000003
+2023,6,1,12,30,16.6,1.33,0.07,0.62,95,970,1013,0,7,5.1000000000000005,203,2,0,205,0.328,46.53,18.82,0.9500000000000001,0.13,786,1.7000000000000002,242,2.4000000000000004
+2023,6,1,13,0,16.5,1.31,0.064,0.62,92,970,997,0,6,5.5,378,32,0,408,0.327,48.29,21.04,0.9500000000000001,0.13,786,1.7000000000000002,246,2.4000000000000004
+2023,6,1,13,30,16.5,1.31,0.064,0.62,90,966,968,0,7,5.5,455,195,0,632,0.326,48.29,24.71,0.9500000000000001,0.13,786,1.7000000000000002,248,2.4000000000000004
+2023,6,1,14,0,16.400000000000002,1.29,0.06,0.62,87,961,925,0,7,5.6000000000000005,377,342,0,675,0.326,48.730000000000004,29.29,0.9500000000000001,0.13,786,1.7000000000000002,249,2.4000000000000004
+2023,6,1,14,30,16.400000000000002,1.29,0.06,0.62,84,952,870,0,7,5.6000000000000005,365,284,0,599,0.326,48.730000000000004,34.4,0.9500000000000001,0.13,786,1.6,254,2.3000000000000003
+2023,6,1,15,0,16.3,1.27,0.056,0.62,80,941,803,0,7,5.2,341,124,0,436,0.325,47.660000000000004,39.81,0.9500000000000001,0.13,786,1.6,258,2.2
+2023,6,1,15,30,16.2,1.27,0.056,0.62,77,924,726,0,7,5.2,309,241,0,478,0.325,47.96,45.39,0.9500000000000001,0.13,786,1.6,266,2
+2023,6,1,16,0,16.2,1.25,0.053,0.62,74,901,640,0,7,4.6000000000000005,285,124,0,363,0.325,46.11,51.050000000000004,0.9500000000000001,0.13,786,1.5,274,1.9000000000000001
+2023,6,1,16,30,16,1.25,0.053,0.62,69,870,546,0,6,4.6000000000000005,174,41,0,196,0.325,46.7,56.74,0.9500000000000001,0.13,786,1.5,279,1.6
+2023,6,1,17,0,15.9,1.24,0.054,0.62,64,829,448,0,7,4.3,185,201,0,278,0.325,46.14,62.42,0.9500000000000001,0.13,787,1.5,283,1.4000000000000001
+2023,6,1,17,30,15.3,1.24,0.054,0.62,58,772,347,0,6,4.3,114,72,0,141,0.324,47.94,68.04,0.9500000000000001,0.13,787,1.5,277,0.9
+2023,6,1,18,0,14.700000000000001,1.25,0.056,0.62,52,693,248,0,6,6.800000000000001,66,284,0,146,0.324,59.24,73.58,0.9500000000000001,0.13,787,1.5,270,0.5
+2023,6,1,18,30,14.100000000000001,1.25,0.056,0.62,43,577,153,1,7,6.800000000000001,57,289,32,112,0.323,61.58,78.99,0.9500000000000001,0.13,787,1.6,247,0.4
+2023,6,1,19,0,13.4,1.27,0.057,0.62,30,395,70,7,7,6.1000000000000005,38,4,100,38,0.323,61.32,84.21000000000001,0.9500000000000001,0.13,787,1.6,224,0.4
+2023,6,1,19,30,13,1.27,0.057,0.62,10,95,11,5,8,6.1000000000000005,6,0,71,6,0.322,63.02,89.10000000000001,0.9500000000000001,0.13,788,1.6,206,0.7000000000000001
+2023,6,1,20,0,12.600000000000001,1.29,0.06,0.62,0,0,0,0,8,5.9,0,0,0,0,0.322,63.9,94.26,0.9500000000000001,0.13,788,1.6,188,1
+2023,6,1,20,30,12,1.29,0.06,0.62,0,0,0,0,7,5.9,0,0,0,0,0.322,66.47,98.82000000000001,0.9500000000000001,0.13,788,1.6,184,1.2000000000000002
+2023,6,1,21,0,11.4,1.3,0.066,0.62,0,0,0,0,7,6.5,0,0,0,0,0.322,72.02,103.04,0.9500000000000001,0.13,788,1.6,180,1.5
+2023,6,1,21,30,10.9,1.3,0.066,0.62,0,0,0,0,7,6.5,0,0,0,0,0.322,74.44,106.85000000000001,0.9500000000000001,0.13,788,1.6,179,1.7000000000000002
+2023,6,1,22,0,10.4,1.31,0.07,0.62,0,0,0,0,7,6.800000000000001,0,0,0,0,0.322,78.28,110.18,0.9500000000000001,0.13,788,1.6,179,1.9000000000000001
+2023,6,1,22,30,10,1.31,0.07,0.62,0,0,0,0,7,6.800000000000001,0,0,0,0,0.323,80.4,112.96000000000001,0.9500000000000001,0.13,788,1.6,181,2.2
+2023,6,1,23,0,9.700000000000001,1.31,0.07200000000000001,0.62,0,0,0,0,7,6.7,0,0,0,0,0.323,81.82000000000001,115.10000000000001,0.9500000000000001,0.13,788,1.6,182,2.4000000000000004
+2023,6,1,23,30,9.4,1.31,0.07200000000000001,0.62,0,0,0,0,7,6.7,0,0,0,0,0.323,83.49,116.54,0.9500000000000001,0.13,788,1.6,184,2.6
+2023,6,2,0,0,9,1.3,0.074,0.62,0,0,0,0,7,6.5,0,0,0,0,0.323,84.58,117.24000000000001,0.9500000000000001,0.13,788,1.6,185,2.7
+2023,6,2,0,30,8.8,1.3,0.074,0.62,0,0,0,0,6,6.5,0,0,0,0,0.322,85.73,117.16,0.9500000000000001,0.13,788,1.6,188,2.7
+2023,6,2,1,0,8.5,1.29,0.074,0.62,0,0,0,0,7,6.300000000000001,0,0,0,0,0.322,85.77,116.31,0.9500000000000001,0.13,788,1.6,191,2.8000000000000003
+2023,6,2,1,30,8.3,1.29,0.074,0.62,0,0,0,0,6,6.300000000000001,0,0,0,0,0.322,86.94,114.73,0.9500000000000001,0.13,788,1.6,193,2.6
+2023,6,2,2,0,8.1,1.27,0.07200000000000001,0.62,0,0,0,0,6,6,0,0,0,0,0.321,86.36,112.46000000000001,0.9500000000000001,0.13,788,1.6,196,2.5
+2023,6,2,2,30,7.9,1.27,0.07200000000000001,0.62,0,0,0,0,6,6,0,0,0,0,0.321,87.54,109.57000000000001,0.9500000000000001,0.13,788,1.6,195,2.4000000000000004
+2023,6,2,3,0,7.7,1.26,0.068,0.62,0,0,0,0,6,5.800000000000001,0,0,0,0,0.321,87.54,106.14,0.9500000000000001,0.13,788,1.5,194,2.2
+2023,6,2,3,30,7.5,1.26,0.068,0.62,0,0,0,0,7,5.800000000000001,0,0,0,0,0.32,88.74,102.24000000000001,0.9500000000000001,0.13,788,1.5,194,2.2
+2023,6,2,4,0,7.300000000000001,1.26,0.066,0.62,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.32,89.15,97.95,0.9500000000000001,0.13,788,1.6,194,2.1
+2023,6,2,4,30,7.300000000000001,1.26,0.066,0.62,0,0,0,0,8,5.6000000000000005,0,0,0,0,0.319,89.15,93.33,0.9500000000000001,0.13,788,1.6,199,2.2
+2023,6,2,5,0,7.4,1.27,0.069,0.62,15,147,20,6,8,5.7,3,0,86,3,0.318,88.86,88.18,0.9500000000000001,0.13,788,1.6,203,2.2
+2023,6,2,5,30,7.7,1.27,0.069,0.62,35,406,83,4,4,5.7,6,0,61,6,0.318,87.06,83.2,0.96,0.13,788,1.6,213,2.4000000000000004
+2023,6,2,6,0,8.1,1.29,0.076,0.62,48,567,167,2,4,5.9,10,0,32,10,0.318,86.23,77.93,0.96,0.13,788,1.7000000000000002,223,2.5
+2023,6,2,6,30,8.6,1.29,0.076,0.62,59,677,263,3,8,5.9,19,0,46,19,0.318,83.36,72.49,0.96,0.13,788,1.7000000000000002,235,2.7
+2023,6,2,7,0,9.200000000000001,1.29,0.075,0.62,67,753,362,0,5,6.1000000000000005,64,0,0,64,0.318,81.05,66.94,0.96,0.13,788,1.7000000000000002,246,2.8000000000000003
+2023,6,2,7,30,9.700000000000001,1.29,0.075,0.62,73,809,462,0,4,6.1000000000000005,113,0,0,113,0.317,78.38,61.300000000000004,0.96,0.13,788,1.7000000000000002,257,3
+2023,6,2,8,0,10.3,1.27,0.07200000000000001,0.62,78,852,559,0,4,6.1000000000000005,109,0,0,109,0.317,75.26,55.61,0.96,0.13,788,1.7000000000000002,268,3.2
+2023,6,2,8,30,10.700000000000001,1.27,0.07200000000000001,0.62,82,884,651,0,5,6.1000000000000005,167,0,0,167,0.316,73.28,49.92,0.96,0.13,788,1.7000000000000002,276,3.3000000000000003
+2023,6,2,9,0,11.200000000000001,1.26,0.069,0.62,84,910,736,0,5,6.1000000000000005,196,4,0,199,0.315,70.8,44.26,0.9500000000000001,0.13,788,1.7000000000000002,284,3.4000000000000004
+2023,6,2,9,30,11.5,1.26,0.069,0.62,87,929,812,0,8,6.1000000000000005,102,1,0,103,0.314,69.5,38.7,0.9500000000000001,0.13,789,1.7000000000000002,286,3.5
+2023,6,2,10,0,11.9,1.24,0.067,0.62,89,944,878,0,8,6,153,1,0,154,0.313,66.95,33.33,0.9500000000000001,0.13,789,1.7000000000000002,288,3.7
+2023,6,2,10,30,12,1.24,0.067,0.62,94,950,931,0,8,6,225,3,0,228,0.312,66.51,28.29,0.9500000000000001,0.13,789,1.7000000000000002,286,3.7
+2023,6,2,11,0,12.200000000000001,1.2,0.079,0.62,100,952,971,0,8,5.800000000000001,325,14,0,338,0.311,64.92,23.830000000000002,0.96,0.13,789,1.7000000000000002,285,3.8000000000000003
+2023,6,2,11,30,12.3,1.2,0.079,0.62,101,957,998,0,8,5.800000000000001,201,2,0,203,0.31,64.49,20.37,0.9500000000000001,0.13,789,1.7000000000000002,286,3.8000000000000003
+2023,6,2,12,0,12.3,1.21,0.078,0.62,101,959,1010,0,8,5.7,249,5,0,254,0.309,64.1,18.490000000000002,0.9500000000000001,0.13,789,1.8,287,3.8000000000000003
+2023,6,2,12,30,12.3,1.21,0.078,0.62,102,958,1009,0,8,5.7,194,2,0,196,0.308,64.1,18.69,0.9500000000000001,0.13,789,1.8,289,3.7
+2023,6,2,13,0,12.200000000000001,1.21,0.081,0.62,102,954,993,0,8,5.7,197,1,0,198,0.307,64.57000000000001,20.900000000000002,0.9500000000000001,0.13,789,1.8,290,3.6
+2023,6,2,13,30,12.100000000000001,1.21,0.081,0.62,105,943,962,0,8,5.7,282,11,0,292,0.307,64.99,24.59,0.96,0.13,789,1.8,291,3.4000000000000004
+2023,6,2,14,0,12,1.19,0.097,0.62,107,927,916,0,8,5.800000000000001,261,6,0,266,0.307,65.6,29.18,0.96,0.13,789,1.8,291,3.3000000000000003
+2023,6,2,14,30,11.8,1.19,0.097,0.62,107,912,860,0,8,5.800000000000001,289,34,0,317,0.307,66.47,34.29,0.96,0.13,789,1.8,292,3.1
+2023,6,2,15,0,11.700000000000001,1.17,0.10400000000000001,0.62,105,892,791,0,8,5.800000000000001,232,11,0,240,0.307,67.32000000000001,39.7,0.96,0.13,789,1.8,292,2.8000000000000003
+2023,6,2,15,30,11.4,1.17,0.10400000000000001,0.62,103,867,713,0,4,5.800000000000001,174,8,0,180,0.307,68.67,45.28,0.96,0.13,789,1.8,292,2.6
+2023,6,2,16,0,11.100000000000001,1.1500000000000001,0.113,0.62,100,834,625,0,5,6,263,15,0,272,0.307,70.81,50.95,0.96,0.13,790,1.8,291,2.3000000000000003
+2023,6,2,16,30,10.8,1.1500000000000001,0.113,0.62,95,792,531,0,4,6,188,10,0,193,0.308,72.23,56.64,0.96,0.13,790,1.8,288,2
+2023,6,2,17,0,10.4,1.1300000000000001,0.123,0.62,90,738,433,0,4,6.2,124,3,0,125,0.309,75.19,62.31,0.96,0.13,790,1.8,284,1.7000000000000002
+2023,6,2,17,30,10,1.1300000000000001,0.123,0.62,82,668,333,0,4,6.2,80,1,0,80,0.31,77.22,67.94,0.96,0.13,790,1.8,271,1.4000000000000001
+2023,6,2,18,0,9.600000000000001,1.1,0.13,0.62,72,573,235,0,4,6.4,87,11,0,90,0.312,80.55,73.47,0.96,0.13,790,1.8,258,1.1
+2023,6,2,18,30,9.1,1.1,0.13,0.62,57,446,143,1,4,6.4,63,31,14,69,0.313,83.3,78.88,0.96,0.13,790,1.8,232,1
+2023,6,2,19,0,8.6,1.06,0.129,0.62,38,262,65,7,4,6.7,16,0,100,16,0.314,88.09,84.10000000000001,0.9500000000000001,0.13,790,1.8,205,0.9
+2023,6,2,19,30,8.3,1.06,0.129,0.62,10,49,11,5,4,6.7,3,0,71,3,0.315,89.89,88.99,0.9500000000000001,0.13,790,1.8,198,1
+2023,6,2,20,0,8,1,0.11900000000000001,0.62,0,0,0,0,4,6.9,0,0,0,0,0.315,93.02,94.14,0.9500000000000001,0.13,790,1.8,191,1
+2023,6,2,20,30,7.800000000000001,1,0.11900000000000001,0.62,0,0,0,0,4,6.9,0,0,0,0,0.315,94.29,98.7,0.9500000000000001,0.13,790,1.8,192,1
+2023,6,2,21,0,7.6000000000000005,0.9500000000000001,0.109,0.62,0,0,0,0,4,6.7,0,0,0,0,0.315,94.21000000000001,102.92,0.9500000000000001,0.13,790,1.8,193,1.1
+2023,6,2,21,30,7.4,0.9500000000000001,0.109,0.62,0,0,0,0,4,6.7,0,0,0,0,0.315,95.5,106.73,0.9500000000000001,0.13,790,1.8,193,1.1
+2023,6,2,22,0,7.300000000000001,0.92,0.10300000000000001,0.62,0,0,0,0,7,6.5,0,0,0,0,0.315,94.77,110.05,0.9500000000000001,0.13,790,1.8,194,1.2000000000000002
+2023,6,2,22,30,7.300000000000001,0.92,0.10300000000000001,0.62,0,0,0,0,6,6.5,0,0,0,0,0.315,94.77,112.82000000000001,0.9500000000000001,0.13,790,1.8,199,1.2000000000000002
+2023,6,2,23,0,7.2,0.9,0.095,0.62,0,0,0,0,6,6.5,0,0,0,0,0.316,95.5,114.96000000000001,0.9500000000000001,0.13,790,1.8,205,1.2000000000000002
+2023,6,2,23,30,7.2,0.9,0.095,0.62,0,0,0,0,6,6.5,0,0,0,0,0.317,95.5,116.41,0.9500000000000001,0.13,790,1.8,210,1.2000000000000002
+2023,6,3,0,0,7.2,0.92,0.09,0.62,0,0,0,0,6,6.6000000000000005,0,0,0,0,0.317,96.25,117.11,0.9500000000000001,0.13,790,1.8,216,1.2000000000000002
+2023,6,3,0,30,7.2,0.92,0.09,0.62,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.318,96.25,117.03,0.9500000000000001,0.13,790,1.7000000000000002,224,1.1
+2023,6,3,1,0,7.2,0.93,0.085,0.62,0,0,0,0,8,6.7,0,0,0,0,0.319,96.7,116.19,0.9400000000000001,0.13,789,1.7000000000000002,232,1.1
+2023,6,3,1,30,7.1000000000000005,0.93,0.085,0.62,0,0,0,0,7,6.7,0,0,0,0,0.32,97.36,114.62,0.9400000000000001,0.13,789,1.7000000000000002,240,1.1
+2023,6,3,2,0,7.1000000000000005,0.9400000000000001,0.08,0.62,0,0,0,0,7,6.7,0,0,0,0,0.321,96.98,112.35000000000001,0.9400000000000001,0.13,789,1.7000000000000002,248,1
+2023,6,3,2,30,6.9,0.9400000000000001,0.08,0.62,0,0,0,0,8,6.7,0,0,0,0,0.323,98.32000000000001,109.47,0.9400000000000001,0.13,789,1.7000000000000002,254,0.9
+2023,6,3,3,0,6.800000000000001,0.9400000000000001,0.079,0.62,0,0,0,0,4,6.5,0,0,0,0,0.324,97.88,106.05,0.9400000000000001,0.13,789,1.7000000000000002,261,0.8
+2023,6,3,3,30,6.7,0.9400000000000001,0.079,0.62,0,0,0,0,4,6.5,0,0,0,0,0.325,98.68,102.16,0.9400000000000001,0.13,790,1.7000000000000002,262,0.7000000000000001
+2023,6,3,4,0,6.6000000000000005,0.96,0.08,0.62,0,0,0,0,4,6.300000000000001,0,0,0,0,0.327,98.09,97.88,0.9400000000000001,0.13,790,1.7000000000000002,264,0.6000000000000001
+2023,6,3,4,30,6.800000000000001,0.96,0.08,0.62,0,0,0,0,4,6.300000000000001,0,0,0,0,0.328,96.76,93.26,0.9400000000000001,0.13,790,1.7000000000000002,248,0.5
+2023,6,3,5,0,7.1000000000000005,0.98,0.083,0.62,15,119,19,6,4,6.6000000000000005,5,0,86,5,0.329,96.77,88.12,0.9400000000000001,0.13,790,1.7000000000000002,233,0.4
+2023,6,3,5,30,7.800000000000001,0.98,0.083,0.62,37,371,81,4,5,6.6000000000000005,14,0,57,14,0.33,92.26,83.14,0.9400000000000001,0.13,790,1.7000000000000002,229,0.6000000000000001
+2023,6,3,6,0,8.6,0.99,0.085,0.62,52,542,166,0,5,7,6,0,0,6,0.332,89.53,77.88,0.9500000000000001,0.13,791,1.7000000000000002,224,0.8
+2023,6,3,6,30,9.700000000000001,0.99,0.085,0.62,63,656,261,0,4,7,24,0,0,24,0.332,83.15,72.45,0.9500000000000001,0.13,791,1.7000000000000002,264,1.1
+2023,6,3,7,0,10.8,1.01,0.084,0.62,71,736,360,0,5,7.2,56,0,0,56,0.333,78.36,66.89,0.9500000000000001,0.13,791,1.7000000000000002,304,1.4000000000000001
+2023,6,3,7,30,11.8,1.01,0.084,0.62,77,794,459,0,5,7.2,83,4,0,85,0.333,73.35000000000001,61.26,0.9500000000000001,0.13,791,1.7000000000000002,310,1.7000000000000002
+2023,6,3,8,0,12.8,1.01,0.082,0.62,83,837,556,0,5,6.9,241,25,0,255,0.334,67.38,55.57,0.9500000000000001,0.13,791,1.7000000000000002,316,2.1
+2023,6,3,8,30,13.5,1.01,0.082,0.62,89,869,649,0,4,6.9,170,11,0,177,0.333,64.38,49.88,0.9500000000000001,0.13,791,1.7000000000000002,316,2.2
+2023,6,3,9,0,14.3,1.02,0.083,0.62,93,894,734,0,4,6.2,148,0,0,148,0.333,58.1,44.22,0.9500000000000001,0.13,791,1.7000000000000002,315,2.3000000000000003
+2023,6,3,9,30,14.9,1.02,0.083,0.62,96,915,810,0,4,6.2,249,1,0,250,0.332,55.9,38.660000000000004,0.9500000000000001,0.13,791,1.7000000000000002,315,2.2
+2023,6,3,10,0,15.5,1.02,0.081,0.62,98,931,876,0,4,5.5,266,3,0,269,0.331,51.46,33.28,0.9500000000000001,0.13,791,1.7000000000000002,315,2.1
+2023,6,3,10,30,16,1.02,0.081,0.62,100,942,930,0,4,5.5,143,0,0,143,0.329,49.84,28.23,0.9500000000000001,0.13,791,1.7000000000000002,315,2
+2023,6,3,11,0,16.6,1,0.083,0.62,103,948,971,0,5,5.1000000000000005,293,24,0,315,0.328,46.61,23.76,0.9500000000000001,0.13,791,1.7000000000000002,314,1.8
+2023,6,3,11,30,16.900000000000002,1,0.083,0.62,102,956,999,0,5,5.1000000000000005,466,170,0,625,0.327,45.730000000000004,20.27,0.9500000000000001,0.13,791,1.6,315,1.7000000000000002
+2023,6,3,12,0,17.3,0.99,0.079,0.62,102,960,1013,0,8,4.800000000000001,418,302,0,705,0.325,43.660000000000004,18.37,0.9500000000000001,0.13,791,1.6,316,1.6
+2023,6,3,12,30,17.6,0.99,0.079,0.62,101,961,1012,0,8,4.800000000000001,385,384,0,749,0.324,42.85,18.56,0.9500000000000001,0.13,791,1.6,321,1.5
+2023,6,3,13,0,17.900000000000002,0.98,0.075,0.62,99,961,997,0,5,4.5,469,300,0,749,0.323,41.24,20.78,0.9500000000000001,0.13,791,1.6,325,1.4000000000000001
+2023,6,3,13,30,18.1,0.98,0.075,0.62,97,957,968,0,3,4.5,401,364,0,732,0.322,40.730000000000004,24.47,0.9500000000000001,0.13,791,1.6,335,1.4000000000000001
+2023,6,3,14,0,18.3,0.98,0.07200000000000001,0.62,94,951,925,0,0,4.2,222,739,0,868,0.321,39.22,29.060000000000002,0.9400000000000001,0.13,791,1.6,346,1.4000000000000001
+2023,6,3,14,30,18.400000000000002,0.98,0.07200000000000001,0.62,92,940,870,0,0,4.2,207,755,0,832,0.32,38.980000000000004,34.18,0.9400000000000001,0.13,791,1.6,177,1.5
+2023,6,3,15,0,18.400000000000002,1,0.07100000000000001,0.62,89,926,802,0,0,3.8000000000000003,211,681,0,736,0.319,38,39.6,0.9400000000000001,0.13,791,1.6,8,1.6
+2023,6,3,15,30,18.3,1,0.07100000000000001,0.62,86,905,724,0,3,3.8000000000000003,319,355,0,569,0.318,38.24,45.18,0.9400000000000001,0.13,791,1.6,16,1.8
+2023,6,3,16,0,18.1,1.01,0.07200000000000001,0.62,82,879,637,0,3,3.6,267,414,0,528,0.318,38.17,50.85,0.9400000000000001,0.13,791,1.6,25,1.9000000000000001
+2023,6,3,16,30,17.6,1.01,0.07200000000000001,0.62,78,845,544,0,3,3.6,199,425,0,433,0.318,39.38,56.54,0.9400000000000001,0.13,791,1.6,32,2.1
+2023,6,3,17,0,17.2,1.02,0.075,0.62,73,800,446,0,3,3.7,186,449,4,395,0.317,40.65,62.21,0.9400000000000001,0.13,791,1.5,38,2.2
+2023,6,3,17,30,16.400000000000002,1.02,0.075,0.62,67,739,346,0,3,3.7,156,386,11,302,0.317,42.76,67.83,0.9400000000000001,0.13,791,1.6,47,2
+2023,6,3,18,0,15.700000000000001,1.03,0.078,0.62,59,655,246,0,3,5.5,132,242,14,201,0.318,50.61,73.37,0.9400000000000001,0.13,791,1.6,56,1.7000000000000002
+2023,6,3,18,30,14.4,1.03,0.078,0.62,48,532,152,1,3,5.5,70,345,14,137,0.318,55.01,78.77,0.9500000000000001,0.13,791,1.6,64,1.5
+2023,6,3,19,0,13.100000000000001,1.05,0.083,0.62,34,344,70,5,3,7.1000000000000005,42,120,71,55,0.318,66.88,83.99,0.9500000000000001,0.13,792,1.6,72,1.3
+2023,6,3,19,30,12.5,1.05,0.083,0.62,11,87,13,5,3,7.1000000000000005,7,0,71,7,0.318,69.55,88.89,0.9500000000000001,0.13,792,1.6,77,1.4000000000000001
+2023,6,3,20,0,11.9,1.06,0.085,0.62,0,0,0,0,0,6.800000000000001,0,0,0,0,0.318,71.13,94.03,0.9500000000000001,0.13,792,1.6,83,1.4000000000000001
+2023,6,3,20,30,11.5,1.06,0.085,0.62,0,0,0,0,0,6.800000000000001,0,0,0,0,0.318,73.03,98.58,0.9500000000000001,0.13,792,1.6,86,1.5
+2023,6,3,21,0,11.100000000000001,1.06,0.08600000000000001,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.318,74.01,102.8,0.9400000000000001,0.13,792,1.6,89,1.5
+2023,6,3,21,30,10.700000000000001,1.06,0.08600000000000001,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.318,76,106.60000000000001,0.9400000000000001,0.13,792,1.5,91,1.4000000000000001
+2023,6,3,22,0,10.3,1.06,0.084,0.62,0,0,0,0,0,6.4,0,0,0,0,0.318,76.60000000000001,109.93,0.9400000000000001,0.13,792,1.5,93,1.4000000000000001
+2023,6,3,22,30,9.9,1.06,0.084,0.62,0,0,0,0,0,6.4,0,0,0,0,0.318,78.67,112.7,0.9400000000000001,0.13,792,1.5,95,1.3
+2023,6,3,23,0,9.5,1.06,0.082,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.318,79.28,114.84,0.9400000000000001,0.13,792,1.5,97,1.2000000000000002
+2023,6,3,23,30,9,1.06,0.082,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.319,81.99,116.28,0.9400000000000001,0.13,792,1.4000000000000001,98,1.2000000000000002
+2023,6,4,0,0,8.6,1.06,0.08,0.62,0,0,0,0,3,5.800000000000001,0,0,0,0,0.319,82.4,116.98,0.9400000000000001,0.13,792,1.4000000000000001,99,1.1
+2023,6,4,0,30,8.200000000000001,1.06,0.08,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.32,84.66,116.92,0.9400000000000001,0.13,792,1.4000000000000001,99,1.1
+2023,6,4,1,0,7.800000000000001,1.06,0.076,0.62,0,0,0,0,0,5.4,0,0,0,0,0.32,84.92,116.08,0.9400000000000001,0.13,792,1.4000000000000001,99,1.1
+2023,6,4,1,30,7.6000000000000005,1.06,0.076,0.62,0,0,0,0,0,5.4,0,0,0,0,0.321,86.08,114.51,0.9400000000000001,0.13,792,1.4000000000000001,94,1
+2023,6,4,2,0,7.4,1.05,0.074,0.62,0,0,0,0,0,5.2,0,0,0,0,0.321,86.16,112.26,0.9400000000000001,0.13,792,1.3,88,1
+2023,6,4,2,30,7.300000000000001,1.05,0.074,0.62,0,0,0,0,0,5.2,0,0,0,0,0.321,86.75,109.38,0.9400000000000001,0.13,792,1.3,77,1
+2023,6,4,3,0,7.2,1.06,0.073,0.62,0,0,0,0,7,5.2,0,0,0,0,0.322,86.91,105.97,0.9400000000000001,0.13,792,1.3,66,0.9
+2023,6,4,3,30,6.9,1.06,0.073,0.62,0,0,0,0,8,5.2,0,0,0,0,0.322,88.71000000000001,102.09,0.9400000000000001,0.13,792,1.3,58,0.9
+2023,6,4,4,0,6.6000000000000005,1.07,0.074,0.62,0,0,0,0,8,5.1000000000000005,0,0,0,0,0.322,90.37,97.81,0.9400000000000001,0.13,792,1.3,50,1
+2023,6,4,4,30,7,1.07,0.074,0.62,0,0,0,0,8,5.1000000000000005,0,0,0,0,0.321,87.92,93.2,0.9400000000000001,0.13,792,1.4000000000000001,48,1
+2023,6,4,5,0,7.4,1.08,0.076,0.62,16,139,21,6,8,5.4,14,2,86,14,0.321,87.41,88.07000000000001,0.9400000000000001,0.13,792,1.4000000000000001,46,1
+2023,6,4,5,30,9,1.08,0.076,0.62,36,402,84,4,8,5.4,58,94,57,69,0.321,78.43,83.10000000000001,0.9400000000000001,0.13,792,1.4000000000000001,46,1.6
+2023,6,4,6,0,10.600000000000001,1.09,0.076,0.62,50,570,170,0,0,5.7,66,452,0,161,0.321,71.61,77.83,0.9400000000000001,0.13,793,1.4000000000000001,46,2.2
+2023,6,4,6,30,12.200000000000001,1.09,0.076,0.62,59,680,265,0,0,5.7,87,533,0,248,0.321,64.43,72.4,0.9400000000000001,0.13,793,1.4000000000000001,48,2.6
+2023,6,4,7,0,13.9,1.1,0.076,0.62,68,756,365,0,0,5.800000000000001,97,651,0,353,0.321,58.29,66.85,0.9400000000000001,0.13,793,1.4000000000000001,49,3
+2023,6,4,7,30,14.9,1.1,0.076,0.62,75,811,465,0,0,5.800000000000001,75,811,0,465,0.321,54.65,61.22,0.9400000000000001,0.13,793,1.4000000000000001,50,3.1
+2023,6,4,8,0,15.9,1.11,0.077,0.62,81,852,563,0,0,5.7,81,852,0,563,0.32,50.74,55.54,0.9400000000000001,0.13,793,1.4000000000000001,51,3.1
+2023,6,4,8,30,16.7,1.11,0.077,0.62,85,884,655,0,0,5.7,85,884,0,655,0.319,48.230000000000004,49.84,0.9400000000000001,0.13,793,1.4000000000000001,53,3
+2023,6,4,9,0,17.5,1.12,0.076,0.62,88,909,740,0,0,5.6000000000000005,88,909,0,740,0.318,45.42,44.18,0.9400000000000001,0.13,792,1.4000000000000001,54,2.9000000000000004
+2023,6,4,9,30,18.1,1.12,0.076,0.62,92,928,817,0,0,5.6000000000000005,92,928,0,817,0.317,43.74,38.62,0.9400000000000001,0.13,792,1.5,55,2.8000000000000003
+2023,6,4,10,0,18.8,1.1300000000000001,0.075,0.62,94,943,883,0,0,5.300000000000001,94,943,0,883,0.316,41.17,33.230000000000004,0.9400000000000001,0.13,792,1.5,56,2.6
+2023,6,4,10,30,19.3,1.1300000000000001,0.075,0.62,92,960,938,0,0,5.300000000000001,92,960,0,938,0.315,39.910000000000004,28.17,0.9400000000000001,0.13,792,1.5,57,2.5
+2023,6,4,11,0,19.8,1.21,0.057,0.62,88,975,981,0,0,5.1000000000000005,134,905,0,963,0.313,38.1,23.68,0.9500000000000001,0.13,792,1.5,57,2.3000000000000003
+2023,6,4,11,30,20.1,1.21,0.057,0.62,90,979,1009,0,0,5.1000000000000005,98,967,0,1006,0.313,37.4,20.18,0.9500000000000001,0.13,792,1.5,57,2.2
+2023,6,4,12,0,20.400000000000002,1.21,0.059000000000000004,0.62,91,980,1022,0,0,5,120,933,0,1006,0.312,36.39,18.26,0.9500000000000001,0.13,792,1.5,56,2.1
+2023,6,4,12,30,20.5,1.21,0.059000000000000004,0.62,91,979,1020,0,0,5,180,816,0,954,0.311,36.17,18.44,0.9500000000000001,0.13,792,1.5,57,2.1
+2023,6,4,13,0,20.6,1.21,0.061,0.62,91,976,1004,0,0,5,250,690,0,896,0.31,35.93,20.650000000000002,0.9500000000000001,0.13,792,1.5,58,2.1
+2023,6,4,13,30,20.6,1.21,0.061,0.62,89,972,975,0,3,5,428,339,0,737,0.31,35.89,24.35,0.9500000000000001,0.13,791,1.5,56,2.2
+2023,6,4,14,0,20.6,1.22,0.056,0.62,86,967,932,0,3,4.9,300,473,0,714,0.31,35.81,28.95,0.9500000000000001,0.13,791,1.5,55,2.2
+2023,6,4,14,30,20.5,1.22,0.056,0.62,84,956,876,0,0,4.9,168,777,0,812,0.31,36.03,34.07,0.9500000000000001,0.13,791,1.5,53,2.3000000000000003
+2023,6,4,15,0,20.400000000000002,1.2,0.057,0.62,82,941,808,0,0,4.800000000000001,205,688,0,736,0.311,35.96,39.5,0.9500000000000001,0.13,791,1.5,51,2.4000000000000004
+2023,6,4,15,30,20,1.2,0.057,0.62,79,922,730,0,8,4.800000000000001,257,417,0,551,0.312,36.86,45.08,0.9500000000000001,0.13,791,1.5,51,2.5
+2023,6,4,16,0,19.700000000000003,1.18,0.057,0.62,75,898,643,0,8,4.7,236,416,0,499,0.312,37.29,50.75,0.9500000000000001,0.13,791,1.5,51,2.6
+2023,6,4,16,30,19.200000000000003,1.18,0.057,0.62,72,866,551,0,8,4.7,218,364,0,419,0.313,38.47,56.44,0.9500000000000001,0.13,791,1.5,52,2.7
+2023,6,4,17,0,18.7,1.17,0.058,0.62,66,825,452,0,5,4.7,232,131,0,293,0.314,39.79,62.11,0.9500000000000001,0.13,791,1.5,53,2.8000000000000003
+2023,6,4,17,30,18,1.17,0.058,0.62,60,770,352,0,5,4.7,188,61,0,211,0.316,41.57,67.73,0.9500000000000001,0.13,791,1.5,54,2.8000000000000003
+2023,6,4,18,0,17.400000000000002,1.16,0.058,0.62,53,693,253,0,5,5.300000000000001,137,87,0,162,0.317,44.84,73.26,0.9500000000000001,0.13,792,1.5,55,2.8000000000000003
+2023,6,4,18,30,15.9,1.16,0.058,0.62,44,581,158,0,8,5.300000000000001,82,136,0,109,0.318,49.31,78.67,0.9500000000000001,0.13,792,1.5,57,2.2
+2023,6,4,19,0,14.4,1.1500000000000001,0.057,0.62,31,406,74,6,8,6.800000000000001,45,24,86,48,0.32,60.46,83.89,0.9400000000000001,0.13,792,1.5,58,1.6
+2023,6,4,19,30,13.5,1.1500000000000001,0.057,0.62,12,120,15,5,8,6.800000000000001,9,0,71,9,0.321,64.08,88.79,0.9400000000000001,0.13,792,1.5,60,1.5
+2023,6,4,20,0,12.600000000000001,1.1400000000000001,0.057,0.62,0,0,0,0,3,6.9,0,0,0,0,0.323,68.17,93.92,0.9400000000000001,0.13,792,1.5,61,1.5
+2023,6,4,20,30,12,1.1400000000000001,0.057,0.62,0,0,0,0,8,6.9,0,0,0,0,0.323,70.91,98.47,0.9400000000000001,0.13,792,1.5,61,1.4000000000000001
+2023,6,4,21,0,11.5,1.1400000000000001,0.057,0.62,0,0,0,0,8,6.7,0,0,0,0,0.324,72.48,102.68,0.9400000000000001,0.13,792,1.5,61,1.4000000000000001
+2023,6,4,21,30,11,1.1400000000000001,0.057,0.62,0,0,0,0,3,6.7,0,0,0,0,0.325,74.92,106.48,0.9400000000000001,0.13,792,1.5,60,1.3
+2023,6,4,22,0,10.5,1.1400000000000001,0.057,0.62,0,0,0,0,8,6.6000000000000005,0,0,0,0,0.326,77.06,109.81,0.9400000000000001,0.13,792,1.5,59,1.2000000000000002
+2023,6,4,22,30,10.100000000000001,1.1400000000000001,0.057,0.62,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.326,79.14,112.58,0.9400000000000001,0.13,792,1.5,59,1.1
+2023,6,4,23,0,9.8,1.1400000000000001,0.057,0.62,0,0,0,0,8,6.6000000000000005,0,0,0,0,0.326,80.55,114.72,0.9400000000000001,0.13,792,1.5,58,1.1
+2023,6,4,23,30,9.5,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.326,82.18,116.16,0.9400000000000001,0.13,792,1.5,58,1
+2023,6,5,0,0,9.200000000000001,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.326,83.62,116.87,0.9400000000000001,0.13,792,1.4000000000000001,58,1
+2023,6,5,0,30,8.9,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.326,85.32000000000001,116.81,0.9400000000000001,0.13,792,1.4000000000000001,59,1
+2023,6,5,1,0,8.700000000000001,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.5,0,0,0,0,0.326,86.14,115.98,0.9400000000000001,0.13,792,1.4000000000000001,60,0.9
+2023,6,5,1,30,8.5,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.5,0,0,0,0,0.326,87.31,114.41,0.9400000000000001,0.13,792,1.4000000000000001,64,0.9
+2023,6,5,2,0,8.3,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.4,0,0,0,0,0.325,88.12,112.17,0.9400000000000001,0.13,792,1.5,68,0.9
+2023,6,5,2,30,8,1.1400000000000001,0.057,0.62,0,0,0,0,0,6.4,0,0,0,0,0.326,89.93,109.3,0.9400000000000001,0.13,792,1.5,73,0.9
+2023,6,5,3,0,7.800000000000001,1.1500000000000001,0.058,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.326,90.33,105.9,0.9400000000000001,0.13,792,1.5,79,0.9
+2023,6,5,3,30,7.6000000000000005,1.1500000000000001,0.058,0.62,0,0,0,0,3,6.300000000000001,0,0,0,0,0.326,91.57000000000001,102.02,0.9400000000000001,0.13,792,1.5,82,0.9
+2023,6,5,4,0,7.4,1.1500000000000001,0.058,0.62,0,0,0,0,8,6.1000000000000005,0,0,0,0,0.326,91.39,97.75,0.9400000000000001,0.13,792,1.5,86,0.9
+2023,6,5,4,30,8,1.1500000000000001,0.058,0.62,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.326,87.73,93.15,0.9400000000000001,0.13,792,1.5,86,0.9
+2023,6,5,5,0,8.6,1.1500000000000001,0.056,0.62,16,168,22,5,8,6.1000000000000005,14,45,71,16,0.327,84.2,88.03,0.9400000000000001,0.13,792,1.5,87,0.9
+2023,6,5,5,30,10.200000000000001,1.1500000000000001,0.056,0.62,33,444,87,3,3,6.1000000000000005,48,128,39,63,0.327,75.63,83.05,0.9400000000000001,0.13,792,1.4000000000000001,86,1.2000000000000002
+2023,6,5,6,0,11.8,1.1400000000000001,0.055,0.62,45,609,174,0,0,5.9,49,571,0,170,0.328,67.15,77.8,0.9400000000000001,0.13,792,1.4000000000000001,86,1.5
+2023,6,5,6,30,14,1.1400000000000001,0.055,0.62,54,714,270,0,0,5.9,54,714,0,270,0.328,58.17,72.37,0.9400000000000001,0.13,792,1.4000000000000001,97,1.3
+2023,6,5,7,0,16.2,1.1300000000000001,0.054,0.62,60,787,370,0,0,5.300000000000001,60,787,0,370,0.328,48.34,66.82000000000001,0.9400000000000001,0.13,792,1.4000000000000001,109,1
+2023,6,5,7,30,18.1,1.1300000000000001,0.054,0.62,66,839,470,0,0,5.300000000000001,66,839,0,470,0.328,42.88,61.19,0.9400000000000001,0.13,792,1.4000000000000001,142,0.9
+2023,6,5,8,0,19.900000000000002,1.12,0.054,0.62,71,878,568,0,0,4.1000000000000005,71,878,0,568,0.328,35.36,55.51,0.9400000000000001,0.13,792,1.4000000000000001,175,0.8
+2023,6,5,8,30,20.900000000000002,1.12,0.054,0.62,74,908,660,0,0,4.1000000000000005,74,908,0,660,0.328,33.25,49.81,0.9400000000000001,0.13,792,1.4000000000000001,192,0.9
+2023,6,5,9,0,21.900000000000002,1.11,0.054,0.62,79,930,746,0,0,3.6,79,930,0,746,0.328,30.19,44.15,0.9400000000000001,0.13,792,1.4000000000000001,209,1
+2023,6,5,9,30,22.700000000000003,1.11,0.054,0.62,81,948,822,0,0,3.6,81,948,0,822,0.328,28.73,38.58,0.9400000000000001,0.13,791,1.4000000000000001,213,1.1
+2023,6,5,10,0,23.5,1.11,0.055,0.62,83,962,888,0,0,3.4000000000000004,83,962,0,888,0.328,26.89,33.19,0.9400000000000001,0.13,791,1.4000000000000001,216,1.1
+2023,6,5,10,30,24.1,1.11,0.055,0.62,83,975,943,0,0,3.4000000000000004,83,975,0,943,0.328,25.94,28.12,0.9400000000000001,0.13,791,1.4000000000000001,217,1.2000000000000002
+2023,6,5,11,0,24.700000000000003,1.23,0.047,0.62,82,986,985,0,0,3.2,82,986,0,985,0.327,24.66,23.62,0.9400000000000001,0.13,791,1.4000000000000001,218,1.2000000000000002
+2023,6,5,11,30,25.1,1.23,0.047,0.62,83,989,1012,0,0,3.2,83,989,0,1012,0.327,24.080000000000002,20.1,0.9400000000000001,0.13,791,1.4000000000000001,219,1.2000000000000002
+2023,6,5,12,0,25.6,1.22,0.049,0.62,84,990,1025,0,0,3,84,990,0,1025,0.327,23.09,18.16,0.9400000000000001,0.13,791,1.4000000000000001,220,1.3
+2023,6,5,12,30,25.8,1.22,0.049,0.62,85,988,1023,0,0,3,101,959,0,1011,0.327,22.82,18.32,0.9400000000000001,0.13,791,1.5,220,1.3
+2023,6,5,13,0,26,1.21,0.053,0.62,86,984,1007,0,0,2.8000000000000003,295,587,0,845,0.327,22.19,20.54,0.9400000000000001,0.13,790,1.5,220,1.4000000000000001
+2023,6,5,13,30,26.1,1.21,0.053,0.62,83,981,978,0,7,2.8000000000000003,361,402,0,728,0.328,22.06,24.240000000000002,0.9400000000000001,0.13,790,1.5,219,1.4000000000000001
+2023,6,5,14,0,26.1,1.35,0.045,0.62,78,978,935,0,8,2.5,307,488,4,734,0.328,21.63,28.85,0.9500000000000001,0.13,790,1.5,218,1.5
+2023,6,5,14,30,25.900000000000002,1.35,0.045,0.62,78,966,879,0,8,2.5,339,284,0,575,0.328,21.89,33.97,0.9500000000000001,0.13,790,1.5,215,1.5
+2023,6,5,15,0,25.700000000000003,1.34,0.049,0.62,77,950,811,0,7,2.3000000000000003,202,613,29,676,0.329,21.85,39.4,0.9500000000000001,0.13,790,1.5,212,1.4000000000000001
+2023,6,5,15,30,25.5,1.34,0.049,0.62,76,929,733,0,0,2.3000000000000003,105,861,4,714,0.329,22.11,44.980000000000004,0.9500000000000001,0.13,790,1.5,204,1.3
+2023,6,5,16,0,25.200000000000003,1.34,0.053,0.62,73,903,646,0,0,2.2,73,903,0,646,0.329,22.36,50.65,0.9500000000000001,0.13,789,1.5,195,1.2000000000000002
+2023,6,5,16,30,24.700000000000003,1.34,0.053,0.62,70,870,552,0,0,2.2,70,870,0,552,0.329,23.04,56.35,0.96,0.13,789,1.5,182,1.1
+2023,6,5,17,0,24.200000000000003,1.35,0.057,0.62,66,827,454,0,0,2.3000000000000003,84,780,14,450,0.329,23.94,62.02,0.96,0.13,789,1.5,168,1.1
+2023,6,5,17,30,23.400000000000002,1.35,0.057,0.62,61,770,354,0,3,2.3000000000000003,119,533,43,322,0.329,25.14,67.64,0.96,0.13,790,1.5,153,1
+2023,6,5,18,0,22.6,1.35,0.061,0.62,53,690,253,0,8,4.3,78,511,71,226,0.329,30.42,73.17,0.96,0.13,790,1.6,137,0.8
+2023,6,5,18,30,21.1,1.35,0.061,0.62,44,578,159,0,3,4.3,80,217,25,123,0.329,33.32,78.57000000000001,0.96,0.13,790,1.6,122,0.8
+2023,6,5,19,0,19.700000000000003,1.36,0.062,0.62,31,404,75,2,0,7.9,38,214,32,61,0.329,46.42,83.79,0.96,0.13,790,1.6,106,0.7000000000000001
+2023,6,5,19,30,18.6,1.36,0.062,0.62,12,123,15,0,0,7.9,12,123,0,15,0.328,49.7,88.7,0.96,0.13,790,1.6,99,0.8
+2023,6,5,20,0,17.6,1.36,0.059000000000000004,0.62,0,0,0,0,0,7.5,0,0,0,0,0.328,51.39,93.81,0.96,0.13,790,1.6,91,1
+2023,6,5,20,30,16.900000000000002,1.36,0.059000000000000004,0.62,0,0,0,0,0,7.5,0,0,0,0,0.328,53.71,98.36,0.96,0.13,790,1.6,92,1.1
+2023,6,5,21,0,16.2,1.36,0.053,0.62,0,0,0,0,0,7.4,0,0,0,0,0.328,56.050000000000004,102.57000000000001,0.9500000000000001,0.13,791,1.6,93,1.2000000000000002
+2023,6,5,21,30,15.4,1.36,0.053,0.62,0,0,0,0,3,7.4,0,0,0,0,0.328,58.910000000000004,106.37,0.9500000000000001,0.13,790,1.5,95,1.2000000000000002
+2023,6,5,22,0,14.600000000000001,1.34,0.048,0.62,0,0,0,0,3,7.2,0,0,0,0,0.328,61.34,109.69,0.9500000000000001,0.13,790,1.5,98,1.2000000000000002
+2023,6,5,22,30,13.9,1.34,0.048,0.62,0,0,0,0,0,7.2,0,0,0,0,0.327,64.17,112.46000000000001,0.9500000000000001,0.13,790,1.5,102,1.2000000000000002
+2023,6,5,23,0,13.3,1.31,0.045,0.62,0,0,0,0,0,7.300000000000001,0,0,0,0,0.327,67,114.60000000000001,0.9400000000000001,0.13,790,1.5,105,1.3
+2023,6,5,23,30,12.8,1.31,0.045,0.62,0,0,0,0,0,7.300000000000001,0,0,0,0,0.326,69.21000000000001,116.05,0.9400000000000001,0.13,790,1.5,111,1.2000000000000002
+2023,6,6,0,0,12.3,1.29,0.045,0.62,0,0,0,0,0,7.5,0,0,0,0,0.326,72.27,116.76,0.9400000000000001,0.13,790,1.5,117,1.2000000000000002
+2023,6,6,0,30,11.9,1.29,0.045,0.62,0,0,0,0,0,7.4,0,0,0,0,0.325,74.19,116.7,0.9400000000000001,0.13,790,1.5,124,1.2000000000000002
+2023,6,6,1,0,11.5,1.27,0.046,0.62,0,0,0,0,0,7.5,0,0,0,0,0.325,76.43,115.88,0.9400000000000001,0.13,790,1.5,131,1.2000000000000002
+2023,6,6,1,30,11.200000000000001,1.27,0.046,0.62,0,0,0,0,0,7.5,0,0,0,0,0.324,77.96000000000001,114.32000000000001,0.9400000000000001,0.13,790,1.6,137,1.3
+2023,6,6,2,0,10.9,1.24,0.047,0.62,0,0,0,0,0,7.4,0,0,0,0,0.324,79.02,112.08,0.9400000000000001,0.13,791,1.6,143,1.3
+2023,6,6,2,30,10.700000000000001,1.24,0.047,0.62,0,0,0,0,0,7.4,0,0,0,0,0.324,80.08,109.22,0.9400000000000001,0.13,791,1.6,149,1.3
+2023,6,6,3,0,10.600000000000001,1.21,0.049,0.62,0,0,0,0,0,7.2,0,0,0,0,0.324,79.69,105.83,0.9400000000000001,0.13,791,1.6,155,1.3
+2023,6,6,3,30,10.4,1.21,0.049,0.62,0,0,0,0,0,7.2,0,0,0,0,0.324,80.76,101.96000000000001,0.9400000000000001,0.13,791,1.6,160,1.3
+2023,6,6,4,0,10.200000000000001,1.19,0.049,0.62,0,0,0,0,0,7,0,0,0,0,0.324,80.45,97.69,0.9400000000000001,0.13,791,1.6,166,1.3
+2023,6,6,4,30,10.700000000000001,1.19,0.049,0.62,0,0,0,0,0,7,0,0,0,0,0.324,77.82000000000001,93.10000000000001,0.9400000000000001,0.13,791,1.6,169,1.5
+2023,6,6,5,0,11.200000000000001,1.18,0.049,0.62,16,182,22,0,0,7.2,16,182,0,22,0.324,76.17,87.99,0.9400000000000001,0.13,791,1.6,173,1.6
+2023,6,6,5,30,12.4,1.18,0.049,0.62,32,459,88,0,0,7.2,32,459,0,88,0.324,70.38,83.01,0.9400000000000001,0.13,791,1.6,176,1.9000000000000001
+2023,6,6,6,0,13.700000000000001,1.18,0.049,0.62,43,618,174,0,0,6.9,43,618,0,174,0.324,63.71,77.76,0.9400000000000001,0.13,791,1.6,179,2.2
+2023,6,6,6,30,15.4,1.18,0.049,0.62,52,719,270,0,0,6.9,52,719,0,270,0.324,57.11,72.34,0.9400000000000001,0.13,791,1.6,184,2.4000000000000004
+2023,6,6,7,0,17.1,1.18,0.05,0.62,58,788,369,0,0,6.7,91,677,0,358,0.324,50.53,66.79,0.9400000000000001,0.13,791,1.6,189,2.6
+2023,6,6,7,30,18.6,1.18,0.05,0.62,64,839,469,0,0,6.800000000000001,74,809,0,464,0.322,46,61.160000000000004,0.9400000000000001,0.13,791,1.6,190,2.6
+2023,6,6,8,0,20.1,1.17,0.05,0.62,69,876,565,0,0,6.6000000000000005,69,876,0,565,0.321,41.35,55.480000000000004,0.9400000000000001,0.13,791,1.7000000000000002,191,2.6
+2023,6,6,8,30,21.200000000000003,1.17,0.05,0.62,72,907,658,0,0,6.5,72,907,0,658,0.319,38.6,49.79,0.9400000000000001,0.13,790,1.6,189,2.6
+2023,6,6,9,0,22.3,1.16,0.049,0.62,75,930,743,0,0,6.4,75,930,0,743,0.317,35.69,44.12,0.9400000000000001,0.13,790,1.6,187,2.5
+2023,6,6,9,30,23,1.16,0.049,0.62,78,949,820,0,0,6.4,78,949,0,820,0.315,34.21,38.550000000000004,0.9400000000000001,0.13,790,1.6,186,2.4000000000000004
+2023,6,6,10,0,23.8,1.1400000000000001,0.049,0.62,80,963,886,0,0,6.2,113,897,0,864,0.313,32.09,33.15,0.9400000000000001,0.13,789,1.6,184,2.3000000000000003
+2023,6,6,10,30,24.3,1.1400000000000001,0.049,0.62,78,978,941,0,8,6.2,260,622,0,809,0.311,31.150000000000002,28.07,0.9400000000000001,0.13,789,1.6,194,2
+2023,6,6,11,0,24.8,1.27,0.036000000000000004,0.62,76,990,983,0,8,5.9,184,764,0,884,0.309,29.78,23.56,0.9400000000000001,0.13,789,1.6,203,1.8
+2023,6,6,11,30,25,1.27,0.036000000000000004,0.62,79,990,1009,0,0,5.9,79,990,0,1009,0.307,29.39,20.02,0.9500000000000001,0.13,788,1.7000000000000002,219,2.1
+2023,6,6,12,0,25.1,1.29,0.048,0.62,83,985,1019,0,0,6,83,985,0,1019,0.306,29.310000000000002,18.06,0.9500000000000001,0.13,788,1.7000000000000002,236,2.4000000000000004
+2023,6,6,12,30,24.3,1.29,0.048,0.62,87,976,1014,0,0,6,176,787,0,924,0.304,30.740000000000002,18.21,0.96,0.13,788,1.9000000000000001,238,3.5
+2023,6,6,13,0,23.5,1.33,0.067,0.62,92,962,994,0,6,6.9,436,263,0,682,0.302,34.5,20.42,0.97,0.13,788,2,241,4.6000000000000005
+2023,6,6,13,30,21.900000000000002,1.33,0.067,0.62,92,954,963,0,6,7,455,117,0,562,0.301,38.050000000000004,24.13,0.97,0.13,789,2.1,245,5
+2023,6,6,14,0,20.3,1.44,0.07,0.62,91,942,917,0,6,8.8,400,304,0,667,0.3,47.59,28.740000000000002,0.97,0.13,789,2.2,249,5.5
+2023,6,6,14,30,19.1,1.44,0.07,0.62,90,930,862,0,7,8.8,354,359,0,652,0.3,51.26,33.87,0.97,0.13,789,2.1,260,4.800000000000001
+2023,6,6,15,0,17.900000000000002,1.44,0.07100000000000001,0.62,89,914,796,0,7,10,177,716,29,731,0.3,59.95,39.300000000000004,0.97,0.13,790,2.1,271,4
+2023,6,6,15,30,17.6,1.44,0.07100000000000001,0.62,83,901,721,0,6,10,291,378,0,559,0.3,61.02,44.89,0.96,0.13,789,2.1,302,3
+2023,6,6,16,0,17.3,1.43,0.06,0.62,76,883,637,0,6,10,290,256,0,453,0.3,62.18,50.56,0.96,0.13,789,2,334,2
+2023,6,6,16,30,17.1,1.43,0.06,0.62,73,852,546,0,6,10,226,342,7,416,0.301,62.97,56.25,0.96,0.13,789,2,196,2.5
+2023,6,6,17,0,16.8,1.41,0.061,0.62,68,810,449,0,6,9.5,200,336,7,358,0.301,62.29,61.93,0.96,0.13,789,1.9000000000000001,57,3
+2023,6,6,17,30,16.1,1.41,0.061,0.62,65,742,348,0,9,9.600000000000001,184,138,0,237,0.302,65.2,67.54,0.97,0.13,790,2,71,2.8000000000000003
+2023,6,6,18,0,15.5,1.3900000000000001,0.083,0.62,60,646,248,0,9,9.700000000000001,131,118,0,165,0.303,68.18,73.07000000000001,0.97,0.13,790,2,84,2.6
+2023,6,6,18,30,14.700000000000001,1.3900000000000001,0.083,0.62,51,517,154,0,6,9.700000000000001,80,134,0,107,0.304,71.76,78.47,0.98,0.13,790,2,91,2.5
+2023,6,6,19,0,14,1.3900000000000001,0.105,0.62,36,326,72,6,7,10.100000000000001,32,60,86,39,0.305,77.39,83.69,0.98,0.13,791,2.1,98,2.3000000000000003
+2023,6,6,19,30,13.600000000000001,1.3900000000000001,0.105,0.62,13,87,15,5,7,10.100000000000001,10,1,71,10,0.306,79.42,88.60000000000001,0.98,0.13,791,2.1,100,2.1
+2023,6,6,20,0,13.200000000000001,1.41,0.105,0.62,0,0,0,0,8,10.200000000000001,0,0,0,0,0.307,82.13,93.7,0.98,0.13,791,2.1,102,1.8
+2023,6,6,20,30,12.9,1.41,0.105,0.62,0,0,0,0,7,10.200000000000001,0,0,0,0,0.307,83.65,98.26,0.98,0.13,790,2.1,98,1.4000000000000001
+2023,6,6,21,0,12.600000000000001,1.41,0.097,0.62,0,0,0,0,6,10.200000000000001,0,0,0,0,0.308,85.41,102.46000000000001,0.98,0.13,790,2.1,94,1
+2023,6,6,21,30,12.4,1.41,0.097,0.62,0,0,0,0,6,10.200000000000001,0,0,0,0,0.308,86.54,106.26,0.97,0.13,790,2.1,81,1.1
+2023,6,6,22,0,12.3,1.3900000000000001,0.079,0.62,0,0,0,0,6,10.100000000000001,0,0,0,0,0.308,86.39,109.58,0.97,0.13,790,2,69,1.2000000000000002
+2023,6,6,22,30,11.9,1.3900000000000001,0.079,0.62,0,0,0,0,7,10.100000000000001,0,0,0,0,0.308,88.57000000000001,112.35000000000001,0.96,0.13,789,2,70,1.3
+2023,6,6,23,0,11.600000000000001,1.37,0.063,0.62,0,0,0,0,7,9.8,0,0,0,0,0.308,88.53,114.49000000000001,0.96,0.13,789,2,71,1.5
+2023,6,6,23,30,11.200000000000001,1.37,0.063,0.62,0,0,0,0,7,9.8,0,0,0,0,0.309,90.9,115.94,0.96,0.13,789,2,80,1.4000000000000001
+2023,6,7,0,0,10.9,1.34,0.063,0.62,0,0,0,0,7,9.5,0,0,0,0,0.309,91.18,116.66,0.96,0.13,789,1.9000000000000001,88,1.3
+2023,6,7,0,30,10.600000000000001,1.34,0.063,0.62,0,0,0,0,7,9.5,0,0,0,0,0.31,93.02,116.60000000000001,0.96,0.13,789,2,92,1.2000000000000002
+2023,6,7,1,0,10.3,1.32,0.068,0.62,0,0,0,0,7,9.4,0,0,0,0,0.311,93.94,115.79,0.96,0.13,789,2,96,1.1
+2023,6,7,1,30,10.100000000000001,1.32,0.068,0.62,0,0,0,0,7,9.4,0,0,0,0,0.311,95.2,114.24000000000001,0.96,0.13,789,2,98,1.1
+2023,6,7,2,0,9.9,1.3,0.08,0.62,0,0,0,0,7,9.200000000000001,0,0,0,0,0.312,95.24,112,0.96,0.13,789,2,99,1
+2023,6,7,2,30,9.9,1.3,0.08,0.62,0,0,0,0,8,9.200000000000001,0,0,0,0,0.312,95.24,109.15,0.97,0.13,789,2,104,1
+2023,6,7,3,0,9.9,1.27,0.099,0.62,0,0,0,0,0,8.9,0,0,0,0,0.313,93.47,105.76,0.97,0.13,789,2.1,109,0.9
+2023,6,7,3,30,10,1.27,0.099,0.62,0,0,0,0,5,8.9,0,0,0,0,0.313,92.96000000000001,101.9,0.97,0.13,790,2.1,117,0.9
+2023,6,7,4,0,10,1.25,0.117,0.62,0,0,0,0,5,8.700000000000001,0,0,0,0,0.314,91.87,97.65,0.97,0.13,790,2.1,125,0.8
+2023,6,7,4,30,10.4,1.25,0.117,0.62,0,0,0,0,5,8.700000000000001,0,0,0,0,0.314,89.45,93.05,0.97,0.13,790,2.1,135,0.9
+2023,6,7,5,0,10.8,1.23,0.136,0.62,17,91,20,6,5,8.700000000000001,10,0,86,10,0.314,86.98,87.95,0.97,0.13,790,2.2,145,1.1
+2023,6,7,5,30,11.5,1.23,0.136,0.62,43,297,79,5,5,8.700000000000001,41,0,75,41,0.315,83.05,82.98,0.97,0.13,790,2.2,155,1.2000000000000002
+2023,6,7,6,0,12.100000000000001,1.23,0.151,0.62,63,451,159,0,5,8.9,36,0,7,36,0.315,80.58,77.73,0.97,0.13,790,2.2,165,1.3
+2023,6,7,6,30,12.9,1.23,0.151,0.62,78,565,250,0,5,8.9,108,16,0,113,0.315,76.47,72.31,0.97,0.13,790,2.2,176,1.8
+2023,6,7,7,0,13.700000000000001,1.23,0.156,0.62,91,646,346,0,5,9.1,200,55,0,222,0.315,73.93,66.77,0.97,0.13,790,2.2,188,2.3000000000000003
+2023,6,7,7,30,14.3,1.23,0.156,0.62,102,707,443,0,5,9.200000000000001,133,22,0,144,0.315,71.21000000000001,61.14,0.97,0.13,791,2.2,196,2.7
+2023,6,7,8,0,14.8,1.23,0.16,0.62,111,753,538,0,4,9,120,0,0,120,0.315,68.23,55.46,0.97,0.13,791,2.2,205,3.2
+2023,6,7,8,30,15.100000000000001,1.23,0.16,0.62,118,789,628,0,4,9,138,0,0,138,0.314,66.93,49.77,0.97,0.13,791,2.2,213,3.3000000000000003
+2023,6,7,9,0,15.5,1.24,0.164,0.62,126,816,712,0,8,8.6,178,5,0,182,0.314,63.34,44.1,0.97,0.13,791,2.2,221,3.5
+2023,6,7,9,30,15.600000000000001,1.24,0.164,0.62,129,842,788,0,8,8.6,215,7,0,220,0.314,62.940000000000005,38.52,0.97,0.13,791,2.1,228,3.5
+2023,6,7,10,0,15.8,1.23,0.157,0.62,132,862,854,0,8,8.1,236,10,0,244,0.313,60.01,33.12,0.97,0.13,791,2.1,234,3.6
+2023,6,7,10,30,15.8,1.23,0.157,0.62,127,889,912,0,8,8.1,263,9,0,271,0.313,60.01,28.03,0.97,0.13,791,2.1,239,3.7
+2023,6,7,11,0,15.8,1.36,0.117,0.62,117,916,957,0,8,7.6000000000000005,374,179,0,538,0.313,58.34,23.5,0.97,0.13,791,2.1,244,3.9000000000000004
+2023,6,7,11,30,15.9,1.36,0.117,0.62,115,928,987,0,8,7.6000000000000005,383,366,0,727,0.313,57.97,19.95,0.97,0.13,791,2.1,248,4
+2023,6,7,12,0,15.9,1.3900000000000001,0.096,0.62,108,941,1003,0,7,7.1000000000000005,333,465,0,775,0.313,55.71,17.97,0.97,0.13,791,2,253,4.1000000000000005
+2023,6,7,12,30,16.1,1.3900000000000001,0.096,0.62,103,949,1005,0,8,7.1000000000000005,350,401,0,731,0.313,55.01,18.11,0.96,0.13,791,2,257,4
+2023,6,7,13,0,16.3,1.42,0.07200000000000001,0.62,96,957,993,0,8,6.300000000000001,430,106,0,529,0.313,51.4,20.32,0.96,0.13,791,1.9000000000000001,261,4
+2023,6,7,13,30,16.6,1.42,0.07200000000000001,0.62,92,957,966,0,7,6.300000000000001,415,50,0,461,0.313,50.44,24.03,0.96,0.13,791,1.9000000000000001,263,4
+2023,6,7,14,0,16.900000000000002,1.36,0.06,0.62,87,956,926,0,8,5.1000000000000005,360,44,0,399,0.313,45.7,28.64,0.9500000000000001,0.13,790,1.8,265,4
+2023,6,7,14,30,17.1,1.36,0.06,0.62,83,950,873,0,8,5.1000000000000005,367,256,0,580,0.313,45.12,33.78,0.9500000000000001,0.13,790,1.7000000000000002,266,4
+2023,6,7,15,0,17.3,1.32,0.051000000000000004,0.62,78,942,808,0,8,3.6,325,176,0,461,0.313,39.97,39.21,0.9400000000000001,0.13,790,1.7000000000000002,268,4
+2023,6,7,15,30,17.5,1.32,0.051000000000000004,0.62,74,929,733,0,8,3.5,260,416,0,555,0.312,39.42,44.800000000000004,0.9400000000000001,0.13,789,1.6,265,3.9000000000000004
+2023,6,7,16,0,17.8,1.27,0.044,0.62,69,912,649,0,8,2.1,264,260,0,429,0.312,34.910000000000004,50.47,0.93,0.13,789,1.5,263,3.8000000000000003
+2023,6,7,16,30,17.400000000000002,1.27,0.044,0.62,65,884,557,0,8,2.1,210,333,0,395,0.311,35.800000000000004,56.160000000000004,0.93,0.13,789,1.5,252,3.1
+2023,6,7,17,0,17.1,1.24,0.042,0.62,60,849,461,0,8,2.1,203,212,0,303,0.311,36.61,61.83,0.93,0.13,789,1.5,240,2.3000000000000003
+2023,6,7,17,30,15.9,1.24,0.042,0.62,54,800,361,0,8,2.2,158,206,0,237,0.31,39.550000000000004,67.45,0.93,0.13,790,1.4000000000000001,195,1.6
+2023,6,7,18,0,14.8,1.23,0.04,0.62,48,732,262,0,8,5.7,111,195,4,168,0.31,54.43,72.98,0.92,0.13,790,1.4000000000000001,150,0.9
+2023,6,7,18,30,13.700000000000001,1.23,0.04,0.62,39,631,166,0,7,5.7,79,158,0,111,0.31,58.44,78.38,0.92,0.13,790,1.4000000000000001,132,1.1
+2023,6,7,19,0,12.700000000000001,1.22,0.036000000000000004,0.62,28,472,81,6,7,5.800000000000001,39,11,86,40,0.31,62.96,83.60000000000001,0.92,0.13,790,1.4000000000000001,114,1.3
+2023,6,7,19,30,12.100000000000001,1.22,0.036000000000000004,0.62,13,163,17,5,8,5.800000000000001,12,2,75,12,0.311,65.48,88.51,0.92,0.13,790,1.4000000000000001,107,1.7000000000000002
+2023,6,7,20,0,11.5,1.23,0.037,0.62,0,0,0,0,7,5.9,0,0,0,0,0.311,68.39,93.61,0.92,0.13,791,1.4000000000000001,100,2.1
+2023,6,7,20,30,11,1.23,0.037,0.62,0,0,0,0,7,5.9,0,0,0,0,0.312,70.69,98.15,0.92,0.13,791,1.4000000000000001,98,2.5
+2023,6,7,21,0,10.5,1.25,0.04,0.62,0,0,0,0,8,6.5,0,0,0,0,0.313,76.09,102.36,0.92,0.13,791,1.4000000000000001,95,2.9000000000000004
+2023,6,7,21,30,10.100000000000001,1.25,0.04,0.62,0,0,0,0,8,6.5,0,0,0,0,0.314,78.15,106.16,0.92,0.13,791,1.4000000000000001,98,2.9000000000000004
+2023,6,7,22,0,9.700000000000001,1.29,0.045,0.62,0,0,0,0,0,7,0,0,0,0,0.315,83.15,109.48,0.92,0.13,791,1.4000000000000001,100,2.9000000000000004
+2023,6,7,22,30,9.4,1.29,0.045,0.62,0,0,0,0,3,7,0,0,0,0,0.315,84.84,112.25,0.93,0.13,791,1.4000000000000001,103,2.8000000000000003
+2023,6,7,23,0,9,1.34,0.051000000000000004,0.62,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.316,87.71000000000001,114.39,0.93,0.13,791,1.5,107,2.7
+2023,6,7,23,30,8.6,1.34,0.051000000000000004,0.62,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.317,90.10000000000001,115.84,0.93,0.13,791,1.5,104,2.5
+2023,6,8,0,0,8.200000000000001,1.37,0.06,0.62,0,0,0,0,8,6.9,0,0,0,0,0.317,91.41,116.56,0.9400000000000001,0.13,791,1.5,101,2.3000000000000003
+2023,6,8,0,30,7.9,1.37,0.06,0.62,0,0,0,0,8,6.9,0,0,0,0,0.318,93.28,116.51,0.9400000000000001,0.13,791,1.5,99,2.2
+2023,6,8,1,0,7.6000000000000005,1.3900000000000001,0.068,0.62,0,0,0,0,3,6.4,0,0,0,0,0.319,92.41,115.7,0.9400000000000001,0.13,791,1.5,97,2
+2023,6,8,1,30,7.2,1.3900000000000001,0.068,0.62,0,0,0,0,0,6.4,0,0,0,0,0.32,94.97,114.16,0.9400000000000001,0.13,791,1.5,94,1.9000000000000001
+2023,6,8,2,0,6.9,1.3800000000000001,0.07,0.62,0,0,0,0,7,6,0,0,0,0,0.321,93.69,111.93,0.9400000000000001,0.13,791,1.5,92,1.8
+2023,6,8,2,30,6.5,1.3800000000000001,0.07,0.62,0,0,0,0,7,6,0,0,0,0,0.322,96.29,109.09,0.9400000000000001,0.13,791,1.4000000000000001,89,1.7000000000000002
+2023,6,8,3,0,6.2,1.35,0.069,0.62,0,0,0,0,7,5.5,0,0,0,0,0.323,95.36,105.71000000000001,0.93,0.13,791,1.4000000000000001,87,1.6
+2023,6,8,3,30,6,1.35,0.069,0.62,0,0,0,0,7,5.5,0,0,0,0,0.324,96.68,101.85000000000001,0.93,0.13,791,1.4000000000000001,81,1.6
+2023,6,8,4,0,5.7,1.3,0.069,0.62,0,0,0,0,7,5.2,0,0,0,0,0.326,96.27,97.60000000000001,0.93,0.13,791,1.3,75,1.6
+2023,6,8,4,30,6.1000000000000005,1.3,0.069,0.62,0,0,0,0,8,5.2,0,0,0,0,0.327,93.65,93.01,0.93,0.13,791,1.3,72,2
+2023,6,8,5,0,6.4,1.25,0.07,0.62,16,162,22,6,8,5,16,2,86,16,0.329,90.55,87.92,0.93,0.13,791,1.3,69,2.3000000000000003
+2023,6,8,5,30,7.4,1.25,0.07,0.62,35,430,88,4,8,5,63,95,57,75,0.331,84.55,82.95,0.93,0.13,791,1.2000000000000002,66,2.3000000000000003
+2023,6,8,6,0,8.4,1.19,0.069,0.62,48,595,175,0,7,5.1000000000000005,106,192,0,147,0.333,79.98,77.71000000000001,0.93,0.13,791,1.2000000000000002,63,2.3000000000000003
+2023,6,8,6,30,10.5,1.19,0.069,0.62,57,704,271,0,7,5.1000000000000005,153,164,0,203,0.335,69.47,72.29,0.93,0.13,791,1.2000000000000002,72,2
+2023,6,8,7,0,12.600000000000001,1.1400000000000001,0.068,0.62,64,779,372,0,7,4.7,205,138,0,259,0.337,58.72,66.75,0.93,0.13,791,1.1,81,1.8
+2023,6,8,7,30,15.100000000000001,1.1400000000000001,0.068,0.62,71,832,473,0,7,4.7,243,220,0,349,0.338,49.95,61.120000000000005,0.93,0.13,791,1.1,121,1.7000000000000002
+2023,6,8,8,0,17.5,1.1,0.068,0.62,76,872,571,0,7,2.5,270,281,0,429,0.339,36.6,55.44,0.92,0.13,791,1.1,161,1.6
+2023,6,8,8,30,18.900000000000002,1.1,0.068,0.62,80,904,664,0,7,2.5,218,568,0,585,0.339,33.53,49.75,0.92,0.13,791,1.1,181,1.7000000000000002
+2023,6,8,9,0,20.3,1.08,0.065,0.62,83,929,750,0,0,2.2,91,909,0,744,0.339,30.2,44.08,0.92,0.13,791,1.1,201,1.9000000000000001
+2023,6,8,9,30,21.3,1.08,0.065,0.62,86,948,828,0,0,2.3000000000000003,86,948,0,828,0.339,28.41,38.5,0.92,0.13,791,1.1,207,2.2
+2023,6,8,10,0,22.3,1.05,0.063,0.62,87,963,894,0,0,2,87,963,0,894,0.338,26.22,33.09,0.92,0.13,791,1.1,212,2.4000000000000004
+2023,6,8,10,30,23.1,1.05,0.063,0.62,85,980,950,0,0,2,85,980,0,950,0.336,24.95,28,0.91,0.13,790,1.1,213,2.7
+2023,6,8,11,0,23.8,1.27,0.047,0.62,81,995,994,0,0,1.6,81,995,0,994,0.334,23.330000000000002,23.46,0.91,0.13,790,1.1,214,3
+2023,6,8,11,30,24.3,1.27,0.047,0.62,83,999,1022,0,0,1.6,83,999,0,1022,0.331,22.64,19.88,0.91,0.13,790,1.1,215,3.3000000000000003
+2023,6,8,12,0,24.8,1.23,0.048,0.62,83,1001,1036,0,0,1.1,83,1001,0,1036,0.328,21.17,17.88,0.91,0.13,790,1.1,215,3.7
+2023,6,8,12,30,25.1,1.23,0.048,0.62,84,1001,1036,0,0,1.1,84,1001,0,1036,0.325,20.8,18.01,0.91,0.13,790,1.1,216,3.9000000000000004
+2023,6,8,13,0,25.400000000000002,1.22,0.05,0.62,85,998,1021,0,0,0.30000000000000004,121,939,0,1002,0.322,19.23,20.22,0.91,0.13,789,1.1,216,4.2
+2023,6,8,13,30,25.400000000000002,1.22,0.05,0.62,83,995,992,0,0,0.30000000000000004,175,841,0,944,0.321,19.23,23.93,0.91,0.13,789,1.1,215,4.4
+2023,6,8,14,0,25.5,1.31,0.049,0.62,81,989,950,0,0,-0.9,81,989,0,950,0.32,17.63,28.55,0.91,0.13,789,1,215,4.5
+2023,6,8,14,30,25.3,1.31,0.049,0.62,80,980,895,0,0,-0.9,223,652,0,765,0.32,17.84,33.69,0.91,0.13,789,1,214,4.6000000000000005
+2023,6,8,15,0,25.1,1.3800000000000001,0.052000000000000005,0.62,78,967,828,0,0,-2.2,251,509,0,646,0.321,16.34,39.12,0.91,0.13,789,1,214,4.7
+2023,6,8,15,30,24.700000000000003,1.3800000000000001,0.052000000000000005,0.62,76,949,750,0,0,-2.2,79,940,0,747,0.321,16.740000000000002,44.71,0.9,0.13,789,0.9,214,4.7
+2023,6,8,16,0,24.3,1.47,0.054,0.62,72,927,663,0,0,-3.3000000000000003,134,766,7,622,0.321,15.780000000000001,50.38,0.9,0.13,789,0.9,214,4.7
+2023,6,8,16,30,23.700000000000003,1.47,0.054,0.62,69,898,570,0,8,-3.3000000000000003,180,484,25,450,0.322,16.36,56.08,0.9,0.13,789,0.9,214,4.7
+2023,6,8,17,0,23,1.52,0.056,0.62,64,859,471,0,8,-4.1000000000000005,155,553,14,417,0.322,16.15,61.75,0.9,0.13,789,0.8,214,4.6000000000000005
+2023,6,8,17,30,22,1.52,0.056,0.62,58,808,369,0,0,-4.1000000000000005,92,677,7,353,0.322,17.16,67.36,0.9,0.13,789,0.8,215,4
+2023,6,8,18,0,20.900000000000002,1.47,0.055,0.62,52,735,268,0,0,-3.1,52,735,0,268,0.323,19.75,72.89,0.9,0.13,789,0.8,216,3.4000000000000004
+2023,6,8,18,30,18.3,1.47,0.055,0.62,43,630,171,0,0,-3.1,43,630,0,171,0.323,23.2,78.29,0.9,0.13,789,0.8,218,2.5
+2023,6,8,19,0,15.8,1.33,0.053,0.62,31,464,83,0,0,0.8,31,464,0,83,0.324,36.18,83.51,0.9,0.13,790,0.7000000000000001,220,1.6
+2023,6,8,19,30,14.600000000000001,1.33,0.053,0.62,14,156,18,0,0,0.8,14,156,0,18,0.324,39.07,88.42,0.9,0.13,790,0.7000000000000001,220,1.6
+2023,6,8,20,0,13.4,1.12,0.049,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.325,41.72,93.51,0.9,0.13,790,0.7000000000000001,220,1.5
+2023,6,8,20,30,12.8,1.12,0.049,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.326,43.38,98.06,0.91,0.13,790,0.7000000000000001,219,1.5
+2023,6,8,21,0,12.3,0.92,0.045,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.326,43.59,102.26,0.91,0.13,791,0.7000000000000001,218,1.4000000000000001
+2023,6,8,21,30,11.9,0.92,0.045,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.327,44.75,106.06,0.91,0.13,791,0.6000000000000001,216,1.4000000000000001
+2023,6,8,22,0,11.5,0.78,0.043000000000000003,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.327,44.53,109.38,0.91,0.13,791,0.6000000000000001,214,1.4000000000000001
+2023,6,8,22,30,11.200000000000001,0.78,0.043000000000000003,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.328,45.42,112.15,0.92,0.13,791,0.6000000000000001,212,1.4000000000000001
+2023,6,8,23,0,10.9,0.72,0.042,0.62,0,0,0,0,8,-0.6000000000000001,0,0,0,0,0.328,44.82,114.29,0.92,0.13,791,0.6000000000000001,210,1.4000000000000001
+2023,6,8,23,30,10.8,0.72,0.042,0.62,0,0,0,0,8,-0.6000000000000001,0,0,0,0,0.329,45.12,115.75,0.92,0.13,791,0.6000000000000001,207,1.4000000000000001
+2023,6,9,0,0,10.700000000000001,0.72,0.042,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.329,43.97,116.47,0.92,0.13,791,0.6000000000000001,205,1.4000000000000001
+2023,6,9,0,30,10.600000000000001,0.72,0.042,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.329,44.26,116.43,0.92,0.13,791,0.7000000000000001,202,1.4000000000000001
+2023,6,9,1,0,10.5,0.74,0.043000000000000003,0.62,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.329,43.43,115.62,0.92,0.13,790,0.7000000000000001,199,1.4000000000000001
+2023,6,9,1,30,10.4,0.74,0.043000000000000003,0.62,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.329,43.72,114.09,0.92,0.13,790,0.7000000000000001,198,1.4000000000000001
+2023,6,9,2,0,10.3,0.77,0.045,0.62,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.329,43.15,111.87,0.92,0.13,790,0.7000000000000001,198,1.4000000000000001
+2023,6,9,2,30,10.4,0.77,0.045,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.329,42.87,109.03,0.92,0.13,790,0.8,198,1.3
+2023,6,9,3,0,10.4,0.81,0.048,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.329,41.64,105.66,0.92,0.13,790,0.8,199,1.2000000000000002
+2023,6,9,3,30,10.4,0.81,0.048,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.329,41.64,101.81,0.92,0.13,790,0.8,197,0.9
+2023,6,9,4,0,10.4,0.8300000000000001,0.051000000000000004,0.62,0,0,0,0,8,-2.6,0,0,0,0,0.329,40.12,97.56,0.92,0.13,790,0.9,195,0.7000000000000001
+2023,6,9,4,30,10.5,0.8300000000000001,0.051000000000000004,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.328,39.9,92.98,0.92,0.13,791,0.9,170,0.5
+2023,6,9,5,0,10.600000000000001,0.86,0.055,0.62,17,175,23,6,7,-1.3,16,2,86,16,0.328,43.57,87.89,0.92,0.13,791,0.9,146,0.2
+2023,6,9,5,30,11.8,0.86,0.055,0.62,34,453,90,4,8,-1.3,57,145,57,75,0.328,40.25,82.93,0.93,0.13,791,0.9,108,0.5
+2023,6,9,6,0,12.9,0.89,0.06,0.62,47,615,178,0,0,-2,60,515,0,170,0.327,35.67,77.69,0.93,0.13,791,0.9,69,0.7000000000000001
+2023,6,9,6,30,14.8,0.89,0.06,0.62,56,718,275,0,0,-1.9000000000000001,56,718,0,275,0.327,31.54,72.27,0.93,0.13,791,0.9,88,0.7000000000000001
+2023,6,9,7,0,16.7,0.91,0.064,0.62,65,787,376,0,0,-3.2,65,787,0,376,0.327,25.51,66.74,0.93,0.13,791,1,108,0.7000000000000001
+2023,6,9,7,30,18.3,0.91,0.064,0.62,72,839,477,0,0,-3.2,92,768,0,463,0.326,23.07,61.11,0.93,0.13,791,1,129,1
+2023,6,9,8,0,20,0.92,0.068,0.62,77,876,574,0,7,-3.6,175,588,0,509,0.326,20.02,55.43,0.93,0.13,791,1,149,1.3
+2023,6,9,8,30,20.900000000000002,0.92,0.068,0.62,83,904,667,0,7,-3.6,180,623,0,583,0.325,18.94,49.74,0.9400000000000001,0.13,791,1,159,1.5
+2023,6,9,9,0,21.900000000000002,0.93,0.07200000000000001,0.62,88,926,753,0,7,-3.5,280,438,0,595,0.325,17.98,44.07,0.9400000000000001,0.13,791,1,168,1.8
+2023,6,9,9,30,22.700000000000003,0.93,0.07200000000000001,0.62,91,944,830,0,7,-3.5,312,448,0,663,0.324,17.1,38.49,0.9400000000000001,0.13,790,1,176,2
+2023,6,9,10,0,23.400000000000002,0.9400000000000001,0.073,0.62,94,958,897,0,7,-3.2,285,543,0,740,0.323,16.77,33.07,0.9400000000000001,0.13,790,1,184,2.2
+2023,6,9,10,30,24,0.9400000000000001,0.073,0.62,92,975,953,0,7,-3.2,384,385,0,724,0.323,16.18,27.97,0.9400000000000001,0.13,790,1,191,2.4000000000000004
+2023,6,9,11,0,24.6,0.9400000000000001,0.054,0.62,88,991,997,0,7,-2.9000000000000004,378,452,0,793,0.322,15.98,23.42,0.9400000000000001,0.13,790,1,197,2.6
+2023,6,9,11,30,25.1,0.9400000000000001,0.054,0.62,88,996,1025,0,7,-2.9000000000000004,324,557,0,848,0.321,15.51,19.82,0.9400000000000001,0.13,790,1,202,2.8000000000000003
+2023,6,9,12,0,25.5,0.9400000000000001,0.053,0.62,89,998,1039,0,7,-2.8000000000000003,223,695,0,885,0.321,15.3,17.81,0.9400000000000001,0.13,789,1,207,3
+2023,6,9,12,30,25.700000000000003,0.9400000000000001,0.053,0.62,88,998,1038,0,7,-2.8000000000000003,186,748,0,898,0.321,15.120000000000001,17.92,0.9400000000000001,0.13,789,1,211,3.2
+2023,6,9,13,0,26,0.9400000000000001,0.053,0.62,88,995,1022,0,7,-2.8000000000000003,159,837,0,945,0.32,14.83,20.12,0.93,0.13,789,1.1,216,3.3000000000000003
+2023,6,9,13,30,26.1,0.9400000000000001,0.053,0.62,86,992,993,0,8,-2.8000000000000003,137,872,0,935,0.32,14.74,23.84,0.93,0.13,789,1.1,220,3.4000000000000004
+2023,6,9,14,0,26.1,0.9400000000000001,0.047,0.62,81,988,950,0,8,-2.9000000000000004,137,869,0,901,0.32,14.61,28.46,0.93,0.13,788,1.1,225,3.4000000000000004
+2023,6,9,14,30,26,0.9400000000000001,0.047,0.62,80,977,894,0,7,-2.9000000000000004,186,737,0,800,0.32,14.69,33.6,0.93,0.13,788,1.1,228,3.4000000000000004
+2023,6,9,15,0,25.8,0.96,0.049,0.62,78,963,826,0,8,-3,157,774,7,758,0.32,14.74,39.03,0.93,0.13,788,1.1,232,3.4000000000000004
+2023,6,9,15,30,25.5,0.96,0.049,0.62,76,944,748,0,8,-3,134,827,21,723,0.32,15,44.63,0.9400000000000001,0.13,788,1.1,235,3.4000000000000004
+2023,6,9,16,0,25.1,1,0.051000000000000004,0.62,73,920,661,0,0,-3,99,860,0,648,0.32,15.38,50.300000000000004,0.9400000000000001,0.13,788,1.1,239,3.3000000000000003
+2023,6,9,16,30,24.5,1,0.051000000000000004,0.62,70,888,567,0,8,-3,147,628,4,498,0.32,15.94,55.99,0.9400000000000001,0.13,788,1.1,244,3.2
+2023,6,9,17,0,24,1.03,0.055,0.62,66,844,467,0,7,-2.7,123,662,14,437,0.32,16.85,61.660000000000004,0.9400000000000001,0.13,788,1.1,249,3.2
+2023,6,9,17,30,23,1.03,0.055,0.62,61,787,365,0,7,-2.7,96,678,43,358,0.321,17.89,67.28,0.9400000000000001,0.13,788,1.1,256,2.8000000000000003
+2023,6,9,18,0,22,1.07,0.061,0.62,55,706,264,0,7,-0.2,104,487,7,248,0.321,22.89,72.8,0.9400000000000001,0.13,788,1.1,263,2.4000000000000004
+2023,6,9,18,30,20.1,1.07,0.061,0.62,46,590,167,0,7,-0.2,91,288,0,150,0.321,25.71,78.2,0.9500000000000001,0.13,788,1.2000000000000002,273,1.9000000000000001
+2023,6,9,19,0,18.1,1.11,0.068,0.62,34,409,81,6,7,4,60,77,86,69,0.321,39.27,83.42,0.9500000000000001,0.13,788,1.2000000000000002,283,1.4000000000000001
+2023,6,9,19,30,17.2,1.11,0.068,0.62,13,126,17,3,0,4,14,25,43,15,0.322,41.61,88.34,0.9500000000000001,0.13,789,1.3,294,1.4000000000000001
+2023,6,9,20,0,16.3,1.1500000000000001,0.081,0.62,0,0,0,0,0,4.3,0,0,0,0,0.322,44.85,93.42,0.96,0.13,789,1.3,305,1.3
+2023,6,9,20,30,15.9,1.1500000000000001,0.081,0.62,0,0,0,0,8,4.3,0,0,0,0,0.322,46.01,97.97,0.96,0.13,789,1.3,314,1.3
+2023,6,9,21,0,15.4,1.17,0.08700000000000001,0.62,0,0,0,0,7,4.7,0,0,0,0,0.323,48.75,102.17,0.96,0.13,789,1.4000000000000001,324,1.3
+2023,6,9,21,30,15,1.17,0.08700000000000001,0.62,0,0,0,0,5,4.7,0,0,0,0,0.324,50.02,105.97,0.96,0.13,789,1.4000000000000001,328,1.3
+2023,6,9,22,0,14.700000000000001,1.18,0.084,0.62,0,0,0,0,8,5,0,0,0,0,0.324,52.17,109.29,0.96,0.13,790,1.4000000000000001,333,1.3
+2023,6,9,22,30,14.200000000000001,1.18,0.084,0.62,0,0,0,0,7,5,0,0,0,0,0.324,53.88,112.06,0.9500000000000001,0.13,790,1.4000000000000001,334,1.3
+2023,6,9,23,0,13.8,1.18,0.08,0.62,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.324,55.54,114.2,0.9500000000000001,0.13,790,1.4000000000000001,335,1.3
+2023,6,9,23,30,13.4,1.18,0.08,0.62,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.324,57,115.66,0.9500000000000001,0.13,790,1.4000000000000001,335,1.2000000000000002
+2023,6,10,0,0,13,1.16,0.077,0.62,0,0,0,0,7,5,0,0,0,0,0.324,58.38,116.39,0.9500000000000001,0.13,790,1.4000000000000001,335,1.2000000000000002
+2023,6,10,0,30,12.600000000000001,1.16,0.077,0.62,0,0,0,0,4,5,0,0,0,0,0.325,59.93,116.35000000000001,0.9500000000000001,0.13,790,1.4000000000000001,335,1.2000000000000002
+2023,6,10,1,0,12.200000000000001,1.1400000000000001,0.07100000000000001,0.62,0,0,0,0,5,5,0,0,0,0,0.325,61.370000000000005,115.55,0.9400000000000001,0.13,790,1.4000000000000001,336,1.2000000000000002
+2023,6,10,1,30,11.8,1.1400000000000001,0.07100000000000001,0.62,0,0,0,0,0,5,0,0,0,0,0.326,63,114.02,0.9400000000000001,0.13,790,1.3,336,1.1
+2023,6,10,2,0,11.3,1.11,0.064,0.62,0,0,0,0,0,4.7,0,0,0,0,0.326,63.99,111.81,0.9400000000000001,0.13,790,1.3,336,1.1
+2023,6,10,2,30,10.8,1.11,0.064,0.62,0,0,0,0,3,4.7,0,0,0,0,0.328,66.15,108.98,0.9400000000000001,0.13,790,1.3,341,1
+2023,6,10,3,0,10.3,1.08,0.061,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.329,67.67,105.61,0.9400000000000001,0.13,790,1.3,345,0.9
+2023,6,10,3,30,9.8,1.08,0.061,0.62,0,0,0,0,3,4.6000000000000005,0,0,0,0,0.33,69.96000000000001,101.77,0.9400000000000001,0.13,790,1.3,174,0.9
+2023,6,10,4,0,9.200000000000001,1.07,0.06,0.62,0,0,0,0,8,4.6000000000000005,0,0,29,0,0.331,72.99,97.53,0.93,0.13,790,1.3,4,0.8
+2023,6,10,4,30,9.600000000000001,1.07,0.06,0.62,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.333,71.06,92.95,0.93,0.13,790,1.3,11,1
+2023,6,10,5,0,10,1.07,0.06,0.62,17,169,23,6,3,5.1000000000000005,13,11,79,13,0.334,71.4,87.87,0.93,0.13,790,1.3,18,1.2000000000000002
+2023,6,10,5,30,11.4,1.07,0.06,0.62,35,441,89,1,0,5.1000000000000005,38,381,18,85,0.335,65.06,82.91,0.93,0.13,790,1.3,28,1.5
+2023,6,10,6,0,12.700000000000001,1.07,0.06,0.62,46,604,175,0,0,4.7,46,604,0,175,0.337,58.230000000000004,77.67,0.93,0.13,790,1.3,38,1.8
+2023,6,10,6,30,14.600000000000001,1.07,0.06,0.62,55,709,271,0,0,4.7,55,709,0,271,0.338,51.480000000000004,72.26,0.93,0.13,790,1.3,47,1.8
+2023,6,10,7,0,16.5,1.08,0.06,0.62,62,781,371,0,0,3.5,62,781,0,371,0.339,41.86,66.73,0.93,0.13,790,1.3,56,1.8
+2023,6,10,7,30,17.7,1.08,0.06,0.62,68,834,471,0,0,3.5,68,834,0,471,0.34,38.81,61.1,0.93,0.13,790,1.3,72,1.6
+2023,6,10,8,0,19,1.08,0.059000000000000004,0.62,73,873,568,0,0,2.8000000000000003,73,873,0,568,0.341,34.01,55.43,0.93,0.13,790,1.3,89,1.3
+2023,6,10,8,30,19.900000000000002,1.08,0.059000000000000004,0.62,77,904,661,0,0,2.8000000000000003,77,904,0,661,0.342,32.17,49.730000000000004,0.93,0.13,790,1.3,110,1.2000000000000002
+2023,6,10,9,0,20.8,1.08,0.058,0.62,79,929,747,0,0,2.3000000000000003,79,929,0,747,0.343,29.38,44.06,0.93,0.13,790,1.3,132,1.1
+2023,6,10,9,30,21.5,1.08,0.058,0.62,83,946,824,0,0,2.3000000000000003,83,946,0,824,0.343,28.150000000000002,38.480000000000004,0.93,0.13,790,1.3,150,1.1
+2023,6,10,10,0,22.200000000000003,1.08,0.061,0.62,87,958,890,0,0,1.8,87,958,0,890,0.34400000000000003,25.98,33.06,0.9400000000000001,0.13,790,1.3,168,1.2000000000000002
+2023,6,10,10,30,22.700000000000003,1.08,0.061,0.62,87,971,945,0,0,1.8,87,971,0,945,0.34500000000000003,25.2,27.95,0.9400000000000001,0.13,790,1.3,178,1.4000000000000001
+2023,6,10,11,0,23.200000000000003,1.07,0.054,0.62,87,982,988,0,0,1.2000000000000002,87,982,0,988,0.34500000000000003,23.47,23.38,0.9400000000000001,0.13,790,1.3,188,1.6
+2023,6,10,11,30,23.5,1.07,0.054,0.62,88,986,1016,0,0,1.2000000000000002,88,986,0,1016,0.34600000000000003,23.02,19.77,0.9400000000000001,0.13,789,1.3,194,1.7000000000000002
+2023,6,10,12,0,23.900000000000002,1.07,0.055,0.62,89,988,1030,0,0,0.8,91,984,0,1028,0.34600000000000003,21.88,17.740000000000002,0.9500000000000001,0.13,789,1.3,201,1.9000000000000001
+2023,6,10,12,30,24,1.07,0.055,0.62,88,987,1028,0,0,0.8,244,640,0,853,0.34700000000000003,21.75,17.830000000000002,0.9500000000000001,0.13,789,1.3,207,2
+2023,6,10,13,0,24.200000000000003,1.08,0.056,0.62,88,983,1012,0,8,0.6000000000000001,334,454,0,761,0.34700000000000003,21.240000000000002,20.03,0.9500000000000001,0.13,789,1.3,213,2
+2023,6,10,13,30,24.200000000000003,1.08,0.056,0.62,89,977,983,0,8,0.6000000000000001,328,284,0,588,0.34700000000000003,21.22,23.75,0.9500000000000001,0.13,788,1.4000000000000001,218,1.9000000000000001
+2023,6,10,14,0,24.1,1.11,0.059000000000000004,0.62,87,968,939,0,8,0.8,361,214,7,549,0.34700000000000003,21.57,28.37,0.9500000000000001,0.13,788,1.4000000000000001,223,1.8
+2023,6,10,14,30,23.900000000000002,1.11,0.059000000000000004,0.62,86,956,883,0,8,0.8,359,252,0,569,0.34600000000000003,21.830000000000002,33.52,0.9500000000000001,0.13,788,1.4000000000000001,229,1.7000000000000002
+2023,6,10,15,0,23.8,1.1400000000000001,0.061,0.62,85,939,815,0,0,1.2000000000000002,111,866,0,784,0.34500000000000003,22.650000000000002,38.95,0.96,0.13,788,1.4000000000000001,234,1.5
+2023,6,10,15,30,23.400000000000002,1.1400000000000001,0.061,0.62,81,919,736,0,0,1.2000000000000002,204,560,4,603,0.34400000000000003,23.2,44.550000000000004,0.96,0.13,788,1.5,242,1.4000000000000001
+2023,6,10,16,0,23,1.17,0.064,0.62,79,892,650,0,8,1.8,201,374,11,440,0.343,24.73,50.22,0.96,0.13,788,1.5,249,1.3
+2023,6,10,16,30,22.400000000000002,1.17,0.064,0.62,75,858,556,0,0,1.8,134,716,0,535,0.341,25.650000000000002,55.910000000000004,0.96,0.13,788,1.5,259,1
+2023,6,10,17,0,21.8,1.19,0.068,0.62,71,813,458,0,0,2.4000000000000004,135,617,4,429,0.339,27.91,61.58,0.96,0.13,788,1.6,269,0.7000000000000001
+2023,6,10,17,30,21,1.19,0.068,0.62,65,753,357,0,3,2.4000000000000004,165,370,7,308,0.338,29.310000000000002,67.2,0.96,0.13,788,1.6,138,0.6000000000000001
+2023,6,10,18,0,20.3,1.22,0.075,0.62,59,670,258,0,3,3.5,103,468,0,242,0.336,33.04,72.72,0.97,0.13,788,1.7000000000000002,7,0.5
+2023,6,10,18,30,19.1,1.22,0.075,0.62,49,552,163,0,3,3.5,95,208,0,138,0.335,35.63,78.12,0.97,0.13,789,1.7000000000000002,24,0.6000000000000001
+2023,6,10,19,0,17.900000000000002,1.24,0.083,0.62,36,375,79,2,0,6.9,45,224,32,71,0.333,48.64,83.34,0.97,0.13,789,1.8,41,0.7000000000000001
+2023,6,10,19,30,17.2,1.24,0.083,0.62,14,112,17,6,5,6.9,11,9,82,11,0.332,50.83,88.26,0.97,0.13,789,1.8,44,0.8
+2023,6,10,20,0,16.5,1.27,0.088,0.62,0,0,0,0,0,7.300000000000001,0,0,0,0,0.332,54.49,93.33,0.97,0.13,789,1.8,48,1
+2023,6,10,20,30,16.2,1.27,0.088,0.62,0,0,0,0,4,7.300000000000001,0,0,0,0,0.331,55.61,97.88,0.97,0.13,790,1.8,51,1.2000000000000002
+2023,6,10,21,0,15.9,1.3,0.089,0.62,0,0,0,0,8,7,0,0,0,0,0.33,55.35,102.08,0.97,0.13,790,1.8,54,1.5
+2023,6,10,21,30,15.5,1.3,0.089,0.62,0,0,0,0,8,7,0,0,0,0,0.329,56.78,105.88,0.97,0.13,790,1.8,54,1.7000000000000002
+2023,6,10,22,0,15.100000000000001,1.32,0.084,0.62,0,0,0,0,8,6.800000000000001,0,0,0,0,0.328,57.46,109.2,0.97,0.13,790,1.8,55,1.9000000000000001
+2023,6,10,22,30,14.700000000000001,1.32,0.084,0.62,0,0,0,0,8,6.800000000000001,0,0,0,0,0.328,58.95,111.97,0.97,0.13,790,1.8,55,2.1
+2023,6,10,23,0,14.200000000000001,1.32,0.075,0.62,0,0,0,0,0,6.7,0,0,0,0,0.327,60.660000000000004,114.12,0.96,0.13,790,1.7000000000000002,54,2.3000000000000003
+2023,6,10,23,30,13.8,1.32,0.075,0.62,0,0,0,0,0,6.7,0,0,0,0,0.327,62.17,115.58,0.96,0.13,789,1.7000000000000002,55,2.4000000000000004
+2023,6,11,0,0,13.3,1.29,0.068,0.62,0,0,0,0,0,6.800000000000001,0,0,0,0,0.327,64.82000000000001,116.31,0.96,0.13,789,1.6,55,2.5
+2023,6,11,0,30,13,1.29,0.068,0.62,0,0,0,0,0,6.800000000000001,0,0,0,0,0.326,66.1,116.28,0.96,0.13,789,1.6,57,2.7
+2023,6,11,1,0,12.700000000000001,1.25,0.064,0.62,0,0,0,0,0,7,0,0,0,0,0.326,68.33,115.49000000000001,0.96,0.13,789,1.6,58,2.9000000000000004
+2023,6,11,1,30,12.3,1.25,0.064,0.62,0,0,0,0,8,7,0,0,0,0,0.326,70.14,113.96000000000001,0.9500000000000001,0.13,789,1.5,60,2.9000000000000004
+2023,6,11,2,0,12,1.21,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.326,72.38,111.76,0.9500000000000001,0.13,789,1.5,62,3
+2023,6,11,2,30,11.5,1.21,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.326,74.81,108.94,0.9500000000000001,0.13,789,1.5,64,2.9000000000000004
+2023,6,11,3,0,11.100000000000001,1.19,0.061,0.62,0,0,0,0,7,7.2,0,0,0,0,0.325,77.10000000000001,105.57000000000001,0.9500000000000001,0.13,789,1.5,66,2.7
+2023,6,11,3,30,10.700000000000001,1.19,0.061,0.62,0,0,0,0,8,7.2,0,0,0,0,0.325,79.17,101.74000000000001,0.9500000000000001,0.13,789,1.5,66,2.5
+2023,6,11,4,0,10.3,1.19,0.062,0.62,0,0,0,0,8,7.2,0,0,0,0,0.325,81.28,97.5,0.9500000000000001,0.13,789,1.5,67,2.3000000000000003
+2023,6,11,4,30,10.5,1.19,0.062,0.62,0,0,0,0,3,7.2,0,0,0,0,0.324,80.21000000000001,92.93,0.9500000000000001,0.13,789,1.5,67,2.5
+2023,6,11,5,0,10.700000000000001,1.18,0.064,0.62,17,165,23,0,0,7.2,17,165,7,23,0.324,79.09,87.86,0.9500000000000001,0.13,789,1.5,66,2.6
+2023,6,11,5,30,11.600000000000001,1.18,0.064,0.62,35,430,88,0,0,7.2,35,430,0,88,0.324,74.52,82.9,0.9500000000000001,0.13,789,1.6,65,2.7
+2023,6,11,6,0,12.600000000000001,1.17,0.065,0.62,47,590,173,0,0,7.1000000000000005,47,590,0,173,0.323,69.14,77.66,0.9500000000000001,0.13,789,1.6,63,2.7
+2023,6,11,6,30,14.4,1.17,0.065,0.62,57,697,269,0,0,7.1000000000000005,57,697,0,269,0.323,61.52,72.25,0.9500000000000001,0.13,789,1.6,70,2.6
+2023,6,11,7,0,16.3,1.16,0.063,0.62,63,771,368,0,0,5.7,63,771,0,368,0.323,49.51,66.72,0.9500000000000001,0.13,789,1.6,77,2.6
+2023,6,11,7,30,17.8,1.16,0.063,0.62,70,824,468,0,0,5.7,70,824,0,468,0.323,45.04,61.1,0.9500000000000001,0.13,789,1.6,79,2.3000000000000003
+2023,6,11,8,0,19.200000000000003,1.1500000000000001,0.063,0.62,74,864,564,0,0,4.5,74,864,0,564,0.322,37.83,55.42,0.9400000000000001,0.13,789,1.6,81,1.9000000000000001
+2023,6,11,8,30,20.200000000000003,1.1500000000000001,0.063,0.62,78,894,656,0,0,4.5,78,894,0,656,0.322,35.56,49.730000000000004,0.9400000000000001,0.13,789,1.6,79,1.6
+2023,6,11,9,0,21.1,1.1400000000000001,0.063,0.62,82,918,742,0,0,4.2,82,918,0,742,0.321,32.94,44.06,0.9400000000000001,0.13,789,1.5,77,1.3
+2023,6,11,9,30,21.8,1.1400000000000001,0.063,0.62,85,936,818,0,0,4.2,100,913,0,815,0.32,31.52,38.47,0.9400000000000001,0.13,788,1.5,70,1.2000000000000002
+2023,6,11,10,0,22.5,1.1400000000000001,0.063,0.62,87,951,884,0,8,3.9000000000000004,211,691,0,790,0.319,29.740000000000002,33.05,0.9400000000000001,0.13,788,1.5,63,1
+2023,6,11,10,30,23,1.1400000000000001,0.063,0.62,87,964,939,0,0,3.9000000000000004,161,807,0,874,0.318,28.85,27.93,0.9500000000000001,0.13,788,1.5,47,0.9
+2023,6,11,11,0,23.5,1.1400000000000001,0.055,0.62,87,975,982,0,7,3.5,216,739,0,894,0.318,27.09,23.35,0.9500000000000001,0.13,788,1.5,32,0.9
+2023,6,11,11,30,23.6,1.1400000000000001,0.055,0.62,90,976,1009,0,7,3.5,334,508,0,812,0.317,26.93,19.73,0.9500000000000001,0.13,788,1.6,195,0.9
+2023,6,11,12,0,23.6,1.1400000000000001,0.065,0.62,93,974,1021,0,0,2.9000000000000004,135,876,0,970,0.316,25.82,17.67,0.96,0.13,787,1.6,357,0.9
+2023,6,11,12,30,23.3,1.1400000000000001,0.065,0.62,95,970,1019,0,7,2.9000000000000004,294,569,0,836,0.316,26.29,17.76,0.96,0.13,787,1.6,352,1
+2023,6,11,13,0,23,1.1400000000000001,0.074,0.62,98,962,1002,0,7,2.9000000000000004,205,752,0,912,0.315,26.86,19.95,0.96,0.13,787,1.7000000000000002,347,1.2000000000000002
+2023,6,11,13,30,22.5,1.1400000000000001,0.074,0.62,98,954,972,0,6,2.9000000000000004,354,376,7,698,0.315,27.69,23.66,0.97,0.13,787,1.7000000000000002,353,1.3
+2023,6,11,14,0,22,1.1400000000000001,0.079,0.62,98,942,927,0,6,3.6,414,91,0,494,0.315,29.92,28.29,0.97,0.13,787,1.8,359,1.5
+2023,6,11,14,30,21.400000000000002,1.1400000000000001,0.079,0.62,96,930,872,0,9,3.6,250,8,0,257,0.316,31.07,33.44,0.97,0.13,788,1.8,183,1.7000000000000002
+2023,6,11,15,0,20.700000000000003,1.1500000000000001,0.08,0.62,93,913,804,0,9,4.4,322,39,0,352,0.316,34.230000000000004,38.87,0.97,0.13,788,1.8,8,1.9000000000000001
+2023,6,11,15,30,20.3,1.1500000000000001,0.08,0.62,89,896,728,0,9,4.4,327,91,0,392,0.317,35.08,44.47,0.97,0.13,788,1.8,10,2.3000000000000003
+2023,6,11,16,0,19.8,1.18,0.07200000000000001,0.62,83,876,644,0,9,4.9,251,26,0,268,0.317,37.57,50.14,0.96,0.13,788,1.8,12,2.7
+2023,6,11,16,30,19.5,1.18,0.07200000000000001,0.62,77,848,553,0,9,4.9,197,21,0,209,0.317,38.28,55.83,0.96,0.13,788,1.8,15,3
+2023,6,11,17,0,19.1,1.21,0.065,0.62,70,812,457,0,9,5.1000000000000005,214,89,0,256,0.318,39.88,61.5,0.96,0.13,788,1.8,17,3.3000000000000003
+2023,6,11,17,30,18.400000000000002,1.21,0.065,0.62,63,762,359,0,9,5.1000000000000005,157,46,0,175,0.318,41.660000000000004,67.12,0.96,0.13,788,1.7000000000000002,20,3.5
+2023,6,11,18,0,17.7,1.21,0.06,0.62,54,694,261,0,6,5.4,80,207,18,142,0.319,44.410000000000004,72.64,0.9500000000000001,0.13,788,1.7000000000000002,22,3.7
+2023,6,11,18,30,16.5,1.21,0.06,0.62,45,595,168,0,8,5.4,81,374,32,159,0.319,47.9,78.04,0.9500000000000001,0.13,788,1.6,22,3.5
+2023,6,11,19,0,15.200000000000001,1.18,0.052000000000000005,0.62,32,441,84,6,7,6.300000000000001,60,47,86,66,0.32,55.39,83.26,0.9500000000000001,0.13,788,1.6,23,3.3000000000000003
+2023,6,11,19,30,14.3,1.18,0.052000000000000005,0.62,15,167,20,6,6,6.300000000000001,13,2,86,13,0.32,58.68,88.18,0.9500000000000001,0.13,788,1.5,26,2.9000000000000004
+2023,6,11,20,0,13.3,1.17,0.051000000000000004,0.62,0,0,0,0,6,6.5,0,0,0,0,0.32,63.34,93.25,0.9500000000000001,0.13,788,1.5,29,2.6
+2023,6,11,20,30,12.8,1.17,0.051000000000000004,0.62,0,0,0,0,7,6.5,0,0,0,0,0.319,65.44,97.8,0.9500000000000001,0.13,788,1.6,37,2
+2023,6,11,21,0,12.3,1.21,0.059000000000000004,0.62,0,0,0,0,9,6.7,0,0,0,0,0.318,68.67,102,0.9500000000000001,0.13,788,1.6,44,1.5
+2023,6,11,21,30,12,1.21,0.059000000000000004,0.62,0,0,0,0,6,6.7,0,0,0,0,0.317,70.03,105.8,0.96,0.13,788,1.6,59,1.2000000000000002
+2023,6,11,22,0,11.8,1.24,0.076,0.62,0,0,0,0,7,7,0,0,0,0,0.317,72.64,109.12,0.96,0.13,788,1.7000000000000002,74,0.9
+2023,6,11,22,30,11.8,1.24,0.076,0.62,0,0,0,0,7,7,0,0,0,0,0.316,72.64,111.89,0.97,0.13,788,1.7000000000000002,92,0.8
+2023,6,11,23,0,11.8,1.24,0.092,0.62,0,0,0,0,7,7.5,0,0,0,0,0.315,75.16,114.04,0.97,0.13,789,1.8,110,0.7000000000000001
+2023,6,11,23,30,11.700000000000001,1.24,0.092,0.62,0,0,0,0,7,7.5,0,0,0,0,0.315,75.56,115.51,0.97,0.13,788,1.7000000000000002,116,0.6000000000000001
+2023,6,12,0,0,11.600000000000001,1.22,0.089,0.62,0,0,0,0,7,7.9,0,0,0,0,0.314,78.27,116.24000000000001,0.97,0.13,788,1.7000000000000002,122,0.5
+2023,6,12,0,30,11.4,1.22,0.089,0.62,0,0,0,0,7,7.9,0,0,0,0,0.315,79.3,116.21000000000001,0.96,0.13,788,1.6,119,0.5
+2023,6,12,1,0,11.200000000000001,1.19,0.081,0.62,0,0,0,0,7,8.1,0,0,0,0,0.315,81.15,115.43,0.96,0.13,788,1.6,116,0.5
+2023,6,12,1,30,11,1.19,0.081,0.62,0,0,0,0,6,8.1,0,0,0,0,0.317,82.24,113.91,0.96,0.13,788,1.5,123,0.6000000000000001
+2023,6,12,2,0,10.8,1.16,0.078,0.62,0,0,0,0,6,8,0,0,0,0,0.318,82.91,111.71000000000001,0.9500000000000001,0.13,788,1.5,129,0.7000000000000001
+2023,6,12,2,30,10.5,1.16,0.078,0.62,0,0,0,0,6,8,0,0,0,0,0.32,84.58,108.9,0.9500000000000001,0.13,788,1.5,138,0.9
+2023,6,12,3,0,10.200000000000001,1.16,0.078,0.62,0,0,0,0,7,7.7,0,0,0,0,0.323,84.7,105.54,0.9500000000000001,0.13,788,1.5,147,1
+2023,6,12,3,30,9.9,1.16,0.078,0.62,0,0,0,0,7,7.7,0,0,0,0,0.325,86.42,101.71000000000001,0.9500000000000001,0.13,788,1.5,155,1
+2023,6,12,4,0,9.600000000000001,1.16,0.079,0.62,0,0,0,0,6,7.4,0,0,0,0,0.327,86.13,97.48,0.9500000000000001,0.13,788,1.5,162,1.1
+2023,6,12,4,30,9.8,1.16,0.079,0.62,0,0,0,0,7,7.4,0,0,0,0,0.328,84.99,92.92,0.9500000000000001,0.13,788,1.5,171,1.3
+2023,6,12,5,0,10,1.17,0.08600000000000001,0.62,17,139,22,6,7,7.300000000000001,12,0,86,12,0.33,83.21000000000001,87.84,0.9500000000000001,0.13,788,1.5,179,1.5
+2023,6,12,5,30,10.8,1.17,0.08600000000000001,0.62,39,381,86,4,6,7.300000000000001,36,2,57,36,0.332,78.89,82.89,0.96,0.13,788,1.5,184,2
+2023,6,12,6,0,11.600000000000001,1.18,0.101,0.62,55,532,169,0,6,7,85,15,0,88,0.333,73.44,77.66,0.96,0.13,788,1.5,190,2.4000000000000004
+2023,6,12,6,30,12.4,1.18,0.101,0.62,69,634,262,0,7,7,136,32,0,146,0.334,69.68,72.25,0.96,0.13,788,1.6,194,2.8000000000000003
+2023,6,12,7,0,13.3,1.19,0.117,0.62,81,701,358,0,7,5.800000000000001,191,104,0,232,0.335,60.42,66.72,0.96,0.13,788,1.6,197,3.2
+2023,6,12,7,30,13.5,1.19,0.117,0.62,93,748,454,0,7,5.800000000000001,234,146,0,305,0.335,59.72,61.1,0.97,0.13,789,1.7000000000000002,197,3.2
+2023,6,12,8,0,13.700000000000001,1.2,0.14200000000000002,0.62,105,780,548,0,6,5,198,44,0,223,0.335,55.71,55.42,0.97,0.13,789,1.7000000000000002,196,3.2
+2023,6,12,8,30,13.5,1.2,0.14200000000000002,0.62,117,804,637,0,6,5,121,1,0,122,0.335,56.43,49.730000000000004,0.97,0.13,789,1.7000000000000002,197,3.1
+2023,6,12,9,0,13.3,1.21,0.17500000000000002,0.62,132,817,719,0,6,5.1000000000000005,98,1,0,99,0.334,57.46,44.06,0.97,0.13,789,1.7000000000000002,198,3
+2023,6,12,9,30,13.3,1.21,0.17500000000000002,0.62,137,840,795,0,7,5.1000000000000005,310,72,0,366,0.333,57.46,38.47,0.97,0.13,789,1.7000000000000002,206,3.1
+2023,6,12,10,0,13.4,1.22,0.177,0.62,142,858,861,0,7,4.9,403,238,0,603,0.332,56.32,33.04,0.97,0.13,789,1.6,213,3.2
+2023,6,12,10,30,13.600000000000001,1.22,0.177,0.62,134,891,921,0,6,4.9,443,221,0,638,0.331,55.59,27.92,0.97,0.13,789,1.6,232,3
+2023,6,12,11,0,13.700000000000001,1.24,0.121,0.62,121,924,969,0,6,4.5,400,342,0,714,0.33,53.63,23.330000000000002,0.96,0.13,789,1.5,250,2.9000000000000004
+2023,6,12,11,30,13.9,1.24,0.121,0.62,117,939,1001,0,0,4.5,184,781,0,919,0.329,52.94,19.69,0.96,0.13,789,1.5,270,3.1
+2023,6,12,12,0,14,1.23,0.098,0.62,111,952,1018,0,8,4.1000000000000005,330,130,0,454,0.329,51.120000000000005,17.62,0.9500000000000001,0.13,789,1.4000000000000001,290,3.4000000000000004
+2023,6,12,12,30,14.3,1.23,0.098,0.62,107,958,1020,0,6,4.1000000000000005,380,63,0,440,0.329,50.14,17.69,0.9500000000000001,0.13,789,1.4000000000000001,297,3.4000000000000004
+2023,6,12,13,0,14.700000000000001,1.19,0.083,0.62,103,962,1008,0,6,3.7,200,1,0,201,0.329,47.79,19.87,0.9500000000000001,0.13,789,1.4000000000000001,304,3.5
+2023,6,12,13,30,15,1.19,0.083,0.62,99,961,980,0,6,3.7,347,23,0,368,0.329,46.88,23.580000000000002,0.9500000000000001,0.13,789,1.3,303,3.1
+2023,6,12,14,0,15.4,1.1500000000000001,0.07200000000000001,0.62,95,959,940,0,9,3.3000000000000003,404,46,0,445,0.329,44.18,28.21,0.9500000000000001,0.13,789,1.3,302,2.7
+2023,6,12,14,30,15.700000000000001,1.1500000000000001,0.07200000000000001,0.62,91,952,886,0,6,3.2,329,17,0,343,0.329,43.28,33.36,0.9500000000000001,0.13,788,1.3,297,2.3000000000000003
+2023,6,12,15,0,16.1,1.12,0.064,0.62,85,943,820,0,6,2.6,374,114,0,463,0.329,40.35,38.800000000000004,0.9400000000000001,0.13,788,1.2000000000000002,291,2
+2023,6,12,15,30,16.2,1.12,0.064,0.62,81,928,744,0,6,2.6,355,151,0,463,0.329,40.1,44.39,0.9400000000000001,0.13,788,1.2000000000000002,287,1.8
+2023,6,12,16,0,16.400000000000002,1.1,0.058,0.62,76,909,660,0,6,2,327,160,0,430,0.33,38,50.06,0.9400000000000001,0.13,788,1.2000000000000002,283,1.6
+2023,6,12,16,30,16.3,1.1,0.058,0.62,72,880,567,0,6,2,274,91,0,325,0.33,38.24,55.76,0.9400000000000001,0.13,788,1.2000000000000002,289,1.3
+2023,6,12,17,0,16.2,1.1,0.056,0.62,66,842,469,0,6,1.7000000000000002,230,69,0,263,0.33,37.49,61.43,0.9400000000000001,0.13,788,1.2000000000000002,296,1.1
+2023,6,12,17,30,15.9,1.1,0.056,0.62,60,792,369,0,6,1.7000000000000002,189,78,0,219,0.33,38.21,67.04,0.9400000000000001,0.13,788,1.2000000000000002,310,0.9
+2023,6,12,18,0,15.5,1.1,0.053,0.62,52,721,268,0,6,2.4000000000000004,123,27,0,131,0.33,41.39,72.57000000000001,0.9400000000000001,0.13,788,1.2000000000000002,324,0.7000000000000001
+2023,6,12,18,30,14.4,1.1,0.053,0.62,44,615,172,0,6,2.4000000000000004,72,146,0,102,0.329,44.42,77.96000000000001,0.9400000000000001,0.13,788,1.2000000000000002,338,0.7000000000000001
+2023,6,12,19,0,13.200000000000001,1.11,0.053,0.62,33,450,86,6,7,4.4,49,44,86,54,0.328,55.08,83.18,0.9400000000000001,0.13,789,1.2000000000000002,352,0.7000000000000001
+2023,6,12,19,30,12.3,1.11,0.053,0.62,15,171,21,6,7,4.4,13,1,86,13,0.327,58.410000000000004,88.11,0.9400000000000001,0.13,789,1.3,350,0.9
+2023,6,12,20,0,11.4,1.11,0.055,0.62,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.326,60.99,93.17,0.9400000000000001,0.13,789,1.3,348,1.2000000000000002
+2023,6,12,20,30,10.8,1.11,0.055,0.62,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.325,63.45,97.72,0.9400000000000001,0.13,789,1.3,344,1.4000000000000001
+2023,6,12,21,0,10.200000000000001,1.12,0.059000000000000004,0.62,0,0,0,0,7,4.2,0,0,0,0,0.325,66.48,101.92,0.9400000000000001,0.13,789,1.3,340,1.6
+2023,6,12,21,30,9.8,1.12,0.059000000000000004,0.62,0,0,0,0,7,4.2,0,0,0,0,0.324,68.28,105.72,0.9400000000000001,0.13,789,1.4000000000000001,337,1.7000000000000002
+2023,6,12,22,0,9.4,1.1400000000000001,0.064,0.62,0,0,0,0,7,4.3,0,0,0,0,0.323,70.56,109.04,0.9500000000000001,0.13,789,1.4000000000000001,334,1.8
+2023,6,12,22,30,9,1.1400000000000001,0.064,0.62,0,0,0,0,7,4.3,0,0,0,0,0.323,72.48,111.82000000000001,0.9500000000000001,0.13,789,1.4000000000000001,332,1.9000000000000001
+2023,6,12,23,0,8.6,1.16,0.07,0.62,0,0,0,0,7,4.5,0,0,0,0,0.323,75.59,113.97,0.9500000000000001,0.13,789,1.4000000000000001,329,2
+2023,6,12,23,30,8.1,1.16,0.07,0.62,0,0,0,0,7,4.5,0,0,0,0,0.323,78.19,115.44,0.9500000000000001,0.13,789,1.5,327,1.8
+2023,6,13,0,0,7.7,1.19,0.073,0.62,0,0,0,0,8,4.7,0,0,0,0,0.323,81.15,116.18,0.9500000000000001,0.13,789,1.5,325,1.6
+2023,6,13,0,30,7.300000000000001,1.19,0.073,0.62,0,0,0,0,8,4.7,0,0,0,0,0.323,83.39,116.16,0.9500000000000001,0.13,789,1.5,322,1.2000000000000002
+2023,6,13,1,0,6.9,1.22,0.073,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.323,86.35000000000001,115.38,0.9500000000000001,0.13,789,1.5,319,0.9
+2023,6,13,1,30,6.6000000000000005,1.22,0.073,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.323,88.15,113.87,0.9500000000000001,0.13,789,1.6,317,0.8
+2023,6,13,2,0,6.300000000000001,1.25,0.07100000000000001,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.323,90.32000000000001,111.67,0.9500000000000001,0.13,789,1.6,316,0.7000000000000001
+2023,6,13,2,30,6.1000000000000005,1.25,0.07100000000000001,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.322,91.57000000000001,108.87,0.9500000000000001,0.13,789,1.6,320,0.6000000000000001
+2023,6,13,3,0,5.9,1.27,0.07100000000000001,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.322,92.83,105.51,0.9500000000000001,0.13,789,1.6,325,0.5
+2023,6,13,3,30,5.800000000000001,1.27,0.07100000000000001,0.62,0,0,0,0,8,4.800000000000001,0,0,0,0,0.322,93.47,101.69,0.9500000000000001,0.13,789,1.6,339,0.4
+2023,6,13,4,0,5.7,1.29,0.074,0.62,0,0,0,0,8,4.800000000000001,0,0,0,0,0.322,94.2,97.47,0.9500000000000001,0.13,789,1.6,354,0.30000000000000004
+2023,6,13,4,30,6.1000000000000005,1.29,0.074,0.62,0,0,0,0,7,4.800000000000001,0,0,0,0,0.322,91.64,92.91,0.9500000000000001,0.13,789,1.6,178,0.4
+2023,6,13,5,0,6.4,1.3,0.078,0.62,16,152,22,6,8,5.1000000000000005,7,0,86,7,0.323,91.48,87.84,0.9500000000000001,0.13,789,1.6,2,0.6000000000000001
+2023,6,13,5,30,7.4,1.3,0.078,0.62,36,408,87,4,8,5.1000000000000005,23,3,57,23,0.323,85.43,82.89,0.96,0.13,789,1.6,169,0.6000000000000001
+2023,6,13,6,0,8.4,1.32,0.081,0.62,51,567,172,0,8,5.6000000000000005,104,145,0,135,0.324,82.26,77.66,0.96,0.13,790,1.6,336,0.7000000000000001
+2023,6,13,6,30,9.700000000000001,1.32,0.081,0.62,61,673,266,0,8,5.6000000000000005,119,410,0,244,0.324,75.37,72.25,0.96,0.13,790,1.6,315,0.9
+2023,6,13,7,0,11,1.35,0.082,0.62,69,748,365,0,8,5.800000000000001,171,237,0,265,0.325,70.35000000000001,66.72,0.96,0.13,790,1.6,293,1
+2023,6,13,7,30,12.100000000000001,1.35,0.082,0.62,77,802,464,0,5,5.800000000000001,237,150,0,309,0.325,65.43,61.11,0.96,0.13,790,1.6,279,1.2000000000000002
+2023,6,13,8,0,13.100000000000001,1.36,0.083,0.62,82,842,560,0,5,5.7,264,107,0,325,0.325,60.67,55.43,0.96,0.13,790,1.6,265,1.3
+2023,6,13,8,30,13.9,1.36,0.083,0.62,88,871,651,0,8,5.7,224,16,4,234,0.326,57.6,49.74,0.96,0.13,790,1.6,257,1.5
+2023,6,13,9,0,14.700000000000001,1.36,0.089,0.62,94,892,735,0,5,5.4,312,33,0,336,0.326,53.71,44.07,0.96,0.13,790,1.6,249,1.8
+2023,6,13,9,30,15.3,1.36,0.089,0.62,98,910,810,0,5,5.4,416,153,0,536,0.326,51.69,38.47,0.96,0.13,790,1.6,244,2
+2023,6,13,10,0,15.9,1.37,0.095,0.62,103,922,876,0,5,5.1000000000000005,319,61,0,370,0.326,48.82,33.04,0.96,0.13,790,1.6,240,2.2
+2023,6,13,10,30,16.3,1.37,0.095,0.62,103,937,931,0,8,5.1000000000000005,385,264,0,618,0.326,47.6,27.91,0.96,0.13,790,1.7000000000000002,236,2.3000000000000003
+2023,6,13,11,0,16.7,1.3800000000000001,0.081,0.62,101,951,974,0,8,4.9,337,501,0,797,0.326,45.61,23.32,0.97,0.13,789,1.7000000000000002,232,2.4000000000000004
+2023,6,13,11,30,16.8,1.3800000000000001,0.081,0.62,103,954,1001,0,3,4.9,257,534,0,760,0.326,45.32,19.66,0.97,0.13,789,1.7000000000000002,228,2.5
+2023,6,13,12,0,16.900000000000002,1.3900000000000001,0.09,0.62,105,953,1014,0,3,4.800000000000001,324,420,0,724,0.325,44.7,17.57,0.97,0.13,789,1.7000000000000002,224,2.5
+2023,6,13,12,30,16.8,1.3900000000000001,0.09,0.62,108,950,1013,0,3,4.800000000000001,399,218,0,607,0.325,44.980000000000004,17.62,0.97,0.13,789,1.7000000000000002,222,2.7
+2023,6,13,13,0,16.8,1.4000000000000001,0.097,0.62,109,945,998,0,5,4.7,416,148,0,555,0.324,44.83,19.8,0.97,0.13,789,1.7000000000000002,219,2.8000000000000003
+2023,6,13,13,30,16.7,1.4000000000000001,0.097,0.62,114,930,967,0,8,4.7,381,263,0,622,0.324,45.12,23.51,0.97,0.13,789,1.7000000000000002,220,2.8000000000000003
+2023,6,13,14,0,16.7,1.3900000000000001,0.126,0.62,120,909,922,0,8,4.6000000000000005,316,45,0,356,0.323,44.58,28.14,0.96,0.13,789,1.7000000000000002,222,2.8000000000000003
+2023,6,13,14,30,16.7,1.3900000000000001,0.126,0.62,117,897,867,0,8,4.6000000000000005,345,151,0,471,0.323,44.58,33.29,0.96,0.13,789,1.7000000000000002,223,2.8000000000000003
+2023,6,13,15,0,16.7,1.3900000000000001,0.124,0.62,113,882,801,0,7,4.3,331,117,0,422,0.322,43.63,38.72,0.96,0.13,789,1.7000000000000002,224,2.7
+2023,6,13,15,30,16.6,1.3900000000000001,0.124,0.62,108,861,724,0,7,4.3,322,216,0,477,0.322,43.910000000000004,44.32,0.96,0.13,789,1.7000000000000002,224,2.7
+2023,6,13,16,0,16.5,1.4000000000000001,0.123,0.62,103,834,639,0,7,4,292,273,0,468,0.321,43.410000000000004,49.99,0.96,0.13,789,1.7000000000000002,224,2.7
+2023,6,13,16,30,16.400000000000002,1.4000000000000001,0.123,0.62,98,799,548,0,7,4,243,89,0,293,0.321,43.69,55.69,0.96,0.13,789,1.6,225,2.6
+2023,6,13,17,0,16.3,1.41,0.125,0.62,91,752,451,0,6,3.9000000000000004,192,31,0,207,0.321,43.65,61.36,0.96,0.13,789,1.6,226,2.6
+2023,6,13,17,30,15.9,1.41,0.125,0.62,83,688,352,0,7,3.9000000000000004,89,18,0,96,0.321,44.77,66.97,0.96,0.13,789,1.6,225,2.2
+2023,6,13,18,0,15.600000000000001,1.42,0.131,0.62,73,602,254,0,7,4.5,40,32,4,50,0.321,47.51,72.49,0.96,0.13,789,1.6,224,1.9000000000000001
+2023,6,13,18,30,14.4,1.42,0.131,0.62,59,488,161,0,8,4.5,64,398,54,147,0.321,51.31,77.89,0.96,0.13,789,1.6,220,1.4000000000000001
+2023,6,13,19,0,13.200000000000001,1.44,0.133,0.62,41,323,80,6,8,6,36,61,93,43,0.321,61.74,83.11,0.96,0.13,789,1.6,216,0.9
+2023,6,13,19,30,12.5,1.44,0.133,0.62,15,103,19,6,8,6,7,0,86,7,0.322,64.63,88.04,0.96,0.13,789,1.6,213,1
+2023,6,13,20,0,11.700000000000001,1.47,0.12,0.62,0,0,0,0,8,5.300000000000001,0,0,0,0,0.322,65.06,93.10000000000001,0.9500000000000001,0.13,789,1.6,210,1
+2023,6,13,20,30,11.3,1.47,0.12,0.62,0,0,0,0,8,5.300000000000001,0,0,0,0,0.323,66.8,97.64,0.9500000000000001,0.13,789,1.6,209,1.1
+2023,6,13,21,0,10.9,1.49,0.109,0.62,0,0,0,0,8,5,0,0,0,0,0.323,67.14,101.85000000000001,0.9500000000000001,0.13,789,1.6,208,1.1
+2023,6,13,21,30,10.700000000000001,1.49,0.109,0.62,0,0,0,0,4,5,0,0,0,0,0.323,68.04,105.65,0.9500000000000001,0.13,789,1.6,209,1.1
+2023,6,13,22,0,10.4,1.49,0.106,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.323,68.42,108.97,0.9400000000000001,0.13,789,1.6,210,1.1
+2023,6,13,22,30,10.200000000000001,1.49,0.106,0.62,0,0,0,0,4,4.800000000000001,0,0,0,0,0.324,69.34,111.75,0.9400000000000001,0.13,789,1.6,211,1.1
+2023,6,13,23,0,10,1.5,0.105,0.62,0,0,0,0,4,4.800000000000001,0,0,0,0,0.324,70.15,113.9,0.9400000000000001,0.13,789,1.6,213,1.1
+2023,6,13,23,30,9.8,1.5,0.105,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.324,71.09,115.38,0.9400000000000001,0.13,789,1.6,214,1.1
+2023,6,14,0,0,9.5,1.5,0.10300000000000001,0.62,0,0,0,0,4,4.9,0,0,0,0,0.324,72.91,116.12,0.9400000000000001,0.13,789,1.6,215,1.1
+2023,6,14,0,30,9.3,1.5,0.10300000000000001,0.62,0,0,0,0,4,4.9,0,0,0,0,0.325,73.8,116.10000000000001,0.9400000000000001,0.13,788,1.6,218,1
+2023,6,14,1,0,9.1,1.49,0.10200000000000001,0.62,0,0,0,0,5,5,0,0,0,0,0.325,75.55,115.33,0.9400000000000001,0.13,788,1.7000000000000002,220,1
+2023,6,14,1,30,9,1.49,0.10200000000000001,0.62,0,0,0,0,0,5,0,0,0,0,0.325,76.06,113.83,0.9400000000000001,0.13,788,1.7000000000000002,222,0.9
+2023,6,14,2,0,8.8,1.47,0.10200000000000001,0.62,0,0,0,0,0,5.2,0,0,0,0,0.325,77.88,111.64,0.9400000000000001,0.13,788,1.7000000000000002,224,0.9
+2023,6,14,2,30,8.700000000000001,1.47,0.10200000000000001,0.62,0,0,0,0,0,5.2,0,0,0,0,0.326,78.41,108.84,0.9400000000000001,0.13,788,1.7000000000000002,221,0.8
+2023,6,14,3,0,8.6,1.46,0.101,0.62,0,0,0,0,0,5.2,0,0,0,0,0.327,79.47,105.49000000000001,0.9400000000000001,0.13,788,1.7000000000000002,219,0.7000000000000001
+2023,6,14,3,30,8.4,1.46,0.101,0.62,0,0,0,0,0,5.2,0,0,0,0,0.327,80.55,101.68,0.9400000000000001,0.13,788,1.7000000000000002,209,0.7000000000000001
+2023,6,14,4,0,8.3,1.45,0.094,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.328,81.37,97.46000000000001,0.9400000000000001,0.13,788,1.7000000000000002,199,0.7000000000000001
+2023,6,14,4,30,8.8,1.45,0.094,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.329,78.67,92.9,0.9400000000000001,0.13,788,1.7000000000000002,190,0.8
+2023,6,14,5,0,9.3,1.43,0.085,0.62,16,147,22,0,0,5.6000000000000005,16,147,0,22,0.329,77.81,87.84,0.9400000000000001,0.13,788,1.7000000000000002,181,0.9
+2023,6,14,5,30,10.700000000000001,1.43,0.085,0.62,36,403,86,0,0,5.6000000000000005,35,332,0,76,0.33,70.87,82.89,0.93,0.13,788,1.7000000000000002,182,1.4000000000000001
+2023,6,14,6,0,12,1.41,0.077,0.62,49,571,171,0,4,5.7,65,1,0,65,0.33,65.48,77.66,0.93,0.13,789,1.6,183,1.9000000000000001
+2023,6,14,6,30,13.700000000000001,1.41,0.077,0.62,58,682,266,0,4,5.7,108,254,0,185,0.33,58.6,72.26,0.93,0.13,789,1.6,194,2.2
+2023,6,14,7,0,15.4,1.3900000000000001,0.07,0.62,64,761,365,0,0,5.7,69,738,0,361,0.33,52.39,66.73,0.93,0.13,788,1.6,205,2.6
+2023,6,14,7,30,16.6,1.3900000000000001,0.07,0.62,70,816,464,0,0,5.7,153,570,0,428,0.331,48.54,61.120000000000005,0.93,0.13,788,1.6,212,2.9000000000000004
+2023,6,14,8,0,17.8,1.36,0.066,0.62,74,858,561,0,4,5.5,252,367,0,460,0.331,44.43,55.44,0.93,0.13,788,1.6,220,3.3000000000000003
+2023,6,14,8,30,18.7,1.36,0.066,0.62,79,888,653,0,3,5.5,292,376,7,535,0.331,42,49.75,0.93,0.13,788,1.7000000000000002,224,3.6
+2023,6,14,9,0,19.6,1.33,0.066,0.62,82,912,737,0,5,5.300000000000001,383,203,0,529,0.331,38.97,44.08,0.93,0.13,788,1.7000000000000002,228,4
+2023,6,14,9,30,20.200000000000003,1.33,0.066,0.62,85,930,813,0,5,5.300000000000001,394,143,0,506,0.331,37.56,38.480000000000004,0.93,0.13,788,1.7000000000000002,230,4.2
+2023,6,14,10,0,20.900000000000002,1.3,0.067,0.62,89,943,879,0,5,5.300000000000001,388,166,0,527,0.331,36.11,33.05,0.93,0.13,788,1.7000000000000002,232,4.4
+2023,6,14,10,30,21.200000000000003,1.3,0.067,0.62,88,957,934,0,0,5.300000000000001,173,820,0,898,0.33,35.410000000000004,27.91,0.9400000000000001,0.13,787,1.7000000000000002,233,4.6000000000000005
+2023,6,14,11,0,21.6,1.18,0.054,0.62,86,969,976,0,3,5.5,327,505,0,791,0.33,35.160000000000004,23.3,0.9400000000000001,0.13,787,1.7000000000000002,233,4.800000000000001
+2023,6,14,11,30,21.700000000000003,1.18,0.054,0.62,87,973,1003,0,0,5.5,203,789,0,946,0.33,34.95,19.64,0.9400000000000001,0.13,787,1.8,234,4.9
+2023,6,14,12,0,21.900000000000002,1.12,0.053,0.62,86,976,1017,0,0,5.800000000000001,244,685,0,897,0.329,35.13,17.53,0.9400000000000001,0.13,787,1.8,235,5
+2023,6,14,12,30,21.700000000000003,1.12,0.053,0.62,87,974,1016,0,0,5.800000000000001,266,642,0,878,0.329,35.56,17.56,0.9400000000000001,0.13,787,1.8,236,5.1000000000000005
+2023,6,14,13,0,21.5,1.09,0.056,0.62,88,969,1000,0,3,6.2,397,466,0,836,0.329,36.92,19.73,0.9500000000000001,0.13,786,1.9000000000000001,238,5.1000000000000005
+2023,6,14,13,30,21.1,1.09,0.056,0.62,87,963,971,0,8,6.2,257,653,0,856,0.329,37.84,23.44,0.9500000000000001,0.13,786,1.9000000000000001,239,5
+2023,6,14,14,0,20.6,1.06,0.058,0.62,86,955,929,0,7,6.5,346,368,0,671,0.329,39.980000000000004,28.07,0.9500000000000001,0.13,786,1.9000000000000001,241,4.9
+2023,6,14,14,30,19.900000000000002,1.06,0.058,0.62,87,941,874,0,7,6.5,385,120,0,485,0.329,41.74,33.22,0.9500000000000001,0.13,786,1.9000000000000001,244,4.7
+2023,6,14,15,0,19.200000000000003,1.09,0.065,0.62,86,922,806,0,7,6.800000000000001,342,87,0,410,0.329,44.480000000000004,38.65,0.96,0.13,786,1.9000000000000001,247,4.5
+2023,6,14,15,30,18.6,1.09,0.065,0.62,85,901,730,0,9,6.800000000000001,188,15,0,199,0.328,46.18,44.25,0.96,0.13,786,1.9000000000000001,252,4.1000000000000005
+2023,6,14,16,0,18.1,1.12,0.07200000000000001,0.62,82,873,644,0,9,7.2,53,0,0,53,0.328,48.88,49.92,0.96,0.13,786,1.9000000000000001,258,3.8000000000000003
+2023,6,14,16,30,17.6,1.12,0.07200000000000001,0.62,79,840,553,0,9,7.2,48,0,0,48,0.328,50.44,55.620000000000005,0.96,0.13,786,1.9000000000000001,265,3.3000000000000003
+2023,6,14,17,0,17.1,1.16,0.075,0.62,73,798,456,0,9,7.6000000000000005,18,0,0,18,0.327,53.480000000000004,61.29,0.96,0.13,786,1.9000000000000001,273,2.9000000000000004
+2023,6,14,17,30,16.400000000000002,1.16,0.075,0.62,67,742,358,0,6,7.6000000000000005,24,0,0,24,0.327,55.9,66.9,0.96,0.13,786,1.9000000000000001,286,2.2
+2023,6,14,18,0,15.8,1.18,0.077,0.62,59,666,260,0,6,8.700000000000001,7,0,0,7,0.327,62.81,72.43,0.96,0.13,786,1.9000000000000001,299,1.5
+2023,6,14,18,30,14.8,1.18,0.077,0.62,50,556,167,0,7,8.700000000000001,36,182,21,74,0.327,67.04,77.82000000000001,0.96,0.13,787,1.9000000000000001,319,1.1
+2023,6,14,19,0,13.9,1.2,0.079,0.62,36,390,83,5,7,9.700000000000001,44,136,93,60,0.327,75.62,83.04,0.9500000000000001,0.13,787,1.8,339,0.7000000000000001
+2023,6,14,19,30,13.4,1.2,0.079,0.62,16,138,21,6,7,9.700000000000001,14,1,86,14,0.327,78.11,87.97,0.9500000000000001,0.13,787,1.8,172,0.7000000000000001
+2023,6,14,20,0,13,1.21,0.08,0.62,0,0,0,0,7,9.1,0,0,0,0,0.327,77.39,93.03,0.9500000000000001,0.13,787,1.8,5,0.7000000000000001
+2023,6,14,20,30,12.700000000000001,1.21,0.08,0.62,0,0,0,0,7,9.1,0,0,0,0,0.327,78.92,97.58,0.9500000000000001,0.13,787,1.8,12,0.6000000000000001
+2023,6,14,21,0,12.4,1.22,0.08,0.62,0,0,0,0,7,8.9,0,0,0,0,0.327,79.12,101.78,0.9500000000000001,0.13,787,1.8,19,0.6000000000000001
+2023,6,14,21,30,12,1.22,0.08,0.62,0,0,0,0,7,8.9,0,0,0,0,0.327,81.22,105.58,0.9500000000000001,0.13,787,1.8,25,0.6000000000000001
+2023,6,14,22,0,11.700000000000001,1.22,0.077,0.62,0,0,0,0,8,8.6,0,0,0,0,0.327,81.52,108.91,0.9500000000000001,0.13,787,1.8,31,0.6000000000000001
+2023,6,14,22,30,11.4,1.22,0.077,0.62,0,0,0,0,8,8.6,0,0,0,0,0.327,83.15,111.69,0.9500000000000001,0.13,787,1.8,39,0.5
+2023,6,14,23,0,11.100000000000001,1.22,0.07200000000000001,0.62,0,0,0,0,8,8.4,0,0,0,0,0.327,83.65,113.85000000000001,0.9400000000000001,0.13,787,1.8,47,0.5
+2023,6,14,23,30,10.8,1.22,0.07200000000000001,0.62,0,0,0,0,8,8.4,0,0,0,0,0.327,85.33,115.32000000000001,0.9400000000000001,0.13,787,1.8,58,0.5
+2023,6,15,0,0,10.4,1.22,0.07200000000000001,0.62,0,0,0,0,4,8.3,0,0,0,0,0.327,87,116.07000000000001,0.9400000000000001,0.13,787,1.8,70,0.5
+2023,6,15,0,30,10.200000000000001,1.22,0.07200000000000001,0.62,0,0,0,0,4,8.3,0,0,0,0,0.327,88.17,116.06,0.9500000000000001,0.13,787,1.8,83,0.5
+2023,6,15,1,0,9.9,1.23,0.079,0.62,0,0,0,0,5,8.4,0,0,0,0,0.326,90.32000000000001,115.29,0.9500000000000001,0.13,787,1.9000000000000001,96,0.5
+2023,6,15,1,30,9.8,1.23,0.079,0.62,0,0,0,0,4,8.4,0,0,0,0,0.326,90.92,113.8,0.9500000000000001,0.13,787,1.8,115,0.6000000000000001
+2023,6,15,2,0,9.700000000000001,1.25,0.084,0.62,0,0,0,0,4,8.5,0,0,0,0,0.325,92.32000000000001,111.62,0.9500000000000001,0.13,787,1.8,134,0.7000000000000001
+2023,6,15,2,30,9.5,1.25,0.084,0.62,0,0,0,0,4,8.5,0,0,0,0,0.325,93.45,108.82000000000001,0.9500000000000001,0.13,786,1.8,147,0.8
+2023,6,15,3,0,9.3,1.26,0.08600000000000001,0.62,0,0,0,0,4,8.6,0,0,0,0,0.324,95.21000000000001,105.48,0.9500000000000001,0.13,786,1.8,160,1
+2023,6,15,3,30,9.3,1.26,0.08600000000000001,0.62,0,0,0,0,4,8.6,0,0,0,0,0.323,95.34,101.67,0.9500000000000001,0.13,787,1.8,169,1
+2023,6,15,4,0,9.200000000000001,1.27,0.089,0.62,0,0,0,0,4,8.700000000000001,0,0,0,0,0.323,96.49000000000001,97.45,0.9500000000000001,0.13,787,1.8,178,1.1
+2023,6,15,4,30,9.700000000000001,1.27,0.089,0.62,0,0,0,0,4,8.700000000000001,0,0,0,0,0.322,93.31,92.9,0.9500000000000001,0.13,787,1.8,183,1.4000000000000001
+2023,6,15,5,0,10.200000000000001,1.28,0.088,0.62,17,137,22,6,4,9.200000000000001,4,0,86,4,0.322,93.25,87.84,0.9500000000000001,0.13,787,1.8,188,1.6
+2023,6,15,5,30,10.9,1.28,0.088,0.62,37,386,85,4,4,9.200000000000001,16,0,57,16,0.322,89.01,82.9,0.9500000000000001,0.13,787,1.8,190,2.1
+2023,6,15,6,0,11.600000000000001,1.28,0.08700000000000001,0.62,52,550,169,0,4,9.4,36,0,0,36,0.322,86.37,77.67,0.9500000000000001,0.13,787,1.8,191,2.7
+2023,6,15,6,30,12.600000000000001,1.28,0.08700000000000001,0.62,62,660,263,0,4,9.4,131,55,0,148,0.322,80.88,72.27,0.9500000000000001,0.13,787,1.8,195,3.1
+2023,6,15,7,0,13.5,1.28,0.085,0.62,70,737,361,0,3,9.3,192,204,0,273,0.322,75.59,66.75,0.9500000000000001,0.13,787,1.8,200,3.4000000000000004
+2023,6,15,7,30,14.4,1.28,0.085,0.62,79,788,459,0,3,9.3,240,170,7,322,0.322,71.32000000000001,61.13,0.9500000000000001,0.13,787,1.8,207,3.6
+2023,6,15,8,0,15.3,1.26,0.094,0.62,87,823,554,0,5,8.3,281,95,0,335,0.322,63.22,55.46,0.96,0.13,787,1.8,215,3.7
+2023,6,15,8,30,15.700000000000001,1.26,0.094,0.62,94,851,644,0,5,8.4,295,194,0,420,0.321,61.63,49.76,0.96,0.13,787,1.8,218,3.6
+2023,6,15,9,0,16.1,1.25,0.106,0.62,101,871,727,0,8,7.4,185,29,0,206,0.321,56.410000000000004,44.09,0.96,0.13,787,1.9000000000000001,220,3.6
+2023,6,15,9,30,16.3,1.25,0.106,0.62,105,890,802,0,5,7.4,98,0,0,98,0.32,55.7,38.5,0.96,0.13,787,1.9000000000000001,222,3.5
+2023,6,15,10,0,16.5,1.25,0.11,0.62,110,904,868,0,5,7.300000000000001,108,0,0,108,0.32,54.64,33.06,0.96,0.13,787,1.9000000000000001,223,3.5
+2023,6,15,10,30,16.5,1.25,0.11,0.62,112,917,922,0,5,7.300000000000001,197,20,0,215,0.319,54.64,27.92,0.97,0.13,787,1.9000000000000001,225,3.5
+2023,6,15,11,0,16.5,1.22,0.106,0.62,113,926,963,0,5,7.6000000000000005,335,90,0,418,0.319,55.47,23.3,0.97,0.13,787,1.9000000000000001,228,3.5
+2023,6,15,11,30,16.3,1.22,0.106,0.62,117,926,989,0,8,7.6000000000000005,325,94,0,414,0.318,56.18,19.62,0.97,0.13,787,2,231,3.5
+2023,6,15,12,0,16.1,1.23,0.12,0.62,122,923,1002,0,3,7.800000000000001,413,293,0,692,0.317,57.86,17.490000000000002,0.97,0.13,787,2,234,3.4000000000000004
+2023,6,15,12,30,15.9,1.23,0.12,0.62,124,920,1001,0,8,7.800000000000001,331,117,0,443,0.316,58.67,17.51,0.97,0.13,788,2,239,3.3000000000000003
+2023,6,15,13,0,15.700000000000001,1.22,0.131,0.62,126,912,985,0,7,8.1,287,62,0,345,0.316,60.47,19.67,0.97,0.13,788,2,243,3.2
+2023,6,15,13,30,15.200000000000001,1.22,0.131,0.62,126,903,955,0,6,8.1,332,10,0,341,0.316,62.440000000000005,23.37,0.97,0.13,788,2,255,3.1
+2023,6,15,14,0,14.700000000000001,1.19,0.136,0.62,125,891,912,0,6,8.4,272,4,0,276,0.316,65.83,28,0.97,0.13,788,2,266,3.1
+2023,6,15,14,30,14.100000000000001,1.19,0.136,0.62,121,880,858,0,6,8.4,206,3,0,209,0.316,68.43,33.15,0.97,0.13,788,2,282,3.3000000000000003
+2023,6,15,15,0,13.4,1.17,0.131,0.62,117,865,793,0,6,8.4,154,1,0,155,0.317,71.94,38.59,0.97,0.13,788,2,298,3.4000000000000004
+2023,6,15,15,30,12.8,1.17,0.131,0.62,110,850,719,0,9,8.5,76,0,0,76,0.317,74.9,44.19,0.97,0.13,789,2,310,3.6
+2023,6,15,16,0,12.200000000000001,1.1500000000000001,0.114,0.62,101,831,637,0,6,7.9,77,0,0,77,0.317,75.16,49.86,0.97,0.13,789,2,323,3.9000000000000004
+2023,6,15,16,30,11.700000000000001,1.1500000000000001,0.114,0.62,93,805,548,0,6,7.9,64,0,0,64,0.317,77.67,55.550000000000004,0.96,0.13,789,1.9000000000000001,333,3.8000000000000003
+2023,6,15,17,0,11.3,1.16,0.1,0.62,82,772,454,0,6,6.800000000000001,120,4,0,122,0.318,73.92,61.22,0.96,0.13,789,1.8,343,3.6
+2023,6,15,17,30,10.9,1.16,0.1,0.62,74,723,358,0,7,6.800000000000001,130,231,7,221,0.319,75.99,66.84,0.96,0.13,790,1.7000000000000002,175,3.2
+2023,6,15,18,0,10.5,1.2,0.089,0.62,63,656,262,0,7,5.9,121,177,0,175,0.32,73.14,72.36,0.96,0.13,790,1.6,7,2.7
+2023,6,15,18,30,9.9,1.2,0.089,0.62,51,556,169,0,7,5.9,69,221,7,116,0.321,76.13,77.75,0.9500000000000001,0.13,790,1.5,18,1.9000000000000001
+2023,6,15,19,0,9.3,1.25,0.081,0.62,37,403,86,5,7,6.4,34,75,71,43,0.323,82.26,82.97,0.9500000000000001,0.13,790,1.4000000000000001,30,1.1
+2023,6,15,19,30,8.8,1.25,0.081,0.62,17,150,22,6,7,6.4,9,0,86,9,0.326,85.19,87.91,0.9500000000000001,0.13,791,1.3,48,0.9
+2023,6,15,20,0,8.4,1.3,0.067,0.62,0,0,0,0,7,5.800000000000001,0,0,0,0,0.328,83.58,92.97,0.9400000000000001,0.13,791,1.2000000000000002,67,0.7000000000000001
+2023,6,15,20,30,8.1,1.3,0.067,0.62,0,0,0,0,5,5.800000000000001,0,0,0,0,0.33,85.3,97.51,0.9400000000000001,0.13,791,1.2000000000000002,87,0.7000000000000001
+2023,6,15,21,0,7.800000000000001,1.31,0.058,0.62,0,0,0,0,0,5.2,0,0,0,0,0.333,83.5,101.72,0.93,0.13,791,1.1,108,0.6000000000000001
+2023,6,15,21,30,7.6000000000000005,1.31,0.058,0.62,0,0,0,0,0,5.2,0,0,0,0,0.334,84.64,105.52,0.93,0.13,791,1.1,121,0.7000000000000001
+2023,6,15,22,0,7.300000000000001,1.29,0.056,0.62,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.336,85.65,108.85000000000001,0.93,0.13,791,1.1,133,0.7000000000000001
+2023,6,15,22,30,7.1000000000000005,1.29,0.056,0.62,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.337,86.83,111.63,0.92,0.13,791,1.1,144,0.7000000000000001
+2023,6,15,23,0,6.800000000000001,1.29,0.057,0.62,0,0,0,0,5,5.1000000000000005,0,0,0,0,0.338,88.88,113.79,0.92,0.13,791,1,155,0.7000000000000001
+2023,6,15,23,30,6.5,1.29,0.057,0.62,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.338,90.84,115.28,0.92,0.13,792,1,173,0.7000000000000001
+2023,6,16,0,0,6.1000000000000005,1.33,0.061,0.62,0,0,0,0,7,5.2,0,0,0,0,0.339,94.09,116.03,0.91,0.13,792,1,191,0.8
+2023,6,16,0,30,5.9,1.33,0.061,0.62,0,0,0,0,7,5.2,0,0,0,0,0.338,95.4,116.02,0.92,0.13,792,1,195,0.7000000000000001
+2023,6,16,1,0,5.7,1.35,0.066,0.62,0,0,0,0,7,5.300000000000001,0,0,0,0,0.337,97.36,115.26,0.92,0.13,792,1,200,0.7000000000000001
+2023,6,16,1,30,5.5,1.35,0.066,0.62,0,0,0,0,7,5.300000000000001,0,0,0,0,0.336,98.72,113.77,0.92,0.13,792,1,209,0.7000000000000001
+2023,6,16,2,0,5.4,1.33,0.07,0.62,0,0,0,0,0,5.4,0,0,0,0,0.335,100,111.60000000000001,0.92,0.13,792,1,218,0.6000000000000001
+2023,6,16,2,30,5.1000000000000005,1.33,0.07,0.62,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.335,100,108.81,0.93,0.13,792,1,234,0.6000000000000001
+2023,6,16,3,0,4.9,1.31,0.07200000000000001,0.62,0,0,0,0,0,4.9,0,0,0,0,0.335,100,105.47,0.93,0.13,792,0.9,250,0.5
+2023,6,16,3,30,4.7,1.31,0.07200000000000001,0.62,0,0,0,0,0,4.7,0,0,0,0,0.335,100,101.67,0.93,0.13,792,0.9,271,0.5
+2023,6,16,4,0,4.4,1.28,0.07100000000000001,0.62,0,0,0,0,0,4.4,0,0,0,0,0.336,100,97.46000000000001,0.93,0.13,793,0.9,292,0.5
+2023,6,16,4,30,4.800000000000001,1.28,0.07100000000000001,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.336,100,92.91,0.93,0.13,793,0.9,313,0.6000000000000001
+2023,6,16,5,0,5.300000000000001,1.28,0.069,0.62,17,172,23,2,0,5.300000000000001,15,121,25,20,0.336,100,87.84,0.93,0.13,793,0.9,334,0.7000000000000001
+2023,6,16,5,30,6.4,1.28,0.069,0.62,35,447,90,1,0,5.5,40,316,18,79,0.336,94.13,82.91,0.93,0.13,793,0.9,346,0.9
+2023,6,16,6,0,7.6000000000000005,1.29,0.065,0.62,47,613,178,0,0,5.300000000000001,60,517,0,170,0.337,85.47,77.69,0.93,0.13,794,0.9,358,1.2000000000000002
+2023,6,16,6,30,9.3,1.29,0.065,0.62,56,719,275,0,0,5.300000000000001,111,384,0,228,0.336,76.19,72.29,0.93,0.13,794,0.9,180,1.3
+2023,6,16,7,0,10.9,1.3,0.063,0.62,63,793,376,0,5,3.7,217,107,0,259,0.336,61.18,66.77,0.93,0.13,794,0.9,2,1.4000000000000001
+2023,6,16,7,30,12.200000000000001,1.3,0.063,0.62,69,845,477,0,5,3.7,256,157,0,332,0.335,56.15,61.15,0.93,0.13,794,0.9,7,1.4000000000000001
+2023,6,16,8,0,13.4,1.31,0.064,0.62,74,884,575,0,8,2.2,227,369,0,436,0.334,46.67,55.480000000000004,0.93,0.13,794,0.9,12,1.4000000000000001
+2023,6,16,8,30,14.200000000000001,1.31,0.064,0.62,79,912,668,0,7,2.2,266,368,14,504,0.333,44.31,49.78,0.93,0.13,794,0.9,24,1.5
+2023,6,16,9,0,15,1.32,0.068,0.62,84,933,754,0,7,1.5,323,287,0,529,0.332,40.08,44.11,0.93,0.13,794,1,35,1.6
+2023,6,16,9,30,15.700000000000001,1.32,0.068,0.62,88,949,831,0,7,1.5,341,327,0,597,0.33,38.33,38.51,0.93,0.13,794,1,46,1.7000000000000002
+2023,6,16,10,0,16.400000000000002,1.33,0.07200000000000001,0.62,93,961,898,0,3,1.2000000000000002,438,305,0,694,0.329,35.910000000000004,33.07,0.9400000000000001,0.13,794,1,56,1.8
+2023,6,16,10,30,17,1.33,0.07200000000000001,0.62,92,975,953,0,7,1.2000000000000002,334,538,0,809,0.328,34.57,27.93,0.9400000000000001,0.13,794,1,64,1.9000000000000001
+2023,6,16,11,0,17.5,1.35,0.063,0.62,91,985,996,0,7,1,259,679,0,883,0.326,32.88,23.3,0.9400000000000001,0.13,793,1,71,1.9000000000000001
+2023,6,16,11,30,17.900000000000002,1.35,0.063,0.62,91,990,1024,0,0,1,116,945,0,1006,0.325,32.06,19.61,0.9400000000000001,0.13,793,1,76,1.9000000000000001
+2023,6,16,12,0,18.400000000000002,1.3800000000000001,0.063,0.62,92,992,1038,0,0,0.7000000000000001,194,832,0,988,0.324,30.52,17.46,0.93,0.13,793,1,81,1.8
+2023,6,16,12,30,18.6,1.3800000000000001,0.063,0.62,91,992,1037,0,0,0.7000000000000001,146,886,0,991,0.323,30.14,17.47,0.93,0.13,793,1,88,1.6
+2023,6,16,13,0,18.8,1.41,0.064,0.62,91,989,1023,0,0,0.5,175,838,0,964,0.322,29.34,19.62,0.93,0.13,793,1,94,1.5
+2023,6,16,13,30,18.900000000000002,1.41,0.064,0.62,92,981,993,0,0,0.5,287,588,0,827,0.322,29.12,23.31,0.93,0.13,792,1.1,101,1.3
+2023,6,16,14,0,19,1.42,0.07200000000000001,0.62,93,969,949,0,3,0.2,360,448,0,756,0.322,28.27,27.94,0.93,0.13,792,1.1,107,1.1
+2023,6,16,14,30,19,1.42,0.07200000000000001,0.62,91,958,894,0,8,0.2,178,806,0,853,0.322,28.27,33.09,0.9400000000000001,0.13,792,1.1,114,0.8
+2023,6,16,15,0,19,1.42,0.074,0.62,89,943,827,0,8,-0.30000000000000004,184,760,0,779,0.322,27.330000000000002,38.53,0.9400000000000001,0.13,792,1.1,120,0.6000000000000001
+2023,6,16,15,30,18.8,1.42,0.074,0.62,86,925,750,0,8,-0.30000000000000004,195,701,7,698,0.323,27.67,44.13,0.9400000000000001,0.13,792,1,151,0.4
+2023,6,16,16,0,18.7,1.42,0.074,0.62,82,901,664,0,8,-0.7000000000000001,244,480,0,554,0.323,27.03,49.800000000000004,0.9400000000000001,0.13,792,1,181,0.2
+2023,6,16,16,30,18.5,1.42,0.074,0.62,78,871,571,0,8,-0.7000000000000001,200,475,7,469,0.324,27.37,55.49,0.9400000000000001,0.13,792,1,219,0.30000000000000004
+2023,6,16,17,0,18.2,1.43,0.07200000000000001,0.62,72,832,473,0,8,-0.9,150,568,14,424,0.324,27.42,61.160000000000004,0.9400000000000001,0.13,792,1,257,0.5
+2023,6,16,17,30,17.8,1.43,0.07200000000000001,0.62,64,780,372,0,8,-0.9,151,454,11,330,0.325,28.11,66.78,0.93,0.13,792,1.1,257,0.5
+2023,6,16,18,0,17.3,1.44,0.07,0.62,57,708,272,0,5,0.1,128,353,25,235,0.326,31.12,72.3,0.93,0.13,792,1.1,258,0.5
+2023,6,16,18,30,16.3,1.44,0.07,0.62,48,601,176,0,8,0,61,35,0,68,0.328,33.15,77.7,0.93,0.13,792,1.1,186,0.30000000000000004
+2023,6,16,19,0,15.3,1.43,0.07200000000000001,0.62,35,437,89,5,8,2.7,45,70,71,54,0.329,42.76,82.92,0.9400000000000001,0.13,792,1.1,115,0.1
+2023,6,16,19,30,14.3,1.43,0.07200000000000001,0.62,17,167,23,6,7,2.7,16,3,86,16,0.33,45.59,87.86,0.9400000000000001,0.13,792,1.1,101,0.30000000000000004
+2023,6,16,20,0,13.4,1.41,0.081,0.62,0,0,0,0,5,2.9000000000000004,0,0,0,0,0.331,49.06,92.91,0.9400000000000001,0.13,792,1.1,87,0.6000000000000001
+2023,6,16,20,30,12.700000000000001,1.41,0.081,0.62,0,0,0,0,3,2.9000000000000004,0,0,0,0,0.332,51.34,97.45,0.9400000000000001,0.13,792,1.1,89,0.7000000000000001
+2023,6,16,21,0,12,1.4000000000000001,0.08600000000000001,0.62,0,0,0,0,0,3.6,0,0,0,0,0.333,56.27,101.66,0.9500000000000001,0.13,792,1.2000000000000002,91,0.8
+2023,6,16,21,30,11.600000000000001,1.4000000000000001,0.08600000000000001,0.62,0,0,0,0,0,3.6,0,0,0,0,0.334,57.77,105.46000000000001,0.9500000000000001,0.13,792,1.2000000000000002,89,0.8
+2023,6,16,22,0,11.200000000000001,1.41,0.08600000000000001,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.335,58.69,108.79,0.9500000000000001,0.13,792,1.2000000000000002,88,0.9
+2023,6,16,22,30,10.9,1.41,0.08600000000000001,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.336,59.870000000000005,111.58,0.9500000000000001,0.13,792,1.2000000000000002,86,0.9
+2023,6,16,23,0,10.5,1.41,0.08600000000000001,0.62,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.337,61.21,113.75,0.9500000000000001,0.13,792,1.2000000000000002,85,0.8
+2023,6,16,23,30,10.3,1.41,0.08600000000000001,0.62,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.339,62.03,115.24000000000001,0.9500000000000001,0.13,792,1.2000000000000002,86,0.8
+2023,6,17,0,0,10,1.41,0.089,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.341,63.56,115.99000000000001,0.9500000000000001,0.13,792,1.3,87,0.7000000000000001
+2023,6,17,0,30,9.8,1.41,0.089,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.34400000000000003,64.33,115.99000000000001,0.9500000000000001,0.13,791,1.3,96,0.6000000000000001
+2023,6,17,1,0,9.600000000000001,1.41,0.094,0.62,0,0,0,0,7,3.5,0,0,0,0,0.34700000000000003,65.69,115.24000000000001,0.9500000000000001,0.13,791,1.3,104,0.6000000000000001
+2023,6,17,1,30,9.4,1.41,0.094,0.62,0,0,0,0,7,3.5,0,0,0,0,0.35100000000000003,66.58,113.75,0.9500000000000001,0.13,791,1.3,117,0.6000000000000001
+2023,6,17,2,0,9.1,1.42,0.095,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.354,67.56,111.58,0.9500000000000001,0.13,791,1.3,129,0.6000000000000001
+2023,6,17,2,30,8.8,1.42,0.095,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.357,68.94,108.8,0.9500000000000001,0.13,791,1.3,139,0.7000000000000001
+2023,6,17,3,0,8.5,1.43,0.097,0.62,0,0,0,0,7,3.5,0,0,0,0,0.361,70.60000000000001,105.47,0.9500000000000001,0.13,791,1.3,150,0.7000000000000001
+2023,6,17,3,30,8.4,1.43,0.097,0.62,0,0,0,0,8,3.5,0,0,0,0,0.363,71.08,101.67,0.9500000000000001,0.13,791,1.3,162,0.7000000000000001
+2023,6,17,4,0,8.200000000000001,1.44,0.096,0.62,0,0,0,0,0,3.7,0,0,0,0,0.366,73.22,97.46000000000001,0.9500000000000001,0.13,791,1.3,174,0.7000000000000001
+2023,6,17,4,30,8.6,1.44,0.096,0.62,0,0,0,0,0,3.7,0,0,0,0,0.366,71.27,92.92,0.9500000000000001,0.13,791,1.4000000000000001,186,0.7000000000000001
+2023,6,17,5,0,9.1,1.46,0.095,0.62,17,141,22,0,0,4.6000000000000005,17,141,0,22,0.367,73.52,87.86,0.9500000000000001,0.13,792,1.4000000000000001,198,0.6000000000000001
+2023,6,17,5,30,10.100000000000001,1.46,0.095,0.62,37,391,85,0,0,4.6000000000000005,37,391,0,85,0.365,68.76,82.92,0.9400000000000001,0.13,792,1.4000000000000001,204,0.7000000000000001
+2023,6,17,6,0,11.100000000000001,1.48,0.092,0.62,52,556,170,0,0,4.2,52,556,0,170,0.363,62.38,77.7,0.9400000000000001,0.13,792,1.4000000000000001,209,0.8
+2023,6,17,6,30,12.4,1.48,0.092,0.62,62,668,265,0,0,4.2,62,668,0,265,0.359,57.27,72.31,0.9400000000000001,0.13,792,1.3,216,1
+2023,6,17,7,0,13.8,1.5,0.08600000000000001,0.62,70,748,365,0,0,3.4000000000000004,70,748,0,365,0.355,49.64,66.79,0.9400000000000001,0.13,791,1.3,222,1.2000000000000002
+2023,6,17,7,30,14.8,1.5,0.08600000000000001,0.62,76,806,465,0,0,3.5,76,806,0,465,0.35000000000000003,46.54,61.17,0.9400000000000001,0.13,791,1.3,231,1.4000000000000001
+2023,6,17,8,0,15.8,1.51,0.082,0.62,81,851,563,0,0,2.9000000000000004,81,851,0,563,0.34500000000000003,42.08,55.5,0.93,0.13,791,1.3,240,1.6
+2023,6,17,8,30,16.6,1.51,0.082,0.62,85,885,656,0,0,2.9000000000000004,85,885,0,656,0.34,39.99,49.81,0.93,0.13,791,1.3,249,1.7000000000000002
+2023,6,17,9,0,17.400000000000002,1.52,0.078,0.62,88,913,743,0,0,2.5,107,815,0,692,0.336,36.94,44.13,0.93,0.13,791,1.3,259,1.9000000000000001
+2023,6,17,9,30,18.1,1.52,0.078,0.62,90,935,821,0,0,2.5,232,586,0,690,0.333,35.35,38.53,0.93,0.13,791,1.2000000000000002,264,2.1
+2023,6,17,10,0,18.8,1.52,0.07,0.62,91,954,890,0,3,1.8,317,304,0,572,0.33,32.21,33.09,0.93,0.13,791,1.2000000000000002,270,2.3000000000000003
+2023,6,17,10,30,19.400000000000002,1.52,0.07,0.62,92,967,946,0,8,1.8,214,88,0,292,0.328,31.03,27.94,0.93,0.13,791,1.2000000000000002,270,2.5
+2023,6,17,11,0,20,1.48,0.069,0.62,94,975,989,0,8,1,217,64,4,276,0.326,28.17,23.31,0.93,0.13,791,1.2000000000000002,271,2.6
+2023,6,17,11,30,20.6,1.48,0.069,0.62,93,982,1018,0,5,1,302,67,0,365,0.325,27.12,19.6,0.93,0.13,790,1.1,269,2.7
+2023,6,17,12,0,21.200000000000003,1.49,0.065,0.62,92,987,1034,0,3,0.1,431,300,0,717,0.323,24.490000000000002,17.44,0.93,0.13,790,1.1,267,2.8000000000000003
+2023,6,17,12,30,21.700000000000003,1.49,0.065,0.62,91,988,1034,0,5,0.1,395,194,0,580,0.323,23.75,17.43,0.93,0.13,790,1.1,263,2.9000000000000004
+2023,6,17,13,0,22.1,1.54,0.062,0.62,90,987,1020,0,5,-0.8,294,345,0,619,0.322,21.740000000000002,19.57,0.93,0.13,790,1.1,259,3
+2023,6,17,13,30,22.5,1.54,0.062,0.62,90,981,991,0,0,-0.8,119,918,0,962,0.321,21.19,23.26,0.93,0.13,789,1.1,256,3.1
+2023,6,17,14,0,22.8,1.54,0.066,0.62,89,972,948,0,3,-1.6,359,424,0,734,0.321,19.66,27.88,0.93,0.13,789,1.1,253,3.2
+2023,6,17,14,30,22.8,1.54,0.066,0.62,88,960,893,0,8,-1.6,289,504,0,712,0.321,19.66,33.03,0.93,0.13,789,1.2000000000000002,250,3.3000000000000003
+2023,6,17,15,0,22.8,1.57,0.069,0.62,87,943,825,2,8,-2,311,336,29,574,0.321,19.03,38.47,0.93,0.13,789,1.2000000000000002,247,3.4000000000000004
+2023,6,17,15,30,22.5,1.57,0.069,0.62,83,924,747,0,3,-2,339,216,0,494,0.321,19.35,44.07,0.93,0.13,788,1.2000000000000002,246,3.5
+2023,6,17,16,0,22.1,1.62,0.068,0.62,79,900,661,0,3,-2,306,345,0,529,0.321,19.92,49.74,0.93,0.13,788,1.3,245,3.5
+2023,6,17,16,30,21.700000000000003,1.62,0.068,0.62,75,869,568,0,3,-2,222,508,7,510,0.321,20.41,55.44,0.93,0.13,788,1.3,245,3.5
+2023,6,17,17,0,21.3,1.6600000000000001,0.069,0.62,69,829,470,0,0,-1.4000000000000001,103,741,0,461,0.322,21.84,61.11,0.93,0.13,788,1.3,245,3.4000000000000004
+2023,6,17,17,30,20.6,1.6600000000000001,0.069,0.62,63,776,370,0,7,-1.4000000000000001,161,276,0,270,0.322,22.8,66.72,0.93,0.13,788,1.3,246,3
+2023,6,17,18,0,19.900000000000002,1.68,0.068,0.62,56,703,270,0,8,0.6000000000000001,108,169,0,160,0.322,27.55,72.24,0.93,0.13,789,1.4000000000000001,246,2.5
+2023,6,17,18,30,18.1,1.68,0.068,0.62,46,601,175,0,3,0.6000000000000001,90,229,14,139,0.321,30.810000000000002,77.64,0.93,0.13,789,1.4000000000000001,246,1.8
+2023,6,17,19,0,16.3,1.71,0.067,0.62,34,446,89,0,0,5.2,37,405,0,87,0.32,47.78,82.86,0.93,0.13,789,1.4000000000000001,246,1.1
+2023,6,17,19,30,15.5,1.71,0.067,0.62,16,182,23,0,0,5.2,16,182,4,23,0.319,50.27,87.8,0.93,0.13,789,1.4000000000000001,249,1.1
+2023,6,17,20,0,14.700000000000001,1.7,0.062,0.62,0,0,0,0,0,4.9,0,0,0,0,0.318,51.74,92.85000000000001,0.93,0.13,789,1.5,251,1.1
+2023,6,17,20,30,14.3,1.7,0.062,0.62,0,0,0,0,0,4.9,0,0,0,0,0.317,53.09,97.4,0.92,0.13,789,1.5,255,1.2000000000000002
+2023,6,17,21,0,13.8,1.67,0.055,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.317,53.96,101.61,0.92,0.13,790,1.5,259,1.2000000000000002
+2023,6,17,21,30,13.4,1.67,0.055,0.62,0,0,0,0,3,4.6000000000000005,0,0,0,0,0.317,55.370000000000005,105.41,0.92,0.13,790,1.5,262,1.2000000000000002
+2023,6,17,22,0,13,1.61,0.049,0.62,0,0,0,0,3,4.4,0,0,0,0,0.318,56.03,108.75,0.91,0.13,789,1.5,265,1.2000000000000002
+2023,6,17,22,30,12.700000000000001,1.61,0.049,0.62,0,0,0,0,0,4.4,0,0,0,0,0.318,57.14,111.54,0.91,0.13,789,1.5,265,1.2000000000000002
+2023,6,17,23,0,12.4,1.55,0.043000000000000003,0.62,0,0,0,0,0,4,0,0,0,0,0.318,56.65,113.71000000000001,0.91,0.13,789,1.5,264,1.2000000000000002
+2023,6,17,23,30,12.100000000000001,1.55,0.043000000000000003,0.62,0,0,0,0,0,4,0,0,0,0,0.317,57.78,115.2,0.9,0.13,789,1.5,258,1.2000000000000002
+2023,6,18,0,0,11.9,1.51,0.04,0.62,0,0,0,0,0,3.7,0,0,0,0,0.316,57.11,115.96000000000001,0.9,0.13,789,1.5,251,1.2000000000000002
+2023,6,18,0,30,11.5,1.51,0.04,0.62,0,0,0,0,0,3.7,0,0,0,0,0.315,58.64,115.97,0.91,0.13,789,1.5,240,1.2000000000000002
+2023,6,18,1,0,11.200000000000001,1.46,0.041,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.314,58.67,115.22,0.91,0.13,788,1.5,229,1.2000000000000002
+2023,6,18,1,30,10.700000000000001,1.46,0.041,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.313,60.64,113.74000000000001,0.91,0.13,788,1.5,219,1.2000000000000002
+2023,6,18,2,0,10.3,1.41,0.049,0.62,0,0,0,0,0,3.2,0,0,0,0,0.312,61.480000000000004,111.58,0.92,0.13,788,1.5,208,1.3
+2023,6,18,2,30,9.9,1.41,0.049,0.62,0,0,0,0,0,3.2,0,0,0,0,0.312,63.14,108.8,0.93,0.13,788,1.5,201,1.3
+2023,6,18,3,0,9.600000000000001,1.33,0.06,0.62,0,0,0,0,0,3.1,0,0,0,0,0.312,63.95,105.48,0.93,0.13,788,1.5,194,1.4000000000000001
+2023,6,18,3,30,9.3,1.33,0.06,0.62,0,0,0,0,0,3.1,0,0,0,0,0.312,65.16,101.68,0.9400000000000001,0.13,787,1.6,192,1.5
+2023,6,18,4,0,9.1,1.27,0.065,0.62,0,0,0,0,5,2.6,0,0,0,0,0.311,63.82,97.48,0.9400000000000001,0.13,787,1.6,189,1.7000000000000002
+2023,6,18,4,30,10,1.27,0.065,0.62,0,0,0,0,5,2.6,0,0,0,0,0.311,60.08,92.93,0.9400000000000001,0.13,787,1.6,188,2.3000000000000003
+2023,6,18,5,0,10.8,1.23,0.064,0.62,16,166,22,6,5,2.2,13,21,79,14,0.31,55.15,87.88,0.9400000000000001,0.13,787,1.6,188,2.8000000000000003
+2023,6,18,5,30,12.4,1.23,0.064,0.62,35,433,88,4,3,2.2,50,124,54,65,0.311,49.63,82.95,0.9400000000000001,0.13,787,1.5,190,3.6
+2023,6,18,6,0,14,1.21,0.063,0.62,47,595,173,0,0,1.5,64,382,0,145,0.311,42.75,77.73,0.9400000000000001,0.13,787,1.5,192,4.4
+2023,6,18,6,30,16.1,1.21,0.063,0.62,55,698,267,0,3,1.5,131,242,0,204,0.311,37.36,72.34,0.9400000000000001,0.13,787,1.6,198,5
+2023,6,18,7,0,18.1,1.2,0.065,0.62,64,768,366,0,5,1.5,158,30,0,170,0.31,32.89,66.81,0.9400000000000001,0.13,787,1.6,205,5.5
+2023,6,18,7,30,19.700000000000003,1.2,0.065,0.62,70,819,465,0,8,1.5,214,141,0,282,0.309,29.77,61.2,0.9400000000000001,0.13,787,1.6,212,6.4
+2023,6,18,8,0,21.200000000000003,1.18,0.069,0.62,77,854,560,0,5,2.7,267,127,0,339,0.308,29.44,55.53,0.9400000000000001,0.13,787,1.6,219,7.2
+2023,6,18,8,30,22.1,1.18,0.069,0.62,82,882,651,0,5,2.7,313,175,0,426,0.308,27.84,49.84,0.9400000000000001,0.13,786,1.7000000000000002,220,7.4
+2023,6,18,9,0,23,1.17,0.074,0.62,86,904,735,0,3,3.6,303,420,0,604,0.307,28.27,44.160000000000004,0.9400000000000001,0.13,786,1.7000000000000002,221,7.7
+2023,6,18,9,30,23.700000000000003,1.17,0.074,0.62,90,922,811,0,8,3.6,241,615,0,722,0.306,27.1,38.56,0.9400000000000001,0.13,786,1.7000000000000002,221,7.9
+2023,6,18,10,0,24.400000000000002,1.17,0.075,0.62,93,936,877,0,8,3.9000000000000004,225,667,0,784,0.305,26.44,33.12,0.9400000000000001,0.13,786,1.7000000000000002,220,8.1
+2023,6,18,10,30,25,1.17,0.075,0.62,89,957,934,0,0,3.9000000000000004,149,845,0,895,0.304,25.51,27.96,0.9400000000000001,0.13,786,1.7000000000000002,219,8.3
+2023,6,18,11,0,25.6,1.57,0.045,0.62,80,979,979,0,0,3.8000000000000003,198,761,0,897,0.303,24.44,23.32,0.93,0.13,785,1.7000000000000002,217,8.5
+2023,6,18,11,30,26,1.57,0.045,0.62,79,986,1008,0,3,3.8000000000000003,314,279,0,577,0.302,23.87,19.6,0.93,0.13,785,1.7000000000000002,216,8.700000000000001
+2023,6,18,12,0,26.400000000000002,1.6,0.039,0.62,77,992,1023,0,4,3.4000000000000004,305,162,0,460,0.301,22.71,17.43,0.93,0.13,785,1.7000000000000002,214,8.9
+2023,6,18,12,30,26.6,1.6,0.039,0.62,76,993,1024,0,5,3.4000000000000004,230,9,0,239,0.3,22.42,17.400000000000002,0.93,0.13,784,1.7000000000000002,214,9
+2023,6,18,13,0,26.8,1.59,0.036000000000000004,0.62,75,993,1011,0,5,2.9000000000000004,288,94,0,377,0.298,21.35,19.52,0.93,0.13,784,1.6,213,9.200000000000001
+2023,6,18,13,30,26.8,1.59,0.036000000000000004,0.62,77,986,983,0,5,2.9000000000000004,307,128,0,425,0.298,21.35,23.21,0.93,0.13,784,1.6,213,9.200000000000001
+2023,6,18,14,0,26.900000000000002,1.31,0.044,0.62,78,976,941,0,5,2.4000000000000004,329,72,0,393,0.297,20.52,27.830000000000002,0.9400000000000001,0.13,783,1.6,213,9.3
+2023,6,18,14,30,26.8,1.31,0.044,0.62,77,967,888,0,3,2.4000000000000004,386,160,0,520,0.297,20.64,32.980000000000004,0.9400000000000001,0.13,783,1.6,213,9.200000000000001
+2023,6,18,15,0,26.700000000000003,1.36,0.042,0.62,73,956,822,0,7,2,301,148,0,417,0.296,20.240000000000002,38.42,0.9400000000000001,0.13,783,1.6,214,9.1
+2023,6,18,15,30,26.400000000000002,1.36,0.042,0.62,71,938,746,0,7,2,269,354,0,524,0.296,20.6,44.01,0.9500000000000001,0.13,783,1.6,214,8.8
+2023,6,18,16,0,26.1,1.42,0.043000000000000003,0.62,68,916,661,0,7,1.9000000000000001,209,545,0,562,0.295,20.68,49.69,0.9500000000000001,0.13,783,1.6,214,8.6
+2023,6,18,16,30,25.700000000000003,1.42,0.043000000000000003,0.62,66,886,569,0,0,1.8,160,627,7,516,0.295,21.17,55.38,0.9500000000000001,0.13,783,1.6,213,8.3
+2023,6,18,17,0,25.200000000000003,1.45,0.048,0.62,62,846,472,0,3,1.6,173,548,0,438,0.295,21.46,61.050000000000004,0.9500000000000001,0.13,783,1.6,212,7.9
+2023,6,18,17,30,24.5,1.45,0.048,0.62,58,793,372,0,7,1.6,155,444,4,331,0.295,22.37,66.67,0.9500000000000001,0.13,783,1.6,211,7.300000000000001
+2023,6,18,18,0,23.8,1.47,0.054,0.62,52,719,272,0,7,1.5,122,373,7,236,0.296,23.18,72.19,0.96,0.13,783,1.6,210,6.6000000000000005
+2023,6,18,18,30,22.400000000000002,1.47,0.054,0.62,45,614,177,0,7,1.5,97,295,0,160,0.296,25.22,77.59,0.96,0.13,783,1.6,207,5.7
+2023,6,18,19,0,21,1.48,0.059000000000000004,0.62,33,453,90,5,7,2,63,80,71,73,0.296,28.42,82.81,0.96,0.13,783,1.6,205,4.9
+2023,6,18,19,30,20.1,1.48,0.059000000000000004,0.62,17,182,24,6,7,2,17,4,86,17,0.296,30.03,87.76,0.96,0.13,783,1.7000000000000002,204,4.6000000000000005
+2023,6,18,20,0,19.1,1.47,0.066,0.62,0,0,0,0,7,2.5,0,0,0,0,0.296,33.1,92.8,0.96,0.13,783,1.7000000000000002,203,4.4
+2023,6,18,20,30,18.8,1.47,0.066,0.62,0,0,0,0,8,2.5,0,0,0,0,0.296,33.72,97.35000000000001,0.96,0.13,783,1.7000000000000002,204,4.3
+2023,6,18,21,0,18.400000000000002,1.43,0.07200000000000001,0.62,0,0,0,0,7,3.1,0,0,0,0,0.295,36.15,101.56,0.96,0.13,784,1.7000000000000002,206,4.2
+2023,6,18,21,30,18,1.43,0.07200000000000001,0.62,0,0,0,0,8,3.1,0,0,0,0,0.295,37.06,105.37,0.96,0.13,784,1.7000000000000002,208,4.1000000000000005
+2023,6,18,22,0,17.7,1.36,0.07200000000000001,0.62,0,0,0,0,8,3.9000000000000004,0,0,0,0,0.296,39.82,108.71000000000001,0.96,0.13,783,1.7000000000000002,211,3.9000000000000004
+2023,6,18,22,30,17.3,1.36,0.07200000000000001,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.296,40.89,111.5,0.9500000000000001,0.13,784,1.7000000000000002,215,4
+2023,6,18,23,0,16.900000000000002,1.25,0.069,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,43.51,113.68,0.9500000000000001,0.13,784,1.7000000000000002,219,4
+2023,6,18,23,30,16.400000000000002,1.25,0.069,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,44.910000000000004,115.17,0.9400000000000001,0.13,784,1.6,221,3.9000000000000004
+2023,6,19,0,0,15.9,1.16,0.067,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.296,46.86,115.94,0.9400000000000001,0.13,784,1.6,224,3.9000000000000004
+2023,6,19,0,30,15.4,1.16,0.067,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.295,48.38,115.95,0.93,0.13,784,1.5,223,3.8000000000000003
+2023,6,19,1,0,14.8,1.1,0.067,0.62,0,0,0,0,0,4.4,0,0,0,0,0.295,49.6,115.21000000000001,0.93,0.13,784,1.5,222,3.7
+2023,6,19,1,30,14.3,1.1,0.067,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,51.22,113.73,0.93,0.13,784,1.5,221,3.6
+2023,6,19,2,0,13.8,1.07,0.067,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.296,51.33,111.58,0.93,0.13,784,1.4000000000000001,219,3.5
+2023,6,19,2,30,13.3,1.07,0.067,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.297,53.02,108.81,0.93,0.13,784,1.4000000000000001,217,3.4000000000000004
+2023,6,19,3,0,12.700000000000001,1.04,0.067,0.62,0,0,0,0,0,3.5,0,0,0,0,0.298,53.69,105.49000000000001,0.92,0.13,785,1.3,215,3.3000000000000003
+2023,6,19,3,30,12.200000000000001,1.04,0.067,0.62,0,0,0,0,0,3.5,0,0,0,0,0.299,55.480000000000004,101.69,0.92,0.13,785,1.3,213,3.1
+2023,6,19,4,0,11.700000000000001,1.02,0.066,0.62,0,0,0,0,0,3.2,0,0,0,0,0.3,56.08,97.49000000000001,0.92,0.13,785,1.3,210,3
+2023,6,19,4,30,12.100000000000001,1.02,0.066,0.62,0,0,0,0,0,3.2,0,0,0,0,0.3,54.620000000000005,92.95,0.92,0.13,785,1.2000000000000002,207,3.2
+2023,6,19,5,0,12.5,1,0.063,0.62,16,162,22,0,0,2.9000000000000004,16,162,0,22,0.301,51.82,87.91,0.92,0.13,785,1.2000000000000002,204,3.4000000000000004
+2023,6,19,5,30,13.700000000000001,1,0.063,0.62,34,438,88,0,0,2.9000000000000004,34,438,0,88,0.302,47.99,82.97,0.92,0.13,786,1.2000000000000002,201,3.8000000000000003
+2023,6,19,6,0,15,0.98,0.06,0.62,46,607,175,0,0,2.1,46,607,0,175,0.303,41.76,77.76,0.92,0.13,786,1.1,198,4.2
+2023,6,19,6,30,16.900000000000002,0.98,0.06,0.62,55,716,272,0,0,2.1,55,716,0,272,0.304,37.01,72.37,0.92,0.13,786,1.1,202,5.1000000000000005
+2023,6,19,7,0,18.7,0.96,0.058,0.62,62,792,373,0,0,-0.1,62,792,0,373,0.305,28.28,66.85,0.92,0.13,786,1.1,205,5.9
+2023,6,19,7,30,20.200000000000003,0.96,0.058,0.62,67,845,474,0,0,0,67,845,0,474,0.305,25.77,61.230000000000004,0.92,0.13,786,1.1,208,6.9
+2023,6,19,8,0,21.6,0.93,0.057,0.62,71,885,572,0,0,-2.6,71,885,0,572,0.306,19.55,55.56,0.92,0.13,786,1.1,210,8
+2023,6,19,8,30,22.400000000000002,0.93,0.057,0.62,76,915,666,0,0,-2.6,76,915,0,666,0.307,18.62,49.870000000000005,0.92,0.13,786,1.1,208,8.3
+2023,6,19,9,0,23.1,0.9400000000000001,0.056,0.62,79,939,752,0,0,-3.6,79,939,0,752,0.307,16.67,44.19,0.91,0.13,786,1,206,8.700000000000001
+2023,6,19,9,30,23.8,0.9400000000000001,0.056,0.62,81,958,830,0,0,-3.6,81,958,0,830,0.307,15.98,38.59,0.91,0.13,786,1,204,8.8
+2023,6,19,10,0,24.5,1,0.055,0.62,83,973,898,0,0,-4.3,83,973,0,898,0.307,14.540000000000001,33.15,0.91,0.13,786,1,202,9
+2023,6,19,10,30,25.1,1,0.055,0.62,82,989,955,0,0,-4.3,82,989,0,955,0.307,14.030000000000001,27.990000000000002,0.91,0.13,786,1,202,9.1
+2023,6,19,11,0,25.6,1.4000000000000001,0.041,0.62,77,1005,1000,0,0,-4.800000000000001,77,1005,0,1000,0.307,13.120000000000001,23.34,0.91,0.13,786,1,201,9.3
+2023,6,19,11,30,26.1,1.4000000000000001,0.041,0.62,78,1011,1030,0,0,-4.7,78,1011,0,1030,0.307,12.74,19.61,0.9,0.13,786,0.9,201,9.4
+2023,6,19,12,0,26.6,1.48,0.039,0.62,78,1015,1046,0,0,-5,78,1015,0,1046,0.307,12.17,17.42,0.9,0.13,785,0.9,202,9.5
+2023,6,19,12,30,26.900000000000002,1.48,0.039,0.62,77,1016,1047,0,0,-5,77,1016,0,1047,0.307,11.96,17.38,0.9,0.13,785,0.9,202,9.600000000000001
+2023,6,19,13,0,27.200000000000003,1.45,0.038,0.62,76,1015,1033,0,0,-4.9,76,1015,0,1033,0.307,11.77,19.490000000000002,0.9,0.13,785,0.9,203,9.700000000000001
+2023,6,19,13,30,27.3,1.45,0.038,0.62,75,1012,1005,0,0,-4.9,75,1012,0,1005,0.307,11.700000000000001,23.17,0.9,0.13,785,0.9,204,9.600000000000001
+2023,6,19,14,0,27.5,1.52,0.033,0.62,71,1008,963,0,0,-4.800000000000001,71,1008,0,963,0.307,11.700000000000001,27.79,0.9,0.13,785,0.9,205,9.600000000000001
+2023,6,19,14,30,27.5,1.52,0.033,0.62,70,998,908,0,0,-4.800000000000001,70,998,0,908,0.307,11.69,32.93,0.9,0.13,784,0.9,205,9.4
+2023,6,19,15,0,27.5,1.41,0.034,0.62,68,986,841,0,0,-4.5,68,986,0,841,0.307,11.91,38.37,0.9,0.13,784,0.9,206,9.3
+2023,6,19,15,30,27.3,1.41,0.034,0.62,66,969,764,0,0,-4.5,66,969,0,764,0.306,12.05,43.96,0.91,0.13,784,0.9,206,9.1
+2023,6,19,16,0,27,1.29,0.036000000000000004,0.62,65,947,678,0,0,-4.3,65,947,0,678,0.305,12.48,49.64,0.91,0.13,784,0.9,206,9
+2023,6,19,16,30,26.5,1.29,0.036000000000000004,0.62,62,918,584,0,0,-4.3,62,918,0,584,0.305,12.86,55.33,0.91,0.13,784,0.9,206,8.700000000000001
+2023,6,19,17,0,26,1.22,0.038,0.62,59,879,485,0,0,-4.1000000000000005,59,879,0,485,0.305,13.49,61,0.91,0.13,784,1,205,8.5
+2023,6,19,17,30,25.200000000000003,1.22,0.038,0.62,54,830,383,0,0,-4.1000000000000005,54,830,0,383,0.305,14.14,66.62,0.91,0.13,784,1,205,8
+2023,6,19,18,0,24.3,1.17,0.039,0.62,48,760,281,0,0,-3.6,48,760,0,281,0.305,15.49,72.14,0.91,0.13,784,1,204,7.4
+2023,6,19,18,30,22.900000000000002,1.17,0.039,0.62,41,662,184,0,0,-3.6,41,662,0,184,0.304,16.85,77.54,0.91,0.13,784,1,203,6.6000000000000005
+2023,6,19,19,0,21.400000000000002,1.12,0.039,0.62,31,506,95,0,0,-2.7,31,506,0,95,0.303,19.7,82.77,0.91,0.13,785,1.1,202,5.800000000000001
+2023,6,19,19,30,20.3,1.12,0.039,0.62,16,219,25,0,0,-2.7,17,208,4,25,0.302,21.080000000000002,87.72,0.91,0.13,785,1.1,201,5.6000000000000005
+2023,6,19,20,0,19.200000000000003,1.1,0.038,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.301,23.52,92.76,0.92,0.13,785,1.1,201,5.4
+2023,6,19,20,30,18.7,1.1,0.038,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.299,24.29,97.31,0.92,0.13,786,1.1,202,5.4
+2023,6,19,21,0,18.2,1.11,0.039,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.297,25.87,101.52,0.92,0.13,786,1.2000000000000002,203,5.5
+2023,6,19,21,30,17.6,1.11,0.039,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.296,26.86,105.33,0.92,0.13,786,1.2000000000000002,206,5.2
+2023,6,19,22,0,17,1.1300000000000001,0.042,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.295,29.740000000000002,108.67,0.92,0.13,787,1.2000000000000002,209,5
+2023,6,19,22,30,16.400000000000002,1.1300000000000001,0.042,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.294,30.89,111.47,0.92,0.13,787,1.2000000000000002,212,4.6000000000000005
+2023,6,19,23,0,15.700000000000001,1.16,0.048,0.62,0,0,0,0,0,0.4,0,0,0,0,0.293,35.42,113.65,0.92,0.13,787,1.3,216,4.3
+2023,6,19,23,30,15.200000000000001,1.16,0.048,0.62,0,0,0,0,0,0.4,0,0,0,0,0.291,36.57,115.15,0.92,0.13,787,1.3,220,4
+2023,6,20,0,0,14.600000000000001,1.17,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.289,41.81,115.93,0.93,0.13,788,1.3,225,3.7
+2023,6,20,0,30,13.9,1.17,0.053,0.62,0,0,0,0,8,1.8,0,0,0,0,0.28800000000000003,43.74,115.94,0.93,0.13,788,1.4000000000000001,228,3.1
+2023,6,20,1,0,13.200000000000001,1.1500000000000001,0.055,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28700000000000003,49.4,115.21000000000001,0.93,0.13,788,1.4000000000000001,232,2.6
+2023,6,20,1,30,12.600000000000001,1.1500000000000001,0.055,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28700000000000003,51.370000000000005,113.74000000000001,0.93,0.13,788,1.4000000000000001,234,2.4000000000000004
+2023,6,20,2,0,12.100000000000001,1.1300000000000001,0.057,0.62,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.28700000000000003,54.96,111.59,0.93,0.13,788,1.5,236,2.1
+2023,6,20,2,30,11.8,1.1300000000000001,0.057,0.62,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.28800000000000003,56.06,108.82000000000001,0.93,0.13,788,1.5,235,2
+2023,6,20,3,0,11.4,1.1300000000000001,0.061,0.62,0,0,0,0,7,3.5,0,0,0,0,0.289,58.480000000000004,105.5,0.93,0.13,788,1.5,234,1.8
+2023,6,20,3,30,11.100000000000001,1.1300000000000001,0.061,0.62,0,0,0,0,7,3.5,0,0,0,0,0.291,59.65,101.71000000000001,0.93,0.13,788,1.5,231,1.7000000000000002
+2023,6,20,4,0,10.8,1.12,0.066,0.62,0,0,0,0,7,3.6,0,0,0,0,0.293,61.26,97.52,0.93,0.13,789,1.5,227,1.6
+2023,6,20,4,30,11.600000000000001,1.12,0.066,0.62,0,0,0,0,7,3.6,0,0,0,0,0.295,58.11,92.98,0.93,0.13,789,1.5,222,1.8
+2023,6,20,5,0,12.5,1.11,0.069,0.62,16,153,22,6,7,4,11,0,86,11,0.298,56.230000000000004,87.93,0.93,0.13,789,1.5,216,2
+2023,6,20,5,30,14.200000000000001,1.11,0.069,0.62,35,416,86,4,7,4,45,24,57,48,0.302,50.35,83,0.93,0.13,789,1.5,212,2.8000000000000003
+2023,6,20,6,0,15.9,1.08,0.07,0.62,48,581,171,0,7,3.5,87,228,14,135,0.306,43.56,77.79,0.93,0.13,789,1.4000000000000001,209,3.6
+2023,6,20,6,30,17.7,1.08,0.07,0.62,58,691,267,0,0,3.5,68,634,7,260,0.309,38.88,72.4,0.93,0.13,789,1.3,208,4.4
+2023,6,20,7,0,19.5,1.03,0.068,0.62,65,769,367,0,0,2.7,65,769,0,367,0.311,32.89,66.88,0.93,0.13,789,1.3,208,5.2
+2023,6,20,7,30,20.6,1.03,0.068,0.62,71,826,468,0,0,2.8000000000000003,71,826,0,468,0.31,30.73,61.27,0.93,0.13,789,1.3,208,5.800000000000001
+2023,6,20,8,0,21.6,0.99,0.064,0.62,74,870,566,0,0,1.5,74,870,0,566,0.308,26.37,55.6,0.92,0.13,789,1.2000000000000002,208,6.4
+2023,6,20,8,30,22.3,0.99,0.064,0.62,78,903,660,0,0,1.5,78,903,0,660,0.303,25.27,49.9,0.92,0.13,789,1.2000000000000002,207,6.6000000000000005
+2023,6,20,9,0,23,0.97,0.059000000000000004,0.62,81,930,747,0,0,0.4,81,930,14,747,0.298,22.45,44.230000000000004,0.92,0.13,789,1.2000000000000002,206,6.800000000000001
+2023,6,20,9,30,23.700000000000003,0.97,0.059000000000000004,0.62,83,949,824,0,0,0.4,83,949,29,824,0.295,21.53,38.63,0.92,0.13,789,1.2000000000000002,205,7
+2023,6,20,10,0,24.3,0.98,0.054,0.62,84,964,891,0,0,-0.5,84,964,0,891,0.292,19.490000000000002,33.18,0.92,0.13,789,1.3,205,7.2
+2023,6,20,10,30,24.8,0.98,0.054,0.62,81,982,948,0,0,-0.5,81,982,0,948,0.292,18.92,28.02,0.92,0.13,789,1.3,205,7.4
+2023,6,20,11,0,25.400000000000002,1.04,0.035,0.62,75,999,992,0,0,-0.9,243,664,0,853,0.291,17.61,23.36,0.91,0.13,789,1.2000000000000002,206,7.6000000000000005
+2023,6,20,11,30,25.8,1.04,0.035,0.62,75,1005,1022,0,3,-0.9,475,203,0,666,0.291,17.2,19.63,0.91,0.13,789,1.2000000000000002,207,7.7
+2023,6,20,12,0,26.200000000000003,1.11,0.034,0.62,76,1008,1038,0,8,-1.1,403,288,0,678,0.291,16.55,17.42,0.91,0.13,789,1.2000000000000002,208,7.800000000000001
+2023,6,20,12,30,26.5,1.11,0.034,0.62,76,1009,1039,0,8,-1.1,409,376,14,768,0.292,16.26,17.36,0.91,0.13,789,1.2000000000000002,209,7.9
+2023,6,20,13,0,26.8,1.1400000000000001,0.034,0.62,76,1008,1026,0,5,-1.2000000000000002,475,239,0,700,0.292,15.89,19.46,0.9,0.13,788,1.1,210,8
+2023,6,20,13,30,26.900000000000002,1.1400000000000001,0.034,0.62,74,1005,998,0,3,-1.2000000000000002,375,411,0,753,0.292,15.790000000000001,23.13,0.9,0.13,788,1.1,210,8
+2023,6,20,14,0,27,1.12,0.033,0.62,73,999,957,0,0,-1.2000000000000002,142,847,0,892,0.292,15.74,27.740000000000002,0.9,0.13,788,1.1,211,8
+2023,6,20,14,30,26.900000000000002,1.12,0.033,0.62,72,989,902,0,0,-1.2000000000000002,139,854,0,856,0.291,15.83,32.89,0.91,0.13,788,1.1,211,7.800000000000001
+2023,6,20,15,0,26.8,1.02,0.035,0.62,71,975,836,0,0,-1.1,93,927,0,820,0.291,16.080000000000002,38.32,0.91,0.13,788,1.1,211,7.7
+2023,6,20,15,30,26.5,1.02,0.035,0.62,69,957,758,0,0,-1.1,143,762,0,692,0.291,16.36,43.92,0.91,0.13,788,1.1,211,7.5
+2023,6,20,16,0,26.200000000000003,0.91,0.037,0.62,67,934,672,0,0,-0.8,125,743,14,607,0.29,16.94,49.59,0.91,0.13,788,1.2000000000000002,210,7.300000000000001
+2023,6,20,16,30,25.700000000000003,0.91,0.037,0.62,63,904,578,0,3,-0.8,202,477,0,474,0.29,17.45,55.29,0.92,0.13,788,1.2000000000000002,210,7
+2023,6,20,17,0,25.200000000000003,0.87,0.038,0.62,60,866,480,0,3,-0.4,167,330,0,327,0.29,18.51,60.96,0.92,0.13,788,1.2000000000000002,210,6.7
+2023,6,20,17,30,24.400000000000002,0.87,0.038,0.62,54,817,379,0,0,-0.4,101,628,0,351,0.29,19.44,66.57000000000001,0.92,0.13,789,1.3,210,6
+2023,6,20,18,0,23.5,0.85,0.037,0.62,49,749,279,0,3,0.5,121,321,11,220,0.29,21.91,72.10000000000001,0.92,0.13,789,1.3,210,5.300000000000001
+2023,6,20,18,30,21.5,0.85,0.037,0.62,41,653,182,1,0,0.5,66,473,14,168,0.291,24.73,77.5,0.92,0.13,789,1.3,210,3.8000000000000003
+2023,6,20,19,0,19.400000000000002,0.87,0.035,0.62,31,502,95,1,0,2.9000000000000004,35,453,11,92,0.291,33.44,82.72,0.92,0.13,789,1.3,210,2.3000000000000003
+2023,6,20,19,30,18.1,0.87,0.035,0.62,16,216,25,2,0,2.9000000000000004,15,162,25,22,0.292,36.31,87.68,0.92,0.13,790,1.3,212,1.9000000000000001
+2023,6,20,20,0,16.900000000000002,0.91,0.035,0.62,0,0,0,0,3,4.1000000000000005,0,0,4,0,0.293,42.72,92.72,0.93,0.13,790,1.4000000000000001,214,1.5
+2023,6,20,20,30,16.400000000000002,0.91,0.035,0.62,0,0,0,0,5,4.1000000000000005,0,0,0,0,0.293,44.09,97.27,0.93,0.13,790,1.4000000000000001,215,1.3
+2023,6,20,21,0,15.8,0.9400000000000001,0.035,0.62,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.294,47.2,101.49000000000001,0.93,0.13,790,1.4000000000000001,216,1.1
+2023,6,20,21,30,15.5,0.9400000000000001,0.035,0.62,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.295,48.120000000000005,105.3,0.92,0.13,790,1.4000000000000001,220,1
+2023,6,20,22,0,15.100000000000001,0.96,0.036000000000000004,0.62,0,0,0,0,3,4.6000000000000005,0,0,0,0,0.295,49.52,108.64,0.92,0.13,790,1.4000000000000001,223,0.9
+2023,6,20,22,30,14.700000000000001,0.96,0.036000000000000004,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.296,50.870000000000005,111.45,0.92,0.13,791,1.4000000000000001,237,0.9
+2023,6,20,23,0,14.3,0.99,0.036000000000000004,0.62,0,0,0,0,0,4.5,0,0,0,0,0.296,51.58,113.63,0.92,0.13,791,1.4000000000000001,251,0.8
+2023,6,20,23,30,13.700000000000001,0.99,0.036000000000000004,0.62,0,0,0,0,0,4.5,0,0,0,0,0.296,53.620000000000005,115.14,0.92,0.13,791,1.4000000000000001,270,0.8
+2023,6,21,0,0,13.100000000000001,1.04,0.037,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,55.7,115.92,0.92,0.13,791,1.4000000000000001,290,0.8
+2023,6,21,0,30,12.600000000000001,1.04,0.037,0.62,0,0,0,0,0,4.4,0,0,0,0,0.296,57.550000000000004,115.94,0.92,0.13,791,1.4000000000000001,305,0.8
+2023,6,21,1,0,12.100000000000001,1.08,0.039,0.62,0,0,0,0,0,4.3,0,0,0,0,0.296,58.72,115.21000000000001,0.92,0.13,791,1.4000000000000001,321,0.8
+2023,6,21,1,30,11.600000000000001,1.08,0.039,0.62,0,0,0,0,0,4.3,0,0,0,0,0.296,60.68,113.74000000000001,0.92,0.13,791,1.4000000000000001,330,0.7000000000000001
+2023,6,21,2,0,11.100000000000001,1.1400000000000001,0.041,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.297,61.08,111.60000000000001,0.92,0.13,791,1.4000000000000001,339,0.7000000000000001
+2023,6,21,2,30,10.700000000000001,1.1400000000000001,0.041,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.298,62.72,108.84,0.92,0.13,791,1.4000000000000001,347,0.7000000000000001
+2023,6,21,3,0,10.3,1.21,0.044,0.62,0,0,0,0,0,3.5,0,0,0,0,0.298,62.93,105.52,0.92,0.13,791,1.4000000000000001,356,0.6000000000000001
+2023,6,21,3,30,10,1.21,0.044,0.62,0,0,0,0,0,3.5,0,0,0,0,0.299,64.2,101.74000000000001,0.92,0.13,791,1.4000000000000001,184,0.6000000000000001
+2023,6,21,4,0,9.700000000000001,1.28,0.047,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.299,64.48,97.55,0.92,0.13,791,1.4000000000000001,13,0.6000000000000001
+2023,6,21,4,30,10.3,1.28,0.047,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.299,62.03,93.01,0.92,0.13,792,1.3,18,0.7000000000000001
+2023,6,21,5,0,10.9,1.33,0.051000000000000004,0.62,15,188,22,0,0,4,15,188,0,22,0.299,62.52,87.96000000000001,0.92,0.13,792,1.3,24,0.8
+2023,6,21,5,30,12.5,1.33,0.051000000000000004,0.62,32,463,88,0,0,4,32,463,0,88,0.3,56.27,83.04,0.92,0.13,792,1.3,27,1
+2023,6,21,6,0,14,1.36,0.053,0.62,43,620,174,0,0,3.3000000000000003,43,620,0,174,0.301,48.42,77.82000000000001,0.92,0.13,792,1.3,29,1.1
+2023,6,21,6,30,16,1.36,0.053,0.62,52,722,270,0,0,3.3000000000000003,52,722,0,270,0.301,42.59,72.44,0.92,0.13,792,1.3,146,0.8
+2023,6,21,7,0,18,1.37,0.054,0.62,60,792,370,0,0,1.9000000000000001,60,792,0,370,0.302,33.99,66.92,0.92,0.13,792,1.3,263,0.5
+2023,6,21,7,30,19.700000000000003,1.37,0.054,0.62,65,844,470,0,0,1.9000000000000001,65,844,0,470,0.302,30.580000000000002,61.31,0.92,0.13,792,1.3,243,1.5
+2023,6,21,8,0,21.400000000000002,1.36,0.054,0.62,70,882,568,0,0,-0.2,70,882,0,568,0.302,23.68,55.64,0.92,0.13,792,1.3,223,2.4000000000000004
+2023,6,21,8,30,22.3,1.36,0.054,0.62,73,912,660,0,0,-0.2,73,912,0,660,0.302,22.41,49.94,0.92,0.13,792,1.3,217,2.9000000000000004
+2023,6,21,9,0,23.200000000000003,1.35,0.053,0.62,76,935,746,0,0,-0.5,76,935,0,746,0.301,20.69,44.27,0.92,0.13,792,1.3,212,3.4000000000000004
+2023,6,21,9,30,23.900000000000002,1.35,0.053,0.62,79,953,823,0,0,-0.5,79,953,0,823,0.301,19.84,38.67,0.92,0.13,792,1.3,210,3.8000000000000003
+2023,6,21,10,0,24.700000000000003,1.35,0.053,0.62,82,966,890,0,0,-0.6000000000000001,82,966,0,890,0.301,18.86,33.22,0.92,0.13,792,1.3,209,4.2
+2023,6,21,10,30,25.200000000000003,1.35,0.053,0.62,80,981,946,0,0,-0.6000000000000001,80,981,0,946,0.301,18.31,28.05,0.92,0.13,792,1.3,209,4.5
+2023,6,21,11,0,25.8,1.46,0.042,0.62,79,993,990,0,0,-0.7000000000000001,79,993,0,990,0.3,17.52,23.39,0.92,0.13,792,1.3,210,4.800000000000001
+2023,6,21,11,30,26.200000000000003,1.46,0.042,0.62,78,999,1019,0,0,-0.7000000000000001,78,999,0,1019,0.3,17.09,19.650000000000002,0.92,0.13,791,1.3,211,4.9
+2023,6,21,12,0,26.6,1.46,0.04,0.62,78,1002,1034,0,0,-0.9,78,1002,0,1034,0.3,16.44,17.43,0.92,0.13,791,1.3,212,5.1000000000000005
+2023,6,21,12,30,26.900000000000002,1.46,0.04,0.62,78,1003,1035,0,0,-0.9,78,1003,0,1035,0.299,16.16,17.35,0.92,0.13,791,1.3,213,5.2
+2023,6,21,13,0,27.200000000000003,1.46,0.039,0.62,78,1001,1022,0,0,-1.1,78,1001,0,1022,0.299,15.620000000000001,19.43,0.92,0.13,791,1.2000000000000002,214,5.300000000000001
+2023,6,21,13,30,27.3,1.46,0.039,0.62,75,999,994,0,0,-1.1,75,999,0,994,0.298,15.530000000000001,23.1,0.91,0.13,791,1.2000000000000002,216,5.2
+2023,6,21,14,0,27.5,1.53,0.032,0.62,71,996,953,0,0,-1.3,102,938,0,932,0.298,15.11,27.71,0.91,0.13,790,1.2000000000000002,217,5.2
+2023,6,21,14,30,27.400000000000002,1.53,0.032,0.62,69,988,899,0,0,-1.3,138,813,0,821,0.297,15.200000000000001,32.85,0.91,0.13,790,1.2000000000000002,219,5.2
+2023,6,21,15,0,27.3,1.51,0.03,0.62,67,977,834,0,0,-1.6,94,871,0,778,0.297,14.98,38.28,0.91,0.13,790,1.2000000000000002,220,5.1000000000000005
+2023,6,21,15,30,27,1.51,0.03,0.62,65,962,758,0,0,-1.6,128,826,0,723,0.297,15.24,43.88,0.91,0.13,790,1.2000000000000002,222,5
+2023,6,21,16,0,26.700000000000003,1.48,0.029,0.62,61,943,673,0,3,-1.9000000000000001,204,401,0,464,0.297,15.16,49.550000000000004,0.91,0.13,790,1.2000000000000002,225,5
+2023,6,21,16,30,26.1,1.48,0.029,0.62,58,917,581,0,3,-1.9000000000000001,171,549,0,484,0.297,15.700000000000001,55.24,0.92,0.13,790,1.2000000000000002,227,4.800000000000001
+2023,6,21,17,0,25.5,1.42,0.029,0.62,55,883,484,0,3,-2.3000000000000003,80,818,43,478,0.297,15.81,60.92,0.92,0.13,790,1.2000000000000002,229,4.6000000000000005
+2023,6,21,17,30,24.6,1.42,0.029,0.62,51,837,384,0,0,-2.3000000000000003,51,837,11,384,0.297,16.68,66.53,0.92,0.13,790,1.2000000000000002,231,3.9000000000000004
+2023,6,21,18,0,23.6,1.36,0.03,0.62,45,772,283,0,0,-1.2000000000000002,77,640,11,274,0.297,19.22,72.06,0.92,0.13,790,1.2000000000000002,233,3.2
+2023,6,21,18,30,21.6,1.36,0.03,0.62,39,679,186,0,0,-1.2000000000000002,46,613,4,179,0.297,21.69,77.46000000000001,0.92,0.13,790,1.1,237,2.3000000000000003
+2023,6,21,19,0,19.6,1.3,0.031,0.62,29,530,97,0,0,3.2,29,530,0,97,0.297,33.85,82.68,0.92,0.13,791,1.1,242,1.3
+2023,6,21,19,30,18.8,1.3,0.031,0.62,16,241,26,0,0,3.2,16,241,0,26,0.297,35.57,87.64,0.93,0.13,791,1.1,243,1.2000000000000002
+2023,6,21,20,0,18,1.24,0.032,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.297,39.13,92.69,0.93,0.13,791,1.1,245,1.1
+2023,6,21,20,30,18,1.24,0.032,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.297,39.13,97.24000000000001,0.93,0.13,791,1.1,250,1
+2023,6,21,21,0,18,1.2,0.034,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.297,37.88,101.46000000000001,0.93,0.13,791,1.1,256,1
+2023,6,21,21,30,18,1.2,0.034,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.297,37.88,105.28,0.93,0.13,791,1.1,281,0.8
+2023,6,21,22,0,17.900000000000002,1.17,0.037,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,35.7,108.62,0.93,0.13,791,1.1,305,0.6000000000000001
+2023,6,21,22,30,17,1.17,0.037,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,37.78,111.43,0.93,0.13,791,1.1,163,0.7000000000000001
+2023,6,21,23,0,16.2,1.17,0.04,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,39.9,113.62,0.93,0.13,791,1.1,21,0.7000000000000001
+2023,6,21,23,30,15.200000000000001,1.17,0.04,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,42.53,115.13,0.93,0.13,791,1.1,35,0.8
+2023,6,22,0,0,14.3,1.18,0.042,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,44.980000000000004,115.91,0.93,0.13,791,1.1,49,1
+2023,6,22,0,30,13.5,1.18,0.042,0.62,0,0,0,0,0,2.5,0,0,0,0,0.297,47.37,115.94,0.93,0.13,791,1.1,54,1.2000000000000002
+2023,6,22,1,0,12.8,1.21,0.044,0.62,0,0,0,0,0,2.2,0,0,0,0,0.297,48.44,115.22,0.93,0.13,791,1.1,60,1.3
+2023,6,22,1,30,12.200000000000001,1.21,0.044,0.62,0,0,0,0,0,2.2,0,0,0,0,0.297,50.38,113.76,0.93,0.13,791,1.1,62,1.4000000000000001
+2023,6,22,2,0,11.600000000000001,1.24,0.045,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.297,53.160000000000004,111.62,0.93,0.13,791,1.1,63,1.5
+2023,6,22,2,30,11.100000000000001,1.24,0.045,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.297,54.94,108.86,0.92,0.13,791,1.2000000000000002,62,1.6
+2023,6,22,3,0,10.600000000000001,1.28,0.047,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.298,58.620000000000005,105.55,0.92,0.13,791,1.2000000000000002,61,1.6
+2023,6,22,3,30,10,1.28,0.047,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.298,61.01,101.77,0.92,0.13,791,1.2000000000000002,59,1.6
+2023,6,22,4,0,9.5,1.31,0.049,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.298,65.41,97.58,0.92,0.13,791,1.2000000000000002,57,1.6
+2023,6,22,4,30,9.9,1.31,0.049,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.298,63.690000000000005,93.05,0.92,0.13,791,1.2000000000000002,54,1.9000000000000001
+2023,6,22,5,0,10.4,1.35,0.052000000000000005,0.62,15,188,22,0,0,4.1000000000000005,15,188,0,22,0.298,64.85,88,0.92,0.13,791,1.2000000000000002,52,2.3000000000000003
+2023,6,22,5,30,11.700000000000001,1.35,0.052000000000000005,0.62,32,466,88,0,0,4.1000000000000005,32,466,0,88,0.298,59.5,83.08,0.92,0.13,791,1.1,50,2.3000000000000003
+2023,6,22,6,0,13,1.3900000000000001,0.054,0.62,44,623,175,0,0,4.3,44,623,0,175,0.299,55.47,77.87,0.92,0.13,791,1.1,49,2.3000000000000003
+2023,6,22,6,30,14.9,1.3900000000000001,0.054,0.62,53,725,271,0,0,4.3,53,725,0,271,0.298,49.06,72.48,0.92,0.13,791,1.1,49,2
+2023,6,22,7,0,16.8,1.4000000000000001,0.057,0.62,60,795,371,0,0,3.7,109,598,0,343,0.298,41.6,66.96000000000001,0.92,0.13,791,1.1,49,1.7000000000000002
+2023,6,22,7,30,18.900000000000002,1.4000000000000001,0.057,0.62,66,844,471,0,0,3.7,117,678,0,442,0.298,36.47,61.35,0.92,0.13,791,1.2000000000000002,89,1.4000000000000001
+2023,6,22,8,0,21,1.42,0.06,0.62,72,880,568,0,0,1.3,94,826,0,560,0.297,26.990000000000002,55.68,0.92,0.13,791,1.2000000000000002,129,1
+2023,6,22,8,30,22.700000000000003,1.42,0.06,0.62,76,908,660,0,0,1.3,125,804,0,642,0.296,24.34,49.99,0.92,0.13,791,1.2000000000000002,159,1.7000000000000002
+2023,6,22,9,0,24.400000000000002,1.44,0.062,0.62,80,929,745,0,0,-0.4,169,765,0,716,0.295,19.51,44.31,0.92,0.13,790,1.2000000000000002,190,2.4000000000000004
+2023,6,22,9,30,25.3,1.44,0.062,0.62,84,945,821,0,0,-0.4,104,889,0,798,0.295,18.490000000000002,38.71,0.92,0.13,790,1.2000000000000002,194,2.7
+2023,6,22,10,0,26.200000000000003,1.45,0.065,0.62,87,958,888,0,8,-0.1,170,768,0,812,0.295,17.85,33.26,0.92,0.13,790,1.3,199,3.1
+2023,6,22,10,30,26.900000000000002,1.45,0.065,0.62,89,967,942,0,7,-0.1,212,704,0,833,0.294,17.13,28.09,0.93,0.13,790,1.3,200,3.3000000000000003
+2023,6,22,11,0,27.5,1.54,0.065,0.62,90,974,984,0,7,0.6000000000000001,240,707,0,889,0.294,17.41,23.43,0.93,0.13,789,1.4000000000000001,201,3.6
+2023,6,22,11,30,27.900000000000002,1.54,0.065,0.62,94,974,1011,0,0,0.6000000000000001,185,829,0,966,0.294,17.01,19.67,0.9400000000000001,0.13,789,1.4000000000000001,202,3.8000000000000003
+2023,6,22,12,0,28.3,1.53,0.076,0.62,98,970,1023,0,0,1.3,172,831,0,965,0.294,17.48,17.44,0.9400000000000001,0.13,789,1.4000000000000001,202,4.1000000000000005
+2023,6,22,12,30,28.400000000000002,1.53,0.076,0.62,99,967,1022,0,0,1.3,119,912,0,990,0.293,17.36,17.35,0.9400000000000001,0.13,788,1.5,202,4.2
+2023,6,22,13,0,28.6,1.53,0.082,0.62,100,961,1006,0,7,2,321,511,0,803,0.293,17.990000000000002,19.42,0.9400000000000001,0.13,788,1.5,202,4.4
+2023,6,22,13,30,28.6,1.53,0.082,0.62,99,957,979,0,7,2,352,435,0,752,0.294,17.990000000000002,23.07,0.9500000000000001,0.13,788,1.6,201,4.6000000000000005
+2023,6,22,14,0,28.6,1.57,0.076,0.62,95,951,937,0,7,2.5,204,752,0,870,0.294,18.72,27.67,0.9500000000000001,0.13,788,1.6,200,4.7
+2023,6,22,14,30,28.5,1.57,0.076,0.62,94,939,883,0,7,2.5,200,697,0,786,0.294,18.830000000000002,32.81,0.9500000000000001,0.13,788,1.6,198,4.800000000000001
+2023,6,22,15,0,28.400000000000002,1.56,0.081,0.62,93,921,816,0,8,2.6,256,577,0,709,0.294,19.05,38.24,0.9500000000000001,0.13,787,1.6,197,4.800000000000001
+2023,6,22,15,30,28,1.56,0.081,0.62,91,899,739,0,8,2.6,201,660,7,677,0.294,19.5,43.84,0.9500000000000001,0.13,787,1.6,196,4.800000000000001
+2023,6,22,16,0,27.6,1.55,0.089,0.62,88,871,654,0,8,2.4000000000000004,229,392,7,484,0.294,19.63,49.51,0.9500000000000001,0.13,787,1.6,195,4.7
+2023,6,22,16,30,26.900000000000002,1.55,0.089,0.62,85,838,563,0,8,2.4000000000000004,186,468,36,453,0.294,20.44,55.21,0.9500000000000001,0.13,787,1.6,193,4.5
+2023,6,22,17,0,26.3,1.53,0.094,0.62,80,794,466,0,8,1.7000000000000002,218,276,0,352,0.294,20.22,60.88,0.9500000000000001,0.13,787,1.5,192,4.3
+2023,6,22,17,30,25.3,1.53,0.094,0.62,72,744,369,0,8,1.7000000000000002,130,358,4,273,0.295,21.45,66.5,0.9500000000000001,0.13,787,1.5,190,3.6
+2023,6,22,18,0,24.400000000000002,1.51,0.088,0.62,62,676,271,0,0,2.1,78,607,14,265,0.296,23.29,72.02,0.9400000000000001,0.13,787,1.4000000000000001,188,2.8000000000000003
+2023,6,22,18,30,22.6,1.51,0.088,0.62,51,580,177,1,8,2.1,77,311,29,145,0.297,25.95,77.42,0.9400000000000001,0.13,787,1.3,184,2.2
+2023,6,22,19,0,20.8,1.46,0.077,0.62,37,433,92,5,5,4.2,54,31,71,58,0.298,33.71,82.65,0.9400000000000001,0.13,787,1.2000000000000002,180,1.6
+2023,6,22,19,30,19.8,1.46,0.077,0.62,18,174,25,2,0,4.2,16,98,25,20,0.299,35.85,87.61,0.93,0.13,787,1.1,180,1.6
+2023,6,22,20,0,18.8,1.37,0.069,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.3,36.09,92.66,0.93,0.13,788,1.1,179,1.7000000000000002
+2023,6,22,20,30,18.1,1.37,0.069,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.301,37.7,97.22,0.93,0.13,788,1,180,1.8
+2023,6,22,21,0,17.400000000000002,1.24,0.058,0.62,0,0,0,0,0,2.7,0,0,0,0,0.301,37.36,101.44,0.92,0.13,788,1,180,1.9000000000000001
+2023,6,22,21,30,16.6,1.24,0.058,0.62,0,0,0,0,8,2.7,0,0,0,0,0.302,39.300000000000004,105.26,0.93,0.13,788,1,180,1.9000000000000001
+2023,6,22,22,0,15.8,1.09,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.303,39.7,108.61,0.93,0.13,787,1,180,1.9000000000000001
+2023,6,22,22,30,15.3,1.09,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.302,40.99,111.42,0.93,0.13,787,1,181,1.9000000000000001
+2023,6,22,23,0,14.8,1.03,0.055,0.62,0,0,0,0,0,1.8,0,0,0,0,0.301,41.29,113.61,0.93,0.13,787,1,183,1.9000000000000001
+2023,6,22,23,30,14.4,1.03,0.055,0.62,0,0,0,0,3,1.8,0,0,0,0,0.3,42.37,115.13,0.93,0.13,787,1,184,1.9000000000000001
+2023,6,23,0,0,14.100000000000001,0.99,0.054,0.62,0,0,0,0,0,1.8,0,0,0,0,0.299,43.160000000000004,115.92,0.93,0.13,787,1,184,1.9000000000000001
+2023,6,23,0,30,13.700000000000001,0.99,0.054,0.62,0,0,0,0,0,1.8,0,0,0,0,0.299,44.29,115.95,0.92,0.13,787,1,186,1.9000000000000001
+2023,6,23,1,0,13.4,0.9400000000000001,0.053,0.62,0,0,0,0,3,1.9000000000000001,0,0,0,0,0.299,45.480000000000004,115.23,0.92,0.13,787,1,187,1.8
+2023,6,23,1,30,12.9,0.9400000000000001,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.298,46.99,113.78,0.92,0.13,787,1,188,1.8
+2023,6,23,2,0,12.4,0.91,0.052000000000000005,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.298,48.660000000000004,111.64,0.91,0.13,787,1,188,1.8
+2023,6,23,2,30,11.8,0.91,0.052000000000000005,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.297,50.620000000000005,108.89,0.91,0.13,787,1,189,1.9000000000000001
+2023,6,23,3,0,11.3,0.91,0.055,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.297,51.620000000000005,105.58,0.91,0.13,787,1,191,2
+2023,6,23,3,30,10.9,0.91,0.055,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.296,53,101.8,0.91,0.13,787,1,191,2
+2023,6,23,4,0,10.5,0.92,0.057,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.296,53.15,97.62,0.91,0.13,787,1,191,2
+2023,6,23,4,30,11.100000000000001,0.92,0.057,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.296,51.08,93.09,0.91,0.13,787,0.9,190,2.2
+2023,6,23,5,0,11.700000000000001,0.93,0.058,0.62,16,166,22,0,0,1,16,166,0,22,0.296,47.96,88.04,0.91,0.13,787,0.9,190,2.5
+2023,6,23,5,30,13.100000000000001,0.93,0.058,0.62,34,451,88,0,0,1.1,34,451,0,88,0.297,43.81,83.12,0.91,0.13,788,0.9,188,2.9000000000000004
+2023,6,23,6,0,14.5,0.9500000000000001,0.057,0.62,46,621,176,0,0,0.2,46,621,0,176,0.298,37.65,77.91,0.91,0.13,788,0.8,187,3.4000000000000004
+2023,6,23,6,30,16.5,0.9500000000000001,0.057,0.62,55,733,275,0,0,0.2,55,733,0,275,0.299,33.14,72.52,0.91,0.13,788,0.8,189,3.8000000000000003
+2023,6,23,7,0,18.400000000000002,0.98,0.055,0.62,61,810,377,0,0,-2.2,61,810,0,377,0.3,24.650000000000002,67.01,0.91,0.13,788,0.7000000000000001,192,4.3
+2023,6,23,7,30,19.8,0.98,0.055,0.62,66,867,481,0,0,-2.2,66,867,0,481,0.301,22.6,61.4,0.91,0.13,788,0.7000000000000001,195,4.800000000000001
+2023,6,23,8,0,21.1,1.01,0.053,0.62,70,909,582,0,0,-4.3,70,909,0,582,0.302,17.77,55.730000000000004,0.91,0.13,788,0.6000000000000001,198,5.4
+2023,6,23,8,30,22,1.01,0.053,0.62,75,939,678,0,0,-4.3,75,939,0,678,0.302,16.82,50.03,0.91,0.13,788,0.6000000000000001,198,5.9
+2023,6,23,9,0,22.900000000000002,1.01,0.052000000000000005,0.62,77,963,766,0,0,-5.2,77,963,0,766,0.303,14.88,44.36,0.91,0.13,788,0.6000000000000001,199,6.5
+2023,6,23,9,30,23.6,1.01,0.052000000000000005,0.62,80,980,844,0,0,-5.2,80,980,0,844,0.303,14.27,38.75,0.91,0.13,788,0.6000000000000001,200,7
+2023,6,23,10,0,24.200000000000003,1.01,0.053,0.62,83,992,912,0,0,-6,83,992,0,912,0.304,13.02,33.3,0.91,0.13,788,0.6000000000000001,200,7.5
+2023,6,23,10,30,24.6,1.01,0.053,0.62,84,1004,969,0,0,-6,84,1004,0,969,0.305,12.700000000000001,28.13,0.9,0.13,787,0.6000000000000001,201,7.9
+2023,6,23,11,0,25,0.93,0.049,0.62,84,1013,1013,0,0,-6.800000000000001,84,1013,0,1013,0.306,11.6,23.47,0.9,0.13,787,0.6000000000000001,202,8.3
+2023,6,23,11,30,25.1,0.93,0.049,0.62,85,1017,1042,0,0,-6.800000000000001,125,932,0,1002,0.307,11.53,19.71,0.9,0.13,787,0.6000000000000001,204,8.700000000000001
+2023,6,23,12,0,25.3,0.9500000000000001,0.051000000000000004,0.62,87,1018,1058,0,0,-8,270,621,0,862,0.308,10.46,17.46,0.89,0.13,787,0.6000000000000001,206,9.1
+2023,6,23,12,30,25.200000000000003,0.9500000000000001,0.051000000000000004,0.62,86,1020,1060,0,0,-8,122,952,0,1031,0.31,10.52,17.35,0.89,0.13,787,0.6000000000000001,207,9.3
+2023,6,23,13,0,25.200000000000003,1,0.053,0.62,87,1019,1048,0,0,-9.1,168,838,0,958,0.311,9.65,19.41,0.89,0.13,787,0.5,209,9.600000000000001
+2023,6,23,13,30,25,1,0.053,0.62,86,1016,1021,0,8,-9.1,265,583,0,801,0.313,9.76,23.05,0.89,0.13,787,0.5,212,9.5
+2023,6,23,14,0,24.900000000000002,0.99,0.054,0.62,85,1008,978,0,0,-10.200000000000001,196,793,0,898,0.314,8.950000000000001,27.650000000000002,0.88,0.13,787,0.5,214,9.5
+2023,6,23,14,30,24.700000000000003,0.99,0.054,0.62,83,999,923,0,0,-10.200000000000001,146,854,0,864,0.316,9.06,32.78,0.88,0.13,787,0.5,218,9.3
+2023,6,23,15,0,24.400000000000002,0.98,0.054,0.62,80,986,855,0,0,-11.600000000000001,131,869,0,814,0.318,8.25,38.21,0.89,0.13,787,0.5,221,9.1
+2023,6,23,15,30,24,0.98,0.054,0.62,77,973,779,0,0,-11.600000000000001,89,943,0,770,0.319,8.45,43.81,0.89,0.13,787,0.5,227,8.9
+2023,6,23,16,0,23.5,0.98,0.051000000000000004,0.62,74,956,695,0,0,-13.100000000000001,74,956,0,695,0.32,7.72,49.480000000000004,0.89,0.13,787,0.4,233,8.700000000000001
+2023,6,23,16,30,22.8,0.98,0.051000000000000004,0.62,69,932,601,0,0,-13.100000000000001,69,932,0,601,0.32,8.06,55.17,0.89,0.13,788,0.4,239,8.200000000000001
+2023,6,23,17,0,22.1,0.96,0.047,0.62,63,898,501,0,0,-14,63,898,0,501,0.32,7.82,60.84,0.89,0.13,788,0.4,246,7.7
+2023,6,23,17,30,21,0.96,0.047,0.62,59,850,398,0,0,-14,67,823,11,396,0.318,8.370000000000001,66.46000000000001,0.9,0.13,789,0.4,253,6.7
+2023,6,23,18,0,20,0.96,0.047,0.62,52,782,294,0,8,-12.8,93,458,14,235,0.316,9.82,71.99,0.9,0.13,789,0.4,259,5.7
+2023,6,23,18,30,17.7,0.96,0.047,0.62,45,670,191,0,3,-12.8,94,329,18,166,0.314,11.35,77.39,0.91,0.13,790,0.5,267,3.9000000000000004
+2023,6,23,19,0,15.4,1.01,0.054,0.62,35,500,99,0,0,-7.1000000000000005,37,475,11,98,0.312,20.63,82.62,0.91,0.13,790,0.5,276,2.2
+2023,6,23,19,30,14.100000000000001,1.01,0.054,0.62,17,204,26,0,0,-7.1000000000000005,17,204,0,26,0.31,22.43,87.58,0.92,0.13,790,0.6000000000000001,286,1.7000000000000002
+2023,6,23,20,0,12.8,1.07,0.062,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.309,32.37,92.63,0.92,0.13,791,0.7000000000000001,297,1.3
+2023,6,23,20,30,12.600000000000001,1.07,0.062,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.308,32.8,97.19,0.92,0.13,791,0.8,300,1.3
+2023,6,23,21,0,12.5,1.09,0.065,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.307,35.69,101.42,0.92,0.13,791,0.8,304,1.2000000000000002
+2023,6,23,21,30,12.5,1.09,0.065,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.307,35.69,105.24000000000001,0.92,0.13,791,0.8,305,1.2000000000000002
+2023,6,23,22,0,12.4,1.09,0.063,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.306,36.2,108.60000000000001,0.92,0.13,791,0.8,306,1.2000000000000002
+2023,6,23,22,30,12.200000000000001,1.09,0.063,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.306,36.68,111.41,0.92,0.13,791,0.8,306,1.2000000000000002
+2023,6,23,23,0,12,1.07,0.059000000000000004,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.305,37.28,113.61,0.91,0.13,791,0.8,307,1.1
+2023,6,23,23,30,11.700000000000001,1.07,0.059000000000000004,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.304,38.02,115.14,0.91,0.13,791,0.8,310,1.1
+2023,6,24,0,0,11.4,1.05,0.054,0.62,0,0,0,0,0,-2,0,0,0,0,0.304,39.17,115.93,0.91,0.13,791,0.8,313,1.1
+2023,6,24,0,30,11.100000000000001,1.05,0.054,0.62,0,0,0,0,0,-2,0,0,0,0,0.302,39.96,115.97,0.91,0.13,791,0.8,316,1.1
+2023,6,24,1,0,10.8,1.04,0.05,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.3,40.980000000000004,115.26,0.91,0.13,791,0.8,320,1.1
+2023,6,24,1,30,10.4,1.04,0.05,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.298,42.08,113.81,0.91,0.13,791,0.7000000000000001,322,1.1
+2023,6,24,2,0,10.100000000000001,1.04,0.047,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.297,43.83,111.68,0.91,0.13,791,0.7000000000000001,324,1.1
+2023,6,24,2,30,9.600000000000001,1.04,0.047,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.296,45.37,108.93,0.91,0.13,792,0.7000000000000001,325,1.1
+2023,6,24,3,0,9.200000000000001,1.05,0.046,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.295,47.550000000000004,105.62,0.91,0.13,792,0.7000000000000001,327,1.1
+2023,6,24,3,30,8.9,1.05,0.046,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.295,48.52,101.85000000000001,0.91,0.13,792,0.7000000000000001,329,1
+2023,6,24,4,0,8.5,1.08,0.045,0.62,0,0,0,0,0,-1,0,0,29,0,0.295,51.21,97.66,0.91,0.13,792,0.7000000000000001,330,1
+2023,6,24,4,30,9.1,1.08,0.045,0.62,0,0,0,0,0,-1,0,0,0,0,0.295,49.18,93.13,0.91,0.13,792,0.7000000000000001,335,0.9
+2023,6,24,5,0,9.600000000000001,1.1,0.045,0.62,15,199,22,0,0,0.2,15,199,0,22,0.295,51.9,88.08,0.91,0.13,793,0.7000000000000001,340,0.9
+2023,6,24,5,30,11.3,1.1,0.045,0.62,31,492,90,0,0,0.2,31,492,0,90,0.295,46.35,83.17,0.91,0.13,793,0.7000000000000001,342,1.4000000000000001
+2023,6,24,6,0,13,1.12,0.045,0.62,42,655,179,0,0,0.1,42,655,0,179,0.295,41.31,77.96000000000001,0.91,0.13,793,0.7000000000000001,344,1.9000000000000001
+2023,6,24,6,30,14.8,1.12,0.045,0.62,50,757,277,0,0,0.2,50,757,0,277,0.294,36.77,72.57000000000001,0.91,0.13,793,0.7000000000000001,341,2.4000000000000004
+2023,6,24,7,0,16.6,1.1500000000000001,0.044,0.62,57,827,379,0,0,0,57,827,0,379,0.294,32.410000000000004,67.06,0.91,0.13,793,0.7000000000000001,338,2.9000000000000004
+2023,6,24,7,30,17.6,1.1500000000000001,0.044,0.62,61,876,480,0,0,0,61,876,0,480,0.292,30.43,61.45,0.91,0.13,793,0.8,329,2.7
+2023,6,24,8,0,18.7,1.18,0.044,0.62,66,912,579,0,0,-1.2000000000000002,66,912,0,579,0.291,25.990000000000002,55.78,0.91,0.13,794,0.8,320,2.4000000000000004
+2023,6,24,8,30,19.700000000000003,1.18,0.044,0.62,70,939,672,0,0,-1.2000000000000002,70,939,0,672,0.289,24.43,50.09,0.91,0.13,794,0.8,305,2.3000000000000003
+2023,6,24,9,0,20.6,1.21,0.045,0.62,73,960,759,0,0,-2.4000000000000004,73,960,0,759,0.28700000000000003,21.21,44.410000000000004,0.91,0.13,794,0.8,291,2.2
+2023,6,24,9,30,21.400000000000002,1.21,0.045,0.62,76,977,837,0,0,-2.4000000000000004,76,977,0,837,0.28600000000000003,20.2,38.81,0.91,0.13,794,0.8,279,2.3000000000000003
+2023,6,24,10,0,22.3,1.23,0.046,0.62,78,989,904,0,0,-2.9000000000000004,78,989,0,904,0.28500000000000003,18.32,33.35,0.91,0.13,793,0.8,267,2.4000000000000004
+2023,6,24,10,30,23,1.23,0.046,0.62,79,998,959,0,0,-2.9000000000000004,79,998,0,959,0.28500000000000003,17.56,28.18,0.91,0.13,793,0.9,260,2.6
+2023,6,24,11,0,23.700000000000003,1.32,0.043000000000000003,0.62,80,1006,1002,0,0,-3.1,80,1006,0,1002,0.28400000000000003,16.6,23.51,0.91,0.13,793,0.9,252,2.7
+2023,6,24,11,30,24.200000000000003,1.32,0.043000000000000003,0.62,80,1009,1030,0,0,-3.1,80,1009,0,1030,0.28400000000000003,16.11,19.740000000000002,0.91,0.13,793,0.9,248,3
+2023,6,24,12,0,24.700000000000003,1.35,0.045,0.62,83,1010,1046,0,0,-3.2,83,1010,0,1046,0.28300000000000003,15.58,17.490000000000002,0.92,0.13,793,0.9,243,3.2
+2023,6,24,12,30,25,1.35,0.045,0.62,84,1008,1046,0,0,-3.2,98,978,0,1031,0.28300000000000003,15.3,17.36,0.92,0.13,793,0.9,241,3.4000000000000004
+2023,6,24,13,0,25.3,1.3900000000000001,0.05,0.62,85,1003,1031,0,0,-3.2,85,1003,0,1031,0.28200000000000003,15.01,19.400000000000002,0.92,0.13,793,0.9,238,3.5
+2023,6,24,13,30,25.5,1.3900000000000001,0.05,0.62,83,1000,1003,0,0,-3.2,83,1000,0,1003,0.281,14.84,23.03,0.92,0.13,793,0.9,236,3.5
+2023,6,24,14,0,25.700000000000003,1.48,0.049,0.62,81,993,961,0,0,-3.3000000000000003,81,993,0,961,0.28,14.56,27.63,0.92,0.13,792,1,233,3.6
+2023,6,24,14,30,25.6,1.48,0.049,0.62,79,983,906,0,0,-3.3000000000000003,79,983,0,906,0.279,14.65,32.75,0.92,0.13,792,1,232,3.6
+2023,6,24,15,0,25.6,1.55,0.048,0.62,77,971,840,0,0,-3.6,77,971,0,840,0.278,14.34,38.18,0.92,0.13,792,1,230,3.5
+2023,6,24,15,30,25.3,1.55,0.048,0.62,73,955,763,0,0,-3.6,73,955,0,763,0.278,14.6,43.78,0.92,0.13,792,1,230,3.4000000000000004
+2023,6,24,16,0,25,1.6,0.048,0.62,71,933,678,0,0,-4,71,933,0,678,0.277,14.43,49.45,0.92,0.13,792,1,230,3.3000000000000003
+2023,6,24,16,30,24.6,1.6,0.048,0.62,67,904,584,0,0,-4,67,904,0,584,0.276,14.77,55.14,0.92,0.13,792,1,229,3.1
+2023,6,24,17,0,24.200000000000003,1.61,0.052000000000000005,0.62,65,864,486,0,0,-4.3,65,864,0,486,0.276,14.74,60.82,0.92,0.13,792,1,228,2.9000000000000004
+2023,6,24,17,30,23.3,1.61,0.052000000000000005,0.62,59,812,384,0,0,-4.3,59,812,0,384,0.276,15.55,66.43,0.92,0.13,792,1,225,2.4000000000000004
+2023,6,24,18,0,22.5,1.59,0.056,0.62,54,740,283,0,0,-2,54,740,0,283,0.276,19.42,71.96000000000001,0.93,0.13,792,1,222,1.8
+2023,6,24,18,30,21.1,1.59,0.056,0.62,45,644,186,0,0,-2,45,644,0,186,0.276,21.14,77.37,0.92,0.13,792,1,209,1.3
+2023,6,24,19,0,19.6,1.6,0.054,0.62,33,495,97,0,0,1.4000000000000001,33,495,0,97,0.276,29.69,82.60000000000001,0.92,0.13,793,1,196,0.8
+2023,6,24,19,30,19.200000000000003,1.6,0.054,0.62,17,217,26,0,0,1.4000000000000001,17,217,0,26,0.277,30.44,87.56,0.92,0.13,793,0.9,175,0.8
+2023,6,24,20,0,18.8,1.6,0.051000000000000004,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.278,26,92.61,0.92,0.13,793,0.9,154,0.7000000000000001
+2023,6,24,20,30,18.1,1.6,0.051000000000000004,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.279,27.16,97.18,0.92,0.13,793,0.9,132,0.7000000000000001
+2023,6,24,21,0,17.400000000000002,1.58,0.05,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28,28.14,101.41,0.92,0.13,793,0.9,111,0.8
+2023,6,24,21,30,16.5,1.58,0.05,0.62,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.28,29.79,105.23,0.92,0.13,793,0.9,98,0.8
+2023,6,24,22,0,15.5,1.56,0.053,0.62,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.28,33.39,108.59,0.92,0.13,793,0.9,86,0.9
+2023,6,24,22,30,14.5,1.56,0.053,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.28,35.61,111.41,0.92,0.13,793,0.9,78,0.9
+2023,6,24,23,0,13.600000000000001,1.55,0.055,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.28,38.78,113.62,0.92,0.13,793,1,70,0.9
+2023,6,24,23,30,12.9,1.55,0.055,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.28,40.58,115.15,0.92,0.13,793,1,66,0.9
+2023,6,25,0,0,12.200000000000001,1.53,0.055,0.62,0,0,0,0,8,0.1,0,0,0,0,0.28,43.5,115.95,0.92,0.13,793,1,63,0.9
+2023,6,25,0,30,11.700000000000001,1.53,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.28,44.95,116,0.92,0.13,793,1,60,1
+2023,6,25,1,0,11.3,1.5,0.055,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.279,47.86,115.29,0.92,0.13,793,1,58,1.1
+2023,6,25,1,30,11.100000000000001,1.5,0.055,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.28,48.49,113.84,0.92,0.13,793,0.9,55,1.2000000000000002
+2023,6,25,2,0,10.8,1.44,0.057,0.62,0,0,0,0,0,1.1,0,0,0,0,0.28,51.2,111.72,0.92,0.13,793,0.9,52,1.3
+2023,6,25,2,30,10.700000000000001,1.44,0.057,0.62,0,0,0,0,0,1.1,0,0,0,0,0.281,51.54,108.97,0.92,0.13,793,0.9,49,1.5
+2023,6,25,3,0,10.5,1.4000000000000001,0.056,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.28200000000000003,53.19,105.67,0.91,0.13,793,0.8,47,1.7000000000000002
+2023,6,25,3,30,9.9,1.4000000000000001,0.056,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.28300000000000003,55.36,101.89,0.91,0.13,793,0.8,48,1.6
+2023,6,25,4,0,9.3,1.3800000000000001,0.054,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.28300000000000003,57.65,97.71000000000001,0.91,0.13,793,0.8,50,1.5
+2023,6,25,4,30,9.700000000000001,1.3800000000000001,0.054,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.28300000000000003,56.120000000000005,93.18,0.91,0.13,793,0.8,49,1.7000000000000002
+2023,6,25,5,0,10.100000000000001,1.3800000000000001,0.054,0.62,16,191,22,0,0,1.8,16,191,0,22,0.28300000000000003,56.38,88.13,0.9,0.13,793,0.7000000000000001,49,2
+2023,6,25,5,30,11.700000000000001,1.3800000000000001,0.054,0.62,33,478,89,0,0,1.8,33,478,0,89,0.28300000000000003,50.77,83.22,0.9,0.13,794,0.7000000000000001,53,2.3000000000000003
+2023,6,25,6,0,13.3,1.3800000000000001,0.052000000000000005,0.62,43,644,177,0,0,0.8,43,644,0,177,0.28300000000000003,42.550000000000004,78.01,0.9,0.13,794,0.7000000000000001,57,2.7
+2023,6,25,6,30,15.3,1.3800000000000001,0.052000000000000005,0.62,51,749,275,0,0,0.8,51,749,0,275,0.28300000000000003,37.4,72.63,0.9,0.13,794,0.7000000000000001,61,2.6
+2023,6,25,7,0,17.400000000000002,1.3900000000000001,0.051000000000000004,0.62,57,824,378,0,0,-1.6,57,824,0,378,0.28300000000000003,27.41,67.11,0.9,0.13,794,0.7000000000000001,66,2.5
+2023,6,25,7,30,19,1.3900000000000001,0.051000000000000004,0.62,63,875,481,0,0,-1.6,63,875,0,481,0.28300000000000003,24.8,61.5,0.9,0.13,794,0.7000000000000001,71,2.1
+2023,6,25,8,0,20.700000000000003,1.3900000000000001,0.05,0.62,68,914,581,0,0,-4,68,914,0,581,0.28200000000000003,18.62,55.83,0.9,0.13,794,0.6000000000000001,77,1.7000000000000002
+2023,6,25,8,30,22,1.3900000000000001,0.05,0.62,72,943,676,0,0,-4,72,943,0,676,0.281,17.2,50.14,0.9,0.13,794,0.6000000000000001,85,1.4000000000000001
+2023,6,25,9,0,23.3,1.3900000000000001,0.051000000000000004,0.62,75,965,764,0,0,-5.6000000000000005,75,965,0,764,0.281,14.08,44.46,0.9,0.13,793,0.6000000000000001,94,1
+2023,6,25,9,30,24.400000000000002,1.3900000000000001,0.051000000000000004,0.62,78,982,843,0,0,-5.6000000000000005,78,982,0,843,0.28,13.18,38.86,0.9,0.13,793,0.6000000000000001,127,0.9
+2023,6,25,10,0,25.5,1.37,0.052000000000000005,0.62,81,994,911,0,0,-7,81,994,0,911,0.279,11.16,33.410000000000004,0.9,0.13,793,0.6000000000000001,161,0.9
+2023,6,25,10,30,26.3,1.37,0.052000000000000005,0.62,82,1007,969,0,0,-7,82,1007,0,969,0.279,10.65,28.23,0.9,0.13,793,0.6000000000000001,176,1.3
+2023,6,25,11,0,27.200000000000003,1.53,0.047,0.62,81,1017,1013,0,0,-7.9,81,1017,0,1013,0.278,9.4,23.56,0.9,0.13,792,0.6000000000000001,192,1.6
+2023,6,25,11,30,27.700000000000003,1.53,0.047,0.62,81,1022,1043,0,0,-7.9,81,1022,0,1043,0.277,9.13,19.79,0.9,0.13,792,0.6000000000000001,197,2.1
+2023,6,25,12,0,28.3,1.52,0.048,0.62,83,1024,1059,0,0,-8.5,83,1024,0,1059,0.276,8.41,17.52,0.9,0.13,792,0.6000000000000001,203,2.6
+2023,6,25,12,30,28.6,1.52,0.048,0.62,83,1024,1060,0,0,-8.5,83,1024,0,1060,0.275,8.26,17.38,0.9,0.13,792,0.6000000000000001,207,3
+2023,6,25,13,0,29,1.52,0.048,0.62,82,1022,1046,0,0,-9.1,82,1022,0,1046,0.274,7.71,19.400000000000002,0.9,0.13,791,0.6000000000000001,211,3.5
+2023,6,25,13,30,29.1,1.52,0.048,0.62,82,1017,1018,0,0,-9.1,82,1017,0,1018,0.274,7.66,23.03,0.9,0.13,791,0.6000000000000001,214,4
+2023,6,25,14,0,29.3,1.5,0.048,0.62,80,1011,976,0,0,-9.5,80,1011,0,976,0.274,7.32,27.61,0.9,0.13,791,0.6000000000000001,218,4.4
+2023,6,25,14,30,29.200000000000003,1.5,0.048,0.62,78,1002,921,0,0,-9.5,78,1002,0,921,0.274,7.37,32.730000000000004,0.9,0.13,791,0.6000000000000001,220,4.800000000000001
+2023,6,25,15,0,29.1,1.43,0.046,0.62,76,990,854,0,0,-9.8,76,990,0,854,0.274,7.26,38.160000000000004,0.9,0.13,790,0.6000000000000001,221,5.1000000000000005
+2023,6,25,15,30,28.700000000000003,1.43,0.046,0.62,73,974,777,0,0,-9.8,73,974,0,777,0.274,7.43,43.75,0.9,0.13,790,0.6000000000000001,222,5.300000000000001
+2023,6,25,16,0,28.3,1.33,0.044,0.62,69,954,690,0,0,-10.100000000000001,69,954,0,690,0.274,7.43,49.42,0.9,0.13,790,0.6000000000000001,224,5.6000000000000005
+2023,6,25,16,30,27.700000000000003,1.33,0.044,0.62,65,928,596,0,0,-10.100000000000001,65,928,0,596,0.275,7.7,55.120000000000005,0.9,0.13,790,0.6000000000000001,224,5.6000000000000005
+2023,6,25,17,0,27,1.21,0.043000000000000003,0.62,61,893,497,0,0,-10.4,61,893,0,497,0.275,7.83,60.79,0.9,0.13,790,0.6000000000000001,225,5.6000000000000005
+2023,6,25,17,30,25.900000000000002,1.21,0.043000000000000003,0.62,57,848,396,0,0,-10.4,57,848,0,396,0.276,8.35,66.41,0.91,0.13,790,0.6000000000000001,225,5
+2023,6,25,18,0,24.8,1.1300000000000001,0.042,0.62,51,784,294,0,0,-9.1,51,784,0,294,0.276,9.84,71.94,0.91,0.13,790,0.6000000000000001,225,4.4
+2023,6,25,18,30,22,1.1300000000000001,0.042,0.62,43,690,194,0,0,-9.1,43,690,0,194,0.276,11.65,77.35000000000001,0.91,0.13,790,0.5,224,3.2
+2023,6,25,19,0,19.3,1.08,0.041,0.62,32,539,102,0,0,-5,32,539,0,102,0.277,18.88,82.58,0.91,0.13,791,0.5,224,2.1
+2023,6,25,19,30,17.8,1.08,0.041,0.62,18,240,28,0,0,-5,18,240,0,28,0.278,20.73,87.55,0.91,0.13,791,0.5,221,1.9000000000000001
+2023,6,25,20,0,16.3,1.06,0.041,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.278,24.330000000000002,92.60000000000001,0.91,0.13,791,0.5,219,1.7000000000000002
+2023,6,25,20,30,15.700000000000001,1.06,0.041,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.278,25.28,97.17,0.91,0.13,791,0.5,217,1.7000000000000002
+2023,6,25,21,0,15.100000000000001,1.05,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.278,26.68,101.4,0.91,0.13,791,0.6000000000000001,215,1.6
+2023,6,25,21,30,14.600000000000001,1.05,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.278,27.55,105.23,0.91,0.13,791,0.6000000000000001,215,1.6
+2023,6,25,22,0,14.200000000000001,1.04,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.278,28.42,108.60000000000001,0.91,0.13,791,0.6000000000000001,215,1.6
+2023,6,25,22,30,13.8,1.04,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.278,29.17,111.42,0.91,0.13,791,0.6000000000000001,216,1.5
+2023,6,25,23,0,13.5,1.03,0.042,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.278,29.900000000000002,113.63,0.91,0.13,790,0.6000000000000001,218,1.5
+2023,6,25,23,30,13.100000000000001,1.03,0.042,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.278,30.68,115.17,0.91,0.13,790,0.6000000000000001,223,1.4000000000000001
+2023,6,26,0,0,12.8,1.02,0.042,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.278,31.71,115.98,0.91,0.13,790,0.6000000000000001,227,1.4000000000000001
+2023,6,26,0,30,12.4,1.02,0.042,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.278,32.55,116.03,0.91,0.13,790,0.6000000000000001,234,1.3
+2023,6,26,1,0,12,1.03,0.042,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.279,34.31,115.32000000000001,0.91,0.13,790,0.6000000000000001,241,1.2000000000000002
+2023,6,26,1,30,11.600000000000001,1.03,0.042,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.279,35.22,113.88,0.91,0.13,790,0.6000000000000001,248,1.1
+2023,6,26,2,0,11.3,1.06,0.043000000000000003,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.28,37.230000000000004,111.76,0.91,0.13,790,0.6000000000000001,254,1.1
+2023,6,26,2,30,11,1.06,0.043000000000000003,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.28,37.980000000000004,109.01,0.91,0.13,790,0.6000000000000001,266,1
+2023,6,26,3,0,10.8,1.09,0.044,0.62,0,0,0,0,0,-2,0,0,0,0,0.281,40.75,105.72,0.91,0.13,790,0.6000000000000001,278,0.9
+2023,6,26,3,30,10.4,1.09,0.044,0.62,0,0,0,0,0,-2,0,0,0,0,0.281,41.85,101.95,0.91,0.13,790,0.6000000000000001,299,0.8
+2023,6,26,4,0,10.100000000000001,1.11,0.044,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28200000000000003,46.88,97.76,0.91,0.13,791,0.6000000000000001,320,0.7000000000000001
+2023,6,26,4,30,10.5,1.11,0.044,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28200000000000003,45.65,93.24,0.91,0.13,791,0.6000000000000001,161,0.6000000000000001
+2023,6,26,5,0,10.8,1.11,0.044,0.62,16,198,22,0,0,1.5,16,198,0,22,0.28300000000000003,52.75,88.18,0.91,0.13,791,0.7000000000000001,2,0.6000000000000001
+2023,6,26,5,30,12.600000000000001,1.11,0.044,0.62,31,493,89,0,0,1.5,31,493,0,89,0.28300000000000003,46.85,83.27,0.91,0.13,791,0.7000000000000001,17,0.9
+2023,6,26,6,0,14.3,1.09,0.045,0.62,42,656,178,0,0,1.8,42,656,0,178,0.28400000000000003,42.61,78.07000000000001,0.91,0.13,791,0.7000000000000001,31,1.3
+2023,6,26,6,30,16.6,1.09,0.045,0.62,51,759,277,0,0,1.8,51,759,0,277,0.28500000000000003,36.79,72.68,0.91,0.13,791,0.7000000000000001,44,0.9
+2023,6,26,7,0,18.8,1.05,0.045,0.62,57,829,379,0,0,-1,57,829,0,379,0.28500000000000003,26.310000000000002,67.17,0.91,0.13,792,0.7000000000000001,57,0.6000000000000001
+2023,6,26,7,30,20.6,1.05,0.045,0.62,63,880,482,0,0,-1,63,880,0,482,0.28600000000000003,23.53,61.56,0.91,0.13,792,0.6000000000000001,130,1.1
+2023,6,26,8,0,22.400000000000002,1.01,0.046,0.62,68,917,582,0,0,-5.4,68,917,0,582,0.28700000000000003,15.13,55.89,0.91,0.13,792,0.6000000000000001,204,1.6
+2023,6,26,8,30,23.5,1.01,0.046,0.62,71,946,677,0,0,-5.4,71,946,0,677,0.28700000000000003,14.14,50.2,0.9,0.13,791,0.6000000000000001,203,2.2
+2023,6,26,9,0,24.6,0.98,0.046,0.62,75,968,765,0,0,-7.4,75,968,0,765,0.28700000000000003,11.41,44.52,0.9,0.13,791,0.6000000000000001,202,2.9000000000000004
+2023,6,26,9,30,25.400000000000002,0.98,0.046,0.62,78,985,844,0,0,-7.4,78,985,0,844,0.28700000000000003,10.88,38.92,0.9,0.13,791,0.6000000000000001,202,3.4000000000000004
+2023,6,26,10,0,26.200000000000003,0.98,0.046,0.62,80,999,913,0,0,-8.5,80,999,0,913,0.28700000000000003,9.5,33.46,0.9,0.13,791,0.6000000000000001,203,3.9000000000000004
+2023,6,26,10,30,26.900000000000002,0.98,0.046,0.62,79,1013,971,0,0,-8.5,79,1013,0,971,0.28700000000000003,9.120000000000001,28.29,0.9,0.13,791,0.6000000000000001,204,4.3
+2023,6,26,11,0,27.6,1.02,0.038,0.62,78,1024,1016,0,0,-9.3,78,1024,0,1016,0.28700000000000003,8.19,23.62,0.9,0.13,790,0.6000000000000001,206,4.7
+2023,6,26,11,30,28.1,1.02,0.038,0.62,79,1028,1046,0,0,-9.3,79,1028,0,1046,0.28700000000000003,7.96,19.84,0.9,0.13,790,0.6000000000000001,208,5.1000000000000005
+2023,6,26,12,0,28.6,0.98,0.038,0.62,79,1030,1061,0,0,-9.9,79,1030,0,1061,0.28700000000000003,7.42,17.56,0.9,0.13,790,0.6000000000000001,210,5.5
+2023,6,26,12,30,28.900000000000002,0.98,0.038,0.62,78,1030,1061,0,0,-9.9,78,1030,0,1061,0.28700000000000003,7.29,17.400000000000002,0.9,0.13,789,0.6000000000000001,212,5.800000000000001
+2023,6,26,13,0,29.200000000000003,0.93,0.037,0.62,78,1028,1048,0,0,-10.200000000000001,78,1028,0,1048,0.28700000000000003,6.98,19.41,0.91,0.13,789,0.6000000000000001,213,6.1000000000000005
+2023,6,26,13,30,29.3,0.93,0.037,0.62,77,1025,1020,0,0,-10.200000000000001,77,1025,0,1020,0.28700000000000003,6.94,23.02,0.9,0.13,789,0.6000000000000001,214,6.300000000000001
+2023,6,26,14,0,29.400000000000002,0.89,0.032,0.62,73,1022,979,0,0,-10.5,73,1022,0,979,0.28800000000000003,6.73,27.6,0.9,0.13,788,0.6000000000000001,215,6.5
+2023,6,26,14,30,29.3,0.89,0.032,0.62,72,1014,925,0,0,-10.5,72,1014,0,925,0.28800000000000003,6.7700000000000005,32.72,0.9,0.13,788,0.6000000000000001,215,6.6000000000000005
+2023,6,26,15,0,29.200000000000003,0.89,0.032,0.62,70,1003,859,0,0,-10.700000000000001,70,1003,0,859,0.28800000000000003,6.68,38.14,0.9,0.13,788,0.6000000000000001,215,6.6000000000000005
+2023,6,26,15,30,28.8,0.89,0.032,0.62,68,988,782,0,0,-10.700000000000001,68,988,0,782,0.28800000000000003,6.84,43.730000000000004,0.9,0.13,788,0.6000000000000001,214,6.4
+2023,6,26,16,0,28.5,0.91,0.033,0.62,66,967,695,0,0,-10.8,66,967,0,695,0.28800000000000003,6.92,49.4,0.9,0.13,787,0.6000000000000001,214,6.300000000000001
+2023,6,26,16,30,28,0.91,0.033,0.62,62,942,601,0,0,-10.8,62,942,0,601,0.289,7.12,55.09,0.9,0.13,787,0.5,213,6
+2023,6,26,17,0,27.5,0.93,0.034,0.62,59,908,502,0,0,-10.5,59,908,0,502,0.289,7.53,60.77,0.9,0.13,787,0.5,213,5.6000000000000005
+2023,6,26,17,30,26.3,0.93,0.034,0.62,54,862,399,0,0,-10.5,54,862,0,399,0.289,8.08,66.39,0.9,0.13,787,0.5,212,4.6000000000000005
+2023,6,26,18,0,25.200000000000003,0.97,0.035,0.62,48,796,295,0,0,-7.300000000000001,48,796,0,295,0.289,11.07,71.92,0.9,0.13,787,0.5,211,3.6
+2023,6,26,18,30,22.3,0.97,0.035,0.62,41,698,194,0,0,-7.300000000000001,41,698,0,194,0.289,13.18,77.33,0.9,0.13,787,0.6000000000000001,208,2.6
+2023,6,26,19,0,19.5,1.02,0.037,0.62,32,544,102,0,0,-2.3000000000000003,32,544,0,102,0.289,22.85,82.57000000000001,0.9,0.13,787,0.6000000000000001,205,1.6
+2023,6,26,19,30,18.400000000000002,1.02,0.037,0.62,18,243,28,0,0,-2.3000000000000003,18,243,0,28,0.289,24.47,87.54,0.9,0.13,787,0.6000000000000001,202,1.5
+2023,6,26,20,0,17.3,1.09,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.289,26.67,92.59,0.9,0.13,787,0.6000000000000001,199,1.5
+2023,6,26,20,30,16.900000000000002,1.09,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.289,27.36,97.16,0.9,0.13,787,0.6000000000000001,197,1.5
+2023,6,26,21,0,16.5,1.17,0.045,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.289,27.85,101.4,0.9,0.13,787,0.6000000000000001,194,1.6
+2023,6,26,21,30,16,1.17,0.045,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.289,28.75,105.24000000000001,0.9,0.13,787,0.6000000000000001,195,1.6
+2023,6,26,22,0,15.5,1.23,0.05,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.289,29.32,108.61,0.9,0.13,787,0.6000000000000001,195,1.6
+2023,6,26,22,30,15,1.23,0.05,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.289,30.27,111.44,0.9,0.13,787,0.7000000000000001,199,1.7000000000000002
+2023,6,26,23,0,14.5,1.25,0.053,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.289,30.830000000000002,113.65,0.9,0.13,786,0.7000000000000001,202,1.7000000000000002
+2023,6,26,23,30,14.100000000000001,1.25,0.053,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.289,31.64,115.2,0.91,0.13,786,0.7000000000000001,208,1.9000000000000001
+2023,6,27,0,0,13.700000000000001,1.22,0.053,0.62,0,0,0,0,8,-3.3000000000000003,0,0,0,0,0.29,30.64,116.01,0.91,0.13,786,0.7000000000000001,214,2.1
+2023,6,27,0,30,13.5,1.22,0.053,0.62,0,0,0,0,8,-3.3000000000000003,0,0,0,0,0.294,31.04,116.07000000000001,0.91,0.13,786,0.8,217,2.2
+2023,6,27,1,0,13.3,1.17,0.053,0.62,0,0,0,0,8,-3.9000000000000004,0,0,0,0,0.297,30.1,115.37,0.91,0.13,786,0.8,220,2.4000000000000004
+2023,6,27,1,30,13.100000000000001,1.17,0.053,0.62,0,0,0,0,6,-3.9000000000000004,0,0,0,0,0.305,30.490000000000002,113.93,0.91,0.13,786,0.8,222,2.5
+2023,6,27,2,0,12.9,1.16,0.058,0.62,0,0,0,0,6,-3.8000000000000003,0,0,0,0,0.312,30.98,111.81,0.92,0.13,786,0.9,223,2.5
+2023,6,27,2,30,12.700000000000001,1.16,0.058,0.62,0,0,0,0,6,-3.8000000000000003,0,0,0,0,0.314,31.39,109.07000000000001,0.91,0.13,786,0.9,225,2.6
+2023,6,27,3,0,12.4,1.12,0.06,0.62,0,0,0,0,8,-3.6,0,0,0,0,0.316,32.55,105.78,0.91,0.13,786,0.8,228,2.6
+2023,6,27,3,30,11.9,1.12,0.06,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.316,33.63,102,0.91,0.13,786,0.8,231,2.5
+2023,6,27,4,0,11.4,1.05,0.058,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.316,35.51,97.82000000000001,0.91,0.13,786,0.8,234,2.5
+2023,6,27,4,30,12.100000000000001,1.05,0.058,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.316,33.95,93.3,0.91,0.13,787,0.7000000000000001,237,2.6
+2023,6,27,5,0,12.8,0.98,0.058,0.62,14,152,19,0,0,-3,14,152,0,19,0.316,33.21,88.24,0.91,0.13,787,0.7000000000000001,239,2.8000000000000003
+2023,6,27,5,30,14.700000000000001,0.98,0.058,0.62,33,452,86,0,0,-3,33,452,0,86,0.316,29.37,83.33,0.91,0.13,787,0.6000000000000001,241,3.4000000000000004
+2023,6,27,6,0,16.5,0.9400000000000001,0.059000000000000004,0.62,46,624,174,0,0,-3.2,46,624,0,174,0.316,25.71,78.13,0.91,0.13,787,0.6000000000000001,242,4
+2023,6,27,6,30,18.5,0.9400000000000001,0.059000000000000004,0.62,55,733,272,0,0,-3.2,55,733,0,272,0.316,22.67,72.74,0.91,0.13,787,0.6000000000000001,241,4.5
+2023,6,27,7,0,20.6,0.92,0.059000000000000004,0.62,62,808,375,0,0,-5.2,62,808,0,375,0.316,17.22,67.23,0.91,0.13,787,0.6000000000000001,240,5
+2023,6,27,7,30,21.700000000000003,0.92,0.059000000000000004,0.62,68,863,478,0,0,-5.1000000000000005,68,863,0,478,0.315,16.1,61.620000000000005,0.91,0.13,787,0.6000000000000001,236,5.300000000000001
+2023,6,27,8,0,22.900000000000002,0.93,0.058,0.62,73,904,579,0,0,-7.1000000000000005,73,904,0,579,0.314,12.92,55.95,0.91,0.13,787,0.6000000000000001,233,5.7
+2023,6,27,8,30,23.700000000000003,0.93,0.058,0.62,77,934,674,0,0,-7.1000000000000005,77,934,0,674,0.312,12.31,50.26,0.91,0.13,787,0.6000000000000001,230,5.800000000000001
+2023,6,27,9,0,24.5,0.93,0.058,0.62,81,956,762,0,0,-7.5,81,956,0,762,0.311,11.39,44.58,0.91,0.13,787,0.6000000000000001,227,5.9
+2023,6,27,9,30,25.200000000000003,0.93,0.058,0.62,83,974,840,0,0,-7.5,83,974,0,840,0.309,10.93,38.980000000000004,0.91,0.13,787,0.6000000000000001,226,6
+2023,6,27,10,0,25.900000000000002,0.92,0.057,0.62,86,987,909,0,0,-7.800000000000001,86,987,0,909,0.308,10.24,33.52,0.91,0.13,787,0.6000000000000001,224,6.1000000000000005
+2023,6,27,10,30,26.5,0.92,0.057,0.62,85,1001,966,0,0,-7.800000000000001,85,1001,0,966,0.306,9.88,28.35,0.91,0.13,787,0.6000000000000001,223,6.1000000000000005
+2023,6,27,11,0,27.1,0.73,0.047,0.62,84,1013,1012,0,0,-8.1,84,1013,0,1012,0.305,9.27,23.68,0.91,0.13,787,0.6000000000000001,223,6.2
+2023,6,27,11,30,27.6,0.73,0.047,0.62,85,1018,1042,0,0,-8.1,85,1018,0,1042,0.303,9.01,19.900000000000002,0.91,0.13,787,0.6000000000000001,223,6.2
+2023,6,27,12,0,28,0.7000000000000001,0.046,0.62,85,1021,1058,0,0,-8.4,85,1021,0,1058,0.302,8.61,17.61,0.91,0.13,787,0.6000000000000001,223,6.300000000000001
+2023,6,27,12,30,28.3,0.7000000000000001,0.046,0.62,85,1021,1059,0,0,-8.4,85,1021,0,1059,0.301,8.46,17.44,0.91,0.13,787,0.6000000000000001,223,6.300000000000001
+2023,6,27,13,0,28.6,0.68,0.045,0.62,83,1020,1045,0,0,-8.700000000000001,83,1020,0,1045,0.3,8.15,19.43,0.91,0.13,787,0.6000000000000001,224,6.300000000000001
+2023,6,27,13,30,28.700000000000003,0.68,0.045,0.62,83,1016,1018,0,0,-8.700000000000001,83,1016,0,1018,0.3,8.11,23.02,0.91,0.13,787,0.6000000000000001,225,6.2
+2023,6,27,14,0,28.8,0.59,0.041,0.62,80,1011,976,0,0,-8.8,80,1011,0,976,0.299,7.98,27.59,0.91,0.13,786,0.6000000000000001,226,6.1000000000000005
+2023,6,27,14,30,28.6,0.59,0.041,0.62,78,1002,921,0,0,-8.8,78,1002,0,921,0.3,8.07,32.71,0.91,0.13,786,0.6000000000000001,227,6
+2023,6,27,15,0,28.5,0.59,0.041,0.62,76,989,854,0,0,-8.700000000000001,76,989,0,854,0.301,8.2,38.13,0.91,0.13,786,0.6000000000000001,227,5.9
+2023,6,27,15,30,28.1,0.59,0.041,0.62,74,970,775,0,0,-8.700000000000001,74,970,0,775,0.301,8.39,43.71,0.92,0.13,786,0.6000000000000001,228,5.800000000000001
+2023,6,27,16,0,27.8,0.61,0.042,0.62,71,947,688,0,0,-8.5,71,947,0,688,0.302,8.66,49.38,0.92,0.13,786,0.7000000000000001,228,5.6000000000000005
+2023,6,27,16,30,27.200000000000003,0.61,0.042,0.62,68,916,592,0,0,-8.5,68,916,0,592,0.302,8.97,55.08,0.92,0.13,786,0.7000000000000001,229,5.300000000000001
+2023,6,27,17,0,26.700000000000003,0.65,0.044,0.62,64,879,493,0,0,-8.3,64,879,0,493,0.303,9.34,60.75,0.92,0.13,786,0.7000000000000001,229,4.9
+2023,6,27,17,30,25.6,0.65,0.044,0.62,59,827,390,0,0,-8.3,59,827,0,390,0.303,9.98,66.38,0.92,0.13,787,0.7000000000000001,230,3.9000000000000004
+2023,6,27,18,0,24.400000000000002,0.7000000000000001,0.047,0.62,53,754,287,0,0,-5.1000000000000005,53,754,0,287,0.304,13.700000000000001,71.91,0.92,0.13,787,0.8,231,2.9000000000000004
+2023,6,27,18,30,22.200000000000003,0.7000000000000001,0.047,0.62,45,647,187,0,0,-5.1000000000000005,45,647,0,187,0.304,15.64,77.32000000000001,0.92,0.13,787,0.8,241,2
+2023,6,27,19,0,19.900000000000002,0.74,0.053,0.62,35,478,97,0,0,0.1,35,478,0,97,0.304,26.580000000000002,82.56,0.93,0.13,787,0.8,251,1.1
+2023,6,27,19,30,18.900000000000002,0.74,0.053,0.62,18,192,26,0,0,0.1,18,192,0,26,0.305,28.28,87.53,0.93,0.13,787,0.8,281,0.9
+2023,6,27,20,0,17.900000000000002,0.77,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.306,30.11,92.59,0.93,0.13,787,0.8,311,0.8
+2023,6,27,20,30,17.400000000000002,0.77,0.055,0.62,0,0,0,0,0,0.1,0,0,0,0,0.306,31.11,97.17,0.93,0.13,788,0.9,334,0.9
+2023,6,27,21,0,16.8,0.8,0.055,0.62,0,0,0,0,0,0.5,0,0,0,0,0.306,33.15,101.41,0.93,0.13,788,0.9,356,1.1
+2023,6,27,21,30,16.6,0.8,0.055,0.62,0,0,0,0,0,0.5,0,0,0,0,0.307,33.58,105.25,0.93,0.13,788,0.9,186,1.5
+2023,6,27,22,0,16.3,0.8200000000000001,0.054,0.62,0,0,0,0,0,1,0,0,0,0,0.307,35.43,108.62,0.92,0.13,788,1,17,2
+2023,6,27,22,30,15.4,0.8200000000000001,0.054,0.62,0,0,0,0,0,1,0,0,0,0,0.307,37.52,111.46000000000001,0.92,0.13,788,1,19,2.1
+2023,6,27,23,0,14.600000000000001,0.84,0.053,0.62,0,0,0,0,0,2.1,0,0,0,0,0.308,42.84,113.68,0.92,0.13,788,1,20,2.3000000000000003
+2023,6,27,23,30,13.8,0.84,0.053,0.62,0,0,0,0,0,2.1,0,0,0,0,0.309,45.11,115.23,0.92,0.13,788,1.1,19,2.1
+2023,6,28,0,0,13.100000000000001,0.89,0.054,0.62,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.31,49.85,116.05,0.92,0.13,788,1.1,17,2
+2023,6,28,0,30,12.700000000000001,0.89,0.054,0.62,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.312,51.17,116.11,0.92,0.13,788,1.1,16,2
+2023,6,28,1,0,12.3,0.96,0.056,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.314,54.65,115.41,0.92,0.13,788,1.1,15,2
+2023,6,28,1,30,12,0.96,0.056,0.62,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.315,55.730000000000004,113.98,0.92,0.13,788,1.1,14,2
+2023,6,28,2,0,11.700000000000001,1.03,0.058,0.62,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.316,58.870000000000005,111.87,0.92,0.13,788,1.2000000000000002,13,2.1
+2023,6,28,2,30,11.4,1.03,0.058,0.62,0,0,0,0,8,3.9000000000000004,0,0,0,0,0.317,60.120000000000005,109.13,0.93,0.13,789,1.2000000000000002,12,2.2
+2023,6,28,3,0,11.200000000000001,1.09,0.062,0.62,0,0,0,0,0,4.4,0,0,0,0,0.317,62.84,105.84,0.93,0.13,789,1.2000000000000002,11,2.3000000000000003
+2023,6,28,3,30,11,1.09,0.062,0.62,0,0,0,0,0,4.4,0,0,0,0,0.318,63.67,102.07000000000001,0.93,0.13,789,1.2000000000000002,11,2.3000000000000003
+2023,6,28,4,0,10.8,1.1300000000000001,0.063,0.62,0,0,0,0,0,4.9,0,0,0,0,0.319,67.1,97.89,0.93,0.13,789,1.2000000000000002,10,2.4000000000000004
+2023,6,28,4,30,11.200000000000001,1.1300000000000001,0.063,0.62,0,0,0,0,0,4.9,0,0,0,0,0.319,65.34,93.36,0.93,0.13,789,1.2000000000000002,12,2.8000000000000003
+2023,6,28,5,0,11.700000000000001,1.16,0.062,0.62,14,135,18,6,3,5.800000000000001,10,0,86,10,0.319,66.98,88.3,0.93,0.13,790,1.2000000000000002,13,3.1
+2023,6,28,5,30,13.100000000000001,1.16,0.062,0.62,33,420,81,3,0,5.800000000000001,45,175,43,65,0.319,61.11,83.4,0.93,0.13,790,1.3,19,3.5
+2023,6,28,6,0,14.5,1.18,0.064,0.62,46,588,166,0,0,6.2,63,406,0,146,0.319,57.44,78.19,0.93,0.13,790,1.3,24,4
+2023,6,28,6,30,16,1.18,0.064,0.62,55,696,261,0,0,6.2,58,680,0,259,0.318,52.18,72.81,0.93,0.13,790,1.3,30,4.1000000000000005
+2023,6,28,7,0,17.400000000000002,1.19,0.065,0.62,62,771,360,0,0,5.5,81,696,0,350,0.318,45.54,67.29,0.93,0.13,790,1.3,35,4.1000000000000005
+2023,6,28,7,30,18.6,1.19,0.065,0.62,69,825,460,0,3,5.5,152,587,0,430,0.318,42.24,61.68,0.93,0.13,790,1.3,42,3.7
+2023,6,28,8,0,19.700000000000003,1.19,0.066,0.62,75,865,558,0,0,4.800000000000001,117,763,0,543,0.318,37.63,56.02,0.93,0.13,790,1.3,48,3.2
+2023,6,28,8,30,20.8,1.19,0.066,0.62,79,896,651,0,0,4.800000000000001,193,629,0,595,0.318,35.160000000000004,50.32,0.93,0.13,790,1.3,57,2.6
+2023,6,28,9,0,22,1.19,0.066,0.62,82,920,737,0,8,3.9000000000000004,218,615,0,656,0.317,30.59,44.65,0.93,0.13,790,1.3,65,2
+2023,6,28,9,30,23,1.19,0.066,0.62,86,938,815,0,8,3.9000000000000004,258,574,0,704,0.316,28.8,39.04,0.93,0.13,790,1.3,82,1.5
+2023,6,28,10,0,24,1.19,0.067,0.62,89,952,882,0,0,2.9000000000000004,173,814,0,851,0.315,25.2,33.59,0.93,0.13,790,1.3,100,1.1
+2023,6,28,10,30,24.8,1.19,0.067,0.62,89,967,939,0,0,2.9000000000000004,218,756,0,883,0.315,24.02,28.42,0.93,0.13,790,1.3,132,1.1
+2023,6,28,11,0,25.6,1.1,0.054,0.62,86,981,984,0,0,1.8,86,981,0,984,0.314,21.28,23.740000000000002,0.93,0.13,790,1.3,165,1.1
+2023,6,28,11,30,26,1.1,0.054,0.62,87,985,1013,0,0,1.8,97,965,0,1004,0.315,20.76,19.96,0.93,0.13,789,1.3,180,1.4000000000000001
+2023,6,28,12,0,26.400000000000002,1.07,0.055,0.62,88,988,1029,0,0,0.7000000000000001,138,897,0,993,0.315,18.75,17.66,0.93,0.13,789,1.2000000000000002,194,1.7000000000000002
+2023,6,28,12,30,26.8,1.07,0.055,0.62,89,988,1031,0,0,0.7000000000000001,166,858,0,984,0.316,18.32,17.47,0.93,0.13,789,1.2000000000000002,200,2
+2023,6,28,13,0,27.200000000000003,1.04,0.056,0.62,87,987,1018,0,0,-0.4,215,780,0,950,0.318,16.47,19.45,0.93,0.13,789,1.2000000000000002,205,2.3000000000000003
+2023,6,28,13,30,27.5,1.04,0.056,0.62,86,986,993,0,0,-0.4,153,877,0,960,0.319,16.16,23.03,0.93,0.13,788,1.2000000000000002,211,2.4000000000000004
+2023,6,28,14,0,27.900000000000002,0.78,0.046,0.62,82,983,953,0,0,-1.7000000000000002,82,983,0,953,0.321,14.4,27.59,0.93,0.13,788,1.1,217,2.5
+2023,6,28,14,30,27.900000000000002,0.78,0.046,0.62,80,974,900,0,0,-1.7000000000000002,102,905,0,864,0.322,14.4,32.7,0.92,0.13,788,1.1,222,2.6
+2023,6,28,15,0,28,0.78,0.046,0.62,77,963,835,0,0,-2.9000000000000004,95,927,14,824,0.324,13.1,38.12,0.92,0.13,788,1.1,227,2.7
+2023,6,28,15,30,27.700000000000003,0.78,0.046,0.62,75,946,759,0,0,-2.9000000000000004,88,918,0,752,0.325,13.33,43.7,0.92,0.13,788,1.1,234,2.7
+2023,6,28,16,0,27.400000000000002,0.81,0.047,0.62,72,924,674,0,0,-3.8000000000000003,145,739,14,626,0.327,12.700000000000001,49.370000000000005,0.92,0.13,788,1.1,241,2.7
+2023,6,28,16,30,26.8,0.81,0.047,0.62,69,895,581,0,7,-3.8000000000000003,225,406,7,457,0.327,13.16,55.07,0.92,0.13,788,1,251,2.6
+2023,6,28,17,0,26.200000000000003,0.84,0.049,0.62,64,857,483,0,7,-4.1000000000000005,188,291,18,330,0.328,13.280000000000001,60.74,0.92,0.13,788,1,262,2.4000000000000004
+2023,6,28,17,30,25.1,0.84,0.049,0.62,60,807,383,0,8,-4.1000000000000005,124,479,18,316,0.328,14.17,66.37,0.92,0.13,788,1,285,2.3000000000000003
+2023,6,28,18,0,23.900000000000002,0.87,0.049,0.62,53,738,282,0,8,-1.2000000000000002,90,406,32,216,0.328,18.96,71.9,0.92,0.13,788,1,308,2.3000000000000003
+2023,6,28,18,30,21.900000000000002,0.87,0.049,0.62,44,640,185,0,3,-1.2000000000000002,79,425,14,172,0.328,21.42,77.31,0.92,0.13,789,1.1,322,2.9000000000000004
+2023,6,28,19,0,19.8,0.92,0.047,0.62,33,487,96,2,0,2.7,50,295,36,88,0.329,32.13,82.56,0.92,0.13,789,1.1,336,3.5
+2023,6,28,19,30,18.3,0.92,0.047,0.62,17,203,26,2,0,2.7,18,127,25,23,0.328,35.32,87.53,0.92,0.13,790,1.1,340,3.9000000000000004
+2023,6,28,20,0,16.8,0.99,0.048,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.328,42.31,92.59,0.92,0.13,790,1.2000000000000002,344,4.3
+2023,6,28,20,30,15.9,0.99,0.048,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.327,44.85,97.17,0.92,0.13,791,1.3,346,4.4
+2023,6,28,21,0,15.100000000000001,1.05,0.051000000000000004,0.62,0,0,0,0,0,4.9,0,0,0,0,0.327,50.47,101.42,0.92,0.13,791,1.3,347,4.4
+2023,6,28,21,30,14.700000000000001,1.05,0.051000000000000004,0.62,0,0,0,0,3,4.9,0,0,0,0,0.326,51.78,105.26,0.92,0.13,791,1.3,350,4.3
+2023,6,28,22,0,14.200000000000001,1.09,0.054,0.62,0,0,0,0,0,5.5,0,0,0,0,0.325,55.76,108.65,0.92,0.13,791,1.4000000000000001,352,4.2
+2023,6,28,22,30,13.8,1.09,0.054,0.62,0,0,0,0,0,5.5,0,0,0,0,0.325,57.230000000000004,111.49000000000001,0.92,0.13,791,1.4000000000000001,354,4
+2023,6,28,23,0,13.4,1.12,0.057,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.324,59.85,113.72,0.92,0.13,792,1.4000000000000001,356,3.8000000000000003
+2023,6,28,23,30,13.100000000000001,1.12,0.057,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.323,61.03,115.27,0.92,0.13,792,1.4000000000000001,358,3.7
+2023,6,29,0,0,12.700000000000001,1.17,0.059000000000000004,0.62,0,0,0,0,0,5.9,0,0,0,0,0.323,63.26,116.09,0.92,0.13,792,1.4000000000000001,360,3.5
+2023,6,29,0,30,12.3,1.17,0.059000000000000004,0.62,0,0,0,0,3,5.9,0,0,0,0,0.322,64.85,116.16,0.92,0.13,791,1.4000000000000001,181,3.3000000000000003
+2023,6,29,1,0,12,1.21,0.061,0.62,0,0,0,0,3,6,0,0,0,0,0.321,66.72,115.47,0.92,0.13,791,1.4000000000000001,1,3.2
+2023,6,29,1,30,11.5,1.21,0.061,0.62,0,0,0,0,5,6,0,0,0,0,0.321,68.96000000000001,114.04,0.92,0.13,791,1.4000000000000001,1,2.8000000000000003
+2023,6,29,2,0,11.100000000000001,1.25,0.063,0.62,0,0,0,0,3,6.1000000000000005,0,0,0,0,0.321,71.35000000000001,111.93,0.92,0.13,791,1.4000000000000001,1,2.4000000000000004
+2023,6,29,2,30,10.700000000000001,1.25,0.063,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.321,73.27,109.19,0.92,0.13,791,1.3,1,2.1
+2023,6,29,3,0,10.3,1.27,0.066,0.62,0,0,0,0,0,6.2,0,0,0,0,0.322,75.74,105.9,0.92,0.13,791,1.3,1,1.8
+2023,6,29,3,30,10,1.27,0.066,0.62,0,0,0,0,0,6.2,0,0,0,0,0.322,77.27,102.13,0.92,0.13,791,1.3,1,1.7000000000000002
+2023,6,29,4,0,9.700000000000001,1.29,0.069,0.62,0,0,0,0,5,6.300000000000001,0,0,0,0,0.323,79.51,97.96000000000001,0.92,0.13,792,1.3,2,1.6
+2023,6,29,4,30,10.4,1.29,0.069,0.62,0,0,0,0,5,6.300000000000001,0,0,0,0,0.323,75.88,93.43,0.92,0.13,792,1.3,3,1.9000000000000001
+2023,6,29,5,0,11,1.3,0.07200000000000001,0.62,13,126,17,6,5,6.5,9,0,86,9,0.323,73.89,88.36,0.92,0.13,792,1.3,4,2.1
+2023,6,29,5,30,12.700000000000001,1.3,0.07200000000000001,0.62,33,400,79,3,0,6.5,42,192,46,64,0.324,66.08,83.46000000000001,0.92,0.13,792,1.3,10,2.5
+2023,6,29,6,0,14.3,1.31,0.077,0.62,47,565,162,0,0,6.5,50,547,0,161,0.324,59.57,78.26,0.92,0.13,792,1.3,16,2.9000000000000004
+2023,6,29,6,30,16.1,1.31,0.077,0.62,58,672,256,0,0,6.5,58,672,0,256,0.324,53.09,72.88,0.92,0.13,792,1.3,20,2.8000000000000003
+2023,6,29,7,0,17.900000000000002,1.31,0.085,0.62,69,744,355,0,0,5.800000000000001,69,744,0,355,0.325,44.910000000000004,67.36,0.93,0.13,792,1.3,24,2.7
+2023,6,29,7,30,19.3,1.31,0.085,0.62,77,797,454,0,0,5.800000000000001,77,797,0,454,0.324,41.160000000000004,61.75,0.93,0.13,792,1.3,26,2.3000000000000003
+2023,6,29,8,0,20.700000000000003,1.3,0.092,0.62,84,835,550,0,0,4.6000000000000005,90,823,7,549,0.323,34.83,56.08,0.93,0.13,792,1.3,28,1.9000000000000001
+2023,6,29,8,30,21.700000000000003,1.3,0.092,0.62,90,866,642,0,3,4.6000000000000005,212,628,7,612,0.322,32.77,50.39,0.93,0.13,792,1.3,31,1.5
+2023,6,29,9,0,22.8,1.3,0.097,0.62,96,889,728,0,8,3.5,268,515,0,634,0.321,28.25,44.71,0.9400000000000001,0.13,792,1.4000000000000001,34,1.1
+2023,6,29,9,30,23.700000000000003,1.3,0.097,0.62,101,909,806,0,8,3.4000000000000004,290,487,0,668,0.32,26.73,39.11,0.9400000000000001,0.13,791,1.4000000000000001,37,0.9
+2023,6,29,10,0,24.6,1.3,0.097,0.62,103,925,873,0,7,2.4000000000000004,297,221,0,481,0.319,23.59,33.660000000000004,0.9400000000000001,0.13,791,1.4000000000000001,40,0.6000000000000001
+2023,6,29,10,30,25.400000000000002,1.3,0.097,0.62,101,943,930,0,8,2.4000000000000004,384,99,0,471,0.319,22.490000000000002,28.490000000000002,0.93,0.13,791,1.4000000000000001,50,0.5
+2023,6,29,11,0,26.1,1.32,0.078,0.62,98,960,976,0,8,1.6,366,365,7,700,0.318,20.26,23.81,0.93,0.13,791,1.4000000000000001,60,0.30000000000000004
+2023,6,29,11,30,26.700000000000003,1.32,0.078,0.62,98,965,1005,0,8,1.6,328,420,0,723,0.318,19.56,20.03,0.93,0.13,791,1.4000000000000001,104,0.30000000000000004
+2023,6,29,12,0,27.200000000000003,1.31,0.079,0.62,100,967,1021,0,0,0.8,226,768,0,958,0.318,18,17.72,0.93,0.13,790,1.4000000000000001,149,0.30000000000000004
+2023,6,29,12,30,27.5,1.31,0.079,0.62,101,966,1022,0,0,0.8,255,663,0,887,0.318,17.69,17.52,0.9400000000000001,0.13,790,1.4000000000000001,165,0.5
+2023,6,29,13,0,27.8,1.3,0.084,0.62,101,962,1008,0,8,0.1,380,302,0,665,0.318,16.53,19.48,0.9400000000000001,0.13,790,1.4000000000000001,182,0.7000000000000001
+2023,6,29,13,30,27.700000000000003,1.3,0.084,0.62,103,953,980,0,8,0.1,236,685,0,866,0.319,16.63,23.05,0.9400000000000001,0.13,790,1.4000000000000001,201,0.8
+2023,6,29,14,0,27.700000000000003,1.29,0.095,0.62,105,941,939,0,6,-0.6000000000000001,307,535,0,781,0.319,15.8,27.6,0.9400000000000001,0.13,789,1.3,220,0.8
+2023,6,29,14,30,27.400000000000002,1.29,0.095,0.62,103,929,885,0,6,-0.6000000000000001,407,256,0,622,0.32,16.07,32.7,0.9400000000000001,0.13,789,1.3,256,1.1
+2023,6,29,15,0,27.1,1.29,0.097,0.62,101,913,819,0,6,-0.9,374,298,0,608,0.321,16.02,38.11,0.9500000000000001,0.13,789,1.3,292,1.4000000000000001
+2023,6,29,15,30,26.5,1.29,0.097,0.62,97,893,743,0,6,-0.9,362,285,7,568,0.322,16.6,43.7,0.9400000000000001,0.13,789,1.4000000000000001,306,2.3000000000000003
+2023,6,29,16,0,25.900000000000002,1.29,0.095,0.62,92,869,658,0,9,-0.30000000000000004,325,120,0,403,0.324,17.86,49.36,0.9400000000000001,0.13,789,1.4000000000000001,321,3.2
+2023,6,29,16,30,25.900000000000002,1.29,0.095,0.62,87,837,566,0,9,-0.30000000000000004,220,39,0,242,0.324,17.86,55.06,0.9400000000000001,0.13,789,1.4000000000000001,321,3.2
+2023,6,29,17,0,23.5,1.31,0.093,0.62,80,795,469,0,9,1.5,132,7,0,135,0.326,23.54,60.74,0.9500000000000001,0.13,790,1.5,333,5.300000000000001
+2023,6,29,17,30,21.8,1.31,0.093,0.62,74,736,369,0,9,1.5,143,19,0,151,0.326,26.09,66.36,0.9500000000000001,0.13,790,1.5,336,5.9
+2023,6,29,18,0,20,1.35,0.096,0.62,65,658,269,0,9,4.2,90,14,0,94,0.327,35.2,71.9,0.9500000000000001,0.13,791,1.6,340,6.4
+2023,6,29,18,30,18.3,1.35,0.096,0.62,54,547,174,0,6,4.1000000000000005,66,218,29,114,0.327,39.12,77.31,0.9500000000000001,0.13,791,1.6,344,6.300000000000001
+2023,6,29,19,0,16.7,1.3800000000000001,0.099,0.62,40,386,90,5,6,6.2,52,136,96,70,0.327,49.800000000000004,82.56,0.9500000000000001,0.13,792,1.7000000000000002,348,6.2
+2023,6,29,19,30,15.9,1.3800000000000001,0.099,0.62,18,143,24,7,6,6.2,16,1,100,16,0.328,52.4,87.53,0.9500000000000001,0.13,792,1.7000000000000002,174,5.6000000000000005
+2023,6,29,20,0,15.200000000000001,1.4000000000000001,0.101,0.62,0,0,0,1,6,7,0,0,14,0,0.328,57.85,92.60000000000001,0.9500000000000001,0.13,793,1.7000000000000002,0,5
+2023,6,29,20,30,14.8,1.4000000000000001,0.101,0.62,0,0,0,0,6,7,0,0,0,0,0.329,59.36,97.19,0.9500000000000001,0.13,793,1.7000000000000002,5,4.4
+2023,6,29,21,0,14.5,1.42,0.1,0.62,0,0,0,0,7,7.4,0,0,0,0,0.329,62.38,101.43,0.9500000000000001,0.13,793,1.7000000000000002,10,3.8000000000000003
+2023,6,29,21,30,14.200000000000001,1.42,0.1,0.62,0,0,0,0,7,7.4,0,0,0,0,0.329,63.6,105.29,0.9500000000000001,0.13,793,1.8,11,3.5
+2023,6,29,22,0,13.9,1.43,0.107,0.62,0,0,0,0,6,7.7,0,0,0,0,0.329,66.19,108.67,0.9500000000000001,0.13,793,1.8,11,3.1
+2023,6,29,22,30,13.600000000000001,1.43,0.107,0.62,0,0,0,0,6,7.7,0,0,0,0,0.329,67.48,111.52,0.9500000000000001,0.13,793,1.8,10,3
+2023,6,29,23,0,13.3,1.43,0.113,0.62,0,0,0,0,7,7.9,0,0,0,0,0.328,70.03,113.76,0.96,0.13,793,1.8,8,2.9000000000000004
+2023,6,29,23,30,13.100000000000001,1.43,0.113,0.62,0,0,0,0,7,7.9,0,0,0,0,0.328,70.95,115.32000000000001,0.96,0.13,793,1.8,10,2.9000000000000004
+2023,6,30,0,0,12.9,1.44,0.11800000000000001,0.62,0,0,0,0,8,8.3,0,0,0,0,0.328,73.42,116.15,0.96,0.13,793,1.8,11,2.9000000000000004
+2023,6,30,0,30,12.600000000000001,1.44,0.11800000000000001,0.62,0,0,0,0,8,8.3,0,0,0,0,0.328,74.88,116.22,0.96,0.13,793,1.8,14,2.8000000000000003
+2023,6,30,1,0,12.4,1.44,0.12,0.62,0,0,0,0,7,8.6,0,0,0,0,0.328,77.52,115.53,0.96,0.13,793,1.8,16,2.7
+2023,6,30,1,30,12,1.44,0.12,0.62,0,0,0,0,7,8.6,0,0,0,0,0.328,79.58,114.11,0.96,0.13,793,1.8,15,2.5
+2023,6,30,2,0,11.700000000000001,1.46,0.115,0.62,0,0,0,0,7,8.8,0,0,0,0,0.329,82.38,112,0.96,0.13,793,1.8,13,2.3000000000000003
+2023,6,30,2,30,11.5,1.46,0.115,0.62,0,0,0,0,8,8.8,0,0,0,0,0.329,83.48,109.26,0.96,0.13,793,1.8,8,2.3000000000000003
+2023,6,30,3,0,11.3,1.47,0.112,0.62,0,0,0,0,8,8.9,0,0,0,0,0.33,85.41,105.98,0.9500000000000001,0.13,793,1.8,3,2.2
+2023,6,30,3,30,11.100000000000001,1.47,0.112,0.62,0,0,0,0,0,9,0,0,0,0,0.331,86.66,102.21000000000001,0.96,0.13,794,1.8,2,2.3000000000000003
+2023,6,30,4,0,10.9,1.49,0.109,0.62,0,0,0,0,0,9.1,0,0,0,0,0.332,88.38,98.03,0.96,0.13,794,1.8,0,2.3000000000000003
+2023,6,30,4,30,11.200000000000001,1.49,0.109,0.62,0,0,0,0,0,9.1,0,0,0,0,0.333,86.65,93.5,0.96,0.13,794,1.8,2,2.6
+2023,6,30,5,0,11.600000000000001,1.5,0.107,0.62,13,96,16,0,0,9.200000000000001,13,96,0,16,0.334,85,88.43,0.96,0.13,794,1.8,4,2.9000000000000004
+2023,6,30,5,30,12.600000000000001,1.5,0.107,0.62,37,342,75,0,0,9.200000000000001,37,342,0,75,0.335,79.60000000000001,83.54,0.96,0.13,794,1.8,8,3.4000000000000004
+2023,6,30,6,0,13.600000000000001,1.5,0.1,0.62,52,516,156,0,0,8.8,52,516,0,156,0.336,72.79,78.33,0.96,0.13,794,1.8,12,3.8000000000000003
+2023,6,30,6,30,14.8,1.5,0.1,0.62,63,635,249,0,0,8.8,63,635,0,249,0.336,67.37,72.95,0.9500000000000001,0.13,794,1.8,12,4
+2023,6,30,7,0,16,1.52,0.092,0.62,70,721,347,0,0,7.6000000000000005,97,609,0,331,0.337,57.54,67.43,0.9500000000000001,0.13,794,1.8,12,4.1000000000000005
+2023,6,30,7,30,16.900000000000002,1.52,0.092,0.62,77,781,446,0,0,7.6000000000000005,113,673,0,431,0.337,54.35,61.82,0.9500000000000001,0.13,794,1.8,12,4
+2023,6,30,8,0,17.8,1.53,0.08700000000000001,0.62,82,828,543,0,0,6.7,82,828,0,543,0.337,48.07,56.15,0.9500000000000001,0.13,794,1.8,12,3.9000000000000004
+2023,6,30,8,30,18.5,1.53,0.08700000000000001,0.62,87,861,635,0,0,6.7,87,861,0,635,0.338,46.01,50.46,0.9500000000000001,0.13,794,1.8,11,3.7
+2023,6,30,9,0,19.1,1.53,0.085,0.62,91,888,721,0,0,6,91,888,0,721,0.338,42.36,44.78,0.9500000000000001,0.13,794,1.8,11,3.4000000000000004
+2023,6,30,9,30,19.6,1.53,0.085,0.62,93,909,798,0,0,6,93,909,0,798,0.338,41.07,39.18,0.9500000000000001,0.13,794,1.8,9,3.2
+2023,6,30,10,0,20,1.53,0.083,0.62,96,925,865,0,0,5.5,96,925,0,865,0.338,38.800000000000004,33.730000000000004,0.9500000000000001,0.13,794,1.8,7,3.1
+2023,6,30,10,30,20.5,1.53,0.083,0.62,93,945,923,0,0,5.5,93,945,0,923,0.339,37.62,28.560000000000002,0.9500000000000001,0.13,794,1.7000000000000002,4,2.9000000000000004
+2023,6,30,11,0,20.900000000000002,1.59,0.059000000000000004,0.62,87,964,968,0,0,5.2,127,894,0,944,0.339,35.9,23.89,0.9500000000000001,0.13,794,1.7000000000000002,1,2.7
+2023,6,30,11,30,21.400000000000002,1.59,0.059000000000000004,0.62,87,971,999,0,8,5.2,361,376,0,714,0.339,34.82,20.1,0.9500000000000001,0.13,794,1.7000000000000002,177,2.6
+2023,6,30,12,0,21.900000000000002,1.59,0.055,0.62,87,976,1016,0,7,5,328,82,0,406,0.338,33.14,17.79,0.9500000000000001,0.13,794,1.7000000000000002,353,2.5
+2023,6,30,12,30,22.200000000000003,1.59,0.055,0.62,86,978,1018,0,7,5,392,187,0,570,0.337,32.54,17.57,0.9500000000000001,0.13,794,1.7000000000000002,349,2.5
+2023,6,30,13,0,22.6,1.6,0.053,0.62,85,976,1005,0,8,4.6000000000000005,344,171,0,505,0.336,31.04,19.51,0.9500000000000001,0.13,794,1.7000000000000002,345,2.4000000000000004
+2023,6,30,13,30,22.8,1.6,0.053,0.62,86,970,978,0,8,4.6000000000000005,340,415,0,722,0.333,30.67,23.07,0.9500000000000001,0.13,794,1.7000000000000002,343,2.5
+2023,6,30,14,0,23.1,1.49,0.06,0.62,86,960,937,0,8,4.3,277,578,0,789,0.331,29.400000000000002,27.61,0.9500000000000001,0.13,794,1.6,341,2.6
+2023,6,30,14,30,23.200000000000003,1.49,0.06,0.62,84,951,884,0,0,4.3,172,754,0,806,0.328,29.22,32.7,0.9400000000000001,0.13,794,1.6,343,2.7
+2023,6,30,15,0,23.3,1.5,0.057,0.62,80,940,820,0,0,4,221,642,4,726,0.325,28.42,38.11,0.9400000000000001,0.13,794,1.6,344,2.7
+2023,6,30,15,30,23.200000000000003,1.5,0.057,0.62,78,924,746,0,0,4,85,912,0,744,0.323,28.59,43.69,0.9400000000000001,0.13,794,1.6,348,2.8000000000000003
+2023,6,30,16,0,23.1,1.5,0.054,0.62,74,903,662,0,0,3.7,96,852,0,651,0.321,28.28,49.36,0.9400000000000001,0.13,794,1.6,352,2.8000000000000003
+2023,6,30,16,30,22.900000000000002,1.5,0.054,0.62,69,877,571,0,8,3.7,195,428,11,440,0.32,28.62,55.050000000000004,0.9400000000000001,0.13,794,1.6,178,2.8000000000000003
+2023,6,30,17,0,22.6,1.51,0.051000000000000004,0.62,64,842,476,0,0,3.6,100,692,4,438,0.318,28.78,60.730000000000004,0.9400000000000001,0.13,794,1.6,4,2.8000000000000003
+2023,6,30,17,30,22.1,1.51,0.051000000000000004,0.62,58,796,377,0,3,3.6,118,578,11,350,0.317,29.66,66.36,0.93,0.13,794,1.5,10,2.6
+2023,6,30,18,0,21.5,1.48,0.048,0.62,51,732,278,0,5,3.9000000000000004,122,120,0,159,0.315,31.64,71.9,0.93,0.13,794,1.5,15,2.3000000000000003
+2023,6,30,18,30,19.700000000000003,1.48,0.048,0.62,43,639,183,0,5,3.9000000000000004,53,321,14,124,0.313,35.34,77.31,0.93,0.13,794,1.4000000000000001,23,1.7000000000000002
+2023,6,30,19,0,18,1.44,0.044,0.62,32,495,96,0,0,6.5,32,495,0,96,0.311,46.910000000000004,82.56,0.92,0.13,794,1.4000000000000001,31,1
+2023,6,30,19,30,17,1.44,0.044,0.62,17,219,26,0,0,6.5,17,219,0,26,0.311,49.95,87.54,0.92,0.13,794,1.4000000000000001,40,1.1
+2023,6,30,20,0,16,1.3800000000000001,0.042,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.31,50.64,92.62,0.92,0.13,795,1.3,48,1.1
+2023,6,30,20,30,15.5,1.3800000000000001,0.042,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.311,52.28,97.2,0.91,0.13,795,1.3,56,1.2000000000000002
+2023,6,30,21,0,15,1.33,0.041,0.62,0,0,0,0,0,5.4,0,0,0,0,0.311,52.71,101.46000000000001,0.91,0.13,795,1.2000000000000002,64,1.2000000000000002
+2023,6,30,21,30,14.5,1.33,0.041,0.62,0,0,0,0,0,5.4,0,0,0,0,0.311,54.43,105.32000000000001,0.91,0.13,795,1.2000000000000002,71,1.2000000000000002
+2023,6,30,22,0,14.100000000000001,1.29,0.04,0.62,0,0,0,0,0,5.2,0,0,0,0,0.311,55.14,108.71000000000001,0.91,0.13,795,1.2000000000000002,78,1.2000000000000002
+2023,6,30,22,30,13.700000000000001,1.29,0.04,0.62,0,0,0,0,0,5.2,0,0,0,0,0.31,56.59,111.56,0.91,0.13,795,1.2000000000000002,84,1.2000000000000002
+2023,6,30,23,0,13.3,1.27,0.039,0.62,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.309,57.65,113.8,0.91,0.13,795,1.2000000000000002,91,1.2000000000000002
+2023,6,30,23,30,13,1.27,0.039,0.62,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.308,58.79,115.37,0.91,0.13,795,1.2000000000000002,96,1.2000000000000002
+2023,7,1,0,0,12.700000000000001,1.28,0.039,0.62,0,0,0,0,0,5,0,0,0,0,0.306,59.480000000000004,116.21000000000001,0.91,0.13,795,1.2000000000000002,102,1.2000000000000002
+2023,7,1,0,30,12.5,1.28,0.039,0.62,0,0,0,0,0,5,0,0,0,0,0.305,60.26,116.28,0.91,0.13,795,1.3,107,1.1
+2023,7,1,1,0,12.4,1.31,0.04,0.62,0,0,0,0,0,4.9,0,0,0,0,0.304,60.17,115.60000000000001,0.91,0.13,795,1.3,112,1.1
+2023,7,1,1,30,12.200000000000001,1.31,0.04,0.62,0,0,0,0,0,4.9,0,0,0,0,0.304,60.97,114.18,0.91,0.13,795,1.4000000000000001,116,1
+2023,7,1,2,0,12.100000000000001,1.34,0.041,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.303,60.88,112.07000000000001,0.91,0.13,795,1.4000000000000001,120,0.9
+2023,7,1,2,30,12,1.34,0.041,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.303,61.28,109.34,0.91,0.13,795,1.4000000000000001,122,0.8
+2023,7,1,3,0,11.8,1.35,0.042,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.303,61.54,106.05,0.92,0.13,795,1.5,124,0.7000000000000001
+2023,7,1,3,30,11.600000000000001,1.35,0.042,0.62,0,0,0,0,0,4.7,0,0,0,0,0.304,62.43,102.28,0.92,0.13,796,1.5,122,0.6000000000000001
+2023,7,1,4,0,11.5,1.35,0.042,0.62,0,0,0,0,0,4.5,0,0,0,0,0.304,62.18,98.11,0.92,0.13,796,1.5,120,0.5
+2023,7,1,4,30,11.9,1.35,0.042,0.62,0,0,0,0,0,4.5,0,0,0,0,0.304,60.57,93.58,0.92,0.13,796,1.5,115,0.4
+2023,7,1,5,0,12.4,1.35,0.042,0.62,13,155,17,0,0,5.4,13,155,0,17,0.305,62.21,88.5,0.92,0.13,796,1.5,110,0.30000000000000004
+2023,7,1,5,30,13.9,1.35,0.042,0.62,29,457,80,0,0,5.4,29,457,0,80,0.305,56.43,83.61,0.92,0.13,796,1.5,111,0.5
+2023,7,1,6,0,15.3,1.35,0.042,0.62,40,621,165,0,0,4.800000000000001,40,621,0,165,0.305,49.67,78.41,0.92,0.13,796,1.4000000000000001,112,0.7000000000000001
+2023,7,1,6,30,17.400000000000002,1.35,0.042,0.62,48,726,260,0,0,4.800000000000001,48,726,0,260,0.306,43.480000000000004,73.02,0.92,0.13,796,1.4000000000000001,109,0.5
+2023,7,1,7,0,19.5,1.35,0.041,0.62,54,799,360,0,0,3.9000000000000004,54,799,0,360,0.306,35.7,67.51,0.92,0.13,796,1.4000000000000001,106,0.30000000000000004
+2023,7,1,7,30,20.900000000000002,1.35,0.041,0.62,59,851,460,0,0,3.9000000000000004,59,851,0,460,0.305,32.75,61.9,0.92,0.13,796,1.4000000000000001,215,0.5
+2023,7,1,8,0,22.200000000000003,1.3800000000000001,0.04,0.62,63,890,558,0,0,3.4000000000000004,63,890,0,558,0.304,29.14,56.230000000000004,0.92,0.13,796,1.4000000000000001,325,0.7000000000000001
+2023,7,1,8,30,23.3,1.3800000000000001,0.04,0.62,66,920,651,0,0,3.4000000000000004,66,920,0,651,0.303,27.26,50.53,0.92,0.13,796,1.4000000000000001,311,0.8
+2023,7,1,9,0,24.3,1.41,0.038,0.62,69,944,738,0,0,3.3000000000000003,69,944,0,738,0.301,25.48,44.86,0.91,0.13,796,1.3,298,1
+2023,7,1,9,30,25.1,1.41,0.038,0.62,71,962,816,0,0,3.3000000000000003,71,962,0,816,0.3,24.3,39.26,0.91,0.13,796,1.3,287,1.1
+2023,7,1,10,0,26,1.44,0.036000000000000004,0.62,72,977,884,0,0,3.1,72,977,0,884,0.299,22.69,33.81,0.91,0.13,796,1.3,276,1.2000000000000002
+2023,7,1,10,30,26.700000000000003,1.44,0.036000000000000004,0.62,75,986,940,0,0,3.1,75,986,0,940,0.298,21.78,28.64,0.91,0.13,796,1.3,270,1.4000000000000001
+2023,7,1,11,0,27.400000000000002,1.3900000000000001,0.039,0.62,77,992,983,0,0,2.7,77,992,0,983,0.297,20.400000000000002,23.97,0.91,0.13,795,1.3,264,1.5
+2023,7,1,11,30,28,1.3900000000000001,0.039,0.62,77,998,1014,0,0,2.7,136,875,0,957,0.297,19.7,20.18,0.91,0.13,795,1.3,261,1.7000000000000002
+2023,7,1,12,0,28.6,1.3900000000000001,0.039,0.62,78,1000,1030,0,0,2.3000000000000003,190,739,0,893,0.296,18.490000000000002,17.87,0.91,0.13,795,1.3,258,1.8
+2023,7,1,12,30,28.900000000000002,1.3900000000000001,0.039,0.62,77,1001,1031,0,0,2.3000000000000003,151,805,0,918,0.295,18.17,17.63,0.91,0.13,795,1.3,257,1.9000000000000001
+2023,7,1,13,0,29.3,1.3900000000000001,0.038,0.62,77,999,1018,0,3,1.9000000000000001,345,502,0,818,0.294,17.17,19.56,0.91,0.13,794,1.3,257,2
+2023,7,1,13,30,29.5,1.3900000000000001,0.038,0.62,78,992,991,0,0,1.9000000000000001,216,646,0,810,0.294,16.97,23.09,0.91,0.13,794,1.3,257,2.1
+2023,7,1,14,0,29.700000000000003,1.25,0.047,0.62,81,981,950,0,3,1.4000000000000001,302,445,0,696,0.294,16.18,27.62,0.91,0.13,794,1.3,257,2.2
+2023,7,1,14,30,29.700000000000003,1.25,0.047,0.62,79,971,896,0,3,1.3,331,344,0,620,0.295,16.16,32.71,0.91,0.13,793,1.3,261,2.2
+2023,7,1,15,0,29.6,1.23,0.048,0.62,76,958,830,0,3,0.7000000000000001,314,306,0,555,0.295,15.530000000000001,38.12,0.91,0.13,793,1.3,265,2.3000000000000003
+2023,7,1,15,30,29.400000000000002,1.23,0.048,0.62,74,941,754,0,0,0.7000000000000001,120,859,0,741,0.296,15.71,43.7,0.91,0.13,793,1.3,269,2.3000000000000003
+2023,7,1,16,0,29.200000000000003,1.23,0.048,0.62,71,919,670,0,0,0.1,91,861,0,652,0.296,15.22,49.36,0.91,0.13,793,1.3,274,2.3000000000000003
+2023,7,1,16,30,28.700000000000003,1.23,0.048,0.62,68,891,578,0,0,0.1,102,803,0,562,0.297,15.66,55.06,0.91,0.13,793,1.3,279,2.2
+2023,7,1,17,0,28.200000000000003,1.22,0.048,0.62,63,854,480,0,3,-0.30000000000000004,160,567,7,437,0.297,15.67,60.74,0.91,0.13,793,1.3,285,2.1
+2023,7,1,17,30,27.3,1.22,0.048,0.62,57,805,380,0,3,-0.30000000000000004,131,552,7,352,0.298,16.51,66.36,0.91,0.13,793,1.3,290,1.8
+2023,7,1,18,0,26.3,1.23,0.047,0.62,51,739,281,0,0,1.8,58,703,7,276,0.298,20.38,71.9,0.91,0.13,793,1.3,296,1.4000000000000001
+2023,7,1,18,30,24.200000000000003,1.23,0.047,0.62,43,643,184,0,0,1.8,47,624,0,184,0.299,23.080000000000002,77.32000000000001,0.91,0.13,793,1.3,299,1
+2023,7,1,19,0,22.1,1.25,0.045,0.62,32,494,96,0,0,5.4,32,494,0,96,0.299,33.8,82.57000000000001,0.91,0.13,793,1.3,303,0.7000000000000001
+2023,7,1,19,30,21.1,1.25,0.045,0.62,17,214,26,2,0,5.4,17,192,29,25,0.299,35.97,87.56,0.91,0.13,794,1.3,306,0.7000000000000001
+2023,7,1,20,0,20.200000000000003,1.29,0.043000000000000003,0.62,0,0,0,1,3,4.2,0,0,11,0,0.299,35,92.63,0.91,0.13,794,1.3,309,0.7000000000000001
+2023,7,1,20,30,19.700000000000003,1.29,0.043000000000000003,0.62,0,0,0,0,3,4.2,0,0,0,0,0.299,36.1,97.23,0.91,0.13,794,1.3,313,0.7000000000000001
+2023,7,1,21,0,19.200000000000003,1.34,0.041,0.62,0,0,0,0,3,4,0,0,0,0,0.298,36.49,101.49000000000001,0.91,0.13,794,1.4000000000000001,317,0.8
+2023,7,1,21,30,18.7,1.34,0.041,0.62,0,0,0,0,3,4,0,0,0,0,0.297,37.65,105.35000000000001,0.91,0.13,794,1.4000000000000001,323,0.8
+2023,7,1,22,0,18.2,1.36,0.04,0.62,0,0,0,0,5,4.1000000000000005,0,0,0,0,0.296,39.13,108.75,0.91,0.13,795,1.5,329,0.9
+2023,7,1,22,30,17.8,1.36,0.04,0.62,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.295,40.13,111.61,0.91,0.13,795,1.5,335,0.9
+2023,7,1,23,0,17.3,1.34,0.038,0.62,0,0,0,0,3,4.5,0,0,0,0,0.294,42.74,113.86,0.9,0.13,795,1.5,341,1
+2023,7,1,23,30,16.8,1.34,0.038,0.62,0,0,0,0,5,4.5,0,0,0,0,0.294,44.11,115.43,0.9,0.13,795,1.5,348,1
+2023,7,2,0,0,16.3,1.28,0.037,0.62,0,0,0,0,3,4.9,0,0,0,0,0.293,46.660000000000004,116.27,0.9,0.13,795,1.4000000000000001,355,1.1
+2023,7,2,0,30,15.8,1.28,0.037,0.62,0,0,0,0,3,4.800000000000001,0,0,0,0,0.293,48.11,116.36,0.9,0.13,794,1.4000000000000001,181,1
+2023,7,2,1,0,15.3,1.19,0.038,0.62,0,0,0,0,0,5.2,0,0,0,0,0.293,50.79,115.68,0.9,0.13,794,1.4000000000000001,8,1
+2023,7,2,1,30,14.9,1.19,0.038,0.62,0,0,0,0,0,5.2,0,0,0,0,0.293,52.11,114.26,0.9,0.13,794,1.4000000000000001,13,1
+2023,7,2,2,0,14.5,1.08,0.039,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.294,54.03,112.16,0.9,0.13,794,1.3,18,1
+2023,7,2,2,30,14.200000000000001,1.08,0.039,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.295,55.09,109.42,0.9,0.13,794,1.3,22,1
+2023,7,2,3,0,13.8,0.98,0.042,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.295,56.38,106.14,0.9,0.13,794,1.3,26,1
+2023,7,2,3,30,13.600000000000001,0.98,0.042,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.296,57.120000000000005,102.37,0.91,0.13,794,1.3,29,1
+2023,7,2,4,0,13.3,0.9,0.047,0.62,0,0,0,0,0,5.2,0,0,0,0,0.297,57.85,98.19,0.91,0.13,794,1.3,33,1
+2023,7,2,4,30,13.8,0.9,0.047,0.62,0,0,0,0,0,5.2,0,0,0,0,0.299,56.08,93.66,0.91,0.13,795,1.3,38,0.8
+2023,7,2,5,0,14.3,0.87,0.055,0.62,13,124,16,4,5,6,8,5,61,8,0.3,57.370000000000005,88.58,0.91,0.13,795,1.4000000000000001,43,0.7000000000000001
+2023,7,2,5,30,15.9,0.87,0.055,0.62,32,402,76,5,5,6,38,4,71,38,0.301,51.78,83.69,0.92,0.13,795,1.4000000000000001,51,0.9
+2023,7,2,6,0,17.5,0.87,0.063,0.62,46,568,159,0,3,5.5,89,127,0,114,0.302,45.34,78.49,0.92,0.13,795,1.5,58,1.1
+2023,7,2,6,30,19.8,0.87,0.063,0.62,56,678,253,0,5,5.5,97,106,0,128,0.302,39.29,73.10000000000001,0.92,0.13,795,1.5,207,1.1
+2023,7,2,7,0,22.1,0.88,0.068,0.62,64,751,350,0,0,4.4,108,587,0,332,0.302,31.48,67.58,0.92,0.13,795,1.5,355,1.1
+2023,7,2,7,30,23.5,0.88,0.068,0.62,70,808,450,0,0,4.4,70,808,0,450,0.301,28.93,61.97,0.92,0.13,795,1.5,336,1.6
+2023,7,2,8,0,24.900000000000002,0.87,0.067,0.62,76,851,548,0,0,3.9000000000000004,76,851,0,548,0.3,25.740000000000002,56.300000000000004,0.92,0.13,795,1.5,318,2.2
+2023,7,2,8,30,25.8,0.87,0.067,0.62,80,884,641,0,0,3.9000000000000004,80,884,0,641,0.299,24.400000000000002,50.61,0.92,0.13,795,1.5,309,2.4000000000000004
+2023,7,2,9,0,26.700000000000003,0.86,0.065,0.62,84,910,728,0,0,3.7,129,815,0,706,0.297,22.8,44.94,0.92,0.13,794,1.5,301,2.7
+2023,7,2,9,30,27.5,0.86,0.065,0.62,86,932,807,0,0,3.7,103,905,0,803,0.296,21.76,39.33,0.92,0.13,794,1.4000000000000001,297,3
+2023,7,2,10,0,28.3,0.85,0.063,0.62,88,949,876,0,0,3,88,949,0,876,0.294,19.72,33.89,0.92,0.13,794,1.4000000000000001,293,3.2
+2023,7,2,10,30,29,0.85,0.063,0.62,86,967,934,0,0,3,128,888,0,907,0.293,18.94,28.72,0.92,0.13,794,1.4000000000000001,291,3.5
+2023,7,2,11,0,29.6,1,0.048,0.62,83,983,981,0,3,2,274,561,0,786,0.291,17.02,24.05,0.92,0.13,794,1.3,289,3.7
+2023,7,2,11,30,30.1,1,0.048,0.62,84,989,1012,0,3,2,276,628,0,865,0.29,16.52,20.26,0.92,0.13,793,1.3,289,3.8000000000000003
+2023,7,2,12,0,30.6,0.99,0.047,0.62,84,993,1029,0,0,0.9,84,993,0,1029,0.289,14.89,17.95,0.92,0.13,793,1.3,289,4
+2023,7,2,12,30,31,0.99,0.047,0.62,83,996,1032,0,0,0.9,255,685,0,908,0.28800000000000003,14.56,17.7,0.91,0.13,793,1.2000000000000002,291,4
+2023,7,2,13,0,31.3,1,0.045,0.62,82,995,1019,0,3,-0.1,286,673,0,920,0.28700000000000003,13.290000000000001,19.6,0.91,0.13,792,1.2000000000000002,293,4.1000000000000005
+2023,7,2,13,30,31.400000000000002,1,0.045,0.62,83,990,993,0,0,-0.1,158,878,0,965,0.28600000000000003,13.22,23.13,0.91,0.13,792,1.2000000000000002,296,4.1000000000000005
+2023,7,2,14,0,31.5,0.92,0.05,0.62,84,981,953,0,0,-1,188,729,0,834,0.28500000000000003,12.290000000000001,27.64,0.92,0.13,792,1.2000000000000002,299,4.1000000000000005
+2023,7,2,14,30,31.400000000000002,0.92,0.05,0.62,81,973,900,0,0,-1,168,809,0,849,0.28400000000000003,12.36,32.730000000000004,0.92,0.13,792,1.2000000000000002,304,4.1000000000000005
+2023,7,2,15,0,31.3,0.92,0.049,0.62,79,961,835,0,0,-1.8,79,961,0,835,0.28300000000000003,11.71,38.13,0.92,0.13,791,1.1,309,4.1000000000000005
+2023,7,2,15,30,31,0.92,0.049,0.62,76,945,759,0,0,-1.8,124,829,0,723,0.28200000000000003,11.92,43.7,0.92,0.13,791,1.1,313,4.1000000000000005
+2023,7,2,16,0,30.6,0.9500000000000001,0.047,0.62,72,925,674,0,0,-2.4000000000000004,72,925,0,674,0.281,11.67,49.370000000000005,0.91,0.13,791,1.1,318,4.1000000000000005
+2023,7,2,16,30,30,0.9500000000000001,0.047,0.62,67,900,582,0,0,-2.4000000000000004,99,808,0,562,0.281,12.07,55.06,0.91,0.13,791,1.1,323,4.1000000000000005
+2023,7,2,17,0,29.400000000000002,1.02,0.043000000000000003,0.62,61,867,485,0,0,-2.8000000000000003,61,867,0,485,0.28,12.18,60.74,0.91,0.13,791,1.1,329,4
+2023,7,2,17,30,28.3,1.02,0.043000000000000003,0.62,56,821,385,0,0,-2.8000000000000003,56,821,0,385,0.28,12.98,66.37,0.91,0.13,791,1.1,335,3.6
+2023,7,2,18,0,27.1,1.1,0.04,0.62,49,759,285,0,0,-0.6000000000000001,49,759,0,285,0.28,16.35,71.91,0.91,0.13,792,1.1,341,3.2
+2023,7,2,18,30,24.700000000000003,1.1,0.04,0.62,41,666,187,0,0,-0.6000000000000001,41,666,0,187,0.28,18.84,77.34,0.91,0.13,792,1.1,347,2.6
+2023,7,2,19,0,22.400000000000002,1.18,0.037,0.62,31,520,98,0,0,2.1,31,520,0,98,0.281,26.240000000000002,82.59,0.91,0.13,792,1.1,352,1.9000000000000001
+2023,7,2,19,30,21,1.18,0.037,0.62,17,231,27,0,0,2.1,17,231,0,27,0.281,28.57,87.58,0.91,0.13,792,1.1,355,1.9000000000000001
+2023,7,2,20,0,19.700000000000003,1.22,0.035,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28200000000000003,30.150000000000002,92.66,0.91,0.13,793,1.1,357,1.8
+2023,7,2,20,30,19.1,1.22,0.035,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28200000000000003,31.3,97.26,0.91,0.13,793,1.1,179,1.8
+2023,7,2,21,0,18.400000000000002,1.24,0.035,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28200000000000003,32.61,101.52,0.91,0.13,793,1.1,0,1.7000000000000002
+2023,7,2,21,30,17.900000000000002,1.24,0.035,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28200000000000003,33.65,105.39,0.91,0.13,793,1.2000000000000002,1,1.7000000000000002
+2023,7,2,22,0,17.400000000000002,1.25,0.035,0.62,0,0,0,0,0,2,0,0,0,0,0.28200000000000003,35.59,108.8,0.91,0.13,793,1.2000000000000002,2,1.7000000000000002
+2023,7,2,22,30,16.900000000000002,1.25,0.035,0.62,0,0,0,0,0,2,0,0,0,0,0.28200000000000003,36.730000000000004,111.66,0.91,0.13,793,1.2000000000000002,3,1.5
+2023,7,2,23,0,16.400000000000002,1.25,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.28200000000000003,39.77,113.92,0.91,0.13,793,1.2000000000000002,4,1.4000000000000001
+2023,7,2,23,30,16,1.25,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.28200000000000003,40.79,115.5,0.9,0.13,793,1.2000000000000002,8,1.3
+2023,7,3,0,0,15.600000000000001,1.22,0.035,0.62,0,0,0,0,0,3.2,0,0,0,0,0.28200000000000003,43.34,116.35000000000001,0.9,0.13,793,1.2000000000000002,12,1.2000000000000002
+2023,7,3,0,30,15.4,1.22,0.035,0.62,0,0,0,0,0,3.2,0,0,0,0,0.28200000000000003,43.95,116.43,0.9,0.13,794,1.2000000000000002,18,1.2000000000000002
+2023,7,3,1,0,15.100000000000001,1.17,0.035,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.281,45.42,115.76,0.9,0.13,794,1.2000000000000002,25,1.1
+2023,7,3,1,30,15.100000000000001,1.17,0.035,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.28200000000000003,45.42,114.35000000000001,0.91,0.13,794,1.3,34,1.1
+2023,7,3,2,0,15,1.1,0.038,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28200000000000003,45.480000000000004,112.24000000000001,0.91,0.13,794,1.3,44,1.1
+2023,7,3,2,30,14.8,1.1,0.038,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28300000000000003,46.07,109.51,0.91,0.13,794,1.3,60,1
+2023,7,3,3,0,14.700000000000001,1.04,0.041,0.62,0,0,0,0,0,3.1,0,0,0,0,0.28400000000000003,45.76,106.22,0.91,0.13,794,1.3,76,1
+2023,7,3,3,30,14.200000000000001,1.04,0.041,0.62,0,0,0,0,0,3.1,0,0,0,0,0.28400000000000003,47.2,102.46000000000001,0.91,0.13,793,1.3,93,1
+2023,7,3,4,0,13.700000000000001,1.01,0.043000000000000003,0.62,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28500000000000003,48.18,98.28,0.91,0.13,793,1.3,111,1.1
+2023,7,3,4,30,14.200000000000001,1.01,0.043000000000000003,0.62,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28500000000000003,46.65,93.75,0.91,0.13,793,1.3,123,1.1
+2023,7,3,5,0,14.600000000000001,0.98,0.045,0.62,13,139,16,0,0,3.3000000000000003,13,139,0,16,0.28500000000000003,46.79,88.66,0.92,0.13,793,1.3,134,1.1
+2023,7,3,5,30,16.400000000000002,0.98,0.045,0.62,30,437,77,0,0,3.4000000000000004,30,437,0,77,0.28500000000000003,41.71,83.77,0.92,0.13,793,1.3,143,1.7000000000000002
+2023,7,3,6,0,18.2,0.97,0.047,0.62,42,607,162,0,0,2.2,42,607,0,162,0.28600000000000003,34.34,78.57000000000001,0.92,0.13,793,1.3,151,2.2
+2023,7,3,6,30,20.3,0.97,0.047,0.62,50,714,257,0,0,2.2,50,714,0,257,0.28600000000000003,30.14,73.18,0.92,0.13,793,1.3,161,2.4000000000000004
+2023,7,3,7,0,22.400000000000002,0.9500000000000001,0.049,0.62,57,786,356,0,0,1.6,57,786,0,356,0.28600000000000003,25.29,67.66,0.92,0.13,793,1.3,172,2.6
+2023,7,3,7,30,24.200000000000003,0.9500000000000001,0.049,0.62,64,837,456,0,0,1.6,64,837,0,456,0.28600000000000003,22.69,62.050000000000004,0.92,0.13,793,1.4000000000000001,186,2.7
+2023,7,3,8,0,26.1,0.92,0.051000000000000004,0.62,69,875,553,0,0,1.5,69,875,0,553,0.28600000000000003,20.2,56.38,0.92,0.13,793,1.4000000000000001,200,2.7
+2023,7,3,8,30,27.1,0.92,0.051000000000000004,0.62,73,904,646,0,0,1.5,73,904,0,646,0.28600000000000003,19.05,50.69,0.92,0.13,793,1.4000000000000001,210,2.8000000000000003
+2023,7,3,9,0,28.1,0.91,0.052000000000000005,0.62,77,927,732,0,0,2.1,77,927,0,732,0.28700000000000003,18.78,45.02,0.92,0.13,793,1.4000000000000001,220,2.9000000000000004
+2023,7,3,9,30,29,0.91,0.052000000000000005,0.62,80,945,810,0,0,2.1,80,945,0,810,0.28700000000000003,17.830000000000002,39.42,0.92,0.13,793,1.4000000000000001,224,3.1
+2023,7,3,10,0,29.8,0.89,0.053,0.62,84,958,878,0,0,2.3000000000000003,84,958,0,878,0.28700000000000003,17.25,33.97,0.92,0.13,793,1.4000000000000001,227,3.3000000000000003
+2023,7,3,10,30,30.5,0.89,0.053,0.62,84,970,934,0,0,2.3000000000000003,84,970,0,934,0.28700000000000003,16.55,28.8,0.92,0.13,792,1.4000000000000001,229,3.5
+2023,7,3,11,0,31.200000000000003,0.92,0.051000000000000004,0.62,85,979,978,0,7,2.3000000000000003,254,630,0,829,0.28700000000000003,15.83,24.14,0.92,0.13,792,1.4000000000000001,230,3.7
+2023,7,3,11,30,31.700000000000003,0.92,0.051000000000000004,0.62,85,983,1007,0,7,2.3000000000000003,461,183,0,633,0.28700000000000003,15.39,20.35,0.92,0.13,792,1.4000000000000001,229,3.9000000000000004
+2023,7,3,12,0,32.2,0.93,0.053,0.62,87,984,1023,0,7,2.1,398,366,0,746,0.28700000000000003,14.74,18.03,0.92,0.13,791,1.4000000000000001,228,4.1000000000000005
+2023,7,3,12,30,32.4,0.93,0.053,0.62,88,982,1023,0,7,2.1,374,403,0,758,0.28700000000000003,14.58,17.77,0.93,0.13,791,1.4000000000000001,227,4.3
+2023,7,3,13,0,32.7,0.97,0.058,0.62,89,977,1009,0,7,1.8,473,112,0,578,0.28700000000000003,14.11,19.66,0.93,0.13,790,1.5,225,4.5
+2023,7,3,13,30,32.6,0.97,0.058,0.62,90,969,981,0,7,1.8,448,94,0,534,0.28700000000000003,14.19,23.17,0.9400000000000001,0.13,790,1.5,229,4.7
+2023,7,3,14,0,32.5,1.12,0.063,0.62,90,958,938,0,6,1.8,344,14,0,356,0.28700000000000003,14.21,27.67,0.9400000000000001,0.13,790,1.6,232,4.800000000000001
+2023,7,3,14,30,31.700000000000003,1.12,0.063,0.62,91,939,881,0,7,1.8,400,143,0,520,0.28600000000000003,14.870000000000001,32.74,0.9500000000000001,0.13,790,1.7000000000000002,251,4.7
+2023,7,3,15,0,30.900000000000002,1.19,0.081,0.62,94,913,812,0,6,2.7,340,64,0,390,0.28600000000000003,16.580000000000002,38.14,0.96,0.13,790,1.8,269,4.6000000000000005
+2023,7,3,15,30,29.200000000000003,1.19,0.081,0.62,92,890,735,0,7,2.7,325,217,0,482,0.28600000000000003,18.27,43.72,0.96,0.13,790,1.9000000000000001,296,4.3
+2023,7,3,16,0,27.5,1.3,0.085,0.62,88,861,649,0,8,4.7,221,504,0,549,0.28700000000000003,23.23,49.38,0.96,0.13,791,2,323,4
+2023,7,3,16,30,26.1,1.3,0.085,0.62,83,827,557,0,7,4.7,206,358,11,411,0.28700000000000003,25.21,55.07,0.96,0.13,791,2.1,170,3.7
+2023,7,3,17,0,24.8,1.41,0.09,0.62,78,783,461,0,6,6.1000000000000005,208,102,0,258,0.28700000000000003,30.14,60.75,0.96,0.13,791,2.1,17,3.4000000000000004
+2023,7,3,17,30,23.6,1.41,0.09,0.62,70,736,365,0,6,6.1000000000000005,144,41,0,160,0.28700000000000003,32.38,66.38,0.96,0.13,791,2.1,40,3.6
+2023,7,3,18,0,22.5,1.5,0.079,0.62,61,672,269,0,6,7.1000000000000005,75,5,0,77,0.28700000000000003,36.95,71.93,0.96,0.13,791,2,63,3.8000000000000003
+2023,7,3,18,30,21,1.5,0.079,0.62,49,581,176,0,6,7.1000000000000005,43,176,0,82,0.28700000000000003,40.480000000000004,77.35000000000001,0.9500000000000001,0.13,791,1.9000000000000001,73,4.3
+2023,7,3,19,0,19.400000000000002,1.51,0.064,0.62,35,443,92,5,7,8.1,53,60,71,61,0.28600000000000003,48.06,82.61,0.9500000000000001,0.13,791,1.9000000000000001,82,4.7
+2023,7,3,19,30,18.3,1.51,0.064,0.62,17,176,24,7,8,8.1,16,2,100,16,0.28600000000000003,51.47,87.61,0.9500000000000001,0.13,791,1.9000000000000001,83,4.2
+2023,7,3,20,0,17.2,1.43,0.08700000000000001,0.62,0,0,0,1,7,9.1,0,0,14,0,0.28600000000000003,58.89,92.69,0.96,0.13,791,2,84,3.6
+2023,7,3,20,30,16.900000000000002,1.43,0.08700000000000001,0.62,0,0,0,0,6,9.1,0,0,0,0,0.28600000000000003,60.01,97.29,0.96,0.13,791,2,77,3.2
+2023,7,3,21,0,16.6,1.3800000000000001,0.106,0.62,0,0,0,0,6,9.5,0,0,0,0,0.28600000000000003,62.88,101.56,0.96,0.13,791,2,69,2.7
+2023,7,3,21,30,16.2,1.3800000000000001,0.106,0.62,0,0,0,0,7,9.5,0,0,0,0,0.28600000000000003,64.49,105.44,0.96,0.13,791,2,64,2.6
+2023,7,3,22,0,15.9,1.37,0.101,0.62,0,0,0,0,7,9.700000000000001,0,0,0,0,0.28700000000000003,66.53,108.85000000000001,0.9500000000000001,0.13,791,2,58,2.4000000000000004
+2023,7,3,22,30,15.600000000000001,1.37,0.101,0.62,0,0,0,0,7,9.700000000000001,0,0,0,0,0.28700000000000003,67.81,111.73,0.96,0.13,791,2,54,2.4000000000000004
+2023,7,3,23,0,15.3,1.34,0.123,0.62,0,0,0,0,7,9.9,0,0,0,0,0.28700000000000003,70.09,113.99000000000001,0.96,0.13,791,2,49,2.3000000000000003
+2023,7,3,23,30,15,1.34,0.123,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28700000000000003,71.54,115.57000000000001,0.96,0.13,792,2.1,44,2.5
+2023,7,4,0,0,14.8,1.33,0.13,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28700000000000003,73.64,116.43,0.96,0.13,792,2.1,39,2.8000000000000003
+2023,7,4,0,30,14.5,1.33,0.13,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28800000000000003,75.07000000000001,116.52,0.96,0.13,792,2.1,39,3
+2023,7,4,1,0,14.3,1.33,0.121,0.62,0,0,0,0,5,10.4,0,0,0,0,0.28800000000000003,77.21000000000001,115.85000000000001,0.96,0.13,792,2.1,40,3.2
+2023,7,4,1,30,13.9,1.33,0.121,0.62,0,0,0,0,5,10.4,0,0,0,0,0.28800000000000003,79.23,114.44,0.9500000000000001,0.13,792,2.1,40,3.2
+2023,7,4,2,0,13.600000000000001,1.33,0.109,0.62,0,0,0,0,5,10.5,0,0,0,0,0.28800000000000003,81.51,112.34,0.9500000000000001,0.13,792,2.1,41,3.2
+2023,7,4,2,30,13.200000000000001,1.33,0.109,0.62,0,0,0,0,8,10.5,0,0,0,0,0.289,83.66,109.60000000000001,0.9500000000000001,0.13,792,2,41,3.1
+2023,7,4,3,0,12.9,1.32,0.098,0.62,0,0,0,0,5,10.4,0,0,0,0,0.289,84.88,106.32000000000001,0.9400000000000001,0.13,792,2,42,3
+2023,7,4,3,30,12.600000000000001,1.32,0.098,0.62,0,0,0,0,5,10.4,0,0,0,0,0.289,86.55,102.55,0.9400000000000001,0.13,792,2,44,2.9000000000000004
+2023,7,4,4,0,12.3,1.3,0.098,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.29,87.01,98.37,0.9400000000000001,0.13,792,1.9000000000000001,47,2.7
+2023,7,4,4,30,12.700000000000001,1.3,0.098,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.29,84.76,93.84,0.9400000000000001,0.13,792,1.9000000000000001,51,3
+2023,7,4,5,0,13.100000000000001,1.29,0.098,0.62,12,85,14,2,0,10.100000000000001,10,32,29,11,0.291,82.18,88.74,0.9400000000000001,0.13,792,1.9000000000000001,54,3.2
+2023,7,4,5,30,14.3,1.29,0.098,0.62,35,329,70,5,3,10.100000000000001,45,5,71,46,0.291,76.03,83.86,0.9400000000000001,0.13,792,1.9000000000000001,58,3.3000000000000003
+2023,7,4,6,0,15.5,1.27,0.096,0.62,51,507,151,1,3,9.8,77,14,11,80,0.292,68.99,78.65,0.9400000000000001,0.13,792,1.9000000000000001,62,3.5
+2023,7,4,6,30,17.400000000000002,1.27,0.096,0.62,63,625,243,0,3,9.8,134,182,0,186,0.292,61.160000000000004,73.26,0.9400000000000001,0.13,792,1.8,63,3.4000000000000004
+2023,7,4,7,0,19.3,1.26,0.098,0.62,73,706,340,0,3,8.5,166,345,0,297,0.292,49.65,67.75,0.9400000000000001,0.13,792,1.8,65,3.4000000000000004
+2023,7,4,7,30,20.900000000000002,1.26,0.098,0.62,80,767,439,0,0,8.5,121,651,0,425,0.292,44.99,62.13,0.9400000000000001,0.13,792,1.8,63,3.2
+2023,7,4,8,0,22.400000000000002,1.26,0.095,0.62,85,814,535,0,0,7.2,128,693,0,511,0.292,37.51,56.46,0.9400000000000001,0.13,792,1.8,62,3
+2023,7,4,8,30,23.400000000000002,1.26,0.095,0.62,90,851,628,0,3,7.2,252,489,0,561,0.291,35.31,50.77,0.9400000000000001,0.13,792,1.8,62,2.6
+2023,7,4,9,0,24.400000000000002,1.27,0.09,0.62,93,880,714,0,0,6.5,200,633,7,647,0.291,31.78,45.1,0.9400000000000001,0.13,792,1.9000000000000001,61,2.3000000000000003
+2023,7,4,9,30,25.1,1.27,0.09,0.62,96,901,791,0,0,6.5,96,901,0,791,0.29,30.490000000000002,39.5,0.9400000000000001,0.13,792,1.9000000000000001,64,1.9000000000000001
+2023,7,4,10,0,25.700000000000003,1.29,0.08600000000000001,0.62,98,919,859,0,0,6.2,98,919,0,859,0.29,28.79,34.06,0.9400000000000001,0.13,792,1.9000000000000001,66,1.5
+2023,7,4,10,30,26.3,1.29,0.08600000000000001,0.62,96,937,916,0,0,6.2,182,779,0,864,0.289,27.79,28.89,0.9400000000000001,0.13,792,1.9000000000000001,72,1.2000000000000002
+2023,7,4,11,0,26.8,1.45,0.07,0.62,93,952,961,0,0,6.1000000000000005,189,787,0,907,0.289,26.73,24.23,0.9400000000000001,0.13,792,1.9000000000000001,77,0.9
+2023,7,4,11,30,27.200000000000003,1.45,0.07,0.62,94,957,991,0,0,6.1000000000000005,108,939,0,988,0.28800000000000003,26.080000000000002,20.45,0.9400000000000001,0.13,791,1.9000000000000001,96,0.6000000000000001
+2023,7,4,12,0,27.5,1.45,0.07200000000000001,0.62,97,959,1008,0,0,6,131,910,0,996,0.28700000000000003,25.51,18.12,0.9500000000000001,0.13,791,1.9000000000000001,114,0.4
+2023,7,4,12,30,27.700000000000003,1.45,0.07200000000000001,0.62,96,959,1009,0,0,6,96,959,0,1009,0.28700000000000003,25.22,17.85,0.9500000000000001,0.13,791,1.9000000000000001,176,0.30000000000000004
+2023,7,4,13,0,27.8,1.45,0.073,0.62,96,957,997,0,0,6,220,710,0,888,0.28600000000000003,25.01,19.72,0.9500000000000001,0.13,791,1.9000000000000001,238,0.30000000000000004
+2023,7,4,13,30,28,1.45,0.073,0.62,94,953,970,0,7,6,335,493,0,788,0.28600000000000003,24.72,23.21,0.9500000000000001,0.13,791,1.9000000000000001,269,0.6000000000000001
+2023,7,4,14,0,28.1,1.47,0.07200000000000001,0.62,93,945,930,0,7,5.800000000000001,388,298,0,652,0.28600000000000003,24.34,27.7,0.9500000000000001,0.13,790,1.9000000000000001,300,1
+2023,7,4,14,30,28.1,1.47,0.07200000000000001,0.62,93,931,876,0,6,5.800000000000001,234,85,0,305,0.28600000000000003,24.34,32.77,0.9500000000000001,0.13,790,1.9000000000000001,309,1.7000000000000002
+2023,7,4,15,0,28,1.46,0.08,0.62,92,912,809,0,6,5.7,190,315,0,438,0.28600000000000003,24.27,38.160000000000004,0.9500000000000001,0.13,790,1.9000000000000001,318,2.5
+2023,7,4,15,30,27.200000000000003,1.46,0.08,0.62,92,886,732,0,0,5.7,128,817,0,718,0.28700000000000003,25.43,43.730000000000004,0.96,0.13,790,2,326,3.5
+2023,7,4,16,0,26.5,1.43,0.096,0.62,92,852,646,0,7,6.1000000000000005,169,670,32,605,0.28700000000000003,27.27,49.4,0.96,0.13,790,2.1,333,4.6000000000000005
+2023,7,4,16,30,24.900000000000002,1.43,0.096,0.62,91,807,553,0,7,6.1000000000000005,261,275,0,418,0.28800000000000003,29.98,55.09,0.96,0.13,790,2.1,340,5.300000000000001
+2023,7,4,17,0,23.3,1.42,0.12,0.62,89,748,454,0,7,7.300000000000001,179,251,14,302,0.28800000000000003,35.74,60.77,0.96,0.14,791,2.2,348,6.1000000000000005
+2023,7,4,17,30,21.400000000000002,1.42,0.12,0.62,83,679,355,0,8,7.300000000000001,133,223,4,222,0.289,40.1,66.4,0.97,0.14,791,2.3000000000000003,178,6
+2023,7,4,18,0,19.5,1.41,0.14,0.62,76,584,257,0,8,8.4,95,357,29,206,0.29,48.7,71.95,0.97,0.14,792,2.3000000000000003,7,5.800000000000001
+2023,7,4,18,30,17.900000000000002,1.41,0.14,0.62,61,475,165,0,6,8.4,60,151,4,93,0.291,53.81,77.38,0.96,0.14,792,2.3000000000000003,23,5.5
+2023,7,4,19,0,16.3,1.45,0.138,0.62,43,321,84,5,6,9.1,41,57,86,48,0.292,62.410000000000004,82.64,0.96,0.14,793,2.3000000000000003,39,5.1000000000000005
+2023,7,4,19,30,15.3,1.45,0.138,0.62,17,111,22,7,6,9.1,11,0,100,11,0.294,66.51,87.63,0.9500000000000001,0.14,793,2.1,48,5.1000000000000005
+2023,7,4,20,0,14.4,1.49,0.108,0.62,0,0,0,1,6,9.3,0,0,14,0,0.296,71.52,92.73,0.9500000000000001,0.14,793,2,58,5
+2023,7,4,20,30,13.9,1.49,0.108,0.62,0,0,0,0,6,9.3,0,0,0,0,0.297,73.87,97.34,0.9400000000000001,0.14,793,1.9000000000000001,59,4.5
+2023,7,4,21,0,13.5,1.49,0.091,0.62,0,0,0,0,7,9.3,0,0,0,0,0.298,75.73,101.61,0.9400000000000001,0.14,793,1.8,61,3.9000000000000004
+2023,7,4,21,30,13.200000000000001,1.49,0.091,0.62,0,0,0,0,8,9.3,0,0,0,0,0.298,77.22,105.49000000000001,0.9400000000000001,0.14,793,1.8,60,3.4000000000000004
+2023,7,4,22,0,12.8,1.48,0.084,0.62,0,0,0,0,8,9.3,0,0,0,0,0.298,79.34,108.91,0.93,0.14,793,1.7000000000000002,59,2.8000000000000003
+2023,7,4,22,30,12.5,1.48,0.084,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,80.91,111.79,0.93,0.14,793,1.7000000000000002,56,2.4000000000000004
+2023,7,4,23,0,12.200000000000001,1.47,0.083,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,82.72,114.06,0.93,0.14,793,1.7000000000000002,53,1.9000000000000001
+2023,7,4,23,30,11.9,1.47,0.083,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,84.36,115.65,0.9400000000000001,0.14,793,1.7000000000000002,47,1.7000000000000002
+2023,7,5,0,0,11.5,1.45,0.09,0.62,0,0,0,0,0,9.4,0,0,0,0,0.298,86.67,116.51,0.9400000000000001,0.14,793,1.7000000000000002,40,1.5
+2023,7,5,0,30,11.3,1.45,0.09,0.62,0,0,0,0,0,9.4,0,0,0,0,0.298,87.83,116.61,0.9400000000000001,0.14,793,1.7000000000000002,34,1.5
+2023,7,5,1,0,11,1.44,0.099,0.62,0,0,0,0,5,9.3,0,0,0,0,0.298,89.32000000000001,115.94,0.9400000000000001,0.14,793,1.7000000000000002,27,1.5
+2023,7,5,1,30,10.9,1.44,0.099,0.62,0,0,0,0,0,9.3,0,0,0,0,0.298,89.91,114.54,0.9400000000000001,0.14,793,1.7000000000000002,24,1.8
+2023,7,5,2,0,10.8,1.43,0.107,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.298,90,112.43,0.9500000000000001,0.14,793,1.7000000000000002,20,2.1
+2023,7,5,2,30,10.600000000000001,1.43,0.107,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.299,91.2,109.7,0.9500000000000001,0.14,793,1.7000000000000002,20,2.2
+2023,7,5,3,0,10.3,1.43,0.112,0.62,0,0,0,0,0,9.1,0,0,0,0,0.299,92.28,106.41,0.9500000000000001,0.14,793,1.7000000000000002,20,2.3000000000000003
+2023,7,5,3,30,10.100000000000001,1.43,0.112,0.62,0,0,0,0,0,9.1,0,0,0,0,0.299,93.52,102.64,0.9500000000000001,0.14,793,1.7000000000000002,23,2.3000000000000003
+2023,7,5,4,0,9.9,1.44,0.109,0.62,0,0,0,0,0,9,0,0,0,0,0.299,93.85000000000001,98.46000000000001,0.9500000000000001,0.14,793,1.7000000000000002,25,2.3000000000000003
+2023,7,5,4,30,10.100000000000001,1.44,0.109,0.62,0,0,0,0,3,9,0,0,0,0,0.299,92.60000000000001,93.93,0.9500000000000001,0.14,793,1.7000000000000002,26,2.5
+2023,7,5,5,0,10.3,1.45,0.10200000000000001,0.62,12,87,14,5,3,8.8,7,8,68,7,0.299,90.43,88.82000000000001,0.9400000000000001,0.14,793,1.7000000000000002,27,2.7
+2023,7,5,5,30,11.5,1.45,0.10200000000000001,0.62,34,337,70,2,0,8.8,36,262,29,64,0.3,83.62,83.95,0.9400000000000001,0.14,794,1.6,29,2.9000000000000004
+2023,7,5,6,0,12.600000000000001,1.46,0.094,0.62,49,521,151,0,0,8.4,61,404,0,140,0.3,75.64,78.74,0.9400000000000001,0.14,794,1.6,31,3
+2023,7,5,6,30,14.200000000000001,1.46,0.094,0.62,61,643,245,0,3,8.4,104,152,0,148,0.3,68.17,73.35000000000001,0.9400000000000001,0.14,794,1.6,32,2.9000000000000004
+2023,7,5,7,0,15.8,1.47,0.08700000000000001,0.62,69,729,344,0,0,7.7,140,412,0,295,0.301,58.77,67.83,0.9400000000000001,0.14,794,1.6,32,2.8000000000000003
+2023,7,5,7,30,17.400000000000002,1.47,0.08700000000000001,0.62,76,790,444,0,0,7.7,94,745,0,441,0.301,53.11,62.22,0.9400000000000001,0.14,794,1.6,27,2.4000000000000004
+2023,7,5,8,0,19,1.47,0.083,0.62,80,837,541,0,0,6.7,80,837,0,541,0.302,44.64,56.550000000000004,0.93,0.14,794,1.5,23,2
+2023,7,5,8,30,20.400000000000002,1.47,0.083,0.62,85,871,635,0,0,6.7,85,871,0,635,0.302,40.94,50.86,0.93,0.14,794,1.5,188,1.7000000000000002
+2023,7,5,9,0,21.8,1.47,0.081,0.62,88,898,721,0,0,5.7,88,898,0,721,0.302,35.19,45.18,0.93,0.14,794,1.5,354,1.3
+2023,7,5,9,30,22.900000000000002,1.47,0.081,0.62,92,919,800,0,0,5.7,92,919,0,800,0.302,32.92,39.59,0.93,0.14,794,1.5,336,1.2000000000000002
+2023,7,5,10,0,24,1.46,0.08,0.62,94,935,868,0,0,5.2,94,935,0,868,0.303,29.69,34.14,0.93,0.14,794,1.5,317,1.1
+2023,7,5,10,30,24.8,1.46,0.08,0.62,95,949,925,0,0,5.2,95,949,0,925,0.303,28.310000000000002,28.990000000000002,0.93,0.14,794,1.5,293,1.1
+2023,7,5,11,0,25.700000000000003,1.47,0.07100000000000001,0.62,93,962,970,0,0,4.800000000000001,130,906,0,956,0.303,26.14,24.330000000000002,0.93,0.14,793,1.5,270,1.1
+2023,7,5,11,30,26.400000000000002,1.47,0.07100000000000001,0.62,94,966,999,0,0,4.800000000000001,94,966,0,999,0.303,25.080000000000002,20.55,0.93,0.14,793,1.5,254,1.3
+2023,7,5,12,0,27,1.44,0.073,0.62,96,966,1014,0,0,4.6000000000000005,103,932,0,988,0.303,23.87,18.22,0.9400000000000001,0.14,793,1.5,238,1.6
+2023,7,5,12,30,27.5,1.44,0.073,0.62,98,964,1015,0,7,4.6000000000000005,183,762,0,908,0.302,23.19,17.94,0.9400000000000001,0.14,793,1.6,231,1.9000000000000001
+2023,7,5,13,0,27.900000000000002,1.41,0.081,0.62,100,957,1000,0,7,4.6000000000000005,212,713,0,883,0.302,22.63,19.79,0.9400000000000001,0.14,792,1.6,225,2.2
+2023,7,5,13,30,28.1,1.41,0.081,0.62,97,953,973,0,7,4.6000000000000005,292,585,0,829,0.301,22.37,23.26,0.9500000000000001,0.14,792,1.7000000000000002,224,2.4000000000000004
+2023,7,5,14,0,28.400000000000002,1.4000000000000001,0.075,0.62,95,946,932,0,7,4.7,317,494,0,754,0.301,22.150000000000002,27.740000000000002,0.9500000000000001,0.14,792,1.7000000000000002,224,2.6
+2023,7,5,14,30,28.200000000000003,1.4000000000000001,0.075,0.62,96,928,876,0,7,4.7,338,376,0,654,0.3,22.41,32.8,0.96,0.14,792,1.8,227,2.7
+2023,7,5,15,0,28.1,1.37,0.092,0.62,98,903,808,0,7,5,349,247,0,543,0.299,22.89,38.19,0.96,0.14,791,1.9000000000000001,230,2.8000000000000003
+2023,7,5,15,30,27.6,1.37,0.092,0.62,102,868,729,0,7,5,255,463,29,589,0.297,23.56,43.75,0.96,0.14,791,2,240,2.8000000000000003
+2023,7,5,16,0,27,1.35,0.128,0.62,105,822,640,0,7,5.5,255,418,21,527,0.296,25.37,49.42,0.97,0.14,791,2.1,249,2.7
+2023,7,5,16,30,26,1.35,0.128,0.62,106,768,545,0,6,5.5,231,196,7,343,0.295,26.900000000000002,55.11,0.97,0.14,791,2.2,261,2.7
+2023,7,5,17,0,25,1.32,0.169,0.62,105,696,445,0,6,6.6000000000000005,177,41,0,197,0.294,30.76,60.79,0.97,0.14,792,2.3000000000000003,274,2.6
+2023,7,5,17,30,23.8,1.32,0.169,0.62,92,646,350,0,6,6.6000000000000005,135,79,0,167,0.294,33.04,66.43,0.97,0.14,792,2.3000000000000003,279,1.8
+2023,7,5,18,0,22.6,1.37,0.14100000000000001,0.62,76,582,256,0,8,7.6000000000000005,113,338,46,218,0.294,38.2,71.98,0.96,0.14,792,2.3000000000000003,284,1
+2023,7,5,18,30,21.1,1.37,0.14100000000000001,0.62,57,503,167,0,8,7.6000000000000005,56,295,32,120,0.295,41.85,77.41,0.9500000000000001,0.14,792,2.2,192,1.3
+2023,7,5,19,0,19.700000000000003,1.41,0.09,0.62,37,388,87,5,7,8.9,54,122,75,70,0.295,49.61,82.67,0.9400000000000001,0.14,792,2.1,101,1.7000000000000002
+2023,7,5,19,30,18.5,1.41,0.09,0.62,17,146,23,7,8,8.9,16,10,96,16,0.296,53.52,87.67,0.9400000000000001,0.14,793,2,99,2.2
+2023,7,5,20,0,17.3,1.41,0.075,0.62,0,0,0,1,3,9.700000000000001,0,0,14,0,0.297,61.160000000000004,92.77,0.9400000000000001,0.14,793,1.9000000000000001,97,2.7
+2023,7,5,20,30,16.5,1.41,0.075,0.62,0,0,0,0,3,9.700000000000001,0,0,0,0,0.297,64.33,97.38,0.9400000000000001,0.14,793,2,95,2.8000000000000003
+2023,7,5,21,0,15.700000000000001,1.3900000000000001,0.082,0.62,0,0,0,0,3,10.3,0,0,0,0,0.297,70.49,101.67,0.9500000000000001,0.14,793,2,93,2.9000000000000004
+2023,7,5,21,30,15.100000000000001,1.3900000000000001,0.082,0.62,0,0,0,0,3,10.3,0,0,0,0,0.297,73.25,105.55,0.9500000000000001,0.14,793,2,91,2.8000000000000003
+2023,7,5,22,0,14.5,1.3800000000000001,0.094,0.62,0,0,0,0,3,10.700000000000001,0,0,0,0,0.297,77.77,108.98,0.9500000000000001,0.14,793,2,89,2.8000000000000003
+2023,7,5,22,30,14.100000000000001,1.3800000000000001,0.094,0.62,0,0,0,0,3,10.700000000000001,0,0,0,0,0.297,79.8,111.87,0.9500000000000001,0.14,793,1.9000000000000001,84,2.7
+2023,7,5,23,0,13.700000000000001,1.3900000000000001,0.099,0.62,0,0,0,0,3,10.700000000000001,0,0,0,0,0.296,82.09,114.14,0.9500000000000001,0.14,793,1.9000000000000001,80,2.7
+2023,7,5,23,30,13.200000000000001,1.3900000000000001,0.099,0.62,0,0,0,0,8,10.700000000000001,0,0,0,0,0.296,84.8,115.74000000000001,0.9500000000000001,0.14,793,1.8,76,2.3000000000000003
+2023,7,6,0,0,12.700000000000001,1.41,0.089,0.62,0,0,0,0,0,10.5,0,0,0,0,0.296,86.74,116.61,0.9500000000000001,0.14,793,1.8,72,2
+2023,7,6,0,30,12.3,1.41,0.089,0.62,0,0,0,0,0,10.5,0,0,0,0,0.296,89.04,116.71000000000001,0.9400000000000001,0.14,793,1.8,69,1.8
+2023,7,6,1,0,11.9,1.4000000000000001,0.084,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,90.19,116.04,0.9400000000000001,0.14,792,1.7000000000000002,66,1.7000000000000002
+2023,7,6,1,30,11.5,1.4000000000000001,0.084,0.62,0,0,0,0,0,10.3,0,0,0,0,0.295,92.60000000000001,114.64,0.9400000000000001,0.14,792,1.7000000000000002,57,1.5
+2023,7,6,2,0,11.200000000000001,1.3900000000000001,0.089,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.295,93.51,112.54,0.9400000000000001,0.14,792,1.7000000000000002,47,1.4000000000000001
+2023,7,6,2,30,11.100000000000001,1.3900000000000001,0.089,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.295,94.13,109.81,0.9500000000000001,0.14,792,1.7000000000000002,35,1.6
+2023,7,6,3,0,11,1.3800000000000001,0.098,0.62,0,0,0,0,0,9.8,0,0,0,0,0.295,92.58,106.52,0.9500000000000001,0.14,792,1.8,22,1.8
+2023,7,6,3,30,10.9,1.3800000000000001,0.098,0.62,0,0,0,0,0,9.8,0,0,0,0,0.295,93.19,102.75,0.9500000000000001,0.14,792,1.7000000000000002,22,1.7000000000000002
+2023,7,6,4,0,10.8,1.3800000000000001,0.107,0.62,0,0,0,0,5,9.3,0,0,0,0,0.296,90.27,98.56,0.9500000000000001,0.14,792,1.7000000000000002,22,1.7000000000000002
+2023,7,6,4,30,11.3,1.3800000000000001,0.107,0.62,0,0,0,0,5,9.3,0,0,0,0,0.295,87.33,94.03,0.9500000000000001,0.14,792,1.7000000000000002,37,1.9000000000000001
+2023,7,6,5,0,11.700000000000001,1.36,0.113,0.62,12,74,13,5,5,9,6,0,71,6,0.295,83.45,88.91,0.9500000000000001,0.14,793,1.7000000000000002,51,2.1
+2023,7,6,5,30,12.700000000000001,1.36,0.113,0.62,35,318,68,5,5,9,43,20,68,45,0.295,78.06,84.04,0.9500000000000001,0.14,792,1.7000000000000002,67,2.5
+2023,7,6,6,0,13.600000000000001,1.3800000000000001,0.095,0.62,51,513,150,0,5,9,72,60,0,84,0.295,73.64,78.83,0.9500000000000001,0.14,792,1.6,84,2.9000000000000004
+2023,7,6,6,30,15.8,1.3800000000000001,0.095,0.62,61,638,243,0,5,9,116,56,0,132,0.295,63.93,73.44,0.9400000000000001,0.14,792,1.6,89,2.7
+2023,7,6,7,0,17.900000000000002,1.3900000000000001,0.08700000000000001,0.62,69,727,342,2,8,7.6000000000000005,152,41,25,167,0.295,50.85,67.92,0.9400000000000001,0.14,792,1.6,94,2.6
+2023,7,6,7,30,20.1,1.3900000000000001,0.08700000000000001,0.62,79,777,440,0,8,7.6000000000000005,171,242,4,283,0.294,44.35,62.31,0.9500000000000001,0.14,792,1.6,86,1.7000000000000002
+2023,7,6,8,0,22.200000000000003,1.3800000000000001,0.10400000000000001,0.62,89,811,535,0,8,4.9,189,502,0,465,0.293,32.46,56.64,0.9500000000000001,0.14,792,1.7000000000000002,79,0.9
+2023,7,6,8,30,23.5,1.3800000000000001,0.10400000000000001,0.62,95,842,626,0,0,4.9,95,842,0,626,0.292,30.01,50.94,0.9500000000000001,0.14,792,1.7000000000000002,197,0.9
+2023,7,6,9,0,24.700000000000003,1.3900000000000001,0.112,0.62,103,864,711,0,8,3.4000000000000004,273,363,0,528,0.291,25.150000000000002,45.27,0.9500000000000001,0.14,792,1.7000000000000002,316,0.9
+2023,7,6,9,30,25.5,1.3900000000000001,0.112,0.62,106,888,789,0,0,3.4000000000000004,195,676,0,715,0.289,23.98,39.68,0.9500000000000001,0.14,792,1.7000000000000002,320,1.2000000000000002
+2023,7,6,10,0,26.3,1.41,0.10400000000000001,0.62,107,909,858,0,0,3.1,117,890,0,853,0.28800000000000003,22.400000000000002,34.24,0.9500000000000001,0.14,792,1.7000000000000002,324,1.4000000000000001
+2023,7,6,10,30,27,1.41,0.10400000000000001,0.62,106,926,915,0,0,3.1,137,871,0,898,0.28700000000000003,21.5,29.080000000000002,0.9500000000000001,0.14,792,1.7000000000000002,323,1.3
+2023,7,6,11,0,27.6,1.59,0.089,0.62,102,942,960,0,0,3.2,129,900,0,948,0.28600000000000003,20.78,24.43,0.9500000000000001,0.14,792,1.7000000000000002,321,1.2000000000000002
+2023,7,6,11,30,27.900000000000002,1.59,0.089,0.62,106,944,989,0,0,3.1,106,944,0,989,0.28600000000000003,20.39,20.650000000000002,0.9500000000000001,0.14,791,1.7000000000000002,308,1.2000000000000002
+2023,7,6,12,0,28.3,1.57,0.101,0.62,110,942,1004,0,0,3.3000000000000003,161,832,0,951,0.28600000000000003,20.080000000000002,18.330000000000002,0.96,0.14,791,1.8,296,1.1
+2023,7,6,12,30,28.400000000000002,1.57,0.101,0.62,111,941,1006,0,8,3.3000000000000003,373,196,0,559,0.28500000000000003,19.96,18.04,0.96,0.14,791,1.8,295,1.2000000000000002
+2023,7,6,13,0,28.6,1.57,0.105,0.62,112,937,993,0,8,3.4000000000000004,333,125,0,451,0.28500000000000003,19.990000000000002,19.87,0.96,0.14,790,1.8,295,1.3
+2023,7,6,13,30,28.6,1.57,0.105,0.62,111,931,966,0,8,3.4000000000000004,331,93,0,416,0.28600000000000003,19.990000000000002,23.32,0.96,0.14,790,1.8,303,1.4000000000000001
+2023,7,6,14,0,28.6,1.53,0.107,0.62,109,922,925,0,6,3.6,282,32,0,310,0.28600000000000003,20.18,27.79,0.96,0.14,790,1.8,311,1.6
+2023,7,6,14,30,28.400000000000002,1.53,0.107,0.62,111,905,871,0,6,3.6,197,6,0,202,0.28600000000000003,20.42,32.84,0.96,0.14,790,1.8,318,2
+2023,7,6,15,0,28.200000000000003,1.5,0.11900000000000001,0.62,110,883,804,0,8,3.6,265,100,0,344,0.28600000000000003,20.77,38.22,0.96,0.14,789,1.8,325,2.3000000000000003
+2023,7,6,15,30,27.6,1.5,0.11900000000000001,0.62,110,854,727,0,0,3.6,200,625,7,651,0.28700000000000003,21.51,43.78,0.96,0.14,789,1.9000000000000001,331,2.8000000000000003
+2023,7,6,16,0,27,1.48,0.14200000000000002,0.62,110,815,640,0,6,3.9000000000000004,281,307,18,481,0.28700000000000003,22.75,49.44,0.96,0.14,789,1.9000000000000001,337,3.2
+2023,7,6,16,30,26.1,1.48,0.14200000000000002,0.62,104,778,549,0,6,3.9000000000000004,231,54,0,262,0.28700000000000003,23.990000000000002,55.14,0.96,0.14,789,2,344,3.6
+2023,7,6,17,0,25.200000000000003,1.48,0.14200000000000002,0.62,96,732,453,0,6,4.6000000000000005,102,34,4,119,0.28700000000000003,26.44,60.82,0.96,0.14,789,2,351,3.9000000000000004
+2023,7,6,17,30,24.1,1.48,0.14200000000000002,0.62,86,675,356,0,7,4.6000000000000005,163,312,25,288,0.28700000000000003,28.23,66.45,0.96,0.14,789,2,179,3.8000000000000003
+2023,7,6,18,0,23,1.5,0.134,0.62,74,600,259,0,3,5.4,116,417,29,245,0.28800000000000003,32.06,72.01,0.96,0.14,790,2,8,3.6
+2023,7,6,18,30,21.6,1.5,0.134,0.62,60,486,166,0,8,5.4,70,273,11,129,0.28800000000000003,34.9,77.44,0.96,0.14,790,2,17,3
+2023,7,6,19,0,20.1,1.49,0.14,0.62,43,323,84,4,0,7.2,51,156,61,71,0.28800000000000003,43.22,82.71000000000001,0.96,0.14,790,2,26,2.3000000000000003
+2023,7,6,19,30,19.1,1.49,0.14,0.62,17,107,21,6,6,7.2,13,1,93,13,0.28800000000000003,46.04,87.71000000000001,0.96,0.14,791,2,42,2.2
+2023,7,6,20,0,18,1.47,0.14,0.62,0,0,0,0,6,8,0,0,7,0,0.28700000000000003,52.07,92.82000000000001,0.96,0.14,791,2,57,2.1
+2023,7,6,20,30,17.2,1.47,0.14,0.62,0,0,0,0,6,8,0,0,0,0,0.28700000000000003,54.75,97.44,0.96,0.14,791,1.9000000000000001,71,2.3000000000000003
+2023,7,6,21,0,16.400000000000002,1.47,0.126,0.62,0,0,0,0,6,8.4,0,0,0,0,0.28600000000000003,59,101.72,0.96,0.14,791,1.9000000000000001,86,2.6
+2023,7,6,21,30,15.8,1.47,0.126,0.62,0,0,0,0,6,8.4,0,0,0,0,0.28500000000000003,61.29,105.62,0.96,0.14,791,1.8,90,2.6
+2023,7,6,22,0,15.200000000000001,1.47,0.114,0.62,0,0,0,0,8,8.8,0,0,0,0,0.28500000000000003,65.4,109.05,0.9500000000000001,0.14,791,1.7000000000000002,94,2.6
+2023,7,6,22,30,14.700000000000001,1.47,0.114,0.62,0,0,0,0,0,8.8,0,0,0,0,0.28400000000000003,67.53,111.95,0.9500000000000001,0.14,791,1.7000000000000002,93,2.2
+2023,7,6,23,0,14.200000000000001,1.49,0.10200000000000001,0.62,0,0,0,0,0,9,0,0,0,0,0.28300000000000003,70.86,114.23,0.9500000000000001,0.14,791,1.6,92,1.9000000000000001
+2023,7,6,23,30,13.600000000000001,1.49,0.10200000000000001,0.62,0,0,0,0,0,9,0,0,0,0,0.28300000000000003,73.57000000000001,115.83,0.9400000000000001,0.14,790,1.6,88,1.7000000000000002
+2023,7,7,0,0,13.100000000000001,1.52,0.092,0.62,0,0,0,0,5,9,0,0,0,0,0.28200000000000003,76.23,116.7,0.9400000000000001,0.14,790,1.6,85,1.5
+2023,7,7,0,30,12.700000000000001,1.52,0.092,0.62,0,0,0,0,5,9,0,0,0,0,0.281,78.25,116.81,0.9400000000000001,0.14,790,1.5,77,1.4000000000000001
+2023,7,7,1,0,12.200000000000001,1.54,0.085,0.62,0,0,0,0,3,8.9,0,0,0,0,0.28,80.27,116.15,0.93,0.14,790,1.5,69,1.3
+2023,7,7,1,30,11.9,1.54,0.085,0.62,0,0,0,0,0,8.9,0,0,0,0,0.279,81.97,114.75,0.93,0.14,791,1.5,62,1.4000000000000001
+2023,7,7,2,0,11.600000000000001,1.55,0.085,0.62,0,0,0,0,0,8.8,0,0,0,0,0.278,82.72,112.65,0.93,0.14,791,1.5,55,1.5
+2023,7,7,2,30,11.3,1.55,0.085,0.62,0,0,0,0,0,8.8,0,0,0,0,0.278,84.37,109.92,0.93,0.14,791,1.6,54,1.5
+2023,7,7,3,0,11,1.54,0.088,0.62,0,0,0,0,0,8.6,0,0,0,0,0.277,85.42,106.63,0.93,0.14,791,1.6,53,1.6
+2023,7,7,3,30,10.700000000000001,1.54,0.088,0.62,0,0,0,0,0,8.6,0,0,0,0,0.277,87.13,102.85000000000001,0.93,0.14,791,1.6,53,1.5
+2023,7,7,4,0,10.4,1.53,0.091,0.62,0,0,0,0,0,8.5,0,0,0,0,0.277,88.17,98.67,0.93,0.14,791,1.6,53,1.5
+2023,7,7,4,30,10.9,1.53,0.091,0.62,0,0,0,0,0,8.5,0,0,0,0,0.276,85.29,94.13,0.9400000000000001,0.14,791,1.6,52,1.9000000000000001
+2023,7,7,5,0,11.5,1.51,0.095,0.62,10,79,11,0,0,8.5,10,79,4,11,0.276,82.07000000000001,89,0.9400000000000001,0.14,791,1.6,50,2.3000000000000003
+2023,7,7,5,30,12.700000000000001,1.51,0.095,0.62,34,336,68,0,0,8.5,36,232,0,60,0.277,75.85000000000001,84.14,0.9400000000000001,0.14,791,1.6,49,2.6
+2023,7,7,6,0,14,1.5,0.097,0.62,50,514,149,0,0,8.200000000000001,60,418,0,140,0.277,67.91,78.93,0.9400000000000001,0.14,791,1.6,47,3
+2023,7,7,6,30,15.9,1.5,0.097,0.62,62,634,242,0,0,8.200000000000001,84,486,0,222,0.277,60.11,73.53,0.9400000000000001,0.14,791,1.5,49,3.1
+2023,7,7,7,0,17.900000000000002,1.5,0.097,0.62,72,717,340,0,0,5.800000000000001,138,439,0,302,0.277,45.02,68.01,0.9400000000000001,0.14,791,1.5,50,3.3000000000000003
+2023,7,7,7,30,19.5,1.5,0.097,0.62,79,780,440,0,0,5.800000000000001,79,780,0,440,0.277,40.75,62.4,0.9400000000000001,0.14,791,1.5,49,3.2
+2023,7,7,8,0,21.1,1.51,0.093,0.62,85,828,539,0,0,3.5,85,828,0,539,0.277,31.32,56.730000000000004,0.9400000000000001,0.14,791,1.5,48,3.1
+2023,7,7,8,30,22.400000000000002,1.51,0.093,0.62,88,865,632,0,0,3.5,88,865,0,632,0.277,28.94,51.03,0.9400000000000001,0.14,791,1.5,46,3.1
+2023,7,7,9,0,23.6,1.52,0.088,0.62,92,894,720,0,0,2.3000000000000003,92,894,0,720,0.276,24.740000000000002,45.36,0.9400000000000001,0.14,791,1.4000000000000001,44,3
+2023,7,7,9,30,24.5,1.52,0.088,0.62,95,916,799,0,0,2.3000000000000003,95,916,0,799,0.276,23.44,39.77,0.9400000000000001,0.14,791,1.4000000000000001,43,3
+2023,7,7,10,0,25.5,1.52,0.084,0.62,97,934,868,0,0,1.6,97,934,0,868,0.276,21.12,34.33,0.93,0.14,791,1.4000000000000001,42,2.9000000000000004
+2023,7,7,10,30,26.200000000000003,1.52,0.084,0.62,96,951,926,0,0,1.6,96,951,0,926,0.276,20.26,29.18,0.93,0.14,791,1.4000000000000001,42,2.9000000000000004
+2023,7,7,11,0,26.900000000000002,1.53,0.07,0.62,93,966,972,0,0,1.3,93,966,0,972,0.276,19.02,24.54,0.93,0.14,791,1.4000000000000001,43,2.9000000000000004
+2023,7,7,11,30,27.400000000000002,1.53,0.07,0.62,93,973,1003,0,0,1.3,93,973,0,1003,0.275,18.45,20.76,0.93,0.14,790,1.4000000000000001,44,2.8000000000000003
+2023,7,7,12,0,27.900000000000002,1.54,0.067,0.62,92,978,1020,0,0,1.3,92,978,0,1020,0.275,17.830000000000002,18.44,0.93,0.14,790,1.4000000000000001,46,2.8000000000000003
+2023,7,7,12,30,28.1,1.54,0.067,0.62,92,979,1022,0,0,1.3,92,979,0,1022,0.275,17.62,18.14,0.93,0.14,790,1.4000000000000001,48,2.7
+2023,7,7,13,0,28.400000000000002,1.54,0.065,0.62,92,977,1010,0,0,1.2000000000000002,92,977,0,1010,0.275,17.3,19.95,0.93,0.14,790,1.4000000000000001,49,2.7
+2023,7,7,13,30,28.5,1.54,0.065,0.62,90,973,983,0,0,1.2000000000000002,90,973,0,983,0.276,17.18,23.39,0.93,0.14,789,1.4000000000000001,48,2.7
+2023,7,7,14,0,28.700000000000003,1.54,0.065,0.62,89,966,943,0,0,1.2000000000000002,89,966,0,943,0.276,16.89,27.84,0.93,0.14,789,1.4000000000000001,47,2.7
+2023,7,7,14,30,28.5,1.54,0.065,0.62,87,955,889,0,0,1.1,87,955,0,889,0.277,17.09,32.88,0.93,0.14,789,1.4000000000000001,44,2.7
+2023,7,7,15,0,28.400000000000002,1.54,0.067,0.62,85,940,823,0,0,1,122,858,0,796,0.277,16.96,38.25,0.93,0.14,789,1.4000000000000001,40,2.8000000000000003
+2023,7,7,15,30,28,1.54,0.067,0.62,83,920,747,0,0,1,211,565,0,619,0.277,17.35,43.81,0.93,0.14,789,1.4000000000000001,34,2.9000000000000004
+2023,7,7,16,0,27.6,1.55,0.069,0.62,80,896,662,0,0,0.8,89,866,0,652,0.276,17.6,49.47,0.93,0.14,789,1.4000000000000001,29,3
+2023,7,7,16,30,26.900000000000002,1.55,0.069,0.62,75,867,570,0,0,0.8,75,867,0,570,0.276,18.330000000000002,55.17,0.93,0.14,789,1.4000000000000001,25,3.3000000000000003
+2023,7,7,17,0,26.3,1.56,0.067,0.62,69,829,473,0,0,0.9,69,829,0,473,0.276,19.07,60.85,0.93,0.13,789,1.4000000000000001,21,3.6
+2023,7,7,17,30,25.3,1.56,0.067,0.62,64,778,374,0,0,0.9,64,778,0,374,0.276,20.23,66.49,0.93,0.13,789,1.4000000000000001,20,3.8000000000000003
+2023,7,7,18,0,24.3,1.57,0.065,0.62,55,709,274,0,0,1.4000000000000001,55,709,0,274,0.277,22.26,72.04,0.93,0.13,789,1.4000000000000001,19,4
+2023,7,7,18,30,22.6,1.57,0.065,0.62,47,606,178,1,3,1.4000000000000001,76,340,18,150,0.277,24.650000000000002,77.48,0.93,0.13,789,1.4000000000000001,18,3.7
+2023,7,7,19,0,20.8,1.58,0.066,0.62,34,448,91,4,3,2.8000000000000003,52,110,50,66,0.277,30.42,82.75,0.93,0.13,789,1.5,18,3.4000000000000004
+2023,7,7,19,30,19.8,1.58,0.066,0.62,17,180,24,0,0,2.8000000000000003,16,172,7,23,0.278,32.35,87.76,0.93,0.13,789,1.5,18,3.3000000000000003
+2023,7,7,20,0,18.7,1.6,0.07100000000000001,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.278,36.04,92.87,0.93,0.13,790,1.5,19,3.1
+2023,7,7,20,30,18.1,1.6,0.07100000000000001,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.279,37.410000000000004,97.49000000000001,0.93,0.13,790,1.5,21,2.9000000000000004
+2023,7,7,21,0,17.400000000000002,1.61,0.075,0.62,0,0,0,0,0,4,0,0,0,0,0.279,40.86,101.79,0.93,0.13,790,1.5,23,2.7
+2023,7,7,21,30,16.7,1.61,0.075,0.62,0,0,0,0,3,4,0,0,0,0,0.279,42.71,105.69,0.93,0.13,790,1.5,26,2.4000000000000004
+2023,7,7,22,0,16,1.6,0.079,0.62,0,0,0,0,0,4.7,0,0,0,0,0.279,47.19,109.13,0.9400000000000001,0.13,790,1.5,29,2
+2023,7,7,22,30,15.5,1.6,0.079,0.62,0,0,0,0,3,4.7,0,0,0,0,0.28,48.72,112.03,0.9400000000000001,0.13,790,1.5,32,1.8
+2023,7,7,23,0,15,1.57,0.084,0.62,0,0,0,0,3,5.5,0,0,0,0,0.28,52.870000000000005,114.32000000000001,0.9400000000000001,0.13,790,1.5,34,1.5
+2023,7,7,23,30,14.600000000000001,1.57,0.084,0.62,0,0,0,0,5,5.4,0,0,0,0,0.28,54.18,115.93,0.9400000000000001,0.13,789,1.5,37,1.3
+2023,7,8,0,0,14.200000000000001,1.56,0.085,0.62,0,0,0,0,3,5.800000000000001,0,0,0,0,0.28,57.1,116.81,0.9400000000000001,0.13,789,1.5,39,1.2000000000000002
+2023,7,8,0,30,13.8,1.56,0.085,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.279,58.6,116.92,0.9400000000000001,0.13,789,1.5,40,1.2000000000000002
+2023,7,8,1,0,13.5,1.57,0.081,0.62,0,0,0,0,3,6,0,0,0,0,0.279,60.42,116.27,0.9400000000000001,0.13,789,1.5,40,1.2000000000000002
+2023,7,8,1,30,13,1.57,0.081,0.62,0,0,0,0,0,6,0,0,0,0,0.279,62.410000000000004,114.86,0.93,0.13,789,1.5,40,1.3
+2023,7,8,2,0,12.600000000000001,1.58,0.076,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.279,64.79,112.76,0.93,0.13,789,1.5,40,1.4000000000000001
+2023,7,8,2,30,12.200000000000001,1.58,0.076,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.279,66.51,110.03,0.93,0.13,789,1.4000000000000001,41,1.5
+2023,7,8,3,0,11.9,1.58,0.07200000000000001,0.62,0,0,0,0,0,6.4,0,0,0,0,0.279,68.93,106.74000000000001,0.93,0.13,789,1.4000000000000001,41,1.6
+2023,7,8,3,30,11.5,1.58,0.07200000000000001,0.62,0,0,0,0,0,6.4,0,0,0,0,0.279,70.77,102.96000000000001,0.92,0.13,789,1.4000000000000001,41,1.6
+2023,7,8,4,0,11.200000000000001,1.58,0.07100000000000001,0.62,0,0,0,0,0,6.6000000000000005,0,0,29,0,0.279,73.21000000000001,98.77,0.92,0.13,789,1.4000000000000001,41,1.7000000000000002
+2023,7,8,4,30,11.8,1.58,0.07100000000000001,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.279,70.37,94.24,0.92,0.13,789,1.4000000000000001,40,2
+2023,7,8,5,0,12.3,1.57,0.07200000000000001,0.62,10,90,11,1,0,6.9,9,66,11,10,0.278,69.53,89.10000000000001,0.92,0.13,790,1.4000000000000001,39,2.4000000000000004
+2023,7,8,5,30,13.700000000000001,1.57,0.07200000000000001,0.62,31,378,69,0,0,6.9,31,369,4,68,0.279,63.47,84.24,0.92,0.13,790,1.4000000000000001,41,2.6
+2023,7,8,6,0,15.200000000000001,1.56,0.07200000000000001,0.62,45,557,151,0,0,6.7,45,557,0,151,0.279,57,79.03,0.92,0.13,790,1.4000000000000001,44,2.8000000000000003
+2023,7,8,6,30,17.3,1.56,0.07200000000000001,0.62,55,674,245,0,0,6.7,55,674,0,245,0.279,49.88,73.63,0.92,0.13,790,1.4000000000000001,46,2.9000000000000004
+2023,7,8,7,0,19.400000000000002,1.56,0.07100000000000001,0.62,63,755,344,0,0,5.2,63,755,0,344,0.28,39.34,68.11,0.92,0.13,790,1.4000000000000001,49,3
+2023,7,8,7,30,21,1.56,0.07100000000000001,0.62,70,812,445,0,0,5.2,70,812,0,445,0.28,35.65,62.49,0.92,0.13,790,1.4000000000000001,50,2.7
+2023,7,8,8,0,22.6,1.55,0.07,0.62,75,855,543,0,0,3.2,75,855,0,543,0.28,27.990000000000002,56.82,0.92,0.13,790,1.4000000000000001,51,2.5
+2023,7,8,8,30,23.700000000000003,1.55,0.07,0.62,79,887,636,0,0,3.2,79,887,0,636,0.279,26.19,51.13,0.92,0.13,790,1.4000000000000001,52,2.2
+2023,7,8,9,0,24.700000000000003,1.56,0.07,0.62,83,913,723,0,0,2.3000000000000003,83,913,0,723,0.279,23.25,45.46,0.92,0.13,790,1.4000000000000001,52,2
+2023,7,8,9,30,25.6,1.56,0.07,0.62,87,932,802,0,0,2.3000000000000003,87,932,0,802,0.278,22.04,39.87,0.92,0.13,790,1.4000000000000001,55,1.8
+2023,7,8,10,0,26.400000000000002,1.56,0.07100000000000001,0.62,89,947,870,0,0,1.9000000000000001,89,947,0,870,0.277,20.44,34.43,0.92,0.13,790,1.4000000000000001,57,1.6
+2023,7,8,10,30,27.1,1.56,0.07100000000000001,0.62,90,960,927,0,0,1.9000000000000001,90,960,0,927,0.276,19.62,29.29,0.92,0.13,790,1.4000000000000001,57,1.4000000000000001
+2023,7,8,11,0,27.700000000000003,1.51,0.066,0.62,90,969,971,0,0,1.7000000000000002,90,969,0,971,0.276,18.62,24.650000000000002,0.92,0.13,790,1.4000000000000001,58,1.2000000000000002
+2023,7,8,11,30,28.200000000000003,1.51,0.066,0.62,92,973,1001,0,0,1.7000000000000002,92,973,0,1001,0.275,18.06,20.88,0.92,0.13,789,1.4000000000000001,58,0.9
+2023,7,8,12,0,28.8,1.5,0.07,0.62,95,973,1017,0,0,1.5,95,973,0,1017,0.274,17.23,18.56,0.93,0.13,789,1.4000000000000001,59,0.7000000000000001
+2023,7,8,12,30,29,1.5,0.07,0.62,96,971,1018,0,0,1.5,96,971,0,1018,0.273,17.03,18.240000000000002,0.93,0.13,789,1.4000000000000001,56,0.4
+2023,7,8,13,0,29.3,1.49,0.077,0.62,97,966,1005,0,0,1.4000000000000001,97,966,0,1005,0.272,16.57,20.04,0.93,0.13,789,1.4000000000000001,53,0.2
+2023,7,8,13,30,29.400000000000002,1.49,0.077,0.62,97,961,979,0,0,1.4000000000000001,97,961,0,979,0.271,16.47,23.46,0.9400000000000001,0.13,789,1.4000000000000001,169,0.4
+2023,7,8,14,0,29.5,1.45,0.079,0.62,97,952,938,0,0,1.2000000000000002,107,928,0,927,0.27,16.18,27.900000000000002,0.9400000000000001,0.13,789,1.4000000000000001,285,0.7000000000000001
+2023,7,8,14,30,29.400000000000002,1.45,0.079,0.62,96,939,884,0,8,1.2000000000000002,287,364,0,593,0.27,16.25,32.92,0.9400000000000001,0.13,788,1.5,294,1.2000000000000002
+2023,7,8,15,0,29.200000000000003,1.42,0.084,0.62,94,922,818,0,8,1,253,45,0,288,0.27,16.22,38.29,0.9400000000000001,0.13,788,1.5,303,1.6
+2023,7,8,15,30,28.700000000000003,1.42,0.084,0.62,91,901,741,0,8,1,146,54,0,185,0.27,16.7,43.85,0.9400000000000001,0.13,788,1.5,314,2.1
+2023,7,8,16,0,28.3,1.3900000000000001,0.085,0.62,88,875,656,0,0,1.1,154,684,0,598,0.27,17.22,49.51,0.9400000000000001,0.13,789,1.5,324,2.6
+2023,7,8,16,30,27.5,1.3900000000000001,0.085,0.62,82,845,564,0,0,1.1,116,758,0,549,0.27,18.04,55.2,0.9400000000000001,0.13,789,1.5,337,2.9000000000000004
+2023,7,8,17,0,26.700000000000003,1.37,0.081,0.62,76,805,468,0,0,1.5,114,695,0,452,0.271,19.53,60.89,0.9400000000000001,0.13,789,1.6,349,3.2
+2023,7,8,17,30,25.700000000000003,1.37,0.081,0.62,69,754,369,0,3,1.5,152,438,7,327,0.271,20.71,66.52,0.9400000000000001,0.13,789,1.6,183,3.4000000000000004
+2023,7,8,18,0,24.700000000000003,1.36,0.077,0.62,60,683,270,0,0,2.6,114,376,11,230,0.272,23.740000000000002,72.08,0.9400000000000001,0.13,789,1.6,17,3.6
+2023,7,8,18,30,23.1,1.36,0.077,0.62,50,576,174,0,0,2.6,59,500,7,167,0.273,26.16,77.52,0.9400000000000001,0.13,790,1.6,27,3.6
+2023,7,8,19,0,21.5,1.35,0.078,0.62,36,413,88,5,7,4.4,55,69,75,64,0.273,32.55,82.8,0.9400000000000001,0.13,790,1.6,38,3.5
+2023,7,8,19,30,20.5,1.35,0.078,0.62,17,153,23,6,5,4.4,15,2,86,15,0.274,34.64,87.81,0.9400000000000001,0.13,791,1.6,46,3.7
+2023,7,8,20,0,19.5,1.35,0.082,0.62,0,0,0,0,8,5.300000000000001,0,0,0,0,0.275,39.45,92.93,0.9400000000000001,0.13,791,1.6,54,3.9000000000000004
+2023,7,8,20,30,18.8,1.35,0.082,0.62,0,0,0,0,3,5.300000000000001,0,0,0,0,0.275,41.2,97.56,0.9400000000000001,0.13,791,1.7000000000000002,60,3.8000000000000003
+2023,7,8,21,0,18.1,1.36,0.084,0.62,0,0,0,0,3,6.2,0,0,0,0,0.276,45.54,101.86,0.9400000000000001,0.13,791,1.7000000000000002,66,3.7
+2023,7,8,21,30,17.5,1.36,0.084,0.62,0,0,0,0,3,6.2,0,0,0,0,0.276,47.29,105.77,0.9400000000000001,0.13,791,1.7000000000000002,70,3.4000000000000004
+2023,7,8,22,0,16.900000000000002,1.3800000000000001,0.076,0.62,0,0,0,0,0,6.7,0,0,0,0,0.276,51.19,109.22,0.93,0.13,791,1.8,75,3.2
+2023,7,8,22,30,16.3,1.3800000000000001,0.076,0.62,0,0,0,0,0,6.800000000000001,0,0,0,0,0.277,53.24,112.13,0.93,0.13,792,1.8,77,2.9000000000000004
+2023,7,8,23,0,15.700000000000001,1.4000000000000001,0.066,0.62,0,0,0,0,0,7.2,0,0,0,0,0.277,56.99,114.42,0.93,0.13,792,1.8,80,2.7
+2023,7,8,23,30,15.200000000000001,1.4000000000000001,0.066,0.62,0,0,0,0,0,7.2,0,0,0,0,0.277,58.77,116.04,0.92,0.13,791,1.8,81,2.4000000000000004
+2023,7,9,0,0,14.700000000000001,1.42,0.061,0.62,0,0,0,0,0,7.5,0,0,0,0,0.277,62.03,116.92,0.92,0.13,791,1.8,82,2.2
+2023,7,9,0,30,14.200000000000001,1.42,0.061,0.62,0,0,0,0,0,7.5,0,0,0,0,0.277,64.06,117.04,0.92,0.13,791,1.8,80,2
+2023,7,9,1,0,13.8,1.44,0.06,0.62,0,0,0,0,0,7.7,0,0,0,0,0.277,66.74,116.39,0.92,0.13,791,1.8,79,1.7000000000000002
+2023,7,9,1,30,13.4,1.44,0.06,0.62,0,0,0,0,3,7.7,0,0,0,0,0.277,68.49,114.98,0.93,0.13,791,1.8,75,1.6
+2023,7,9,2,0,13,1.45,0.06,0.62,0,0,0,0,3,7.800000000000001,0,0,0,0,0.276,70.84,112.88,0.93,0.13,791,1.8,70,1.4000000000000001
+2023,7,9,2,30,12.700000000000001,1.45,0.06,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.276,72.24,110.15,0.93,0.13,791,1.8,65,1.3
+2023,7,9,3,0,12.4,1.46,0.06,0.62,0,0,0,0,0,7.9,0,0,0,0,0.276,73.92,106.86,0.93,0.13,791,1.8,60,1.2000000000000002
+2023,7,9,3,30,12.100000000000001,1.46,0.06,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,75.38,103.08,0.92,0.13,791,1.7000000000000002,57,1.2000000000000002
+2023,7,9,4,0,11.8,1.47,0.059000000000000004,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,76.8,98.89,0.92,0.13,791,1.7000000000000002,54,1.2000000000000002
+2023,7,9,4,30,12.4,1.47,0.059000000000000004,0.62,0,0,0,0,0,7.9,0,0,0,0,0.275,73.84,94.35000000000001,0.92,0.13,791,1.6,52,1.7000000000000002
+2023,7,9,5,0,12.9,1.47,0.057,0.62,10,96,11,0,0,7.800000000000001,10,96,0,11,0.274,71.37,89.19,0.92,0.13,792,1.6,50,2.1
+2023,7,9,5,30,14.3,1.47,0.057,0.62,29,396,68,0,0,7.800000000000001,29,396,0,68,0.274,65.18,84.34,0.92,0.13,792,1.6,49,2.2
+2023,7,9,6,0,15.8,1.47,0.055,0.62,42,579,151,0,0,7.6000000000000005,42,579,0,151,0.274,58.08,79.13,0.92,0.13,792,1.5,49,2.4000000000000004
+2023,7,9,6,30,18.1,1.47,0.055,0.62,51,695,246,0,0,7.6000000000000005,51,695,0,246,0.274,50.22,73.73,0.92,0.13,792,1.5,50,2.4000000000000004
+2023,7,9,7,0,20.400000000000002,1.46,0.054,0.62,58,774,345,0,0,6.7,58,774,0,345,0.274,41.09,68.21000000000001,0.92,0.13,792,1.4000000000000001,50,2.4000000000000004
+2023,7,9,7,30,22.6,1.46,0.054,0.62,63,830,445,0,0,6.7,63,830,0,445,0.274,35.93,62.59,0.92,0.13,792,1.4000000000000001,54,1.9000000000000001
+2023,7,9,8,0,24.8,1.47,0.054,0.62,69,871,544,0,0,4.9,69,871,0,544,0.273,27.78,56.92,0.92,0.13,792,1.4000000000000001,57,1.5
+2023,7,9,8,30,26,1.47,0.054,0.62,72,903,638,0,0,4.9,72,903,0,638,0.273,25.87,51.22,0.92,0.13,792,1.4000000000000001,58,1
+2023,7,9,9,0,27.200000000000003,1.47,0.054,0.62,76,927,725,0,0,4.1000000000000005,76,927,0,725,0.272,22.72,45.550000000000004,0.92,0.13,792,1.4000000000000001,58,0.5
+2023,7,9,9,30,28.1,1.47,0.054,0.62,79,946,804,0,0,4.1000000000000005,79,946,0,804,0.272,21.56,39.96,0.92,0.13,792,1.4000000000000001,137,0.6000000000000001
+2023,7,9,10,0,29,1.48,0.054,0.62,80,961,872,0,0,3.2,80,961,0,872,0.271,19.21,34.54,0.92,0.13,792,1.4000000000000001,216,0.7000000000000001
+2023,7,9,10,30,29.700000000000003,1.48,0.054,0.62,80,975,930,0,0,3.2,80,975,0,930,0.271,18.46,29.39,0.91,0.13,792,1.3,217,1.1
+2023,7,9,11,0,30.400000000000002,1.4000000000000001,0.046,0.62,80,986,975,0,0,2.4000000000000004,80,986,0,975,0.271,16.78,24.76,0.91,0.13,792,1.3,218,1.5
+2023,7,9,11,30,31,1.4000000000000001,0.046,0.62,81,991,1006,0,0,2.4000000000000004,81,991,0,1006,0.271,16.2,21,0.91,0.13,791,1.3,219,1.9000000000000001
+2023,7,9,12,0,31.5,1.41,0.045,0.62,81,995,1024,0,0,1.8,81,995,0,1024,0.27,15.07,18.68,0.91,0.13,791,1.3,220,2.3000000000000003
+2023,7,9,12,30,31.8,1.41,0.045,0.62,81,997,1027,0,0,1.8,81,997,0,1027,0.27,14.81,18.36,0.91,0.13,791,1.3,222,2.5
+2023,7,9,13,0,32.1,1.42,0.044,0.62,80,996,1015,0,0,1.1,80,996,0,1015,0.27,13.82,20.14,0.91,0.13,791,1.3,225,2.8000000000000003
+2023,7,9,13,30,32.2,1.42,0.044,0.62,80,992,989,0,0,1.1,91,967,0,978,0.27,13.74,23.54,0.91,0.13,791,1.2000000000000002,228,3
+2023,7,9,14,0,32.300000000000004,1.46,0.044,0.62,78,986,949,0,0,0.1,78,984,0,947,0.27,12.780000000000001,27.96,0.91,0.13,790,1.2000000000000002,230,3.2
+2023,7,9,14,30,32.2,1.46,0.044,0.62,76,979,897,0,0,0.1,76,979,0,897,0.27,12.85,32.980000000000004,0.91,0.13,790,1.2000000000000002,232,3.3000000000000003
+2023,7,9,15,0,32.1,1.49,0.042,0.62,74,968,833,0,0,-0.9,74,968,0,833,0.27,12.01,38.34,0.91,0.13,790,1.2000000000000002,234,3.3000000000000003
+2023,7,9,15,30,31.8,1.49,0.042,0.62,71,953,758,0,0,-0.9,71,953,0,758,0.27,12.21,43.89,0.91,0.13,790,1.1,234,3.3000000000000003
+2023,7,9,16,0,31.5,1.52,0.04,0.62,67,934,673,0,0,-1.8,67,934,0,673,0.269,11.59,49.550000000000004,0.91,0.13,790,1.1,234,3.2
+2023,7,9,16,30,30.900000000000002,1.52,0.04,0.62,63,908,581,0,0,-1.8,63,908,0,581,0.269,11.99,55.24,0.91,0.13,790,1.1,232,3
+2023,7,9,17,0,30.400000000000002,1.54,0.04,0.62,59,874,484,0,0,-2.6,59,874,0,484,0.269,11.68,60.93,0.91,0.14,790,1.1,229,2.8000000000000003
+2023,7,9,17,30,29.400000000000002,1.54,0.04,0.62,55,826,383,0,0,-2.6,55,826,0,383,0.269,12.370000000000001,66.57000000000001,0.91,0.14,790,1.1,223,2.3000000000000003
+2023,7,9,18,0,28.3,1.54,0.04,0.62,49,760,282,0,0,0.9,49,760,0,282,0.269,16.98,72.13,0.91,0.14,790,1.1,217,1.7000000000000002
+2023,7,9,18,30,26.5,1.54,0.04,0.62,42,662,184,0,0,0.9,42,662,0,184,0.269,18.86,77.57000000000001,0.91,0.14,790,1,206,1.3
+2023,7,9,19,0,24.6,1.53,0.041,0.62,31,508,94,0,0,2.9000000000000004,31,508,0,94,0.269,24.310000000000002,82.85000000000001,0.91,0.14,790,1,195,0.9
+2023,7,9,19,30,24,1.53,0.041,0.62,16,219,24,0,0,2.9000000000000004,16,219,0,24,0.269,25.2,87.87,0.92,0.14,790,1,186,1
+2023,7,9,20,0,23.3,1.53,0.042,0.62,0,0,0,0,0,1.3,0,0,0,0,0.27,23.44,92.99,0.92,0.14,790,1,177,1.1
+2023,7,9,20,30,22.8,1.53,0.042,0.62,0,0,0,0,0,1.3,0,0,0,0,0.27,24.150000000000002,97.63,0.92,0.14,790,1.1,173,1
+2023,7,9,21,0,22.200000000000003,1.52,0.043000000000000003,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.27,25.26,101.94,0.92,0.14,790,1.1,170,0.9
+2023,7,9,21,30,21.5,1.52,0.043000000000000003,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.271,26.35,105.86,0.92,0.14,790,1.1,164,0.8
+2023,7,9,22,0,20.900000000000002,1.51,0.045,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.271,26.95,109.31,0.92,0.14,790,1.1,159,0.6000000000000001
+2023,7,9,22,30,20.200000000000003,1.51,0.045,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.271,28.13,112.23,0.92,0.14,790,1.1,152,0.6000000000000001
+2023,7,9,23,0,19.5,1.49,0.048,0.62,0,0,0,0,0,0.8,0,0,0,0,0.272,28.7,114.53,0.92,0.14,790,1.1,145,0.5
+2023,7,9,23,30,18.900000000000002,1.49,0.048,0.62,0,0,0,0,0,0.8,0,0,0,0,0.272,29.79,116.16,0.93,0.14,790,1.2000000000000002,147,0.5
+2023,7,10,0,0,18.3,1.48,0.053,0.62,0,0,0,0,0,1,0,0,0,0,0.273,31.19,117.04,0.93,0.14,790,1.2000000000000002,149,0.4
+2023,7,10,0,30,18,1.48,0.053,0.62,0,0,0,0,5,1,0,0,0,0,0.273,31.78,117.16,0.9400000000000001,0.14,790,1.3,177,0.4
+2023,7,10,1,0,17.6,1.45,0.063,0.62,0,0,0,0,5,0.8,0,0,0,0,0.274,32.32,116.51,0.9400000000000001,0.14,790,1.3,204,0.30000000000000004
+2023,7,10,1,30,17.3,1.45,0.063,0.62,0,0,0,0,5,0.8,0,0,0,0,0.274,32.94,115.11,0.9500000000000001,0.14,790,1.4000000000000001,233,0.5
+2023,7,10,2,0,16.900000000000002,1.41,0.082,0.62,0,0,0,0,5,1.1,0,0,0,0,0.275,34.49,113.01,0.9500000000000001,0.14,790,1.4000000000000001,261,0.6000000000000001
+2023,7,10,2,30,16.400000000000002,1.41,0.082,0.62,0,0,0,0,5,1.1,0,0,0,0,0.275,35.65,110.28,0.96,0.14,791,1.5,272,0.9
+2023,7,10,3,0,15.9,1.37,0.106,0.62,0,0,0,0,5,1.3,0,0,0,0,0.276,37.1,106.98,0.96,0.14,791,1.6,283,1.1
+2023,7,10,3,30,15.600000000000001,1.37,0.106,0.62,0,0,0,0,5,1.3,0,0,0,0,0.276,37.81,103.2,0.96,0.14,791,1.7000000000000002,296,1.2000000000000002
+2023,7,10,4,0,15.3,1.37,0.106,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.277,38.82,99,0.96,0.14,792,1.7000000000000002,310,1.2000000000000002
+2023,7,10,4,30,15.9,1.37,0.106,0.62,0,0,0,0,8,1.4000000000000001,0,0,0,0,0.277,37.36,94.46000000000001,0.9500000000000001,0.14,792,1.7000000000000002,325,1.2000000000000002
+2023,7,10,5,0,16.6,1.4000000000000001,0.083,0.62,9,71,10,4,8,2.1,6,0,57,6,0.277,37.57,89.3,0.9500000000000001,0.14,792,1.7000000000000002,340,1.2000000000000002
+2023,7,10,5,30,18.5,1.4000000000000001,0.083,0.62,31,353,65,6,8,2.1,23,1,93,23,0.277,33.34,84.44,0.9400000000000001,0.14,792,1.7000000000000002,175,1.6
+2023,7,10,6,0,20.5,1.43,0.06,0.62,42,561,147,1,8,1.3,58,10,18,60,0.277,27.85,79.23,0.93,0.14,792,1.6,11,2
+2023,7,10,6,30,22.1,1.43,0.06,0.62,52,684,242,1,8,1.3,74,128,11,110,0.276,25.26,73.83,0.93,0.14,792,1.6,18,1.7000000000000002
+2023,7,10,7,0,23.8,1.44,0.053,0.62,57,770,342,0,7,1.3,121,182,0,188,0.276,22.82,68.31,0.93,0.14,792,1.6,26,1.4000000000000001
+2023,7,10,7,30,25.1,1.44,0.053,0.62,63,826,442,0,8,1.3,168,60,0,196,0.275,21.12,62.690000000000005,0.93,0.14,792,1.5,128,1
+2023,7,10,8,0,26.5,1.43,0.052000000000000005,0.62,68,868,541,0,3,1.8,237,301,0,401,0.275,20.13,57.01,0.93,0.14,793,1.5,231,0.6000000000000001
+2023,7,10,8,30,27.5,1.43,0.052000000000000005,0.62,72,901,635,0,5,1.8,317,169,4,423,0.274,18.990000000000002,51.32,0.93,0.14,793,1.5,223,1.3
+2023,7,10,9,0,28.400000000000002,1.41,0.05,0.62,75,927,723,0,7,2.1,288,442,0,597,0.273,18.34,45.65,0.93,0.14,793,1.5,215,2.1
+2023,7,10,9,30,29.200000000000003,1.41,0.05,0.62,77,946,801,0,0,2,136,843,0,781,0.273,17.490000000000002,40.07,0.93,0.14,792,1.5,214,2.7
+2023,7,10,10,0,30,1.3800000000000001,0.049,0.62,79,961,870,0,0,2.2,79,961,0,870,0.273,16.92,34.64,0.93,0.14,792,1.5,212,3.3000000000000003
+2023,7,10,10,30,30.5,1.3800000000000001,0.049,0.62,78,976,927,0,0,2.2,78,976,0,927,0.273,16.44,29.51,0.92,0.14,792,1.5,213,3.8000000000000003
+2023,7,10,11,0,31.1,1.23,0.036000000000000004,0.62,76,989,973,0,0,2.4000000000000004,83,954,0,948,0.273,16.04,24.88,0.92,0.14,792,1.5,213,4.3
+2023,7,10,11,30,31.5,1.23,0.036000000000000004,0.62,76,994,1003,0,0,2.4000000000000004,82,959,0,977,0.274,15.68,21.13,0.92,0.14,792,1.5,215,4.7
+2023,7,10,12,0,31.8,1.1,0.036000000000000004,0.62,77,996,1020,0,0,2.4000000000000004,91,963,0,1003,0.275,15.41,18.81,0.92,0.14,791,1.5,216,5.1000000000000005
+2023,7,10,12,30,32,1.1,0.036000000000000004,0.62,76,996,1021,0,0,2.4000000000000004,150,835,0,942,0.275,15.24,18.48,0.92,0.14,791,1.5,217,5.4
+2023,7,10,13,0,32.1,0.9500000000000001,0.036000000000000004,0.62,77,993,1009,0,0,2.4000000000000004,125,917,0,985,0.276,15.15,20.240000000000002,0.92,0.14,791,1.5,219,5.7
+2023,7,10,13,30,32.1,0.9500000000000001,0.036000000000000004,0.62,75,991,983,0,0,2.4000000000000004,154,757,0,848,0.276,15.15,23.62,0.92,0.14,791,1.5,220,5.7
+2023,7,10,14,0,32.1,0.54,0.03,0.62,73,986,943,0,3,2.3000000000000003,306,352,0,617,0.276,15.08,28.03,0.92,0.14,791,1.5,222,5.800000000000001
+2023,7,10,14,30,32,0.54,0.03,0.62,72,977,891,0,3,2.3000000000000003,213,509,0,640,0.276,15.16,33.04,0.92,0.14,791,1.5,223,5.6000000000000005
+2023,7,10,15,0,31.8,0.46,0.03,0.62,70,965,826,0,0,1.9000000000000001,142,811,0,778,0.276,14.93,38.39,0.92,0.14,791,1.5,225,5.5
+2023,7,10,15,30,31.5,0.46,0.03,0.62,68,949,751,0,0,1.9000000000000001,137,787,0,704,0.276,15.17,43.94,0.91,0.14,790,1.4000000000000001,226,5.300000000000001
+2023,7,10,16,0,31.1,0.47000000000000003,0.032,0.62,65,929,667,0,0,1.1,65,929,0,667,0.276,14.69,49.59,0.91,0.14,790,1.4000000000000001,228,5.1000000000000005
+2023,7,10,16,30,30.6,0.47000000000000003,0.032,0.62,62,902,576,0,0,1.1,62,902,0,576,0.276,15.11,55.29,0.91,0.14,790,1.3,230,4.9
+2023,7,10,17,0,30.1,0.55,0.034,0.62,59,867,480,0,0,0,59,867,0,480,0.276,14.35,60.97,0.91,0.13,790,1.2000000000000002,231,4.6000000000000005
+2023,7,10,17,30,29.1,0.55,0.034,0.62,54,821,380,0,0,0,81,726,11,369,0.276,15.200000000000001,66.62,0.91,0.13,790,1.2000000000000002,233,3.9000000000000004
+2023,7,10,18,0,28.200000000000003,0.64,0.035,0.62,48,755,279,0,0,-0.4,50,745,21,278,0.276,15.59,72.18,0.9,0.13,790,1.1,234,3.3000000000000003
+2023,7,10,18,30,25.700000000000003,0.64,0.035,0.62,41,658,182,0,0,-0.4,41,658,0,182,0.276,18.06,77.63,0.9,0.13,791,1,236,2.3000000000000003
+2023,7,10,19,0,23.200000000000003,0.74,0.036000000000000004,0.62,31,501,93,0,0,1.8,31,501,0,93,0.276,24.43,82.91,0.9,0.13,791,1,239,1.4000000000000001
+2023,7,10,19,30,22,0.74,0.036000000000000004,0.62,17,207,24,0,0,1.8,17,207,0,24,0.276,26.27,87.93,0.9,0.13,791,0.9,242,1.4000000000000001
+2023,7,10,20,0,20.8,0.85,0.036000000000000004,0.62,0,0,0,0,0,0.9,0,0,0,0,0.276,26.580000000000002,93.06,0.89,0.13,791,0.9,245,1.3
+2023,7,10,20,30,20.200000000000003,0.85,0.036000000000000004,0.62,0,0,0,0,0,0.9,0,0,0,0,0.276,27.62,97.71000000000001,0.89,0.13,792,0.8,250,1.4000000000000001
+2023,7,10,21,0,19.6,0.99,0.035,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.277,26.46,102.02,0.89,0.13,792,0.8,255,1.4000000000000001
+2023,7,10,21,30,19,0.99,0.035,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.277,27.47,105.95,0.89,0.13,792,0.8,261,1.4000000000000001
+2023,7,10,22,0,18.400000000000002,1.1300000000000001,0.035,0.62,0,0,0,0,0,-1,0,0,0,0,0.277,26.97,109.41,0.89,0.13,792,0.8,267,1.5
+2023,7,10,22,30,17.900000000000002,1.1300000000000001,0.035,0.62,0,0,0,0,0,-1,0,0,0,0,0.277,27.830000000000002,112.33,0.89,0.13,792,0.8,272,1.4000000000000001
+2023,7,10,23,0,17.400000000000002,1.25,0.037,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.277,28.41,114.65,0.89,0.13,792,0.8,278,1.4000000000000001
+2023,7,10,23,30,17.1,1.25,0.037,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.277,28.95,116.28,0.9,0.13,792,0.8,282,1.4000000000000001
+2023,7,11,0,0,16.8,1.31,0.039,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.276,30.330000000000002,117.17,0.9,0.13,792,0.8,286,1.4000000000000001
+2023,7,11,0,30,16.7,1.31,0.039,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.276,30.52,117.29,0.9,0.13,792,0.8,286,1.4000000000000001
+2023,7,11,1,0,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.276,31.2,116.64,0.9,0.13,792,0.8,287,1.3
+2023,7,11,1,30,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.276,31.2,115.24000000000001,0.9,0.13,792,0.8,283,1.3
+2023,7,11,2,0,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,30.38,113.14,0.9,0.13,792,0.7000000000000001,279,1.3
+2023,7,11,2,30,16.6,1.33,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,30.38,110.41,0.9,0.13,792,0.7000000000000001,272,1.2000000000000002
+2023,7,11,3,0,16.5,1.32,0.04,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.276,29.32,107.11,0.9,0.13,792,0.7000000000000001,265,1.2000000000000002
+2023,7,11,3,30,16.3,1.32,0.04,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.276,29.73,103.32000000000001,0.9,0.13,793,0.6000000000000001,258,1.1
+2023,7,11,4,0,16.1,1.31,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.276,28.76,99.12,0.9,0.13,793,0.6000000000000001,250,1.1
+2023,7,11,4,30,16.2,1.31,0.041,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.276,28.580000000000002,94.58,0.91,0.13,793,0.6000000000000001,244,1.1
+2023,7,11,5,0,16.3,1.29,0.043000000000000003,0.62,10,113,11,0,0,-1.1,10,113,0,11,0.276,30.55,89.4,0.91,0.13,793,0.6000000000000001,237,1
+2023,7,11,5,30,18,1.29,0.043000000000000003,0.62,28,447,70,0,0,-1.1,28,447,0,70,0.276,27.44,84.55,0.91,0.13,793,0.6000000000000001,230,1.3
+2023,7,11,6,0,19.700000000000003,1.26,0.045,0.62,39,630,156,0,0,-1.3,39,630,0,156,0.276,24.28,79.34,0.91,0.13,793,0.6000000000000001,223,1.6
+2023,7,11,6,30,21.8,1.26,0.045,0.62,49,742,254,0,0,-1.3,49,742,0,254,0.276,21.37,73.94,0.91,0.13,794,0.6000000000000001,226,2.3000000000000003
+2023,7,11,7,0,23.900000000000002,1.24,0.047,0.62,56,816,356,0,0,-4.2,56,816,0,356,0.276,15.08,68.41,0.91,0.13,794,0.6000000000000001,228,3
+2023,7,11,7,30,25.6,1.24,0.047,0.62,62,869,459,0,0,-4.2,62,869,0,459,0.276,13.63,62.79,0.91,0.13,794,0.7000000000000001,235,3.6
+2023,7,11,8,0,27.3,1.21,0.048,0.62,66,907,559,0,0,-5.800000000000001,66,907,0,559,0.276,10.950000000000001,57.11,0.91,0.13,794,0.7000000000000001,241,4.2
+2023,7,11,8,30,28.200000000000003,1.21,0.048,0.62,71,937,655,0,0,-5.800000000000001,71,937,0,655,0.276,10.39,51.42,0.91,0.13,794,0.7000000000000001,241,4.4
+2023,7,11,9,0,29.1,1.18,0.049,0.62,75,959,744,0,0,-6.5,75,959,0,744,0.275,9.35,45.76,0.91,0.13,794,0.7000000000000001,242,4.6000000000000005
+2023,7,11,9,30,29.900000000000002,1.18,0.049,0.62,78,978,825,0,0,-6.5,78,978,0,825,0.274,8.92,40.17,0.91,0.13,793,0.7000000000000001,241,4.800000000000001
+2023,7,11,10,0,30.6,1.1400000000000001,0.049,0.62,81,992,896,0,0,-7.300000000000001,81,992,0,896,0.274,8.05,34.75,0.92,0.13,793,0.6000000000000001,239,4.9
+2023,7,11,10,30,31.200000000000003,1.1400000000000001,0.049,0.62,80,1006,955,0,0,-7.300000000000001,80,1006,0,955,0.273,7.78,29.62,0.92,0.13,793,0.6000000000000001,237,5.1000000000000005
+2023,7,11,11,0,31.8,1.09,0.041,0.62,79,1018,1002,0,0,-8.1,79,1018,0,1002,0.273,7.09,25,0.92,0.13,793,0.6000000000000001,236,5.2
+2023,7,11,11,30,32.2,1.09,0.041,0.62,81,1023,1034,0,0,-8.1,81,1023,0,1034,0.272,6.93,21.26,0.92,0.13,793,0.6000000000000001,235,5.4
+2023,7,11,12,0,32.6,1.07,0.04,0.62,80,1027,1051,0,0,-8.8,80,1027,0,1051,0.272,6.44,18.94,0.92,0.13,792,0.6000000000000001,233,5.6000000000000005
+2023,7,11,12,30,32.800000000000004,1.07,0.04,0.62,80,1028,1054,0,0,-8.8,80,1028,0,1054,0.272,6.37,18.61,0.92,0.13,792,0.6000000000000001,234,5.7
+2023,7,11,13,0,33,1.09,0.037,0.62,79,1027,1042,0,0,-9.200000000000001,79,1027,0,1042,0.271,6.08,20.35,0.92,0.13,792,0.6000000000000001,234,5.800000000000001
+2023,7,11,13,30,33.1,1.09,0.037,0.62,77,1025,1015,0,0,-9.200000000000001,77,1025,0,1015,0.271,6.04,23.71,0.91,0.13,792,0.6000000000000001,235,5.9
+2023,7,11,14,0,33.1,1.1500000000000001,0.033,0.62,73,1021,974,0,0,-9.4,73,1021,0,974,0.271,5.94,28.1,0.91,0.13,792,0.6000000000000001,236,6
+2023,7,11,14,30,32.9,1.1500000000000001,0.033,0.62,71,1013,920,0,0,-9.4,71,1013,0,920,0.272,6,33.1,0.91,0.13,791,0.6000000000000001,238,6
+2023,7,11,15,0,32.7,1.23,0.031,0.62,68,1002,853,0,0,-9.600000000000001,68,1002,0,853,0.273,6,38.45,0.91,0.13,791,0.6000000000000001,239,6
+2023,7,11,15,30,32.300000000000004,1.23,0.031,0.62,65,988,776,0,0,-9.600000000000001,65,988,0,776,0.273,6.13,43.99,0.91,0.13,791,0.6000000000000001,241,5.9
+2023,7,11,16,0,32,1.29,0.03,0.62,62,969,690,0,0,-9.700000000000001,62,969,0,690,0.274,6.17,49.64,0.91,0.13,791,0.6000000000000001,243,5.800000000000001
+2023,7,11,16,30,31.3,1.29,0.03,0.62,59,942,595,0,0,-9.700000000000001,59,942,0,595,0.275,6.42,55.34,0.9,0.13,791,0.6000000000000001,245,5.6000000000000005
+2023,7,11,17,0,30.700000000000003,1.32,0.031,0.62,55,908,495,0,0,-9.5,62,890,0,493,0.276,6.74,61.02,0.9,0.13,791,0.6000000000000001,247,5.300000000000001
+2023,7,11,17,30,29.6,1.32,0.031,0.62,52,856,391,0,0,-9.5,74,778,0,382,0.277,7.18,66.67,0.9,0.13,791,0.7000000000000001,249,4.5
+2023,7,11,18,0,28.5,1.32,0.033,0.62,46,787,286,0,0,-7.4,57,734,0,281,0.277,9.07,72.24,0.91,0.13,791,0.7000000000000001,251,3.6
+2023,7,11,18,30,25.700000000000003,1.32,0.033,0.62,40,688,187,0,0,-7.4,42,671,0,185,0.277,10.68,77.69,0.91,0.13,791,0.7000000000000001,255,2.7
+2023,7,11,19,0,22.900000000000002,1.28,0.035,0.62,31,527,95,0,0,-3.5,31,527,0,95,0.277,17,82.98,0.91,0.13,791,0.8,259,1.7000000000000002
+2023,7,11,19,30,21.700000000000003,1.28,0.035,0.62,16,225,24,0,0,-3.4000000000000004,16,225,0,24,0.278,18.31,87.99,0.91,0.13,792,0.8,269,1.6
+2023,7,11,20,0,20.5,1.24,0.039,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.278,21.29,93.14,0.91,0.13,792,0.8,279,1.5
+2023,7,11,20,30,20,1.24,0.039,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.278,21.95,97.79,0.91,0.13,792,0.8,290,1.4000000000000001
+2023,7,11,21,0,19.400000000000002,1.22,0.043000000000000003,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.278,24.330000000000002,102.11,0.91,0.13,792,0.9,301,1.4000000000000001
+2023,7,11,21,30,19,1.22,0.043000000000000003,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.278,24.94,106.04,0.91,0.13,792,0.9,311,1.3
+2023,7,11,22,0,18.6,1.18,0.048,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.278,27.36,109.51,0.91,0.13,793,0.9,320,1.2000000000000002
+2023,7,11,22,30,18.400000000000002,1.18,0.048,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.278,27.7,112.45,0.92,0.13,793,0.9,332,1.1
+2023,7,11,23,0,18.3,1.1300000000000001,0.054,0.62,0,0,0,0,3,0.30000000000000004,0,0,0,0,0.278,29.73,114.77,0.92,0.13,793,1,343,1
+2023,7,11,23,30,18,1.1300000000000001,0.054,0.62,0,0,0,0,3,0.30000000000000004,0,0,0,0,0.279,30.29,116.4,0.92,0.13,793,1,182,0.9
+2023,7,12,0,0,17.7,1.09,0.061,0.62,0,0,0,0,5,1.2000000000000002,0,0,0,0,0.279,32.94,117.3,0.92,0.13,793,1,21,0.8
+2023,7,12,0,30,17.1,1.09,0.061,0.62,0,0,0,0,3,1.2000000000000002,0,0,0,0,0.279,34.2,117.43,0.92,0.13,793,1.1,39,0.9
+2023,7,12,1,0,16.400000000000002,1.07,0.067,0.62,0,0,0,0,5,2.1,0,0,0,0,0.279,38.19,116.78,0.92,0.13,793,1.1,57,0.9
+2023,7,12,1,30,15.8,1.07,0.067,0.62,0,0,0,0,5,2.1,0,0,0,0,0.279,39.68,115.38,0.92,0.13,793,1.1,65,1
+2023,7,12,2,0,15.200000000000001,1.06,0.07200000000000001,0.62,0,0,0,0,0,3,0,0,0,0,0.28,43.980000000000004,113.28,0.92,0.13,793,1.1,73,1
+2023,7,12,2,30,14.9,1.06,0.07200000000000001,0.62,0,0,0,0,3,3,0,0,0,0,0.28,44.84,110.54,0.93,0.13,793,1.2000000000000002,78,1.1
+2023,7,12,3,0,14.600000000000001,1.07,0.077,0.62,0,0,0,0,3,4,0,0,0,0,0.28,48.88,107.24000000000001,0.93,0.13,793,1.2000000000000002,83,1.1
+2023,7,12,3,30,14.4,1.07,0.077,0.62,0,0,0,0,3,4,0,0,0,0,0.281,49.51,103.45,0.93,0.13,793,1.2000000000000002,87,1.1
+2023,7,12,4,0,14.3,1.09,0.081,0.62,0,0,0,0,3,4.800000000000001,0,0,0,0,0.281,52.74,99.25,0.93,0.13,793,1.2000000000000002,90,1.1
+2023,7,12,4,30,14.8,1.09,0.081,0.62,0,0,0,0,4,4.800000000000001,0,0,0,0,0.281,51.07,94.7,0.93,0.13,793,1.2000000000000002,92,1
+2023,7,12,5,0,15.4,1.12,0.08,0.62,8,64,9,2,3,5.6000000000000005,7,33,36,7,0.281,52.09,89.5,0.93,0.13,793,1.3,95,0.9
+2023,7,12,5,30,17.3,1.12,0.08,0.62,31,331,62,2,0,5.6000000000000005,32,253,25,56,0.28200000000000003,46.17,84.66,0.93,0.13,793,1.3,97,1.2000000000000002
+2023,7,12,6,0,19.200000000000003,1.1500000000000001,0.078,0.62,46,528,143,1,3,6.2,59,170,14,90,0.28200000000000003,42.79,79.45,0.93,0.13,794,1.3,98,1.5
+2023,7,12,6,30,21.6,1.1500000000000001,0.078,0.62,57,655,237,0,3,6.300000000000001,79,68,0,98,0.28300000000000003,36.92,74.04,0.93,0.13,794,1.3,121,1.4000000000000001
+2023,7,12,7,0,23.900000000000002,1.18,0.074,0.62,65,743,337,0,3,4.5,114,345,0,240,0.28400000000000003,28.38,68.51,0.93,0.13,794,1.3,144,1.3
+2023,7,12,7,30,25.3,1.18,0.074,0.62,71,803,437,0,0,4.5,90,685,7,402,0.28400000000000003,26.11,62.89,0.93,0.13,794,1.4000000000000001,173,1.5
+2023,7,12,8,0,26.8,1.2,0.07100000000000001,0.62,76,848,535,0,0,1.7000000000000002,76,848,0,535,0.28500000000000003,19.64,57.22,0.93,0.13,794,1.4000000000000001,202,1.7000000000000002
+2023,7,12,8,30,27.8,1.2,0.07100000000000001,0.62,80,882,629,0,0,1.7000000000000002,80,882,0,629,0.28500000000000003,18.5,51.53,0.93,0.13,793,1.4000000000000001,213,2.1
+2023,7,12,9,0,28.8,1.19,0.069,0.62,84,908,716,0,0,1.1,84,908,0,716,0.28500000000000003,16.77,45.86,0.93,0.13,793,1.4000000000000001,224,2.4000000000000004
+2023,7,12,9,30,29.6,1.19,0.069,0.62,86,929,795,0,0,1.1,86,929,0,795,0.28500000000000003,16.02,40.28,0.93,0.13,793,1.4000000000000001,228,2.8000000000000003
+2023,7,12,10,0,30.5,1.17,0.066,0.62,88,946,864,0,0,1.3,88,946,0,864,0.28500000000000003,15.39,34.86,0.93,0.13,793,1.4000000000000001,232,3.2
+2023,7,12,10,30,31.200000000000003,1.17,0.066,0.62,85,965,923,0,0,1.3,85,965,0,923,0.28500000000000003,14.790000000000001,29.740000000000002,0.92,0.13,793,1.4000000000000001,233,3.6
+2023,7,12,11,0,31.8,1.4000000000000001,0.044,0.62,79,984,970,0,0,1.3,79,984,0,970,0.28400000000000003,14.33,25.13,0.92,0.13,793,1.4000000000000001,235,3.9000000000000004
+2023,7,12,11,30,32.300000000000004,1.4000000000000001,0.044,0.62,80,989,1001,0,0,1.3,80,989,0,1001,0.28400000000000003,13.91,21.400000000000002,0.92,0.13,792,1.4000000000000001,236,4.3
+2023,7,12,12,0,32.800000000000004,1.4000000000000001,0.043000000000000003,0.62,80,993,1018,0,0,1,158,837,0,949,0.28400000000000003,13.24,19.09,0.93,0.13,792,1.4000000000000001,236,4.6000000000000005
+2023,7,12,12,30,33.2,1.4000000000000001,0.043000000000000003,0.62,81,993,1021,0,0,1,220,747,7,927,0.28400000000000003,12.950000000000001,18.740000000000002,0.93,0.13,792,1.4000000000000001,236,4.800000000000001
+2023,7,12,13,0,33.5,1.41,0.042,0.62,79,993,1009,0,0,0.5,106,938,7,985,0.28300000000000003,12.3,20.47,0.93,0.13,791,1.4000000000000001,235,5
+2023,7,12,13,30,33.6,1.41,0.042,0.62,77,990,983,0,0,0.5,77,990,0,983,0.28300000000000003,12.23,23.81,0.93,0.13,791,1.4000000000000001,237,5.1000000000000005
+2023,7,12,14,0,33.800000000000004,1.58,0.037,0.62,74,986,943,0,0,0.2,74,986,0,943,0.28300000000000003,11.81,28.18,0.93,0.13,791,1.4000000000000001,238,5.2
+2023,7,12,14,30,33.7,1.58,0.037,0.62,73,976,890,0,0,0.2,73,976,0,890,0.28300000000000003,11.88,33.17,0.93,0.13,791,1.4000000000000001,241,5.300000000000001
+2023,7,12,15,0,33.6,1.62,0.037,0.62,71,963,825,0,0,0.1,71,963,0,825,0.28200000000000003,11.8,38.51,0.93,0.13,790,1.4000000000000001,243,5.300000000000001
+2023,7,12,15,30,33.2,1.62,0.037,0.62,69,946,749,0,0,0,69,946,0,749,0.28200000000000003,12.07,44.050000000000004,0.93,0.13,790,1.4000000000000001,247,5.2
+2023,7,12,16,0,32.9,1.6500000000000001,0.038,0.62,66,925,664,0,0,-0.1,84,826,0,618,0.28200000000000003,12.1,49.7,0.92,0.13,790,1.4000000000000001,250,5.1000000000000005
+2023,7,12,16,30,32.300000000000004,1.6500000000000001,0.038,0.62,63,897,572,0,0,-0.1,63,897,0,572,0.28200000000000003,12.51,55.39,0.92,0.13,790,1.4000000000000001,255,4.800000000000001
+2023,7,12,17,0,31.700000000000003,1.6500000000000001,0.04,0.62,59,860,475,0,3,-0.4,158,461,7,381,0.28200000000000003,12.74,61.08,0.92,0.13,790,1.4000000000000001,260,4.6000000000000005
+2023,7,12,17,30,30.6,1.6500000000000001,0.04,0.62,55,809,375,0,3,-0.4,148,343,18,284,0.28200000000000003,13.56,66.73,0.92,0.13,790,1.4000000000000001,268,3.8000000000000003
+2023,7,12,18,0,29.6,1.6300000000000001,0.045,0.62,50,737,274,0,0,0.4,78,593,4,258,0.28200000000000003,15.14,72.3,0.92,0.13,791,1.4000000000000001,276,3.1
+2023,7,12,18,30,27.200000000000003,1.6300000000000001,0.045,0.62,42,635,177,0,0,0.30000000000000004,44,611,0,174,0.28200000000000003,17.39,77.75,0.92,0.13,791,1.4000000000000001,290,2.2
+2023,7,12,19,0,24.8,1.62,0.048,0.62,32,474,89,0,0,2.4000000000000004,32,474,0,89,0.28200000000000003,23.23,83.04,0.92,0.13,791,1.4000000000000001,304,1.4000000000000001
+2023,7,12,19,30,23.8,1.62,0.048,0.62,15,194,22,0,0,2.4000000000000004,15,194,0,22,0.28200000000000003,24.69,88.06,0.92,0.13,792,1.4000000000000001,316,1.5
+2023,7,12,20,0,22.700000000000003,1.62,0.049,0.62,0,0,0,0,3,2,0,0,0,0,0.28200000000000003,25.59,93.22,0.92,0.13,792,1.4000000000000001,327,1.6
+2023,7,12,20,30,21.900000000000002,1.62,0.049,0.62,0,0,0,0,3,2,0,0,0,0,0.28300000000000003,26.86,97.88,0.91,0.13,792,1.4000000000000001,335,1.6
+2023,7,12,21,0,21.1,1.6,0.046,0.62,0,0,0,0,0,1.8,0,0,0,0,0.28300000000000003,27.77,102.21000000000001,0.91,0.13,793,1.4000000000000001,342,1.6
+2023,7,12,21,30,20.3,1.6,0.046,0.62,0,0,0,0,3,1.8,0,0,0,0,0.28300000000000003,29.17,106.15,0.9,0.13,793,1.4000000000000001,349,1.6
+2023,7,12,22,0,19.5,1.56,0.044,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.28300000000000003,30.45,109.63,0.9,0.13,793,1.3,356,1.5
+2023,7,12,22,30,18.8,1.56,0.044,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.28200000000000003,31.8,112.57000000000001,0.9,0.13,793,1.3,184,1.4000000000000001
+2023,7,12,23,0,18.2,1.52,0.044,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.28200000000000003,33.08,114.89,0.9,0.13,793,1.3,12,1.3
+2023,7,12,23,30,17.6,1.52,0.044,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.28200000000000003,34.35,116.54,0.91,0.13,793,1.3,21,1.2000000000000002
+2023,7,13,0,0,17.1,1.47,0.045,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.28200000000000003,35.56,117.44,0.91,0.13,793,1.3,31,1.2000000000000002
+2023,7,13,0,30,16.7,1.47,0.045,0.62,0,0,0,0,3,1.7000000000000002,0,0,0,0,0.281,36.47,117.57000000000001,0.91,0.13,793,1.3,42,1.2000000000000002
+2023,7,13,1,0,16.3,1.42,0.045,0.62,0,0,0,0,0,1.8,0,0,0,0,0.281,37.59,116.93,0.91,0.13,793,1.2000000000000002,53,1.1
+2023,7,13,1,30,15.9,1.42,0.045,0.62,0,0,0,0,0,1.8,0,0,0,0,0.281,38.56,115.53,0.91,0.13,793,1.2000000000000002,61,1.1
+2023,7,13,2,0,15.5,1.35,0.045,0.62,0,0,0,0,3,2,0,0,0,0,0.28,40.15,113.42,0.91,0.13,793,1.2000000000000002,70,1.1
+2023,7,13,2,30,15.200000000000001,1.35,0.045,0.62,0,0,0,0,3,2,0,0,0,0,0.28,40.93,110.68,0.91,0.13,793,1.1,75,1.1
+2023,7,13,3,0,14.9,1.29,0.045,0.62,0,0,0,0,3,2.2,0,0,0,0,0.28,42.410000000000004,107.38,0.91,0.13,793,1.1,81,1.1
+2023,7,13,3,30,14.700000000000001,1.29,0.045,0.62,0,0,0,0,0,2.2,0,0,0,0,0.28,42.96,103.58,0.91,0.13,793,1.1,85,1.1
+2023,7,13,4,0,14.5,1.24,0.045,0.62,0,0,0,0,3,2.4000000000000004,0,0,0,0,0.28,43.93,99.38,0.91,0.13,793,1.1,90,1.1
+2023,7,13,4,30,15,1.24,0.045,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28,42.54,94.82000000000001,0.91,0.13,793,1.1,94,0.9
+2023,7,13,5,0,15.5,1.22,0.045,0.62,8,94,9,1,0,2.8000000000000003,8,94,11,9,0.279,42.62,89.61,0.91,0.13,793,1.1,99,0.8
+2023,7,13,5,30,17.2,1.22,0.045,0.62,27,407,64,4,3,2.8000000000000003,35,116,54,46,0.28,38.26,84.78,0.91,0.13,793,1.1,110,0.8
+2023,7,13,6,0,18.900000000000002,1.2,0.046,0.62,39,596,147,0,0,2.6,55,407,0,129,0.28,33.75,79.56,0.91,0.13,793,1.1,122,0.8
+2023,7,13,6,30,21,1.2,0.046,0.62,49,711,243,0,0,2.6,61,525,0,204,0.281,29.650000000000002,74.15,0.91,0.13,793,1.1,159,1
+2023,7,13,7,0,23.1,1.19,0.047,0.62,55,789,343,0,3,1.2000000000000002,170,197,0,242,0.281,23.59,68.62,0.91,0.13,793,1.1,196,1.1
+2023,7,13,7,30,25.200000000000003,1.19,0.047,0.62,62,842,444,0,3,1.2000000000000002,238,214,0,335,0.281,20.8,63,0.91,0.13,793,1.2000000000000002,209,1.7000000000000002
+2023,7,13,8,0,27.400000000000002,1.19,0.049,0.62,66,881,542,0,3,-1.3,265,288,0,421,0.281,15.280000000000001,57.32,0.91,0.13,793,1.2000000000000002,221,2.4000000000000004
+2023,7,13,8,30,28.400000000000002,1.19,0.049,0.62,71,910,636,0,0,-1.3,137,759,0,608,0.281,14.42,51.63,0.91,0.13,793,1.2000000000000002,223,2.8000000000000003
+2023,7,13,9,0,29.400000000000002,1.17,0.05,0.62,75,933,723,0,0,-1.1,75,933,0,723,0.281,13.790000000000001,45.97,0.91,0.13,793,1.2000000000000002,226,3.3000000000000003
+2023,7,13,9,30,30.200000000000003,1.17,0.05,0.62,78,951,802,0,0,-1.1,78,951,0,802,0.28,13.17,40.39,0.91,0.13,793,1.2000000000000002,227,3.6
+2023,7,13,10,0,31,1.1500000000000001,0.051000000000000004,0.62,80,965,871,0,0,-0.5,80,965,0,871,0.28,13.1,34.980000000000004,0.91,0.13,793,1.2000000000000002,228,4
+2023,7,13,10,30,31.6,1.1500000000000001,0.051000000000000004,0.62,81,978,929,0,0,-0.5,81,978,0,929,0.28,12.65,29.86,0.91,0.13,792,1.2000000000000002,229,4.3
+2023,7,13,11,0,32.300000000000004,1.21,0.045,0.62,81,989,975,0,0,-0.30000000000000004,81,989,0,975,0.279,12.42,25.26,0.91,0.13,792,1.2000000000000002,231,4.6000000000000005
+2023,7,13,11,30,32.7,1.21,0.045,0.62,81,993,1005,0,0,-0.30000000000000004,81,993,0,1005,0.278,12.14,21.54,0.91,0.13,792,1.2000000000000002,232,4.800000000000001
+2023,7,13,12,0,33.2,1.18,0.047,0.62,82,994,1021,1,0,-0.2,267,594,14,828,0.277,11.85,19.23,0.91,0.13,792,1.3,233,4.9
+2023,7,13,12,30,33.5,1.18,0.047,0.62,83,993,1023,1,8,-0.2,276,622,18,865,0.277,11.64,18.88,0.92,0.13,791,1.3,234,5
+2023,7,13,13,0,33.7,1.19,0.05,0.62,84,989,1010,0,0,-0.30000000000000004,140,879,0,963,0.276,11.42,20.59,0.92,0.13,791,1.3,235,5
+2023,7,13,13,30,33.800000000000004,1.19,0.05,0.62,84,983,983,0,0,-0.30000000000000004,84,983,0,983,0.275,11.36,23.91,0.92,0.13,791,1.3,237,5
+2023,7,13,14,0,33.9,1.25,0.053,0.62,84,973,941,0,0,-0.6000000000000001,84,973,0,941,0.275,11.09,28.27,0.93,0.13,790,1.4000000000000001,238,4.9
+2023,7,13,14,30,33.800000000000004,1.25,0.053,0.62,84,960,887,0,0,-0.6000000000000001,84,960,0,887,0.274,11.15,33.25,0.93,0.13,790,1.4000000000000001,242,4.800000000000001
+2023,7,13,15,0,33.6,1.26,0.062,0.62,85,941,821,0,0,-1,85,941,0,821,0.274,10.94,38.58,0.9400000000000001,0.13,790,1.4000000000000001,245,4.6000000000000005
+2023,7,13,15,30,33.300000000000004,1.26,0.062,0.62,82,924,745,0,0,-1,82,924,0,745,0.273,11.13,44.12,0.93,0.13,790,1.4000000000000001,252,4.4
+2023,7,13,16,0,32.9,1.26,0.062,0.62,78,901,660,0,0,-1.6,78,901,0,660,0.273,10.89,49.76,0.93,0.13,790,1.4000000000000001,260,4.2
+2023,7,13,16,30,32.300000000000004,1.26,0.062,0.62,74,871,568,0,0,-1.6,87,835,0,561,0.273,11.26,55.45,0.93,0.13,790,1.4000000000000001,271,4
+2023,7,13,17,0,31.700000000000003,1.26,0.063,0.62,69,831,470,0,0,-2.2,68,830,0,469,0.272,11.120000000000001,61.14,0.93,0.13,790,1.3,282,3.9000000000000004
+2023,7,13,17,30,30.6,1.26,0.063,0.62,63,780,370,0,0,-2.2,63,780,0,370,0.272,11.84,66.79,0.93,0.13,790,1.3,294,3.7
+2023,7,13,18,0,29.5,1.27,0.062,0.62,55,710,270,0,0,-1.5,58,694,0,268,0.272,13.3,72.36,0.92,0.13,790,1.3,305,3.5
+2023,7,13,18,30,27.400000000000002,1.27,0.062,0.62,45,610,174,0,0,-1.5,45,610,0,174,0.273,15.02,77.82000000000001,0.92,0.13,790,1.2000000000000002,314,3
+2023,7,13,19,0,25.200000000000003,1.25,0.055,0.62,33,452,87,0,0,-0.5,33,452,0,87,0.273,18.38,83.12,0.91,0.13,791,1.2000000000000002,323,2.6
+2023,7,13,19,30,23.8,1.25,0.055,0.62,15,175,21,0,0,-0.5,15,175,0,21,0.273,19.98,88.14,0.9,0.13,791,1.2000000000000002,326,2.4000000000000004
+2023,7,13,20,0,22.3,1.2,0.047,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.274,20.91,93.31,0.9,0.13,792,1.1,329,2.2
+2023,7,13,20,30,21.200000000000003,1.2,0.047,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.274,22.36,97.97,0.9,0.13,792,1,329,2
+2023,7,13,21,0,20.1,1.1300000000000001,0.043000000000000003,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.275,23.650000000000002,102.31,0.89,0.13,792,1,330,1.8
+2023,7,13,21,30,19.3,1.1300000000000001,0.043000000000000003,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.275,24.88,106.26,0.89,0.13,793,0.9,331,1.7000000000000002
+2023,7,13,22,0,18.5,1.08,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,26.86,109.74000000000001,0.89,0.13,793,0.8,332,1.6
+2023,7,13,22,30,18,1.08,0.04,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.276,27.71,112.69,0.89,0.13,793,0.8,332,1.5
+2023,7,13,23,0,17.400000000000002,1.06,0.038,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.277,29.6,115.03,0.89,0.13,793,0.8,333,1.5
+2023,7,13,23,30,17.1,1.06,0.038,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.278,30.16,116.68,0.89,0.13,793,0.8,333,1.5
+2023,7,14,0,0,16.7,1.06,0.037,0.62,0,0,0,0,0,0,0,0,0,0,0.278,32.22,117.58,0.89,0.13,793,0.8,334,1.5
+2023,7,14,0,30,16.400000000000002,1.06,0.037,0.62,0,0,0,0,0,0,0,0,0,0,0.278,32.84,117.72,0.89,0.13,793,0.9,335,1.4000000000000001
+2023,7,14,1,0,16.2,1.09,0.037,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.279,34.71,117.08,0.9,0.13,793,0.9,336,1.3
+2023,7,14,1,30,15.9,1.09,0.037,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.278,35.38,115.68,0.9,0.13,793,0.9,342,1.2000000000000002
+2023,7,14,2,0,15.700000000000001,1.1300000000000001,0.038,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.278,37.43,113.57000000000001,0.9,0.13,793,1,347,1.1
+2023,7,14,2,30,15.200000000000001,1.1300000000000001,0.038,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.279,38.65,110.83,0.9,0.13,793,1,179,1
+2023,7,14,3,0,14.8,1.1500000000000001,0.04,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.279,41.63,107.52,0.9,0.13,793,1.1,11,0.8
+2023,7,14,3,30,14.3,1.1500000000000001,0.04,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.279,42.99,103.72,0.91,0.13,793,1.1,23,0.8
+2023,7,14,4,0,13.8,1.1500000000000001,0.043000000000000003,0.62,0,0,0,0,0,2.5,0,0,0,0,0.28,46.43,99.51,0.91,0.13,794,1.2000000000000002,36,0.8
+2023,7,14,4,30,14.100000000000001,1.1500000000000001,0.043000000000000003,0.62,0,0,0,0,0,2.5,0,0,0,0,0.28,45.54,94.95,0.91,0.13,794,1.2000000000000002,46,0.8
+2023,7,14,5,0,14.4,1.1500000000000001,0.045,0.62,9,88,9,0,0,3.1,9,88,0,9,0.281,46.49,89.72,0.91,0.13,794,1.2000000000000002,55,0.8
+2023,7,14,5,30,15.9,1.1500000000000001,0.045,0.62,27,391,62,0,0,3.1,27,391,0,62,0.281,42.230000000000004,84.89,0.91,0.13,794,1.2000000000000002,63,1
+2023,7,14,6,0,17.5,1.1400000000000001,0.047,0.62,40,582,144,0,0,2.8000000000000003,40,582,0,144,0.28200000000000003,37.46,79.67,0.91,0.13,794,1.3,71,1.3
+2023,7,14,6,30,19.700000000000003,1.1400000000000001,0.047,0.62,48,700,238,0,0,2.8000000000000003,48,700,0,238,0.28300000000000003,32.660000000000004,74.27,0.91,0.13,794,1.3,58,1
+2023,7,14,7,0,21.900000000000002,1.1400000000000001,0.048,0.62,55,779,338,0,0,2.8000000000000003,55,779,0,338,0.28500000000000003,28.39,68.73,0.91,0.13,795,1.3,46,0.7000000000000001
+2023,7,14,7,30,23.400000000000002,1.1400000000000001,0.048,0.62,61,836,439,0,0,2.8000000000000003,61,836,0,439,0.28500000000000003,25.93,63.11,0.91,0.13,795,1.3,176,0.9
+2023,7,14,8,0,24.900000000000002,1.1400000000000001,0.048,0.62,66,877,538,0,0,2.3000000000000003,66,877,0,538,0.28600000000000003,22.86,57.43,0.91,0.13,795,1.3,306,1.1
+2023,7,14,8,30,25.8,1.1400000000000001,0.048,0.62,69,910,633,0,0,2.3000000000000003,69,910,0,633,0.28700000000000003,21.67,51.74,0.91,0.13,795,1.2000000000000002,294,1.5
+2023,7,14,9,0,26.8,1.1400000000000001,0.047,0.62,73,934,721,0,0,1.9000000000000001,73,934,0,721,0.28700000000000003,19.98,46.08,0.91,0.13,795,1.2000000000000002,283,1.9000000000000001
+2023,7,14,9,30,27.6,1.1400000000000001,0.047,0.62,76,953,801,0,0,1.9000000000000001,76,953,0,801,0.28700000000000003,19.04,40.5,0.91,0.13,794,1.2000000000000002,279,2.2
+2023,7,14,10,0,28.5,1.1300000000000001,0.046,0.62,77,969,870,0,0,1.4000000000000001,77,969,0,870,0.28800000000000003,17.400000000000002,35.09,0.91,0.13,794,1.2000000000000002,274,2.5
+2023,7,14,10,30,29.200000000000003,1.1300000000000001,0.046,0.62,76,985,929,0,0,1.4000000000000001,76,985,0,929,0.28800000000000003,16.71,29.990000000000002,0.91,0.13,794,1.2000000000000002,272,2.8000000000000003
+2023,7,14,11,0,30,1.05,0.033,0.62,74,999,976,0,0,0.7000000000000001,74,999,0,976,0.28800000000000003,15.15,25.400000000000002,0.91,0.13,794,1.2000000000000002,271,3.1
+2023,7,14,11,30,30.6,1.05,0.033,0.62,74,1004,1007,0,0,0.7000000000000001,74,1004,0,1007,0.28700000000000003,14.64,21.68,0.91,0.13,794,1.2000000000000002,271,3.3000000000000003
+2023,7,14,12,0,31.200000000000003,1.04,0.032,0.62,74,1007,1024,0,0,-0.1,74,1007,0,1024,0.28700000000000003,13.34,19.38,0.91,0.13,793,1.2000000000000002,271,3.5
+2023,7,14,12,30,31.6,1.04,0.032,0.62,74,1008,1027,0,0,-0.1,118,875,0,945,0.28700000000000003,13.040000000000001,19.03,0.91,0.13,793,1.2000000000000002,273,3.7
+2023,7,14,13,0,32,1.05,0.031,0.62,74,1006,1015,0,0,-0.9,260,585,0,807,0.28700000000000003,12.02,20.72,0.91,0.13,793,1.2000000000000002,275,3.9000000000000004
+2023,7,14,13,30,32.2,1.05,0.031,0.62,75,998,987,0,0,-0.9,261,608,4,816,0.28700000000000003,11.89,24.02,0.91,0.13,793,1.2000000000000002,279,3.9000000000000004
+2023,7,14,14,0,32.4,1.17,0.044,0.62,78,986,946,1,8,-1.7000000000000002,306,451,14,703,0.28800000000000003,11.14,28.36,0.91,0.13,793,1.2000000000000002,282,4
+2023,7,14,14,30,32.300000000000004,1.17,0.044,0.62,78,976,893,0,3,-1.7000000000000002,334,380,7,651,0.28800000000000003,11.19,33.33,0.91,0.13,792,1.2000000000000002,287,4
+2023,7,14,15,0,32.2,1.2,0.044,0.62,75,963,827,0,0,-2.3000000000000003,210,623,0,697,0.289,10.77,38.65,0.91,0.13,792,1.2000000000000002,291,4.1000000000000005
+2023,7,14,15,30,31.900000000000002,1.2,0.044,0.62,73,946,751,0,0,-2.3000000000000003,99,887,0,735,0.29,10.950000000000001,44.18,0.91,0.13,792,1.2000000000000002,297,4.2
+2023,7,14,16,0,31.5,1.22,0.045,0.62,70,923,665,0,0,-2.6,112,803,0,630,0.29,10.950000000000001,49.83,0.92,0.13,792,1.2000000000000002,302,4.3
+2023,7,14,16,30,30.8,1.22,0.045,0.62,65,895,572,0,0,-2.6,130,660,0,504,0.291,11.39,55.52,0.92,0.13,792,1.2000000000000002,308,4.4
+2023,7,14,17,0,30.1,1.26,0.044,0.62,61,858,474,0,0,-2.4000000000000004,76,812,7,467,0.291,12.030000000000001,61.21,0.92,0.13,792,1.2000000000000002,314,4.5
+2023,7,14,17,30,29,1.26,0.044,0.62,56,810,374,0,0,-2.4000000000000004,70,768,7,372,0.291,12.83,66.86,0.91,0.13,793,1.2000000000000002,321,4.4
+2023,7,14,18,0,27.900000000000002,1.31,0.04,0.62,49,744,273,0,0,-0.8,49,744,0,273,0.292,15.41,72.44,0.91,0.13,793,1.3,328,4.2
+2023,7,14,18,30,25.900000000000002,1.31,0.04,0.62,40,647,176,0,0,-0.8,40,647,0,176,0.292,17.330000000000002,77.9,0.91,0.13,793,1.3,334,3.8000000000000003
+2023,7,14,19,0,23.900000000000002,1.36,0.035,0.62,29,495,88,0,0,1,29,495,0,88,0.293,22.25,83.2,0.91,0.13,794,1.3,340,3.3000000000000003
+2023,7,14,19,30,22.700000000000003,1.36,0.035,0.62,13,180,19,0,0,1,13,180,0,19,0.293,23.91,88.22,0.9,0.13,794,1.2000000000000002,343,3.2
+2023,7,14,20,0,21.6,1.4000000000000001,0.032,0.62,0,0,0,0,0,1.3,0,0,0,0,0.293,26.14,93.4,0.9,0.13,794,1.2000000000000002,346,3.1
+2023,7,14,20,30,20.700000000000003,1.4000000000000001,0.032,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.293,27.650000000000002,98.07000000000001,0.9,0.13,795,1.2000000000000002,347,2.9000000000000004
+2023,7,14,21,0,19.900000000000002,1.43,0.031,0.62,0,0,0,0,0,2,0,0,0,0,0.293,30.35,102.42,0.9,0.13,795,1.2000000000000002,347,2.7
+2023,7,14,21,30,19.1,1.43,0.031,0.62,0,0,0,0,0,2,0,0,0,0,0.293,31.900000000000002,106.37,0.9,0.13,795,1.2000000000000002,346,2.4000000000000004
+2023,7,14,22,0,18.2,1.48,0.03,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.293,35.88,109.87,0.9,0.13,795,1.1,345,2.1
+2023,7,14,22,30,17.6,1.48,0.03,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.294,37.26,112.82000000000001,0.9,0.13,795,1.1,344,1.9000000000000001
+2023,7,14,23,0,16.900000000000002,1.53,0.031,0.62,0,0,0,0,0,3.6,0,0,0,0,0.294,41.09,115.17,0.9,0.13,795,1.1,342,1.8
+2023,7,14,23,30,16.5,1.53,0.031,0.62,0,0,0,0,0,3.6,0,0,0,0,0.294,42.14,116.82000000000001,0.9,0.13,795,1.1,342,1.7000000000000002
+2023,7,15,0,0,16.1,1.58,0.033,0.62,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.295,44.910000000000004,117.74000000000001,0.9,0.13,795,1.1,342,1.7000000000000002
+2023,7,15,0,30,15.600000000000001,1.58,0.033,0.62,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.295,46.37,117.87,0.9,0.13,795,1.1,344,1.8
+2023,7,15,1,0,15.200000000000001,1.59,0.035,0.62,0,0,0,0,0,4.7,0,0,0,0,0.295,49.46,117.23,0.9,0.13,795,1.1,346,1.9000000000000001
+2023,7,15,1,30,14.700000000000001,1.59,0.035,0.62,0,0,0,0,0,4.7,0,0,0,0,0.295,51.07,115.83,0.9,0.13,795,1.1,348,2
+2023,7,15,2,0,14.3,1.58,0.038,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.295,54.68,113.72,0.9,0.13,795,1.1,349,2.1
+2023,7,15,2,30,13.9,1.58,0.038,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.295,56.11,110.98,0.9,0.13,795,1.1,351,2
+2023,7,15,3,0,13.5,1.57,0.04,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.295,59.83,107.66,0.9,0.13,796,1.1,352,2
+2023,7,15,3,30,13.200000000000001,1.57,0.04,0.62,0,0,0,0,0,5.800000000000001,0,0,0,0,0.295,61.01,103.86,0.9,0.13,796,1.1,354,1.9000000000000001
+2023,7,15,4,0,12.8,1.55,0.041,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.295,64.69,99.65,0.9,0.13,796,1.1,356,1.9000000000000001
+2023,7,15,4,30,13.200000000000001,1.55,0.041,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.294,63.03,95.08,0.91,0.13,796,1.1,179,2.1
+2023,7,15,5,0,13.5,1.54,0.041,0.62,7,73,7,0,0,6.7,7,73,0,7,0.294,63.67,89.83,0.91,0.13,797,1.1,2,2.3000000000000003
+2023,7,15,5,30,15,1.54,0.041,0.62,25,412,61,0,0,6.800000000000001,25,412,0,61,0.293,57.79,85.01,0.91,0.13,797,1.1,9,2.6
+2023,7,15,6,0,16.5,1.52,0.04,0.62,37,602,144,0,0,6.7,37,602,0,144,0.293,52.410000000000004,79.79,0.91,0.13,797,1.1,16,2.9000000000000004
+2023,7,15,6,30,18.400000000000002,1.52,0.04,0.62,45,719,239,0,0,6.7,45,719,0,239,0.293,46.5,74.38,0.91,0.13,797,1.1,21,3.1
+2023,7,15,7,0,20.3,1.5,0.039,0.62,52,798,340,0,0,6.2,52,798,0,340,0.293,39.88,68.84,0.91,0.13,797,1.1,26,3.3000000000000003
+2023,7,15,7,30,21.700000000000003,1.5,0.039,0.62,58,853,442,0,0,6.2,58,853,0,442,0.292,36.61,63.22,0.91,0.13,797,1.1,29,3.2
+2023,7,15,8,0,23.1,1.48,0.038,0.62,61,894,541,0,0,5.7,61,894,0,541,0.291,32.53,57.54,0.91,0.13,797,1.1,31,3
+2023,7,15,8,30,24.200000000000003,1.48,0.038,0.62,65,926,637,0,0,5.7,65,926,0,637,0.29,30.46,51.85,0.91,0.13,797,1.1,32,2.8000000000000003
+2023,7,15,9,0,25.3,1.46,0.037,0.62,67,950,725,0,0,4.7,67,950,0,725,0.289,26.51,46.19,0.91,0.13,797,1.1,34,2.5
+2023,7,15,9,30,26.3,1.46,0.037,0.62,70,968,805,0,0,4.7,70,968,0,805,0.289,24.990000000000002,40.61,0.91,0.13,797,1.1,30,2.2
+2023,7,15,10,0,27.200000000000003,1.44,0.035,0.62,71,983,874,0,0,3,71,983,0,874,0.28800000000000003,21.07,35.21,0.91,0.13,797,1.1,26,1.9000000000000001
+2023,7,15,10,30,27.900000000000002,1.44,0.035,0.62,72,995,933,0,0,3,72,995,0,933,0.28800000000000003,20.23,30.11,0.91,0.13,797,1.1,19,1.7000000000000002
+2023,7,15,11,0,28.6,1.44,0.031,0.62,71,1005,978,0,0,1.5,71,1005,0,978,0.28700000000000003,17.400000000000002,25.54,0.9,0.13,797,1.1,12,1.5
+2023,7,15,11,30,29.200000000000003,1.44,0.031,0.62,72,1011,1010,0,0,1.5,72,1011,0,1010,0.28700000000000003,16.81,21.84,0.91,0.13,797,1.1,185,1.3
+2023,7,15,12,0,29.700000000000003,1.44,0.03,0.62,72,1013,1027,0,0,0.30000000000000004,72,1013,0,1027,0.28700000000000003,14.98,19.54,0.91,0.13,796,1.1,357,1.1
+2023,7,15,12,30,30.1,1.44,0.03,0.62,72,1014,1030,0,0,0.30000000000000004,72,1014,0,1030,0.28700000000000003,14.64,19.18,0.91,0.13,796,1.1,349,0.9
+2023,7,15,13,0,30.5,1.45,0.029,0.62,71,1013,1018,0,0,-0.7000000000000001,71,1013,0,1018,0.28700000000000003,13.31,20.86,0.91,0.13,796,1.1,341,0.8
+2023,7,15,13,30,30.8,1.45,0.029,0.62,71,1008,991,0,0,-0.7000000000000001,71,1008,0,991,0.28700000000000003,13.09,24.14,0.91,0.13,796,1.1,317,0.7000000000000001
+2023,7,15,14,0,31,1.45,0.031,0.62,71,1001,951,0,0,-1.6,85,971,0,939,0.28700000000000003,12.1,28.46,0.91,0.13,795,1.1,293,0.6000000000000001
+2023,7,15,14,30,31.1,1.45,0.031,0.62,69,992,897,0,0,-1.6,83,961,0,885,0.289,12.040000000000001,33.410000000000004,0.91,0.13,795,1.1,280,0.8
+2023,7,15,15,0,31.200000000000003,1.44,0.031,0.62,67,980,832,0,0,-2.5,130,856,0,798,0.29,11.200000000000001,38.730000000000004,0.91,0.13,795,1.1,267,1
+2023,7,15,15,30,31.1,1.44,0.031,0.62,65,964,755,0,0,-2.5,169,712,0,679,0.292,11.26,44.26,0.91,0.13,795,1.1,273,1.3
+2023,7,15,16,0,31,1.42,0.031,0.62,63,943,670,0,0,-3.4000000000000004,157,626,0,560,0.293,10.63,49.9,0.91,0.13,794,1.1,279,1.6
+2023,7,15,16,30,30.6,1.42,0.031,0.62,59,918,578,0,0,-3.4000000000000004,112,750,0,536,0.294,10.870000000000001,55.59,0.91,0.13,794,1,289,1.9000000000000001
+2023,7,15,17,0,30.3,1.3900000000000001,0.03,0.62,55,884,480,0,0,-4.1000000000000005,55,884,0,480,0.294,10.51,61.28,0.91,0.13,794,1,299,2.2
+2023,7,15,17,30,29.400000000000002,1.3900000000000001,0.03,0.62,50,839,379,0,0,-4.1000000000000005,50,839,0,379,0.294,11.07,66.93,0.9,0.13,794,1,311,2.3000000000000003
+2023,7,15,18,0,28.400000000000002,1.37,0.028,0.62,44,777,278,0,0,-2.4000000000000004,44,777,0,278,0.294,13.24,72.51,0.9,0.13,794,1,322,2.4000000000000004
+2023,7,15,18,30,26.400000000000002,1.37,0.028,0.62,37,684,179,0,0,-2.4000000000000004,37,684,0,179,0.294,14.9,77.98,0.9,0.13,795,0.9,332,1.9000000000000001
+2023,7,15,19,0,24.400000000000002,1.35,0.025,0.62,28,533,90,0,0,-1,28,533,0,90,0.294,18.61,83.28,0.9,0.13,795,0.9,341,1.4000000000000001
+2023,7,15,19,30,23.1,1.35,0.025,0.62,14,202,20,0,0,-1,14,202,0,20,0.294,20.12,88.31,0.9,0.13,795,0.9,346,1.4000000000000001
+2023,7,15,20,0,21.8,1.35,0.022,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.294,21.13,93.5,0.89,0.13,796,0.8,351,1.5
+2023,7,15,20,30,21,1.35,0.022,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.294,22.19,98.18,0.89,0.13,796,0.8,350,1.5
+2023,7,15,21,0,20.200000000000003,1.3900000000000001,0.022,0.62,0,0,0,0,0,-1,0,0,0,0,0.294,24.07,102.53,0.89,0.13,796,0.8,349,1.5
+2023,7,15,21,30,19.5,1.3900000000000001,0.022,0.62,0,0,0,0,0,-1,0,0,0,0,0.294,25.13,106.49000000000001,0.9,0.13,796,0.8,349,1.4000000000000001
+2023,7,15,22,0,18.900000000000002,1.47,0.023,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.293,27.22,110,0.9,0.13,796,0.8,348,1.3
+2023,7,15,22,30,18.3,1.47,0.023,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.294,28.26,112.96000000000001,0.9,0.13,796,0.8,349,1.3
+2023,7,15,23,0,17.7,1.55,0.027,0.62,0,0,0,0,0,0.2,0,0,0,0,0.294,30.62,115.31,0.9,0.13,796,0.8,349,1.2000000000000002
+2023,7,15,23,30,17.3,1.55,0.027,0.62,0,0,0,0,0,0.2,0,0,0,0,0.294,31.400000000000002,116.97,0.9,0.13,796,0.8,351,1.2000000000000002
+2023,7,16,0,0,16.8,1.58,0.03,0.62,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.295,33.56,117.89,0.9,0.13,796,0.8,352,1.2000000000000002
+2023,7,16,0,30,16.400000000000002,1.58,0.03,0.62,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.295,34.42,118.03,0.9,0.13,796,0.8,354,1.1
+2023,7,16,1,0,16.1,1.58,0.031,0.62,0,0,0,0,0,0.9,0,0,0,0,0.295,35.75,117.39,0.9,0.13,796,0.7000000000000001,356,1.1
+2023,7,16,1,30,15.700000000000001,1.58,0.031,0.62,0,0,0,0,0,0.9,0,0,0,0,0.295,36.67,115.99000000000001,0.9,0.13,796,0.7000000000000001,179,1
+2023,7,16,2,0,15.4,1.56,0.031,0.62,0,0,0,0,0,1.1,0,0,0,0,0.295,37.88,113.88,0.9,0.13,796,0.7000000000000001,3,0.9
+2023,7,16,2,30,15.100000000000001,1.56,0.031,0.62,0,0,0,0,0,1.1,0,0,0,0,0.295,38.62,111.13,0.9,0.13,796,0.8,9,0.9
+2023,7,16,3,0,14.9,1.54,0.032,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.295,39.49,107.81,0.9,0.13,796,0.8,15,0.8
+2023,7,16,3,30,14.700000000000001,1.54,0.032,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.295,40,104.01,0.9,0.13,796,0.8,23,0.8
+2023,7,16,4,0,14.4,1.52,0.031,0.62,0,0,0,0,0,1.3,0,0,0,0,0.294,40.95,99.78,0.9,0.13,796,0.8,32,0.7000000000000001
+2023,7,16,4,30,14.700000000000001,1.52,0.031,0.62,0,0,0,0,0,1.3,0,0,0,0,0.293,40.21,95.22,0.9,0.13,797,0.8,45,0.6000000000000001
+2023,7,16,5,0,15,1.5,0.032,0.62,7,80,7,0,0,1.7000000000000002,7,80,0,7,0.292,40.54,89.94,0.9,0.13,797,0.8,57,0.6000000000000001
+2023,7,16,5,30,16.6,1.5,0.032,0.62,25,441,62,0,0,1.7000000000000002,25,441,0,62,0.291,36.61,85.14,0.9,0.13,797,0.8,82,0.7000000000000001
+2023,7,16,6,0,18.2,1.49,0.032,0.62,36,630,146,0,0,1.5,36,630,0,146,0.29,32.52,79.91,0.9,0.13,797,0.8,106,0.8
+2023,7,16,6,30,20.3,1.49,0.032,0.62,43,744,242,0,0,1.5,43,744,0,242,0.289,28.55,74.5,0.9,0.13,797,0.9,115,0.8
+2023,7,16,7,0,22.400000000000002,1.47,0.032,0.62,50,818,344,0,0,0.2,50,818,0,344,0.289,22.96,68.96000000000001,0.9,0.13,797,0.9,124,0.7000000000000001
+2023,7,16,7,30,24.1,1.47,0.032,0.62,54,870,445,0,0,0.2,54,870,0,445,0.28800000000000003,20.73,63.33,0.9,0.13,797,0.9,197,0.5
+2023,7,16,8,0,25.8,1.46,0.033,0.62,59,909,545,0,0,-1.6,59,909,0,545,0.28700000000000003,16.42,57.65,0.9,0.13,797,0.9,271,0.2
+2023,7,16,8,30,26.8,1.46,0.033,0.62,63,937,640,0,0,-1.6,63,937,0,640,0.28600000000000003,15.48,51.96,0.91,0.13,797,0.9,280,0.5
+2023,7,16,9,0,27.900000000000002,1.44,0.033,0.62,65,959,728,0,0,-1.9000000000000001,65,959,0,728,0.28500000000000003,14.14,46.300000000000004,0.91,0.13,797,1,290,0.8
+2023,7,16,9,30,28.8,1.44,0.033,0.62,69,974,807,0,0,-1.9000000000000001,69,974,0,807,0.28400000000000003,13.43,40.730000000000004,0.91,0.13,797,1,282,1
+2023,7,16,10,0,29.8,1.43,0.034,0.62,71,987,876,0,0,-1.7000000000000002,71,987,0,876,0.28300000000000003,12.89,35.34,0.91,0.13,797,1,273,1.2000000000000002
+2023,7,16,10,30,30.6,1.43,0.034,0.62,71,998,933,0,0,-1.7000000000000002,71,998,0,933,0.28200000000000003,12.31,30.25,0.91,0.13,797,1.1,265,1.4000000000000001
+2023,7,16,11,0,31.3,1.35,0.029,0.62,70,1006,977,0,0,-1.4000000000000001,70,1006,0,977,0.281,12.07,25.68,0.91,0.13,797,1.1,257,1.6
+2023,7,16,11,30,32,1.35,0.029,0.62,70,1010,1007,0,0,-1.4000000000000001,70,1010,0,1007,0.28,11.58,21.990000000000002,0.91,0.13,796,1.1,252,1.9000000000000001
+2023,7,16,12,0,32.6,1.31,0.028,0.62,70,1012,1023,0,0,-1.1,70,1012,0,1023,0.279,11.450000000000001,19.71,0.91,0.13,796,1.2000000000000002,246,2.2
+2023,7,16,12,30,33,1.31,0.028,0.62,71,1010,1024,0,0,-1.1,71,1010,0,1024,0.279,11.19,19.34,0.91,0.13,796,1.2000000000000002,245,2.4000000000000004
+2023,7,16,13,0,33.4,1.27,0.028,0.62,71,1007,1011,0,0,-0.8,71,1007,0,1011,0.278,11.200000000000001,21,0.91,0.13,795,1.2000000000000002,243,2.6
+2023,7,16,13,30,33.7,1.27,0.028,0.62,72,1000,984,0,0,-0.8,72,1000,0,984,0.278,11.01,24.26,0.91,0.13,795,1.3,242,2.8000000000000003
+2023,7,16,14,0,33.9,1.28,0.035,0.62,73,989,942,0,0,-0.6000000000000001,73,989,0,942,0.278,11.07,28.57,0.92,0.13,795,1.3,242,2.9000000000000004
+2023,7,16,14,30,33.9,1.28,0.035,0.62,72,979,888,0,0,-0.6000000000000001,72,979,0,888,0.279,11.07,33.51,0.92,0.13,795,1.3,242,3
+2023,7,16,15,0,33.9,1.25,0.036000000000000004,0.62,71,965,823,0,0,-0.6000000000000001,71,965,0,823,0.279,11.040000000000001,38.82,0.92,0.13,794,1.3,242,3
+2023,7,16,15,30,33.7,1.25,0.036000000000000004,0.62,69,948,747,0,0,-0.6000000000000001,69,948,0,747,0.279,11.17,44.34,0.92,0.13,794,1.3,242,2.9000000000000004
+2023,7,16,16,0,33.4,1.23,0.037,0.62,66,925,661,0,0,-0.7000000000000001,66,925,0,661,0.279,11.26,49.980000000000004,0.92,0.13,794,1.4000000000000001,242,2.8000000000000003
+2023,7,16,16,30,32.9,1.23,0.037,0.62,63,897,569,0,0,-0.7000000000000001,63,897,0,569,0.279,11.58,55.67,0.92,0.13,794,1.4000000000000001,243,2.6
+2023,7,16,17,0,32.5,1.21,0.038,0.62,59,860,471,0,0,-0.9,59,860,0,471,0.28,11.75,61.36,0.92,0.13,794,1.4000000000000001,243,2.4000000000000004
+2023,7,16,17,30,31.400000000000002,1.21,0.038,0.62,53,811,370,0,0,-0.9,53,811,0,370,0.28,12.5,67.01,0.92,0.13,794,1.4000000000000001,243,1.8
+2023,7,16,18,0,30.400000000000002,1.19,0.037,0.62,48,743,270,0,0,1.3,53,720,0,268,0.28,15.5,72.59,0.92,0.13,794,1.3,242,1.2000000000000002
+2023,7,16,18,30,28.5,1.19,0.037,0.62,40,643,173,0,3,1.3,63,495,29,165,0.28,17.29,78.06,0.92,0.13,794,1.3,236,0.9
+2023,7,16,19,0,26.700000000000003,1.18,0.036000000000000004,0.62,29,483,85,0,0,2.4000000000000004,29,483,0,85,0.28,20.77,83.37,0.91,0.13,794,1.3,231,0.5
+2023,7,16,19,30,25.900000000000002,1.18,0.036000000000000004,0.62,13,169,18,0,0,2.4000000000000004,13,169,0,18,0.281,21.77,88.4,0.91,0.13,794,1.3,226,0.4
+2023,7,16,20,0,25.1,1.17,0.035,0.62,0,0,0,0,0,1.5,0,0,0,0,0.281,21.46,93.60000000000001,0.91,0.13,795,1.2000000000000002,221,0.2
+2023,7,16,20,30,24.6,1.17,0.035,0.62,0,0,0,0,0,1.5,0,0,0,0,0.28,22.11,98.29,0.91,0.13,795,1.2000000000000002,235,0.2
+2023,7,16,21,0,24,1.17,0.033,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.28,22.7,102.65,0.91,0.13,795,1.2000000000000002,248,0.1
+2023,7,16,21,30,23.5,1.17,0.033,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.279,23.400000000000002,106.62,0.91,0.13,795,1.1,150,0.1
+2023,7,16,22,0,23.1,1.17,0.033,0.62,0,0,0,0,0,1.1,0,0,0,0,0.279,23.5,110.13,0.91,0.13,795,1.1,52,0.1
+2023,7,16,22,30,22.6,1.17,0.033,0.62,0,0,0,0,0,1.1,0,0,0,0,0.278,24.22,113.11,0.9,0.13,795,1.1,82,0.2
+2023,7,16,23,0,22.200000000000003,1.17,0.032,0.62,0,0,0,0,0,1,0,0,0,0,0.278,24.580000000000002,115.46000000000001,0.9,0.13,795,1,112,0.2
+2023,7,16,23,30,21.700000000000003,1.17,0.032,0.62,0,0,0,0,0,1,0,0,0,0,0.278,25.330000000000002,117.13,0.9,0.13,795,1,121,0.4
+2023,7,17,0,0,21.200000000000003,1.16,0.032,0.62,0,0,0,0,0,0.8,0,0,0,0,0.277,25.75,118.06,0.9,0.13,795,1,130,0.6000000000000001
+2023,7,17,0,30,20.5,1.16,0.032,0.62,0,0,0,0,0,0.8,0,0,0,0,0.277,26.87,118.2,0.91,0.13,795,1,136,0.7000000000000001
+2023,7,17,1,0,19.8,1.1500000000000001,0.034,0.62,0,0,0,0,0,0.5,0,0,0,0,0.277,27.43,117.56,0.91,0.13,795,1,142,0.8
+2023,7,17,1,30,19.1,1.1500000000000001,0.034,0.62,0,0,0,0,0,0.5,0,0,0,0,0.277,28.64,116.16,0.91,0.13,795,1,148,0.9
+2023,7,17,2,0,18.5,1.1400000000000001,0.037,0.62,0,0,0,0,0,0.2,0,0,0,0,0.277,29.240000000000002,114.05,0.91,0.13,794,1,154,1
+2023,7,17,2,30,17.900000000000002,1.1400000000000001,0.037,0.62,0,0,0,0,0,0.2,0,0,0,0,0.277,30.36,111.29,0.91,0.13,794,1,159,1.1
+2023,7,17,3,0,17.3,1.1400000000000001,0.038,0.62,0,0,0,0,0,0,0,0,0,0,0.276,30.98,107.97,0.91,0.13,794,1,164,1.1
+2023,7,17,3,30,16.7,1.1400000000000001,0.038,0.62,0,0,0,0,0,0,0,0,0,0,0.276,32.17,104.15,0.92,0.13,794,1,167,1.1
+2023,7,17,4,0,16.2,1.16,0.041,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.276,32.53,99.93,0.92,0.13,794,1,171,1.2000000000000002
+2023,7,17,4,30,16.6,1.16,0.041,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.276,31.720000000000002,95.35000000000001,0.92,0.13,794,1.1,173,1.2000000000000002
+2023,7,17,5,0,16.900000000000002,1.18,0.044,0.62,6,62,6,0,0,-0.30000000000000004,6,62,0,6,0.275,31.14,90.06,0.92,0.13,795,1.1,175,1.2000000000000002
+2023,7,17,5,30,18.5,1.18,0.044,0.62,27,380,58,1,0,-0.30000000000000004,27,345,11,56,0.275,28.16,85.26,0.93,0.13,795,1.1,181,1.7000000000000002
+2023,7,17,6,0,20.1,1.18,0.048,0.62,39,575,139,0,0,-0.7000000000000001,44,517,0,134,0.275,24.68,80.03,0.93,0.13,795,1.2000000000000002,186,2.2
+2023,7,17,6,30,21.700000000000003,1.18,0.048,0.62,48,696,233,0,3,-0.7000000000000001,115,257,0,183,0.275,22.37,74.62,0.93,0.13,795,1.2000000000000002,195,2.2
+2023,7,17,7,0,23.3,1.16,0.05,0.62,56,773,332,0,0,-1.2000000000000002,110,544,0,304,0.274,19.66,69.07000000000001,0.92,0.13,795,1.2000000000000002,203,2.3000000000000003
+2023,7,17,7,30,25.900000000000002,1.16,0.05,0.62,63,827,433,0,0,-1.2000000000000002,63,827,0,433,0.275,16.84,63.45,0.92,0.13,795,1.3,211,2.9000000000000004
+2023,7,17,8,0,28.5,1.1300000000000001,0.054,0.62,69,865,530,0,0,-2,69,865,0,530,0.275,13.6,57.77,0.92,0.13,795,1.4000000000000001,219,3.5
+2023,7,17,8,30,30.3,1.1300000000000001,0.054,0.62,74,893,623,0,0,-2,74,893,0,623,0.275,12.27,52.08,0.92,0.13,795,1.4000000000000001,222,3.9000000000000004
+2023,7,17,9,0,32.1,1.12,0.062,0.62,80,912,709,0,0,-2.6,80,912,0,709,0.275,10.57,46.42,0.93,0.13,795,1.5,225,4.3
+2023,7,17,9,30,33.1,1.12,0.062,0.62,85,928,787,0,0,-2.6,85,928,0,787,0.274,9.99,40.85,0.93,0.13,795,1.5,226,4.5
+2023,7,17,10,0,34.1,1.1300000000000001,0.069,0.62,89,939,854,0,0,-2.5,89,939,0,854,0.274,9.5,35.46,0.93,0.13,794,1.5,227,4.7
+2023,7,17,10,30,34.800000000000004,1.1300000000000001,0.069,0.62,90,953,912,0,0,-2.5,90,953,0,912,0.274,9.14,30.38,0.9400000000000001,0.13,794,1.6,228,4.9
+2023,7,17,11,0,35.5,1.16,0.059000000000000004,0.62,89,966,958,0,8,-2,228,716,0,872,0.274,9.14,25.830000000000002,0.9400000000000001,0.13,794,1.6,228,5.1000000000000005
+2023,7,17,11,30,36,1.16,0.059000000000000004,0.62,90,971,989,0,0,-2,215,788,0,945,0.274,8.89,22.150000000000002,0.9400000000000001,0.13,794,1.6,229,5.2
+2023,7,17,12,0,36.4,1.18,0.06,0.62,91,973,1006,0,0,-1.3,91,973,0,1006,0.274,9.19,19.88,0.9400000000000001,0.13,793,1.6,230,5.4
+2023,7,17,12,30,36.7,1.18,0.06,0.62,92,972,1008,0,0,-1.3,104,953,0,1002,0.274,9.040000000000001,19.51,0.9400000000000001,0.13,793,1.6,230,5.7
+2023,7,17,13,0,37,1.19,0.061,0.62,91,969,995,0,0,-0.5,223,770,0,941,0.274,9.42,21.150000000000002,0.9500000000000001,0.13,792,1.6,231,6
+2023,7,17,13,30,37.1,1.19,0.061,0.62,89,966,969,0,8,-0.5,192,738,0,864,0.273,9.370000000000001,24.39,0.96,0.13,792,1.6,232,6.4
+2023,7,17,14,0,37.1,1.3,0.059000000000000004,0.62,88,960,930,0,0,0,88,960,0,930,0.273,9.68,28.68,0.96,0.13,792,1.6,234,6.7
+2023,7,17,14,30,36.9,1.3,0.059000000000000004,0.62,88,945,875,0,0,0,88,945,0,875,0.273,9.790000000000001,33.61,0.97,0.13,792,1.6,238,6.9
+2023,7,17,15,0,36.7,1.34,0.073,0.62,90,924,809,0,0,-0.4,130,821,0,769,0.273,9.59,38.910000000000004,0.97,0.13,791,1.6,241,7
+2023,7,17,15,30,36.1,1.34,0.073,0.62,91,898,732,0,0,-0.4,165,746,0,698,0.273,9.91,44.43,0.97,0.13,791,1.7000000000000002,245,6.800000000000001
+2023,7,17,16,0,35.5,1.3900000000000001,0.09,0.62,90,864,645,0,0,-0.8,164,719,0,626,0.272,10.01,50.06,0.98,0.13,791,1.7000000000000002,249,6.6000000000000005
+2023,7,17,16,30,34.800000000000004,1.3900000000000001,0.09,0.62,88,825,552,0,0,-0.8,134,721,0,540,0.272,10.4,55.75,0.98,0.13,791,1.7000000000000002,253,6.1000000000000005
+2023,7,17,17,0,34,1.42,0.10400000000000001,0.62,84,772,453,0,7,-0.5,169,498,0,407,0.272,11.05,61.44,0.98,0.13,791,1.7000000000000002,256,5.6000000000000005
+2023,7,17,17,30,32.9,1.42,0.10400000000000001,0.62,75,718,354,0,7,-0.5,112,523,14,316,0.272,11.75,67.1,0.97,0.13,791,1.7000000000000002,263,4.3
+2023,7,17,18,0,31.700000000000003,1.49,0.097,0.62,64,644,256,0,0,0.30000000000000004,82,570,11,252,0.271,13.34,72.68,0.97,0.13,791,1.7000000000000002,269,3
+2023,7,17,18,30,29.5,1.49,0.097,0.62,50,546,162,0,0,0.30000000000000004,53,533,0,162,0.271,15.14,78.16,0.96,0.13,792,1.6,288,2.3000000000000003
+2023,7,17,19,0,27.400000000000002,1.56,0.076,0.62,34,397,79,0,0,2.1,36,375,7,79,0.271,19.52,83.47,0.9500000000000001,0.13,792,1.6,307,1.5
+2023,7,17,19,30,26.400000000000002,1.56,0.076,0.62,13,122,16,0,0,2.1,13,122,0,16,0.272,20.7,88.5,0.9400000000000001,0.13,792,1.6,320,1.6
+2023,7,17,20,0,25.3,1.57,0.07200000000000001,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.272,24.060000000000002,93.71000000000001,0.9400000000000001,0.13,792,1.6,334,1.7000000000000002
+2023,7,17,20,30,24.6,1.57,0.07200000000000001,0.62,0,0,0,0,8,3.3000000000000003,0,0,0,0,0.272,25.11,98.4,0.9400000000000001,0.13,793,1.7000000000000002,340,1.8
+2023,7,17,21,0,23.8,1.5,0.088,0.62,0,0,0,0,8,4.2,0,0,0,0,0.273,27.92,102.77,0.9400000000000001,0.13,793,1.8,345,1.8
+2023,7,17,21,30,23.1,1.5,0.088,0.62,0,0,0,0,8,4.2,0,0,0,0,0.272,29.12,106.75,0.9500000000000001,0.13,793,1.9000000000000001,346,1.7000000000000002
+2023,7,17,22,0,22.400000000000002,1.42,0.11800000000000001,0.62,0,0,0,0,8,4.800000000000001,0,0,0,0,0.272,31.89,110.27,0.9500000000000001,0.13,793,2,347,1.6
+2023,7,17,22,30,21.900000000000002,1.42,0.11800000000000001,0.62,0,0,0,0,8,4.800000000000001,0,0,0,0,0.272,32.87,113.26,0.96,0.13,793,2,347,1.4000000000000001
+2023,7,17,23,0,21.400000000000002,1.36,0.153,0.62,0,0,0,0,8,5.4,0,0,0,0,0.271,35.26,115.62,0.96,0.13,794,2.1,347,1.2000000000000002
+2023,7,17,23,30,21,1.36,0.153,0.62,0,0,0,0,7,5.4,0,0,0,0,0.271,36.14,117.3,0.96,0.13,794,2.1,348,1.1
+2023,7,18,0,0,20.700000000000003,1.33,0.182,0.62,0,0,0,0,7,5.800000000000001,0,0,0,0,0.271,37.79,118.23,0.96,0.13,794,2.2,349,1.1
+2023,7,18,0,30,20.5,1.33,0.182,0.62,0,0,0,0,7,5.800000000000001,0,0,0,0,0.271,38.26,118.37,0.96,0.13,794,2.2,351,1
+2023,7,18,1,0,20.200000000000003,1.32,0.192,0.62,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.271,39.76,117.73,0.96,0.13,794,2.3000000000000003,353,1
+2023,7,18,1,30,20.1,1.32,0.192,0.62,0,0,0,0,8,6.1000000000000005,0,0,0,0,0.271,40.01,116.33,0.96,0.13,794,2.3000000000000003,355,1
+2023,7,18,2,0,20,1.29,0.17200000000000001,0.62,0,0,0,0,0,6.2,0,0,0,0,0.271,40.58,114.21000000000001,0.96,0.13,794,2.3000000000000003,356,0.9
+2023,7,18,2,30,20,1.29,0.17200000000000001,0.62,0,0,0,0,3,6.2,0,0,0,0,0.271,40.58,111.45,0.96,0.13,794,2.3000000000000003,353,1
+2023,7,18,3,0,20.1,1.25,0.15,0.62,0,0,0,0,8,6.300000000000001,0,0,0,0,0.271,40.56,108.12,0.9500000000000001,0.13,794,2.3000000000000003,350,1
+2023,7,18,3,30,20,1.25,0.15,0.62,0,0,0,0,8,6.300000000000001,0,0,0,0,0.271,40.81,104.31,0.9500000000000001,0.13,794,2.2,352,1
+2023,7,18,4,0,20,1.23,0.131,0.62,0,0,0,0,3,6.4,0,0,0,0,0.272,41.21,100.07000000000001,0.9500000000000001,0.13,794,2.2,353,1
+2023,7,18,4,30,20.200000000000003,1.23,0.131,0.62,0,0,0,0,7,6.4,0,0,0,0,0.272,40.7,95.49,0.9500000000000001,0.13,794,2.1,183,0.8
+2023,7,18,5,0,20.400000000000002,1.22,0.11,0.62,5,26,5,3,7,6.6000000000000005,3,0,43,3,0.272,40.84,90.18,0.9500000000000001,0.13,794,2.1,12,0.7000000000000001
+2023,7,18,5,30,21.400000000000002,1.22,0.11,0.62,30,245,50,7,7,6.7,23,1,100,23,0.273,38.410000000000004,85.39,0.9500000000000001,0.13,794,2,44,0.5
+2023,7,18,6,0,22.3,1.23,0.096,0.62,47,460,126,1,7,7,47,3,14,48,0.274,37.22,80.16,0.9500000000000001,0.13,794,2,76,0.4
+2023,7,18,6,30,23.8,1.23,0.096,0.62,60,600,218,0,7,7,67,4,0,68,0.274,34,74.74,0.9500000000000001,0.13,794,2,127,0.7000000000000001
+2023,7,18,7,0,25.200000000000003,1.23,0.088,0.62,68,697,316,0,7,6.1000000000000005,115,162,0,173,0.274,29.46,69.19,0.9500000000000001,0.13,794,2,178,1
+2023,7,18,7,30,27,1.23,0.088,0.62,75,763,415,0,8,6.2,200,336,0,350,0.275,26.53,63.56,0.9500000000000001,0.13,795,2,211,1.4000000000000001
+2023,7,18,8,0,28.700000000000003,1.23,0.085,0.62,81,811,512,0,8,4.800000000000001,149,99,0,202,0.275,21.79,57.88,0.9400000000000001,0.13,795,2,244,1.9000000000000001
+2023,7,18,8,30,29.6,1.23,0.085,0.62,86,846,605,0,8,4.800000000000001,123,6,0,127,0.274,20.69,52.19,0.9500000000000001,0.13,795,2,254,2.4000000000000004
+2023,7,18,9,0,30.5,1.24,0.08700000000000001,0.62,92,871,691,0,7,3.8000000000000003,201,9,4,207,0.274,18.43,46.54,0.9500000000000001,0.13,795,2.1,265,3
+2023,7,18,9,30,30.8,1.24,0.08700000000000001,0.62,98,889,769,2,8,3.8000000000000003,208,24,32,226,0.274,18.12,40.97,0.9500000000000001,0.13,795,2.1,276,3.2
+2023,7,18,10,0,31,1.25,0.096,0.62,103,901,836,3,8,3.8000000000000003,314,152,46,438,0.273,17.81,35.59,0.9500000000000001,0.13,795,2.1,286,3.5
+2023,7,18,10,30,31.1,1.25,0.096,0.62,102,919,894,2,7,3.8000000000000003,308,126,25,417,0.273,17.71,30.52,0.9500000000000001,0.13,795,2.1,298,3.5
+2023,7,18,11,0,31.1,1.3900000000000001,0.081,0.62,99,936,940,0,8,4.1000000000000005,326,55,0,375,0.273,18.13,25.98,0.9500000000000001,0.13,795,2.1,309,3.6
+2023,7,18,11,30,31.6,1.3900000000000001,0.081,0.62,100,942,971,0,8,4.1000000000000005,437,259,0,677,0.273,17.62,22.32,0.9500000000000001,0.13,795,2.1,316,3.3000000000000003
+2023,7,18,12,0,32.2,1.42,0.081,0.62,100,945,988,0,8,4.2,396,373,0,746,0.274,17.2,20.05,0.9500000000000001,0.13,795,2.1,322,3
+2023,7,18,12,30,32.6,1.42,0.081,0.62,103,942,990,0,8,4.2,350,413,0,739,0.274,16.8,19.68,0.9500000000000001,0.13,794,2.1,324,2.6
+2023,7,18,13,0,33.1,1.44,0.091,0.62,105,936,977,0,8,4.1000000000000005,349,193,0,529,0.274,16.18,21.3,0.96,0.13,794,2.1,326,2.2
+2023,7,18,13,30,33.2,1.44,0.091,0.62,107,926,949,0,8,4.1000000000000005,350,205,0,536,0.274,16.09,24.53,0.96,0.13,794,2.2,319,2.2
+2023,7,18,14,0,33.300000000000004,1.44,0.106,0.62,110,910,907,0,8,4.2,313,388,0,653,0.274,16.080000000000002,28.8,0.96,0.13,794,2.2,312,2.2
+2023,7,18,14,30,32.6,1.44,0.106,0.62,111,888,850,0,0,4.1000000000000005,246,622,0,763,0.274,16.72,33.71,0.97,0.13,794,2.3000000000000003,304,2.9000000000000004
+2023,7,18,15,0,31.8,1.3900000000000001,0.13,0.62,115,858,782,0,0,5.1000000000000005,223,628,0,711,0.274,18.68,39,0.97,0.13,794,2.4000000000000004,297,3.6
+2023,7,18,15,30,30.200000000000003,1.3900000000000001,0.13,0.62,109,836,705,0,0,5.1000000000000005,180,676,0,662,0.274,20.45,44.52,0.97,0.13,794,2.6,301,4
+2023,7,18,16,0,28.5,1.43,0.126,0.62,104,807,621,0,5,7,261,188,0,381,0.275,25.82,50.15,0.97,0.13,795,2.7,306,4.4
+2023,7,18,16,30,27.1,1.43,0.126,0.62,93,782,532,0,7,7,243,137,0,320,0.276,28.01,55.84,0.97,0.13,795,2.7,325,3.9000000000000004
+2023,7,18,17,0,25.700000000000003,1.55,0.10300000000000001,0.62,82,751,440,0,7,8.3,188,37,0,206,0.277,33.28,61.53,0.96,0.13,795,2.6,344,3.5
+2023,7,18,17,30,25,1.55,0.10300000000000001,0.62,71,706,345,0,6,8.3,125,67,0,151,0.278,34.69,67.19,0.96,0.13,795,2.5,186,3
+2023,7,18,18,0,24.3,1.6600000000000001,0.083,0.62,59,646,250,0,6,8.6,49,108,0,81,0.279,36.92,72.77,0.96,0.13,795,2.4000000000000004,29,2.5
+2023,7,18,18,30,23.6,1.6600000000000001,0.083,0.62,48,539,158,0,7,8.6,54,315,0,118,0.279,38.5,78.25,0.96,0.13,795,2.4000000000000004,59,1.8
+2023,7,18,19,0,22.8,1.68,0.078,0.62,33,376,75,6,6,9.200000000000001,38,7,86,39,0.279,41.96,83.57000000000001,0.96,0.13,795,2.4000000000000004,88,1.1
+2023,7,18,19,30,22.200000000000003,1.68,0.078,0.62,12,113,15,5,6,9.200000000000001,8,0,71,8,0.28,43.51,88.59,0.96,0.13,795,2.4000000000000004,116,1.5
+2023,7,18,20,0,21.6,1.6600000000000001,0.077,0.62,0,0,0,0,6,9.9,0,0,0,0,0.28,47.27,93.83,0.96,0.13,796,2.4000000000000004,143,1.9000000000000001
+2023,7,18,20,30,21.200000000000003,1.6600000000000001,0.077,0.62,0,0,0,0,7,9.9,0,0,0,0,0.28,48.43,98.53,0.96,0.13,796,2.4000000000000004,152,2.2
+2023,7,18,21,0,20.8,1.62,0.083,0.62,0,0,0,0,6,10.700000000000001,0,0,0,0,0.28,52.42,102.91,0.96,0.13,796,2.5,160,2.4000000000000004
+2023,7,18,21,30,20.5,1.62,0.083,0.62,0,0,0,0,6,10.700000000000001,0,0,0,0,0.28,53.4,106.89,0.96,0.13,796,2.5,168,2.2
+2023,7,18,22,0,20.1,1.6,0.09,0.62,0,0,0,0,7,11.600000000000001,0,0,0,0,0.28,58.26,110.42,0.96,0.13,796,2.5,175,2
+2023,7,18,22,30,19.900000000000002,1.6,0.09,0.62,0,0,0,0,7,11.600000000000001,0,0,0,0,0.28,58.980000000000004,113.41,0.96,0.13,796,2.5,181,1.8
+2023,7,18,23,0,19.6,1.61,0.09,0.62,0,0,0,0,7,12.3,0,0,0,0,0.28,62.68,115.79,0.96,0.13,796,2.5,188,1.6
+2023,7,18,23,30,19.3,1.61,0.09,0.62,0,0,0,0,7,12.3,0,0,0,0,0.28,63.85,117.47,0.96,0.13,796,2.5,195,1.4000000000000001
+2023,7,19,0,0,19,1.6300000000000001,0.08700000000000001,0.62,0,0,0,0,7,12.600000000000001,0,0,0,0,0.279,66.55,118.4,0.96,0.13,796,2.5,203,1.2000000000000002
+2023,7,19,0,30,18.5,1.6300000000000001,0.08700000000000001,0.62,0,0,0,0,7,12.600000000000001,0,0,0,0,0.279,68.65,118.55,0.96,0.13,796,2.5,210,1.2000000000000002
+2023,7,19,1,0,18.1,1.6300000000000001,0.088,0.62,0,0,0,0,7,12.8,0,0,0,0,0.278,71.13,117.91,0.96,0.13,795,2.5,217,1.1
+2023,7,19,1,30,17.8,1.6300000000000001,0.088,0.62,0,0,0,0,7,12.8,0,0,0,0,0.278,72.48,116.51,0.96,0.13,795,2.5,223,1.1
+2023,7,19,2,0,17.5,1.56,0.106,0.62,0,0,0,0,7,13,0,0,0,0,0.278,74.71000000000001,114.39,0.97,0.13,795,2.5,229,1.1
+2023,7,19,2,30,17.400000000000002,1.56,0.106,0.62,0,0,0,0,7,13,0,0,0,0,0.278,75.28,111.62,0.97,0.13,796,2.6,232,1.1
+2023,7,19,3,0,17.2,1.49,0.125,0.62,0,0,0,0,7,13.100000000000001,0,0,0,0,0.278,76.95,108.29,0.97,0.13,796,2.6,234,1
+2023,7,19,3,30,17,1.49,0.125,0.62,0,0,0,0,8,13.100000000000001,0,0,0,0,0.279,77.92,104.46000000000001,0.97,0.13,796,2.6,234,0.9
+2023,7,19,4,0,16.900000000000002,1.47,0.129,0.62,0,0,0,0,7,13.200000000000001,0,0,0,0,0.279,78.69,100.22,0.97,0.13,796,2.6,234,0.8
+2023,7,19,4,30,17.3,1.47,0.129,0.62,0,0,0,0,8,13.200000000000001,0,0,0,0,0.279,76.73,95.64,0.97,0.13,796,2.6,232,0.9
+2023,7,19,5,0,17.6,1.47,0.127,0.62,4,24,4,3,7,13.3,2,0,43,2,0.279,76,90.3,0.97,0.13,797,2.6,230,1
+2023,7,19,5,30,18.400000000000002,1.47,0.127,0.62,29,214,46,7,7,13.3,17,0,100,17,0.28,72.28,85.52,0.97,0.13,797,2.6,233,1.4000000000000001
+2023,7,19,6,0,19.200000000000003,1.45,0.13,0.62,51,405,119,1,7,13.200000000000001,29,9,14,31,0.28,68.02,80.29,0.97,0.13,797,2.6,237,1.7000000000000002
+2023,7,19,6,30,20.1,1.45,0.13,0.62,66,541,207,0,8,13.200000000000001,57,7,4,59,0.28,64.34,74.86,0.97,0.13,797,2.6,242,1.9000000000000001
+2023,7,19,7,0,21,1.44,0.126,0.62,77,637,302,0,4,11.9,58,1,7,58,0.28,56.02,69.31,0.97,0.13,798,2.7,246,2.1
+2023,7,19,7,30,21.6,1.44,0.126,0.62,86,706,399,0,4,11.9,53,0,0,53,0.28,54.01,63.68,0.97,0.13,798,2.7,248,2.1
+2023,7,19,8,0,22.200000000000003,1.44,0.123,0.62,93,759,495,0,4,10.9,38,0,0,38,0.28,48.61,58,0.97,0.13,798,2.7,250,2.1
+2023,7,19,8,30,22.700000000000003,1.44,0.123,0.62,100,799,588,0,4,10.9,60,0,0,60,0.28,47.160000000000004,52.31,0.97,0.13,798,2.7,252,2
+2023,7,19,9,0,23.200000000000003,1.45,0.11900000000000001,0.62,103,830,673,0,4,10.600000000000001,121,0,0,121,0.28,44.86,46.660000000000004,0.97,0.13,798,2.7,255,1.8
+2023,7,19,9,30,23.900000000000002,1.45,0.11900000000000001,0.62,105,859,752,0,4,10.600000000000001,140,0,0,140,0.28,43.01,41.1,0.97,0.13,798,2.7,254,1.5
+2023,7,19,10,0,24.700000000000003,1.49,0.106,0.62,105,883,822,0,4,10.200000000000001,316,67,0,370,0.281,40.09,35.72,0.97,0.13,798,2.7,253,1.2000000000000002
+2023,7,19,10,30,25.700000000000003,1.49,0.106,0.62,101,909,883,0,4,10.200000000000001,396,94,0,477,0.281,37.78,30.66,0.97,0.13,798,2.6,247,0.9
+2023,7,19,11,0,26.700000000000003,1.74,0.07100000000000001,0.62,93,935,932,0,3,9.8,444,135,0,565,0.281,34.480000000000004,26.13,0.97,0.13,798,2.5,242,0.7000000000000001
+2023,7,19,11,30,27.400000000000002,1.74,0.07100000000000001,0.62,92,945,965,0,3,9.8,311,596,0,862,0.281,33.1,22.490000000000002,0.96,0.13,798,2.4000000000000004,242,0.7000000000000001
+2023,7,19,12,0,28.200000000000003,1.78,0.063,0.62,90,953,984,0,0,9.3,90,953,0,984,0.281,30.64,20.23,0.96,0.13,797,2.4000000000000004,242,0.6000000000000001
+2023,7,19,12,30,28.8,1.78,0.063,0.62,89,956,988,0,0,9.3,89,956,0,988,0.281,29.6,19.86,0.96,0.13,797,2.3000000000000003,248,0.5
+2023,7,19,13,0,29.3,1.81,0.059000000000000004,0.62,87,957,978,0,0,8.8,87,957,0,978,0.281,27.84,21.47,0.96,0.13,797,2.3000000000000003,254,0.4
+2023,7,19,13,30,29.5,1.81,0.059000000000000004,0.62,85,954,952,0,0,8.8,85,954,0,952,0.281,27.52,24.67,0.96,0.13,797,2.3000000000000003,254,0.4
+2023,7,19,14,0,29.8,1.85,0.054,0.62,82,949,913,0,0,8.4,82,949,0,913,0.281,26.3,28.92,0.96,0.13,796,2.3000000000000003,254,0.30000000000000004
+2023,7,19,14,30,29.8,1.85,0.054,0.62,82,938,861,0,0,8.4,82,938,0,861,0.28,26.3,33.82,0.96,0.13,796,2.3000000000000003,259,0.30000000000000004
+2023,7,19,15,0,29.8,1.85,0.057,0.62,80,923,796,0,0,8.1,80,923,0,796,0.28,25.7,39.11,0.96,0.13,796,2.3000000000000003,264,0.30000000000000004
+2023,7,19,15,30,29.6,1.85,0.057,0.62,78,900,719,0,0,8.1,115,814,0,694,0.28,26,44.61,0.96,0.13,796,2.4000000000000004,279,0.30000000000000004
+2023,7,19,16,0,29.3,1.81,0.065,0.62,77,871,634,0,0,7.9,158,651,0,574,0.28,26.080000000000002,50.24,0.97,0.13,796,2.4000000000000004,294,0.4
+2023,7,19,16,30,28.6,1.81,0.065,0.62,77,829,541,0,0,7.9,156,574,0,478,0.279,27.150000000000002,55.93,0.97,0.13,796,2.5,300,0.8
+2023,7,19,17,0,27.900000000000002,1.72,0.08700000000000001,0.62,76,773,443,0,0,8.1,76,773,0,443,0.279,28.69,61.620000000000005,0.97,0.13,796,2.6,307,1.3
+2023,7,19,17,30,26.6,1.72,0.08700000000000001,0.62,73,696,342,0,0,8.1,101,584,14,327,0.279,30.96,67.28,0.98,0.13,796,2.6,316,2.1
+2023,7,19,18,0,25.3,1.6400000000000001,0.122,0.62,68,590,242,0,3,9.1,123,334,21,221,0.279,35.910000000000004,72.87,0.98,0.13,797,2.7,324,2.9000000000000004
+2023,7,19,18,30,23.700000000000003,1.6400000000000001,0.122,0.62,55,470,150,0,8,9.1,87,235,39,134,0.279,39.51,78.35000000000001,0.98,0.13,797,2.7,339,3.4000000000000004
+2023,7,19,19,0,22.1,1.6500000000000001,0.126,0.62,37,298,70,6,7,10.5,50,29,96,53,0.279,47.62,83.68,0.98,0.13,797,2.7,354,4
+2023,7,19,19,30,21.3,1.6500000000000001,0.126,0.62,12,77,14,5,7,10.5,10,1,71,10,0.279,49.99,88.7,0.98,0.13,797,2.7,189,3.7
+2023,7,19,20,0,20.5,1.68,0.107,0.62,0,0,0,0,6,10.5,0,0,0,0,0.279,52.74,93.95,0.98,0.13,797,2.7,23,3.4000000000000004
+2023,7,19,20,30,20,1.68,0.107,0.62,0,0,0,0,6,10.5,0,0,0,0,0.279,54.46,98.66,0.97,0.13,798,2.7,45,2.2
+2023,7,19,21,0,19.6,1.68,0.10200000000000001,0.62,0,0,0,0,6,11.100000000000001,0,0,0,0,0.278,57.910000000000004,103.04,0.97,0.13,798,2.7,68,1
+2023,7,19,21,30,19.1,1.68,0.10200000000000001,0.62,0,0,0,0,6,11.100000000000001,0,0,0,0,0.278,59.730000000000004,107.04,0.97,0.13,798,2.7,116,1.2000000000000002
+2023,7,19,22,0,18.6,1.7,0.094,0.62,0,0,0,0,6,11.9,0,0,0,0,0.277,65,110.58,0.97,0.13,798,2.7,164,1.5
+2023,7,19,22,30,18.2,1.7,0.094,0.62,0,0,0,0,6,11.9,0,0,0,0,0.278,66.64,113.58,0.97,0.13,798,2.7,162,1.6
+2023,7,19,23,0,17.7,1.72,0.091,0.62,0,0,0,0,6,12.5,0,0,0,0,0.278,71.74,115.96000000000001,0.97,0.13,798,2.6,159,1.6
+2023,7,19,23,30,17.400000000000002,1.72,0.091,0.62,0,0,0,0,6,12.5,0,0,0,0,0.278,73.11,117.65,0.97,0.13,798,2.7,180,1
+2023,7,20,0,0,17.1,1.7,0.1,0.62,0,0,0,0,7,13,0,0,0,0,0.278,76.91,118.58,0.97,0.13,798,2.7,200,0.4
+2023,7,20,0,30,16.7,1.7,0.1,0.62,0,0,0,0,7,13,0,0,0,0,0.277,78.78,118.74000000000001,0.97,0.13,797,2.7,262,0.7000000000000001
+2023,7,20,1,0,16.3,1.6400000000000001,0.111,0.62,0,0,0,0,7,13.3,0,0,0,0,0.277,82.51,118.10000000000001,0.97,0.13,797,2.8000000000000003,324,0.9
+2023,7,20,1,30,16.1,1.6400000000000001,0.111,0.62,0,0,0,0,7,13.3,0,0,0,0,0.277,83.57000000000001,116.69,0.97,0.13,797,2.8000000000000003,165,0.8
+2023,7,20,2,0,15.8,1.59,0.122,0.62,0,0,0,0,0,13.5,0,0,0,0,0.277,86.31,114.56,0.97,0.13,797,2.9000000000000004,5,0.6000000000000001
+2023,7,20,2,30,15.700000000000001,1.59,0.122,0.62,0,0,0,0,0,13.5,0,0,0,0,0.278,86.86,111.79,0.97,0.13,797,2.8000000000000003,59,0.7000000000000001
+2023,7,20,3,0,15.5,1.6300000000000001,0.10300000000000001,0.62,0,0,0,0,0,13.600000000000001,0,0,0,0,0.279,88.37,108.45,0.97,0.13,797,2.7,113,0.7000000000000001
+2023,7,20,3,30,15.200000000000001,1.6300000000000001,0.10300000000000001,0.62,0,0,0,0,0,13.600000000000001,0,0,0,0,0.279,90.08,104.62,0.96,0.13,797,2.6,141,0.5
+2023,7,20,4,0,14.9,1.6600000000000001,0.085,0.62,0,0,0,0,0,13.5,0,0,0,0,0.28,91.44,100.37,0.96,0.13,797,2.5,170,0.2
+2023,7,20,4,30,15.100000000000001,1.6600000000000001,0.085,0.62,0,0,0,0,3,13.5,0,0,0,0,0.28,90.27,95.78,0.96,0.13,797,2.5,236,0.30000000000000004
+2023,7,20,5,0,15.200000000000001,1.6400000000000001,0.084,0.62,5,35,4,3,5,13.5,2,0,43,2,0.28,89.78,90.9,0.96,0.13,797,2.5,302,0.4
+2023,7,20,5,30,16.2,1.6400000000000001,0.084,0.62,27,268,47,2,0,13.600000000000001,27,211,32,43,0.28,84.34,85.65,0.96,0.13,798,2.5,298,0.7000000000000001
+2023,7,20,6,0,17.2,1.6,0.09,0.62,44,461,121,0,0,13,44,461,0,121,0.28,76.48,80.41,0.96,0.13,798,2.5,295,1
+2023,7,20,6,30,18.400000000000002,1.6,0.09,0.62,58,583,209,0,0,13,58,583,0,209,0.28,70.93,74.99,0.96,0.13,798,2.6,286,1.4000000000000001
+2023,7,20,7,0,19.700000000000003,1.55,0.106,0.62,72,662,304,0,0,11.700000000000001,72,662,0,304,0.28,60.07,69.44,0.97,0.13,798,2.6,276,1.9000000000000001
+2023,7,20,7,30,20.5,1.55,0.106,0.62,82,718,399,0,0,11.700000000000001,82,718,0,399,0.28,57.18,63.800000000000004,0.97,0.13,798,2.7,272,2
+2023,7,20,8,0,21.3,1.51,0.127,0.62,94,755,493,0,0,11,101,732,0,488,0.28,51.7,58.120000000000005,0.97,0.13,798,2.7,269,2.2
+2023,7,20,8,30,22,1.51,0.127,0.62,103,789,584,0,3,11,283,285,0,457,0.28,49.550000000000004,52.43,0.97,0.13,798,2.7,263,2.1
+2023,7,20,9,0,22.6,1.49,0.14,0.62,112,814,669,0,3,10.8,299,360,0,546,0.28,47.26,46.78,0.97,0.13,798,2.7,257,1.9000000000000001
+2023,7,20,9,30,23.3,1.49,0.14,0.62,116,840,748,0,3,10.8,334,354,0,600,0.281,45.31,41.230000000000004,0.97,0.13,798,2.7,248,1.8
+2023,7,20,10,0,24.1,1.51,0.134,0.62,118,862,817,0,0,10.600000000000001,157,789,0,796,0.281,42.49,35.86,0.97,0.13,798,2.6,239,1.7000000000000002
+2023,7,20,10,30,24.900000000000002,1.51,0.134,0.62,110,895,879,0,0,10.600000000000001,122,866,0,866,0.281,40.51,30.810000000000002,0.96,0.13,798,2.5,237,1.7000000000000002
+2023,7,20,11,0,25.700000000000003,1.51,0.079,0.62,98,929,931,0,3,10.3,322,384,0,666,0.28200000000000003,37.83,26.29,0.96,0.13,798,2.4000000000000004,234,1.7000000000000002
+2023,7,20,11,30,26.400000000000002,1.51,0.079,0.62,97,939,964,0,3,10.200000000000001,385,69,0,449,0.28200000000000003,36.26,22.66,0.96,0.13,797,2.4000000000000004,242,1.7000000000000002
+2023,7,20,12,0,27,1.53,0.07200000000000001,0.62,95,946,982,0,3,9.9,335,259,0,578,0.28300000000000003,34.11,20.42,0.96,0.13,797,2.3000000000000003,250,1.6
+2023,7,20,12,30,27.3,1.53,0.07200000000000001,0.62,94,949,986,0,3,9.9,282,372,0,631,0.28300000000000003,33.52,20.04,0.96,0.13,797,2.3000000000000003,265,1.6
+2023,7,20,13,0,27.6,1.57,0.068,0.62,93,949,975,0,7,9.4,273,62,0,331,0.28400000000000003,31.900000000000002,21.64,0.96,0.13,797,2.3000000000000003,279,1.6
+2023,7,20,13,30,27.8,1.57,0.068,0.62,90,947,950,0,7,9.4,261,152,0,399,0.28500000000000003,31.490000000000002,24.82,0.97,0.13,796,2.3000000000000003,293,1.8
+2023,7,20,14,0,27.900000000000002,1.61,0.06,0.62,87,944,912,0,7,8.9,152,166,0,297,0.28600000000000003,30.3,29.060000000000002,0.97,0.13,796,2.2,307,1.9000000000000001
+2023,7,20,14,30,27.900000000000002,1.61,0.06,0.62,84,935,860,0,0,8.9,113,879,0,842,0.28600000000000003,30.3,33.94,0.97,0.13,796,2.2,318,2.1
+2023,7,20,15,0,27.900000000000002,1.67,0.057,0.62,81,923,796,0,3,8.3,326,388,0,627,0.28700000000000003,29.2,39.22,0.97,0.13,796,2.2,328,2.4000000000000004
+2023,7,20,15,30,27.700000000000003,1.67,0.057,0.62,78,907,722,0,3,8.3,282,370,0,545,0.28800000000000003,29.54,44.72,0.97,0.13,796,2.2,336,2.6
+2023,7,20,16,0,27.5,1.74,0.053,0.62,73,886,638,0,3,7.9,207,440,0,488,0.289,28.97,50.34,0.96,0.13,796,2.2,344,2.8000000000000003
+2023,7,20,16,30,27.1,1.74,0.053,0.62,69,858,548,0,3,7.9,173,559,0,485,0.289,29.650000000000002,56.03,0.96,0.13,796,2.1,349,3
+2023,7,20,17,0,26.6,1.79,0.05,0.62,62,823,452,0,7,7.5,109,702,29,442,0.289,29.77,61.72,0.96,0.13,796,2.1,354,3.2
+2023,7,20,17,30,25.900000000000002,1.79,0.05,0.62,57,773,354,0,3,7.5,129,531,7,333,0.29,31.02,67.38,0.96,0.13,796,2.1,179,3.2
+2023,7,20,18,0,25.1,1.82,0.047,0.62,49,706,256,0,0,7.300000000000001,60,656,0,252,0.291,32.12,72.98,0.96,0.13,797,2,5,3.1
+2023,7,20,18,30,23.400000000000002,1.82,0.047,0.62,40,604,161,0,0,7.300000000000001,63,346,0,132,0.291,35.550000000000004,78.46000000000001,0.9500000000000001,0.13,797,1.9000000000000001,14,2.3000000000000003
+2023,7,20,19,0,21.6,1.81,0.044,0.62,29,441,77,2,0,8.200000000000001,34,215,32,57,0.292,42.11,83.79,0.9500000000000001,0.13,797,1.8,23,1.5
+2023,7,20,19,30,20.700000000000003,1.81,0.044,0.62,12,146,15,0,0,8.200000000000001,12,146,0,15,0.292,44.49,88.81,0.9400000000000001,0.13,797,1.8,34,1.4000000000000001
+2023,7,20,20,0,19.700000000000003,1.77,0.043000000000000003,0.62,0,0,0,0,0,8.200000000000001,0,0,0,0,0.292,47.46,94.07000000000001,0.9400000000000001,0.13,798,1.7000000000000002,45,1.4000000000000001
+2023,7,20,20,30,19.200000000000003,1.77,0.043000000000000003,0.62,0,0,0,0,0,8.200000000000001,0,0,0,0,0.291,48.96,98.79,0.9400000000000001,0.13,798,1.7000000000000002,54,1.4000000000000001
+2023,7,20,21,0,18.6,1.74,0.044,0.62,0,0,0,0,0,8.4,0,0,0,0,0.291,51.43,103.19,0.9400000000000001,0.13,798,1.7000000000000002,64,1.4000000000000001
+2023,7,20,21,30,18.1,1.74,0.044,0.62,0,0,0,0,0,8.4,0,0,0,0,0.29,53.06,107.19,0.93,0.13,798,1.6,71,1.4000000000000001
+2023,7,20,22,0,17.6,1.7,0.045,0.62,0,0,0,0,0,8.8,0,0,0,0,0.289,56.15,110.74000000000001,0.93,0.13,798,1.6,79,1.4000000000000001
+2023,7,20,22,30,17.2,1.7,0.045,0.62,0,0,0,0,0,8.8,0,0,0,0,0.289,57.58,113.75,0.93,0.13,798,1.6,85,1.4000000000000001
+2023,7,20,23,0,16.8,1.68,0.045,0.62,0,0,0,0,0,9.1,0,0,0,0,0.28800000000000003,60.35,116.13,0.93,0.13,798,1.6,92,1.3
+2023,7,20,23,30,16.400000000000002,1.68,0.045,0.62,0,0,0,0,0,9.1,0,0,0,0,0.28700000000000003,61.9,117.83,0.93,0.13,798,1.6,96,1.2000000000000002
+2023,7,21,0,0,16,1.6600000000000001,0.045,0.62,0,0,0,0,0,9.3,0,0,0,0,0.28700000000000003,64.44,118.77,0.93,0.13,798,1.6,101,1.1
+2023,7,21,0,30,15.8,1.6600000000000001,0.045,0.62,0,0,0,0,0,9.3,0,0,0,0,0.28700000000000003,65.27,118.93,0.93,0.13,798,1.6,105,1.1
+2023,7,21,1,0,15.5,1.6400000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,67.03,118.28,0.93,0.13,798,1.7000000000000002,109,1.1
+2023,7,21,1,30,15.4,1.6400000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,67.46000000000001,116.87,0.93,0.13,798,1.7000000000000002,112,1
+2023,7,21,2,0,15.3,1.6400000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,68.02,114.75,0.93,0.13,798,1.7000000000000002,115,0.9
+2023,7,21,2,30,15.3,1.6400000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,68.02,111.97,0.93,0.13,798,1.7000000000000002,112,0.8
+2023,7,21,3,0,15.200000000000001,1.6300000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,68.28,108.62,0.93,0.13,798,1.6,110,0.7000000000000001
+2023,7,21,3,30,15.100000000000001,1.6300000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,68.72,104.78,0.93,0.13,798,1.6,96,0.6000000000000001
+2023,7,21,4,0,14.9,1.6300000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,69.44,100.53,0.93,0.13,798,1.7000000000000002,83,0.5
+2023,7,21,4,30,15.100000000000001,1.6300000000000001,0.045,0.62,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,68.55,95.93,0.93,0.13,798,1.7000000000000002,66,0.5
+2023,7,21,5,0,15.4,1.6300000000000001,0.045,0.62,4,30,3,0,0,9.4,4,30,0,3,0.28500000000000003,67.46000000000001,91.05,0.93,0.13,798,1.6,50,0.4
+2023,7,21,5,30,16.7,1.6300000000000001,0.045,0.62,24,351,50,0,0,9.4,24,351,0,50,0.28500000000000003,62.1,85.78,0.93,0.13,798,1.6,43,0.6000000000000001
+2023,7,21,6,0,18,1.6300000000000001,0.045,0.62,37,557,128,0,0,9.4,37,557,0,128,0.28500000000000003,57.06,80.55,0.93,0.13,798,1.6,37,0.8
+2023,7,21,6,30,20.3,1.6300000000000001,0.045,0.62,46,684,222,0,0,9.4,46,684,0,222,0.28500000000000003,49.47,75.12,0.93,0.13,798,1.6,26,0.8
+2023,7,21,7,0,22.6,1.62,0.044,0.62,52,769,321,0,0,8.1,52,769,0,321,0.28500000000000003,39.300000000000004,69.56,0.93,0.13,798,1.6,16,0.8
+2023,7,21,7,30,24,1.62,0.044,0.62,58,828,422,0,0,8.1,58,828,0,422,0.28500000000000003,36.12,63.92,0.93,0.13,798,1.6,9,0.8
+2023,7,21,8,0,25.400000000000002,1.62,0.043000000000000003,0.62,63,870,521,0,0,6.5,63,870,0,521,0.28400000000000003,29.89,58.24,0.93,0.13,798,1.6,2,0.8
+2023,7,21,8,30,26.3,1.62,0.043000000000000003,0.62,68,902,616,0,0,6.5,68,902,0,616,0.28400000000000003,28.35,52.550000000000004,0.93,0.13,798,1.6,169,0.8
+2023,7,21,9,0,27.3,1.61,0.043000000000000003,0.62,70,928,704,0,0,5.7,70,928,0,704,0.28400000000000003,25.240000000000002,46.9,0.93,0.13,798,1.5,336,0.8
+2023,7,21,9,30,28.1,1.61,0.043000000000000003,0.62,73,947,784,0,0,5.7,73,947,0,784,0.28400000000000003,24.09,41.36,0.93,0.13,798,1.5,323,0.9
+2023,7,21,10,0,29,1.61,0.042,0.62,76,962,854,0,0,5.1000000000000005,76,962,0,854,0.28400000000000003,21.95,35.99,0.93,0.13,798,1.5,310,0.9
+2023,7,21,10,30,29.700000000000003,1.61,0.042,0.62,74,977,912,0,0,5.1000000000000005,74,977,0,912,0.28400000000000003,21.06,30.95,0.93,0.13,797,1.5,301,1
+2023,7,21,11,0,30.400000000000002,1.73,0.034,0.62,73,988,958,0,0,4.6000000000000005,73,988,0,958,0.28400000000000003,19.56,26.45,0.93,0.13,797,1.5,292,1.1
+2023,7,21,11,30,31,1.73,0.034,0.62,74,993,989,0,0,4.6000000000000005,74,993,0,989,0.28400000000000003,18.91,22.84,0.93,0.13,797,1.5,286,1.2000000000000002
+2023,7,21,12,0,31.6,1.73,0.034,0.62,75,995,1006,0,0,4.1000000000000005,75,995,0,1006,0.28400000000000003,17.64,20.61,0.93,0.13,796,1.5,279,1.3
+2023,7,21,12,30,31.900000000000002,1.73,0.034,0.62,74,995,1008,0,0,4.1000000000000005,88,962,0,991,0.28400000000000003,17.34,20.23,0.93,0.13,796,1.5,275,1.3
+2023,7,21,13,0,32.300000000000004,1.73,0.035,0.62,74,993,996,0,0,3.6,74,993,0,996,0.28400000000000003,16.38,21.81,0.93,0.13,796,1.6,271,1.4000000000000001
+2023,7,21,13,30,32.5,1.73,0.035,0.62,75,986,969,0,0,3.6,115,889,0,921,0.28400000000000003,16.2,24.97,0.93,0.13,796,1.6,268,1.4000000000000001
+2023,7,21,14,0,32.7,1.62,0.043000000000000003,0.62,77,975,928,0,0,3.2,77,975,0,928,0.28400000000000003,15.52,29.19,0.93,0.13,795,1.6,265,1.5
+2023,7,21,14,30,32.7,1.62,0.043000000000000003,0.62,76,963,874,0,0,3.2,136,770,0,774,0.28400000000000003,15.52,34.07,0.93,0.13,795,1.6,265,1.5
+2023,7,21,15,0,32.6,1.6,0.046,0.62,75,947,808,0,0,2.8000000000000003,115,871,0,789,0.28400000000000003,15.23,39.33,0.9400000000000001,0.13,795,1.6,266,1.5
+2023,7,21,15,30,32.300000000000004,1.6,0.046,0.62,74,928,732,0,0,2.8000000000000003,87,899,0,725,0.28400000000000003,15.49,44.82,0.9400000000000001,0.13,795,1.7000000000000002,270,1.6
+2023,7,21,16,0,32,1.57,0.049,0.62,71,903,646,0,0,2.6,170,583,0,541,0.28400000000000003,15.540000000000001,50.45,0.9400000000000001,0.13,794,1.7000000000000002,275,1.6
+2023,7,21,16,30,31.400000000000002,1.57,0.049,0.62,68,868,552,0,0,2.6,97,761,0,521,0.28400000000000003,16.080000000000002,56.13,0.9400000000000001,0.13,794,1.8,282,1.7000000000000002
+2023,7,21,17,0,30.900000000000002,1.55,0.055,0.62,65,823,454,0,0,2.7,70,804,0,450,0.28400000000000003,16.6,61.83,0.9500000000000001,0.13,794,1.8,288,1.8
+2023,7,21,17,30,29.900000000000002,1.55,0.055,0.62,61,764,353,0,0,2.7,61,764,0,353,0.28400000000000003,17.59,67.49,0.9500000000000001,0.13,795,1.9000000000000001,294,1.6
+2023,7,21,18,0,28.900000000000002,1.51,0.063,0.62,54,679,252,0,0,4.5,80,501,11,226,0.28400000000000003,21.19,73.09,0.9500000000000001,0.13,795,2,300,1.5
+2023,7,21,18,30,27.400000000000002,1.51,0.063,0.62,44,565,156,1,3,4.5,77,233,21,123,0.28400000000000003,23.11,78.58,0.9500000000000001,0.13,795,2,305,1.1
+2023,7,21,19,0,25.8,1.52,0.065,0.62,31,387,72,4,0,7.5,42,210,50,64,0.28300000000000003,31.17,83.91,0.9500000000000001,0.13,795,2,310,0.7000000000000001
+2023,7,21,19,30,25.6,1.52,0.065,0.62,12,112,14,5,5,7.5,8,0,71,8,0.28300000000000003,31.54,88.93,0.9500000000000001,0.13,795,2,292,0.4
+2023,7,21,20,0,25.3,1.57,0.061,0.62,0,0,0,0,8,6.6000000000000005,0,0,0,0,0.28300000000000003,30.29,94.21000000000001,0.9500000000000001,0.13,796,2,273,0.1
+2023,7,21,20,30,24.700000000000003,1.57,0.061,0.62,0,0,0,0,3,6.6000000000000005,0,0,0,0,0.28300000000000003,31.39,98.93,0.9500000000000001,0.13,796,1.9000000000000001,207,0.30000000000000004
+2023,7,21,21,0,24,1.6,0.055,0.62,0,0,0,0,0,6.5,0,0,0,0,0.28300000000000003,32.38,103.33,0.9500000000000001,0.13,796,1.9000000000000001,141,0.6000000000000001
+2023,7,21,21,30,23.3,1.6,0.055,0.62,0,0,0,0,0,6.5,0,0,0,0,0.28200000000000003,33.77,107.35000000000001,0.9400000000000001,0.13,796,1.9000000000000001,142,0.6000000000000001
+2023,7,21,22,0,22.5,1.6300000000000001,0.051000000000000004,0.62,0,0,0,0,0,6.2,0,0,0,0,0.28200000000000003,34.93,110.91,0.9400000000000001,0.13,796,1.8,143,0.6000000000000001
+2023,7,21,22,30,22,1.6300000000000001,0.051000000000000004,0.62,0,0,0,0,0,6.2,0,0,0,0,0.28200000000000003,36,113.92,0.9400000000000001,0.13,796,1.8,144,0.5
+2023,7,21,23,0,21.5,1.6500000000000001,0.048,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28200000000000003,36.84,116.32000000000001,0.9400000000000001,0.13,796,1.8,144,0.4
+2023,7,21,23,30,21.1,1.6500000000000001,0.048,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28200000000000003,37.75,118.02,0.93,0.13,796,1.8,140,0.4
+2023,7,22,0,0,20.700000000000003,1.67,0.044,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28200000000000003,39.25,118.97,0.93,0.13,796,1.8,135,0.30000000000000004
+2023,7,22,0,30,20.200000000000003,1.67,0.044,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.281,40.480000000000004,119.12,0.93,0.13,796,1.8,124,0.30000000000000004
+2023,7,22,1,0,19.700000000000003,1.68,0.04,0.62,0,0,0,0,0,6.2,0,0,0,0,0.281,41.4,118.48,0.92,0.13,796,1.7000000000000002,113,0.2
+2023,7,22,1,30,19.3,1.68,0.04,0.62,0,0,0,0,0,6.2,0,0,0,0,0.281,42.44,117.07000000000001,0.92,0.13,796,1.7000000000000002,104,0.2
+2023,7,22,2,0,18.900000000000002,1.68,0.037,0.62,0,0,0,0,0,6,0,0,0,0,0.281,42.83,114.93,0.92,0.13,796,1.7000000000000002,96,0.2
+2023,7,22,2,30,18.6,1.68,0.037,0.62,0,0,0,0,0,6,0,0,0,0,0.281,43.64,112.15,0.92,0.13,796,1.6,97,0.30000000000000004
+2023,7,22,3,0,18.2,1.6600000000000001,0.036000000000000004,0.62,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.281,43.53,108.79,0.92,0.13,796,1.6,99,0.30000000000000004
+2023,7,22,3,30,17.900000000000002,1.6600000000000001,0.036000000000000004,0.62,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.281,44.35,104.95,0.91,0.13,796,1.5,106,0.30000000000000004
+2023,7,22,4,0,17.7,1.6400000000000001,0.035,0.62,0,0,0,0,0,5.300000000000001,0,0,29,0,0.281,44.03,100.69,0.91,0.13,796,1.5,114,0.30000000000000004
+2023,7,22,4,30,17.8,1.6400000000000001,0.035,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28,43.75,96.08,0.91,0.13,796,1.4000000000000001,121,0.4
+2023,7,22,5,0,17.900000000000002,1.62,0.035,0.62,4,33,3,0,0,5.6000000000000005,4,33,0,3,0.28,44.32,91.19,0.91,0.13,796,1.4000000000000001,129,0.4
+2023,7,22,5,30,19.3,1.62,0.035,0.62,22,375,49,0,0,5.6000000000000005,22,375,0,49,0.28,40.67,85.92,0.91,0.13,797,1.4000000000000001,143,0.6000000000000001
+2023,7,22,6,0,20.700000000000003,1.59,0.035,0.62,35,582,129,0,0,5.2,35,582,0,129,0.28,36.32,80.68,0.91,0.13,797,1.4000000000000001,157,0.8
+2023,7,22,6,30,22.900000000000002,1.59,0.035,0.62,43,707,223,0,0,5.2,43,707,0,223,0.28,31.77,75.25,0.92,0.13,797,1.4000000000000001,191,0.6000000000000001
+2023,7,22,7,0,25.1,1.57,0.035,0.62,50,789,324,0,0,4.2,50,789,0,324,0.28,25.91,69.69,0.92,0.13,797,1.3,225,0.5
+2023,7,22,7,30,26.6,1.57,0.035,0.62,56,844,425,0,0,4.2,56,844,0,425,0.28,23.72,64.05,0.92,0.13,797,1.4000000000000001,252,0.6000000000000001
+2023,7,22,8,0,28,1.56,0.036000000000000004,0.62,60,885,524,0,0,3.1,60,885,0,524,0.28,20.21,58.370000000000005,0.92,0.13,797,1.4000000000000001,280,0.7000000000000001
+2023,7,22,8,30,28.900000000000002,1.56,0.036000000000000004,0.62,64,916,619,0,0,3.1,64,916,0,619,0.28,19.19,52.68,0.92,0.13,797,1.4000000000000001,274,0.8
+2023,7,22,9,0,29.8,1.56,0.037,0.62,67,939,707,0,0,2.4000000000000004,67,939,29,707,0.281,17.29,47.03,0.92,0.13,797,1.4000000000000001,268,0.9
+2023,7,22,9,30,30.5,1.56,0.037,0.62,70,957,787,0,0,2.4000000000000004,70,957,0,787,0.281,16.61,41.49,0.92,0.13,797,1.4000000000000001,261,1.1
+2023,7,22,10,0,31.3,1.57,0.038,0.62,72,970,855,0,0,2.1,72,970,0,855,0.281,15.55,36.13,0.92,0.13,797,1.4000000000000001,254,1.3
+2023,7,22,10,30,31.900000000000002,1.57,0.038,0.62,72,983,914,0,0,2.1,72,983,0,914,0.281,15.02,31.1,0.92,0.13,796,1.4000000000000001,250,1.5
+2023,7,22,11,0,32.5,1.7,0.032,0.62,71,992,958,0,0,2.1,71,992,0,958,0.281,14.51,26.62,0.93,0.13,796,1.5,247,1.8
+2023,7,22,11,30,32.9,1.7,0.032,0.62,72,997,990,0,0,2.1,72,997,0,990,0.281,14.19,23.02,0.93,0.13,796,1.5,244,2
+2023,7,22,12,0,33.4,1.74,0.032,0.62,73,998,1006,0,0,2.2,73,998,0,1006,0.281,13.950000000000001,20.8,0.93,0.13,796,1.5,241,2.2
+2023,7,22,12,30,33.7,1.74,0.032,0.62,74,997,1008,0,0,2.2,74,997,0,1008,0.28200000000000003,13.700000000000001,20.43,0.93,0.13,795,1.5,239,2.4000000000000004
+2023,7,22,13,0,33.9,1.78,0.034,0.62,73,994,995,0,0,2.4000000000000004,73,994,0,995,0.28200000000000003,13.71,22,0.93,0.13,795,1.6,236,2.5
+2023,7,22,13,30,34.1,1.78,0.034,0.62,74,987,968,0,0,2.4000000000000004,74,987,0,968,0.28200000000000003,13.56,25.14,0.93,0.13,795,1.6,234,2.6
+2023,7,22,14,0,34.2,1.73,0.039,0.62,74,977,926,0,0,2.4000000000000004,87,958,0,922,0.28300000000000003,13.49,29.34,0.9400000000000001,0.13,794,1.6,232,2.6
+2023,7,22,14,30,34.1,1.73,0.039,0.62,74,966,873,0,0,2.4000000000000004,98,917,0,856,0.28300000000000003,13.57,34.2,0.9400000000000001,0.13,794,1.6,230,2.6
+2023,7,22,15,0,34,1.72,0.042,0.62,73,951,807,0,0,2.2,91,906,0,791,0.28400000000000003,13.450000000000001,39.45,0.9400000000000001,0.13,794,1.6,229,2.6
+2023,7,22,15,30,33.800000000000004,1.72,0.042,0.62,71,933,731,0,0,2.2,155,715,0,661,0.28500000000000003,13.6,44.94,0.9400000000000001,0.13,794,1.6,230,2.5
+2023,7,22,16,0,33.5,1.71,0.044,0.62,68,910,646,0,0,1.8,68,910,0,646,0.28500000000000003,13.49,50.56,0.9400000000000001,0.13,793,1.6,231,2.3000000000000003
+2023,7,22,16,30,33,1.71,0.044,0.62,64,881,554,0,0,1.8,89,816,0,542,0.28600000000000003,13.870000000000001,56.24,0.9500000000000001,0.13,793,1.6,236,2.1
+2023,7,22,17,0,32.5,1.7,0.044,0.62,61,842,457,0,0,1.4000000000000001,99,721,7,438,0.28600000000000003,13.870000000000001,61.940000000000005,0.9500000000000001,0.14,793,1.6,241,1.9000000000000001
+2023,7,22,17,30,31.6,1.7,0.044,0.62,55,792,357,0,0,1.4000000000000001,98,615,0,332,0.28700000000000003,14.6,67.6,0.9500000000000001,0.14,793,1.6,246,1.5
+2023,7,22,18,0,30.700000000000003,1.69,0.044,0.62,49,720,257,0,0,3.8000000000000003,49,720,0,257,0.28700000000000003,18.13,73.2,0.9500000000000001,0.14,793,1.6,251,1
+2023,7,22,18,30,29.200000000000003,1.69,0.044,0.62,39,616,160,0,0,3.8000000000000003,39,616,0,160,0.28800000000000003,19.78,78.7,0.9400000000000001,0.14,794,1.6,245,0.6000000000000001
+2023,7,22,19,0,27.700000000000003,1.69,0.041,0.62,28,448,75,0,0,4.6000000000000005,28,448,0,75,0.28800000000000003,22.91,84.03,0.9400000000000001,0.14,794,1.5,239,0.30000000000000004
+2023,7,22,19,30,26.900000000000002,1.69,0.041,0.62,10,120,12,0,0,4.6000000000000005,10,120,0,12,0.28800000000000003,24.01,89.05,0.9400000000000001,0.14,794,1.5,138,0.30000000000000004
+2023,7,22,20,0,26.1,1.67,0.038,0.62,0,0,0,0,0,3.5,0,0,0,0,0.289,23.3,94.34,0.9400000000000001,0.14,794,1.4000000000000001,37,0.2
+2023,7,22,20,30,25.3,1.67,0.038,0.62,0,0,0,0,0,3.5,0,0,0,0,0.289,24.42,99.08,0.93,0.14,794,1.4000000000000001,36,0.30000000000000004
+2023,7,22,21,0,24.6,1.6600000000000001,0.036000000000000004,0.62,0,0,0,0,0,3,0,0,0,0,0.289,24.62,103.49000000000001,0.93,0.14,794,1.4000000000000001,34,0.4
+2023,7,22,21,30,24,1.6600000000000001,0.036000000000000004,0.62,0,0,0,0,0,3.1,0,0,0,0,0.289,25.55,107.51,0.93,0.14,795,1.3,36,0.5
+2023,7,22,22,0,23.400000000000002,1.67,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.289,25.77,111.08,0.92,0.14,795,1.3,38,0.5
+2023,7,22,22,30,23,1.67,0.035,0.62,0,0,0,0,0,2.7,0,0,0,0,0.28800000000000003,26.39,114.10000000000001,0.92,0.14,795,1.3,41,0.4
+2023,7,22,23,0,22.6,1.68,0.034,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28800000000000003,26.59,116.51,0.92,0.14,795,1.3,44,0.4
+2023,7,22,23,30,22.1,1.68,0.034,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28800000000000003,27.400000000000002,118.21000000000001,0.92,0.14,795,1.3,49,0.30000000000000004
+2023,7,23,0,0,21.700000000000003,1.69,0.034,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28800000000000003,28.05,119.16,0.92,0.14,795,1.3,54,0.2
+2023,7,23,0,30,21.3,1.69,0.034,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28700000000000003,28.740000000000002,119.32000000000001,0.92,0.14,795,1.3,112,0.2
+2023,7,23,1,0,20.900000000000002,1.72,0.034,0.62,0,0,0,0,8,2.3000000000000003,0,0,0,0,0.28700000000000003,29.16,118.68,0.92,0.14,794,1.3,169,0.1
+2023,7,23,1,30,20.5,1.72,0.034,0.62,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28700000000000003,29.89,117.26,0.92,0.14,794,1.3,162,0.2
+2023,7,23,2,0,20.200000000000003,1.71,0.034,0.62,0,0,0,0,0,2.1,0,0,0,0,0.28700000000000003,30.09,115.12,0.92,0.14,794,1.3,154,0.30000000000000004
+2023,7,23,2,30,19.900000000000002,1.71,0.034,0.62,0,0,0,0,7,2.1,0,0,0,0,0.28700000000000003,30.69,112.33,0.92,0.14,795,1.3,148,0.4
+2023,7,23,3,0,19.6,1.7,0.036000000000000004,0.62,0,0,0,0,7,1.9000000000000001,0,0,0,0,0.28700000000000003,30.77,108.97,0.92,0.14,795,1.3,142,0.4
+2023,7,23,3,30,19.3,1.7,0.036000000000000004,0.62,0,0,0,0,7,1.9000000000000001,0,0,0,0,0.28700000000000003,31.35,105.12,0.93,0.14,795,1.3,139,0.5
+2023,7,23,4,0,19,1.69,0.038,0.62,0,0,0,0,0,1.6,0,0,0,0,0.28700000000000003,31.25,100.85000000000001,0.93,0.14,795,1.3,136,0.6000000000000001
+2023,7,23,4,30,19,1.69,0.038,0.62,0,0,0,0,0,1.6,0,0,0,0,0.28700000000000003,31.25,96.24000000000001,0.93,0.14,795,1.3,136,0.7000000000000001
+2023,7,23,5,0,19.1,1.6500000000000001,0.042,0.62,3,30,2,0,0,1.7000000000000002,3,30,0,2,0.28600000000000003,31.36,91.34,0.9400000000000001,0.14,795,1.3,137,0.8
+2023,7,23,5,30,20.3,1.6500000000000001,0.042,0.62,23,352,47,2,0,1.7000000000000002,24,255,21,42,0.28600000000000003,29.12,86.06,0.9400000000000001,0.14,795,1.3,144,1.1
+2023,7,23,6,0,21.5,1.6300000000000001,0.044,0.62,36,561,126,1,8,2,62,308,14,111,0.28600000000000003,27.51,80.81,0.9400000000000001,0.14,795,1.3,152,1.4000000000000001
+2023,7,23,6,30,22.900000000000002,1.6300000000000001,0.044,0.62,46,688,220,0,0,2,86,442,0,198,0.28600000000000003,25.27,75.38,0.9400000000000001,0.14,795,1.4000000000000001,152,1.6
+2023,7,23,7,0,24.200000000000003,1.6300000000000001,0.046,0.62,53,770,319,0,0,0.4,58,748,0,316,0.28600000000000003,20.88,69.82000000000001,0.9400000000000001,0.14,795,1.4000000000000001,153,1.9000000000000001
+2023,7,23,7,30,26.3,1.6300000000000001,0.046,0.62,60,826,420,0,0,0.4,60,826,0,420,0.28600000000000003,18.46,64.17,0.9400000000000001,0.14,796,1.5,163,2
+2023,7,23,8,0,28.3,1.6300000000000001,0.049,0.62,65,866,518,0,0,-0.1,65,866,0,518,0.28600000000000003,15.75,58.49,0.9400000000000001,0.14,796,1.5,174,2.2
+2023,7,23,8,30,29.6,1.6300000000000001,0.049,0.62,72,892,611,0,0,-0.1,72,892,0,611,0.28600000000000003,14.620000000000001,52.800000000000004,0.9500000000000001,0.14,796,1.6,188,2.2
+2023,7,23,9,0,30.900000000000002,1.59,0.061,0.62,79,908,696,0,0,-0.2,79,908,0,696,0.28600000000000003,13.450000000000001,47.160000000000004,0.9500000000000001,0.14,796,1.6,203,2.3000000000000003
+2023,7,23,9,30,31.3,1.59,0.061,0.62,85,920,773,0,3,-0.2,271,539,0,674,0.28600000000000003,13.15,41.62,0.96,0.14,796,1.7000000000000002,223,2.3000000000000003
+2023,7,23,10,0,31.700000000000003,1.55,0.077,0.62,93,926,839,0,0,0,134,853,0,822,0.28600000000000003,13.1,36.28,0.96,0.14,796,1.8,243,2.4000000000000004
+2023,7,23,10,30,31.8,1.55,0.077,0.62,93,939,896,1,8,0,281,517,11,723,0.28600000000000003,13.02,31.26,0.96,0.14,796,1.8,254,2.2
+2023,7,23,11,0,31.8,1.59,0.07100000000000001,0.62,93,950,941,3,8,0.6000000000000001,361,189,39,530,0.28700000000000003,13.620000000000001,26.79,0.96,0.14,796,1.9000000000000001,265,1.9000000000000001
+2023,7,23,11,30,32,1.59,0.07100000000000001,0.62,93,958,973,0,7,0.6000000000000001,398,272,0,648,0.28700000000000003,13.47,23.21,0.96,0.14,796,1.9000000000000001,259,1.4000000000000001
+2023,7,23,12,0,32.300000000000004,1.6300000000000001,0.061,0.62,89,966,991,1,8,1.3,421,202,11,610,0.28800000000000003,13.86,21,0.9500000000000001,0.14,796,1.8,253,0.9
+2023,7,23,12,30,32.800000000000004,1.6300000000000001,0.061,0.62,89,968,995,0,3,1.3,341,357,0,675,0.28800000000000003,13.47,20.63,0.9500000000000001,0.14,796,1.8,245,0.8
+2023,7,23,13,0,33.2,1.68,0.056,0.62,86,969,983,0,7,1.6,347,449,0,763,0.289,13.52,22.18,0.9500000000000001,0.14,796,1.8,237,0.7000000000000001
+2023,7,23,13,30,33.5,1.68,0.056,0.62,90,957,955,0,7,1.6,438,210,0,628,0.289,13.27,25.310000000000002,0.9400000000000001,0.14,795,1.8,263,0.5
+2023,7,23,14,0,33.800000000000004,1.53,0.076,0.62,94,940,912,0,6,1.8,413,92,0,493,0.289,13.26,29.490000000000002,0.9400000000000001,0.14,795,1.9000000000000001,288,0.4
+2023,7,23,14,30,33.7,1.53,0.076,0.62,96,924,859,0,6,1.8,369,45,0,406,0.289,13.34,34.33,0.9500000000000001,0.14,795,1.9000000000000001,310,0.4
+2023,7,23,15,0,33.6,1.51,0.09,0.62,96,902,791,0,6,2,345,49,0,383,0.289,13.57,39.58,0.9500000000000001,0.14,795,1.9000000000000001,333,0.5
+2023,7,23,15,30,33.2,1.51,0.09,0.62,98,871,713,0,6,2,267,19,0,280,0.289,13.88,45.06,0.96,0.14,795,2,319,0.8
+2023,7,23,16,0,32.800000000000004,1.47,0.117,0.62,99,830,625,0,6,2.4000000000000004,171,4,0,174,0.289,14.61,50.67,0.96,0.14,795,2,305,1
+2023,7,23,16,30,31.8,1.47,0.117,0.62,101,770,528,0,6,2.4000000000000004,167,9,0,172,0.28800000000000003,15.46,56.35,0.97,0.14,795,2.1,296,1.6
+2023,7,23,17,0,30.900000000000002,1.42,0.169,0.62,103,690,426,0,6,3.5,128,6,0,131,0.28700000000000003,17.59,62.050000000000004,0.97,0.13,795,2.2,287,2.1
+2023,7,23,17,30,29.200000000000003,1.42,0.169,0.62,93,614,326,0,6,3.5,138,16,0,144,0.28700000000000003,19.41,67.72,0.97,0.13,796,2.3000000000000003,281,2.1
+2023,7,23,18,0,27.6,1.42,0.186,0.62,81,511,228,0,6,6.2,68,4,0,69,0.28600000000000003,25.66,73.32000000000001,0.97,0.13,796,2.5,275,2
+2023,7,23,18,30,25.900000000000002,1.42,0.186,0.62,61,395,138,0,7,6.2,59,150,18,88,0.28600000000000003,28.35,78.82000000000001,0.97,0.13,796,2.5,232,1.4000000000000001
+2023,7,23,19,0,24.200000000000003,1.46,0.164,0.62,38,235,62,6,7,8.1,49,30,86,52,0.28600000000000003,35.730000000000004,84.16,0.97,0.13,797,2.5,189,0.8
+2023,7,23,19,30,23.3,1.46,0.164,0.62,8,41,9,5,7,8.1,7,0,71,7,0.28700000000000003,37.71,89.17,0.97,0.13,797,2.5,165,1.5
+2023,7,23,20,0,22.400000000000002,1.49,0.137,0.62,0,0,0,0,7,8.700000000000001,0,0,0,0,0.28700000000000003,41.45,94.49,0.97,0.13,797,2.4000000000000004,141,2.3000000000000003
+2023,7,23,20,30,22.1,1.49,0.137,0.62,0,0,0,0,7,8.700000000000001,0,0,0,0,0.28800000000000003,42.21,99.23,0.96,0.13,797,2.4000000000000004,144,2.4000000000000004
+2023,7,23,21,0,21.8,1.54,0.113,0.62,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28800000000000003,43.14,103.65,0.96,0.13,797,2.4000000000000004,148,2.5
+2023,7,23,21,30,21.5,1.54,0.113,0.62,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28800000000000003,43.88,107.68,0.96,0.13,796,2.4000000000000004,158,2.2
+2023,7,23,22,0,21.1,1.55,0.10300000000000001,0.62,0,0,0,0,7,8.700000000000001,0,0,0,0,0.28800000000000003,44.87,111.26,0.96,0.13,796,2.4000000000000004,169,1.8
+2023,7,23,22,30,20.900000000000002,1.55,0.10300000000000001,0.62,0,0,0,0,7,8.700000000000001,0,0,0,0,0.28800000000000003,45.42,114.29,0.96,0.13,796,2.4000000000000004,185,1.6
+2023,7,23,23,0,20.700000000000003,1.55,0.101,0.62,0,0,0,0,7,8.6,0,0,0,0,0.28800000000000003,45.69,116.7,0.96,0.13,796,2.4000000000000004,201,1.5
+2023,7,23,23,30,20.700000000000003,1.55,0.101,0.62,0,0,0,0,7,8.6,0,0,0,0,0.28700000000000003,45.69,118.42,0.97,0.13,796,2.4000000000000004,212,1.5
+2023,7,24,0,0,20.6,1.53,0.108,0.62,0,0,0,0,7,8.3,0,0,0,0,0.28600000000000003,45.2,119.37,0.97,0.13,796,2.5,224,1.6
+2023,7,24,0,30,20.700000000000003,1.53,0.108,0.62,0,0,0,0,3,8.3,0,0,0,0,0.28600000000000003,44.92,119.53,0.97,0.13,796,2.4000000000000004,227,1.5
+2023,7,24,1,0,20.8,1.51,0.113,0.62,0,0,0,0,5,7.9,0,0,0,0,0.28600000000000003,43.51,118.88,0.97,0.13,796,2.4000000000000004,230,1.5
+2023,7,24,1,30,20.900000000000002,1.51,0.113,0.62,0,0,0,0,5,7.9,0,0,0,0,0.28600000000000003,43.25,117.46000000000001,0.97,0.13,796,2.4000000000000004,223,1.3
+2023,7,24,2,0,21,1.54,0.10300000000000001,0.62,0,0,0,0,5,7.6000000000000005,0,0,0,0,0.28600000000000003,42.03,115.32000000000001,0.97,0.13,796,2.3000000000000003,217,1.1
+2023,7,24,2,30,20.6,1.54,0.10300000000000001,0.62,0,0,0,0,4,7.6000000000000005,0,0,0,0,0.28600000000000003,43.07,112.52,0.97,0.13,796,2.2,201,1
+2023,7,24,3,0,20.200000000000003,1.58,0.088,0.62,0,0,0,0,5,7.4,0,0,0,0,0.28600000000000003,43.63,109.15,0.96,0.13,796,2.1,186,1
+2023,7,24,3,30,19.700000000000003,1.58,0.088,0.62,0,0,0,0,5,7.4,0,0,0,0,0.28600000000000003,45,105.29,0.96,0.13,796,2.1,181,1
+2023,7,24,4,0,19.3,1.61,0.075,0.62,0,0,0,0,0,7.4,0,0,0,0,0.28700000000000003,46.02,101.01,0.96,0.13,796,2,176,1.1
+2023,7,24,4,30,19.400000000000002,1.61,0.075,0.62,0,0,0,0,0,7.4,0,0,0,0,0.28700000000000003,45.730000000000004,96.39,0.9500000000000001,0.13,796,2,178,1.1
+2023,7,24,5,0,19.5,1.62,0.064,0.62,3,21,2,0,0,7.6000000000000005,3,21,0,2,0.28700000000000003,45.980000000000004,91.49,0.9500000000000001,0.13,796,1.9000000000000001,179,1.1
+2023,7,24,5,30,20.900000000000002,1.62,0.064,0.62,24,292,43,0,0,7.6000000000000005,24,292,0,43,0.28700000000000003,42.18,86.2,0.9500000000000001,0.13,796,1.9000000000000001,180,1.2000000000000002
+2023,7,24,6,0,22.200000000000003,1.62,0.056,0.62,38,516,119,0,0,7.5,39,495,0,117,0.28700000000000003,38.75,80.95,0.9400000000000001,0.13,797,1.9000000000000001,180,1.3
+2023,7,24,6,30,24,1.62,0.056,0.62,48,653,211,0,3,7.5,102,182,0,148,0.28800000000000003,34.77,75.51,0.9400000000000001,0.13,797,1.8,183,1.5
+2023,7,24,7,0,25.8,1.62,0.052000000000000005,0.62,56,745,311,0,0,6.2,92,576,0,289,0.28800000000000003,28.55,69.95,0.9400000000000001,0.13,797,1.8,186,1.8
+2023,7,24,7,30,27.3,1.62,0.052000000000000005,0.62,61,807,411,0,0,6.2,61,807,0,411,0.28800000000000003,26.14,64.3,0.9400000000000001,0.13,797,1.8,188,2.3000000000000003
+2023,7,24,8,0,28.900000000000002,1.61,0.051000000000000004,0.62,66,853,510,0,0,4.800000000000001,72,837,0,508,0.289,21.67,58.620000000000005,0.9400000000000001,0.13,797,1.8,189,2.8000000000000003
+2023,7,24,8,30,30.1,1.61,0.051000000000000004,0.62,71,884,604,0,0,4.800000000000001,71,884,0,604,0.289,20.2,52.93,0.9400000000000001,0.13,796,1.8,194,3.2
+2023,7,24,9,0,31.3,1.6,0.053,0.62,75,908,691,0,0,4.1000000000000005,75,908,0,691,0.289,17.88,47.29,0.9400000000000001,0.13,796,1.9000000000000001,198,3.6
+2023,7,24,9,30,32.300000000000004,1.6,0.053,0.62,78,926,769,0,0,4.1000000000000005,78,926,0,769,0.289,16.9,41.76,0.9500000000000001,0.13,796,1.9000000000000001,204,3.9000000000000004
+2023,7,24,10,0,33.300000000000004,1.6,0.057,0.62,82,938,837,0,0,3.8000000000000003,82,938,0,837,0.289,15.65,36.42,0.9500000000000001,0.13,796,1.9000000000000001,209,4.1000000000000005
+2023,7,24,10,30,34.1,1.6,0.057,0.62,84,949,894,0,0,3.8000000000000003,84,949,0,894,0.28800000000000003,14.97,31.41,0.9500000000000001,0.13,796,2,213,4.3
+2023,7,24,11,0,35,1.73,0.055,0.62,84,957,937,0,0,4,84,957,0,937,0.28800000000000003,14.450000000000001,26.96,0.9500000000000001,0.13,796,2.1,218,4.4
+2023,7,24,11,30,35.5,1.73,0.055,0.62,87,960,968,0,0,4,87,960,0,968,0.28800000000000003,14.040000000000001,23.400000000000002,0.9500000000000001,0.13,795,2.1,220,4.6000000000000005
+2023,7,24,12,0,36.1,1.7,0.06,0.62,89,959,983,0,0,4.5,139,869,4,949,0.28800000000000003,14.120000000000001,21.21,0.9500000000000001,0.13,795,2.2,222,4.800000000000001
+2023,7,24,12,30,36.300000000000004,1.7,0.06,0.62,91,956,984,0,0,4.5,109,912,0,961,0.28800000000000003,13.97,20.84,0.96,0.13,795,2.2,223,5.2
+2023,7,24,13,0,36.6,1.6600000000000001,0.067,0.62,92,950,970,0,8,5.300000000000001,169,788,0,898,0.28800000000000003,14.46,22.38,0.96,0.13,795,2.3000000000000003,224,5.5
+2023,7,24,13,30,36.4,1.6600000000000001,0.067,0.62,89,946,943,0,7,5.2,336,434,0,728,0.28800000000000003,14.6,25.48,0.97,0.13,794,2.3000000000000003,224,6
+2023,7,24,14,0,36.300000000000004,1.7,0.06,0.62,86,941,904,0,7,6,234,640,0,790,0.28800000000000003,15.47,29.650000000000002,0.97,0.13,794,2.4000000000000004,225,6.5
+2023,7,24,14,30,35.5,1.7,0.06,0.62,85,928,850,0,7,6,328,387,0,647,0.28700000000000003,16.17,34.47,0.97,0.13,794,2.5,228,7
+2023,7,24,15,0,34.800000000000004,1.7,0.061,0.62,82,913,784,0,7,6.9,361,207,0,520,0.28700000000000003,17.92,39.71,0.97,0.13,794,2.5,232,7.5
+2023,7,24,15,30,33.800000000000004,1.7,0.061,0.62,80,893,709,0,7,6.9,302,258,0,484,0.28700000000000003,18.94,45.18,0.96,0.13,794,2.5,241,7.2
+2023,7,24,16,0,32.9,1.69,0.064,0.62,76,867,624,0,7,7.800000000000001,182,572,21,544,0.28700000000000003,21.1,50.800000000000004,0.96,0.13,794,2.5,249,6.9
+2023,7,24,16,30,31.8,1.69,0.064,0.62,73,834,534,0,0,7.800000000000001,101,759,29,520,0.28800000000000003,22.44,56.480000000000004,0.96,0.13,794,2.5,265,6.2
+2023,7,24,17,0,30.8,1.6500000000000001,0.065,0.62,67,792,437,0,7,8.9,120,644,36,421,0.28800000000000003,25.6,62.17,0.96,0.13,794,2.5,281,5.4
+2023,7,24,17,30,29.400000000000002,1.6500000000000001,0.065,0.62,61,737,339,0,7,8.9,101,605,50,329,0.289,27.77,67.84,0.9500000000000001,0.13,795,2.5,299,4.7
+2023,7,24,18,0,28.1,1.6,0.063,0.62,53,662,242,0,7,10.100000000000001,113,365,18,217,0.289,32.43,73.45,0.9500000000000001,0.13,795,2.4000000000000004,316,4
+2023,7,24,18,30,26.3,1.6,0.063,0.62,43,548,148,1,7,10.100000000000001,87,191,14,124,0.29,36.02,78.95,0.9500000000000001,0.13,795,2.4000000000000004,335,3.3000000000000003
+2023,7,24,19,0,24.5,1.58,0.062,0.62,29,371,66,7,7,11.3,50,42,100,54,0.29,43.46,84.29,0.9500000000000001,0.13,795,2.3000000000000003,354,2.7
+2023,7,24,19,30,23.5,1.58,0.062,0.62,9,86,10,4,3,11.3,7,1,57,7,0.29,46.14,89.3,0.9500000000000001,0.13,795,2.3000000000000003,187,2.6
+2023,7,24,20,0,22.400000000000002,1.58,0.062,0.62,0,0,0,0,3,12,0,0,0,0,0.291,51.85,94.64,0.9500000000000001,0.13,795,2.3000000000000003,19,2.4000000000000004
+2023,7,24,20,30,21.900000000000002,1.58,0.062,0.62,0,0,0,0,0,12,0,0,0,0,0.29,53.45,99.39,0.9500000000000001,0.13,795,2.3000000000000003,26,2.2
+2023,7,24,21,0,21.3,1.58,0.062,0.62,0,0,0,0,0,12.4,0,0,0,0,0.29,56.81,103.82000000000001,0.9500000000000001,0.13,796,2.3000000000000003,32,2
+2023,7,24,21,30,20.900000000000002,1.58,0.062,0.62,0,0,0,0,0,12.4,0,0,0,0,0.29,58.22,107.86,0.9500000000000001,0.13,796,2.4000000000000004,35,1.6
+2023,7,24,22,0,20.6,1.57,0.066,0.62,0,0,0,0,0,12.5,0,0,0,0,0.29,59.63,111.44,0.9500000000000001,0.13,796,2.4000000000000004,37,1.3
+2023,7,24,22,30,20.3,1.57,0.066,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,60.74,114.48,0.9500000000000001,0.13,796,2.5,23,1
+2023,7,24,23,0,20,1.53,0.07,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,62.09,116.9,0.9500000000000001,0.13,796,2.5,9,0.6000000000000001
+2023,7,24,23,30,19.8,1.53,0.07,0.62,0,0,0,0,0,12.5,0,0,0,0,0.289,62.86,118.62,0.9500000000000001,0.13,796,2.5,163,0.6000000000000001
+2023,7,25,0,0,19.5,1.49,0.07100000000000001,0.62,0,0,0,0,0,12.4,0,0,0,0,0.28800000000000003,63.64,119.58,0.9500000000000001,0.13,796,2.6,317,0.6000000000000001
+2023,7,25,0,30,19.400000000000002,1.49,0.07100000000000001,0.62,0,0,0,0,3,12.4,0,0,0,0,0.28800000000000003,64.03,119.74000000000001,0.96,0.13,796,2.6,303,0.7000000000000001
+2023,7,25,1,0,19.3,1.46,0.07100000000000001,0.62,0,0,0,0,5,12.200000000000001,0,0,0,0,0.28800000000000003,63.35,119.09,0.96,0.13,796,2.6,289,0.8
+2023,7,25,1,30,19.200000000000003,1.46,0.07100000000000001,0.62,0,0,0,0,4,12.200000000000001,0,0,0,0,0.28700000000000003,63.74,117.67,0.96,0.13,796,2.6,284,0.9
+2023,7,25,2,0,19.1,1.46,0.069,0.62,0,0,0,0,4,11.9,0,0,0,0,0.28700000000000003,62.84,115.52,0.96,0.13,796,2.6,278,0.9
+2023,7,25,2,30,18.900000000000002,1.46,0.069,0.62,0,0,0,0,4,11.9,0,0,0,0,0.28700000000000003,63.63,112.71000000000001,0.96,0.13,796,2.6,277,0.9
+2023,7,25,3,0,18.8,1.46,0.074,0.62,0,0,0,0,4,11.700000000000001,0,0,0,0,0.28700000000000003,63.49,109.34,0.96,0.13,796,2.6,275,0.8
+2023,7,25,3,30,18.6,1.46,0.074,0.62,0,0,0,0,3,11.700000000000001,0,0,0,0,0.28600000000000003,64.28,105.47,0.96,0.13,796,2.6,273,0.7000000000000001
+2023,7,25,4,0,18.3,1.46,0.08,0.62,0,0,0,0,4,11.8,0,0,0,0,0.28600000000000003,65.8,101.18,0.96,0.13,796,2.6,271,0.6000000000000001
+2023,7,25,4,30,18.5,1.46,0.08,0.62,0,0,0,0,4,11.8,0,0,0,0,0.28500000000000003,64.98,96.55,0.96,0.13,796,2.6,265,0.6000000000000001
+2023,7,25,5,0,18.6,1.47,0.083,0.62,2,14,2,2,4,12.200000000000001,1,0,29,1,0.28500000000000003,66.17,91.64,0.96,0.13,797,2.6,260,0.5
+2023,7,25,5,30,19.5,1.47,0.083,0.62,24,230,39,4,0,12.200000000000001,23,134,57,32,0.28400000000000003,62.57,86.34,0.96,0.13,797,2.6,246,0.6000000000000001
+2023,7,25,6,0,20.400000000000002,1.48,0.085,0.62,42,442,110,0,0,12,47,352,7,102,0.28400000000000003,58.71,81.09,0.96,0.13,797,2.7,232,0.8
+2023,7,25,6,30,22.400000000000002,1.48,0.085,0.62,56,578,199,0,0,12.100000000000001,58,561,0,197,0.28300000000000003,51.97,75.64,0.96,0.13,797,2.7,237,1.3
+2023,7,25,7,0,24.400000000000002,1.49,0.092,0.62,66,668,294,0,0,10.600000000000001,66,668,0,294,0.28300000000000003,41.86,70.08,0.96,0.13,797,2.7,242,1.8
+2023,7,25,7,30,25.8,1.49,0.092,0.62,75,732,391,0,0,10.600000000000001,75,732,0,391,0.28300000000000003,38.53,64.43,0.96,0.13,797,2.7,244,2
+2023,7,25,8,0,27.1,1.49,0.1,0.62,84,777,487,0,0,9.600000000000001,84,777,0,487,0.28300000000000003,33.43,58.75,0.96,0.13,797,2.7,246,2.3000000000000003
+2023,7,25,8,30,28.1,1.49,0.1,0.62,92,811,579,0,0,9.600000000000001,92,811,0,579,0.28300000000000003,31.54,53.06,0.97,0.13,797,2.7,245,2.5
+2023,7,25,9,0,29.1,1.48,0.11,0.62,99,837,665,0,0,9.1,99,837,0,665,0.28300000000000003,28.73,47.42,0.97,0.13,797,2.7,244,2.7
+2023,7,25,9,30,29.900000000000002,1.48,0.11,0.62,105,859,744,0,0,9.1,105,859,0,744,0.28300000000000003,27.44,41.9,0.97,0.13,797,2.6,245,2.9000000000000004
+2023,7,25,10,0,30.6,1.46,0.115,0.62,109,875,812,0,0,8.6,109,875,0,812,0.28300000000000003,25.53,36.57,0.97,0.13,797,2.6,246,3.1
+2023,7,25,10,30,31.200000000000003,1.46,0.115,0.62,103,905,874,0,0,8.6,103,905,0,874,0.28400000000000003,24.67,31.57,0.96,0.13,797,2.5,248,3.2
+2023,7,25,11,0,31.8,1.6400000000000001,0.069,0.62,92,936,925,0,0,8.200000000000001,92,936,0,925,0.28400000000000003,23.05,27.14,0.96,0.13,797,2.5,249,3.3000000000000003
+2023,7,25,11,30,32.300000000000004,1.6400000000000001,0.069,0.62,91,946,958,0,0,8.200000000000001,106,918,0,947,0.28500000000000003,22.41,23.6,0.96,0.13,797,2.4000000000000004,250,3.3000000000000003
+2023,7,25,12,0,32.800000000000004,1.7,0.062,0.62,89,954,977,0,0,7.5,117,894,0,949,0.28500000000000003,20.84,21.42,0.96,0.13,796,2.4000000000000004,251,3.3000000000000003
+2023,7,25,12,30,33.2,1.7,0.062,0.62,88,958,982,0,0,7.5,195,718,0,865,0.28600000000000003,20.38,21.05,0.96,0.13,796,2.3000000000000003,251,3.3000000000000003
+2023,7,25,13,0,33.6,1.72,0.055,0.62,86,960,972,0,0,6.7,203,649,0,802,0.28600000000000003,18.82,22.580000000000002,0.96,0.13,796,2.2,251,3.3000000000000003
+2023,7,25,13,30,33.800000000000004,1.72,0.055,0.62,84,958,948,0,0,6.7,200,703,0,834,0.28600000000000003,18.61,25.66,0.96,0.13,796,2.2,252,3.4000000000000004
+2023,7,25,14,0,34,1.69,0.051000000000000004,0.62,81,954,909,0,0,5.7,191,759,0,850,0.28600000000000003,17.21,29.810000000000002,0.96,0.13,795,2.1,253,3.5
+2023,7,25,14,30,34,1.69,0.051000000000000004,0.62,79,945,857,0,3,5.7,316,447,0,684,0.28600000000000003,17.21,34.62,0.96,0.13,795,2.1,254,3.5
+2023,7,25,15,0,33.9,1.6400000000000001,0.051000000000000004,0.62,77,932,793,0,8,4.7,335,217,0,502,0.28600000000000003,16.15,39.85,0.96,0.13,795,2,254,3.5
+2023,7,25,15,30,33.6,1.6400000000000001,0.051000000000000004,0.62,75,915,718,0,8,4.7,298,260,0,481,0.28600000000000003,16.43,45.31,0.96,0.13,795,2,255,3.4000000000000004
+2023,7,25,16,0,33.300000000000004,1.61,0.05,0.62,71,893,634,0,8,3.8000000000000003,239,347,0,458,0.28600000000000003,15.71,50.92,0.96,0.13,794,2,256,3.3000000000000003
+2023,7,25,16,30,32.800000000000004,1.61,0.05,0.62,67,863,542,0,3,3.8000000000000003,193,393,0,409,0.28600000000000003,16.15,56.6,0.96,0.13,794,2,258,3.2
+2023,7,25,17,0,32.2,1.59,0.049,0.62,62,824,445,0,3,3.2,174,186,4,260,0.28600000000000003,16.04,62.300000000000004,0.96,0.13,794,1.9000000000000001,261,3
+2023,7,25,17,30,31.200000000000003,1.59,0.049,0.62,57,771,346,0,7,3.2,135,179,4,202,0.28600000000000003,16.97,67.97,0.96,0.13,794,1.9000000000000001,266,2.5
+2023,7,25,18,0,30.3,1.57,0.049,0.62,50,695,246,0,7,4.1000000000000005,47,13,0,51,0.28600000000000003,18.93,73.58,0.9500000000000001,0.13,794,1.9000000000000001,271,2
+2023,7,25,18,30,28.200000000000003,1.57,0.049,0.62,40,580,150,1,7,4,50,86,14,66,0.28600000000000003,21.36,79.08,0.9500000000000001,0.13,794,1.9000000000000001,280,1.5
+2023,7,25,19,0,26.200000000000003,1.55,0.052000000000000005,0.62,29,394,67,7,7,5.300000000000001,42,9,100,43,0.28600000000000003,26.14,84.43,0.9500000000000001,0.13,795,1.9000000000000001,289,1.1
+2023,7,25,19,30,25.400000000000002,1.55,0.052000000000000005,0.62,9,93,10,4,7,5.300000000000001,6,0,57,6,0.28500000000000003,27.400000000000002,89.44,0.96,0.13,795,2,290,1.1
+2023,7,25,20,0,24.6,1.5,0.06,0.62,0,0,0,0,8,4.9,0,0,0,0,0.28500000000000003,27.98,94.79,0.96,0.13,795,2,292,1.2000000000000002
+2023,7,25,20,30,24.3,1.5,0.06,0.62,0,0,0,0,7,4.9,0,0,0,0,0.28400000000000003,28.53,99.55,0.96,0.13,796,2,297,1.3
+2023,7,25,21,0,24.1,1.5,0.062,0.62,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.28300000000000003,29.32,103.99000000000001,0.96,0.13,796,2,301,1.3
+2023,7,25,21,30,23.6,1.5,0.062,0.62,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.28300000000000003,30.21,108.04,0.9500000000000001,0.13,796,2.1,308,1.3
+2023,7,25,22,0,23.1,1.5,0.059000000000000004,0.62,0,0,0,0,7,5.4,0,0,0,0,0.28200000000000003,31.87,111.63,0.9500000000000001,0.13,796,2.1,314,1.2000000000000002
+2023,7,25,22,30,22.6,1.5,0.059000000000000004,0.62,0,0,0,0,7,5.4,0,0,0,0,0.28200000000000003,32.84,114.68,0.9500000000000001,0.13,796,2.1,314,1.1
+2023,7,25,23,0,22,1.48,0.064,0.62,0,0,0,0,7,5.7,0,0,0,0,0.28200000000000003,34.72,117.11,0.9500000000000001,0.13,796,2.2,314,0.9
+2023,7,25,23,30,21.700000000000003,1.48,0.064,0.62,0,0,0,0,8,5.7,0,0,0,0,0.28200000000000003,35.36,118.83,0.96,0.13,796,2.2,301,0.8
+2023,7,26,0,0,21.400000000000002,1.44,0.077,0.62,0,0,0,0,5,6.2,0,0,0,0,0.28200000000000003,37.160000000000004,119.8,0.96,0.13,796,2.3000000000000003,288,0.7000000000000001
+2023,7,26,0,30,21.200000000000003,1.44,0.077,0.62,0,0,0,0,0,6.2,0,0,0,0,0.28300000000000003,37.660000000000004,119.96000000000001,0.96,0.13,797,2.4000000000000004,261,0.7000000000000001
+2023,7,26,1,0,21,1.43,0.09,0.62,0,0,0,0,7,6.9,0,0,0,0,0.28300000000000003,40,119.31,0.96,0.13,797,2.4000000000000004,235,0.7000000000000001
+2023,7,26,1,30,20.6,1.43,0.09,0.62,0,0,0,0,7,6.9,0,0,0,0,0.28400000000000003,40.99,117.88,0.96,0.13,797,2.4000000000000004,209,0.7000000000000001
+2023,7,26,2,0,20.200000000000003,1.47,0.08700000000000001,0.62,0,0,0,0,0,7.5,0,0,0,0,0.28400000000000003,43.69,115.72,0.96,0.13,797,2.4000000000000004,183,0.8
+2023,7,26,2,30,19.700000000000003,1.47,0.08700000000000001,0.62,0,0,0,0,0,7.5,0,0,0,0,0.28500000000000003,45.06,112.91,0.96,0.13,797,2.4000000000000004,171,0.9
+2023,7,26,3,0,19.200000000000003,1.52,0.077,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28600000000000003,47.59,109.52,0.96,0.13,796,2.3000000000000003,158,0.9
+2023,7,26,3,30,18.900000000000002,1.52,0.077,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28600000000000003,48.480000000000004,105.64,0.96,0.13,796,2.3000000000000003,155,1
+2023,7,26,4,0,18.5,1.54,0.07,0.62,0,0,0,0,0,8,0,0,0,0,0.28600000000000003,50.49,101.35000000000001,0.9500000000000001,0.13,796,2.3000000000000003,151,1
+2023,7,26,4,30,18.8,1.54,0.07,0.62,0,0,0,0,0,8,0,0,0,0,0.28600000000000003,49.61,96.71000000000001,0.9500000000000001,0.13,797,2.3000000000000003,148,1.1
+2023,7,26,5,0,19.1,1.54,0.066,0.62,3,17,2,2,3,8.1,1,0,29,1,0.28600000000000003,48.78,91.79,0.9500000000000001,0.13,797,2.2,144,1.2000000000000002
+2023,7,26,5,30,20.6,1.54,0.066,0.62,23,261,39,2,0,8.1,23,229,21,37,0.28500000000000003,44.47,86.48,0.9500000000000001,0.13,797,2.2,143,1.7000000000000002
+2023,7,26,6,0,22.1,1.53,0.063,0.62,38,484,112,1,3,7.7,57,141,18,78,0.28500000000000003,39.51,81.23,0.9500000000000001,0.13,797,2.2,141,2.3000000000000003
+2023,7,26,6,30,23.400000000000002,1.53,0.063,0.62,49,625,203,0,8,7.7,96,65,4,112,0.28500000000000003,36.53,75.78,0.9500000000000001,0.13,797,2.2,147,2.1
+2023,7,26,7,0,24.700000000000003,1.52,0.062,0.62,58,718,301,0,3,7,124,124,0,166,0.28400000000000003,32.31,70.21000000000001,0.9500000000000001,0.13,797,2.2,152,1.9000000000000001
+2023,7,26,7,30,25.700000000000003,1.52,0.062,0.62,65,782,401,0,5,7,93,2,0,94,0.28400000000000003,30.45,64.56,0.9500000000000001,0.13,797,2.2,178,1.4000000000000001
+2023,7,26,8,0,26.8,1.52,0.061,0.62,70,829,498,0,5,6.800000000000001,187,62,0,219,0.28400000000000003,28.150000000000002,58.88,0.9500000000000001,0.13,797,2.2,205,0.9
+2023,7,26,8,30,27.900000000000002,1.52,0.061,0.62,74,864,592,0,0,6.9,159,653,0,550,0.28400000000000003,26.400000000000002,53.19,0.9500000000000001,0.13,797,2.2,235,1.2000000000000002
+2023,7,26,9,0,28.900000000000002,1.51,0.062,0.62,79,891,680,0,0,6.9,150,734,0,645,0.28300000000000003,24.990000000000002,47.56,0.9500000000000001,0.13,797,2.2,266,1.5
+2023,7,26,9,30,29.8,1.51,0.062,0.62,82,912,759,0,0,6.9,144,777,4,721,0.28300000000000003,23.73,42.04,0.9500000000000001,0.13,797,2.2,267,1.7000000000000002
+2023,7,26,10,0,30.700000000000003,1.52,0.061,0.62,84,928,828,0,0,6.9,167,779,4,791,0.28300000000000003,22.54,36.72,0.9500000000000001,0.13,796,2.2,269,1.9000000000000001
+2023,7,26,10,30,31.400000000000002,1.52,0.061,0.62,83,945,887,0,0,6.9,152,816,4,846,0.28200000000000003,21.67,31.740000000000002,0.9500000000000001,0.13,796,2.2,261,2
+2023,7,26,11,0,32.2,1.82,0.048,0.62,80,961,934,1,8,6.800000000000001,352,383,18,692,0.28200000000000003,20.52,27.32,0.96,0.13,796,2.1,254,2.1
+2023,7,26,11,30,32.800000000000004,1.82,0.048,0.62,82,966,966,0,0,6.800000000000001,104,925,4,950,0.28200000000000003,19.82,23.8,0.96,0.13,795,2.1,244,2.4000000000000004
+2023,7,26,12,0,33.300000000000004,1.79,0.051000000000000004,0.62,83,968,983,0,0,6.4,83,968,0,983,0.28200000000000003,18.85,21.64,0.96,0.13,795,2.1,235,2.7
+2023,7,26,12,30,33.7,1.79,0.051000000000000004,0.62,86,966,986,0,0,6.4,97,944,0,977,0.28200000000000003,18.44,21.27,0.96,0.13,795,2.1,233,3.2
+2023,7,26,13,0,34,1.74,0.061,0.62,88,960,973,0,0,6,220,580,0,755,0.281,17.57,22.79,0.97,0.13,795,2.1,230,3.7
+2023,7,26,13,30,34,1.74,0.061,0.62,90,951,946,0,8,6,303,298,0,571,0.281,17.55,25.85,0.97,0.13,794,2.1,234,4
+2023,7,26,14,0,33.9,1.73,0.07100000000000001,0.62,92,938,904,0,8,5.5,310,342,0,606,0.281,17.11,29.98,0.97,0.13,794,2.1,237,4.3
+2023,7,26,14,30,33.6,1.73,0.07100000000000001,0.62,92,923,850,0,8,5.5,302,317,0,562,0.281,17.400000000000002,34.78,0.97,0.13,794,2.1,245,4.4
+2023,7,26,15,0,33.4,1.72,0.083,0.62,93,902,784,0,8,5.1000000000000005,304,299,0,533,0.281,17.1,39.99,0.97,0.13,793,2.1,253,4.5
+2023,7,26,15,30,32.9,1.72,0.083,0.62,90,880,707,0,6,5.1000000000000005,208,33,0,231,0.281,17.59,45.45,0.97,0.13,793,2.2,261,4.4
+2023,7,26,16,0,32.4,1.71,0.085,0.62,86,853,622,0,6,5.1000000000000005,84,2,0,85,0.28,18.02,51.06,0.97,0.13,793,2.2,269,4.3
+2023,7,26,16,30,31.8,1.71,0.085,0.62,81,819,530,0,6,5.1000000000000005,167,18,0,177,0.28,18.64,56.730000000000004,0.97,0.13,793,2.2,271,4.1000000000000005
+2023,7,26,17,0,31.1,1.69,0.085,0.62,75,774,433,0,6,5.300000000000001,41,0,0,41,0.28,19.73,62.43,0.97,0.14,793,2.3000000000000003,273,3.9000000000000004
+2023,7,26,17,30,30.1,1.69,0.085,0.62,68,711,333,0,7,5.300000000000001,93,68,0,118,0.28,20.89,68.1,0.97,0.14,793,2.3000000000000003,263,3.7
+2023,7,26,18,0,29.1,1.6600000000000001,0.09,0.62,59,624,234,0,7,6,50,405,0,164,0.28,23.25,73.71000000000001,0.97,0.14,793,2.3000000000000003,252,3.4000000000000004
+2023,7,26,18,30,27.3,1.6600000000000001,0.09,0.62,46,506,141,1,7,6,54,169,14,86,0.28,25.84,79.22,0.97,0.14,794,2.4000000000000004,238,3
+2023,7,26,19,0,25.6,1.68,0.081,0.62,30,327,61,7,7,7.800000000000001,35,5,100,35,0.28,32.18,84.57000000000001,0.97,0.14,794,2.4000000000000004,223,2.5
+2023,7,26,19,30,24.6,1.68,0.081,0.62,8,68,9,4,7,7.800000000000001,6,0,57,6,0.28,34.19,89.57000000000001,0.96,0.14,795,2.3000000000000003,214,2.2
+2023,7,26,20,0,23.6,1.72,0.07,0.62,0,0,0,0,3,9.1,0,0,0,0,0.28,39.730000000000004,94.95,0.96,0.14,795,2.3000000000000003,205,1.9000000000000001
+2023,7,26,20,30,22.900000000000002,1.72,0.07,0.62,0,0,0,0,3,9.1,0,0,0,0,0.28,41.43,99.72,0.96,0.14,795,2.2,199,1.5
+2023,7,26,21,0,22.3,1.76,0.058,0.62,0,0,0,0,7,9.700000000000001,0,0,0,0,0.28,44.72,104.17,0.96,0.14,795,2.1,193,1.2000000000000002
+2023,7,26,21,30,21.6,1.76,0.058,0.62,0,0,0,0,3,9.700000000000001,0,0,0,0,0.28,46.660000000000004,108.23,0.9500000000000001,0.14,795,2.1,187,1
+2023,7,26,22,0,20.900000000000002,1.77,0.051000000000000004,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28,50.1,111.83,0.9500000000000001,0.14,795,2.1,181,0.8
+2023,7,26,22,30,20.200000000000003,1.77,0.051000000000000004,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28,52.300000000000004,114.89,0.9500000000000001,0.14,795,2,177,0.8
+2023,7,26,23,0,19.5,1.74,0.048,0.62,0,0,0,0,7,10.4,0,0,0,0,0.28,55.63,117.32000000000001,0.9500000000000001,0.14,795,2,173,0.8
+2023,7,26,23,30,19.1,1.74,0.048,0.62,0,0,0,0,7,10.4,0,0,0,0,0.279,57.03,119.05,0.9500000000000001,0.14,795,2,171,0.9
+2023,7,27,0,0,18.6,1.69,0.046,0.62,0,0,0,0,7,10.5,0,0,0,0,0.279,59.09,120.02,0.9500000000000001,0.14,795,2,169,0.9
+2023,7,27,0,30,18.2,1.69,0.046,0.62,0,0,0,0,8,10.5,0,0,0,0,0.279,60.59,120.18,0.9500000000000001,0.14,795,2,166,1
+2023,7,27,1,0,17.8,1.6300000000000001,0.046,0.62,0,0,0,0,0,10.4,0,0,0,0,0.278,61.92,119.53,0.9500000000000001,0.14,795,2,164,1.1
+2023,7,27,1,30,17.6,1.6300000000000001,0.046,0.62,0,0,0,0,3,10.4,0,0,0,0,0.278,62.7,118.10000000000001,0.9500000000000001,0.14,795,2,164,1.1
+2023,7,27,2,0,17.400000000000002,1.56,0.048,0.62,0,0,0,0,0,10.3,0,0,0,0,0.278,63.22,115.93,0.9500000000000001,0.14,795,2,164,1.2000000000000002
+2023,7,27,2,30,17.2,1.56,0.048,0.62,0,0,0,0,0,10.3,0,0,0,0,0.278,63.940000000000005,113.11,0.9500000000000001,0.14,794,2.1,172,1.1
+2023,7,27,3,0,17,1.52,0.054,0.62,0,0,0,0,7,10.5,0,0,0,0,0.277,65.42,109.71000000000001,0.9500000000000001,0.14,794,2.1,179,1
+2023,7,27,3,30,16.900000000000002,1.52,0.054,0.62,0,0,0,0,7,10.5,0,0,0,0,0.277,65.92,105.83,0.96,0.14,795,2.3000000000000003,228,1.1
+2023,7,27,4,0,16.8,1.47,0.079,0.62,0,0,0,0,3,11.200000000000001,0,0,0,0,0.276,69.47,101.52,0.97,0.14,795,2.5,276,1.3
+2023,7,27,4,30,16.7,1.47,0.079,0.62,0,0,0,0,3,11.200000000000001,0,0,0,0,0.276,70,96.88,0.97,0.14,796,2.6,303,2
+2023,7,27,5,0,16.6,1.42,0.121,0.62,0,0,0,0,0,12.200000000000001,0,0,4,0,0.276,75.10000000000001,91.95,0.97,0.14,797,2.7,329,2.8000000000000003
+2023,7,27,5,30,16.6,1.42,0.121,0.62,24,157,33,2,0,12.200000000000001,23,120,25,30,0.276,75.10000000000001,86.62,0.97,0.14,797,2.7,176,2.8000000000000003
+2023,7,27,6,0,16.6,1.44,0.133,0.62,47,366,102,0,0,11.700000000000001,60,193,0,89,0.276,72.59,81.37,0.97,0.14,797,2.6,22,2.9000000000000004
+2023,7,27,6,30,17.5,1.44,0.133,0.62,63,532,192,0,3,11.700000000000001,111,65,0,127,0.277,68.58,75.92,0.96,0.14,797,2.5,50,2.9000000000000004
+2023,7,27,7,0,18.5,1.47,0.10200000000000001,0.62,69,656,290,0,5,10.3,94,4,0,95,0.277,59.01,70.34,0.96,0.14,797,2.4000000000000004,77,3
+2023,7,27,7,30,20.3,1.47,0.10200000000000001,0.62,76,736,391,0,5,10.3,178,95,0,219,0.277,52.78,64.69,0.96,0.14,797,2.3000000000000003,103,2.9000000000000004
+2023,7,27,8,0,22.200000000000003,1.48,0.08600000000000001,0.62,80,799,491,0,5,9.3,190,98,0,240,0.276,43.76,59.01,0.96,0.14,797,2.3000000000000003,129,2.8000000000000003
+2023,7,27,8,30,24.1,1.48,0.08600000000000001,0.62,84,839,585,0,7,9.3,137,12,0,144,0.276,39.03,53.32,0.96,0.14,797,2.3000000000000003,151,2.9000000000000004
+2023,7,27,9,0,26,1.48,0.079,0.62,87,872,674,0,7,8.8,101,1,0,102,0.275,33.69,47.69,0.96,0.14,797,2.3000000000000003,173,3
+2023,7,27,9,30,27.400000000000002,1.48,0.079,0.62,88,899,754,0,0,8.8,201,434,0,523,0.274,31,42.18,0.9500000000000001,0.14,796,2.2,185,3.1
+2023,7,27,10,0,28.900000000000002,1.52,0.068,0.62,88,922,826,0,0,8.3,88,922,0,826,0.274,27.580000000000002,36.87,0.9500000000000001,0.14,796,2.2,198,3.2
+2023,7,27,10,30,30.1,1.52,0.068,0.62,84,945,886,0,7,8.3,291,434,0,659,0.273,25.71,31.900000000000002,0.9500000000000001,0.14,795,2.1,206,3.5
+2023,7,27,11,0,31.3,1.75,0.042,0.62,78,966,935,0,8,7.9,353,331,0,647,0.273,23.31,27.5,0.9500000000000001,0.14,795,2.1,215,3.8000000000000003
+2023,7,27,11,30,32.1,1.75,0.042,0.62,77,974,967,0,0,7.9,223,660,0,826,0.272,22.25,24,0.9500000000000001,0.14,794,2.1,219,4.2
+2023,7,27,12,0,33,1.78,0.038,0.62,76,979,985,0,0,7.4,76,979,0,985,0.272,20.42,21.86,0.9500000000000001,0.14,794,2,222,4.5
+2023,7,27,12,30,33.5,1.78,0.038,0.62,78,978,988,0,0,7.300000000000001,103,928,0,966,0.271,19.830000000000002,21.5,0.9500000000000001,0.14,793,2.1,224,4.9
+2023,7,27,13,0,34.1,1.72,0.042,0.62,78,975,975,0,0,6.4,109,888,0,926,0.271,18,23,0.9500000000000001,0.14,793,2.1,226,5.300000000000001
+2023,7,27,13,30,34.300000000000004,1.72,0.042,0.62,80,966,948,0,0,6.4,202,638,0,775,0.271,17.81,26.04,0.9500000000000001,0.14,793,2.1,228,5.6000000000000005
+2023,7,27,14,0,34.5,1.58,0.054,0.62,83,953,907,0,8,5.300000000000001,299,259,0,523,0.27,16.28,30.150000000000002,0.96,0.14,792,2.1,229,5.9
+2023,7,27,14,30,34.4,1.58,0.054,0.62,83,941,854,0,8,5.300000000000001,197,618,7,704,0.271,16.37,34.94,0.96,0.14,792,2,230,5.9
+2023,7,27,15,0,34.300000000000004,1.53,0.06,0.62,83,925,790,0,0,4.1000000000000005,101,891,0,782,0.271,15.19,40.14,0.96,0.14,792,2,231,6
+2023,7,27,15,30,34,1.53,0.06,0.62,81,905,714,0,0,4.1000000000000005,81,901,18,712,0.272,15.44,45.59,0.96,0.14,792,2,232,5.9
+2023,7,27,16,0,33.6,1.49,0.063,0.62,76,880,628,0,7,3.3000000000000003,136,691,29,569,0.272,14.89,51.19,0.96,0.14,791,1.9000000000000001,232,5.7
+2023,7,27,16,30,33,1.49,0.063,0.62,73,848,536,0,7,3.3000000000000003,179,478,21,440,0.273,15.39,56.870000000000005,0.96,0.14,791,1.9000000000000001,232,5.5
+2023,7,27,17,0,32.5,1.47,0.065,0.62,68,804,438,0,7,3,128,598,46,404,0.273,15.47,62.56,0.9500000000000001,0.14,791,1.9000000000000001,233,5.2
+2023,7,27,17,30,31.5,1.47,0.065,0.62,61,746,338,0,7,3,150,292,0,258,0.274,16.36,68.24,0.9500000000000001,0.14,791,1.9000000000000001,232,4.5
+2023,7,27,18,0,30.5,1.46,0.065,0.62,54,666,239,0,8,3.5,88,477,18,221,0.274,17.95,73.85000000000001,0.96,0.14,791,1.9000000000000001,231,3.8000000000000003
+2023,7,27,18,30,28.400000000000002,1.46,0.065,0.62,43,547,144,0,0,3.5,43,547,0,144,0.275,20.28,79.37,0.9500000000000001,0.14,792,1.9000000000000001,230,2.8000000000000003
+2023,7,27,19,0,26.400000000000002,1.46,0.062,0.62,29,358,62,0,0,4.4,29,358,0,62,0.275,24.25,84.72,0.9500000000000001,0.14,792,1.9000000000000001,229,1.8
+2023,7,27,19,30,25.5,1.46,0.062,0.62,9,76,9,0,0,4.4,9,76,0,9,0.276,25.580000000000002,89.72,0.9500000000000001,0.14,792,1.9000000000000001,229,1.7000000000000002
+2023,7,27,20,0,24.6,1.47,0.059000000000000004,0.62,0,0,0,0,0,4.4,0,0,0,0,0.276,27.11,95.12,0.9500000000000001,0.14,792,1.8,229,1.5
+2023,7,27,20,30,24,1.47,0.059000000000000004,0.62,0,0,0,0,0,4.4,0,0,0,0,0.276,28.09,99.89,0.9500000000000001,0.14,792,1.8,230,1.4000000000000001
+2023,7,27,21,0,23.5,1.49,0.053,0.62,0,0,0,0,0,4.3,0,0,0,0,0.277,28.64,104.35000000000001,0.9500000000000001,0.14,792,1.7000000000000002,231,1.3
+2023,7,27,21,30,23,1.49,0.053,0.62,0,0,0,0,0,4.3,0,0,0,0,0.277,29.52,108.42,0.9400000000000001,0.14,792,1.7000000000000002,234,1.3
+2023,7,27,22,0,22.5,1.5,0.048,0.62,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.277,29.75,112.03,0.9400000000000001,0.14,793,1.6,236,1.2000000000000002
+2023,7,27,22,30,22.200000000000003,1.5,0.048,0.62,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.277,30.3,115.10000000000001,0.9400000000000001,0.14,793,1.5,237,1.2000000000000002
+2023,7,27,23,0,21.8,1.51,0.043000000000000003,0.62,0,0,0,0,6,3.5,0,0,0,0,0.278,30.07,117.54,0.93,0.14,793,1.5,239,1.1
+2023,7,27,23,30,21.5,1.51,0.043000000000000003,0.62,0,0,0,0,0,3.5,0,0,0,0,0.278,30.63,119.28,0.93,0.14,793,1.4000000000000001,236,1.1
+2023,7,28,0,0,21.200000000000003,1.51,0.04,0.62,0,0,0,0,0,3.1,0,0,0,0,0.278,30.29,120.25,0.93,0.14,793,1.4000000000000001,233,1.1
+2023,7,28,0,30,20.900000000000002,1.51,0.04,0.62,0,0,0,0,0,3.1,0,0,0,0,0.278,30.85,120.41,0.93,0.14,793,1.4000000000000001,228,1
+2023,7,28,1,0,20.6,1.49,0.039,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.278,30.86,119.76,0.93,0.14,793,1.3,222,0.9
+2023,7,28,1,30,20.3,1.49,0.039,0.62,0,0,0,0,3,2.8000000000000003,0,0,0,0,0.278,31.44,118.32000000000001,0.93,0.14,793,1.3,223,0.9
+2023,7,28,2,0,20,1.47,0.041,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,31.79,116.14,0.93,0.14,793,1.3,223,0.9
+2023,7,28,2,30,19.6,1.47,0.041,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,32.59,113.31,0.93,0.14,793,1.3,233,0.8
+2023,7,28,3,0,19.3,1.45,0.044,0.62,0,0,0,0,0,2.7,0,0,0,0,0.278,33.21,109.91,0.93,0.14,793,1.3,242,0.7000000000000001
+2023,7,28,3,30,19,1.45,0.044,0.62,0,0,0,0,0,2.7,0,0,0,0,0.279,33.83,106.01,0.93,0.14,793,1.3,258,0.7000000000000001
+2023,7,28,4,0,18.7,1.43,0.049,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.279,34.65,101.7,0.9400000000000001,0.14,794,1.4000000000000001,273,0.6000000000000001
+2023,7,28,4,30,18.7,1.43,0.049,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.279,34.65,97.04,0.9400000000000001,0.14,794,1.4000000000000001,291,0.6000000000000001
+2023,7,28,5,0,18.7,1.43,0.051000000000000004,0.62,0,0,0,2,3,3.2,0,0,21,0,0.279,35.78,92.11,0.9400000000000001,0.14,794,1.4000000000000001,310,0.5
+2023,7,28,5,30,20.3,1.43,0.051000000000000004,0.62,21,267,36,6,3,3.2,21,7,93,21,0.28,32.410000000000004,86.77,0.9400000000000001,0.14,794,1.4000000000000001,330,0.6000000000000001
+2023,7,28,6,0,21.8,1.43,0.051000000000000004,0.62,36,521,113,2,3,3.9000000000000004,60,51,29,68,0.28,30.89,81.51,0.93,0.14,795,1.4000000000000001,351,0.8
+2023,7,28,6,30,23.900000000000002,1.43,0.051000000000000004,0.62,46,663,206,0,3,3.9000000000000004,109,196,0,156,0.28,27.21,76.06,0.93,0.14,795,1.4000000000000001,345,0.7000000000000001
+2023,7,28,7,0,26,1.43,0.05,0.62,55,755,307,0,0,2.3000000000000003,78,659,0,298,0.281,21.42,70.48,0.93,0.14,795,1.4000000000000001,338,0.6000000000000001
+2023,7,28,7,30,27.900000000000002,1.43,0.05,0.62,61,819,409,0,0,2.3000000000000003,61,819,14,409,0.28,19.17,64.83,0.93,0.14,795,1.4000000000000001,295,0.8
+2023,7,28,8,0,29.700000000000003,1.44,0.048,0.62,65,866,509,0,3,-0.6000000000000001,210,436,7,434,0.28,14.030000000000001,59.14,0.93,0.14,795,1.4000000000000001,252,0.9
+2023,7,28,8,30,30.700000000000003,1.44,0.048,0.62,69,900,605,0,0,-0.6000000000000001,125,766,0,581,0.28,13.27,53.46,0.93,0.14,796,1.4000000000000001,241,1.1
+2023,7,28,9,0,31.700000000000003,1.45,0.047,0.62,72,927,694,0,0,-1.5,72,927,0,694,0.28,11.700000000000001,47.83,0.93,0.14,796,1.4000000000000001,230,1.3
+2023,7,28,9,30,32.4,1.45,0.047,0.62,75,947,775,0,0,-1.6,143,828,0,755,0.279,11.23,42.32,0.93,0.14,795,1.4000000000000001,224,1.5
+2023,7,28,10,0,33.1,1.46,0.047,0.62,77,962,845,0,0,-1.8,77,962,0,845,0.279,10.57,37.02,0.93,0.14,795,1.4000000000000001,218,1.8
+2023,7,28,10,30,33.7,1.46,0.047,0.62,77,977,905,0,0,-1.8,77,977,0,905,0.279,10.22,32.07,0.93,0.14,795,1.4000000000000001,217,2.1
+2023,7,28,11,0,34.300000000000004,1.49,0.038,0.62,75,990,952,0,0,-1.8,75,990,0,952,0.279,9.88,27.69,0.93,0.14,795,1.3,216,2.4000000000000004
+2023,7,28,11,30,34.7,1.49,0.038,0.62,76,995,983,0,0,-1.8,76,995,0,983,0.278,9.66,24.21,0.93,0.14,795,1.4000000000000001,217,2.7
+2023,7,28,12,0,35,1.5,0.038,0.62,77,997,1001,0,0,-1.7000000000000002,77,997,0,1001,0.278,9.58,22.080000000000002,0.93,0.14,795,1.4000000000000001,218,3
+2023,7,28,12,30,35.2,1.5,0.038,0.62,78,997,1004,0,0,-1.8,78,997,0,1004,0.278,9.46,21.73,0.93,0.14,794,1.4000000000000001,221,3.2
+2023,7,28,13,0,35.4,1.5,0.038,0.62,77,996,992,0,0,-1.7000000000000002,77,996,0,992,0.277,9.42,23.22,0.93,0.14,794,1.4000000000000001,223,3.4000000000000004
+2023,7,28,13,30,35.4,1.5,0.038,0.62,77,990,965,0,0,-1.7000000000000002,149,866,0,926,0.277,9.42,26.25,0.93,0.14,794,1.4000000000000001,226,3.4000000000000004
+2023,7,28,14,0,35.300000000000004,1.51,0.041,0.62,76,982,924,0,0,-1.6,133,866,0,880,0.277,9.51,30.330000000000002,0.93,0.14,794,1.4000000000000001,229,3.4000000000000004
+2023,7,28,14,30,35,1.51,0.041,0.62,75,972,870,0,0,-1.6,75,972,0,870,0.277,9.67,35.1,0.93,0.14,794,1.4000000000000001,232,3.3000000000000003
+2023,7,28,15,0,34.800000000000004,1.52,0.04,0.62,73,959,804,0,0,-1.6,122,854,0,773,0.277,9.77,40.300000000000004,0.93,0.14,793,1.4000000000000001,235,3.1
+2023,7,28,15,30,34.300000000000004,1.52,0.04,0.62,70,941,727,0,0,-1.6,70,941,0,727,0.277,10.05,45.74,0.9400000000000001,0.14,793,1.4000000000000001,237,2.9000000000000004
+2023,7,28,16,0,33.800000000000004,1.53,0.04,0.62,67,919,641,0,0,-1.6,67,919,0,641,0.277,10.31,51.34,0.9400000000000001,0.14,793,1.4000000000000001,240,2.6
+2023,7,28,16,30,33.1,1.53,0.04,0.62,64,887,547,0,0,-1.7000000000000002,64,887,0,547,0.278,10.72,57.01,0.9400000000000001,0.14,793,1.4000000000000001,240,2.3000000000000003
+2023,7,28,17,0,32.4,1.52,0.042,0.62,60,845,447,0,0,-1.6,60,845,0,447,0.278,11.17,62.71,0.9400000000000001,0.14,793,1.4000000000000001,241,2
+2023,7,28,17,30,31.3,1.52,0.042,0.62,54,789,345,0,0,-1.6,54,789,0,345,0.278,11.88,68.38,0.9400000000000001,0.14,793,1.4000000000000001,239,1.4000000000000001
+2023,7,28,18,0,30.200000000000003,1.51,0.045,0.62,48,708,243,0,8,2.5,73,511,29,214,0.278,17,74,0.9400000000000001,0.14,794,1.5,238,0.7000000000000001
+2023,7,28,18,30,29.1,1.51,0.045,0.62,39,588,146,2,8,2.5,62,401,75,135,0.278,18.11,79.52,0.9400000000000001,0.14,794,1.5,175,0.5
+2023,7,28,19,0,27.900000000000002,1.51,0.047,0.62,27,392,62,7,7,2.9000000000000004,45,44,100,49,0.278,20.080000000000002,84.88,0.9500000000000001,0.14,794,1.5,113,0.2
+2023,7,28,19,30,27,1.51,0.047,0.62,7,66,7,4,7,2.9000000000000004,5,1,57,5,0.278,21.17,89.86,0.9400000000000001,0.14,794,1.5,103,0.4
+2023,7,28,20,0,26.1,1.53,0.046,0.62,0,0,0,0,0,1.8,0,0,0,0,0.278,20.56,95.29,0.9400000000000001,0.14,794,1.5,93,0.7000000000000001
+2023,7,28,20,30,25.400000000000002,1.53,0.046,0.62,0,0,0,0,3,1.8,0,0,0,0,0.277,21.43,100.07000000000001,0.9400000000000001,0.14,794,1.6,100,0.7000000000000001
+2023,7,28,21,0,24.700000000000003,1.51,0.048,0.62,0,0,0,0,5,1.9000000000000001,0,0,0,0,0.277,22.54,104.54,0.9500000000000001,0.14,794,1.6,107,0.8
+2023,7,28,21,30,24.1,1.51,0.048,0.62,0,0,0,0,5,1.9000000000000001,0,0,0,0,0.276,23.36,108.62,0.9500000000000001,0.14,794,1.6,109,0.8
+2023,7,28,22,0,23.400000000000002,1.5,0.049,0.62,0,0,0,0,5,2.7,0,0,0,0,0.276,25.75,112.24000000000001,0.9500000000000001,0.14,794,1.6,112,0.7000000000000001
+2023,7,28,22,30,22.8,1.5,0.049,0.62,0,0,0,0,5,2.7,0,0,0,0,0.276,26.7,115.32000000000001,0.9500000000000001,0.14,794,1.6,110,0.6000000000000001
+2023,7,28,23,0,22.1,1.5,0.05,0.62,0,0,0,0,0,3.5,0,0,0,0,0.275,29.57,117.76,0.9500000000000001,0.14,794,1.6,109,0.5
+2023,7,28,23,30,21.6,1.5,0.05,0.62,0,0,0,0,0,3.5,0,0,0,0,0.275,30.48,119.51,0.9500000000000001,0.14,794,1.6,91,0.4
+2023,7,29,0,0,21.1,1.5,0.051000000000000004,0.62,0,0,0,0,0,4.2,0,0,0,0,0.275,32.96,120.48,0.9500000000000001,0.14,794,1.7000000000000002,74,0.30000000000000004
+2023,7,29,0,30,20.700000000000003,1.5,0.051000000000000004,0.62,0,0,0,0,0,4.2,0,0,0,0,0.275,33.78,120.64,0.9500000000000001,0.14,794,1.7000000000000002,44,0.4
+2023,7,29,1,0,20.400000000000002,1.5,0.05,0.62,0,0,0,0,0,4.5,0,0,0,0,0.274,35.300000000000004,119.99000000000001,0.9500000000000001,0.14,794,1.7000000000000002,13,0.4
+2023,7,29,1,30,20.1,1.5,0.05,0.62,0,0,0,0,0,4.5,0,0,0,0,0.274,35.96,118.54,0.9500000000000001,0.14,794,1.7000000000000002,180,0.6000000000000001
+2023,7,29,2,0,19.700000000000003,1.51,0.05,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.275,37.43,116.36,0.9500000000000001,0.14,794,1.7000000000000002,346,0.7000000000000001
+2023,7,29,2,30,19.3,1.51,0.05,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.275,38.37,113.52,0.9400000000000001,0.14,794,1.7000000000000002,340,0.7000000000000001
+2023,7,29,3,0,18.900000000000002,1.52,0.051000000000000004,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,39.71,110.10000000000001,0.9400000000000001,0.14,794,1.7000000000000002,334,0.8
+2023,7,29,3,30,18.6,1.52,0.051000000000000004,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,40.51,106.2,0.9500000000000001,0.14,795,1.7000000000000002,331,0.8
+2023,7,29,4,0,18.2,1.51,0.056,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,41.5,101.87,0.9500000000000001,0.14,795,1.7000000000000002,329,0.7000000000000001
+2023,7,29,4,30,18.3,1.51,0.056,0.62,0,0,0,0,0,4.9,0,0,0,0,0.275,41.25,97.21000000000001,0.9500000000000001,0.14,795,1.7000000000000002,328,0.6000000000000001
+2023,7,29,5,0,18.400000000000002,1.49,0.063,0.62,0,0,0,0,0,5,0,0,7,0,0.276,41.15,92.27,0.9500000000000001,0.14,796,1.7000000000000002,328,0.5
+2023,7,29,5,30,19.700000000000003,1.49,0.063,0.62,22,232,34,6,8,5,22,3,93,22,0.276,37.96,86.92,0.9500000000000001,0.14,796,1.7000000000000002,325,0.6000000000000001
+2023,7,29,6,0,20.900000000000002,1.48,0.068,0.62,39,476,108,2,0,4.6000000000000005,58,226,29,91,0.276,34.46,81.66,0.9500000000000001,0.14,797,1.7000000000000002,322,0.7000000000000001
+2023,7,29,6,30,22.700000000000003,1.48,0.068,0.62,51,621,199,0,3,4.6000000000000005,90,370,0,178,0.277,30.89,76.2,0.9500000000000001,0.14,797,1.7000000000000002,283,1.1
+2023,7,29,7,0,24.5,1.49,0.069,0.62,60,715,297,0,0,3.4000000000000004,60,715,0,297,0.277,25.44,70.62,0.9500000000000001,0.14,797,1.7000000000000002,243,1.5
+2023,7,29,7,30,26.400000000000002,1.49,0.069,0.62,67,782,398,0,0,3.4000000000000004,67,782,0,398,0.277,22.73,64.96000000000001,0.9500000000000001,0.14,797,1.8,245,2.3000000000000003
+2023,7,29,8,0,28.400000000000002,1.51,0.066,0.62,72,832,497,0,0,2.2,72,832,0,497,0.277,18.47,59.28,0.9400000000000001,0.14,798,1.8,247,3.2
+2023,7,29,8,30,29.400000000000002,1.51,0.066,0.62,77,866,591,0,0,2.2,77,866,0,591,0.277,17.43,53.6,0.9400000000000001,0.14,798,1.8,250,3.6
+2023,7,29,9,0,30.5,1.5,0.068,0.62,81,892,678,0,0,2.4000000000000004,122,792,0,652,0.277,16.6,47.97,0.9500000000000001,0.14,798,1.9000000000000001,252,4.1000000000000005
+2023,7,29,9,30,30.900000000000002,1.5,0.068,0.62,86,908,756,0,0,2.4000000000000004,231,596,7,671,0.277,16.22,42.47,0.9500000000000001,0.14,798,2,253,4.4
+2023,7,29,10,0,31.3,1.47,0.076,0.62,92,918,823,1,0,3.3000000000000003,225,653,11,745,0.276,16.94,37.18,0.9500000000000001,0.14,798,2.1,253,4.800000000000001
+2023,7,29,10,30,30.900000000000002,1.47,0.076,0.62,91,933,880,0,0,3.3000000000000003,216,674,0,786,0.276,17.330000000000002,32.24,0.96,0.14,798,2.1,252,5
+2023,7,29,11,0,30.5,1.53,0.063,0.62,89,946,925,1,8,4.6000000000000005,314,487,11,744,0.276,19.47,27.88,0.97,0.14,798,2.2,252,5.1000000000000005
+2023,7,29,11,30,29.5,1.53,0.063,0.62,90,950,955,0,0,4.6000000000000005,200,767,4,898,0.275,20.62,24.42,0.97,0.14,798,2.3000000000000003,247,4.5
+2023,7,29,12,0,28.400000000000002,1.51,0.064,0.62,91,950,970,0,8,6,361,322,4,659,0.275,24.21,22.31,0.97,0.14,799,2.4000000000000004,243,4
+2023,7,29,12,30,28.200000000000003,1.51,0.064,0.62,90,953,974,0,8,6,363,358,0,695,0.276,24.46,21.96,0.96,0.14,798,2.4000000000000004,227,3.2
+2023,7,29,13,0,27.900000000000002,1.54,0.058,0.62,88,955,964,0,0,6.6000000000000005,222,700,0,864,0.276,25.990000000000002,23.45,0.96,0.14,798,2.3000000000000003,211,2.3000000000000003
+2023,7,29,13,30,28.6,1.54,0.058,0.62,82,959,941,0,0,6.6000000000000005,98,932,0,932,0.277,24.96,26.45,0.96,0.14,798,2.2,195,2.3000000000000003
+2023,7,29,14,0,29.3,1.61,0.041,0.62,75,962,904,0,0,6.6000000000000005,75,962,0,904,0.278,23.900000000000002,30.52,0.9500000000000001,0.14,797,2.1,178,2.2
+2023,7,29,14,30,29.900000000000002,1.61,0.041,0.62,74,955,854,0,0,6.6000000000000005,74,955,0,854,0.279,23.1,35.28,0.9500000000000001,0.14,797,2,183,2.2
+2023,7,29,15,0,30.6,1.61,0.038,0.62,71,945,790,0,0,6.2,71,945,0,790,0.279,21.580000000000002,40.46,0.9400000000000001,0.14,797,1.9000000000000001,187,2.1
+2023,7,29,15,30,30.700000000000003,1.61,0.038,0.62,68,929,715,0,0,6.2,101,860,7,699,0.28,21.44,45.9,0.9400000000000001,0.14,796,1.9000000000000001,194,1.9000000000000001
+2023,7,29,16,0,30.900000000000002,1.58,0.039,0.62,66,905,629,0,0,5.5,178,600,0,552,0.28,20.28,51.49,0.9400000000000001,0.14,796,1.9000000000000001,201,1.7000000000000002
+2023,7,29,16,30,30.6,1.58,0.039,0.62,63,873,536,0,8,5.5,193,421,11,421,0.281,20.63,57.160000000000004,0.9500000000000001,0.14,796,1.9000000000000001,207,1.4000000000000001
+2023,7,29,17,0,30.400000000000002,1.57,0.042,0.62,59,831,438,0,3,4.800000000000001,130,591,7,400,0.281,19.84,62.85,0.9500000000000001,0.14,795,1.9000000000000001,212,1.2000000000000002
+2023,7,29,17,30,29.6,1.57,0.042,0.62,54,775,338,0,0,4.800000000000001,68,721,14,332,0.281,20.77,68.53,0.9500000000000001,0.14,795,1.9000000000000001,221,0.8
+2023,7,29,18,0,28.900000000000002,1.59,0.045,0.62,47,694,237,0,0,5.800000000000001,73,516,18,214,0.28200000000000003,23.2,74.15,0.9500000000000001,0.14,795,1.9000000000000001,230,0.4
+2023,7,29,18,30,27.6,1.59,0.045,0.62,39,573,142,2,3,5.800000000000001,72,234,25,114,0.28200000000000003,25.01,79.67,0.9500000000000001,0.14,795,1.9000000000000001,131,0.5
+2023,7,29,19,0,26.200000000000003,1.61,0.048,0.62,27,375,59,7,3,5.9,39,10,100,40,0.28300000000000003,27.41,85.04,0.9500000000000001,0.14,795,1.9000000000000001,31,0.6000000000000001
+2023,7,29,19,30,25.200000000000003,1.61,0.048,0.62,6,61,6,3,3,5.9,3,7,39,3,0.28300000000000003,29.07,90.01,0.9500000000000001,0.14,795,2,41,0.8
+2023,7,29,20,0,24.1,1.62,0.053,0.62,0,0,0,0,7,5.2,0,0,0,0,0.28300000000000003,29.48,95.47,0.96,0.14,795,2,51,1
+2023,7,29,20,30,23.5,1.62,0.053,0.62,0,0,0,0,7,5.2,0,0,0,0,0.28300000000000003,30.6,100.26,0.96,0.14,796,2.1,62,0.9
+2023,7,29,21,0,22.900000000000002,1.6,0.06,0.62,0,0,0,0,8,5.1000000000000005,0,0,0,0,0.28300000000000003,31.59,104.73,0.96,0.14,796,2.1,74,0.9
+2023,7,29,21,30,22.5,1.6,0.06,0.62,0,0,0,0,3,5.1000000000000005,0,0,0,0,0.28200000000000003,32.36,108.82000000000001,0.96,0.14,796,2.2,90,0.8
+2023,7,29,22,0,22,1.58,0.069,0.62,0,0,0,0,4,5.300000000000001,0,0,0,0,0.28200000000000003,33.82,112.45,0.96,0.14,796,2.2,106,0.8
+2023,7,29,22,30,21.8,1.58,0.069,0.62,0,0,0,0,4,5.300000000000001,0,0,0,0,0.28200000000000003,34.230000000000004,115.54,0.97,0.14,796,2.2,117,0.8
+2023,7,29,23,0,21.5,1.58,0.07100000000000001,0.62,0,0,0,0,4,5.800000000000001,0,0,0,0,0.281,36.050000000000004,117.99000000000001,0.97,0.14,796,2.3000000000000003,129,0.9
+2023,7,29,23,30,21.1,1.58,0.07100000000000001,0.62,0,0,0,0,4,5.800000000000001,0,0,0,0,0.281,36.94,119.74000000000001,0.96,0.14,796,2.3000000000000003,136,0.9
+2023,7,30,0,0,20.700000000000003,1.6300000000000001,0.065,0.62,0,0,0,0,4,6.4,0,0,0,0,0.281,39.36,120.72,0.96,0.14,796,2.3000000000000003,143,0.9
+2023,7,30,0,30,20.200000000000003,1.6300000000000001,0.065,0.62,0,0,0,0,0,6.4,0,0,0,0,0.281,40.59,120.88,0.96,0.14,796,2.3000000000000003,150,0.9
+2023,7,30,1,0,19.6,1.67,0.06,0.62,0,0,0,0,0,6.9,0,0,0,0,0.281,43.56,120.22,0.96,0.14,795,2.3000000000000003,156,0.9
+2023,7,30,1,30,19.400000000000002,1.67,0.06,0.62,0,0,0,0,0,6.9,0,0,0,0,0.281,44.11,118.77,0.96,0.14,795,2.3000000000000003,165,1
+2023,7,30,2,0,19.200000000000003,1.68,0.06,0.62,0,0,0,0,3,7.300000000000001,0,0,0,0,0.281,46.07,116.58,0.96,0.14,795,2.3000000000000003,174,1
+2023,7,30,2,30,19,1.68,0.06,0.62,0,0,0,0,3,7.300000000000001,0,0,0,0,0.281,46.65,113.73,0.9500000000000001,0.14,795,2.3000000000000003,182,1
+2023,7,30,3,0,18.8,1.69,0.061,0.62,0,0,0,0,3,7.6000000000000005,0,0,0,0,0.281,48.27,110.3,0.9500000000000001,0.14,796,2.3000000000000003,191,1.1
+2023,7,30,3,30,18.6,1.69,0.061,0.62,0,0,0,0,3,7.6000000000000005,0,0,0,0,0.281,48.88,106.39,0.9500000000000001,0.14,796,2.3000000000000003,193,1.1
+2023,7,30,4,0,18.3,1.69,0.064,0.62,0,0,0,0,5,7.800000000000001,0,0,0,0,0.28200000000000003,50.4,102.05,0.9500000000000001,0.14,796,2.3000000000000003,196,1.2000000000000002
+2023,7,30,4,30,18.400000000000002,1.69,0.064,0.62,0,0,0,0,5,7.800000000000001,0,0,0,0,0.281,50.09,97.38,0.9500000000000001,0.14,796,2.3000000000000003,191,1.2000000000000002
+2023,7,30,5,0,18.5,1.68,0.068,0.62,0,0,0,1,3,8.1,0,0,14,0,0.281,50.69,92.43,0.9500000000000001,0.14,796,2.3000000000000003,186,1.2000000000000002
+2023,7,30,5,30,20,1.68,0.068,0.62,20,216,31,7,3,8.1,18,13,96,19,0.28200000000000003,46.19,87.06,0.9500000000000001,0.14,796,2.3000000000000003,184,1.9000000000000001
+2023,7,30,6,0,21.5,1.69,0.07100000000000001,0.62,38,456,103,3,4,8.5,32,14,46,34,0.28200000000000003,43.38,81.81,0.9500000000000001,0.14,796,2.3000000000000003,182,2.6
+2023,7,30,6,30,23.1,1.69,0.07100000000000001,0.62,50,595,191,0,5,8.6,27,1,0,27,0.28200000000000003,39.42,76.34,0.9500000000000001,0.14,797,2.4000000000000004,192,3.7
+2023,7,30,7,0,24.700000000000003,1.67,0.08,0.62,62,684,287,1,8,9.1,59,7,11,61,0.28200000000000003,37.22,70.76,0.9500000000000001,0.14,797,2.4000000000000004,203,4.7
+2023,7,30,7,30,25.8,1.67,0.08,0.62,70,748,385,0,8,9.1,92,17,0,99,0.28200000000000003,34.87,65.1,0.9500000000000001,0.14,797,2.5,207,5.1000000000000005
+2023,7,30,8,0,26.900000000000002,1.6600000000000001,0.085,0.62,77,793,481,0,5,9.8,173,308,0,330,0.281,34.22,59.410000000000004,0.9500000000000001,0.14,797,2.5,210,5.4
+2023,7,30,8,30,27.8,1.6600000000000001,0.085,0.62,84,828,574,0,3,9.8,286,284,0,454,0.281,32.47,53.730000000000004,0.96,0.14,797,2.6,211,5.300000000000001
+2023,7,30,9,0,28.700000000000003,1.6500000000000001,0.09,0.62,90,854,660,0,5,10.200000000000001,319,59,0,358,0.281,31.62,48.11,0.96,0.14,797,2.6,212,5.1000000000000005
+2023,7,30,9,30,29.5,1.6500000000000001,0.09,0.62,95,872,737,0,5,10.200000000000001,350,92,7,418,0.28,30.19,42.62,0.96,0.14,797,2.7,212,4.9
+2023,7,30,10,0,30.200000000000003,1.62,0.1,0.62,101,884,804,0,7,10.3,260,513,4,668,0.28,29.1,37.34,0.96,0.14,797,2.7,212,4.7
+2023,7,30,10,30,30.5,1.62,0.1,0.62,101,903,863,0,0,10.3,101,903,0,863,0.28,28.6,32.42,0.97,0.14,797,2.8000000000000003,212,4.7
+2023,7,30,11,0,30.700000000000003,1.48,0.079,0.62,96,921,909,0,0,10.3,157,758,4,826,0.279,28.310000000000002,28.07,0.98,0.14,796,2.8000000000000003,213,4.7
+2023,7,30,11,30,30.3,1.48,0.079,0.62,101,921,938,0,0,10.3,162,778,0,869,0.279,28.96,24.64,0.98,0.14,796,2.9000000000000004,213,4.7
+2023,7,30,12,0,30,1.47,0.096,0.62,107,916,953,0,0,10.5,217,737,0,898,0.278,29.93,22.55,0.97,0.14,796,2.9000000000000004,213,4.7
+2023,7,30,12,30,29.900000000000002,1.47,0.096,0.62,108,915,955,0,0,10.5,286,599,0,841,0.279,30.1,22.2,0.97,0.14,796,2.9000000000000004,211,4.7
+2023,7,30,13,0,29.8,1.52,0.1,0.62,108,911,942,0,0,10.700000000000001,173,804,0,909,0.279,30.77,23.68,0.97,0.14,796,2.9000000000000004,210,4.7
+2023,7,30,13,30,30,1.52,0.1,0.62,101,915,919,0,0,10.8,111,898,0,914,0.279,30.42,26.66,0.97,0.14,796,2.9000000000000004,209,4.6000000000000005
+2023,7,30,14,0,30.200000000000003,1.54,0.07200000000000001,0.62,92,920,883,0,0,10.700000000000001,92,920,0,883,0.28,30.07,30.72,0.96,0.14,795,2.9000000000000004,208,4.6000000000000005
+2023,7,30,14,30,30.200000000000003,1.54,0.07200000000000001,0.62,91,909,831,0,8,10.700000000000001,249,528,0,679,0.28,30.07,35.46,0.96,0.14,795,2.8000000000000003,207,4.6000000000000005
+2023,7,30,15,0,30.200000000000003,1.56,0.074,0.62,88,894,767,0,7,10.600000000000001,305,162,0,428,0.281,29.87,40.62,0.96,0.14,795,2.7,207,4.6000000000000005
+2023,7,30,15,30,30.1,1.56,0.074,0.62,86,872,691,0,7,10.600000000000001,277,97,0,344,0.281,30,46.06,0.96,0.14,794,2.7,209,4.7
+2023,7,30,16,0,29.900000000000002,1.56,0.084,0.62,84,841,606,0,8,10.5,216,178,7,326,0.281,30.11,51.64,0.9500000000000001,0.14,794,2.7,211,4.7
+2023,7,30,16,30,29.400000000000002,1.56,0.084,0.62,84,794,513,0,8,10.5,164,263,7,306,0.281,30.990000000000002,57.31,0.9500000000000001,0.14,794,2.7,220,4.6000000000000005
+2023,7,30,17,0,29,1.54,0.112,0.62,83,729,414,0,8,10.600000000000001,63,139,0,126,0.281,31.85,63.01,0.96,0.14,794,2.7,229,4.5
+2023,7,30,17,30,28,1.54,0.112,0.62,82,634,312,0,8,10.600000000000001,111,154,7,167,0.281,33.74,68.69,0.96,0.14,794,2.8000000000000003,251,3.8000000000000003
+2023,7,30,18,0,27,1.51,0.171,0.62,76,501,211,0,5,11.5,102,52,0,116,0.281,38.050000000000004,74.31,0.96,0.14,794,2.9000000000000004,272,3
+2023,7,30,18,30,25.6,1.51,0.171,0.62,59,344,120,2,5,11.5,77,31,29,82,0.281,41.37,79.84,0.96,0.14,795,3,307,3
+2023,7,30,19,0,24.1,1.52,0.231,0.62,33,145,45,7,5,12.8,22,0,100,22,0.281,49.38,85.2,0.96,0.14,795,3,342,3
+2023,7,30,19,30,23.1,1.52,0.231,0.62,4,13,4,3,8,12.9,2,0,43,2,0.281,52.5,90.16,0.96,0.14,796,3,185,3.1
+2023,7,30,20,0,22.1,1.55,0.231,0.62,0,0,0,0,8,13.8,0,0,0,0,0.281,59.42,95.65,0.96,0.14,796,2.9000000000000004,27,3.1
+2023,7,30,20,30,21.6,1.55,0.231,0.62,0,0,0,0,8,13.8,0,0,0,0,0.281,61.25,100.45,0.9500000000000001,0.14,796,2.9000000000000004,43,2.9000000000000004
+2023,7,30,21,0,21.200000000000003,1.58,0.201,0.62,0,0,0,0,8,14.100000000000001,0,0,0,0,0.281,64.03,104.93,0.9500000000000001,0.14,796,2.9000000000000004,59,2.7
+2023,7,30,21,30,20.700000000000003,1.58,0.201,0.62,0,0,0,0,6,14.100000000000001,0,0,0,0,0.281,66.02,109.03,0.9500000000000001,0.14,796,2.9000000000000004,69,2.3000000000000003
+2023,7,30,22,0,20.200000000000003,1.58,0.17400000000000002,0.62,0,0,0,0,6,14.3,0,0,0,0,0.281,69,112.67,0.9500000000000001,0.14,797,2.9000000000000004,79,1.9000000000000001
+2023,7,30,22,30,19.8,1.58,0.17400000000000002,0.62,0,0,0,0,6,14.3,0,0,0,0,0.281,70.72,115.76,0.9500000000000001,0.14,797,2.9000000000000004,83,1.8
+2023,7,30,23,0,19.5,1.59,0.151,0.62,0,0,0,0,7,14.5,0,0,0,0,0.281,72.9,118.23,0.9500000000000001,0.14,797,2.9000000000000004,88,1.7000000000000002
+2023,7,30,23,30,19.1,1.59,0.151,0.62,0,0,0,0,7,14.5,0,0,0,0,0.281,74.63,119.98,0.9500000000000001,0.14,796,2.8000000000000003,90,1.6
+2023,7,31,0,0,18.7,1.6,0.132,0.62,0,0,0,0,7,14.700000000000001,0,0,0,0,0.281,77.37,120.96000000000001,0.9500000000000001,0.14,796,2.8000000000000003,93,1.5
+2023,7,31,0,30,18.5,1.6,0.132,0.62,0,0,0,0,7,14.700000000000001,0,0,0,0,0.281,78.34,121.12,0.9500000000000001,0.14,796,2.8000000000000003,94,1.3
+2023,7,31,1,0,18.3,1.6,0.124,0.62,0,0,0,0,8,14.8,0,0,0,0,0.281,80.04,120.46000000000001,0.9500000000000001,0.14,796,2.8000000000000003,95,1.1
+2023,7,31,1,30,18.2,1.6,0.124,0.62,0,0,0,0,7,14.8,0,0,0,0,0.28200000000000003,80.54,119,0.9500000000000001,0.14,796,2.8000000000000003,96,1
+2023,7,31,2,0,18,1.59,0.124,0.62,0,0,0,0,7,14.9,0,0,0,0,0.28200000000000003,81.98,116.8,0.9500000000000001,0.14,796,2.8000000000000003,97,0.8
+2023,7,31,2,30,18,1.59,0.124,0.62,0,0,0,0,7,14.9,0,0,0,0,0.28200000000000003,81.98,113.94,0.9500000000000001,0.14,796,2.8000000000000003,97,0.7000000000000001
+2023,7,31,3,0,17.900000000000002,1.59,0.128,0.62,0,0,0,0,7,14.9,0,0,0,0,0.28200000000000003,82.56,110.51,0.9500000000000001,0.14,796,2.8000000000000003,98,0.7000000000000001
+2023,7,31,3,30,17.8,1.59,0.128,0.62,0,0,0,0,8,14.9,0,0,0,0,0.28200000000000003,83.08,106.58,0.9500000000000001,0.14,796,2.8000000000000003,100,0.6000000000000001
+2023,7,31,4,0,17.7,1.59,0.13,0.62,0,0,0,0,8,14.8,0,0,0,0,0.28200000000000003,83.34,102.23,0.9500000000000001,0.14,796,2.8000000000000003,101,0.6000000000000001
+2023,7,31,4,30,17.8,1.59,0.13,0.62,0,0,0,0,7,14.9,0,0,0,0,0.28200000000000003,82.92,97.55,0.9500000000000001,0.14,797,2.8000000000000003,106,0.5
+2023,7,31,5,0,17.900000000000002,1.6,0.127,0.62,0,0,0,1,6,15,0,0,14,0,0.28200000000000003,83.2,92.59,0.9500000000000001,0.14,797,2.8000000000000003,110,0.5
+2023,7,31,5,30,18.8,1.6,0.127,0.62,20,145,27,7,6,15,13,0,100,13,0.28200000000000003,78.65,87.21000000000001,0.9500000000000001,0.14,797,2.8000000000000003,125,0.7000000000000001
+2023,7,31,6,0,19.6,1.62,0.122,0.62,43,366,94,3,6,15,22,1,43,22,0.28200000000000003,75,81.95,0.9500000000000001,0.14,797,2.7,140,0.8
+2023,7,31,6,30,21.1,1.62,0.122,0.62,59,521,181,0,6,15.100000000000001,36,3,0,37,0.28200000000000003,68.39,76.48,0.9500000000000001,0.14,797,2.7,163,1.2000000000000002
+2023,7,31,7,0,22.5,1.6300000000000001,0.116,0.62,71,629,277,0,8,13.3,129,203,0,195,0.28200000000000003,56.120000000000005,70.89,0.9500000000000001,0.14,797,2.7,186,1.6
+2023,7,31,7,30,23.700000000000003,1.6300000000000001,0.116,0.62,80,702,374,0,8,13.3,210,94,0,249,0.28200000000000003,52.21,65.24,0.9500000000000001,0.14,797,2.7,178,1.8
+2023,7,31,8,0,24.900000000000002,1.6300000000000001,0.116,0.62,88,756,471,0,5,11.8,258,137,0,327,0.28200000000000003,44.04,59.550000000000004,0.9500000000000001,0.14,797,2.8000000000000003,171,1.9000000000000001
+2023,7,31,8,30,25.700000000000003,1.6300000000000001,0.116,0.62,95,795,564,0,8,11.8,135,22,0,148,0.28200000000000003,42,53.870000000000005,0.9500000000000001,0.14,797,2.8000000000000003,168,2.2
+2023,7,31,9,0,26.5,1.62,0.12,0.62,101,824,650,0,8,11.4,180,12,7,188,0.281,38.84,48.26,0.96,0.14,797,2.8000000000000003,165,2.4000000000000004
+2023,7,31,9,30,26.8,1.62,0.12,0.62,106,847,728,0,8,11.4,278,65,0,326,0.281,38.160000000000004,42.77,0.96,0.14,797,2.8000000000000003,168,2.5
+2023,7,31,10,0,27.1,1.6,0.12,0.62,110,866,797,0,8,11.200000000000001,252,38,0,282,0.28,36.97,37.5,0.96,0.14,797,2.9000000000000004,172,2.5
+2023,7,31,10,30,27.200000000000003,1.6,0.12,0.62,105,892,857,0,6,11.200000000000001,113,1,0,114,0.28,36.76,32.59,0.97,0.14,797,2.9000000000000004,178,2.5
+2023,7,31,11,0,27.3,1.6,0.082,0.62,97,918,906,0,6,11,61,0,0,61,0.28,36.25,28.27,0.97,0.14,797,2.9000000000000004,185,2.4000000000000004
+2023,7,31,11,30,27.200000000000003,1.6,0.082,0.62,97,927,938,0,7,11,112,1,0,113,0.28,36.46,24.86,0.97,0.14,797,2.8000000000000003,194,2.4000000000000004
+2023,7,31,12,0,27.200000000000003,1.62,0.074,0.62,95,934,956,0,8,11.100000000000001,86,0,0,86,0.28,36.52,22.79,0.97,0.14,796,2.8000000000000003,203,2.5
+2023,7,31,12,30,27.1,1.62,0.074,0.62,93,938,960,0,5,11.100000000000001,249,12,0,260,0.28,36.730000000000004,22.45,0.97,0.14,796,2.8000000000000003,211,2.5
+2023,7,31,13,0,27.1,1.6400000000000001,0.066,0.62,91,939,949,0,5,11.200000000000001,375,281,0,632,0.28,37.1,23.91,0.97,0.14,796,2.8000000000000003,218,2.6
+2023,7,31,13,30,27.1,1.6400000000000001,0.066,0.62,87,940,925,0,0,11.200000000000001,137,861,0,905,0.281,37.1,26.88,0.97,0.14,796,2.8000000000000003,223,2.6
+2023,7,31,14,0,27,1.73,0.052000000000000005,0.62,81,939,887,0,0,11.4,81,939,0,887,0.281,37.79,30.92,0.97,0.14,796,2.7,229,2.7
+2023,7,31,14,30,26.8,1.73,0.052000000000000005,0.62,79,929,834,0,0,11.4,79,929,0,834,0.28200000000000003,38.19,35.64,0.97,0.14,795,2.7,232,2.7
+2023,7,31,15,0,26.5,1.74,0.05,0.62,77,916,770,0,0,11.600000000000001,77,916,0,770,0.28200000000000003,39.58,40.800000000000004,0.97,0.14,795,2.7,235,2.6
+2023,7,31,15,30,26.200000000000003,1.74,0.05,0.62,73,897,694,0,0,11.600000000000001,192,587,0,598,0.28200000000000003,40.28,46.22,0.97,0.14,795,2.7,238,2.6
+2023,7,31,16,0,25.8,1.73,0.049,0.62,70,874,610,0,5,11.9,242,309,0,433,0.28300000000000003,42.03,51.800000000000004,0.97,0.14,795,2.7,241,2.5
+2023,7,31,16,30,25.400000000000002,1.73,0.049,0.62,65,844,519,0,3,11.9,248,237,0,375,0.28300000000000003,43.04,57.47,0.97,0.14,795,2.7,246,2.3000000000000003
+2023,7,31,17,0,24.900000000000002,1.7,0.047,0.61,60,803,423,0,8,12.200000000000001,138,516,11,371,0.28300000000000003,45.230000000000004,63.160000000000004,0.97,0.14,795,2.7,251,2
+2023,7,31,17,30,24.3,1.7,0.047,0.61,55,746,324,0,8,12.200000000000001,127,402,25,272,0.28400000000000003,46.87,68.84,0.97,0.14,795,2.7,262,1.7000000000000002
+2023,7,31,18,0,23.700000000000003,1.71,0.046,0.61,47,667,226,0,8,12.9,99,351,36,193,0.28400000000000003,50.7,74.47,0.97,0.14,795,2.7,272,1.4000000000000001
+2023,7,31,18,30,22.700000000000003,1.71,0.046,0.61,38,542,132,2,8,12.9,74,237,43,115,0.28500000000000003,53.84,80,0.97,0.14,795,2.7,279,1.1
+2023,7,31,19,0,21.6,1.7,0.05,0.61,26,340,53,4,7,13.200000000000001,35,105,64,43,0.28500000000000003,58.76,85.37,0.97,0.14,795,2.8000000000000003,286,0.7000000000000001
+2023,7,31,19,30,21.5,1.7,0.05,0.61,5,51,5,1,8,13.200000000000001,5,51,11,5,0.28500000000000003,59.120000000000005,90.31,0.97,0.14,795,2.8000000000000003,275,0.5
+2023,7,31,20,0,21.3,1.6300000000000001,0.062,0.61,0,0,0,0,8,13.200000000000001,0,0,0,0,0.28500000000000003,60.07,95.84,0.97,0.14,796,2.9000000000000004,264,0.30000000000000004
+2023,7,31,20,30,21.1,1.6300000000000001,0.062,0.61,0,0,0,0,7,13.200000000000001,0,0,0,0,0.28500000000000003,60.81,100.64,0.97,0.14,796,2.9000000000000004,252,0.4
+2023,7,31,21,0,20.900000000000002,1.6,0.067,0.61,0,0,0,0,9,13.700000000000001,0,0,0,0,0.28400000000000003,63.440000000000005,105.14,0.97,0.14,796,2.9000000000000004,241,0.4
+2023,7,31,21,30,20.5,1.6,0.067,0.61,0,0,0,0,9,13.700000000000001,0,0,0,0,0.28300000000000003,64.93,109.25,0.97,0.14,795,2.9000000000000004,252,0.5
+2023,7,31,22,0,20,1.62,0.059000000000000004,0.61,0,0,0,0,9,13.9,0,0,0,0,0.28300000000000003,67.73,112.89,0.97,0.14,795,2.8000000000000003,263,0.6000000000000001
+2023,7,31,22,30,19.5,1.62,0.059000000000000004,0.61,0,0,0,0,9,13.9,0,0,0,0,0.28300000000000003,69.85000000000001,116,0.96,0.14,795,2.7,254,0.6000000000000001
+2023,7,31,23,0,18.900000000000002,1.6300000000000001,0.055,0.61,0,0,0,0,6,13.9,0,0,0,0,0.28300000000000003,72.78,118.47,0.96,0.14,795,2.7,246,0.6000000000000001
+2023,7,31,23,30,18.6,1.6300000000000001,0.055,0.61,0,0,0,0,6,13.9,0,0,0,0,0.28300000000000003,74.15,120.23,0.96,0.14,795,2.7,224,0.8
+2023,8,1,0,0,18.3,1.6,0.061,0.61,0,0,0,0,6,13.9,0,0,0,0,0.28300000000000003,75.56,121.21000000000001,0.96,0.14,795,2.6,202,1
+2023,8,1,0,30,17.900000000000002,1.6,0.061,0.61,0,0,0,0,6,13.9,0,0,0,0,0.28300000000000003,77.47,121.37,0.96,0.14,795,2.7,197,1.3
+2023,8,1,1,0,17.5,1.59,0.068,0.61,0,0,0,0,7,14,0,0,0,0,0.28300000000000003,80.15,120.7,0.97,0.14,796,2.7,192,1.6
+2023,8,1,1,30,17.2,1.59,0.068,0.61,0,0,0,0,7,14,0,0,0,0,0.28400000000000003,81.68,119.24000000000001,0.97,0.14,796,2.7,190,1.7000000000000002
+2023,8,1,2,0,16.8,1.58,0.07200000000000001,0.61,0,0,0,0,7,14.100000000000001,0,0,0,0,0.28400000000000003,83.95,117.03,0.97,0.14,796,2.7,188,1.7000000000000002
+2023,8,1,2,30,16.5,1.58,0.07200000000000001,0.61,0,0,0,0,7,14.100000000000001,0,0,0,0,0.28400000000000003,85.56,114.16,0.97,0.14,796,2.7,182,1.6
+2023,8,1,3,0,16.2,1.58,0.075,0.61,0,0,0,0,7,14.100000000000001,0,0,0,0,0.28400000000000003,87.2,110.71000000000001,0.97,0.14,796,2.6,177,1.4000000000000001
+2023,8,1,3,30,15.9,1.58,0.075,0.61,0,0,0,0,7,14.100000000000001,0,0,0,0,0.28500000000000003,88.88,106.77,0.97,0.14,796,2.6,169,1.4000000000000001
+2023,8,1,4,0,15.600000000000001,1.57,0.076,0.61,0,0,0,0,7,14,0,0,0,0,0.28500000000000003,90.41,102.42,0.97,0.14,796,2.6,162,1.3
+2023,8,1,4,30,15.5,1.57,0.076,0.61,0,0,0,0,8,14,0,0,0,0,0.28500000000000003,90.99,97.72,0.97,0.14,796,2.6,155,1.4000000000000001
+2023,8,1,5,0,15.5,1.56,0.079,0.61,0,0,0,1,8,14,0,0,14,0,0.28500000000000003,91.01,92.75,0.97,0.14,796,2.7,149,1.5
+2023,8,1,5,30,16.2,1.56,0.079,0.61,18,167,26,7,8,14,7,0,100,7,0.28500000000000003,87.04,87.36,0.97,0.14,796,2.7,152,1.8
+2023,8,1,6,0,16.900000000000002,1.53,0.084,0.61,39,411,95,3,4,13.8,9,0,43,9,0.28500000000000003,81.94,82.10000000000001,0.97,0.14,796,2.7,156,2.1
+2023,8,1,6,30,18.3,1.53,0.084,0.61,54,560,183,0,4,13.8,11,0,0,11,0.28500000000000003,75.13,76.63,0.97,0.14,797,2.7,173,2.3000000000000003
+2023,8,1,7,0,19.6,1.5,0.091,0.61,65,655,278,0,5,12.8,45,1,0,45,0.28500000000000003,64.82000000000001,71.04,0.97,0.14,797,2.8000000000000003,190,2.4000000000000004
+2023,8,1,7,30,20.400000000000002,1.5,0.091,0.61,74,723,375,0,5,12.8,95,2,0,96,0.28500000000000003,61.7,65.38,0.98,0.14,797,2.8000000000000003,200,2.6
+2023,8,1,8,0,21.200000000000003,1.48,0.097,0.61,82,772,472,0,5,12.3,169,15,0,177,0.28400000000000003,56.93,59.69,0.98,0.14,797,2.8000000000000003,209,2.8000000000000003
+2023,8,1,8,30,21.5,1.48,0.097,0.61,89,808,564,0,8,12.3,251,64,0,289,0.28400000000000003,55.9,54.01,0.98,0.14,797,2.9000000000000004,215,3.1
+2023,8,1,9,0,21.8,1.46,0.10400000000000001,0.61,96,834,650,0,8,12.4,298,242,0,459,0.28300000000000003,55.15,48.4,0.98,0.14,797,2.9000000000000004,220,3.3000000000000003
+2023,8,1,9,30,22.1,1.46,0.10400000000000001,0.61,101,856,728,0,8,12.4,238,528,0,625,0.28200000000000003,54.15,42.92,0.98,0.14,797,2.9000000000000004,221,3.5
+2023,8,1,10,0,22.3,1.44,0.109,0.61,106,870,795,0,8,12.600000000000001,234,589,0,700,0.28200000000000003,54.04,37.660000000000004,0.98,0.14,797,3,223,3.6
+2023,8,1,10,30,22.3,1.44,0.109,0.61,106,888,853,1,8,12.600000000000001,264,486,18,673,0.281,54.04,32.77,0.98,0.14,797,3,223,3.6
+2023,8,1,11,0,22.3,1.42,0.096,0.61,105,903,899,1,8,12.700000000000001,375,184,11,537,0.28,54.39,28.47,0.99,0.14,797,3,223,3.5
+2023,8,1,11,30,22.3,1.42,0.096,0.61,107,909,930,0,8,12.700000000000001,397,173,0,554,0.28,54.39,25.080000000000002,0.99,0.14,797,3,222,3.3000000000000003
+2023,8,1,12,0,22.3,1.3900000000000001,0.098,0.61,108,911,946,0,8,12.700000000000001,339,408,0,714,0.279,54.46,23.03,0.99,0.14,797,3,221,3.2
+2023,8,1,12,30,22.3,1.3900000000000001,0.098,0.61,108,913,950,0,8,12.700000000000001,353,360,4,685,0.279,54.46,22.7,0.99,0.14,797,3,219,3
+2023,8,1,13,0,22.3,1.3900000000000001,0.093,0.61,105,913,938,0,8,12.600000000000001,360,342,0,672,0.279,54.09,24.16,0.99,0.14,796,3,217,2.8000000000000003
+2023,8,1,13,30,22.400000000000002,1.3900000000000001,0.093,0.61,100,914,914,0,8,12.600000000000001,264,565,0,767,0.279,53.76,27.11,0.99,0.14,796,3,215,2.7
+2023,8,1,14,0,22.6,1.41,0.074,0.61,93,915,876,0,8,12.4,266,457,0,657,0.279,52.480000000000004,31.12,0.99,0.14,796,3,213,2.6
+2023,8,1,14,30,22.8,1.41,0.074,0.61,90,905,824,0,0,12.4,118,788,0,757,0.279,51.85,35.83,0.99,0.14,796,3,215,2.6
+2023,8,1,15,0,22.900000000000002,1.42,0.068,0.61,86,893,760,0,0,12.200000000000001,107,852,0,750,0.279,50.92,40.980000000000004,0.99,0.14,796,3,218,2.5
+2023,8,1,15,30,22.8,1.42,0.068,0.61,81,875,685,0,0,12.200000000000001,94,854,0,683,0.279,51.230000000000004,46.39,0.99,0.14,796,3,222,2.4000000000000004
+2023,8,1,16,0,22.700000000000003,1.43,0.065,0.61,76,852,601,0,8,12.100000000000001,177,601,0,547,0.28,51.22,51.97,0.99,0.14,796,2.9000000000000004,227,2.4000000000000004
+2023,8,1,16,30,22.3,1.43,0.065,0.61,72,819,510,0,8,12.100000000000001,155,581,29,466,0.28,52.410000000000004,57.63,0.99,0.14,795,2.9000000000000004,233,2.2
+2023,8,1,17,0,22,1.44,0.064,0.61,66,775,414,0,0,12.100000000000001,117,418,7,305,0.28,53.410000000000004,63.33,0.99,0.14,795,2.9000000000000004,239,2
+2023,8,1,17,30,21.400000000000002,1.44,0.064,0.61,60,715,316,0,3,12.100000000000001,133,148,4,186,0.28,55.4,69.01,0.98,0.14,795,2.9000000000000004,249,1.7000000000000002
+2023,8,1,18,0,20.900000000000002,1.45,0.063,0.61,51,631,218,0,3,13,96,333,21,184,0.28,60.69,74.64,0.98,0.14,796,2.9000000000000004,259,1.4000000000000001
+2023,8,1,18,30,20.200000000000003,1.45,0.063,0.61,40,503,126,2,8,13,71,108,32,89,0.28,63.35,80.17,0.98,0.14,796,2.9000000000000004,277,1.1
+2023,8,1,19,0,19.5,1.46,0.062,0.61,26,299,49,7,8,13.4,36,13,100,37,0.28,67.87,85.54,0.98,0.14,796,2.9000000000000004,295,0.9
+2023,8,1,19,30,19.1,1.46,0.062,0.61,5,40,4,3,8,13.4,3,0,43,3,0.28,69.57000000000001,90.95,0.98,0.14,796,2.9000000000000004,311,0.9
+2023,8,1,20,0,18.8,1.48,0.06,0.61,0,0,0,0,8,13.5,0,0,0,0,0.281,71.23,96.03,0.98,0.14,796,2.9000000000000004,328,0.9
+2023,8,1,20,30,18.400000000000002,1.48,0.06,0.61,0,0,0,0,8,13.5,0,0,0,0,0.281,73.03,100.84,0.98,0.14,796,2.8000000000000003,338,0.8
+2023,8,1,21,0,18.1,1.51,0.059000000000000004,0.61,0,0,0,0,3,13.700000000000001,0,0,0,0,0.28,75.58,105.35000000000001,0.97,0.14,796,2.8000000000000003,348,0.7000000000000001
+2023,8,1,21,30,17.7,1.51,0.059000000000000004,0.61,0,0,0,0,4,13.700000000000001,0,0,0,0,0.28,77.5,109.47,0.97,0.14,796,2.8000000000000003,177,0.6000000000000001
+2023,8,1,22,0,17.400000000000002,1.53,0.057,0.61,0,0,0,0,4,14,0,0,0,0,0.28,80.22,113.12,0.97,0.14,796,2.8000000000000003,6,0.6000000000000001
+2023,8,1,22,30,17.1,1.53,0.057,0.61,0,0,0,0,8,14,0,0,0,0,0.28,81.75,116.24000000000001,0.97,0.14,796,2.8000000000000003,11,0.5
+2023,8,1,23,0,16.7,1.53,0.058,0.61,0,0,0,0,8,13.8,0,0,0,0,0.281,83.07000000000001,118.72,0.97,0.14,796,2.8000000000000003,17,0.5
+2023,8,1,23,30,16.5,1.53,0.058,0.61,0,0,0,0,7,13.8,0,0,0,0,0.281,84.13,120.48,0.97,0.14,796,2.8000000000000003,15,0.4
+2023,8,2,0,0,16.3,1.53,0.062,0.61,0,0,0,0,7,13.600000000000001,0,0,0,0,0.281,83.99,121.46000000000001,0.97,0.14,795,2.8000000000000003,14,0.4
+2023,8,2,0,30,16.1,1.53,0.062,0.61,0,0,0,0,7,13.600000000000001,0,0,0,0,0.281,85.06,121.62,0.97,0.14,795,2.8000000000000003,185,0.4
+2023,8,2,1,0,16,1.51,0.069,0.61,0,0,0,0,7,13.5,0,0,0,0,0.281,85.04,120.95,0.96,0.14,795,2.8000000000000003,357,0.4
+2023,8,2,1,30,15.8,1.51,0.069,0.61,0,0,0,0,7,13.5,0,0,0,0,0.281,86.13,119.48,0.96,0.14,795,2.8000000000000003,356,0.30000000000000004
+2023,8,2,2,0,15.700000000000001,1.5,0.075,0.61,0,0,0,0,8,13.4,0,0,0,0,0.281,86.23,117.26,0.96,0.14,795,2.8000000000000003,354,0.30000000000000004
+2023,8,2,2,30,15.5,1.5,0.075,0.61,0,0,0,0,3,13.4,0,0,0,0,0.28200000000000003,87.34,114.38,0.96,0.14,795,2.8000000000000003,268,0.2
+2023,8,2,3,0,15.4,1.49,0.08,0.61,0,0,0,0,3,13.3,0,0,0,0,0.28200000000000003,87.44,110.92,0.96,0.14,795,2.8000000000000003,183,0.1
+2023,8,2,3,30,15.100000000000001,1.49,0.08,0.61,0,0,0,0,0,13.3,0,0,0,0,0.28200000000000003,89.13,106.97,0.96,0.14,795,2.7,179,0.30000000000000004
+2023,8,2,4,0,14.8,1.5,0.082,0.61,0,0,0,0,3,13.3,0,0,0,0,0.28200000000000003,90.52,102.60000000000001,0.96,0.14,795,2.7,175,0.4
+2023,8,2,4,30,14.700000000000001,1.5,0.082,0.61,0,0,0,0,0,13.3,0,0,0,0,0.28200000000000003,91.22,97.9,0.96,0.14,796,2.7,173,0.6000000000000001
+2023,8,2,5,0,14.700000000000001,1.5,0.081,0.61,0,0,0,0,3,13.4,0,0,4,0,0.28300000000000003,92.08,92.92,0.96,0.14,796,2.7,171,0.7000000000000001
+2023,8,2,5,30,15.600000000000001,1.5,0.081,0.61,18,160,25,0,0,13.4,17,152,7,24,0.28300000000000003,86.92,87.51,0.9500000000000001,0.14,796,2.7,170,1.3
+2023,8,2,6,0,16.6,1.5,0.078,0.61,38,416,94,0,0,13.600000000000001,41,351,0,88,0.28300000000000003,82.64,82.25,0.9500000000000001,0.14,796,2.6,169,1.9000000000000001
+2023,8,2,6,30,17.900000000000002,1.5,0.078,0.61,51,573,182,0,0,13.600000000000001,72,412,0,166,0.28300000000000003,76.14,76.77,0.9500000000000001,0.14,796,2.6,177,2.3000000000000003
+2023,8,2,7,0,19.200000000000003,1.51,0.075,0.61,60,678,279,0,0,13.100000000000001,78,588,0,268,0.28300000000000003,67.76,71.18,0.9500000000000001,0.14,796,2.6,185,2.8000000000000003
+2023,8,2,7,30,20.6,1.51,0.075,0.61,68,749,378,0,0,13.100000000000001,68,749,0,378,0.28300000000000003,62.15,65.52,0.9500000000000001,0.14,796,2.6,194,3.2
+2023,8,2,8,0,21.900000000000002,1.5,0.073,0.61,74,802,477,0,0,11.9,91,758,0,472,0.28300000000000003,53.14,59.83,0.9500000000000001,0.14,796,2.5,204,3.6
+2023,8,2,8,30,22.900000000000002,1.5,0.073,0.61,79,839,570,0,0,11.9,79,839,0,570,0.28200000000000003,50.02,54.15,0.9500000000000001,0.14,796,2.5,209,3.9000000000000004
+2023,8,2,9,0,23.8,1.48,0.075,0.61,84,867,658,0,0,11.200000000000001,84,867,0,658,0.281,45.1,48.550000000000004,0.9500000000000001,0.14,796,2.5,215,4.2
+2023,8,2,9,30,24.5,1.48,0.075,0.61,89,887,737,0,0,11.200000000000001,89,887,0,737,0.28,43.25,43.07,0.96,0.14,796,2.5,217,4.4
+2023,8,2,10,0,25.200000000000003,1.44,0.082,0.61,94,902,806,0,0,10.8,94,902,0,806,0.28,40.480000000000004,37.83,0.96,0.14,796,2.5,219,4.5
+2023,8,2,10,30,25.6,1.44,0.082,0.61,91,922,865,0,0,10.8,102,906,0,862,0.279,39.49,32.96,0.96,0.14,795,2.5,220,4.6000000000000005
+2023,8,2,11,0,26.1,1.43,0.062,0.61,88,940,913,0,0,10.600000000000001,127,855,0,877,0.278,37.92,28.68,0.96,0.14,795,2.5,220,4.7
+2023,8,2,11,30,26.3,1.43,0.062,0.61,90,946,945,0,0,10.600000000000001,168,802,0,893,0.278,37.480000000000004,25.310000000000002,0.96,0.14,795,2.5,220,4.6000000000000005
+2023,8,2,12,0,26.6,1.44,0.061,0.61,88,951,962,0,0,10.5,150,818,0,901,0.277,36.480000000000004,23.28,0.96,0.14,795,2.5,220,4.6000000000000005
+2023,8,2,12,30,26.8,1.44,0.061,0.61,88,954,966,0,0,10.5,130,881,0,941,0.277,36.050000000000004,22.96,0.96,0.14,795,2.4000000000000004,219,4.5
+2023,8,2,13,0,27,1.48,0.055,0.61,86,955,956,0,0,10.4,256,554,0,761,0.277,35.27,24.400000000000002,0.96,0.14,794,2.4000000000000004,219,4.5
+2023,8,2,13,30,27,1.48,0.055,0.61,82,956,931,0,7,10.4,337,155,0,475,0.276,35.27,27.34,0.96,0.14,794,2.3000000000000003,219,4.2
+2023,8,2,14,0,27.1,1.55,0.043000000000000003,0.61,77,955,893,0,7,10.100000000000001,180,1,0,181,0.276,34.51,31.330000000000002,0.96,0.14,794,2.3000000000000003,219,4
+2023,8,2,14,30,27.1,1.55,0.043000000000000003,0.61,74,948,841,0,7,10.100000000000001,177,2,0,179,0.275,34.51,36.03,0.96,0.14,794,2.2,218,3.8000000000000003
+2023,8,2,15,0,27.1,1.58,0.039,0.61,71,938,777,0,7,9.700000000000001,255,380,14,541,0.275,33.49,41.160000000000004,0.96,0.14,794,2.1,218,3.6
+2023,8,2,15,30,26.8,1.58,0.039,0.61,68,921,701,0,0,9.700000000000001,84,888,7,694,0.276,34.09,46.57,0.96,0.14,794,2.1,219,3.4000000000000004
+2023,8,2,16,0,26.6,1.58,0.037,0.61,65,900,617,0,0,9.200000000000001,65,900,0,617,0.276,33.47,52.14,0.9500000000000001,0.14,793,2.1,220,3.2
+2023,8,2,16,30,26.1,1.58,0.037,0.61,61,868,524,0,0,9.200000000000001,61,868,0,524,0.277,34.47,57.800000000000004,0.9500000000000001,0.14,793,2.1,223,3
+2023,8,2,17,0,25.700000000000003,1.56,0.039,0.61,57,825,425,0,0,8.9,57,825,0,425,0.278,34.61,63.5,0.9500000000000001,0.14,793,2.1,226,2.8000000000000003
+2023,8,2,17,30,24.700000000000003,1.56,0.039,0.61,52,766,324,0,0,8.9,80,662,4,315,0.279,36.72,69.18,0.9500000000000001,0.14,793,2.1,233,2
+2023,8,2,18,0,23.700000000000003,1.53,0.042,0.61,46,680,224,0,8,11.4,84,432,21,197,0.28,45.97,74.81,0.9500000000000001,0.14,794,2.2,241,1.3
+2023,8,2,18,30,22.5,1.53,0.042,0.61,37,550,129,2,8,11.4,70,191,46,102,0.281,49.410000000000004,80.35000000000001,0.9500000000000001,0.14,794,2.2,268,1
+2023,8,2,19,0,21.3,1.48,0.046,0.61,24,334,49,7,7,12.5,26,2,100,26,0.28200000000000003,57.09,85.72,0.9500000000000001,0.14,794,2.2,294,0.6000000000000001
+2023,8,2,19,30,21,1.48,0.046,0.61,4,27,3,3,7,12.5,1,0,43,1,0.28200000000000003,58.15,91.14,0.9500000000000001,0.14,794,2.3000000000000003,149,0.6000000000000001
+2023,8,2,20,0,20.6,1.43,0.052000000000000005,0.61,0,0,0,0,7,11.8,0,0,0,0,0.28200000000000003,57.230000000000004,96.22,0.96,0.14,794,2.3000000000000003,3,0.5
+2023,8,2,20,30,20.1,1.43,0.052000000000000005,0.61,0,0,0,0,7,11.8,0,0,0,0,0.28200000000000003,59.02,101.05,0.96,0.14,794,2.3000000000000003,32,0.6000000000000001
+2023,8,2,21,0,19.6,1.41,0.055,0.61,0,0,0,0,7,12,0,0,0,0,0.28200000000000003,61.46,105.56,0.96,0.14,794,2.3000000000000003,61,0.7000000000000001
+2023,8,2,21,30,19.1,1.41,0.055,0.61,0,0,0,0,5,12,0,0,0,0,0.28300000000000003,63.39,109.69,0.96,0.14,794,2.3000000000000003,78,0.7000000000000001
+2023,8,2,22,0,18.6,1.41,0.057,0.61,0,0,0,0,5,11.9,0,0,0,0,0.28300000000000003,65.09,113.36,0.96,0.14,794,2.3000000000000003,95,0.8
+2023,8,2,22,30,18.3,1.41,0.057,0.61,0,0,0,0,7,11.9,0,0,0,0,0.28300000000000003,66.32000000000001,116.48,0.96,0.14,794,2.3000000000000003,113,0.9
+2023,8,2,23,0,18,1.3900000000000001,0.058,0.61,0,0,0,0,7,11.8,0,0,0,0,0.28300000000000003,66.92,118.97,0.96,0.14,794,2.3000000000000003,131,0.9
+2023,8,2,23,30,17.8,1.3900000000000001,0.058,0.61,0,0,0,0,5,11.8,0,0,0,0,0.28300000000000003,67.76,120.74000000000001,0.96,0.14,794,2.4000000000000004,148,1
+2023,8,3,0,0,17.5,1.37,0.06,0.61,0,0,0,0,3,11.700000000000001,0,0,0,0,0.28300000000000003,68.64,121.72,0.96,0.14,794,2.4000000000000004,166,1.1
+2023,8,3,0,30,17.3,1.37,0.06,0.61,0,0,0,0,0,11.700000000000001,0,0,0,0,0.28300000000000003,69.43,121.88,0.96,0.14,793,2.4000000000000004,177,1.4000000000000001
+2023,8,3,1,0,17.1,1.34,0.06,0.61,0,0,0,0,8,11.5,0,0,0,0,0.28200000000000003,69.44,121.2,0.96,0.14,793,2.4000000000000004,188,1.6
+2023,8,3,1,30,16.8,1.34,0.06,0.61,0,0,0,0,8,11.5,0,0,0,0,0.28200000000000003,70.76,119.72,0.96,0.14,793,2.4000000000000004,190,1.7000000000000002
+2023,8,3,2,0,16.5,1.34,0.055,0.61,0,0,0,0,8,11.4,0,0,0,0,0.28200000000000003,71.71000000000001,117.5,0.96,0.14,794,2.4000000000000004,193,1.8
+2023,8,3,2,30,15.9,1.34,0.055,0.61,0,0,0,0,7,11.4,0,0,0,0,0.28200000000000003,74.5,114.60000000000001,0.96,0.14,794,2.4000000000000004,193,1.8
+2023,8,3,3,0,15.3,1.3800000000000001,0.05,0.61,0,0,0,0,7,11.3,0,0,0,0,0.28300000000000003,76.82000000000001,111.13,0.9500000000000001,0.14,794,2.3000000000000003,193,1.7000000000000002
+2023,8,3,3,30,14.8,1.3800000000000001,0.05,0.61,0,0,0,0,4,11.3,0,0,0,0,0.28300000000000003,79.32000000000001,107.17,0.9500000000000001,0.14,794,2.3000000000000003,193,1.7000000000000002
+2023,8,3,4,0,14.200000000000001,1.4000000000000001,0.052000000000000005,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28400000000000003,82.04,102.79,0.9500000000000001,0.14,794,2.3000000000000003,193,1.6
+2023,8,3,4,30,14.200000000000001,1.4000000000000001,0.052000000000000005,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28400000000000003,82.04,98.08,0.9500000000000001,0.14,794,2.3000000000000003,193,1.8
+2023,8,3,5,0,14.100000000000001,1.3900000000000001,0.058,0.61,0,0,0,0,0,11.3,0,0,0,0,0.28400000000000003,82.99,93.09,0.9500000000000001,0.14,794,2.3000000000000003,192,2
+2023,8,3,5,30,15.100000000000001,1.3900000000000001,0.058,0.61,17,175,24,4,0,11.3,10,37,50,12,0.28400000000000003,77.82000000000001,87.67,0.9500000000000001,0.14,794,2.3000000000000003,195,2.6
+2023,8,3,6,0,16.1,1.3800000000000001,0.064,0.61,36,439,94,3,3,11.4,38,143,39,57,0.28500000000000003,73.46000000000001,82.4,0.9500000000000001,0.14,794,2.3000000000000003,198,3.1
+2023,8,3,6,30,17.400000000000002,1.3800000000000001,0.064,0.61,48,596,183,0,4,11.4,53,2,0,53,0.28500000000000003,67.75,76.92,0.9500000000000001,0.14,795,2.3000000000000003,204,3.8000000000000003
+2023,8,3,7,0,18.7,1.3900000000000001,0.064,0.61,58,697,281,0,3,10.700000000000001,128,91,0,157,0.28500000000000003,59.54,71.32000000000001,0.9500000000000001,0.14,795,2.3000000000000003,211,4.4
+2023,8,3,7,30,19.5,1.3900000000000001,0.064,0.61,65,765,380,0,4,10.700000000000001,138,10,0,142,0.28500000000000003,56.65,65.66,0.9500000000000001,0.14,795,2.2,213,4.800000000000001
+2023,8,3,8,0,20.400000000000002,1.4000000000000001,0.068,0.61,72,814,479,0,4,10,141,1,0,142,0.28600000000000003,51.370000000000005,59.97,0.9500000000000001,0.14,795,2.2,215,5.2
+2023,8,3,8,30,21.1,1.4000000000000001,0.068,0.61,77,851,574,0,4,10,136,3,0,138,0.28600000000000003,49.21,54.300000000000004,0.9500000000000001,0.14,795,2.2,217,5.4
+2023,8,3,9,0,21.700000000000003,1.41,0.07200000000000001,0.61,83,878,662,0,4,9.8,218,169,0,330,0.28600000000000003,46.65,48.7,0.9500000000000001,0.14,795,2.1,218,5.6000000000000005
+2023,8,3,9,30,22.400000000000002,1.41,0.07200000000000001,0.61,87,900,743,0,3,9.8,213,61,0,257,0.28600000000000003,44.71,43.230000000000004,0.9500000000000001,0.14,795,2.1,220,5.800000000000001
+2023,8,3,10,0,23.1,1.42,0.073,0.61,90,918,813,0,3,9.5,293,47,0,330,0.28600000000000003,42.13,38,0.9500000000000001,0.14,795,2.1,222,5.9
+2023,8,3,10,30,23.700000000000003,1.42,0.073,0.61,90,935,873,0,3,9.5,297,57,0,345,0.28700000000000003,40.64,33.14,0.9500000000000001,0.14,795,2.1,224,6.1000000000000005
+2023,8,3,11,0,24.3,1.4000000000000001,0.06,0.61,87,951,920,0,3,9.1,248,20,0,266,0.28700000000000003,38.14,28.88,0.9500000000000001,0.14,794,2.1,226,6.2
+2023,8,3,11,30,24.6,1.4000000000000001,0.06,0.61,88,956,951,0,3,9.1,280,78,0,350,0.28700000000000003,37.46,25.54,0.9500000000000001,0.14,794,2.1,228,6.300000000000001
+2023,8,3,12,0,24.900000000000002,1.43,0.063,0.61,90,958,968,0,3,8.6,320,177,0,482,0.28700000000000003,35.58,23.54,0.9500000000000001,0.14,794,2.1,230,6.4
+2023,8,3,12,30,25.1,1.43,0.063,0.61,91,956,970,0,3,8.6,407,194,0,585,0.28700000000000003,35.160000000000004,23.22,0.9500000000000001,0.14,794,2.1,231,6.4
+2023,8,3,13,0,25.200000000000003,1.46,0.07,0.61,94,950,957,0,3,8.3,380,405,0,748,0.28600000000000003,34.12,24.66,0.9500000000000001,0.14,794,2.1,232,6.4
+2023,8,3,13,30,25.3,1.46,0.07,0.61,95,941,929,0,0,8.3,219,686,0,827,0.28600000000000003,33.92,27.57,0.9500000000000001,0.14,794,2.1,234,6.300000000000001
+2023,8,3,14,0,25.400000000000002,1.48,0.079,0.61,95,929,887,0,0,7.9,143,846,0,864,0.28600000000000003,32.97,31.55,0.96,0.14,794,2.1,235,6.300000000000001
+2023,8,3,14,30,25.5,1.48,0.079,0.61,93,918,834,0,0,7.9,117,872,0,820,0.28600000000000003,32.77,36.230000000000004,0.96,0.14,794,2.1,237,6.2
+2023,8,3,15,0,25.5,1.5,0.078,0.61,90,904,769,0,0,7.5,90,904,0,769,0.28600000000000003,31.87,41.35,0.96,0.14,793,2.1,239,6.2
+2023,8,3,15,30,25.3,1.5,0.078,0.61,86,885,692,0,0,7.5,95,864,0,687,0.28700000000000003,32.25,46.75,0.9500000000000001,0.14,793,2.1,241,5.9
+2023,8,3,16,0,25.200000000000003,1.52,0.074,0.61,81,861,607,0,0,7.2,89,839,0,602,0.28700000000000003,31.650000000000002,52.32,0.9500000000000001,0.14,793,2,244,5.7
+2023,8,3,16,30,24.8,1.52,0.074,0.61,74,831,515,0,0,7.2,74,831,0,515,0.28700000000000003,32.410000000000004,57.97,0.9500000000000001,0.14,793,2,246,5.4
+2023,8,3,17,0,24.400000000000002,1.56,0.067,0.61,67,791,418,0,0,6.800000000000001,67,791,0,418,0.28800000000000003,32.36,63.67,0.9500000000000001,0.14,793,2,249,5
+2023,8,3,17,30,23.5,1.56,0.067,0.61,60,735,319,0,0,6.800000000000001,60,735,0,319,0.289,34.15,69.35000000000001,0.9400000000000001,0.14,793,1.9000000000000001,250,3.9000000000000004
+2023,8,3,18,0,22.5,1.61,0.061,0.61,51,654,220,0,0,8,51,654,0,220,0.289,39.39,74.99,0.9400000000000001,0.14,793,1.9000000000000001,252,2.8000000000000003
+2023,8,3,18,30,20.6,1.61,0.061,0.61,39,528,126,0,0,8,39,528,0,126,0.29,44.230000000000004,80.53,0.9400000000000001,0.14,793,1.8,254,2
+2023,8,3,19,0,18.7,1.6500000000000001,0.056,0.61,24,321,47,2,0,10.200000000000001,26,242,36,43,0.291,57.59,85.9,0.93,0.14,793,1.8,255,1.2000000000000002
+2023,8,3,19,30,18.1,1.6500000000000001,0.056,0.61,3,25,2,2,8,10.200000000000001,1,0,29,1,0.291,59.86,91.34,0.93,0.14,794,1.7000000000000002,264,1.1
+2023,8,3,20,0,17.5,1.6500000000000001,0.054,0.61,0,0,0,0,8,9.9,0,0,0,0,0.292,61.18,96.43,0.93,0.14,794,1.7000000000000002,272,1
+2023,8,3,20,30,16.900000000000002,1.6500000000000001,0.054,0.61,0,0,0,0,8,9.9,0,0,0,0,0.292,63.54,101.26,0.93,0.14,794,1.7000000000000002,285,1
+2023,8,3,21,0,16.400000000000002,1.6600000000000001,0.055,0.61,0,0,0,0,5,9.8,0,0,0,0,0.292,64.99,105.78,0.93,0.14,794,1.7000000000000002,298,1
+2023,8,3,21,30,15.9,1.6600000000000001,0.055,0.61,0,0,0,0,4,9.8,0,0,0,0,0.291,67.09,109.92,0.93,0.14,794,1.7000000000000002,308,1
+2023,8,3,22,0,15.4,1.6600000000000001,0.057,0.61,0,0,0,0,4,9.700000000000001,0,0,0,0,0.29,68.59,113.60000000000001,0.93,0.14,795,1.7000000000000002,318,1
+2023,8,3,22,30,15.100000000000001,1.6600000000000001,0.057,0.61,0,0,0,0,4,9.700000000000001,0,0,0,0,0.289,69.92,116.73,0.9400000000000001,0.14,795,1.8,327,1
+2023,8,3,23,0,14.8,1.6600000000000001,0.063,0.61,0,0,0,0,4,9.5,0,0,0,0,0.28800000000000003,70.36,119.22,0.9400000000000001,0.14,795,1.8,336,1
+2023,8,3,23,30,14.5,1.6600000000000001,0.063,0.61,0,0,0,0,0,9.5,0,0,0,0,0.28700000000000003,71.73,121,0.9400000000000001,0.14,795,1.8,344,0.9
+2023,8,4,0,0,14.200000000000001,1.6300000000000001,0.07100000000000001,0.61,0,0,0,0,0,9.4,0,0,0,0,0.28600000000000003,72.87,121.98,0.9500000000000001,0.14,795,1.9000000000000001,352,0.8
+2023,8,4,0,30,13.9,1.6300000000000001,0.07100000000000001,0.61,0,0,0,0,0,9.4,0,0,0,0,0.28700000000000003,74.3,122.14,0.9500000000000001,0.14,795,1.9000000000000001,182,0.7000000000000001
+2023,8,4,1,0,13.600000000000001,1.6300000000000001,0.073,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28700000000000003,76.67,121.46000000000001,0.9500000000000001,0.14,795,1.9000000000000001,11,0.6000000000000001
+2023,8,4,1,30,13.200000000000001,1.6300000000000001,0.073,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28800000000000003,78.68,119.97,0.9400000000000001,0.14,795,1.9000000000000001,33,0.6000000000000001
+2023,8,4,2,0,12.8,1.6500000000000001,0.07,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.289,81.42,117.73,0.9400000000000001,0.14,795,1.9000000000000001,55,0.6000000000000001
+2023,8,4,2,30,12.3,1.6500000000000001,0.07,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.29,84.13,114.83,0.9400000000000001,0.14,795,1.9000000000000001,73,0.7000000000000001
+2023,8,4,3,0,11.9,1.6600000000000001,0.067,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.29,86.60000000000001,111.34,0.9400000000000001,0.14,795,1.8,91,0.8
+2023,8,4,3,30,11.600000000000001,1.6600000000000001,0.067,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.291,88.33,107.37,0.9400000000000001,0.14,795,1.8,102,0.8
+2023,8,4,4,0,11.4,1.6600000000000001,0.065,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.291,89.17,102.98,0.9400000000000001,0.14,795,1.8,113,0.8
+2023,8,4,4,30,11.600000000000001,1.6600000000000001,0.065,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.292,88,98.26,0.9400000000000001,0.14,795,1.7000000000000002,120,0.8
+2023,8,4,5,0,11.8,1.67,0.062,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.292,87.25,93.26,0.9400000000000001,0.14,795,1.7000000000000002,127,0.8
+2023,8,4,5,30,13.4,1.67,0.062,0.61,17,187,24,0,0,9.8,17,187,0,24,0.293,78.58,87.82000000000001,0.9400000000000001,0.14,795,1.7000000000000002,135,1.1
+2023,8,4,6,0,15,1.68,0.059000000000000004,0.61,35,464,95,0,0,9.9,35,464,0,95,0.293,71.68,82.55,0.9400000000000001,0.14,795,1.7000000000000002,143,1.5
+2023,8,4,6,30,16.7,1.68,0.059000000000000004,0.61,47,623,186,0,0,9.9,47,623,0,186,0.294,64.32000000000001,77.07000000000001,0.9400000000000001,0.14,795,1.6,161,1.6
+2023,8,4,7,0,18.5,1.68,0.057,0.61,55,725,285,0,0,8.9,55,725,0,285,0.294,53.65,71.47,0.9400000000000001,0.14,795,1.6,179,1.8
+2023,8,4,7,30,20,1.68,0.057,0.61,62,794,387,0,0,8.9,62,794,0,387,0.294,48.88,65.8,0.9400000000000001,0.14,795,1.6,197,2.2
+2023,8,4,8,0,21.5,1.68,0.056,0.61,67,845,488,0,0,7.5,67,845,0,488,0.294,40.46,60.11,0.93,0.14,795,1.6,216,2.6
+2023,8,4,8,30,22.5,1.68,0.056,0.61,70,883,584,0,0,7.5,70,883,0,584,0.294,38.08,54.44,0.93,0.14,795,1.6,223,3.1
+2023,8,4,9,0,23.6,1.67,0.054,0.61,74,912,674,0,0,6.5,74,912,0,674,0.294,33.37,48.85,0.93,0.14,795,1.6,231,3.6
+2023,8,4,9,30,24.400000000000002,1.67,0.054,0.61,76,934,755,0,0,6.5,76,934,0,755,0.294,31.810000000000002,43.39,0.93,0.14,795,1.5,234,4
+2023,8,4,10,0,25.200000000000003,1.6600000000000001,0.052000000000000005,0.61,79,951,827,0,0,5.800000000000001,79,951,0,827,0.294,28.810000000000002,38.17,0.9400000000000001,0.14,795,1.5,237,4.4
+2023,8,4,10,30,25.900000000000002,1.6600000000000001,0.052000000000000005,0.61,81,964,886,0,0,5.800000000000001,81,964,0,886,0.294,27.650000000000002,33.33,0.9400000000000001,0.14,795,1.5,238,4.6000000000000005
+2023,8,4,11,0,26.5,1.69,0.047,0.61,80,975,932,0,0,5.300000000000001,80,975,0,932,0.294,25.75,29.1,0.9400000000000001,0.14,795,1.5,239,4.800000000000001
+2023,8,4,11,30,27,1.69,0.047,0.61,82,980,964,0,0,5.300000000000001,82,980,0,964,0.294,24.98,25.78,0.9400000000000001,0.14,794,1.5,239,4.9
+2023,8,4,12,0,27.5,1.69,0.049,0.61,82,982,981,0,0,4.9,82,982,0,981,0.295,23.63,23.79,0.9500000000000001,0.14,794,1.6,240,4.9
+2023,8,4,12,30,27.8,1.69,0.049,0.61,84,980,983,0,0,4.9,84,980,0,983,0.296,23.22,23.48,0.9500000000000001,0.14,794,1.6,240,4.800000000000001
+2023,8,4,13,0,28,1.68,0.054,0.61,85,975,969,0,0,4.6000000000000005,153,814,0,891,0.296,22.43,24.92,0.9500000000000001,0.14,794,1.6,240,4.7
+2023,8,4,13,30,28.200000000000003,1.68,0.054,0.61,86,967,941,0,0,4.6000000000000005,97,938,0,927,0.297,22.14,27.82,0.96,0.14,793,1.6,240,4.5
+2023,8,4,14,0,28.3,1.6500000000000001,0.059000000000000004,0.61,85,957,899,0,0,4.4,164,751,0,802,0.298,21.72,31.78,0.96,0.14,793,1.7000000000000002,241,4.4
+2023,8,4,14,30,28.200000000000003,1.6500000000000001,0.059000000000000004,0.61,87,940,843,0,0,4.4,87,940,0,843,0.298,21.85,36.44,0.96,0.14,793,1.7000000000000002,243,4.2
+2023,8,4,15,0,28.1,1.6,0.07100000000000001,0.61,87,918,774,0,0,4.4,144,804,0,746,0.298,21.95,41.550000000000004,0.97,0.14,793,1.7000000000000002,245,3.9000000000000004
+2023,8,4,15,30,27.700000000000003,1.6,0.07100000000000001,0.61,86,892,695,0,0,4.4,125,798,0,670,0.299,22.47,46.94,0.97,0.14,793,1.8,249,3.6
+2023,8,4,16,0,27.400000000000002,1.57,0.084,0.61,85,856,606,0,0,4.5,138,736,0,586,0.299,23.1,52.5,0.97,0.14,793,1.8,253,3.3000000000000003
+2023,8,4,16,30,26.700000000000003,1.57,0.084,0.61,81,814,511,0,8,4.5,176,545,0,464,0.3,24.07,58.15,0.98,0.14,793,1.9000000000000001,264,2.9000000000000004
+2023,8,4,17,0,26.1,1.53,0.096,0.61,78,756,411,0,8,4.800000000000001,154,305,7,288,0.3,25.44,63.85,0.98,0.14,793,1.9000000000000001,274,2.6
+2023,8,4,17,30,24.900000000000002,1.53,0.096,0.61,70,686,310,0,3,4.800000000000001,109,502,29,285,0.301,27.310000000000002,69.53,0.98,0.14,793,1.9000000000000001,294,2
+2023,8,4,18,0,23.8,1.53,0.1,0.61,60,588,210,0,0,7,64,570,7,210,0.302,34.01,75.17,0.98,0.14,794,1.9000000000000001,315,1.5
+2023,8,4,18,30,22.3,1.53,0.1,0.61,45,455,118,0,0,7,45,455,0,118,0.303,37.230000000000004,80.71000000000001,0.97,0.14,794,1.9000000000000001,161,1.3
+2023,8,4,19,0,20.8,1.57,0.089,0.61,26,250,43,0,0,8.4,26,250,0,43,0.304,45.03,86.09,0.97,0.14,794,1.9000000000000001,6,1.1
+2023,8,4,19,30,20.200000000000003,1.57,0.089,0.61,2,16,2,0,0,8.4,2,16,0,2,0.304,46.72,91.54,0.96,0.14,794,1.9000000000000001,18,1.4000000000000001
+2023,8,4,20,0,19.5,1.62,0.075,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.304,46.06,96.64,0.96,0.14,795,1.9000000000000001,30,1.7000000000000002
+2023,8,4,20,30,18.8,1.62,0.075,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.304,48.11,101.48,0.96,0.14,795,1.9000000000000001,31,1.9000000000000001
+2023,8,4,21,0,18.2,1.6500000000000001,0.07,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.304,48.44,106.01,0.9500000000000001,0.14,795,1.9000000000000001,32,2.1
+2023,8,4,21,30,17.5,1.6500000000000001,0.07,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.305,50.61,110.16,0.9500000000000001,0.14,795,1.9000000000000001,32,2.1
+2023,8,4,22,0,16.900000000000002,1.6500000000000001,0.07,0.61,0,0,0,0,0,7,0,0,0,0,0.305,52.1,113.84,0.9500000000000001,0.14,795,1.9000000000000001,32,2.1
+2023,8,4,22,30,16.5,1.6500000000000001,0.07,0.61,0,0,0,0,0,7,0,0,0,0,0.305,53.44,116.98,0.9500000000000001,0.14,795,1.9000000000000001,34,2.1
+2023,8,4,23,0,16,1.6400000000000001,0.07200000000000001,0.61,0,0,0,0,0,7,0,0,0,0,0.305,55.14,119.49000000000001,0.9500000000000001,0.14,795,1.9000000000000001,35,2
+2023,8,4,23,30,15.5,1.6400000000000001,0.07200000000000001,0.61,0,0,0,0,0,7,0,0,0,0,0.306,56.93,121.27,0.9500000000000001,0.14,795,1.9000000000000001,37,2
+2023,8,5,0,0,15,1.6400000000000001,0.07,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.306,59.300000000000004,122.25,0.9500000000000001,0.14,795,1.9000000000000001,39,1.9000000000000001
+2023,8,5,0,30,14.600000000000001,1.6400000000000001,0.07,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.306,60.85,122.41,0.9400000000000001,0.14,795,1.9000000000000001,42,1.8
+2023,8,5,1,0,14.100000000000001,1.6300000000000001,0.07,0.61,0,0,0,0,0,7.4,0,0,0,0,0.306,63.870000000000005,121.72,0.9400000000000001,0.14,795,1.9000000000000001,45,1.8
+2023,8,5,1,30,13.700000000000001,1.6300000000000001,0.07,0.61,0,0,0,0,5,7.4,0,0,0,0,0.306,65.55,120.22,0.9400000000000001,0.14,795,1.9000000000000001,49,1.7000000000000002
+2023,8,5,2,0,13.200000000000001,1.61,0.07,0.61,0,0,0,0,7,7.6000000000000005,0,0,0,0,0.306,68.86,117.98,0.9400000000000001,0.14,795,1.9000000000000001,53,1.6
+2023,8,5,2,30,12.9,1.61,0.07,0.61,0,0,0,0,8,7.6000000000000005,0,0,0,0,0.306,70.22,115.06,0.9400000000000001,0.14,795,1.9000000000000001,58,1.5
+2023,8,5,3,0,12.5,1.6,0.069,0.61,0,0,0,0,7,7.800000000000001,0,0,0,0,0.306,73.01,111.56,0.9400000000000001,0.14,795,1.8,63,1.3
+2023,8,5,3,30,12.100000000000001,1.6,0.069,0.61,0,0,0,0,7,7.800000000000001,0,0,0,0,0.306,74.95,107.57000000000001,0.9400000000000001,0.14,795,1.8,66,1.2000000000000002
+2023,8,5,4,0,11.700000000000001,1.61,0.063,0.61,0,0,0,0,0,7.9,0,0,29,0,0.306,77.60000000000001,103.17,0.93,0.14,796,1.7000000000000002,70,1.1
+2023,8,5,4,30,11.700000000000001,1.61,0.063,0.61,0,0,0,0,0,7.9,0,0,0,0,0.306,77.60000000000001,98.44,0.93,0.14,796,1.7000000000000002,69,1.2000000000000002
+2023,8,5,5,0,11.8,1.6,0.059000000000000004,0.61,0,0,0,0,0,8.1,0,0,0,0,0.306,78.03,93.43,0.93,0.14,796,1.7000000000000002,68,1.2000000000000002
+2023,8,5,5,30,13,1.6,0.059000000000000004,0.61,17,182,23,0,0,8.1,17,182,0,23,0.306,72.14,87.97,0.93,0.14,796,1.7000000000000002,65,1.7000000000000002
+2023,8,5,6,0,14.3,1.59,0.058,0.61,34,460,92,0,0,8.3,34,460,0,92,0.307,66.99,82.71000000000001,0.93,0.14,796,1.6,61,2.1
+2023,8,5,6,30,16.1,1.59,0.058,0.61,46,619,183,0,0,8.3,46,619,0,183,0.307,59.69,77.22,0.93,0.14,796,1.6,71,2.1
+2023,8,5,7,0,18,1.58,0.058,0.61,55,721,282,0,0,7.7,55,721,0,282,0.307,51.11,71.61,0.93,0.14,796,1.6,80,2.1
+2023,8,5,7,30,19.3,1.58,0.058,0.61,62,791,384,0,0,7.7,62,791,0,384,0.307,47.13,65.95,0.93,0.14,796,1.6,76,1.9000000000000001
+2023,8,5,8,0,20.6,1.58,0.058,0.61,67,841,484,0,0,7,67,841,0,484,0.307,41.38,60.26,0.93,0.14,796,1.6,71,1.7000000000000002
+2023,8,5,8,30,21.8,1.58,0.058,0.61,72,877,580,0,0,7,72,877,0,580,0.306,38.46,54.59,0.93,0.14,796,1.6,64,1.6
+2023,8,5,9,0,23,1.58,0.058,0.61,76,905,670,0,0,6,84,885,0,665,0.305,33.21,49,0.93,0.14,796,1.6,57,1.4000000000000001
+2023,8,5,9,30,24.1,1.58,0.058,0.61,80,925,750,0,0,5.9,89,906,0,746,0.304,31.05,43.550000000000004,0.93,0.14,795,1.6,40,1
+2023,8,5,10,0,25.3,1.58,0.06,0.61,83,940,820,0,0,5,83,940,0,820,0.303,27.17,38.35,0.9400000000000001,0.14,795,1.6,24,0.7000000000000001
+2023,8,5,10,30,26.1,1.58,0.06,0.61,84,954,879,0,0,5,95,937,0,876,0.302,25.91,33.52,0.9400000000000001,0.14,795,1.7000000000000002,153,0.7000000000000001
+2023,8,5,11,0,26.900000000000002,1.59,0.055,0.61,85,965,926,0,0,4.800000000000001,137,879,0,903,0.3,24.32,29.310000000000002,0.9400000000000001,0.14,795,1.7000000000000002,282,0.8
+2023,8,5,11,30,27.400000000000002,1.59,0.055,0.61,85,971,958,0,0,4.800000000000001,99,948,0,951,0.298,23.62,26.02,0.9400000000000001,0.14,795,1.7000000000000002,272,1.1
+2023,8,5,12,0,28,1.59,0.056,0.61,86,973,975,0,0,4.9,214,602,0,764,0.296,22.92,24.05,0.9400000000000001,0.14,794,1.7000000000000002,262,1.5
+2023,8,5,12,30,28.3,1.59,0.056,0.61,86,973,977,0,8,4.9,356,80,0,429,0.294,22.52,23.75,0.9400000000000001,0.14,794,1.7000000000000002,259,1.7000000000000002
+2023,8,5,13,0,28.6,1.59,0.057,0.61,87,969,964,0,8,5,324,85,0,401,0.292,22.240000000000002,25.18,0.9500000000000001,0.14,794,1.7000000000000002,256,2
+2023,8,5,13,30,28.700000000000003,1.59,0.057,0.61,85,966,937,0,8,5,297,117,7,400,0.291,22.11,28.060000000000002,0.9500000000000001,0.14,794,1.7000000000000002,258,2.2
+2023,8,5,14,0,28.8,1.58,0.052000000000000005,0.61,82,960,896,0,8,4.7,336,141,0,456,0.29,21.650000000000002,32.01,0.9500000000000001,0.14,794,1.7000000000000002,259,2.5
+2023,8,5,14,30,28.700000000000003,1.58,0.052000000000000005,0.61,79,951,842,0,8,4.7,269,93,4,344,0.29,21.75,36.65,0.9500000000000001,0.14,793,1.7000000000000002,266,2.6
+2023,8,5,15,0,28.6,1.62,0.047,0.61,75,939,776,0,8,4.4,295,95,0,366,0.29,21.42,41.75,0.9500000000000001,0.14,793,1.7000000000000002,274,2.8000000000000003
+2023,8,5,15,30,28.3,1.62,0.047,0.61,72,923,700,0,0,4.4,215,499,0,554,0.29,21.8,47.13,0.9400000000000001,0.14,793,1.7000000000000002,285,2.9000000000000004
+2023,8,5,16,0,28,1.6500000000000001,0.043000000000000003,0.61,67,902,614,0,0,4.3,76,881,0,610,0.29,22.07,52.69,0.9400000000000001,0.14,793,1.7000000000000002,296,3
+2023,8,5,16,30,27.3,1.6500000000000001,0.043000000000000003,0.61,63,870,520,0,0,4.3,63,870,0,520,0.29,22.990000000000002,58.34,0.9400000000000001,0.14,793,1.7000000000000002,310,3.2
+2023,8,5,17,0,26.6,1.6600000000000001,0.044,0.61,58,826,420,0,0,4.6000000000000005,58,826,0,420,0.291,24.310000000000002,64.03,0.9400000000000001,0.14,793,1.7000000000000002,324,3.3000000000000003
+2023,8,5,17,30,25.3,1.6600000000000001,0.044,0.61,53,764,318,0,0,4.5,53,764,0,318,0.291,26.240000000000002,69.72,0.9400000000000001,0.14,793,1.7000000000000002,342,3.4000000000000004
+2023,8,5,18,0,24,1.67,0.046,0.61,46,675,217,0,0,5.800000000000001,46,675,0,217,0.292,30.86,75.36,0.9500000000000001,0.14,794,1.7000000000000002,360,3.5
+2023,8,5,18,30,22.200000000000003,1.67,0.046,0.61,37,538,122,1,0,5.800000000000001,48,433,11,116,0.292,34.39,80.91,0.9500000000000001,0.14,794,1.8,194,3.7
+2023,8,5,19,0,20.5,1.67,0.05,0.61,23,313,43,1,0,6.7,24,245,18,40,0.293,40.74,86.28,0.9500000000000001,0.14,794,1.8,28,3.9000000000000004
+2023,8,5,19,30,19.5,1.67,0.05,0.61,3,23,2,0,0,6.7,3,23,0,2,0.294,43.39,91.74,0.9500000000000001,0.14,795,1.8,34,4.3
+2023,8,5,20,0,18.6,1.6500000000000001,0.056,0.61,0,0,0,0,0,7.2,0,0,0,0,0.294,47.38,96.85000000000001,0.9500000000000001,0.14,795,1.9000000000000001,41,4.7
+2023,8,5,20,30,18,1.6500000000000001,0.056,0.61,0,0,0,0,0,7.2,0,0,0,0,0.294,49.19,101.7,0.96,0.14,795,1.9000000000000001,44,4.6000000000000005
+2023,8,5,21,0,17.3,1.6300000000000001,0.062,0.61,0,0,0,0,3,7.800000000000001,0,0,0,0,0.294,53.6,106.24000000000001,0.96,0.14,795,1.9000000000000001,48,4.5
+2023,8,5,21,30,16.900000000000002,1.6300000000000001,0.062,0.61,0,0,0,0,3,7.800000000000001,0,0,0,0,0.294,54.97,110.4,0.96,0.14,795,2,49,4.1000000000000005
+2023,8,5,22,0,16.400000000000002,1.59,0.07,0.61,0,0,0,0,7,8.3,0,0,0,0,0.294,58.84,114.10000000000001,0.96,0.14,795,2,50,3.8000000000000003
+2023,8,5,22,30,16,1.59,0.07,0.61,0,0,0,0,5,8.3,0,0,0,0,0.293,60.35,117.24000000000001,0.97,0.14,795,2.1,48,3.6
+2023,8,5,23,0,15.600000000000001,1.56,0.08,0.61,0,0,0,0,0,8.8,0,0,0,0,0.293,64.1,119.75,0.97,0.14,795,2.1,45,3.4000000000000004
+2023,8,5,23,30,15.3,1.56,0.08,0.61,0,0,0,0,0,8.8,0,0,0,0,0.292,65.35,121.54,0.97,0.14,795,2.1,43,3.4000000000000004
+2023,8,6,0,0,14.9,1.55,0.091,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.292,68.7,122.53,0.97,0.14,795,2.2,40,3.5
+2023,8,6,0,30,14.600000000000001,1.55,0.091,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.292,70.04,122.68,0.97,0.14,795,2.2,41,3.6
+2023,8,6,1,0,14.4,1.56,0.095,0.61,0,0,0,0,3,9.3,0,0,0,0,0.292,71.21000000000001,121.98,0.97,0.14,795,2.1,41,3.7
+2023,8,6,1,30,14.100000000000001,1.56,0.095,0.61,0,0,0,0,3,9.3,0,0,0,0,0.291,72.61,120.48,0.97,0.14,795,2.1,45,3.7
+2023,8,6,2,0,13.9,1.61,0.081,0.61,0,0,0,0,5,9.1,0,0,0,0,0.291,72.8,118.22,0.96,0.14,795,2.1,49,3.7
+2023,8,6,2,30,13.600000000000001,1.61,0.081,0.61,0,0,0,0,3,9.1,0,0,0,0,0.291,74.22,115.29,0.96,0.14,795,2,51,3.6
+2023,8,6,3,0,13.4,1.6400000000000001,0.064,0.61,0,0,0,0,0,8.9,0,0,0,0,0.29,73.99,111.78,0.9500000000000001,0.14,794,2,54,3.5
+2023,8,6,3,30,13,1.6400000000000001,0.064,0.61,0,0,0,0,0,8.9,0,0,0,0,0.29,75.94,107.78,0.9500000000000001,0.14,794,2,52,3.2
+2023,8,6,4,0,12.700000000000001,1.6500000000000001,0.058,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.29,76.73,103.37,0.9400000000000001,0.14,794,1.9000000000000001,51,2.8000000000000003
+2023,8,6,4,30,12.5,1.6500000000000001,0.058,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.29,77.84,98.62,0.9400000000000001,0.14,795,1.9000000000000001,48,2.9000000000000004
+2023,8,6,5,0,12.4,1.6400000000000001,0.057,0.61,0,0,0,0,5,8.700000000000001,0,0,0,0,0.291,78.02,93.60000000000001,0.9400000000000001,0.14,795,1.9000000000000001,46,3
+2023,8,6,5,30,13.3,1.6400000000000001,0.057,0.61,16,174,22,2,0,8.700000000000001,16,164,21,21,0.291,73.57000000000001,88.13,0.9400000000000001,0.14,795,1.9000000000000001,44,3.2
+2023,8,6,6,0,14.3,1.6300000000000001,0.058,0.61,34,451,90,0,0,8.6,39,348,4,82,0.291,68.79,82.86,0.9400000000000001,0.14,795,1.8,42,3.4000000000000004
+2023,8,6,6,30,16.400000000000002,1.6300000000000001,0.058,0.61,45,611,179,0,0,8.6,60,493,0,168,0.292,60.15,77.37,0.9400000000000001,0.14,795,1.8,48,3.6
+2023,8,6,7,0,18.5,1.62,0.06,0.61,55,713,278,0,3,7.9,113,342,0,220,0.292,50.14,71.76,0.9400000000000001,0.14,795,1.8,54,3.8000000000000003
+2023,8,6,7,30,20.200000000000003,1.62,0.06,0.61,63,781,380,0,3,7.9,175,269,0,284,0.293,45.13,66.09,0.9400000000000001,0.14,795,1.8,54,3.5
+2023,8,6,8,0,21.8,1.62,0.063,0.61,69,830,479,0,3,7.300000000000001,197,361,0,375,0.294,39.09,60.4,0.9400000000000001,0.14,795,1.8,53,3.2
+2023,8,6,8,30,22.8,1.62,0.063,0.61,75,866,575,0,0,7.300000000000001,158,666,0,542,0.295,36.79,54.74,0.9400000000000001,0.14,795,1.8,45,2.7
+2023,8,6,9,0,23.8,1.6,0.066,0.61,80,892,663,0,0,7.300000000000001,80,892,0,663,0.296,34.61,49.15,0.9400000000000001,0.14,795,1.8,37,2.2
+2023,8,6,9,30,24.6,1.6,0.066,0.61,83,914,744,0,0,7.300000000000001,83,914,0,744,0.298,32.99,43.71,0.9400000000000001,0.14,795,1.8,198,1.9000000000000001
+2023,8,6,10,0,25.400000000000002,1.59,0.069,0.61,87,930,815,0,0,7.2,87,930,0,815,0.299,31.35,38.52,0.9400000000000001,0.14,795,1.7000000000000002,360,1.5
+2023,8,6,10,30,26.1,1.59,0.069,0.61,88,945,874,0,0,7.2,88,945,0,874,0.301,30.080000000000002,33.72,0.9400000000000001,0.14,795,1.7000000000000002,334,1.5
+2023,8,6,11,0,26.900000000000002,1.5,0.062,0.61,87,957,920,0,0,6.7,87,957,0,920,0.302,27.740000000000002,29.53,0.9400000000000001,0.14,794,1.7000000000000002,307,1.6
+2023,8,6,11,30,27.400000000000002,1.5,0.062,0.61,89,962,952,0,0,6.7,89,962,0,952,0.304,26.94,26.26,0.9400000000000001,0.14,794,1.7000000000000002,292,1.7000000000000002
+2023,8,6,12,0,28,1.48,0.063,0.61,91,965,970,0,0,6.2,91,965,0,970,0.306,25.080000000000002,24.32,0.9400000000000001,0.14,794,1.7000000000000002,277,1.9000000000000001
+2023,8,6,12,30,28.3,1.48,0.063,0.61,91,965,972,0,0,6.2,91,965,0,972,0.306,24.64,24.03,0.9400000000000001,0.14,794,1.7000000000000002,267,2.2
+2023,8,6,13,0,28.6,1.45,0.064,0.61,90,963,960,0,0,5.800000000000001,90,963,0,960,0.307,23.52,25.45,0.9400000000000001,0.14,793,1.7000000000000002,257,2.5
+2023,8,6,13,30,28.6,1.45,0.064,0.61,90,957,932,0,0,5.800000000000001,112,911,0,914,0.307,23.52,28.32,0.9400000000000001,0.14,793,1.7000000000000002,256,3.2
+2023,8,6,14,0,28.700000000000003,1.3900000000000001,0.066,0.61,89,947,890,0,7,5.300000000000001,229,628,0,760,0.307,22.650000000000002,32.24,0.9400000000000001,0.14,793,1.7000000000000002,256,3.8000000000000003
+2023,8,6,14,30,28.3,1.3900000000000001,0.066,0.61,91,929,834,0,7,5.300000000000001,250,66,0,303,0.307,23.150000000000002,36.87,0.9500000000000001,0.14,792,1.8,266,4.5
+2023,8,6,15,0,28,1.33,0.081,0.61,93,904,765,0,7,4.800000000000001,210,99,4,284,0.308,22.73,41.95,0.9500000000000001,0.14,792,1.8,275,5.1000000000000005
+2023,8,6,15,30,27,1.33,0.081,0.61,91,876,685,0,8,4.800000000000001,247,528,7,605,0.308,24.09,47.33,0.96,0.14,792,1.9000000000000001,291,5.2
+2023,8,6,16,0,26,1.31,0.094,0.61,90,839,596,0,0,5.4,94,831,0,595,0.309,26.62,52.88,0.96,0.14,793,1.9000000000000001,307,5.2
+2023,8,6,16,30,24.700000000000003,1.31,0.094,0.61,86,794,501,0,0,5.300000000000001,86,794,0,501,0.31,28.75,58.53,0.96,0.14,793,1.9000000000000001,327,4.9
+2023,8,6,17,0,23.3,1.3,0.107,0.61,82,734,401,0,0,6.4,118,628,0,391,0.311,33.65,64.22,0.96,0.14,793,2,347,4.6000000000000005
+2023,8,6,17,30,21.700000000000003,1.3,0.107,0.61,72,664,300,0,0,6.4,112,513,0,288,0.312,37.07,69.91,0.96,0.14,793,2,186,4.6000000000000005
+2023,8,6,18,0,20,1.32,0.107,0.61,61,565,202,0,7,7.6000000000000005,97,161,0,137,0.313,44.74,75.55,0.96,0.14,794,2,25,4.6000000000000005
+2023,8,6,18,30,18.400000000000002,1.32,0.107,0.61,45,426,111,0,0,7.6000000000000005,42,289,11,87,0.313,49.410000000000004,81.10000000000001,0.96,0.14,794,1.9000000000000001,34,4.6000000000000005
+2023,8,6,19,0,16.8,1.37,0.095,0.61,24,202,36,0,0,8.5,24,202,0,36,0.314,58.050000000000004,86.48,0.9500000000000001,0.14,794,1.9000000000000001,44,4.5
+2023,8,6,19,30,16,1.37,0.095,0.61,0,0,0,0,0,8.5,0,0,0,0,0.315,61.07,91.95,0.9500000000000001,0.14,794,1.9000000000000001,52,4.2
+2023,8,6,20,0,15.3,1.43,0.081,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.315,64.8,97.06,0.9400000000000001,0.14,795,1.8,60,3.8000000000000003
+2023,8,6,20,30,15,1.43,0.081,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.316,66.06,101.93,0.9400000000000001,0.14,795,1.8,65,3.1
+2023,8,6,21,0,14.700000000000001,1.47,0.066,0.61,0,0,0,0,0,8.8,0,0,0,0,0.317,67.86,106.48,0.93,0.14,795,1.7000000000000002,70,2.4000000000000004
+2023,8,6,21,30,14.3,1.47,0.066,0.61,0,0,0,0,0,8.8,0,0,0,0,0.318,69.63,110.64,0.93,0.14,795,1.7000000000000002,67,1.7000000000000002
+2023,8,6,22,0,13.9,1.49,0.059000000000000004,0.61,0,0,0,0,0,8.9,0,0,0,0,0.319,72.07000000000001,114.35000000000001,0.92,0.14,795,1.6,64,1
+2023,8,6,22,30,13.600000000000001,1.49,0.059000000000000004,0.61,0,0,0,0,0,8.9,0,0,0,0,0.32,73.48,117.51,0.92,0.14,795,1.6,52,0.8
+2023,8,6,23,0,13.4,1.49,0.057,0.61,0,0,0,0,3,8.9,0,0,0,0,0.321,74.4,120.02,0.92,0.14,795,1.5,39,0.6000000000000001
+2023,8,6,23,30,13.200000000000001,1.49,0.057,0.61,0,0,0,0,3,8.9,0,0,0,0,0.321,75.37,121.81,0.92,0.14,795,1.5,20,0.6000000000000001
+2023,8,7,0,0,13,1.49,0.06,0.61,0,0,0,0,0,8.9,0,0,0,0,0.321,75.92,122.8,0.92,0.14,795,1.5,1,0.6000000000000001
+2023,8,7,0,30,12.9,1.49,0.06,0.61,0,0,0,0,0,8.8,0,0,0,0,0.32,76.32000000000001,122.95,0.93,0.14,794,1.6,172,0.6000000000000001
+2023,8,7,1,0,12.8,1.48,0.066,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.32,76.05,122.25,0.93,0.14,794,1.6,343,0.7000000000000001
+2023,8,7,1,30,12.600000000000001,1.48,0.066,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.319,77.05,120.74000000000001,0.93,0.14,794,1.6,344,0.7000000000000001
+2023,8,7,2,0,12.4,1.48,0.074,0.61,0,0,0,0,5,8.5,0,0,0,0,0.319,77.27,118.47,0.93,0.14,794,1.6,344,0.7000000000000001
+2023,8,7,2,30,12.3,1.48,0.074,0.61,0,0,0,0,5,8.5,0,0,0,0,0.318,77.77,115.52,0.9400000000000001,0.14,794,1.6,348,0.7000000000000001
+2023,8,7,3,0,12.200000000000001,1.48,0.08700000000000001,0.61,0,0,0,0,5,8.4,0,0,0,0,0.318,77.72,112,0.9400000000000001,0.14,794,1.6,353,0.7000000000000001
+2023,8,7,3,30,12.100000000000001,1.48,0.08700000000000001,0.61,0,0,0,0,3,8.4,0,0,0,0,0.317,78.23,107.98,0.9500000000000001,0.14,794,1.7000000000000002,355,0.7000000000000001
+2023,8,7,4,0,11.9,1.45,0.121,0.61,0,0,0,0,0,8.3,0,0,0,0,0.316,78.83,103.56,0.96,0.14,794,1.7000000000000002,357,0.7000000000000001
+2023,8,7,4,30,12,1.45,0.121,0.61,0,0,0,0,0,8.4,0,0,0,0,0.316,78.41,98.8,0.96,0.14,795,1.8,357,0.7000000000000001
+2023,8,7,5,0,12.100000000000001,1.43,0.149,0.61,0,0,0,0,7,8.4,0,0,0,0,0.315,78.32000000000001,93.77,0.96,0.14,795,1.8,357,0.7000000000000001
+2023,8,7,5,30,13.100000000000001,1.43,0.149,0.61,14,80,16,6,7,8.4,10,0,86,10,0.315,73.36,88.28,0.96,0.14,795,1.9000000000000001,188,1.1
+2023,8,7,6,0,14.100000000000001,1.45,0.145,0.61,43,306,80,4,8,8.5,46,38,57,51,0.315,69.19,83.02,0.96,0.14,795,1.9000000000000001,20,1.6
+2023,8,7,6,30,15.5,1.45,0.145,0.61,62,481,166,0,8,8.5,97,160,11,132,0.316,63.24,77.52,0.96,0.14,795,1.9000000000000001,25,1.4000000000000001
+2023,8,7,7,0,17,1.46,0.134,0.61,75,605,263,0,3,7.9,123,86,0,150,0.317,54.95,71.91,0.96,0.14,796,1.9000000000000001,30,1.3
+2023,8,7,7,30,18.400000000000002,1.46,0.134,0.61,85,690,363,0,6,7.9,34,2,0,35,0.319,50.32,66.24,0.9500000000000001,0.14,796,1.9000000000000001,180,1
+2023,8,7,8,0,19.8,1.47,0.126,0.61,92,754,463,1,6,6,42,1,11,42,0.32,40.47,60.550000000000004,0.9500000000000001,0.14,796,1.9000000000000001,330,0.8
+2023,8,7,8,30,20.8,1.47,0.126,0.61,96,808,561,4,8,6,61,4,50,63,0.322,38.06,54.89,0.9500000000000001,0.14,796,1.8,283,0.7000000000000001
+2023,8,7,9,0,21.8,1.5,0.105,0.61,97,853,653,2,8,5.4,210,339,21,431,0.323,34.410000000000004,49.31,0.9500000000000001,0.14,796,1.8,237,0.6000000000000001
+2023,8,7,9,30,22.8,1.5,0.105,0.61,100,881,735,3,8,5.4,253,169,39,375,0.324,32.34,43.88,0.9500000000000001,0.14,795,1.8,231,1.2000000000000002
+2023,8,7,10,0,23.8,1.51,0.099,0.61,101,903,806,2,8,5,311,361,25,593,0.324,29.55,38.7,0.9400000000000001,0.14,795,1.8,225,1.8
+2023,8,7,10,30,24.6,1.51,0.099,0.61,100,924,867,1,3,5,310,397,18,639,0.324,28.17,33.92,0.9400000000000001,0.14,795,1.7000000000000002,227,2.2
+2023,8,7,11,0,25.400000000000002,1.3800000000000001,0.077,0.61,95,944,915,0,0,4.6000000000000005,115,916,0,910,0.324,26.240000000000002,29.75,0.9400000000000001,0.14,794,1.7000000000000002,229,2.7
+2023,8,7,11,30,26,1.3800000000000001,0.077,0.61,97,951,948,0,0,4.6000000000000005,97,951,0,948,0.324,25.330000000000002,26.51,0.9400000000000001,0.14,794,1.7000000000000002,230,2.9000000000000004
+2023,8,7,12,0,26.6,1.4000000000000001,0.076,0.61,98,955,966,0,0,4.5,224,675,7,838,0.324,24.19,24.59,0.9400000000000001,0.14,794,1.7000000000000002,231,3.1
+2023,8,7,12,30,27,1.4000000000000001,0.076,0.61,99,953,967,0,8,4.5,299,292,7,565,0.323,23.6,24.310000000000002,0.9400000000000001,0.14,793,1.7000000000000002,231,3.3000000000000003
+2023,8,7,13,0,27.400000000000002,1.42,0.083,0.61,100,947,953,0,8,4.3,302,315,0,586,0.323,22.830000000000002,25.72,0.9400000000000001,0.14,793,1.7000000000000002,232,3.4000000000000004
+2023,8,7,13,30,27.6,1.42,0.083,0.61,98,943,926,0,8,4.3,261,505,0,704,0.323,22.56,28.580000000000002,0.9400000000000001,0.14,793,1.7000000000000002,235,3.6
+2023,8,7,14,0,27.900000000000002,1.3900000000000001,0.078,0.61,95,937,885,0,7,4,336,364,0,643,0.322,21.73,32.480000000000004,0.9400000000000001,0.14,792,1.8,239,3.7
+2023,8,7,14,30,28,1.3900000000000001,0.078,0.61,92,925,830,0,8,4,191,659,0,717,0.322,21.61,37.09,0.9400000000000001,0.14,792,1.8,243,3.8000000000000003
+2023,8,7,15,0,28.1,1.42,0.075,0.61,89,910,763,0,0,3.7,103,878,0,754,0.322,20.91,42.17,0.9400000000000001,0.14,792,1.8,248,3.9000000000000004
+2023,8,7,15,30,28.1,1.42,0.075,0.61,84,892,686,0,7,3.7,196,626,21,619,0.321,20.91,47.53,0.93,0.14,792,1.7000000000000002,256,4
+2023,8,7,16,0,28,1.44,0.069,0.61,78,869,600,0,8,3,179,625,14,554,0.321,20.080000000000002,53.08,0.93,0.14,791,1.7000000000000002,264,4.1000000000000005
+2023,8,7,16,30,27.5,1.44,0.069,0.61,72,838,507,0,8,3,167,582,14,469,0.32,20.67,58.72,0.93,0.14,791,1.7000000000000002,276,4.2
+2023,8,7,17,0,27.1,1.46,0.064,0.61,66,795,409,0,0,2.1,108,671,4,398,0.319,19.830000000000002,64.41,0.92,0.14,791,1.6,288,4.3
+2023,8,7,17,30,25.700000000000003,1.46,0.064,0.61,57,738,308,0,0,2.1,61,727,4,308,0.32,21.55,70.10000000000001,0.92,0.14,792,1.5,300,3.7
+2023,8,7,18,0,24.3,1.48,0.057,0.61,48,654,209,0,0,2.1,63,578,0,205,0.32,23.47,75.75,0.91,0.14,792,1.5,312,3.1
+2023,8,7,18,30,22.5,1.48,0.057,0.61,36,523,115,0,0,2.1,46,428,4,111,0.32,26.150000000000002,81.3,0.91,0.14,792,1.4000000000000001,324,2.7
+2023,8,7,19,0,20.700000000000003,1.51,0.048,0.61,21,281,37,6,3,3,26,54,89,29,0.321,31,86.68,0.91,0.14,793,1.3,337,2.3000000000000003
+2023,8,7,19,30,19.400000000000002,1.51,0.048,0.61,0,0,0,1,7,3,0,0,14,0,0.321,33.59,92.17,0.9,0.14,793,1.2000000000000002,345,2.1
+2023,8,7,20,0,18.2,1.54,0.039,0.61,0,0,0,0,0,3.2,0,0,0,0,0.321,36.77,97.29,0.9,0.14,793,1.2000000000000002,353,1.9000000000000001
+2023,8,7,20,30,17.3,1.54,0.039,0.61,0,0,0,0,8,3.2,0,0,0,0,0.321,38.9,102.16,0.9,0.14,793,1.1,185,1.6
+2023,8,7,21,0,16.3,1.52,0.039,0.61,0,0,0,0,7,3.7,0,0,0,0,0.321,43.12,106.72,0.91,0.14,793,1.1,16,1.4000000000000001
+2023,8,7,21,30,15.8,1.52,0.039,0.61,0,0,0,0,8,3.7,0,0,0,0,0.319,44.52,110.89,0.91,0.14,793,1.1,30,1.4000000000000001
+2023,8,7,22,0,15.3,1.51,0.049,0.61,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.318,47.27,114.61,0.92,0.14,793,1.2000000000000002,43,1.3
+2023,8,7,22,30,15,1.51,0.049,0.61,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.317,48.19,117.78,0.93,0.14,793,1.3,52,1.3
+2023,8,7,23,0,14.700000000000001,1.58,0.08,0.61,0,0,0,0,0,4.4,0,0,0,0,0.315,49.9,120.3,0.93,0.14,793,1.4000000000000001,61,1.3
+2023,8,7,23,30,14.600000000000001,1.58,0.08,0.61,0,0,0,0,0,4.4,0,0,0,0,0.313,50.22,122.09,0.9400000000000001,0.14,793,1.5,56,1.2000000000000002
+2023,8,8,0,0,14.4,1.71,0.126,0.61,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.311,51.82,123.09,0.9400000000000001,0.14,793,1.5,51,1.2000000000000002
+2023,8,8,0,30,14.100000000000001,1.71,0.126,0.61,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.31,52.84,123.23,0.93,0.14,793,1.5,47,1.2000000000000002
+2023,8,8,1,0,13.700000000000001,1.79,0.131,0.61,0,0,0,0,8,4.9,0,0,0,0,0.309,55.25,122.53,0.93,0.14,793,1.6,44,1.2000000000000002
+2023,8,8,1,30,13.4,1.79,0.131,0.61,0,0,0,0,7,4.9,0,0,0,0,0.308,56.33,121,0.93,0.14,793,1.5,48,1.2000000000000002
+2023,8,8,2,0,13,1.79,0.123,0.61,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.307,58.81,118.72,0.92,0.14,793,1.5,52,1.2000000000000002
+2023,8,8,2,30,12.700000000000001,1.79,0.123,0.61,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.307,59.89,115.76,0.92,0.14,792,1.4000000000000001,57,1.2000000000000002
+2023,8,8,3,0,12.4,1.78,0.117,0.61,0,0,0,0,7,5.300000000000001,0,0,0,0,0.306,62.1,112.22,0.92,0.14,792,1.4000000000000001,63,1.3
+2023,8,8,3,30,12.3,1.78,0.117,0.61,0,0,0,0,7,5.300000000000001,0,0,0,0,0.306,62.5,108.19,0.92,0.14,792,1.4000000000000001,63,1.2000000000000002
+2023,8,8,4,0,12.200000000000001,1.79,0.123,0.61,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.306,63.96,103.76,0.92,0.14,792,1.3,63,1.2000000000000002
+2023,8,8,4,30,12.3,1.79,0.123,0.61,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.306,63.54,98.99000000000001,0.92,0.14,792,1.3,50,1.2000000000000002
+2023,8,8,5,0,12.5,1.83,0.138,0.61,0,0,0,0,7,6,0,0,0,0,0.306,64.64,93.95,0.92,0.14,792,1.3,38,1.2000000000000002
+2023,8,8,5,30,13.700000000000001,1.83,0.138,0.61,12,94,15,5,7,6,9,0,71,9,0.306,59.78,88.44,0.91,0.14,792,1.3,28,1.8
+2023,8,8,6,0,14.8,1.8800000000000001,0.147,0.61,39,333,79,4,7,6.6000000000000005,53,10,57,54,0.306,58.07,83.18,0.91,0.14,792,1.3,18,2.4000000000000004
+2023,8,8,6,30,16.400000000000002,1.8800000000000001,0.147,0.61,59,500,166,0,7,6.6000000000000005,102,42,0,111,0.305,52.43,77.67,0.91,0.14,792,1.3,15,2.4000000000000004
+2023,8,8,7,0,17.900000000000002,1.8800000000000001,0.147,0.61,74,614,263,0,7,5.7,127,88,0,154,0.305,44.730000000000004,72.06,0.91,0.14,792,1.3,11,2.4000000000000004
+2023,8,8,7,30,19.1,1.8800000000000001,0.147,0.61,86,694,364,0,7,5.7,177,177,0,248,0.305,41.5,66.39,0.91,0.14,792,1.4000000000000001,181,2.1
+2023,8,8,8,0,20.3,1.8,0.147,0.61,96,751,464,0,7,4.9,203,323,0,361,0.305,36.45,60.7,0.92,0.14,792,1.4000000000000001,352,1.7000000000000002
+2023,8,8,8,30,20.700000000000003,1.8,0.147,0.61,105,793,559,0,7,4.9,254,231,0,386,0.305,35.57,55.04,0.93,0.14,792,1.5,335,1.6
+2023,8,8,9,0,21.1,1.6400000000000001,0.148,0.61,113,824,648,0,7,4.5,297,96,0,359,0.304,33.8,49.47,0.9400000000000001,0.14,792,1.6,318,1.5
+2023,8,8,9,30,21.6,1.6400000000000001,0.148,0.61,120,844,727,0,7,4.5,331,289,0,539,0.306,32.79,44.050000000000004,0.9500000000000001,0.14,792,1.6,296,1.6
+2023,8,8,10,0,22.1,1.55,0.162,0.61,129,857,796,0,7,4.3,349,324,0,601,0.307,31.17,38.88,0.9500000000000001,0.14,792,1.7000000000000002,274,1.7000000000000002
+2023,8,8,10,30,22.8,1.55,0.162,0.61,118,894,858,0,6,4.3,365,270,0,589,0.309,29.88,34.12,0.9500000000000001,0.14,792,1.7000000000000002,258,2.1
+2023,8,8,11,0,23.400000000000002,1.44,0.08700000000000001,0.61,101,935,911,0,7,4,348,404,0,698,0.311,28.36,29.98,0.9500000000000001,0.14,792,1.8,242,2.5
+2023,8,8,11,30,24.1,1.44,0.08700000000000001,0.61,99,946,944,0,6,4,405,262,0,639,0.311,27.2,26.76,0.9400000000000001,0.14,792,1.8,238,2.9000000000000004
+2023,8,8,12,0,24.8,1.5,0.076,0.61,96,954,962,0,6,3.9000000000000004,438,198,0,618,0.31,25.84,24.87,0.93,0.14,792,1.8,233,3.3000000000000003
+2023,8,8,12,30,25.1,1.5,0.076,0.61,96,955,964,0,7,3.9000000000000004,313,501,0,769,0.309,25.35,24.59,0.93,0.14,791,1.8,236,3.7
+2023,8,8,13,0,25.5,1.49,0.075,0.61,96,951,951,0,8,4,284,556,0,784,0.308,25.03,26,0.9400000000000001,0.14,791,1.8,239,4.1000000000000005
+2023,8,8,13,30,25.3,1.49,0.075,0.61,98,939,921,0,8,4,323,397,0,671,0.307,25.330000000000002,28.84,0.9400000000000001,0.14,791,1.9000000000000001,250,4.6000000000000005
+2023,8,8,14,0,25.1,1.45,0.092,0.61,102,921,877,0,8,4.9,302,419,0,654,0.307,27.16,32.730000000000004,0.9500000000000001,0.14,791,1.9000000000000001,260,5.1000000000000005
+2023,8,8,14,30,24.3,1.45,0.092,0.61,99,906,820,0,7,4.9,311,384,0,616,0.308,28.490000000000002,37.32,0.9500000000000001,0.14,791,2,272,5.300000000000001
+2023,8,8,15,0,23.6,1.47,0.096,0.61,98,885,752,0,7,6.1000000000000005,304,163,0,424,0.309,32.39,42.38,0.9500000000000001,0.14,791,2.1,285,5.5
+2023,8,8,15,30,23.3,1.47,0.096,0.61,90,871,676,0,8,6.1000000000000005,248,121,0,329,0.31,32.980000000000004,47.74,0.9400000000000001,0.14,791,2,293,4.9
+2023,8,8,16,0,23,1.56,0.078,0.61,80,854,591,0,6,6.300000000000001,200,98,0,259,0.312,33.97,53.28,0.92,0.14,791,2,300,4.3
+2023,8,8,16,30,22.900000000000002,1.56,0.078,0.61,74,824,499,0,8,6.300000000000001,160,254,4,291,0.313,34.13,58.92,0.92,0.14,790,1.9000000000000001,304,3.9000000000000004
+2023,8,8,17,0,22.8,1.59,0.07,0.61,66,783,402,0,8,5.4,101,417,32,280,0.315,32.36,64.61,0.92,0.13,790,1.8,307,3.5
+2023,8,8,17,30,22,1.59,0.07,0.61,59,719,301,0,6,5.4,104,300,14,205,0.315,33.96,70.3,0.92,0.13,790,1.8,318,3.2
+2023,8,8,18,0,21.1,1.6,0.069,0.61,50,625,202,0,6,5,75,38,0,84,0.315,35,75.95,0.92,0.13,791,1.7000000000000002,329,3
+2023,8,8,18,30,19.6,1.6,0.069,0.61,38,481,109,4,3,5,58,103,61,73,0.315,38.39,81.51,0.92,0.13,791,1.7000000000000002,166,2.7
+2023,8,8,19,0,18,1.67,0.068,0.61,20,235,33,5,3,5.6000000000000005,21,50,68,24,0.314,44.27,86.89,0.91,0.13,792,1.7000000000000002,3,2.5
+2023,8,8,19,30,16.900000000000002,1.67,0.068,0.61,0,0,0,0,0,5.6000000000000005,0,0,7,0,0.313,47.44,92.39,0.91,0.13,792,1.6,9,2.2
+2023,8,8,20,0,15.8,1.8,0.062,0.61,0,0,0,0,0,6,0,0,0,0,0.312,52.1,97.51,0.9,0.13,792,1.6,14,2
+2023,8,8,20,30,14.9,1.8,0.062,0.61,0,0,0,0,0,6,0,0,0,0,0.312,55.26,102.39,0.9,0.13,793,1.5,19,1.6
+2023,8,8,21,0,14.100000000000001,1.85,0.06,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.311,59.35,106.96000000000001,0.89,0.13,793,1.5,24,1.3
+2023,8,8,21,30,13.600000000000001,1.85,0.06,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.311,61.300000000000004,111.15,0.89,0.13,793,1.5,31,1.1
+2023,8,8,22,0,13.100000000000001,1.84,0.061,0.61,0,0,0,0,0,6.4,0,0,0,0,0.311,63.92,114.88,0.9,0.13,793,1.4000000000000001,38,0.9
+2023,8,8,22,30,12.9,1.84,0.061,0.61,0,0,0,0,0,6.4,0,0,0,0,0.31,64.76,118.05,0.9,0.13,793,1.4000000000000001,43,0.8
+2023,8,8,23,0,12.700000000000001,1.82,0.061,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.31,66.55,120.58,0.9,0.13,793,1.4000000000000001,49,0.7000000000000001
+2023,8,8,23,30,12.5,1.82,0.061,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.308,67.42,122.38,0.9,0.13,793,1.4000000000000001,49,0.5
+2023,8,9,0,0,12.3,1.79,0.061,0.61,0,0,0,0,0,6.9,0,0,0,0,0.307,69.57000000000001,123.37,0.9,0.13,793,1.4000000000000001,50,0.30000000000000004
+2023,8,9,0,30,12,1.79,0.061,0.61,0,0,0,0,0,6.9,0,0,0,0,0.306,70.95,123.52,0.9,0.13,793,1.4000000000000001,153,0.30000000000000004
+2023,8,9,1,0,11.600000000000001,1.76,0.06,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.305,73.66,122.8,0.9,0.13,793,1.4000000000000001,256,0.2
+2023,8,9,1,30,11.3,1.76,0.06,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.305,75.13,121.27,0.9,0.13,793,1.4000000000000001,259,0.4
+2023,8,9,2,0,11,1.74,0.06,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.304,76.69,118.97,0.9,0.13,793,1.3,262,0.5
+2023,8,9,2,30,10.700000000000001,1.74,0.06,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.304,78.23,116,0.9,0.13,793,1.3,266,0.6000000000000001
+2023,8,9,3,0,10.4,1.74,0.059000000000000004,0.61,0,0,0,0,0,6.9,0,0,0,0,0.303,79.09,112.45,0.9,0.13,793,1.3,269,0.6000000000000001
+2023,8,9,3,30,10.200000000000001,1.74,0.059000000000000004,0.61,0,0,0,0,0,6.9,0,0,0,0,0.302,80.15,108.41,0.9,0.13,793,1.3,271,0.7000000000000001
+2023,8,9,4,0,10,1.74,0.058,0.61,0,0,0,0,0,6.7,0,0,0,0,0.301,80.16,103.96000000000001,0.9,0.13,793,1.3,273,0.7000000000000001
+2023,8,9,4,30,10,1.74,0.058,0.61,0,0,0,0,0,6.7,0,0,0,0,0.301,80.16,99.17,0.9,0.13,793,1.3,273,0.7000000000000001
+2023,8,9,5,0,10.100000000000001,1.74,0.058,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.3,78.64,94.13,0.9,0.13,793,1.2000000000000002,273,0.6000000000000001
+2023,8,9,5,30,11.600000000000001,1.74,0.058,0.61,13,148,17,0,0,6.6000000000000005,13,148,0,17,0.3,71.19,88.59,0.9,0.13,793,1.2000000000000002,267,0.8
+2023,8,9,6,0,13,1.73,0.058,0.61,32,451,84,0,0,6.4,32,451,0,84,0.3,64.05,83.34,0.9,0.13,793,1.2000000000000002,260,1
+2023,8,9,6,30,14.8,1.73,0.058,0.61,44,621,175,0,0,6.4,44,621,0,175,0.3,57.01,77.83,0.9,0.13,793,1.2000000000000002,253,1.4000000000000001
+2023,8,9,7,0,16.7,1.73,0.058,0.61,53,728,275,0,0,5,53,728,0,275,0.299,45.92,72.21000000000001,0.9,0.13,794,1.2000000000000002,246,1.9000000000000001
+2023,8,9,7,30,17.8,1.73,0.058,0.61,61,800,379,0,0,5,61,800,0,379,0.299,42.85,66.54,0.9,0.13,794,1.2000000000000002,246,2
+2023,8,9,8,0,19,1.74,0.057,0.61,65,852,480,0,0,4.1000000000000005,65,852,0,480,0.299,37.25,60.85,0.9,0.13,794,1.2000000000000002,246,2.2
+2023,8,9,8,30,20.1,1.74,0.057,0.61,69,891,578,0,0,4.1000000000000005,69,891,0,578,0.299,34.75,55.19,0.9,0.13,793,1.2000000000000002,246,2.2
+2023,8,9,9,0,21.1,1.75,0.055,0.61,73,920,669,0,0,3.4000000000000004,73,920,0,669,0.298,31.12,49.63,0.9,0.13,793,1.2000000000000002,246,2.2
+2023,8,9,9,30,22.1,1.75,0.055,0.61,76,942,751,0,0,3.4000000000000004,76,942,0,751,0.298,29.28,44.22,0.9,0.13,793,1.2000000000000002,246,2.3000000000000003
+2023,8,9,10,0,23.1,1.75,0.054,0.61,78,959,823,0,0,2.6,78,959,0,823,0.298,26.18,39.07,0.9,0.13,793,1.2000000000000002,245,2.3000000000000003
+2023,8,9,10,30,24,1.75,0.054,0.61,78,975,883,0,0,2.6,78,975,0,883,0.297,24.8,34.32,0.89,0.13,793,1.2000000000000002,244,2.3000000000000003
+2023,8,9,11,0,24.900000000000002,1.78,0.045,0.61,77,988,931,0,0,2,77,988,0,931,0.297,22.38,30.2,0.88,0.13,793,1.2000000000000002,242,2.3000000000000003
+2023,8,9,11,30,25.6,1.78,0.045,0.61,77,994,963,0,0,1.9000000000000001,77,994,0,963,0.297,21.45,27.02,0.88,0.13,792,1.2000000000000002,240,2.3000000000000003
+2023,8,9,12,0,26.3,1.77,0.044,0.61,77,997,980,0,0,1.3,77,997,0,980,0.297,19.71,25.14,0.88,0.13,792,1.2000000000000002,237,2.4000000000000004
+2023,8,9,12,30,26.8,1.77,0.044,0.61,78,998,983,0,0,1.3,78,998,0,983,0.297,19.14,24.88,0.88,0.13,792,1.2000000000000002,234,2.3000000000000003
+2023,8,9,13,0,27.3,1.77,0.043000000000000003,0.61,77,996,970,0,0,0.8,77,996,0,970,0.297,17.91,26.29,0.88,0.13,791,1.2000000000000002,230,2.3000000000000003
+2023,8,9,13,30,27.6,1.77,0.043000000000000003,0.61,77,990,942,0,0,0.8,77,990,0,942,0.297,17.6,29.11,0.89,0.13,791,1.2000000000000002,228,2.3000000000000003
+2023,8,9,14,0,27.900000000000002,1.76,0.045,0.61,76,982,900,0,0,0.4,76,982,0,900,0.297,16.82,32.980000000000004,0.89,0.13,791,1.2000000000000002,225,2.3000000000000003
+2023,8,9,14,30,28,1.76,0.045,0.61,74,971,844,0,0,0.4,74,971,0,844,0.296,16.71,37.56,0.89,0.13,790,1.2000000000000002,225,2.3000000000000003
+2023,8,9,15,0,28.1,1.76,0.046,0.61,72,956,776,0,0,0.1,72,956,0,776,0.296,16.2,42.61,0.89,0.13,790,1.2000000000000002,224,2.3000000000000003
+2023,8,9,15,30,27.900000000000002,1.76,0.046,0.61,70,935,696,0,0,0.1,70,935,0,696,0.295,16.39,47.95,0.9,0.13,790,1.3,224,2.4000000000000004
+2023,8,9,16,0,27.8,1.75,0.048,0.61,67,908,607,0,0,-0.1,67,908,0,607,0.293,16.29,53.49,0.9,0.13,790,1.3,225,2.4000000000000004
+2023,8,9,16,30,27.3,1.75,0.048,0.61,64,871,511,0,0,-0.1,64,871,0,511,0.292,16.77,59.13,0.91,0.13,790,1.3,226,2.4000000000000004
+2023,8,9,17,0,26.900000000000002,1.73,0.051000000000000004,0.61,60,823,410,0,0,0,60,823,0,410,0.29,17.23,64.82000000000001,0.91,0.13,790,1.3,227,2.4000000000000004
+2023,8,9,17,30,25.400000000000002,1.73,0.051000000000000004,0.61,54,757,307,0,0,0,95,601,4,296,0.289,18.82,70.51,0.92,0.13,790,1.4000000000000001,230,1.7000000000000002
+2023,8,9,18,0,24,1.71,0.053,0.61,47,662,205,0,8,4.5,93,342,7,175,0.28800000000000003,28.19,76.16,0.92,0.13,790,1.4000000000000001,233,1
+2023,8,9,18,30,22.700000000000003,1.71,0.053,0.61,36,516,110,5,7,4.5,66,138,68,86,0.28800000000000003,30.48,81.72,0.92,0.13,790,1.4000000000000001,239,1
+2023,8,9,19,0,21.5,1.71,0.052000000000000005,0.61,20,257,33,7,7,4.3,24,6,100,24,0.28700000000000003,32.5,87.10000000000001,0.92,0.13,790,1.4000000000000001,245,0.9
+2023,8,9,19,30,20.900000000000002,1.71,0.052000000000000005,0.61,0,0,0,1,8,4.3,0,0,14,0,0.28700000000000003,33.72,92.61,0.92,0.13,790,1.4000000000000001,264,1
+2023,8,9,20,0,20.400000000000002,1.72,0.05,0.61,0,0,0,0,7,3.6,0,0,0,0,0.28700000000000003,33.13,97.75,0.92,0.13,790,1.4000000000000001,284,1.2000000000000002
+2023,8,9,20,30,19.700000000000003,1.72,0.05,0.61,0,0,0,0,7,3.7,0,0,0,0,0.28700000000000003,34.64,102.63,0.92,0.13,791,1.5,294,1.2000000000000002
+2023,8,9,21,0,19,1.72,0.047,0.61,0,0,0,0,7,3.8000000000000003,0,0,0,0,0.28600000000000003,36.62,107.21000000000001,0.91,0.13,791,1.5,304,1.3
+2023,8,9,21,30,18.5,1.72,0.047,0.61,0,0,0,0,7,3.8000000000000003,0,0,0,0,0.28600000000000003,37.78,111.41,0.91,0.13,791,1.4000000000000001,311,1.2000000000000002
+2023,8,9,22,0,18,1.68,0.05,0.61,0,0,0,0,0,3.7,0,0,0,0,0.28500000000000003,38.660000000000004,115.15,0.91,0.13,791,1.4000000000000001,317,1.2000000000000002
+2023,8,9,22,30,17.400000000000002,1.68,0.05,0.61,0,0,0,0,0,3.7,0,0,0,0,0.28500000000000003,40.15,118.33,0.92,0.13,791,1.4000000000000001,322,1.1
+2023,8,9,23,0,16.900000000000002,1.62,0.058,0.61,0,0,0,0,0,4,0,0,0,0,0.28400000000000003,42.24,120.87,0.92,0.13,791,1.4000000000000001,326,1.1
+2023,8,9,23,30,16.400000000000002,1.62,0.058,0.61,0,0,0,0,7,4,0,0,0,0,0.28500000000000003,43.6,122.67,0.93,0.13,791,1.4000000000000001,329,1
+2023,8,10,0,0,16,1.59,0.068,0.61,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.28500000000000003,44.43,123.66,0.93,0.13,791,1.5,332,1
+2023,8,10,0,30,16,1.59,0.068,0.61,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.28500000000000003,44.43,123.8,0.93,0.13,791,1.5,336,0.9
+2023,8,10,1,0,16,1.58,0.078,0.61,0,0,0,0,7,3.7,0,0,0,0,0.28500000000000003,43.85,123.08,0.93,0.13,791,1.5,340,0.8
+2023,8,10,1,30,16.1,1.58,0.078,0.61,0,0,0,0,8,3.7,0,0,0,0,0.28600000000000003,43.57,121.54,0.9400000000000001,0.13,791,1.5,179,0.6000000000000001
+2023,8,10,2,0,16.1,1.59,0.083,0.61,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.28600000000000003,42.63,119.23,0.9400000000000001,0.13,791,1.5,17,0.30000000000000004
+2023,8,10,2,30,16,1.59,0.083,0.61,0,0,0,0,8,3.4000000000000004,0,0,0,0,0.28700000000000003,42.910000000000004,116.24000000000001,0.9400000000000001,0.13,791,1.5,70,0.4
+2023,8,10,3,0,15.9,1.59,0.082,0.61,0,0,0,0,8,3.2,0,0,0,0,0.28800000000000003,42.550000000000004,112.68,0.9400000000000001,0.13,791,1.5,123,0.4
+2023,8,10,3,30,15.4,1.59,0.082,0.61,0,0,0,0,8,3.2,0,0,0,0,0.28800000000000003,43.93,108.62,0.9400000000000001,0.13,791,1.5,142,0.6000000000000001
+2023,8,10,4,0,14.9,1.57,0.081,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.289,44.47,104.16,0.9400000000000001,0.13,791,1.5,161,0.8
+2023,8,10,4,30,14.5,1.57,0.081,0.61,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.289,45.63,99.36,0.9400000000000001,0.13,791,1.6,168,0.9
+2023,8,10,5,0,14.200000000000001,1.54,0.083,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.29,46.31,94.3,0.9400000000000001,0.13,791,1.6,175,1
+2023,8,10,5,30,15.8,1.54,0.083,0.61,13,109,15,5,3,2.8000000000000003,10,1,71,10,0.289,41.79,88.75,0.9400000000000001,0.13,791,1.6,178,1.3
+2023,8,10,6,0,17.400000000000002,1.51,0.085,0.61,35,382,78,4,7,3.3000000000000003,46,39,54,50,0.289,39.04,83.5,0.9400000000000001,0.13,791,1.6,182,1.6
+2023,8,10,6,30,19.5,1.51,0.085,0.61,51,559,167,0,5,3.3000000000000003,81,110,7,104,0.289,34.24,77.98,0.9400000000000001,0.13,791,1.6,192,2.1
+2023,8,10,7,0,21.6,1.49,0.08600000000000001,0.61,61,672,265,0,3,2.1,102,170,0,154,0.289,27.650000000000002,72.36,0.9400000000000001,0.13,791,1.6,202,2.6
+2023,8,10,7,30,23.400000000000002,1.49,0.08600000000000001,0.61,69,752,367,0,8,2.1,82,35,0,96,0.28800000000000003,24.79,66.69,0.93,0.13,791,1.6,217,3.2
+2023,8,10,8,0,25.200000000000003,1.48,0.082,0.61,76,809,468,0,3,2.4000000000000004,212,195,0,307,0.28800000000000003,22.62,61,0.93,0.13,791,1.6,232,3.8000000000000003
+2023,8,10,8,30,26.1,1.48,0.082,0.61,81,852,565,0,3,2.4000000000000004,191,522,0,488,0.28800000000000003,21.45,55.35,0.93,0.13,791,1.6,235,4.2
+2023,8,10,9,0,27,1.48,0.078,0.61,84,886,656,0,0,3.1,209,507,7,536,0.28800000000000003,21.39,49.79,0.93,0.13,791,1.5,238,4.7
+2023,8,10,9,30,27.8,1.48,0.078,0.61,87,909,737,2,8,3.1,270,483,21,615,0.28800000000000003,20.41,44.39,0.93,0.13,791,1.6,239,5
+2023,8,10,10,0,28.700000000000003,1.47,0.076,0.61,89,928,808,2,0,3.3000000000000003,176,744,29,752,0.28800000000000003,19.68,39.25,0.93,0.13,791,1.6,240,5.300000000000001
+2023,8,10,10,30,29.3,1.47,0.076,0.61,89,947,869,1,0,3.3000000000000003,103,921,14,862,0.28800000000000003,19.01,34.53,0.93,0.13,791,1.6,241,5.5
+2023,8,10,11,0,29.900000000000002,1.67,0.058,0.61,85,965,917,0,0,3,98,939,4,908,0.28800000000000003,17.95,30.44,0.93,0.13,791,1.6,243,5.6000000000000005
+2023,8,10,11,30,30.3,1.67,0.058,0.61,89,967,948,0,0,3,89,967,0,948,0.28800000000000003,17.53,27.28,0.9400000000000001,0.13,790,1.6,244,5.6000000000000005
+2023,8,10,12,0,30.8,1.59,0.069,0.61,92,964,963,0,0,2.3000000000000003,92,964,0,963,0.28800000000000003,16.26,25.43,0.9400000000000001,0.13,790,1.6,246,5.6000000000000005
+2023,8,10,12,30,30.900000000000002,1.59,0.069,0.61,95,961,965,0,0,2.3000000000000003,95,961,0,965,0.28700000000000003,16.17,25.18,0.9400000000000001,0.13,790,1.6,246,5.4
+2023,8,10,13,0,31,1.54,0.077,0.61,97,955,951,0,0,1.9000000000000001,97,955,0,951,0.28600000000000003,15.66,26.580000000000002,0.9500000000000001,0.13,790,1.7000000000000002,247,5.300000000000001
+2023,8,10,13,30,31,1.54,0.077,0.61,95,950,923,0,0,1.9000000000000001,95,950,0,923,0.28500000000000003,15.66,29.38,0.9500000000000001,0.13,790,1.7000000000000002,245,5.1000000000000005
+2023,8,10,14,0,31,1.54,0.075,0.61,93,942,881,0,0,1.9000000000000001,125,868,0,851,0.28400000000000003,15.65,33.24,0.9500000000000001,0.13,790,1.7000000000000002,244,4.9
+2023,8,10,14,30,30.700000000000003,1.54,0.075,0.61,92,927,824,0,8,1.9000000000000001,310,262,0,517,0.28300000000000003,15.9,37.800000000000004,0.9500000000000001,0.13,789,1.7000000000000002,240,4.800000000000001
+2023,8,10,15,0,30.400000000000002,1.52,0.082,0.61,91,906,755,0,0,2.2,242,445,0,568,0.28300000000000003,16.54,42.84,0.9500000000000001,0.13,789,1.8,237,4.800000000000001
+2023,8,10,15,30,29.8,1.52,0.082,0.61,88,882,676,0,0,2.2,110,835,0,667,0.28200000000000003,17.12,48.17,0.9500000000000001,0.13,789,1.8,232,4.7
+2023,8,10,16,0,29.3,1.53,0.085,0.61,85,850,588,0,0,2.9000000000000004,93,833,0,586,0.28200000000000003,18.54,53.7,0.9500000000000001,0.13,789,1.9000000000000001,228,4.7
+2023,8,10,16,30,28.5,1.53,0.085,0.61,79,811,493,0,0,2.9000000000000004,182,441,0,407,0.28200000000000003,19.41,59.34,0.9500000000000001,0.13,789,1.9000000000000001,222,4.6000000000000005
+2023,8,10,17,0,27.6,1.54,0.08600000000000001,0.61,72,760,393,0,8,4,181,170,0,253,0.28200000000000003,22.11,65.02,0.9500000000000001,0.13,789,1.9000000000000001,216,4.4
+2023,8,10,17,30,26.3,1.54,0.08600000000000001,0.61,64,689,292,0,8,4.1000000000000005,130,353,11,247,0.28200000000000003,23.89,70.71000000000001,0.9500000000000001,0.13,790,2,210,3.9000000000000004
+2023,8,10,18,0,25,1.55,0.084,0.61,53,590,192,0,7,6,74,363,14,160,0.28200000000000003,29.63,76.37,0.9500000000000001,0.13,790,2,203,3.4000000000000004
+2023,8,10,18,30,23.5,1.55,0.084,0.61,39,432,100,4,7,6,61,181,79,86,0.28200000000000003,32.410000000000004,81.93,0.9500000000000001,0.13,790,2,199,3.1
+2023,8,10,19,0,22.1,1.54,0.08600000000000001,0.61,19,169,27,7,7,7.6000000000000005,20,4,100,20,0.28200000000000003,39.36,87.31,0.9500000000000001,0.13,791,2.1,196,2.8000000000000003
+2023,8,10,19,30,21.5,1.54,0.08600000000000001,0.61,0,0,0,1,7,7.6000000000000005,0,0,14,0,0.28200000000000003,40.82,92.84,0.9500000000000001,0.13,791,2.1,198,2.7
+2023,8,10,20,0,21,1.52,0.098,0.61,0,0,0,0,7,8.6,0,0,0,0,0.28200000000000003,44.92,97.98,0.96,0.13,791,2.2,200,2.7
+2023,8,10,20,30,20.5,1.52,0.098,0.61,0,0,0,0,7,8.6,0,0,0,0,0.281,46.38,102.88,0.96,0.13,792,2.2,205,2.3000000000000003
+2023,8,10,21,0,20.1,1.5,0.112,0.61,0,0,0,0,8,9.3,0,0,0,0,0.281,49.9,107.47,0.96,0.13,792,2.3000000000000003,210,1.9000000000000001
+2023,8,10,21,30,19.700000000000003,1.5,0.112,0.61,0,0,0,0,8,9.3,0,0,0,0,0.281,51.15,111.67,0.96,0.13,792,2.3000000000000003,212,1.7000000000000002
+2023,8,10,22,0,19.400000000000002,1.49,0.11900000000000001,0.61,0,0,0,0,8,9.8,0,0,0,0,0.281,53.75,115.42,0.96,0.13,792,2.3000000000000003,214,1.4000000000000001
+2023,8,10,22,30,19.1,1.49,0.11900000000000001,0.61,0,0,0,0,8,9.8,0,0,0,0,0.281,54.76,118.61,0.97,0.13,792,2.3000000000000003,211,1.3
+2023,8,10,23,0,18.8,1.49,0.123,0.61,0,0,0,0,8,10.100000000000001,0,0,0,0,0.281,57.02,121.16,0.97,0.13,792,2.3000000000000003,208,1.1
+2023,8,10,23,30,18.5,1.49,0.123,0.61,0,0,0,0,3,10.100000000000001,0,0,0,0,0.28,58.1,122.97,0.96,0.13,792,2.3000000000000003,202,1
+2023,8,11,0,0,18.2,1.5,0.11800000000000001,0.61,0,0,0,0,8,10.4,0,0,0,0,0.28,60.410000000000004,123.96000000000001,0.96,0.13,792,2.3000000000000003,196,1
+2023,8,11,0,30,17.900000000000002,1.5,0.11800000000000001,0.61,0,0,0,0,0,10.4,0,0,0,0,0.28,61.56,124.10000000000001,0.96,0.13,792,2.3000000000000003,191,1
+2023,8,11,1,0,17.7,1.54,0.10200000000000001,0.61,0,0,0,0,0,10.700000000000001,0,0,0,0,0.28,63.42,123.37,0.96,0.13,792,2.2,185,1
+2023,8,11,1,30,17.3,1.54,0.10200000000000001,0.61,0,0,0,0,0,10.700000000000001,0,0,0,0,0.28,65.03,121.81,0.9500000000000001,0.13,792,2.2,184,1.1
+2023,8,11,2,0,16.900000000000002,1.58,0.085,0.61,0,0,0,0,0,10.9,0,0,0,0,0.28,67.72,119.49000000000001,0.9500000000000001,0.13,792,2.1,182,1.1
+2023,8,11,2,30,16.5,1.58,0.085,0.61,0,0,0,0,0,10.9,0,0,0,0,0.281,69.46000000000001,116.49000000000001,0.9500000000000001,0.13,792,2.1,182,1.2000000000000002
+2023,8,11,3,0,16.1,1.61,0.079,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.281,72.21000000000001,112.91,0.9500000000000001,0.13,792,2,183,1.3
+2023,8,11,3,30,15.8,1.61,0.079,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28200000000000003,73.61,108.83,0.9500000000000001,0.13,792,2,186,1.3
+2023,8,11,4,0,15.5,1.62,0.079,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28200000000000003,75.78,104.36,0.9500000000000001,0.13,792,2,189,1.3
+2023,8,11,4,30,15.5,1.62,0.079,0.61,0,0,0,0,0,11.3,0,0,0,0,0.28300000000000003,75.88,99.55,0.9500000000000001,0.13,793,2,194,1.4000000000000001
+2023,8,11,5,0,15.5,1.6300000000000001,0.083,0.61,0,0,0,0,3,11.200000000000001,0,0,0,0,0.28300000000000003,75.78,94.48,0.9500000000000001,0.13,793,2,199,1.4000000000000001
+2023,8,11,5,30,16.6,1.6300000000000001,0.083,0.61,12,103,14,2,3,11.200000000000001,9,42,36,10,0.28300000000000003,70.66,88.91,0.9500000000000001,0.13,793,2,206,2.1
+2023,8,11,6,0,17.7,1.6300000000000001,0.08700000000000001,0.61,34,369,75,4,3,10.9,45,84,57,54,0.28400000000000003,64.26,83.66,0.9500000000000001,0.13,793,2,214,2.8000000000000003
+2023,8,11,6,30,19.200000000000003,1.6300000000000001,0.08700000000000001,0.61,50,544,162,0,0,10.9,64,431,0,153,0.28500000000000003,58.52,78.14,0.9500000000000001,0.13,793,2,222,3
+2023,8,11,7,0,20.700000000000003,1.6400000000000001,0.091,0.61,62,656,259,0,0,9.3,86,548,7,251,0.28600000000000003,48.050000000000004,72.51,0.9500000000000001,0.13,793,2,230,3.3000000000000003
+2023,8,11,7,30,22,1.6400000000000001,0.091,0.61,71,732,359,0,3,9.3,137,444,7,312,0.28600000000000003,44.38,66.84,0.9500000000000001,0.13,793,2,235,3.3000000000000003
+2023,8,11,8,0,23.400000000000002,1.6300000000000001,0.095,0.61,80,786,459,0,0,7.4,150,559,7,420,0.28600000000000003,35.82,61.15,0.9500000000000001,0.13,794,1.9000000000000001,241,3.3000000000000003
+2023,8,11,8,30,24.400000000000002,1.6300000000000001,0.095,0.61,85,830,555,0,0,7.4,85,830,0,555,0.28600000000000003,33.730000000000004,55.51,0.9500000000000001,0.13,794,1.9000000000000001,244,3
+2023,8,11,9,0,25.5,1.6600000000000001,0.091,0.61,89,864,645,0,0,5.5,89,864,0,645,0.28600000000000003,27.61,49.95,0.9500000000000001,0.13,794,1.9000000000000001,246,2.8000000000000003
+2023,8,11,9,30,26.400000000000002,1.6600000000000001,0.091,0.61,91,892,727,0,0,5.4,91,892,0,727,0.28600000000000003,26.150000000000002,44.56,0.9500000000000001,0.13,793,1.9000000000000001,245,2.6
+2023,8,11,10,0,27.3,1.7,0.083,0.61,93,914,799,0,0,4.1000000000000005,93,914,0,799,0.28600000000000003,22.59,39.44,0.9500000000000001,0.13,793,1.9000000000000001,244,2.4000000000000004
+2023,8,11,10,30,27.900000000000002,1.7,0.083,0.61,89,937,859,0,0,4.1000000000000005,89,937,0,859,0.28600000000000003,21.82,34.74,0.9400000000000001,0.13,793,1.9000000000000001,243,2.5
+2023,8,11,11,0,28.6,1.71,0.056,0.61,84,958,908,0,0,3.7,84,958,0,908,0.28600000000000003,20.37,30.67,0.93,0.13,793,1.9000000000000001,242,2.5
+2023,8,11,11,30,29,1.71,0.056,0.61,84,964,939,0,0,3.7,99,937,0,930,0.28600000000000003,19.91,27.54,0.9400000000000001,0.13,793,1.9000000000000001,245,2.7
+2023,8,11,12,0,29.400000000000002,1.69,0.056,0.61,85,966,955,0,0,3.8000000000000003,149,776,0,848,0.28600000000000003,19.52,25.71,0.9400000000000001,0.13,792,1.9000000000000001,249,2.9000000000000004
+2023,8,11,12,30,29.400000000000002,1.69,0.056,0.61,87,963,956,0,0,3.8000000000000003,146,825,0,891,0.28600000000000003,19.52,25.48,0.9400000000000001,0.13,792,2,255,3.1
+2023,8,11,13,0,29.5,1.6500000000000001,0.064,0.61,89,956,942,0,0,4.1000000000000005,231,566,0,736,0.28600000000000003,19.87,26.87,0.9400000000000001,0.13,792,2,261,3.4000000000000004
+2023,8,11,13,30,29.200000000000003,1.6500000000000001,0.064,0.61,91,945,912,0,8,4.1000000000000005,332,265,0,562,0.28600000000000003,20.21,29.66,0.9500000000000001,0.13,792,2.1,268,3.6
+2023,8,11,14,0,28.900000000000002,1.59,0.077,0.61,93,929,868,0,8,4.7,334,253,0,545,0.28700000000000003,21.41,33.5,0.9500000000000001,0.13,792,2.1,275,3.9000000000000004
+2023,8,11,14,30,28.3,1.59,0.077,0.61,92,913,811,0,8,4.7,322,223,0,498,0.28700000000000003,22.16,38.050000000000004,0.96,0.13,792,2.2,281,3.9000000000000004
+2023,8,11,15,0,27.700000000000003,1.57,0.085,0.61,92,890,742,0,8,5.5,282,177,0,411,0.28700000000000003,24.26,43.07,0.96,0.13,792,2.3000000000000003,287,3.9000000000000004
+2023,8,11,15,30,27,1.57,0.085,0.61,88,867,664,0,5,5.4,228,254,0,397,0.28600000000000003,25.27,48.4,0.96,0.13,792,2.3000000000000003,294,3.6
+2023,8,11,16,0,26.200000000000003,1.57,0.085,0.61,84,837,577,0,8,6.300000000000001,230,370,0,448,0.28600000000000003,27.990000000000002,53.92,0.96,0.13,792,2.3000000000000003,300,3.3000000000000003
+2023,8,11,16,30,25.5,1.57,0.085,0.61,76,803,483,0,8,6.2,174,281,0,316,0.28600000000000003,29.17,59.550000000000004,0.9500000000000001,0.13,792,2.3000000000000003,311,2.8000000000000003
+2023,8,11,17,0,24.8,1.6,0.076,0.61,69,757,386,0,5,6.7,164,104,4,208,0.28600000000000003,31.44,65.24,0.9500000000000001,0.14,793,2.3000000000000003,322,2.3000000000000003
+2023,8,11,17,30,24.1,1.6,0.076,0.61,59,697,287,0,8,6.7,116,126,4,157,0.28600000000000003,32.78,70.93,0.9500000000000001,0.14,793,2.3000000000000003,340,1.9000000000000001
+2023,8,11,18,0,23.400000000000002,1.6400000000000001,0.063,0.61,48,610,190,0,8,7.4,72,250,0,130,0.28600000000000003,35.9,76.58,0.9500000000000001,0.14,793,2.2,359,1.4000000000000001
+2023,8,11,18,30,22.3,1.6400000000000001,0.063,0.61,35,466,99,4,8,7.4,64,170,57,87,0.28600000000000003,38.36,82.15,0.9400000000000001,0.14,793,2.2,198,1.2000000000000002
+2023,8,11,19,0,21.200000000000003,1.6600000000000001,0.054,0.61,17,200,26,4,0,8,18,41,57,20,0.28600000000000003,42.54,87.52,0.9400000000000001,0.14,793,2.2,36,0.9
+2023,8,11,19,30,20.6,1.6600000000000001,0.054,0.61,0,0,0,0,8,8,0,0,0,0,0.28600000000000003,44.13,93.07000000000001,0.9400000000000001,0.14,793,2.1,42,1
+2023,8,11,20,0,20.1,1.67,0.05,0.61,0,0,0,0,8,7.800000000000001,0,0,0,0,0.28600000000000003,45.1,98.22,0.9400000000000001,0.14,794,2.1,48,1
+2023,8,11,20,30,19.6,1.67,0.05,0.61,0,0,0,0,7,7.800000000000001,0,0,0,0,0.28600000000000003,46.51,103.13,0.9400000000000001,0.14,794,2.1,49,0.9
+2023,8,11,21,0,19.1,1.68,0.047,0.61,0,0,0,0,7,7.800000000000001,0,0,0,0,0.28600000000000003,48,107.73,0.9400000000000001,0.14,794,2.1,51,0.9
+2023,8,11,21,30,18.7,1.68,0.047,0.61,0,0,0,0,7,7.800000000000001,0,0,0,0,0.28600000000000003,49.21,111.94,0.9400000000000001,0.14,794,2.1,50,0.8
+2023,8,11,22,0,18.2,1.68,0.045,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28600000000000003,51.19,115.7,0.93,0.14,794,2.1,49,0.8
+2023,8,11,22,30,17.900000000000002,1.68,0.045,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28600000000000003,52.160000000000004,118.9,0.93,0.14,794,2.1,47,0.7000000000000001
+2023,8,11,23,0,17.5,1.68,0.046,0.61,0,0,0,0,7,8.1,0,0,0,0,0.28500000000000003,54.13,121.46000000000001,0.93,0.14,794,2.1,45,0.7000000000000001
+2023,8,11,23,30,17.400000000000002,1.68,0.046,0.61,0,0,0,0,7,8.1,0,0,0,0,0.28500000000000003,54.47,123.27,0.9400000000000001,0.14,794,2.1,41,0.6000000000000001
+2023,8,12,0,0,17.2,1.67,0.048,0.61,0,0,0,0,7,8.1,0,0,0,0,0.28500000000000003,55.01,124.26,0.9400000000000001,0.14,794,2.1,37,0.5
+2023,8,12,0,30,17.1,1.67,0.048,0.61,0,0,0,0,7,8.1,0,0,0,0,0.28500000000000003,55.36,124.39,0.9400000000000001,0.14,794,2.1,193,0.4
+2023,8,12,1,0,17,1.6600000000000001,0.05,0.61,0,0,0,0,7,8,0,0,0,0,0.28400000000000003,55.21,123.66,0.9400000000000001,0.14,794,2.1,349,0.30000000000000004
+2023,8,12,1,30,16.900000000000002,1.6600000000000001,0.05,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28400000000000003,55.56,122.09,0.9400000000000001,0.14,794,2.1,351,0.4
+2023,8,12,2,0,16.7,1.6600000000000001,0.053,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28400000000000003,56.01,119.75,0.9400000000000001,0.14,794,2.1,354,0.4
+2023,8,12,2,30,16.400000000000002,1.6600000000000001,0.053,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28400000000000003,57.09,116.74000000000001,0.9400000000000001,0.14,794,2.1,192,0.4
+2023,8,12,3,0,16.2,1.6500000000000001,0.057,0.61,0,0,0,0,8,7.9,0,0,0,0,0.28400000000000003,58.06,113.14,0.9400000000000001,0.14,794,2.1,31,0.5
+2023,8,12,3,30,16,1.6500000000000001,0.057,0.61,0,0,0,0,8,7.9,0,0,0,0,0.28400000000000003,58.800000000000004,109.05,0.9400000000000001,0.14,794,2.1,39,0.5
+2023,8,12,4,0,15.700000000000001,1.6400000000000001,0.06,0.61,0,0,0,0,7,8,0,0,0,0,0.28400000000000003,60.32,104.56,0.9400000000000001,0.14,794,2.1,47,0.6000000000000001
+2023,8,12,4,30,15.600000000000001,1.6400000000000001,0.06,0.61,0,0,0,0,7,8,0,0,0,0,0.28400000000000003,60.71,99.74000000000001,0.9400000000000001,0.14,794,2.1,51,0.6000000000000001
+2023,8,12,5,0,15.5,1.6300000000000001,0.063,0.61,0,0,0,0,7,8.200000000000001,0,0,0,0,0.28400000000000003,61.64,94.66,0.9400000000000001,0.14,794,2.1,56,0.7000000000000001
+2023,8,12,5,30,16.5,1.6300000000000001,0.063,0.61,10,94,12,5,7,8.200000000000001,7,0,71,7,0.28400000000000003,57.84,89.06,0.9400000000000001,0.14,794,2.1,57,1.2000000000000002
+2023,8,12,6,0,17.6,1.62,0.067,0.61,32,391,74,5,7,8.4,38,26,71,41,0.28400000000000003,54.69,83.82000000000001,0.9500000000000001,0.14,795,2.1,58,1.7000000000000002
+2023,8,12,6,30,19,1.62,0.067,0.61,46,568,161,0,7,8.4,72,101,0,92,0.28400000000000003,50.11,78.3,0.9500000000000001,0.14,795,2,62,2
+2023,8,12,7,0,20.400000000000002,1.6,0.07100000000000001,0.61,57,678,259,0,5,7.4,124,157,7,171,0.28400000000000003,42.9,72.67,0.9500000000000001,0.14,795,2,66,2.3000000000000003
+2023,8,12,7,30,22,1.6,0.07100000000000001,0.61,65,755,360,0,3,7.4,170,351,0,307,0.28400000000000003,38.9,66.99,0.9500000000000001,0.14,795,2,69,2.4000000000000004
+2023,8,12,8,0,23.700000000000003,1.6,0.07100000000000001,0.61,72,809,460,0,3,5.7,153,567,0,425,0.28400000000000003,31.21,61.31,0.9500000000000001,0.14,795,2,72,2.5
+2023,8,12,8,30,24.700000000000003,1.6,0.07100000000000001,0.61,77,850,556,0,0,5.7,108,761,0,537,0.28400000000000003,29.400000000000002,55.660000000000004,0.9500000000000001,0.14,795,2,77,2.4000000000000004
+2023,8,12,9,0,25.8,1.6,0.07,0.61,81,881,646,0,0,5,81,881,0,646,0.28300000000000003,26.34,50.120000000000005,0.9500000000000001,0.14,795,2,82,2.2
+2023,8,12,9,30,26.6,1.6,0.07,0.61,84,905,727,0,0,5,101,873,0,721,0.28200000000000003,25.1,44.74,0.9500000000000001,0.14,794,2,90,1.9000000000000001
+2023,8,12,10,0,27.3,1.6,0.07,0.61,88,922,798,0,0,4.9,106,890,0,791,0.28200000000000003,23.830000000000002,39.63,0.9500000000000001,0.14,794,2,97,1.6
+2023,8,12,10,30,27.900000000000002,1.6,0.07,0.61,87,939,857,0,0,4.9,92,928,4,853,0.281,23.01,34.95,0.9500000000000001,0.14,794,2,111,1.2000000000000002
+2023,8,12,11,0,28.5,1.54,0.06,0.61,86,952,903,0,0,4.800000000000001,219,570,4,708,0.28,22.1,30.91,0.9500000000000001,0.14,794,2,126,0.8
+2023,8,12,11,30,28.8,1.54,0.06,0.61,89,957,935,0,3,4.800000000000001,253,433,0,636,0.28,21.69,27.810000000000002,0.9500000000000001,0.14,793,2,174,0.7000000000000001
+2023,8,12,12,0,29.200000000000003,1.54,0.064,0.61,90,958,951,0,8,4.800000000000001,196,515,0,659,0.279,21.22,26,0.9500000000000001,0.14,793,2,223,0.6000000000000001
+2023,8,12,12,30,29.5,1.54,0.064,0.61,91,956,952,0,7,4.800000000000001,137,7,0,143,0.278,20.86,25.78,0.9500000000000001,0.14,793,2,240,1
+2023,8,12,13,0,29.900000000000002,1.55,0.067,0.61,91,952,938,0,8,4.9,304,161,0,447,0.278,20.55,27.17,0.9500000000000001,0.14,793,2.1,257,1.4000000000000001
+2023,8,12,13,30,29.900000000000002,1.55,0.067,0.61,90,948,911,0,7,4.9,217,78,0,285,0.278,20.53,29.95,0.9500000000000001,0.14,792,2.1,267,2
+2023,8,12,14,0,30,1.54,0.062,0.61,87,942,870,0,8,5.2,319,214,0,497,0.278,20.8,33.77,0.9500000000000001,0.14,792,2.1,276,2.6
+2023,8,12,14,30,29.6,1.54,0.062,0.61,86,928,814,0,8,5.2,321,113,0,410,0.278,21.28,38.300000000000004,0.96,0.14,792,2.1,282,3.2
+2023,8,12,15,0,29.3,1.54,0.065,0.61,83,910,745,0,8,5.6000000000000005,190,648,7,662,0.278,22.330000000000002,43.31,0.96,0.14,792,2.1,289,3.8000000000000003
+2023,8,12,15,30,28.6,1.54,0.065,0.61,80,888,667,0,7,5.6000000000000005,137,763,14,641,0.278,23.25,48.63,0.96,0.14,792,2.2,293,4.2
+2023,8,12,16,0,27.900000000000002,1.55,0.065,0.61,75,861,579,0,7,6.2,208,434,0,462,0.279,25.27,54.14,0.9500000000000001,0.14,792,2.2,296,4.6000000000000005
+2023,8,12,16,30,27,1.55,0.065,0.61,70,826,486,0,7,6.2,138,599,14,440,0.279,26.63,59.77,0.9500000000000001,0.14,792,2.2,299,4.6000000000000005
+2023,8,12,17,0,26,1.56,0.06,0.61,63,780,387,0,8,6.800000000000001,127,507,21,338,0.279,29.42,65.45,0.9500000000000001,0.13,792,2.2,301,4.5
+2023,8,12,17,30,24.900000000000002,1.56,0.06,0.61,55,715,286,0,8,6.800000000000001,111,461,36,260,0.279,31.400000000000002,71.15,0.9500000000000001,0.13,792,2.2,303,4.2
+2023,8,12,18,0,23.8,1.56,0.054,0.61,46,622,188,0,8,7.7,75,265,29,136,0.28,35.59,76.8,0.9500000000000001,0.13,793,2.2,305,3.8000000000000003
+2023,8,12,18,30,22.5,1.56,0.054,0.61,34,472,97,4,3,7.7,52,120,61,68,0.28,38.49,82.37,0.9500000000000001,0.13,793,2.1,306,3
+2023,8,12,19,0,21.1,1.57,0.049,0.61,17,197,25,5,3,8.3,16,14,68,17,0.281,43.92,87.74,0.9400000000000001,0.13,793,2.1,306,2.2
+2023,8,12,19,30,20.3,1.57,0.049,0.61,0,0,0,0,0,8.3,0,0,0,0,0.28200000000000003,46.13,93.31,0.9400000000000001,0.13,793,2.1,306,1.8
+2023,8,12,20,0,19.400000000000002,1.58,0.046,0.61,0,0,0,0,4,8.5,0,0,0,0,0.28200000000000003,49.34,98.47,0.9400000000000001,0.13,793,2.1,305,1.4000000000000001
+2023,8,12,20,30,18.900000000000002,1.58,0.046,0.61,0,0,0,0,0,8.5,0,0,0,0,0.28300000000000003,50.9,103.38,0.9400000000000001,0.13,793,2.2,300,1.2000000000000002
+2023,8,12,21,0,18.400000000000002,1.57,0.048,0.61,0,0,0,0,0,8.6,0,0,0,0,0.28300000000000003,52.730000000000004,107.99000000000001,0.9400000000000001,0.13,793,2.2,296,1
+2023,8,12,21,30,18.2,1.57,0.048,0.61,0,0,0,0,0,8.6,0,0,0,0,0.28400000000000003,53.46,112.22,0.9400000000000001,0.13,794,2.2,286,0.9
+2023,8,12,22,0,17.900000000000002,1.54,0.053,0.61,0,0,0,0,0,8.6,0,0,0,0,0.28400000000000003,54.53,115.98,0.9500000000000001,0.13,794,2.2,276,0.8
+2023,8,12,22,30,17.7,1.54,0.053,0.61,0,0,0,0,0,8.6,0,0,0,0,0.28500000000000003,55.22,119.2,0.9500000000000001,0.13,794,2.2,273,0.9
+2023,8,12,23,0,17.5,1.52,0.057,0.61,0,0,0,0,0,8.5,0,0,0,0,0.28500000000000003,55.7,121.76,0.9500000000000001,0.13,794,2.2,270,0.9
+2023,8,12,23,30,17.3,1.52,0.057,0.61,0,0,0,0,0,8.5,0,0,0,0,0.28500000000000003,56.410000000000004,123.57000000000001,0.9500000000000001,0.13,794,2.1,277,0.9
+2023,8,13,0,0,17.1,1.5,0.057,0.61,0,0,0,0,3,8.3,0,0,0,0,0.28600000000000003,56.230000000000004,124.56,0.9500000000000001,0.13,794,2.1,283,0.9
+2023,8,13,0,30,17,1.5,0.057,0.61,0,0,0,0,3,8.3,0,0,0,0,0.28700000000000003,56.59,124.69,0.9400000000000001,0.13,794,2.1,295,0.9
+2023,8,13,1,0,16.8,1.5,0.056,0.61,0,0,0,0,4,8,0,0,0,0,0.28800000000000003,56.08,123.95,0.9400000000000001,0.13,794,2,307,0.9
+2023,8,13,1,30,16.7,1.5,0.056,0.61,0,0,0,0,3,8,0,0,0,0,0.28800000000000003,56.44,122.37,0.9400000000000001,0.13,794,2,324,1
+2023,8,13,2,0,16.6,1.49,0.054,0.61,0,0,0,0,3,7.800000000000001,0,0,0,0,0.289,56.050000000000004,120.02,0.9400000000000001,0.13,794,2,342,1
+2023,8,13,2,30,16.3,1.49,0.054,0.61,0,0,0,0,3,7.800000000000001,0,0,0,0,0.29,57.120000000000005,116.98,0.9400000000000001,0.13,794,1.9000000000000001,176,1.2000000000000002
+2023,8,13,3,0,16.1,1.49,0.052000000000000005,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,57.94,113.37,0.9400000000000001,0.13,795,1.9000000000000001,9,1.3
+2023,8,13,3,30,15.8,1.49,0.052000000000000005,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,59.06,109.27,0.93,0.13,795,1.9000000000000001,15,1.4000000000000001
+2023,8,13,4,0,15.4,1.49,0.048,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.292,60.69,104.76,0.93,0.13,795,1.8,21,1.5
+2023,8,13,4,30,15.100000000000001,1.49,0.048,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.292,61.870000000000005,99.93,0.93,0.13,795,1.8,23,1.7000000000000002
+2023,8,13,5,0,14.8,1.49,0.045,0.61,0,0,0,0,0,8,0,0,0,0,0.292,63.79,94.84,0.93,0.13,795,1.8,24,1.9000000000000001
+2023,8,13,5,30,15.5,1.49,0.045,0.61,10,112,12,0,0,8,10,112,0,12,0.292,60.99,89.22,0.92,0.13,795,1.7000000000000002,27,2.6
+2023,8,13,6,0,16.2,1.5,0.042,0.61,29,441,75,0,0,8.3,29,441,0,75,0.292,59.29,83.98,0.92,0.13,795,1.7000000000000002,30,3.3000000000000003
+2023,8,13,6,30,17.5,1.5,0.042,0.61,40,621,164,0,0,8.3,40,621,0,164,0.292,54.620000000000005,78.45,0.92,0.13,795,1.7000000000000002,34,3.5
+2023,8,13,7,0,18.8,1.5,0.04,0.61,48,732,264,0,0,8,48,732,0,264,0.292,49.4,72.82000000000001,0.92,0.13,795,1.7000000000000002,39,3.7
+2023,8,13,7,30,20.1,1.5,0.04,0.61,54,804,366,0,0,8,54,804,0,366,0.291,45.63,67.15,0.92,0.13,796,1.7000000000000002,37,3.5
+2023,8,13,8,0,21.5,1.52,0.038,0.61,58,856,467,0,0,7.300000000000001,58,856,0,467,0.291,39.800000000000004,61.46,0.92,0.13,796,1.7000000000000002,36,3.4000000000000004
+2023,8,13,8,30,22.6,1.52,0.038,0.61,62,893,564,0,0,7.300000000000001,62,893,0,564,0.29,37.230000000000004,55.82,0.92,0.13,796,1.7000000000000002,29,3.2
+2023,8,13,9,0,23.8,1.53,0.038,0.61,65,921,654,0,0,6.5,65,921,0,654,0.289,32.85,50.28,0.92,0.13,796,1.7000000000000002,22,3.1
+2023,8,13,9,30,24.700000000000003,1.53,0.038,0.61,68,942,735,0,0,6.5,68,942,0,735,0.28800000000000003,31.13,44.92,0.92,0.13,796,1.7000000000000002,15,3.1
+2023,8,13,10,0,25.6,1.54,0.037,0.61,70,958,806,0,0,5.9,70,958,0,806,0.28800000000000003,28.27,39.83,0.92,0.13,796,1.7000000000000002,8,3.1
+2023,8,13,10,30,26.3,1.54,0.037,0.61,72,971,866,0,0,5.9,72,971,0,866,0.28700000000000003,27.09,35.17,0.92,0.13,795,1.7000000000000002,5,3.1
+2023,8,13,11,0,27.1,1.56,0.035,0.61,72,981,912,0,0,5.4,72,981,0,912,0.28600000000000003,25.1,31.150000000000002,0.92,0.13,795,1.6,2,3.2
+2023,8,13,11,30,27.6,1.56,0.035,0.61,73,987,944,0,0,5.4,73,987,0,944,0.28500000000000003,24.38,28.080000000000002,0.92,0.13,795,1.6,2,3.2
+2023,8,13,12,0,28.1,1.58,0.035,0.61,73,990,961,0,0,5,73,990,0,961,0.28500000000000003,23.04,26.3,0.92,0.13,795,1.6,3,3.2
+2023,8,13,12,30,28.400000000000002,1.58,0.035,0.61,73,991,963,0,0,5,73,991,0,963,0.28400000000000003,22.64,26.080000000000002,0.92,0.13,795,1.6,6,3.3000000000000003
+2023,8,13,13,0,28.700000000000003,1.59,0.034,0.61,73,988,950,0,0,4.6000000000000005,73,988,0,950,0.28400000000000003,21.56,27.47,0.92,0.13,795,1.6,9,3.3000000000000003
+2023,8,13,13,30,28.8,1.59,0.034,0.61,72,983,921,0,0,4.6000000000000005,72,983,0,921,0.28300000000000003,21.41,30.240000000000002,0.92,0.13,794,1.7000000000000002,14,3.4000000000000004
+2023,8,13,14,0,28.900000000000002,1.62,0.036000000000000004,0.61,71,975,879,0,0,4.2,71,975,0,879,0.28300000000000003,20.72,34.04,0.92,0.13,794,1.7000000000000002,18,3.5
+2023,8,13,14,30,28.8,1.62,0.036000000000000004,0.61,71,963,824,0,0,4.2,71,963,0,824,0.28300000000000003,20.84,38.56,0.93,0.13,794,1.7000000000000002,22,3.6
+2023,8,13,15,0,28.6,1.6400000000000001,0.037,0.61,68,948,755,0,0,3.9000000000000004,68,948,0,755,0.28400000000000003,20.650000000000002,43.550000000000004,0.93,0.13,794,1.7000000000000002,27,3.8000000000000003
+2023,8,13,15,30,28.200000000000003,1.6400000000000001,0.037,0.61,66,928,677,0,0,3.9000000000000004,66,928,0,677,0.28400000000000003,21.13,48.86,0.93,0.13,794,1.7000000000000002,30,4.1000000000000005
+2023,8,13,16,0,27.700000000000003,1.6600000000000001,0.038,0.61,64,902,589,0,0,3.8000000000000003,112,751,7,549,0.28400000000000003,21.580000000000002,54.370000000000005,0.93,0.13,794,1.7000000000000002,34,4.3
+2023,8,13,16,30,26.900000000000002,1.6600000000000001,0.038,0.61,59,867,493,0,0,3.8000000000000003,71,832,0,487,0.28400000000000003,22.62,59.99,0.93,0.13,794,1.7000000000000002,38,4.7
+2023,8,13,17,0,26.1,1.67,0.04,0.61,56,819,393,0,0,3.9000000000000004,56,819,0,393,0.28500000000000003,23.87,65.68,0.93,0.13,794,1.7000000000000002,41,5
+2023,8,13,17,30,24.900000000000002,1.67,0.04,0.61,49,754,290,0,0,3.9000000000000004,49,754,0,290,0.28500000000000003,25.66,71.37,0.93,0.13,795,1.7000000000000002,44,5.1000000000000005
+2023,8,13,18,0,23.700000000000003,1.67,0.04,0.61,42,657,189,0,0,4.2,42,657,0,189,0.28500000000000003,28.26,77.03,0.93,0.13,795,1.7000000000000002,48,5.300000000000001
+2023,8,13,18,30,22.200000000000003,1.67,0.04,0.61,31,504,96,0,0,4.3,31,504,0,96,0.28500000000000003,30.970000000000002,82.60000000000001,0.93,0.13,796,1.7000000000000002,51,5.2
+2023,8,13,19,0,20.700000000000003,1.6600000000000001,0.039,0.61,16,214,24,0,0,4.9,16,214,0,24,0.28600000000000003,35.410000000000004,87.97,0.93,0.13,796,1.7000000000000002,53,5.1000000000000005
+2023,8,13,19,30,19.8,1.6600000000000001,0.039,0.61,0,0,0,0,0,4.9,0,0,0,0,0.28600000000000003,37.47,93.55,0.93,0.13,797,1.7000000000000002,55,5.2
+2023,8,13,20,0,18.8,1.6600000000000001,0.037,0.61,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28600000000000003,41.13,98.72,0.93,0.13,797,1.7000000000000002,56,5.2
+2023,8,13,20,30,18.1,1.6600000000000001,0.037,0.61,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28600000000000003,42.97,103.64,0.92,0.13,797,1.7000000000000002,57,5.300000000000001
+2023,8,13,21,0,17.400000000000002,1.6500000000000001,0.036000000000000004,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,45.7,108.26,0.92,0.13,797,1.7000000000000002,59,5.4
+2023,8,13,21,30,16.8,1.6500000000000001,0.036000000000000004,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,47.46,112.5,0.92,0.13,797,1.7000000000000002,60,5.2
+2023,8,13,22,0,16.2,1.6600000000000001,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,49.59,116.27,0.92,0.13,797,1.6,60,5
+2023,8,13,22,30,15.700000000000001,1.6600000000000001,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,51.19,119.49000000000001,0.92,0.13,797,1.6,61,4.800000000000001
+2023,8,13,23,0,15.3,1.67,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,52.52,122.06,0.92,0.13,797,1.6,61,4.6000000000000005
+2023,8,13,23,30,14.8,1.67,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,54.230000000000004,123.88000000000001,0.92,0.13,797,1.6,60,4.3
+2023,8,14,0,0,14.4,1.67,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,55.620000000000005,124.87,0.92,0.13,797,1.6,59,4.1000000000000005
+2023,8,14,0,30,14,1.67,0.035,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,57.07,125,0.92,0.13,797,1.6,58,3.8000000000000003
+2023,8,14,1,0,13.600000000000001,1.68,0.035,0.61,0,0,0,0,0,5.7,0,0,0,0,0.28700000000000003,58.77,124.24000000000001,0.92,0.13,797,1.6,56,3.5
+2023,8,14,1,30,13.3,1.68,0.035,0.61,0,0,0,0,0,5.7,0,0,0,0,0.28700000000000003,59.92,122.65,0.92,0.13,797,1.6,54,3.2
+2023,8,14,2,0,12.9,1.69,0.035,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.28800000000000003,61.85,120.28,0.92,0.13,797,1.6,51,3
+2023,8,14,2,30,12.700000000000001,1.69,0.035,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.28800000000000003,62.660000000000004,117.24000000000001,0.92,0.13,797,1.6,50,2.9000000000000004
+2023,8,14,3,0,12.4,1.7,0.035,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.289,64.18,113.61,0.92,0.13,797,1.6,49,2.8000000000000003
+2023,8,14,3,30,12.100000000000001,1.7,0.035,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.289,65.45,109.49000000000001,0.92,0.13,797,1.6,49,2.8000000000000003
+2023,8,14,4,0,11.9,1.7,0.034,0.61,0,0,0,0,0,5.9,0,0,0,0,0.289,66.57000000000001,104.97,0.92,0.13,797,1.5,48,2.8000000000000003
+2023,8,14,4,30,11.8,1.7,0.034,0.61,0,0,0,0,0,5.9,0,0,0,0,0.289,67.09,100.13,0.92,0.13,798,1.5,49,2.9000000000000004
+2023,8,14,5,0,11.700000000000001,1.71,0.035,0.61,0,0,0,0,0,6,0,0,0,0,0.29,68.02,95.02,0.92,0.13,798,1.5,49,2.9000000000000004
+2023,8,14,5,30,12.8,1.71,0.035,0.61,10,120,11,0,0,6,10,120,0,11,0.29,63.29,89.37,0.92,0.13,798,1.5,49,3.3000000000000003
+2023,8,14,6,0,13.8,1.71,0.035,0.61,27,458,74,0,0,6.1000000000000005,27,458,0,74,0.29,59.74,84.14,0.92,0.13,798,1.5,48,3.6
+2023,8,14,6,30,16,1.71,0.035,0.61,38,637,164,0,0,6.1000000000000005,38,637,0,164,0.29,51.870000000000005,78.61,0.92,0.13,798,1.5,52,3.8000000000000003
+2023,8,14,7,0,18.2,1.71,0.034,0.61,46,745,264,0,0,5.300000000000001,46,745,0,264,0.29,42.61,72.98,0.92,0.13,798,1.5,55,4.1000000000000005
+2023,8,14,7,30,20.200000000000003,1.71,0.034,0.61,52,816,367,0,0,5.300000000000001,52,816,0,367,0.29,37.68,67.3,0.92,0.13,799,1.5,58,4.2
+2023,8,14,8,0,22.200000000000003,1.71,0.034,0.61,56,866,468,0,0,2.5,56,866,0,468,0.29,27.43,61.620000000000005,0.92,0.13,799,1.5,61,4.4
+2023,8,14,8,30,23.400000000000002,1.71,0.034,0.61,61,902,566,0,0,2.5,61,902,0,566,0.289,25.51,55.980000000000004,0.92,0.13,799,1.5,59,4.1000000000000005
+2023,8,14,9,0,24.5,1.71,0.034,0.61,64,930,656,0,0,2.2,64,930,0,656,0.28800000000000003,23.3,50.45,0.92,0.13,799,1.5,57,3.8000000000000003
+2023,8,14,9,30,25.400000000000002,1.71,0.034,0.61,66,952,738,0,0,2.2,66,952,0,738,0.28700000000000003,22.09,45.1,0.92,0.13,799,1.5,53,3.5
+2023,8,14,10,0,26.400000000000002,1.71,0.033,0.61,68,968,809,0,0,2.2,68,968,0,809,0.28600000000000003,20.76,40.03,0.92,0.13,798,1.5,50,3.1
+2023,8,14,10,30,27.200000000000003,1.71,0.033,0.61,68,981,868,0,0,2.2,68,981,0,868,0.28500000000000003,19.81,35.39,0.91,0.13,798,1.5,45,2.9000000000000004
+2023,8,14,11,0,28.1,1.79,0.03,0.61,69,991,915,0,0,2.3000000000000003,69,991,0,915,0.28400000000000003,19,31.400000000000002,0.91,0.13,798,1.5,40,2.6
+2023,8,14,11,30,28.700000000000003,1.79,0.03,0.61,70,997,947,0,0,2.3000000000000003,70,997,0,947,0.28300000000000003,18.35,28.35,0.91,0.13,798,1.5,35,2.5
+2023,8,14,12,0,29.3,1.78,0.029,0.61,69,1001,964,0,0,2.5,69,1001,0,964,0.28200000000000003,17.95,26.6,0.91,0.13,798,1.5,31,2.4000000000000004
+2023,8,14,12,30,29.700000000000003,1.78,0.029,0.61,69,1002,967,0,0,2.5,69,1002,0,967,0.281,17.52,26.39,0.91,0.13,797,1.4000000000000001,29,2.4000000000000004
+2023,8,14,13,0,30.1,1.77,0.028,0.61,69,1000,954,0,0,2.5,69,1000,0,954,0.28,17.21,27.78,0.91,0.13,797,1.4000000000000001,27,2.4000000000000004
+2023,8,14,13,30,30.3,1.77,0.028,0.61,68,996,926,0,0,2.5,68,996,0,926,0.28,17.02,30.53,0.91,0.13,797,1.4000000000000001,28,2.4000000000000004
+2023,8,14,14,0,30.5,1.76,0.027,0.61,66,990,884,0,0,2.4000000000000004,66,990,0,884,0.279,16.68,34.31,0.91,0.13,797,1.4000000000000001,30,2.5
+2023,8,14,14,30,30.400000000000002,1.76,0.027,0.61,64,980,828,0,0,2.4000000000000004,64,980,0,828,0.279,16.77,38.82,0.91,0.13,797,1.4000000000000001,33,2.5
+2023,8,14,15,0,30.3,1.75,0.027,0.61,62,967,760,0,0,2,62,967,0,760,0.28,16.42,43.800000000000004,0.9,0.13,797,1.4000000000000001,37,2.6
+2023,8,14,15,30,29.900000000000002,1.75,0.027,0.61,60,949,681,0,0,2,60,949,0,681,0.28,16.8,49.1,0.9,0.13,797,1.4000000000000001,42,2.7
+2023,8,14,16,0,29.6,1.74,0.026000000000000002,0.61,57,925,593,0,0,1.5,57,925,0,593,0.28,16.46,54.6,0.9,0.13,796,1.3,46,2.8000000000000003
+2023,8,14,16,30,28.900000000000002,1.74,0.026000000000000002,0.61,53,893,497,0,0,1.5,53,893,0,497,0.28,17.14,60.22,0.9,0.13,796,1.3,51,2.9000000000000004
+2023,8,14,17,0,28.200000000000003,1.73,0.026000000000000002,0.61,49,849,396,0,0,1,49,849,0,396,0.28,17.14,65.9,0.9,0.13,796,1.3,55,3
+2023,8,14,17,30,26.8,1.73,0.026000000000000002,0.61,44,788,293,0,0,1,44,788,0,293,0.28,18.62,71.59,0.9,0.13,797,1.3,58,2.6
+2023,8,14,18,0,25.400000000000002,1.72,0.026000000000000002,0.61,38,694,191,0,0,1.5,38,694,0,191,0.281,21.080000000000002,77.25,0.9,0.13,797,1.3,60,2.1
+2023,8,14,18,30,23.200000000000003,1.72,0.026000000000000002,0.61,28,542,96,0,0,1.5,28,542,0,96,0.281,24.03,82.83,0.91,0.13,797,1.2000000000000002,63,1.9000000000000001
+2023,8,14,19,0,21.1,1.71,0.026000000000000002,0.61,14,206,21,0,0,1.3,14,206,0,21,0.281,26.8,88.19,0.91,0.13,797,1.2000000000000002,66,1.6
+2023,8,14,19,30,20.400000000000002,1.71,0.026000000000000002,0.61,0,0,0,0,0,1.3,0,0,0,0,0.281,28.01,93.79,0.91,0.13,798,1.2000000000000002,68,1.7000000000000002
+2023,8,14,20,0,19.700000000000003,1.71,0.026000000000000002,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.281,26.41,98.97,0.91,0.13,798,1.2000000000000002,69,1.8
+2023,8,14,20,30,19.1,1.71,0.026000000000000002,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.281,27.41,103.9,0.91,0.13,798,1.2000000000000002,72,1.8
+2023,8,14,21,0,18.400000000000002,1.71,0.026000000000000002,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.281,26.38,108.53,0.91,0.13,798,1.2000000000000002,74,1.7000000000000002
+2023,8,14,21,30,17.8,1.71,0.026000000000000002,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.28,27.39,112.78,0.91,0.13,798,1.2000000000000002,78,1.6
+2023,8,14,22,0,17.2,1.72,0.027,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28,27.48,116.57000000000001,0.91,0.13,798,1.2000000000000002,82,1.4000000000000001
+2023,8,14,22,30,16.7,1.72,0.027,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.279,28.36,119.8,0.91,0.13,798,1.2000000000000002,89,1.3
+2023,8,14,23,0,16.2,1.72,0.028,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.279,29.79,122.37,0.91,0.13,798,1.2000000000000002,95,1.2000000000000002
+2023,8,14,23,30,15.9,1.72,0.028,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.279,30.36,124.19,0.91,0.13,798,1.2000000000000002,105,1.1
+2023,8,15,0,0,15.700000000000001,1.72,0.029,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.279,32.25,125.18,0.91,0.13,798,1.2000000000000002,115,1
+2023,8,15,0,30,15.600000000000001,1.72,0.029,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.279,32.46,125.3,0.92,0.13,798,1.3,129,1
+2023,8,15,1,0,15.5,1.72,0.03,0.61,0,0,0,0,0,0.1,0,0,0,0,0.279,34.94,124.54,0.92,0.13,798,1.3,142,1
+2023,8,15,1,30,15.5,1.72,0.03,0.61,0,0,0,0,0,0.1,0,0,0,0,0.279,34.94,122.93,0.92,0.13,798,1.3,156,1
+2023,8,15,2,0,15.5,1.73,0.032,0.61,0,0,0,0,0,1.3,0,0,0,0,0.279,38.2,120.55,0.92,0.13,798,1.3,170,0.9
+2023,8,15,2,30,15.4,1.73,0.032,0.61,0,0,0,0,0,1.3,0,0,0,0,0.279,38.44,117.49000000000001,0.92,0.13,798,1.4000000000000001,182,0.8
+2023,8,15,3,0,15.3,1.73,0.033,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.279,43.09,113.84,0.92,0.13,798,1.4000000000000001,195,0.7000000000000001
+2023,8,15,3,30,15.200000000000001,1.73,0.033,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.279,43.37,109.71000000000001,0.92,0.13,798,1.4000000000000001,204,0.7000000000000001
+2023,8,15,4,0,15.100000000000001,1.75,0.035,0.61,0,0,0,0,0,4.3,0,0,0,0,0.279,48.31,105.18,0.92,0.13,799,1.5,213,0.6000000000000001
+2023,8,15,4,30,15,1.75,0.035,0.61,0,0,0,0,0,4.3,0,0,0,0,0.279,48.63,100.32000000000001,0.92,0.13,799,1.5,215,0.6000000000000001
+2023,8,15,5,0,15,1.76,0.036000000000000004,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.279,53.34,95.21000000000001,0.92,0.13,799,1.6,217,0.6000000000000001
+2023,8,15,5,30,16.3,1.76,0.036000000000000004,0.61,9,112,10,0,0,5.6000000000000005,9,112,0,10,0.279,49.09,89.53,0.92,0.13,799,1.6,211,0.7000000000000001
+2023,8,15,6,0,17.5,1.78,0.038,0.61,27,443,71,0,0,6.800000000000001,27,443,0,71,0.279,49.57,84.31,0.93,0.13,799,1.7000000000000002,204,0.9
+2023,8,15,6,30,19.400000000000002,1.78,0.038,0.61,39,623,160,0,0,6.800000000000001,39,623,0,160,0.279,44.03,78.77,0.93,0.13,799,1.7000000000000002,213,1.4000000000000001
+2023,8,15,7,0,21.400000000000002,1.78,0.038,0.61,47,732,259,0,0,8.5,47,732,0,259,0.279,43.46,73.14,0.93,0.13,800,1.7000000000000002,221,1.8
+2023,8,15,7,30,23.200000000000003,1.78,0.038,0.61,53,803,361,0,0,8.5,53,803,0,361,0.279,38.97,67.46000000000001,0.93,0.13,800,1.7000000000000002,224,1.9000000000000001
+2023,8,15,8,0,25.1,1.79,0.039,0.61,59,852,462,0,0,8.8,59,852,0,462,0.278,35.67,61.78,0.93,0.13,800,1.7000000000000002,227,2.1
+2023,8,15,8,30,26.3,1.79,0.039,0.61,63,889,558,0,0,8.8,63,889,0,558,0.277,33.18,56.15,0.93,0.13,799,1.8,228,2
+2023,8,15,9,0,27.6,1.8,0.039,0.61,66,917,648,0,0,8,66,917,0,648,0.277,29.03,50.620000000000005,0.93,0.13,799,1.8,229,1.9000000000000001
+2023,8,15,9,30,28.6,1.8,0.039,0.61,69,938,729,0,0,8,69,938,0,729,0.276,27.400000000000002,45.28,0.93,0.13,799,1.8,232,1.8
+2023,8,15,10,0,29.6,1.8,0.039,0.61,71,955,800,0,0,7.4,71,955,0,800,0.275,24.76,40.22,0.93,0.13,799,1.8,235,1.7000000000000002
+2023,8,15,10,30,30.400000000000002,1.8,0.039,0.61,72,968,859,0,0,7.4,72,968,0,859,0.275,23.650000000000002,35.61,0.93,0.13,799,1.8,237,1.7000000000000002
+2023,8,15,11,0,31.200000000000003,1.92,0.035,0.61,71,978,904,0,0,6.9,71,978,0,904,0.274,21.97,31.650000000000002,0.93,0.13,798,1.8,239,1.7000000000000002
+2023,8,15,11,30,31.8,1.92,0.035,0.61,72,984,936,0,0,6.9,72,984,0,936,0.274,21.240000000000002,28.63,0.93,0.13,798,1.8,239,1.7000000000000002
+2023,8,15,12,0,32.300000000000004,1.92,0.034,0.61,73,987,953,0,0,6.7,86,964,0,946,0.273,20.23,26.900000000000002,0.93,0.13,797,1.8,239,1.7000000000000002
+2023,8,15,12,30,32.7,1.92,0.034,0.61,72,987,954,0,0,6.7,138,845,0,893,0.273,19.78,26.71,0.93,0.13,797,1.8,239,1.8
+2023,8,15,13,0,33,1.93,0.034,0.61,72,985,941,0,0,6.4,264,580,0,776,0.273,19.06,28.09,0.93,0.13,797,1.8,238,1.8
+2023,8,15,13,30,33.2,1.93,0.034,0.61,71,979,912,0,0,6.300000000000001,140,838,0,860,0.273,18.82,30.830000000000002,0.93,0.13,796,1.8,238,1.9000000000000001
+2023,8,15,14,0,33.4,1.87,0.036000000000000004,0.61,71,969,869,0,0,6,200,684,0,763,0.273,18.23,34.6,0.93,0.13,796,1.9000000000000001,238,2
+2023,8,15,14,30,33.2,1.87,0.036000000000000004,0.61,70,957,813,0,3,6,278,404,0,592,0.273,18.43,39.08,0.9400000000000001,0.13,796,1.9000000000000001,237,2.1
+2023,8,15,15,0,33.1,1.85,0.038,0.61,69,941,745,0,3,5.7,315,252,0,496,0.273,18.12,44.050000000000004,0.9400000000000001,0.13,796,1.9000000000000001,237,2.2
+2023,8,15,15,30,32.7,1.85,0.038,0.61,67,919,666,0,3,5.7,200,490,0,519,0.273,18.5,49.34,0.9400000000000001,0.13,795,1.9000000000000001,236,2.3000000000000003
+2023,8,15,16,0,32.300000000000004,1.83,0.041,0.61,64,890,577,0,0,5.4,89,821,0,562,0.273,18.61,54.84,0.9400000000000001,0.13,795,1.9000000000000001,235,2.4000000000000004
+2023,8,15,16,30,31.700000000000003,1.83,0.041,0.61,61,851,481,0,0,5.4,69,823,0,475,0.273,19.25,60.45,0.9500000000000001,0.13,795,2,234,2.5
+2023,8,15,17,0,31,1.78,0.047,0.61,58,799,381,0,0,5.4,58,799,0,381,0.273,20,66.13,0.9500000000000001,0.13,795,2,233,2.6
+2023,8,15,17,30,29.700000000000003,1.78,0.047,0.61,52,725,278,0,0,5.4,56,713,7,278,0.273,21.54,71.83,0.9500000000000001,0.13,795,2,237,2.3000000000000003
+2023,8,15,18,0,28.5,1.73,0.054,0.61,45,614,178,1,3,7,91,314,18,159,0.273,25.73,77.49,0.96,0.13,795,2.1,240,1.9000000000000001
+2023,8,15,18,30,27.1,1.73,0.054,0.61,33,441,86,3,3,7,47,236,54,76,0.274,27.91,83.06,0.96,0.13,795,2.1,249,1.9000000000000001
+2023,8,15,19,0,25.6,1.69,0.062,0.61,14,139,18,4,3,7.5,11,34,50,12,0.274,31.67,88.42,0.96,0.13,796,2.2,259,1.9000000000000001
+2023,8,15,19,30,25.1,1.69,0.062,0.61,0,0,0,0,0,7.5,0,0,0,0,0.274,32.62,94.04,0.96,0.13,796,2.3000000000000003,267,2.2
+2023,8,15,20,0,24.5,1.68,0.065,0.61,0,0,0,0,0,8.5,0,0,0,0,0.274,36.1,99.23,0.96,0.13,796,2.3000000000000003,274,2.5
+2023,8,15,20,30,24.1,1.68,0.065,0.61,0,0,0,0,0,8.5,0,0,0,0,0.274,36.97,104.17,0.96,0.13,796,2.3000000000000003,280,2.6
+2023,8,15,21,0,23.6,1.69,0.065,0.61,0,0,0,0,7,9.5,0,0,0,0,0.274,40.81,108.81,0.96,0.13,796,2.4000000000000004,286,2.7
+2023,8,15,21,30,23.1,1.69,0.065,0.61,0,0,0,0,7,9.5,0,0,0,0,0.274,42.11,113.07000000000001,0.96,0.13,797,2.4000000000000004,290,2.5
+2023,8,15,22,0,22.6,1.68,0.066,0.61,0,0,0,0,7,10.100000000000001,0,0,0,0,0.273,45,116.86,0.96,0.13,797,2.4000000000000004,293,2.3000000000000003
+2023,8,15,22,30,22.200000000000003,1.68,0.066,0.61,0,0,0,0,0,10,0,0,0,0,0.273,46.04,120.10000000000001,0.96,0.13,796,2.5,293,1.9000000000000001
+2023,8,15,23,0,21.700000000000003,1.68,0.067,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.273,47.53,122.68,0.96,0.13,796,2.5,293,1.6
+2023,8,15,23,30,21.3,1.68,0.067,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.273,48.71,124.51,0.96,0.13,796,2.5,292,1.4000000000000001
+2023,8,16,0,0,20.8,1.68,0.067,0.61,0,0,0,0,0,9.9,0,0,0,0,0.273,49.83,125.5,0.96,0.13,796,2.5,291,1.2000000000000002
+2023,8,16,0,30,20.5,1.68,0.067,0.61,0,0,0,0,0,9.9,0,0,0,0,0.273,50.75,125.61,0.96,0.13,796,2.5,289,1.1
+2023,8,16,1,0,20.3,1.67,0.067,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,50.83,124.84,0.96,0.13,796,2.5,288,1
+2023,8,16,1,30,20,1.67,0.067,0.61,0,0,0,0,0,9.8,0,0,0,0,0.274,51.78,123.22,0.96,0.13,796,2.5,287,0.9
+2023,8,16,2,0,19.8,1.6600000000000001,0.068,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.274,52.1,120.82000000000001,0.96,0.13,796,2.5,286,0.8
+2023,8,16,2,30,19.6,1.6600000000000001,0.068,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.275,52.74,117.74000000000001,0.96,0.13,796,2.5,287,0.8
+2023,8,16,3,0,19.400000000000002,1.6600000000000001,0.068,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.275,53.25,114.08,0.96,0.13,796,2.5,288,0.7000000000000001
+2023,8,16,3,30,19.400000000000002,1.6600000000000001,0.068,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.276,53.25,109.93,0.96,0.13,796,2.5,292,0.6000000000000001
+2023,8,16,4,0,19.3,1.6500000000000001,0.067,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.276,53.480000000000004,105.38,0.96,0.13,796,2.5,296,0.5
+2023,8,16,4,30,19.3,1.6500000000000001,0.067,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.277,53.480000000000004,100.52,0.9500000000000001,0.13,796,2.5,310,0.4
+2023,8,16,5,0,19.3,1.6600000000000001,0.064,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.277,53.85,95.39,0.9500000000000001,0.13,797,2.5,325,0.30000000000000004
+2023,8,16,5,30,20.1,1.6600000000000001,0.064,0.61,9,80,9,0,0,9.700000000000001,9,80,0,9,0.277,51.25,89.69,0.9500000000000001,0.13,797,2.4000000000000004,209,0.30000000000000004
+2023,8,16,6,0,21,1.67,0.061,0.61,30,367,65,0,0,9.600000000000001,30,367,0,65,0.278,48.19,84.47,0.9500000000000001,0.13,797,2.4000000000000004,94,0.4
+2023,8,16,6,30,22.5,1.67,0.061,0.61,43,556,150,0,0,9.600000000000001,43,556,0,150,0.278,43.980000000000004,78.94,0.9500000000000001,0.13,797,2.4000000000000004,87,0.6000000000000001
+2023,8,16,7,0,24.1,1.68,0.06,0.61,53,675,247,0,0,9,53,675,0,247,0.279,38.21,73.3,0.9500000000000001,0.13,797,2.4000000000000004,80,0.8
+2023,8,16,7,30,25.400000000000002,1.68,0.06,0.61,60,753,347,0,0,9,76,674,0,333,0.279,35.37,67.61,0.9500000000000001,0.13,797,2.4000000000000004,82,0.9
+2023,8,16,8,0,26.700000000000003,1.69,0.059000000000000004,0.61,66,809,447,0,0,8.3,76,776,0,441,0.279,31.17,61.940000000000005,0.9500000000000001,0.13,797,2.4000000000000004,83,1
+2023,8,16,8,30,27.6,1.69,0.059000000000000004,0.61,71,849,542,0,0,8.3,71,849,0,542,0.279,29.580000000000002,56.31,0.9500000000000001,0.13,797,2.4000000000000004,103,0.9
+2023,8,16,9,0,28.5,1.7,0.059000000000000004,0.61,75,880,631,0,0,8.200000000000001,75,880,0,631,0.279,27.95,50.79,0.9500000000000001,0.13,797,2.4000000000000004,124,0.9
+2023,8,16,9,30,29.3,1.7,0.059000000000000004,0.61,78,902,711,0,0,8.200000000000001,78,902,0,711,0.278,26.69,45.46,0.9500000000000001,0.13,797,2.4000000000000004,150,1
+2023,8,16,10,0,30,1.69,0.06,0.61,81,919,781,0,0,8.3,81,919,0,781,0.278,25.86,40.43,0.9500000000000001,0.13,796,2.4000000000000004,175,1.2000000000000002
+2023,8,16,10,30,30.6,1.69,0.06,0.61,81,937,841,0,0,8.3,81,937,0,841,0.278,24.990000000000002,35.83,0.96,0.13,796,2.4000000000000004,189,1.4000000000000001
+2023,8,16,11,0,31.200000000000003,1.6300000000000001,0.047,0.61,79,952,887,0,0,8.5,79,952,0,887,0.278,24.34,31.900000000000002,0.96,0.13,796,2.4000000000000004,202,1.6
+2023,8,16,11,30,31.700000000000003,1.6300000000000001,0.047,0.61,79,958,918,0,0,8.4,134,839,0,868,0.278,23.63,28.91,0.96,0.13,795,2.4000000000000004,211,1.8
+2023,8,16,12,0,32.1,1.6300000000000001,0.049,0.61,81,960,935,0,0,8.5,109,912,0,920,0.278,23.13,27.2,0.96,0.13,795,2.4000000000000004,219,2
+2023,8,16,12,30,32.5,1.6300000000000001,0.049,0.61,82,960,937,0,0,8.5,82,960,0,937,0.279,22.62,27.03,0.96,0.13,795,2.4000000000000004,226,2.1
+2023,8,16,13,0,32.800000000000004,1.6300000000000001,0.05,0.61,82,957,924,0,3,8.3,328,286,0,580,0.279,21.96,28.41,0.96,0.13,794,2.4000000000000004,233,2.2
+2023,8,16,13,30,32.9,1.6300000000000001,0.05,0.61,80,955,897,0,3,8.3,341,312,0,608,0.279,21.84,31.13,0.97,0.13,794,2.3000000000000003,238,2.2
+2023,8,16,14,0,33.1,1.62,0.045,0.61,77,950,856,0,0,8,192,701,0,767,0.28,21.150000000000002,34.88,0.97,0.13,794,2.3000000000000003,244,2.3000000000000003
+2023,8,16,14,30,32.9,1.62,0.045,0.61,76,937,801,0,0,8,150,733,0,717,0.28,21.39,39.35,0.97,0.13,794,2.3000000000000003,248,2.3000000000000003
+2023,8,16,15,0,32.800000000000004,1.62,0.048,0.61,73,922,733,0,0,7.6000000000000005,187,618,0,629,0.281,21,44.31,0.97,0.13,793,2.2,252,2.3000000000000003
+2023,8,16,15,30,32.5,1.62,0.048,0.61,72,900,655,0,3,7.6000000000000005,246,317,0,451,0.281,21.35,49.59,0.97,0.13,793,2.2,255,2.2
+2023,8,16,16,0,32.1,1.62,0.051000000000000004,0.61,68,871,567,0,0,7.300000000000001,151,614,7,502,0.281,21.42,55.08,0.97,0.13,793,2.2,258,2.1
+2023,8,16,16,30,31.6,1.62,0.051000000000000004,0.61,65,832,472,0,0,7.300000000000001,83,773,0,461,0.281,22.03,60.69,0.97,0.13,793,2.2,260,2
+2023,8,16,17,0,31,1.62,0.055,0.61,61,779,373,0,0,7.1000000000000005,61,779,7,373,0.28200000000000003,22.41,66.37,0.97,0.12,793,2.2,262,1.9000000000000001
+2023,8,16,17,30,30,1.62,0.055,0.61,54,706,271,0,0,7.1000000000000005,64,642,39,262,0.281,23.72,72.06,0.97,0.12,793,2.2,262,1.4000000000000001
+2023,8,16,18,0,29,1.61,0.058,0.61,45,597,172,0,3,8.4,90,234,14,140,0.281,27.47,77.72,0.96,0.12,793,2.2,261,1
+2023,8,16,18,30,28.1,1.61,0.058,0.61,32,427,82,5,8,8.4,46,79,79,55,0.281,28.93,83.3,0.96,0.12,793,2.1,256,0.9
+2023,8,16,19,0,27.1,1.61,0.058,0.61,13,134,16,5,8,8.1,9,0,71,9,0.281,30.17,88.66,0.96,0.12,794,2.1,252,0.8
+2023,8,16,19,30,26.5,1.61,0.058,0.61,0,0,0,0,6,8.1,0,0,0,0,0.281,31.240000000000002,94.3,0.96,0.12,794,2.1,254,0.9
+2023,8,16,20,0,25.900000000000002,1.6400000000000001,0.055,0.61,0,0,0,0,6,7.800000000000001,0,0,0,0,0.281,31.77,99.49000000000001,0.96,0.12,794,2.1,257,1
+2023,8,16,20,30,25.1,1.6400000000000001,0.055,0.61,0,0,0,0,6,7.800000000000001,0,0,0,0,0.28,33.31,104.44,0.96,0.12,794,2.1,260,1.1
+2023,8,16,21,0,24.400000000000002,1.67,0.052000000000000005,0.61,0,0,0,0,7,7.9,0,0,0,0,0.28,34.77,109.09,0.96,0.12,794,2.1,263,1.3
+2023,8,16,21,30,23.8,1.67,0.052000000000000005,0.61,0,0,0,0,3,7.800000000000001,0,0,0,0,0.28,36.04,113.36,0.96,0.12,794,2.1,265,1.3
+2023,8,16,22,0,23.200000000000003,1.69,0.049,0.61,0,0,0,0,3,7.7,0,0,0,0,0.279,37.11,117.16,0.96,0.12,794,2.1,267,1.4000000000000001
+2023,8,16,22,30,22.5,1.69,0.049,0.61,0,0,0,0,0,7.7,0,0,0,0,0.279,38.71,120.41,0.9500000000000001,0.12,794,2,269,1.3
+2023,8,16,23,0,21.8,1.72,0.046,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.279,40.050000000000004,123,0.9500000000000001,0.12,794,2,271,1.3
+2023,8,16,23,30,21.200000000000003,1.72,0.046,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.278,41.54,124.83,0.9500000000000001,0.12,794,2,272,1.2000000000000002
+2023,8,17,0,0,20.6,1.75,0.043000000000000003,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.278,42.910000000000004,125.82000000000001,0.9500000000000001,0.12,794,2,273,1.2000000000000002
+2023,8,17,0,30,20,1.75,0.043000000000000003,0.61,0,0,0,0,3,7.5,0,0,0,0,0.278,44.52,125.93,0.9500000000000001,0.12,794,1.9000000000000001,273,1.2000000000000002
+2023,8,17,1,0,19.400000000000002,1.76,0.041,0.61,0,0,0,0,3,7.5,0,0,0,0,0.278,46.19,125.15,0.9500000000000001,0.12,794,1.9000000000000001,273,1.1
+2023,8,17,1,30,19,1.76,0.041,0.61,0,0,0,0,0,7.5,0,0,0,0,0.278,47.35,123.51,0.9500000000000001,0.12,794,1.9000000000000001,272,1
+2023,8,17,2,0,18.6,1.76,0.041,0.61,0,0,0,0,0,7.7,0,0,0,0,0.277,49.02,121.10000000000001,0.9500000000000001,0.12,794,1.9000000000000001,271,0.9
+2023,8,17,2,30,18.400000000000002,1.76,0.041,0.61,0,0,0,0,0,7.7,0,0,0,0,0.277,49.64,118,0.9500000000000001,0.12,794,1.9000000000000001,267,0.7000000000000001
+2023,8,17,3,0,18.2,1.76,0.041,0.61,0,0,0,0,0,7.9,0,0,0,0,0.277,51.13,114.32000000000001,0.9500000000000001,0.12,794,1.9000000000000001,262,0.6000000000000001
+2023,8,17,3,30,17.900000000000002,1.76,0.041,0.61,0,0,0,0,0,7.9,0,0,0,0,0.277,52.1,110.16,0.9500000000000001,0.12,794,1.9000000000000001,232,0.5
+2023,8,17,4,0,17.7,1.76,0.043000000000000003,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.277,53.85,105.59,0.9500000000000001,0.12,794,1.9000000000000001,203,0.4
+2023,8,17,4,30,17.400000000000002,1.76,0.043000000000000003,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.277,54.88,100.71000000000001,0.9500000000000001,0.12,794,1.9000000000000001,182,0.5
+2023,8,17,5,0,17.2,1.77,0.044,0.61,0,0,0,0,0,8.5,0,0,0,0,0.277,56.52,95.57000000000001,0.9500000000000001,0.12,795,2,160,0.6000000000000001
+2023,8,17,5,30,18.2,1.77,0.044,0.61,7,72,7,0,0,8.5,7,72,0,7,0.277,53.08,89.84,0.9500000000000001,0.12,795,2,154,0.9
+2023,8,17,6,0,19.3,1.79,0.043000000000000003,0.61,27,409,65,0,0,8.6,27,409,0,65,0.277,50,84.64,0.9500000000000001,0.12,795,2,149,1.2000000000000002
+2023,8,17,6,30,21.200000000000003,1.79,0.043000000000000003,0.61,40,599,153,0,0,8.6,40,599,0,153,0.277,44.480000000000004,79.10000000000001,0.9500000000000001,0.12,795,2,161,1.5
+2023,8,17,7,0,23.1,1.82,0.042,0.61,48,714,251,0,0,8.3,48,714,0,251,0.278,38.83,73.45,0.9500000000000001,0.12,795,2,173,1.8
+2023,8,17,7,30,24.8,1.82,0.042,0.61,55,789,353,0,0,8.3,55,789,0,353,0.277,35.08,67.77,0.9500000000000001,0.12,795,2,181,2.1
+2023,8,17,8,0,26.400000000000002,1.83,0.041,0.61,60,843,454,0,0,7.800000000000001,60,843,0,454,0.277,30.75,62.1,0.9500000000000001,0.12,795,1.9000000000000001,189,2.3000000000000003
+2023,8,17,8,30,27.700000000000003,1.83,0.041,0.61,63,881,550,0,0,7.800000000000001,63,881,0,550,0.276,28.5,56.480000000000004,0.9500000000000001,0.12,795,1.9000000000000001,193,2.3000000000000003
+2023,8,17,9,0,28.900000000000002,1.85,0.041,0.61,67,910,640,0,0,7.300000000000001,67,910,0,640,0.275,25.71,50.97,0.9500000000000001,0.12,795,1.9000000000000001,197,2.4000000000000004
+2023,8,17,9,30,29.900000000000002,1.85,0.041,0.61,70,931,721,0,0,7.300000000000001,70,931,0,721,0.274,24.27,45.65,0.9500000000000001,0.12,795,1.9000000000000001,200,2.5
+2023,8,17,10,0,30.900000000000002,1.86,0.041,0.61,72,948,791,0,0,6.9,72,948,0,791,0.274,22.29,40.63,0.9500000000000001,0.12,795,1.9000000000000001,202,2.6
+2023,8,17,10,30,31.700000000000003,1.86,0.041,0.61,72,962,850,0,0,6.9,72,962,0,850,0.273,21.28,36.06,0.9500000000000001,0.12,794,1.9000000000000001,204,2.7
+2023,8,17,11,0,32.5,1.87,0.037,0.61,73,972,896,0,0,6.7,73,972,0,896,0.272,20.03,32.15,0.9500000000000001,0.12,794,1.9000000000000001,206,2.9000000000000004
+2023,8,17,11,30,33,1.87,0.037,0.61,74,977,927,0,0,6.7,74,977,0,927,0.271,19.47,29.2,0.9500000000000001,0.12,794,2,208,3
+2023,8,17,12,0,33.5,1.8800000000000001,0.039,0.61,75,979,943,0,0,6.5,75,979,0,943,0.271,18.69,27.51,0.9500000000000001,0.12,793,2,210,3.2
+2023,8,17,12,30,33.800000000000004,1.8800000000000001,0.039,0.61,75,979,945,0,0,6.5,75,979,0,945,0.271,18.38,27.35,0.9500000000000001,0.12,793,2,212,3.3000000000000003
+2023,8,17,13,0,34,1.8800000000000001,0.04,0.61,75,976,931,0,0,6.300000000000001,75,976,0,931,0.27,17.98,28.73,0.9500000000000001,0.12,793,2,214,3.4000000000000004
+2023,8,17,13,30,34.1,1.8800000000000001,0.04,0.61,76,969,903,0,0,6.300000000000001,76,969,0,903,0.27,17.86,31.44,0.9500000000000001,0.12,792,2,215,3.5
+2023,8,17,14,0,34.1,1.87,0.045,0.61,76,958,859,0,0,6.1000000000000005,76,958,0,859,0.27,17.64,35.18,0.9500000000000001,0.12,792,2,215,3.5
+2023,8,17,14,30,33.9,1.87,0.045,0.61,75,945,803,0,0,6.1000000000000005,130,847,0,782,0.271,17.84,39.63,0.9500000000000001,0.12,792,2,216,3.5
+2023,8,17,15,0,33.6,1.84,0.048,0.61,73,926,733,0,0,6,107,859,0,719,0.271,18.04,44.57,0.9500000000000001,0.12,792,2.1,217,3.5
+2023,8,17,15,30,33.2,1.84,0.048,0.61,71,904,654,0,0,6,73,896,14,651,0.271,18.42,49.84,0.9500000000000001,0.12,791,2.1,218,3.5
+2023,8,17,16,0,32.7,1.81,0.051000000000000004,0.61,68,874,565,0,8,6.1000000000000005,199,334,18,389,0.271,19.06,55.32,0.9500000000000001,0.12,791,2.1,219,3.6
+2023,8,17,16,30,31.900000000000002,1.81,0.051000000000000004,0.61,64,834,469,0,8,6.1000000000000005,130,31,0,145,0.271,19.94,60.93,0.9500000000000001,0.12,791,2.2,221,3.5
+2023,8,17,17,0,31.200000000000003,1.78,0.054,0.61,59,780,369,0,8,6.4,82,596,50,319,0.272,21.16,66.61,0.96,0.14,791,2.2,222,3.5
+2023,8,17,17,30,30,1.78,0.054,0.61,53,707,268,0,6,6.4,63,480,36,209,0.272,22.66,72.3,0.96,0.14,791,2.2,224,2.9000000000000004
+2023,8,17,18,0,28.8,1.77,0.056,0.61,44,595,168,0,6,7.6000000000000005,56,216,0,101,0.272,26.44,77.97,0.96,0.14,791,2.2,226,2.3000000000000003
+2023,8,17,18,30,27.200000000000003,1.77,0.056,0.61,32,422,79,6,6,7.6000000000000005,37,62,86,44,0.272,29.01,83.55,0.96,0.14,791,2.3000000000000003,228,1.7000000000000002
+2023,8,17,19,0,25.5,1.77,0.055,0.61,12,130,15,5,6,8.200000000000001,7,0,71,7,0.272,33.43,88.89,0.96,0.14,792,2.3000000000000003,230,1.1
+2023,8,17,19,30,25,1.77,0.055,0.61,0,0,0,0,6,8.200000000000001,0,0,0,0,0.273,34.43,94.56,0.96,0.14,792,2.3000000000000003,233,1.1
+2023,8,17,20,0,24.5,1.77,0.054,0.61,0,0,0,0,6,8.4,0,0,0,0,0.273,35.86,99.76,0.96,0.14,792,2.4000000000000004,235,1
+2023,8,17,20,30,24.200000000000003,1.77,0.054,0.61,0,0,0,0,6,8.4,0,0,0,0,0.274,36.51,104.72,0.97,0.14,792,2.4000000000000004,235,1
+2023,8,17,21,0,23.8,1.75,0.054,0.61,0,0,0,0,6,8.6,0,0,0,0,0.274,38.02,109.37,0.97,0.14,792,2.4000000000000004,236,1
+2023,8,17,21,30,23.5,1.75,0.054,0.61,0,0,0,0,6,8.6,0,0,0,0,0.275,38.71,113.65,0.97,0.14,792,2.5,231,1
+2023,8,17,22,0,23.1,1.7,0.056,0.61,0,0,0,0,7,9.1,0,0,0,0,0.275,40.97,117.47,0.97,0.14,792,2.6,226,1
+2023,8,17,22,30,22.900000000000002,1.7,0.056,0.61,0,0,0,0,7,9.1,0,0,0,0,0.275,41.47,120.73,0.97,0.14,792,2.7,215,1.2000000000000002
+2023,8,17,23,0,22.700000000000003,1.6500000000000001,0.062,0.61,0,0,0,0,7,9.9,0,0,0,0,0.276,44.34,123.32000000000001,0.97,0.14,792,2.7,204,1.4000000000000001
+2023,8,17,23,30,22.5,1.6500000000000001,0.062,0.61,0,0,0,0,7,9.9,0,0,0,0,0.276,44.88,125.15,0.97,0.14,792,2.8000000000000003,198,2
+2023,8,18,0,0,22.200000000000003,1.62,0.068,0.61,0,0,0,0,7,11.100000000000001,0,0,0,0,0.276,49.4,126.14,0.97,0.14,792,2.9000000000000004,193,2.6
+2023,8,18,0,30,21.6,1.62,0.068,0.61,0,0,0,0,7,11.100000000000001,0,0,0,0,0.276,51.230000000000004,126.25,0.97,0.14,792,3,191,3.1
+2023,8,18,1,0,21.1,1.62,0.074,0.61,0,0,0,0,8,12.3,0,0,0,0,0.277,57.26,125.45,0.97,0.14,793,3,190,3.6
+2023,8,18,1,30,20.3,1.62,0.074,0.61,0,0,0,0,8,12.3,0,0,0,0,0.277,60.14,123.8,0.97,0.14,793,3.1,190,4.1000000000000005
+2023,8,18,2,0,19.5,1.61,0.079,0.61,0,0,0,0,8,13.5,0,0,0,0,0.278,68.17,121.38,0.98,0.14,793,3.1,190,4.7
+2023,8,18,2,30,18.8,1.61,0.079,0.61,0,0,0,0,8,13.5,0,0,0,0,0.279,71.2,118.26,0.98,0.14,793,3.2,190,4.6000000000000005
+2023,8,18,3,0,18.1,1.58,0.088,0.61,0,0,0,0,8,14.200000000000001,0,0,0,0,0.279,78.21000000000001,114.56,0.98,0.14,793,3.2,191,4.4
+2023,8,18,3,30,17.8,1.58,0.088,0.61,0,0,0,0,8,14.200000000000001,0,0,0,0,0.28,79.69,110.38,0.98,0.14,793,3.2,189,4.1000000000000005
+2023,8,18,4,0,17.400000000000002,1.53,0.098,0.61,0,0,0,0,3,14.8,0,0,0,0,0.281,84.61,105.8,0.98,0.14,793,3.2,186,3.7
+2023,8,18,4,30,17.3,1.53,0.098,0.61,0,0,0,0,0,14.8,0,0,0,0,0.28200000000000003,85.15,100.91,0.98,0.14,793,3.2,182,3.6
+2023,8,18,5,0,17.2,1.5,0.098,0.61,0,0,0,0,3,15,0,0,0,0,0.28300000000000003,87.05,95.76,0.98,0.14,793,3.2,178,3.5
+2023,8,18,5,30,17.5,1.5,0.098,0.61,6,40,6,4,3,15,2,0,50,2,0.28400000000000003,85.42,90,0.98,0.14,793,3.1,177,3.7
+2023,8,18,6,0,17.8,1.5,0.088,0.61,31,291,57,6,3,15,33,1,86,33,0.28600000000000003,83.68,84.8,0.98,0.14,793,3.1,175,3.9000000000000004
+2023,8,18,6,30,18.400000000000002,1.5,0.088,0.61,47,494,139,1,5,15,45,1,11,45,0.28700000000000003,80.59,79.26,0.97,0.14,793,3,178,4
+2023,8,18,7,0,19.1,1.51,0.079,0.61,58,628,235,0,5,14.700000000000001,100,22,0,106,0.28800000000000003,75.58,73.61,0.97,0.14,794,2.9000000000000004,181,4.1000000000000005
+2023,8,18,7,30,20,1.51,0.079,0.61,65,715,334,0,3,14.700000000000001,173,200,0,248,0.28800000000000003,71.49,67.93,0.97,0.14,794,2.9000000000000004,189,4.2
+2023,8,18,8,0,20.900000000000002,1.54,0.075,0.61,72,778,434,0,0,14.100000000000001,109,670,0,421,0.28800000000000003,64.98,62.26,0.97,0.14,794,2.8000000000000003,198,4.3
+2023,8,18,8,30,21.8,1.54,0.075,0.61,77,822,529,0,0,14.100000000000001,89,792,0,525,0.28800000000000003,61.51,56.64,0.97,0.14,794,2.8000000000000003,205,4.5
+2023,8,18,9,0,22.8,1.55,0.073,0.61,81,856,618,0,0,13.3,94,828,7,614,0.28800000000000003,55.03,51.14,0.97,0.14,794,2.7,212,4.6000000000000005
+2023,8,18,9,30,23.700000000000003,1.55,0.073,0.61,85,882,699,0,0,13.3,85,882,0,699,0.28800000000000003,52.13,45.84,0.97,0.14,794,2.7,214,4.7
+2023,8,18,10,0,24.5,1.58,0.069,0.61,86,904,770,0,0,12.4,107,862,0,759,0.28800000000000003,46.86,40.84,0.97,0.14,794,2.7,217,4.7
+2023,8,18,10,30,25.3,1.58,0.069,0.61,84,924,829,0,0,12.4,84,924,0,829,0.28800000000000003,44.69,36.29,0.97,0.14,794,2.7,219,4.800000000000001
+2023,8,18,11,0,26.1,1.6,0.052000000000000005,0.61,81,942,876,0,0,11.4,81,942,0,876,0.28800000000000003,39.980000000000004,32.410000000000004,0.97,0.14,794,2.7,220,4.800000000000001
+2023,8,18,11,30,26.6,1.6,0.052000000000000005,0.61,83,948,908,0,0,11.4,83,948,0,908,0.28800000000000003,38.77,29.48,0.97,0.14,793,2.7,220,5
+2023,8,18,12,0,27.200000000000003,1.6,0.052000000000000005,0.61,82,952,924,0,0,10.600000000000001,108,887,0,892,0.28800000000000003,35.33,27.830000000000002,0.97,0.14,793,2.6,220,5.1000000000000005
+2023,8,18,12,30,27.1,1.6,0.052000000000000005,0.61,84,951,926,0,0,10.600000000000001,173,760,0,846,0.28700000000000003,35.54,27.67,0.98,0.14,793,2.6,219,5.2
+2023,8,18,13,0,27.1,1.59,0.055,0.61,84,947,912,0,6,10.100000000000001,356,303,0,621,0.28700000000000003,34.45,29.05,0.98,0.14,793,2.6,218,5.4
+2023,8,18,13,30,26.6,1.59,0.055,0.61,81,944,884,0,6,10.100000000000001,398,83,0,469,0.28600000000000003,35.47,31.75,0.98,0.14,793,2.7,216,5.300000000000001
+2023,8,18,14,0,26.1,1.6,0.047,0.61,77,939,842,0,6,10.100000000000001,310,43,0,345,0.28600000000000003,36.67,35.47,0.98,0.14,793,2.7,215,5.300000000000001
+2023,8,18,14,30,25.700000000000003,1.6,0.047,0.61,76,927,787,0,6,10.100000000000001,146,3,0,148,0.28600000000000003,37.54,39.910000000000004,0.98,0.14,793,2.6,214,5.1000000000000005
+2023,8,18,15,0,25.3,1.62,0.049,0.61,74,910,719,0,6,10.4,118,3,0,120,0.28500000000000003,39.11,44.84,0.98,0.14,793,2.6,213,4.800000000000001
+2023,8,18,15,30,24.900000000000002,1.62,0.049,0.61,72,887,641,0,7,10.4,173,520,29,507,0.28500000000000003,40.050000000000004,50.1,0.97,0.14,793,2.6,213,4.6000000000000005
+2023,8,18,16,0,24.6,1.6300000000000001,0.05,0.61,68,858,553,0,7,10.5,143,650,25,511,0.28500000000000003,41.19,55.57,0.97,0.14,793,2.6,214,4.3
+2023,8,18,16,30,24.200000000000003,1.6300000000000001,0.05,0.61,64,819,459,0,7,10.5,182,324,7,338,0.28400000000000003,42.18,61.18,0.97,0.14,793,2.6,213,3.9000000000000004
+2023,8,18,17,0,23.8,1.62,0.054,0.61,60,764,360,0,3,10.8,143,438,21,315,0.28400000000000003,44.01,66.85,0.97,0.13,793,2.7,213,3.5
+2023,8,18,17,30,23,1.62,0.054,0.61,52,690,259,0,3,10.8,122,354,0,228,0.28400000000000003,46.18,72.54,0.97,0.13,793,2.7,210,2.8000000000000003
+2023,8,18,18,0,22.3,1.6400000000000001,0.055,0.61,43,578,161,0,3,11.9,73,300,0,134,0.28300000000000003,51.61,78.21000000000001,0.97,0.13,793,2.7,208,2
+2023,8,18,18,30,21.200000000000003,1.6400000000000001,0.055,0.61,30,404,74,6,7,11.9,38,63,86,45,0.28300000000000003,55.18,83.79,0.97,0.13,793,2.7,205,1.5
+2023,8,18,19,0,20.200000000000003,1.68,0.052000000000000005,0.61,10,101,12,5,6,12.5,7,0,71,7,0.28300000000000003,61.17,89.12,0.97,0.13,793,2.7,201,1.1
+2023,8,18,19,30,19.700000000000003,1.68,0.052000000000000005,0.61,0,0,0,0,7,12.5,0,0,0,0,0.28300000000000003,63.17,94.82000000000001,0.97,0.13,794,2.6,200,1.1
+2023,8,18,20,0,19.1,1.73,0.048,0.61,0,0,0,0,5,12.5,0,0,0,0,0.28400000000000003,65.36,100.03,0.97,0.13,794,2.6,199,1
+2023,8,18,20,30,18.7,1.73,0.048,0.61,0,0,0,0,4,12.5,0,0,0,0,0.28400000000000003,67.01,104.99000000000001,0.97,0.13,794,2.6,198,1
+2023,8,18,21,0,18.2,1.76,0.045,0.61,0,0,0,0,4,12.4,0,0,0,0,0.28400000000000003,68.86,109.66,0.96,0.13,794,2.6,198,1
+2023,8,18,21,30,17.900000000000002,1.76,0.045,0.61,0,0,0,0,4,12.4,0,0,0,0,0.28400000000000003,70.17,113.95,0.96,0.13,794,2.6,197,1
+2023,8,18,22,0,17.6,1.78,0.044,0.61,0,0,0,0,8,12.4,0,0,0,0,0.28400000000000003,71.41,117.78,0.96,0.13,794,2.5,196,1
+2023,8,18,22,30,17.3,1.78,0.044,0.61,0,0,0,0,7,12.4,0,0,0,0,0.28300000000000003,72.77,121.04,0.96,0.13,794,2.5,194,1
+2023,8,18,23,0,17,1.8,0.042,0.61,0,0,0,0,6,12.3,0,0,0,0,0.28300000000000003,73.78,123.64,0.96,0.13,794,2.5,192,0.9
+2023,8,18,23,30,16.7,1.8,0.042,0.61,0,0,0,0,6,12.3,0,0,0,0,0.28300000000000003,75.19,125.48,0.96,0.13,794,2.5,190,0.9
+2023,8,19,0,0,16.400000000000002,1.8,0.042,0.61,0,0,0,0,7,12.200000000000001,0,0,0,0,0.28300000000000003,75.99,126.47,0.96,0.13,794,2.4000000000000004,187,0.9
+2023,8,19,0,30,16.2,1.8,0.042,0.61,0,0,0,0,7,12.200000000000001,0,0,0,0,0.28200000000000003,76.96000000000001,126.57000000000001,0.96,0.13,794,2.4000000000000004,186,0.9
+2023,8,19,1,0,16,1.8,0.042,0.61,0,0,0,0,8,12,0,0,0,0,0.28200000000000003,77.10000000000001,125.76,0.96,0.13,794,2.4000000000000004,184,0.9
+2023,8,19,1,30,15.700000000000001,1.8,0.042,0.61,0,0,0,0,7,12,0,0,0,0,0.28200000000000003,78.58,124.10000000000001,0.96,0.13,794,2.4000000000000004,182,0.9
+2023,8,19,2,0,15.5,1.79,0.044,0.61,0,0,0,0,3,11.8,0,0,0,0,0.28200000000000003,78.53,121.65,0.96,0.13,794,2.4000000000000004,180,1
+2023,8,19,2,30,15.3,1.79,0.044,0.61,0,0,0,0,8,11.8,0,0,0,0,0.28200000000000003,79.54,118.52,0.96,0.13,794,2.4000000000000004,176,0.9
+2023,8,19,3,0,15.100000000000001,1.78,0.045,0.61,0,0,0,0,8,11.5,0,0,0,0,0.28200000000000003,79.05,114.81,0.96,0.13,794,2.4000000000000004,171,0.9
+2023,8,19,3,30,15,1.78,0.045,0.61,0,0,0,0,5,11.5,0,0,0,0,0.28200000000000003,79.55,110.61,0.96,0.13,794,2.4000000000000004,162,0.9
+2023,8,19,4,0,14.8,1.77,0.046,0.61,0,0,0,0,0,11.100000000000001,0,0,29,0,0.28200000000000003,78.60000000000001,106.01,0.96,0.13,794,2.4000000000000004,152,0.9
+2023,8,19,4,30,14.700000000000001,1.77,0.046,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28200000000000003,79.11,101.10000000000001,0.96,0.13,794,2.4000000000000004,144,0.9
+2023,8,19,5,0,14.600000000000001,1.76,0.046,0.61,0,0,0,0,7,10.8,0,0,0,0,0.28300000000000003,77.84,95.95,0.96,0.13,794,2.4000000000000004,135,0.9
+2023,8,19,5,30,15.700000000000001,1.76,0.046,0.61,6,60,6,3,7,10.8,3,0,43,3,0.28200000000000003,72.64,90.15,0.96,0.13,795,2.4000000000000004,135,1.3
+2023,8,19,6,0,16.900000000000002,1.73,0.049,0.61,26,371,59,1,0,10.8,28,327,18,57,0.28200000000000003,67.45,84.97,0.96,0.13,795,2.4000000000000004,134,1.6
+2023,8,19,6,30,18.5,1.73,0.049,0.61,40,562,143,0,0,10.8,40,562,0,143,0.28200000000000003,61,79.42,0.96,0.13,795,2.4000000000000004,146,1.6
+2023,8,19,7,0,20.1,1.7,0.053,0.61,51,677,240,0,0,10.600000000000001,51,677,0,240,0.28200000000000003,54.53,73.78,0.96,0.13,795,2.5,158,1.7000000000000002
+2023,8,19,7,30,22,1.7,0.053,0.61,58,755,340,0,0,10.700000000000001,58,755,0,340,0.281,48.54,68.09,0.96,0.13,795,2.5,171,2.2
+2023,8,19,8,0,24,1.69,0.055,0.61,64,808,438,0,0,10,64,808,0,438,0.28,41.07,62.42,0.96,0.13,795,2.5,184,2.7
+2023,8,19,8,30,24.900000000000002,1.69,0.055,0.61,70,848,534,0,0,10,70,848,0,534,0.279,38.92,56.81,0.96,0.13,795,2.5,187,3
+2023,8,19,9,0,25.900000000000002,1.68,0.056,0.61,73,878,622,0,0,9.9,73,878,0,622,0.278,36.410000000000004,51.32,0.96,0.13,795,2.5,191,3.3000000000000003
+2023,8,19,9,30,26.5,1.68,0.056,0.61,78,900,703,0,0,9.9,111,834,0,690,0.278,35.15,46.03,0.96,0.13,795,2.5,194,3.6
+2023,8,19,10,0,27.1,1.6600000000000001,0.059000000000000004,0.61,81,917,773,0,0,9.8,81,917,0,773,0.277,33.88,41.050000000000004,0.96,0.13,794,2.5,197,4
+2023,8,19,10,30,27.5,1.6600000000000001,0.059000000000000004,0.61,80,937,833,0,0,9.8,80,937,0,833,0.277,33.1,36.52,0.96,0.13,794,2.5,200,4.3
+2023,8,19,11,0,28,1.6600000000000001,0.042,0.61,76,956,881,0,0,9.8,76,956,0,881,0.276,32.03,32.67,0.97,0.13,794,2.4000000000000004,203,4.6000000000000005
+2023,8,19,11,30,28.3,1.6600000000000001,0.042,0.61,75,965,913,0,0,9.8,75,965,0,913,0.275,31.48,29.77,0.96,0.13,794,2.4000000000000004,205,4.7
+2023,8,19,12,0,28.700000000000003,1.67,0.037,0.61,74,972,931,0,0,9.600000000000001,74,972,0,931,0.274,30.32,28.14,0.96,0.13,794,2.3000000000000003,207,4.9
+2023,8,19,12,30,29.1,1.67,0.037,0.61,73,976,935,0,0,9.600000000000001,73,976,0,935,0.273,29.63,28,0.96,0.13,794,2.2,207,4.9
+2023,8,19,13,0,29.400000000000002,1.67,0.032,0.61,72,977,923,0,0,9.1,72,977,0,923,0.272,28.240000000000002,29.38,0.9500000000000001,0.13,793,2.1,208,4.9
+2023,8,19,13,30,29.6,1.67,0.032,0.61,69,976,896,0,0,9.1,137,831,7,841,0.272,27.92,32.07,0.9500000000000001,0.13,793,2.1,208,4.9
+2023,8,19,14,0,29.700000000000003,1.69,0.026000000000000002,0.61,65,972,854,0,7,8.6,206,653,21,736,0.271,26.810000000000002,35.77,0.9500000000000001,0.13,793,2,208,4.9
+2023,8,19,14,30,29.6,1.69,0.026000000000000002,0.61,64,961,798,0,6,8.6,325,97,0,399,0.27,26.96,40.2,0.96,0.13,793,2,210,5
+2023,8,19,15,0,29.400000000000002,1.68,0.026000000000000002,0.61,62,946,730,0,8,8.200000000000001,212,552,0,602,0.27,26.55,45.11,0.96,0.13,793,2,211,5
+2023,8,19,15,30,28.900000000000002,1.68,0.026000000000000002,0.61,60,926,651,0,0,8.200000000000001,64,913,0,646,0.269,27.330000000000002,50.36,0.96,0.13,793,2,212,4.9
+2023,8,19,16,0,28.5,1.6600000000000001,0.027,0.61,57,900,562,0,0,8.1,57,900,0,562,0.269,27.68,55.83,0.96,0.13,793,2,214,4.9
+2023,8,19,16,30,27.8,1.6600000000000001,0.027,0.61,54,866,468,0,8,8.1,85,784,14,460,0.268,28.830000000000002,61.43,0.9500000000000001,0.13,793,2,216,4.6000000000000005
+2023,8,19,17,0,27.1,1.6400000000000001,0.026000000000000002,0.61,49,819,368,0,8,8.1,116,588,21,345,0.268,30.22,67.1,0.9500000000000001,0.13,793,2,218,4.3
+2023,8,19,17,30,25.8,1.6400000000000001,0.026000000000000002,0.61,44,752,266,0,0,8.1,64,645,7,255,0.268,32.61,72.79,0.9500000000000001,0.13,793,2,221,3.2
+2023,8,19,18,0,24.5,1.6400000000000001,0.025,0.61,36,650,166,0,0,9.700000000000001,36,650,0,166,0.268,39.18,78.46000000000001,0.9500000000000001,0.13,793,1.9000000000000001,223,2.1
+2023,8,19,18,30,23.1,1.6400000000000001,0.025,0.61,27,471,76,5,8,9.700000000000001,46,184,75,65,0.269,42.660000000000004,84.04,0.9500000000000001,0.13,794,1.9000000000000001,226,1.6
+2023,8,19,19,0,21.6,1.6400000000000001,0.028,0.61,10,123,11,1,0,10.600000000000001,8,74,14,9,0.269,49.43,89.35000000000001,0.9500000000000001,0.13,794,2,228,1
+2023,8,19,19,30,21.400000000000002,1.6400000000000001,0.028,0.61,0,0,0,0,0,10.600000000000001,0,0,0,0,0.269,50.03,95.08,0.96,0.13,794,2,216,0.9
+2023,8,19,20,0,21.3,1.6300000000000001,0.035,0.61,0,0,0,0,0,10.3,0,0,0,0,0.269,49.61,100.3,0.96,0.13,794,2.1,203,0.8
+2023,8,19,20,30,20.700000000000003,1.6300000000000001,0.035,0.61,0,0,0,0,0,10.4,0,0,0,0,0.269,51.53,105.28,0.97,0.13,795,2.2,171,0.9
+2023,8,19,21,0,20.200000000000003,1.61,0.041,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.269,52.17,109.95,0.97,0.13,795,2.3000000000000003,139,1
+2023,8,19,21,30,19.900000000000002,1.61,0.041,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.27,53.14,114.26,0.97,0.13,795,2.3000000000000003,125,1.4000000000000001
+2023,8,19,22,0,19.6,1.59,0.045,0.61,0,0,0,0,8,9.700000000000001,0,0,0,0,0.27,52.64,118.09,0.97,0.13,795,2.3000000000000003,111,1.7000000000000002
+2023,8,19,22,30,19.6,1.59,0.045,0.61,0,0,0,0,8,9.700000000000001,0,0,0,0,0.27,52.64,121.37,0.97,0.13,795,2.4000000000000004,110,2.4000000000000004
+2023,8,19,23,0,19.6,1.57,0.051000000000000004,0.61,0,0,0,0,7,9.600000000000001,0,0,0,0,0.27,52.49,123.97,0.97,0.13,795,2.4000000000000004,109,3
+2023,8,19,23,30,19.3,1.57,0.051000000000000004,0.61,0,0,0,0,7,9.600000000000001,0,0,0,0,0.269,53.480000000000004,125.81,0.97,0.13,795,2.4000000000000004,109,3.3000000000000003
+2023,8,20,0,0,19.1,1.54,0.059000000000000004,0.61,0,0,0,0,7,10,0,0,0,0,0.268,55.44,126.8,0.98,0.13,795,2.5,110,3.5
+2023,8,20,0,30,18.8,1.54,0.059000000000000004,0.61,0,0,0,0,7,10,0,0,0,0,0.268,56.49,126.89,0.98,0.13,795,2.5,110,3.4000000000000004
+2023,8,20,1,0,18.6,1.54,0.067,0.61,0,0,0,0,7,10.3,0,0,0,0,0.267,58.550000000000004,126.08,0.98,0.13,794,2.5,111,3.2
+2023,8,20,1,30,18.3,1.54,0.067,0.61,0,0,0,0,7,10.3,0,0,0,0,0.267,59.65,124.4,0.97,0.13,794,2.5,109,2.9000000000000004
+2023,8,20,2,0,17.900000000000002,1.56,0.068,0.61,0,0,0,0,7,10.5,0,0,0,0,0.267,62,121.93,0.97,0.13,794,2.5,107,2.6
+2023,8,20,2,30,17.5,1.56,0.068,0.61,0,0,0,0,7,10.5,0,0,0,0,0.267,63.57,118.78,0.97,0.13,794,2.4000000000000004,104,2.4000000000000004
+2023,8,20,3,0,17.1,1.57,0.062,0.61,0,0,0,0,7,10.600000000000001,0,0,0,0,0.267,65.48,115.05,0.97,0.13,794,2.4000000000000004,102,2.1
+2023,8,20,3,30,16.8,1.57,0.062,0.61,0,0,0,0,7,10.600000000000001,0,0,0,0,0.267,66.73,110.83,0.96,0.13,794,2.3000000000000003,100,2
+2023,8,20,4,0,16.5,1.54,0.055,0.61,0,0,0,0,7,10.600000000000001,0,0,0,0,0.268,67.89,106.23,0.96,0.13,794,2.2,99,1.8
+2023,8,20,4,30,16.2,1.54,0.055,0.61,0,0,0,0,7,10.5,0,0,0,0,0.268,69.2,101.3,0.96,0.13,794,2.2,99,1.7000000000000002
+2023,8,20,5,0,16,1.52,0.048,0.61,0,0,0,0,8,10.4,0,0,0,0,0.268,69.44,96.13,0.9500000000000001,0.13,794,2.1,98,1.6
+2023,8,20,5,30,16.5,1.52,0.048,0.61,6,60,6,3,8,10.4,3,0,43,3,0.268,67.27,90.3,0.9500000000000001,0.13,794,2,101,1.8
+2023,8,20,6,0,17.1,1.51,0.043000000000000003,0.61,26,383,59,6,7,10.100000000000001,42,27,86,44,0.269,63.34,85.13,0.9500000000000001,0.13,794,1.8,104,2
+2023,8,20,6,30,18.7,1.51,0.043000000000000003,0.61,38,590,145,0,7,10.100000000000001,91,157,0,119,0.27,57.29,79.59,0.9400000000000001,0.13,794,1.8,130,2.3000000000000003
+2023,8,20,7,0,20.3,1.51,0.041,0.61,47,715,245,0,7,8.4,127,251,0,196,0.27,46.27,73.94,0.9400000000000001,0.13,794,1.7000000000000002,156,2.6
+2023,8,20,7,30,22.3,1.51,0.041,0.61,54,793,348,0,7,8.4,154,365,0,289,0.27,41,68.25,0.9400000000000001,0.13,795,1.7000000000000002,175,3.6
+2023,8,20,8,0,24.400000000000002,1.51,0.041,0.61,59,847,449,0,7,4.5,185,398,0,368,0.271,27.64,62.59,0.9400000000000001,0.13,795,1.7000000000000002,193,4.7
+2023,8,20,8,30,25.5,1.51,0.041,0.61,64,884,546,0,7,4.5,194,466,0,448,0.27,25.89,56.980000000000004,0.9400000000000001,0.13,795,1.7000000000000002,197,4.9
+2023,8,20,9,0,26.700000000000003,1.52,0.043000000000000003,0.61,69,911,636,0,7,4.2,238,418,0,498,0.27,23.56,51.5,0.9400000000000001,0.13,795,1.7000000000000002,201,5.1000000000000005
+2023,8,20,9,30,27.6,1.52,0.043000000000000003,0.61,72,931,716,0,7,4.2,268,427,0,563,0.27,22.35,46.22,0.9500000000000001,0.13,795,1.8,203,5.2
+2023,8,20,10,0,28.6,1.52,0.045,0.61,75,947,787,0,7,5.1000000000000005,290,429,0,612,0.27,22.47,41.26,0.9500000000000001,0.13,795,1.8,204,5.4
+2023,8,20,10,30,29.3,1.52,0.045,0.61,76,961,846,0,7,5.1000000000000005,309,435,0,657,0.27,21.580000000000002,36.76,0.9500000000000001,0.13,795,1.8,205,5.5
+2023,8,20,11,0,30.1,1.49,0.039,0.61,75,972,891,0,7,6.2,326,438,0,694,0.27,22.16,32.93,0.9500000000000001,0.13,795,1.8,206,5.6000000000000005
+2023,8,20,11,30,30.700000000000003,1.49,0.039,0.61,75,977,921,0,7,6.1000000000000005,281,550,0,757,0.27,21.38,30.07,0.9500000000000001,0.13,794,1.9000000000000001,207,5.7
+2023,8,20,12,0,31.200000000000003,1.49,0.039,0.61,76,980,938,0,7,6.800000000000001,212,683,0,812,0.27,21.77,28.46,0.9500000000000001,0.13,794,1.9000000000000001,207,5.800000000000001
+2023,8,20,12,30,31.6,1.49,0.039,0.61,76,980,939,0,7,6.800000000000001,175,759,0,843,0.27,21.29,28.34,0.9500000000000001,0.13,794,1.8,207,5.7
+2023,8,20,13,0,31.900000000000002,1.47,0.039,0.61,77,978,926,0,7,6.9,167,770,0,836,0.27,21.11,29.71,0.9500000000000001,0.13,794,1.8,207,5.7
+2023,8,20,13,30,32.1,1.47,0.039,0.61,77,971,897,0,0,6.9,116,890,0,868,0.27,20.85,32.39,0.9400000000000001,0.13,793,1.8,207,5.6000000000000005
+2023,8,20,14,0,32.2,1.5,0.05,0.61,79,959,854,0,0,6.5,96,923,0,842,0.27,20.17,36.08,0.9400000000000001,0.13,793,1.7000000000000002,207,5.6000000000000005
+2023,8,20,14,30,32.2,1.5,0.05,0.61,77,950,799,0,0,6.5,80,939,0,794,0.27,20.17,40.49,0.9400000000000001,0.13,793,1.7000000000000002,206,5.5
+2023,8,20,15,0,32.1,1.46,0.046,0.61,72,938,731,0,0,5.6000000000000005,72,938,0,731,0.269,19.06,45.39,0.93,0.13,793,1.6,205,5.4
+2023,8,20,15,30,31.700000000000003,1.46,0.046,0.61,68,920,652,0,0,5.6000000000000005,72,910,0,649,0.269,19.47,50.63,0.93,0.13,792,1.6,205,5.2
+2023,8,20,16,0,31.400000000000002,1.41,0.041,0.61,65,895,564,0,0,4.5,95,825,14,555,0.268,18.400000000000002,56.09,0.93,0.13,792,1.5,204,5.1000000000000005
+2023,8,20,16,30,30.700000000000003,1.41,0.041,0.61,60,861,468,0,0,4.5,75,822,25,465,0.268,19.150000000000002,61.68,0.93,0.13,792,1.5,204,4.800000000000001
+2023,8,20,17,0,30.1,1.37,0.038,0.61,54,813,367,0,0,3.9000000000000004,67,774,0,365,0.267,18.93,67.35,0.93,0.13,793,1.5,203,4.5
+2023,8,20,17,30,28.200000000000003,1.37,0.038,0.61,48,742,264,0,8,3.9000000000000004,75,625,32,257,0.267,21.11,73.05,0.93,0.13,793,1.5,204,3.2
+2023,8,20,18,0,26.3,1.35,0.036000000000000004,0.61,39,633,163,0,0,6,47,575,32,160,0.267,27.42,78.71000000000001,0.93,0.13,793,1.5,204,1.9000000000000001
+2023,8,20,18,30,24.6,1.35,0.036000000000000004,0.61,28,447,72,0,0,6,28,428,4,71,0.267,30.330000000000002,84.3,0.93,0.13,793,1.4000000000000001,207,1.6
+2023,8,20,19,0,22.8,1.36,0.036000000000000004,0.61,9,109,10,1,0,6.7,8,87,11,9,0.267,35.37,89.59,0.92,0.13,793,1.4000000000000001,209,1.3
+2023,8,20,19,30,22.400000000000002,1.36,0.036000000000000004,0.61,0,0,0,0,0,6.7,0,0,0,0,0.268,36.28,95.35000000000001,0.92,0.13,794,1.4000000000000001,207,1.3
+2023,8,20,20,0,21.900000000000002,1.3800000000000001,0.037,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.268,36.26,100.58,0.92,0.13,794,1.4000000000000001,204,1.3
+2023,8,20,20,30,21.400000000000002,1.3800000000000001,0.037,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.268,37.38,105.56,0.92,0.13,794,1.4000000000000001,200,1.4000000000000001
+2023,8,20,21,0,20.900000000000002,1.36,0.039,0.61,0,0,0,0,0,5.7,0,0,0,0,0.268,37.160000000000004,110.25,0.92,0.13,794,1.4000000000000001,195,1.5
+2023,8,20,21,30,20.5,1.36,0.039,0.61,0,0,0,0,0,5.7,0,0,0,0,0.268,38.08,114.56,0.92,0.13,794,1.5,191,1.7000000000000002
+2023,8,20,22,0,20,1.29,0.041,0.61,0,0,0,0,0,5.2,0,0,0,0,0.268,37.93,118.41,0.92,0.13,794,1.5,188,1.9000000000000001
+2023,8,20,22,30,19.900000000000002,1.29,0.041,0.61,0,0,0,0,0,5.2,0,0,0,0,0.268,38.160000000000004,121.69,0.92,0.13,794,1.5,186,2.2
+2023,8,20,23,0,19.700000000000003,1.22,0.043000000000000003,0.61,0,0,0,0,0,4.7,0,0,0,0,0.269,37.26,124.31,0.92,0.13,794,1.5,184,2.5
+2023,8,20,23,30,19.700000000000003,1.22,0.043000000000000003,0.61,0,0,0,0,0,4.7,0,0,0,0,0.269,37.26,126.15,0.92,0.13,794,1.5,184,3
+2023,8,21,0,0,19.700000000000003,1.24,0.044,0.61,0,0,0,0,3,4.1000000000000005,0,0,0,0,0.269,35.74,127.14,0.92,0.13,794,1.5,183,3.5
+2023,8,21,0,30,19.6,1.24,0.044,0.61,0,0,0,0,8,4.1000000000000005,0,0,0,0,0.269,35.96,127.22,0.92,0.13,794,1.5,183,3.8000000000000003
+2023,8,21,1,0,19.6,1.3,0.047,0.61,0,0,0,0,8,3.4000000000000004,0,0,0,0,0.27,34.18,126.39,0.92,0.13,794,1.4000000000000001,183,4.2
+2023,8,21,1,30,19.400000000000002,1.3,0.047,0.61,0,0,0,0,8,3.4000000000000004,0,0,0,0,0.27,34.61,124.7,0.92,0.13,794,1.5,183,4.3
+2023,8,21,2,0,19.200000000000003,1.31,0.049,0.61,0,0,0,0,0,2.7,0,0,0,0,0.27,33.37,122.22,0.92,0.13,794,1.5,182,4.4
+2023,8,21,2,30,18.900000000000002,1.31,0.049,0.61,0,0,0,0,0,2.7,0,0,0,0,0.271,33.99,119.05,0.92,0.13,794,1.5,182,4.2
+2023,8,21,3,0,18.5,1.28,0.053,0.61,0,0,0,0,0,2.6,0,0,0,0,0.271,34.72,115.29,0.92,0.13,795,1.5,181,4.1000000000000005
+2023,8,21,3,30,18.2,1.28,0.053,0.61,0,0,0,0,0,2.6,0,0,0,0,0.271,35.38,111.06,0.92,0.13,795,1.5,182,3.9000000000000004
+2023,8,21,4,0,17.8,1.24,0.059000000000000004,0.61,0,0,0,0,0,3.2,0,0,0,0,0.272,37.75,106.44,0.92,0.13,795,1.6,183,3.7
+2023,8,21,4,30,17.6,1.24,0.059000000000000004,0.61,0,0,0,0,0,3.2,0,0,0,0,0.272,38.22,101.5,0.93,0.13,795,1.6,187,3.6
+2023,8,21,5,0,17.3,1.23,0.067,0.61,0,0,0,0,0,4,0,0,0,0,0.272,41.14,96.32000000000001,0.93,0.13,796,1.6,190,3.4000000000000004
+2023,8,21,5,30,18.400000000000002,1.23,0.067,0.61,6,39,5,0,0,4,6,35,7,5,0.272,38.4,90.95,0.93,0.13,796,1.6,193,3.7
+2023,8,21,6,0,19.400000000000002,1.23,0.073,0.61,29,309,54,0,0,4.6000000000000005,29,309,0,54,0.272,37.75,85.3,0.93,0.13,796,1.7000000000000002,195,4.1000000000000005
+2023,8,21,6,30,21,1.23,0.073,0.61,45,523,138,0,0,4.6000000000000005,45,523,0,138,0.273,34.25,79.75,0.93,0.13,797,1.7000000000000002,198,5
+2023,8,21,7,0,22.5,1.24,0.075,0.61,56,653,235,0,0,6.2,56,653,0,235,0.273,34.74,74.10000000000001,0.93,0.13,797,1.7000000000000002,201,5.800000000000001
+2023,8,21,7,30,23.8,1.24,0.075,0.61,65,742,338,0,0,6.2,65,742,0,338,0.273,32.13,68.42,0.93,0.13,797,1.6,203,6.4
+2023,8,21,8,0,25,1.26,0.074,0.61,72,804,440,0,0,7.9,72,804,0,440,0.273,33.7,62.75,0.93,0.13,797,1.6,205,7.1000000000000005
+2023,8,21,8,30,25.900000000000002,1.26,0.074,0.61,77,849,538,0,0,7.9,77,849,0,538,0.273,31.95,57.15,0.93,0.13,797,1.6,205,7.1000000000000005
+2023,8,21,9,0,26.8,1.26,0.073,0.61,82,882,629,0,0,8.1,82,882,0,629,0.274,30.72,51.68,0.93,0.13,797,1.6,204,7.2
+2023,8,21,9,30,27.6,1.26,0.073,0.61,85,908,711,0,0,8.1,85,908,0,711,0.274,29.32,46.42,0.93,0.13,797,1.5,204,7.2
+2023,8,21,10,0,28.400000000000002,1.27,0.073,0.61,88,927,783,0,0,7.5,88,927,0,783,0.274,26.76,41.47,0.93,0.13,797,1.5,204,7.2
+2023,8,21,10,30,29.1,1.27,0.073,0.61,87,946,843,0,0,7.5,87,946,0,843,0.274,25.7,36.99,0.92,0.13,797,1.5,203,7.2
+2023,8,21,11,0,29.8,1.24,0.061,0.61,87,961,891,0,0,6.6000000000000005,87,961,0,891,0.273,23.22,33.2,0.92,0.13,796,1.5,203,7.1000000000000005
+2023,8,21,11,30,30.3,1.24,0.061,0.61,88,966,921,0,0,6.6000000000000005,164,760,0,820,0.273,22.57,30.37,0.92,0.13,796,1.5,203,7
+2023,8,21,12,0,30.900000000000002,1.29,0.065,0.61,90,966,937,0,0,6,197,683,0,796,0.272,20.87,28.78,0.92,0.13,796,1.5,202,7
+2023,8,21,12,30,31.200000000000003,1.29,0.065,0.61,91,964,937,0,0,6,103,931,0,920,0.272,20.52,28.67,0.92,0.13,796,1.6,202,6.9
+2023,8,21,13,0,31.5,1.35,0.07200000000000001,0.61,93,958,922,0,0,5.6000000000000005,93,958,0,922,0.272,19.69,30.05,0.92,0.13,796,1.6,202,6.800000000000001
+2023,8,21,13,30,31.6,1.35,0.07200000000000001,0.61,88,957,893,0,0,5.6000000000000005,88,957,0,893,0.271,19.580000000000002,32.72,0.92,0.13,796,1.6,203,6.800000000000001
+2023,8,21,14,0,31.700000000000003,1.37,0.055,0.61,81,955,850,0,0,5.300000000000001,81,955,0,850,0.271,19.09,36.39,0.92,0.13,795,1.7000000000000002,204,6.7
+2023,8,21,14,30,31.5,1.37,0.055,0.61,80,942,793,0,0,5.300000000000001,90,910,0,779,0.271,19.31,40.78,0.92,0.13,795,1.7000000000000002,205,6.7
+2023,8,21,15,0,31.400000000000002,1.3800000000000001,0.055,0.61,77,925,723,0,0,5,77,925,0,723,0.271,18.98,45.67,0.92,0.13,795,1.7000000000000002,207,6.7
+2023,8,21,15,30,31,1.3800000000000001,0.055,0.61,75,899,642,0,0,5,83,868,0,630,0.272,19.41,50.9,0.92,0.13,795,1.7000000000000002,209,6.5
+2023,8,21,16,0,30.5,1.3800000000000001,0.059000000000000004,0.61,71,866,551,0,0,4.7,71,866,0,551,0.272,19.52,56.35,0.92,0.13,795,1.8,211,6.4
+2023,8,21,16,30,29.900000000000002,1.3800000000000001,0.059000000000000004,0.61,66,824,454,0,0,4.7,66,824,0,454,0.272,20.2,61.940000000000005,0.92,0.13,795,1.8,214,6.1000000000000005
+2023,8,21,17,0,29.200000000000003,1.35,0.061,0.61,61,767,353,0,0,4.6000000000000005,73,727,14,350,0.273,20.93,67.61,0.92,0.14,795,1.8,218,5.7
+2023,8,21,17,30,27.700000000000003,1.35,0.061,0.61,53,689,251,0,0,4.6000000000000005,59,662,0,249,0.273,22.830000000000002,73.3,0.92,0.14,795,1.8,225,4.7
+2023,8,21,18,0,26.200000000000003,1.3,0.058,0.61,43,571,152,0,0,5.7,43,571,0,152,0.274,26.96,78.97,0.92,0.14,795,1.8,232,3.7
+2023,8,21,18,30,24.3,1.3,0.058,0.61,29,375,65,0,0,5.7,29,375,0,65,0.274,30.17,84.55,0.93,0.14,795,1.8,245,2.9000000000000004
+2023,8,21,19,0,22.5,1.23,0.053,0.61,7,61,7,0,0,7.4,7,61,0,7,0.275,37.72,89.83,0.93,0.14,796,1.9000000000000001,257,2.2
+2023,8,21,19,30,21.700000000000003,1.23,0.053,0.61,0,0,0,0,0,7.4,0,0,0,0,0.276,39.6,95.63,0.93,0.14,796,1.9000000000000001,263,2
+2023,8,21,20,0,21,1.21,0.051000000000000004,0.61,0,0,0,0,0,8.6,0,0,0,0,0.276,44.9,100.86,0.93,0.14,796,1.9000000000000001,269,1.8
+2023,8,21,20,30,20.400000000000002,1.21,0.051000000000000004,0.61,0,0,0,0,0,8.6,0,0,0,0,0.276,46.59,105.85000000000001,0.93,0.14,796,1.9000000000000001,268,1.6
+2023,8,21,21,0,19.8,1.22,0.05,0.61,0,0,0,0,0,9.4,0,0,0,0,0.276,51.1,110.55,0.9400000000000001,0.14,797,1.9000000000000001,267,1.4000000000000001
+2023,8,21,21,30,19.3,1.22,0.05,0.61,0,0,0,0,0,9.4,0,0,0,0,0.276,52.7,114.87,0.9400000000000001,0.14,797,1.9000000000000001,263,1.3
+2023,8,21,22,0,18.900000000000002,1.27,0.05,0.61,0,0,0,0,0,9.8,0,0,0,0,0.277,55.34,118.73,0.9400000000000001,0.14,797,1.9000000000000001,258,1.2000000000000002
+2023,8,21,22,30,18.5,1.27,0.05,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,56.74,122.02,0.9400000000000001,0.14,797,1.9000000000000001,254,1.2000000000000002
+2023,8,21,23,0,18.1,1.35,0.051000000000000004,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,58.51,124.64,0.9400000000000001,0.14,797,1.9000000000000001,250,1.2000000000000002
+2023,8,21,23,30,17.8,1.35,0.051000000000000004,0.61,0,0,0,0,0,9.8,0,0,0,0,0.276,59.620000000000005,126.49000000000001,0.9400000000000001,0.14,797,1.9000000000000001,246,1.1
+2023,8,22,0,0,17.400000000000002,1.44,0.055,0.61,0,0,0,0,0,9.8,0,0,0,0,0.275,60.81,127.47,0.9400000000000001,0.14,797,1.9000000000000001,242,1.1
+2023,8,22,0,30,17.1,1.44,0.055,0.61,0,0,0,0,0,9.8,0,0,0,0,0.275,61.97,127.55,0.9400000000000001,0.14,797,2,236,1.1
+2023,8,22,1,0,16.8,1.52,0.062,0.61,0,0,0,0,3,9.700000000000001,0,0,0,0,0.275,62.96,126.71000000000001,0.9400000000000001,0.14,797,2,230,1.1
+2023,8,22,1,30,16.5,1.52,0.062,0.61,0,0,0,0,3,9.700000000000001,0,0,0,0,0.275,64.17,125,0.9400000000000001,0.14,797,2,227,1.1
+2023,8,22,2,0,16.3,1.56,0.069,0.61,0,0,0,0,8,9.700000000000001,0,0,0,0,0.274,65.16,122.5,0.9400000000000001,0.14,797,2,224,1.1
+2023,8,22,2,30,16.1,1.56,0.069,0.61,0,0,0,0,8,9.700000000000001,0,0,0,0,0.274,66,119.31,0.9400000000000001,0.14,797,2,227,1
+2023,8,22,3,0,16,1.56,0.07100000000000001,0.61,0,0,0,0,5,9.8,0,0,0,0,0.274,66.87,115.54,0.9400000000000001,0.14,797,2,230,1
+2023,8,22,3,30,16,1.56,0.07100000000000001,0.61,0,0,0,0,3,9.8,0,0,0,0,0.274,66.87,111.29,0.9400000000000001,0.14,797,2,237,1
+2023,8,22,4,0,16,1.56,0.07,0.61,0,0,0,0,0,9.9,0,0,0,0,0.275,67.17,106.65,0.9400000000000001,0.14,797,2,244,1
+2023,8,22,4,30,16.2,1.56,0.07,0.61,0,0,0,0,0,9.9,0,0,0,0,0.275,66.32000000000001,101.7,0.9400000000000001,0.14,797,2,256,0.8
+2023,8,22,5,0,16.400000000000002,1.55,0.067,0.61,0,0,0,0,3,9.9,0,0,0,0,0.275,65.21000000000001,96.51,0.9400000000000001,0.14,797,1.9000000000000001,268,0.7000000000000001
+2023,8,22,5,30,17.6,1.55,0.067,0.61,5,33,4,0,0,9.9,5,33,0,4,0.275,60.45,91.12,0.9400000000000001,0.14,797,1.9000000000000001,284,0.6000000000000001
+2023,8,22,6,0,18.8,1.54,0.067,0.61,27,319,52,0,0,9.9,27,319,0,52,0.274,56.17,85.47,0.9400000000000001,0.14,797,1.9000000000000001,299,0.5
+2023,8,22,6,30,20.900000000000002,1.54,0.067,0.61,43,528,136,0,0,9.9,43,528,0,136,0.274,49.34,79.91,0.9400000000000001,0.14,797,1.9000000000000001,253,0.9
+2023,8,22,7,0,22.900000000000002,1.54,0.07200000000000001,0.61,55,653,232,0,0,8.8,55,653,0,232,0.274,40.67,74.26,0.9400000000000001,0.14,798,1.9000000000000001,206,1.3
+2023,8,22,7,30,24.400000000000002,1.54,0.07200000000000001,0.61,65,731,332,0,0,8.8,65,731,0,332,0.274,37.17,68.58,0.9400000000000001,0.14,798,2,200,2.6
+2023,8,22,8,0,25.900000000000002,1.55,0.084,0.61,74,781,430,0,0,7.800000000000001,80,759,0,426,0.274,31.61,62.92,0.9400000000000001,0.14,798,2.1,195,3.9000000000000004
+2023,8,22,8,30,26.6,1.55,0.084,0.61,83,816,524,0,0,7.800000000000001,83,816,0,524,0.273,30.330000000000002,57.32,0.9500000000000001,0.14,798,2.1,197,4.5
+2023,8,22,9,0,27.200000000000003,1.56,0.10300000000000001,0.61,93,838,611,0,0,7.9,93,838,0,611,0.273,29.54,51.86,0.9500000000000001,0.14,798,2.2,198,5.1000000000000005
+2023,8,22,9,30,27.200000000000003,1.56,0.10300000000000001,0.61,102,853,688,0,0,7.9,102,853,0,688,0.273,29.54,46.61,0.9500000000000001,0.14,798,2.3000000000000003,199,5.4
+2023,8,22,10,0,27.1,1.56,0.129,0.61,113,859,754,0,0,8.5,135,822,0,749,0.272,30.86,41.69,0.96,0.14,798,2.4000000000000004,199,5.800000000000001
+2023,8,22,10,30,26.6,1.56,0.129,0.61,106,892,816,0,0,8.5,191,667,0,722,0.272,31.78,37.24,0.96,0.14,798,2.4000000000000004,198,5.800000000000001
+2023,8,22,11,0,26.1,1.5,0.075,0.61,93,926,865,0,5,9.1,389,112,0,482,0.272,34.18,33.47,0.96,0.14,797,2.5,196,5.800000000000001
+2023,8,22,11,30,26.1,1.5,0.075,0.61,93,934,896,0,3,9.1,398,257,4,619,0.272,34.18,30.67,0.9500000000000001,0.14,797,2.5,194,5.6000000000000005
+2023,8,22,12,0,26.1,1.55,0.066,0.61,91,941,913,0,8,9.5,398,186,0,561,0.272,35.1,29.11,0.9500000000000001,0.14,797,2.5,193,5.300000000000001
+2023,8,22,12,30,26.700000000000003,1.55,0.066,0.61,89,943,914,0,8,9.5,356,117,0,458,0.272,33.88,29.01,0.9500000000000001,0.14,797,2.5,190,5
+2023,8,22,13,0,27.200000000000003,1.6,0.062,0.61,88,943,901,0,5,9.200000000000001,416,138,0,535,0.272,32.3,30.39,0.9500000000000001,0.14,797,2.5,188,4.800000000000001
+2023,8,22,13,30,27.700000000000003,1.6,0.062,0.61,86,939,873,0,0,9.200000000000001,231,630,0,759,0.272,31.37,33.04,0.9400000000000001,0.14,797,2.4000000000000004,186,4.7
+2023,8,22,14,0,28.200000000000003,1.6500000000000001,0.061,0.61,84,932,831,0,5,8.4,246,63,0,297,0.272,28.75,36.7,0.9400000000000001,0.14,796,2.4000000000000004,185,4.7
+2023,8,22,14,30,28.400000000000002,1.6500000000000001,0.061,0.61,82,920,775,0,0,8.4,188,644,0,673,0.273,28.42,41.08,0.9400000000000001,0.14,796,2.3000000000000003,186,4.7
+2023,8,22,15,0,28.5,1.69,0.063,0.61,80,902,707,0,5,7.300000000000001,277,266,0,462,0.273,26.29,45.96,0.9400000000000001,0.14,795,2.3000000000000003,186,4.7
+2023,8,22,15,30,28.3,1.69,0.063,0.61,76,880,628,0,0,7.300000000000001,167,557,0,516,0.273,26.6,51.18,0.9400000000000001,0.14,795,2.2,189,4.6000000000000005
+2023,8,22,16,0,28.1,1.72,0.065,0.61,73,849,540,0,0,6.6000000000000005,147,657,0,508,0.274,25.6,56.620000000000005,0.9400000000000001,0.14,795,2.2,192,4.5
+2023,8,22,16,30,27.5,1.72,0.065,0.61,68,806,444,0,3,6.6000000000000005,162,494,4,392,0.274,26.5,62.2,0.9400000000000001,0.14,795,2.2,195,4.3
+2023,8,22,17,0,27,1.73,0.07,0.61,63,746,344,0,3,6.300000000000001,122,386,7,267,0.274,26.810000000000002,67.87,0.9400000000000001,0.14,795,2.2,199,4.1000000000000005
+2023,8,22,17,30,25.6,1.73,0.07,0.61,56,656,242,0,0,6.300000000000001,81,549,0,236,0.274,29.11,73.56,0.9400000000000001,0.14,795,2.2,203,3.1
+2023,8,22,18,0,24.3,1.72,0.083,0.61,47,521,144,1,5,7.4,71,89,14,88,0.274,33.83,79.23,0.9500000000000001,0.14,795,2.2,208,2.2
+2023,8,22,18,30,23.1,1.72,0.083,0.61,31,311,59,7,5,7.4,39,4,100,39,0.274,36.36,84.81,0.9500000000000001,0.14,795,2.3000000000000003,213,1.8
+2023,8,22,19,0,21.900000000000002,1.68,0.10200000000000001,0.61,6,40,6,3,3,7.800000000000001,3,0,43,3,0.274,40.32,90.06,0.9500000000000001,0.14,795,2.3000000000000003,217,1.5
+2023,8,22,19,30,21.5,1.68,0.10200000000000001,0.61,0,0,0,0,5,7.800000000000001,0,0,0,0,0.274,41.37,95.9,0.9500000000000001,0.14,796,2.4000000000000004,222,1.5
+2023,8,22,20,0,21.1,1.6600000000000001,0.116,0.61,0,0,0,0,3,8.1,0,0,0,0,0.274,43.28,101.14,0.9500000000000001,0.14,796,2.4000000000000004,226,1.5
+2023,8,22,20,30,20.6,1.6600000000000001,0.116,0.61,0,0,0,0,0,8.1,0,0,0,0,0.274,44.63,106.15,0.9500000000000001,0.14,796,2.4000000000000004,229,1.4000000000000001
+2023,8,22,21,0,20.200000000000003,1.67,0.116,0.61,0,0,0,0,0,8.6,0,0,0,0,0.274,47.22,110.85000000000001,0.9500000000000001,0.14,796,2.4000000000000004,232,1.3
+2023,8,22,21,30,19.700000000000003,1.67,0.116,0.61,0,0,0,0,3,8.6,0,0,0,0,0.274,48.7,115.19,0.9500000000000001,0.14,796,2.4000000000000004,232,1.2000000000000002
+2023,8,22,22,0,19.200000000000003,1.7,0.113,0.61,0,0,0,0,8,9,0,0,0,0,0.274,51.72,119.05,0.9500000000000001,0.14,796,2.4000000000000004,232,1.1
+2023,8,22,22,30,18.8,1.7,0.113,0.61,0,0,0,0,8,9,0,0,0,0,0.274,53.02,122.36,0.9500000000000001,0.14,796,2.4000000000000004,227,1
+2023,8,22,23,0,18.400000000000002,1.71,0.111,0.61,0,0,0,0,0,9.5,0,0,0,0,0.274,56.08,124.98,0.9400000000000001,0.14,796,2.4000000000000004,222,1
+2023,8,22,23,30,18.1,1.71,0.111,0.61,0,0,0,0,3,9.5,0,0,0,0,0.274,57.14,126.83,0.9500000000000001,0.14,796,2.4000000000000004,214,1
+2023,8,23,0,0,17.8,1.71,0.113,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,59.39,127.81,0.9500000000000001,0.14,796,2.4000000000000004,207,1
+2023,8,23,0,30,17.5,1.71,0.113,0.61,0,0,0,0,0,9.8,0,0,0,0,0.273,60.52,127.88000000000001,0.9500000000000001,0.14,796,2.4000000000000004,201,1
+2023,8,23,1,0,17.2,1.69,0.11900000000000001,0.61,0,0,0,0,3,9.9,0,0,0,0,0.273,62.33,127.03,0.9500000000000001,0.14,796,2.5,195,1
+2023,8,23,1,30,17,1.69,0.11900000000000001,0.61,0,0,0,0,4,9.9,0,0,0,0,0.273,63.13,125.3,0.9500000000000001,0.14,796,2.5,192,1
+2023,8,23,2,0,16.8,1.68,0.123,0.61,0,0,0,0,4,10,0,0,0,0,0.273,64.16,122.79,0.9500000000000001,0.14,796,2.5,189,0.9
+2023,8,23,2,30,16.5,1.68,0.123,0.61,0,0,0,0,4,10,0,0,0,0,0.273,65.39,119.58,0.9500000000000001,0.14,796,2.5,187,0.9
+2023,8,23,3,0,16.3,1.67,0.125,0.61,0,0,0,0,4,9.9,0,0,0,0,0.273,66.01,115.79,0.9500000000000001,0.14,796,2.5,185,0.9
+2023,8,23,3,30,16.1,1.67,0.125,0.61,0,0,0,0,4,10,0,0,0,0,0.273,66.94,111.52,0.9500000000000001,0.14,797,2.5,185,0.9
+2023,8,23,4,0,15.8,1.6500000000000001,0.128,0.61,0,0,0,0,3,9.8,0,0,0,0,0.272,67.7,106.86,0.9500000000000001,0.14,797,2.5,185,0.9
+2023,8,23,4,30,15.700000000000001,1.6500000000000001,0.128,0.61,0,0,0,0,4,9.8,0,0,0,0,0.272,68.13,101.9,0.96,0.14,797,2.5,183,0.8
+2023,8,23,5,0,15.700000000000001,1.6300000000000001,0.137,0.61,0,0,0,0,4,9.700000000000001,0,0,0,0,0.272,67.52,96.69,0.96,0.14,797,2.5,181,0.8
+2023,8,23,5,30,16.6,1.6300000000000001,0.137,0.61,2,12,2,3,4,9.700000000000001,1,0,43,1,0.272,63.77,91.3,0.96,0.14,797,2.5,177,1
+2023,8,23,6,0,17.6,1.62,0.145,0.61,30,204,46,7,5,9.8,23,0,100,23,0.271,60.36,85.63,0.96,0.14,798,2.5,174,1.2000000000000002
+2023,8,23,6,30,18.8,1.62,0.145,0.61,53,406,123,1,5,9.8,70,22,18,74,0.271,55.99,80.08,0.96,0.14,798,2.4000000000000004,182,1.5
+2023,8,23,7,0,20,1.6300000000000001,0.14300000000000002,0.61,70,546,217,0,5,9.700000000000001,78,39,0,88,0.271,51.64,74.43,0.96,0.14,798,2.4000000000000004,190,1.8
+2023,8,23,7,30,21.200000000000003,1.6300000000000001,0.14300000000000002,0.61,82,647,317,0,5,9.700000000000001,161,129,7,208,0.271,47.97,68.74,0.96,0.14,798,2.4000000000000004,197,2.2
+2023,8,23,8,0,22.400000000000002,1.6500000000000001,0.132,0.61,90,721,416,0,5,9.4,215,207,0,309,0.271,43.5,63.08,0.96,0.14,798,2.4000000000000004,204,2.5
+2023,8,23,8,30,23.5,1.6500000000000001,0.132,0.61,96,776,513,0,0,9.4,216,408,0,435,0.271,40.7,57.5,0.9500000000000001,0.14,798,2.3000000000000003,209,2.8000000000000003
+2023,8,23,9,0,24.700000000000003,1.67,0.121,0.61,100,820,604,0,3,9.1,309,256,0,466,0.271,37.1,52.050000000000004,0.9500000000000001,0.14,798,2.3000000000000003,213,3.2
+2023,8,23,9,30,25.6,1.67,0.121,0.61,103,850,685,0,0,9.1,226,578,0,622,0.271,35.13,46.81,0.9500000000000001,0.14,797,2.3000000000000003,217,3.4000000000000004
+2023,8,23,10,0,26.5,1.68,0.116,0.61,106,874,756,0,5,8.9,352,219,0,515,0.271,33.04,41.910000000000004,0.9500000000000001,0.14,797,2.3000000000000003,220,3.6
+2023,8,23,10,30,27.200000000000003,1.68,0.116,0.61,101,903,818,0,5,8.9,297,23,0,315,0.271,31.720000000000002,37.480000000000004,0.9500000000000001,0.14,797,2.3000000000000003,223,3.8000000000000003
+2023,8,23,11,0,27.900000000000002,1.7,0.075,0.61,93,931,867,2,5,8.9,345,58,21,393,0.271,30.3,33.74,0.9500000000000001,0.14,796,2.3000000000000003,226,3.9000000000000004
+2023,8,23,11,30,28.400000000000002,1.7,0.075,0.61,94,938,898,0,5,8.9,197,2,0,199,0.27,29.44,30.970000000000002,0.9500000000000001,0.14,796,2.3000000000000003,228,4
+2023,8,23,12,0,28.900000000000002,1.68,0.074,0.61,94,942,914,0,5,8.8,292,303,0,556,0.27,28.51,29.44,0.9500000000000001,0.14,796,2.3000000000000003,231,4.1000000000000005
+2023,8,23,12,30,29.1,1.68,0.074,0.61,94,942,915,0,5,8.8,338,382,0,671,0.27,28.18,29.35,0.9500000000000001,0.14,796,2.3000000000000003,233,4.1000000000000005
+2023,8,23,13,0,29.3,1.6600000000000001,0.073,0.61,93,939,900,0,8,8.700000000000001,268,503,0,700,0.27,27.69,30.73,0.9500000000000001,0.14,795,2.3000000000000003,236,4.1000000000000005
+2023,8,23,13,30,29.3,1.6600000000000001,0.073,0.61,89,936,871,0,8,8.700000000000001,231,647,0,771,0.27,27.69,33.38,0.9500000000000001,0.14,795,2.3000000000000003,238,4.1000000000000005
+2023,8,23,14,0,29.200000000000003,1.69,0.065,0.61,85,930,828,0,0,8.6,210,621,0,706,0.27,27.5,37.02,0.9500000000000001,0.14,795,2.3000000000000003,241,4
+2023,8,23,14,30,28.900000000000002,1.69,0.065,0.61,83,918,772,0,0,8.5,124,803,0,727,0.27,27.94,41.38,0.9500000000000001,0.14,794,2.3000000000000003,244,3.9000000000000004
+2023,8,23,15,0,28.6,1.69,0.061,0.61,79,902,703,0,0,8.3,79,902,0,703,0.27,28,46.25,0.9500000000000001,0.14,794,2.3000000000000003,246,3.7
+2023,8,23,15,30,28.1,1.69,0.061,0.61,76,880,624,0,0,8.3,78,874,0,623,0.27,28.830000000000002,51.46,0.9500000000000001,0.14,794,2.3000000000000003,248,3.6
+2023,8,23,16,0,27.6,1.69,0.058,0.61,71,852,536,0,0,8.1,122,722,0,516,0.27,29.310000000000002,56.89,0.9500000000000001,0.14,794,2.3000000000000003,251,3.4000000000000004
+2023,8,23,16,30,27,1.69,0.058,0.61,65,813,441,0,3,8.1,177,450,0,385,0.27,30.36,62.47,0.9500000000000001,0.14,794,2.3000000000000003,254,3.1
+2023,8,23,17,0,26.400000000000002,1.69,0.055,0.61,58,759,341,0,7,8.1,126,381,25,268,0.27,31.3,68.13,0.9500000000000001,0.14,794,2.3000000000000003,257,2.9000000000000004
+2023,8,23,17,30,25.3,1.69,0.055,0.61,51,682,241,0,7,8.1,106,293,14,188,0.269,33.4,73.82000000000001,0.9500000000000001,0.14,794,2.3000000000000003,262,2.1
+2023,8,23,18,0,24.1,1.69,0.052000000000000005,0.61,40,564,143,2,7,9.200000000000001,72,117,29,93,0.269,38.88,79.49,0.9500000000000001,0.14,794,2.2,267,1.4000000000000001
+2023,8,23,18,30,23.1,1.69,0.052000000000000005,0.61,27,364,58,7,7,9.3,43,27,100,45,0.269,41.34,85.08,0.9500000000000001,0.14,795,2.2,274,1.1
+2023,8,23,19,0,22.1,1.68,0.051000000000000004,0.61,5,56,5,3,7,9.700000000000001,4,0,43,4,0.269,45.300000000000004,90.3,0.9500000000000001,0.14,795,2.2,281,0.8
+2023,8,23,19,30,21.900000000000002,1.68,0.051000000000000004,0.61,0,0,0,0,8,9.700000000000001,0,0,0,0,0.269,45.86,96.18,0.9500000000000001,0.14,795,2.2,284,0.8
+2023,8,23,20,0,21.6,1.68,0.051000000000000004,0.61,0,0,0,0,0,9.4,0,0,0,0,0.269,45.86,101.43,0.9500000000000001,0.14,795,2.2,287,0.8
+2023,8,23,20,30,21.400000000000002,1.68,0.051000000000000004,0.61,0,0,0,0,0,9.4,0,0,0,0,0.269,46.43,106.44,0.9500000000000001,0.14,795,2.3000000000000003,284,0.7000000000000001
+2023,8,23,21,0,21.200000000000003,1.7,0.051000000000000004,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.269,46.37,111.16,0.9500000000000001,0.14,795,2.3000000000000003,282,0.7000000000000001
+2023,8,23,21,30,20.700000000000003,1.7,0.051000000000000004,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.269,47.81,115.5,0.9500000000000001,0.14,795,2.3000000000000003,267,0.6000000000000001
+2023,8,23,22,0,20.3,1.72,0.052000000000000005,0.61,0,0,0,0,8,8.9,0,0,0,0,0.269,47.96,119.38,0.9500000000000001,0.14,795,2.4000000000000004,253,0.5
+2023,8,23,22,30,19.8,1.72,0.052000000000000005,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,49.46,122.69,0.9500000000000001,0.14,795,2.4000000000000004,224,0.5
+2023,8,23,23,0,19.3,1.71,0.055,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,51.03,125.33,0.9500000000000001,0.14,795,2.4000000000000004,196,0.6000000000000001
+2023,8,23,23,30,18.7,1.71,0.055,0.61,0,0,0,0,5,8.9,0,0,0,0,0.268,52.97,127.18,0.9500000000000001,0.14,795,2.4000000000000004,191,0.8
+2023,8,24,0,0,18.2,1.69,0.059000000000000004,0.61,0,0,0,0,4,9,0,0,0,0,0.267,55.01,128.16,0.9500000000000001,0.14,795,2.5,186,0.9
+2023,8,24,0,30,17.7,1.69,0.059000000000000004,0.61,0,0,0,0,5,9,0,0,0,0,0.267,56.76,128.22,0.9500000000000001,0.14,795,2.5,188,1.2000000000000002
+2023,8,24,1,0,17.1,1.67,0.062,0.61,0,0,0,0,4,9.5,0,0,0,0,0.267,61.1,127.35000000000001,0.9500000000000001,0.14,795,2.5,190,1.4000000000000001
+2023,8,24,1,30,16.7,1.67,0.062,0.61,0,0,0,0,5,9.5,0,0,0,0,0.266,62.67,125.61,0.9500000000000001,0.14,795,2.6,194,1.4000000000000001
+2023,8,24,2,0,16.3,1.6500000000000001,0.066,0.61,0,0,0,0,5,10.4,0,0,0,0,0.266,67.85,123.07000000000001,0.96,0.14,795,2.6,198,1.5
+2023,8,24,2,30,15.9,1.6500000000000001,0.066,0.61,0,0,0,0,5,10.3,0,0,0,0,0.265,69.60000000000001,119.84,0.96,0.14,795,2.6,203,1.4000000000000001
+2023,8,24,3,0,15.600000000000001,1.62,0.07100000000000001,0.61,0,0,0,0,4,11.200000000000001,0,0,0,0,0.265,74.95,116.04,0.96,0.14,795,2.6,207,1.4000000000000001
+2023,8,24,3,30,15.4,1.62,0.07100000000000001,0.61,0,0,0,0,4,11.200000000000001,0,0,0,0,0.264,76,111.75,0.96,0.14,796,2.7,212,1.3
+2023,8,24,4,0,15.200000000000001,1.6,0.075,0.61,0,0,0,0,5,11.9,0,0,0,0,0.264,80.55,107.08,0.96,0.14,796,2.7,216,1.2000000000000002
+2023,8,24,4,30,15.100000000000001,1.6,0.075,0.61,0,0,0,0,4,11.9,0,0,0,0,0.264,81.06,102.10000000000001,0.96,0.14,796,2.7,220,1.1
+2023,8,24,5,0,15,1.59,0.077,0.61,0,0,0,0,4,12.4,0,0,0,0,0.263,84.22,96.88,0.96,0.14,796,2.7,224,1.1
+2023,8,24,5,30,15.9,1.59,0.077,0.61,2,18,2,2,5,12.4,1,0,29,1,0.263,79.51,91.48,0.96,0.14,796,2.8000000000000003,227,1.4000000000000001
+2023,8,24,6,0,16.8,1.58,0.079,0.61,26,268,46,7,5,12.9,13,0,100,13,0.263,77.97,85.8,0.96,0.14,796,2.8000000000000003,231,1.8
+2023,8,24,6,30,17.900000000000002,1.58,0.079,0.61,43,483,125,1,5,12.9,7,0,14,7,0.263,72.75,80.25,0.96,0.14,796,2.8000000000000003,242,2.3000000000000003
+2023,8,24,7,0,19,1.58,0.079,0.61,56,618,220,0,5,13,9,0,0,9,0.263,68.24,74.59,0.96,0.14,796,2.8000000000000003,253,2.7
+2023,8,24,7,30,20,1.58,0.079,0.61,65,706,319,0,5,13,43,1,0,43,0.263,64.14,68.91,0.96,0.14,796,2.8000000000000003,257,2.9000000000000004
+2023,8,24,8,0,21,1.56,0.078,0.61,72,768,418,0,5,12.3,70,0,0,70,0.263,57.57,63.25,0.96,0.14,797,2.8000000000000003,261,3.1
+2023,8,24,8,30,21.5,1.56,0.078,0.61,78,813,513,0,4,12.3,50,0,0,50,0.263,55.84,57.67,0.96,0.14,797,2.8000000000000003,261,3
+2023,8,24,9,0,22.1,1.54,0.078,0.61,82,847,601,0,8,11.8,129,6,0,133,0.263,51.94,52.230000000000004,0.96,0.14,797,2.8000000000000003,261,2.9000000000000004
+2023,8,24,9,30,22.6,1.54,0.078,0.61,86,872,681,0,8,11.8,189,7,0,194,0.263,50.33,47.01,0.97,0.14,796,2.8000000000000003,264,2.8000000000000003
+2023,8,24,10,0,23,1.5,0.08,0.61,91,890,751,0,8,11.4,204,7,0,209,0.263,47.95,42.13,0.97,0.14,796,2.8000000000000003,267,2.6
+2023,8,24,10,30,23.5,1.5,0.08,0.61,89,913,811,0,8,11.4,217,7,0,223,0.263,46.53,37.730000000000004,0.97,0.14,796,2.8000000000000003,271,2.6
+2023,8,24,11,0,24,1.55,0.055,0.61,83,935,858,0,8,11.100000000000001,114,1,0,115,0.264,44.18,34.02,0.97,0.14,796,2.8000000000000003,275,2.5
+2023,8,24,11,30,24.3,1.55,0.055,0.61,85,941,889,0,8,11.100000000000001,171,1,0,172,0.264,43.4,31.28,0.97,0.14,796,2.8000000000000003,280,2.5
+2023,8,24,12,0,24.6,1.54,0.057,0.61,86,944,905,0,5,10.8,278,4,0,281,0.264,42,29.77,0.97,0.14,796,2.7,286,2.5
+2023,8,24,12,30,24.700000000000003,1.54,0.057,0.61,85,945,906,0,4,10.8,362,11,0,372,0.264,41.69,29.7,0.97,0.14,795,2.7,291,2.5
+2023,8,24,13,0,24.8,1.55,0.057,0.61,85,942,892,0,4,10.600000000000001,434,175,0,584,0.265,40.87,31.07,0.97,0.14,795,2.7,295,2.5
+2023,8,24,13,30,25,1.55,0.057,0.61,80,941,863,0,0,10.600000000000001,137,842,0,837,0.265,40.39,33.71,0.97,0.14,795,2.7,301,2.5
+2023,8,24,14,0,25.200000000000003,1.57,0.043000000000000003,0.61,75,939,822,0,3,10.4,255,576,0,713,0.265,39.46,37.34,0.97,0.14,795,2.7,306,2.4000000000000004
+2023,8,24,14,30,25,1.57,0.043000000000000003,0.61,73,927,765,0,3,10.4,372,238,0,550,0.265,39.93,41.69,0.97,0.14,795,2.7,312,2.4000000000000004
+2023,8,24,15,0,24.900000000000002,1.6,0.04,0.61,70,912,697,0,3,10.3,357,202,0,496,0.265,39.730000000000004,46.54,0.97,0.14,795,2.7,319,2.4000000000000004
+2023,8,24,15,30,24.6,1.6,0.04,0.61,66,891,618,0,5,10.3,303,187,0,419,0.265,40.45,51.74,0.97,0.14,795,2.7,325,2.5
+2023,8,24,16,0,24.3,1.61,0.038,0.61,62,863,530,0,3,10.100000000000001,226,273,0,374,0.265,40.730000000000004,57.17,0.97,0.14,794,2.7,332,2.5
+2023,8,24,16,30,23.700000000000003,1.61,0.038,0.61,58,824,435,0,0,10.100000000000001,94,713,0,421,0.264,42.22,62.74,0.97,0.14,794,2.7,339,2.4000000000000004
+2023,8,24,17,0,23.200000000000003,1.59,0.038,0.61,53,770,336,0,3,10.200000000000001,124,481,7,301,0.264,43.87,68.4,0.97,0.14,794,2.8000000000000003,345,2.4000000000000004
+2023,8,24,17,30,22.3,1.59,0.038,0.61,46,689,235,0,8,10.200000000000001,88,221,7,149,0.264,46.32,74.09,0.97,0.14,794,2.8000000000000003,349,1.8
+2023,8,24,18,0,21.5,1.56,0.041,0.61,38,564,138,1,7,11.3,16,7,18,17,0.263,52.19,79.76,0.97,0.14,794,2.8000000000000003,354,1.3
+2023,8,24,18,30,20.700000000000003,1.56,0.041,0.61,25,354,54,7,7,11.3,35,6,100,35,0.264,54.870000000000005,85.34,0.97,0.14,795,2.8000000000000003,184,1.1
+2023,8,24,19,0,19.900000000000002,1.53,0.045,0.61,6,50,5,3,6,11.600000000000001,2,0,43,2,0.264,58.800000000000004,91.04,0.97,0.14,795,2.8000000000000003,14,0.8
+2023,8,24,19,30,19.400000000000002,1.53,0.045,0.61,0,0,0,0,7,11.600000000000001,0,0,0,0,0.264,60.64,96.47,0.97,0.14,795,2.9000000000000004,34,0.8
+2023,8,24,20,0,18.900000000000002,1.53,0.05,0.61,0,0,0,0,7,11.8,0,0,0,0,0.264,63.410000000000004,101.72,0.97,0.14,796,2.9000000000000004,54,0.7000000000000001
+2023,8,24,20,30,18.6,1.53,0.05,0.61,0,0,0,0,7,11.8,0,0,0,0,0.264,64.61,106.75,0.97,0.14,796,2.9000000000000004,71,0.9
+2023,8,24,21,0,18.2,1.56,0.05,0.61,0,0,0,0,7,11.9,0,0,0,0,0.265,66.6,111.47,0.97,0.14,796,2.9000000000000004,88,1.1
+2023,8,24,21,30,17.900000000000002,1.56,0.05,0.61,0,0,0,0,7,11.9,0,0,0,0,0.265,67.87,115.83,0.97,0.14,796,2.9000000000000004,95,1.3
+2023,8,24,22,0,17.5,1.61,0.05,0.61,0,0,0,0,7,12.100000000000001,0,0,0,0,0.265,70.8,119.71000000000001,0.97,0.14,796,2.9000000000000004,102,1.5
+2023,8,24,22,30,17.2,1.61,0.05,0.61,0,0,0,0,7,12.100000000000001,0,0,0,0,0.265,72.15,123.03,0.97,0.14,796,2.9000000000000004,104,1.4000000000000001
+2023,8,24,23,0,16.900000000000002,1.6600000000000001,0.051000000000000004,0.61,0,0,0,0,7,12.600000000000001,0,0,0,0,0.265,75.62,125.67,0.97,0.14,796,2.8000000000000003,107,1.2000000000000002
+2023,8,24,23,30,16.6,1.6600000000000001,0.051000000000000004,0.61,0,0,0,0,8,12.600000000000001,0,0,0,0,0.265,77.07000000000001,127.53,0.97,0.14,796,2.8000000000000003,115,1
+2023,8,25,0,0,16.400000000000002,1.68,0.055,0.61,0,0,0,0,8,12.9,0,0,0,0,0.265,80.03,128.5,0.97,0.14,796,2.8000000000000003,123,0.7000000000000001
+2023,8,25,0,30,16.2,1.68,0.055,0.61,0,0,0,0,8,12.9,0,0,0,0,0.265,81.05,128.56,0.97,0.14,796,2.8000000000000003,139,0.5
+2023,8,25,1,0,16,1.68,0.061,0.61,0,0,0,0,8,13.200000000000001,0,0,0,0,0.265,83.47,127.68,0.97,0.14,796,2.8000000000000003,156,0.4
+2023,8,25,1,30,15.9,1.68,0.061,0.61,0,0,0,0,7,13.200000000000001,0,0,0,0,0.265,84,125.92,0.97,0.14,796,2.7,162,0.30000000000000004
+2023,8,25,2,0,15.700000000000001,1.6500000000000001,0.07100000000000001,0.61,0,0,0,0,8,13.3,0,0,0,0,0.265,85.5,123.36,0.97,0.14,796,2.7,168,0.30000000000000004
+2023,8,25,2,30,15.600000000000001,1.6500000000000001,0.07100000000000001,0.61,0,0,0,0,7,13.3,0,0,0,0,0.266,86.05,120.11,0.97,0.14,796,2.7,152,0.30000000000000004
+2023,8,25,3,0,15.5,1.6400000000000001,0.079,0.61,0,0,0,0,8,13.4,0,0,0,0,0.266,87.32000000000001,116.28,0.97,0.14,796,2.7,136,0.4
+2023,8,25,3,30,15.200000000000001,1.6400000000000001,0.079,0.61,0,0,0,0,8,13.4,0,0,0,0,0.267,89.01,111.98,0.97,0.14,796,2.7,126,0.4
+2023,8,25,4,0,15,1.6400000000000001,0.082,0.61,0,0,0,0,8,13.5,0,0,0,0,0.267,90.65,107.29,0.97,0.14,796,2.7,116,0.5
+2023,8,25,4,30,14.8,1.6400000000000001,0.082,0.61,0,0,0,0,5,13.5,0,0,0,0,0.268,91.82000000000001,102.3,0.97,0.14,796,2.7,111,0.5
+2023,8,25,5,0,14.600000000000001,1.6500000000000001,0.084,0.61,0,0,0,0,4,13.5,0,0,0,0,0.269,93.16,97.07000000000001,0.97,0.14,796,2.7,106,0.6000000000000001
+2023,8,25,5,30,15.200000000000001,1.6500000000000001,0.084,0.61,2,16,2,2,5,13.5,1,0,29,1,0.269,89.64,91.66,0.97,0.14,796,2.7,103,0.9
+2023,8,25,6,0,15.8,1.67,0.085,0.61,26,253,44,7,4,13.8,18,0,100,18,0.27,87.92,85.97,0.97,0.14,797,2.7,100,1.2000000000000002
+2023,8,25,6,30,16.8,1.67,0.085,0.61,45,471,123,1,4,13.8,42,1,14,42,0.271,82.51,80.41,0.97,0.14,797,2.7,94,1.4000000000000001
+2023,8,25,7,0,17.8,1.68,0.082,0.61,56,611,217,0,4,13,39,0,0,39,0.271,73.62,74.76,0.97,0.14,797,2.7,89,1.6
+2023,8,25,7,30,18.8,1.68,0.082,0.61,66,699,316,0,4,13,30,0,0,30,0.272,69.16,69.08,0.97,0.14,797,2.7,81,1.5
+2023,8,25,8,0,19.700000000000003,1.6500000000000001,0.08600000000000001,0.61,75,760,415,0,4,11.9,58,0,0,58,0.272,60.59,63.42,0.97,0.14,797,2.7,72,1.3
+2023,8,25,8,30,20.6,1.6500000000000001,0.08600000000000001,0.61,83,801,509,0,4,11.9,100,0,0,100,0.272,57.32,57.85,0.97,0.14,797,2.7,49,1
+2023,8,25,9,0,21.400000000000002,1.58,0.097,0.61,91,830,597,0,4,11.200000000000001,202,4,0,204,0.272,52.13,52.42,0.98,0.14,797,2.7,25,0.7000000000000001
+2023,8,25,9,30,22.1,1.58,0.097,0.61,96,856,677,0,4,11.200000000000001,313,133,0,403,0.271,49.96,47.22,0.98,0.14,797,2.7,172,0.9
+2023,8,25,10,0,22.8,1.55,0.097,0.61,99,876,746,0,5,10.9,383,93,0,452,0.271,46.94,42.35,0.98,0.14,797,2.7,318,1
+2023,8,25,10,30,23.400000000000002,1.55,0.097,0.61,100,894,805,0,5,10.9,406,94,0,480,0.271,45.27,37.97,0.98,0.14,797,2.7,309,1.2000000000000002
+2023,8,25,11,0,24,1.56,0.089,0.61,99,909,850,0,5,10.700000000000001,431,190,0,588,0.271,43.160000000000004,34.300000000000004,0.98,0.14,797,2.7,300,1.4000000000000001
+2023,8,25,11,30,24.400000000000002,1.56,0.089,0.61,99,919,882,0,5,10.700000000000001,401,177,0,552,0.27,42.08,31.580000000000002,0.98,0.14,796,2.7,295,1.5
+2023,8,25,12,0,24.900000000000002,1.57,0.08,0.61,97,926,898,0,3,10.5,276,85,0,350,0.27,40.44,30.11,0.98,0.14,796,2.7,290,1.6
+2023,8,25,12,30,25,1.57,0.08,0.61,96,928,899,0,8,10.5,332,101,0,419,0.269,40.21,30.05,0.98,0.14,796,2.7,287,1.7000000000000002
+2023,8,25,13,0,25.1,1.58,0.074,0.61,94,928,886,0,8,10.5,293,136,0,409,0.269,39.75,31.42,0.98,0.14,796,2.7,285,1.7000000000000002
+2023,8,25,13,30,25.1,1.58,0.074,0.61,115,885,848,0,8,10.5,236,632,21,760,0.268,39.75,34.05,0.97,0.14,796,2.7,285,1.8
+2023,8,25,14,0,25.1,1.4000000000000001,0.186,0.61,141,824,793,0,8,10.4,351,255,7,553,0.268,39.47,37.67,0.96,0.14,796,2.7,286,1.8
+2023,8,25,14,30,24.900000000000002,1.4000000000000001,0.186,0.61,136,807,736,0,0,10.3,284,491,0,649,0.268,39.89,42,0.96,0.14,795,2.7,289,1.9000000000000001
+2023,8,25,15,0,24.6,1.4000000000000001,0.183,0.61,130,785,667,0,0,10.200000000000001,196,639,0,633,0.267,40.24,46.84,0.96,0.14,795,2.7,292,2
+2023,8,25,15,30,24.200000000000003,1.4000000000000001,0.183,0.61,121,760,589,0,0,10.200000000000001,158,685,0,579,0.267,41.21,52.03,0.96,0.14,795,2.7,296,2
+2023,8,25,16,0,23.8,1.42,0.169,0.61,111,727,502,0,3,10.100000000000001,244,358,0,437,0.267,42.06,57.45,0.96,0.14,795,2.7,301,2
+2023,8,25,16,30,23.3,1.42,0.169,0.61,100,682,409,0,3,10.200000000000001,235,99,0,280,0.267,43.39,63.02,0.96,0.14,796,2.7,307,1.9000000000000001
+2023,8,25,17,0,22.900000000000002,1.44,0.152,0.61,87,622,313,0,3,10.200000000000001,137,199,21,209,0.267,44.65,68.67,0.96,0.14,796,2.7,314,1.8
+2023,8,25,17,30,22.1,1.44,0.152,0.61,71,533,215,0,3,10.200000000000001,102,321,21,189,0.267,46.86,74.36,0.96,0.14,796,2.7,320,1.5
+2023,8,25,18,0,21.400000000000002,1.45,0.137,0.61,53,404,123,0,0,11.4,58,357,18,120,0.267,52.77,80.03,0.96,0.14,796,2.7,327,1.2000000000000002
+2023,8,25,18,30,20.400000000000002,1.45,0.137,0.61,29,205,45,1,0,11.4,30,194,11,45,0.268,56.11,85.61,0.9500000000000001,0.14,796,2.7,329,1
+2023,8,25,19,0,19.5,1.47,0.122,0.61,2,13,2,2,3,11.600000000000001,2,7,32,2,0.268,60.38,91.32000000000001,0.9500000000000001,0.14,796,2.6,331,0.9
+2023,8,25,19,30,18.900000000000002,1.47,0.122,0.61,0,0,0,0,3,11.600000000000001,0,0,0,0,0.268,62.67,96.75,0.9500000000000001,0.14,796,2.6,330,0.9
+2023,8,25,20,0,18.3,1.49,0.112,0.61,0,0,0,0,0,11.3,0,0,0,0,0.268,63.83,102.02,0.9500000000000001,0.14,796,2.6,328,0.9
+2023,8,25,20,30,17.8,1.49,0.112,0.61,0,0,0,0,0,11.3,0,0,0,0,0.268,65.86,107.05,0.9500000000000001,0.14,796,2.6,324,0.9
+2023,8,25,21,0,17.3,1.5,0.106,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.268,67.01,111.79,0.9500000000000001,0.14,796,2.6,320,0.9
+2023,8,25,21,30,16.900000000000002,1.5,0.106,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.268,68.72,116.15,0.9500000000000001,0.14,796,2.5,317,0.9
+2023,8,25,22,0,16.400000000000002,1.51,0.10200000000000001,0.61,0,0,0,0,0,11,0,0,0,0,0.268,70.24,120.05,0.9500000000000001,0.14,796,2.5,314,0.9
+2023,8,25,22,30,16.1,1.51,0.10200000000000001,0.61,0,0,0,0,0,11,0,0,0,0,0.268,71.59,123.38000000000001,0.9500000000000001,0.14,796,2.5,311,0.9
+2023,8,25,23,0,15.700000000000001,1.51,0.098,0.61,0,0,0,0,0,10.8,0,0,0,0,0.268,72.71000000000001,126.02,0.9500000000000001,0.14,796,2.5,308,0.9
+2023,8,25,23,30,15.4,1.51,0.098,0.61,0,0,0,0,0,10.8,0,0,0,0,0.268,74.12,127.88000000000001,0.9500000000000001,0.14,796,2.5,305,0.9
+2023,8,26,0,0,15.100000000000001,1.52,0.094,0.61,0,0,0,0,0,10.700000000000001,0,0,0,0,0.267,74.87,128.85,0.9500000000000001,0.14,796,2.5,303,0.8
+2023,8,26,0,30,14.8,1.52,0.094,0.61,0,0,0,0,0,10.700000000000001,0,0,0,0,0.267,76.32000000000001,128.9,0.9500000000000001,0.14,796,2.5,300,0.8
+2023,8,26,1,0,14.5,1.52,0.088,0.61,0,0,0,0,0,10.5,0,0,0,0,0.267,77.13,128.01,0.9500000000000001,0.14,796,2.5,297,0.7000000000000001
+2023,8,26,1,30,14.3,1.52,0.088,0.61,0,0,0,0,0,10.5,0,0,0,0,0.267,78.13,126.23,0.9500000000000001,0.14,796,2.5,297,0.6000000000000001
+2023,8,26,2,0,14.100000000000001,1.53,0.082,0.61,0,0,0,0,0,10.4,0,0,0,0,0.267,78.58,123.65,0.9500000000000001,0.14,796,2.5,297,0.6000000000000001
+2023,8,26,2,30,13.9,1.53,0.082,0.61,0,0,0,0,0,10.4,0,0,0,0,0.267,79.60000000000001,120.38,0.9500000000000001,0.14,796,2.5,305,0.5
+2023,8,26,3,0,13.700000000000001,1.55,0.077,0.61,0,0,0,0,0,10.4,0,0,0,0,0.268,80.22,116.53,0.9500000000000001,0.14,797,2.4000000000000004,312,0.4
+2023,8,26,3,30,13.5,1.55,0.077,0.61,0,0,0,0,0,10.4,0,0,0,0,0.268,81.27,112.21000000000001,0.9500000000000001,0.14,797,2.4000000000000004,331,0.30000000000000004
+2023,8,26,4,0,13.3,1.56,0.073,0.61,0,0,0,0,0,10.3,0,0,0,0,0.268,81.82000000000001,107.51,0.9500000000000001,0.14,797,2.4000000000000004,350,0.30000000000000004
+2023,8,26,4,30,13.100000000000001,1.56,0.073,0.61,0,0,0,0,0,10.3,0,0,0,0,0.268,82.89,102.5,0.9500000000000001,0.14,797,2.4000000000000004,189,0.30000000000000004
+2023,8,26,5,0,12.9,1.58,0.069,0.61,0,0,0,0,0,10.200000000000001,0,0,0,0,0.268,83.51,97.26,0.9500000000000001,0.14,797,2.4000000000000004,27,0.30000000000000004
+2023,8,26,5,30,13.9,1.58,0.069,0.61,3,19,2,0,0,10.200000000000001,3,19,0,2,0.268,78.26,91.84,0.9500000000000001,0.14,797,2.3000000000000003,32,0.6000000000000001
+2023,8,26,6,0,14.9,1.6,0.065,0.61,25,282,44,0,0,10.3,25,282,0,44,0.267,73.81,86.14,0.9500000000000001,0.14,798,2.3000000000000003,36,0.8
+2023,8,26,6,30,16.7,1.6,0.065,0.61,41,510,124,0,0,10.3,41,510,0,124,0.267,65.81,80.58,0.9500000000000001,0.14,798,2.3000000000000003,28,0.8
+2023,8,26,7,0,18.5,1.62,0.061,0.61,51,651,220,0,0,10.5,51,651,0,220,0.267,59.78,74.92,0.9500000000000001,0.14,798,2.3000000000000003,19,0.8
+2023,8,26,7,30,20,1.62,0.061,0.61,59,742,322,0,0,10.5,59,742,0,322,0.267,54.47,69.24,0.9500000000000001,0.14,798,2.2,176,0.9
+2023,8,26,8,0,21.6,1.6300000000000001,0.057,0.61,64,806,423,0,0,10.200000000000001,64,806,0,423,0.266,48.4,63.59,0.9500000000000001,0.14,798,2.2,334,1
+2023,8,26,8,30,22.700000000000003,1.6300000000000001,0.057,0.61,69,851,520,0,0,10.200000000000001,69,851,0,520,0.266,45.28,58.03,0.9500000000000001,0.14,798,2.2,329,1.1
+2023,8,26,9,0,23.8,1.6500000000000001,0.053,0.61,72,886,610,0,0,9.600000000000001,72,886,0,610,0.266,40.46,52.61,0.9500000000000001,0.14,797,2.1,324,1.1
+2023,8,26,9,30,24.8,1.6500000000000001,0.053,0.61,75,914,693,0,0,9.600000000000001,75,914,0,693,0.265,38.11,47.42,0.9500000000000001,0.14,797,2.1,322,1.2000000000000002
+2023,8,26,10,0,25.8,1.67,0.048,0.61,76,935,764,0,0,8.9,76,935,0,764,0.265,34.24,42.58,0.9500000000000001,0.14,797,2.1,320,1.2000000000000002
+2023,8,26,10,30,26.6,1.67,0.048,0.61,74,953,823,0,0,8.9,74,953,0,823,0.265,32.67,38.230000000000004,0.9500000000000001,0.14,797,2.1,317,1.2000000000000002
+2023,8,26,11,0,27.5,1.86,0.035,0.61,72,969,870,0,0,8.1,72,969,0,870,0.265,29.51,34.58,0.9500000000000001,0.14,797,2.1,315,1.2000000000000002
+2023,8,26,11,30,28.1,1.86,0.035,0.61,72,976,901,0,0,8.1,72,976,0,901,0.265,28.46,31.900000000000002,0.9500000000000001,0.14,796,2,312,1.1
+2023,8,26,12,0,28.8,1.87,0.033,0.61,71,981,917,0,0,7.5,71,981,0,917,0.265,26.19,30.44,0.9500000000000001,0.14,796,2,310,1.1
+2023,8,26,12,30,29.200000000000003,1.87,0.033,0.61,71,982,918,0,0,7.5,71,982,0,918,0.265,25.59,30.400000000000002,0.9500000000000001,0.14,796,2,305,1.1
+2023,8,26,13,0,29.6,1.8800000000000001,0.032,0.61,71,980,904,0,0,7,71,980,0,904,0.265,24.11,31.78,0.9500000000000001,0.14,795,2,301,1
+2023,8,26,13,30,29.900000000000002,1.8800000000000001,0.032,0.61,69,976,874,0,0,7,69,976,0,874,0.265,23.7,34.4,0.9500000000000001,0.14,795,2,299,1
+2023,8,26,14,0,30.1,1.98,0.028,0.61,66,970,830,0,0,6.5,66,970,0,830,0.265,22.73,38,0.9500000000000001,0.14,795,2,298,0.9
+2023,8,26,14,30,30.1,1.98,0.028,0.61,65,958,773,0,0,6.5,65,958,0,773,0.265,22.73,42.31,0.9500000000000001,0.14,795,1.9000000000000001,296,0.8
+2023,8,26,15,0,30,1.97,0.028,0.61,63,943,704,0,0,6.1000000000000005,121,803,0,667,0.265,22.13,47.14,0.9500000000000001,0.14,794,1.9000000000000001,294,0.7000000000000001
+2023,8,26,15,30,29.700000000000003,1.97,0.028,0.61,60,922,624,0,0,6.1000000000000005,95,831,0,603,0.266,22.51,52.32,0.9500000000000001,0.14,794,1.9000000000000001,290,0.7000000000000001
+2023,8,26,16,0,29.400000000000002,1.96,0.028,0.61,57,894,534,0,0,5.7,172,535,0,458,0.266,22.28,57.730000000000004,0.9500000000000001,0.14,794,1.9000000000000001,286,0.6000000000000001
+2023,8,26,16,30,28.900000000000002,1.96,0.028,0.61,54,855,438,0,5,5.7,220,110,0,269,0.266,22.93,63.29,0.9500000000000001,0.14,794,1.9000000000000001,282,0.5
+2023,8,26,17,0,28.3,1.93,0.029,0.61,48,801,336,0,7,5.5,85,9,0,88,0.266,23.44,68.95,0.9500000000000001,0.14,794,1.9000000000000001,277,0.4
+2023,8,26,17,30,27,1.93,0.029,0.61,43,720,234,0,5,5.5,72,88,0,95,0.267,25.29,74.64,0.9500000000000001,0.14,794,1.9000000000000001,273,0.30000000000000004
+2023,8,26,18,0,25.700000000000003,1.9000000000000001,0.032,0.61,35,593,135,0,0,8.9,56,405,18,124,0.267,34.660000000000004,80.31,0.9500000000000001,0.14,794,1.9000000000000001,269,0.1
+2023,8,26,18,30,24.700000000000003,1.9000000000000001,0.032,0.61,23,376,50,6,3,9,30,88,82,36,0.267,36.82,85.89,0.9500000000000001,0.14,795,1.9000000000000001,255,0.1
+2023,8,26,19,0,23.8,1.8800000000000001,0.034,0.61,3,32,2,2,3,8.200000000000001,1,0,29,1,0.268,36.93,91.60000000000001,0.96,0.14,795,1.9000000000000001,242,0.1
+2023,8,26,19,30,23.200000000000003,1.8800000000000001,0.034,0.61,0,0,0,0,3,8.200000000000001,0,0,0,0,0.268,38.29,97.04,0.96,0.14,795,2,271,0.1
+2023,8,26,20,0,22.700000000000003,1.87,0.035,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,39.22,102.31,0.96,0.14,795,2,301,0.1
+2023,8,26,20,30,22.1,1.87,0.035,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,40.67,107.36,0.96,0.14,795,2,305,0.1
+2023,8,26,21,0,21.6,1.86,0.037,0.61,0,0,0,0,0,8,0,0,0,0,0.268,41.72,112.10000000000001,0.96,0.14,795,2.1,309,0.2
+2023,8,26,21,30,21.200000000000003,1.86,0.037,0.61,0,0,0,0,0,8.1,0,0,0,0,0.268,42.800000000000004,116.48,0.96,0.14,796,2.1,314,0.30000000000000004
+2023,8,26,22,0,20.900000000000002,1.86,0.038,0.61,0,0,0,0,0,8.3,0,0,0,0,0.268,44.42,120.39,0.96,0.14,796,2.1,320,0.4
+2023,8,26,22,30,20.3,1.86,0.038,0.61,0,0,0,0,4,8.3,0,0,0,0,0.268,46.09,123.72,0.96,0.14,796,2.1,324,0.5
+2023,8,26,23,0,19.700000000000003,1.85,0.039,0.61,0,0,0,0,4,8.4,0,0,0,0,0.268,48.160000000000004,126.38000000000001,0.96,0.14,796,2.2,328,0.7000000000000001
+2023,8,26,23,30,19.200000000000003,1.85,0.039,0.61,0,0,0,0,4,8.4,0,0,0,0,0.268,49.68,128.23,0.96,0.14,796,2.2,334,0.7000000000000001
+2023,8,27,0,0,18.6,1.85,0.04,0.61,0,0,0,0,4,8.4,0,0,0,0,0.267,51.370000000000005,129.21,0.96,0.14,796,2.2,339,0.7000000000000001
+2023,8,27,0,30,18.1,1.85,0.04,0.61,0,0,0,0,5,8.4,0,0,0,0,0.267,53,129.24,0.96,0.14,796,2.2,344,0.7000000000000001
+2023,8,27,1,0,17.6,1.85,0.041,0.61,0,0,0,0,3,8.3,0,0,0,0,0.267,54.52,128.34,0.96,0.14,796,2.2,350,0.7000000000000001
+2023,8,27,1,30,17.3,1.85,0.041,0.61,0,0,0,0,8,8.3,0,0,0,0,0.267,55.56,126.54,0.96,0.14,796,2.2,177,0.7000000000000001
+2023,8,27,2,0,17,1.83,0.044,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,56.97,123.94,0.96,0.14,796,2.3000000000000003,5,0.6000000000000001
+2023,8,27,2,30,16.6,1.83,0.044,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,58.43,120.65,0.96,0.14,796,2.3000000000000003,14,0.7000000000000001
+2023,8,27,3,0,16.3,1.81,0.047,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,59.46,116.78,0.96,0.14,796,2.3000000000000003,23,0.7000000000000001
+2023,8,27,3,30,16.1,1.81,0.047,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,60.22,112.44,0.96,0.14,796,2.3000000000000003,32,0.7000000000000001
+2023,8,27,4,0,15.9,1.77,0.053,0.61,0,0,0,0,0,8.4,0,0,0,0,0.267,61.19,107.72,0.97,0.14,796,2.3000000000000003,40,0.7000000000000001
+2023,8,27,4,30,15.8,1.77,0.053,0.61,0,0,0,0,0,8.5,0,0,0,0,0.267,61.660000000000004,102.7,0.97,0.14,797,2.3000000000000003,45,0.8
+2023,8,27,5,0,15.600000000000001,1.75,0.058,0.61,0,0,0,0,0,8.6,0,0,0,0,0.268,62.96,97.45,0.97,0.14,797,2.2,50,0.8
+2023,8,27,5,30,16.3,1.75,0.058,0.61,3,19,2,2,0,8.6,1,0,29,1,0.268,60.22,92.02,0.97,0.14,797,2.2,49,1.3
+2023,8,27,6,0,17,1.74,0.06,0.61,23,288,42,6,3,8.9,24,24,93,26,0.268,58.85,86.31,0.97,0.14,797,2.2,49,1.7000000000000002
+2023,8,27,6,30,18.3,1.74,0.06,0.61,39,515,122,1,3,8.9,70,55,11,79,0.268,54.24,80.75,0.97,0.14,797,2.2,55,1.9000000000000001
+2023,8,27,7,0,19.6,1.75,0.06,0.61,51,652,219,0,3,8.3,125,171,0,169,0.269,48.15,75.09,0.97,0.14,797,2.2,61,2
+2023,8,27,7,30,21.1,1.75,0.06,0.61,59,742,320,0,0,8.3,100,557,0,296,0.269,43.910000000000004,69.41,0.97,0.14,797,2.2,64,1.7000000000000002
+2023,8,27,8,0,22.5,1.77,0.059000000000000004,0.61,65,803,420,0,0,7.800000000000001,80,759,0,415,0.269,38.77,63.77,0.97,0.14,797,2.2,68,1.5
+2023,8,27,8,30,23.8,1.77,0.059000000000000004,0.61,70,848,517,0,0,7.800000000000001,70,848,0,517,0.269,35.85,58.21,0.97,0.14,797,2.1,70,1
+2023,8,27,9,0,25,1.8,0.057,0.61,73,883,607,0,0,7.800000000000001,73,883,0,607,0.268,33.410000000000004,52.800000000000004,0.96,0.14,797,2.1,72,0.5
+2023,8,27,9,30,26,1.8,0.057,0.61,76,909,689,0,0,7.800000000000001,76,909,0,689,0.268,31.490000000000002,47.63,0.96,0.14,797,2.1,170,0.4
+2023,8,27,10,0,27,1.82,0.053,0.61,78,930,760,0,0,7.9,78,930,0,760,0.268,29.91,42.800000000000004,0.96,0.14,797,2.1,269,0.30000000000000004
+2023,8,27,10,30,27.700000000000003,1.82,0.053,0.61,78,946,819,0,0,7.9,78,946,0,819,0.268,28.68,38.480000000000004,0.96,0.14,796,2.1,266,0.6000000000000001
+2023,8,27,11,0,28.5,1.8800000000000001,0.047,0.61,78,960,866,0,0,7.9,78,960,0,866,0.268,27.38,34.86,0.97,0.14,796,2,262,0.8
+2023,8,27,11,30,28.900000000000002,1.8800000000000001,0.047,0.61,80,966,897,0,0,7.9,182,726,4,796,0.268,26.75,32.21,0.97,0.14,796,2,260,1
+2023,8,27,12,0,29.400000000000002,1.86,0.047,0.61,80,969,913,0,3,7.7,334,280,7,575,0.268,25.72,30.78,0.97,0.14,795,2,258,1.2000000000000002
+2023,8,27,12,30,29.6,1.86,0.047,0.61,80,969,913,0,0,7.7,231,532,0,688,0.268,25.43,30.76,0.97,0.14,795,2,255,1.3
+2023,8,27,13,0,29.900000000000002,1.83,0.049,0.61,80,965,897,0,0,7.5,202,615,0,723,0.268,24.580000000000002,32.13,0.97,0.14,795,2,252,1.4000000000000001
+2023,8,27,13,30,29.900000000000002,1.83,0.049,0.61,80,958,867,0,3,7.5,263,407,0,597,0.268,24.580000000000002,34.74,0.97,0.14,795,2,254,1.5
+2023,8,27,14,0,29.900000000000002,1.79,0.052000000000000005,0.61,80,947,823,0,8,7.1000000000000005,189,584,0,647,0.268,23.89,38.33,0.97,0.14,794,2,255,1.6
+2023,8,27,14,30,29.900000000000002,1.79,0.052000000000000005,0.61,78,933,764,0,8,7.1000000000000005,243,540,0,640,0.268,23.89,42.63,0.97,0.14,794,2,259,1.6
+2023,8,27,15,0,29.900000000000002,1.77,0.056,0.61,77,913,694,0,8,6.6000000000000005,243,335,0,470,0.268,23.11,47.45,0.97,0.14,794,2,263,1.7000000000000002
+2023,8,27,15,30,29.6,1.77,0.056,0.61,75,885,612,0,8,6.6000000000000005,201,572,7,548,0.268,23.51,52.61,0.97,0.14,794,2,275,1.7000000000000002
+2023,8,27,16,0,29.200000000000003,1.72,0.064,0.61,72,847,521,0,8,6.2,163,586,7,473,0.268,23.45,58.02,0.97,0.14,794,2,287,1.8
+2023,8,27,16,30,28.5,1.72,0.064,0.61,68,799,424,0,0,6.2,68,799,0,424,0.268,24.41,63.58,0.97,0.14,794,2,304,2.1
+2023,8,27,17,0,27.8,1.69,0.07100000000000001,0.61,63,731,322,0,0,6.2,67,711,0,319,0.268,25.310000000000002,69.23,0.98,0.13,794,2.1,320,2.3000000000000003
+2023,8,27,17,30,26.5,1.69,0.07100000000000001,0.61,54,639,220,0,0,6.1000000000000005,54,639,0,220,0.268,27.310000000000002,74.91,0.97,0.13,794,2.1,332,2.3000000000000003
+2023,8,27,18,0,25.200000000000003,1.68,0.074,0.61,43,497,124,2,0,7.7,57,370,29,118,0.268,32.74,80.58,0.97,0.13,794,2.1,344,2.3000000000000003
+2023,8,27,18,30,24.1,1.68,0.074,0.61,25,270,43,6,3,7.7,31,34,86,33,0.268,35,86.16,0.97,0.13,795,2.1,352,2.5
+2023,8,27,19,0,23.1,1.71,0.076,0.61,3,17,2,1,0,7.6000000000000005,1,9,11,1,0.268,36.85,91.89,0.97,0.13,795,2.1,359,2.7
+2023,8,27,19,30,22.6,1.71,0.076,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.268,38.03,97.34,0.97,0.13,796,2.1,185,2.6
+2023,8,27,20,0,22.1,1.74,0.075,0.61,0,0,0,0,0,7.4,0,0,0,0,0.268,38.660000000000004,102.61,0.97,0.13,796,2.1,10,2.5
+2023,8,27,20,30,21.5,1.74,0.075,0.61,0,0,0,0,0,7.4,0,0,0,0,0.268,40.1,107.67,0.97,0.13,796,2.1,14,2.1
+2023,8,27,21,0,20.8,1.77,0.07200000000000001,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.268,42.63,112.42,0.97,0.13,796,2.1,19,1.7000000000000002
+2023,8,27,21,30,20.200000000000003,1.77,0.07200000000000001,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.268,44.230000000000004,116.81,0.96,0.13,796,2,19,1.4000000000000001
+2023,8,27,22,0,19.6,1.81,0.064,0.61,0,0,0,1,0,7.9,0,0,57,0,0.268,46.72,120.73,0.96,0.13,796,2,20,1.1
+2023,8,27,22,30,19.1,1.81,0.064,0.61,0,0,0,0,0,7.9,0,0,0,0,0.268,48.19,124.07000000000001,0.96,0.13,796,1.9000000000000001,13,1
+2023,8,27,23,0,18.6,1.84,0.054,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.268,48.870000000000005,126.73,0.9500000000000001,0.13,796,1.8,6,0.9
+2023,8,27,23,30,18.2,1.84,0.054,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.267,50.1,128.59,0.9500000000000001,0.13,796,1.7000000000000002,181,0.8
+2023,8,28,0,0,17.8,1.86,0.047,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.267,50.32,129.56,0.9500000000000001,0.13,796,1.7000000000000002,356,0.8
+2023,8,28,0,30,17.400000000000002,1.86,0.047,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.267,51.6,129.59,0.9400000000000001,0.13,796,1.6,352,0.7000000000000001
+2023,8,28,1,0,17,1.86,0.041,0.61,0,0,0,0,0,7.2,0,0,0,0,0.266,52.61,128.67000000000002,0.9400000000000001,0.13,796,1.6,349,0.7000000000000001
+2023,8,28,1,30,16.5,1.86,0.041,0.61,0,0,0,0,3,7.2,0,0,0,0,0.266,54.300000000000004,126.85000000000001,0.93,0.13,796,1.6,351,0.6000000000000001
+2023,8,28,2,0,16,1.86,0.038,0.61,0,0,0,0,0,7.4,0,0,0,0,0.267,56.56,124.24000000000001,0.93,0.13,796,1.6,352,0.6000000000000001
+2023,8,28,2,30,15.5,1.86,0.038,0.61,0,0,0,0,0,7.4,0,0,0,0,0.267,58.39,120.92,0.93,0.13,796,1.5,181,0.6000000000000001
+2023,8,28,3,0,15,1.85,0.036000000000000004,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.267,61.1,117.03,0.93,0.13,796,1.5,9,0.5
+2023,8,28,3,30,14.600000000000001,1.85,0.036000000000000004,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.268,62.690000000000005,112.67,0.93,0.13,796,1.5,16,0.6000000000000001
+2023,8,28,4,0,14.100000000000001,1.83,0.035,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.268,65.96000000000001,107.94,0.93,0.13,796,1.5,24,0.6000000000000001
+2023,8,28,4,30,13.8,1.83,0.035,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.269,67.26,102.9,0.93,0.13,796,1.5,29,0.6000000000000001
+2023,8,28,5,0,13.4,1.82,0.035,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.269,70.84,97.64,0.93,0.13,797,1.5,34,0.7000000000000001
+2023,8,28,5,30,14.4,1.82,0.035,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.269,66.4,92.2,0.93,0.13,797,1.5,33,1.1
+2023,8,28,6,0,15.3,1.81,0.036000000000000004,0.61,22,321,42,0,0,8.8,22,292,7,40,0.27,65.29,86.47,0.93,0.13,797,1.5,33,1.5
+2023,8,28,6,30,17.1,1.81,0.036000000000000004,0.61,35,577,126,0,0,8.8,35,577,0,126,0.27,58.230000000000004,80.92,0.93,0.13,797,1.5,39,1.7000000000000002
+2023,8,28,7,0,18.8,1.81,0.037,0.61,45,709,225,0,0,8.700000000000001,45,709,0,225,0.271,51.77,75.26,0.93,0.13,797,1.5,45,1.9000000000000001
+2023,8,28,7,30,20.6,1.81,0.037,0.61,51,793,328,0,0,8.700000000000001,51,793,0,328,0.271,46.32,69.58,0.93,0.13,797,1.5,34,1.8
+2023,8,28,8,0,22.400000000000002,1.8,0.038,0.61,57,849,430,0,0,7.2,57,849,0,430,0.27,37.52,63.940000000000005,0.93,0.13,797,1.5,22,1.6
+2023,8,28,8,30,23.6,1.8,0.038,0.61,62,889,528,0,0,7.2,62,889,0,528,0.27,34.9,58.39,0.93,0.13,797,1.5,189,1.7000000000000002
+2023,8,28,9,0,24.8,1.79,0.039,0.61,65,918,618,0,0,6.300000000000001,65,918,0,618,0.269,30.6,52.99,0.93,0.13,797,1.5,356,1.7000000000000002
+2023,8,28,9,30,25.6,1.79,0.039,0.61,68,940,699,0,0,6.300000000000001,68,940,0,699,0.268,29.19,47.84,0.93,0.13,797,1.5,350,1.7000000000000002
+2023,8,28,10,0,26.5,1.78,0.039,0.61,71,957,771,0,0,5.800000000000001,71,957,0,771,0.267,26.7,43.03,0.93,0.13,797,1.5,345,1.7000000000000002
+2023,8,28,10,30,27.1,1.78,0.039,0.61,72,971,829,0,0,5.800000000000001,72,971,0,829,0.266,25.78,38.74,0.93,0.13,797,1.5,341,1.7000000000000002
+2023,8,28,11,0,27.8,1.82,0.038,0.61,73,981,875,0,0,5.300000000000001,73,981,0,875,0.265,23.86,35.15,0.93,0.13,797,1.5,337,1.7000000000000002
+2023,8,28,11,30,28.3,1.82,0.038,0.61,75,986,906,0,0,5.300000000000001,75,986,0,906,0.264,23.18,32.53,0.93,0.13,797,1.5,334,1.7000000000000002
+2023,8,28,12,0,28.8,1.81,0.038,0.61,74,989,921,0,0,4.7,74,989,0,921,0.263,21.6,31.13,0.9400000000000001,0.13,796,1.5,331,1.7000000000000002
+2023,8,28,12,30,29.1,1.81,0.038,0.61,74,989,921,0,0,4.7,102,939,0,906,0.262,21.23,31.11,0.9400000000000001,0.13,796,1.5,330,1.7000000000000002
+2023,8,28,13,0,29.5,1.8,0.038,0.61,74,986,906,0,3,4.1000000000000005,335,451,0,715,0.261,19.88,32.49,0.9400000000000001,0.13,796,1.5,330,1.7000000000000002
+2023,8,28,13,30,29.700000000000003,1.8,0.038,0.61,74,980,876,0,0,4.1000000000000005,127,860,0,831,0.261,19.650000000000002,35.09,0.9400000000000001,0.13,796,1.5,333,1.7000000000000002
+2023,8,28,14,0,29.900000000000002,1.78,0.039,0.61,73,971,831,0,0,3.5,149,814,0,785,0.26,18.66,38.67,0.9400000000000001,0.13,796,1.5,336,1.7000000000000002
+2023,8,28,14,30,29.8,1.78,0.039,0.61,70,959,772,0,0,3.5,70,959,0,772,0.26,18.740000000000002,42.96,0.9400000000000001,0.13,795,1.5,341,1.7000000000000002
+2023,8,28,15,0,29.8,1.75,0.039,0.61,68,941,701,0,0,2.9000000000000004,113,846,0,682,0.259,18,47.75,0.9400000000000001,0.13,795,1.5,347,1.7000000000000002
+2023,8,28,15,30,29.5,1.75,0.039,0.61,65,918,619,0,3,2.9000000000000004,209,522,0,524,0.259,18.31,52.910000000000004,0.9400000000000001,0.13,795,1.5,174,1.8
+2023,8,28,16,0,29.200000000000003,1.71,0.041,0.61,63,886,528,0,0,2.5,126,666,0,476,0.259,18.02,58.31,0.9400000000000001,0.13,795,1.5,1,1.9000000000000001
+2023,8,28,16,30,28.5,1.71,0.041,0.61,59,843,430,0,0,2.5,59,843,0,430,0.259,18.76,63.86,0.9400000000000001,0.13,795,1.6,7,2
+2023,8,28,17,0,27.900000000000002,1.6500000000000001,0.044,0.61,53,782,327,0,0,2.2,53,782,0,327,0.259,19.12,69.51,0.9400000000000001,0.14,795,1.6,14,2.1
+2023,8,28,17,30,26.3,1.6500000000000001,0.044,0.61,47,694,224,0,0,2.2,47,694,0,224,0.258,21,75.19,0.9400000000000001,0.14,795,1.6,22,1.7000000000000002
+2023,8,28,18,0,24.6,1.6,0.047,0.61,37,553,125,0,0,5,37,553,0,125,0.258,28.16,80.86,0.9400000000000001,0.14,795,1.6,30,1.2000000000000002
+2023,8,28,18,30,23.3,1.6,0.047,0.61,23,294,41,0,0,5,23,294,0,41,0.259,30.44,86.44,0.9400000000000001,0.14,795,1.6,39,1.3
+2023,8,28,19,0,22,1.57,0.049,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,32.14,92.18,0.9500000000000001,0.14,796,1.6,48,1.4000000000000001
+2023,8,28,19,30,21.400000000000002,1.57,0.049,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,33.34,97.63,0.9400000000000001,0.14,796,1.6,52,1.6
+2023,8,28,20,0,20.700000000000003,1.56,0.048,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,34.85,102.92,0.9400000000000001,0.14,796,1.6,55,1.7000000000000002
+2023,8,28,20,30,19.900000000000002,1.56,0.048,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,36.61,107.98,0.9400000000000001,0.14,796,1.6,58,1.6
+2023,8,28,21,0,19.1,1.57,0.047,0.61,0,0,0,0,0,5.300000000000001,0,0,0,0,0.26,40.21,112.75,0.9400000000000001,0.14,797,1.6,61,1.5
+2023,8,28,21,30,18.400000000000002,1.57,0.047,0.61,0,0,0,0,0,5.300000000000001,0,0,14,0,0.26,42,117.14,0.9400000000000001,0.14,797,1.6,64,1.5
+2023,8,28,22,0,17.7,1.6,0.046,0.61,0,0,0,1,0,5.7,0,0,71,0,0.26,45.160000000000004,121.07000000000001,0.9400000000000001,0.14,797,1.6,66,1.4000000000000001
+2023,8,28,22,30,17.2,1.6,0.046,0.61,0,0,0,0,0,5.7,0,0,0,0,0.26,46.6,124.42,0.9400000000000001,0.14,797,1.6,68,1.3
+2023,8,28,23,0,16.6,1.62,0.044,0.61,0,0,0,0,0,5.9,0,0,0,0,0.26,49.33,127.09,0.9400000000000001,0.14,797,1.6,69,1.3
+2023,8,28,23,30,16.1,1.62,0.044,0.61,0,0,0,0,0,5.9,0,0,0,0,0.26,50.92,128.95,0.9400000000000001,0.14,797,1.6,69,1.2000000000000002
+2023,8,29,0,0,15.700000000000001,1.6500000000000001,0.043000000000000003,0.61,0,0,0,0,0,6.2,0,0,0,0,0.26,53.08,129.92000000000002,0.9400000000000001,0.14,797,1.6,68,1.1
+2023,8,29,0,30,15.200000000000001,1.6500000000000001,0.043000000000000003,0.61,0,0,0,0,0,6.2,0,0,0,0,0.26,54.81,129.94,0.9400000000000001,0.14,797,1.6,67,1.1
+2023,8,29,1,0,14.8,1.67,0.042,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.26,56.84,129,0.9400000000000001,0.14,797,1.6,66,1
+2023,8,29,1,30,14.4,1.67,0.042,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.261,58.32,127.17,0.9400000000000001,0.14,797,1.6,65,1.1
+2023,8,29,2,0,14,1.7,0.041,0.61,0,0,0,0,0,6.5,0,0,0,0,0.261,60.44,124.53,0.9400000000000001,0.14,797,1.6,64,1.1
+2023,8,29,2,30,13.8,1.7,0.041,0.61,0,0,0,0,0,6.5,0,0,0,0,0.261,61.230000000000004,121.2,0.9400000000000001,0.14,797,1.5,66,1.1
+2023,8,29,3,0,13.5,1.71,0.04,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.261,63.22,117.29,0.9400000000000001,0.14,797,1.5,68,1.2000000000000002
+2023,8,29,3,30,13.3,1.71,0.04,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.26,64.05,112.91,0.9400000000000001,0.14,797,1.5,69,1.2000000000000002
+2023,8,29,4,0,13.100000000000001,1.72,0.039,0.61,0,0,0,0,0,6.9,0,0,0,0,0.26,65.86,108.15,0.93,0.14,797,1.5,70,1.2000000000000002
+2023,8,29,4,30,12.8,1.72,0.039,0.61,0,0,0,0,0,6.9,0,0,0,0,0.26,67.16,103.11,0.93,0.14,797,1.5,72,1.2000000000000002
+2023,8,29,5,0,12.600000000000001,1.73,0.039,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.26,68.97,97.83,0.93,0.14,797,1.5,73,1.2000000000000002
+2023,8,29,5,30,13.700000000000001,1.73,0.039,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.259,64.21000000000001,92.38,0.93,0.14,797,1.4000000000000001,73,1.8
+2023,8,29,6,0,14.8,1.74,0.038,0.61,22,310,40,0,0,7.300000000000001,22,310,0,40,0.259,60.870000000000005,86.64,0.93,0.14,798,1.4000000000000001,73,2.3000000000000003
+2023,8,29,6,30,16.5,1.74,0.038,0.61,35,573,124,0,0,7.300000000000001,35,573,0,124,0.259,54.61,81.08,0.93,0.14,798,1.4000000000000001,72,2.3000000000000003
+2023,8,29,7,0,18.2,1.74,0.037,0.61,44,711,223,0,0,7.300000000000001,44,711,0,223,0.259,48.86,75.42,0.93,0.14,798,1.4000000000000001,72,2.4000000000000004
+2023,8,29,7,30,20.700000000000003,1.74,0.037,0.61,51,797,327,0,0,7.300000000000001,51,797,0,327,0.259,41.85,69.75,0.93,0.14,798,1.4000000000000001,80,2.6
+2023,8,29,8,0,23.3,1.74,0.035,0.61,56,857,430,0,0,4.800000000000001,56,857,0,430,0.259,30.04,64.11,0.93,0.14,798,1.3,88,2.8000000000000003
+2023,8,29,8,30,24.6,1.74,0.035,0.61,60,899,529,0,0,4.800000000000001,60,899,0,529,0.259,27.8,58.57,0.93,0.14,798,1.3,91,2.7
+2023,8,29,9,0,25.900000000000002,1.74,0.035,0.61,63,929,620,0,0,3.3000000000000003,63,929,0,620,0.259,23.14,53.19,0.93,0.14,798,1.3,94,2.5
+2023,8,29,9,30,26.700000000000003,1.74,0.035,0.61,66,953,703,0,0,3.3000000000000003,66,953,0,703,0.259,22.07,48.050000000000004,0.93,0.14,798,1.3,100,2.1
+2023,8,29,10,0,27.400000000000002,1.75,0.034,0.61,68,971,775,0,0,2.8000000000000003,68,971,0,775,0.259,20.54,43.27,0.93,0.14,798,1.3,106,1.7000000000000002
+2023,8,29,10,30,28,1.75,0.034,0.61,68,987,835,0,0,2.8000000000000003,68,987,0,835,0.259,19.830000000000002,39,0.93,0.14,798,1.3,117,1.5
+2023,8,29,11,0,28.6,1.87,0.026000000000000002,0.61,66,1000,881,0,0,2.5,66,1000,0,881,0.259,18.72,35.44,0.9400000000000001,0.14,797,1.2000000000000002,129,1.2000000000000002
+2023,8,29,11,30,29.1,1.87,0.026000000000000002,0.61,67,1007,913,0,0,2.5,67,1007,0,913,0.259,18.18,32.85,0.9400000000000001,0.14,797,1.2000000000000002,145,1.1
+2023,8,29,12,0,29.5,1.8800000000000001,0.025,0.61,67,1010,928,0,0,2.1,67,1010,0,928,0.259,17.32,31.470000000000002,0.93,0.14,797,1.2000000000000002,161,1.1
+2023,8,29,12,30,29.8,1.8800000000000001,0.025,0.61,67,1011,929,0,0,2.1,67,1011,0,929,0.259,17,31.470000000000002,0.93,0.14,796,1.2000000000000002,172,1.1
+2023,8,29,13,0,30.1,1.8900000000000001,0.025,0.61,66,1010,914,0,0,1.7000000000000002,66,1010,0,914,0.259,16.19,32.85,0.93,0.14,796,1.2000000000000002,183,1.2000000000000002
+2023,8,29,13,30,30.3,1.8900000000000001,0.025,0.61,65,1004,883,0,0,1.7000000000000002,65,1004,0,883,0.259,15.99,35.45,0.93,0.14,795,1.2000000000000002,186,1.4000000000000001
+2023,8,29,14,0,30.400000000000002,1.84,0.026000000000000002,0.61,65,996,839,0,0,1.2000000000000002,65,996,0,839,0.259,15.39,39.01,0.93,0.14,795,1.1,188,1.5
+2023,8,29,14,30,30.3,1.84,0.026000000000000002,0.61,63,985,780,0,0,1.2000000000000002,63,985,0,780,0.259,15.46,43.28,0.93,0.14,794,1.1,190,1.7000000000000002
+2023,8,29,15,0,30.200000000000003,1.85,0.025,0.61,61,970,709,0,0,0.7000000000000001,61,970,0,709,0.258,15.02,48.07,0.93,0.14,794,1.1,191,1.9000000000000001
+2023,8,29,15,30,29.900000000000002,1.85,0.025,0.61,59,949,627,0,0,0.7000000000000001,59,949,0,627,0.258,15.280000000000001,53.21,0.93,0.14,794,1.1,193,2.1
+2023,8,29,16,0,29.5,1.86,0.025,0.61,55,922,535,0,0,0.30000000000000004,55,922,0,535,0.258,15.11,58.6,0.93,0.14,794,1.1,195,2.3000000000000003
+2023,8,29,16,30,28.900000000000002,1.86,0.025,0.61,51,882,436,0,0,0.2,51,882,0,436,0.258,15.620000000000001,64.15,0.93,0.14,793,1.1,198,2.4000000000000004
+2023,8,29,17,0,28.3,1.85,0.025,0.61,47,826,332,0,0,0.1,47,826,0,332,0.258,15.99,69.79,0.93,0.14,793,1.1,200,2.4000000000000004
+2023,8,29,17,30,26.400000000000002,1.85,0.025,0.61,40,744,227,0,0,0.1,40,744,0,227,0.258,17.86,75.48,0.93,0.14,793,1.1,198,1.8
+2023,8,29,18,0,24.6,1.83,0.026000000000000002,0.61,32,610,126,0,0,3.5,32,610,0,126,0.258,25.400000000000002,81.15,0.93,0.14,793,1.1,196,1.2000000000000002
+2023,8,29,18,30,23.200000000000003,1.83,0.026000000000000002,0.61,20,343,40,0,0,3.5,20,343,0,40,0.259,27.650000000000002,86.72,0.93,0.14,794,1.1,190,1.2000000000000002
+2023,8,29,19,0,21.8,1.84,0.027,0.61,0,0,0,0,0,3.2,0,0,0,0,0.259,29.46,92.47,0.93,0.14,794,1.1,183,1.2000000000000002
+2023,8,29,19,30,21.1,1.84,0.027,0.61,0,0,0,0,0,3.2,0,0,0,0,0.259,30.740000000000002,97.93,0.93,0.14,794,1.1,181,1.3
+2023,8,29,20,0,20.3,1.85,0.028,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.259,31.51,103.22,0.9400000000000001,0.14,794,1.2000000000000002,179,1.4000000000000001
+2023,8,29,20,30,19.900000000000002,1.85,0.028,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.26,32.29,108.29,0.9400000000000001,0.14,794,1.3,181,1.5
+2023,8,29,21,0,19.400000000000002,1.85,0.031,0.61,0,0,0,0,0,2.6,0,0,0,0,0.26,32.64,113.07000000000001,0.9400000000000001,0.14,794,1.3,182,1.6
+2023,8,29,21,30,19.1,1.85,0.031,0.61,0,0,0,0,0,2.5,0,0,29,0,0.261,33.21,117.48,0.9400000000000001,0.14,793,1.4000000000000001,185,1.8
+2023,8,29,22,0,18.8,1.85,0.033,0.61,0,0,0,1,0,2.5,0,0,86,0,0.261,33.69,121.42,0.9500000000000001,0.14,793,1.4000000000000001,187,2
+2023,8,29,22,30,18.6,1.85,0.033,0.61,0,0,0,0,0,2.5,0,0,0,0,0.261,34.11,124.78,0.9500000000000001,0.14,793,1.4000000000000001,189,2.2
+2023,8,29,23,0,18.400000000000002,1.85,0.036000000000000004,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.262,34.480000000000004,127.45,0.9500000000000001,0.14,793,1.5,191,2.4000000000000004
+2023,8,29,23,30,18.3,1.85,0.036000000000000004,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.262,34.7,129.32,0.9500000000000001,0.14,793,1.5,191,2.5
+2023,8,30,0,0,18.1,1.85,0.04,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.262,34.85,130.28,0.9500000000000001,0.14,793,1.6,192,2.7
+2023,8,30,0,30,17.900000000000002,1.85,0.04,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.262,35.29,130.29,0.9500000000000001,0.14,793,1.6,194,2.7
+2023,8,30,1,0,17.8,1.83,0.043000000000000003,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.263,35.32,129.34,0.96,0.14,793,1.6,197,2.8000000000000003
+2023,8,30,1,30,17.400000000000002,1.83,0.043000000000000003,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.263,36.22,127.48,0.9500000000000001,0.14,793,1.6,202,2.6
+2023,8,30,2,0,17.1,1.81,0.044,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.264,37.36,124.82000000000001,0.9500000000000001,0.14,792,1.6,207,2.4000000000000004
+2023,8,30,2,30,16.6,1.81,0.044,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.264,38.61,121.47,0.9500000000000001,0.14,793,1.6,214,2.1
+2023,8,30,3,0,16.2,1.78,0.044,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.265,40.910000000000004,117.54,0.9500000000000001,0.14,793,1.6,221,1.8
+2023,8,30,3,30,15.700000000000001,1.78,0.044,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.265,42.230000000000004,113.14,0.9400000000000001,0.14,793,1.5,227,1.5
+2023,8,30,4,0,15.3,1.75,0.044,0.61,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.266,44.75,108.37,0.9400000000000001,0.14,793,1.5,232,1.3
+2023,8,30,4,30,14.9,1.75,0.044,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.266,45.910000000000004,103.31,0.9400000000000001,0.14,793,1.5,238,1.1
+2023,8,30,5,0,14.600000000000001,1.72,0.047,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.267,48.160000000000004,98.02,0.93,0.14,793,1.5,243,1
+2023,8,30,5,30,15.700000000000001,1.72,0.047,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.267,44.88,92.56,0.93,0.14,793,1.5,245,1
+2023,8,30,6,0,16.8,1.7,0.051000000000000004,0.61,22,276,37,0,0,4.1000000000000005,22,276,0,37,0.267,42.95,86.81,0.93,0.14,793,1.5,247,1.1
+2023,8,30,6,30,18.6,1.7,0.051000000000000004,0.61,37,537,119,0,0,4.2,37,537,0,119,0.268,38.410000000000004,81.26,0.93,0.14,794,1.4000000000000001,249,1.3
+2023,8,30,7,0,20.400000000000002,1.69,0.052000000000000005,0.61,48,678,217,0,0,4,48,678,0,217,0.268,34.08,75.59,0.93,0.14,794,1.4000000000000001,250,1.4000000000000001
+2023,8,30,7,30,22.3,1.69,0.052000000000000005,0.61,56,770,320,0,0,4.1000000000000005,56,770,0,320,0.268,30.35,69.92,0.93,0.14,794,1.4000000000000001,239,1.9000000000000001
+2023,8,30,8,0,24.200000000000003,1.68,0.051000000000000004,0.61,62,832,423,0,0,3.2,62,832,0,423,0.268,25.54,64.29,0.93,0.14,794,1.4000000000000001,229,2.4000000000000004
+2023,8,30,8,30,25.6,1.68,0.051000000000000004,0.61,67,878,522,0,0,3.2,67,878,0,522,0.268,23.5,58.76,0.93,0.14,794,1.4000000000000001,227,3
+2023,8,30,9,0,27,1.68,0.048,0.61,70,913,614,0,0,2.3000000000000003,70,913,0,614,0.268,20.21,53.39,0.92,0.14,794,1.3,225,3.6
+2023,8,30,9,30,28.1,1.68,0.048,0.61,72,940,698,0,0,2.3000000000000003,72,940,0,698,0.267,18.94,48.26,0.92,0.14,793,1.3,224,4
+2023,8,30,10,0,29.1,1.67,0.044,0.61,73,962,771,0,0,1.3,73,962,0,771,0.267,16.66,43.5,0.92,0.14,793,1.2000000000000002,224,4.5
+2023,8,30,10,30,29.900000000000002,1.67,0.044,0.61,72,981,832,0,0,1.3,72,981,0,832,0.266,15.91,39.26,0.92,0.14,793,1.2000000000000002,224,5
+2023,8,30,11,0,30.700000000000003,1.8800000000000001,0.034,0.61,71,998,881,0,0,0,71,998,0,881,0.266,13.88,35.730000000000004,0.92,0.14,792,1.1,224,5.4
+2023,8,30,11,30,31.200000000000003,1.8800000000000001,0.034,0.61,71,1006,913,0,0,0,71,1006,0,913,0.265,13.49,33.17,0.92,0.14,792,1.1,224,5.9
+2023,8,30,12,0,31.700000000000003,1.8800000000000001,0.033,0.61,71,1012,931,0,0,-1.5,71,1012,0,931,0.264,11.71,31.82,0.92,0.14,792,1,225,6.300000000000001
+2023,8,30,12,30,31.900000000000002,1.8800000000000001,0.033,0.61,72,1014,933,0,0,-1.5,72,1014,0,933,0.264,11.57,31.84,0.92,0.14,791,1,226,6.7
+2023,8,30,13,0,32.1,1.87,0.032,0.61,71,1013,918,0,0,-3.1,71,1013,0,918,0.263,10.200000000000001,33.22,0.92,0.14,791,0.9,227,7
+2023,8,30,13,30,32.2,1.87,0.032,0.61,69,1008,887,0,0,-3.1,69,1008,0,887,0.263,10.15,35.800000000000004,0.92,0.14,791,0.9,228,7.1000000000000005
+2023,8,30,14,0,32.2,1.9000000000000001,0.032,0.61,68,1001,842,0,0,-4.3,68,1001,0,842,0.262,9.27,39.35,0.91,0.14,790,0.9,229,7.2
+2023,8,30,14,30,32,1.9000000000000001,0.032,0.61,67,989,783,0,0,-4.3,67,989,0,783,0.262,9.370000000000001,43.61,0.91,0.14,790,0.9,230,7.2
+2023,8,30,15,0,31.900000000000002,1.9000000000000001,0.033,0.61,65,972,711,0,0,-5.1000000000000005,65,972,0,711,0.262,8.88,48.38,0.91,0.14,790,0.8,231,7.1000000000000005
+2023,8,30,15,30,31.400000000000002,1.9000000000000001,0.033,0.61,62,950,627,0,0,-5.1000000000000005,62,950,0,627,0.263,9.13,53.52,0.91,0.14,790,0.8,231,6.9
+2023,8,30,16,0,31,1.8900000000000001,0.035,0.61,60,918,534,0,0,-5.6000000000000005,60,918,0,534,0.263,9,58.9,0.91,0.14,790,0.8,232,6.7
+2023,8,30,16,30,30.200000000000003,1.8900000000000001,0.035,0.61,55,876,433,0,0,-5.6000000000000005,55,876,0,433,0.263,9.41,64.44,0.9,0.14,789,0.8,232,6.1000000000000005
+2023,8,30,17,0,29.5,1.8900000000000001,0.037,0.61,50,816,328,0,0,-5.5,50,816,0,328,0.263,9.83,70.08,0.9,0.14,789,0.8,232,5.6000000000000005
+2023,8,30,17,30,27.200000000000003,1.8900000000000001,0.037,0.61,44,728,223,0,0,-5.6000000000000005,44,728,0,223,0.263,11.23,75.76,0.9,0.14,789,0.8,233,4.2
+2023,8,30,18,0,24.900000000000002,1.86,0.038,0.61,34,584,121,0,0,-3.6,34,584,0,121,0.264,14.97,81.43,0.9,0.14,789,0.9,234,2.7
+2023,8,30,18,30,23.1,1.86,0.038,0.61,21,309,37,0,0,-3.5,21,309,0,37,0.264,16.69,87,0.9,0.14,790,0.9,243,2.3000000000000003
+2023,8,30,19,0,21.3,1.82,0.04,0.61,0,0,0,0,0,-2,0,0,0,0,0.265,20.87,92.76,0.9,0.14,790,0.9,252,1.9000000000000001
+2023,8,30,19,30,20.6,1.82,0.04,0.61,0,0,0,0,0,-2,0,0,0,0,0.265,21.78,98.23,0.9,0.14,790,0.9,267,1.9000000000000001
+2023,8,30,20,0,20,1.78,0.042,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.266,24.23,103.53,0.9,0.14,791,0.9,281,1.8
+2023,8,30,20,30,19.3,1.78,0.042,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.267,25.3,108.61,0.9,0.14,791,0.9,294,1.9000000000000001
+2023,8,30,21,0,18.7,1.74,0.043000000000000003,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.267,27.53,113.4,0.9,0.14,791,0.9,307,2
+2023,8,30,21,30,17.900000000000002,1.74,0.043000000000000003,0.61,0,0,0,0,0,-0.4,0,0,29,0,0.268,28.95,117.82000000000001,0.9,0.14,791,0.9,315,1.8
+2023,8,30,22,0,17.2,1.69,0.044,0.61,0,0,0,1,0,0.30000000000000004,0,0,86,0,0.269,31.77,121.76,0.9,0.14,791,0.9,323,1.7000000000000002
+2023,8,30,22,30,16.6,1.69,0.044,0.61,0,0,0,0,0,0.2,0,0,0,0,0.269,32.99,125.14,0.9,0.14,791,0.8,332,1.5
+2023,8,30,23,0,16,1.62,0.045,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.27,35.39,127.82000000000001,0.9,0.14,791,0.8,340,1.3
+2023,8,30,23,30,15.700000000000001,1.62,0.045,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.271,36.07,129.68,0.9,0.14,791,0.8,172,1.2000000000000002
+2023,8,31,0,0,15.4,1.56,0.048,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.271,36.87,130.64000000000001,0.91,0.14,791,0.8,4,1.1
+2023,8,31,0,30,15.3,1.56,0.048,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.272,37.11,130.64000000000001,0.91,0.14,791,0.9,17,1.1
+2023,8,31,1,0,15.100000000000001,1.53,0.051000000000000004,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.272,37.13,129.67000000000002,0.91,0.14,791,0.9,29,1.1
+2023,8,31,1,30,14.9,1.53,0.051000000000000004,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.272,37.61,127.8,0.91,0.14,791,0.9,38,1
+2023,8,31,2,0,14.700000000000001,1.52,0.054,0.61,0,0,0,0,0,0.4,0,0,0,0,0.272,37.61,125.12,0.91,0.14,791,0.9,48,1
+2023,8,31,2,30,14.5,1.52,0.054,0.61,0,0,0,0,0,0.4,0,0,0,0,0.273,38.09,121.74000000000001,0.91,0.14,791,0.9,51,0.9
+2023,8,31,3,0,14.3,1.53,0.057,0.61,0,0,0,0,0,0.2,0,0,0,0,0.273,38.19,117.79,0.91,0.14,791,0.9,54,0.8
+2023,8,31,3,30,14.100000000000001,1.53,0.057,0.61,0,0,0,0,0,0.2,0,0,0,0,0.273,38.68,113.37,0.91,0.14,791,0.9,49,0.8
+2023,8,31,4,0,14,1.55,0.059000000000000004,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,38.63,108.59,0.91,0.14,791,0.9,45,0.7000000000000001
+2023,8,31,4,30,13.700000000000001,1.55,0.059000000000000004,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,39.38,103.51,0.91,0.14,791,0.9,39,0.6000000000000001
+2023,8,31,5,0,13.5,1.57,0.059000000000000004,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,39.78,98.21000000000001,0.91,0.14,791,0.9,34,0.6000000000000001
+2023,8,31,5,30,14.200000000000001,1.57,0.059000000000000004,0.61,0,0,0,0,0,0.1,0,0,0,0,0.273,38.02,92.75,0.91,0.14,791,0.9,35,0.5
+2023,8,31,6,0,14.8,1.59,0.059000000000000004,0.61,21,265,35,0,0,0.9,21,265,0,35,0.273,38.79,86.98,0.91,0.14,791,0.9,37,0.5
+2023,8,31,6,30,16.8,1.59,0.059000000000000004,0.61,38,537,118,0,0,0.9,38,537,0,118,0.273,34.19,81.42,0.91,0.14,792,0.9,100,0.5
+2023,8,31,7,0,18.8,1.6,0.056,0.61,49,688,218,0,0,0.1,49,688,0,218,0.273,28.41,75.76,0.91,0.14,792,0.9,163,0.4
+2023,8,31,7,30,20.900000000000002,1.6,0.056,0.61,56,783,323,0,0,0.1,56,783,0,323,0.272,24.96,70.09,0.91,0.14,792,0.9,190,1.6
+2023,8,31,8,0,22.900000000000002,1.61,0.054,0.61,63,848,428,0,0,-0.8,63,848,0,428,0.272,20.63,64.47,0.91,0.14,792,0.9,217,2.8000000000000003
+2023,8,31,8,30,24.400000000000002,1.61,0.054,0.61,68,892,528,0,0,-0.8,68,892,0,528,0.271,18.85,58.94,0.91,0.14,792,0.9,222,3.6
+2023,8,31,9,0,25.8,1.62,0.052000000000000005,0.61,70,926,620,0,0,-1.4000000000000001,70,926,0,620,0.271,16.65,53.58,0.91,0.14,792,0.9,226,4.4
+2023,8,31,9,30,26.900000000000002,1.62,0.052000000000000005,0.61,74,950,704,0,0,-1.4000000000000001,74,950,0,704,0.27,15.59,48.480000000000004,0.91,0.14,791,0.9,228,4.9
+2023,8,31,10,0,28.1,1.6300000000000001,0.05,0.61,76,969,776,0,0,-1.9000000000000001,76,969,0,776,0.27,14.01,43.74,0.91,0.14,791,0.9,229,5.4
+2023,8,31,10,30,28.900000000000002,1.6300000000000001,0.05,0.61,76,985,836,0,0,-1.9000000000000001,76,985,0,836,0.269,13.370000000000001,39.52,0.91,0.14,791,0.9,228,5.6000000000000005
+2023,8,31,11,0,29.700000000000003,1.94,0.044,0.61,76,998,883,0,0,-2,76,998,0,883,0.268,12.65,36.03,0.91,0.14,791,0.9,227,5.9
+2023,8,31,11,30,30.200000000000003,1.94,0.044,0.61,76,1004,913,0,0,-2,76,1004,0,913,0.268,12.290000000000001,33.5,0.91,0.14,791,0.9,225,6
+2023,8,31,12,0,30.8,1.92,0.042,0.61,75,1006,927,0,0,-1.9000000000000001,75,1006,0,927,0.268,11.98,32.17,0.91,0.14,791,1,223,6.1000000000000005
+2023,8,31,12,30,31.1,1.92,0.042,0.61,76,1006,927,0,0,-1.9000000000000001,76,1006,0,927,0.268,11.76,32.2,0.91,0.14,790,1,222,6.2
+2023,8,31,13,0,31.400000000000002,1.9100000000000001,0.041,0.61,75,1002,910,0,0,-1.9000000000000001,75,1002,0,910,0.267,11.58,33.59,0.91,0.14,790,1,221,6.300000000000001
+2023,8,31,13,30,31.400000000000002,1.9100000000000001,0.041,0.61,74,996,878,0,0,-1.9000000000000001,74,996,0,878,0.267,11.58,36.160000000000004,0.91,0.14,790,1,221,6.300000000000001
+2023,8,31,14,0,31.5,1.95,0.042,0.61,72,986,831,0,0,-2,72,986,0,831,0.267,11.48,39.69,0.9,0.14,789,1,221,6.2
+2023,8,31,14,30,31.400000000000002,1.95,0.042,0.61,72,970,770,0,0,-2,72,970,0,770,0.267,11.540000000000001,43.94,0.9,0.14,789,1.1,220,6.1000000000000005
+2023,8,31,15,0,31.200000000000003,1.96,0.045,0.61,70,949,696,0,0,-1.7000000000000002,70,949,0,696,0.268,11.85,48.7,0.9,0.14,789,1.1,220,6
+2023,8,31,15,30,30.8,1.96,0.045,0.61,67,922,611,0,0,-1.7000000000000002,67,922,0,611,0.268,12.120000000000001,53.83,0.9,0.14,789,1.2000000000000002,218,5.800000000000001
+2023,8,31,16,0,30.3,1.95,0.049,0.61,64,885,517,0,0,-1.1,64,885,0,517,0.268,13.1,59.2,0.9,0.14,789,1.2000000000000002,217,5.6000000000000005
+2023,8,31,16,30,29.6,1.95,0.049,0.61,61,835,417,0,0,-1.1,61,835,0,417,0.267,13.620000000000001,64.73,0.91,0.14,788,1.3,214,5.2
+2023,8,31,17,0,28.900000000000002,1.9100000000000001,0.052000000000000005,0.63,55,768,313,0,0,0,55,768,0,313,0.267,15.34,70.37,0.91,0.14,788,1.4000000000000001,211,4.800000000000001
+2023,8,31,17,30,26.900000000000002,1.9100000000000001,0.052000000000000005,0.63,47,669,208,0,0,0,47,669,0,208,0.267,17.22,76.05,0.92,0.14,788,1.4000000000000001,205,3.6
+2023,8,31,18,0,24.8,1.83,0.059000000000000004,0.63,37,510,110,0,0,1.9000000000000001,37,510,0,110,0.267,22.48,81.72,0.93,0.14,788,1.5,199,2.3000000000000003
+2023,8,31,18,30,23.6,1.83,0.059000000000000004,0.63,19,220,29,0,0,2,19,220,0,29,0.267,24.18,87.28,0.93,0.14,789,1.6,193,2.3000000000000003
+2023,8,31,19,0,22.400000000000002,1.78,0.061,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.268,27.59,93.06,0.9400000000000001,0.14,789,1.6,186,2.2
+2023,8,31,19,30,22.1,1.78,0.061,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.268,28.1,98.54,0.9400000000000001,0.14,789,1.7000000000000002,184,2.4000000000000004
+2023,8,31,20,0,21.900000000000002,1.72,0.061,0.63,0,0,0,0,0,3.2,0,0,0,0,0.268,29.36,103.85000000000001,0.9500000000000001,0.14,789,1.8,182,2.7
+2023,8,31,20,30,21.700000000000003,1.72,0.061,0.63,0,0,0,0,5,3.2,0,0,0,0,0.268,29.72,108.93,0.96,0.14,789,1.8,183,2.8000000000000003
+2023,8,31,21,0,21.5,1.6600000000000001,0.059000000000000004,0.63,0,0,0,0,0,3.7,0,0,0,0,0.268,31.02,113.73,0.96,0.14,789,1.9000000000000001,184,3
+2023,8,31,21,30,21.200000000000003,1.6600000000000001,0.059000000000000004,0.63,0,0,0,0,0,3.7,0,0,43,0,0.268,31.59,118.16,0.96,0.14,789,1.9000000000000001,186,2.9000000000000004
+2023,8,31,22,0,20.8,1.6400000000000001,0.052000000000000005,0.63,0,0,0,1,0,4,0,0,86,0,0.268,33.06,122.12,0.96,0.14,789,1.9000000000000001,188,2.9000000000000004
+2023,8,31,22,30,20.5,1.6400000000000001,0.052000000000000005,0.63,0,0,0,0,0,4,0,0,0,0,0.269,33.67,125.5,0.96,0.14,789,1.9000000000000001,191,2.8000000000000003
+2023,8,31,23,0,20.200000000000003,1.6400000000000001,0.047,0.63,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.269,34.7,128.18,0.96,0.14,789,1.9000000000000001,194,2.8000000000000003
+2023,8,31,23,30,19.8,1.6400000000000001,0.047,0.63,0,0,0,0,8,4.1000000000000005,0,0,0,0,0.269,35.57,130.05,0.96,0.14,789,1.9000000000000001,197,2.6
+2023,9,1,0,0,19.3,1.6500000000000001,0.044,0.63,0,0,0,0,3,4.2,0,0,0,0,0.269,36.97,131.01,0.9500000000000001,0.14,790,1.8,200,2.5
+2023,9,1,0,30,18.900000000000002,1.6500000000000001,0.044,0.63,0,0,0,0,8,4.2,0,0,0,0,0.269,37.9,130.99,0.9500000000000001,0.14,790,1.8,203,2.4000000000000004
+2023,9,1,1,0,18.400000000000002,1.6300000000000001,0.043000000000000003,0.63,0,0,0,0,8,4.4,0,0,0,0,0.269,39.44,130.01,0.9500000000000001,0.14,790,1.8,205,2.2
+2023,9,1,1,30,17.900000000000002,1.6300000000000001,0.043000000000000003,0.63,0,0,0,0,7,4.4,0,0,0,0,0.269,40.69,128.12,0.9500000000000001,0.14,790,1.9000000000000001,210,2.2
+2023,9,1,2,0,17.5,1.55,0.046,0.63,0,0,0,0,5,4.800000000000001,0,0,0,0,0.269,42.97,125.42,0.9500000000000001,0.14,790,1.9000000000000001,214,2.2
+2023,9,1,2,30,17.2,1.55,0.046,0.63,0,0,0,0,3,4.800000000000001,0,0,0,0,0.27,43.79,122.02,0.9500000000000001,0.14,790,2,218,2.1
+2023,9,1,3,0,16.900000000000002,1.44,0.048,0.63,0,0,0,0,0,5.300000000000001,0,0,0,0,0.27,46.300000000000004,118.04,0.9500000000000001,0.14,791,2,223,1.9000000000000001
+2023,9,1,3,30,16.8,1.44,0.048,0.63,0,0,0,0,8,5.300000000000001,0,0,0,0,0.27,46.54,113.61,0.9500000000000001,0.14,790,2.1,223,1.7000000000000002
+2023,9,1,4,0,16.6,1.35,0.049,0.63,0,0,0,0,3,5.800000000000001,0,0,0,0,0.271,48.89,108.8,0.9500000000000001,0.14,790,2.1,223,1.5
+2023,9,1,4,30,16.400000000000002,1.35,0.049,0.63,0,0,0,0,7,5.800000000000001,0,0,0,0,0.272,49.58,103.71000000000001,0.96,0.14,791,2.2,212,1.6
+2023,9,1,5,0,16.3,1.31,0.058,0.63,0,0,0,0,7,6.5,0,0,0,0,0.272,52.300000000000004,98.4,0.96,0.14,791,2.3000000000000003,201,1.7000000000000002
+2023,9,1,5,30,16.3,1.31,0.058,0.63,0,0,0,1,8,6.5,0,0,14,0,0.273,52.370000000000005,92.93,0.96,0.14,792,2.4000000000000004,191,2.8000000000000003
+2023,9,1,6,0,16.3,1.28,0.07200000000000001,0.63,21,195,31,7,6,8.5,9,0,100,9,0.274,59.83,87.15,0.96,0.14,792,2.4000000000000004,182,3.8000000000000003
+2023,9,1,6,30,16.5,1.28,0.07200000000000001,0.63,40,449,106,2,6,8.5,17,0,29,17,0.275,59.15,81.60000000000001,0.96,0.14,793,2.5,178,4.2
+2023,9,1,7,0,16.6,1.28,0.075,0.63,53,599,199,0,7,11,47,2,0,47,0.276,69.7,75.93,0.96,0.14,794,2.5,173,4.5
+2023,9,1,7,30,17.1,1.28,0.075,0.63,62,701,299,0,7,11,81,16,0,86,0.276,67.53,70.27,0.96,0.14,794,2.5,173,4.6000000000000005
+2023,9,1,8,0,17.6,1.29,0.07,0.63,69,773,400,0,7,11.9,185,242,0,289,0.276,69.18,64.65,0.96,0.14,794,2.4000000000000004,172,4.7
+2023,9,1,8,30,18.400000000000002,1.29,0.07,0.63,74,823,496,0,8,11.9,193,389,0,393,0.276,65.8,59.13,0.96,0.14,794,2.4000000000000004,174,4.1000000000000005
+2023,9,1,9,0,19.200000000000003,1.31,0.068,0.63,79,860,587,0,7,10.9,242,319,0,430,0.276,58.71,53.78,0.96,0.14,795,2.3000000000000003,176,3.6
+2023,9,1,9,30,20.6,1.31,0.068,0.63,83,887,668,1,8,10.9,260,263,18,434,0.277,53.78,48.7,0.96,0.14,794,2.3000000000000003,187,3.2
+2023,9,1,10,0,21.900000000000002,1.33,0.07,0.63,86,908,739,2,7,9.600000000000001,290,303,25,508,0.277,45.64,43.980000000000004,0.96,0.14,794,2.2,198,2.8000000000000003
+2023,9,1,10,30,23.1,1.33,0.07,0.63,88,924,798,1,3,9.600000000000001,329,368,14,612,0.277,42.44,39.79,0.96,0.14,794,2.2,207,2.9000000000000004
+2023,9,1,11,0,24.3,1.3900000000000001,0.068,0.63,89,936,843,0,3,8.700000000000001,325,468,4,702,0.277,37.11,36.33,0.96,0.14,794,2.1,215,3
+2023,9,1,11,30,24.900000000000002,1.3900000000000001,0.068,0.63,88,947,875,0,8,8.700000000000001,258,550,0,715,0.277,35.81,33.83,0.96,0.14,794,2.1,217,3.3000000000000003
+2023,9,1,12,0,25.5,1.43,0.056,0.63,85,957,892,0,8,8.200000000000001,298,417,0,650,0.277,33.45,32.53,0.96,0.14,793,2.1,218,3.6
+2023,9,1,12,30,25.900000000000002,1.43,0.056,0.63,81,962,892,0,8,8.200000000000001,235,614,0,752,0.277,32.67,32.57,0.96,0.14,793,2.1,217,3.8000000000000003
+2023,9,1,13,0,26.200000000000003,1.47,0.043000000000000003,0.63,78,965,878,0,7,7.9,289,510,0,712,0.277,31.27,33.95,0.9500000000000001,0.14,792,2.1,217,4
+2023,9,1,13,30,26.3,1.47,0.043000000000000003,0.63,77,957,846,0,7,7.9,329,386,0,639,0.277,31.080000000000002,36.52,0.9500000000000001,0.14,792,2.1,222,4.3
+2023,9,1,14,0,26.3,1.41,0.048,0.63,77,945,800,0,7,7.5,321,360,0,597,0.276,30.35,40.04,0.9500000000000001,0.14,792,2.1,227,4.6000000000000005
+2023,9,1,14,30,25.8,1.41,0.048,0.63,77,928,741,0,7,7.5,307,106,0,383,0.276,31.25,44.28,0.96,0.14,792,2.1,233,4.7
+2023,9,1,15,0,25.400000000000002,1.41,0.055,0.63,75,904,668,0,7,7.5,252,23,0,267,0.275,31.900000000000002,49.02,0.96,0.14,792,2.1,240,4.7
+2023,9,1,15,30,24.700000000000003,1.41,0.055,0.63,71,880,587,0,7,7.5,252,52,0,282,0.275,33.25,54.14,0.96,0.14,792,2.1,247,4.5
+2023,9,1,16,0,24.1,1.44,0.055,0.63,68,846,497,0,7,7.800000000000001,220,167,0,305,0.274,35.26,59.5,0.96,0.14,793,2.1,253,4.2
+2023,9,1,16,30,23.400000000000002,1.44,0.055,0.63,62,801,400,0,7,7.800000000000001,179,119,0,229,0.274,36.77,65.03,0.96,0.14,793,2.1,261,3.8000000000000003
+2023,9,1,17,0,22.700000000000003,1.46,0.053,0.63,55,739,300,0,7,8.3,69,496,29,233,0.274,39.58,70.66,0.96,0.13,793,2,269,3.4000000000000004
+2023,9,1,17,30,21.700000000000003,1.46,0.053,0.63,47,644,199,0,8,8.200000000000001,48,543,43,176,0.274,42.06,76.34,0.96,0.13,793,2,280,2.7
+2023,9,1,18,0,20.700000000000003,1.49,0.052000000000000005,0.63,36,491,104,4,7,9,54,218,82,84,0.274,46.93,82.01,0.96,0.13,793,2,290,2
+2023,9,1,18,30,19.900000000000002,1.49,0.052000000000000005,0.63,18,203,27,6,7,9,17,2,86,17,0.274,49.36,87.56,0.96,0.13,794,2,299,1.7000000000000002
+2023,9,1,19,0,19.200000000000003,1.54,0.056,0.63,0,0,0,0,8,9.3,0,0,0,0,0.274,52.72,93.36,0.96,0.13,794,2,308,1.4000000000000001
+2023,9,1,19,30,18.8,1.54,0.056,0.63,0,0,0,0,3,9.3,0,0,0,0,0.274,54.120000000000005,98.84,0.96,0.13,795,2.1,308,1.2000000000000002
+2023,9,1,20,0,18.400000000000002,1.59,0.066,0.63,0,0,0,0,7,9.5,0,0,0,0,0.274,56.04,104.16,0.96,0.13,795,2.2,307,1
+2023,9,1,20,30,18,1.59,0.066,0.63,0,0,0,0,7,9.5,0,0,0,0,0.274,57.46,109.25,0.97,0.13,795,2.2,302,0.9
+2023,9,1,21,0,17.7,1.6,0.075,0.63,0,0,0,0,7,9.600000000000001,0,0,0,0,0.274,58.96,114.06,0.97,0.13,795,2.3000000000000003,297,0.8
+2023,9,1,21,30,17.5,1.6,0.075,0.63,0,0,0,0,7,9.600000000000001,0,0,43,0,0.274,59.71,118.5,0.97,0.13,795,2.3000000000000003,295,0.7000000000000001
+2023,9,1,22,0,17.3,1.6400000000000001,0.075,0.63,0,0,0,1,3,9.700000000000001,0,0,100,0,0.274,60.870000000000005,122.47,0.96,0.13,795,2.3000000000000003,292,0.7000000000000001
+2023,9,1,22,30,17.2,1.6400000000000001,0.075,0.63,0,0,0,0,3,9.700000000000001,0,0,14,0,0.274,61.26,125.86,0.96,0.13,795,2.3000000000000003,286,0.6000000000000001
+2023,9,1,23,0,17.1,1.67,0.07200000000000001,0.63,0,0,0,0,5,9.8,0,0,0,0,0.274,62.08,128.55,0.96,0.13,795,2.3000000000000003,280,0.5
+2023,9,1,23,30,16.900000000000002,1.67,0.07200000000000001,0.63,0,0,0,0,5,9.8,0,0,0,0,0.274,62.95,130.42000000000002,0.96,0.13,796,2.3000000000000003,254,0.5
+2023,9,2,0,0,16.7,1.67,0.073,0.63,0,0,0,0,8,9.9,0,0,0,0,0.275,64.12,131.37,0.96,0.13,796,2.3000000000000003,227,0.5
+2023,9,2,0,30,16.400000000000002,1.67,0.073,0.63,0,0,0,0,8,9.9,0,0,0,0,0.275,65.35,131.35,0.96,0.13,796,2.3000000000000003,221,0.6000000000000001
+2023,9,2,1,0,16.1,1.6600000000000001,0.075,0.63,0,0,0,0,3,9.9,0,0,0,0,0.276,66.81,130.35,0.96,0.13,796,2.4000000000000004,214,0.8
+2023,9,2,1,30,15.700000000000001,1.6600000000000001,0.075,0.63,0,0,0,0,0,9.9,0,0,0,0,0.276,68.53,128.44,0.97,0.13,796,2.4000000000000004,213,0.8
+2023,9,2,2,0,15.200000000000001,1.6300000000000001,0.078,0.63,0,0,0,0,7,9.9,0,0,0,0,0.276,70.54,125.71000000000001,0.97,0.13,796,2.4000000000000004,212,0.9
+2023,9,2,2,30,15,1.6300000000000001,0.078,0.63,0,0,0,0,8,9.9,0,0,0,0,0.277,71.45,122.29,0.97,0.13,796,2.5,208,0.9
+2023,9,2,3,0,14.8,1.61,0.079,0.63,0,0,0,0,7,9.8,0,0,0,0,0.277,72.15,118.3,0.97,0.13,796,2.5,204,0.9
+2023,9,2,3,30,14.600000000000001,1.61,0.079,0.63,0,0,0,0,7,9.8,0,0,0,0,0.277,73.08,113.84,0.97,0.13,796,2.5,203,0.9
+2023,9,2,4,0,14.4,1.6,0.077,0.63,0,0,0,0,7,9.8,0,0,29,0,0.277,73.76,109.02,0.97,0.13,796,2.5,201,0.9
+2023,9,2,4,30,14.3,1.6,0.077,0.63,0,0,0,0,5,9.8,0,0,0,0,0.277,74.24,103.91,0.96,0.13,796,2.5,199,0.9
+2023,9,2,5,0,14.100000000000001,1.6,0.07200000000000001,0.63,0,0,0,0,3,9.8,0,0,0,0,0.278,75.11,98.59,0.96,0.13,796,2.5,197,1
+2023,9,2,5,30,15,1.6,0.07200000000000001,0.63,0,0,0,1,4,9.8,0,0,14,0,0.278,70.97,93.11,0.96,0.13,797,2.5,194,1.1
+2023,9,2,6,0,15.9,1.6,0.065,0.63,19,192,28,7,4,9.8,8,0,100,8,0.278,67.15,87.32000000000001,0.96,0.13,797,2.4000000000000004,192,1.3
+2023,9,2,6,30,17.3,1.6,0.065,0.63,37,472,105,3,4,9.8,21,0,43,21,0.278,61.45,81.77,0.96,0.13,797,2.4000000000000004,195,2.1
+2023,9,2,7,0,18.7,1.62,0.057,0.63,48,632,200,0,7,9.4,64,8,4,66,0.278,54.800000000000004,76.11,0.96,0.13,797,2.4000000000000004,199,2.9000000000000004
+2023,9,2,7,30,19.700000000000003,1.62,0.057,0.63,57,730,301,0,7,9.4,133,67,0,155,0.278,51.5,70.44,0.96,0.13,797,2.3000000000000003,203,3.3000000000000003
+2023,9,2,8,0,20.8,1.6300000000000001,0.052000000000000005,0.63,61,799,401,0,4,8.8,187,55,0,210,0.278,46.2,64.83,0.96,0.13,797,2.3000000000000003,206,3.6
+2023,9,2,8,30,21.700000000000003,1.6300000000000001,0.052000000000000005,0.63,66,846,498,0,0,8.8,176,511,0,437,0.278,43.730000000000004,59.32,0.96,0.13,797,2.3000000000000003,208,3.9000000000000004
+2023,9,2,9,0,22.6,1.6300000000000001,0.05,0.63,70,880,587,0,0,8.4,136,704,0,550,0.277,40.15,53.99,0.96,0.13,797,2.3000000000000003,210,4.2
+2023,9,2,9,30,23.400000000000002,1.6300000000000001,0.05,0.63,73,906,668,0,0,8.4,82,886,0,664,0.276,38.26,48.92,0.96,0.13,797,2.3000000000000003,212,4.4
+2023,9,2,10,0,24.3,1.62,0.047,0.63,74,926,738,0,3,7.9,250,540,0,637,0.275,35.06,44.22,0.96,0.13,797,2.3000000000000003,214,4.7
+2023,9,2,10,30,24.900000000000002,1.62,0.047,0.63,75,942,796,0,0,7.9,118,835,0,757,0.275,33.83,40.06,0.96,0.13,797,2.4000000000000004,216,4.800000000000001
+2023,9,2,11,0,25.5,1.76,0.038,0.63,73,956,840,0,3,7.6000000000000005,230,583,0,698,0.274,32.1,36.63,0.96,0.13,797,2.4000000000000004,218,5
+2023,9,2,11,30,26,1.76,0.038,0.63,74,962,870,0,0,7.6000000000000005,182,734,0,789,0.273,31.13,34.160000000000004,0.96,0.13,796,2.4000000000000004,220,5.1000000000000005
+2023,9,2,12,0,26.400000000000002,1.73,0.038,0.63,74,966,885,0,3,7.6000000000000005,293,390,0,621,0.273,30.37,32.88,0.96,0.13,796,2.4000000000000004,221,5.2
+2023,9,2,12,30,26.6,1.73,0.038,0.63,74,965,884,0,3,7.6000000000000005,347,244,0,552,0.272,30.02,32.94,0.9500000000000001,0.13,796,2.4000000000000004,223,5.2
+2023,9,2,13,0,26.700000000000003,1.68,0.039,0.63,74,961,868,0,3,7.800000000000001,350,95,0,428,0.272,30.16,34.33,0.9500000000000001,0.13,796,2.4000000000000004,225,5.2
+2023,9,2,13,30,26.700000000000003,1.68,0.039,0.63,74,954,837,0,3,7.7,282,252,0,484,0.272,30.12,36.89,0.9500000000000001,0.13,795,2.4000000000000004,227,5.1000000000000005
+2023,9,2,14,0,26.6,1.6300000000000001,0.042,0.63,73,943,791,0,3,8,258,281,0,472,0.271,30.76,40.4,0.9500000000000001,0.13,795,2.4000000000000004,229,5.1000000000000005
+2023,9,2,14,30,26.3,1.6300000000000001,0.042,0.63,72,927,732,0,0,8,168,508,0,530,0.271,31.310000000000002,44.61,0.9500000000000001,0.13,795,2.4000000000000004,230,5
+2023,9,2,15,0,26,1.57,0.046,0.63,70,906,660,0,3,8.200000000000001,262,219,0,405,0.271,32.36,49.35,0.9500000000000001,0.13,795,2.4000000000000004,230,4.9
+2023,9,2,15,30,25.5,1.57,0.046,0.63,68,879,579,0,3,8.200000000000001,253,226,0,384,0.271,33.33,54.45,0.9500000000000001,0.13,795,2.4000000000000004,231,4.800000000000001
+2023,9,2,16,0,25,1.54,0.048,0.63,65,842,488,0,3,8.4,181,203,0,283,0.271,34.86,59.81,0.9500000000000001,0.13,795,2.5,231,4.6000000000000005
+2023,9,2,16,30,24.400000000000002,1.54,0.048,0.63,59,795,391,0,3,8.4,169,374,7,325,0.271,36.13,65.33,0.9500000000000001,0.13,795,2.5,232,4.4
+2023,9,2,17,0,23.700000000000003,1.52,0.051000000000000004,0.63,54,727,291,0,3,8.700000000000001,134,228,0,208,0.271,38.300000000000004,70.96000000000001,0.9500000000000001,0.13,795,2.5,232,4.1000000000000005
+2023,9,2,17,30,22.8,1.52,0.051000000000000004,0.63,46,629,191,0,0,8.700000000000001,46,629,0,191,0.271,40.43,76.64,0.9500000000000001,0.13,795,2.5,233,3.4000000000000004
+2023,9,2,18,0,21.8,1.52,0.051000000000000004,0.63,34,471,97,0,0,9,34,471,0,97,0.271,44.1,82.3,0.9500000000000001,0.13,795,2.5,235,2.6
+2023,9,2,18,30,21,1.52,0.051000000000000004,0.63,17,187,24,0,0,9.1,17,187,0,24,0.272,46.37,87.85000000000001,0.9500000000000001,0.13,796,2.5,237,2.1
+2023,9,2,19,0,20.1,1.53,0.051000000000000004,0.63,0,0,0,0,0,9.3,0,0,0,0,0.272,49.94,93.66,0.9500000000000001,0.13,796,2.5,239,1.6
+2023,9,2,19,30,19.6,1.53,0.051000000000000004,0.63,0,0,0,0,0,9.3,0,0,0,0,0.272,51.5,99.15,0.9500000000000001,0.13,796,2.5,239,1.6
+2023,9,2,20,0,19.200000000000003,1.54,0.05,0.63,0,0,0,0,0,9.5,0,0,0,0,0.271,53.410000000000004,104.48,0.9500000000000001,0.13,796,2.5,240,1.5
+2023,9,2,20,30,18.7,1.54,0.05,0.63,0,0,0,0,0,9.5,0,0,0,0,0.271,55.1,109.58,0.9500000000000001,0.13,796,2.5,240,1.4000000000000001
+2023,9,2,21,0,18.2,1.57,0.048,0.63,0,0,0,0,0,9.600000000000001,0,0,0,0,0.271,57.39,114.4,0.9500000000000001,0.13,796,2.4000000000000004,239,1.4000000000000001
+2023,9,2,21,30,17.7,1.57,0.048,0.63,0,0,0,0,0,9.600000000000001,0,0,43,0,0.271,59.22,118.85000000000001,0.9500000000000001,0.13,796,2.4000000000000004,238,1.3
+2023,9,2,22,0,17.3,1.59,0.046,0.63,0,0,0,1,0,9.700000000000001,0,0,100,0,0.271,61.14,122.83,0.9500000000000001,0.13,796,2.4000000000000004,237,1.2000000000000002
+2023,9,2,22,30,16.900000000000002,1.59,0.046,0.63,0,0,0,0,0,9.700000000000001,0,0,14,0,0.271,62.7,126.23,0.9500000000000001,0.13,796,2.3000000000000003,235,1.2000000000000002
+2023,9,2,23,0,16.400000000000002,1.6,0.045,0.63,0,0,0,0,0,9.8,0,0,0,0,0.271,65.01,128.93,0.9500000000000001,0.13,796,2.3000000000000003,233,1.1
+2023,9,2,23,30,16.1,1.6,0.045,0.63,0,0,0,0,0,9.8,0,0,0,0,0.271,66.26,130.8,0.9500000000000001,0.13,796,2.3000000000000003,230,1.1
+2023,9,3,0,0,15.700000000000001,1.6,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,68.25,131.74,0.9500000000000001,0.13,796,2.3000000000000003,226,1
+2023,9,3,0,30,15.4,1.6,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,69.57000000000001,131.71,0.9500000000000001,0.13,796,2.3000000000000003,221,1
+2023,9,3,1,0,15.100000000000001,1.61,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,71.26,130.69,0.9500000000000001,0.13,796,2.3000000000000003,216,0.9
+2023,9,3,1,30,14.9,1.61,0.044,0.63,0,0,0,0,0,9.9,0,0,0,0,0.271,72.18,128.76,0.9500000000000001,0.13,796,2.3000000000000003,211,0.9
+2023,9,3,2,0,14.700000000000001,1.61,0.045,0.63,0,0,0,0,0,10,0,0,0,0,0.272,73.45,126.01,0.9500000000000001,0.13,796,2.3000000000000003,206,0.9
+2023,9,3,2,30,14.600000000000001,1.61,0.045,0.63,0,0,0,0,0,10,0,0,0,0,0.272,73.83,122.57000000000001,0.9500000000000001,0.13,795,2.3000000000000003,201,0.9
+2023,9,3,3,0,14.4,1.61,0.046,0.63,0,0,0,0,0,10,0,0,0,0,0.272,75.08,118.55,0.9500000000000001,0.13,795,2.4000000000000004,197,0.9
+2023,9,3,3,30,14.200000000000001,1.61,0.046,0.63,0,0,0,0,0,10,0,0,0,0,0.273,76.06,114.07000000000001,0.96,0.13,795,2.4000000000000004,194,0.9
+2023,9,3,4,0,14.100000000000001,1.61,0.048,0.63,0,0,0,0,4,10.100000000000001,0,0,0,0,0.273,76.81,109.24000000000001,0.96,0.13,795,2.4000000000000004,191,1
+2023,9,3,4,30,14,1.61,0.048,0.63,0,0,0,0,4,10.100000000000001,0,0,0,0,0.274,77.3,104.12,0.96,0.13,795,2.5,190,1
+2023,9,3,5,0,13.8,1.6,0.05,0.63,0,0,0,0,4,10.100000000000001,0,0,0,0,0.274,78.57000000000001,98.78,0.96,0.13,795,2.5,188,1
+2023,9,3,5,30,14.8,1.6,0.05,0.63,0,0,0,0,4,10.100000000000001,0,0,0,0,0.274,73.66,93.29,0.96,0.13,795,2.5,190,1.2000000000000002
+2023,9,3,6,0,15.8,1.6,0.052000000000000005,0.63,18,202,27,6,4,10.200000000000001,10,0,86,10,0.275,69.53,87.49,0.96,0.13,795,2.6,192,1.5
+2023,9,3,6,30,17.3,1.6,0.052000000000000005,0.63,36,481,103,3,4,10.200000000000001,53,3,43,53,0.276,63.230000000000004,81.94,0.96,0.13,795,2.6,196,2
+2023,9,3,7,0,18.8,1.58,0.054,0.63,47,630,196,0,4,10.5,86,22,0,91,0.276,58.550000000000004,76.28,0.96,0.13,795,2.6,201,2.6
+2023,9,3,7,30,19.6,1.58,0.054,0.63,56,721,295,0,8,10.5,136,109,0,172,0.277,55.65,70.61,0.97,0.13,794,2.6,203,3
+2023,9,3,8,0,20.5,1.56,0.06,0.63,63,780,393,0,3,10.9,168,225,0,263,0.277,54.120000000000005,65.01,0.97,0.13,794,2.7,206,3.3000000000000003
+2023,9,3,8,30,20.700000000000003,1.56,0.06,0.63,71,821,488,1,3,10.9,184,236,11,304,0.277,53.46,59.51,0.97,0.13,794,2.7,206,3.6
+2023,9,3,9,0,20.900000000000002,1.52,0.07200000000000001,0.63,78,849,575,3,8,11.3,218,98,39,275,0.277,54.370000000000005,54.19,0.97,0.13,794,2.7,206,3.9000000000000004
+2023,9,3,9,30,21,1.52,0.07200000000000001,0.63,82,874,654,6,8,11.3,282,143,86,376,0.277,54.04,49.14,0.97,0.13,794,2.7,207,4.3
+2023,9,3,10,0,21.1,1.51,0.073,0.63,86,893,723,1,5,11.600000000000001,200,53,14,238,0.277,54.63,44.47,0.97,0.13,794,2.8000000000000003,207,4.6000000000000005
+2023,9,3,10,30,21.3,1.51,0.073,0.63,86,912,781,0,8,11.600000000000001,118,5,0,122,0.276,53.9,40.33,0.97,0.13,793,2.8000000000000003,210,4.9
+2023,9,3,11,0,21.5,1.58,0.062,0.63,85,927,826,0,8,11.700000000000001,286,286,0,515,0.276,53.71,36.93,0.97,0.13,793,2.8000000000000003,212,5.2
+2023,9,3,11,30,21.8,1.58,0.062,0.63,85,936,856,0,3,11.700000000000001,329,397,0,656,0.276,52.74,34.49,0.97,0.13,793,2.7,215,5.300000000000001
+2023,9,3,12,0,22,1.6,0.058,0.63,84,941,871,0,0,11.600000000000001,92,930,0,870,0.276,51.82,33.24,0.97,0.13,792,2.7,217,5.4
+2023,9,3,12,30,22.5,1.6,0.058,0.63,83,944,872,0,0,11.600000000000001,138,841,0,841,0.275,50.28,33.31,0.97,0.13,792,2.7,217,5.5
+2023,9,3,13,0,23,1.61,0.051000000000000004,0.63,80,946,858,0,3,11.3,404,237,0,599,0.275,47.7,34.7,0.97,0.13,791,2.6,217,5.6000000000000005
+2023,9,3,13,30,23.400000000000002,1.61,0.051000000000000004,0.63,77,943,828,0,4,11.3,321,49,0,360,0.275,46.56,37.26,0.97,0.13,791,2.6,216,5.7
+2023,9,3,14,0,23.900000000000002,1.61,0.044,0.63,74,938,785,0,3,10.600000000000001,238,46,0,273,0.275,43.06,40.75,0.97,0.13,790,2.5,215,5.800000000000001
+2023,9,3,14,30,24,1.61,0.044,0.63,70,928,727,0,3,10.600000000000001,155,469,0,487,0.276,42.800000000000004,44.95,0.96,0.13,790,2.4000000000000004,214,5.800000000000001
+2023,9,3,15,0,24.200000000000003,1.6,0.04,0.63,67,913,658,0,0,9.8,67,913,0,658,0.276,40.25,49.68,0.96,0.13,790,2.3000000000000003,214,5.800000000000001
+2023,9,3,15,30,24.1,1.6,0.04,0.63,64,891,578,0,0,9.8,64,891,0,578,0.277,40.49,54.77,0.96,0.13,790,2.3000000000000003,214,5.7
+2023,9,3,16,0,24,1.6300000000000001,0.038,0.63,60,861,489,0,0,9,60,861,0,489,0.278,38.550000000000004,60.11,0.96,0.13,789,2.2,214,5.6000000000000005
+2023,9,3,16,30,23.700000000000003,1.6300000000000001,0.038,0.63,54,819,392,0,0,9,75,742,0,381,0.278,39.25,65.63,0.9500000000000001,0.13,789,2.1,214,5.4
+2023,9,3,17,0,23.3,1.68,0.035,0.63,48,760,292,0,0,8.4,66,683,0,285,0.279,38.67,71.26,0.9500000000000001,0.13,789,2.1,215,5.1000000000000005
+2023,9,3,17,30,22,1.68,0.035,0.63,41,666,192,0,0,8.4,41,666,0,192,0.279,41.83,76.93,0.9500000000000001,0.13,789,2,213,3.9000000000000004
+2023,9,3,18,0,20.6,1.71,0.034,0.63,31,512,97,0,0,8.700000000000001,33,481,7,95,0.279,46.37,82.60000000000001,0.9500000000000001,0.13,789,2,212,2.7
+2023,9,3,18,30,19.5,1.71,0.034,0.63,15,187,21,0,0,8.700000000000001,14,172,4,20,0.28,49.620000000000005,88.13,0.9500000000000001,0.13,789,2,210,2.3000000000000003
+2023,9,3,19,0,18.400000000000002,1.72,0.033,0.63,0,0,0,0,0,8.9,0,0,0,0,0.28,53.94,93.97,0.9500000000000001,0.13,789,1.9000000000000001,208,2
+2023,9,3,19,30,18,1.72,0.033,0.63,0,0,0,0,0,8.9,0,0,0,0,0.281,55.31,99.46000000000001,0.9500000000000001,0.13,789,1.9000000000000001,207,2.1
+2023,9,3,20,0,17.6,1.71,0.032,0.63,0,0,0,0,0,9,0,0,0,0,0.28200000000000003,56.99,104.79,0.9400000000000001,0.13,789,1.9000000000000001,206,2.1
+2023,9,3,20,30,17.2,1.71,0.032,0.63,0,0,0,0,0,9,0,0,0,0,0.28200000000000003,58.44,109.91,0.9400000000000001,0.13,789,1.9000000000000001,207,2.2
+2023,9,3,21,0,16.8,1.68,0.032,0.63,0,0,0,0,0,9.1,0,0,0,0,0.28300000000000003,60.29,114.73,0.9400000000000001,0.13,789,1.9000000000000001,207,2.2
+2023,9,3,21,30,16.3,1.68,0.032,0.63,0,0,0,1,0,9.1,0,0,57,0,0.28400000000000003,62.230000000000004,119.19,0.9400000000000001,0.13,789,1.9000000000000001,208,2.1
+2023,9,3,22,0,15.9,1.6600000000000001,0.032,0.63,0,0,0,1,0,9.1,0,0,100,0,0.28500000000000003,64.01,123.19,0.93,0.13,789,1.9000000000000001,209,2
+2023,9,3,22,30,15.4,1.6600000000000001,0.032,0.63,0,0,0,0,0,9.1,0,0,14,0,0.28500000000000003,66,126.60000000000001,0.93,0.13,788,1.9000000000000001,209,1.9000000000000001
+2023,9,3,23,0,15,1.62,0.035,0.63,0,0,0,0,0,9.1,0,0,0,0,0.28600000000000003,67.87,129.3,0.9400000000000001,0.13,788,1.9000000000000001,210,1.7000000000000002
+2023,9,3,23,30,14.700000000000001,1.62,0.035,0.63,0,0,0,0,0,9.1,0,0,0,0,0.28700000000000003,69.19,131.17000000000002,0.9400000000000001,0.13,788,1.9000000000000001,212,1.6
+2023,9,4,0,0,14.4,1.58,0.04,0.63,0,0,0,0,0,9.1,0,0,0,0,0.28700000000000003,70.56,132.11,0.9400000000000001,0.13,788,1.9000000000000001,215,1.6
+2023,9,4,0,30,14.100000000000001,1.58,0.04,0.63,0,0,0,0,0,9.1,0,0,0,0,0.28800000000000003,71.85000000000001,132.07,0.9400000000000001,0.13,787,1.8,215,1.4000000000000001
+2023,9,4,1,0,13.8,1.58,0.041,0.63,0,0,0,0,3,9.1,0,0,0,0,0.289,73.16,131.04,0.9400000000000001,0.13,787,1.8,215,1.3
+2023,9,4,1,30,13.5,1.58,0.041,0.63,0,0,0,0,0,9.1,0,0,0,0,0.289,74.59,129.08,0.9400000000000001,0.13,787,1.8,209,1.2000000000000002
+2023,9,4,2,0,13.100000000000001,1.59,0.041,0.63,0,0,0,0,3,9,0,0,0,0,0.29,76.11,126.31,0.9400000000000001,0.13,787,1.8,202,1.2000000000000002
+2023,9,4,2,30,12.9,1.59,0.041,0.63,0,0,0,0,5,9,0,0,0,0,0.291,77.01,122.84,0.9500000000000001,0.13,786,1.8,203,1.3
+2023,9,4,3,0,12.700000000000001,1.54,0.049,0.63,0,0,0,0,4,8.9,0,0,0,0,0.292,77.57000000000001,118.8,0.9500000000000001,0.13,786,1.8,204,1.3
+2023,9,4,3,30,12.9,1.54,0.049,0.63,0,0,0,0,0,8.9,0,0,0,0,0.293,76.57000000000001,114.31,0.9500000000000001,0.13,786,1.8,204,1.5
+2023,9,4,4,0,13.100000000000001,1.52,0.053,0.63,0,0,0,0,5,8.8,0,0,0,0,0.295,75.28,109.45,0.9500000000000001,0.13,786,1.8,205,1.7000000000000002
+2023,9,4,4,30,13,1.52,0.053,0.63,0,0,0,0,0,8.8,0,0,0,0,0.296,75.77,104.32000000000001,0.9400000000000001,0.13,786,1.8,204,1.8
+2023,9,4,5,0,12.9,1.54,0.045,0.63,0,0,0,0,0,8.6,0,0,0,0,0.297,75.31,98.98,0.9400000000000001,0.13,786,1.8,203,2
+2023,9,4,5,30,13.5,1.54,0.045,0.63,0,0,0,0,4,8.6,0,0,0,0,0.298,72.42,93.48,0.9400000000000001,0.13,786,1.8,203,2.7
+2023,9,4,6,0,14.100000000000001,1.51,0.041,0.63,18,221,27,4,3,8.6,15,111,57,20,0.299,69.33,87.66,0.9400000000000001,0.13,785,1.8,204,3.4000000000000004
+2023,9,4,6,30,15.3,1.51,0.041,0.63,34,513,104,0,0,8.6,34,513,0,104,0.3,64.18,82.11,0.9400000000000001,0.13,785,1.8,212,4.5
+2023,9,4,7,0,16.400000000000002,1.45,0.045,0.63,45,662,200,0,0,8.6,45,662,0,200,0.301,60.04,76.45,0.9400000000000001,0.13,786,1.8,220,5.6000000000000005
+2023,9,4,7,30,16.900000000000002,1.45,0.045,0.63,54,752,301,0,0,8.6,61,714,0,296,0.302,58.17,70.79,0.9500000000000001,0.13,786,1.8,228,6.5
+2023,9,4,8,0,17.400000000000002,1.41,0.053,0.63,61,810,401,0,0,8,110,485,0,314,0.303,54.02,65.19,0.9500000000000001,0.13,786,1.8,235,7.4
+2023,9,4,8,30,17.400000000000002,1.41,0.053,0.63,67,856,499,0,5,8,155,69,0,190,0.305,54.02,59.7,0.9500000000000001,0.13,786,1.7000000000000002,237,7.300000000000001
+2023,9,4,9,0,17.400000000000002,1.42,0.056,0.63,72,889,590,0,5,6.300000000000001,101,0,0,101,0.307,48.14,54.4,0.9500000000000001,0.13,787,1.7000000000000002,238,7.2
+2023,9,4,9,30,17.8,1.42,0.056,0.63,75,920,674,0,0,6.300000000000001,130,670,0,566,0.307,46.94,49.36,0.9400000000000001,0.13,787,1.6,237,7.1000000000000005
+2023,9,4,10,0,18.2,1.46,0.049,0.63,74,945,746,0,0,4.6000000000000005,74,945,0,746,0.308,40.63,44.71,0.9400000000000001,0.13,787,1.5,237,6.9
+2023,9,4,10,30,18.8,1.46,0.049,0.63,76,963,807,0,0,4.6000000000000005,76,963,0,807,0.307,39.14,40.61,0.9400000000000001,0.13,787,1.5,235,7
+2023,9,4,11,0,19.3,1.46,0.043000000000000003,0.63,75,977,853,0,0,3.4000000000000004,177,772,0,792,0.305,34.9,37.230000000000004,0.9400000000000001,0.13,787,1.4000000000000001,233,7
+2023,9,4,11,30,19.700000000000003,1.46,0.043000000000000003,0.63,76,984,884,0,0,3.4000000000000004,153,840,0,843,0.303,34.05,34.83,0.93,0.13,787,1.4000000000000001,231,7
+2023,9,4,12,0,20.1,1.46,0.042,0.63,76,988,899,0,0,2.5,101,942,0,886,0.302,31.03,33.6,0.93,0.13,787,1.4000000000000001,230,7
+2023,9,4,12,30,20.400000000000002,1.46,0.042,0.63,77,987,898,0,3,2.5,286,584,0,772,0.301,30.46,33.69,0.93,0.13,787,1.4000000000000001,231,7
+2023,9,4,13,0,20.6,1.42,0.043000000000000003,0.63,76,984,881,0,0,2,224,672,0,774,0.301,29.080000000000002,35.08,0.93,0.13,787,1.4000000000000001,232,6.9
+2023,9,4,13,30,20.700000000000003,1.42,0.043000000000000003,0.63,74,980,850,0,0,2,84,961,0,845,0.301,28.900000000000002,37.63,0.93,0.13,787,1.4000000000000001,234,6.800000000000001
+2023,9,4,14,0,20.8,1.43,0.035,0.63,69,974,803,0,0,1.9000000000000001,108,903,0,788,0.302,28.53,41.11,0.93,0.13,787,1.4000000000000001,236,6.6000000000000005
+2023,9,4,14,30,20.6,1.43,0.035,0.63,67,960,742,0,0,1.9000000000000001,194,686,0,677,0.302,28.88,45.300000000000004,0.93,0.13,787,1.4000000000000001,239,6.4
+2023,9,4,15,0,20.5,1.42,0.034,0.63,64,941,669,0,0,2.2,93,867,0,650,0.303,29.64,50.01,0.93,0.13,787,1.5,242,6.1000000000000005
+2023,9,4,15,30,20.1,1.42,0.034,0.63,62,914,585,0,0,2.2,87,848,0,572,0.304,30.38,55.09,0.92,0.13,787,1.5,247,5.800000000000001
+2023,9,4,16,0,19.700000000000003,1.3800000000000001,0.038,0.63,59,877,492,0,0,2.7,105,721,0,461,0.304,32.45,60.43,0.92,0.13,788,1.5,251,5.4
+2023,9,4,16,30,19.1,1.3800000000000001,0.038,0.63,55,826,392,0,3,2.7,153,444,0,334,0.305,33.68,65.94,0.92,0.13,788,1.5,259,4.9
+2023,9,4,17,0,18.5,1.37,0.044,0.63,51,754,289,0,0,3.3000000000000003,65,681,0,280,0.306,36.34,71.56,0.92,0.14,788,1.5,268,4.4
+2023,9,4,17,30,17.3,1.37,0.044,0.63,44,648,187,0,0,3.3000000000000003,44,648,0,187,0.307,39.18,77.23,0.92,0.14,788,1.5,279,3.3000000000000003
+2023,9,4,18,0,16.1,1.3800000000000001,0.049,0.63,32,474,91,0,0,4.4,35,447,7,90,0.308,45.910000000000004,82.9,0.92,0.14,788,1.5,291,2.3000000000000003
+2023,9,4,18,30,15.100000000000001,1.3800000000000001,0.049,0.63,14,157,18,4,4,4.5,12,58,54,14,0.309,49,88.41,0.92,0.14,789,1.5,306,2.1
+2023,9,4,19,0,14.100000000000001,1.42,0.05,0.63,0,0,0,0,4,5.2,0,0,0,0,0.309,55.08,94.28,0.91,0.14,789,1.5,321,1.9000000000000001
+2023,9,4,19,30,13.5,1.42,0.05,0.63,0,0,0,0,0,5.2,0,0,0,0,0.309,57.33,99.77,0.91,0.14,790,1.5,326,2.1
+2023,9,4,20,0,13,1.47,0.049,0.63,0,0,0,0,0,5.5,0,0,0,0,0.31,60.49,105.11,0.91,0.14,791,1.5,330,2.3000000000000003
+2023,9,4,20,30,12.4,1.47,0.049,0.63,0,0,0,0,0,5.5,0,0,0,0,0.309,62.910000000000004,110.24000000000001,0.91,0.14,791,1.5,331,2.2
+2023,9,4,21,0,11.8,1.49,0.045,0.63,0,0,0,0,0,5.9,0,0,0,0,0.309,67.07000000000001,115.07000000000001,0.91,0.14,791,1.5,332,2.2
+2023,9,4,21,30,11.3,1.49,0.045,0.63,0,0,0,1,0,5.9,0,0,57,0,0.308,69.31,119.54,0.91,0.14,791,1.5,332,2
+2023,9,4,22,0,10.8,1.48,0.04,0.63,0,0,0,1,4,6.1000000000000005,0,0,100,0,0.308,72.68,123.55,0.91,0.14,792,1.5,332,1.9000000000000001
+2023,9,4,22,30,10.4,1.48,0.04,0.63,0,0,0,0,4,6.1000000000000005,0,0,14,0,0.307,74.63,126.97,0.91,0.14,792,1.4000000000000001,334,1.6
+2023,9,4,23,0,10,1.46,0.036000000000000004,0.63,0,0,0,0,0,6.2,0,0,0,0,0.307,77.27,129.68,0.91,0.14,792,1.4000000000000001,337,1.4000000000000001
+2023,9,4,23,30,9.5,1.46,0.036000000000000004,0.63,0,0,0,0,0,6.2,0,0,0,0,0.306,79.9,131.55,0.91,0.14,792,1.4000000000000001,340,1.2000000000000002
+2023,9,5,0,0,9.1,1.44,0.034,0.63,0,0,0,0,0,6.4,0,0,0,0,0.305,83.06,132.49,0.91,0.14,792,1.4000000000000001,344,1.1
+2023,9,5,0,30,8.700000000000001,1.44,0.034,0.63,0,0,0,0,0,6.4,0,0,0,0,0.304,85.33,132.43,0.91,0.14,792,1.4000000000000001,349,1
+2023,9,5,1,0,8.4,1.43,0.032,0.63,0,0,0,0,0,6.5,0,0,0,0,0.303,87.96000000000001,131.38,0.91,0.14,792,1.4000000000000001,355,0.8
+2023,9,5,1,30,8,1.43,0.032,0.63,0,0,0,0,0,6.5,0,0,0,0,0.303,90.37,129.41,0.91,0.14,792,1.4000000000000001,185,0.8
+2023,9,5,2,0,7.7,1.43,0.032,0.63,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.302,92.86,126.61,0.91,0.14,792,1.4000000000000001,16,0.7000000000000001
+2023,9,5,2,30,7.4,1.43,0.032,0.63,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.301,94.78,123.12,0.91,0.14,792,1.4000000000000001,28,0.7000000000000001
+2023,9,5,3,0,7.1000000000000005,1.44,0.032,0.63,0,0,0,0,0,6.7,0,0,0,0,0.301,97.19,119.06,0.91,0.14,792,1.4000000000000001,41,0.7000000000000001
+2023,9,5,3,30,6.9,1.44,0.032,0.63,0,0,0,0,0,6.7,0,0,0,0,0.3,98.53,114.54,0.92,0.14,792,1.4000000000000001,50,0.7000000000000001
+2023,9,5,4,0,6.6000000000000005,1.45,0.035,0.63,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.3,100,109.67,0.92,0.14,793,1.4000000000000001,59,0.8
+2023,9,5,4,30,6.4,1.45,0.035,0.63,0,0,0,0,0,6.4,0,0,0,0,0.299,100,104.52,0.93,0.14,793,1.4000000000000001,64,0.8
+2023,9,5,5,0,6.300000000000001,1.47,0.042,0.63,0,0,0,0,0,6.300000000000001,0,0,0,0,0.299,100,99.17,0.93,0.14,793,1.3,70,0.8
+2023,9,5,5,30,7,1.47,0.042,0.63,0,0,0,0,0,6.7,0,0,0,0,0.299,98.2,93.66,0.9400000000000001,0.14,793,1.3,70,1.4000000000000001
+2023,9,5,6,0,7.800000000000001,1.48,0.054,0.63,17,199,25,0,0,6.7,17,199,0,25,0.298,93.02,87.82000000000001,0.9500000000000001,0.14,793,1.3,71,2
+2023,9,5,6,30,8.9,1.48,0.054,0.63,36,491,102,0,0,6.800000000000001,36,491,0,102,0.298,86.45,82.28,0.9500000000000001,0.14,794,1.3,73,2.4000000000000004
+2023,9,5,7,0,9.9,1.52,0.059000000000000004,0.63,48,648,198,0,0,6.5,48,648,0,198,0.297,79.21000000000001,76.62,0.9500000000000001,0.14,794,1.3,74,2.8000000000000003
+2023,9,5,7,30,11.200000000000001,1.52,0.059000000000000004,0.63,57,752,302,0,0,6.5,57,752,0,302,0.296,72.66,70.97,0.9500000000000001,0.14,794,1.3,74,2.6
+2023,9,5,8,0,12.5,1.57,0.053,0.63,62,823,405,0,0,5.800000000000001,62,823,0,405,0.295,63.74,65.37,0.9500000000000001,0.14,794,1.3,75,2.5
+2023,9,5,8,30,13.9,1.57,0.053,0.63,66,875,505,0,0,5.800000000000001,66,875,0,505,0.294,58.19,59.89,0.9400000000000001,0.14,794,1.2000000000000002,75,2.1
+2023,9,5,9,0,15.200000000000001,1.62,0.044,0.63,68,915,598,0,0,5,68,915,0,598,0.293,50.480000000000004,54.6,0.9400000000000001,0.14,794,1.2000000000000002,75,1.7000000000000002
+2023,9,5,9,30,16.400000000000002,1.62,0.044,0.63,69,943,680,0,0,5,116,785,0,625,0.292,46.77,49.59,0.93,0.14,794,1.2000000000000002,81,1.3
+2023,9,5,10,0,17.7,1.6300000000000001,0.038,0.63,70,965,753,0,0,3.9000000000000004,105,880,0,728,0.291,40,44.96,0.93,0.14,794,1.2000000000000002,86,0.9
+2023,9,5,10,30,18.7,1.6300000000000001,0.038,0.63,69,984,813,0,0,3.9000000000000004,107,900,0,787,0.29,37.57,40.88,0.93,0.14,794,1.2000000000000002,128,0.7000000000000001
+2023,9,5,11,0,19.8,1.51,0.028,0.63,67,999,859,0,0,2.9000000000000004,92,951,0,846,0.28800000000000003,32.61,37.54,0.93,0.14,794,1.1,171,0.6000000000000001
+2023,9,5,11,30,20.700000000000003,1.51,0.028,0.63,68,1006,890,0,0,2.9000000000000004,105,941,0,874,0.28700000000000003,30.810000000000002,35.160000000000004,0.93,0.14,793,1.1,190,0.9
+2023,9,5,12,0,21.5,1.51,0.025,0.63,67,1012,906,0,0,2.1,67,1012,0,906,0.28600000000000003,27.69,33.96,0.93,0.14,793,1.1,208,1.3
+2023,9,5,12,30,22.1,1.51,0.025,0.63,66,1014,906,0,0,2.1,66,1014,0,906,0.28500000000000003,26.7,34.06,0.93,0.14,793,1.1,213,1.7000000000000002
+2023,9,5,13,0,22.700000000000003,1.5,0.023,0.63,64,1013,889,0,0,1.3,64,1013,0,889,0.28400000000000003,24.37,35.46,0.93,0.14,793,1,218,2.2
+2023,9,5,13,30,23,1.5,0.023,0.63,64,1007,858,0,0,1.3,64,1007,0,858,0.28400000000000003,23.91,38,0.92,0.14,792,1,221,2.5
+2023,9,5,14,0,23.400000000000002,1.51,0.024,0.63,63,999,812,0,0,0.5,63,999,0,812,0.28300000000000003,22.09,41.47,0.92,0.14,792,1,225,2.8000000000000003
+2023,9,5,14,30,23.400000000000002,1.51,0.024,0.63,62,987,752,0,0,0.5,62,987,0,752,0.28300000000000003,22.09,45.64,0.92,0.14,792,1,227,2.9000000000000004
+2023,9,5,15,0,23.5,1.43,0.023,0.63,59,970,678,0,0,-0.2,59,970,0,678,0.28200000000000003,20.89,50.34,0.92,0.14,792,1,229,3.1
+2023,9,5,15,30,23.200000000000003,1.43,0.023,0.63,56,947,594,0,0,-0.2,56,947,0,594,0.281,21.27,55.410000000000004,0.92,0.14,792,1,230,3.1
+2023,9,5,16,0,22.900000000000002,1.37,0.022,0.63,52,916,500,0,0,-0.6000000000000001,52,916,0,500,0.281,20.97,60.74,0.92,0.14,792,1,231,3.1
+2023,9,5,16,30,22.3,1.37,0.022,0.63,48,873,400,0,0,-0.6000000000000001,48,873,14,400,0.281,21.740000000000002,66.25,0.92,0.14,792,1,231,2.9000000000000004
+2023,9,5,17,0,21.700000000000003,1.32,0.022,0.63,44,810,296,0,0,-0.4,44,810,0,296,0.28,22.97,71.86,0.92,0.14,792,1,232,2.6
+2023,9,5,17,30,19.8,1.32,0.022,0.63,37,713,191,0,0,-0.4,37,713,0,191,0.28,25.810000000000002,77.53,0.92,0.14,792,1,234,1.8
+2023,9,5,18,0,18,1.3,0.021,0.63,28,549,93,0,0,3.6,28,549,0,93,0.281,38.28,83.19,0.92,0.14,792,1,236,1
+2023,9,5,18,30,17.400000000000002,1.3,0.021,0.63,14,198,18,0,0,3.6,14,198,0,18,0.281,39.75,88.7,0.92,0.14,792,1,233,0.9
+2023,9,5,19,0,16.900000000000002,1.3,0.022,0.63,0,0,0,0,0,2.5,0,0,0,0,0.281,38.050000000000004,94.59,0.92,0.14,792,1,230,0.8
+2023,9,5,19,30,16.7,1.3,0.022,0.63,0,0,0,0,0,2.5,0,0,0,0,0.28200000000000003,38.59,100.09,0.93,0.14,793,1.1,219,0.8
+2023,9,5,20,0,16.400000000000002,1.32,0.024,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28200000000000003,37.59,105.44,0.93,0.14,793,1.1,208,0.8
+2023,9,5,20,30,16,1.32,0.024,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28200000000000003,38.550000000000004,110.57000000000001,0.93,0.14,793,1.2000000000000002,203,0.9
+2023,9,5,21,0,15.5,1.34,0.026000000000000002,0.63,0,0,0,0,0,1.8,0,0,0,0,0.28200000000000003,39.57,115.42,0.9400000000000001,0.14,793,1.2000000000000002,198,1
+2023,9,5,21,30,14.9,1.34,0.026000000000000002,0.63,0,0,0,1,0,1.8,0,0,57,0,0.28200000000000003,41.12,119.9,0.9400000000000001,0.14,793,1.2000000000000002,199,1.1
+2023,9,5,22,0,14.3,1.35,0.028,0.63,0,0,0,1,0,1.9000000000000001,0,0,57,0,0.28200000000000003,43.12,123.91,0.9400000000000001,0.14,793,1.3,200,1.2000000000000002
+2023,9,5,22,30,13.8,1.35,0.028,0.63,0,0,0,0,0,1.9000000000000001,0,0,14,0,0.28200000000000003,44.53,127.34,0.9400000000000001,0.14,793,1.3,205,1.2000000000000002
+2023,9,5,23,0,13.3,1.35,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.28200000000000003,46.19,130.05,0.9400000000000001,0.14,793,1.3,210,1.2000000000000002
+2023,9,5,23,30,13,1.35,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.28200000000000003,47.1,131.93,0.9500000000000001,0.14,793,1.3,215,1.2000000000000002
+2023,9,6,0,0,12.700000000000001,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.28200000000000003,48.42,132.86,0.9500000000000001,0.14,793,1.3,221,1.2000000000000002
+2023,9,6,0,30,12.5,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.28200000000000003,49.06,132.79,0.9500000000000001,0.14,793,1.3,227,1.1
+2023,9,6,1,0,12.200000000000001,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.281,49.97,131.73,0.9500000000000001,0.14,793,1.3,234,1.1
+2023,9,6,1,30,12,1.35,0.032,0.63,0,0,0,0,0,2.1,0,0,0,0,0.281,50.64,129.73,0.9500000000000001,0.14,793,1.3,241,1.1
+2023,9,6,2,0,11.700000000000001,1.36,0.031,0.63,0,0,0,0,0,2,0,0,0,0,0.281,51.49,126.91,0.9500000000000001,0.14,793,1.3,247,1
+2023,9,6,2,30,11.4,1.36,0.031,0.63,0,0,0,0,0,2,0,0,0,0,0.281,52.52,123.39,0.9500000000000001,0.14,793,1.3,254,1
+2023,9,6,3,0,11.200000000000001,1.37,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.281,53.1,119.31,0.9400000000000001,0.14,793,1.3,261,1
+2023,9,6,3,30,11,1.37,0.03,0.63,0,0,0,0,0,2,0,0,0,0,0.28,53.81,114.78,0.9400000000000001,0.14,793,1.2000000000000002,270,0.9
+2023,9,6,4,0,10.8,1.3800000000000001,0.029,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28,54.35,109.89,0.9400000000000001,0.14,793,1.2000000000000002,278,0.8
+2023,9,6,4,30,10.600000000000001,1.3800000000000001,0.029,0.63,0,0,0,0,0,2,0,0,0,0,0.28,55.14,104.73,0.9400000000000001,0.14,794,1.2000000000000002,288,0.7000000000000001
+2023,9,6,5,0,10.5,1.3900000000000001,0.028,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28,55.34,99.36,0.9400000000000001,0.14,794,1.1,298,0.6000000000000001
+2023,9,6,5,30,11.100000000000001,1.3900000000000001,0.028,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.281,53.18,93.84,0.9400000000000001,0.14,794,1.1,313,0.5
+2023,9,6,6,0,11.700000000000001,1.4000000000000001,0.028,0.63,16,243,25,0,0,3,16,243,0,25,0.281,55.120000000000005,87.99,0.93,0.14,794,1.1,328,0.4
+2023,9,6,6,30,13.4,1.4000000000000001,0.028,0.63,31,559,104,0,0,3,31,559,0,104,0.281,49.32,82.46000000000001,0.93,0.14,794,1.1,182,0.30000000000000004
+2023,9,6,7,0,15.100000000000001,1.41,0.027,0.63,40,714,203,0,0,2.5,40,714,0,203,0.28200000000000003,42.550000000000004,76.8,0.93,0.14,794,1.1,37,0.30000000000000004
+2023,9,6,7,30,17.400000000000002,1.41,0.027,0.63,46,807,307,0,0,2.5,46,807,0,307,0.28200000000000003,36.82,71.15,0.93,0.14,795,1.1,127,0.9
+2023,9,6,8,0,19.700000000000003,1.43,0.027,0.63,52,868,411,0,0,2,52,868,0,411,0.281,30.79,65.56,0.93,0.14,795,1.1,217,1.4000000000000001
+2023,9,6,8,30,21,1.43,0.027,0.63,56,910,510,0,0,2,56,910,0,510,0.28,28.42,60.09,0.93,0.14,795,1.1,215,2.1
+2023,9,6,9,0,22.3,1.44,0.027,0.63,59,942,602,0,0,1.4000000000000001,59,942,0,602,0.279,25.240000000000002,54.81,0.93,0.14,795,1,213,2.7
+2023,9,6,9,30,23.200000000000003,1.44,0.027,0.63,62,966,685,0,0,1.5,62,966,0,685,0.278,23.900000000000002,49.82,0.93,0.14,795,1,212,3.2
+2023,9,6,10,0,24.1,1.44,0.027,0.63,64,984,757,0,0,0.8,64,984,0,757,0.277,21.63,45.21,0.93,0.14,794,1,212,3.6
+2023,9,6,10,30,24.8,1.44,0.027,0.63,65,999,817,0,0,0.8,65,999,0,817,0.276,20.740000000000002,41.160000000000004,0.93,0.14,794,1,213,4
+2023,9,6,11,0,25.6,1.37,0.023,0.63,65,1010,863,0,0,0.1,65,1010,0,863,0.275,18.79,37.85,0.93,0.14,794,1,214,4.4
+2023,9,6,11,30,26.1,1.37,0.023,0.63,65,1017,893,0,0,0.1,65,1017,0,893,0.275,18.22,35.5,0.93,0.14,793,0.9,215,4.7
+2023,9,6,12,0,26.700000000000003,1.37,0.022,0.63,66,1020,908,0,0,-0.6000000000000001,66,1020,0,908,0.274,16.71,34.33,0.93,0.14,793,0.9,216,5
+2023,9,6,12,30,27.1,1.37,0.022,0.63,65,1021,907,0,0,-0.6000000000000001,65,1021,0,907,0.273,16.32,34.44,0.93,0.14,793,0.9,217,5.2
+2023,9,6,13,0,27.400000000000002,1.3800000000000001,0.021,0.63,64,1019,890,0,0,-1.4000000000000001,64,1019,0,890,0.273,15.18,35.84,0.93,0.14,792,0.9,218,5.300000000000001
+2023,9,6,13,30,27.6,1.3800000000000001,0.021,0.63,64,1013,858,0,0,-1.4000000000000001,64,1013,0,858,0.272,15,38.37,0.93,0.14,792,0.9,219,5.4
+2023,9,6,14,0,27.8,1.43,0.022,0.63,62,1004,810,0,0,-2.1,62,1004,0,810,0.272,14.01,41.83,0.93,0.14,792,0.9,221,5.5
+2023,9,6,14,30,27.700000000000003,1.43,0.022,0.63,60,992,749,0,0,-2.1,60,992,0,749,0.272,14.1,45.99,0.93,0.14,792,0.9,222,5.6000000000000005
+2023,9,6,15,0,27.6,1.45,0.021,0.63,58,976,676,0,0,-2.8000000000000003,58,976,0,676,0.272,13.48,50.68,0.92,0.14,791,0.9,223,5.6000000000000005
+2023,9,6,15,30,27.200000000000003,1.45,0.021,0.63,55,954,592,0,0,-2.8000000000000003,55,954,0,592,0.272,13.8,55.730000000000004,0.92,0.14,791,0.9,225,5.6000000000000005
+2023,9,6,16,0,26.700000000000003,1.47,0.021,0.63,52,922,498,0,0,-3.2,52,922,0,498,0.273,13.77,61.06,0.92,0.14,791,0.9,226,5.6000000000000005
+2023,9,6,16,30,25.900000000000002,1.47,0.021,0.63,48,878,397,0,0,-3.2,48,878,0,397,0.273,14.43,66.56,0.92,0.14,791,0.9,227,5.2
+2023,9,6,17,0,25,1.47,0.021,0.63,43,814,292,0,0,-3.1,43,814,0,292,0.273,15.4,72.17,0.92,0.14,791,0.9,229,4.800000000000001
+2023,9,6,17,30,22.5,1.47,0.021,0.63,36,716,187,0,0,-3.1,36,716,0,187,0.273,17.91,77.84,0.92,0.14,792,0.9,230,3.5
+2023,9,6,18,0,20,1.44,0.021,0.63,28,547,90,0,0,-0.8,28,547,0,90,0.273,24.69,83.5,0.92,0.14,792,0.9,231,2.3000000000000003
+2023,9,6,18,30,18.6,1.44,0.021,0.63,13,184,16,0,0,-0.8,13,184,0,16,0.274,26.93,88.98,0.92,0.14,792,0.9,230,2
+2023,9,6,19,0,17.1,1.41,0.022,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.274,31.150000000000002,94.9,0.92,0.14,792,0.9,229,1.7000000000000002
+2023,9,6,19,30,16.6,1.41,0.022,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.274,32.15,100.41,0.92,0.14,792,0.9,226,1.7000000000000002
+2023,9,6,20,0,16,1.4000000000000001,0.023,0.63,0,0,0,0,0,0,0,0,0,0,0.274,33.56,105.76,0.92,0.14,793,0.9,224,1.7000000000000002
+2023,9,6,20,30,15.5,1.4000000000000001,0.023,0.63,0,0,0,0,0,0,0,0,0,0,0.274,34.65,110.9,0.92,0.14,793,0.9,224,1.6
+2023,9,6,21,0,15,1.41,0.025,0.63,0,0,0,0,0,0,0,0,0,0,0.275,35.81,115.76,0.92,0.14,793,1,224,1.6
+2023,9,6,21,30,14.600000000000001,1.41,0.025,0.63,0,0,0,0,0,0,0,0,43,0,0.275,36.74,120.25,0.92,0.14,793,1,228,1.5
+2023,9,6,22,0,14.100000000000001,1.41,0.027,0.63,0,0,0,0,0,0.2,0,0,29,0,0.275,38.49,124.27,0.92,0.14,793,1,233,1.3
+2023,9,6,22,30,13.8,1.41,0.027,0.63,0,0,0,0,0,0.2,0,0,14,0,0.276,39.24,127.71000000000001,0.92,0.14,793,1,242,1.2000000000000002
+2023,9,6,23,0,13.4,1.4000000000000001,0.028,0.63,0,0,0,0,0,0.4,0,0,0,0,0.276,40.87,130.44,0.92,0.14,793,1.1,251,1.1
+2023,9,6,23,30,13.100000000000001,1.4000000000000001,0.028,0.63,0,0,0,0,0,0.4,0,0,0,0,0.276,41.68,132.31,0.92,0.14,793,1.1,261,1
+2023,9,7,0,0,12.9,1.3800000000000001,0.029,0.63,0,0,0,0,0,0.5,0,0,0,0,0.277,42.59,133.24,0.92,0.14,793,1.1,272,0.9
+2023,9,7,0,30,12.600000000000001,1.3800000000000001,0.029,0.63,0,0,0,0,0,0.5,0,0,0,0,0.277,43.43,133.16,0.92,0.14,793,1.1,283,0.9
+2023,9,7,1,0,12.3,1.37,0.029,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.278,44.82,132.07,0.92,0.14,793,1.1,295,0.8
+2023,9,7,1,30,12,1.37,0.029,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.278,45.71,130.05,0.92,0.14,793,1.1,305,0.7000000000000001
+2023,9,7,2,0,11.700000000000001,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.279,47.08,127.21000000000001,0.91,0.14,793,1,316,0.7000000000000001
+2023,9,7,2,30,11.5,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.279,47.7,123.67,0.91,0.14,793,1,324,0.6000000000000001
+2023,9,7,3,0,11.3,1.37,0.028,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28,48.45,119.56,0.91,0.14,794,1,333,0.5
+2023,9,7,3,30,11.200000000000001,1.37,0.028,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28,48.78,115.01,0.91,0.14,794,1,339,0.5
+2023,9,7,4,0,11,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.281,49.370000000000005,110.10000000000001,0.91,0.14,794,0.9,345,0.5
+2023,9,7,4,30,10.9,1.37,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.281,49.7,104.93,0.91,0.14,794,0.9,177,0.4
+2023,9,7,5,0,10.700000000000001,1.3800000000000001,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28200000000000003,50.300000000000004,99.55,0.91,0.14,794,0.9,10,0.30000000000000004
+2023,9,7,5,30,11.200000000000001,1.3800000000000001,0.029,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28200000000000003,48.730000000000004,94.03,0.91,0.14,795,0.9,28,0.30000000000000004
+2023,9,7,6,0,11.700000000000001,1.4000000000000001,0.03,0.63,15,206,22,0,0,1.5,15,206,0,22,0.28200000000000003,49.64,88.16,0.91,0.14,795,0.9,45,0.30000000000000004
+2023,9,7,6,30,13.5,1.4000000000000001,0.03,0.63,31,552,102,0,0,1.5,31,552,0,102,0.28300000000000003,44.13,82.63,0.91,0.14,795,0.9,75,0.30000000000000004
+2023,9,7,7,0,15.3,1.41,0.031,0.63,41,707,200,0,0,0.9,41,707,0,200,0.28300000000000003,37.64,76.98,0.91,0.14,795,0.9,106,0.4
+2023,9,7,7,30,17.7,1.41,0.031,0.63,48,802,305,0,0,0.9,48,802,0,305,0.28300000000000003,32.33,71.33,0.91,0.14,795,0.9,179,0.6000000000000001
+2023,9,7,8,0,20,1.42,0.032,0.63,54,864,409,0,0,0,54,864,0,409,0.28200000000000003,26.11,65.74,0.91,0.14,795,0.9,252,0.9
+2023,9,7,8,30,21.200000000000003,1.42,0.032,0.63,58,908,508,0,0,0,58,908,0,508,0.28200000000000003,24.25,60.29,0.91,0.14,795,0.9,245,1.1
+2023,9,7,9,0,22.5,1.43,0.032,0.63,61,940,600,0,0,-0.5,61,940,0,600,0.281,21.62,55.02,0.91,0.14,796,0.9,239,1.4000000000000001
+2023,9,7,9,30,23.3,1.43,0.032,0.63,64,964,683,0,0,-0.5,64,964,0,683,0.28,20.580000000000002,50.050000000000004,0.91,0.14,795,0.9,230,1.6
+2023,9,7,10,0,24.1,1.43,0.032,0.63,67,981,755,0,0,-1,67,981,0,755,0.279,19.02,45.47,0.91,0.14,795,0.9,222,1.9000000000000001
+2023,9,7,10,30,24.8,1.43,0.032,0.63,67,998,815,0,0,-1,67,998,0,815,0.279,18.25,41.44,0.91,0.14,795,0.9,220,2.2
+2023,9,7,11,0,25.400000000000002,1.41,0.025,0.63,65,1011,860,0,0,-1.6,65,1011,0,860,0.278,16.82,38.160000000000004,0.91,0.14,795,0.9,218,2.5
+2023,9,7,11,30,25.900000000000002,1.41,0.025,0.63,66,1018,891,0,0,-1.6,66,1018,0,891,0.277,16.330000000000002,35.85,0.91,0.14,795,0.9,218,2.7
+2023,9,7,12,0,26.400000000000002,1.44,0.024,0.63,66,1022,906,0,0,-2.3000000000000003,66,1022,0,906,0.277,15.01,34.69,0.91,0.14,795,0.9,218,3
+2023,9,7,12,30,26.700000000000003,1.44,0.024,0.63,66,1022,905,0,0,-2.3000000000000003,66,1022,0,905,0.277,14.75,34.82,0.91,0.14,795,0.9,219,3.2
+2023,9,7,13,0,27,1.46,0.024,0.63,65,1020,888,0,0,-3.1,65,1020,0,888,0.276,13.69,36.22,0.9,0.14,795,0.8,220,3.4000000000000004
+2023,9,7,13,30,27.1,1.46,0.024,0.63,63,1016,855,0,0,-3.1,63,1016,0,855,0.276,13.59,38.75,0.9,0.14,794,0.8,223,3.4000000000000004
+2023,9,7,14,0,27.200000000000003,1.49,0.021,0.63,60,1009,808,0,0,-3.8000000000000003,60,1009,0,808,0.276,12.790000000000001,42.19,0.9,0.14,794,0.8,226,3.5
+2023,9,7,14,30,27,1.49,0.021,0.63,59,997,747,0,0,-3.8000000000000003,59,997,0,747,0.277,12.94,46.34,0.9,0.14,794,0.8,228,3.5
+2023,9,7,15,0,26.900000000000002,1.53,0.021,0.63,57,981,674,0,0,-4.5,57,981,0,674,0.277,12.35,51.01,0.9,0.14,794,0.8,231,3.4000000000000004
+2023,9,7,15,30,26.400000000000002,1.53,0.021,0.63,54,958,589,0,0,-4.5,54,958,0,589,0.277,12.72,56.06,0.9,0.14,794,0.7000000000000001,232,3.3000000000000003
+2023,9,7,16,0,26,1.56,0.021,0.63,51,926,495,0,0,-5.2,51,926,0,495,0.277,12.43,61.370000000000005,0.9,0.14,794,0.7000000000000001,232,3.1
+2023,9,7,16,30,25.1,1.56,0.021,0.63,48,882,394,0,0,-5.2,48,882,0,394,0.277,13.11,66.87,0.9,0.14,794,0.7000000000000001,231,2.6
+2023,9,7,17,0,24.3,1.59,0.022,0.63,43,817,289,0,0,-4,43,817,0,289,0.277,15.01,72.48,0.9,0.13,794,0.7000000000000001,229,2.2
+2023,9,7,17,30,22.200000000000003,1.59,0.022,0.63,36,716,183,0,0,-4,36,716,0,183,0.277,17.03,78.14,0.9,0.13,794,0.7000000000000001,226,1.6
+2023,9,7,18,0,20.1,1.62,0.022,0.63,27,543,86,0,0,-0.1,27,543,0,86,0.277,25.86,83.8,0.9,0.13,794,0.7000000000000001,223,1
+2023,9,7,18,30,19.6,1.62,0.022,0.63,11,154,13,0,0,-0.1,11,154,0,13,0.277,26.67,89.26,0.9,0.13,794,0.7000000000000001,215,1
+2023,9,7,19,0,19.1,1.6400000000000001,0.023,0.63,0,0,0,0,0,-2,0,0,0,0,0.277,24,95.21000000000001,0.9,0.13,795,0.7000000000000001,206,1
+2023,9,7,19,30,18.6,1.6400000000000001,0.023,0.63,0,0,0,0,0,-2,0,0,0,0,0.277,24.76,100.72,0.9,0.13,795,0.7000000000000001,194,1.1
+2023,9,7,20,0,18.2,1.6500000000000001,0.023,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.277,24.14,106.09,0.9,0.13,795,0.7000000000000001,182,1.2000000000000002
+2023,9,7,20,30,17.400000000000002,1.6500000000000001,0.023,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.277,25.39,111.23,0.9,0.13,795,0.7000000000000001,177,1.2000000000000002
+2023,9,7,21,0,16.6,1.6600000000000001,0.024,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.277,26.64,116.10000000000001,0.9,0.13,795,0.7000000000000001,172,1.3
+2023,9,7,21,30,15.8,1.6600000000000001,0.024,0.63,0,0,0,0,0,-2.7,0,0,43,0,0.277,28.03,120.61,0.9,0.13,795,0.7000000000000001,174,1.4000000000000001
+2023,9,7,22,0,15.100000000000001,1.6500000000000001,0.024,0.63,0,0,0,0,0,-2.9000000000000004,0,0,29,0,0.277,28.92,124.64,0.9,0.13,795,0.7000000000000001,176,1.4000000000000001
+2023,9,7,22,30,14.600000000000001,1.6500000000000001,0.024,0.63,0,0,0,0,0,-2.9000000000000004,0,0,14,0,0.277,29.86,128.09,0.91,0.13,795,0.7000000000000001,180,1.4000000000000001
+2023,9,7,23,0,14.100000000000001,1.6400000000000001,0.025,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.277,30.27,130.82,0.91,0.13,795,0.7000000000000001,184,1.4000000000000001
+2023,9,7,23,30,13.700000000000001,1.6400000000000001,0.025,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.276,31.060000000000002,132.7,0.91,0.13,795,0.8,187,1.4000000000000001
+2023,9,8,0,0,13.3,1.6300000000000001,0.026000000000000002,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.276,31.37,133.62,0.91,0.13,795,0.8,189,1.4000000000000001
+2023,9,8,0,30,13.100000000000001,1.6300000000000001,0.026000000000000002,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.275,31.79,133.53,0.91,0.13,795,0.8,187,1.4000000000000001
+2023,9,8,1,0,12.9,1.6,0.027,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.275,31.54,132.42000000000002,0.91,0.13,795,0.8,186,1.3
+2023,9,8,1,30,12.8,1.6,0.027,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.275,31.75,130.38,0.91,0.13,795,0.8,181,1.3
+2023,9,8,2,0,12.700000000000001,1.57,0.028,0.63,0,0,0,0,0,-4,0,0,0,0,0.276,30.95,127.51,0.91,0.13,795,0.8,177,1.3
+2023,9,8,2,30,12.3,1.57,0.028,0.63,0,0,0,0,0,-4,0,0,0,0,0.277,31.77,123.95,0.91,0.13,795,0.8,171,1.3
+2023,9,8,3,0,12,1.55,0.029,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.278,31.91,119.82000000000001,0.91,0.13,795,0.8,166,1.3
+2023,9,8,3,30,11.5,1.55,0.029,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.279,32.980000000000004,115.24000000000001,0.91,0.13,795,0.8,167,1.4000000000000001
+2023,9,8,4,0,11.100000000000001,1.56,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.279,33.46,110.32000000000001,0.91,0.13,795,0.8,167,1.4000000000000001
+2023,9,8,4,30,10.8,1.56,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.281,34.17,105.13,0.91,0.13,796,0.8,171,1.4000000000000001
+2023,9,8,5,0,10.4,1.59,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.28200000000000003,34.82,99.74000000000001,0.91,0.13,796,0.8,174,1.4000000000000001
+2023,9,8,5,30,11.100000000000001,1.59,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.28200000000000003,33.24,94.21000000000001,0.91,0.13,796,0.8,177,1.4000000000000001
+2023,9,8,6,0,11.700000000000001,1.62,0.029,0.63,15,210,21,0,0,-3.7,15,210,0,21,0.28300000000000003,33.86,88.33,0.9,0.13,796,0.7000000000000001,180,1.3
+2023,9,8,6,30,13.700000000000001,1.62,0.029,0.63,30,564,101,0,0,-3.7,30,564,0,101,0.28400000000000003,29.71,82.81,0.9,0.13,796,0.7000000000000001,186,1.8
+2023,9,8,7,0,15.8,1.6300000000000001,0.029,0.63,40,723,201,0,0,-4.7,40,723,0,201,0.28400000000000003,24.14,77.15,0.9,0.13,796,0.7000000000000001,191,2.2
+2023,9,8,7,30,18,1.6300000000000001,0.029,0.63,47,817,306,0,0,-4.6000000000000005,47,817,0,306,0.28400000000000003,21.04,71.51,0.9,0.13,797,0.7000000000000001,206,2.7
+2023,9,8,8,0,20.200000000000003,1.62,0.03,0.63,52,879,411,0,0,-4.7,52,879,0,411,0.28400000000000003,18.3,65.93,0.9,0.13,797,0.7000000000000001,220,3.2
+2023,9,8,8,30,21.700000000000003,1.62,0.03,0.63,57,922,511,0,0,-4.7,57,922,0,511,0.28300000000000003,16.69,60.480000000000004,0.9,0.13,797,0.7000000000000001,223,3.5
+2023,9,8,9,0,23.200000000000003,1.6,0.031,0.63,61,952,604,0,0,-3.8000000000000003,61,952,0,604,0.28300000000000003,16.31,55.24,0.9,0.13,797,0.7000000000000001,226,3.7
+2023,9,8,9,30,24.1,1.6,0.031,0.63,64,975,687,0,0,-3.8000000000000003,64,975,0,687,0.28200000000000003,15.46,50.28,0.9,0.13,797,0.7000000000000001,226,4
+2023,9,8,10,0,25,1.59,0.032,0.63,66,992,759,0,0,-3.8000000000000003,66,992,0,759,0.28200000000000003,14.63,45.72,0.9,0.13,797,0.7000000000000001,227,4.2
+2023,9,8,10,30,25.700000000000003,1.59,0.032,0.63,66,1008,818,0,0,-3.8000000000000003,66,1008,0,818,0.281,14.030000000000001,41.730000000000004,0.9,0.13,797,0.7000000000000001,229,4.4
+2023,9,8,11,0,26.400000000000002,1.87,0.026000000000000002,0.63,65,1020,863,0,0,-4.2,65,1020,0,863,0.281,13.07,38.480000000000004,0.9,0.13,796,0.7000000000000001,230,4.6000000000000005
+2023,9,8,11,30,26.8,1.87,0.026000000000000002,0.63,66,1025,893,0,0,-4.2,66,1025,0,893,0.281,12.77,36.19,0.9,0.13,796,0.7000000000000001,232,4.7
+2023,9,8,12,0,27.3,1.9000000000000001,0.028,0.63,67,1026,907,0,0,-4.5,67,1026,0,907,0.281,12.1,35.06,0.9,0.13,796,0.7000000000000001,233,4.800000000000001
+2023,9,8,12,30,27.5,1.9000000000000001,0.028,0.63,68,1023,904,0,0,-4.5,68,1023,0,904,0.281,11.96,35.2,0.9,0.13,796,0.7000000000000001,234,4.800000000000001
+2023,9,8,13,0,27.8,1.92,0.031,0.63,69,1017,885,0,0,-4.6000000000000005,69,1017,0,885,0.28,11.63,36.61,0.9,0.13,796,0.8,235,4.800000000000001
+2023,9,8,13,30,27.900000000000002,1.92,0.031,0.63,68,1008,850,0,0,-4.6000000000000005,68,1008,0,850,0.28,11.57,39.13,0.9,0.13,796,0.8,235,4.800000000000001
+2023,9,8,14,0,28,1.97,0.034,0.63,68,997,802,0,0,-4.7,68,997,0,802,0.28,11.450000000000001,42.56,0.9,0.13,795,0.8,236,4.7
+2023,9,8,14,30,27.900000000000002,1.97,0.034,0.63,67,981,740,0,0,-4.7,67,981,0,740,0.28,11.52,46.7,0.9,0.13,795,0.8,235,4.7
+2023,9,8,15,0,27.8,1.98,0.038,0.63,65,959,664,0,0,-4.800000000000001,65,959,0,664,0.28,11.52,51.36,0.9,0.13,795,0.8,234,4.6000000000000005
+2023,9,8,15,30,27.5,1.98,0.038,0.63,63,931,578,0,0,-4.800000000000001,63,931,0,578,0.28,11.72,56.39,0.9,0.13,795,0.8,233,4.5
+2023,9,8,16,0,27.200000000000003,1.98,0.042,0.63,60,892,483,0,0,-5,60,892,0,483,0.28,11.72,61.7,0.9,0.13,795,0.9,231,4.4
+2023,9,8,16,30,26.3,1.98,0.042,0.63,55,840,381,0,0,-5,55,840,0,381,0.28,12.35,67.18,0.9,0.13,795,0.9,229,3.9000000000000004
+2023,9,8,17,0,25.400000000000002,1.96,0.046,0.63,49,766,276,0,0,-4.2,49,766,0,276,0.28,13.8,72.79,0.9,0.14,795,0.9,228,3.3000000000000003
+2023,9,8,17,30,22.700000000000003,1.96,0.046,0.63,41,655,172,0,0,-4.2,41,655,0,172,0.28,16.22,78.45,0.9,0.14,795,0.9,225,2.4000000000000004
+2023,9,8,18,0,20,1.93,0.046,0.63,29,468,77,0,0,-1.4000000000000001,29,468,0,77,0.28,23.63,84.10000000000001,0.9,0.14,795,0.9,223,1.6
+2023,9,8,18,30,18.900000000000002,1.93,0.046,0.63,10,118,11,0,0,-1.4000000000000001,10,118,0,11,0.28,25.29,89.54,0.9,0.14,795,0.9,226,1.6
+2023,9,8,19,0,17.8,1.9000000000000001,0.043000000000000003,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.281,26.26,95.52,0.9,0.14,795,0.9,229,1.6
+2023,9,8,19,30,17.2,1.9000000000000001,0.043000000000000003,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.281,27.3,101.04,0.9,0.14,796,0.9,237,1.6
+2023,9,8,20,0,16.7,1.84,0.038,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.281,27.71,106.41,0.9,0.14,796,0.9,245,1.6
+2023,9,8,20,30,16.1,1.84,0.038,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.281,28.79,111.57000000000001,0.91,0.14,796,0.9,256,1.5
+2023,9,8,21,0,15.5,1.76,0.033,0.63,0,0,0,0,0,-2,0,0,0,0,0.281,30.12,116.45,0.91,0.14,796,0.9,267,1.5
+2023,9,8,21,30,15,1.76,0.033,0.63,0,0,0,0,0,-2,0,0,43,0,0.281,31.1,120.96000000000001,0.91,0.14,796,0.9,280,1.4000000000000001
+2023,9,8,22,0,14.5,1.69,0.03,0.63,0,0,0,0,0,-1.6,0,0,14,0,0.281,33,125.01,0.91,0.14,796,0.9,294,1.4000000000000001
+2023,9,8,22,30,14,1.69,0.03,0.63,0,0,0,0,0,-1.6,0,0,14,0,0.28200000000000003,34.08,128.47,0.91,0.14,796,0.9,307,1.4000000000000001
+2023,9,8,23,0,13.600000000000001,1.62,0.029,0.63,0,0,0,0,0,-1,0,0,0,0,0.28200000000000003,36.52,131.2,0.91,0.14,796,0.9,319,1.3
+2023,9,8,23,30,13.4,1.62,0.029,0.63,0,0,0,0,0,-1,0,0,0,0,0.28200000000000003,37,133.08,0.91,0.14,796,0.9,326,1.4000000000000001
+2023,9,9,0,0,13.200000000000001,1.56,0.03,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.28200000000000003,39.1,134,0.91,0.14,796,0.9,334,1.4000000000000001
+2023,9,9,0,30,13,1.56,0.03,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.28300000000000003,39.61,133.89000000000001,0.91,0.14,796,0.9,339,1.3
+2023,9,9,1,0,12.9,1.52,0.03,0.63,0,0,0,0,0,0,0,0,0,0,0.28300000000000003,41.07,132.77,0.91,0.14,796,0.9,344,1.3
+2023,9,9,1,30,12.8,1.52,0.03,0.63,0,0,0,0,0,0,0,0,0,0,0.28300000000000003,41.34,130.71,0.91,0.14,796,0.9,350,1.2000000000000002
+2023,9,9,2,0,12.600000000000001,1.51,0.031,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.28300000000000003,42.88,127.81,0.91,0.14,797,0.9,355,1.1
+2023,9,9,2,30,12.3,1.51,0.031,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.28300000000000003,43.730000000000004,124.22,0.91,0.14,797,0.9,184,1
+2023,9,9,3,0,12,1.5,0.032,0.63,0,0,0,0,0,0.4,0,0,0,0,0.28300000000000003,44.97,120.07000000000001,0.91,0.14,797,0.9,13,0.9
+2023,9,9,3,30,11.700000000000001,1.5,0.032,0.63,0,0,0,0,0,0.4,0,0,0,0,0.28200000000000003,45.87,115.48,0.91,0.14,797,0.9,22,0.9
+2023,9,9,4,0,11.3,1.5,0.033,0.63,0,0,0,0,0,0.5,0,0,0,0,0.28200000000000003,47.52,110.54,0.91,0.14,797,0.9,32,0.8
+2023,9,9,4,30,11,1.5,0.033,0.63,0,0,0,0,0,0.5,0,0,0,0,0.28200000000000003,48.480000000000004,105.34,0.91,0.14,797,0.9,40,0.8
+2023,9,9,5,0,10.700000000000001,1.51,0.033,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.28200000000000003,49.65,99.94,0.91,0.14,797,0.9,49,0.8
+2023,9,9,5,30,11.200000000000001,1.51,0.033,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.281,48.03,94.4,0.91,0.14,797,0.9,58,0.7000000000000001
+2023,9,9,6,0,11.700000000000001,1.52,0.034,0.63,15,189,20,0,0,1,15,189,0,20,0.281,47.730000000000004,88.5,0.91,0.14,798,0.9,68,0.6000000000000001
+2023,9,9,6,30,13.5,1.52,0.034,0.63,31,531,96,0,0,1,31,531,0,96,0.281,42.43,82.98,0.91,0.14,798,0.9,87,0.8
+2023,9,9,7,0,15.4,1.52,0.034,0.63,42,695,194,0,0,0.5,42,695,0,194,0.281,36.31,77.33,0.91,0.14,798,0.9,106,0.9
+2023,9,9,7,30,17.7,1.52,0.034,0.63,49,794,298,0,0,0.5,49,794,0,298,0.28,31.39,71.69,0.91,0.14,798,0.9,143,1
+2023,9,9,8,0,19.900000000000002,1.53,0.035,0.63,55,858,402,0,0,-0.8,55,858,0,402,0.279,24.84,66.12,0.91,0.14,798,0.9,180,1.1
+2023,9,9,8,30,21.900000000000002,1.53,0.035,0.63,59,903,501,0,0,-0.8,59,903,0,501,0.279,21.97,60.69,0.91,0.14,798,0.9,201,1.4000000000000001
+2023,9,9,9,0,23.900000000000002,1.55,0.034,0.63,62,936,593,0,0,-2.8000000000000003,62,936,0,593,0.278,16.76,55.45,0.91,0.14,798,0.9,222,1.8
+2023,9,9,9,30,24.900000000000002,1.55,0.034,0.63,65,960,676,0,0,-2.8000000000000003,65,960,0,676,0.277,15.790000000000001,50.51,0.91,0.14,798,0.9,227,2
+2023,9,9,10,0,25.900000000000002,1.57,0.034,0.63,68,979,748,0,0,-3.5,68,979,0,748,0.276,14.13,45.980000000000004,0.91,0.14,798,0.9,233,2.2
+2023,9,9,10,30,26.5,1.57,0.034,0.63,68,994,807,0,0,-3.5,68,994,0,807,0.276,13.64,42.01,0.91,0.14,798,0.9,235,2.2
+2023,9,9,11,0,27.200000000000003,1.6500000000000001,0.03,0.63,68,1006,852,0,0,-3.9000000000000004,68,1006,0,852,0.275,12.73,38.800000000000004,0.91,0.14,797,0.9,236,2.3000000000000003
+2023,9,9,11,30,27.6,1.6500000000000001,0.03,0.63,70,1011,882,0,0,-3.9000000000000004,70,1011,0,882,0.274,12.43,36.54,0.91,0.14,797,0.9,236,2.3000000000000003
+2023,9,9,12,0,28.1,1.68,0.03,0.63,70,1014,896,0,0,-4.2,70,1014,0,896,0.273,11.83,35.43,0.91,0.14,797,0.9,237,2.3000000000000003
+2023,9,9,12,30,28.3,1.68,0.03,0.63,69,1014,894,0,0,-4.2,69,1014,0,894,0.273,11.69,35.59,0.91,0.14,797,0.9,235,2.2
+2023,9,9,13,0,28.5,1.7,0.03,0.63,69,1010,876,0,0,-4.5,82,980,0,865,0.272,11.290000000000001,36.99,0.91,0.14,796,0.9,233,2.1
+2023,9,9,13,30,28.5,1.7,0.03,0.63,68,1003,842,0,0,-4.5,68,1003,0,842,0.272,11.290000000000001,39.51,0.92,0.14,796,0.9,231,2.1
+2023,9,9,14,0,28.5,1.7,0.031,0.63,68,992,794,0,0,-4.800000000000001,170,705,4,686,0.271,11.06,42.93,0.92,0.14,796,0.9,229,2.1
+2023,9,9,14,30,28.200000000000003,1.7,0.031,0.63,66,976,731,0,0,-4.800000000000001,78,948,0,724,0.271,11.25,47.050000000000004,0.92,0.14,796,1,229,2.3000000000000003
+2023,9,9,15,0,28,1.6600000000000001,0.035,0.63,65,953,656,0,0,-5,65,953,0,656,0.271,11.17,51.7,0.92,0.14,796,1,228,2.4000000000000004
+2023,9,9,15,30,27.5,1.6600000000000001,0.035,0.63,64,921,569,0,0,-5,64,921,0,569,0.271,11.5,56.72,0.93,0.14,796,1,230,2.5
+2023,9,9,16,0,27,1.57,0.044,0.63,62,878,474,0,0,-5.1000000000000005,62,878,0,474,0.271,11.76,62.02,0.9400000000000001,0.14,796,1,231,2.6
+2023,9,9,16,30,25.900000000000002,1.57,0.044,0.63,58,820,372,0,0,-5.1000000000000005,112,615,7,347,0.27,12.540000000000001,67.5,0.9400000000000001,0.14,796,1.1,233,2.1
+2023,9,9,17,0,24.900000000000002,1.49,0.053,0.63,53,737,267,0,0,-2.8000000000000003,91,541,7,248,0.27,15.8,73.10000000000001,0.9400000000000001,0.13,796,1.1,235,1.7000000000000002
+2023,9,9,17,30,23.3,1.49,0.053,0.63,44,612,163,1,0,-2.8000000000000003,59,440,29,145,0.27,17.39,78.76,0.9500000000000001,0.13,796,1.1,239,1.2000000000000002
+2023,9,9,18,0,21.700000000000003,1.46,0.06,0.63,31,404,70,7,8,0.5,49,24,100,51,0.27,24.490000000000002,84.41,0.9500000000000001,0.13,796,1.1,242,0.7000000000000001
+2023,9,9,18,30,21.400000000000002,1.46,0.06,0.63,9,86,9,4,7,0.5,6,0,57,6,0.27,24.95,89.82000000000001,0.9500000000000001,0.13,796,1.2000000000000002,255,0.6000000000000001
+2023,9,9,19,0,21.200000000000003,1.43,0.068,0.63,0,0,0,0,7,-0.5,0,0,0,0,0.27,23.52,95.84,0.9500000000000001,0.13,796,1.2000000000000002,268,0.5
+2023,9,9,19,30,21,1.43,0.068,0.63,0,0,0,0,6,-0.5,0,0,0,0,0.27,23.81,101.37,0.9500000000000001,0.13,796,1.3,291,0.5
+2023,9,9,20,0,20.8,1.42,0.073,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,23.51,106.74000000000001,0.9500000000000001,0.13,796,1.3,314,0.5
+2023,9,9,20,30,20.400000000000002,1.42,0.073,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,24.1,111.91,0.9500000000000001,0.13,796,1.3,321,0.5
+2023,9,9,21,0,20,1.42,0.077,0.63,0,0,0,0,7,-0.8,0,0,0,0,0.27,24.75,116.8,0.9500000000000001,0.13,796,1.4000000000000001,328,0.5
+2023,9,9,21,30,19.3,1.42,0.077,0.63,0,0,0,0,7,-0.8,0,0,43,0,0.27,25.85,121.32000000000001,0.9500000000000001,0.13,796,1.4000000000000001,327,0.5
+2023,9,9,22,0,18.7,1.42,0.082,0.63,0,0,0,0,6,-0.30000000000000004,0,0,14,0,0.27,27.8,125.38000000000001,0.96,0.13,796,1.4000000000000001,325,0.6000000000000001
+2023,9,9,22,30,18,1.42,0.082,0.63,0,0,0,0,7,-0.30000000000000004,0,0,14,0,0.27,29.01,128.85,0.96,0.13,795,1.5,322,0.6000000000000001
+2023,9,9,23,0,17.400000000000002,1.42,0.089,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.27,31.37,131.59,0.96,0.13,795,1.5,319,0.7000000000000001
+2023,9,9,23,30,16.900000000000002,1.42,0.089,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.271,32.42,133.47,0.96,0.13,796,1.6,316,0.8
+2023,9,10,0,0,16.400000000000002,1.42,0.097,0.63,0,0,0,0,7,0.8,0,0,0,0,0.271,34.84,134.38,0.96,0.13,796,1.6,314,0.8
+2023,9,10,0,30,16,1.42,0.097,0.63,0,0,0,0,7,0.8,0,0,0,0,0.27,35.74,134.26,0.96,0.13,796,1.7000000000000002,310,0.9
+2023,9,10,1,0,15.600000000000001,1.42,0.10400000000000001,0.63,0,0,0,0,4,1.5,0,0,0,0,0.27,38.44,133.12,0.97,0.13,796,1.7000000000000002,306,1
+2023,9,10,1,30,15.3,1.42,0.10400000000000001,0.63,0,0,0,0,4,1.5,0,0,0,0,0.27,39.19,131.03,0.97,0.13,796,1.8,302,1
+2023,9,10,2,0,15,1.3900000000000001,0.113,0.63,0,0,0,0,7,2.2,0,0,0,0,0.27,42.050000000000004,128.11,0.97,0.13,796,1.8,298,1
+2023,9,10,2,30,14.700000000000001,1.3900000000000001,0.113,0.63,0,0,0,0,7,2.2,0,0,0,0,0.27,42.92,124.5,0.97,0.13,797,1.9000000000000001,299,0.9
+2023,9,10,3,0,14.3,1.36,0.123,0.63,0,0,0,0,7,3,0,0,0,0,0.27,46.53,120.33,0.97,0.13,797,1.9000000000000001,300,0.8
+2023,9,10,3,30,14.100000000000001,1.36,0.123,0.63,0,0,0,0,7,3,0,0,0,0,0.271,47.13,115.71000000000001,0.97,0.13,797,1.9000000000000001,320,0.6000000000000001
+2023,9,10,4,0,13.8,1.37,0.113,0.63,0,0,0,0,7,3.7,0,0,0,0,0.271,50.480000000000004,110.76,0.97,0.13,797,1.9000000000000001,340,0.4
+2023,9,10,4,30,13.5,1.37,0.113,0.63,0,0,0,0,7,3.7,0,0,0,0,0.272,51.47,105.54,0.97,0.13,797,1.9000000000000001,209,0.5
+2023,9,10,5,0,13.3,1.45,0.083,0.63,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.272,53.59,100.13,0.96,0.13,797,1.9000000000000001,78,0.7000000000000001
+2023,9,10,5,30,13.4,1.45,0.083,0.63,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.273,53.24,94.58,0.96,0.13,797,1.8,90,1.1
+2023,9,10,6,0,13.600000000000001,1.5,0.066,0.63,14,129,17,5,7,4.4,10,1,71,10,0.273,53.71,88.67,0.9500000000000001,0.13,797,1.8,101,1.5
+2023,9,10,6,30,14.600000000000001,1.5,0.066,0.63,35,437,87,4,3,4.4,52,124,57,67,0.274,50.35,83.16,0.9500000000000001,0.13,797,1.7000000000000002,103,1.9000000000000001
+2023,9,10,7,0,15.600000000000001,1.52,0.058,0.63,46,622,181,0,8,4.4,101,182,0,140,0.274,47.11,77.51,0.9500000000000001,0.13,797,1.7000000000000002,105,2.4000000000000004
+2023,9,10,7,30,16.7,1.52,0.058,0.63,55,732,283,0,8,4.4,127,138,7,170,0.274,43.93,71.87,0.9500000000000001,0.13,797,1.7000000000000002,99,2
+2023,9,10,8,0,17.7,1.53,0.053,0.63,61,807,385,2,8,4.1000000000000005,74,8,32,77,0.274,40.49,66.31,0.9500000000000001,0.13,797,1.6,92,1.7000000000000002
+2023,9,10,8,30,18.5,1.53,0.053,0.63,65,857,482,0,8,4.1000000000000005,183,198,7,279,0.274,38.51,60.89,0.9400000000000001,0.13,797,1.6,78,1.3
+2023,9,10,9,0,19.200000000000003,1.53,0.051000000000000004,0.63,69,894,573,0,7,3.9000000000000004,214,436,0,460,0.274,36.37,55.67,0.9400000000000001,0.13,797,1.6,63,0.8
+2023,9,10,9,30,20.1,1.53,0.051000000000000004,0.63,72,921,655,0,8,3.9000000000000004,191,584,0,560,0.275,34.4,50.75,0.9400000000000001,0.13,797,1.6,205,0.7000000000000001
+2023,9,10,10,0,21,1.54,0.05,0.63,74,941,725,0,0,3.5,82,922,0,720,0.276,31.54,46.24,0.9400000000000001,0.13,797,1.6,347,0.6000000000000001
+2023,9,10,10,30,21.900000000000002,1.54,0.05,0.63,75,959,784,0,0,3.5,75,959,0,784,0.276,29.85,42.300000000000004,0.9400000000000001,0.13,797,1.5,320,0.7000000000000001
+2023,9,10,11,0,22.900000000000002,1.6,0.041,0.63,74,974,830,0,0,2.9000000000000004,74,974,0,830,0.277,26.990000000000002,39.12,0.9400000000000001,0.13,796,1.5,293,0.7000000000000001
+2023,9,10,11,30,23.700000000000003,1.6,0.041,0.63,74,980,858,0,0,2.9000000000000004,185,722,0,762,0.277,25.73,36.89,0.9400000000000001,0.13,796,1.5,274,0.9
+2023,9,10,12,0,24.400000000000002,1.59,0.041,0.63,75,983,872,0,8,2.5,249,573,0,714,0.277,23.990000000000002,35.800000000000004,0.9400000000000001,0.13,796,1.5,256,1
+2023,9,10,12,30,24.8,1.59,0.041,0.63,75,983,871,0,8,2.5,236,607,0,727,0.277,23.39,35.97,0.9400000000000001,0.13,795,1.5,250,1.2000000000000002
+2023,9,10,13,0,25.200000000000003,1.59,0.041,0.63,75,979,853,0,0,2.3000000000000003,202,636,0,707,0.277,22.44,37.38,0.9400000000000001,0.13,795,1.5,243,1.3
+2023,9,10,13,30,25.200000000000003,1.59,0.041,0.63,75,971,820,0,3,2.3000000000000003,300,178,0,437,0.277,22.44,39.89,0.9400000000000001,0.13,795,1.5,244,1.4000000000000001
+2023,9,10,14,0,25.200000000000003,1.55,0.044,0.63,74,959,772,0,8,1.9000000000000001,296,157,0,410,0.277,21.91,43.300000000000004,0.9400000000000001,0.13,795,1.5,246,1.6
+2023,9,10,14,30,25.1,1.55,0.044,0.63,73,943,711,0,6,1.9000000000000001,262,100,0,330,0.277,22.02,47.410000000000004,0.9400000000000001,0.13,794,1.5,252,1.6
+2023,9,10,15,0,25,1.55,0.047,0.63,70,921,637,0,6,1.4000000000000001,99,2,0,100,0.277,21.35,52.04,0.9500000000000001,0.13,794,1.5,259,1.7000000000000002
+2023,9,10,15,30,24.700000000000003,1.55,0.047,0.63,68,891,552,0,6,1.4000000000000001,49,1,0,50,0.277,21.73,57.06,0.9500000000000001,0.13,794,1.5,271,1.7000000000000002
+2023,9,10,16,0,24.3,1.56,0.051000000000000004,0.63,64,851,459,0,6,1,61,16,0,68,0.277,21.63,62.34,0.9500000000000001,0.13,794,1.4000000000000001,283,1.8
+2023,9,10,16,30,23.700000000000003,1.56,0.051000000000000004,0.63,59,795,359,0,6,1,58,1,0,58,0.278,22.42,67.82000000000001,0.9500000000000001,0.13,794,1.5,298,1.8
+2023,9,10,17,0,23,1.55,0.055,0.63,52,714,256,0,7,1,55,37,0,66,0.278,23.39,73.41,0.9500000000000001,0.14,794,1.5,312,1.8
+2023,9,10,17,30,21.400000000000002,1.55,0.055,0.63,43,589,155,1,7,1,63,100,14,82,0.278,25.77,79.07000000000001,0.9500000000000001,0.14,794,1.5,327,1.4000000000000001
+2023,9,10,18,0,19.900000000000002,1.53,0.061,0.63,30,378,65,7,7,2.4000000000000004,44,12,100,45,0.279,31.400000000000002,84.71000000000001,0.96,0.14,794,1.5,342,1
+2023,9,10,18,30,19.1,1.53,0.061,0.63,6,59,6,3,8,2.4000000000000004,4,0,43,4,0.279,33,90.09,0.96,0.14,794,1.5,176,1.2000000000000002
+2023,9,10,19,0,18.3,1.52,0.068,0.63,0,0,0,0,4,2.5,0,0,0,0,0.279,34.89,96.16,0.96,0.14,795,1.6,9,1.4000000000000001
+2023,9,10,19,30,17.7,1.52,0.068,0.63,0,0,0,0,5,2.5,0,0,0,0,0.279,36.230000000000004,101.69,0.96,0.14,795,1.6,21,1.7000000000000002
+2023,9,10,20,0,17,1.51,0.076,0.63,0,0,0,0,5,3.1,0,0,0,0,0.279,39.32,107.07000000000001,0.96,0.14,796,1.7000000000000002,33,2.1
+2023,9,10,20,30,16.400000000000002,1.51,0.076,0.63,0,0,0,0,4,3.1,0,0,0,0,0.279,40.84,112.25,0.96,0.14,796,1.7000000000000002,38,2.2
+2023,9,10,21,0,15.9,1.52,0.078,0.63,0,0,0,0,4,3.9000000000000004,0,0,0,0,0.28,44.69,117.15,0.96,0.14,796,1.7000000000000002,44,2.3000000000000003
+2023,9,10,21,30,15.4,1.52,0.078,0.63,0,0,0,0,4,3.9000000000000004,0,0,29,0,0.28,46.14,121.68,0.96,0.14,796,1.7000000000000002,47,2.2
+2023,9,10,22,0,14.9,1.54,0.073,0.63,0,0,0,0,4,4.6000000000000005,0,0,0,0,0.281,50.1,125.75,0.96,0.14,796,1.7000000000000002,49,2
+2023,9,10,22,30,14.4,1.54,0.073,0.63,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.281,51.730000000000004,129.23,0.96,0.14,796,1.6,48,1.7000000000000002
+2023,9,10,23,0,13.9,1.56,0.067,0.63,0,0,0,0,3,5,0,0,0,0,0.28200000000000003,54.870000000000005,131.98,0.96,0.14,796,1.6,47,1.5
+2023,9,10,23,30,13.4,1.56,0.067,0.63,0,0,0,0,0,5,0,0,0,0,0.28400000000000003,56.68,133.86,0.9500000000000001,0.14,796,1.6,44,1.3
+2023,9,11,0,0,13,1.56,0.061,0.63,0,0,0,0,5,5.1000000000000005,0,0,0,0,0.28500000000000003,58.85,134.77,0.9500000000000001,0.14,795,1.5,42,1.1
+2023,9,11,0,30,12.5,1.56,0.061,0.63,0,0,0,0,5,5.1000000000000005,0,0,0,0,0.28600000000000003,60.800000000000004,134.63,0.9500000000000001,0.14,795,1.5,40,1.1
+2023,9,11,1,0,12,1.55,0.057,0.63,0,0,0,0,4,5.2,0,0,0,0,0.28700000000000003,63.25,133.47,0.9500000000000001,0.14,795,1.4000000000000001,37,1.1
+2023,9,11,1,30,11.600000000000001,1.55,0.057,0.63,0,0,0,0,3,5.2,0,0,0,0,0.28700000000000003,64.93,131.36,0.9500000000000001,0.14,795,1.4000000000000001,38,1.1
+2023,9,11,2,0,11.100000000000001,1.55,0.053,0.63,0,0,0,0,5,5.300000000000001,0,0,0,0,0.28800000000000003,67.55,128.41,0.9400000000000001,0.14,795,1.4000000000000001,38,1.1
+2023,9,11,2,30,10.700000000000001,1.55,0.053,0.63,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28800000000000003,69.37,124.78,0.9400000000000001,0.14,795,1.3,40,1.1
+2023,9,11,3,0,10.3,1.57,0.047,0.63,0,0,0,0,0,5.4,0,0,0,0,0.289,71.64,120.58,0.9400000000000001,0.14,795,1.3,41,1.1
+2023,9,11,3,30,10,1.57,0.047,0.63,0,0,0,0,0,5.4,0,0,0,0,0.289,73.09,115.95,0.93,0.14,795,1.3,42,1.1
+2023,9,11,4,0,9.600000000000001,1.57,0.043000000000000003,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,75.35000000000001,110.97,0.93,0.14,795,1.3,42,1.1
+2023,9,11,4,30,9.3,1.57,0.043000000000000003,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,76.88,105.74000000000001,0.93,0.14,795,1.2000000000000002,42,1.2000000000000002
+2023,9,11,5,0,9.1,1.57,0.04,0.63,0,0,0,0,0,5.5,0,0,0,0,0.289,78.32000000000001,100.32000000000001,0.93,0.14,795,1.2000000000000002,42,1.2000000000000002
+2023,9,11,5,30,9.600000000000001,1.57,0.04,0.63,0,0,0,0,0,5.5,0,0,0,0,0.29,75.83,94.77,0.93,0.14,796,1.2000000000000002,41,1.5
+2023,9,11,6,0,10.200000000000001,1.58,0.039,0.63,14,165,17,0,0,5.7,14,165,0,17,0.29,73.77,88.83,0.93,0.14,796,1.2000000000000002,41,1.8
+2023,9,11,6,30,11.9,1.58,0.039,0.63,30,496,88,0,0,5.7,30,496,0,88,0.291,65.92,83.33,0.93,0.14,796,1.2000000000000002,43,2.2
+2023,9,11,7,0,13.600000000000001,1.58,0.039,0.63,41,670,184,0,0,5.6000000000000005,41,670,0,184,0.292,58.47,77.69,0.93,0.14,796,1.2000000000000002,45,2.7
+2023,9,11,7,30,15.600000000000001,1.58,0.039,0.63,49,773,287,0,0,5.6000000000000005,49,773,0,287,0.292,51.410000000000004,72.06,0.93,0.14,796,1.2000000000000002,49,2.9000000000000004
+2023,9,11,8,0,17.6,1.57,0.038,0.63,55,840,390,0,0,3.4000000000000004,55,840,0,390,0.292,38.77,66.5,0.93,0.14,796,1.2000000000000002,54,3.2
+2023,9,11,8,30,18.7,1.57,0.038,0.63,60,887,489,0,0,3.4000000000000004,60,887,29,489,0.291,36.19,61.09,0.93,0.14,796,1.2000000000000002,53,3.1
+2023,9,11,9,0,19.700000000000003,1.56,0.038,0.63,64,922,581,0,0,2.1,64,922,0,581,0.29,31.07,55.89,0.93,0.14,796,1.1,52,3.1
+2023,9,11,9,30,20.5,1.56,0.038,0.63,67,947,663,0,0,2.1,67,947,0,663,0.289,29.580000000000002,50.99,0.93,0.14,796,1.1,51,3
+2023,9,11,10,0,21.3,1.54,0.038,0.63,69,966,734,0,0,1.5,69,966,0,734,0.28800000000000003,26.94,46.51,0.93,0.14,796,1.1,49,3
+2023,9,11,10,30,21.900000000000002,1.54,0.038,0.63,71,981,793,0,0,1.5,71,981,0,793,0.28700000000000003,25.97,42.59,0.93,0.14,796,1.1,48,2.9000000000000004
+2023,9,11,11,0,22.5,1.6,0.035,0.63,71,993,838,0,0,0.9,71,993,0,838,0.28600000000000003,24.02,39.44,0.93,0.14,795,1.1,46,2.9000000000000004
+2023,9,11,11,30,23,1.6,0.035,0.63,72,1000,868,0,0,0.9,72,1000,0,868,0.28500000000000003,23.31,37.24,0.92,0.14,795,1.1,45,2.8000000000000003
+2023,9,11,12,0,23.400000000000002,1.58,0.035,0.63,71,1003,881,0,0,0.4,71,1003,0,881,0.28300000000000003,21.87,36.18,0.92,0.14,795,1.1,43,2.8000000000000003
+2023,9,11,12,30,23.6,1.58,0.035,0.63,72,1003,880,0,0,0.4,85,977,0,872,0.28200000000000003,21.61,36.36,0.92,0.14,795,1,42,2.8000000000000003
+2023,9,11,13,0,23.900000000000002,1.56,0.034,0.63,71,1001,862,0,0,-0.1,152,735,0,733,0.28,20.51,37.77,0.92,0.14,794,1,41,2.8000000000000003
+2023,9,11,13,30,23.900000000000002,1.56,0.034,0.63,70,995,829,0,0,-0.1,106,900,0,793,0.28,20.51,40.27,0.92,0.14,794,1,40,2.8000000000000003
+2023,9,11,14,0,24,1.58,0.032,0.63,68,986,781,0,0,-0.5,108,853,0,725,0.279,19.72,43.67,0.92,0.14,794,1,39,2.8000000000000003
+2023,9,11,14,30,23.8,1.58,0.032,0.63,66,972,719,0,0,-0.5,66,972,0,719,0.279,19.96,47.77,0.92,0.14,794,1,38,2.9000000000000004
+2023,9,11,15,0,23.700000000000003,1.57,0.032,0.63,62,953,644,0,0,-1,62,953,0,644,0.279,19.42,52.39,0.92,0.14,793,1,37,2.9000000000000004
+2023,9,11,15,30,23.3,1.57,0.032,0.63,60,928,560,0,0,-1,60,928,0,560,0.279,19.89,57.39,0.92,0.14,793,1,37,3
+2023,9,11,16,0,22.900000000000002,1.57,0.031,0.63,55,892,465,0,0,-1.3,55,892,0,465,0.28,19.92,62.67,0.92,0.14,793,1,38,3.1
+2023,9,11,16,30,22.1,1.57,0.031,0.63,51,842,365,0,0,-1.3,51,842,0,365,0.28,20.91,68.14,0.92,0.14,793,1,39,3.1
+2023,9,11,17,0,21.400000000000002,1.56,0.031,0.63,45,769,261,0,0,-1.4000000000000001,45,769,0,261,0.28,21.68,73.72,0.92,0.14,793,1,39,3.1
+2023,9,11,17,30,19.400000000000002,1.56,0.031,0.63,37,652,157,0,0,-1.4000000000000001,37,652,0,157,0.28,24.52,79.38,0.92,0.14,793,1,40,2.3000000000000003
+2023,9,11,18,0,17.400000000000002,1.57,0.031,0.63,26,449,65,0,0,-0.2,26,449,0,65,0.281,30.27,85.02,0.92,0.14,794,1,40,1.5
+2023,9,11,18,30,16.400000000000002,1.57,0.031,0.63,7,76,6,0,0,-0.2,7,76,0,6,0.281,32.24,90.84,0.92,0.14,794,1,39,1.5
+2023,9,11,19,0,15.3,1.59,0.031,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28200000000000003,34.84,96.47,0.92,0.14,794,1,39,1.5
+2023,9,11,19,30,14.8,1.59,0.031,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28200000000000003,35.97,102.01,0.92,0.14,794,1,39,1.6
+2023,9,11,20,0,14.3,1.61,0.032,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28300000000000003,37.28,107.4,0.93,0.14,794,1,40,1.7000000000000002
+2023,9,11,20,30,13.8,1.61,0.032,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28300000000000003,38.5,112.59,0.93,0.14,794,1,41,1.8
+2023,9,11,21,0,13.4,1.62,0.033,0.63,0,0,0,0,0,0,0,0,0,0,0.28300000000000003,39.83,117.5,0.93,0.14,794,1.1,43,1.8
+2023,9,11,21,30,12.9,1.62,0.033,0.63,0,0,0,0,0,0,0,0,29,0,0.28300000000000003,41.15,122.04,0.93,0.14,794,1.1,45,1.7000000000000002
+2023,9,11,22,0,12.4,1.6300000000000001,0.034,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28400000000000003,42.71,126.12,0.93,0.14,794,1.1,47,1.6
+2023,9,11,22,30,11.9,1.6300000000000001,0.034,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28400000000000003,44.13,129.61,0.93,0.14,794,1.1,50,1.5
+2023,9,11,23,0,11.5,1.6400000000000001,0.035,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28400000000000003,45.32,132.36,0.93,0.14,794,1.1,53,1.4000000000000001
+2023,9,11,23,30,11.100000000000001,1.6400000000000001,0.035,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28300000000000003,46.54,134.25,0.93,0.14,794,1.1,57,1.3
+2023,9,12,0,0,10.700000000000001,1.6500000000000001,0.037,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28300000000000003,47.77,135.15,0.93,0.14,794,1.2000000000000002,61,1.3
+2023,9,12,0,30,10.4,1.6500000000000001,0.037,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28300000000000003,48.730000000000004,135,0.9400000000000001,0.14,794,1.2000000000000002,65,1.2000000000000002
+2023,9,12,1,0,10.100000000000001,1.6600000000000001,0.039,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28200000000000003,49.92,133.82,0.9400000000000001,0.14,794,1.2000000000000002,68,1.1
+2023,9,12,1,30,9.9,1.6600000000000001,0.039,0.63,0,0,0,0,0,0.1,0,0,0,0,0.28300000000000003,50.59,131.69,0.9400000000000001,0.14,794,1.2000000000000002,70,1.1
+2023,9,12,2,0,9.700000000000001,1.6600000000000001,0.041,0.63,0,0,0,0,0,0.2,0,0,0,0,0.28300000000000003,51.68,128.72,0.9400000000000001,0.14,794,1.2000000000000002,72,1.1
+2023,9,12,2,30,9.5,1.6600000000000001,0.041,0.63,0,0,0,0,0,0.2,0,0,0,0,0.28300000000000003,52.38,125.05,0.9400000000000001,0.14,794,1.2000000000000002,72,1
+2023,9,12,3,0,9.3,1.6600000000000001,0.042,0.63,0,0,0,0,0,0.4,0,0,0,0,0.28300000000000003,53.58,120.83,0.9400000000000001,0.14,794,1.2000000000000002,71,1
+2023,9,12,3,30,9.200000000000001,1.6600000000000001,0.042,0.63,0,0,0,0,0,0.4,0,0,0,0,0.28400000000000003,53.94,116.18,0.9400000000000001,0.14,794,1.2000000000000002,69,1
+2023,9,12,4,0,9,1.67,0.042,0.63,0,0,0,0,0,0.5,0,0,0,0,0.28400000000000003,55.31,111.19,0.9400000000000001,0.14,794,1.2000000000000002,67,1
+2023,9,12,4,30,8.8,1.67,0.042,0.63,0,0,0,0,0,0.5,0,0,0,0,0.28500000000000003,56.06,105.95,0.9400000000000001,0.14,794,1.2000000000000002,65,1
+2023,9,12,5,0,8.5,1.68,0.041,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.28500000000000003,57.97,100.52,0.9400000000000001,0.14,794,1.2000000000000002,63,1
+2023,9,12,5,30,9.1,1.68,0.041,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.28500000000000003,55.68,94.95,0.9400000000000001,0.14,794,1.1,60,1.2000000000000002
+2023,9,12,6,0,9.700000000000001,1.68,0.039,0.63,12,148,15,0,0,1,12,148,0,15,0.28500000000000003,54.53,89,0.9400000000000001,0.14,794,1.1,57,1.3
+2023,9,12,6,30,11.5,1.68,0.039,0.63,31,498,87,0,0,1,31,498,0,87,0.28500000000000003,48.38,83.51,0.93,0.14,794,1.1,56,1.9000000000000001
+2023,9,12,7,0,13.3,1.67,0.037,0.63,41,677,183,0,0,1.1,41,677,0,183,0.28500000000000003,43.49,77.87,0.93,0.14,794,1,54,2.5
+2023,9,12,7,30,15.600000000000001,1.67,0.037,0.63,48,782,287,0,0,1.1,48,782,0,287,0.28500000000000003,37.5,72.24,0.93,0.14,794,1,55,2.6
+2023,9,12,8,0,17.8,1.6300000000000001,0.036000000000000004,0.63,54,850,390,0,0,-0.2,54,850,0,390,0.28500000000000003,29.6,66.7,0.93,0.14,794,1,56,2.7
+2023,9,12,8,30,19.200000000000003,1.6300000000000001,0.036000000000000004,0.63,59,897,490,0,0,-0.2,59,897,0,490,0.28400000000000003,27.12,61.300000000000004,0.93,0.14,794,1,56,2.7
+2023,9,12,9,0,20.700000000000003,1.59,0.036000000000000004,0.63,63,931,582,0,0,-1.3,63,931,0,582,0.28400000000000003,22.84,56.11,0.93,0.14,794,1,57,2.6
+2023,9,12,9,30,21.6,1.59,0.036000000000000004,0.63,66,955,664,0,0,-1.3,66,955,0,664,0.28300000000000003,21.62,51.230000000000004,0.93,0.14,794,1,56,2.3000000000000003
+2023,9,12,10,0,22.400000000000002,1.56,0.037,0.63,69,974,736,0,0,-1.7000000000000002,69,974,0,736,0.28200000000000003,19.900000000000002,46.77,0.93,0.14,793,1,54,2
+2023,9,12,10,30,23,1.56,0.037,0.63,70,988,794,0,0,-1.7000000000000002,70,988,0,794,0.28200000000000003,19.19,42.89,0.93,0.14,793,1,48,1.8
+2023,9,12,11,0,23.6,1.6,0.035,0.63,71,998,838,0,0,-2.2,71,998,0,838,0.281,17.900000000000002,39.76,0.93,0.14,793,1,42,1.6
+2023,9,12,11,30,23.900000000000002,1.6,0.035,0.63,71,1004,867,0,0,-2.2,71,1004,0,867,0.28,17.580000000000002,37.59,0.93,0.14,793,1,34,1.5
+2023,9,12,12,0,24.200000000000003,1.59,0.035,0.63,73,1006,881,0,0,-2.5,73,1006,0,881,0.279,16.84,36.550000000000004,0.93,0.14,792,1,26,1.5
+2023,9,12,12,30,24.400000000000002,1.59,0.035,0.63,72,1006,878,0,0,-2.5,72,1006,0,878,0.279,16.64,36.75,0.93,0.14,792,1,17,1.3
+2023,9,12,13,0,24.5,1.6,0.035,0.63,72,1002,860,0,0,-2.8000000000000003,72,1002,0,860,0.278,16.240000000000002,38.160000000000004,0.93,0.14,792,1,8,1.2000000000000002
+2023,9,12,13,30,24.5,1.6,0.035,0.63,70,995,825,0,0,-2.8000000000000003,70,995,0,825,0.278,16.240000000000002,40.65,0.93,0.14,792,1,182,0.9
+2023,9,12,14,0,24.6,1.61,0.036000000000000004,0.63,69,983,776,0,0,-3,69,983,0,776,0.277,15.83,44.04,0.93,0.14,791,1,355,0.7000000000000001
+2023,9,12,14,30,24.400000000000002,1.61,0.036000000000000004,0.63,68,968,714,0,0,-3,68,968,0,714,0.277,16.02,48.13,0.9400000000000001,0.14,791,1,201,0.5
+2023,9,12,15,0,24.3,1.6,0.037,0.63,66,947,639,0,0,-3.4000000000000004,66,947,0,639,0.277,15.71,52.74,0.9400000000000001,0.14,791,1,47,0.30000000000000004
+2023,9,12,15,30,24,1.6,0.037,0.63,62,919,553,0,0,-3.4000000000000004,62,919,0,553,0.277,15.99,57.730000000000004,0.9400000000000001,0.14,791,1,83,0.5
+2023,9,12,16,0,23.6,1.58,0.038,0.63,58,880,458,0,0,-3.7,58,880,0,458,0.278,16.04,63,0.9400000000000001,0.14,791,1,120,0.6000000000000001
+2023,9,12,16,30,23,1.58,0.038,0.63,53,828,357,0,0,-3.7,53,828,0,357,0.278,16.63,68.46000000000001,0.9400000000000001,0.14,791,1,133,0.7000000000000001
+2023,9,12,17,0,22.3,1.58,0.038,0.63,47,751,253,0,0,-2.3000000000000003,47,751,0,253,0.278,19.19,74.04,0.9400000000000001,0.15,791,1,145,0.8
+2023,9,12,17,30,20.8,1.58,0.038,0.63,39,628,151,0,0,-2.3000000000000003,39,628,0,151,0.278,21.03,79.69,0.9400000000000001,0.15,791,1,154,0.8
+2023,9,12,18,0,19.3,1.59,0.039,0.63,26,415,60,0,0,-1.4000000000000001,26,415,0,60,0.279,24.68,85.33,0.9400000000000001,0.15,791,1,162,0.7000000000000001
+2023,9,12,18,30,18.5,1.59,0.039,0.63,6,64,5,0,0,-1.4000000000000001,6,64,0,5,0.279,25.94,91.15,0.9400000000000001,0.15,791,1.1,175,0.9
+2023,9,12,19,0,17.6,1.59,0.04,0.63,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28,26.48,96.79,0.9400000000000001,0.15,791,1.1,187,1
+2023,9,12,19,30,16.8,1.59,0.04,0.63,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28,27.89,102.34,0.9400000000000001,0.15,792,1.1,200,1.1
+2023,9,12,20,0,16.1,1.58,0.043000000000000003,0.63,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.28,30.32,107.73,0.9400000000000001,0.15,792,1.1,212,1.2000000000000002
+2023,9,12,20,30,15.4,1.58,0.043000000000000003,0.63,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.28,31.7,112.93,0.9400000000000001,0.15,792,1.1,223,1.3
+2023,9,12,21,0,14.700000000000001,1.58,0.046,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.28,36.44,117.85000000000001,0.9400000000000001,0.15,792,1.2000000000000002,234,1.4000000000000001
+2023,9,12,21,30,14.200000000000001,1.58,0.046,0.63,0,0,0,0,0,-0.1,0,0,29,0,0.279,37.63,122.41,0.9400000000000001,0.15,792,1.2000000000000002,241,1.5
+2023,9,12,22,0,13.600000000000001,1.58,0.047,0.63,0,0,0,0,0,1.6,0,0,0,0,0.279,43.95,126.5,0.9400000000000001,0.15,792,1.2000000000000002,248,1.5
+2023,9,12,22,30,13,1.58,0.047,0.63,0,0,0,0,0,1.6,0,0,0,0,0.279,45.7,129.99,0.9400000000000001,0.15,792,1.2000000000000002,253,1.6
+2023,9,12,23,0,12.4,1.57,0.049,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.279,53.96,132.75,0.9400000000000001,0.15,792,1.3,258,1.6
+2023,9,12,23,30,12,1.57,0.049,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.278,55.39,134.64000000000001,0.9400000000000001,0.15,792,1.3,263,1.5
+2023,9,13,0,0,11.600000000000001,1.56,0.052000000000000005,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.278,62.88,135.54,0.9400000000000001,0.15,792,1.3,267,1.4000000000000001
+2023,9,13,0,30,11.3,1.56,0.052000000000000005,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.278,64.13,135.38,0.9400000000000001,0.15,792,1.4000000000000001,268,1.3
+2023,9,13,1,0,11.100000000000001,1.54,0.057,0.63,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.278,68.99,134.18,0.9500000000000001,0.15,792,1.4000000000000001,269,1.2000000000000002
+2023,9,13,1,30,10.9,1.54,0.057,0.63,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.278,69.91,132.01,0.9500000000000001,0.15,792,1.4000000000000001,269,1.1
+2023,9,13,2,0,10.8,1.55,0.06,0.63,0,0,0,0,0,6,0,0,0,0,0.278,72.31,129.02,0.9500000000000001,0.15,792,1.4000000000000001,269,1
+2023,9,13,2,30,10.8,1.55,0.06,0.63,0,0,0,0,8,6,0,0,0,0,0.278,72.31,125.33,0.9500000000000001,0.15,792,1.5,266,1
+2023,9,13,3,0,10.9,1.55,0.063,0.63,0,0,0,0,3,6.1000000000000005,0,0,0,0,0.278,72.44,121.09,0.9500000000000001,0.15,792,1.5,264,0.9
+2023,9,13,3,30,10.8,1.55,0.063,0.63,0,0,0,0,4,6.1000000000000005,0,0,0,0,0.278,72.92,116.41,0.9500000000000001,0.15,792,1.5,255,0.9
+2023,9,13,4,0,10.8,1.55,0.067,0.63,0,0,0,0,8,6.2,0,0,0,0,0.278,73.39,111.41,0.9500000000000001,0.15,792,1.5,246,0.8
+2023,9,13,4,30,10.600000000000001,1.55,0.067,0.63,0,0,0,0,8,6.2,0,0,0,0,0.278,74.37,106.15,0.9500000000000001,0.15,792,1.5,238,0.9
+2023,9,13,5,0,10.4,1.56,0.07200000000000001,0.63,0,0,0,0,4,6.4,0,0,0,0,0.278,76.38,100.71000000000001,0.9500000000000001,0.15,792,1.6,230,0.9
+2023,9,13,5,30,10.700000000000001,1.56,0.07200000000000001,0.63,0,0,0,0,4,6.4,0,0,0,0,0.278,74.87,95.14,0.9500000000000001,0.15,792,1.6,226,0.9
+2023,9,13,6,0,11.100000000000001,1.56,0.076,0.63,11,92,12,4,4,6.9,4,0,64,4,0.278,75.12,89.16,0.96,0.15,793,1.6,222,1
+2023,9,13,6,30,12.4,1.56,0.076,0.63,35,393,78,5,5,6.9,42,5,75,43,0.278,68.96000000000001,83.69,0.96,0.15,793,1.6,225,1.5
+2023,9,13,7,0,13.700000000000001,1.57,0.079,0.63,50,575,169,0,5,6.9,73,18,0,77,0.278,63.56,78.05,0.96,0.15,793,1.7000000000000002,228,1.9000000000000001
+2023,9,13,7,30,15.200000000000001,1.57,0.079,0.63,61,690,269,0,5,6.9,67,5,0,69,0.277,57.7,72.43,0.96,0.15,793,1.7000000000000002,238,2.1
+2023,9,13,8,0,16.8,1.59,0.079,0.63,69,766,370,0,5,5.7,28,0,0,28,0.277,47.97,66.89,0.96,0.15,793,1.7000000000000002,249,2.2
+2023,9,13,8,30,18.1,1.59,0.079,0.63,75,821,467,0,8,5.7,78,3,0,79,0.277,44.2,61.5,0.96,0.15,793,1.7000000000000002,254,2.2
+2023,9,13,9,0,19.400000000000002,1.6,0.077,0.63,80,861,557,0,8,4.7,59,1,0,60,0.276,38.02,56.33,0.9500000000000001,0.15,793,1.7000000000000002,259,2.1
+2023,9,13,9,30,20.3,1.6,0.077,0.63,84,890,638,0,8,4.7,135,16,0,145,0.275,35.92,51.47,0.9500000000000001,0.15,792,1.7000000000000002,258,2
+2023,9,13,10,0,21.3,1.6,0.075,0.63,86,912,708,0,8,4.2,298,212,0,442,0.275,32.51,47.04,0.9500000000000001,0.15,792,1.7000000000000002,256,1.9000000000000001
+2023,9,13,10,30,21.900000000000002,1.6,0.075,0.63,87,932,767,0,0,4.2,254,577,0,675,0.274,31.34,43.18,0.9500000000000001,0.15,792,1.7000000000000002,252,1.9000000000000001
+2023,9,13,11,0,22.6,1.6600000000000001,0.063,0.63,85,949,811,0,0,3.8000000000000003,85,949,0,811,0.274,29.3,40.09,0.9500000000000001,0.15,792,1.7000000000000002,248,1.9000000000000001
+2023,9,13,11,30,22.900000000000002,1.6600000000000001,0.063,0.63,87,955,840,0,0,3.8000000000000003,87,955,0,840,0.273,28.740000000000002,37.94,0.9500000000000001,0.15,791,1.7000000000000002,246,2
+2023,9,13,12,0,23.3,1.6300000000000001,0.064,0.63,87,958,853,0,0,3.6,99,934,0,846,0.273,27.61,36.93,0.9500000000000001,0.15,791,1.7000000000000002,244,2
+2023,9,13,12,30,23.400000000000002,1.6300000000000001,0.064,0.63,87,957,850,0,3,3.6,280,474,0,658,0.272,27.44,37.14,0.9500000000000001,0.15,791,1.7000000000000002,244,2.1
+2023,9,13,13,0,23.5,1.6,0.065,0.63,86,952,831,0,3,3.4000000000000004,337,305,0,576,0.272,26.94,38.550000000000004,0.9500000000000001,0.15,791,1.7000000000000002,245,2.1
+2023,9,13,13,30,23.400000000000002,1.6,0.065,0.63,84,946,798,0,0,3.4000000000000004,222,648,0,711,0.272,27.07,41.04,0.9500000000000001,0.15,790,1.7000000000000002,248,2.1
+2023,9,13,14,0,23.3,1.58,0.06,0.63,82,937,751,0,8,3.2,229,479,14,571,0.272,26.97,44.42,0.9500000000000001,0.15,790,1.7000000000000002,250,2.2
+2023,9,13,14,30,23.1,1.58,0.06,0.63,79,921,689,0,7,3.2,195,47,0,226,0.273,27.3,48.49,0.9500000000000001,0.15,790,1.7000000000000002,255,2.1
+2023,9,13,15,0,22.8,1.57,0.059000000000000004,0.63,75,899,615,0,6,3.1,29,0,0,29,0.273,27.55,53.09,0.9500000000000001,0.15,790,1.7000000000000002,259,2.1
+2023,9,13,15,30,22.400000000000002,1.57,0.059000000000000004,0.63,71,868,530,0,6,3.1,48,2,0,49,0.274,28.22,58.07,0.9500000000000001,0.15,790,1.7000000000000002,264,2.1
+2023,9,13,16,0,21.900000000000002,1.56,0.061,0.63,67,825,437,0,6,3.1,56,65,0,85,0.274,29.04,63.33,0.9500000000000001,0.15,790,1.7000000000000002,269,2.1
+2023,9,13,16,30,21.3,1.56,0.061,0.63,61,764,338,0,6,3.1,79,4,0,80,0.274,30.13,68.78,0.9500000000000001,0.15,790,1.7000000000000002,275,2
+2023,9,13,17,0,20.700000000000003,1.55,0.065,0.63,54,675,236,0,6,3.4000000000000004,45,3,0,46,0.274,31.900000000000002,74.36,0.9500000000000001,0.15,790,1.7000000000000002,281,1.9000000000000001
+2023,9,13,17,30,19.400000000000002,1.55,0.065,0.63,43,541,137,2,6,3.4000000000000004,34,7,29,35,0.275,34.56,80,0.9500000000000001,0.15,790,1.7000000000000002,289,1.5
+2023,9,13,18,0,18.2,1.53,0.067,0.63,27,316,51,7,6,4.6000000000000005,31,10,100,32,0.275,40.67,85.64,0.9500000000000001,0.15,790,1.8,296,1
+2023,9,13,18,30,17.6,1.53,0.067,0.63,4,23,3,2,7,4.6000000000000005,1,0,29,1,0.275,42.28,91.47,0.9500000000000001,0.15,791,1.8,304,1.1
+2023,9,13,19,0,17,1.54,0.066,0.63,0,0,0,0,8,4.6000000000000005,0,0,0,0,0.275,43.83,97.11,0.9500000000000001,0.15,791,1.8,312,1.3
+2023,9,13,19,30,16.6,1.54,0.066,0.63,0,0,0,0,8,4.6000000000000005,0,0,0,0,0.275,44.95,102.66,0.9500000000000001,0.15,791,1.8,318,1.5
+2023,9,13,20,0,16.2,1.56,0.064,0.63,0,0,0,0,7,4.7,0,0,0,0,0.276,46.42,108.07000000000001,0.9500000000000001,0.15,791,1.8,324,1.7000000000000002
+2023,9,13,20,30,15.700000000000001,1.56,0.064,0.63,0,0,0,0,7,4.7,0,0,0,0,0.276,47.92,113.27,0.9400000000000001,0.15,791,1.8,328,1.8
+2023,9,13,21,0,15.200000000000001,1.58,0.061,0.63,0,0,0,0,8,4.800000000000001,0,0,0,0,0.277,49.93,118.2,0.9400000000000001,0.15,792,1.8,333,1.9000000000000001
+2023,9,13,21,30,14.600000000000001,1.58,0.061,0.63,0,0,0,0,3,4.800000000000001,0,0,14,0,0.278,51.89,122.77,0.9400000000000001,0.15,792,1.8,338,1.8
+2023,9,13,22,0,14.100000000000001,1.58,0.057,0.63,0,0,0,0,4,4.800000000000001,0,0,0,0,0.279,53.59,126.87,0.9400000000000001,0.15,792,1.8,342,1.7000000000000002
+2023,9,13,22,30,13.5,1.58,0.057,0.63,0,0,0,0,3,4.800000000000001,0,0,0,0,0.279,55.65,130.38,0.9400000000000001,0.15,791,1.8,347,1.5
+2023,9,13,23,0,13,1.57,0.056,0.63,0,0,0,0,3,4.800000000000001,0,0,0,0,0.28,57.57,133.15,0.9400000000000001,0.15,791,1.7000000000000002,352,1.3
+2023,9,13,23,30,12.700000000000001,1.57,0.056,0.63,0,0,0,0,3,4.800000000000001,0,0,0,0,0.279,58.78,135.03,0.9400000000000001,0.15,792,1.8,356,1.2000000000000002
+2023,9,14,0,0,12.3,1.53,0.062,0.63,0,0,0,0,4,4.9,0,0,0,0,0.279,60.64,135.92000000000002,0.9400000000000001,0.15,792,1.8,360,1.1
+2023,9,14,0,30,12.3,1.53,0.062,0.63,0,0,0,0,5,4.9,0,0,0,0,0.279,60.64,135.75,0.9500000000000001,0.15,792,1.8,181,1
+2023,9,14,1,0,12.200000000000001,1.47,0.07100000000000001,0.63,0,0,0,0,3,5.2,0,0,0,0,0.279,62.22,134.53,0.9500000000000001,0.15,792,1.8,2,1
+2023,9,14,1,30,12.200000000000001,1.47,0.07100000000000001,0.63,0,0,0,0,5,5.2,0,0,0,0,0.279,62.22,132.34,0.9500000000000001,0.15,792,1.8,3,1
+2023,9,14,2,0,12.200000000000001,1.45,0.077,0.63,0,0,0,0,4,5.800000000000001,0,0,0,0,0.279,64.72,129.32,0.9500000000000001,0.15,792,1.8,4,1
+2023,9,14,2,30,12,1.45,0.077,0.63,0,0,0,0,5,5.800000000000001,0,0,0,0,0.279,65.58,125.61,0.9500000000000001,0.15,792,1.8,7,1.2000000000000002
+2023,9,14,3,0,11.9,1.44,0.081,0.63,0,0,0,0,4,6.300000000000001,0,0,0,0,0.278,68.53,121.34,0.96,0.15,792,1.9000000000000001,10,1.4000000000000001
+2023,9,14,3,30,11.600000000000001,1.44,0.081,0.63,0,0,0,0,4,6.300000000000001,0,0,0,0,0.279,69.89,116.65,0.96,0.15,792,1.9000000000000001,13,1.5
+2023,9,14,4,0,11.4,1.45,0.082,0.63,0,0,0,0,7,6.7,0,0,0,0,0.279,73.07000000000001,111.63,0.96,0.15,792,1.9000000000000001,16,1.7000000000000002
+2023,9,14,4,30,11.200000000000001,1.45,0.082,0.63,0,0,0,0,7,6.800000000000001,0,0,0,0,0.279,74.14,106.35000000000001,0.96,0.15,793,1.8,19,1.7000000000000002
+2023,9,14,5,0,10.9,1.45,0.082,0.63,0,0,0,0,7,7.2,0,0,0,0,0.28,77.67,100.9,0.9500000000000001,0.15,793,1.8,22,1.8
+2023,9,14,5,30,10.9,1.45,0.082,0.63,0,0,0,0,7,7.2,0,0,0,0,0.28,77.67,95.33,0.9500000000000001,0.15,793,1.8,26,1.9000000000000001
+2023,9,14,6,0,10.9,1.46,0.081,0.63,10,80,11,4,7,7.5,4,0,57,4,0.28,79.64,89.33,0.9500000000000001,0.15,793,1.8,30,2.1
+2023,9,14,6,30,11.5,1.46,0.081,0.63,34,371,74,5,7,7.5,30,1,71,30,0.28,76.54,83.87,0.9500000000000001,0.15,793,1.8,34,2.3000000000000003
+2023,9,14,7,0,12.100000000000001,1.48,0.08,0.63,50,562,165,0,7,7.5,36,1,0,36,0.28,73.62,78.23,0.9500000000000001,0.15,794,1.8,37,2.5
+2023,9,14,7,30,12.9,1.48,0.08,0.63,61,684,265,0,7,7.5,21,0,0,21,0.28,69.87,72.62,0.9500000000000001,0.15,794,1.7000000000000002,38,2.4000000000000004
+2023,9,14,8,0,13.8,1.51,0.074,0.63,67,767,366,0,7,6.800000000000001,40,1,0,40,0.28,62.71,67.09,0.9500000000000001,0.15,794,1.7000000000000002,39,2.3000000000000003
+2023,9,14,8,30,14.8,1.51,0.074,0.63,73,824,464,0,7,6.800000000000001,194,36,0,211,0.28,58.79,61.71,0.9500000000000001,0.15,794,1.7000000000000002,37,2.2
+2023,9,14,9,0,15.8,1.52,0.07,0.63,78,866,555,0,7,6,239,88,0,287,0.28,52.17,56.56,0.9400000000000001,0.15,794,1.6,34,2
+2023,9,14,9,30,16.6,1.52,0.07,0.63,81,897,637,0,7,6,239,48,0,269,0.279,49.58,51.72,0.9400000000000001,0.15,794,1.6,29,2.1
+2023,9,14,10,0,17.400000000000002,1.5,0.067,0.63,84,920,708,0,7,5.300000000000001,212,11,0,219,0.279,44.81,47.31,0.9400000000000001,0.15,794,1.5,25,2.1
+2023,9,14,10,30,17.900000000000002,1.5,0.067,0.63,88,933,765,0,7,5.300000000000001,263,48,0,298,0.279,43.42,43.480000000000004,0.9500000000000001,0.15,794,1.5,22,2.2
+2023,9,14,11,0,18.3,1.4000000000000001,0.076,0.63,92,940,808,0,8,4.6000000000000005,190,38,0,219,0.279,40.49,40.410000000000004,0.9500000000000001,0.15,794,1.5,18,2.3000000000000003
+2023,9,14,11,30,18.6,1.4000000000000001,0.076,0.63,93,948,837,0,8,4.6000000000000005,332,211,0,498,0.278,39.69,38.300000000000004,0.9500000000000001,0.15,793,1.5,18,2.4000000000000004
+2023,9,14,12,0,19,1.4000000000000001,0.075,0.63,93,952,850,0,3,4.1000000000000005,312,556,0,754,0.278,37.24,37.31,0.9500000000000001,0.15,793,1.5,18,2.5
+2023,9,14,12,30,19.1,1.4000000000000001,0.075,0.63,94,951,848,0,3,4.1000000000000005,343,370,0,636,0.278,37.01,37.53,0.9500000000000001,0.15,793,1.5,20,2.5
+2023,9,14,13,0,19.200000000000003,1.41,0.074,0.63,92,948,829,0,0,3.6,149,812,0,780,0.278,35.65,38.95,0.9500000000000001,0.15,793,1.5,23,2.6
+2023,9,14,13,30,19.200000000000003,1.41,0.074,0.63,88,944,796,0,0,3.6,223,612,0,682,0.278,35.65,41.43,0.9500000000000001,0.15,793,1.5,26,2.6
+2023,9,14,14,0,19.3,1.47,0.064,0.63,83,938,749,0,8,3.2,260,423,0,560,0.278,34.5,44.79,0.9500000000000001,0.15,793,1.4000000000000001,30,2.6
+2023,9,14,14,30,19.1,1.47,0.064,0.63,80,922,687,0,0,3.2,125,820,14,665,0.278,34.93,48.85,0.9400000000000001,0.15,793,1.4000000000000001,35,2.7
+2023,9,14,15,0,19,1.5,0.063,0.63,77,900,613,0,7,3,216,471,21,497,0.278,34.550000000000004,53.44,0.9400000000000001,0.15,793,1.4000000000000001,39,2.8000000000000003
+2023,9,14,15,30,18.6,1.5,0.063,0.63,72,870,528,0,7,3,179,536,0,460,0.279,35.42,58.410000000000004,0.9400000000000001,0.15,793,1.4000000000000001,43,3
+2023,9,14,16,0,18.2,1.52,0.061,0.63,67,830,435,0,8,2.9000000000000004,147,463,7,352,0.279,36.12,63.660000000000004,0.9400000000000001,0.15,793,1.4000000000000001,48,3.1
+2023,9,14,16,30,17.6,1.52,0.061,0.63,59,773,335,0,7,2.9000000000000004,76,242,0,162,0.28,37.5,69.10000000000001,0.9400000000000001,0.15,793,1.4000000000000001,49,3.3000000000000003
+2023,9,14,17,0,16.900000000000002,1.56,0.057,0.63,51,691,234,0,6,3.1,82,60,0,98,0.281,39.77,74.68,0.9400000000000001,0.14,793,1.4000000000000001,51,3.4000000000000004
+2023,9,14,17,30,15.700000000000001,1.56,0.057,0.63,40,561,134,2,6,3.1,48,78,29,61,0.281,42.980000000000004,80.32000000000001,0.9400000000000001,0.14,794,1.4000000000000001,52,2.9000000000000004
+2023,9,14,18,0,14.5,1.58,0.052000000000000005,0.63,25,337,49,7,6,3.9000000000000004,19,0,100,19,0.28200000000000003,48.83,85.94,0.9400000000000001,0.14,794,1.4000000000000001,54,2.4000000000000004
+2023,9,14,18,30,13.700000000000001,1.58,0.052000000000000005,0.63,3,25,2,2,7,3.9000000000000004,1,0,29,1,0.28300000000000003,51.42,91.79,0.9400000000000001,0.14,794,1.4000000000000001,56,2.5
+2023,9,14,19,0,13,1.58,0.047,0.63,0,0,0,0,7,4.5,0,0,0,0,0.28400000000000003,56.19,97.43,0.9400000000000001,0.14,795,1.4000000000000001,57,2.6
+2023,9,14,19,30,12.5,1.58,0.047,0.63,0,0,0,0,7,4.5,0,0,0,0,0.28500000000000003,58.050000000000004,102.99000000000001,0.9400000000000001,0.14,795,1.5,56,2.7
+2023,9,14,20,0,12,1.57,0.044,0.63,0,0,0,0,8,5,0,0,0,0,0.28500000000000003,62.38,108.4,0.9400000000000001,0.14,795,1.5,55,2.7
+2023,9,14,20,30,11.4,1.57,0.044,0.63,0,0,0,0,0,5,0,0,0,0,0.28600000000000003,64.89,113.61,0.9400000000000001,0.14,795,1.5,51,2.6
+2023,9,14,21,0,10.9,1.55,0.043000000000000003,0.63,0,0,0,0,0,5.4,0,0,0,0,0.28700000000000003,68.94,118.55,0.9400000000000001,0.14,795,1.5,48,2.4000000000000004
+2023,9,14,21,30,10.4,1.55,0.043000000000000003,0.63,0,0,0,0,0,5.4,0,0,14,0,0.28700000000000003,71.27,123.13000000000001,0.9400000000000001,0.14,795,1.5,44,2.2
+2023,9,14,22,0,9.9,1.54,0.043000000000000003,0.63,0,0,0,0,0,5.7,0,0,0,0,0.28800000000000003,74.92,127.25,0.9400000000000001,0.14,795,1.5,41,2
+2023,9,14,22,30,9.5,1.54,0.043000000000000003,0.63,0,0,0,0,0,5.7,0,0,0,0,0.28800000000000003,76.95,130.76,0.9400000000000001,0.14,795,1.5,37,1.9000000000000001
+2023,9,14,23,0,9.1,1.53,0.043000000000000003,0.63,0,0,0,0,0,5.800000000000001,0,0,0,0,0.289,79.95,133.54,0.9400000000000001,0.14,795,1.6,34,1.7000000000000002
+2023,9,14,23,30,8.8,1.53,0.043000000000000003,0.63,0,0,0,0,0,5.800000000000001,0,0,0,0,0.289,81.58,135.43,0.9400000000000001,0.14,795,1.6,30,1.7000000000000002
+2023,9,15,0,0,8.5,1.52,0.042,0.63,0,0,0,0,0,5.9,0,0,0,0,0.29,83.85000000000001,136.31,0.9400000000000001,0.14,795,1.6,27,1.6
+2023,9,15,0,30,8.200000000000001,1.52,0.042,0.63,0,0,0,0,0,5.9,0,0,0,0,0.291,85.57000000000001,136.12,0.9400000000000001,0.14,795,1.5,23,1.7000000000000002
+2023,9,15,1,0,8,1.49,0.041,0.63,0,0,0,0,0,6,0,0,0,0,0.291,87.07000000000001,134.88,0.9400000000000001,0.14,795,1.5,20,1.8
+2023,9,15,1,30,7.7,1.49,0.041,0.63,0,0,0,0,0,6,0,0,0,0,0.292,88.86,132.67000000000002,0.9400000000000001,0.14,795,1.5,18,1.9000000000000001
+2023,9,15,2,0,7.5,1.47,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.293,89.87,129.62,0.9400000000000001,0.14,794,1.5,16,2
+2023,9,15,2,30,7.300000000000001,1.47,0.04,0.63,0,0,0,0,0,6,0,0,0,0,0.294,91.22,125.88000000000001,0.9400000000000001,0.14,795,1.5,16,2.1
+2023,9,15,3,0,7.1000000000000005,1.44,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.295,91.98,121.60000000000001,0.93,0.14,795,1.4000000000000001,16,2.1
+2023,9,15,3,30,6.9,1.44,0.04,0.63,0,0,0,0,0,5.9,0,0,0,0,0.295,93.24,116.88,0.93,0.14,795,1.4000000000000001,17,2.1
+2023,9,15,4,0,6.7,1.42,0.04,0.63,0,0,0,0,0,5.800000000000001,0,0,0,0,0.296,93.8,111.84,0.93,0.14,795,1.4000000000000001,19,2.1
+2023,9,15,4,30,6.4,1.42,0.04,0.63,0,0,0,0,0,5.800000000000001,0,0,0,0,0.296,95.75,106.56,0.9400000000000001,0.14,795,1.4000000000000001,20,2.1
+2023,9,15,5,0,6.2,1.4000000000000001,0.041,0.63,0,0,0,0,0,5.7,0,0,0,0,0.297,96.29,101.10000000000001,0.9400000000000001,0.14,795,1.4000000000000001,21,2.1
+2023,9,15,5,30,6.6000000000000005,1.4000000000000001,0.041,0.63,0,0,0,0,0,5.7,0,0,0,0,0.297,93.68,95.51,0.9400000000000001,0.14,795,1.3,22,2.4000000000000004
+2023,9,15,6,0,7,1.3900000000000001,0.042,0.63,10,110,11,0,0,5.6000000000000005,10,110,0,11,0.296,90.63,89.48,0.9400000000000001,0.14,796,1.3,23,2.8000000000000003
+2023,9,15,6,30,8.700000000000001,1.3900000000000001,0.042,0.63,30,453,77,0,0,5.6000000000000005,30,453,0,77,0.296,80.75,84.05,0.9400000000000001,0.14,796,1.3,27,3.3000000000000003
+2023,9,15,7,0,10.3,1.37,0.041,0.63,41,642,170,0,0,5.300000000000001,41,642,0,170,0.296,71.04,78.41,0.9400000000000001,0.14,796,1.3,31,3.9000000000000004
+2023,9,15,7,30,12,1.37,0.041,0.63,49,755,272,0,0,5.300000000000001,49,755,0,272,0.295,63.480000000000004,72.8,0.93,0.14,796,1.3,35,4.2
+2023,9,15,8,0,13.700000000000001,1.34,0.039,0.63,55,829,375,0,0,4.5,55,829,0,375,0.294,53.67,67.28,0.93,0.14,796,1.2000000000000002,39,4.5
+2023,9,15,8,30,14.9,1.34,0.039,0.63,60,879,474,0,0,4.5,60,879,0,474,0.293,49.68,61.92,0.93,0.14,796,1.2000000000000002,40,4.5
+2023,9,15,9,0,16.2,1.31,0.037,0.63,63,916,565,0,0,3.6,63,916,0,565,0.291,43.06,56.78,0.93,0.14,797,1.2000000000000002,42,4.4
+2023,9,15,9,30,17.3,1.31,0.037,0.63,66,944,648,0,0,3.6,66,944,0,648,0.291,40.12,51.96,0.93,0.14,796,1.2000000000000002,41,4.1000000000000005
+2023,9,15,10,0,18.3,1.28,0.036000000000000004,0.63,68,966,720,0,0,2.7,68,966,0,720,0.29,35.38,47.58,0.93,0.14,796,1.1,41,3.9000000000000004
+2023,9,15,10,30,19.1,1.28,0.036000000000000004,0.63,68,984,778,0,0,2.7,68,984,0,778,0.289,33.660000000000004,43.78,0.92,0.14,796,1.1,38,3.7
+2023,9,15,11,0,19.900000000000002,1.18,0.025,0.63,65,1000,823,0,0,1.9000000000000001,65,1000,0,823,0.289,30.3,40.74,0.91,0.14,796,1.1,35,3.5
+2023,9,15,11,30,20.5,1.18,0.025,0.63,65,1007,851,0,0,1.9000000000000001,65,1007,0,851,0.28800000000000003,29.2,38.660000000000004,0.91,0.14,796,1.1,31,3.4000000000000004
+2023,9,15,12,0,21.1,1.1500000000000001,0.024,0.63,65,1011,865,0,0,1.2000000000000002,65,1011,0,865,0.28800000000000003,26.77,37.69,0.91,0.14,795,1,28,3.3000000000000003
+2023,9,15,12,30,21.400000000000002,1.1500000000000001,0.024,0.63,65,1011,863,0,0,1.2000000000000002,65,1011,0,863,0.28800000000000003,26.28,37.92,0.91,0.14,795,1,26,3.3000000000000003
+2023,9,15,13,0,21.8,1.1300000000000001,0.024,0.63,64,1008,844,0,0,0.6000000000000001,64,1008,0,844,0.28800000000000003,24.490000000000002,39.34,0.91,0.14,795,1,23,3.3000000000000003
+2023,9,15,13,30,21.900000000000002,1.1300000000000001,0.024,0.63,65,1000,810,0,0,0.6000000000000001,65,1000,0,810,0.28800000000000003,24.34,41.82,0.91,0.14,795,1,23,3.4000000000000004
+2023,9,15,14,0,22,1.1400000000000001,0.025,0.63,63,990,761,0,0,0,97,899,0,731,0.28800000000000003,23.13,45.17,0.91,0.14,794,1,22,3.4000000000000004
+2023,9,15,14,30,21.900000000000002,1.1400000000000001,0.025,0.63,61,976,698,0,0,0,124,793,0,642,0.28800000000000003,23.27,49.22,0.91,0.14,794,1,23,3.5
+2023,9,15,15,0,21.8,1.1400000000000001,0.024,0.63,59,957,624,0,0,-0.6000000000000001,68,927,0,616,0.28800000000000003,22.51,53.79,0.91,0.14,794,1,24,3.5
+2023,9,15,15,30,21.400000000000002,1.1400000000000001,0.024,0.63,56,930,538,0,0,-0.6000000000000001,64,903,0,532,0.289,23.06,58.75,0.91,0.14,794,1,26,3.5
+2023,9,15,16,0,20.900000000000002,1.1500000000000001,0.024,0.63,51,893,443,0,0,-0.9,51,893,0,443,0.289,23.18,63.99,0.91,0.14,794,0.9,28,3.5
+2023,9,15,16,30,20.200000000000003,1.1500000000000001,0.024,0.63,47,841,342,0,0,-0.9,47,841,0,342,0.289,24.19,69.43,0.91,0.14,794,0.9,30,3.2
+2023,9,15,17,0,19.400000000000002,1.17,0.024,0.63,41,762,238,0,0,-0.9,41,762,0,238,0.289,25.39,75,0.91,0.14,794,0.9,31,3
+2023,9,15,17,30,17.2,1.17,0.024,0.63,33,632,136,0,0,-0.9,33,632,0,136,0.289,29.17,80.63,0.91,0.14,795,0.9,31,2.1
+2023,9,15,18,0,15.100000000000001,1.19,0.024,0.63,22,398,48,0,0,0.5,22,398,0,48,0.289,36.89,86.25,0.91,0.14,795,0.9,32,1.2000000000000002
+2023,9,15,18,30,14.200000000000001,1.19,0.024,0.63,3,32,2,0,0,0.5,3,32,0,2,0.289,39.09,92.11,0.91,0.14,795,0.9,31,1.2000000000000002
+2023,9,15,19,0,13.3,1.22,0.024,0.63,0,0,0,0,0,0.4,0,0,0,0,0.289,41.21,97.76,0.91,0.14,796,0.9,29,1.2000000000000002
+2023,9,15,19,30,12.8,1.22,0.024,0.63,0,0,0,0,0,0.4,0,0,0,0,0.289,42.58,103.32000000000001,0.91,0.14,796,0.9,28,1.2000000000000002
+2023,9,15,20,0,12.4,1.24,0.025,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.289,43.33,108.73,0.91,0.14,796,0.9,27,1.2000000000000002
+2023,9,15,20,30,12,1.24,0.025,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.289,44.480000000000004,113.95,0.91,0.14,796,0.9,27,1.2000000000000002
+2023,9,15,21,0,11.700000000000001,1.26,0.025,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,45.1,118.9,0.91,0.14,796,0.9,26,1.2000000000000002
+2023,9,15,21,30,11.4,1.26,0.025,0.63,0,0,0,0,0,0.2,0,0,14,0,0.289,46,123.5,0.91,0.14,796,0.9,26,1.2000000000000002
+2023,9,15,22,0,11,1.27,0.026000000000000002,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,47.15,127.62,0.91,0.14,796,0.9,26,1.2000000000000002
+2023,9,15,22,30,10.8,1.27,0.026000000000000002,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,47.78,131.15,0.91,0.14,796,0.9,27,1.1
+2023,9,15,23,0,10.5,1.29,0.026000000000000002,0.63,0,0,0,0,0,0.2,0,0,0,0,0.289,48.95,133.93,0.91,0.14,796,0.9,27,1.1
+2023,9,15,23,30,10.200000000000001,1.29,0.026000000000000002,0.63,0,0,0,0,0,0.2,0,0,0,0,0.29,49.94,135.82,0.91,0.14,796,0.9,27,1.1
+2023,9,16,0,0,9.9,1.3,0.026000000000000002,0.63,0,0,0,0,0,0.4,0,0,0,0,0.29,51.49,136.70000000000002,0.91,0.14,796,0.9,27,1
+2023,9,16,0,30,9.600000000000001,1.3,0.026000000000000002,0.63,0,0,0,0,0,0.4,0,0,0,0,0.291,52.53,136.5,0.91,0.14,796,0.9,26,1
+2023,9,16,1,0,9.3,1.31,0.026000000000000002,0.63,0,0,0,0,0,0.5,0,0,0,0,0.291,54.31,135.23,0.91,0.14,796,0.9,25,0.9
+2023,9,16,1,30,9,1.31,0.026000000000000002,0.63,0,0,0,0,0,0.5,0,0,0,0,0.292,55.42,133,0.91,0.14,796,0.9,26,0.9
+2023,9,16,2,0,8.700000000000001,1.32,0.026000000000000002,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.292,57.33,129.92000000000002,0.91,0.14,796,0.8,27,0.9
+2023,9,16,2,30,8.4,1.32,0.026000000000000002,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.293,58.5,126.16,0.91,0.14,796,0.8,32,0.8
+2023,9,16,3,0,8.1,1.32,0.026000000000000002,0.63,0,0,0,0,0,0.9,0,0,0,0,0.293,60.63,121.85000000000001,0.91,0.14,796,0.8,37,0.8
+2023,9,16,3,30,7.800000000000001,1.32,0.026000000000000002,0.63,0,0,0,0,0,1,0,0,0,0,0.293,61.96,117.11,0.91,0.14,797,0.8,42,0.8
+2023,9,16,4,0,7.5,1.32,0.026000000000000002,0.63,0,0,0,0,0,1.2000000000000002,0,0,29,0,0.294,64.33,112.06,0.91,0.14,797,0.8,47,0.7000000000000001
+2023,9,16,4,30,7.2,1.32,0.026000000000000002,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.294,65.66,106.76,0.91,0.14,797,0.8,50,0.7000000000000001
+2023,9,16,5,0,6.9,1.33,0.026000000000000002,0.63,0,0,0,0,0,1.5,0,0,0,0,0.293,68.27,101.29,0.91,0.14,797,0.8,54,0.7000000000000001
+2023,9,16,5,30,7.2,1.33,0.026000000000000002,0.63,0,0,0,0,0,1.5,0,0,0,0,0.293,66.88,95.7,0.91,0.14,797,0.8,57,0.6000000000000001
+2023,9,16,6,0,7.4,1.33,0.026000000000000002,0.63,10,133,11,0,0,1.7000000000000002,10,133,0,11,0.293,67.35,89.65,0.91,0.14,798,0.7000000000000001,61,0.5
+2023,9,16,6,30,9.200000000000001,1.33,0.026000000000000002,0.63,28,512,79,0,0,1.7000000000000002,28,512,0,79,0.293,59.63,84.23,0.91,0.14,798,0.7000000000000001,68,0.7000000000000001
+2023,9,16,7,0,11,1.33,0.025,0.63,37,698,175,0,0,2,37,698,0,175,0.293,53.800000000000004,78.60000000000001,0.91,0.14,798,0.7000000000000001,76,0.8
+2023,9,16,7,30,13.3,1.33,0.025,0.63,45,805,280,0,0,2,45,805,0,280,0.292,46.26,72.99,0.9,0.14,798,0.7000000000000001,67,0.8
+2023,9,16,8,0,15.5,1.32,0.025,0.63,50,873,384,0,0,0.4,50,873,0,384,0.292,35.800000000000004,67.48,0.9,0.14,798,0.7000000000000001,58,0.7000000000000001
+2023,9,16,8,30,17.1,1.32,0.025,0.63,53,919,483,0,0,0.4,53,919,0,483,0.291,32.34,62.13,0.9,0.14,798,0.7000000000000001,57,0.7000000000000001
+2023,9,16,9,0,18.6,1.32,0.025,0.63,57,953,576,0,0,-1.8,57,953,0,576,0.29,25.04,57.01,0.9,0.14,798,0.7000000000000001,55,0.6000000000000001
+2023,9,16,9,30,19.5,1.32,0.025,0.63,59,977,658,0,0,-1.8,59,977,0,658,0.289,23.68,52.21,0.9,0.14,798,0.7000000000000001,85,0.5
+2023,9,16,10,0,20.5,1.33,0.024,0.63,61,997,730,0,0,-3,61,997,0,730,0.28800000000000003,20.38,47.85,0.9,0.14,798,0.7000000000000001,115,0.30000000000000004
+2023,9,16,10,30,21.200000000000003,1.33,0.024,0.63,63,1012,790,0,0,-3,63,1012,0,790,0.28700000000000003,19.52,44.08,0.9,0.14,798,0.7000000000000001,148,0.4
+2023,9,16,11,0,22,1.31,0.023,0.63,63,1023,834,0,0,-3.8000000000000003,63,1023,0,834,0.28600000000000003,17.44,41.07,0.9,0.14,798,0.6000000000000001,182,0.5
+2023,9,16,11,30,22.5,1.31,0.023,0.63,64,1030,864,0,0,-3.9000000000000004,64,1030,0,864,0.28500000000000003,16.9,39.02,0.9,0.14,797,0.6000000000000001,192,0.6000000000000001
+2023,9,16,12,0,23.1,1.31,0.023,0.63,64,1033,877,0,0,-4.6000000000000005,64,1033,0,877,0.28400000000000003,15.39,38.07,0.9,0.14,797,0.6000000000000001,202,0.7000000000000001
+2023,9,16,12,30,23.5,1.31,0.023,0.63,64,1032,874,0,0,-4.6000000000000005,64,1032,0,874,0.28300000000000003,15.02,38.32,0.9,0.14,797,0.6000000000000001,208,0.7000000000000001
+2023,9,16,13,0,23.900000000000002,1.32,0.023,0.63,64,1029,855,0,0,-5.4,64,1029,0,855,0.28200000000000003,13.86,39.74,0.9,0.14,796,0.6000000000000001,214,0.8
+2023,9,16,13,30,24,1.32,0.023,0.63,62,1023,820,0,0,-5.4,62,1023,0,820,0.28200000000000003,13.77,42.21,0.9,0.14,796,0.6000000000000001,216,0.9
+2023,9,16,14,0,24.200000000000003,1.3,0.022,0.63,61,1013,770,0,0,-6,61,1013,0,770,0.28200000000000003,12.94,45.550000000000004,0.9,0.14,796,0.6000000000000001,218,0.9
+2023,9,16,14,30,24.1,1.3,0.022,0.63,58,999,706,0,0,-6,58,999,0,706,0.28200000000000003,13.01,49.59,0.9,0.14,796,0.6000000000000001,217,1
+2023,9,16,15,0,24,1.31,0.021,0.63,56,980,630,0,0,-6.6000000000000005,56,980,0,630,0.28200000000000003,12.52,54.14,0.9,0.14,795,0.6000000000000001,216,1.1
+2023,9,16,15,30,23.5,1.31,0.021,0.63,54,954,544,0,0,-6.6000000000000005,54,954,0,544,0.28200000000000003,12.9,59.09,0.9,0.14,795,0.6000000000000001,215,1.2000000000000002
+2023,9,16,16,0,23.1,1.32,0.021,0.63,50,919,448,0,0,-7,50,919,0,448,0.28300000000000003,12.8,64.32000000000001,0.9,0.14,795,0.6000000000000001,215,1.2000000000000002
+2023,9,16,16,30,22.200000000000003,1.32,0.021,0.63,45,866,345,0,0,-7,45,866,0,345,0.28300000000000003,13.51,69.75,0.9,0.14,795,0.6000000000000001,214,1.1
+2023,9,16,17,0,21.3,1.32,0.021,0.63,40,789,240,0,0,-4.800000000000001,40,789,0,240,0.28400000000000003,16.96,75.32000000000001,0.9,0.12,795,0.5,214,1
+2023,9,16,17,30,19.6,1.32,0.021,0.63,32,662,136,0,0,-4.800000000000001,32,662,0,136,0.28400000000000003,18.82,80.95,0.9,0.12,795,0.5,215,0.8
+2023,9,16,18,0,17.900000000000002,1.33,0.021,0.63,22,388,45,0,0,-3.6,22,388,0,45,0.28500000000000003,22.88,86.56,0.9,0.12,796,0.5,216,0.6000000000000001
+2023,9,16,18,30,17.3,1.33,0.021,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.28500000000000003,23.75,92.43,0.9,0.12,796,0.5,212,0.6000000000000001
+2023,9,16,19,0,16.8,1.32,0.021,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.28600000000000003,22.75,98.08,0.9,0.12,796,0.5,209,0.6000000000000001
+2023,9,16,19,30,16.3,1.32,0.021,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.28600000000000003,23.48,103.64,0.9,0.12,796,0.5,204,0.5
+2023,9,16,20,0,15.9,1.32,0.02,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28700000000000003,23.68,109.07000000000001,0.9,0.12,796,0.5,198,0.5
+2023,9,16,20,30,15.4,1.32,0.02,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28700000000000003,24.45,114.3,0.9,0.12,796,0.5,194,0.5
+2023,9,16,21,0,14.9,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.28800000000000003,24.990000000000002,119.26,0.9,0.12,796,0.5,190,0.6000000000000001
+2023,9,16,21,30,14.4,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,14,0,0.28800000000000003,25.8,123.86,0.9,0.12,796,0.5,188,0.6000000000000001
+2023,9,16,22,0,14,1.32,0.02,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28800000000000003,26.17,128,0.9,0.12,796,0.5,187,0.7000000000000001
+2023,9,16,22,30,13.4,1.32,0.02,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28800000000000003,27.21,131.54,0.9,0.12,796,0.5,189,0.8
+2023,9,16,23,0,12.700000000000001,1.32,0.02,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28800000000000003,28.650000000000002,134.33,0.9,0.12,796,0.5,191,0.9
+2023,9,16,23,30,12.200000000000001,1.32,0.02,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28800000000000003,29.6,136.22,0.9,0.12,796,0.5,196,0.9
+2023,9,17,0,0,11.600000000000001,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.28700000000000003,30.970000000000002,137.09,0.9,0.12,796,0.6000000000000001,201,1
+2023,9,17,0,30,11,1.32,0.02,0.63,0,0,0,0,0,-5,0,0,0,0,0.28700000000000003,32.22,136.87,0.9,0.12,796,0.6000000000000001,206,1
+2023,9,17,1,0,10.5,1.33,0.02,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.28600000000000003,33.42,135.59,0.9,0.12,796,0.6000000000000001,211,1.1
+2023,9,17,1,30,10.200000000000001,1.33,0.02,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.28600000000000003,34.09,133.33,0.91,0.12,796,0.6000000000000001,213,1.1
+2023,9,17,2,0,9.9,1.34,0.021,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.28600000000000003,34.89,130.22,0.91,0.12,796,0.6000000000000001,215,1.1
+2023,9,17,2,30,9.8,1.34,0.021,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.28600000000000003,35.12,126.43,0.91,0.12,796,0.7000000000000001,212,1.1
+2023,9,17,3,0,9.600000000000001,1.34,0.021,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.28600000000000003,36.06,122.10000000000001,0.91,0.12,796,0.7000000000000001,210,1
+2023,9,17,3,30,9.4,1.34,0.021,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.28600000000000003,36.550000000000004,117.35000000000001,0.91,0.12,796,0.7000000000000001,205,1
+2023,9,17,4,0,9.200000000000001,1.36,0.022,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.28700000000000003,37.63,112.27,0.92,0.12,796,0.8,201,1
+2023,9,17,4,30,9,1.36,0.022,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.28700000000000003,38.14,106.96000000000001,0.92,0.12,796,0.8,197,1.1
+2023,9,17,5,0,8.700000000000001,1.37,0.023,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.28800000000000003,39.47,101.48,0.92,0.12,796,0.8,194,1.1
+2023,9,17,5,30,9,1.37,0.023,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.28800000000000003,38.69,95.89,0.92,0.12,796,0.9,192,1.1
+2023,9,17,6,0,9.200000000000001,1.3800000000000001,0.024,0.63,10,128,10,0,0,-3.6,10,128,0,10,0.28800000000000003,40.31,89.81,0.92,0.12,796,0.9,190,1.1
+2023,9,17,6,30,11.200000000000001,1.3800000000000001,0.024,0.63,26,499,75,0,0,-3.6,26,499,0,75,0.289,35.28,84.41,0.92,0.12,796,0.9,190,1.5
+2023,9,17,7,0,13.200000000000001,1.4000000000000001,0.024,0.63,36,687,170,0,0,-3.2,36,687,0,170,0.29,31.8,78.78,0.92,0.12,796,0.9,190,1.9000000000000001
+2023,9,17,7,30,15.4,1.4000000000000001,0.024,0.63,43,792,272,0,0,-3.2,43,792,0,272,0.29,27.59,73.18,0.92,0.12,796,1,202,2.3000000000000003
+2023,9,17,8,0,17.6,1.42,0.024,0.63,48,858,374,0,0,-1.6,48,858,0,374,0.29,27.05,67.68,0.92,0.12,796,1,213,2.7
+2023,9,17,8,30,19.1,1.42,0.024,0.63,53,905,473,0,0,-1.6,53,905,0,473,0.29,24.63,62.34,0.92,0.12,796,1,217,3.1
+2023,9,17,9,0,20.700000000000003,1.46,0.023,0.63,56,939,564,0,0,0.7000000000000001,56,939,0,564,0.29,26.47,57.24,0.92,0.12,797,1,221,3.6
+2023,9,17,9,30,21.5,1.46,0.023,0.63,58,962,644,0,0,0.7000000000000001,58,962,0,644,0.29,25.17,52.46,0.92,0.12,796,1.1,221,3.7
+2023,9,17,10,0,22.200000000000003,1.48,0.023,0.63,61,979,714,0,0,1.4000000000000001,61,979,0,714,0.29,25.240000000000002,48.13,0.92,0.12,796,1.1,222,3.7
+2023,9,17,10,30,22.8,1.48,0.023,0.63,60,993,770,0,0,1.4000000000000001,60,993,0,770,0.29,24.34,44.39,0.92,0.12,796,1.1,223,3.8000000000000003
+2023,9,17,11,0,23.400000000000002,1.55,0.019,0.63,59,1005,813,0,0,1.4000000000000001,59,1005,0,813,0.29,23.54,41.410000000000004,0.92,0.12,796,1.1,223,3.8000000000000003
+2023,9,17,11,30,23.8,1.55,0.019,0.63,60,1010,841,0,0,1.4000000000000001,60,1010,0,841,0.29,22.98,39.38,0.92,0.12,796,1.1,224,3.7
+2023,9,17,12,0,24.200000000000003,1.58,0.019,0.63,60,1012,853,0,0,1.3,60,1012,0,853,0.29,22.26,38.45,0.92,0.12,795,1.1,225,3.7
+2023,9,17,12,30,24.400000000000002,1.58,0.019,0.63,61,1010,849,0,0,1.3,61,1010,0,849,0.29,22,38.71,0.93,0.12,795,1.2000000000000002,226,3.6
+2023,9,17,13,0,24.700000000000003,1.61,0.02,0.63,60,1006,829,0,0,1.1,60,1006,0,829,0.29,21.330000000000002,40.13,0.93,0.12,795,1.2000000000000002,228,3.6
+2023,9,17,13,30,24.700000000000003,1.61,0.02,0.63,61,997,795,0,0,1.1,61,997,0,795,0.29,21.3,42.6,0.93,0.12,794,1.2000000000000002,229,3.5
+2023,9,17,14,0,24.8,1.5,0.025,0.63,62,983,746,0,0,0.9,62,983,0,746,0.29,20.85,45.93,0.93,0.12,794,1.2000000000000002,231,3.5
+2023,9,17,14,30,24.6,1.5,0.025,0.63,61,967,683,0,0,0.9,61,967,0,683,0.29,21.1,49.95,0.93,0.12,794,1.2000000000000002,231,3.4000000000000004
+2023,9,17,15,0,24.400000000000002,1.5,0.026000000000000002,0.63,58,945,607,0,0,0.7000000000000001,58,945,0,607,0.29,21.03,54.5,0.93,0.12,794,1.2000000000000002,232,3.3000000000000003
+2023,9,17,15,30,23.900000000000002,1.5,0.026000000000000002,0.63,56,914,521,0,0,0.7000000000000001,56,914,0,521,0.29,21.64,59.43,0.9400000000000001,0.12,793,1.2000000000000002,232,3.2
+2023,9,17,16,0,23.5,1.5,0.029,0.63,53,872,426,0,0,0.5,53,872,0,426,0.29,21.96,64.66,0.9400000000000001,0.12,793,1.2000000000000002,231,3.2
+2023,9,17,16,30,22.6,1.5,0.029,0.63,48,812,325,0,0,0.5,48,812,0,325,0.29,23.18,70.08,0.9400000000000001,0.12,793,1.2000000000000002,230,2.8000000000000003
+2023,9,17,17,0,21.700000000000003,1.51,0.033,0.63,43,722,222,0,0,0.9,43,722,0,222,0.29,25.22,75.64,0.9500000000000001,0.12,793,1.3,228,2.4000000000000004
+2023,9,17,17,30,19.6,1.51,0.033,0.63,34,577,122,0,0,0.9,34,577,0,122,0.291,28.69,81.27,0.9500000000000001,0.12,793,1.3,226,1.7000000000000002
+2023,9,17,18,0,17.5,1.52,0.038,0.63,21,299,37,0,0,2,21,299,0,37,0.291,35.44,86.87,0.9500000000000001,0.12,793,1.3,224,1.1
+2023,9,17,18,30,17,1.52,0.038,0.63,0,0,0,0,0,2.1,0,0,0,0,0.291,36.62,92.75,0.96,0.12,794,1.4000000000000001,222,1.1
+2023,9,17,19,0,16.400000000000002,1.53,0.045,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.291,37.03,98.4,0.96,0.12,794,1.4000000000000001,220,1.1
+2023,9,17,19,30,16,1.53,0.045,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.291,37.980000000000004,103.97,0.96,0.12,794,1.4000000000000001,219,1.1
+2023,9,17,20,0,15.700000000000001,1.52,0.052000000000000005,0.63,0,0,0,0,3,1.6,0,0,0,0,0.291,38.38,109.4,0.97,0.12,794,1.5,218,1.2000000000000002
+2023,9,17,20,30,15.3,1.52,0.052000000000000005,0.63,0,0,0,0,3,1.6,0,0,0,0,0.292,39.37,114.64,0.97,0.12,794,1.5,219,1.2000000000000002
+2023,9,17,21,0,15,1.52,0.057,0.63,0,0,0,0,5,1.5,0,0,0,0,0.292,39.89,119.61,0.97,0.12,794,1.5,220,1.2000000000000002
+2023,9,17,21,30,14.8,1.52,0.057,0.63,0,0,0,0,3,1.5,0,0,0,0,0.293,40.410000000000004,124.23,0.97,0.12,794,1.5,222,1.2000000000000002
+2023,9,17,22,0,14.5,1.53,0.057,0.63,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.293,40.97,128.38,0.97,0.12,794,1.5,224,1.2000000000000002
+2023,9,17,22,30,14.3,1.53,0.057,0.63,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.293,41.5,131.92000000000002,0.97,0.12,794,1.5,226,1.3
+2023,9,17,23,0,14,1.54,0.054,0.63,0,0,0,0,5,1.3,0,0,0,0,0.294,42.07,134.72,0.96,0.12,793,1.5,228,1.3
+2023,9,17,23,30,13.8,1.54,0.054,0.63,0,0,0,0,5,1.3,0,0,0,0,0.294,42.62,136.61,0.96,0.12,793,1.4000000000000001,229,1.3
+2023,9,18,0,0,13.5,1.54,0.05,0.63,0,0,0,0,3,1.3,0,0,0,0,0.294,43.34,137.48,0.96,0.12,793,1.4000000000000001,230,1.3
+2023,9,18,0,30,13.200000000000001,1.54,0.05,0.63,0,0,0,0,0,1.3,0,0,0,0,0.294,44.19,137.25,0.96,0.12,793,1.4000000000000001,232,1.2000000000000002
+2023,9,18,1,0,13,1.55,0.047,0.63,0,0,0,0,0,1.3,0,0,0,0,0.295,44.76,135.94,0.96,0.12,793,1.4000000000000001,233,1.2000000000000002
+2023,9,18,1,30,12.8,1.55,0.047,0.63,0,0,0,0,0,1.3,0,0,0,0,0.295,45.35,133.65,0.96,0.12,793,1.4000000000000001,235,1.1
+2023,9,18,2,0,12.600000000000001,1.56,0.045,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.295,45.89,130.52,0.96,0.12,793,1.4000000000000001,237,1
+2023,9,18,2,30,12.600000000000001,1.56,0.045,0.63,0,0,0,0,3,1.2000000000000002,0,0,0,0,0.296,45.89,126.71000000000001,0.96,0.12,793,1.4000000000000001,238,0.9
+2023,9,18,3,0,12.5,1.56,0.044,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.296,45.980000000000004,122.35000000000001,0.96,0.12,793,1.4000000000000001,240,0.9
+2023,9,18,3,30,12.4,1.56,0.044,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.297,46.28,117.58,0.96,0.12,793,1.4000000000000001,237,0.8
+2023,9,18,4,0,12.4,1.56,0.043000000000000003,0.63,0,0,0,0,0,1.1,0,0,0,0,0.297,45.97,112.49000000000001,0.96,0.12,793,1.4000000000000001,235,0.7000000000000001
+2023,9,18,4,30,12.3,1.56,0.043000000000000003,0.63,0,0,0,0,3,1.1,0,0,0,0,0.298,46.28,107.17,0.96,0.12,793,1.4000000000000001,229,0.6000000000000001
+2023,9,18,5,0,12.3,1.55,0.042,0.63,0,0,0,0,3,1,0,0,0,0,0.298,45.980000000000004,101.68,0.9500000000000001,0.12,793,1.3,223,0.5
+2023,9,18,5,30,12.4,1.55,0.042,0.63,0,0,0,0,5,1,0,0,0,0,0.298,45.68,96.07000000000001,0.9500000000000001,0.12,793,1.3,208,0.5
+2023,9,18,6,0,12.5,1.55,0.042,0.63,7,74,7,4,3,1,2,0,57,2,0.298,45.51,89.98,0.9500000000000001,0.12,793,1.3,193,0.5
+2023,9,18,6,30,13.9,1.55,0.042,0.63,28,430,69,6,5,1,23,4,93,23,0.299,41.550000000000004,84.59,0.9500000000000001,0.12,793,1.3,190,0.9
+2023,9,18,7,0,15.200000000000001,1.54,0.043000000000000003,0.63,41,624,160,2,7,1.1,50,25,21,55,0.299,38.28,78.97,0.96,0.12,793,1.4000000000000001,187,1.2000000000000002
+2023,9,18,7,30,16.900000000000002,1.54,0.043000000000000003,0.63,49,736,260,0,7,1.1,56,14,0,60,0.299,34.35,73.38,0.96,0.12,793,1.4000000000000001,197,1.5
+2023,9,18,8,0,18.7,1.53,0.047,0.63,57,806,360,0,7,1.3,101,91,4,135,0.298,31.13,67.89,0.96,0.12,793,1.5,207,1.8
+2023,9,18,8,30,19.900000000000002,1.53,0.047,0.63,63,853,456,2,8,1.3,183,155,32,254,0.297,28.900000000000002,62.56,0.96,0.12,793,1.5,217,1.9000000000000001
+2023,9,18,9,0,21.1,1.53,0.053,0.63,69,884,544,0,8,1.9000000000000001,245,139,7,320,0.296,28.07,57.47,0.97,0.12,793,1.6,226,2.1
+2023,9,18,9,30,21.8,1.53,0.053,0.63,73,910,624,1,7,1.9000000000000001,262,101,11,323,0.294,26.900000000000002,52.71,0.97,0.12,793,1.6,230,2.2
+2023,9,18,10,0,22.5,1.55,0.055,0.63,76,928,692,2,8,2.8000000000000003,266,159,36,372,0.293,27.46,48.4,0.97,0.12,793,1.7000000000000002,234,2.3000000000000003
+2023,9,18,10,30,22.900000000000002,1.55,0.055,0.63,76,946,749,0,0,2.8000000000000003,171,703,0,671,0.292,26.78,44.69,0.97,0.12,792,1.7000000000000002,240,2.4000000000000004
+2023,9,18,11,0,23.3,1.6300000000000001,0.045,0.63,75,962,793,0,7,3.7,295,404,0,596,0.29,27.77,41.74,0.96,0.12,792,1.7000000000000002,246,2.4000000000000004
+2023,9,18,11,30,23.400000000000002,1.6300000000000001,0.045,0.63,76,967,820,0,7,3.7,212,641,0,705,0.289,27.61,39.74,0.96,0.12,792,1.7000000000000002,250,2.6
+2023,9,18,12,0,23.5,1.6400000000000001,0.048,0.63,77,968,831,0,8,4.4,198,676,0,725,0.28800000000000003,28.82,38.83,0.96,0.12,791,1.7000000000000002,254,2.7
+2023,9,18,12,30,23.200000000000003,1.6400000000000001,0.048,0.63,80,961,826,0,6,4.3,196,90,0,266,0.28600000000000003,29.35,39.1,0.97,0.12,791,1.8,246,3
+2023,9,18,13,0,22.900000000000002,1.59,0.057,0.63,82,950,804,0,7,5.300000000000001,52,0,0,52,0.28400000000000003,31.84,40.53,0.97,0.12,791,1.9000000000000001,239,3.2
+2023,9,18,13,30,22.1,1.59,0.057,0.63,84,932,766,0,7,5.300000000000001,236,59,0,279,0.28300000000000003,33.42,42.99,0.97,0.12,791,1.9000000000000001,232,3.5
+2023,9,18,14,0,21.3,1.53,0.079,0.63,88,906,714,0,7,6.1000000000000005,280,36,0,305,0.28200000000000003,37.33,46.31,0.98,0.12,791,2,226,3.7
+2023,9,18,14,30,20.6,1.53,0.079,0.63,86,887,652,0,7,6.1000000000000005,285,215,7,422,0.28200000000000003,38.96,50.32,0.97,0.12,791,2,221,3.7
+2023,9,18,15,0,19.900000000000002,1.57,0.079,0.63,82,862,578,0,6,6.4,257,176,7,358,0.28200000000000003,41.49,54.85,0.97,0.12,791,1.9000000000000001,217,3.7
+2023,9,18,15,30,19.400000000000002,1.57,0.079,0.63,75,837,496,0,7,6.4,136,477,25,376,0.28300000000000003,42.800000000000004,59.78,0.97,0.12,791,1.9000000000000001,208,3.6
+2023,9,18,16,0,19,1.6300000000000001,0.064,0.63,67,803,406,0,7,6.5,101,632,54,368,0.28300000000000003,44.01,64.99,0.97,0.12,790,1.8,198,3.6
+2023,9,18,16,30,18.400000000000002,1.6300000000000001,0.064,0.63,60,738,307,0,7,6.5,108,433,21,253,0.28300000000000003,45.75,70.41,0.97,0.12,791,1.8,188,3.5
+2023,9,18,17,0,17.8,1.6300000000000001,0.066,0.63,51,642,207,0,7,6.9,68,483,46,185,0.28400000000000003,48.86,75.96000000000001,0.97,0.12,791,1.8,177,3.5
+2023,9,18,17,30,16.8,1.6300000000000001,0.066,0.63,40,479,110,4,7,6.9,57,246,79,93,0.28500000000000003,52.03,81.59,0.97,0.12,791,1.8,169,3.2
+2023,9,18,18,0,15.8,1.58,0.081,0.63,21,204,31,7,7,7.9,21,3,100,21,0.28500000000000003,59.2,87.18,0.98,0.12,791,1.9000000000000001,161,2.8000000000000003
+2023,9,18,18,30,15.200000000000001,1.58,0.081,0.63,0,0,0,1,7,7.800000000000001,0,0,14,0,0.28600000000000003,61.51,93.07000000000001,0.97,0.12,791,1.9000000000000001,158,2.9000000000000004
+2023,9,18,19,0,14.5,1.59,0.081,0.63,0,0,0,0,6,8.6,0,0,0,0,0.28700000000000003,67.84,98.72,0.97,0.12,791,1.9000000000000001,154,2.9000000000000004
+2023,9,18,19,30,14.100000000000001,1.59,0.081,0.63,0,0,0,0,6,8.6,0,0,0,0,0.28800000000000003,69.61,104.3,0.97,0.12,791,1.8,152,2.7
+2023,9,18,20,0,13.600000000000001,1.6300000000000001,0.073,0.63,0,0,0,0,7,8.9,0,0,0,0,0.28800000000000003,73.39,109.74000000000001,0.97,0.12,791,1.8,150,2.5
+2023,9,18,20,30,13.200000000000001,1.6300000000000001,0.073,0.63,0,0,0,0,7,8.9,0,0,0,0,0.28800000000000003,75.32000000000001,114.99000000000001,0.97,0.12,791,1.8,151,2
+2023,9,18,21,0,12.700000000000001,1.62,0.07,0.63,0,0,0,0,7,8.9,0,0,0,0,0.289,77.57000000000001,119.97,0.97,0.12,791,1.8,153,1.5
+2023,9,18,21,30,12.3,1.62,0.07,0.63,0,0,0,0,7,8.9,0,0,0,0,0.289,79.63,124.59,0.97,0.12,791,1.7000000000000002,162,1.2000000000000002
+2023,9,18,22,0,11.9,1.61,0.069,0.63,0,0,0,0,6,8.700000000000001,0,0,0,0,0.289,80.73,128.75,0.96,0.12,791,1.7000000000000002,170,1
+2023,9,18,22,30,11.600000000000001,1.61,0.069,0.63,0,0,0,0,7,8.700000000000001,0,0,0,0,0.289,82.34,132.31,0.96,0.12,791,1.7000000000000002,184,1
+2023,9,18,23,0,11.200000000000001,1.61,0.069,0.63,0,0,0,0,7,8.5,0,0,0,0,0.289,83.57000000000001,135.12,0.96,0.12,791,1.7000000000000002,197,1
+2023,9,18,23,30,10.9,1.61,0.069,0.63,0,0,0,0,7,8.5,0,0,0,0,0.289,85.25,137.01,0.96,0.12,791,1.7000000000000002,200,1
+2023,9,19,0,0,10.5,1.62,0.068,0.63,0,0,0,0,7,8.4,0,0,0,0,0.29,86.77,137.87,0.96,0.12,791,1.7000000000000002,203,1.1
+2023,9,19,0,30,10.200000000000001,1.62,0.068,0.63,0,0,0,0,8,8.4,0,0,0,0,0.29,88.52,137.62,0.96,0.12,791,1.7000000000000002,202,1.2000000000000002
+2023,9,19,1,0,9.8,1.6300000000000001,0.067,0.63,0,0,0,0,8,8.3,0,0,0,0,0.29,90.32000000000001,136.3,0.96,0.12,791,1.7000000000000002,201,1.2000000000000002
+2023,9,19,1,30,9.5,1.6300000000000001,0.067,0.63,0,0,0,0,0,8.3,0,0,0,0,0.29,92.15,133.98,0.96,0.12,791,1.6,201,1.2000000000000002
+2023,9,19,2,0,9.1,1.6300000000000001,0.065,0.63,0,0,0,0,0,8.3,0,0,0,0,0.291,94.67,130.82,0.96,0.12,791,1.6,202,1.2000000000000002
+2023,9,19,2,30,8.9,1.6300000000000001,0.065,0.63,0,0,0,0,7,8.3,0,0,0,0,0.291,95.96000000000001,126.98,0.96,0.12,791,1.6,204,1.2000000000000002
+2023,9,19,3,0,8.6,1.62,0.064,0.63,0,0,0,0,8,8.3,0,0,0,0,0.291,98.19,122.60000000000001,0.96,0.12,791,1.6,206,1.1
+2023,9,19,3,30,8.3,1.62,0.064,0.63,0,0,0,0,0,8.3,0,0,0,0,0.292,100,117.81,0.96,0.12,791,1.6,207,1.1
+2023,9,19,4,0,8.1,1.6,0.064,0.63,0,0,0,0,0,8.1,0,0,0,0,0.293,100,112.71000000000001,0.96,0.12,791,1.5,208,1.1
+2023,9,19,4,30,7.9,1.6,0.064,0.63,0,0,0,0,0,7.9,0,0,0,0,0.293,100,107.37,0.96,0.12,791,1.5,208,1
+2023,9,19,5,0,7.800000000000001,1.57,0.064,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.294,100,101.87,0.96,0.12,791,1.5,208,1
+2023,9,19,5,30,8.1,1.57,0.064,0.63,0,0,0,0,0,8.1,0,0,0,0,0.294,100,96.26,0.96,0.12,791,1.5,210,1.1
+2023,9,19,6,0,8.4,1.55,0.066,0.63,6,56,6,0,0,8.3,6,56,0,6,0.294,99.09,90.13,0.96,0.12,791,1.5,213,1.3
+2023,9,19,6,30,9.8,1.55,0.066,0.63,30,369,64,0,0,8.3,30,369,0,64,0.294,90.19,84.77,0.96,0.12,791,1.5,213,1.6
+2023,9,19,7,0,11.3,1.54,0.066,0.63,45,573,153,0,0,8.200000000000001,45,573,0,153,0.295,81.13,79.16,0.96,0.12,791,1.5,213,1.9000000000000001
+2023,9,19,7,30,13.200000000000001,1.54,0.066,0.63,56,694,252,0,0,8.200000000000001,56,694,0,252,0.294,71.62,73.57000000000001,0.96,0.12,791,1.5,230,1.8
+2023,9,19,8,0,15.100000000000001,1.52,0.067,0.63,64,773,352,0,0,7.2,68,752,0,349,0.294,59.26,68.09,0.9500000000000001,0.12,791,1.5,247,1.8
+2023,9,19,8,30,17,1.52,0.067,0.63,70,826,448,0,5,7.2,196,146,0,263,0.293,52.51,62.77,0.9500000000000001,0.12,791,1.6,263,1.8
+2023,9,19,9,0,18.900000000000002,1.5,0.07,0.63,75,864,537,0,3,4.3,280,134,0,352,0.293,38.15,57.7,0.9500000000000001,0.12,791,1.6,279,1.8
+2023,9,19,9,30,19.8,1.5,0.07,0.63,81,892,618,3,5,4.3,246,36,43,268,0.292,36.08,52.97,0.96,0.12,791,1.6,277,1.7000000000000002
+2023,9,19,10,0,20.700000000000003,1.48,0.073,0.63,84,912,686,2,8,3.1,289,235,29,444,0.291,31.400000000000002,48.68,0.96,0.12,791,1.6,275,1.6
+2023,9,19,10,30,21.200000000000003,1.48,0.073,0.63,86,929,743,0,8,3.1,186,691,0,675,0.29,30.45,45,0.96,0.12,791,1.6,270,1.5
+2023,9,19,11,0,21.700000000000003,1.54,0.067,0.63,86,943,786,0,8,2.7,205,649,0,687,0.289,28.69,42.08,0.96,0.12,791,1.6,264,1.5
+2023,9,19,11,30,22,1.54,0.067,0.63,87,949,813,0,8,2.7,237,618,0,710,0.289,28.17,40.1,0.96,0.12,791,1.6,261,1.6
+2023,9,19,12,0,22.200000000000003,1.53,0.069,0.63,88,951,825,0,0,2.5,159,827,0,800,0.28800000000000003,27.3,39.22,0.96,0.12,790,1.6,258,1.6
+2023,9,19,12,30,22.200000000000003,1.53,0.069,0.63,87,951,821,0,8,2.5,233,540,0,650,0.28700000000000003,27.3,39.5,0.96,0.12,790,1.6,256,1.6
+2023,9,19,13,0,22.3,1.55,0.067,0.63,87,947,802,0,7,2.3000000000000003,282,165,0,407,0.28600000000000003,26.89,40.93,0.96,0.12,790,1.6,255,1.6
+2023,9,19,13,30,22.3,1.55,0.067,0.63,83,942,768,0,6,2.3000000000000003,78,4,0,81,0.28600000000000003,26.89,43.38,0.96,0.12,790,1.6,251,1.7000000000000002
+2023,9,19,14,0,22.3,1.61,0.059000000000000004,0.63,79,934,720,0,6,2.3000000000000003,33,0,0,33,0.28600000000000003,26.73,46.69,0.9500000000000001,0.12,790,1.6,248,1.7000000000000002
+2023,9,19,14,30,22.200000000000003,1.61,0.059000000000000004,0.63,77,916,657,0,6,2.2,74,4,0,77,0.28600000000000003,26.85,50.69,0.96,0.12,789,1.6,246,1.7000000000000002
+2023,9,19,15,0,22.1,1.61,0.059000000000000004,0.63,73,892,582,0,7,2.1,119,202,14,234,0.28600000000000003,26.75,55.21,0.96,0.12,789,1.6,243,1.8
+2023,9,19,15,30,21.700000000000003,1.61,0.059000000000000004,0.63,70,855,496,0,8,2.1,161,563,21,441,0.28600000000000003,27.41,60.120000000000005,0.96,0.12,789,1.6,247,1.9000000000000001
+2023,9,19,16,0,21.200000000000003,1.56,0.067,0.63,67,803,402,0,8,2.1,116,625,43,377,0.28600000000000003,28.35,65.33,0.96,0.12,789,1.6,251,2.1
+2023,9,19,16,30,20.400000000000002,1.56,0.067,0.63,62,726,301,0,7,2.1,73,688,75,300,0.28700000000000003,29.810000000000002,70.74,0.97,0.12,790,1.6,260,2
+2023,9,19,17,0,19.5,1.49,0.083,0.63,54,611,199,0,7,3.1,51,603,64,194,0.28700000000000003,33.65,76.28,0.97,0.12,790,1.7000000000000002,269,1.9000000000000001
+2023,9,19,17,30,18.2,1.49,0.083,0.63,42,440,104,4,7,3.1,53,207,68,82,0.28800000000000003,36.49,81.9,0.97,0.12,790,1.7000000000000002,279,1.4000000000000001
+2023,9,19,18,0,16.8,1.45,0.098,0.63,19,157,26,6,6,4.1000000000000005,16,1,86,16,0.28800000000000003,42.77,87.48,0.97,0.12,790,1.7000000000000002,290,0.9
+2023,9,19,18,30,16.2,1.45,0.098,0.63,0,0,0,0,6,4.1000000000000005,0,0,0,0,0.28800000000000003,44.42,93.39,0.97,0.12,790,1.7000000000000002,307,0.7000000000000001
+2023,9,19,19,0,15.5,1.53,0.092,0.63,0,0,0,0,6,4.4,0,0,0,0,0.28800000000000003,47.5,99.05,0.97,0.12,791,1.7000000000000002,324,0.5
+2023,9,19,19,30,15.100000000000001,1.53,0.092,0.63,0,0,0,0,7,4.4,0,0,0,0,0.28800000000000003,48.730000000000004,104.63,0.96,0.12,791,1.6,190,0.5
+2023,9,19,20,0,14.700000000000001,1.6500000000000001,0.067,0.63,0,0,0,0,7,4.2,0,0,0,0,0.28800000000000003,49.29,110.07000000000001,0.96,0.12,791,1.6,55,0.6000000000000001
+2023,9,19,20,30,14.200000000000001,1.6500000000000001,0.067,0.63,0,0,0,0,3,4.2,0,0,0,0,0.28800000000000003,50.84,115.33,0.96,0.12,790,1.5,71,0.7000000000000001
+2023,9,19,21,0,13.600000000000001,1.67,0.056,0.63,0,0,0,0,3,4,0,0,0,0,0.28800000000000003,52.300000000000004,120.32000000000001,0.96,0.12,790,1.5,87,0.9
+2023,9,19,21,30,13.3,1.67,0.056,0.63,0,0,0,0,3,4,0,0,0,0,0.289,53.33,124.96000000000001,0.96,0.12,790,1.5,96,0.9
+2023,9,19,22,0,12.9,1.61,0.056,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.289,54.300000000000004,129.13,0.96,0.12,790,1.5,104,0.9
+2023,9,19,22,30,12.700000000000001,1.61,0.056,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.289,55.02,132.7,0.96,0.12,790,1.5,114,0.9
+2023,9,19,23,0,12.5,1.54,0.059000000000000004,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,55.24,135.51,0.96,0.12,790,1.5,124,0.9
+2023,9,19,23,30,12.200000000000001,1.54,0.059000000000000004,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,56.34,137.41,0.96,0.12,790,1.5,137,0.9
+2023,9,20,0,0,11.8,1.51,0.055,0.63,0,0,0,0,0,3.6,0,0,0,0,0.28800000000000003,57.11,138.26,0.96,0.12,790,1.5,150,0.9
+2023,9,20,0,30,11.600000000000001,1.51,0.055,0.63,0,0,0,0,0,3.6,0,0,0,0,0.28700000000000003,57.870000000000005,138,0.96,0.12,790,1.4000000000000001,167,0.8
+2023,9,20,1,0,11.4,1.46,0.054,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28700000000000003,57.69,136.65,0.96,0.12,790,1.4000000000000001,184,0.7000000000000001
+2023,9,20,1,30,11.3,1.46,0.054,0.63,0,0,0,0,5,3.3000000000000003,0,0,0,0,0.28700000000000003,58.07,134.31,0.96,0.12,790,1.4000000000000001,198,0.7000000000000001
+2023,9,20,2,0,11.100000000000001,1.42,0.056,0.63,0,0,0,0,4,3.1,0,0,0,0,0.28700000000000003,57.79,131.12,0.96,0.12,789,1.4000000000000001,213,0.7000000000000001
+2023,9,20,2,30,11,1.42,0.056,0.63,0,0,0,0,5,3.1,0,0,0,0,0.28800000000000003,58.18,127.26,0.96,0.12,789,1.4000000000000001,216,0.6000000000000001
+2023,9,20,3,0,10.9,1.43,0.052000000000000005,0.63,0,0,0,0,5,2.7,0,0,0,0,0.289,57.01,122.85000000000001,0.9500000000000001,0.12,789,1.3,219,0.6000000000000001
+2023,9,20,3,30,10.600000000000001,1.43,0.052000000000000005,0.63,0,0,0,0,0,2.7,0,0,0,0,0.29,58.15,118.04,0.9500000000000001,0.12,789,1.3,209,0.7000000000000001
+2023,9,20,4,0,10.4,1.45,0.047,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.291,57.11,112.92,0.9500000000000001,0.12,789,1.2000000000000002,200,0.8
+2023,9,20,4,30,10.100000000000001,1.45,0.047,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.292,58.27,107.57000000000001,0.9500000000000001,0.12,789,1.2000000000000002,196,0.9
+2023,9,20,5,0,9.700000000000001,1.45,0.044,0.63,0,0,0,0,0,1.8,0,0,0,0,0.292,57.74,102.06,0.9500000000000001,0.12,789,1.2000000000000002,192,1
+2023,9,20,5,30,9.8,1.45,0.044,0.63,0,0,0,0,5,1.8,0,0,0,0,0.293,57.35,96.45,0.9500000000000001,0.12,789,1.2000000000000002,188,1.2000000000000002
+2023,9,20,6,0,9.8,1.44,0.042,0.63,6,68,6,1,0,1.4000000000000001,6,60,11,6,0.293,56.03,90.3,0.9400000000000001,0.12,789,1.1,184,1.3
+2023,9,20,6,30,11.4,1.44,0.042,0.63,27,421,64,2,0,1.4000000000000001,31,258,36,54,0.294,50.38,84.95,0.9400000000000001,0.12,789,1.1,182,2
+2023,9,20,7,0,13,1.42,0.04,0.63,39,631,156,0,0,1.2000000000000002,42,612,0,155,0.295,44.47,79.34,0.9400000000000001,0.12,789,1.1,180,2.8000000000000003
+2023,9,20,7,30,15.100000000000001,1.42,0.04,0.63,48,752,258,0,0,1.2000000000000002,48,752,0,258,0.295,38.83,73.76,0.9400000000000001,0.12,789,1.1,185,3.4000000000000004
+2023,9,20,8,0,17.1,1.3800000000000001,0.038,0.63,54,830,361,0,0,-1,54,830,0,361,0.295,29.240000000000002,68.29,0.9400000000000001,0.12,789,1.1,190,4.1000000000000005
+2023,9,20,8,30,18.6,1.3800000000000001,0.038,0.63,58,883,459,0,0,-1,58,883,0,459,0.294,26.62,62.99,0.9400000000000001,0.12,789,1,197,4.5
+2023,9,20,9,0,20.1,1.34,0.036000000000000004,0.63,62,921,551,0,0,-3,62,921,0,551,0.294,20.93,57.94,0.9400000000000001,0.12,789,1,203,4.9
+2023,9,20,9,30,21,1.34,0.036000000000000004,0.63,65,950,634,0,0,-3,65,950,0,634,0.293,19.81,53.22,0.9400000000000001,0.12,789,1,208,5
+2023,9,20,10,0,21.900000000000002,1.29,0.034,0.63,67,972,705,0,0,-3.2,67,972,0,705,0.293,18.36,48.96,0.9400000000000001,0.12,789,0.9,212,5.2
+2023,9,20,10,30,22.6,1.29,0.034,0.63,67,990,763,0,0,-3.2,67,990,0,763,0.292,17.6,45.31,0.93,0.12,789,0.9,213,5.300000000000001
+2023,9,20,11,0,23.200000000000003,1.26,0.026000000000000002,0.63,65,1005,807,0,0,-3.4000000000000004,65,1005,0,807,0.291,16.78,42.410000000000004,0.93,0.12,788,0.9,213,5.5
+2023,9,20,11,30,23.700000000000003,1.26,0.026000000000000002,0.63,65,1011,834,0,0,-3.4000000000000004,120,875,0,786,0.291,16.28,40.46,0.93,0.12,788,0.9,213,5.5
+2023,9,20,12,0,24.200000000000003,1.23,0.026000000000000002,0.63,65,1013,846,0,0,-3.8000000000000003,193,718,0,746,0.29,15.31,39.6,0.93,0.12,788,0.9,212,5.5
+2023,9,20,12,30,24.400000000000002,1.23,0.026000000000000002,0.63,65,1014,843,0,0,-3.8000000000000003,134,847,0,784,0.289,15.11,39.89,0.93,0.12,787,0.9,211,5.4
+2023,9,20,13,0,24.700000000000003,1.21,0.024,0.63,64,1012,824,0,0,-4.4,184,756,0,752,0.28800000000000003,14.16,41.32,0.93,0.12,787,0.9,210,5.4
+2023,9,20,13,30,24.700000000000003,1.21,0.024,0.63,63,1005,789,0,8,-4.4,199,718,0,717,0.28800000000000003,14.16,43.77,0.93,0.12,787,0.9,210,5.5
+2023,9,20,14,0,24.700000000000003,1.17,0.024,0.63,62,994,739,0,0,-5,119,870,0,712,0.28800000000000003,13.540000000000001,47.07,0.9400000000000001,0.12,786,0.9,209,5.6000000000000005
+2023,9,20,14,30,24.400000000000002,1.17,0.024,0.63,60,979,675,0,7,-5,222,504,0,539,0.28800000000000003,13.780000000000001,51.06,0.9400000000000001,0.12,786,0.9,210,5.7
+2023,9,20,15,0,24.1,1.1400000000000001,0.023,0.63,57,958,599,0,7,-5.5,169,528,0,468,0.28800000000000003,13.61,55.57,0.9400000000000001,0.12,786,0.9,210,5.800000000000001
+2023,9,20,15,30,23.5,1.1400000000000001,0.023,0.63,54,929,512,0,7,-5.5,157,580,7,443,0.28800000000000003,14.1,60.47,0.9400000000000001,0.12,786,0.9,210,5.800000000000001
+2023,9,20,16,0,22.900000000000002,1.11,0.023,0.63,50,888,416,0,7,-5.6000000000000005,200,168,0,269,0.289,14.44,65.66,0.9400000000000001,0.12,786,0.9,210,5.800000000000001
+2023,9,20,16,30,22,1.11,0.023,0.63,45,829,314,0,7,-5.6000000000000005,111,280,11,202,0.289,15.25,71.07000000000001,0.9400000000000001,0.12,786,0.9,210,5.300000000000001
+2023,9,20,17,0,21.200000000000003,1.11,0.024,0.63,39,738,210,0,7,-5.300000000000001,88,291,11,155,0.289,16.41,76.61,0.9400000000000001,0.12,786,0.9,210,4.800000000000001
+2023,9,20,17,30,19.6,1.11,0.024,0.63,31,584,110,4,7,-5.300000000000001,52,230,57,83,0.289,18.11,82.22,0.9400000000000001,0.12,786,0.9,209,3.9000000000000004
+2023,9,20,18,0,18.1,1.1300000000000001,0.026000000000000002,0.63,18,260,28,6,8,-4.6000000000000005,18,5,86,18,0.289,21,87.79,0.9400000000000001,0.12,786,0.9,207,3.1
+2023,9,20,18,30,17.5,1.1300000000000001,0.026000000000000002,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.289,21.81,93.71000000000001,0.9400000000000001,0.12,786,0.9,206,3.1
+2023,9,20,19,0,16.900000000000002,1.1500000000000001,0.029,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.289,22.79,99.37,0.9400000000000001,0.12,787,0.9,204,3
+2023,9,20,19,30,16.6,1.1500000000000001,0.029,0.63,0,0,0,0,6,-4.5,0,0,0,0,0.29,23.22,104.96000000000001,0.9500000000000001,0.12,787,0.9,202,3.2
+2023,9,20,20,0,16.400000000000002,1.1300000000000001,0.034,0.63,0,0,0,0,3,-4.6000000000000005,0,0,0,0,0.29,23.38,110.41,0.9500000000000001,0.12,787,1,199,3.3000000000000003
+2023,9,20,20,30,16.3,1.1300000000000001,0.034,0.63,0,0,0,0,8,-4.6000000000000005,0,0,0,0,0.29,23.53,115.67,0.9500000000000001,0.12,787,1,196,3.8000000000000003
+2023,9,20,21,0,16.3,1.12,0.039,0.63,0,0,0,0,8,-4.6000000000000005,0,0,0,0,0.29,23.5,120.68,0.9500000000000001,0.12,787,1,192,4.2
+2023,9,20,21,30,16.2,1.12,0.039,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.29,23.650000000000002,125.33,0.9500000000000001,0.12,787,1,190,4.5
+2023,9,20,22,0,16,1.16,0.043000000000000003,0.63,0,0,0,0,0,-4,0,0,0,0,0.29,25.01,129.51,0.9500000000000001,0.12,787,1.1,187,4.800000000000001
+2023,9,20,22,30,15.600000000000001,1.16,0.043000000000000003,0.63,0,0,0,0,0,-4,0,0,0,0,0.289,25.66,133.09,0.9500000000000001,0.12,787,1.1,184,4.6000000000000005
+2023,9,20,23,0,15.100000000000001,1.22,0.047,0.63,0,0,0,0,0,-3,0,0,0,0,0.289,28.59,135.91,0.9500000000000001,0.12,787,1.1,182,4.4
+2023,9,20,23,30,14.600000000000001,1.22,0.047,0.63,0,0,0,0,0,-3,0,0,0,0,0.29,29.53,137.81,0.9500000000000001,0.12,787,1.1,179,3.9000000000000004
+2023,9,21,0,0,14.100000000000001,1.28,0.053,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.29,32.4,138.65,0.9500000000000001,0.12,787,1.2000000000000002,177,3.5
+2023,9,21,0,30,13.5,1.28,0.053,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.29,33.68,138.38,0.9500000000000001,0.12,787,1.2000000000000002,176,3.1
+2023,9,21,1,0,12.8,1.33,0.06,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.29,36.51,137,0.9500000000000001,0.12,787,1.2000000000000002,174,2.7
+2023,9,21,1,30,12.100000000000001,1.33,0.06,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.289,38.22,134.64000000000001,0.9400000000000001,0.12,787,1.1,175,2.4000000000000004
+2023,9,21,2,0,11.5,1.37,0.057,0.63,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.289,40.75,131.42000000000002,0.9400000000000001,0.12,787,1.1,176,2.2
+2023,9,21,2,30,10.700000000000001,1.37,0.057,0.63,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.289,42.96,127.53,0.93,0.12,787,1.1,177,2.1
+2023,9,21,3,0,9.9,1.34,0.047,0.63,0,0,0,0,3,-1,0,0,0,0,0.289,46.81,123.10000000000001,0.92,0.12,787,1,177,2
+2023,9,21,3,30,9.4,1.34,0.047,0.63,0,0,0,0,0,-1,0,0,0,0,0.289,48.4,118.27,0.92,0.12,787,1,178,2
+2023,9,21,4,0,8.9,1.23,0.043000000000000003,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.29,51.75,113.14,0.92,0.12,787,1,179,2
+2023,9,21,4,30,8.700000000000001,1.23,0.043000000000000003,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.29,52.45,107.78,0.92,0.12,787,1,183,2.1
+2023,9,21,5,0,8.4,1.1300000000000001,0.044,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.291,54.050000000000004,102.26,0.92,0.12,787,1,187,2.1
+2023,9,21,5,30,8.6,1.1300000000000001,0.044,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.291,53.32,96.64,0.92,0.12,787,1,188,2.2
+2023,9,21,6,0,8.8,1.06,0.047,0.63,7,57,6,0,0,-0.30000000000000004,7,57,0,6,0.291,52.84,90.96000000000001,0.92,0.12,788,1,189,2.2
+2023,9,21,6,30,10.4,1.06,0.047,0.63,28,388,61,0,0,-0.30000000000000004,28,388,0,61,0.291,47.47,85.13,0.92,0.12,788,1,189,2.9000000000000004
+2023,9,21,7,0,12,1,0.049,0.63,41,603,151,0,0,-0.30000000000000004,41,603,0,151,0.291,42.6,79.53,0.92,0.12,788,1,188,3.5
+2023,9,21,7,30,14,1,0.049,0.63,51,727,252,0,0,-0.30000000000000004,59,679,0,247,0.291,37.39,73.96000000000001,0.93,0.12,788,1,192,4.3
+2023,9,21,8,0,16,0.96,0.051000000000000004,0.63,59,805,354,0,0,-0.9,59,805,0,354,0.291,31.57,68.5,0.93,0.12,788,1,196,5.1000000000000005
+2023,9,21,8,30,17.3,0.96,0.051000000000000004,0.63,66,857,452,0,0,-0.9,66,857,0,452,0.291,29.080000000000002,63.21,0.93,0.12,788,1,197,5.7
+2023,9,21,9,0,18.6,0.92,0.055,0.63,71,893,542,0,0,-0.8,71,893,0,542,0.291,26.95,58.17,0.93,0.12,788,1,198,6.300000000000001
+2023,9,21,9,30,19.3,0.92,0.055,0.63,75,919,622,0,0,-0.8,126,740,0,566,0.291,25.8,53.480000000000004,0.93,0.12,788,1.1,198,6.6000000000000005
+2023,9,21,10,0,20,0.89,0.057,0.63,79,939,692,0,3,-0.7000000000000001,318,195,0,445,0.29,24.95,49.25,0.93,0.12,788,1.1,198,6.800000000000001
+2023,9,21,10,30,20.6,0.89,0.057,0.63,80,956,749,0,0,-0.7000000000000001,166,765,0,701,0.29,24.05,45.62,0.92,0.12,788,1.1,198,6.800000000000001
+2023,9,21,11,0,21.1,0.66,0.05,0.63,80,970,792,0,0,-0.9,196,728,0,731,0.289,22.98,42.75,0.92,0.12,788,1,198,6.800000000000001
+2023,9,21,11,30,21.6,0.66,0.05,0.63,80,979,821,0,0,-0.9,80,979,0,821,0.289,22.29,40.83,0.92,0.12,788,1,198,6.800000000000001
+2023,9,21,12,0,22.1,0.67,0.047,0.63,79,984,833,0,0,-1.4000000000000001,79,984,0,833,0.28800000000000003,20.85,39.980000000000004,0.91,0.12,788,1,199,6.7
+2023,9,21,12,30,22.5,0.67,0.047,0.63,78,987,831,0,0,-1.4000000000000001,78,987,0,831,0.28800000000000003,20.35,40.29,0.91,0.12,788,1,199,6.6000000000000005
+2023,9,21,13,0,22.8,0.71,0.043000000000000003,0.63,76,986,812,0,0,-2.2,138,832,0,759,0.28700000000000003,18.77,41.72,0.91,0.12,787,0.9,199,6.5
+2023,9,21,13,30,22.900000000000002,0.71,0.043000000000000003,0.63,74,981,778,0,0,-2.2,85,950,0,767,0.28700000000000003,18.66,44.160000000000004,0.91,0.12,787,0.9,199,6.4
+2023,9,21,14,0,22.900000000000002,0.65,0.038,0.63,70,974,729,0,0,-3.4000000000000004,125,832,0,688,0.28700000000000003,17.12,47.46,0.9,0.12,787,0.9,200,6.300000000000001
+2023,9,21,14,30,22.700000000000003,0.65,0.038,0.63,68,959,666,0,0,-3.4000000000000004,87,911,0,655,0.28800000000000003,17.330000000000002,51.43,0.9,0.12,787,0.8,201,6.2
+2023,9,21,15,0,22.5,0.6900000000000001,0.037,0.63,65,938,590,0,0,-4.6000000000000005,99,842,0,571,0.28800000000000003,16.04,55.93,0.9,0.12,786,0.8,202,6.1000000000000005
+2023,9,21,15,30,22,0.6900000000000001,0.037,0.63,61,908,504,0,0,-4.6000000000000005,61,908,0,504,0.289,16.53,60.82,0.9,0.12,786,0.8,203,5.9
+2023,9,21,16,0,21.400000000000002,0.72,0.037,0.63,57,866,409,0,0,-5.6000000000000005,73,799,0,398,0.289,15.88,66,0.9,0.12,786,0.7000000000000001,204,5.800000000000001
+2023,9,21,16,30,20.5,0.72,0.037,0.63,51,803,307,0,3,-5.6000000000000005,119,447,0,262,0.29,16.78,71.4,0.9,0.12,786,0.7000000000000001,206,5
+2023,9,21,17,0,19.5,0.72,0.036000000000000004,0.63,43,706,203,0,0,-6,56,573,0,186,0.291,17.3,76.93,0.9,0.12,787,0.7000000000000001,207,4.3
+2023,9,21,17,30,17.1,0.72,0.036000000000000004,0.63,33,540,103,0,0,-6,33,540,0,103,0.291,20.1,82.54,0.9,0.12,787,0.7000000000000001,210,3
+2023,9,21,18,0,14.600000000000001,0.72,0.036000000000000004,0.63,17,214,24,0,0,-5,17,214,0,24,0.292,25.47,88.09,0.9,0.12,787,0.7000000000000001,213,1.7000000000000002
+2023,9,21,18,30,13.700000000000001,0.72,0.036000000000000004,0.63,0,0,0,0,0,-5,0,0,0,0,0.293,27,94.03,0.9,0.12,787,0.7000000000000001,216,1.5
+2023,9,21,19,0,12.9,0.72,0.037,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.294,28.96,99.7,0.9,0.12,787,0.8,218,1.4000000000000001
+2023,9,21,19,30,12.600000000000001,0.72,0.037,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.295,29.57,105.28,0.91,0.12,788,0.8,215,1.3
+2023,9,21,20,0,12.3,0.74,0.041,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.295,30.21,110.74000000000001,0.91,0.12,788,0.8,213,1.3
+2023,9,21,20,30,12.100000000000001,0.74,0.041,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.296,30.61,116.02,0.91,0.12,788,0.8,203,1.3
+2023,9,21,21,0,12,0.77,0.046,0.63,0,0,0,0,3,-4.800000000000001,0,0,0,0,0.296,30.53,121.03,0.92,0.12,788,0.9,194,1.3
+2023,9,21,21,30,11.600000000000001,0.77,0.046,0.63,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.296,31.35,125.69,0.92,0.12,788,0.9,188,1.4000000000000001
+2023,9,21,22,0,11.200000000000001,0.8,0.056,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.296,31.98,129.89000000000001,0.93,0.12,787,0.9,182,1.5
+2023,9,21,22,30,11.200000000000001,0.8,0.056,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.297,31.98,133.48,0.93,0.12,787,0.9,184,1.6
+2023,9,21,23,0,11.200000000000001,0.8200000000000001,0.063,0.63,0,0,0,0,8,-4.800000000000001,0,0,0,0,0.297,32.27,136.31,0.9400000000000001,0.12,787,0.9,187,1.7000000000000002
+2023,9,21,23,30,11.100000000000001,0.8200000000000001,0.063,0.63,0,0,0,0,5,-4.800000000000001,0,0,0,0,0.298,32.480000000000004,138.21,0.93,0.12,787,0.9,197,2
+2023,9,22,0,0,11,0.86,0.059000000000000004,0.63,0,0,0,0,5,-4.800000000000001,0,0,0,0,0.299,32.77,139.04,0.93,0.12,787,0.9,207,2.3000000000000003
+2023,9,22,0,30,10.700000000000001,0.86,0.059000000000000004,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.299,33.47,138.75,0.93,0.12,788,0.9,216,2.7
+2023,9,22,1,0,10.4,0.93,0.054,0.63,0,0,0,0,5,-4.2,0,0,0,0,0.299,35.550000000000004,137.36,0.92,0.12,788,0.9,224,3
+2023,9,22,1,30,9.9,0.93,0.054,0.63,0,0,0,0,5,-4.2,0,0,0,0,0.298,36.75,134.96,0.93,0.12,788,0.9,229,3.1
+2023,9,22,2,0,9.5,1.08,0.056,0.63,0,0,0,0,5,-2.6,0,0,0,0,0.297,42.57,131.72,0.93,0.12,788,0.9,234,3.2
+2023,9,22,2,30,8.9,1.08,0.056,0.63,0,0,0,0,5,-2.6,0,0,0,0,0.297,44.37,127.8,0.93,0.12,789,0.9,235,2.8000000000000003
+2023,9,22,3,0,8.3,1.2,0.063,0.63,0,0,0,0,5,-0.9,0,0,0,0,0.296,52.49,123.35000000000001,0.9400000000000001,0.12,789,0.9,236,2.3000000000000003
+2023,9,22,3,30,7.800000000000001,1.2,0.063,0.63,0,0,0,0,5,-0.9,0,0,0,0,0.296,54.300000000000004,118.5,0.9400000000000001,0.12,789,0.9,232,1.9000000000000001
+2023,9,22,4,0,7.300000000000001,1.27,0.07100000000000001,0.63,0,0,0,0,0,0.1,0,0,0,0,0.296,60.22,113.35000000000001,0.9400000000000001,0.12,789,1,228,1.5
+2023,9,22,4,30,7,1.27,0.07100000000000001,0.63,0,0,0,0,0,0.1,0,0,0,0,0.297,61.47,107.98,0.9400000000000001,0.12,789,1,220,1.5
+2023,9,22,5,0,6.800000000000001,1.29,0.079,0.63,0,0,0,0,5,0.30000000000000004,0,0,0,0,0.297,63.04,102.45,0.9400000000000001,0.12,789,1,212,1.4000000000000001
+2023,9,22,5,30,7.2,1.29,0.079,0.63,0,0,0,0,5,0.30000000000000004,0,0,0,0,0.298,61.34,96.82000000000001,0.9400000000000001,0.12,789,1,209,1.5
+2023,9,22,6,0,7.5,1.26,0.085,0.63,6,36,5,0,0,0,6,36,0,5,0.298,58.94,91.14,0.9400000000000001,0.12,789,1,206,1.6
+2023,9,22,6,30,9.5,1.26,0.085,0.63,31,311,56,1,0,0,30,203,11,47,0.298,51.49,85.32000000000001,0.9400000000000001,0.12,789,1,208,2.5
+2023,9,22,7,0,11.5,1.24,0.08,0.63,48,540,144,0,3,-0.30000000000000004,88,80,0,102,0.298,44.050000000000004,79.72,0.9400000000000001,0.12,789,1,211,3.4000000000000004
+2023,9,22,7,30,13.3,1.24,0.08,0.63,57,683,244,0,0,-0.30000000000000004,89,508,0,228,0.297,39.15,74.15,0.93,0.12,789,1,214,4.1000000000000005
+2023,9,22,8,0,15.100000000000001,1.22,0.07100000000000001,0.63,64,778,347,0,0,-0.7000000000000001,64,778,0,347,0.296,33.94,68.7,0.93,0.12,789,1,218,4.800000000000001
+2023,9,22,8,30,16.1,1.22,0.07100000000000001,0.63,71,838,446,0,0,-0.7000000000000001,71,838,0,446,0.295,31.84,63.43,0.93,0.12,789,1,219,5.300000000000001
+2023,9,22,9,0,17.2,1.2,0.067,0.63,74,883,537,0,0,-1.1,74,883,0,537,0.295,28.72,58.410000000000004,0.93,0.12,789,0.9,219,5.800000000000001
+2023,9,22,9,30,17.900000000000002,1.2,0.067,0.63,78,914,619,0,0,-1.1,78,914,0,619,0.294,27.48,53.74,0.93,0.12,789,0.9,219,6
+2023,9,22,10,0,18.7,1.19,0.066,0.63,81,936,689,0,0,-1.6,81,936,0,689,0.294,25.21,49.53,0.93,0.12,789,0.9,219,6.2
+2023,9,22,10,30,19.3,1.19,0.066,0.63,81,956,746,0,0,-1.6,81,956,0,746,0.294,24.28,45.93,0.92,0.12,789,1,219,6.4
+2023,9,22,11,0,19.900000000000002,1.03,0.053,0.63,79,973,790,0,0,-2.2,79,973,0,790,0.294,22.44,43.09,0.91,0.12,788,1,220,6.6000000000000005
+2023,9,22,11,30,20.400000000000002,1.03,0.053,0.63,80,979,817,0,0,-2.2,80,979,0,817,0.294,21.76,41.19,0.91,0.12,788,1,221,6.9
+2023,9,22,12,0,20.900000000000002,1.01,0.054,0.63,81,981,828,0,0,-2.8000000000000003,81,981,0,828,0.294,20.17,40.37,0.91,0.12,788,1,223,7.2
+2023,9,22,12,30,21.1,1.01,0.054,0.63,81,980,824,0,0,-2.8000000000000003,81,980,0,824,0.294,19.93,40.69,0.92,0.12,788,1,224,7.4
+2023,9,22,13,0,21.400000000000002,1.02,0.054,0.63,81,976,805,0,0,-3.4000000000000004,116,843,0,741,0.294,18.69,42.12,0.92,0.12,787,0.9,226,7.7
+2023,9,22,13,30,21.400000000000002,1.02,0.054,0.63,79,969,769,0,0,-3.4000000000000004,123,871,0,744,0.294,18.69,44.56,0.91,0.12,787,0.9,228,7.9
+2023,9,22,14,0,21.3,1,0.051000000000000004,0.63,76,958,719,0,0,-3.8000000000000003,224,604,0,629,0.294,18.23,47.84,0.91,0.12,787,0.9,230,8
+2023,9,22,14,30,21,1,0.051000000000000004,0.63,74,938,654,0,0,-3.8000000000000003,201,594,0,568,0.294,18.57,51.800000000000004,0.91,0.12,787,0.9,234,8
+2023,9,22,15,0,20.700000000000003,1.1,0.055,0.63,71,912,577,0,0,-4,71,912,0,577,0.294,18.67,56.28,0.92,0.12,787,0.9,237,7.9
+2023,9,22,15,30,20.1,1.1,0.055,0.63,66,878,490,0,0,-4,66,878,0,490,0.294,19.37,61.160000000000004,0.92,0.12,787,0.9,242,7.800000000000001
+2023,9,22,16,0,19.5,1.21,0.055,0.63,62,829,395,0,0,-3.7,62,829,0,395,0.294,20.53,66.34,0.92,0.12,788,1,247,7.6000000000000005
+2023,9,22,16,30,18.3,1.21,0.055,0.63,55,762,294,0,0,-3.7,55,762,0,294,0.294,22.13,71.72,0.92,0.12,788,1,255,7.2
+2023,9,22,17,0,17.2,1.35,0.054,0.63,46,660,192,0,0,-2.9000000000000004,46,660,0,192,0.294,25.22,77.25,0.92,0.12,788,1,263,6.800000000000001
+2023,9,22,17,30,15.5,1.35,0.054,0.63,34,491,95,0,0,-2.9000000000000004,34,491,0,95,0.294,28.13,82.86,0.92,0.12,789,1,271,5.9
+2023,9,22,18,0,13.8,1.44,0.051000000000000004,0.63,15,166,20,0,0,-2.3000000000000003,15,166,0,20,0.294,32.79,88.39,0.92,0.12,790,0.9,280,5.1000000000000005
+2023,9,22,18,30,12.700000000000001,1.44,0.051000000000000004,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.295,35.22,94.35000000000001,0.91,0.12,790,0.9,286,4.5
+2023,9,22,19,0,11.5,1.46,0.046,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.295,37.2,100.02,0.91,0.12,791,0.8,293,3.9000000000000004
+2023,9,22,19,30,10.600000000000001,1.46,0.046,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.296,39.53,105.61,0.91,0.12,792,0.7000000000000001,298,3.7
+2023,9,22,20,0,9.8,1.44,0.04,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.297,38.57,111.08,0.9,0.12,792,0.7000000000000001,302,3.4000000000000004
+2023,9,22,20,30,8.8,1.44,0.04,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.297,41.25,116.36,0.9,0.12,792,0.6000000000000001,307,2.8000000000000003
+2023,9,22,21,0,7.9,1.42,0.035,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.298,41.59,121.38,0.9,0.12,793,0.6000000000000001,311,2.2
+2023,9,22,21,30,7,1.42,0.035,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.297,44.22,126.06,0.9,0.12,793,0.5,316,1.7000000000000002
+2023,9,22,22,0,6.1000000000000005,1.41,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.297,45.97,130.27,0.9,0.12,793,0.5,321,1.1
+2023,9,22,22,30,5.7,1.41,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.296,47.25,133.87,0.9,0.12,793,0.5,329,1
+2023,9,22,23,0,5.300000000000001,1.42,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.295,48.08,136.70000000000002,0.9,0.12,793,0.5,337,0.9
+2023,9,22,23,30,5.300000000000001,1.42,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.294,48.08,138.6,0.9,0.12,793,0.5,169,0.9
+2023,9,23,0,0,5.2,1.41,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.293,48.35,139.44,0.9,0.12,793,0.5,2,0.8
+2023,9,23,0,30,5.1000000000000005,1.41,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.293,48.69,139.13,0.9,0.12,793,0.6000000000000001,23,0.7000000000000001
+2023,9,23,1,0,4.9,1.41,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.292,49.64,137.71,0.9,0.12,793,0.6000000000000001,45,0.6000000000000001
+2023,9,23,1,30,4.7,1.41,0.031,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.291,50.34,135.29,0.9,0.12,793,0.6000000000000001,72,0.5
+2023,9,23,2,0,4.6000000000000005,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,51.03,132.02,0.9,0.12,793,0.6000000000000001,99,0.5
+2023,9,23,2,30,4.3,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,52.11,128.07,0.9,0.12,793,0.6000000000000001,139,0.5
+2023,9,23,3,0,4.1000000000000005,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,52.74,123.60000000000001,0.9,0.12,793,0.6000000000000001,179,0.5
+2023,9,23,3,30,3.8000000000000003,1.42,0.032,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.291,53.86,118.73,0.9,0.12,793,0.6000000000000001,196,0.7000000000000001
+2023,9,23,4,0,3.5,1.43,0.032,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.291,54.550000000000004,113.56,0.9,0.12,793,0.6000000000000001,213,0.8
+2023,9,23,4,30,3.1,1.43,0.032,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.291,56.120000000000005,108.18,0.9,0.12,793,0.6000000000000001,219,0.9
+2023,9,23,5,0,2.8000000000000003,1.43,0.031,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.291,56.74,102.65,0.9,0.12,793,0.6000000000000001,225,1
+2023,9,23,5,30,2.9000000000000004,1.43,0.031,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.29,56.34,97.01,0.9,0.12,793,0.6000000000000001,228,1
+2023,9,23,6,0,3,1.42,0.031,0.63,4,41,3,0,0,-5,4,41,0,3,0.29,55.57,91.33,0.9,0.12,793,0.6000000000000001,230,0.9
+2023,9,23,6,30,4.9,1.42,0.031,0.63,25,448,60,0,0,-5,25,448,0,60,0.289,48.7,85.49,0.9,0.12,794,0.6000000000000001,233,1.4000000000000001
+2023,9,23,7,0,6.7,1.41,0.03,0.63,37,664,153,0,0,-4.9,37,664,0,153,0.289,43.5,79.91,0.9,0.12,794,0.6000000000000001,235,1.8
+2023,9,23,7,30,8.4,1.41,0.03,0.63,44,785,256,0,0,-4.9,44,785,0,256,0.28800000000000003,38.74,74.35000000000001,0.9,0.12,794,0.6000000000000001,241,1.9000000000000001
+2023,9,23,8,0,10,1.4000000000000001,0.03,0.63,50,861,360,0,0,-4.7,50,861,0,360,0.28800000000000003,35.2,68.91,0.9,0.12,794,0.6000000000000001,247,2
+2023,9,23,8,30,11.200000000000001,1.4000000000000001,0.03,0.63,55,913,460,0,0,-4.7,55,913,0,460,0.28800000000000003,32.5,63.65,0.9,0.12,794,0.6000000000000001,248,2.3000000000000003
+2023,9,23,9,0,12.5,1.3900000000000001,0.029,0.63,58,951,553,0,0,-5.6000000000000005,58,951,0,553,0.28700000000000003,27.88,58.65,0.9,0.12,794,0.6000000000000001,249,2.6
+2023,9,23,9,30,13.5,1.3900000000000001,0.029,0.63,61,978,636,0,0,-5.6000000000000005,61,978,0,636,0.28700000000000003,26.12,54,0.9,0.12,794,0.6000000000000001,247,2.8000000000000003
+2023,9,23,10,0,14.5,1.3800000000000001,0.029,0.63,63,998,707,0,0,-6.7,63,998,0,707,0.28600000000000003,22.56,49.81,0.9,0.12,794,0.6000000000000001,246,3.1
+2023,9,23,10,30,15.3,1.3800000000000001,0.029,0.63,64,1014,765,0,0,-6.7,64,1014,0,765,0.28600000000000003,21.43,46.24,0.89,0.12,794,0.5,245,3.3000000000000003
+2023,9,23,11,0,16.1,1.37,0.027,0.63,64,1024,808,0,0,-7.6000000000000005,64,1024,0,808,0.28500000000000003,18.900000000000002,43.43,0.89,0.12,794,0.5,244,3.5
+2023,9,23,11,30,16.8,1.37,0.027,0.63,65,1030,836,0,0,-7.6000000000000005,65,1030,0,836,0.28500000000000003,18.06,41.56,0.89,0.12,793,0.5,243,3.7
+2023,9,23,12,0,17.400000000000002,1.36,0.027,0.63,65,1034,848,0,0,-8.4,65,1034,0,848,0.28400000000000003,16.34,40.76,0.89,0.12,793,0.5,243,3.9000000000000004
+2023,9,23,12,30,17.900000000000002,1.36,0.027,0.63,65,1033,844,0,0,-8.4,65,1033,0,844,0.28300000000000003,15.83,41.08,0.89,0.12,793,0.5,242,4
+2023,9,23,13,0,18.3,1.35,0.026000000000000002,0.63,65,1029,823,0,0,-9.1,65,1029,0,823,0.28300000000000003,14.620000000000001,42.52,0.89,0.12,793,0.5,242,4
+2023,9,23,13,30,18.5,1.35,0.026000000000000002,0.63,64,1022,787,0,0,-9.200000000000001,64,1022,0,787,0.28200000000000003,14.42,44.95,0.89,0.12,792,0.5,242,3.9000000000000004
+2023,9,23,14,0,18.7,1.32,0.025,0.63,61,1011,735,0,0,-9.700000000000001,61,1011,0,735,0.28200000000000003,13.63,48.22,0.89,0.12,792,0.5,242,3.8000000000000003
+2023,9,23,14,30,18.7,1.32,0.025,0.63,59,996,670,0,0,-9.700000000000001,59,996,0,670,0.28300000000000003,13.63,52.17,0.89,0.12,792,0.5,243,3.6
+2023,9,23,15,0,18.7,1.32,0.025,0.63,56,974,592,0,0,-10.200000000000001,56,974,0,592,0.28300000000000003,13.16,56.64,0.89,0.12,792,0.5,244,3.4000000000000004
+2023,9,23,15,30,18.400000000000002,1.32,0.025,0.63,54,944,504,0,0,-10.200000000000001,54,944,0,504,0.28400000000000003,13.4,61.51,0.89,0.12,792,0.5,244,3
+2023,9,23,16,0,18.1,1.31,0.024,0.63,49,901,406,0,0,-10.5,49,901,0,406,0.28500000000000003,13.35,66.68,0.89,0.12,792,0.5,244,2.7
+2023,9,23,16,30,17,1.31,0.024,0.63,44,840,303,0,0,-10.5,44,840,0,303,0.28600000000000003,14.3,72.05,0.89,0.12,792,0.5,241,2
+2023,9,23,17,0,16,1.3,0.024,0.63,38,745,198,0,0,-8.5,38,745,0,198,0.28600000000000003,17.8,77.58,0.89,0.12,792,0.5,237,1.3
+2023,9,23,17,30,14.600000000000001,1.3,0.024,0.63,29,581,98,0,0,-8.5,29,581,0,98,0.28700000000000003,19.47,83.17,0.89,0.12,792,0.5,217,0.9
+2023,9,23,18,0,13.100000000000001,1.31,0.024,0.63,14,212,19,0,0,-8,14,212,0,19,0.28700000000000003,22.34,88.69,0.89,0.12,792,0.5,197,0.6000000000000001
+2023,9,23,18,30,12.9,1.31,0.024,0.63,0,0,0,0,0,-8,0,0,0,0,0.28800000000000003,22.64,94.67,0.89,0.12,792,0.5,158,0.4
+2023,9,23,19,0,12.700000000000001,1.31,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.28800000000000003,21.93,100.34,0.89,0.12,792,0.5,118,0.30000000000000004
+2023,9,23,19,30,12.200000000000001,1.31,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.28800000000000003,22.66,105.94,0.89,0.12,792,0.5,81,0.4
+2023,9,23,20,0,11.700000000000001,1.33,0.024,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.28800000000000003,23.39,111.41,0.89,0.12,793,0.5,43,0.5
+2023,9,23,20,30,11.100000000000001,1.33,0.024,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.28800000000000003,24.34,116.7,0.89,0.12,793,0.5,35,0.6000000000000001
+2023,9,23,21,0,10.4,1.34,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.289,25.66,121.74000000000001,0.89,0.12,793,0.5,27,0.7000000000000001
+2023,9,23,21,30,9.700000000000001,1.34,0.024,0.63,0,0,0,0,0,-8.5,0,0,0,0,0.289,26.89,126.42,0.89,0.12,793,0.5,26,0.7000000000000001
+2023,9,23,22,0,9.1,1.35,0.025,0.63,0,0,0,0,0,-8,0,0,0,0,0.289,29.13,130.64000000000001,0.89,0.12,793,0.6000000000000001,24,0.7000000000000001
+2023,9,23,22,30,8.5,1.35,0.025,0.63,0,0,0,0,8,-8,0,0,0,0,0.28800000000000003,30.330000000000002,134.26,0.89,0.12,793,0.6000000000000001,25,0.7000000000000001
+2023,9,23,23,0,8,1.37,0.025,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.28800000000000003,32.82,137.1,0.89,0.12,793,0.6000000000000001,26,0.7000000000000001
+2023,9,23,23,30,7.5,1.37,0.025,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.28700000000000003,33.96,139,0.89,0.12,793,0.6000000000000001,27,0.7000000000000001
+2023,9,24,0,0,7.1000000000000005,1.3900000000000001,0.026000000000000002,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28700000000000003,36.46,139.83,0.89,0.12,793,0.6000000000000001,29,0.7000000000000001
+2023,9,24,0,30,6.7,1.3900000000000001,0.026000000000000002,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28700000000000003,37.47,139.5,0.89,0.12,793,0.6000000000000001,29,0.7000000000000001
+2023,9,24,1,0,6.300000000000001,1.4000000000000001,0.026000000000000002,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28700000000000003,39.980000000000004,138.06,0.89,0.12,793,0.6000000000000001,29,0.8
+2023,9,24,1,30,5.9,1.4000000000000001,0.026000000000000002,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28700000000000003,41.1,135.61,0.89,0.12,793,0.6000000000000001,30,0.8
+2023,9,24,2,0,5.4,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.28700000000000003,43.910000000000004,132.32,0.89,0.12,793,0.6000000000000001,30,0.8
+2023,9,24,2,30,5.1000000000000005,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.28800000000000003,44.83,128.35,0.88,0.12,793,0.5,30,0.8
+2023,9,24,3,0,4.800000000000001,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.289,47.12,123.85000000000001,0.88,0.12,793,0.5,31,0.8
+2023,9,24,3,30,4.5,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.289,48.11,118.96000000000001,0.88,0.12,793,0.5,30,0.8
+2023,9,24,4,0,4.3,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.29,49.89,113.78,0.88,0.12,793,0.5,30,0.8
+2023,9,24,4,30,4.1000000000000005,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.29,50.660000000000004,108.38,0.88,0.12,794,0.5,30,0.8
+2023,9,24,5,0,3.9000000000000004,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5,0,0,0,0,0.291,52.32,102.84,0.88,0.12,794,0.5,30,0.8
+2023,9,24,5,30,4,1.41,0.026000000000000002,0.63,0,0,0,0,0,-5,0,0,0,0,0.291,51.95,97.2,0.88,0.12,794,0.5,30,0.7000000000000001
+2023,9,24,6,0,4,1.41,0.026000000000000002,0.63,4,42,3,0,0,-4.7,4,42,0,3,0.291,52.99,91.52,0.88,0.12,794,0.5,31,0.7000000000000001
+2023,9,24,6,30,5.9,1.41,0.026000000000000002,0.63,23,461,58,0,0,-4.7,23,461,0,58,0.292,46.43,85.68,0.88,0.12,794,0.5,26,1
+2023,9,24,7,0,7.9,1.41,0.025,0.63,35,680,152,0,0,-4.4,35,680,0,152,0.292,41.59,80.10000000000001,0.88,0.12,795,0.5,21,1.4000000000000001
+2023,9,24,7,30,10,1.41,0.025,0.63,43,801,256,0,0,-4.4,43,801,0,256,0.292,36.11,74.55,0.88,0.12,795,0.5,29,1.2000000000000002
+2023,9,24,8,0,12.200000000000001,1.4000000000000001,0.025,0.63,48,876,360,0,0,-5,48,876,0,360,0.292,29.79,69.12,0.88,0.12,795,0.5,37,1
+2023,9,24,8,30,14,1.4000000000000001,0.025,0.63,52,929,461,0,0,-5,52,929,0,461,0.292,26.5,63.870000000000005,0.88,0.12,795,0.5,93,0.6000000000000001
+2023,9,24,9,0,15.8,1.3900000000000001,0.025,0.63,55,966,554,0,0,-6.6000000000000005,55,966,0,554,0.291,20.93,58.89,0.88,0.12,795,0.5,149,0.30000000000000004
+2023,9,24,9,30,16.900000000000002,1.3900000000000001,0.025,0.63,58,994,639,0,0,-6.5,58,994,0,639,0.291,19.51,54.26,0.88,0.12,795,0.4,172,0.7000000000000001
+2023,9,24,10,0,18,1.37,0.025,0.63,60,1013,710,0,0,-8.1,60,1013,0,710,0.291,16.09,50.1,0.88,0.12,795,0.4,195,1.1
+2023,9,24,10,30,18.900000000000002,1.37,0.025,0.63,61,1028,768,0,0,-8.1,61,1028,0,768,0.291,15.21,46.550000000000004,0.88,0.12,795,0.4,201,1.4000000000000001
+2023,9,24,11,0,19.700000000000003,1.3900000000000001,0.022,0.63,61,1039,811,0,0,-9.5,61,1039,0,811,0.291,13.030000000000001,43.77,0.87,0.12,795,0.4,207,1.6
+2023,9,24,11,30,20.3,1.3900000000000001,0.022,0.63,61,1044,838,0,0,-9.5,61,1044,0,838,0.291,12.55,41.93,0.87,0.12,795,0.4,212,1.8
+2023,9,24,12,0,20.900000000000002,1.4000000000000001,0.022,0.63,61,1046,849,0,0,-10.700000000000001,61,1046,0,849,0.291,11.02,41.14,0.87,0.12,794,0.4,218,2
+2023,9,24,12,30,21.3,1.4000000000000001,0.022,0.63,62,1045,845,0,0,-10.700000000000001,62,1045,0,845,0.291,10.75,41.480000000000004,0.87,0.12,794,0.4,221,2.1
+2023,9,24,13,0,21.700000000000003,1.3900000000000001,0.022,0.63,62,1041,824,0,0,-11.700000000000001,62,1041,0,824,0.29,9.71,42.92,0.87,0.12,794,0.4,225,2.2
+2023,9,24,13,30,21.8,1.3900000000000001,0.022,0.63,60,1034,787,0,0,-11.700000000000001,60,1034,0,787,0.29,9.65,45.34,0.88,0.12,794,0.4,228,2.3000000000000003
+2023,9,24,14,0,21.900000000000002,1.3800000000000001,0.022,0.63,59,1023,735,0,0,-12.4,59,1023,0,735,0.289,9.03,48.61,0.88,0.12,794,0.4,232,2.3000000000000003
+2023,9,24,14,30,21.700000000000003,1.3800000000000001,0.022,0.63,57,1007,669,0,0,-12.4,57,1007,0,669,0.289,9.14,52.54,0.88,0.12,794,0.4,234,2.3000000000000003
+2023,9,24,15,0,21.6,1.35,0.022,0.63,55,985,591,0,0,-13.100000000000001,55,985,0,591,0.289,8.700000000000001,57,0.88,0.12,794,0.4,236,2.2
+2023,9,24,15,30,21.1,1.35,0.022,0.63,52,957,503,0,0,-13.100000000000001,52,957,0,503,0.28800000000000003,8.97,61.86,0.88,0.12,794,0.4,236,2.1
+2023,9,24,16,0,20.6,1.32,0.022,0.63,48,917,406,0,0,-13.600000000000001,48,917,0,406,0.28800000000000003,8.88,67.01,0.88,0.12,794,0.4,236,2.1
+2023,9,24,16,30,19.200000000000003,1.32,0.022,0.63,43,856,302,0,0,-13.600000000000001,43,856,0,302,0.28800000000000003,9.68,72.38,0.88,0.12,794,0.4,235,1.5
+2023,9,24,17,0,17.8,1.29,0.022,0.63,37,762,197,0,0,-9.600000000000001,37,762,0,197,0.28800000000000003,14.55,77.9,0.88,0.12,794,0.30000000000000004,233,1
+2023,9,24,17,30,16.3,1.29,0.022,0.63,28,594,95,0,0,-9.600000000000001,28,594,0,95,0.28700000000000003,16,83.49,0.88,0.12,794,0.30000000000000004,232,0.9
+2023,9,24,18,0,14.8,1.28,0.022,0.63,13,204,17,0,0,-10.100000000000001,13,204,0,17,0.28700000000000003,16.95,88.98,0.88,0.12,795,0.30000000000000004,232,0.8
+2023,9,24,18,30,14.4,1.28,0.022,0.63,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.28600000000000003,17.39,94.99,0.88,0.12,795,0.4,228,0.6000000000000001
+2023,9,24,19,0,14.100000000000001,1.3,0.022,0.63,0,0,0,0,8,-11.100000000000001,0,0,0,0,0.28500000000000003,16.37,100.66,0.88,0.12,795,0.4,223,0.5
+2023,9,24,19,30,13.8,1.3,0.022,0.63,0,0,0,0,8,-11.100000000000001,0,0,0,0,0.28400000000000003,16.69,106.27,0.89,0.12,795,0.4,204,0.4
+2023,9,24,20,0,13.600000000000001,1.33,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.28300000000000003,16.4,111.75,0.89,0.12,795,0.4,185,0.30000000000000004
+2023,9,24,20,30,13.100000000000001,1.33,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.28200000000000003,16.94,117.04,0.89,0.12,795,0.4,173,0.30000000000000004
+2023,9,24,21,0,12.700000000000001,1.34,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.281,17.31,122.09,0.89,0.12,795,0.4,161,0.4
+2023,9,24,21,30,12.200000000000001,1.34,0.023,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.28,17.89,126.79,0.89,0.12,795,0.4,163,0.5
+2023,9,24,22,0,11.700000000000001,1.35,0.024,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.279,18.32,131.02,0.89,0.12,795,0.5,164,0.6000000000000001
+2023,9,24,22,30,11.100000000000001,1.35,0.024,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.278,19.06,134.65,0.89,0.12,795,0.5,171,0.6000000000000001
+2023,9,24,23,0,10.4,1.36,0.025,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.277,20.28,137.5,0.89,0.12,795,0.5,178,0.7000000000000001
+2023,9,24,23,30,10,1.36,0.025,0.63,0,0,0,0,0,-11.5,0,0,0,0,0.276,20.830000000000002,139.4,0.9,0.12,795,0.5,186,0.8
+2023,9,25,0,0,9.600000000000001,1.37,0.026000000000000002,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.275,21.89,140.22,0.9,0.12,795,0.5,195,0.8
+2023,9,25,0,30,9.200000000000001,1.37,0.026000000000000002,0.63,0,0,0,0,0,-11.200000000000001,0,0,14,0,0.274,22.48,139.88,0.9,0.12,795,0.5,204,0.9
+2023,9,25,1,0,8.9,1.3800000000000001,0.026000000000000002,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.274,23.52,138.41,0.9,0.12,795,0.5,212,0.9
+2023,9,25,1,30,8.6,1.3800000000000001,0.026000000000000002,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.273,24,135.94,0.9,0.12,795,0.6000000000000001,211,0.9
+2023,9,25,2,0,8.4,1.3900000000000001,0.027,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.272,25.09,132.61,0.9,0.12,795,0.6000000000000001,209,0.9
+2023,9,25,2,30,8.200000000000001,1.3900000000000001,0.027,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.272,25.43,128.62,0.9,0.12,795,0.6000000000000001,198,1
+2023,9,25,3,0,7.9,1.4000000000000001,0.028,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.271,27.45,124.10000000000001,0.9,0.12,796,0.6000000000000001,188,1
+2023,9,25,3,30,7.5,1.4000000000000001,0.028,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.271,28.21,119.19,0.9,0.12,796,0.6000000000000001,182,1.1
+2023,9,25,4,0,7.1000000000000005,1.3900000000000001,0.029,0.63,0,0,0,0,0,-9,0,0,0,0,0.271,30.900000000000002,113.99000000000001,0.91,0.12,796,0.6000000000000001,177,1.1
+2023,9,25,4,30,6.800000000000001,1.3900000000000001,0.029,0.63,0,0,0,0,0,-9,0,0,0,0,0.271,31.54,108.58,0.91,0.12,796,0.6000000000000001,176,1.2000000000000002
+2023,9,25,5,0,6.5,1.3800000000000001,0.03,0.63,0,0,0,0,0,-8,0,0,0,0,0.27,34.71,103.03,0.91,0.12,796,0.6000000000000001,175,1.2000000000000002
+2023,9,25,5,30,6.5,1.3800000000000001,0.03,0.63,0,0,0,0,0,-8,0,0,0,0,0.27,34.71,97.39,0.91,0.12,796,0.6000000000000001,177,1.2000000000000002
+2023,9,25,6,0,6.5,1.37,0.03,0.63,4,37,3,0,0,-6.9,4,37,0,3,0.27,37.78,91.7,0.91,0.12,797,0.6000000000000001,178,1.2000000000000002
+2023,9,25,6,30,8.700000000000001,1.37,0.03,0.63,24,429,55,0,0,-6.9,24,429,0,55,0.27,32.52,85.86,0.91,0.12,797,0.6000000000000001,180,1.3
+2023,9,25,7,0,10.8,1.35,0.03,0.63,36,656,147,0,0,-5.6000000000000005,36,656,0,147,0.269,31.1,80.29,0.91,0.12,797,0.6000000000000001,181,1.5
+2023,9,25,7,30,12.700000000000001,1.35,0.03,0.63,44,780,249,0,0,-5.6000000000000005,44,780,0,249,0.269,27.44,74.75,0.91,0.12,797,0.6000000000000001,187,1.6
+2023,9,25,8,0,14.700000000000001,1.34,0.03,0.63,50,857,353,0,0,-6,50,857,0,353,0.268,23.45,69.33,0.91,0.12,798,0.6000000000000001,192,1.8
+2023,9,25,8,30,16.900000000000002,1.34,0.03,0.63,55,909,452,0,0,-6,55,909,0,452,0.267,20.38,64.1,0.91,0.12,798,0.6000000000000001,206,2
+2023,9,25,9,0,19.1,1.33,0.03,0.63,59,946,544,0,0,-6.9,59,946,0,544,0.267,16.490000000000002,59.13,0.91,0.12,798,0.6000000000000001,220,2.1
+2023,9,25,9,30,20.1,1.33,0.03,0.63,62,972,626,0,0,-6.9,62,972,0,626,0.266,15.5,54.52,0.91,0.12,798,0.6000000000000001,220,2.1
+2023,9,25,10,0,21.1,1.32,0.029,0.63,64,992,696,0,0,-6.9,64,992,0,696,0.265,14.61,50.39,0.91,0.12,798,0.6000000000000001,221,2
+2023,9,25,10,30,21.8,1.32,0.029,0.63,65,1007,753,0,0,-6.9,65,1007,0,753,0.264,14,46.87,0.91,0.12,798,0.6000000000000001,221,2
+2023,9,25,11,0,22.400000000000002,1.29,0.026000000000000002,0.63,65,1018,796,0,0,-7.300000000000001,65,1018,0,796,0.263,13.11,44.12,0.91,0.12,797,0.6000000000000001,220,2
+2023,9,25,11,30,22.900000000000002,1.29,0.026000000000000002,0.63,65,1024,823,0,0,-7.300000000000001,65,1024,0,823,0.262,12.72,42.29,0.91,0.12,797,0.6000000000000001,221,2
+2023,9,25,12,0,23.400000000000002,1.28,0.026000000000000002,0.63,66,1029,836,0,0,-7.7,66,1029,0,836,0.262,11.9,41.53,0.91,0.12,797,0.6000000000000001,221,1.9000000000000001
+2023,9,25,12,30,23.700000000000003,1.28,0.026000000000000002,0.63,66,1029,832,0,0,-7.7,66,1029,0,832,0.261,11.69,41.88,0.91,0.12,797,0.6000000000000001,223,1.9000000000000001
+2023,9,25,13,0,24,1.28,0.026000000000000002,0.63,65,1026,811,0,0,-8.200000000000001,65,1026,0,811,0.26,11.06,43.32,0.9,0.12,797,0.5,225,1.8
+2023,9,25,13,30,24,1.28,0.026000000000000002,0.63,63,1020,775,0,0,-8.200000000000001,63,1020,0,775,0.26,11.040000000000001,45.74,0.9,0.12,796,0.5,228,1.7000000000000002
+2023,9,25,14,0,24.1,1.27,0.025,0.63,61,1010,724,0,0,-8.700000000000001,61,1010,0,724,0.26,10.59,48.99,0.9,0.12,796,0.5,230,1.6
+2023,9,25,14,30,23.900000000000002,1.27,0.025,0.63,60,994,659,0,0,-8.700000000000001,60,994,0,659,0.261,10.71,52.910000000000004,0.9,0.12,796,0.5,229,1.5
+2023,9,25,15,0,23.700000000000003,1.27,0.024,0.63,57,972,581,0,0,-9.1,57,972,0,581,0.261,10.51,57.36,0.9,0.12,796,0.5,229,1.3
+2023,9,25,15,30,23.200000000000003,1.27,0.024,0.63,53,941,492,0,0,-9.1,53,941,0,492,0.262,10.83,62.21,0.9,0.12,796,0.5,223,1.1
+2023,9,25,16,0,22.6,1.29,0.024,0.63,50,897,395,0,0,-9.4,50,897,0,395,0.262,10.98,67.35,0.9,0.12,796,0.5,216,0.9
+2023,9,25,16,30,21.400000000000002,1.29,0.024,0.63,45,836,293,0,0,-9.4,45,836,0,293,0.262,11.81,72.71000000000001,0.9,0.12,796,0.5,196,0.7000000000000001
+2023,9,25,17,0,20.200000000000003,1.3,0.024,0.63,37,738,188,0,0,-5.7,37,738,0,188,0.263,16.89,78.22,0.9,0.12,796,0.5,176,0.4
+2023,9,25,17,30,18.6,1.3,0.024,0.63,28,565,89,0,0,-5.7,28,565,0,89,0.263,18.650000000000002,83.81,0.89,0.12,796,0.4,149,0.5
+2023,9,25,18,0,17,1.32,0.023,0.63,12,161,14,0,0,-6.9,12,161,0,14,0.263,18.82,89.27,0.89,0.12,796,0.4,121,0.6000000000000001
+2023,9,25,18,30,16.2,1.32,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,19.8,95.31,0.89,0.12,796,0.4,113,0.8
+2023,9,25,19,0,15.4,1.33,0.023,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.264,19.91,100.99000000000001,0.89,0.12,796,0.4,105,0.9
+2023,9,25,19,30,14.700000000000001,1.33,0.023,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.264,20.82,106.59,0.89,0.12,796,0.4,106,1
+2023,9,25,20,0,14.100000000000001,1.34,0.023,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.264,21.07,112.08,0.89,0.12,796,0.4,106,1.1
+2023,9,25,20,30,13.600000000000001,1.34,0.023,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.263,21.77,117.39,0.89,0.12,796,0.4,110,1.1
+2023,9,25,21,0,13.100000000000001,1.36,0.023,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.263,22.06,122.44,0.89,0.12,796,0.4,113,1.2000000000000002
+2023,9,25,21,30,12.700000000000001,1.36,0.023,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.263,22.650000000000002,127.15,0.88,0.12,796,0.4,117,1.2000000000000002
+2023,9,25,22,0,12.3,1.3800000000000001,0.023,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.263,23.02,131.4,0.88,0.12,796,0.4,122,1.2000000000000002
+2023,9,25,22,30,11.9,1.3800000000000001,0.023,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,23.63,135.03,0.88,0.12,796,0.4,126,1.2000000000000002
+2023,9,25,23,0,11.5,1.41,0.024,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,24.23,137.89000000000001,0.88,0.12,796,0.4,131,1.2000000000000002
+2023,9,25,23,30,11.3,1.41,0.024,0.63,0,0,0,0,0,-8.3,0,0,0,0,0.262,24.55,139.8,0.88,0.12,796,0.4,136,1.2000000000000002
+2023,9,26,0,0,11,1.44,0.024,0.63,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.261,25.150000000000002,140.61,0.88,0.12,796,0.4,140,1.2000000000000002
+2023,9,26,0,30,10.8,1.44,0.024,0.63,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.261,25.490000000000002,140.26,0.88,0.12,796,0.4,146,1.2000000000000002
+2023,9,26,1,0,10.5,1.47,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.261,26.240000000000002,138.77,0.88,0.12,796,0.4,152,1.1
+2023,9,26,1,30,10.100000000000001,1.47,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.261,26.95,136.26,0.88,0.12,796,0.4,155,1.1
+2023,9,26,2,0,9.700000000000001,1.49,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,28.03,132.91,0.88,0.12,796,0.4,158,1.1
+2023,9,26,2,30,9.3,1.49,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,28.79,128.88,0.88,0.12,796,0.4,157,1.1
+2023,9,26,3,0,8.9,1.51,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,29.73,124.34,0.88,0.12,796,0.4,157,1.1
+2023,9,26,3,30,8.6,1.51,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,30.330000000000002,119.42,0.88,0.12,796,0.4,157,1.1
+2023,9,26,4,0,8.200000000000001,1.52,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.261,31.1,114.2,0.88,0.12,796,0.4,158,1
+2023,9,26,4,30,7.9,1.52,0.024,0.63,0,0,0,0,0,-7.9,0,0,0,0,0.262,31.740000000000002,108.79,0.88,0.12,796,0.4,158,1
+2023,9,26,5,0,7.6000000000000005,1.52,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.262,31.98,103.23,0.88,0.12,796,0.4,158,0.9
+2023,9,26,5,30,7.6000000000000005,1.52,0.024,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.262,31.98,97.58,0.88,0.12,796,0.4,156,0.9
+2023,9,26,6,0,7.5,1.52,0.024,0.63,3,41,2,0,0,-8.200000000000001,3,41,0,2,0.262,31.89,91.89,0.88,0.12,796,0.4,155,0.8
+2023,9,26,6,30,9.200000000000001,1.52,0.024,0.63,23,459,55,0,0,-8.200000000000001,23,459,0,55,0.262,28.43,86.05,0.89,0.12,796,0.4,151,0.9
+2023,9,26,7,0,11,1.52,0.024,0.63,35,686,148,0,0,-7.7,35,686,0,148,0.263,26.13,80.48,0.89,0.12,797,0.4,148,1
+2023,9,26,7,30,12.8,1.52,0.024,0.63,42,805,251,0,0,-7.7,42,805,0,251,0.263,23.21,74.95,0.89,0.12,797,0.5,146,1
+2023,9,26,8,0,14.700000000000001,1.51,0.024,0.63,47,880,355,0,0,-8.700000000000001,47,880,0,355,0.263,19.080000000000002,69.54,0.89,0.12,797,0.5,143,1
+2023,9,26,8,30,17.2,1.51,0.024,0.63,51,927,453,0,0,-8.700000000000001,51,927,0,453,0.262,16.27,64.32000000000001,0.89,0.12,797,0.5,173,1.2000000000000002
+2023,9,26,9,0,19.700000000000003,1.52,0.024,0.63,55,962,545,0,0,-8.9,55,962,0,545,0.262,13.67,59.38,0.89,0.12,797,0.5,203,1.3
+2023,9,26,9,30,21,1.52,0.024,0.63,58,987,627,0,0,-8.9,58,987,0,627,0.262,12.6,54.79,0.89,0.12,796,0.5,205,1.5
+2023,9,26,10,0,22.3,1.53,0.024,0.63,60,1006,697,0,0,-8.700000000000001,60,1006,0,697,0.262,11.81,50.68,0.89,0.12,796,0.5,206,1.7000000000000002
+2023,9,26,10,30,23,1.53,0.024,0.63,61,1020,754,0,0,-8.700000000000001,61,1020,0,754,0.261,11.32,47.19,0.89,0.12,796,0.5,205,1.8
+2023,9,26,11,0,23.8,1.55,0.022,0.63,61,1030,796,0,0,-8.6,61,1030,0,796,0.261,10.89,44.46,0.89,0.12,796,0.5,205,1.9000000000000001
+2023,9,26,11,30,24.200000000000003,1.55,0.022,0.63,61,1036,823,0,0,-8.6,61,1036,0,823,0.26,10.620000000000001,42.660000000000004,0.89,0.12,795,0.5,206,2.1
+2023,9,26,12,0,24.700000000000003,1.56,0.022,0.63,62,1038,834,0,0,-8.700000000000001,62,1038,0,834,0.26,10.25,41.910000000000004,0.89,0.12,795,0.5,208,2.2
+2023,9,26,12,30,25,1.56,0.022,0.63,62,1037,829,0,0,-8.700000000000001,62,1037,0,829,0.259,10.07,42.27,0.89,0.12,795,0.5,211,2.3000000000000003
+2023,9,26,13,0,25.200000000000003,1.56,0.023,0.63,62,1032,808,0,0,-8.700000000000001,62,1032,29,808,0.259,9.89,43.71,0.89,0.12,794,0.5,214,2.4000000000000004
+2023,9,26,13,30,25.200000000000003,1.56,0.023,0.63,61,1024,771,0,0,-8.700000000000001,61,1024,0,771,0.258,9.89,46.13,0.89,0.12,794,0.5,220,2.4000000000000004
+2023,9,26,14,0,25.3,1.56,0.025,0.63,61,1011,719,0,0,-8.8,61,1011,0,719,0.258,9.8,49.370000000000005,0.89,0.12,794,0.5,226,2.5
+2023,9,26,14,30,25,1.56,0.025,0.63,59,994,653,0,0,-8.8,59,994,0,653,0.258,9.98,53.28,0.89,0.12,794,0.5,232,2.6
+2023,9,26,15,0,24.8,1.57,0.026000000000000002,0.63,57,968,574,0,0,-8.9,57,968,0,574,0.257,9.98,57.72,0.89,0.12,793,0.5,237,2.7
+2023,9,26,15,30,24.200000000000003,1.57,0.026000000000000002,0.63,53,934,484,0,0,-8.9,53,934,0,484,0.257,10.35,62.550000000000004,0.89,0.12,793,0.6000000000000001,241,2.7
+2023,9,26,16,0,23.6,1.59,0.026000000000000002,0.63,50,889,387,0,0,-9,50,889,0,387,0.256,10.67,67.69,0.89,0.12,793,0.6000000000000001,244,2.6
+2023,9,26,16,30,22,1.59,0.026000000000000002,0.63,44,822,284,0,0,-9,44,822,0,284,0.256,11.76,73.04,0.89,0.12,793,0.6000000000000001,247,1.9000000000000001
+2023,9,26,17,0,20.3,1.6300000000000001,0.026000000000000002,0.63,37,716,179,0,0,-6,37,716,0,179,0.255,16.42,78.55,0.89,0.12,794,0.6000000000000001,250,1.3
+2023,9,26,17,30,18.5,1.6300000000000001,0.026000000000000002,0.63,27,536,82,0,0,-6,27,536,0,82,0.255,18.36,84.12,0.89,0.12,794,0.6000000000000001,255,1.2000000000000002
+2023,9,26,18,0,16.7,1.6600000000000001,0.025,0.63,11,147,12,0,0,-6.2,11,147,0,12,0.255,20.240000000000002,89.56,0.89,0.12,794,0.6000000000000001,259,1.1
+2023,9,26,18,30,16.5,1.6600000000000001,0.025,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.255,20.5,95.63,0.89,0.12,794,0.6000000000000001,263,1
+2023,9,26,19,0,16.3,1.68,0.023,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.255,20.09,101.31,0.89,0.12,794,0.6000000000000001,266,1
+2023,9,26,19,30,16.1,1.68,0.023,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.255,20.35,106.92,0.88,0.12,794,0.6000000000000001,263,0.9
+2023,9,26,20,0,16,1.68,0.022,0.63,0,0,0,0,0,-7,0,0,0,0,0.255,20.02,112.41,0.88,0.12,794,0.6000000000000001,260,0.9
+2023,9,26,20,30,15.700000000000001,1.68,0.022,0.63,0,0,0,0,0,-7,0,0,0,0,0.256,20.41,117.73,0.88,0.12,794,0.6000000000000001,252,0.9
+2023,9,26,21,0,15.4,1.67,0.021,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.256,20.38,122.79,0.88,0.12,794,0.6000000000000001,244,0.9
+2023,9,26,21,30,14.9,1.67,0.021,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.256,21.04,127.51,0.89,0.12,794,0.6000000000000001,238,0.9
+2023,9,26,22,0,14.4,1.6600000000000001,0.021,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.256,21.47,131.77,0.89,0.12,794,0.6000000000000001,231,1
+2023,9,26,22,30,13.8,1.6600000000000001,0.021,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.256,22.31,135.42000000000002,0.89,0.12,794,0.7000000000000001,226,1
+2023,9,26,23,0,13.200000000000001,1.6500000000000001,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.256,23.09,138.29,0.89,0.12,794,0.7000000000000001,222,1.1
+2023,9,26,23,30,12.600000000000001,1.6500000000000001,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.256,24.01,140.20000000000002,0.9,0.12,794,0.7000000000000001,222,1.1
+2023,9,27,0,0,12,1.6400000000000001,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,24.88,141,0.9,0.12,794,0.7000000000000001,223,1.2000000000000002
+2023,9,27,0,30,11.3,1.6400000000000001,0.021,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,26.060000000000002,140.63,0.9,0.12,794,0.7000000000000001,226,1.3
+2023,9,27,1,0,10.700000000000001,1.62,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,27.07,139.12,0.9,0.12,793,0.7000000000000001,229,1.4000000000000001
+2023,9,27,1,30,10.4,1.62,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,27.62,136.58,0.9,0.12,793,0.7000000000000001,231,1.4000000000000001
+2023,9,27,2,0,10.100000000000001,1.59,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.257,28.29,133.2,0.9,0.12,793,0.7000000000000001,232,1.4000000000000001
+2023,9,27,2,30,9.9,1.59,0.022,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.258,28.67,129.15,0.9,0.12,793,0.7000000000000001,228,1.3
+2023,9,27,3,0,9.700000000000001,1.56,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.258,29.13,124.59,0.9,0.12,793,0.8,223,1.2000000000000002
+2023,9,27,3,30,9.5,1.56,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.259,29.560000000000002,119.64,0.9,0.12,794,0.8,215,1.2000000000000002
+2023,9,27,4,0,9.3,1.54,0.024,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.26,30.01,114.42,0.9,0.12,794,0.8,206,1.1
+2023,9,27,4,30,9,1.54,0.024,0.63,0,0,0,0,0,-7.4,0,0,14,0,0.26,30.62,108.99000000000001,0.9,0.12,794,0.8,199,1.1
+2023,9,27,5,0,8.6,1.53,0.025,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.261,31.61,103.42,0.9,0.12,794,0.8,191,1.1
+2023,9,27,5,30,8.6,1.53,0.025,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.261,31.61,97.77,0.9,0.12,794,0.8,187,1.2000000000000002
+2023,9,27,6,0,8.5,1.53,0.025,0.63,3,34,2,0,0,-7.2,3,34,0,2,0.261,32.22,92.08,0.9,0.12,794,0.8,182,1.2000000000000002
+2023,9,27,6,30,10.4,1.53,0.025,0.63,23,414,50,0,0,-7.2,23,414,0,50,0.261,28.36,86.23,0.91,0.12,794,0.8,178,1.4000000000000001
+2023,9,27,7,0,12.3,1.54,0.026000000000000002,0.63,33,645,138,0,0,-6.5,33,645,0,138,0.262,26.27,80.67,0.91,0.12,794,0.8,174,1.6
+2023,9,27,7,30,14.3,1.54,0.026000000000000002,0.63,42,772,240,0,0,-6.5,42,772,0,240,0.261,23.07,75.15,0.91,0.12,794,0.8,178,1.9000000000000001
+2023,9,27,8,0,16.3,1.55,0.025,0.63,47,849,341,0,0,-6.6000000000000005,47,849,0,341,0.261,20.17,69.75,0.91,0.12,794,0.8,182,2.2
+2023,9,27,8,30,18.6,1.55,0.025,0.63,52,903,440,0,0,-6.6000000000000005,52,903,0,440,0.26,17.45,64.55,0.91,0.12,794,0.8,194,2.8000000000000003
+2023,9,27,9,0,20.8,1.57,0.025,0.63,55,940,530,0,0,-5.300000000000001,55,940,0,530,0.26,16.77,59.620000000000005,0.91,0.12,794,0.8,205,3.4000000000000004
+2023,9,27,9,30,21.900000000000002,1.57,0.025,0.63,58,967,612,0,0,-5.4,58,967,0,612,0.259,15.66,55.06,0.91,0.12,793,0.8,206,3.7
+2023,9,27,10,0,23,1.58,0.024,0.63,59,987,681,0,0,-5,59,987,0,681,0.259,15.09,50.97,0.91,0.12,793,0.8,206,4
+2023,9,27,10,30,23.8,1.58,0.024,0.63,60,1002,737,0,0,-5,60,1002,0,737,0.258,14.38,47.5,0.91,0.12,793,0.8,208,4.2
+2023,9,27,11,0,24.6,1.58,0.02,0.63,59,1014,778,0,0,-4.9,59,1014,0,778,0.257,13.780000000000001,44.81,0.9,0.12,792,0.8,209,4.5
+2023,9,27,11,30,25.200000000000003,1.58,0.02,0.63,59,1020,805,0,0,-4.9,59,1020,0,805,0.257,13.290000000000001,43.03,0.9,0.12,792,0.8,211,4.6000000000000005
+2023,9,27,12,0,25.8,1.59,0.02,0.63,59,1022,815,0,0,-5,59,1022,0,815,0.256,12.69,42.300000000000004,0.9,0.12,792,0.8,212,4.800000000000001
+2023,9,27,12,30,26.1,1.59,0.02,0.63,59,1021,810,0,0,-5,59,1021,0,810,0.255,12.450000000000001,42.67,0.9,0.12,791,0.8,214,4.9
+2023,9,27,13,0,26.5,1.61,0.021,0.63,60,1016,789,0,0,-5.300000000000001,60,1016,14,789,0.254,11.92,44.11,0.9,0.12,791,0.8,216,5.1000000000000005
+2023,9,27,13,30,26.6,1.61,0.021,0.63,58,1008,752,0,0,-5.300000000000001,58,1008,0,752,0.255,11.83,46.52,0.9,0.12,790,0.8,217,5.1000000000000005
+2023,9,27,14,0,26.8,1.6400000000000001,0.022,0.63,58,995,701,0,0,-5.6000000000000005,58,995,0,701,0.255,11.47,49.75,0.9,0.12,790,0.8,219,5.2
+2023,9,27,14,30,26.6,1.6400000000000001,0.022,0.63,56,978,636,0,0,-5.6000000000000005,56,978,0,636,0.255,11.61,53.65,0.9,0.12,790,0.8,220,5.2
+2023,9,27,15,0,26.5,1.68,0.023,0.63,54,955,559,0,0,-5.800000000000001,54,955,0,559,0.256,11.47,58.08,0.9,0.12,789,0.8,221,5.2
+2023,9,27,15,30,26,1.68,0.023,0.63,52,923,472,0,0,-5.800000000000001,52,923,0,472,0.257,11.81,62.9,0.9,0.12,789,0.8,223,5.1000000000000005
+2023,9,27,16,0,25.400000000000002,1.72,0.024,0.63,48,877,376,0,0,-6,48,877,0,376,0.257,12.120000000000001,68.03,0.9,0.12,789,0.8,224,5
+2023,9,27,16,30,23.8,1.72,0.024,0.63,43,808,274,0,0,-6,43,808,0,274,0.258,13.33,73.37,0.9,0.12,789,0.8,225,3.9000000000000004
+2023,9,27,17,0,22.1,1.73,0.025,0.63,37,701,172,0,0,-5.300000000000001,37,701,0,172,0.258,15.59,78.87,0.9,0.12,789,0.7000000000000001,226,2.9000000000000004
+2023,9,27,17,30,19.5,1.73,0.025,0.63,26,513,76,0,0,-5.2,26,513,0,76,0.259,18.31,84.44,0.89,0.12,790,0.7000000000000001,226,2.3000000000000003
+2023,9,27,18,0,16.900000000000002,1.73,0.026000000000000002,0.63,9,116,9,0,0,-4.9,9,116,0,9,0.26,22.19,89.84,0.89,0.12,790,0.7000000000000001,227,1.8
+2023,9,27,18,30,16.1,1.73,0.026000000000000002,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.261,23.34,95.94,0.89,0.12,790,0.7000000000000001,226,1.8
+2023,9,27,19,0,15.4,1.72,0.027,0.63,0,0,0,0,0,-5,0,0,0,0,0.261,24.11,101.63,0.89,0.12,790,0.7000000000000001,225,1.7000000000000002
+2023,9,27,19,30,14.9,1.72,0.027,0.63,0,0,0,0,0,-5,0,0,0,0,0.262,24.89,107.24000000000001,0.89,0.12,790,0.7000000000000001,224,1.7000000000000002
+2023,9,27,20,0,14.3,1.73,0.026000000000000002,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.262,25.48,112.74000000000001,0.89,0.12,790,0.7000000000000001,223,1.7000000000000002
+2023,9,27,20,30,13.8,1.73,0.026000000000000002,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.262,26.32,118.07000000000001,0.89,0.12,790,0.7000000000000001,224,1.7000000000000002
+2023,9,27,21,0,13.4,1.73,0.026000000000000002,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.262,26.650000000000002,123.14,0.89,0.12,790,0.7000000000000001,225,1.7000000000000002
+2023,9,27,21,30,13,1.73,0.026000000000000002,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.261,27.36,127.88000000000001,0.89,0.12,790,0.7000000000000001,226,1.6
+2023,9,27,22,0,12.600000000000001,1.73,0.025,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.261,27.87,132.15,0.89,0.12,790,0.7000000000000001,227,1.6
+2023,9,27,22,30,12.3,1.73,0.025,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.26,28.42,135.81,0.89,0.12,790,0.8,226,1.5
+2023,9,27,23,0,12,1.72,0.024,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.259,28.830000000000002,138.69,0.89,0.12,790,0.8,226,1.4000000000000001
+2023,9,27,23,30,11.9,1.72,0.024,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.259,29.02,140.6,0.89,0.12,790,0.8,225,1.3
+2023,9,28,0,0,11.8,1.72,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.04,141.39000000000001,0.89,0.12,790,0.8,223,1.2000000000000002
+2023,9,28,0,30,11.700000000000001,1.72,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.23,141.01,0.89,0.12,790,0.8,220,1.1
+2023,9,28,1,0,11.700000000000001,1.71,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.11,139.47,0.9,0.12,790,0.8,217,1
+2023,9,28,1,30,11.4,1.71,0.025,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,29.69,136.91,0.9,0.12,790,0.8,208,0.9
+2023,9,28,2,0,11.200000000000001,1.69,0.026000000000000002,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.258,30.19,133.5,0.9,0.12,790,0.8,199,0.8
+2023,9,28,2,30,11,1.69,0.026000000000000002,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.259,30.6,129.42000000000002,0.9,0.12,790,0.8,188,0.7000000000000001
+2023,9,28,3,0,10.700000000000001,1.67,0.027,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.259,31.580000000000002,124.84,0.9,0.12,790,0.8,177,0.6000000000000001
+2023,9,28,3,30,10.600000000000001,1.67,0.027,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.259,31.79,119.87,0.9,0.12,790,0.8,178,0.5
+2023,9,28,4,0,10.4,1.6600000000000001,0.028,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.26,32.72,114.63,0.9,0.12,790,0.8,178,0.4
+2023,9,28,4,30,10,1.6600000000000001,0.028,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.26,33.6,109.19,0.9,0.12,790,0.8,232,0.30000000000000004
+2023,9,28,5,0,9.700000000000001,1.6600000000000001,0.029,0.63,0,0,0,0,0,-5,0,0,0,0,0.26,35.04,103.61,0.9,0.12,790,0.8,286,0.30000000000000004
+2023,9,28,5,30,9.5,1.6600000000000001,0.029,0.63,0,0,0,0,0,-5,0,0,0,0,0.26,35.51,97.96000000000001,0.9,0.12,790,0.8,292,0.4
+2023,9,28,6,0,9.3,1.6600000000000001,0.03,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.261,37.13,92.27,0.9,0.12,790,0.8,298,0.5
+2023,9,28,6,30,11,1.6600000000000001,0.03,0.63,22,364,45,0,0,-4.6000000000000005,22,364,0,45,0.261,33.15,86.42,0.9,0.12,790,0.8,277,0.6000000000000001
+2023,9,28,7,0,12.700000000000001,1.67,0.031,0.63,35,632,135,0,0,-3.9000000000000004,35,632,0,135,0.261,31.17,80.87,0.9,0.12,790,0.8,256,0.7000000000000001
+2023,9,28,7,30,14.8,1.67,0.031,0.63,43,764,236,0,0,-3.9000000000000004,43,764,0,236,0.261,27.2,75.35000000000001,0.9,0.12,790,0.7000000000000001,243,1.3
+2023,9,28,8,0,16.900000000000002,1.6600000000000001,0.032,0.63,50,845,339,0,0,-4.800000000000001,50,845,0,339,0.26,22.32,69.97,0.9,0.12,790,0.7000000000000001,230,1.9000000000000001
+2023,9,28,8,30,19,1.6600000000000001,0.032,0.63,54,899,437,0,0,-4.800000000000001,54,899,0,437,0.26,19.57,64.78,0.9,0.12,790,0.7000000000000001,227,2.7
+2023,9,28,9,0,21.200000000000003,1.6400000000000001,0.032,0.63,59,937,529,0,0,-6.5,59,937,0,529,0.259,14.93,59.870000000000005,0.9,0.12,790,0.7000000000000001,224,3.6
+2023,9,28,9,30,22.200000000000003,1.6400000000000001,0.032,0.63,61,967,611,0,0,-6.5,61,967,0,611,0.259,14.05,55.32,0.9,0.12,790,0.7000000000000001,222,4.1000000000000005
+2023,9,28,10,0,23.200000000000003,1.61,0.032,0.63,64,988,682,0,0,-7.5,64,988,0,682,0.258,12.24,51.26,0.9,0.12,789,0.6000000000000001,221,4.6000000000000005
+2023,9,28,10,30,23.900000000000002,1.61,0.032,0.63,64,1005,739,0,0,-7.5,64,1005,0,739,0.258,11.74,47.82,0.9,0.12,789,0.6000000000000001,221,4.9
+2023,9,28,11,0,24.6,1.69,0.029,0.63,65,1016,782,0,0,-8.4,65,1016,0,782,0.257,10.55,45.15,0.9,0.12,789,0.6000000000000001,222,5.300000000000001
+2023,9,28,11,30,25,1.69,0.029,0.63,65,1022,808,0,0,-8.4,65,1022,0,808,0.256,10.28,43.4,0.9,0.12,788,0.6000000000000001,222,5.5
+2023,9,28,12,0,25.5,1.67,0.029,0.63,66,1024,819,0,0,-9.200000000000001,66,1024,0,819,0.256,9.38,42.69,0.9,0.12,788,0.6000000000000001,222,5.7
+2023,9,28,12,30,25.700000000000003,1.67,0.029,0.63,66,1023,813,0,0,-9.200000000000001,66,1023,0,813,0.255,9.27,43.07,0.9,0.12,788,0.6000000000000001,222,5.800000000000001
+2023,9,28,13,0,25.900000000000002,1.6400000000000001,0.03,0.63,66,1018,792,0,0,-10,66,1018,0,792,0.254,8.61,44.51,0.91,0.12,787,0.6000000000000001,222,5.9
+2023,9,28,13,30,25.900000000000002,1.6400000000000001,0.03,0.63,63,1011,754,0,0,-10,67,998,0,749,0.254,8.61,46.910000000000004,0.9,0.12,787,0.6000000000000001,223,5.9
+2023,9,28,14,0,25.8,1.72,0.028,0.63,61,1000,702,0,7,-10.700000000000001,151,761,0,639,0.253,8.2,50.14,0.9,0.12,787,0.6000000000000001,223,5.9
+2023,9,28,14,30,25.5,1.72,0.028,0.63,59,982,636,0,0,-10.700000000000001,95,876,0,610,0.253,8.34,54.02,0.9,0.12,787,0.6000000000000001,223,5.9
+2023,9,28,15,0,25.200000000000003,1.62,0.029,0.63,57,956,558,0,0,-11.3,110,796,0,527,0.253,8.1,58.43,0.9,0.12,786,0.6000000000000001,223,5.800000000000001
+2023,9,28,15,30,24.6,1.62,0.029,0.63,54,922,469,0,0,-11.3,65,891,0,466,0.253,8.4,63.25,0.9,0.12,786,0.6000000000000001,222,5.6000000000000005
+2023,9,28,16,0,24,1.51,0.03,0.63,50,873,372,0,0,-11.700000000000001,50,873,0,372,0.253,8.43,68.36,0.9,0.12,786,0.6000000000000001,222,5.4
+2023,9,28,16,30,22.400000000000002,1.51,0.03,0.63,45,801,270,0,0,-11.700000000000001,45,801,0,270,0.254,9.3,73.7,0.9,0.12,787,0.6000000000000001,221,4.4
+2023,9,28,17,0,20.900000000000002,1.43,0.032,0.63,38,687,167,0,0,-11.100000000000001,38,687,0,167,0.254,10.66,79.19,0.9,0.11,787,0.6000000000000001,220,3.3000000000000003
+2023,9,28,17,30,18.2,1.43,0.032,0.63,27,482,71,0,0,-11.100000000000001,27,482,0,71,0.255,12.6,84.75,0.9,0.11,787,0.6000000000000001,219,2.6
+2023,9,28,18,0,15.600000000000001,1.3800000000000001,0.034,0.63,7,84,7,0,0,-10.4,7,84,0,7,0.255,15.71,90.12,0.9,0.11,787,0.6000000000000001,218,2
+2023,9,28,18,30,14.8,1.3800000000000001,0.034,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.256,16.56,96.26,0.9,0.11,788,0.6000000000000001,219,1.9000000000000001
+2023,9,28,19,0,14,1.34,0.038,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.256,17.23,101.95,0.9,0.11,788,0.7000000000000001,220,1.9000000000000001
+2023,9,28,19,30,13.4,1.34,0.038,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.257,17.92,107.57000000000001,0.9,0.11,788,0.7000000000000001,225,1.8
+2023,9,28,20,0,12.8,1.28,0.041,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.257,18.900000000000002,113.07000000000001,0.91,0.11,788,0.7000000000000001,230,1.7000000000000002
+2023,9,28,20,30,12.200000000000001,1.28,0.041,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.258,19.66,118.4,0.91,0.11,788,0.7000000000000001,239,1.6
+2023,9,28,21,0,11.700000000000001,1.2,0.045,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.258,22.06,123.49000000000001,0.91,0.11,788,0.7000000000000001,249,1.5
+2023,9,28,21,30,11.200000000000001,1.2,0.045,0.63,0,0,0,0,8,-9.3,0,0,0,0,0.258,22.8,128.24,0.91,0.11,788,0.7000000000000001,264,1.3
+2023,9,28,22,0,10.700000000000001,1.1500000000000001,0.046,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.258,27.75,132.52,0.91,0.11,789,0.7000000000000001,278,1.1
+2023,9,28,22,30,10.4,1.1500000000000001,0.046,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.258,28.310000000000002,136.2,0.91,0.11,789,0.7000000000000001,294,0.9
+2023,9,28,23,0,10.100000000000001,1.11,0.046,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.257,33.59,139.08,0.91,0.11,789,0.7000000000000001,311,0.8
+2023,9,28,23,30,9.8,1.11,0.046,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.257,34.27,140.99,0.91,0.11,789,0.7000000000000001,335,0.7000000000000001
+2023,9,29,0,0,9.5,1.08,0.047,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.256,37.800000000000004,141.78,0.91,0.11,789,0.8,359,0.6000000000000001
+2023,9,29,0,30,9.1,1.08,0.047,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.255,38.83,141.38,0.91,0.11,789,0.8,201,0.6000000000000001
+2023,9,29,1,0,8.6,1.06,0.046,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.254,41.44,139.82,0.91,0.11,789,0.8,43,0.7000000000000001
+2023,9,29,1,30,8.1,1.06,0.046,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.254,42.87,137.23,0.91,0.11,789,0.8,53,0.9
+2023,9,29,2,0,7.6000000000000005,1.03,0.046,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.254,44.71,133.79,0.91,0.11,789,0.8,62,1
+2023,9,29,2,30,7.300000000000001,1.03,0.046,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.254,45.64,129.69,0.91,0.11,789,0.8,67,1
+2023,9,29,3,0,7,1,0.048,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.255,45.99,125.08,0.91,0.11,789,0.8,72,1.1
+2023,9,29,3,30,6.800000000000001,1,0.048,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.255,46.62,120.10000000000001,0.92,0.11,789,0.8,74,1.1
+2023,9,29,4,0,6.7,0.98,0.049,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.255,45.42,114.84,0.92,0.11,789,0.8,77,1.1
+2023,9,29,4,30,6.7,0.98,0.049,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.256,45.42,109.39,0.92,0.11,789,0.8,78,1.1
+2023,9,29,5,0,6.7,0.97,0.049,0.63,0,0,0,0,0,-5,0,0,0,0,0.256,43.13,103.81,0.92,0.11,789,0.8,80,1.1
+2023,9,29,5,30,6.9,0.97,0.049,0.63,0,0,0,0,0,-5,0,0,0,0,0.257,42.550000000000004,98.15,0.92,0.11,789,0.8,82,1
+2023,9,29,6,0,7.2,0.97,0.049,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.258,39.77,92.45,0.92,0.11,789,0.8,84,0.9
+2023,9,29,6,30,9,0.97,0.049,0.63,24,289,41,0,0,-5.6000000000000005,24,289,0,41,0.258,35.2,86.60000000000001,0.92,0.11,789,0.8,93,0.8
+2023,9,29,7,0,10.8,0.96,0.05,0.63,40,567,128,0,0,-5.7,40,567,0,128,0.259,31.04,81.06,0.92,0.11,789,0.8,101,0.8
+2023,9,29,7,30,12.700000000000001,0.96,0.05,0.63,50,711,227,0,0,-5.7,50,711,0,227,0.26,27.39,75.55,0.92,0.11,789,0.8,134,1
+2023,9,29,8,0,14.700000000000001,0.96,0.053,0.63,57,798,328,0,0,-6.300000000000001,57,798,0,328,0.261,22.900000000000002,70.18,0.92,0.11,790,0.8,167,1.3
+2023,9,29,8,30,17,0.96,0.053,0.63,65,855,426,0,0,-6.300000000000001,65,855,0,426,0.262,19.78,65.01,0.92,0.11,790,0.8,188,2.3000000000000003
+2023,9,29,9,0,19.3,0.93,0.057,0.63,70,893,515,0,0,-6.7,70,893,0,515,0.262,16.6,60.11,0.93,0.11,790,0.8,208,3.4000000000000004
+2023,9,29,9,30,20.5,0.93,0.057,0.63,75,921,595,0,0,-6.7,75,921,0,595,0.262,15.42,55.59,0.93,0.11,790,0.8,211,4
+2023,9,29,10,0,21.6,0.91,0.06,0.63,79,941,664,0,0,-6.7,79,941,0,664,0.263,14.41,51.56,0.93,0.11,789,0.8,214,4.5
+2023,9,29,10,30,22.400000000000002,0.91,0.06,0.63,79,962,721,0,0,-6.7,79,962,0,721,0.263,13.73,48.14,0.92,0.11,789,0.8,213,4.9
+2023,9,29,11,0,23.200000000000003,0.85,0.048,0.63,76,981,764,0,0,-6.9,76,981,0,764,0.263,12.91,45.5,0.92,0.11,789,0.8,213,5.300000000000001
+2023,9,29,11,30,23.700000000000003,0.85,0.048,0.63,77,990,792,0,0,-6.9,77,990,0,792,0.263,12.530000000000001,43.77,0.92,0.11,789,0.8,212,5.5
+2023,9,29,12,0,24.3,0.85,0.045,0.63,76,995,803,0,0,-7.300000000000001,76,995,0,803,0.262,11.700000000000001,43.07,0.92,0.11,788,0.8,212,5.7
+2023,9,29,12,30,24.6,0.85,0.045,0.63,75,996,798,0,0,-7.300000000000001,75,996,0,798,0.262,11.49,43.46,0.92,0.11,788,0.7000000000000001,211,5.800000000000001
+2023,9,29,13,0,25,0.84,0.042,0.63,74,993,777,0,0,-7.800000000000001,74,993,0,777,0.262,10.76,44.910000000000004,0.92,0.11,788,0.7000000000000001,211,5.9
+2023,9,29,13,30,25.1,0.84,0.042,0.63,72,987,741,0,0,-7.800000000000001,72,987,0,741,0.262,10.68,47.300000000000004,0.91,0.11,787,0.7000000000000001,211,6
+2023,9,29,14,0,25.200000000000003,0.73,0.037,0.63,69,977,690,0,0,-8.3,69,977,0,690,0.261,10.27,50.52,0.91,0.11,787,0.7000000000000001,211,6
+2023,9,29,14,30,25,0.73,0.037,0.63,66,959,624,0,0,-8.3,66,959,0,624,0.261,10.39,54.39,0.91,0.11,787,0.7000000000000001,212,6
+2023,9,29,15,0,24.8,0.71,0.035,0.63,62,934,546,0,0,-8.3,62,934,0,546,0.261,10.450000000000001,58.79,0.91,0.11,787,0.7000000000000001,212,5.9
+2023,9,29,15,30,24.3,0.71,0.035,0.63,58,900,458,0,0,-8.3,58,900,0,458,0.261,10.77,63.59,0.91,0.11,787,0.7000000000000001,211,5.7
+2023,9,29,16,0,23.700000000000003,0.71,0.033,0.63,53,850,362,0,0,-8.1,53,850,0,362,0.261,11.370000000000001,68.7,0.91,0.11,787,0.7000000000000001,211,5.4
+2023,9,29,16,30,22.1,0.71,0.033,0.63,46,777,260,0,0,-8.1,46,777,0,260,0.261,12.52,74.03,0.91,0.11,787,0.7000000000000001,210,4.2
+2023,9,29,17,0,20.5,0.81,0.03,0.63,37,662,158,0,0,-7.1000000000000005,37,662,0,158,0.261,14.88,79.51,0.91,0.12,787,0.7000000000000001,209,3
+2023,9,29,17,30,17.900000000000002,0.81,0.03,0.63,26,457,65,0,0,-7.2,26,457,0,65,0.261,17.490000000000002,85.07000000000001,0.91,0.12,787,0.7000000000000001,207,2.3000000000000003
+2023,9,29,18,0,15.4,0.99,0.026000000000000002,0.63,7,78,6,0,0,-6.5,7,78,0,6,0.261,21.56,90.87,0.9,0.12,787,0.7000000000000001,205,1.6
+2023,9,29,18,30,14.700000000000001,0.99,0.026000000000000002,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,22.55,96.58,0.91,0.12,787,0.7000000000000001,201,1.6
+2023,9,29,19,0,14,1.16,0.024,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,23.51,102.26,0.91,0.12,788,0.7000000000000001,197,1.5
+2023,9,29,19,30,13.5,1.16,0.024,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.262,24.28,107.89,0.91,0.12,788,0.7000000000000001,193,1.5
+2023,9,29,20,0,12.9,1.29,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,24.54,113.4,0.91,0.12,787,0.7000000000000001,188,1.6
+2023,9,29,20,30,12.5,1.29,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.263,25.19,118.74000000000001,0.91,0.12,787,0.7000000000000001,186,1.7000000000000002
+2023,9,29,21,0,12.100000000000001,1.3900000000000001,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.264,25,123.84,0.91,0.12,787,0.7000000000000001,183,1.8
+2023,9,29,21,30,11.700000000000001,1.3900000000000001,0.023,0.63,0,0,0,0,0,-7.4,0,0,0,0,0.264,25.66,128.6,0.91,0.12,787,0.7000000000000001,181,1.8
+2023,9,29,22,0,11.4,1.45,0.024,0.63,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.264,25.67,132.89000000000001,0.91,0.12,787,0.7000000000000001,178,1.8
+2023,9,29,22,30,11.100000000000001,1.45,0.024,0.63,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.264,26.19,136.58,0.91,0.12,787,0.7000000000000001,176,1.9000000000000001
+2023,9,29,23,0,10.9,1.46,0.026000000000000002,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.264,26.36,139.48,0.91,0.12,787,0.7000000000000001,175,1.9000000000000001
+2023,9,29,23,30,10.700000000000001,1.46,0.026000000000000002,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,26.71,141.39000000000001,0.91,0.12,787,0.7000000000000001,175,2
+2023,9,30,0,0,10.5,1.45,0.028,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,27.02,142.17000000000002,0.91,0.12,787,0.7000000000000001,175,2.1
+2023,9,30,0,30,10.4,1.45,0.028,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.265,27.2,141.75,0.91,0.12,787,0.7000000000000001,178,2.2
+2023,9,30,1,0,10.3,1.41,0.029,0.63,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.265,27.57,140.17000000000002,0.91,0.12,787,0.7000000000000001,181,2.4000000000000004
+2023,9,30,1,30,10.100000000000001,1.41,0.029,0.63,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.266,27.94,137.55,0.91,0.12,787,0.6000000000000001,185,2.4000000000000004
+2023,9,30,2,0,9.8,1.37,0.03,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.266,29.3,134.08,0.91,0.12,787,0.6000000000000001,189,2.4000000000000004
+2023,9,30,2,30,9.4,1.37,0.03,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.266,30.1,129.95,0.9,0.12,787,0.6000000000000001,192,2.3000000000000003
+2023,9,30,3,0,9,1.34,0.03,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.265,32.1,125.32000000000001,0.9,0.12,787,0.6000000000000001,195,2.2
+2023,9,30,3,30,8.6,1.34,0.03,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.265,32.97,120.32000000000001,0.9,0.12,787,0.6000000000000001,197,2.2
+2023,9,30,4,0,8.200000000000001,1.32,0.03,0.63,0,0,0,0,0,-6.300000000000001,0,0,29,0,0.265,35.13,115.05,0.9,0.12,787,0.6000000000000001,198,2.2
+2023,9,30,4,30,7.800000000000001,1.32,0.03,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.265,36.09,109.59,0.9,0.12,787,0.6000000000000001,197,2.1
+2023,9,30,5,0,7.4,1.32,0.03,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.265,38.18,104,0.9,0.12,787,0.6000000000000001,195,2.1
+2023,9,30,5,30,7.300000000000001,1.32,0.03,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.265,38.44,98.34,0.9,0.12,787,0.6000000000000001,194,2.1
+2023,9,30,6,0,7.2,1.32,0.03,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.265,39.44,92.64,0.9,0.12,788,0.6000000000000001,193,2.1
+2023,9,30,6,30,9.3,1.32,0.03,0.63,22,346,41,0,0,-5.7,22,346,0,41,0.264,34.21,86.79,0.9,0.12,788,0.7000000000000001,192,2.7
+2023,9,30,7,0,11.4,1.33,0.029,0.63,34,625,129,0,0,-5.6000000000000005,34,625,0,129,0.264,29.95,81.26,0.9,0.12,788,0.7000000000000001,192,3.4000000000000004
+2023,9,30,7,30,13.600000000000001,1.33,0.029,0.63,42,761,229,0,0,-5.6000000000000005,42,761,0,229,0.264,25.94,75.76,0.91,0.12,788,0.7000000000000001,192,3.8000000000000003
+2023,9,30,8,0,15.700000000000001,1.33,0.028,0.63,48,841,330,0,0,-6,48,841,0,330,0.263,21.92,70.4,0.91,0.12,788,0.8,192,4.1000000000000005
+2023,9,30,8,30,18,1.33,0.028,0.63,53,893,427,0,0,-6,53,893,0,427,0.262,18.96,65.24,0.91,0.12,788,0.8,194,5.300000000000001
+2023,9,30,9,0,20.200000000000003,1.33,0.029,0.63,57,931,517,0,0,-8.1,57,931,0,517,0.261,14.05,60.36,0.91,0.12,788,0.8,196,6.4
+2023,9,30,9,30,21.200000000000003,1.33,0.029,0.63,60,955,596,0,0,-8.1,154,628,4,506,0.26,13.22,55.86,0.91,0.12,788,0.9,197,6.800000000000001
+2023,9,30,10,0,22.200000000000003,1.35,0.03,0.63,63,972,663,2,0,-8.200000000000001,147,620,21,530,0.259,12.36,51.85,0.92,0.12,788,0.9,198,7.2
+2023,9,30,10,30,23,1.35,0.03,0.63,64,986,718,2,7,-8.200000000000001,245,123,29,327,0.259,11.78,48.46,0.92,0.12,788,0.9,198,7.300000000000001
+2023,9,30,11,0,23.700000000000003,1.4000000000000001,0.03,0.63,65,993,757,0,7,-7.300000000000001,211,86,7,271,0.258,12.120000000000001,45.84,0.92,0.12,787,1,198,7.4
+2023,9,30,11,30,24.3,1.4000000000000001,0.03,0.63,68,997,783,0,7,-7.300000000000001,269,235,4,438,0.258,11.700000000000001,44.14,0.92,0.12,787,1,197,7.4
+2023,9,30,12,0,24.8,1.41,0.032,0.63,67,997,791,0,0,-6.300000000000001,170,650,4,642,0.258,12.21,43.46,0.93,0.12,787,1.1,197,7.5
+2023,9,30,12,30,25.1,1.41,0.032,0.63,68,994,785,0,0,-6.300000000000001,180,706,0,689,0.258,11.98,43.86,0.93,0.12,786,1.1,196,7.4
+2023,9,30,13,0,25.400000000000002,1.43,0.033,0.63,68,987,762,0,0,-5.5,145,756,0,677,0.258,12.52,45.300000000000004,0.93,0.12,786,1.1,196,7.4
+2023,9,30,13,30,25.5,1.43,0.033,0.63,67,978,725,0,0,-5.5,82,935,0,711,0.259,12.44,47.69,0.93,0.12,786,1.1,195,7.300000000000001
+2023,9,30,14,0,25.5,1.43,0.033,0.63,65,965,674,0,0,-4.9,71,950,0,670,0.26,13.040000000000001,50.9,0.93,0.12,786,1.1,194,7.300000000000001
+2023,9,30,14,30,25.3,1.43,0.033,0.63,63,947,609,0,0,-4.9,63,947,0,609,0.26,13.18,54.76,0.93,0.12,785,1.1,194,7.2
+2023,9,30,15,0,25.1,1.43,0.032,0.63,59,923,532,0,0,-4.6000000000000005,59,923,0,532,0.261,13.68,59.15,0.93,0.12,785,1.1,194,7.2
+2023,9,30,15,30,24.700000000000003,1.43,0.032,0.63,56,885,445,0,0,-4.6000000000000005,88,767,0,425,0.261,14.01,63.940000000000005,0.93,0.12,785,1.1,195,6.9
+2023,9,30,16,0,24.200000000000003,1.3800000000000001,0.034,0.63,51,832,349,0,0,-4.5,54,819,7,347,0.262,14.58,69.03,0.93,0.12,785,1.1,195,6.6000000000000005
+2023,9,30,16,30,22.900000000000002,1.3800000000000001,0.034,0.63,46,751,249,0,7,-4.5,93,338,7,184,0.262,15.77,74.35000000000001,0.9400000000000001,0.12,785,1.1,195,5.4
+2023,9,30,17,0,21.6,1.1400000000000001,0.031,0.62,38,631,149,2,7,-4.1000000000000005,43,172,29,73,0.262,17.55,79.83,0.9500000000000001,0.12,785,1.1,195,4.2
+2023,9,30,17,30,19.6,1.1400000000000001,0.031,0.62,26,413,59,7,7,-4.1000000000000005,32,4,100,32,0.263,19.84,85.38,0.9500000000000001,0.12,785,1.2000000000000002,195,3.1
+2023,9,30,18,0,17.7,1.1300000000000001,0.037,0.62,5,41,4,3,7,-3.6,2,0,43,2,0.263,23.21,91.19,0.96,0.12,785,1.2000000000000002,196,2.1
+2023,9,30,18,30,17.1,1.1300000000000001,0.037,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.263,24.1,96.89,0.96,0.12,785,1.2000000000000002,197,1.9000000000000001
+2023,9,30,19,0,16.6,1.1300000000000001,0.039,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,25.14,102.58,0.96,0.12,784,1.2000000000000002,199,1.7000000000000002
+2023,9,30,19,30,16.2,1.1300000000000001,0.039,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,25.78,108.21000000000001,0.96,0.12,784,1.2000000000000002,195,1.7000000000000002
+2023,9,30,20,0,15.9,1.06,0.05,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.263,26.25,113.73,0.97,0.12,784,1.3,191,1.7000000000000002
+2023,9,30,20,30,15.8,1.06,0.05,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.262,26.42,119.08,0.97,0.12,784,1.3,176,2.3000000000000003
+2023,9,30,21,0,15.8,1.02,0.056,0.62,0,0,0,0,6,-1.9000000000000001,0,0,0,0,0.262,29.6,124.18,0.97,0.12,785,1.4000000000000001,161,2.8000000000000003
+2023,9,30,21,30,15.4,1.02,0.056,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.262,30.37,128.95,0.96,0.12,785,1.4000000000000001,156,3.5
+2023,9,30,22,0,14.9,1.03,0.053,0.62,0,0,0,0,0,1.5,0,0,0,0,0.262,40.27,133.27,0.96,0.12,785,1.5,151,4.1000000000000005
+2023,9,30,22,30,14,1.03,0.053,0.62,0,0,0,0,3,1.5,0,0,0,0,0.263,42.67,136.96,0.96,0.12,785,1.5,151,4.2
+2023,9,30,23,0,13.100000000000001,1.04,0.052000000000000005,0.62,0,0,0,0,5,3.9000000000000004,0,0,0,0,0.264,53.6,139.87,0.96,0.12,786,1.5,150,4.2
+2023,9,30,23,30,12.5,1.04,0.052000000000000005,0.62,0,0,0,0,5,3.9000000000000004,0,0,0,0,0.265,55.75,141.79,0.96,0.12,786,1.5,152,3.8000000000000003
+2023,10,1,0,0,11.8,1.02,0.052000000000000005,0.62,0,0,0,0,3,4.6000000000000005,0,0,0,0,0.266,61.49,142.56,0.9500000000000001,0.12,786,1.5,153,3.4000000000000004
+2023,10,1,0,30,11.5,1.02,0.052000000000000005,0.62,0,0,0,0,5,4.6000000000000005,0,0,0,0,0.266,62.72,142.13,0.96,0.12,786,1.5,159,3
+2023,10,1,1,0,11.100000000000001,0.9500000000000001,0.056,0.62,0,0,0,0,0,4.5,0,0,0,0,0.267,63.61,140.51,0.96,0.12,786,1.5,164,2.5
+2023,10,1,1,30,11.100000000000001,0.9500000000000001,0.056,0.62,0,0,0,0,0,4.5,0,0,0,0,0.268,63.61,137.87,0.96,0.12,786,1.5,169,2.4000000000000004
+2023,10,1,2,0,11.100000000000001,0.86,0.058,0.62,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.268,60.81,134.37,0.96,0.12,786,1.5,175,2.3000000000000003
+2023,10,1,2,30,11.200000000000001,0.86,0.058,0.62,0,0,0,0,3,3.8000000000000003,0,0,0,0,0.269,60.4,130.22,0.96,0.12,786,1.5,179,2.4000000000000004
+2023,10,1,3,0,11.4,0.8,0.059000000000000004,0.62,0,0,0,0,8,2.8000000000000003,0,0,0,0,0.27,55.63,125.57000000000001,0.96,0.12,786,1.5,183,2.5
+2023,10,1,3,30,11.4,0.8,0.059000000000000004,0.62,0,0,0,0,5,2.8000000000000003,0,0,0,0,0.27,55.63,120.55,0.96,0.12,786,1.5,186,2.5
+2023,10,1,4,0,11.5,0.79,0.057,0.62,0,0,0,0,5,1.7000000000000002,0,0,0,0,0.271,50.85,115.26,0.96,0.12,786,1.5,189,2.5
+2023,10,1,4,30,11.3,0.79,0.057,0.62,0,0,0,0,5,1.7000000000000002,0,0,0,0,0.272,51.52,109.79,0.9500000000000001,0.12,786,1.4000000000000001,190,2.5
+2023,10,1,5,0,11.100000000000001,0.81,0.05,0.62,0,0,0,0,5,0.9,0,0,0,0,0.273,49.53,104.19,0.9500000000000001,0.12,786,1.4000000000000001,190,2.6
+2023,10,1,5,30,10.9,0.81,0.05,0.62,0,0,0,0,4,0.9,0,0,0,0,0.274,50.19,98.53,0.9500000000000001,0.12,786,1.4000000000000001,190,2.7
+2023,10,1,6,0,10.700000000000001,0.81,0.045,0.62,0,0,0,1,4,1,0,0,14,0,0.274,50.99,92.83,0.9400000000000001,0.12,787,1.3,191,2.9000000000000004
+2023,10,1,6,30,12.100000000000001,0.81,0.045,0.62,21,257,35,7,8,1,15,0,100,15,0.275,46.49,86.97,0.9400000000000001,0.12,787,1.3,194,3.7
+2023,10,1,7,0,13.4,0.79,0.045,0.62,37,537,117,5,8,1.3,32,1,68,32,0.276,43.800000000000004,81.45,0.9400000000000001,0.12,787,1.3,197,4.5
+2023,10,1,7,30,14.600000000000001,0.79,0.045,0.62,48,684,214,5,8,1.3,67,13,71,70,0.276,40.53,75.96000000000001,0.9400000000000001,0.12,787,1.3,200,5.4
+2023,10,1,8,0,15.8,0.77,0.048,0.62,57,772,313,5,8,1.7000000000000002,73,2,71,74,0.276,38.52,70.61,0.9400000000000001,0.12,787,1.3,203,6.2
+2023,10,1,8,30,16.5,0.77,0.048,0.62,63,832,408,3,5,1.7000000000000002,86,1,43,86,0.277,36.85,65.47,0.9400000000000001,0.12,787,1.4000000000000001,203,6.7
+2023,10,1,9,0,17.1,0.78,0.05,0.62,68,873,496,0,5,2,125,6,0,128,0.277,36.2,60.61,0.9500000000000001,0.12,788,1.4000000000000001,204,7.300000000000001
+2023,10,1,9,30,17.6,0.78,0.05,0.62,72,902,575,2,5,2,268,70,25,307,0.277,35.08,56.13,0.9500000000000001,0.12,788,1.4000000000000001,205,7.5
+2023,10,1,10,0,18.1,0.76,0.053,0.62,76,922,642,3,8,2.2,152,34,43,173,0.277,34.56,52.15,0.9500000000000001,0.12,788,1.4000000000000001,206,7.7
+2023,10,1,10,30,18.400000000000002,0.76,0.053,0.62,78,938,696,0,5,2.2,242,63,4,284,0.278,33.92,48.78,0.9500000000000001,0.12,788,1.4000000000000001,207,7.9
+2023,10,1,11,0,18.7,0.73,0.052000000000000005,0.62,79,949,736,0,5,2.2,107,0,4,107,0.279,33.29,46.19,0.9500000000000001,0.12,788,1.4000000000000001,208,8.1
+2023,10,1,11,30,18.900000000000002,0.73,0.052000000000000005,0.62,81,954,761,0,5,2.2,236,183,0,367,0.279,32.88,44.51,0.9500000000000001,0.12,788,1.4000000000000001,208,8.1
+2023,10,1,12,0,19,0.76,0.054,0.62,82,954,770,0,5,2,179,9,0,185,0.28,32.160000000000004,43.85,0.96,0.12,788,1.5,209,8.1
+2023,10,1,12,30,19.1,0.76,0.054,0.62,82,954,765,0,5,2,99,0,0,99,0.28,31.96,44.25,0.96,0.12,788,1.5,210,7.9
+2023,10,1,13,0,19.200000000000003,0.76,0.051000000000000004,0.62,80,951,744,0,5,1.6,83,0,0,83,0.28,30.93,45.7,0.96,0.12,788,1.4000000000000001,210,7.7
+2023,10,1,13,30,19.200000000000003,0.76,0.051000000000000004,0.62,78,942,707,0,5,1.6,194,15,0,204,0.28,30.93,48.08,0.96,0.12,788,1.4000000000000001,213,7.300000000000001
+2023,10,1,14,0,19.200000000000003,0.78,0.05,0.62,75,929,656,0,5,1.4000000000000001,163,23,0,177,0.28,30.53,51.28,0.96,0.12,788,1.4000000000000001,215,6.9
+2023,10,1,14,30,18.900000000000002,0.78,0.05,0.62,74,905,591,0,5,1.4000000000000001,85,96,0,140,0.279,31.11,55.13,0.96,0.12,788,1.4000000000000001,218,6.6000000000000005
+2023,10,1,15,0,18.7,0.8,0.055,0.62,71,872,514,0,3,1.4000000000000001,214,282,0,357,0.279,31.46,59.5,0.96,0.12,788,1.4000000000000001,220,6.2
+2023,10,1,15,30,18.2,0.8,0.055,0.62,65,833,427,0,5,1.4000000000000001,211,235,0,313,0.279,32.46,64.28,0.96,0.12,788,1.4000000000000001,222,5.7
+2023,10,1,16,0,17.8,0.79,0.053,0.62,59,777,333,0,3,1.3,145,362,0,273,0.278,33.04,69.37,0.96,0.12,788,1.4000000000000001,224,5.1000000000000005
+2023,10,1,16,30,16.900000000000002,0.79,0.053,0.62,51,695,235,0,3,1.3,99,424,0,211,0.278,34.97,74.68,0.96,0.12,788,1.4000000000000001,228,4.2
+2023,10,1,17,0,16.1,0.8,0.05,0.62,41,565,138,1,0,1.3,50,485,14,133,0.278,36.64,80.15,0.96,0.12,788,1.4000000000000001,232,3.2
+2023,10,1,17,30,14.3,0.8,0.05,0.62,27,328,52,5,3,1.3,31,107,68,39,0.278,41.17,85.68,0.96,0.12,789,1.4000000000000001,243,2.2
+2023,10,1,18,0,12.5,0.8200000000000001,0.051000000000000004,0.62,4,23,3,2,5,1.3,1,0,29,1,0.278,46.52,91.5,0.96,0.12,789,1.4000000000000001,253,1.1
+2023,10,1,18,30,12,0.8200000000000001,0.051000000000000004,0.62,0,0,0,0,5,1.3,0,0,0,0,0.278,48.07,97.21000000000001,0.96,0.12,789,1.4000000000000001,261,1
+2023,10,1,19,0,11.600000000000001,0.8300000000000001,0.053,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.277,49.67,102.89,0.96,0.12,790,1.4000000000000001,269,0.9
+2023,10,1,19,30,11.600000000000001,0.8300000000000001,0.053,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.277,49.67,108.53,0.96,0.12,790,1.5,271,0.9
+2023,10,1,20,0,11.700000000000001,0.8200000000000001,0.052000000000000005,0.62,0,0,0,0,5,1.6,0,0,0,0,0.277,49.96,114.05,0.96,0.12,790,1.5,273,0.8
+2023,10,1,20,30,11.8,0.8200000000000001,0.052000000000000005,0.62,0,0,0,0,0,1.6,0,0,0,0,0.277,49.63,119.41,0.96,0.12,790,1.5,274,0.7000000000000001
+2023,10,1,21,0,11.9,0.8,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.276,49.99,124.53,0.96,0.12,790,1.5,275,0.5
+2023,10,1,21,30,11.8,0.8,0.053,0.62,0,0,0,0,0,1.8,0,0,0,0,0.276,50.32,129.31,0.96,0.12,790,1.5,250,0.30000000000000004
+2023,10,1,22,0,11.700000000000001,0.78,0.054,0.62,0,0,0,0,0,2.1,0,0,0,0,0.276,51.84,133.64000000000001,0.96,0.12,790,1.5,224,0.1
+2023,10,1,22,30,11.5,0.78,0.054,0.62,0,0,0,0,4,2.1,0,0,0,0,0.276,52.53,137.35,0.96,0.12,790,1.6,165,0.30000000000000004
+2023,10,1,23,0,11.3,0.76,0.052000000000000005,0.62,0,0,0,0,4,2.6,0,0,0,0,0.276,55.230000000000004,140.26,0.96,0.12,790,1.6,105,0.4
+2023,10,1,23,30,10.9,0.76,0.052000000000000005,0.62,0,0,0,0,5,2.6,0,0,0,0,0.276,56.71,142.18,0.96,0.12,790,1.6,107,0.6000000000000001
+2023,10,2,0,0,10.4,0.77,0.053,0.62,0,0,0,0,5,3.4000000000000004,0,0,0,0,0.276,61.92,142.95000000000002,0.96,0.12,790,1.6,109,0.8
+2023,10,2,0,30,10.100000000000001,0.77,0.053,0.62,0,0,0,0,4,3.4000000000000004,0,0,0,0,0.276,63.17,142.5,0.96,0.12,790,1.7000000000000002,116,1
+2023,10,2,1,0,9.8,0.78,0.053,0.62,0,0,0,0,4,4.3,0,0,0,0,0.276,68.61,140.86,0.96,0.12,790,1.7000000000000002,123,1.2000000000000002
+2023,10,2,1,30,9.600000000000001,0.78,0.053,0.62,0,0,0,0,5,4.3,0,0,0,0,0.276,69.45,138.19,0.96,0.12,789,1.7000000000000002,124,1.4000000000000001
+2023,10,2,2,0,9.5,0.81,0.051000000000000004,0.62,0,0,0,0,7,4.9,0,0,0,0,0.276,72.98,134.66,0.96,0.12,789,1.7000000000000002,126,1.5
+2023,10,2,2,30,9.3,0.81,0.051000000000000004,0.62,0,0,0,0,8,4.9,0,0,0,0,0.276,73.97,130.48,0.9500000000000001,0.12,789,1.7000000000000002,125,1.7000000000000002
+2023,10,2,3,0,9.1,0.84,0.047,0.62,0,0,0,0,5,5.300000000000001,0,0,0,0,0.276,77.13,125.81,0.9500000000000001,0.12,789,1.7000000000000002,125,1.9000000000000001
+2023,10,2,3,30,8.8,0.84,0.047,0.62,0,0,0,0,5,5.300000000000001,0,0,0,0,0.276,78.7,120.77,0.9500000000000001,0.12,789,1.7000000000000002,124,1.9000000000000001
+2023,10,2,4,0,8.6,0.86,0.044,0.62,0,0,0,0,5,5.6000000000000005,0,0,0,0,0.277,81.37,115.47,0.9500000000000001,0.12,789,1.7000000000000002,122,1.9000000000000001
+2023,10,2,4,30,8.5,0.86,0.044,0.62,0,0,0,0,4,5.6000000000000005,0,0,0,0,0.277,81.92,109.99000000000001,0.9500000000000001,0.12,789,1.7000000000000002,121,1.8
+2023,10,2,5,0,8.4,0.89,0.044,0.62,0,0,0,0,4,5.7,0,0,0,0,0.277,83.07000000000001,104.39,0.9500000000000001,0.12,788,1.7000000000000002,119,1.8
+2023,10,2,5,30,8.4,0.89,0.044,0.62,0,0,0,0,5,5.7,0,0,0,0,0.277,83.07000000000001,98.72,0.9500000000000001,0.12,788,1.7000000000000002,123,1.7000000000000002
+2023,10,2,6,0,8.5,0.92,0.048,0.62,0,0,0,1,4,5.800000000000001,0,0,14,0,0.277,82.98,93.02,0.96,0.12,788,1.7000000000000002,126,1.6
+2023,10,2,6,30,9.700000000000001,0.92,0.048,0.62,22,230,33,7,5,5.800000000000001,6,0,100,6,0.277,76.55,87.16,0.96,0.12,788,1.7000000000000002,132,2.1
+2023,10,2,7,0,10.9,0.9500000000000001,0.057,0.62,39,497,111,3,5,6.2,7,0,43,7,0.277,72.86,81.65,0.96,0.12,787,1.7000000000000002,138,2.6
+2023,10,2,7,30,11.5,0.9500000000000001,0.057,0.62,52,636,204,0,7,6.2,5,0,0,5,0.277,70.02,76.17,0.97,0.12,787,1.8,156,3.2
+2023,10,2,8,0,12.200000000000001,0.98,0.077,0.62,65,714,299,0,7,6.6000000000000005,63,4,0,64,0.276,68.57000000000001,70.83,0.97,0.12,787,1.8,175,3.7
+2023,10,2,8,30,12.3,0.98,0.077,0.62,73,774,392,0,6,6.6000000000000005,43,1,0,43,0.276,68.21000000000001,65.7,0.97,0.12,788,1.8,189,4.7
+2023,10,2,9,0,12.4,0.99,0.089,0.62,82,813,478,0,6,6.7,19,0,0,19,0.276,68.05,60.86,0.97,0.12,788,1.8,204,5.7
+2023,10,2,9,30,12.200000000000001,0.99,0.089,0.62,86,852,557,0,6,6.7,44,0,0,44,0.276,68.95,56.410000000000004,0.97,0.12,788,1.7000000000000002,210,6
+2023,10,2,10,0,11.9,0.98,0.082,0.62,88,882,626,0,6,6.300000000000001,48,0,0,48,0.276,68.61,52.44,0.97,0.12,788,1.7000000000000002,217,6.4
+2023,10,2,10,30,12,0.98,0.082,0.62,85,917,685,0,6,6.300000000000001,146,22,0,160,0.277,68.24,49.11,0.96,0.12,789,1.6,219,6.7
+2023,10,2,11,0,12,0.9500000000000001,0.048,0.62,76,952,731,0,6,5.300000000000001,297,66,0,342,0.278,63.58,46.54,0.96,0.12,789,1.5,220,6.9
+2023,10,2,11,30,12.600000000000001,0.9500000000000001,0.048,0.62,73,969,760,0,6,5.300000000000001,224,41,0,253,0.279,61.120000000000005,44.88,0.9500000000000001,0.12,789,1.4000000000000001,217,7.300000000000001
+2023,10,2,12,0,13.100000000000001,0.9,0.032,0.62,69,985,775,0,6,3.3000000000000003,219,18,0,232,0.28,51.49,44.230000000000004,0.9400000000000001,0.12,789,1.2000000000000002,215,7.6000000000000005
+2023,10,2,12,30,13.600000000000001,0.9,0.032,0.62,66,992,772,0,6,3.3000000000000003,280,91,0,345,0.281,49.84,44.65,0.92,0.12,789,1.1,215,7.9
+2023,10,2,13,0,14.100000000000001,0.77,0.023,0.62,62,998,754,0,6,0.7000000000000001,289,102,0,360,0.28200000000000003,40,46.09,0.91,0.12,789,1,214,8.200000000000001
+2023,10,2,13,30,14.4,0.77,0.023,0.62,62,992,720,0,9,0.7000000000000001,144,2,0,145,0.28400000000000003,39.230000000000004,48.47,0.92,0.12,789,0.9,216,8
+2023,10,2,14,0,14.600000000000001,0.8,0.025,0.62,61,982,670,0,6,-1.6,227,153,0,322,0.28500000000000003,32.81,51.660000000000004,0.92,0.12,788,0.8,217,7.7
+2023,10,2,14,30,14.600000000000001,0.8,0.025,0.62,58,965,605,0,6,-1.6,181,10,0,187,0.28700000000000003,32.81,55.49,0.92,0.12,788,0.8,220,7.300000000000001
+2023,10,2,15,0,14.5,0.73,0.024,0.62,55,942,528,0,6,-3,215,37,0,234,0.289,29.76,59.86,0.92,0.12,788,0.7000000000000001,222,6.800000000000001
+2023,10,2,15,30,14.100000000000001,0.73,0.024,0.62,53,906,441,0,6,-3,198,59,0,223,0.291,30.54,64.62,0.92,0.12,788,0.7000000000000001,225,6.4
+2023,10,2,16,0,13.600000000000001,0.6900000000000001,0.024,0.62,47,855,344,0,6,-3.8000000000000003,161,38,0,174,0.293,29.740000000000002,69.7,0.91,0.12,788,0.7000000000000001,227,5.9
+2023,10,2,16,30,12.700000000000001,0.6900000000000001,0.024,0.62,42,778,243,0,6,-3.8000000000000003,87,117,0,117,0.296,31.53,75,0.91,0.12,788,0.7000000000000001,228,5.1000000000000005
+2023,10,2,17,0,11.9,0.68,0.023,0.62,34,651,142,2,6,-3.8000000000000003,58,85,29,72,0.298,33.25,80.46000000000001,0.91,0.12,788,0.7000000000000001,230,4.2
+2023,10,2,17,30,10.200000000000001,0.68,0.023,0.62,23,415,52,7,7,-3.8000000000000003,30,6,100,30,0.3,37.21,85.99,0.91,0.12,788,0.7000000000000001,232,3.1
+2023,10,2,18,0,8.6,0.68,0.024,0.62,3,34,2,2,7,-3,1,0,29,1,0.303,43.93,91.81,0.91,0.12,788,0.7000000000000001,234,2.1
+2023,10,2,18,30,8,0.68,0.024,0.62,0,0,0,0,7,-3,0,0,0,0,0.305,45.75,97.52,0.91,0.12,788,0.7000000000000001,237,2
+2023,10,2,19,0,7.300000000000001,0.7000000000000001,0.025,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.306,48.83,103.21000000000001,0.91,0.12,788,0.7000000000000001,240,1.9000000000000001
+2023,10,2,19,30,6.9,0.7000000000000001,0.025,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.307,50.19,108.84,0.91,0.12,788,0.8,244,1.9000000000000001
+2023,10,2,20,0,6.5,0.73,0.026000000000000002,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.308,52.480000000000004,114.37,0.92,0.12,788,0.8,247,1.9000000000000001
+2023,10,2,20,30,6.1000000000000005,0.73,0.026000000000000002,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.308,53.94,119.74000000000001,0.92,0.12,788,0.8,250,1.9000000000000001
+2023,10,2,21,0,5.7,0.77,0.029,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.308,56.96,124.87,0.92,0.12,788,0.8,252,1.9000000000000001
+2023,10,2,21,30,5.300000000000001,0.77,0.029,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.308,58.56,129.66,0.92,0.12,788,0.8,252,1.8
+2023,10,2,22,0,4.9,0.81,0.031,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.309,62.47,134,0.93,0.12,788,0.9,253,1.7000000000000002
+2023,10,2,22,30,4.5,0.81,0.031,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.309,64.23,137.73,0.93,0.12,788,0.9,251,1.5
+2023,10,2,23,0,4.2,0.8200000000000001,0.033,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.308,68.11,140.65,0.93,0.12,788,0.9,250,1.3
+2023,10,2,23,30,3.9000000000000004,0.8200000000000001,0.033,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.308,69.55,142.58,0.93,0.12,788,0.9,248,1.2000000000000002
+2023,10,3,0,0,3.7,0.8300000000000001,0.034,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.308,72.62,143.34,0.93,0.12,788,0.9,245,1.1
+2023,10,3,0,30,3.5,0.8300000000000001,0.034,0.62,0,0,0,0,4,-0.7000000000000001,0,0,0,0,0.308,73.74,142.87,0.93,0.12,789,0.9,242,1.1
+2023,10,3,1,0,3.3000000000000003,0.84,0.035,0.62,0,0,0,0,4,-0.5,0,0,0,0,0.308,76.37,141.21,0.93,0.12,789,1,239,1
+2023,10,3,1,30,3.1,0.84,0.035,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.308,77.46000000000001,138.5,0.93,0.12,789,1,236,1
+2023,10,3,2,0,2.9000000000000004,0.86,0.036000000000000004,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.308,79.83,134.95,0.9400000000000001,0.12,788,1,233,1
+2023,10,3,2,30,2.7,0.86,0.036000000000000004,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.308,80.97,130.74,0.9400000000000001,0.12,788,1,232,1
+2023,10,3,3,0,2.6,0.89,0.04,0.62,0,0,0,0,0,0,0,0,0,0,0.308,82.8,126.05,0.9400000000000001,0.12,788,1,231,1.1
+2023,10,3,3,30,2.7,0.89,0.04,0.62,0,0,0,0,0,0,0,0,0,0,0.308,82.32000000000001,120.99000000000001,0.9400000000000001,0.12,789,1,229,1.1
+2023,10,3,4,0,2.8000000000000003,0.9,0.043000000000000003,0.62,0,0,0,0,0,0.2,0,0,0,0,0.308,82.86,115.68,0.9400000000000001,0.12,789,1,227,1.1
+2023,10,3,4,30,2.8000000000000003,0.9,0.043000000000000003,0.62,0,0,0,0,0,0.2,0,0,0,0,0.308,82.86,110.19,0.9400000000000001,0.12,789,1,225,1.1
+2023,10,3,5,0,2.7,0.91,0.043000000000000003,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.308,84.47,104.58,0.9400000000000001,0.12,789,1,223,1.2000000000000002
+2023,10,3,5,30,2.6,0.91,0.043000000000000003,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.308,85.07000000000001,98.91,0.9400000000000001,0.12,789,1,221,1.2000000000000002
+2023,10,3,6,0,2.5,0.92,0.04,0.62,0,0,0,0,0,0.5,0,0,0,0,0.308,86.63,93.21000000000001,0.9400000000000001,0.12,789,1,218,1.2000000000000002
+2023,10,3,6,30,3.7,0.92,0.04,0.62,20,242,31,3,0,0.5,18,90,39,22,0.308,79.59,87.34,0.9400000000000001,0.12,789,1,219,1.7000000000000002
+2023,10,3,7,0,4.800000000000001,0.9400000000000001,0.037,0.62,35,555,114,3,0,0.6000000000000001,56,294,43,98,0.309,74.01,81.84,0.9400000000000001,0.12,790,1,219,2.3000000000000003
+2023,10,3,7,30,6.4,0.9400000000000001,0.037,0.62,44,709,211,0,0,0.6000000000000001,68,547,0,197,0.308,66.25,76.38,0.9400000000000001,0.12,790,1,228,2.5
+2023,10,3,8,0,8,0.9400000000000001,0.034,0.62,50,803,311,0,0,-0.5,50,803,0,311,0.307,54.83,71.05,0.93,0.12,790,1.1,237,2.7
+2023,10,3,8,30,9,0.9400000000000001,0.034,0.62,56,864,408,0,0,-0.5,56,864,0,408,0.305,51.24,65.94,0.93,0.12,790,1,240,3
+2023,10,3,9,0,10,0.9400000000000001,0.032,0.62,59,907,497,0,0,-1.5,74,858,0,488,0.304,44.65,61.120000000000005,0.93,0.12,790,1,242,3.2
+2023,10,3,9,30,10.600000000000001,0.9400000000000001,0.032,0.62,61,939,577,0,0,-1.5,71,912,0,572,0.303,42.9,56.68,0.93,0.12,790,1,242,3.4000000000000004
+2023,10,3,10,0,11.3,0.9500000000000001,0.029,0.62,63,962,645,0,0,-2,63,962,0,645,0.302,39.52,52.74,0.93,0.12,790,1,242,3.5
+2023,10,3,10,30,11.9,0.9500000000000001,0.029,0.62,66,974,699,0,0,-2,66,974,0,699,0.301,37.99,49.43,0.93,0.12,790,1,241,3.5
+2023,10,3,11,0,12.5,1.04,0.035,0.62,69,980,739,0,0,-2.3000000000000003,81,956,0,734,0.3,35.64,46.89,0.9400000000000001,0.12,790,1,240,3.6
+2023,10,3,11,30,12.9,1.04,0.035,0.62,70,987,765,0,0,-2.3000000000000003,254,554,0,644,0.298,34.730000000000004,45.25,0.9400000000000001,0.12,790,1,239,3.6
+2023,10,3,12,0,13.4,1.05,0.034,0.62,70,990,775,0,5,-2.4000000000000004,292,441,0,606,0.296,33.5,44.62,0.9400000000000001,0.12,790,1,238,3.6
+2023,10,3,12,30,13.600000000000001,1.05,0.034,0.62,70,987,767,0,5,-2.4000000000000004,263,387,0,536,0.294,33.07,45.04,0.9400000000000001,0.12,790,1.1,239,3.6
+2023,10,3,13,0,13.9,1.07,0.036000000000000004,0.62,69,981,745,0,4,-2.3000000000000003,168,4,0,171,0.291,32.64,46.480000000000004,0.9400000000000001,0.12,790,1.1,239,3.7
+2023,10,3,13,30,13.8,1.07,0.036000000000000004,0.62,72,964,706,0,4,-2.3000000000000003,81,0,0,81,0.289,32.85,48.86,0.9500000000000001,0.12,790,1.1,243,3.5
+2023,10,3,14,0,13.8,1.11,0.049,0.62,73,941,652,0,4,-2.1,114,0,0,114,0.28700000000000003,33.160000000000004,52.03,0.9500000000000001,0.12,790,1.1,247,3.4000000000000004
+2023,10,3,14,30,13.3,1.11,0.049,0.62,73,913,585,0,5,-2.1,145,5,0,148,0.28600000000000003,34.25,55.86,0.96,0.12,790,1.1,257,3.3000000000000003
+2023,10,3,15,0,12.8,1.1300000000000001,0.06,0.62,71,875,506,0,7,-1.7000000000000002,53,1,0,53,0.28400000000000003,36.52,60.21,0.96,0.12,790,1.2000000000000002,266,3.2
+2023,10,3,15,30,12.100000000000001,1.1300000000000001,0.06,0.62,68,827,418,0,7,-1.7000000000000002,24,0,0,24,0.28400000000000003,38.24,64.96000000000001,0.96,0.12,790,1.2000000000000002,278,3.2
+2023,10,3,16,0,11.4,1.1400000000000001,0.069,0.62,63,757,322,0,8,-0.7000000000000001,59,11,0,63,0.28300000000000003,43.050000000000004,70.03,0.97,0.12,790,1.2000000000000002,289,3.1
+2023,10,3,16,30,10.600000000000001,1.1400000000000001,0.069,0.62,54,670,224,0,8,-0.7000000000000001,34,4,0,35,0.28400000000000003,45.39,75.32000000000001,0.96,0.12,790,1.2000000000000002,301,2.7
+2023,10,3,17,0,9.9,1.1400000000000001,0.063,0.62,42,532,127,3,7,0.4,32,4,43,33,0.28400000000000003,51.75,80.78,0.96,0.12,791,1.3,312,2.4000000000000004
+2023,10,3,17,30,9,1.1400000000000001,0.063,0.62,25,293,44,7,8,0.4,23,2,100,23,0.28500000000000003,54.97,86.29,0.96,0.12,791,1.2000000000000002,326,1.7000000000000002
+2023,10,3,18,0,8.200000000000001,1.1400000000000001,0.054,0.62,3,19,2,2,4,1.2000000000000002,0,0,29,0,0.28600000000000003,61.2,92.12,0.96,0.12,791,1.2000000000000002,340,1
+2023,10,3,18,30,7.800000000000001,1.1400000000000001,0.054,0.62,0,0,0,0,4,1.2000000000000002,0,0,0,0,0.28600000000000003,62.88,97.83,0.96,0.12,791,1.2000000000000002,174,0.8
+2023,10,3,19,0,7.300000000000001,1.1400000000000001,0.05,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.28700000000000003,66.38,103.52,0.96,0.12,792,1.2000000000000002,7,0.7000000000000001
+2023,10,3,19,30,7.1000000000000005,1.1400000000000001,0.05,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.28700000000000003,67.3,109.16,0.9500000000000001,0.12,792,1.2000000000000002,19,0.7000000000000001
+2023,10,3,20,0,6.800000000000001,1.1400000000000001,0.046,0.62,0,0,0,0,5,1.5,0,0,0,0,0.28600000000000003,68.74,114.7,0.9500000000000001,0.12,792,1.2000000000000002,31,0.7000000000000001
+2023,10,3,20,30,6.5,1.1400000000000001,0.046,0.62,0,0,0,0,5,1.5,0,0,0,0,0.28600000000000003,70.17,120.07000000000001,0.9500000000000001,0.12,792,1.2000000000000002,36,0.6000000000000001
+2023,10,3,21,0,6.2,1.1400000000000001,0.042,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.28600000000000003,71.31,125.21000000000001,0.9500000000000001,0.12,792,1.2000000000000002,40,0.5
+2023,10,3,21,30,5.9,1.1400000000000001,0.042,0.62,0,0,0,0,5,1.4000000000000001,0,0,0,0,0.28500000000000003,72.8,130.02,0.9500000000000001,0.12,792,1.2000000000000002,30,0.5
+2023,10,3,22,0,5.6000000000000005,1.1400000000000001,0.04,0.62,0,0,0,0,4,1.4000000000000001,0,0,0,0,0.28500000000000003,74.45,134.37,0.9500000000000001,0.12,792,1.2000000000000002,20,0.4
+2023,10,3,22,30,5.2,1.1400000000000001,0.04,0.62,0,0,0,0,4,1.4000000000000001,0,0,0,0,0.28500000000000003,76.54,138.11,0.9500000000000001,0.12,792,1.2000000000000002,186,0.4
+2023,10,3,23,0,4.800000000000001,1.1400000000000001,0.038,0.62,0,0,0,0,4,1.5,0,0,0,0,0.28400000000000003,79.02,141.04,0.9500000000000001,0.12,792,1.2000000000000002,351,0.4
+2023,10,3,23,30,4.6000000000000005,1.1400000000000001,0.038,0.62,0,0,0,0,4,1.5,0,0,0,0,0.28400000000000003,80.13,142.97,0.9500000000000001,0.12,792,1.2000000000000002,344,0.4
+2023,10,4,0,0,4.3,1.1400000000000001,0.037,0.62,0,0,0,0,4,1.5,0,0,0,0,0.28400000000000003,82.11,143.73,0.9500000000000001,0.12,792,1.2000000000000002,337,0.4
+2023,10,4,0,30,4.2,1.1400000000000001,0.037,0.62,0,0,0,0,4,1.5,0,0,0,0,0.28400000000000003,82.69,143.24,0.9500000000000001,0.12,792,1.2000000000000002,333,0.4
+2023,10,4,1,0,4,1.1300000000000001,0.037,0.62,0,0,0,0,0,1.6,0,0,0,0,0.28400000000000003,84.48,141.55,0.9500000000000001,0.12,793,1.2000000000000002,330,0.4
+2023,10,4,1,30,4,1.1300000000000001,0.037,0.62,0,0,0,0,0,1.6,0,0,0,0,0.28400000000000003,84.48,138.82,0.9500000000000001,0.12,793,1.2000000000000002,331,0.4
+2023,10,4,2,0,4.1000000000000005,1.1300000000000001,0.037,0.62,0,0,0,0,4,1.8,0,0,0,0,0.28300000000000003,84.68,135.24,0.9500000000000001,0.12,793,1.2000000000000002,332,0.4
+2023,10,4,2,30,4,1.1300000000000001,0.037,0.62,0,0,0,0,4,1.8,0,0,0,0,0.28300000000000003,85.27,131.01,0.9500000000000001,0.12,793,1.2000000000000002,334,0.4
+2023,10,4,3,0,3.9000000000000004,1.1500000000000001,0.035,0.62,0,0,0,0,4,1.8,0,0,0,0,0.28200000000000003,86.34,126.29,0.9500000000000001,0.12,793,1.3,336,0.4
+2023,10,4,3,30,3.8000000000000003,1.1500000000000001,0.035,0.62,0,0,0,0,0,1.8,0,0,0,0,0.28200000000000003,86.95,121.22,0.9500000000000001,0.12,793,1.3,338,0.4
+2023,10,4,4,0,3.7,1.17,0.032,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28200000000000003,87.85000000000001,115.89,0.9500000000000001,0.12,793,1.3,341,0.4
+2023,10,4,4,30,3.7,1.17,0.032,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.28300000000000003,87.85000000000001,110.39,0.9500000000000001,0.12,793,1.3,341,0.4
+2023,10,4,5,0,3.7,1.18,0.03,0.62,0,0,0,0,0,2,0,0,0,0,0.28300000000000003,88.37,104.77,0.9500000000000001,0.12,793,1.3,341,0.4
+2023,10,4,5,30,3.7,1.18,0.03,0.62,0,0,0,0,0,2,0,0,0,0,0.28300000000000003,88.37,99.10000000000001,0.9500000000000001,0.12,793,1.3,339,0.5
+2023,10,4,6,0,3.7,1.19,0.029,0.62,0,0,0,0,0,2.1,0,0,0,0,0.28300000000000003,89.16,93.41,0.9500000000000001,0.12,794,1.2000000000000002,337,0.5
+2023,10,4,6,30,4.6000000000000005,1.19,0.029,0.62,19,258,30,0,0,2.1,19,258,0,30,0.28400000000000003,83.72,87.52,0.9500000000000001,0.12,794,1.2000000000000002,336,0.9
+2023,10,4,7,0,5.6000000000000005,1.19,0.028,0.62,33,572,112,0,0,2.4000000000000004,33,572,0,112,0.28400000000000003,80.01,82.04,0.9500000000000001,0.12,794,1.2000000000000002,336,1.3
+2023,10,4,7,30,6.800000000000001,1.19,0.028,0.62,41,722,209,0,0,2.4000000000000004,66,548,0,193,0.28400000000000003,73.67,76.58,0.9500000000000001,0.12,794,1.2000000000000002,335,1.5
+2023,10,4,8,0,8,1.2,0.026000000000000002,0.62,46,815,308,0,0,2.7,46,815,0,308,0.28400000000000003,69.41,71.27,0.9500000000000001,0.12,794,1.1,334,1.7000000000000002
+2023,10,4,8,30,9.200000000000001,1.2,0.026000000000000002,0.62,52,874,405,0,0,2.7,52,874,0,405,0.28300000000000003,64.01,66.17,0.9500000000000001,0.12,794,1.1,323,1.7000000000000002
+2023,10,4,9,0,10.4,1.19,0.024,0.62,55,917,494,0,0,2.3000000000000003,82,793,0,462,0.281,57.08,61.370000000000005,0.9500000000000001,0.12,794,1.1,312,1.6
+2023,10,4,9,30,11.3,1.19,0.024,0.62,57,948,574,0,0,2.3000000000000003,88,818,0,534,0.279,53.77,56.96,0.9400000000000001,0.12,794,1.1,301,1.8
+2023,10,4,10,0,12.3,1.2,0.022,0.62,57,971,641,0,3,1.4000000000000001,217,324,0,412,0.277,47.26,53.04,0.9400000000000001,0.12,794,1.1,291,2
+2023,10,4,10,30,13.100000000000001,1.2,0.022,0.62,58,988,696,0,4,1.4000000000000001,157,7,0,162,0.274,44.86,49.75,0.9400000000000001,0.12,794,1.1,289,2.2
+2023,10,4,11,0,13.9,1.21,0.016,0.62,55,1001,735,0,4,0.5,214,7,0,219,0.272,40.01,47.230000000000004,0.93,0.12,794,1.1,286,2.3000000000000003
+2023,10,4,11,30,14.5,1.21,0.016,0.62,55,1008,760,0,4,0.5,360,104,0,433,0.27,38.49,45.62,0.92,0.12,794,1.1,286,2.4000000000000004
+2023,10,4,12,0,15.200000000000001,1.21,0.014,0.62,53,1012,769,0,3,-0.30000000000000004,393,136,0,489,0.268,34.65,45,0.92,0.12,794,1.1,285,2.4000000000000004
+2023,10,4,12,30,15.700000000000001,1.21,0.014,0.62,53,1011,762,0,4,-0.30000000000000004,307,30,0,328,0.266,33.51,45.43,0.91,0.12,793,1.1,287,2.4000000000000004
+2023,10,4,13,0,16.2,1.23,0.012,0.62,50,1008,739,0,4,-1.1,249,10,0,256,0.265,30.63,46.88,0.91,0.12,793,1.1,289,2.4000000000000004
+2023,10,4,13,30,16.5,1.23,0.012,0.62,53,994,702,0,4,-1.1,357,99,0,422,0.265,30.05,49.25,0.92,0.12,793,1.1,295,2.5
+2023,10,4,14,0,16.8,1.25,0.021,0.62,57,974,651,0,4,-1.8,334,112,0,402,0.265,28.03,52.410000000000004,0.93,0.12,793,1.1,300,2.5
+2023,10,4,14,30,16.8,1.25,0.021,0.62,56,954,586,0,5,-1.8,302,114,0,365,0.265,28.03,56.230000000000004,0.93,0.12,793,1.1,305,2.6
+2023,10,4,15,0,16.8,1.26,0.021,0.62,52,928,508,0,3,-2.3000000000000003,187,481,0,423,0.265,27.1,60.56,0.92,0.12,793,1.1,310,2.7
+2023,10,4,15,30,16.400000000000002,1.26,0.021,0.62,49,891,421,0,0,-2.3000000000000003,83,760,0,400,0.265,27.79,65.31,0.92,0.12,793,1.1,314,2.7
+2023,10,4,16,0,16,1.28,0.021,0.62,45,837,326,0,3,-2.3000000000000003,147,273,0,239,0.265,28.400000000000002,70.36,0.92,0.12,793,1.1,318,2.8000000000000003
+2023,10,4,16,30,14.8,1.28,0.021,0.62,39,757,227,0,3,-2.3000000000000003,94,405,0,194,0.265,30.67,75.65,0.93,0.12,793,1.2000000000000002,323,2.3000000000000003
+2023,10,4,17,0,13.600000000000001,1.3,0.021,0.62,32,626,129,3,4,-1,72,36,43,78,0.265,36.63,81.09,0.93,0.12,793,1.2000000000000002,328,1.7000000000000002
+2023,10,4,17,30,12,1.3,0.021,0.62,21,355,42,7,3,-1,24,1,100,24,0.266,40.71,86.59,0.93,0.12,794,1.2000000000000002,335,1.4000000000000001
+2023,10,4,18,0,10.4,1.3,0.022,0.62,0,0,0,1,3,-0.7000000000000001,0,0,14,0,0.266,46.03,92.43,0.93,0.12,794,1.2000000000000002,343,1.2000000000000002
+2023,10,4,18,30,9.8,1.3,0.022,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.266,47.97,98.13,0.93,0.12,795,1.2000000000000002,346,1.3
+2023,10,4,19,0,9.200000000000001,1.29,0.022,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.266,50.68,103.83,0.92,0.12,795,1.2000000000000002,349,1.5
+2023,10,4,19,30,8.6,1.29,0.022,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.266,52.84,109.47,0.92,0.12,796,1.2000000000000002,349,1.6
+2023,10,4,20,0,7.9,1.27,0.021,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.266,56.75,115.01,0.92,0.12,796,1.2000000000000002,349,1.7000000000000002
+2023,10,4,20,30,7.4,1.27,0.021,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.266,58.71,120.4,0.92,0.12,796,1.2000000000000002,349,1.7000000000000002
+2023,10,4,21,0,6.800000000000001,1.24,0.021,0.62,0,0,0,0,0,0.2,0,0,0,0,0.267,62.85,125.55,0.92,0.12,796,1.2000000000000002,349,1.6
+2023,10,4,21,30,6.300000000000001,1.24,0.021,0.62,0,0,0,0,0,0.2,0,0,0,0,0.267,65.13,130.37,0.92,0.12,797,1.2000000000000002,349,1.6
+2023,10,4,22,0,5.800000000000001,1.22,0.02,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.268,69.17,134.74,0.92,0.12,797,1.2000000000000002,349,1.5
+2023,10,4,22,30,5.300000000000001,1.22,0.02,0.62,0,0,0,0,4,0.6000000000000001,0,0,0,0,0.268,71.61,138.49,0.92,0.12,797,1.1,351,1.4000000000000001
+2023,10,4,23,0,4.9,1.22,0.02,0.62,0,0,0,0,4,0.9,0,0,0,0,0.268,75.16,141.43,0.92,0.12,797,1.1,353,1.3
+2023,10,4,23,30,4.5,1.22,0.02,0.62,0,0,0,0,3,0.9,0,0,0,0,0.268,77.28,143.37,0.91,0.12,797,1.1,355,1.2000000000000002
+2023,10,5,0,0,4.1000000000000005,1.23,0.019,0.62,0,0,0,0,4,1,0,0,0,0,0.269,80.42,144.12,0.91,0.12,797,1.1,358,1.1
+2023,10,5,0,30,3.8000000000000003,1.23,0.019,0.62,0,0,0,0,4,1,0,0,0,0,0.269,82.13,143.61,0.91,0.12,797,1,182,1
+2023,10,5,1,0,3.5,1.22,0.017,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,84.36,141.9,0.91,0.12,797,1,5,1
+2023,10,5,1,30,3.3000000000000003,1.22,0.017,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,85.56,139.13,0.91,0.12,797,1,7,0.9
+2023,10,5,2,0,3,1.2,0.016,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,87.63,135.53,0.91,0.12,797,1,10,0.9
+2023,10,5,2,30,2.9000000000000004,1.2,0.016,0.62,0,0,0,0,4,1.1,0,0,0,0,0.268,88.25,131.27,0.91,0.12,797,1,12,0.8
+2023,10,5,3,0,2.7,1.19,0.015,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.268,89.57000000000001,126.53,0.91,0.12,797,0.9,14,0.8
+2023,10,5,3,30,2.6,1.19,0.015,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,90.21000000000001,121.44,0.92,0.12,797,0.9,17,0.8
+2023,10,5,4,0,2.4000000000000004,1.19,0.014,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,91.57000000000001,116.10000000000001,0.92,0.12,798,0.9,19,0.8
+2023,10,5,4,30,2.3000000000000003,1.19,0.014,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,92.22,110.59,0.92,0.12,798,0.9,21,0.8
+2023,10,5,5,0,2.1,1.19,0.014,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,93.53,104.97,0.92,0.12,798,0.9,22,0.8
+2023,10,5,5,30,2.1,1.19,0.014,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,93.53,99.29,0.92,0.12,798,1,23,0.8
+2023,10,5,6,0,2.1,1.2,0.014,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.267,93.57000000000001,93.60000000000001,0.92,0.12,798,1,23,0.8
+2023,10,5,6,30,3.7,1.2,0.014,0.62,17,294,29,0,0,1.2000000000000002,17,294,0,29,0.267,83.56,87.71000000000001,0.92,0.12,798,1,23,1.1
+2023,10,5,7,0,5.300000000000001,1.21,0.014,0.62,28,614,111,0,0,1.2000000000000002,28,614,0,111,0.267,75,82.24,0.92,0.12,799,1,23,1.4000000000000001
+2023,10,5,7,30,7.2,1.21,0.014,0.62,35,756,208,0,0,1.2000000000000002,35,756,0,208,0.267,65.81,76.79,0.92,0.12,799,1,27,1.8
+2023,10,5,8,0,9,1.22,0.014,0.62,40,841,307,0,0,1,40,841,0,307,0.266,57.33,71.49,0.92,0.12,799,1,31,2.1
+2023,10,5,8,30,10.5,1.22,0.014,0.62,44,895,402,0,0,1,44,895,0,402,0.266,51.86,66.41,0.92,0.12,799,1,34,2
+2023,10,5,9,0,11.9,1.23,0.014,0.62,47,933,490,0,0,0.5,47,933,0,490,0.265,45.58,61.63,0.92,0.12,799,1,37,1.8
+2023,10,5,9,30,12.9,1.23,0.014,0.62,48,961,568,0,0,0.5,48,961,0,568,0.264,42.69,57.230000000000004,0.92,0.12,799,1,32,1.6
+2023,10,5,10,0,13.9,1.24,0.014,0.62,50,981,636,0,0,0.1,50,981,0,636,0.263,38.79,53.34,0.92,0.12,799,1,27,1.4000000000000001
+2023,10,5,10,30,14.700000000000001,1.24,0.014,0.62,53,993,690,0,0,0.1,53,993,0,690,0.263,36.84,50.08,0.92,0.12,799,1,17,1.3
+2023,10,5,11,0,15.5,1.19,0.017,0.62,56,1001,731,0,0,-0.2,56,1001,0,731,0.262,34.17,47.58,0.93,0.12,799,1,6,1.2000000000000002
+2023,10,5,11,30,16.2,1.19,0.017,0.62,57,1006,756,0,0,-0.30000000000000004,57,1006,0,756,0.261,32.64,45.980000000000004,0.92,0.12,798,1,177,1.2000000000000002
+2023,10,5,12,0,16.900000000000002,1.2,0.016,0.62,56,1009,765,0,0,-0.5,56,1009,0,765,0.261,30.62,45.38,0.92,0.12,798,1,347,1.3
+2023,10,5,12,30,17.400000000000002,1.2,0.016,0.62,56,1008,758,0,0,-0.5,56,1008,0,758,0.26,29.67,45.82,0.92,0.12,798,1,344,1.4000000000000001
+2023,10,5,13,0,17.900000000000002,1.22,0.015,0.62,55,1004,736,0,0,-0.7000000000000001,55,1004,0,736,0.259,28.310000000000002,47.27,0.92,0.12,797,1,341,1.5
+2023,10,5,13,30,18.2,1.22,0.015,0.62,53,996,698,0,0,-0.7000000000000001,53,996,0,698,0.259,27.78,49.63,0.92,0.12,797,1,339,1.4000000000000001
+2023,10,5,14,0,18.5,1.25,0.013000000000000001,0.62,51,984,646,0,0,-0.9,51,984,0,646,0.258,26.86,52.78,0.91,0.12,797,1,338,1.4000000000000001
+2023,10,5,14,30,18.5,1.25,0.013000000000000001,0.62,48,966,580,0,0,-0.9,48,966,0,580,0.259,26.86,56.59,0.91,0.12,797,1,335,1.3
+2023,10,5,15,0,18.6,1.24,0.013000000000000001,0.62,46,940,503,0,0,-1.2000000000000002,46,940,0,503,0.259,26.19,60.910000000000004,0.91,0.12,796,1,332,1.3
+2023,10,5,15,30,18.2,1.24,0.013000000000000001,0.62,43,905,416,0,0,-1.2000000000000002,43,905,0,416,0.259,26.85,65.65,0.91,0.12,796,1,332,1.2000000000000002
+2023,10,5,16,0,17.900000000000002,1.22,0.013000000000000001,0.62,39,855,322,0,0,-1.4000000000000001,39,855,0,322,0.26,27.01,70.69,0.91,0.12,796,1,332,1.2000000000000002
+2023,10,5,16,30,16.7,1.22,0.013000000000000001,0.62,35,777,223,0,0,-1.4000000000000001,35,777,0,223,0.26,29.13,75.97,0.9,0.12,796,1,168,0.8
+2023,10,5,17,0,15.600000000000001,1.21,0.013000000000000001,0.62,28,647,125,0,0,0.6000000000000001,28,647,0,125,0.26,36.02,81.4,0.9,0.12,796,1,3,0.5
+2023,10,5,17,30,14.200000000000001,1.21,0.013000000000000001,0.62,19,373,39,0,0,0.6000000000000001,19,373,0,39,0.261,39.46,86.89,0.9,0.12,797,1,33,0.6000000000000001
+2023,10,5,18,0,12.8,1.2,0.013000000000000001,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.261,40.42,92.74,0.9,0.12,797,1,62,0.7000000000000001
+2023,10,5,18,30,12,1.2,0.013000000000000001,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.261,42.6,98.44,0.9,0.12,797,0.9,72,0.8
+2023,10,5,19,0,11.3,1.2,0.013000000000000001,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.261,43.800000000000004,104.14,0.9,0.12,797,0.9,81,0.8
+2023,10,5,19,30,10.700000000000001,1.2,0.013000000000000001,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.262,45.64,109.78,0.9,0.12,798,1,83,0.9
+2023,10,5,20,0,10.200000000000001,1.19,0.013000000000000001,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.262,46.28,115.33,0.9,0.12,798,1,85,0.9
+2023,10,5,20,30,9.700000000000001,1.19,0.013000000000000001,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.262,47.85,120.72,0.9,0.12,798,1,81,0.9
+2023,10,5,21,0,9.200000000000001,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,48.980000000000004,125.88000000000001,0.91,0.12,798,1,77,0.9
+2023,10,5,21,30,8.700000000000001,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,50.65,130.72,0.91,0.12,798,1,74,0.9
+2023,10,5,22,0,8.200000000000001,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,52.45,135.1,0.91,0.12,798,1,71,0.9
+2023,10,5,22,30,7.9,1.19,0.014,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,53.52,138.86,0.91,0.12,798,1.1,66,0.8
+2023,10,5,23,0,7.6000000000000005,1.19,0.015,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.263,55.08,141.82,0.91,0.12,798,1.1,60,0.8
+2023,10,5,23,30,7.2,1.19,0.015,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.263,56.6,143.76,0.91,0.12,798,1.1,51,0.8
+2023,10,6,0,0,6.9,1.2,0.015,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.263,58.52,144.5,0.91,0.12,798,1.1,41,0.9
+2023,10,6,0,30,6.4,1.2,0.015,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.264,60.56,143.98,0.91,0.12,798,1.1,35,0.9
+2023,10,6,1,0,5.9,1.22,0.016,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.264,63.7,142.24,0.91,0.12,798,1.1,30,1
+2023,10,6,1,30,5.5,1.22,0.016,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.264,65.49,139.45000000000002,0.91,0.12,798,1.1,27,1.1
+2023,10,6,2,0,5.1000000000000005,1.23,0.016,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.264,68.41,135.81,0.91,0.12,798,1.1,24,1.2000000000000002
+2023,10,6,2,30,4.800000000000001,1.23,0.016,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.265,69.85000000000001,131.53,0.91,0.12,798,1.1,22,1.4000000000000001
+2023,10,6,3,0,4.6000000000000005,1.23,0.016,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.265,71.62,126.77,0.91,0.12,798,1.1,21,1.7000000000000002
+2023,10,6,3,30,4.2,1.23,0.016,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.265,73.75,121.66,0.91,0.12,799,1.1,21,1.9000000000000001
+2023,10,6,4,0,3.9000000000000004,1.21,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.266,75.7,116.31,0.92,0.12,799,1.1,22,2.2
+2023,10,6,4,30,3.6,1.21,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.266,77.32000000000001,110.79,0.92,0.12,799,1,24,2.3000000000000003
+2023,10,6,5,0,3.3000000000000003,1.19,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.267,79.16,105.16,0.92,0.12,799,1,26,2.4000000000000004
+2023,10,6,5,30,3.1,1.19,0.016,0.62,0,0,0,0,0,0,0,0,0,0,0.267,80.28,99.48,0.92,0.12,799,1,27,2.5
+2023,10,6,6,0,3,1.16,0.016,0.62,0,0,0,0,0,0.1,0,0,0,0,0.268,81.05,93.79,0.92,0.12,799,1,28,2.6
+2023,10,6,6,30,4.3,1.16,0.016,0.62,17,278,27,0,0,0.1,17,278,0,27,0.269,73.97,87.89,0.92,0.12,799,1,29,3.2
+2023,10,6,7,0,5.5,1.1400000000000001,0.016,0.62,29,601,108,0,0,0.1,29,601,0,108,0.27,68.41,82.44,0.92,0.12,799,1,30,3.8000000000000003
+2023,10,6,7,30,7.4,1.1400000000000001,0.016,0.62,37,749,205,0,0,0.1,37,749,0,205,0.272,60.04,77,0.92,0.12,799,1,38,4.1000000000000005
+2023,10,6,8,0,9.200000000000001,1.1300000000000001,0.016,0.62,41,837,304,0,0,0.30000000000000004,41,837,0,304,0.273,53.74,71.71000000000001,0.92,0.12,799,0.9,46,4.3
+2023,10,6,8,30,10.9,1.1300000000000001,0.016,0.62,46,894,400,0,0,0.30000000000000004,46,894,0,400,0.274,47.980000000000004,66.65,0.92,0.12,799,0.9,50,4.2
+2023,10,6,9,0,12.600000000000001,1.1400000000000001,0.016,0.62,48,934,488,0,0,0.4,48,934,0,488,0.275,43.34,61.88,0.92,0.12,799,0.9,53,4
+2023,10,6,9,30,13.700000000000001,1.1400000000000001,0.016,0.62,50,962,567,0,0,0.5,50,962,0,567,0.276,40.34,57.51,0.92,0.12,799,0.9,51,3.9000000000000004
+2023,10,6,10,0,14.8,1.1400000000000001,0.015,0.62,53,982,635,0,0,0.4,53,982,0,635,0.277,37.37,53.64,0.92,0.12,799,0.9,49,3.8000000000000003
+2023,10,6,10,30,15.600000000000001,1.1400000000000001,0.015,0.62,52,998,688,0,0,0.4,52,998,0,688,0.278,35.5,50.4,0.92,0.12,799,0.9,48,3.8000000000000003
+2023,10,6,11,0,16.400000000000002,1.23,0.012,0.62,50,1010,727,0,0,0,50,1010,0,727,0.278,32.94,47.93,0.91,0.12,799,0.9,46,3.8000000000000003
+2023,10,6,11,30,17,1.23,0.012,0.62,50,1017,752,0,0,0.1,50,1017,0,752,0.278,31.71,46.35,0.91,0.12,799,0.9,46,3.8000000000000003
+2023,10,6,12,0,17.7,1.24,0.011,0.62,50,1021,762,0,0,-0.5,50,1021,0,762,0.279,29.060000000000002,45.77,0.91,0.12,798,0.9,45,3.8000000000000003
+2023,10,6,12,30,18.1,1.24,0.011,0.62,49,1020,755,0,0,-0.5,49,1020,0,755,0.278,28.34,46.21,0.9,0.12,798,0.9,44,3.8000000000000003
+2023,10,6,13,0,18.5,1.26,0.011,0.62,48,1015,732,0,0,-1.2000000000000002,48,1015,0,732,0.278,26.34,47.660000000000004,0.9,0.12,798,0.9,44,3.8000000000000003
+2023,10,6,13,30,18.7,1.26,0.011,0.62,48,1007,695,0,0,-1.2000000000000002,48,1007,0,695,0.278,26.01,50.01,0.9,0.12,798,0.8,42,3.8000000000000003
+2023,10,6,14,0,18.8,1.2,0.012,0.62,48,994,644,0,0,-1.8,48,994,0,644,0.277,24.67,53.160000000000004,0.9,0.12,797,0.8,40,3.8000000000000003
+2023,10,6,14,30,18.7,1.2,0.012,0.62,46,976,578,0,0,-1.8,46,976,0,578,0.277,24.82,56.95,0.9,0.12,797,0.8,38,3.8000000000000003
+2023,10,6,15,0,18.5,1.21,0.011,0.62,44,950,501,0,0,-2.4000000000000004,44,950,0,501,0.277,24.05,61.26,0.9,0.12,797,0.8,36,3.8000000000000003
+2023,10,6,15,30,17.900000000000002,1.21,0.011,0.62,41,914,413,0,0,-2.4000000000000004,41,914,0,413,0.276,24.97,65.98,0.9,0.12,797,0.8,34,3.9000000000000004
+2023,10,6,16,0,17.400000000000002,1.21,0.011,0.62,37,863,318,0,0,-2.9000000000000004,37,863,0,318,0.276,24.84,71.02,0.9,0.12,797,0.8,33,3.9000000000000004
+2023,10,6,16,30,15.8,1.21,0.011,0.62,33,785,219,0,0,-2.9000000000000004,33,785,0,219,0.276,27.48,76.28,0.9,0.12,797,0.8,31,3.3000000000000003
+2023,10,6,17,0,14.3,1.22,0.011,0.62,27,653,121,0,0,-2.8000000000000003,27,653,0,121,0.276,30.650000000000002,81.71000000000001,0.9,0.12,797,0.8,29,2.7
+2023,10,6,17,30,12.3,1.22,0.011,0.62,19,375,37,0,0,-2.8000000000000003,19,375,0,37,0.276,34.910000000000004,87.19,0.9,0.12,797,0.7000000000000001,29,2.4000000000000004
+2023,10,6,18,0,10.200000000000001,1.23,0.011,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.276,40.01,93.04,0.9,0.12,797,0.7000000000000001,28,2.1
+2023,10,6,18,30,9.600000000000001,1.23,0.011,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.276,41.7,98.75,0.9,0.12,798,0.7000000000000001,30,2.3000000000000003
+2023,10,6,19,0,8.9,1.24,0.012,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.276,42.15,104.44,0.9,0.12,798,0.7000000000000001,31,2.5
+2023,10,6,19,30,8.200000000000001,1.24,0.012,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.276,44.19,110.09,0.9,0.12,798,0.7000000000000001,34,2.5
+2023,10,6,20,0,7.5,1.25,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,45.19,115.65,0.9,0.12,798,0.7000000000000001,36,2.4000000000000004
+2023,10,6,20,30,6.9,1.25,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,47.08,121.05,0.9,0.12,798,0.7000000000000001,39,2.3000000000000003
+2023,10,6,21,0,6.300000000000001,1.25,0.011,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.276,47.980000000000004,126.22,0.89,0.12,798,0.7000000000000001,41,2.2
+2023,10,6,21,30,5.7,1.25,0.011,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.276,50,131.06,0.89,0.12,798,0.6000000000000001,43,2.1
+2023,10,6,22,0,5.2,1.25,0.011,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.276,50.65,135.46,0.89,0.12,798,0.6000000000000001,44,2
+2023,10,6,22,30,4.7,1.25,0.011,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.276,52.45,139.24,0.89,0.12,798,0.6000000000000001,45,1.8
+2023,10,6,23,0,4.2,1.24,0.011,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.276,53.33,142.21,0.89,0.12,798,0.6000000000000001,45,1.7000000000000002
+2023,10,6,23,30,3.8000000000000003,1.24,0.011,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.275,54.85,144.15,0.89,0.12,798,0.6000000000000001,45,1.7000000000000002
+2023,10,7,0,0,3.5,1.24,0.011,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.275,55.45,144.89000000000001,0.89,0.12,798,0.6000000000000001,44,1.6
+2023,10,7,0,30,3.1,1.24,0.011,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.275,57.04,144.34,0.89,0.12,798,0.6000000000000001,44,1.5
+2023,10,7,1,0,2.8000000000000003,1.25,0.011,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.275,58.01,142.58,0.89,0.12,798,0.6000000000000001,43,1.5
+2023,10,7,1,30,2.6,1.25,0.011,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.274,58.83,139.76,0.89,0.12,798,0.6000000000000001,43,1.4000000000000001
+2023,10,7,2,0,2.3000000000000003,1.25,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.274,59.85,136.09,0.89,0.12,797,0.6000000000000001,42,1.4000000000000001
+2023,10,7,2,30,2.2,1.25,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,60.28,131.79,0.89,0.12,797,0.6000000000000001,41,1.4000000000000001
+2023,10,7,3,0,2.1,1.26,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,60.59,127,0.89,0.12,797,0.6000000000000001,41,1.4000000000000001
+2023,10,7,3,30,2,1.26,0.012,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.273,61.02,121.88,0.89,0.12,797,0.7000000000000001,40,1.3
+2023,10,7,4,0,1.9000000000000001,1.28,0.012,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.272,61.2,116.52,0.89,0.12,797,0.7000000000000001,40,1.3
+2023,10,7,4,30,1.9000000000000001,1.28,0.012,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.272,61.2,110.99000000000001,0.89,0.12,797,0.7000000000000001,39,1.3
+2023,10,7,5,0,1.9000000000000001,1.29,0.013000000000000001,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.272,60.9,105.36,0.89,0.12,797,0.7000000000000001,39,1.3
+2023,10,7,5,30,1.9000000000000001,1.29,0.013000000000000001,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.272,60.9,99.67,0.89,0.12,797,0.7000000000000001,39,1.2000000000000002
+2023,10,7,6,0,2,1.3,0.013000000000000001,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.273,60.160000000000004,93.98,0.89,0.12,797,0.7000000000000001,39,1.2000000000000002
+2023,10,7,6,30,3.8000000000000003,1.3,0.013000000000000001,0.62,16,293,26,0,0,-4.9,16,293,0,26,0.273,52.97,88.08,0.89,0.12,797,0.7000000000000001,37,1.6
+2023,10,7,7,0,5.6000000000000005,1.31,0.013000000000000001,0.62,26,621,106,0,0,-4.6000000000000005,26,621,0,106,0.273,47.910000000000004,82.64,0.89,0.12,797,0.7000000000000001,34,1.9000000000000001
+2023,10,7,7,30,7.4,1.31,0.013000000000000001,0.62,34,767,204,0,0,-4.6000000000000005,34,767,0,204,0.273,42.34,77.22,0.89,0.12,797,0.7000000000000001,34,2
+2023,10,7,8,0,9.200000000000001,1.32,0.013000000000000001,0.62,39,854,304,0,0,-4.7,39,854,0,304,0.273,37.15,71.94,0.89,0.12,797,0.7000000000000001,33,2
+2023,10,7,8,30,11.3,1.32,0.013000000000000001,0.62,42,911,400,0,0,-4.7,42,911,0,400,0.273,32.3,66.89,0.89,0.12,797,0.7000000000000001,43,1.6
+2023,10,7,9,0,13.5,1.33,0.014,0.62,46,949,489,0,0,-4.6000000000000005,46,949,0,489,0.273,28.080000000000002,62.14,0.9,0.12,797,0.7000000000000001,53,1.2000000000000002
+2023,10,7,9,30,15.200000000000001,1.33,0.014,0.62,48,977,569,0,0,-4.6000000000000005,48,977,14,569,0.272,25.17,57.79,0.9,0.12,797,0.7000000000000001,122,0.9
+2023,10,7,10,0,16.900000000000002,1.34,0.014,0.62,51,996,637,0,0,-4.800000000000001,51,996,0,637,0.272,22.37,53.94,0.9,0.12,797,0.7000000000000001,191,0.5
+2023,10,7,10,30,18,1.34,0.014,0.62,51,1012,692,0,0,-4.800000000000001,51,1012,0,692,0.271,20.87,50.730000000000004,0.9,0.12,797,0.7000000000000001,207,0.9
+2023,10,7,11,0,19.1,1.3800000000000001,0.013000000000000001,0.62,52,1022,732,0,0,-4.9,52,1022,0,732,0.271,19.240000000000002,48.28,0.9,0.12,797,0.7000000000000001,223,1.3
+2023,10,7,11,30,19.700000000000003,1.3800000000000001,0.013000000000000001,0.62,52,1028,757,0,0,-4.9,52,1028,0,757,0.27,18.54,46.72,0.9,0.12,797,0.7000000000000001,228,1.4000000000000001
+2023,10,7,12,0,20.400000000000002,1.3900000000000001,0.013000000000000001,0.62,52,1031,766,0,0,-5.2,52,1031,0,766,0.27,17.32,46.15,0.89,0.12,797,0.6000000000000001,232,1.5
+2023,10,7,12,30,20.700000000000003,1.3900000000000001,0.013000000000000001,0.62,52,1031,760,0,0,-5.300000000000001,52,1031,0,760,0.269,16.990000000000002,46.6,0.89,0.12,796,0.6000000000000001,235,1.5
+2023,10,7,13,0,21,1.4000000000000001,0.013000000000000001,0.62,50,1027,737,0,0,-5.7,50,1027,0,737,0.268,16.09,48.050000000000004,0.89,0.12,796,0.6000000000000001,237,1.5
+2023,10,7,13,30,21.1,1.4000000000000001,0.013000000000000001,0.62,52,1017,700,0,0,-5.7,52,1017,0,700,0.267,15.99,50.4,0.9,0.12,796,0.6000000000000001,242,1.4000000000000001
+2023,10,7,14,0,21.200000000000003,1.25,0.016,0.62,52,1001,647,0,0,-6.300000000000001,52,1001,0,647,0.267,15.24,53.53,0.9,0.12,796,0.6000000000000001,246,1.3
+2023,10,7,14,30,21,1.25,0.016,0.62,51,982,581,0,0,-6.300000000000001,51,982,0,581,0.266,15.41,57.31,0.9,0.12,795,0.6000000000000001,253,1.2000000000000002
+2023,10,7,15,0,20.900000000000002,1.26,0.016,0.62,47,956,502,0,0,-6.9,47,956,0,502,0.266,14.77,61.61,0.9,0.12,795,0.6000000000000001,259,1.1
+2023,10,7,15,30,20.3,1.26,0.016,0.62,45,918,414,0,0,-6.9,45,918,0,414,0.265,15.32,66.32000000000001,0.9,0.12,795,0.6000000000000001,264,0.9
+2023,10,7,16,0,19.8,1.26,0.016,0.62,41,866,318,0,0,-7.300000000000001,41,866,0,318,0.265,15.34,71.34,0.9,0.12,795,0.6000000000000001,269,0.8
+2023,10,7,16,30,18.400000000000002,1.26,0.016,0.62,36,786,218,0,0,-7.300000000000001,36,786,0,218,0.264,16.740000000000002,76.60000000000001,0.9,0.12,795,0.6000000000000001,272,0.6000000000000001
+2023,10,7,17,0,17,1.26,0.016,0.62,29,649,119,0,0,-4,29,649,0,119,0.263,23.52,82.02,0.9,0.12,795,0.6000000000000001,276,0.30000000000000004
+2023,10,7,17,30,16,1.26,0.016,0.62,19,322,33,0,0,-4,19,322,0,33,0.263,25.060000000000002,87.48,0.9,0.12,795,0.5,144,0.2
+2023,10,7,18,0,14.9,1.26,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.263,24.5,93.35000000000001,0.9,0.12,795,0.5,12,0.2
+2023,10,7,18,30,14.4,1.26,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.262,25.3,99.05,0.9,0.12,795,0.5,24,0.30000000000000004
+2023,10,7,19,0,13.9,1.25,0.016,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.262,24.17,104.74000000000001,0.9,0.12,795,0.5,36,0.5
+2023,10,7,19,30,13.200000000000001,1.25,0.016,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.261,25.3,110.4,0.9,0.12,795,0.5,39,0.6000000000000001
+2023,10,7,20,0,12.5,1.26,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.261,26.25,115.96000000000001,0.9,0.12,795,0.5,41,0.7000000000000001
+2023,10,7,20,30,11.700000000000001,1.26,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,27.67,121.37,0.9,0.12,795,0.5,47,0.8
+2023,10,7,21,0,11,1.26,0.017,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,28.85,126.55,0.9,0.12,795,0.5,53,0.9
+2023,10,7,21,30,10.3,1.26,0.017,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.26,30.23,131.41,0.9,0.12,795,0.5,58,1
+2023,10,7,22,0,9.600000000000001,1.27,0.018000000000000002,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,31.7,135.82,0.9,0.12,795,0.5,63,1.1
+2023,10,7,22,30,9.1,1.27,0.018000000000000002,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,32.78,139.61,0.9,0.12,795,0.5,68,1.1
+2023,10,7,23,0,8.6,1.29,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,34.05,142.59,0.9,0.12,796,0.5,73,1.1
+2023,10,7,23,30,8.3,1.29,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.259,34.74,144.54,0.9,0.12,796,0.6000000000000001,79,1.1
+2023,10,8,0,0,8,1.31,0.02,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.258,35.69,145.27,0.9,0.12,796,0.6000000000000001,84,1.1
+2023,10,8,0,30,7.800000000000001,1.31,0.02,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.258,36.18,144.71,0.9,0.12,796,0.6000000000000001,89,1
+2023,10,8,1,0,7.5,1.35,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.258,37.17,142.92000000000002,0.9,0.12,796,0.6000000000000001,95,0.9
+2023,10,8,1,30,7.4,1.35,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.259,37.42,140.07,0.9,0.12,796,0.6000000000000001,98,0.8
+2023,10,8,2,0,7.300000000000001,1.3900000000000001,0.023,0.62,0,0,0,0,0,-6,0,0,0,0,0.259,38.15,136.38,0.9,0.12,795,0.6000000000000001,102,0.7000000000000001
+2023,10,8,2,30,7.2,1.3900000000000001,0.023,0.62,0,0,0,0,0,-6,0,0,0,0,0.26,38.410000000000004,132.04,0.9,0.12,795,0.6000000000000001,100,0.6000000000000001
+2023,10,8,3,0,7.1000000000000005,1.45,0.026000000000000002,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.261,39.08,127.24000000000001,0.9,0.12,795,0.6000000000000001,97,0.5
+2023,10,8,3,30,6.9,1.45,0.026000000000000002,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.262,39.62,122.10000000000001,0.89,0.12,795,0.6000000000000001,89,0.5
+2023,10,8,4,0,6.800000000000001,1.5,0.028,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.262,40.31,116.72,0.89,0.12,795,0.6000000000000001,80,0.4
+2023,10,8,4,30,6.6000000000000005,1.5,0.028,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.263,40.87,111.19,0.89,0.12,795,0.6000000000000001,72,0.4
+2023,10,8,5,0,6.5,1.54,0.029,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.264,41.57,105.55,0.89,0.12,795,0.6000000000000001,64,0.4
+2023,10,8,5,30,6.300000000000001,1.54,0.029,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.264,42.15,99.87,0.89,0.12,795,0.6000000000000001,61,0.4
+2023,10,8,6,0,6.1000000000000005,1.57,0.03,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.265,43.17,94.18,0.89,0.12,795,0.6000000000000001,57,0.4
+2023,10,8,6,30,7,1.57,0.03,0.62,15,219,22,0,0,-5.5,15,219,0,22,0.265,40.59,88.27,0.89,0.12,795,0.6000000000000001,54,0.4
+2023,10,8,7,0,8,1.59,0.03,0.62,31,579,103,0,0,-4.2,31,579,0,103,0.265,41.730000000000004,82.84,0.89,0.12,795,0.6000000000000001,51,0.4
+2023,10,8,7,30,9.600000000000001,1.59,0.03,0.62,40,737,200,0,0,-4.2,40,737,0,200,0.266,37.47,77.43,0.89,0.12,795,0.6000000000000001,65,0.4
+2023,10,8,8,0,11.3,1.59,0.029,0.62,47,830,301,0,0,-4.9,47,830,0,301,0.266,31.89,72.16,0.89,0.12,795,0.6000000000000001,80,0.5
+2023,10,8,8,30,13.600000000000001,1.59,0.029,0.62,52,891,398,0,0,-4.9,52,891,0,398,0.266,27.43,67.13,0.89,0.12,795,0.6000000000000001,152,0.7000000000000001
+2023,10,8,9,0,15.9,1.58,0.028,0.62,55,934,488,0,0,-5.9,55,934,0,488,0.266,21.82,62.4,0.89,0.12,795,0.6000000000000001,224,0.8
+2023,10,8,9,30,17.5,1.58,0.028,0.62,57,964,567,0,0,-5.9,57,964,29,567,0.266,19.72,58.07,0.89,0.12,795,0.6000000000000001,229,1.3
+2023,10,8,10,0,19.200000000000003,1.57,0.027,0.62,59,986,635,0,0,-6.300000000000001,59,986,0,635,0.266,17.25,54.25,0.89,0.12,795,0.6000000000000001,234,1.7000000000000002
+2023,10,8,10,30,20,1.57,0.027,0.62,60,1002,690,0,0,-6.300000000000001,60,1002,0,690,0.266,16.42,51.050000000000004,0.89,0.12,795,0.6000000000000001,235,1.9000000000000001
+2023,10,8,11,0,20.8,1.68,0.023,0.62,59,1015,730,0,0,-6.300000000000001,59,1015,0,730,0.266,15.65,48.63,0.89,0.12,795,0.6000000000000001,235,2
+2023,10,8,11,30,21.3,1.68,0.023,0.62,60,1021,755,0,0,-6.300000000000001,60,1021,0,755,0.266,15.15,47.09,0.89,0.12,794,0.6000000000000001,236,2.2
+2023,10,8,12,0,21.900000000000002,1.6500000000000001,0.022,0.62,60,1024,764,0,0,-6.5,60,1024,0,764,0.266,14.32,46.53,0.89,0.12,794,0.6000000000000001,238,2.3000000000000003
+2023,10,8,12,30,22.200000000000003,1.6500000000000001,0.022,0.62,59,1023,757,0,0,-6.5,59,1023,0,757,0.266,14.06,46.99,0.89,0.12,794,0.6000000000000001,239,2.3000000000000003
+2023,10,8,13,0,22.400000000000002,1.62,0.02,0.62,58,1019,734,0,0,-7,58,1019,0,734,0.265,13.4,48.43,0.89,0.12,793,0.6000000000000001,240,2.3000000000000003
+2023,10,8,13,30,22.5,1.62,0.02,0.62,56,1010,695,0,0,-7,56,1010,0,695,0.265,13.32,50.78,0.89,0.12,793,0.6000000000000001,240,2.3000000000000003
+2023,10,8,14,0,22.5,1.57,0.019,0.62,54,998,642,0,0,-7.5,54,998,0,642,0.265,12.81,53.9,0.9,0.12,793,0.6000000000000001,241,2.3000000000000003
+2023,10,8,14,30,22.3,1.57,0.019,0.62,52,981,577,0,0,-7.5,52,981,0,577,0.264,12.97,57.67,0.9,0.12,793,0.6000000000000001,241,2.2
+2023,10,8,15,0,22,1.56,0.018000000000000002,0.62,50,956,499,0,0,-8,50,956,0,499,0.264,12.700000000000001,61.96,0.9,0.12,792,0.6000000000000001,242,2.1
+2023,10,8,15,30,21.400000000000002,1.56,0.018000000000000002,0.62,46,920,411,0,0,-8,46,920,0,411,0.264,13.18,66.65,0.9,0.12,792,0.5,240,1.9000000000000001
+2023,10,8,16,0,20.8,1.56,0.017,0.62,42,866,314,0,0,-8.1,42,866,0,314,0.263,13.59,71.67,0.9,0.12,792,0.5,238,1.7000000000000002
+2023,10,8,16,30,18.900000000000002,1.56,0.017,0.62,36,785,214,0,0,-8.1,36,785,0,214,0.263,15.280000000000001,76.92,0.9,0.12,792,0.5,232,1.2000000000000002
+2023,10,8,17,0,17.1,1.56,0.016,0.62,29,643,115,0,0,-4,29,643,0,115,0.263,23.32,82.33,0.9,0.12,792,0.5,226,0.7000000000000001
+2023,10,8,17,30,16,1.56,0.016,0.62,18,312,30,0,0,-4,18,312,0,30,0.263,25,87.77,0.9,0.12,792,0.5,219,0.7000000000000001
+2023,10,8,18,0,15,1.58,0.016,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.263,22.88,93.65,0.9,0.12,792,0.5,213,0.7000000000000001
+2023,10,8,18,30,14.700000000000001,1.58,0.016,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.263,23.330000000000002,99.35000000000001,0.9,0.12,792,0.5,215,0.6000000000000001
+2023,10,8,19,0,14.5,1.59,0.016,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.263,22.71,105.05,0.9,0.12,792,0.5,218,0.6000000000000001
+2023,10,8,19,30,14.100000000000001,1.59,0.016,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.263,23.3,110.7,0.9,0.12,792,0.5,232,0.5
+2023,10,8,20,0,13.700000000000001,1.61,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.263,23.42,116.27,0.9,0.12,792,0.5,246,0.4
+2023,10,8,20,30,13.3,1.61,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.263,24.03,121.68,0.9,0.12,792,0.6000000000000001,269,0.4
+2023,10,8,21,0,12.8,1.6300000000000001,0.017,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,24.22,126.88000000000001,0.9,0.12,792,0.6000000000000001,293,0.4
+2023,10,8,21,30,12.3,1.6300000000000001,0.017,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,25.02,131.75,0.9,0.12,792,0.6000000000000001,305,0.4
+2023,10,8,22,0,11.8,1.6500000000000001,0.018000000000000002,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,25.66,136.17000000000002,0.9,0.12,792,0.6000000000000001,316,0.4
+2023,10,8,22,30,11.3,1.6500000000000001,0.018000000000000002,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,26.52,139.98,0.9,0.12,792,0.6000000000000001,323,0.5
+2023,10,8,23,0,10.8,1.6600000000000001,0.018000000000000002,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,27.39,142.97,0.89,0.12,792,0.6000000000000001,329,0.5
+2023,10,8,23,30,10.4,1.6600000000000001,0.018000000000000002,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,28.13,144.92000000000002,0.89,0.12,792,0.6000000000000001,336,0.5
+2023,10,9,0,0,9.9,1.67,0.019,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,29.16,145.65,0.89,0.12,791,0.6000000000000001,342,0.5
+2023,10,9,0,30,9.5,1.67,0.019,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.264,29.95,145.07,0.89,0.12,791,0.6000000000000001,348,0.5
+2023,10,9,1,0,9,1.68,0.019,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,31.23,143.26,0.89,0.12,791,0.6000000000000001,353,0.5
+2023,10,9,1,30,8.6,1.68,0.019,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.264,32.08,140.38,0.89,0.12,791,0.6000000000000001,177,0.5
+2023,10,9,2,0,8.200000000000001,1.69,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.264,33.36,136.66,0.89,0.12,791,0.6000000000000001,1,0.6000000000000001
+2023,10,9,2,30,7.7,1.69,0.02,0.62,0,0,0,0,0,-7,0,0,0,0,0.264,34.52,132.3,0.89,0.12,791,0.6000000000000001,5,0.6000000000000001
+2023,10,9,3,0,7.300000000000001,1.7,0.021,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.265,36.25,127.48,0.89,0.12,791,0.6000000000000001,10,0.6000000000000001
+2023,10,9,3,30,6.800000000000001,1.7,0.021,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.265,37.51,122.32000000000001,0.89,0.12,791,0.6000000000000001,12,0.6000000000000001
+2023,10,9,4,0,6.4,1.7,0.021,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.265,39.67,116.93,0.89,0.12,791,0.6000000000000001,14,0.6000000000000001
+2023,10,9,4,30,6,1.7,0.021,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.265,40.78,111.39,0.89,0.12,791,0.6000000000000001,14,0.6000000000000001
+2023,10,9,5,0,5.6000000000000005,1.7,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.266,43.39,105.75,0.89,0.12,791,0.6000000000000001,15,0.6000000000000001
+2023,10,9,5,30,5.300000000000001,1.7,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.266,44.300000000000004,100.06,0.89,0.12,791,0.6000000000000001,15,0.6000000000000001
+2023,10,9,6,0,5.1000000000000005,1.69,0.022,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.266,46.29,94.37,0.88,0.12,791,0.6000000000000001,16,0.6000000000000001
+2023,10,9,6,30,6.300000000000001,1.69,0.022,0.62,15,230,21,0,0,-5.5,15,230,0,21,0.266,42.6,88.45,0.88,0.12,791,0.6000000000000001,19,0.5
+2023,10,9,7,0,7.6000000000000005,1.67,0.021,0.62,29,597,101,0,0,-4.5,29,597,0,101,0.266,41.88,83.05,0.88,0.12,791,0.6000000000000001,23,0.5
+2023,10,9,7,30,9.600000000000001,1.67,0.021,0.62,37,754,198,0,0,-4.5,37,754,0,198,0.266,36.59,77.64,0.88,0.12,791,0.6000000000000001,28,0.7000000000000001
+2023,10,9,8,0,11.5,1.6400000000000001,0.02,0.62,42,846,298,0,0,-5,42,846,0,298,0.266,31.11,72.39,0.88,0.12,791,0.6000000000000001,34,0.9
+2023,10,9,8,30,14,1.6400000000000001,0.02,0.62,46,909,396,0,0,-5,46,909,0,396,0.265,26.42,67.37,0.88,0.12,791,0.6000000000000001,31,0.9
+2023,10,9,9,0,16.400000000000002,1.61,0.018000000000000002,0.62,49,953,487,0,0,-6.300000000000001,49,953,0,487,0.265,20.53,62.660000000000004,0.88,0.12,791,0.5,27,1
+2023,10,9,9,30,17.8,1.61,0.018000000000000002,0.62,52,984,568,0,0,-6.300000000000001,52,984,29,568,0.265,18.8,58.35,0.88,0.12,791,0.5,20,0.8
+2023,10,9,10,0,19.1,1.58,0.017,0.62,52,1005,635,0,0,-7.7,52,1005,0,635,0.264,15.59,54.550000000000004,0.88,0.12,791,0.5,14,0.7000000000000001
+2023,10,9,10,30,19.8,1.58,0.017,0.62,53,1020,690,0,0,-7.7,53,1020,0,690,0.264,14.91,51.38,0.87,0.12,790,0.5,178,0.7000000000000001
+2023,10,9,11,0,20.6,1.6600000000000001,0.015,0.62,52,1031,729,0,0,-8.700000000000001,52,1031,0,729,0.264,13.120000000000001,48.97,0.87,0.12,790,0.5,343,0.7000000000000001
+2023,10,9,11,30,21.1,1.6600000000000001,0.015,0.62,53,1037,754,0,0,-8.700000000000001,53,1037,0,754,0.263,12.72,47.45,0.87,0.12,790,0.5,337,0.7000000000000001
+2023,10,9,12,0,21.6,1.6400000000000001,0.015,0.62,52,1039,762,0,0,-9.5,52,1039,0,762,0.263,11.6,46.910000000000004,0.87,0.12,790,0.5,331,0.8
+2023,10,9,12,30,21.8,1.6400000000000001,0.015,0.62,52,1038,755,0,0,-9.5,52,1038,0,755,0.263,11.450000000000001,47.37,0.87,0.12,789,0.5,328,0.9
+2023,10,9,13,0,22.1,1.6300000000000001,0.014,0.62,52,1033,732,0,0,-10.100000000000001,52,1033,0,732,0.263,10.74,48.82,0.87,0.12,789,0.5,326,0.9
+2023,10,9,13,30,22.1,1.6300000000000001,0.014,0.62,53,1020,693,0,0,-10.100000000000001,53,1020,0,693,0.262,10.74,51.160000000000004,0.88,0.12,789,0.5,323,1
+2023,10,9,14,0,22.1,1.07,0.02,0.62,56,1002,641,0,0,-10.5,56,1002,0,641,0.262,10.36,54.27,0.89,0.12,788,0.5,321,1
+2023,10,9,14,30,21.900000000000002,1.07,0.02,0.62,54,982,574,0,0,-10.5,54,982,0,574,0.262,10.49,58.02,0.89,0.12,788,0.5,319,1.1
+2023,10,9,15,0,21.6,1.07,0.02,0.62,51,954,494,0,0,-10.8,51,954,0,494,0.263,10.44,62.300000000000004,0.89,0.12,788,0.5,317,1.1
+2023,10,9,15,30,21.1,1.07,0.02,0.62,47,915,405,0,0,-10.8,47,915,0,405,0.262,10.77,66.99,0.89,0.12,788,0.5,317,1
+2023,10,9,16,0,20.6,1.07,0.02,0.62,43,858,308,0,0,-10.600000000000001,43,858,0,308,0.262,11.25,71.99,0.89,0.12,787,0.5,317,0.9
+2023,10,9,16,30,19.3,1.07,0.02,0.62,38,770,208,0,0,-10.600000000000001,38,770,0,208,0.262,12.19,77.23,0.89,0.12,787,0.5,313,0.6000000000000001
+2023,10,9,17,0,18.1,1.08,0.02,0.62,30,619,109,0,0,-6.4,30,619,0,109,0.262,18.32,82.63,0.89,0.12,787,0.5,309,0.2
+2023,10,9,17,30,17.2,1.08,0.02,0.62,17,282,27,0,0,-6.4,17,282,0,27,0.263,19.38,88.06,0.89,0.12,787,0.5,239,0.2
+2023,10,9,18,0,16.3,1.09,0.019,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.263,17.86,93.95,0.89,0.12,787,0.5,170,0.2
+2023,10,9,18,30,15.700000000000001,1.09,0.019,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.263,18.56,99.64,0.89,0.12,787,0.5,169,0.4
+2023,10,9,19,0,15.100000000000001,1.1,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.263,18.400000000000002,105.34,0.89,0.12,787,0.5,168,0.5
+2023,10,9,19,30,14.4,1.1,0.019,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.263,19.25,111,0.89,0.12,787,0.5,180,0.6000000000000001
+2023,10,9,20,0,13.8,1.12,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.263,19.830000000000002,116.57000000000001,0.89,0.12,787,0.5,192,0.7000000000000001
+2023,10,9,20,30,13.3,1.12,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.262,20.490000000000002,122,0.89,0.12,787,0.5,205,0.8
+2023,10,9,21,0,12.700000000000001,1.1400000000000001,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.262,20.71,127.2,0.89,0.12,787,0.5,218,1
+2023,10,9,21,30,12,1.1400000000000001,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.262,21.68,132.09,0.89,0.12,787,0.5,225,1
+2023,10,9,22,0,11.3,1.17,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.261,22.650000000000002,136.53,0.89,0.12,787,0.5,232,1.1
+2023,10,9,22,30,10.700000000000001,1.17,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.261,23.57,140.35,0.89,0.12,787,0.5,235,1.2000000000000002
+2023,10,9,23,0,10,1.2,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.261,24.32,143.35,0.89,0.12,786,0.5,238,1.2000000000000002
+2023,10,9,23,30,9.5,1.2,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.261,25.14,145.31,0.89,0.12,786,0.5,238,1.3
+2023,10,10,0,0,8.9,1.24,0.019,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.262,25.92,146.03,0.89,0.12,786,0.5,239,1.3
+2023,10,10,0,30,8.4,1.24,0.019,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.262,26.810000000000002,145.44,0.89,0.12,786,0.5,238,1.3
+2023,10,10,1,0,7.800000000000001,1.29,0.019,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.262,27.68,143.6,0.89,0.12,786,0.5,237,1.3
+2023,10,10,1,30,7.5,1.29,0.019,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.263,28.25,140.69,0.89,0.12,786,0.5,231,1.2000000000000002
+2023,10,10,2,0,7.1000000000000005,1.35,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.263,28.900000000000002,136.94,0.89,0.12,786,0.5,226,1.2000000000000002
+2023,10,10,2,30,6.800000000000001,1.35,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.264,29.5,132.56,0.89,0.12,786,0.5,215,1.2000000000000002
+2023,10,10,3,0,6.5,1.42,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.265,30.21,127.71000000000001,0.89,0.12,785,0.6000000000000001,205,1.2000000000000002
+2023,10,10,3,30,6.1000000000000005,1.42,0.02,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.266,31.05,122.54,0.89,0.12,785,0.6000000000000001,198,1.3
+2023,10,10,4,0,5.7,1.48,0.02,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.267,32.47,117.14,0.89,0.12,785,0.6000000000000001,190,1.3
+2023,10,10,4,30,5.4,1.48,0.02,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.268,33.15,111.59,0.89,0.12,785,0.6000000000000001,185,1.4000000000000001
+2023,10,10,5,0,5.1000000000000005,1.51,0.021,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.269,34.980000000000004,105.94,0.9,0.12,785,0.6000000000000001,180,1.4000000000000001
+2023,10,10,5,30,5,1.51,0.021,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.269,35.22,100.25,0.9,0.12,785,0.7000000000000001,178,1.4000000000000001
+2023,10,10,6,0,4.800000000000001,1.52,0.024,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.27,37.34,94.56,0.91,0.12,785,0.7000000000000001,176,1.5
+2023,10,10,6,30,6.300000000000001,1.52,0.024,0.62,15,207,20,0,0,-8.6,15,207,0,20,0.271,33.660000000000004,88.64,0.91,0.12,785,0.7000000000000001,174,1.5
+2023,10,10,7,0,7.800000000000001,1.52,0.027,0.62,30,563,96,0,0,-7,30,563,0,96,0.272,34.230000000000004,83.25,0.92,0.12,786,0.7000000000000001,172,1.6
+2023,10,10,7,30,9.9,1.52,0.027,0.62,39,718,190,0,5,-7,75,201,0,117,0.272,29.71,77.86,0.92,0.12,786,0.8,177,2.1
+2023,10,10,8,0,11.9,1.51,0.032,0.62,48,808,289,0,5,-7.1000000000000005,113,10,4,116,0.272,25.85,72.62,0.92,0.12,786,0.8,182,2.6
+2023,10,10,8,30,14,1.51,0.032,0.62,54,865,383,0,5,-7.1000000000000005,184,119,0,229,0.272,22.54,67.61,0.93,0.12,786,0.9,194,3.2
+2023,10,10,9,0,16.2,1.5,0.039,0.62,59,901,469,2,8,-6.2,175,288,29,306,0.272,20.91,62.92,0.93,0.12,786,0.9,206,3.7
+2023,10,10,9,30,17.5,1.5,0.039,0.62,65,924,546,1,3,-6.2,213,426,36,435,0.271,19.23,58.63,0.9400000000000001,0.12,785,1,211,4.2
+2023,10,10,10,0,18.8,1.47,0.051000000000000004,0.62,71,936,610,0,0,-5.300000000000001,71,936,0,610,0.27,19.06,54.85,0.9500000000000001,0.12,785,1,216,4.6000000000000005
+2023,10,10,10,30,19.200000000000003,1.47,0.051000000000000004,0.62,73,950,662,0,0,-5.300000000000001,73,950,0,662,0.27,18.59,51.71,0.9500000000000001,0.12,785,1.1,217,4.7
+2023,10,10,11,0,19.700000000000003,1.44,0.053,0.62,76,958,700,1,0,-4,166,718,11,634,0.269,19.86,49.32,0.9500000000000001,0.12,785,1.1,218,4.9
+2023,10,10,11,30,19.900000000000002,1.44,0.053,0.62,77,962,723,0,5,-4,248,509,0,590,0.268,19.59,47.82,0.9500000000000001,0.12,784,1.2000000000000002,216,4.9
+2023,10,10,12,0,20.1,1.46,0.053,0.62,77,962,730,0,5,-2.6,314,276,0,501,0.268,21.490000000000002,47.29,0.9500000000000001,0.12,784,1.2000000000000002,215,4.9
+2023,10,10,12,30,20.3,1.46,0.053,0.62,75,964,723,0,8,-2.6,286,395,0,552,0.267,21.23,47.76,0.9400000000000001,0.12,784,1.2000000000000002,214,4.9
+2023,10,10,13,0,20.5,1.52,0.045,0.62,72,962,701,0,0,-1.6,175,673,0,615,0.266,22.57,49.2,0.9400000000000001,0.12,783,1.2000000000000002,213,4.800000000000001
+2023,10,10,13,30,20.6,1.52,0.045,0.62,69,955,663,0,0,-1.6,176,661,0,587,0.265,22.43,51.53,0.9400000000000001,0.12,783,1.2000000000000002,214,4.7
+2023,10,10,14,0,20.8,1.57,0.038,0.62,65,945,612,0,0,-1.3,65,945,0,612,0.264,22.61,54.64,0.93,0.12,782,1.2000000000000002,215,4.5
+2023,10,10,14,30,20.700000000000003,1.57,0.038,0.62,63,924,547,0,0,-1.3,63,924,0,547,0.263,22.75,58.38,0.93,0.12,782,1.2000000000000002,215,4.3
+2023,10,10,15,0,20.6,1.57,0.037,0.62,59,895,470,0,0,-1.6,59,895,0,470,0.262,22.400000000000002,62.64,0.93,0.12,782,1.1,216,4.2
+2023,10,10,15,30,20.200000000000003,1.57,0.037,0.62,55,850,383,0,0,-1.6,55,850,0,383,0.261,22.93,67.32000000000001,0.93,0.12,781,1.1,216,4
+2023,10,10,16,0,19.700000000000003,1.54,0.04,0.62,50,785,289,0,0,-2.1,50,785,0,289,0.26,22.900000000000002,72.31,0.9400000000000001,0.12,781,1.1,215,3.8000000000000003
+2023,10,10,16,30,17.7,1.54,0.04,0.62,44,682,191,0,0,-2.1,56,573,0,180,0.26,25.94,77.54,0.9400000000000001,0.12,781,1.1,213,2.7
+2023,10,10,17,0,15.8,1.51,0.047,0.62,33,508,96,0,0,-1.4000000000000001,35,491,0,95,0.259,30.84,82.93,0.9500000000000001,0.12,781,1.1,211,1.6
+2023,10,10,17,30,14.3,1.51,0.047,0.62,15,176,20,0,0,-1.4000000000000001,15,176,4,20,0.258,33.95,88.34,0.9500000000000001,0.12,781,1.2000000000000002,207,1.5
+2023,10,10,18,0,12.8,1.46,0.059000000000000004,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.258,36.79,94.24,0.96,0.12,781,1.2000000000000002,203,1.4000000000000001
+2023,10,10,18,30,12.5,1.46,0.059000000000000004,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.257,37.52,99.94,0.96,0.12,781,1.2000000000000002,202,1.4000000000000001
+2023,10,10,19,0,12.100000000000001,1.3800000000000001,0.076,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.256,38.5,105.64,0.96,0.12,781,1.2000000000000002,200,1.4000000000000001
+2023,10,10,19,30,12.100000000000001,1.3800000000000001,0.076,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.255,38.5,111.3,0.97,0.12,781,1.3,201,1.5
+2023,10,10,20,0,12,1.31,0.101,0.62,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.254,39.37,116.88,0.97,0.12,781,1.3,202,1.6
+2023,10,10,20,30,12,1.31,0.101,0.62,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.254,39.32,122.31,0.97,0.12,780,1.4000000000000001,202,1.8
+2023,10,10,21,0,11.9,1.31,0.116,0.62,0,0,0,0,8,-1,0,0,0,0,0.253,40.910000000000004,127.52,0.97,0.12,780,1.4000000000000001,202,1.9000000000000001
+2023,10,10,21,30,11.700000000000001,1.31,0.116,0.62,0,0,0,0,8,-1,0,0,0,0,0.253,41.45,132.42000000000002,0.97,0.12,780,1.5,201,1.9000000000000001
+2023,10,10,22,0,11.5,1.35,0.117,0.62,0,0,0,0,5,-0.30000000000000004,0,0,0,0,0.253,44.02,136.88,0.96,0.12,780,1.5,199,2
+2023,10,10,22,30,11.200000000000001,1.35,0.117,0.62,0,0,0,0,8,-0.30000000000000004,0,0,0,0,0.252,44.9,140.72,0.96,0.12,780,1.5,198,2.1
+2023,10,10,23,0,10.9,1.41,0.117,0.62,0,0,0,0,5,0.30000000000000004,0,0,0,0,0.252,47.800000000000004,143.73,0.96,0.12,779,1.4000000000000001,197,2.1
+2023,10,10,23,30,10.5,1.41,0.117,0.62,0,0,0,0,5,0.30000000000000004,0,0,0,0,0.251,49.09,145.69,0.96,0.12,779,1.4000000000000001,197,2.2
+2023,10,11,0,0,10.100000000000001,1.46,0.111,0.62,0,0,0,0,4,0.5,0,0,0,0,0.251,51.5,146.41,0.96,0.12,779,1.4000000000000001,198,2.3000000000000003
+2023,10,11,0,30,9.8,1.46,0.111,0.62,0,0,0,0,5,0.5,0,0,0,0,0.25,52.550000000000004,145.8,0.9500000000000001,0.12,779,1.4000000000000001,200,2.3000000000000003
+2023,10,11,1,0,9.5,1.45,0.108,0.62,0,0,0,0,5,0.5,0,0,0,0,0.25,53.300000000000004,143.93,0.9500000000000001,0.12,778,1.3,202,2.2
+2023,10,11,1,30,9.3,1.45,0.108,0.62,0,0,0,0,5,0.5,0,0,0,0,0.249,54.02,141,0.9500000000000001,0.12,778,1.3,204,2.2
+2023,10,11,2,0,9.200000000000001,1.42,0.10200000000000001,0.62,0,0,0,0,5,0.2,0,0,0,0,0.249,53.370000000000005,137.22,0.9500000000000001,0.12,778,1.3,207,2.1
+2023,10,11,2,30,8.9,1.42,0.10200000000000001,0.62,0,0,0,0,4,0.2,0,0,0,0,0.249,54.46,132.81,0.9500000000000001,0.12,778,1.3,210,1.9000000000000001
+2023,10,11,3,0,8.6,1.41,0.085,0.62,0,0,0,0,4,-0.2,0,0,0,0,0.249,54.06,127.95,0.9500000000000001,0.12,777,1.2000000000000002,213,1.8
+2023,10,11,3,30,8.4,1.41,0.085,0.62,0,0,0,0,5,-0.2,0,0,0,0,0.249,54.870000000000005,122.76,0.9500000000000001,0.12,778,1.2000000000000002,216,1.7000000000000002
+2023,10,11,4,0,8.1,1.36,0.077,0.62,0,0,0,0,4,-0.5,0,0,0,0,0.248,54.47,117.35000000000001,0.9500000000000001,0.12,778,1.2000000000000002,218,1.5
+2023,10,11,4,30,8.1,1.36,0.077,0.62,0,0,0,0,5,-0.5,0,0,0,0,0.249,54.47,111.79,0.9500000000000001,0.12,778,1.2000000000000002,218,1.6
+2023,10,11,5,0,8,1.32,0.07,0.62,0,0,0,0,5,-0.9,0,0,0,0,0.249,53.410000000000004,106.14,0.9500000000000001,0.12,778,1.2000000000000002,218,1.6
+2023,10,11,5,30,7.7,1.32,0.07,0.62,0,0,0,0,3,-0.9,0,0,0,0,0.25,54.44,100.45,0.9400000000000001,0.12,777,1.2000000000000002,219,1.7000000000000002
+2023,10,11,6,0,7.4,1.27,0.062,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.251,54.410000000000004,94.76,0.9400000000000001,0.12,777,1.1,220,1.7000000000000002
+2023,10,11,6,30,8.4,1.27,0.062,0.62,14,136,17,2,0,-1.2000000000000002,12,63,32,13,0.252,50.84,88.83,0.9400000000000001,0.12,777,1.1,219,2.2
+2023,10,11,7,0,9.3,1.22,0.057,0.62,34,458,86,1,0,-1.4000000000000001,37,409,14,84,0.252,47.26,83.46000000000001,0.9400000000000001,0.12,777,1.1,218,2.6
+2023,10,11,7,30,10.700000000000001,1.22,0.057,0.62,47,640,179,0,0,-1.4000000000000001,66,313,0,131,0.254,43.050000000000004,78.07000000000001,0.9400000000000001,0.12,777,1.1,221,3.1
+2023,10,11,8,0,12.100000000000001,1.18,0.056,0.62,55,750,276,2,5,-1.7000000000000002,107,13,36,111,0.255,38.4,72.85000000000001,0.9400000000000001,0.12,777,1,224,3.6
+2023,10,11,8,30,13.3,1.18,0.056,0.62,62,821,371,3,8,-1.7000000000000002,175,115,39,218,0.256,35.51,67.86,0.9400000000000001,0.12,777,1,225,3.9000000000000004
+2023,10,11,9,0,14.5,1.16,0.055,0.62,66,871,459,4,8,-2.3000000000000003,135,54,54,159,0.256,31.330000000000002,63.18,0.93,0.12,777,1,226,4.2
+2023,10,11,9,30,15.4,1.16,0.055,0.62,69,906,537,4,8,-2.3000000000000003,122,8,71,126,0.257,29.54,58.910000000000004,0.93,0.12,776,1,224,4.7
+2023,10,11,10,0,16.2,1.16,0.053,0.62,71,932,604,2,8,-2.9000000000000004,162,231,21,294,0.257,26.84,55.15,0.93,0.12,776,1,222,5.1000000000000005
+2023,10,11,10,30,16.8,1.16,0.053,0.62,75,947,658,1,8,-2.9000000000000004,139,44,18,166,0.258,25.84,52.03,0.93,0.12,776,1,222,5.6000000000000005
+2023,10,11,11,0,17.5,1.1300000000000001,0.057,0.62,77,956,696,0,8,-3.1,162,16,0,172,0.258,24.36,49.67,0.9400000000000001,0.12,776,1,222,6
+2023,10,11,11,30,17.6,1.1300000000000001,0.057,0.62,82,955,719,0,6,-3.1,101,3,0,103,0.26,24.17,48.19,0.9400000000000001,0.12,775,1,223,6.300000000000001
+2023,10,11,12,0,17.8,1.09,0.073,0.62,88,946,725,0,6,-2.7,42,0,0,42,0.261,24.71,47.67,0.9500000000000001,0.12,775,1,224,6.6000000000000005
+2023,10,11,12,30,17.3,1.09,0.073,0.62,89,938,715,0,6,-2.7,53,0,0,53,0.261,25.5,48.14,0.9500000000000001,0.12,775,1.1,228,6.7
+2023,10,11,13,0,16.8,1.08,0.083,0.62,92,923,690,0,8,-1.7000000000000002,116,9,0,122,0.262,28.19,49.58,0.96,0.12,775,1.1,232,6.800000000000001
+2023,10,11,13,30,16.1,1.08,0.083,0.62,88,914,652,0,7,-1.7000000000000002,162,20,0,174,0.263,29.46,51.910000000000004,0.96,0.12,775,1.1,239,6.7
+2023,10,11,14,0,15.4,1.16,0.076,0.62,83,900,599,0,7,-1,191,98,0,247,0.265,32.480000000000004,55,0.96,0.12,775,1.1,246,6.6000000000000005
+2023,10,11,14,30,14.600000000000001,1.16,0.076,0.62,77,880,534,0,8,-1,209,452,0,444,0.266,34.19,58.730000000000004,0.96,0.12,775,1.1,258,6.300000000000001
+2023,10,11,15,0,13.8,1.19,0.065,0.62,71,854,459,0,6,-1.4000000000000001,174,86,0,213,0.268,35.15,62.980000000000004,0.9500000000000001,0.12,775,1.1,269,6
+2023,10,11,15,30,12.8,1.19,0.065,0.62,63,816,373,0,6,-1.4000000000000001,66,45,0,83,0.268,37.51,67.64,0.9500000000000001,0.12,775,1.1,282,5.800000000000001
+2023,10,11,16,0,11.8,1.22,0.05,0.62,54,761,281,0,4,-1.5,130,129,0,169,0.269,39.57,72.62,0.9400000000000001,0.12,776,1,294,5.5
+2023,10,11,16,30,10.600000000000001,1.22,0.05,0.62,45,662,184,0,0,-1.5,60,414,0,147,0.27,42.83,77.84,0.9400000000000001,0.12,776,1,305,5.1000000000000005
+2023,10,11,17,0,9.3,1.19,0.044,0.62,33,496,91,2,0,-0.9,40,383,29,85,0.27,48.96,83.23,0.9400000000000001,0.12,777,1,316,4.7
+2023,10,11,17,30,8.200000000000001,1.19,0.044,0.62,14,162,18,4,7,-0.9,12,46,57,13,0.271,52.730000000000004,88.61,0.9400000000000001,0.12,777,1,323,4.5
+2023,10,11,18,0,7.1000000000000005,1.1400000000000001,0.042,0.62,0,0,0,0,7,0,0,0,0,0,0.272,60.83,94.53,0.9400000000000001,0.12,778,1,330,4.2
+2023,10,11,18,30,6.5,1.1400000000000001,0.042,0.62,0,0,0,0,6,0,0,0,0,0,0.273,63.39,100.23,0.9400000000000001,0.12,778,1,329,4.1000000000000005
+2023,10,11,19,0,5.800000000000001,1.07,0.042,0.62,0,0,0,0,6,0.5,0,0,0,0,0.274,68.78,105.93,0.9400000000000001,0.12,778,1,328,4.1000000000000005
+2023,10,11,19,30,5.300000000000001,1.07,0.042,0.62,0,0,0,0,6,0.5,0,0,0,0,0.274,71.21000000000001,111.60000000000001,0.9400000000000001,0.12,778,1,327,3.8000000000000003
+2023,10,11,20,0,4.9,1.02,0.045,0.62,0,0,0,0,6,0.7000000000000001,0,0,0,0,0.275,74,117.18,0.9400000000000001,0.12,779,1.1,325,3.6
+2023,10,11,20,30,4.6000000000000005,1.02,0.045,0.62,0,0,0,0,6,0.7000000000000001,0,0,0,0,0.275,75.57000000000001,122.62,0.9400000000000001,0.12,779,1.1,323,3.3000000000000003
+2023,10,11,21,0,4.3,1,0.047,0.62,0,0,0,0,6,0.6000000000000001,0,0,0,0,0.275,77.07000000000001,127.84,0.9400000000000001,0.12,779,1.1,322,3.1
+2023,10,11,21,30,4,1,0.047,0.62,0,0,0,0,9,0.6000000000000001,0,0,0,0,0.275,78.71000000000001,132.75,0.9400000000000001,0.12,779,1.1,319,3
+2023,10,11,22,0,3.8000000000000003,1,0.047,0.62,0,0,0,0,6,0.6000000000000001,0,0,0,0,0.275,79.81,137.22,0.9400000000000001,0.12,779,1.1,316,2.9000000000000004
+2023,10,11,22,30,3.5,1,0.047,0.62,0,0,0,0,6,0.6000000000000001,0,0,0,0,0.276,81.4,141.08,0.9400000000000001,0.12,778,1.1,312,2.9000000000000004
+2023,10,11,23,0,3.3000000000000003,1,0.047,0.62,0,0,0,0,6,0.6000000000000001,0,0,0,0,0.276,82.53,144.11,0.9400000000000001,0.12,778,1,308,2.8000000000000003
+2023,10,11,23,30,3,1,0.047,0.62,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.276,84.29,146.07,0.9400000000000001,0.12,778,1,304,2.9000000000000004
+2023,10,12,0,0,2.8000000000000003,0.98,0.048,0.62,0,0,0,0,7,0.5,0,0,0,0,0.276,84.72,146.79,0.9400000000000001,0.12,778,1,300,2.9000000000000004
+2023,10,12,0,30,2.6,0.98,0.048,0.62,0,0,0,0,7,0.5,0,0,0,0,0.276,85.93,146.16,0.9400000000000001,0.12,778,1,297,2.9000000000000004
+2023,10,12,1,0,2.5,0.96,0.046,0.62,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.276,85.18,144.27,0.9400000000000001,0.12,778,1,293,2.8000000000000003
+2023,10,12,1,30,2.4000000000000004,0.96,0.046,0.62,0,0,0,0,6,0.30000000000000004,0,0,0,0,0.276,85.79,141.3,0.9400000000000001,0.12,778,1,292,2.7
+2023,10,12,2,0,2.3000000000000003,0.9400000000000001,0.044,0.62,0,0,0,0,7,0,0,0,0,0,0.276,84.85000000000001,137.5,0.9400000000000001,0.12,778,1,290,2.6
+2023,10,12,2,30,2.2,0.9400000000000001,0.044,0.62,0,0,0,0,7,0,0,0,0,0,0.276,85.46000000000001,133.06,0.9400000000000001,0.12,778,1,290,2.5
+2023,10,12,3,0,2.1,0.93,0.042,0.62,0,0,0,0,7,-0.1,0,0,0,0,0.277,85.2,128.18,0.9400000000000001,0.12,778,1,289,2.5
+2023,10,12,3,30,2,0.93,0.042,0.62,0,0,0,0,8,-0.1,0,0,0,0,0.276,85.81,122.98,0.9400000000000001,0.12,778,1,288,2.5
+2023,10,12,4,0,1.8,0.9400000000000001,0.039,0.62,0,0,0,0,4,-0.2,0,0,0,0,0.276,86.38,117.55,0.9400000000000001,0.12,778,1,286,2.5
+2023,10,12,4,30,1.7000000000000002,0.9400000000000001,0.039,0.62,0,0,0,0,8,-0.2,0,0,0,0,0.276,87.11,111.98,0.9400000000000001,0.12,779,1,287,2.6
+2023,10,12,5,0,1.6,0.96,0.037,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.275,86.4,106.33,0.9400000000000001,0.12,779,1,287,2.7
+2023,10,12,5,30,1.6,0.96,0.037,0.62,0,0,0,0,6,-0.4,0,0,0,0,0.274,86.4,100.64,0.9400000000000001,0.12,779,1,291,2.8000000000000003
+2023,10,12,6,0,1.6,1,0.035,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.274,85.99,94.95,0.9400000000000001,0.12,779,1,294,2.9000000000000004
+2023,10,12,6,30,2,1,0.035,0.62,12,151,15,5,7,-0.5,3,0,71,3,0.273,83.57000000000001,89,0.9400000000000001,0.12,779,1,292,3.1
+2023,10,12,7,0,2.3000000000000003,1.06,0.031,0.62,29,512,86,5,7,-0.5,18,0,71,18,0.273,81.75,83.66,0.9400000000000001,0.12,780,1,290,3.4000000000000004
+2023,10,12,7,30,2.9000000000000004,1.06,0.031,0.62,40,689,180,0,7,-0.5,50,2,0,50,0.272,78.35000000000001,78.29,0.9400000000000001,0.12,780,1,289,3.9000000000000004
+2023,10,12,8,0,3.5,1.1,0.031,0.62,46,792,277,0,7,-0.8,44,1,0,44,0.272,73.68,73.07000000000001,0.9400000000000001,0.12,780,1,289,4.3
+2023,10,12,8,30,4,1.1,0.031,0.62,52,855,371,0,7,-0.8,48,0,14,48,0.272,71.13,68.1,0.9400000000000001,0.12,780,1,291,4.7
+2023,10,12,9,0,4.5,1.12,0.032,0.62,56,898,458,0,7,-1,103,3,0,104,0.272,67.29,63.440000000000005,0.9400000000000001,0.12,780,1,293,5.2
+2023,10,12,9,30,4.800000000000001,1.12,0.032,0.62,60,930,536,0,7,-1,108,2,0,109,0.271,65.89,59.19,0.9400000000000001,0.12,780,1.1,295,5.2
+2023,10,12,10,0,5.1000000000000005,1.1400000000000001,0.03,0.62,61,954,602,0,7,-1,112,1,0,113,0.27,64.93,55.46,0.9400000000000001,0.12,780,1.1,296,5.300000000000001
+2023,10,12,10,30,5.2,1.1400000000000001,0.03,0.62,64,967,655,0,6,-0.9,106,1,0,107,0.269,64.56,52.36,0.9400000000000001,0.12,781,1.1,299,5.4
+2023,10,12,11,0,5.300000000000001,1.07,0.034,0.62,67,974,693,0,6,-0.6000000000000001,123,1,0,124,0.269,65.63,50.02,0.9400000000000001,0.12,781,1.1,301,5.4
+2023,10,12,11,30,5.2,1.07,0.034,0.62,66,982,716,0,7,-0.6000000000000001,118,0,0,118,0.269,66.09,48.550000000000004,0.93,0.12,781,1.1,304,5.5
+2023,10,12,12,0,5.1000000000000005,1.1300000000000001,0.03,0.62,65,986,724,0,7,-0.30000000000000004,121,0,0,121,0.268,67.92,48.04,0.93,0.12,781,1.1,307,5.6000000000000005
+2023,10,12,12,30,5.1000000000000005,1.1300000000000001,0.03,0.62,64,986,717,0,7,-0.30000000000000004,139,1,0,140,0.268,67.92,48.52,0.93,0.12,781,1.1,311,5.7
+2023,10,12,13,0,5,1.2,0.026000000000000002,0.62,62,983,694,0,7,-0.1,170,3,0,172,0.268,69.4,49.96,0.92,0.12,782,1.1,315,5.800000000000001
+2023,10,12,13,30,5,1.2,0.026000000000000002,0.62,59,974,655,0,7,-0.1,149,2,0,150,0.267,69.4,52.28,0.92,0.12,782,1.1,319,5.7
+2023,10,12,14,0,5,1.25,0.024,0.62,57,960,603,0,7,-0.1,142,17,0,152,0.266,69.81,55.36,0.92,0.12,782,1.1,323,5.6000000000000005
+2023,10,12,14,30,5,1.25,0.024,0.62,56,936,537,0,6,0,120,9,0,125,0.266,69.9,59.08,0.93,0.12,783,1.2000000000000002,328,5.4
+2023,10,12,15,0,4.9,1.24,0.026000000000000002,0.62,54,903,459,0,8,0,176,35,0,192,0.265,70.54,63.32,0.93,0.12,783,1.2000000000000002,333,5.300000000000001
+2023,10,12,15,30,4.7,1.24,0.026000000000000002,0.62,50,860,373,0,8,0,88,5,0,90,0.265,71.62,67.97,0.93,0.12,784,1.1,340,5.2
+2023,10,12,16,0,4.5,1.25,0.027,0.62,45,796,279,0,8,-0.1,12,0,0,12,0.264,72.16,72.94,0.93,0.12,784,1.1,347,5
+2023,10,12,16,30,4,1.25,0.027,0.62,38,696,181,0,8,-0.1,16,0,0,16,0.263,74.82000000000001,78.15,0.92,0.12,785,1.1,175,4.7
+2023,10,12,17,0,3.5,1.28,0.029,0.62,29,523,88,6,7,-0.2,7,0,86,7,0.263,76.68,83.52,0.92,0.12,786,1.1,2,4.4
+2023,10,12,17,30,2.9000000000000004,1.28,0.029,0.62,14,178,17,5,7,-0.2,4,0,71,4,0.263,80,88.88,0.91,0.12,786,1.1,7,4.3
+2023,10,12,18,0,2.4000000000000004,1.34,0.03,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.263,81.84,94.82000000000001,0.9,0.12,787,1.1,11,4.1000000000000005
+2023,10,12,18,30,2,1.34,0.03,0.62,0,0,0,0,8,-0.4,0,0,0,0,0.264,84.2,100.52,0.91,0.12,787,1.1,15,4.4
+2023,10,12,19,0,1.5,1.3800000000000001,0.033,0.62,0,0,0,0,4,-0.7000000000000001,0,0,0,0,0.265,85.21000000000001,106.22,0.91,0.12,788,1,19,4.6000000000000005
+2023,10,12,19,30,1.1,1.3800000000000001,0.033,0.62,0,0,0,0,4,-0.7000000000000001,0,0,0,0,0.267,87.69,111.89,0.91,0.12,788,1,21,4.5
+2023,10,12,20,0,0.6000000000000001,1.4000000000000001,0.034,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.268,88.25,117.48,0.92,0.12,789,1,23,4.4
+2023,10,12,20,30,0.1,1.4000000000000001,0.034,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.269,91.5,122.92,0.92,0.12,789,1,25,4.2
+2023,10,12,21,0,-0.30000000000000004,1.41,0.034,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.27,90.74,128.16,0.93,0.12,789,0.9,26,3.9000000000000004
+2023,10,12,21,30,-0.7000000000000001,1.41,0.034,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.27,93.42,133.08,0.93,0.12,789,0.9,27,3.4000000000000004
+2023,10,12,22,0,-1.2000000000000002,1.4000000000000001,0.032,0.62,0,0,0,0,4,-2,0,0,0,0,0.27,94.12,137.57,0.93,0.12,790,0.9,27,3
+2023,10,12,22,30,-1.5,1.4000000000000001,0.032,0.62,0,0,0,0,4,-2,0,0,0,0,0.271,96.21000000000001,141.44,0.93,0.12,790,0.9,27,2.5
+2023,10,12,23,0,-1.9000000000000001,1.3800000000000001,0.03,0.62,0,0,0,0,4,-2.2,0,0,0,0,0.271,97.5,144.48,0.93,0.12,790,0.9,27,2.1
+2023,10,12,23,30,-2.3000000000000003,1.3800000000000001,0.03,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.271,100,146.45000000000002,0.93,0.12,790,0.9,27,1.9000000000000001
+2023,10,13,0,0,-2.6,1.37,0.028,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.271,100,147.16,0.93,0.12,791,0.9,27,1.6
+2023,10,13,0,30,-2.8000000000000003,1.37,0.028,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.271,100,146.52,0.93,0.12,791,0.9,27,1.5
+2023,10,13,1,0,-3,1.36,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,144.6,0.93,0.12,791,0.9,27,1.5
+2023,10,13,1,30,-3,1.36,0.027,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,141.61,0.93,0.12,791,0.8,26,1.7000000000000002
+2023,10,13,2,0,-3,1.35,0.026000000000000002,0.62,0,0,0,0,0,-3,0,0,0,0,0.271,100,137.77,0.93,0.12,791,0.8,25,1.9000000000000001
+2023,10,13,2,30,-3,1.35,0.026000000000000002,0.62,0,0,0,0,0,-3,0,0,0,0,0.27,100,133.31,0.93,0.12,791,0.8,27,2.1
+2023,10,13,3,0,-3,1.34,0.024,0.62,0,0,0,0,0,-3,0,0,0,0,0.269,100,128.41,0.93,0.12,792,0.7000000000000001,28,2.3000000000000003
+2023,10,13,3,30,-3.1,1.34,0.024,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.268,100,123.19,0.93,0.12,792,0.7000000000000001,32,2.4000000000000004
+2023,10,13,4,0,-3.1,1.33,0.023,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.266,100,117.76,0.93,0.12,792,0.7000000000000001,35,2.5
+2023,10,13,4,30,-3.2,1.33,0.023,0.62,0,0,0,0,4,-3.2,0,0,0,0,0.264,100,112.18,0.93,0.12,792,0.6000000000000001,39,2.5
+2023,10,13,5,0,-3.3000000000000003,1.31,0.021,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.261,100,106.53,0.93,0.12,792,0.6000000000000001,43,2.5
+2023,10,13,5,30,-3.4000000000000004,1.31,0.021,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.259,100,100.83,0.92,0.12,792,0.6000000000000001,46,2.4000000000000004
+2023,10,13,6,0,-3.6,1.31,0.02,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.257,100,95.15,0.92,0.12,793,0.6000000000000001,48,2.3000000000000003
+2023,10,13,6,30,-2.8000000000000003,1.31,0.02,0.62,12,166,14,1,0,-3.2,10,107,14,12,0.256,97.28,89.17,0.92,0.12,793,0.6000000000000001,52,2.6
+2023,10,13,7,0,-2,1.32,0.018000000000000002,0.62,27,571,88,4,4,-3,41,114,50,53,0.254,92.81,83.86,0.92,0.12,793,0.6000000000000001,55,2.9000000000000004
+2023,10,13,7,30,-0.5,1.32,0.018000000000000002,0.62,35,741,183,0,4,-3,96,11,0,98,0.253,83.15,78.5,0.91,0.12,793,0.6000000000000001,60,3.4000000000000004
+2023,10,13,8,0,1,1.34,0.017,0.62,41,840,282,0,0,-3.3000000000000003,104,459,0,236,0.252,72.83,73.3,0.91,0.12,794,0.6000000000000001,64,3.9000000000000004
+2023,10,13,8,30,2.1,1.34,0.017,0.62,44,902,377,0,0,-3.3000000000000003,57,854,0,372,0.252,67.32000000000001,68.34,0.91,0.12,794,0.6000000000000001,65,4
+2023,10,13,9,0,3.2,1.33,0.016,0.62,48,944,466,0,0,-3.8000000000000003,48,944,29,466,0.253,60.26,63.7,0.91,0.12,794,0.6000000000000001,66,4.1000000000000005
+2023,10,13,9,30,4.1000000000000005,1.33,0.016,0.62,49,974,544,0,0,-3.8000000000000003,49,974,0,544,0.253,56.56,59.47,0.91,0.12,794,0.6000000000000001,66,4
+2023,10,13,10,0,5,1.34,0.016,0.62,51,995,611,0,0,-4,51,995,0,611,0.253,52.38,55.76,0.9,0.12,794,0.6000000000000001,66,3.8000000000000003
+2023,10,13,10,30,5.800000000000001,1.34,0.016,0.62,55,1006,665,0,0,-4,55,1006,0,665,0.253,49.49,52.68,0.91,0.12,793,0.6000000000000001,66,3.6
+2023,10,13,11,0,6.6000000000000005,1.04,0.022,0.62,59,1012,705,0,0,-4.2,59,1012,0,705,0.254,45.92,50.36,0.92,0.12,793,0.6000000000000001,66,3.4000000000000004
+2023,10,13,11,30,7.300000000000001,1.04,0.022,0.62,60,1018,729,0,0,-4.2,60,1018,0,729,0.253,43.78,48.910000000000004,0.91,0.12,793,0.6000000000000001,66,3.1
+2023,10,13,12,0,8,1.05,0.02,0.62,59,1018,735,0,0,-4.5,249,529,0,600,0.253,40.87,48.410000000000004,0.91,0.12,793,0.7000000000000001,66,2.9000000000000004
+2023,10,13,12,30,8.4,1.05,0.02,0.62,59,1016,727,0,4,-4.5,353,76,0,403,0.253,39.78,48.9,0.91,0.12,793,0.7000000000000001,67,2.7
+2023,10,13,13,0,8.9,1.07,0.019,0.62,58,1011,703,0,4,-4.800000000000001,300,38,0,324,0.252,37.65,50.34,0.91,0.12,793,0.7000000000000001,67,2.5
+2023,10,13,13,30,9.1,1.07,0.019,0.62,58,997,663,0,4,-4.800000000000001,209,7,0,213,0.252,37.14,52.65,0.91,0.12,793,0.7000000000000001,67,2.4000000000000004
+2023,10,13,14,0,9.3,0.87,0.025,0.62,59,976,609,0,4,-5.1000000000000005,160,0,0,160,0.252,35.800000000000004,55.72,0.92,0.12,793,0.7000000000000001,68,2.2
+2023,10,13,14,30,9.1,0.87,0.025,0.62,57,955,543,0,4,-5.1000000000000005,160,1,0,161,0.251,36.29,59.43,0.92,0.12,793,0.7000000000000001,67,2.2
+2023,10,13,15,0,9,0.89,0.024,0.62,53,925,464,0,4,-5.300000000000001,163,2,0,164,0.251,35.89,63.65,0.92,0.12,793,0.7000000000000001,67,2.2
+2023,10,13,15,30,8.5,0.89,0.024,0.62,49,883,376,0,4,-5.300000000000001,131,2,0,132,0.251,37.13,68.29,0.92,0.12,793,0.7000000000000001,67,2.2
+2023,10,13,16,0,8,0.9,0.024,0.62,45,820,281,0,4,-5.4,121,11,0,124,0.251,38.28,73.25,0.92,0.12,793,0.7000000000000001,67,2.2
+2023,10,13,16,30,6.5,0.9,0.024,0.62,38,719,182,0,4,-5.4,76,5,0,77,0.251,42.410000000000004,78.45,0.92,0.12,793,0.7000000000000001,67,1.7000000000000002
+2023,10,13,17,0,4.9,0.9,0.023,0.62,28,545,87,6,4,-2.9000000000000004,49,6,86,50,0.251,57.13,83.81,0.92,0.12,793,0.7000000000000001,68,1.1
+2023,10,13,17,30,3.6,0.9,0.023,0.62,12,152,14,1,0,-2.9000000000000004,10,80,18,11,0.251,62.57,89.14,0.92,0.12,793,0.6000000000000001,69,1.1
+2023,10,13,18,0,2.2,0.91,0.023,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.251,65.99,95.11,0.92,0.12,794,0.6000000000000001,70,1.1
+2023,10,13,18,30,1.7000000000000002,0.91,0.023,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.251,68.39,100.8,0.92,0.12,794,0.6000000000000001,71,1.2000000000000002
+2023,10,13,19,0,1.2000000000000002,0.93,0.023,0.62,0,0,0,0,0,-4,0,0,0,0,0.25,68.28,106.51,0.92,0.12,794,0.6000000000000001,71,1.2000000000000002
+2023,10,13,19,30,0.8,0.93,0.023,0.62,0,0,0,0,0,-4,0,0,0,0,0.25,70.27,112.18,0.92,0.12,794,0.6000000000000001,72,1.2000000000000002
+2023,10,13,20,0,0.4,0.9500000000000001,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.25,69.9,117.77,0.92,0.12,794,0.6000000000000001,72,1.3
+2023,10,13,20,30,0.1,0.9500000000000001,0.023,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.25,71.43,123.22,0.92,0.12,794,0.6000000000000001,74,1.2000000000000002
+2023,10,13,21,0,-0.2,0.98,0.024,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.251,70.77,128.47,0.92,0.12,794,0.6000000000000001,76,1.2000000000000002
+2023,10,13,21,30,-0.4,0.98,0.024,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.251,71.81,133.41,0.93,0.12,794,0.6000000000000001,78,1.2000000000000002
+2023,10,13,22,0,-0.6000000000000001,1.01,0.026000000000000002,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.252,70.87,137.91,0.93,0.12,794,0.7000000000000001,80,1.2000000000000002
+2023,10,13,22,30,-0.8,1.01,0.026000000000000002,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.252,71.91,141.8,0.93,0.12,794,0.7000000000000001,83,1.1
+2023,10,13,23,0,-0.9,1.03,0.028,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.253,71,144.85,0.93,0.12,794,0.7000000000000001,86,1.1
+2023,10,13,23,30,-0.9,1.03,0.028,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.253,71,146.83,0.93,0.12,794,0.7000000000000001,89,1.1
+2023,10,14,0,0,-1,1.05,0.03,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.254,70.61,147.53,0.93,0.12,794,0.7000000000000001,92,1
+2023,10,14,0,30,-0.7000000000000001,1.05,0.03,0.62,0,0,0,0,8,-5.7,0,0,0,0,0.254,69.17,146.87,0.9400000000000001,0.12,795,0.7000000000000001,98,0.9
+2023,10,14,1,0,-0.5,1.06,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.255,69.19,144.93,0.9400000000000001,0.12,795,0.7000000000000001,103,0.8
+2023,10,14,1,30,-0.30000000000000004,1.06,0.033,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.256,68.19,141.91,0.9400000000000001,0.12,795,0.7000000000000001,110,0.8
+2023,10,14,2,0,0,1.08,0.033,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.256,68.17,138.05,0.9400000000000001,0.12,795,0.8,118,0.7000000000000001
+2023,10,14,2,30,0,1.08,0.033,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.257,68.17,133.56,0.93,0.12,795,0.8,123,0.7000000000000001
+2023,10,14,3,0,0,1.11,0.029,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.257,67.21000000000001,128.64000000000001,0.93,0.12,795,0.7000000000000001,127,0.7000000000000001
+2023,10,14,3,30,-0.2,1.11,0.029,0.62,0,0,0,0,0,-5.4,0,0,29,0,0.258,68.19,123.41,0.92,0.12,795,0.7000000000000001,132,0.7000000000000001
+2023,10,14,4,0,-0.4,1.1300000000000001,0.024,0.62,0,0,0,0,0,-6.1000000000000005,0,0,14,0,0.258,65.22,117.96000000000001,0.92,0.12,795,0.7000000000000001,136,0.8
+2023,10,14,4,30,-0.30000000000000004,1.1300000000000001,0.024,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.259,64.75,112.38,0.91,0.12,795,0.7000000000000001,140,0.7000000000000001
+2023,10,14,5,0,-0.30000000000000004,1.12,0.023,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.259,62.46,106.72,0.91,0.12,795,0.7000000000000001,144,0.7000000000000001
+2023,10,14,5,30,-0.30000000000000004,1.12,0.023,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.259,62.54,101.03,0.92,0.12,796,0.7000000000000001,143,0.6000000000000001
+2023,10,14,6,0,-0.2,1.12,0.025,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.258,61.53,95.35000000000001,0.92,0.12,796,0.7000000000000001,142,0.6000000000000001
+2023,10,14,6,30,0.6000000000000001,1.12,0.025,0.62,11,141,13,0,0,-6.7,11,141,0,13,0.258,58.07,89.35000000000001,0.92,0.12,796,0.7000000000000001,133,0.5
+2023,10,14,7,0,1.4000000000000001,1.11,0.027,0.62,29,525,83,0,0,-5.2,29,525,0,83,0.257,61.480000000000004,84.06,0.92,0.12,796,0.7000000000000001,124,0.4
+2023,10,14,7,30,2.9000000000000004,1.11,0.027,0.62,39,701,176,0,0,-5.2,43,657,0,172,0.257,55.25,78.72,0.92,0.12,796,0.7000000000000001,140,0.5
+2023,10,14,8,0,4.3,1.1,0.03,0.62,47,801,274,0,0,-5.6000000000000005,55,760,0,270,0.256,48.58,73.53,0.93,0.12,797,0.7000000000000001,156,0.6000000000000001
+2023,10,14,8,30,5.9,1.1,0.03,0.62,53,864,368,0,0,-5.6000000000000005,53,864,0,368,0.255,43.47,68.59,0.93,0.12,797,0.7000000000000001,185,0.9
+2023,10,14,9,0,7.6000000000000005,1.07,0.035,0.62,58,904,455,0,0,-5.1000000000000005,94,781,7,437,0.253,40.08,63.97,0.9400000000000001,0.12,797,0.7000000000000001,215,1.2000000000000002
+2023,10,14,9,30,8.3,1.07,0.035,0.62,63,931,532,0,0,-5.1000000000000005,130,742,7,504,0.253,38.22,59.76,0.9400000000000001,0.12,797,0.8,221,1.4000000000000001
+2023,10,14,10,0,9,1.07,0.039,0.62,67,950,597,0,0,-5,154,729,7,561,0.252,36.82,56.06,0.9400000000000001,0.12,797,0.8,228,1.5
+2023,10,14,10,30,9.4,1.07,0.039,0.62,67,970,651,0,0,-5,75,951,0,647,0.252,35.84,53.01,0.9400000000000001,0.12,797,0.8,229,1.6
+2023,10,14,11,0,9.8,1.24,0.032,0.62,66,984,689,0,0,-5,211,648,0,621,0.252,34.94,50.71,0.9400000000000001,0.12,797,0.9,231,1.6
+2023,10,14,11,30,10.200000000000001,1.24,0.032,0.62,66,990,712,0,5,-5,314,444,0,604,0.253,34.02,49.27,0.93,0.12,797,0.9,229,1.6
+2023,10,14,12,0,10.700000000000001,1.29,0.029,0.62,65,994,720,0,5,-5,292,468,0,600,0.253,32.89,48.79,0.93,0.12,797,0.9,228,1.7000000000000002
+2023,10,14,12,30,11.4,1.29,0.029,0.62,64,994,712,0,8,-5,267,474,0,576,0.253,31.400000000000002,49.28,0.92,0.12,797,0.9,227,1.7000000000000002
+2023,10,14,13,0,12.100000000000001,1.31,0.024,0.62,60,991,688,0,8,-5.1000000000000005,175,655,0,590,0.253,29.78,50.71,0.92,0.12,797,0.9,226,1.8
+2023,10,14,13,30,12.4,1.31,0.024,0.62,59,982,650,0,0,-5.1000000000000005,194,633,0,575,0.252,29.2,53.02,0.92,0.12,797,0.9,227,1.9000000000000001
+2023,10,14,14,0,12.8,1.26,0.024,0.62,58,968,598,0,0,-5.300000000000001,154,707,0,549,0.251,27.92,56.08,0.92,0.12,797,0.9,227,1.9000000000000001
+2023,10,14,14,30,12.700000000000001,1.26,0.024,0.62,55,948,532,0,0,-5.300000000000001,154,643,0,478,0.25,28.1,59.77,0.91,0.12,797,0.9,227,1.9000000000000001
+2023,10,14,15,0,12.600000000000001,1.3,0.021,0.62,51,919,454,0,0,-5.5,51,919,0,454,0.249,27.82,63.99,0.91,0.12,797,0.9,227,2
+2023,10,14,15,30,12.100000000000001,1.3,0.021,0.62,47,876,366,0,0,-5.5,47,876,0,366,0.249,28.75,68.61,0.91,0.12,797,0.9,225,1.9000000000000001
+2023,10,14,16,0,11.700000000000001,1.3,0.02,0.62,42,812,272,0,0,-5.4,42,812,0,272,0.248,29.79,73.56,0.91,0.12,797,0.9,223,1.8
+2023,10,14,16,30,10.100000000000001,1.3,0.02,0.62,35,710,174,0,0,-5.4,35,710,0,174,0.247,33.12,78.75,0.91,0.12,797,0.9,210,1.2000000000000002
+2023,10,14,17,0,8.4,1.29,0.022,0.62,28,530,82,1,0,-2.3000000000000003,30,473,14,79,0.247,46.88,84.10000000000001,0.91,0.12,797,0.9,196,0.6000000000000001
+2023,10,14,17,30,7.4,1.29,0.022,0.62,11,146,13,1,0,-2.3000000000000003,9,88,14,10,0.247,50.17,89.4,0.92,0.12,797,0.9,178,0.7000000000000001
+2023,10,14,18,0,6.300000000000001,1.24,0.025,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.246,48.35,95.4,0.92,0.12,797,0.9,159,0.8
+2023,10,14,18,30,6,1.24,0.025,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.245,49.36,101.09,0.92,0.12,797,0.9,151,0.9
+2023,10,14,19,0,5.7,1.22,0.023,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.244,50.19,106.79,0.92,0.12,797,0.9,143,0.9
+2023,10,14,19,30,5.300000000000001,1.22,0.023,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.242,51.6,112.46000000000001,0.92,0.12,797,0.9,135,0.9
+2023,10,14,20,0,4.9,1.23,0.02,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.241,50.22,118.06,0.91,0.12,798,0.9,127,0.9
+2023,10,14,20,30,4.7,1.23,0.02,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.241,50.92,123.52,0.91,0.12,798,0.9,119,0.9
+2023,10,14,21,0,4.4,1.24,0.02,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.24,50.26,128.78,0.91,0.12,798,0.9,110,0.8
+2023,10,14,21,30,4.4,1.24,0.02,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.24,50.26,133.73,0.91,0.12,798,0.9,104,0.7000000000000001
+2023,10,14,22,0,4.3,1.24,0.019,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.241,49.59,138.25,0.91,0.12,798,0.9,97,0.7000000000000001
+2023,10,14,22,30,4.2,1.24,0.019,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.241,49.94,142.15,0.91,0.12,798,0.9,96,0.6000000000000001
+2023,10,14,23,0,4,1.24,0.019,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.241,50.120000000000005,145.22,0.91,0.12,798,0.9,95,0.5
+2023,10,14,23,30,3.9000000000000004,1.24,0.019,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.241,50.53,147.21,0.91,0.12,799,0.9,87,0.5
+2023,10,15,0,0,3.7,1.24,0.019,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.241,50.620000000000005,147.91,0.91,0.12,799,0.9,79,0.5
+2023,10,15,0,30,3.6,1.24,0.019,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.241,50.97,147.23,0.91,0.12,799,0.9,79,0.5
+2023,10,15,1,0,3.4000000000000004,1.26,0.019,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.24,51.120000000000005,145.26,0.91,0.12,799,0.9,79,0.4
+2023,10,15,1,30,3.3000000000000003,1.26,0.019,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.24,51.480000000000004,142.21,0.91,0.12,799,0.9,89,0.4
+2023,10,15,2,0,3.1,1.26,0.019,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.23900000000000002,51.870000000000005,138.32,0.91,0.12,799,0.9,98,0.30000000000000004
+2023,10,15,2,30,2.9000000000000004,1.26,0.019,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.23900000000000002,52.6,133.81,0.91,0.12,799,0.9,104,0.30000000000000004
+2023,10,15,3,0,2.7,1.27,0.019,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.23900000000000002,53.01,128.87,0.91,0.12,799,0.9,109,0.30000000000000004
+2023,10,15,3,30,2.5,1.27,0.019,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.24,53.84,123.62,0.91,0.12,800,1,100,0.2
+2023,10,15,4,0,2.3000000000000003,1.28,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.241,54.03,118.17,0.91,0.12,800,1,92,0.2
+2023,10,15,4,30,2.1,1.28,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.242,54.800000000000004,112.58,0.91,0.12,800,1,69,0.2
+2023,10,15,5,0,2,1.28,0.019,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.243,54.96,106.92,0.91,0.12,800,1,47,0.2
+2023,10,15,5,30,1.7000000000000002,1.28,0.019,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.244,56.15,101.22,0.91,0.12,800,1,45,0.30000000000000004
+2023,10,15,6,0,1.5,1.26,0.019,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.245,56.99,95.54,0.92,0.12,800,1,43,0.30000000000000004
+2023,10,15,6,30,2.2,1.26,0.019,0.62,11,143,12,0,0,-6.1000000000000005,11,143,0,12,0.245,54.21,89.53,0.92,0.12,800,1,39,0.30000000000000004
+2023,10,15,7,0,2.9000000000000004,1.26,0.019,0.62,27,524,79,0,0,-4.3,27,524,0,79,0.245,59.21,84.27,0.92,0.12,800,1,35,0.4
+2023,10,15,7,30,4.5,1.26,0.019,0.62,35,702,170,0,0,-4.3,35,702,0,170,0.245,52.980000000000004,78.94,0.92,0.12,801,1,40,0.6000000000000001
+2023,10,15,8,0,6,1.26,0.019,0.62,41,804,266,0,0,-4.800000000000001,41,804,0,266,0.245,46.01,73.76,0.92,0.12,801,1,45,0.9
+2023,10,15,8,30,8.1,1.26,0.019,0.62,45,869,359,0,0,-4.7,45,869,0,359,0.245,39.86,68.83,0.92,0.12,801,1,55,0.8
+2023,10,15,9,0,10.3,1.27,0.018000000000000002,0.62,49,912,446,0,0,-4.800000000000001,49,912,0,446,0.244,34.13,64.23,0.91,0.12,801,1,65,0.7000000000000001
+2023,10,15,9,30,12,1.27,0.018000000000000002,0.62,51,943,522,0,0,-4.800000000000001,51,943,0,522,0.244,30.5,60.04,0.91,0.12,801,1.1,60,0.6000000000000001
+2023,10,15,10,0,13.600000000000001,1.27,0.018000000000000002,0.62,54,965,588,0,0,-4.7,54,965,0,588,0.244,27.72,56.370000000000005,0.91,0.12,801,1.1,54,0.6000000000000001
+2023,10,15,10,30,14.5,1.27,0.018000000000000002,0.62,54,981,640,0,0,-4.7,54,981,0,640,0.243,26.16,53.33,0.91,0.12,801,1.1,47,0.7000000000000001
+2023,10,15,11,0,15.4,1.36,0.015,0.62,54,993,678,0,0,-4.6000000000000005,54,993,0,678,0.243,24.87,51.050000000000004,0.91,0.12,801,1.1,40,0.8
+2023,10,15,11,30,16,1.36,0.015,0.62,54,998,700,0,0,-4.6000000000000005,54,998,0,700,0.242,23.91,49.63,0.91,0.12,800,1.1,42,0.8
+2023,10,15,12,0,16.6,1.37,0.015,0.62,54,1000,708,0,0,-4.6000000000000005,54,1000,0,708,0.242,23.09,49.160000000000004,0.91,0.12,800,1.1,43,0.9
+2023,10,15,12,30,17,1.37,0.015,0.62,53,997,699,0,0,-4.6000000000000005,53,997,0,699,0.242,22.52,49.65,0.91,0.12,800,1.1,41,0.9
+2023,10,15,13,0,17.400000000000002,1.3800000000000001,0.016,0.62,53,990,675,0,0,-4.6000000000000005,53,990,0,675,0.242,21.990000000000002,51.08,0.91,0.12,799,1.2000000000000002,39,0.9
+2023,10,15,13,30,17.6,1.3800000000000001,0.016,0.62,52,980,637,0,0,-4.6000000000000005,52,980,0,637,0.242,21.72,53.38,0.91,0.12,799,1.2000000000000002,41,0.9
+2023,10,15,14,0,17.7,1.4000000000000001,0.016,0.62,51,964,584,0,0,-4.5,51,964,0,584,0.242,21.64,56.43,0.91,0.12,799,1.2000000000000002,44,0.9
+2023,10,15,14,30,17.6,1.4000000000000001,0.016,0.62,50,942,519,0,0,-4.5,50,942,0,519,0.242,21.78,60.120000000000005,0.91,0.12,799,1.2000000000000002,52,1
+2023,10,15,15,0,17.400000000000002,1.42,0.016,0.62,47,912,442,0,0,-4.5,47,912,0,442,0.242,22.1,64.32000000000001,0.91,0.12,799,1.2000000000000002,60,1
+2023,10,15,15,30,16.900000000000002,1.42,0.016,0.62,43,868,355,0,0,-4.5,51,844,7,354,0.242,22.81,68.93,0.9,0.12,799,1.2000000000000002,70,1.1
+2023,10,15,16,0,16.3,1.44,0.015,0.62,39,804,262,0,0,-3.5,39,804,0,262,0.242,25.59,73.87,0.9,0.12,799,1.2000000000000002,80,1.1
+2023,10,15,16,30,14.3,1.44,0.015,0.62,32,703,166,0,0,-3.5,48,582,11,159,0.242,29.09,79.05,0.9,0.12,799,1.2000000000000002,91,1
+2023,10,15,17,0,12.200000000000001,1.44,0.015,0.62,25,525,76,2,0,0.8,34,350,36,68,0.242,45.59,84.39,0.9,0.12,799,1.2000000000000002,103,0.9
+2023,10,15,17,30,10.9,1.44,0.015,0.62,10,144,11,3,8,0.8,8,67,39,8,0.242,49.67,89.66,0.9,0.12,799,1.1,105,1
+2023,10,15,18,0,9.600000000000001,1.43,0.015,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.242,47.01,95.68,0.9,0.12,799,1.1,107,1.2000000000000002
+2023,10,15,18,30,9,1.43,0.015,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.242,48.94,101.36,0.9,0.12,799,1.1,106,1.2000000000000002
+2023,10,15,19,0,8.4,1.43,0.015,0.62,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.242,48.89,107.07000000000001,0.9,0.12,800,1.1,105,1.2000000000000002
+2023,10,15,19,30,8.1,1.43,0.015,0.62,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.242,49.89,112.74000000000001,0.9,0.12,800,1.1,101,1.2000000000000002
+2023,10,15,20,0,7.800000000000001,1.44,0.015,0.62,0,0,0,0,8,-2.3000000000000003,0,0,0,0,0.242,48.96,118.35000000000001,0.9,0.12,800,1.1,97,1.1
+2023,10,15,20,30,7.5,1.44,0.015,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.242,49.97,123.82000000000001,0.9,0.12,800,1.1,91,1.1
+2023,10,15,21,0,7.300000000000001,1.44,0.015,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.242,48.9,129.08,0.9,0.12,800,1.2000000000000002,85,1.1
+2023,10,15,21,30,7,1.44,0.015,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.242,49.92,134.05,0.9,0.12,800,1.2000000000000002,82,1
+2023,10,15,22,0,6.7,1.42,0.016,0.62,0,0,0,0,0,-3,0,0,0,0,0.242,50.09,138.58,0.9,0.12,800,1.2000000000000002,78,1
+2023,10,15,22,30,6.5,1.42,0.016,0.62,0,0,0,0,0,-3,0,0,0,0,0.241,50.78,142.5,0.9,0.12,800,1.2000000000000002,78,1
+2023,10,15,23,0,6.300000000000001,1.4000000000000001,0.016,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.241,50.84,145.59,0.9,0.12,800,1.2000000000000002,77,1
+2023,10,15,23,30,6,1.4000000000000001,0.016,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.241,51.84,147.58,0.9,0.12,799,1.2000000000000002,79,0.9
+2023,10,16,0,0,5.800000000000001,1.3900000000000001,0.017,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.241,52.19,148.28,0.9,0.12,799,1.3,80,0.9
+2023,10,16,0,30,5.5,1.3900000000000001,0.017,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.241,53.28,147.58,0.9,0.12,799,1.3,81,0.9
+2023,10,16,1,0,5.2,1.3900000000000001,0.017,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.241,54.06,145.59,0.9,0.12,799,1.3,82,0.8
+2023,10,16,1,30,5.1000000000000005,1.3900000000000001,0.017,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.241,54.44,142.51,0.9,0.12,799,1.3,85,0.8
+2023,10,16,2,0,5,1.4000000000000001,0.016,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.241,54.22,138.59,0.9,0.12,799,1.3,88,0.8
+2023,10,16,2,30,5,1.4000000000000001,0.016,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.241,54.22,134.06,0.9,0.12,799,1.3,92,0.8
+2023,10,16,3,0,5.1000000000000005,1.41,0.016,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,53.2,129.1,0.9,0.12,799,1.3,95,0.8
+2023,10,16,3,30,5.1000000000000005,1.41,0.016,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,53.2,123.84,0.9,0.12,799,1.2000000000000002,95,0.7000000000000001
+2023,10,16,4,0,5.2,1.43,0.016,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.24,52.09,118.37,0.9,0.12,799,1.2000000000000002,95,0.6000000000000001
+2023,10,16,4,30,5.300000000000001,1.43,0.016,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.23900000000000002,51.730000000000004,112.78,0.9,0.12,799,1.2000000000000002,88,0.5
+2023,10,16,5,0,5.4,1.43,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.23900000000000002,50.71,107.11,0.9,0.12,799,1.2000000000000002,81,0.4
+2023,10,16,5,30,5.4,1.43,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.23900000000000002,50.71,101.42,0.9,0.12,799,1.1,64,0.30000000000000004
+2023,10,16,6,0,5.4,1.43,0.015,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.23800000000000002,50.1,95.74000000000001,0.9,0.12,799,1.1,47,0.30000000000000004
+2023,10,16,6,30,6,1.43,0.015,0.62,10,144,11,0,0,-4.2,10,144,0,11,0.23800000000000002,48.07,89.72,0.9,0.12,799,1.1,25,0.2
+2023,10,16,7,0,6.5,1.42,0.015,0.62,24,528,75,0,0,-2.5,24,528,0,75,0.23700000000000002,52.61,84.48,0.9,0.12,799,1.1,3,0.2
+2023,10,16,7,30,8.1,1.42,0.015,0.62,33,706,166,0,0,-2.5,33,706,0,166,0.23700000000000002,47.17,79.15,0.9,0.12,799,1.1,177,0.2
+2023,10,16,8,0,9.600000000000001,1.4000000000000001,0.015,0.62,38,808,261,0,0,-3.1,38,808,0,261,0.23600000000000002,40.87,73.99,0.9,0.12,799,1.1,351,0.30000000000000004
+2023,10,16,8,30,11.5,1.4000000000000001,0.015,0.62,43,872,354,0,0,-3.1,43,872,0,354,0.23500000000000001,36.02,69.08,0.9,0.12,799,1.1,296,0.30000000000000004
+2023,10,16,9,0,13.4,1.3800000000000001,0.016,0.62,47,916,441,0,0,-3.3000000000000003,47,916,0,441,0.23500000000000001,31.150000000000002,64.49,0.9,0.12,799,1.1,241,0.30000000000000004
+2023,10,16,9,30,15.3,1.3800000000000001,0.016,0.62,49,947,518,0,0,-3.3000000000000003,49,947,0,518,0.234,27.560000000000002,60.32,0.9,0.12,799,1,219,0.6000000000000001
+2023,10,16,10,0,17.3,1.35,0.016,0.62,51,969,583,0,0,-3.2,51,969,0,583,0.234,24.48,56.67,0.9,0.12,799,1,197,1
+2023,10,16,10,30,18.2,1.35,0.016,0.62,51,986,635,0,0,-3.2,51,986,0,635,0.233,23.11,53.660000000000004,0.9,0.12,798,1,203,1.2000000000000002
+2023,10,16,11,0,19.1,1.46,0.013000000000000001,0.62,49,998,672,0,0,-2.8000000000000003,49,998,0,672,0.233,22.63,51.39,0.89,0.12,798,1.1,210,1.3
+2023,10,16,11,30,19.700000000000003,1.46,0.013000000000000001,0.62,50,1003,695,0,0,-2.8000000000000003,50,1003,0,695,0.233,21.8,49.99,0.9,0.12,798,1.1,218,1.4000000000000001
+2023,10,16,12,0,20.3,1.43,0.013000000000000001,0.62,51,1005,703,0,0,-2.5,51,1005,0,703,0.232,21.45,49.52,0.9,0.12,797,1.1,226,1.5
+2023,10,16,12,30,20.6,1.43,0.013000000000000001,0.62,51,1003,695,0,0,-2.5,51,1003,0,695,0.232,21.06,50.02,0.9,0.12,797,1.1,232,1.6
+2023,10,16,13,0,20.900000000000002,1.42,0.013000000000000001,0.62,50,997,671,0,0,-2.4000000000000004,50,997,0,671,0.231,20.84,51.45,0.9,0.12,797,1.1,238,1.7000000000000002
+2023,10,16,13,30,20.900000000000002,1.42,0.013000000000000001,0.62,53,983,634,0,0,-2.4000000000000004,53,983,0,634,0.231,20.82,53.74,0.9,0.12,796,1.1,241,1.7000000000000002
+2023,10,16,14,0,21,1.16,0.02,0.62,55,962,582,0,0,-2.5,55,962,0,582,0.231,20.51,56.78,0.91,0.12,796,1.1,244,1.7000000000000002
+2023,10,16,14,30,20.700000000000003,1.16,0.02,0.62,53,940,516,0,0,-2.5,53,940,0,516,0.231,20.89,60.46,0.91,0.12,796,1,244,1.7000000000000002
+2023,10,16,15,0,20.400000000000002,1.2,0.02,0.62,49,910,439,0,0,-2.7,49,910,0,439,0.231,20.94,64.64,0.91,0.12,796,1,244,1.7000000000000002
+2023,10,16,15,30,19.6,1.2,0.02,0.62,45,866,352,0,0,-2.7,45,866,0,352,0.231,21.97,69.24,0.9,0.12,795,1,244,1.5
+2023,10,16,16,0,18.8,1.23,0.019,0.62,40,802,259,0,0,-1.2000000000000002,40,802,0,259,0.232,25.77,74.17,0.9,0.12,795,1,243,1.2000000000000002
+2023,10,16,16,30,16.8,1.23,0.019,0.62,34,699,163,0,0,-1.2000000000000002,34,699,0,163,0.232,29.22,79.34,0.9,0.12,795,1,247,1
+2023,10,16,17,0,14.9,1.27,0.018000000000000002,0.62,25,515,73,0,0,1.6,25,515,0,73,0.232,40.64,84.67,0.9,0.12,795,0.9,251,0.7000000000000001
+2023,10,16,17,30,14.100000000000001,1.27,0.018000000000000002,0.62,8,99,8,0,0,1.6,8,99,0,8,0.233,42.79,89.91,0.9,0.12,795,0.9,255,0.6000000000000001
+2023,10,16,18,0,13.4,1.3,0.017,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.234,36.230000000000004,95.95,0.9,0.12,795,0.9,259,0.6000000000000001
+2023,10,16,18,30,13,1.3,0.017,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.23500000000000001,37.19,101.64,0.9,0.12,795,0.9,258,0.4
+2023,10,16,19,0,12.600000000000001,1.31,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.23500000000000001,36.09,107.34,0.9,0.12,795,0.8,257,0.30000000000000004
+2023,10,16,19,30,12.200000000000001,1.31,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.23600000000000002,37.050000000000004,113.02,0.89,0.12,795,0.8,197,0.2
+2023,10,16,20,0,11.9,1.31,0.016,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.23700000000000002,37.08,118.63,0.89,0.12,795,0.8,137,0.2
+2023,10,16,20,30,11.4,1.31,0.016,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.23700000000000002,38.32,124.11,0.89,0.12,795,0.8,129,0.30000000000000004
+2023,10,16,21,0,10.9,1.31,0.015,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.23700000000000002,39.74,129.39000000000001,0.89,0.12,795,0.8,121,0.4
+2023,10,16,21,30,10.4,1.31,0.015,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.23800000000000002,41.08,134.36,0.89,0.12,795,0.8,125,0.5
+2023,10,16,22,0,10,1.3,0.015,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.23800000000000002,42.69,138.91,0.9,0.12,795,0.8,129,0.5
+2023,10,16,22,30,9.700000000000001,1.3,0.015,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.23800000000000002,43.550000000000004,142.85,0.9,0.12,795,0.8,139,0.5
+2023,10,16,23,0,9.3,1.29,0.015,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.23900000000000002,45.33,145.95000000000002,0.9,0.12,794,0.8,150,0.5
+2023,10,16,23,30,9.1,1.29,0.015,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.23900000000000002,45.94,147.95000000000002,0.9,0.12,794,0.8,162,0.5
+2023,10,17,0,0,8.8,1.28,0.015,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.24,47.38,148.64000000000001,0.9,0.12,794,0.8,174,0.5
+2023,10,17,0,30,8.4,1.28,0.015,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.241,48.68,147.93,0.9,0.12,794,0.8,177,0.6000000000000001
+2023,10,17,1,0,8,1.28,0.015,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.242,50.34,145.92000000000002,0.9,0.12,794,0.8,180,0.6000000000000001
+2023,10,17,1,30,7.6000000000000005,1.28,0.015,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.244,51.730000000000004,142.81,0.9,0.12,794,0.8,185,0.7000000000000001
+2023,10,17,2,0,7.1000000000000005,1.28,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.245,54.120000000000005,138.86,0.9,0.12,794,0.8,190,0.9
+2023,10,17,2,30,6.6000000000000005,1.28,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.247,56,134.31,0.9,0.12,794,0.7000000000000001,197,1
+2023,10,17,3,0,6.1000000000000005,1.28,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.249,58.04,129.33,0.9,0.12,793,0.7000000000000001,204,1.1
+2023,10,17,3,30,5.6000000000000005,1.28,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.25,60.08,124.05,0.9,0.12,793,0.7000000000000001,211,1.2000000000000002
+2023,10,17,4,0,5.1000000000000005,1.29,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.251,61.99,118.58,0.9,0.12,793,0.7000000000000001,218,1.2000000000000002
+2023,10,17,4,30,4.800000000000001,1.29,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.252,63.29,112.98,0.9,0.12,793,0.7000000000000001,222,1.2000000000000002
+2023,10,17,5,0,4.5,1.29,0.016,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.254,63.93,107.31,0.9,0.12,794,0.7000000000000001,227,1.3
+2023,10,17,5,30,4.2,1.29,0.016,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.256,65.28,101.61,0.9,0.12,794,0.7000000000000001,228,1.3
+2023,10,17,6,0,4,1.31,0.016,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.257,65.28,95.94,0.9,0.12,794,0.7000000000000001,230,1.3
+2023,10,17,6,30,5,1.31,0.016,0.62,8,104,8,0,0,-1.9000000000000001,8,104,0,8,0.259,60.870000000000005,89.9,0.89,0.12,794,0.7000000000000001,228,1.2000000000000002
+2023,10,17,7,0,6.1000000000000005,1.33,0.016,0.62,25,530,74,0,0,-1,25,530,0,74,0.26,60.44,84.68,0.89,0.12,794,0.7000000000000001,226,1.1
+2023,10,17,7,30,8.1,1.33,0.016,0.62,33,713,165,0,0,-1,33,713,0,165,0.259,52.72,79.37,0.89,0.12,794,0.8,225,1.6
+2023,10,17,8,0,10.200000000000001,1.34,0.017,0.62,39,816,261,0,0,-1.3,39,816,0,261,0.258,44.86,74.23,0.89,0.12,794,0.8,224,2.1
+2023,10,17,8,30,12.100000000000001,1.34,0.017,0.62,44,879,354,0,0,-1.3,44,879,0,354,0.257,39.56,69.33,0.89,0.12,794,0.8,229,2.4000000000000004
+2023,10,17,9,0,14,1.35,0.018000000000000002,0.62,48,922,441,0,0,-2.4000000000000004,48,922,0,441,0.256,32.08,64.76,0.9,0.12,794,0.8,235,2.6
+2023,10,17,9,30,15.9,1.35,0.018000000000000002,0.62,51,952,518,0,0,-2.4000000000000004,51,952,0,518,0.255,28.400000000000002,60.61,0.9,0.12,794,0.8,239,2.9000000000000004
+2023,10,17,10,0,17.7,1.34,0.02,0.62,54,971,583,0,0,-4.1000000000000005,60,952,0,579,0.254,22.26,56.980000000000004,0.9,0.12,794,0.8,243,3.2
+2023,10,17,10,30,18.6,1.34,0.02,0.62,55,986,635,0,0,-4.1000000000000005,66,954,0,627,0.253,21.04,53.980000000000004,0.9,0.12,794,0.9,242,3.3000000000000003
+2023,10,17,11,0,19.6,1.48,0.018000000000000002,0.62,56,996,673,0,8,-4.7,131,765,0,605,0.253,18.94,51.74,0.91,0.12,793,0.9,241,3.4000000000000004
+2023,10,17,11,30,20,1.48,0.018000000000000002,0.62,56,1001,695,0,8,-4.7,202,614,0,594,0.252,18.48,50.35,0.91,0.12,793,0.9,242,3.5
+2023,10,17,12,0,20.5,1.53,0.019,0.62,56,1002,702,0,8,-4.9,160,754,0,646,0.251,17.63,49.89,0.91,0.12,793,1,243,3.7
+2023,10,17,12,30,20.6,1.53,0.019,0.62,55,1000,693,0,8,-4.9,221,574,0,587,0.251,17.52,50.39,0.91,0.12,793,1,244,3.8000000000000003
+2023,10,17,13,0,20.700000000000003,1.56,0.019,0.62,56,994,670,0,7,-5.1000000000000005,233,521,0,555,0.25,17.25,51.82,0.91,0.12,792,1,245,3.8000000000000003
+2023,10,17,13,30,20.8,1.56,0.019,0.62,53,985,631,0,7,-5.1000000000000005,167,622,0,532,0.251,17.14,54.1,0.91,0.12,792,1,244,3.9000000000000004
+2023,10,17,14,0,20.8,1.71,0.017,0.62,50,972,578,0,0,-5.1000000000000005,67,923,0,568,0.251,17.1,57.13,0.91,0.12,792,0.9,244,4
+2023,10,17,14,30,20.8,1.71,0.017,0.62,48,952,513,0,0,-5.1000000000000005,85,826,0,488,0.251,17.080000000000002,60.79,0.9,0.12,791,0.9,242,3.9000000000000004
+2023,10,17,15,0,20.700000000000003,1.8,0.015,0.62,44,924,435,0,0,-5,44,924,0,435,0.252,17.330000000000002,64.97,0.9,0.12,791,0.9,239,3.8000000000000003
+2023,10,17,15,30,19.900000000000002,1.8,0.015,0.62,41,882,349,0,0,-5,41,882,0,349,0.252,18.21,69.56,0.9,0.12,791,0.8,236,3.1
+2023,10,17,16,0,19.1,1.83,0.014,0.62,37,818,256,0,0,-2.2,37,818,0,256,0.251,23.53,74.47,0.9,0.12,791,0.8,232,2.3000000000000003
+2023,10,17,16,30,16.7,1.83,0.014,0.62,31,712,159,0,0,-2.2,31,712,0,159,0.251,27.35,79.63,0.9,0.12,791,0.8,229,1.8
+2023,10,17,17,0,14.200000000000001,1.8,0.014,0.62,23,523,69,0,0,0.5,23,523,0,69,0.25,39.29,84.95,0.9,0.12,791,0.8,226,1.3
+2023,10,17,17,30,13.100000000000001,1.8,0.014,0.62,7,101,7,0,0,0.5,7,101,0,7,0.25,42.19,90.15,0.89,0.12,791,0.9,240,1.3
+2023,10,17,18,0,12,1.73,0.016,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.25,40.92,96.23,0.89,0.12,791,0.9,254,1.3
+2023,10,17,18,30,11.200000000000001,1.73,0.016,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.251,43.13,101.91,0.88,0.12,791,0.9,274,1.3
+2023,10,17,19,0,10.4,1.6500000000000001,0.019,0.62,0,0,0,0,0,-1,0,0,0,0,0.252,45.07,107.62,0.88,0.12,792,0.9,294,1.3
+2023,10,17,19,30,9.700000000000001,1.6500000000000001,0.019,0.62,0,0,0,0,0,-1,0,0,0,0,0.252,47.230000000000004,113.3,0.88,0.12,792,0.9,307,1.3
+2023,10,17,20,0,9,1.53,0.02,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.253,48.86,118.91,0.87,0.12,792,0.9,319,1.3
+2023,10,17,20,30,8.6,1.53,0.02,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.253,50.2,124.4,0.88,0.12,792,0.9,325,1.3
+2023,10,17,21,0,8.3,1.34,0.02,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.254,50.4,129.68,0.88,0.12,793,0.9,331,1.3
+2023,10,17,21,30,8.1,1.34,0.02,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.254,51.09,134.68,0.88,0.12,793,0.9,333,1.2000000000000002
+2023,10,17,22,0,7.9,1.18,0.018000000000000002,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,50.99,139.24,0.89,0.12,793,0.9,334,1.2000000000000002
+2023,10,17,22,30,7.7,1.18,0.018000000000000002,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.254,51.68,143.19,0.89,0.12,793,0.9,337,1.1
+2023,10,17,23,0,7.4,1.09,0.017,0.62,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.254,52.63,146.31,0.89,0.12,793,1,341,1.1
+2023,10,17,23,30,7.2,1.09,0.017,0.62,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.254,53.36,148.32,0.89,0.12,793,1,343,1
+2023,10,18,0,0,7.1000000000000005,1.05,0.015,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.253,53.9,149.01,0.89,0.12,793,1,345,0.9
+2023,10,18,0,30,6.9,1.05,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,54.64,148.28,0.89,0.12,793,1,342,0.9
+2023,10,18,1,0,6.7,1.04,0.014,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.253,55.480000000000004,146.24,0.89,0.12,793,1,339,0.8
+2023,10,18,1,30,6.5,1.04,0.014,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.253,56.32,143.1,0.89,0.12,794,1,339,0.8
+2023,10,18,2,0,6.300000000000001,1.06,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,57,139.13,0.89,0.12,794,1.1,338,0.7000000000000001
+2023,10,18,2,30,6.300000000000001,1.06,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.254,57,134.55,0.9,0.12,794,1.1,339,0.7000000000000001
+2023,10,18,3,0,6.300000000000001,1.06,0.016,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.254,57.39,129.56,0.9,0.12,794,1,339,0.6000000000000001
+2023,10,18,3,30,6.1000000000000005,1.06,0.016,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.255,58.19,124.27,0.9,0.12,794,1,341,0.5
+2023,10,18,4,0,6,1.06,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.255,58.5,118.78,0.9,0.12,794,1,344,0.4
+2023,10,18,4,30,5.7,1.06,0.015,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.256,59.72,113.17,0.89,0.12,794,1.1,182,0.5
+2023,10,18,5,0,5.4,1.07,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,60.54,107.5,0.89,0.12,794,1.1,20,0.6000000000000001
+2023,10,18,5,30,5.1000000000000005,1.07,0.015,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,61.89,101.81,0.89,0.12,795,1.1,29,0.7000000000000001
+2023,10,18,6,0,4.800000000000001,1.08,0.014,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.256,63.29,96.14,0.89,0.12,795,1.2000000000000002,38,0.9
+2023,10,18,6,30,5.6000000000000005,1.08,0.014,0.62,7,96,7,0,0,-1.6,7,96,0,7,0.256,59.870000000000005,90.07000000000001,0.89,0.12,795,1.2000000000000002,47,0.7000000000000001
+2023,10,18,7,0,6.300000000000001,1.1,0.014,0.62,23,505,68,0,0,-0.4,23,505,0,68,0.256,62.01,84.89,0.88,0.12,795,1.2000000000000002,56,0.6000000000000001
+2023,10,18,7,30,8.200000000000001,1.1,0.014,0.62,31,692,156,0,0,-0.4,31,692,0,156,0.256,54.47,79.59,0.88,0.12,795,1.2000000000000002,51,0.7000000000000001
+2023,10,18,8,0,10.100000000000001,1.12,0.013000000000000001,0.62,36,797,250,0,0,-0.4,36,797,0,250,0.256,48.19,74.46000000000001,0.88,0.12,796,1.2000000000000002,46,0.8
+2023,10,18,8,30,11.9,1.12,0.013000000000000001,0.62,41,864,342,0,0,-0.4,41,864,0,342,0.255,42.78,69.58,0.88,0.12,796,1.2000000000000002,195,1.3
+2023,10,18,9,0,13.8,1.1400000000000001,0.013000000000000001,0.62,43,908,426,0,0,0.6000000000000001,43,908,0,426,0.255,40.52,65.02,0.88,0.12,796,1.2000000000000002,345,1.9000000000000001
+2023,10,18,9,30,15.100000000000001,1.1400000000000001,0.013000000000000001,0.62,45,940,502,0,0,0.6000000000000001,45,940,0,502,0.254,37.26,60.89,0.88,0.12,796,1.2000000000000002,340,2.3000000000000003
+2023,10,18,10,0,16.5,1.1500000000000001,0.012,0.62,46,962,566,0,0,0.30000000000000004,143,674,0,507,0.252,33.24,57.28,0.88,0.12,796,1.2000000000000002,336,2.7
+2023,10,18,10,30,17.400000000000002,1.1500000000000001,0.012,0.62,46,978,617,0,0,0.30000000000000004,113,785,0,571,0.251,31.41,54.300000000000004,0.86,0.12,796,1.3,333,2.7
+2023,10,18,11,0,18.3,1.52,0.01,0.62,46,990,654,0,0,-0.1,46,990,0,654,0.25,29,52.08,0.84,0.12,795,1.3,329,2.7
+2023,10,18,11,30,19.1,1.52,0.01,0.62,45,996,676,0,0,0,45,996,0,676,0.249,27.59,50.7,0.84,0.12,795,1.3,324,2.8000000000000003
+2023,10,18,12,0,19.8,1.52,0.01,0.62,46,998,684,0,0,-0.1,46,998,0,684,0.248,26.400000000000002,50.25,0.85,0.12,795,1.3,319,2.8000000000000003
+2023,10,18,12,30,20.200000000000003,1.52,0.01,0.62,46,996,676,0,0,-0.1,46,996,0,676,0.247,25.76,50.76,0.85,0.12,795,1.3,320,3
+2023,10,18,13,0,20.700000000000003,1.5,0.01,0.62,45,990,652,0,0,0,45,990,0,652,0.246,25.07,52.19,0.85,0.12,794,1.3,320,3.2
+2023,10,18,13,30,20.900000000000002,1.5,0.01,0.62,47,978,615,0,0,0,47,978,0,615,0.246,24.77,54.46,0.87,0.12,794,1.3,323,3.3000000000000003
+2023,10,18,14,0,21.1,1.1500000000000001,0.013000000000000001,0.62,46,961,563,0,0,0,46,961,0,563,0.245,24.5,57.480000000000004,0.89,0.12,794,1.3,325,3.4000000000000004
+2023,10,18,14,30,20.900000000000002,1.1500000000000001,0.013000000000000001,0.62,45,939,498,0,0,0,45,939,0,498,0.245,24.8,61.13,0.89,0.12,794,1.2000000000000002,327,3.3000000000000003
+2023,10,18,15,0,20.8,1.11,0.013000000000000001,0.62,43,907,422,0,0,0,43,907,0,422,0.246,24.88,65.29,0.89,0.12,794,1.2000000000000002,330,3.3000000000000003
+2023,10,18,15,30,20.1,1.11,0.013000000000000001,0.62,40,862,337,0,0,0,40,862,0,337,0.245,25.98,69.86,0.89,0.12,794,1.2000000000000002,333,2.9000000000000004
+2023,10,18,16,0,19.400000000000002,1.1,0.013000000000000001,0.62,36,795,245,0,0,0.9,36,795,0,245,0.245,29.04,74.77,0.89,0.12,794,1.2000000000000002,337,2.4000000000000004
+2023,10,18,16,30,17.1,1.1,0.013000000000000001,0.62,30,687,150,0,0,0.9,30,687,0,150,0.245,33.57,79.92,0.89,0.12,795,1.2000000000000002,348,1.7000000000000002
+2023,10,18,17,0,14.8,1.1300000000000001,0.012,0.62,22,493,63,0,0,3,22,493,0,63,0.245,45.09,85.23,0.88,0.12,795,1.2000000000000002,359,1.1
+2023,10,18,17,30,13.8,1.1300000000000001,0.012,0.62,7,91,6,0,0,3,7,91,0,6,0.245,48.1,90.88,0.88,0.12,795,1.2000000000000002,186,1.1
+2023,10,18,18,0,12.700000000000001,1.17,0.011,0.62,0,0,0,0,0,2,0,0,0,0,0.246,48.08,96.5,0.88,0.12,795,1.2000000000000002,13,1.1
+2023,10,18,18,30,12.200000000000001,1.17,0.011,0.62,0,0,0,0,0,2,0,0,0,0,0.246,49.75,102.18,0.88,0.12,796,1.2000000000000002,13,1.1
+2023,10,18,19,0,11.700000000000001,1.23,0.011,0.62,0,0,0,0,0,1.6,0,0,0,0,0.246,50.1,107.88,0.87,0.12,796,1.2000000000000002,13,1
+2023,10,18,19,30,11.200000000000001,1.23,0.011,0.62,0,0,0,0,0,1.6,0,0,0,0,0.247,51.78,113.57000000000001,0.87,0.12,796,1.1,11,1
+2023,10,18,20,0,10.600000000000001,1.27,0.01,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.247,52.82,119.18,0.87,0.12,796,1.1,9,1
+2023,10,18,20,30,10.100000000000001,1.27,0.01,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.247,54.6,124.68,0.87,0.12,796,1.1,6,0.9
+2023,10,18,21,0,9.700000000000001,1.29,0.011,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.247,55.29,129.98,0.87,0.12,796,1.1,3,0.9
+2023,10,18,21,30,9.200000000000001,1.29,0.011,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.247,57.25,134.98,0.87,0.12,797,1,2,0.9
+2023,10,18,22,0,8.8,1.32,0.011,0.62,0,0,0,0,0,1,0,0,0,0,0.246,58.19,139.56,0.87,0.12,797,1,1,0.9
+2023,10,18,22,30,8.3,1.32,0.011,0.62,0,0,0,0,0,1,0,0,0,0,0.246,60.18,143.53,0.88,0.12,797,1,1,0.9
+2023,10,18,23,0,7.9,1.36,0.012,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,61.120000000000005,146.66,0.88,0.12,797,1,1,0.9
+2023,10,18,23,30,7.5,1.36,0.012,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,62.800000000000004,148.69,0.88,0.12,797,1,2,0.9
+2023,10,19,0,0,7.1000000000000005,1.3900000000000001,0.012,0.62,0,0,0,0,0,0.8,0,0,0,0,0.246,64.33,149.37,0.88,0.12,797,1,2,0.9
+2023,10,19,0,30,6.7,1.3900000000000001,0.012,0.62,0,0,0,0,0,0.8,0,0,0,0,0.246,66.12,148.63,0.88,0.12,797,0.9,3,1
+2023,10,19,1,0,6.300000000000001,1.41,0.013000000000000001,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,68.19,146.56,0.88,0.12,797,0.9,3,1
+2023,10,19,1,30,6,1.41,0.013000000000000001,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,69.61,143.39000000000001,0.88,0.12,797,0.9,4,1
+2023,10,19,2,0,5.7,1.41,0.013000000000000001,0.62,0,0,0,0,0,1,0,0,0,0,0.246,71.52,139.4,0.88,0.12,797,0.9,5,0.9
+2023,10,19,2,30,5.5,1.41,0.013000000000000001,0.62,0,0,0,0,0,0.9,0,0,0,0,0.246,72.51,134.8,0.88,0.12,797,0.9,6,0.9
+2023,10,19,3,0,5.2,1.3900000000000001,0.013000000000000001,0.62,0,0,0,0,0,1,0,0,0,0,0.246,74.51,129.78,0.88,0.12,797,0.8,7,0.8
+2023,10,19,3,30,5,1.3900000000000001,0.013000000000000001,0.62,0,0,0,0,0,1,0,0,0,0,0.246,75.56,124.48,0.88,0.12,797,0.8,8,0.8
+2023,10,19,4,0,4.800000000000001,1.36,0.012,0.62,0,0,0,0,0,1.1,0,0,0,0,0.246,77.13,118.99000000000001,0.88,0.12,797,0.8,9,0.8
+2023,10,19,4,30,4.6000000000000005,1.36,0.012,0.62,0,0,0,0,0,1.1,0,0,0,0,0.247,78.21000000000001,113.37,0.88,0.12,797,0.7000000000000001,10,0.8
+2023,10,19,5,0,4.4,1.33,0.012,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.247,79.74,107.7,0.88,0.12,797,0.7000000000000001,11,0.7000000000000001
+2023,10,19,5,30,4.3,1.33,0.012,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.247,80.3,102,0.88,0.12,797,0.7000000000000001,13,0.7000000000000001
+2023,10,19,6,0,4.1000000000000005,1.3,0.012,0.62,0,0,0,0,0,1.3,0,0,0,0,0.248,81.7,96.33,0.88,0.12,797,0.7000000000000001,15,0.7000000000000001
+2023,10,19,6,30,4.800000000000001,1.3,0.012,0.62,7,103,7,0,0,1.3,7,103,0,7,0.248,77.9,90.25,0.88,0.12,798,0.6000000000000001,17,0.7000000000000001
+2023,10,19,7,0,5.5,1.28,0.012,0.62,22,534,68,0,0,1.5,22,534,0,68,0.248,75.4,85.10000000000001,0.88,0.12,798,0.6000000000000001,20,0.6000000000000001
+2023,10,19,7,30,7.2,1.28,0.012,0.62,31,724,159,0,0,1.5,31,724,0,159,0.248,67.08,79.81,0.88,0.12,798,0.6000000000000001,19,1
+2023,10,19,8,0,8.9,1.28,0.012,0.62,36,830,255,0,0,1.7000000000000002,36,830,0,255,0.248,60.75,74.69,0.88,0.12,798,0.6000000000000001,18,1.4000000000000001
+2023,10,19,8,30,10.700000000000001,1.28,0.012,0.62,40,896,349,0,0,1.7000000000000002,40,896,0,349,0.247,53.86,69.82000000000001,0.88,0.12,798,0.6000000000000001,11,1.5
+2023,10,19,9,0,12.4,1.28,0.012,0.62,43,941,436,0,0,1.3,43,941,0,436,0.246,46.550000000000004,65.29,0.88,0.12,798,0.6000000000000001,4,1.7000000000000002
+2023,10,19,9,30,14,1.28,0.012,0.62,44,972,513,0,0,1.3,44,972,0,513,0.246,41.95,61.17,0.87,0.12,798,0.6000000000000001,180,1.7000000000000002
+2023,10,19,10,0,15.600000000000001,1.28,0.011,0.62,45,994,578,0,0,0,45,994,0,578,0.245,34.47,57.58,0.87,0.12,798,0.6000000000000001,356,1.8
+2023,10,19,10,30,16.900000000000002,1.28,0.011,0.62,46,1010,631,0,0,0,46,1010,0,631,0.244,31.740000000000002,54.620000000000005,0.86,0.12,798,0.6000000000000001,354,1.8
+2023,10,19,11,0,18.2,1.42,0.01,0.62,45,1021,668,0,0,-1.7000000000000002,45,1021,0,668,0.243,25.78,52.410000000000004,0.85,0.12,798,0.6000000000000001,352,1.8
+2023,10,19,11,30,19.1,1.42,0.01,0.62,46,1027,691,0,0,-1.7000000000000002,46,1027,0,691,0.242,24.37,51.06,0.85,0.12,798,0.6000000000000001,350,1.8
+2023,10,19,12,0,20.1,1.43,0.01,0.62,46,1029,699,0,0,-3.5,46,1029,0,699,0.241,20.19,50.620000000000005,0.85,0.12,798,0.6000000000000001,349,1.7000000000000002
+2023,10,19,12,30,20.700000000000003,1.43,0.01,0.62,46,1027,691,0,0,-3.5,46,1027,0,691,0.241,19.43,51.120000000000005,0.85,0.12,797,0.6000000000000001,346,1.7000000000000002
+2023,10,19,13,0,21.3,1.43,0.01,0.62,45,1023,667,0,0,-4.800000000000001,45,1023,0,667,0.24,16.89,52.550000000000004,0.85,0.12,797,0.6000000000000001,344,1.6
+2023,10,19,13,30,21.6,1.43,0.01,0.62,44,1013,628,0,0,-4.800000000000001,44,1013,0,628,0.24,16.59,54.81,0.85,0.12,797,0.6000000000000001,342,1.5
+2023,10,19,14,0,21.8,1.3,0.01,0.62,44,999,576,0,0,-5.9,44,999,0,576,0.23900000000000002,15.08,57.82,0.86,0.12,796,0.6000000000000001,339,1.3
+2023,10,19,14,30,21.700000000000003,1.3,0.01,0.62,42,977,509,0,0,-5.9,42,977,0,509,0.23900000000000002,15.17,61.46,0.86,0.12,796,0.6000000000000001,330,1.1
+2023,10,19,15,0,21.6,1.28,0.01,0.62,39,946,430,0,0,-6.6000000000000005,39,946,0,430,0.23900000000000002,14.55,65.61,0.86,0.12,796,0.6000000000000001,321,0.9
+2023,10,19,15,30,20.900000000000002,1.28,0.01,0.62,37,901,343,0,0,-6.6000000000000005,37,901,0,343,0.23800000000000002,15.18,70.17,0.86,0.12,796,0.6000000000000001,290,0.6000000000000001
+2023,10,19,16,0,20.200000000000003,1.27,0.01,0.62,33,834,248,0,0,-2.1,33,834,0,248,0.23800000000000002,22.18,75.06,0.86,0.12,796,0.6000000000000001,259,0.2
+2023,10,19,16,30,18.400000000000002,1.27,0.01,0.62,29,725,152,0,0,-2.1,29,725,0,152,0.23800000000000002,24.79,80.2,0.86,0.12,796,0.6000000000000001,216,0.5
+2023,10,19,17,0,16.6,1.26,0.01,0.62,21,528,62,0,0,-1.6,21,528,0,62,0.23700000000000002,28.89,85.5,0.86,0.12,796,0.6000000000000001,173,0.8
+2023,10,19,17,30,15.4,1.26,0.01,0.62,6,76,4,0,0,-1.6,6,76,0,4,0.23700000000000002,31.18,91.15,0.86,0.12,796,0.6000000000000001,172,0.9
+2023,10,19,18,0,14.100000000000001,1.25,0.01,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.23700000000000002,30.64,96.77,0.86,0.12,796,0.6000000000000001,172,1.1
+2023,10,19,18,30,13.200000000000001,1.25,0.01,0.62,0,0,0,0,0,-3,0,0,0,0,0.23700000000000002,32.480000000000004,102.45,0.86,0.12,796,0.6000000000000001,174,1.1
+2023,10,19,19,0,12.4,1.24,0.011,0.62,0,0,0,0,0,-3,0,0,0,0,0.23700000000000002,34.08,108.15,0.86,0.12,796,0.6000000000000001,176,1.1
+2023,10,19,19,30,11.600000000000001,1.24,0.011,0.62,0,0,0,0,0,-3,0,0,0,0,0.23700000000000002,35.910000000000004,113.83,0.86,0.12,796,0.6000000000000001,178,1.1
+2023,10,19,20,0,10.8,1.24,0.011,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.23700000000000002,37.6,119.46000000000001,0.86,0.12,796,0.6000000000000001,181,1.1
+2023,10,19,20,30,10.200000000000001,1.24,0.011,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.23800000000000002,39.13,124.96000000000001,0.86,0.12,796,0.6000000000000001,184,1.1
+2023,10,19,21,0,9.600000000000001,1.23,0.011,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.23800000000000002,40.45,130.27,0.86,0.12,796,0.6000000000000001,187,1
+2023,10,19,21,30,9.1,1.23,0.011,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.23800000000000002,41.83,135.28,0.86,0.12,796,0.6000000000000001,189,1
+2023,10,19,22,0,8.6,1.23,0.011,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.23800000000000002,42.45,139.88,0.86,0.12,796,0.6000000000000001,191,1
+2023,10,19,22,30,8.200000000000001,1.23,0.011,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.23800000000000002,43.61,143.87,0.86,0.12,796,0.6000000000000001,193,1
+2023,10,19,23,0,7.9,1.23,0.011,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.23800000000000002,43.97,147.02,0.86,0.12,796,0.6000000000000001,194,1
+2023,10,19,23,30,7.6000000000000005,1.23,0.011,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.23800000000000002,44.88,149.05,0.86,0.12,796,0.6000000000000001,195,1
+2023,10,20,0,0,7.4,1.22,0.012,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.23900000000000002,44.550000000000004,149.73,0.87,0.12,796,0.6000000000000001,196,1
+2023,10,20,0,30,7.2,1.22,0.012,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.23900000000000002,45.160000000000004,148.97,0.87,0.12,796,0.6000000000000001,197,0.9
+2023,10,20,1,0,7.1000000000000005,1.2,0.012,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.23900000000000002,44.35,146.88,0.87,0.12,796,0.6000000000000001,198,0.9
+2023,10,20,1,30,7,1.2,0.012,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.23900000000000002,44.65,143.68,0.87,0.12,796,0.6000000000000001,201,0.8
+2023,10,20,2,0,6.9,1.18,0.012,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.24,43.72,139.66,0.87,0.12,795,0.6000000000000001,205,0.8
+2023,10,20,2,30,6.9,1.18,0.012,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.241,43.72,135.04,0.87,0.12,795,0.6000000000000001,211,0.8
+2023,10,20,3,0,6.9,1.16,0.013000000000000001,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.242,42.7,130.01,0.87,0.12,795,0.5,218,0.8
+2023,10,20,3,30,6.7,1.16,0.013000000000000001,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.243,43.29,124.69,0.87,0.12,795,0.5,222,0.9
+2023,10,20,4,0,6.6000000000000005,1.1500000000000001,0.013000000000000001,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.244,42.74,119.19,0.88,0.12,795,0.5,227,0.9
+2023,10,20,4,30,6.4,1.1500000000000001,0.013000000000000001,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.245,43.33,113.57000000000001,0.88,0.12,795,0.5,229,0.9
+2023,10,20,5,0,6.2,1.1300000000000001,0.014,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.246,43.34,107.89,0.88,0.12,795,0.5,231,1
+2023,10,20,5,30,6.1000000000000005,1.1300000000000001,0.014,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.248,43.64,102.2,0.88,0.12,795,0.5,232,1
+2023,10,20,6,0,5.9,1.1300000000000001,0.014,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.249,43.83,96.53,0.88,0.12,795,0.5,233,1
+2023,10,20,6,30,6.5,1.1300000000000001,0.014,0.62,8,99,6,0,0,-5.5,8,99,0,6,0.25,42.050000000000004,90.93,0.88,0.12,795,0.5,233,0.9
+2023,10,20,7,0,7.1000000000000005,1.1400000000000001,0.014,0.62,23,527,66,0,0,-3.9000000000000004,23,527,0,66,0.251,45.65,85.3,0.87,0.12,796,0.5,233,0.9
+2023,10,20,7,30,9.1,1.1400000000000001,0.014,0.62,31,724,156,0,0,-3.8000000000000003,31,724,0,156,0.252,39.86,80.03,0.87,0.12,796,0.5,232,1.1
+2023,10,20,8,0,11.200000000000001,1.1400000000000001,0.013000000000000001,0.62,37,832,253,0,0,-4,37,832,0,253,0.253,34.37,74.92,0.87,0.12,796,0.5,231,1.3
+2023,10,20,8,30,12.9,1.1400000000000001,0.013000000000000001,0.62,41,899,347,0,0,-3.9000000000000004,41,899,0,347,0.253,30.740000000000002,70.07000000000001,0.87,0.12,796,0.5,234,1.4000000000000001
+2023,10,20,9,0,14.600000000000001,1.1500000000000001,0.013000000000000001,0.62,44,944,435,0,0,-4.800000000000001,44,944,0,435,0.253,25.740000000000002,65.55,0.87,0.12,796,0.5,236,1.6
+2023,10,20,9,30,16.3,1.1500000000000001,0.013000000000000001,0.62,46,976,512,0,0,-4.800000000000001,46,976,0,512,0.253,23.09,61.46,0.87,0.12,796,0.5,238,1.8
+2023,10,20,10,0,18,1.16,0.013000000000000001,0.62,47,998,578,0,0,-5,47,998,0,578,0.253,20.53,57.88,0.87,0.12,795,0.5,239,2
+2023,10,20,10,30,19,1.16,0.013000000000000001,0.62,47,1015,630,0,0,-5,47,1015,0,630,0.253,19.29,54.95,0.86,0.12,795,0.5,237,2.1
+2023,10,20,11,0,20,1.31,0.01,0.62,46,1028,668,0,0,-5,46,1028,0,668,0.254,18.04,52.75,0.86,0.12,795,0.5,235,2.2
+2023,10,20,11,30,20.700000000000003,1.31,0.01,0.62,47,1033,691,0,0,-5,47,1033,0,691,0.254,17.26,51.410000000000004,0.86,0.12,794,0.5,234,2.4000000000000004
+2023,10,20,12,0,21.400000000000002,1.34,0.01,0.62,46,1034,697,0,0,-5.2,46,1034,0,697,0.254,16.39,50.980000000000004,0.86,0.12,794,0.5,233,2.5
+2023,10,20,12,30,21.700000000000003,1.34,0.01,0.62,46,1029,687,0,0,-5.2,46,1029,0,687,0.253,16.09,51.480000000000004,0.86,0.12,794,0.6000000000000001,234,2.5
+2023,10,20,13,0,22,1.36,0.01,0.62,46,1023,663,0,0,-5.300000000000001,46,1023,0,663,0.253,15.68,52.9,0.86,0.12,793,0.6000000000000001,235,2.6
+2023,10,20,13,30,22.1,1.36,0.01,0.62,46,1012,624,0,0,-5.300000000000001,46,1012,0,624,0.253,15.58,55.160000000000004,0.87,0.12,793,0.6000000000000001,234,2.5
+2023,10,20,14,0,22.200000000000003,1.33,0.011,0.62,45,996,570,0,0,-5.300000000000001,45,996,0,570,0.253,15.41,58.160000000000004,0.87,0.12,793,0.6000000000000001,233,2.5
+2023,10,20,14,30,22,1.33,0.011,0.62,44,973,504,0,0,-5.300000000000001,44,973,0,504,0.253,15.58,61.78,0.87,0.12,792,0.6000000000000001,231,2.4000000000000004
+2023,10,20,15,0,21.700000000000003,1.35,0.012,0.62,41,941,425,0,0,-5.300000000000001,41,941,0,425,0.253,15.89,65.92,0.87,0.12,792,0.6000000000000001,228,2.2
+2023,10,20,15,30,20.700000000000003,1.35,0.012,0.62,39,895,338,0,0,-5.300000000000001,39,895,0,338,0.253,16.89,70.47,0.87,0.12,792,0.6000000000000001,224,1.7000000000000002
+2023,10,20,16,0,19.700000000000003,1.3900000000000001,0.012,0.62,34,826,243,0,0,-0.2,34,826,0,243,0.253,26.29,75.35000000000001,0.87,0.12,792,0.6000000000000001,220,1.2000000000000002
+2023,10,20,16,30,18,1.3900000000000001,0.012,0.62,29,713,147,0,0,-0.2,29,713,0,147,0.253,29.23,80.48,0.87,0.12,792,0.6000000000000001,212,1
+2023,10,20,17,0,16.2,1.43,0.012,0.62,21,508,58,0,0,-0.4,21,508,0,58,0.253,32.17,85.77,0.87,0.12,792,0.6000000000000001,205,0.8
+2023,10,20,17,30,15.700000000000001,1.43,0.012,0.62,4,50,3,0,0,-0.5,4,50,0,3,0.254,33.21,91.42,0.87,0.12,792,0.6000000000000001,190,0.8
+2023,10,20,18,0,15.100000000000001,1.47,0.012,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.254,28.75,97.03,0.87,0.12,792,0.6000000000000001,176,0.7000000000000001
+2023,10,20,18,30,14.600000000000001,1.47,0.012,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.254,29.69,102.71000000000001,0.87,0.12,792,0.6000000000000001,158,0.8
+2023,10,20,19,0,14,1.5,0.013000000000000001,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.254,30.07,108.41,0.87,0.12,792,0.6000000000000001,140,0.8
+2023,10,20,19,30,13.4,1.5,0.013000000000000001,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.253,31.27,114.10000000000001,0.87,0.12,792,0.6000000000000001,129,0.8
+2023,10,20,20,0,12.8,1.53,0.013000000000000001,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.253,32.34,119.72,0.87,0.12,792,0.6000000000000001,117,0.9
+2023,10,20,20,30,12.200000000000001,1.53,0.013000000000000001,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.253,33.63,125.23,0.87,0.12,792,0.6000000000000001,114,0.8
+2023,10,20,21,0,11.600000000000001,1.56,0.013000000000000001,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.253,34.71,130.55,0.87,0.12,791,0.6000000000000001,111,0.8
+2023,10,20,21,30,11.3,1.56,0.013000000000000001,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.253,35.4,135.58,0.87,0.12,791,0.6000000000000001,111,0.8
+2023,10,20,22,0,11,1.58,0.014,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.253,35.12,140.20000000000002,0.88,0.12,791,0.7000000000000001,111,0.7000000000000001
+2023,10,20,22,30,10.9,1.58,0.014,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.253,35.35,144.20000000000002,0.88,0.12,791,0.7000000000000001,111,0.7000000000000001
+2023,10,20,23,0,10.700000000000001,1.59,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.254,35.26,147.37,0.88,0.12,791,0.7000000000000001,111,0.6000000000000001
+2023,10,20,23,30,10.5,1.59,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.254,35.730000000000004,149.41,0.88,0.12,791,0.7000000000000001,108,0.6000000000000001
+2023,10,21,0,0,10.200000000000001,1.58,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.254,36.24,150.09,0.88,0.12,791,0.7000000000000001,106,0.5
+2023,10,21,0,30,10,1.58,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.255,36.730000000000004,149.32,0.88,0.12,791,0.7000000000000001,103,0.5
+2023,10,21,1,0,9.700000000000001,1.57,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.255,37.230000000000004,147.20000000000002,0.89,0.12,791,0.8,99,0.5
+2023,10,21,1,30,9.4,1.57,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.256,37.980000000000004,143.97,0.89,0.12,791,0.8,96,0.4
+2023,10,21,2,0,9.200000000000001,1.55,0.017,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.256,38.230000000000004,139.92000000000002,0.89,0.12,791,0.8,93,0.30000000000000004
+2023,10,21,2,30,8.700000000000001,1.55,0.017,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.256,39.54,135.28,0.89,0.12,791,0.8,49,0.2
+2023,10,21,3,0,8.3,1.52,0.018000000000000002,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.257,40.24,130.23,0.89,0.12,790,0.8,6,0.2
+2023,10,21,3,30,7.800000000000001,1.52,0.018000000000000002,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.257,41.62,124.9,0.89,0.12,790,0.8,163,0.2
+2023,10,21,4,0,7.300000000000001,1.5,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.257,42.34,119.39,0.89,0.12,790,0.8,320,0.30000000000000004
+2023,10,21,4,30,6.800000000000001,1.5,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.257,43.81,113.77,0.89,0.12,790,0.8,321,0.30000000000000004
+2023,10,21,5,0,6.300000000000001,1.48,0.02,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.257,44.94,108.09,0.89,0.12,790,0.8,322,0.4
+2023,10,21,5,30,6.1000000000000005,1.48,0.02,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.257,45.62,102.39,0.89,0.12,791,0.8,325,0.4
+2023,10,21,6,0,5.9,1.47,0.022,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.257,45.81,96.73,0.89,0.12,791,0.8,328,0.4
+2023,10,21,6,30,6.4,1.47,0.022,0.62,8,80,6,0,0,-4.9,8,80,0,6,0.257,44.26,91.14,0.89,0.12,791,0.8,330,0.4
+2023,10,21,7,0,6.9,1.45,0.023,0.62,23,467,60,0,0,-3.7,23,467,0,60,0.257,46.980000000000004,85.51,0.9,0.12,791,0.8,332,0.30000000000000004
+2023,10,21,7,30,8.6,1.45,0.023,0.62,34,671,148,0,0,-3.6,34,671,0,148,0.256,41.85,80.25,0.9,0.12,791,0.8,341,0.2
+2023,10,21,8,0,10.200000000000001,1.44,0.025,0.62,42,784,243,0,0,-4.1000000000000005,42,784,0,243,0.256,36.47,75.16,0.9,0.12,791,0.8,350,0.2
+2023,10,21,8,30,11.700000000000001,1.44,0.025,0.62,47,854,335,0,0,-4,47,854,0,335,0.256,33.02,70.32000000000001,0.9,0.12,791,0.8,277,0.30000000000000004
+2023,10,21,9,0,13.100000000000001,1.43,0.027,0.62,52,899,420,0,0,-4.4,52,899,0,420,0.256,29.26,65.82000000000001,0.9,0.12,791,0.9,203,0.5
+2023,10,21,9,30,14.9,1.43,0.027,0.62,55,931,496,0,0,-4.4,83,838,0,480,0.257,26.04,61.74,0.91,0.12,791,0.9,209,1.1
+2023,10,21,10,0,16.7,1.44,0.028,0.62,59,953,561,0,0,-4.1000000000000005,140,715,0,517,0.257,23.77,58.19,0.91,0.12,791,0.9,215,1.8
+2023,10,21,10,30,18,1.44,0.028,0.62,59,972,613,0,0,-4.1000000000000005,148,744,0,572,0.257,21.88,55.26,0.91,0.12,790,0.9,217,2.2
+2023,10,21,11,0,19.200000000000003,1.54,0.026000000000000002,0.62,60,982,650,0,0,-3.8000000000000003,68,961,0,645,0.258,20.78,53.09,0.9,0.12,790,1,220,2.5
+2023,10,21,11,30,20,1.54,0.026000000000000002,0.62,61,987,672,0,0,-3.8000000000000003,61,987,0,672,0.258,19.78,51.76,0.9,0.12,790,1,222,2.7
+2023,10,21,12,0,20.700000000000003,1.57,0.028,0.62,62,986,678,0,0,-3.5,62,986,0,678,0.259,19.330000000000002,51.33,0.91,0.12,790,1,224,2.8000000000000003
+2023,10,21,12,30,21.1,1.57,0.028,0.62,62,982,669,0,0,-3.6,62,982,0,669,0.259,18.84,51.84,0.91,0.12,789,1,226,2.9000000000000004
+2023,10,21,13,0,21.6,1.59,0.03,0.62,62,973,644,0,0,-3.3000000000000003,117,826,0,611,0.258,18.69,53.26,0.91,0.12,789,1.1,227,3
+2023,10,21,13,30,21.700000000000003,1.59,0.03,0.62,61,959,604,0,8,-3.3000000000000003,202,379,0,417,0.258,18.55,55.51,0.91,0.12,788,1.1,229,3
+2023,10,21,14,0,21.700000000000003,1.54,0.032,0.62,59,939,550,0,0,-2.9000000000000004,105,743,0,493,0.258,19.09,58.5,0.91,0.12,788,1.1,230,3
+2023,10,21,14,30,21.5,1.54,0.032,0.62,57,912,484,0,0,-2.9000000000000004,100,766,0,458,0.258,19.330000000000002,62.11,0.91,0.12,788,1.1,232,3
+2023,10,21,15,0,21.200000000000003,1.55,0.033,0.62,54,875,407,0,0,-2.6,98,688,0,375,0.257,20.14,66.23,0.91,0.12,788,1.1,234,2.9000000000000004
+2023,10,21,15,30,20.200000000000003,1.55,0.033,0.62,49,822,320,0,0,-2.6,94,521,0,266,0.257,21.41,70.77,0.92,0.12,788,1.1,237,2.3000000000000003
+2023,10,21,16,0,19.200000000000003,1.55,0.035,0.62,44,741,228,0,0,0.8,82,490,0,204,0.257,29.14,75.64,0.92,0.12,788,1.1,239,1.7000000000000002
+2023,10,21,16,30,17.1,1.55,0.035,0.62,36,611,134,2,3,0.8,81,118,29,100,0.257,33.230000000000004,80.76,0.92,0.12,788,1.1,251,1.4000000000000001
+2023,10,21,17,0,15,1.53,0.038,0.62,23,383,50,7,8,1.8,35,17,100,36,0.257,40.89,86.03,0.92,0.12,788,1.1,263,1.2000000000000002
+2023,10,21,17,30,14.100000000000001,1.53,0.038,0.62,3,31,2,2,3,1.8,1,0,29,1,0.257,43.33,91.68,0.93,0.12,788,1.2000000000000002,278,1.2000000000000002
+2023,10,21,18,0,13.200000000000001,1.5,0.043000000000000003,0.62,0,0,0,0,5,0.5,0,0,0,0,0.257,41.81,97.29,0.9400000000000001,0.12,788,1.2000000000000002,293,1.3
+2023,10,21,18,30,12.600000000000001,1.5,0.043000000000000003,0.62,0,0,0,0,5,0.5,0,0,0,0,0.257,43.480000000000004,102.96000000000001,0.9400000000000001,0.12,788,1.2000000000000002,309,1.6
+2023,10,21,19,0,12.100000000000001,1.49,0.045,0.62,0,0,0,0,8,0.8,0,0,0,0,0.257,46,108.67,0.9400000000000001,0.12,788,1.2000000000000002,324,2
+2023,10,21,19,30,11.4,1.49,0.045,0.62,0,0,0,0,3,0.8,0,0,0,0,0.258,48.17,114.35000000000001,0.9400000000000001,0.12,788,1.2000000000000002,331,2.5
+2023,10,21,20,0,10.700000000000001,1.52,0.042,0.62,0,0,0,0,5,2.3000000000000003,0,0,0,0,0.258,56.1,119.98,0.93,0.12,789,1.2000000000000002,338,3.1
+2023,10,21,20,30,9.8,1.52,0.042,0.62,0,0,0,0,8,2.3000000000000003,0,0,0,0,0.258,59.57,125.5,0.93,0.12,789,1.2000000000000002,343,2.8000000000000003
+2023,10,21,21,0,8.9,1.57,0.035,0.62,0,0,0,0,8,3.8000000000000003,0,0,0,0,0.258,70.46000000000001,130.83,0.93,0.12,789,1.2000000000000002,348,2.6
+2023,10,21,21,30,8.1,1.57,0.035,0.62,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.258,74.37,135.88,0.92,0.12,789,1.2000000000000002,177,2
+2023,10,21,22,0,7.300000000000001,1.56,0.034,0.62,0,0,0,0,0,4.4,0,0,0,0,0.258,82.08,140.51,0.92,0.12,789,1.2000000000000002,6,1.4000000000000001
+2023,10,21,22,30,7,1.56,0.034,0.62,0,0,0,0,0,4.4,0,0,0,0,0.258,83.78,144.53,0.93,0.12,789,1.2000000000000002,19,1.2000000000000002
+2023,10,21,23,0,6.7,1.53,0.038,0.62,0,0,0,0,0,4.7,0,0,0,0,0.257,87.11,147.71,0.93,0.12,789,1.2000000000000002,32,1
+2023,10,21,23,30,6.5,1.53,0.038,0.62,0,0,0,0,0,4.7,0,0,0,0,0.256,88.31,149.76,0.92,0.12,789,1.2000000000000002,43,1
+2023,10,22,0,0,6.300000000000001,1.54,0.037,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.255,89.97,150.44,0.92,0.12,789,1.2000000000000002,55,1
+2023,10,22,0,30,6.2,1.54,0.037,0.62,0,0,0,0,5,4.800000000000001,0,0,0,0,0.254,90.59,149.66,0.91,0.12,789,1.2000000000000002,64,0.9
+2023,10,22,1,0,6,1.57,0.031,0.62,0,0,0,0,0,4.7,0,0,0,0,0.253,91.29,147.51,0.9,0.12,789,1.2000000000000002,72,0.9
+2023,10,22,1,30,5.9,1.57,0.031,0.62,0,0,0,0,0,4.7,0,0,0,0,0.253,91.81,144.26,0.89,0.12,788,1.2000000000000002,79,0.9
+2023,10,22,2,0,5.800000000000001,1.57,0.029,0.62,0,0,0,0,0,4.4,0,0,0,0,0.253,90.78,140.18,0.89,0.12,788,1.2000000000000002,86,0.8
+2023,10,22,2,30,5.800000000000001,1.57,0.029,0.62,0,0,0,0,0,4.4,0,0,0,0,0.254,90.78,135.52,0.89,0.12,788,1.1,87,0.7000000000000001
+2023,10,22,3,0,5.800000000000001,1.57,0.028,0.62,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.255,88.63,130.45,0.89,0.12,788,1.1,88,0.6000000000000001
+2023,10,22,3,30,5.7,1.57,0.028,0.62,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.255,89.25,125.11,0.89,0.12,788,1.1,71,0.5
+2023,10,22,4,0,5.7,1.57,0.027,0.62,0,0,0,0,0,3.7,0,0,0,0,0.256,87.24,119.59,0.89,0.12,788,1.1,55,0.4
+2023,10,22,4,30,5.5,1.57,0.027,0.62,0,0,0,0,0,3.7,0,0,0,0,0.256,88.45,113.96000000000001,0.89,0.12,788,1,36,0.4
+2023,10,22,5,0,5.300000000000001,1.57,0.026000000000000002,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.257,87.76,108.28,0.88,0.12,788,1,17,0.4
+2023,10,22,5,30,5.1000000000000005,1.57,0.026000000000000002,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.258,88.99,102.59,0.88,0.12,788,1,10,0.4
+2023,10,22,6,0,4.9,1.57,0.026000000000000002,0.62,0,0,0,0,0,3.1,0,0,0,0,0.258,88.23,96.93,0.88,0.12,788,1,4,0.4
+2023,10,22,6,30,5.4,1.57,0.026000000000000002,0.62,4,41,3,0,0,3.1,4,41,0,3,0.259,85.33,91.34,0.88,0.12,789,1,8,0.4
+2023,10,22,7,0,5.9,1.56,0.025,0.62,23,444,56,0,0,3,23,444,0,56,0.259,81.89,85.72,0.88,0.12,789,1,12,0.4
+2023,10,22,7,30,7.5,1.56,0.025,0.62,33,656,142,0,0,3,33,656,0,142,0.26,73.39,80.47,0.88,0.12,789,0.9,24,0.5
+2023,10,22,8,0,9.200000000000001,1.55,0.025,0.62,42,775,237,0,0,2.9000000000000004,42,775,0,237,0.26,64.86,75.39,0.88,0.12,789,0.9,36,0.6000000000000001
+2023,10,22,8,30,11.200000000000001,1.55,0.025,0.62,46,850,329,0,0,2.9000000000000004,46,850,0,329,0.261,56.76,70.57000000000001,0.88,0.12,789,0.9,159,0.4
+2023,10,22,9,0,13.3,1.54,0.024,0.62,50,900,415,0,0,2.2,50,900,0,415,0.261,46.9,66.08,0.89,0.12,789,0.9,283,0.2
+2023,10,22,9,30,14.9,1.54,0.024,0.62,53,935,492,0,0,2.2,53,935,0,492,0.262,42.29,62.02,0.89,0.12,789,0.9,258,0.6000000000000001
+2023,10,22,10,0,16.6,1.52,0.023,0.62,55,960,557,0,0,-0.2,55,960,0,557,0.262,32.05,58.49,0.89,0.12,788,0.9,233,1
+2023,10,22,10,30,17.400000000000002,1.52,0.023,0.62,56,979,609,0,0,-0.1,56,979,0,609,0.263,30.47,55.58,0.88,0.12,788,0.9,230,1.2000000000000002
+2023,10,22,11,0,18.1,1.61,0.021,0.62,55,993,647,0,0,-1.4000000000000001,55,993,0,647,0.263,26.53,53.42,0.88,0.12,788,0.8,226,1.5
+2023,10,22,11,30,18.6,1.61,0.021,0.62,56,999,670,0,0,-1.5,56,999,0,670,0.263,25.68,52.1,0.88,0.12,787,0.8,225,1.7000000000000002
+2023,10,22,12,0,19.1,1.57,0.021,0.62,57,1002,678,0,0,-2.4000000000000004,57,1002,0,678,0.263,23.150000000000002,51.69,0.88,0.12,787,0.8,225,1.9000000000000001
+2023,10,22,12,30,19.400000000000002,1.57,0.021,0.62,56,1000,669,0,0,-2.4000000000000004,56,1000,0,669,0.263,22.73,52.2,0.89,0.12,787,0.8,224,2.1
+2023,10,22,13,0,19.6,1.53,0.022,0.62,56,992,645,0,0,-3.3000000000000003,56,992,0,645,0.263,21.1,53.61,0.89,0.12,786,0.8,223,2.3000000000000003
+2023,10,22,13,30,19.700000000000003,1.53,0.022,0.62,56,979,606,0,0,-3.3000000000000003,56,979,0,606,0.262,20.97,55.85,0.89,0.12,786,0.8,222,2.4000000000000004
+2023,10,22,14,0,19.700000000000003,1.3900000000000001,0.024,0.62,55,960,552,0,0,-3.7,55,960,0,552,0.262,20.26,58.83,0.9,0.12,786,0.8,220,2.5
+2023,10,22,14,30,19.5,1.3900000000000001,0.024,0.62,53,935,486,0,0,-3.8000000000000003,53,935,0,486,0.261,20.48,62.43,0.9,0.12,785,0.8,219,2.5
+2023,10,22,15,0,19.200000000000003,1.3900000000000001,0.025,0.62,50,899,408,0,0,-3.9000000000000004,50,899,0,408,0.261,20.71,66.54,0.9,0.12,785,0.8,217,2.5
+2023,10,22,15,30,18.400000000000002,1.3900000000000001,0.025,0.62,46,848,321,0,0,-3.9000000000000004,64,762,0,311,0.261,21.77,71.07000000000001,0.9,0.12,785,0.8,213,2.1
+2023,10,22,16,0,17.6,1.3900000000000001,0.025,0.62,40,771,228,0,8,-0.7000000000000001,101,343,0,184,0.261,28.85,75.92,0.9,0.12,785,0.8,209,1.6
+2023,10,22,16,30,15.9,1.3900000000000001,0.025,0.62,34,644,134,3,8,-0.7000000000000001,65,315,50,114,0.261,32.13,81.03,0.9,0.12,785,0.8,203,1.4000000000000001
+2023,10,22,17,0,14.100000000000001,1.37,0.026000000000000002,0.62,22,411,49,6,8,0.2,29,41,86,32,0.262,38.54,86.29,0.9,0.12,785,0.8,196,1.1
+2023,10,22,17,30,13.3,1.37,0.026000000000000002,0.62,3,34,2,0,0,0.2,3,34,0,2,0.262,40.59,91.94,0.9,0.12,785,0.9,189,1.2000000000000002
+2023,10,22,18,0,12.5,1.32,0.029,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,38.49,97.54,0.91,0.12,785,0.9,182,1.3
+2023,10,22,18,30,11.8,1.32,0.029,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,40.300000000000004,103.22,0.91,0.12,785,0.9,178,1.3
+2023,10,22,19,0,11.100000000000001,1.27,0.031,0.62,0,0,0,0,7,-1.3,0,0,0,0,0.263,42.12,108.92,0.91,0.12,785,0.9,174,1.4000000000000001
+2023,10,22,19,30,10.700000000000001,1.27,0.031,0.62,0,0,0,0,8,-1.3,0,0,0,0,0.263,43.25,114.61,0.91,0.12,785,0.9,173,1.4000000000000001
+2023,10,22,20,0,10.3,1.25,0.033,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.263,44.92,120.24000000000001,0.91,0.12,785,0.9,172,1.4000000000000001
+2023,10,22,20,30,10.100000000000001,1.25,0.033,0.62,0,0,0,0,8,-1.1,0,0,0,0,0.263,45.52,125.77,0.91,0.12,785,0.9,173,1.4000000000000001
+2023,10,22,21,0,9.9,1.26,0.033,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.263,46.86,131.11,0.91,0.12,784,0.9,174,1.4000000000000001
+2023,10,22,21,30,9.700000000000001,1.26,0.033,0.62,0,0,0,0,8,-0.9,0,0,0,0,0.263,47.5,136.17000000000002,0.91,0.12,784,0.9,176,1.4000000000000001
+2023,10,22,22,0,9.5,1.3,0.033,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.262,48.32,140.81,0.91,0.12,784,0.9,178,1.4000000000000001
+2023,10,22,22,30,9.3,1.3,0.033,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.262,48.97,144.86,0.91,0.12,784,0.9,180,1.4000000000000001
+2023,10,22,23,0,9,1.3800000000000001,0.033,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.262,49.27,148.05,0.91,0.12,784,0.9,182,1.4000000000000001
+2023,10,22,23,30,8.8,1.3800000000000001,0.033,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.262,49.94,150.12,0.91,0.12,784,0.9,181,1.4000000000000001
+2023,10,23,0,0,8.700000000000001,1.48,0.033,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.261,49.53,150.79,0.91,0.12,784,0.9,180,1.4000000000000001
+2023,10,23,0,30,8.3,1.48,0.033,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.261,50.89,149.99,0.91,0.12,784,0.9,178,1.4000000000000001
+2023,10,23,1,0,8,1.56,0.034,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.261,50.51,147.82,0.91,0.12,784,0.9,176,1.4000000000000001
+2023,10,23,1,30,7.6000000000000005,1.56,0.034,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.26,51.84,144.55,0.91,0.12,783,1,176,1.4000000000000001
+2023,10,23,2,0,7.1000000000000005,1.6,0.035,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.26,51.79,140.44,0.91,0.12,783,1,176,1.5
+2023,10,23,2,30,6.7,1.6,0.035,0.62,0,0,0,0,6,-2.2,0,0,0,0,0.26,53.230000000000004,135.76,0.91,0.12,783,1,177,1.5
+2023,10,23,3,0,6.300000000000001,1.58,0.039,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.26,53.300000000000004,130.68,0.91,0.12,783,1,177,1.5
+2023,10,23,3,30,6,1.58,0.039,0.62,0,0,0,0,8,-2.5,0,0,0,0,0.26,54.410000000000004,125.32000000000001,0.92,0.12,783,1,178,1.5
+2023,10,23,4,0,5.7,1.53,0.043000000000000003,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.261,54.660000000000004,119.79,0.92,0.12,783,1,178,1.5
+2023,10,23,4,30,5.5,1.53,0.043000000000000003,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.261,55.42,114.16,0.92,0.12,783,1,179,1.5
+2023,10,23,5,0,5.2,1.46,0.047,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.261,55.910000000000004,108.47,0.93,0.12,783,1,179,1.5
+2023,10,23,5,30,5.1000000000000005,1.46,0.047,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.262,56.300000000000004,102.78,0.93,0.12,783,1,180,1.5
+2023,10,23,6,0,4.9,1.41,0.05,0.62,0,0,0,0,5,-3,0,0,0,0,0.262,56.68,97.13,0.93,0.12,784,1,181,1.5
+2023,10,23,6,30,5.6000000000000005,1.41,0.05,0.62,4,29,3,2,3,-3,1,7,25,1,0.261,53.99,91.55,0.92,0.12,784,1,181,1.5
+2023,10,23,7,0,6.4,1.3900000000000001,0.048,0.62,25,366,51,7,4,-2.5,27,8,96,28,0.261,53.08,85.93,0.92,0.12,784,1,182,1.6
+2023,10,23,7,30,8,1.3900000000000001,0.048,0.62,39,597,135,1,0,-2.5,52,451,14,125,0.26,47.59,80.7,0.92,0.12,784,1,186,2
+2023,10,23,8,0,9.600000000000001,1.4000000000000001,0.044,0.62,47,731,228,0,0,-2.9000000000000004,56,655,0,219,0.259,41.42,75.63,0.91,0.12,784,1,191,2.3000000000000003
+2023,10,23,8,30,11.5,1.4000000000000001,0.044,0.62,53,815,321,0,0,-2.9000000000000004,53,815,0,321,0.258,36.51,70.82000000000001,0.91,0.12,784,0.9,197,2.9000000000000004
+2023,10,23,9,0,13.5,1.42,0.041,0.62,57,872,407,0,0,-3.2,57,872,0,407,0.257,31.330000000000002,66.35,0.9,0.12,784,0.9,204,3.4000000000000004
+2023,10,23,9,30,15.200000000000001,1.42,0.041,0.62,61,910,484,0,0,-3.2,83,824,0,466,0.256,28.080000000000002,62.300000000000004,0.9,0.12,784,0.9,207,3.8000000000000003
+2023,10,23,10,0,16.900000000000002,1.42,0.039,0.62,63,939,550,0,0,-2.5,63,939,0,550,0.255,26.5,58.79,0.9,0.12,784,0.9,210,4.3
+2023,10,23,10,30,17.7,1.42,0.039,0.62,63,964,603,0,0,-2.5,63,964,0,603,0.254,25.2,55.9,0.9,0.12,784,0.8,211,4.7
+2023,10,23,11,0,18.6,1.23,0.029,0.62,61,982,642,0,0,-1.9000000000000001,61,982,0,642,0.254,24.91,53.76,0.9,0.12,784,0.8,211,5.1000000000000005
+2023,10,23,11,30,19,1.23,0.029,0.62,62,989,665,0,0,-1.9000000000000001,62,989,0,665,0.253,24.3,52.45,0.9,0.12,784,0.8,212,5.4
+2023,10,23,12,0,19.400000000000002,1.17,0.028,0.62,62,991,672,0,0,-1.9000000000000001,62,991,0,672,0.253,23.6,52.04,0.9,0.12,784,0.8,212,5.6000000000000005
+2023,10,23,12,30,19.6,1.17,0.028,0.62,62,988,663,0,0,-1.9000000000000001,113,836,0,621,0.253,23.28,52.550000000000004,0.9,0.12,783,0.9,213,5.7
+2023,10,23,13,0,19.8,1.16,0.028,0.62,61,981,638,0,0,-2.1,69,956,0,631,0.253,22.8,53.96,0.91,0.12,783,0.9,213,5.7
+2023,10,23,13,30,19.700000000000003,1.16,0.028,0.62,60,967,598,0,0,-2.1,63,933,0,582,0.252,22.94,56.2,0.91,0.12,783,0.9,213,5.7
+2023,10,23,14,0,19.700000000000003,1.1300000000000001,0.027,0.62,58,949,544,0,0,-2.2,58,949,0,544,0.252,22.76,59.160000000000004,0.91,0.12,783,0.9,213,5.6000000000000005
+2023,10,23,14,30,19.400000000000002,1.1300000000000001,0.027,0.62,55,923,478,0,0,-2.2,55,923,0,478,0.253,23.18,62.74,0.91,0.12,783,0.9,213,5.6000000000000005
+2023,10,23,15,0,19.1,1.09,0.027,0.62,51,887,400,0,0,-2.4000000000000004,51,887,0,400,0.253,23.28,66.84,0.91,0.12,783,0.9,214,5.5
+2023,10,23,15,30,18.400000000000002,1.09,0.027,0.62,47,834,314,0,0,-2.4000000000000004,61,755,0,302,0.253,24.310000000000002,71.36,0.91,0.12,783,0.9,215,5.1000000000000005
+2023,10,23,16,0,17.7,1.01,0.027,0.62,42,752,221,0,3,-2.2,87,273,0,152,0.253,25.64,76.2,0.91,0.12,783,0.9,217,4.6000000000000005
+2023,10,23,16,30,15.4,1.01,0.027,0.62,34,621,128,0,0,-2.3000000000000003,41,330,0,91,0.254,29.66,81.3,0.91,0.12,783,0.9,219,3.4000000000000004
+2023,10,23,17,0,13.100000000000001,0.99,0.027,0.62,22,351,43,0,0,-0.8,22,316,7,41,0.254,38.24,86.54,0.91,0.12,783,0.9,221,2.3000000000000003
+2023,10,23,17,30,11.9,0.99,0.027,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.255,41.36,92.2,0.91,0.12,783,0.9,223,2.1
+2023,10,23,18,0,10.700000000000001,0.99,0.026000000000000002,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.256,44.79,97.79,0.91,0.12,784,0.9,225,2
+2023,10,23,18,30,10.100000000000001,0.99,0.026000000000000002,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.257,46.61,103.46000000000001,0.9,0.12,784,0.9,226,1.9000000000000001
+2023,10,23,19,0,9.5,1.02,0.028,0.62,0,0,0,0,0,-1,0,0,0,0,0.257,47.83,109.17,0.9,0.12,784,0.8,228,1.9000000000000001
+2023,10,23,19,30,8.9,1.02,0.028,0.62,0,0,0,0,0,-1,0,0,0,0,0.258,49.79,114.86,0.9,0.12,784,0.8,229,1.8
+2023,10,23,20,0,8.4,1.09,0.034,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.258,50.550000000000004,120.5,0.9,0.12,785,0.8,231,1.7000000000000002
+2023,10,23,20,30,8,1.09,0.034,0.62,0,0,0,0,3,-1.3,0,0,0,0,0.258,51.93,126.03,0.9,0.12,785,0.8,234,1.6
+2023,10,23,21,0,7.6000000000000005,1.16,0.043000000000000003,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.259,52.160000000000004,131.38,0.9,0.12,785,0.8,237,1.6
+2023,10,23,21,30,7.2,1.16,0.043000000000000003,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.259,53.6,136.45,0.9,0.12,785,0.8,243,1.5
+2023,10,23,22,0,6.9,1.24,0.051000000000000004,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.26,53.68,141.11,0.9,0.12,785,0.8,249,1.4000000000000001
+2023,10,23,22,30,6.6000000000000005,1.24,0.051000000000000004,0.62,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.26,54.79,145.18,0.9,0.12,785,0.7000000000000001,260,1.3
+2023,10,23,23,0,6.2,1.3,0.058,0.62,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.26,56.17,148.39000000000001,0.9,0.12,785,0.7000000000000001,270,1.1
+2023,10,23,23,30,6,1.3,0.058,0.62,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.261,56.95,150.47,0.9,0.12,785,0.7000000000000001,282,1.1
+2023,10,24,0,0,5.7,1.36,0.061,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.261,59.29,151.14000000000001,0.9,0.12,785,0.7000000000000001,293,1
+2023,10,24,0,30,5.5,1.36,0.061,0.62,0,0,0,0,5,-1.6,0,0,0,0,0.261,60.19,150.33,0.9,0.12,786,0.7000000000000001,306,0.9
+2023,10,24,1,0,5.300000000000001,1.4000000000000001,0.062,0.62,0,0,0,0,4,-1,0,0,0,0,0.262,63.88,148.14000000000001,0.9,0.12,786,0.7000000000000001,319,0.8
+2023,10,24,1,30,5.1000000000000005,1.4000000000000001,0.062,0.62,0,0,0,0,0,-1,0,0,0,0,0.262,64.78,144.83,0.9,0.12,786,0.8,331,0.8
+2023,10,24,2,0,4.9,1.44,0.063,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.262,69.26,140.70000000000002,0.9,0.12,786,0.8,343,0.7000000000000001
+2023,10,24,2,30,4.5,1.44,0.063,0.62,0,0,0,0,4,-0.30000000000000004,0,0,0,0,0.263,71.22,136,0.9,0.12,786,0.8,351,0.7000000000000001
+2023,10,24,3,0,4.2,1.47,0.064,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.263,75.97,130.9,0.9,0.12,786,0.8,358,0.8
+2023,10,24,3,30,3.9000000000000004,1.47,0.064,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.264,77.59,125.53,0.9,0.12,786,0.8,359,0.8
+2023,10,24,4,0,3.5,1.5,0.067,0.62,0,0,0,0,0,0.9,0,0,0,0,0.264,82.92,119.99000000000001,0.9,0.12,786,0.8,360,0.9
+2023,10,24,4,30,3.3000000000000003,1.5,0.067,0.62,0,0,0,0,0,0.9,0,0,0,0,0.265,84.2,114.36,0.9,0.12,787,0.8,359,1
+2023,10,24,5,0,3.1,1.52,0.069,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.265,88.78,108.67,0.9,0.12,787,0.8,358,1.1
+2023,10,24,5,30,2.7,1.52,0.069,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.265,91.33,102.98,0.9,0.12,787,0.8,180,1.2000000000000002
+2023,10,24,6,0,2.4000000000000004,1.52,0.069,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.266,96.44,97.33,0.9,0.12,787,0.8,2,1.2000000000000002
+2023,10,24,6,30,2.9000000000000004,1.52,0.069,0.62,3,23,2,0,0,1.9000000000000001,3,23,0,2,0.265,93.08,91.75,0.91,0.12,787,0.8,4,1.4000000000000001
+2023,10,24,7,0,3.5,1.5,0.066,0.62,26,324,48,0,0,2.3000000000000003,26,324,0,48,0.265,92.14,86.13,0.91,0.12,788,0.8,6,1.6
+2023,10,24,7,30,4.9,1.5,0.066,0.62,41,562,130,0,0,2.3000000000000003,41,562,0,130,0.265,83.54,80.91,0.91,0.12,788,0.8,11,2
+2023,10,24,8,0,6.4,1.47,0.061,0.62,51,703,223,0,5,2.7,107,208,0,158,0.265,77.42,75.86,0.91,0.12,788,0.8,16,2.4000000000000004
+2023,10,24,8,30,8.1,1.47,0.061,0.62,58,792,315,0,5,2.7,190,65,0,211,0.264,68.94,71.06,0.91,0.12,788,0.8,14,2.2
+2023,10,24,9,0,9.9,1.45,0.055,0.62,62,853,401,0,0,2.3000000000000003,106,681,0,376,0.264,59.02,66.61,0.91,0.12,788,0.8,12,2
+2023,10,24,9,30,11.4,1.45,0.055,0.62,66,893,477,0,0,2.3000000000000003,66,893,0,477,0.264,53.42,62.58,0.91,0.12,788,0.8,169,1.4000000000000001
+2023,10,24,10,0,12.8,1.43,0.052000000000000005,0.62,69,923,543,0,0,0.7000000000000001,117,755,0,505,0.263,43.6,59.08,0.91,0.12,788,0.8,325,0.8
+2023,10,24,10,30,13.9,1.43,0.052000000000000005,0.62,66,955,597,0,7,0.7000000000000001,195,508,0,477,0.263,40.6,56.22,0.91,0.12,788,0.8,285,1.3
+2023,10,24,11,0,15.100000000000001,1.33,0.026000000000000002,0.62,60,985,638,0,7,-0.9,209,508,0,507,0.263,33.32,54.09,0.9,0.12,788,0.8,244,1.8
+2023,10,24,11,30,15.700000000000001,1.33,0.026000000000000002,0.62,60,992,660,0,7,-0.9,247,428,0,506,0.263,32.03,52.79,0.9,0.12,787,0.8,238,2.3000000000000003
+2023,10,24,12,0,16.400000000000002,1.33,0.025,0.62,60,994,667,0,7,-2.1,180,653,0,579,0.264,28.17,52.38,0.9,0.12,787,0.8,231,2.8000000000000003
+2023,10,24,12,30,16.7,1.33,0.025,0.62,60,992,658,0,0,-2.1,120,806,0,606,0.263,27.6,52.9,0.9,0.12,786,0.8,227,3.2
+2023,10,24,13,0,17,1.32,0.025,0.62,59,986,634,0,7,-2.8000000000000003,162,659,0,547,0.263,25.64,54.300000000000004,0.9,0.12,786,0.8,224,3.6
+2023,10,24,13,30,17.1,1.32,0.025,0.62,57,975,595,0,7,-2.8000000000000003,168,620,0,510,0.263,25.48,56.53,0.9,0.12,786,0.8,223,3.8000000000000003
+2023,10,24,14,0,17.1,1.31,0.025,0.62,56,957,542,0,0,-3.4000000000000004,87,847,0,517,0.263,24.400000000000002,59.480000000000004,0.9,0.12,786,0.8,222,4
+2023,10,24,14,30,16.8,1.31,0.025,0.62,54,932,476,0,0,-3.4000000000000004,54,932,0,476,0.264,24.87,63.06,0.9,0.12,786,0.8,222,3.9000000000000004
+2023,10,24,15,0,16.6,1.33,0.024,0.62,50,897,398,0,0,-4,50,897,0,398,0.264,24.17,67.14,0.9,0.12,786,0.8,223,3.9000000000000004
+2023,10,24,15,30,15.8,1.33,0.024,0.62,45,846,311,0,0,-4,45,846,0,311,0.264,25.43,71.64,0.9,0.12,786,0.8,222,3.3000000000000003
+2023,10,24,16,0,15.100000000000001,1.34,0.023,0.62,40,767,219,0,0,-3.6,40,767,0,219,0.264,27.35,76.48,0.9,0.12,786,0.8,220,2.7
+2023,10,24,16,30,12.9,1.34,0.023,0.62,31,638,125,0,0,-3.6,31,638,0,125,0.264,31.53,81.56,0.9,0.12,786,0.7000000000000001,214,1.9000000000000001
+2023,10,24,17,0,10.700000000000001,1.35,0.022,0.62,20,367,41,0,0,-1.4000000000000001,20,367,0,41,0.264,43.08,86.79,0.89,0.12,786,0.7000000000000001,208,1.2000000000000002
+2023,10,24,17,30,10,1.35,0.022,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.263,45.14,92.45,0.89,0.12,786,0.7000000000000001,201,1.2000000000000002
+2023,10,24,18,0,9.3,1.37,0.022,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.262,43.71,98.04,0.89,0.12,786,0.7000000000000001,194,1.3
+2023,10,24,18,30,8.8,1.37,0.022,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.261,45.21,103.71000000000001,0.9,0.12,786,0.7000000000000001,192,1.3
+2023,10,24,19,0,8.3,1.3800000000000001,0.023,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.261,46.14,109.41,0.9,0.12,787,0.8,190,1.3
+2023,10,24,19,30,7.800000000000001,1.3800000000000001,0.023,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.26,47.730000000000004,115.10000000000001,0.9,0.12,787,0.8,191,1.4000000000000001
+2023,10,24,20,0,7.300000000000001,1.3900000000000001,0.024,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.26,48.92,120.75,0.9,0.12,787,0.8,191,1.4000000000000001
+2023,10,24,20,30,6.800000000000001,1.3900000000000001,0.024,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.26,50.620000000000005,126.28,0.9,0.12,787,0.8,194,1.4000000000000001
+2023,10,24,21,0,6.2,1.42,0.027,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.26,52.43,131.64000000000001,0.9,0.12,787,0.8,196,1.5
+2023,10,24,21,30,5.800000000000001,1.42,0.027,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.261,53.9,136.73,0.9,0.12,787,0.8,198,1.5
+2023,10,24,22,0,5.4,1.47,0.032,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.262,55.34,141.41,0.9,0.12,787,0.8,199,1.5
+2023,10,24,22,30,5.1000000000000005,1.47,0.032,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.263,56.5,145.49,0.9,0.12,787,0.8,200,1.6
+2023,10,24,23,0,4.800000000000001,1.53,0.038,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.264,57.59,148.73,0.9,0.12,787,0.8,200,1.6
+2023,10,24,23,30,4.5,1.53,0.038,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.264,58.800000000000004,150.81,0.9,0.12,787,0.8,200,1.6
+2023,10,25,0,0,4.3,1.53,0.04,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.264,59.5,151.49,0.91,0.12,787,0.8,199,1.6
+2023,10,25,0,30,4,1.53,0.04,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.262,60.76,150.66,0.9,0.12,787,0.7000000000000001,197,1.6
+2023,10,25,1,0,3.8000000000000003,1.47,0.033,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.26,61.410000000000004,148.44,0.9,0.12,787,0.7000000000000001,195,1.6
+2023,10,25,1,30,3.6,1.47,0.033,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.259,62.28,145.11,0.9,0.12,787,0.7000000000000001,191,1.6
+2023,10,25,2,0,3.4000000000000004,1.35,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.258,62.92,140.96,0.9,0.12,787,0.7000000000000001,188,1.6
+2023,10,25,2,30,3.2,1.35,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.257,63.82,136.23,0.9,0.12,787,0.7000000000000001,186,1.7000000000000002
+2023,10,25,3,0,3,1.25,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.257,64.28,131.12,0.89,0.12,787,0.7000000000000001,185,1.7000000000000002
+2023,10,25,3,30,2.8000000000000003,1.25,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.257,65.11,125.74000000000001,0.89,0.12,786,0.7000000000000001,187,1.7000000000000002
+2023,10,25,4,0,2.7,1.21,0.019,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.256,64.94,120.19,0.89,0.12,786,0.7000000000000001,188,1.8
+2023,10,25,4,30,2.5,1.21,0.019,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.257,65.95,114.55,0.89,0.12,787,0.7000000000000001,191,1.8
+2023,10,25,5,0,2.3000000000000003,1.21,0.02,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.257,66.3,108.86,0.9,0.12,787,0.7000000000000001,194,1.8
+2023,10,25,5,30,2.1,1.21,0.02,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.257,67.25,103.17,0.9,0.12,787,0.7000000000000001,194,1.8
+2023,10,25,6,0,1.9000000000000001,1.23,0.02,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.257,67.91,97.53,0.9,0.12,787,0.7000000000000001,194,1.8
+2023,10,25,6,30,2.7,1.23,0.02,0.62,3,38,2,0,0,-3.4000000000000004,3,38,0,2,0.256,64.15,91.95,0.9,0.12,787,0.7000000000000001,193,1.9000000000000001
+2023,10,25,7,0,3.5,1.25,0.02,0.62,21,434,49,0,0,-3.1,21,434,0,49,0.256,61.870000000000005,86.34,0.9,0.12,787,0.7000000000000001,191,2
+2023,10,25,7,30,5.5,1.25,0.02,0.62,32,660,134,0,0,-3.1,32,660,0,134,0.257,53.800000000000004,81.14,0.9,0.12,787,0.7000000000000001,193,2.6
+2023,10,25,8,0,7.4,1.26,0.02,0.62,40,784,228,0,0,-2.7,40,784,0,228,0.257,48.69,76.09,0.9,0.12,787,0.7000000000000001,195,3.3000000000000003
+2023,10,25,8,30,9.3,1.26,0.02,0.62,44,860,320,0,0,-2.7,44,860,0,320,0.256,42.82,71.31,0.9,0.12,787,0.7000000000000001,204,4.1000000000000005
+2023,10,25,9,0,11.3,1.27,0.021,0.62,49,909,406,0,0,-3.4000000000000004,49,909,0,406,0.256,35.49,66.87,0.9,0.12,787,0.7000000000000001,213,4.9
+2023,10,25,9,30,12.5,1.27,0.021,0.62,51,943,481,0,0,-3.4000000000000004,51,943,0,481,0.255,32.8,62.86,0.9,0.12,787,0.7000000000000001,216,5.4
+2023,10,25,10,0,13.8,1.26,0.021,0.62,53,965,545,0,0,-4.3,53,965,0,545,0.255,28.34,59.38,0.9,0.12,787,0.8,219,5.9
+2023,10,25,10,30,14.5,1.26,0.021,0.62,54,982,596,0,0,-4.3,54,982,0,596,0.254,27.080000000000002,56.53,0.9,0.12,787,0.8,219,6.1000000000000005
+2023,10,25,11,0,15.200000000000001,1.49,0.017,0.62,52,997,632,0,0,-4.6000000000000005,52,997,0,632,0.253,25.26,54.410000000000004,0.89,0.12,787,0.8,219,6.300000000000001
+2023,10,25,11,30,15.700000000000001,1.49,0.017,0.62,53,1002,654,0,0,-4.6000000000000005,103,864,0,621,0.252,24.44,53.13,0.89,0.12,786,0.8,218,6.300000000000001
+2023,10,25,12,0,16.2,1.48,0.016,0.62,53,1003,660,0,8,-4.9,174,645,7,565,0.252,23.21,52.730000000000004,0.9,0.12,786,0.9,218,6.4
+2023,10,25,12,30,16.5,1.48,0.016,0.62,53,1000,651,1,7,-4.9,208,519,18,519,0.251,22.77,53.25,0.9,0.12,786,0.9,219,6.4
+2023,10,25,13,0,16.8,1.46,0.016,0.62,53,991,626,0,8,-5.1000000000000005,138,728,0,559,0.25,21.93,54.65,0.9,0.12,785,0.9,219,6.4
+2023,10,25,13,30,16.8,1.46,0.016,0.62,50,980,586,0,7,-5.1000000000000005,200,505,0,476,0.249,21.93,56.86,0.9,0.12,785,0.9,219,6.4
+2023,10,25,14,0,16.900000000000002,1.48,0.016,0.62,49,963,533,0,7,-5.300000000000001,198,459,0,429,0.248,21.47,59.81,0.9,0.12,785,0.9,219,6.4
+2023,10,25,14,30,16.7,1.48,0.016,0.62,46,938,467,0,7,-5.300000000000001,210,321,0,354,0.249,21.740000000000002,63.36,0.9,0.12,785,0.9,218,6.300000000000001
+2023,10,25,15,0,16.5,1.48,0.016,0.62,44,902,390,0,7,-5.4,172,359,0,310,0.249,21.79,67.44,0.9,0.12,785,0.9,217,6.2
+2023,10,25,15,30,15.9,1.48,0.016,0.62,41,849,304,0,7,-5.4,137,326,0,238,0.249,22.63,71.93,0.9,0.12,785,0.9,215,5.800000000000001
+2023,10,25,16,0,15.200000000000001,1.48,0.017,0.62,37,770,213,0,7,-5.2,100,100,0,123,0.25,24.16,76.75,0.9,0.12,785,0.9,213,5.300000000000001
+2023,10,25,16,30,13.200000000000001,1.48,0.017,0.62,29,637,120,4,7,-5.2,65,45,57,71,0.251,27.490000000000002,81.82000000000001,0.9,0.12,785,0.9,208,4.2
+2023,10,25,17,0,11.100000000000001,1.46,0.018000000000000002,0.62,19,362,38,7,6,-3.9000000000000004,22,4,100,22,0.251,34.62,87.04,0.9,0.12,785,0.9,204,3.1
+2023,10,25,17,30,10.200000000000001,1.46,0.018000000000000002,0.62,0,0,0,1,6,-3.9000000000000004,0,0,14,0,0.252,36.75,92.7,0.91,0.12,785,0.9,201,3.2
+2023,10,25,18,0,9.3,1.44,0.019,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.253,40.21,98.28,0.91,0.12,785,0.9,198,3.3000000000000003
+2023,10,25,18,30,8.8,1.44,0.019,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.254,41.59,103.95,0.91,0.12,785,0.9,195,3.3000000000000003
+2023,10,25,19,0,8.4,1.42,0.02,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.256,43.77,109.65,0.91,0.12,785,0.9,193,3.3000000000000003
+2023,10,25,19,30,7.7,1.42,0.02,0.62,0,0,0,0,7,-3.2,0,0,0,0,0.257,45.9,115.34,0.91,0.12,785,0.9,190,3
+2023,10,25,20,0,7.1000000000000005,1.3900000000000001,0.02,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.258,48.89,120.99000000000001,0.91,0.12,785,0.9,188,2.8000000000000003
+2023,10,25,20,30,6.7,1.3900000000000001,0.02,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.259,50.24,126.53,0.91,0.12,785,1,188,2.7
+2023,10,25,21,0,6.4,1.34,0.022,0.62,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.259,51.63,131.9,0.91,0.12,785,1,188,2.6
+2023,10,25,21,30,6.1000000000000005,1.34,0.022,0.62,0,0,0,0,8,-2.9000000000000004,0,0,0,0,0.26,52.64,137,0.92,0.12,784,1,188,2.6
+2023,10,25,22,0,5.9,1.3,0.023,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.261,53.38,141.70000000000002,0.92,0.12,784,1,189,2.6
+2023,10,25,22,30,5.6000000000000005,1.3,0.023,0.62,0,0,0,0,8,-2.9000000000000004,0,0,0,0,0.261,54.5,145.8,0.92,0.12,784,1,190,2.6
+2023,10,25,23,0,5.300000000000001,1.26,0.024,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.261,55.550000000000004,149.06,0.92,0.12,784,1,191,2.6
+2023,10,25,23,30,4.9,1.26,0.024,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.261,57.11,151.15,0.92,0.12,784,1.1,192,2.7
+2023,10,26,0,0,4.6000000000000005,1.23,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.261,57.97,151.83,0.92,0.12,784,1.1,193,2.7
+2023,10,26,0,30,4.3,1.23,0.025,0.62,0,0,0,0,0,-3,0,0,0,0,0.261,59.2,150.99,0.92,0.12,784,1.1,193,2.8000000000000003
+2023,10,26,1,0,4,1.19,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.261,59.82,148.75,0.92,0.12,784,1.1,194,2.8000000000000003
+2023,10,26,1,30,3.7,1.19,0.028,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.262,61.1,145.39000000000001,0.92,0.12,784,1.1,194,2.8000000000000003
+2023,10,26,2,0,3.4000000000000004,1.1400000000000001,0.034,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.262,61.7,141.21,0.93,0.12,784,1.1,193,2.8000000000000003
+2023,10,26,2,30,3.2,1.1400000000000001,0.034,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.263,62.57,136.47,0.93,0.12,784,1.2000000000000002,193,2.8000000000000003
+2023,10,26,3,0,3,1.1300000000000001,0.043000000000000003,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.264,63.02,131.33,0.9400000000000001,0.12,784,1.2000000000000002,193,2.8000000000000003
+2023,10,26,3,30,3,1.1300000000000001,0.043000000000000003,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.265,63.02,125.95,0.9400000000000001,0.12,784,1.2000000000000002,194,2.8000000000000003
+2023,10,26,4,0,3,1.1400000000000001,0.058,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.266,63.71,120.39,0.9500000000000001,0.12,784,1.2000000000000002,194,2.8000000000000003
+2023,10,26,4,30,3.1,1.1400000000000001,0.058,0.62,0,0,0,0,5,-3.2,0,0,0,0,0.267,63.26,114.75,0.9500000000000001,0.12,784,1.3,195,2.9000000000000004
+2023,10,26,5,0,3.3000000000000003,1.1500000000000001,0.08,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.268,64.94,109.06,0.96,0.12,784,1.3,196,3
+2023,10,26,5,30,3.2,1.1500000000000001,0.08,0.62,0,0,0,0,4,-2.7,0,0,0,0,0.269,65.4,103.37,0.96,0.12,784,1.3,197,3.1
+2023,10,26,6,0,3.2,1.1500000000000001,0.094,0.62,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.27,69.43,97.72,0.96,0.12,784,1.3,199,3.2
+2023,10,26,6,30,3.5,1.1500000000000001,0.094,0.62,0,0,0,2,5,-1.9000000000000001,0,0,29,0,0.271,67.98,92.16,0.96,0.12,784,1.2000000000000002,200,3.4000000000000004
+2023,10,26,7,0,3.7,1.17,0.10200000000000001,0.62,26,202,38,7,5,-1,8,0,100,8,0.272,71.24,86.54,0.96,0.12,784,1.2000000000000002,202,3.6
+2023,10,26,7,30,4.5,1.17,0.10200000000000001,0.62,49,436,114,2,5,-1,38,6,36,39,0.273,67.36,81.36,0.96,0.12,784,1.2000000000000002,208,4
+2023,10,26,8,0,5.300000000000001,1.17,0.122,0.62,67,569,201,1,5,0.1,25,2,14,25,0.273,68.96000000000001,76.33,0.97,0.12,785,1.2000000000000002,213,4.5
+2023,10,26,8,30,6.1000000000000005,1.17,0.122,0.62,78,667,289,0,4,0.1,11,0,0,11,0.274,65.25,71.56,0.97,0.12,785,1.2000000000000002,224,4.9
+2023,10,26,9,0,7,1.16,0.125,0.62,87,734,372,0,5,1,34,0,0,34,0.274,65.6,67.14,0.97,0.12,785,1.1,236,5.2
+2023,10,26,9,30,7.300000000000001,1.16,0.125,0.62,91,793,449,0,5,1,49,0,0,49,0.275,64.27,63.14,0.97,0.12,785,1.1,248,5.2
+2023,10,26,10,0,7.6000000000000005,1.1500000000000001,0.10300000000000001,0.62,91,842,516,0,5,1,62,0,0,62,0.276,62.95,59.68,0.96,0.12,786,1.1,261,5.2
+2023,10,26,10,30,7.800000000000001,1.1500000000000001,0.10300000000000001,0.62,86,889,572,0,4,1,75,0,0,75,0.277,62.1,56.84,0.96,0.12,786,1,268,5.300000000000001
+2023,10,26,11,0,8,1.18,0.058,0.62,76,935,616,0,4,-0.2,65,0,0,65,0.278,56.27,54.74,0.9500000000000001,0.12,786,1,274,5.4
+2023,10,26,11,30,8.3,1.18,0.058,0.62,74,950,640,0,5,-0.2,65,0,0,65,0.279,55.21,53.46,0.9400000000000001,0.12,787,0.9,271,5.7
+2023,10,26,12,0,8.6,1.23,0.048,0.62,72,962,650,0,5,-2.4000000000000004,45,0,0,45,0.28,45.87,53.07,0.9400000000000001,0.12,787,0.8,268,6
+2023,10,26,12,30,8.9,1.23,0.048,0.62,68,974,646,0,5,-2.4000000000000004,50,0,0,50,0.281,44.96,53.59,0.92,0.12,787,0.7000000000000001,263,6.4
+2023,10,26,13,0,9.200000000000001,1.29,0.03,0.62,62,985,627,0,5,-6.2,40,0,0,40,0.28300000000000003,33.1,54.980000000000004,0.91,0.12,787,0.6000000000000001,259,6.800000000000001
+2023,10,26,13,30,9.200000000000001,1.29,0.03,0.62,57,987,592,0,5,-6.2,55,1,0,56,0.28400000000000003,33.15,57.19,0.9,0.12,788,0.5,261,7
+2023,10,26,14,0,9.1,1.28,0.018000000000000002,0.62,51,988,543,0,7,-11,121,4,0,123,0.28500000000000003,22.95,60.120000000000005,0.88,0.12,788,0.4,264,7.1000000000000005
+2023,10,26,14,30,8.5,1.28,0.018000000000000002,0.62,47,973,479,0,5,-11,86,1,0,86,0.28600000000000003,23.900000000000002,63.67,0.88,0.12,788,0.30000000000000004,272,6.800000000000001
+2023,10,26,15,0,7.9,1.21,0.015,0.62,43,947,402,0,4,-14.4,103,7,0,106,0.28700000000000003,18.94,67.73,0.88,0.12,789,0.30000000000000004,279,6.4
+2023,10,26,15,30,6.800000000000001,1.21,0.015,0.62,40,896,314,0,4,-14.4,105,6,0,107,0.28800000000000003,20.41,72.2,0.88,0.12,789,0.30000000000000004,288,5.6000000000000005
+2023,10,26,16,0,5.800000000000001,1.16,0.015,0.62,35,824,220,0,4,-15.3,81,9,0,83,0.289,20.3,77.01,0.88,0.12,789,0.30000000000000004,296,4.9
+2023,10,26,16,30,3.9000000000000004,1.16,0.015,0.62,29,695,125,4,4,-15.3,58,56,50,66,0.29,23.2,82.08,0.88,0.12,790,0.2,305,3.4000000000000004
+2023,10,26,17,0,2,1.1400000000000001,0.015,0.62,20,405,39,7,4,-11.8,20,1,100,20,0.291,35.300000000000004,87.27,0.88,0.11,790,0.2,314,1.9000000000000001
+2023,10,26,17,30,0.9,1.1400000000000001,0.015,0.62,0,0,0,1,4,-11.8,0,0,14,0,0.291,38.24,92.94,0.88,0.11,791,0.2,326,1.5
+2023,10,26,18,0,-0.1,1.1500000000000001,0.016,0.62,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.292,45.1,98.52,0.88,0.11,791,0.30000000000000004,339,1.2000000000000002
+2023,10,26,18,30,-0.6000000000000001,1.1500000000000001,0.016,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.292,46.77,104.18,0.89,0.11,791,0.30000000000000004,173,1.2000000000000002
+2023,10,26,19,0,-1.1,1.16,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.293,47.04,109.88,0.89,0.11,791,0.30000000000000004,7,1.2000000000000002
+2023,10,26,19,30,-1.8,1.16,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.294,49.58,115.58,0.89,0.11,792,0.30000000000000004,15,1.3
+2023,10,26,20,0,-2.5,1.1500000000000001,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.295,52.86,121.23,0.89,0.11,792,0.30000000000000004,23,1.3
+2023,10,26,20,30,-3,1.1500000000000001,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.295,54.86,126.78,0.89,0.11,792,0.30000000000000004,26,1.3
+2023,10,26,21,0,-3.6,1.1400000000000001,0.016,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.296,57.96,132.16,0.89,0.11,792,0.30000000000000004,30,1.3
+2023,10,26,21,30,-4,1.1400000000000001,0.016,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.297,59.72,137.27,0.89,0.11,792,0.30000000000000004,32,1.2000000000000002
+2023,10,26,22,0,-4.4,1.17,0.016,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.297,61.54,141.99,0.89,0.11,792,0.30000000000000004,34,1.1
+2023,10,26,22,30,-4.7,1.17,0.016,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.297,62.95,146.11,0.89,0.11,792,0.30000000000000004,36,1.1
+2023,10,26,23,0,-5,1.19,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.297,63.68,149.38,0.89,0.11,792,0.30000000000000004,38,1.1
+2023,10,26,23,30,-5.300000000000001,1.19,0.016,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.297,65.15,151.49,0.89,0.11,792,0.30000000000000004,40,1.1
+2023,10,27,0,0,-5.5,1.2,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.297,65.3,152.17000000000002,0.9,0.11,791,0.30000000000000004,42,1.1
+2023,10,27,0,30,-5.7,1.2,0.016,0.62,0,0,0,0,0,-11,0,0,0,0,0.296,66.3,151.32,0.9,0.11,791,0.30000000000000004,42,1
+2023,10,27,1,0,-5.9,1.22,0.016,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,66.45,149.05,0.9,0.11,791,0.30000000000000004,43,1
+2023,10,27,1,30,-6.1000000000000005,1.22,0.016,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,67.47,145.67000000000002,0.9,0.11,791,0.30000000000000004,42,1
+2023,10,27,2,0,-6.2,1.22,0.016,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.296,67.32000000000001,141.46,0.9,0.11,791,0.30000000000000004,41,1
+2023,10,27,2,30,-6.4,1.22,0.016,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.296,68.35000000000001,136.70000000000002,0.9,0.11,791,0.30000000000000004,40,0.9
+2023,10,27,3,0,-6.5,1.22,0.017,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.296,69.11,131.55,0.9,0.11,791,0.30000000000000004,39,0.9
+2023,10,27,3,30,-6.6000000000000005,1.22,0.017,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.296,69.64,126.15,0.9,0.11,791,0.30000000000000004,40,0.9
+2023,10,27,4,0,-6.7,1.22,0.017,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,70.71000000000001,120.59,0.9,0.11,791,0.4,41,0.9
+2023,10,27,4,30,-6.800000000000001,1.22,0.017,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,71.25,114.94,0.9,0.11,791,0.4,44,0.9
+2023,10,27,5,0,-6.9,1.21,0.018000000000000002,0.62,0,0,0,0,0,-11,0,0,0,0,0.296,72.56,109.25,0.91,0.11,792,0.4,46,0.8
+2023,10,27,5,30,-6.9,1.21,0.018000000000000002,0.62,0,0,0,0,0,-11,0,0,0,0,0.297,72.56,103.57000000000001,0.91,0.11,792,0.4,47,0.8
+2023,10,27,6,0,-7,1.19,0.019,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.298,74.03,97.92,0.91,0.11,792,0.4,49,0.8
+2023,10,27,6,30,-6.300000000000001,1.19,0.019,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.299,70.16,92.36,0.91,0.11,792,0.4,44,1.1
+2023,10,27,7,0,-5.7,1.18,0.021,0.62,22,394,44,0,0,-10.5,22,394,0,44,0.3,69.10000000000001,86.74,0.91,0.11,792,0.4,40,1.4000000000000001
+2023,10,27,7,30,-4.1000000000000005,1.18,0.021,0.62,32,669,130,0,0,-10.5,33,617,0,123,0.301,61.24,81.57000000000001,0.91,0.11,792,0.4,50,1.3
+2023,10,27,8,0,-2.5,1.2,0.021,0.62,39,798,224,0,4,-10.600000000000001,92,258,0,152,0.302,53.67,76.56,0.91,0.11,792,0.4,59,1.2000000000000002
+2023,10,27,8,30,-1,1.2,0.021,0.62,45,875,318,0,4,-10.600000000000001,169,107,0,202,0.302,48.07,71.81,0.91,0.11,792,0.4,103,0.9
+2023,10,27,9,0,0.6000000000000001,1.2,0.021,0.62,48,926,404,0,4,-11,164,377,0,309,0.302,41.58,67.4,0.91,0.11,792,0.4,148,0.6000000000000001
+2023,10,27,9,30,2.2,1.2,0.021,0.62,52,962,482,0,4,-11,208,337,0,359,0.302,37.03,63.42,0.91,0.11,791,0.4,186,1.4000000000000001
+2023,10,27,10,0,3.8000000000000003,1.19,0.02,0.62,53,987,547,0,4,-11,242,366,0,425,0.301,33.160000000000004,59.97,0.91,0.11,791,0.4,224,2.2
+2023,10,27,10,30,5.2,1.19,0.02,0.62,54,1005,599,0,0,-11,103,865,0,572,0.301,30.07,57.15,0.91,0.11,791,0.4,228,2.9000000000000004
+2023,10,27,11,0,6.6000000000000005,1.22,0.019,0.62,55,1017,637,0,0,-10.4,55,1017,0,637,0.3,28.63,55.06,0.91,0.11,791,0.4,232,3.7
+2023,10,27,11,30,7.5,1.22,0.019,0.62,55,1024,660,0,0,-10.4,55,1024,0,660,0.299,26.89,53.800000000000004,0.9,0.11,790,0.4,233,4.2
+2023,10,27,12,0,8.3,1.24,0.018000000000000002,0.62,55,1026,667,0,0,-9.8,55,1026,0,667,0.298,26.580000000000002,53.410000000000004,0.9,0.11,790,0.4,235,4.6000000000000005
+2023,10,27,12,30,8.8,1.24,0.018000000000000002,0.62,54,1024,657,0,0,-9.8,54,1024,0,657,0.298,25.69,53.93,0.9,0.11,790,0.4,236,4.800000000000001
+2023,10,27,13,0,9.3,1.23,0.019,0.62,55,1016,633,0,0,-9.5,55,1016,0,633,0.297,25.560000000000002,55.32,0.9,0.11,790,0.4,238,5
+2023,10,27,13,30,9.4,1.23,0.019,0.62,54,1000,591,0,0,-9.5,54,1000,0,591,0.297,25.36,57.52,0.91,0.11,789,0.5,239,4.9
+2023,10,27,14,0,9.5,1.16,0.021,0.62,54,977,536,0,0,-9.200000000000001,54,977,0,536,0.296,25.7,60.44,0.91,0.11,789,0.5,240,4.800000000000001
+2023,10,27,14,30,9.4,1.16,0.021,0.62,51,947,467,0,0,-9.200000000000001,51,947,0,467,0.297,25.88,63.97,0.91,0.11,789,0.5,239,4.5
+2023,10,27,15,0,9.200000000000001,1.16,0.023,0.62,48,907,388,0,0,-9,48,907,0,388,0.297,26.79,68.01,0.92,0.11,789,0.5,239,4.2
+2023,10,27,15,30,8.5,1.16,0.023,0.62,45,849,301,0,0,-9,54,806,0,297,0.297,28.080000000000002,72.48,0.92,0.11,789,0.5,237,3.3000000000000003
+2023,10,27,16,0,7.7,1.1500000000000001,0.026000000000000002,0.62,40,760,207,0,8,-7.6000000000000005,95,362,0,175,0.297,32.93,77.28,0.92,0.11,789,0.5,236,2.5
+2023,10,27,16,30,5.9,1.1500000000000001,0.026000000000000002,0.62,32,609,113,1,0,-7.6000000000000005,48,383,21,99,0.297,37.26,82.33,0.93,0.11,789,0.6000000000000001,232,1.7000000000000002
+2023,10,27,17,0,4.1000000000000005,1.1500000000000001,0.029,0.62,19,280,31,6,7,-5.5,21,6,93,21,0.297,49.6,87.51,0.93,0.11,789,0.6000000000000001,228,1
+2023,10,27,17,30,3.9000000000000004,1.1500000000000001,0.029,0.62,0,0,0,0,7,-5.5,0,0,7,0,0.296,50.300000000000004,93.18,0.93,0.11,789,0.6000000000000001,223,1
+2023,10,27,18,0,3.7,1.16,0.032,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.295,48.13,98.76,0.93,0.11,789,0.6000000000000001,218,0.9
+2023,10,27,18,30,3.6,1.16,0.032,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.295,48.47,104.41,0.93,0.11,789,0.6000000000000001,221,0.8
+2023,10,27,19,0,3.4000000000000004,1.19,0.035,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.294,48.56,110.11,0.93,0.11,789,0.7000000000000001,224,0.6000000000000001
+2023,10,27,19,30,3.1,1.19,0.035,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.294,49.6,115.81,0.9400000000000001,0.11,789,0.7000000000000001,251,0.5
+2023,10,27,20,0,2.8000000000000003,1.2,0.042,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,50.5,121.46000000000001,0.9400000000000001,0.11,789,0.7000000000000001,278,0.30000000000000004
+2023,10,27,20,30,2.4000000000000004,1.2,0.042,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,51.95,127.02,0.9500000000000001,0.11,789,0.8,312,0.4
+2023,10,27,21,0,2,1.17,0.055,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.293,53.45,132.41,0.96,0.11,789,0.8,345,0.4
+2023,10,27,21,30,1.8,1.17,0.055,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.293,54.22,137.54,0.96,0.11,789,0.8,177,0.5
+2023,10,27,22,0,1.6,1.16,0.059000000000000004,0.62,0,0,0,0,7,-6,0,0,0,0,0.292,57.13,142.27,0.96,0.11,788,0.8,8,0.5
+2023,10,27,22,30,1.4000000000000001,1.16,0.059000000000000004,0.62,0,0,0,0,7,-6,0,0,0,0,0.292,57.96,146.41,0.96,0.11,788,0.9,12,0.5
+2023,10,27,23,0,1.2000000000000002,1.1500000000000001,0.065,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.292,59.410000000000004,149.70000000000002,0.96,0.11,788,0.9,16,0.6000000000000001
+2023,10,27,23,30,1,1.1500000000000001,0.065,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.292,60.27,151.83,0.96,0.11,788,0.9,15,0.7000000000000001
+2023,10,28,0,0,0.7000000000000001,1.1500000000000001,0.067,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.292,60.46,152.51,0.96,0.11,788,0.9,14,0.8
+2023,10,28,0,30,0.5,1.1500000000000001,0.067,0.62,0,0,0,0,6,-6.1000000000000005,0,0,0,0,0.292,61.34,151.64000000000001,0.96,0.11,788,0.9,11,0.9
+2023,10,28,1,0,0.30000000000000004,1.1400000000000001,0.063,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.292,59.74,149.35,0.96,0.11,788,0.9,9,1.1
+2023,10,28,1,30,0,1.1400000000000001,0.063,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.292,61.050000000000004,145.94,0.9500000000000001,0.11,788,0.8,7,1.3
+2023,10,28,2,0,-0.30000000000000004,1.1400000000000001,0.059000000000000004,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.292,59.69,141.72,0.9500000000000001,0.11,788,0.8,5,1.5
+2023,10,28,2,30,-0.8,1.1400000000000001,0.059000000000000004,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.292,61.9,136.93,0.9500000000000001,0.11,788,0.8,8,1.6
+2023,10,28,3,0,-1.3,1.1300000000000001,0.056,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.292,61.15,131.77,0.9500000000000001,0.11,788,0.8,10,1.6
+2023,10,28,3,30,-1.6,1.1300000000000001,0.056,0.62,0,0,0,0,8,-7.800000000000001,0,0,29,0,0.291,62.51,126.36,0.9500000000000001,0.11,788,0.8,13,1.7000000000000002
+2023,10,28,4,0,-1.9000000000000001,1.12,0.055,0.62,0,0,0,0,7,-8.200000000000001,0,0,14,0,0.291,62.21,120.79,0.9500000000000001,0.11,788,0.8,16,1.8
+2023,10,28,4,30,-2.1,1.12,0.055,0.62,0,0,0,0,8,-8.200000000000001,0,0,0,0,0.291,63.13,115.14,0.9500000000000001,0.11,788,0.8,19,2
+2023,10,28,5,0,-2.2,1.11,0.057,0.62,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.291,63.61,109.45,0.9500000000000001,0.11,788,0.8,21,2.1
+2023,10,28,5,30,-2.4000000000000004,1.11,0.057,0.62,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.293,64.56,103.76,0.9500000000000001,0.11,788,0.7000000000000001,24,2.3000000000000003
+2023,10,28,6,0,-2.6,1.1,0.055,0.62,0,0,0,0,4,-8,0,0,0,0,0.294,66.19,98.12,0.9500000000000001,0.11,789,0.7000000000000001,28,2.4000000000000004
+2023,10,28,6,30,-2.5,1.1,0.055,0.62,0,0,0,1,4,-8,0,0,14,0,0.296,65.7,92.57000000000001,0.9400000000000001,0.11,789,0.7000000000000001,31,2.8000000000000003
+2023,10,28,7,0,-2.4000000000000004,1.1,0.047,0.62,22,285,37,7,4,-7.9,5,0,100,5,0.297,66.12,86.95,0.9400000000000001,0.11,789,0.7000000000000001,35,3.2
+2023,10,28,7,30,-1.8,1.1,0.047,0.62,37,570,118,3,4,-7.9,11,0,43,11,0.296,63.25,81.8,0.9400000000000001,0.11,789,0.7000000000000001,37,3.6
+2023,10,28,8,0,-1.3,1.1,0.041,0.62,46,724,211,0,5,-7.6000000000000005,7,0,0,7,0.296,62.11,76.79,0.93,0.11,789,0.7000000000000001,39,4
+2023,10,28,8,30,-0.5,1.1,0.041,0.62,52,817,304,0,5,-7.6000000000000005,17,0,0,17,0.294,58.660000000000004,72.05,0.93,0.11,790,0.6000000000000001,40,4
+2023,10,28,9,0,0.30000000000000004,1.11,0.038,0.62,57,877,390,0,5,-8.1,53,0,0,53,0.292,53.370000000000005,67.66,0.93,0.11,790,0.6000000000000001,41,4
+2023,10,28,9,30,1,1.11,0.038,0.62,60,917,466,0,5,-8.1,135,0,0,135,0.29,50.74,63.7,0.93,0.11,790,0.6000000000000001,38,3.8000000000000003
+2023,10,28,10,0,1.6,1.12,0.037,0.62,62,945,531,0,5,-8.3,173,2,0,174,0.28700000000000003,47.92,60.26,0.93,0.11,790,0.6000000000000001,34,3.5
+2023,10,28,10,30,2.2,1.12,0.037,0.62,64,967,584,0,7,-8.3,197,15,0,205,0.28500000000000003,45.85,57.46,0.93,0.11,789,0.6000000000000001,29,3.4000000000000004
+2023,10,28,11,0,2.8000000000000003,1.19,0.033,0.62,64,982,622,0,7,-8.4,179,9,0,184,0.28400000000000003,43.59,55.38,0.93,0.11,789,0.6000000000000001,23,3.2
+2023,10,28,11,30,3.1,1.19,0.033,0.62,64,989,644,0,7,-8.4,223,24,0,237,0.28400000000000003,42.68,54.13,0.93,0.11,789,0.6000000000000001,18,3.2
+2023,10,28,12,0,3.5,1.2,0.033,0.62,65,991,651,0,7,-8.6,237,24,0,251,0.28400000000000003,40.7,53.74,0.93,0.11,789,0.6000000000000001,13,3.2
+2023,10,28,12,30,3.5,1.2,0.033,0.62,65,988,642,0,7,-8.6,160,4,0,162,0.28500000000000003,40.7,54.26,0.93,0.11,789,0.6000000000000001,11,3.2
+2023,10,28,13,0,3.6,1.21,0.033,0.62,64,980,617,0,7,-9,174,8,0,179,0.28500000000000003,39.17,55.65,0.93,0.11,789,0.6000000000000001,9,3.2
+2023,10,28,13,30,3.4000000000000004,1.21,0.033,0.62,62,967,577,0,7,-9,162,6,0,165,0.28600000000000003,39.72,57.84,0.93,0.11,789,0.6000000000000001,12,3.2
+2023,10,28,14,0,3.3000000000000003,1.22,0.033,0.62,60,948,523,0,6,-9.4,89,1,0,89,0.28700000000000003,38.77,60.74,0.93,0.11,789,0.6000000000000001,14,3.2
+2023,10,28,14,30,3,1.22,0.033,0.62,57,921,457,0,6,-9.4,108,10,0,112,0.28800000000000003,39.6,64.26,0.93,0.11,789,0.6000000000000001,20,3.2
+2023,10,28,15,0,2.6,1.23,0.034,0.62,53,881,379,0,7,-9.8,93,10,0,97,0.289,39.69,68.3,0.93,0.11,789,0.6000000000000001,26,3.2
+2023,10,28,15,30,2.1,1.23,0.034,0.62,49,822,293,0,7,-9.8,95,29,0,104,0.29,41.13,72.75,0.93,0.11,789,0.6000000000000001,31,3.3000000000000003
+2023,10,28,16,0,1.5,1.24,0.035,0.62,42,732,200,0,8,-9.9,62,242,0,114,0.291,42.33,77.54,0.93,0.11,789,0.6000000000000001,37,3.4000000000000004
+2023,10,28,16,30,0.7000000000000001,1.24,0.035,0.62,33,581,108,5,7,-9.9,41,110,71,55,0.292,44.83,82.57000000000001,0.93,0.11,789,0.5,40,3.4000000000000004
+2023,10,28,17,0,-0.2,1.24,0.037,0.62,19,259,29,6,7,-9.8,15,1,86,15,0.294,48.53,87.73,0.9400000000000001,0.11,790,0.5,44,3.3000000000000003
+2023,10,28,17,30,-0.8,1.24,0.037,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.296,50.7,93.41,0.9400000000000001,0.11,790,0.5,45,3.4000000000000004
+2023,10,28,18,0,-1.5,1.25,0.039,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.297,53.63,98.99000000000001,0.9400000000000001,0.11,790,0.5,46,3.4000000000000004
+2023,10,28,18,30,-2,1.25,0.039,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.298,55.71,104.64,0.9400000000000001,0.11,791,0.5,45,3.5
+2023,10,28,19,0,-2.5,1.26,0.04,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.299,56.77,110.34,0.9400000000000001,0.11,791,0.5,44,3.5
+2023,10,28,19,30,-3,1.26,0.04,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.3,58.910000000000004,116.03,0.9400000000000001,0.11,791,0.5,42,3.5
+2023,10,28,20,0,-3.5,1.26,0.041,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.3,59.52,121.69,0.9400000000000001,0.11,791,0.5,40,3.4000000000000004
+2023,10,28,20,30,-3.8000000000000003,1.26,0.041,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.3,60.870000000000005,127.25,0.9400000000000001,0.11,791,0.5,38,3.3000000000000003
+2023,10,28,21,0,-4.1000000000000005,1.26,0.042,0.62,0,0,0,0,8,-10.600000000000001,0,0,0,0,0.3,60.58,132.65,0.9400000000000001,0.11,791,0.5,36,3.3000000000000003
+2023,10,28,21,30,-4.5,1.26,0.042,0.62,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.299,62.43,137.79,0.9400000000000001,0.11,791,0.5,33,3.2
+2023,10,28,22,0,-4.800000000000001,1.27,0.041,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.297,62.24,142.54,0.9400000000000001,0.11,791,0.5,30,3.1
+2023,10,28,22,30,-5.2,1.27,0.041,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.296,64.23,146.71,0.9400000000000001,0.11,792,0.5,27,3.1
+2023,10,28,23,0,-5.6000000000000005,1.28,0.039,0.62,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.295,64.43,150.02,0.9400000000000001,0.11,792,0.5,23,3.1
+2023,10,28,23,30,-5.9,1.28,0.039,0.62,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.293,65.91,152.16,0.9400000000000001,0.11,792,0.4,21,3.3000000000000003
+2023,10,29,0,0,-6.300000000000001,1.28,0.039,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.292,66.03,152.84,0.9400000000000001,0.11,792,0.4,19,3.5
+2023,10,29,0,30,-6.5,1.28,0.039,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.29,67.05,151.96,0.9400000000000001,0.11,792,0.4,19,3.7
+2023,10,29,1,0,-6.7,1.28,0.038,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.289,66.48,149.65,0.9400000000000001,0.11,792,0.4,20,3.9000000000000004
+2023,10,29,1,30,-6.800000000000001,1.28,0.038,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.289,66.99,146.21,0.9400000000000001,0.11,792,0.4,20,4.1000000000000005
+2023,10,29,2,0,-7,1.27,0.039,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.289,67.08,141.96,0.9400000000000001,0.11,792,0.4,20,4.3
+2023,10,29,2,30,-6.9,1.27,0.039,0.62,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.289,66.56,137.16,0.9400000000000001,0.11,792,0.4,22,4.6000000000000005
+2023,10,29,3,0,-6.9,1.25,0.04,0.62,0,0,0,0,4,-12.200000000000001,0,0,0,0,0.289,66.05,131.98,0.9400000000000001,0.11,792,0.4,23,4.9
+2023,10,29,3,30,-6.9,1.25,0.04,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.289,66.13,126.56,0.9400000000000001,0.11,793,0.4,24,5
+2023,10,29,4,0,-6.800000000000001,1.23,0.041,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.289,65.01,120.99000000000001,0.9500000000000001,0.11,793,0.4,24,5.1000000000000005
+2023,10,29,4,30,-6.800000000000001,1.23,0.041,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.289,65.01,115.33,0.9400000000000001,0.11,793,0.4,26,5.300000000000001
+2023,10,29,5,0,-6.800000000000001,1.21,0.041,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.289,63.77,109.64,0.9400000000000001,0.11,794,0.4,27,5.5
+2023,10,29,5,30,-6.800000000000001,1.21,0.041,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.29,63.77,103.96000000000001,0.9400000000000001,0.11,794,0.4,29,5.6000000000000005
+2023,10,29,6,0,-6.800000000000001,1.21,0.037,0.62,0,0,0,0,0,-13,0,0,0,0,0.291,61.480000000000004,98.32000000000001,0.9400000000000001,0.11,794,0.4,30,5.800000000000001
+2023,10,29,6,30,-6.7,1.21,0.037,0.62,0,0,0,0,0,-13,0,0,0,0,0.292,61.09,92.77,0.93,0.11,795,0.4,32,6
+2023,10,29,7,0,-6.6000000000000005,1.2,0.032,0.62,21,344,38,0,0,-13.5,21,344,0,38,0.292,57.81,87.15,0.93,0.11,795,0.4,33,6.2
+2023,10,29,7,30,-6,1.2,0.032,0.62,34,643,123,0,0,-13.5,34,643,0,123,0.292,55.29,82.01,0.93,0.11,796,0.30000000000000004,35,6.5
+2023,10,29,8,0,-5.300000000000001,1.19,0.026000000000000002,0.62,41,790,218,0,0,-14.3,41,790,0,218,0.292,49.15,77.02,0.92,0.11,796,0.30000000000000004,36,6.9
+2023,10,29,8,30,-4.6000000000000005,1.19,0.026000000000000002,0.62,46,875,312,0,0,-14.3,46,875,0,312,0.292,46.62,72.3,0.92,0.11,796,0.30000000000000004,37,6.9
+2023,10,29,9,0,-4,1.18,0.022,0.62,49,932,399,0,0,-15,49,932,0,399,0.291,42.27,67.92,0.91,0.11,797,0.30000000000000004,37,7
+2023,10,29,9,30,-3.3000000000000003,1.18,0.022,0.62,51,970,477,0,0,-15,51,970,0,477,0.292,40.11,63.97,0.91,0.11,797,0.30000000000000004,36,6.800000000000001
+2023,10,29,10,0,-2.7,1.2,0.018000000000000002,0.62,52,998,543,0,0,-15.200000000000001,52,998,0,543,0.293,37.54,60.56,0.91,0.11,797,0.30000000000000004,34,6.6000000000000005
+2023,10,29,10,30,-2.2,1.2,0.018000000000000002,0.62,54,1020,598,0,0,-15.200000000000001,54,1020,0,598,0.295,36.18,57.76,0.91,0.11,797,0.30000000000000004,33,6.4
+2023,10,29,11,0,-1.7000000000000002,1.18,0.019,0.62,56,1037,640,0,0,-15.4,56,1037,0,640,0.298,34.31,55.7,0.91,0.11,797,0.2,31,6.2
+2023,10,29,11,30,-1.3,1.18,0.019,0.62,55,1047,664,0,0,-15.4,55,1047,0,664,0.301,33.32,54.45,0.91,0.11,797,0.2,31,6
+2023,10,29,12,0,-0.9,1.2,0.018000000000000002,0.62,56,1049,671,0,0,-15.600000000000001,56,1049,0,671,0.303,31.76,54.08,0.9,0.11,797,0.2,30,5.9
+2023,10,29,12,30,-0.7000000000000001,1.2,0.018000000000000002,0.62,54,1048,661,0,0,-15.600000000000001,104,911,0,632,0.305,31.3,54.59,0.9,0.11,797,0.2,30,5.7
+2023,10,29,13,0,-0.5,1.22,0.016,0.62,53,1042,636,0,0,-15.9,142,791,0,585,0.306,30.16,55.97,0.9,0.11,796,0.2,29,5.5
+2023,10,29,13,30,-0.4,1.22,0.016,0.62,51,1031,595,0,0,-15.9,90,915,0,573,0.305,29.94,58.15,0.89,0.11,796,0.2,29,5.300000000000001
+2023,10,29,14,0,-0.4,1.24,0.015,0.62,49,1014,540,0,0,-16.3,49,1014,0,540,0.304,29.04,61.050000000000004,0.89,0.11,797,0.2,29,5.1000000000000005
+2023,10,29,14,30,-0.6000000000000001,1.24,0.015,0.62,46,989,471,0,0,-16.3,46,989,0,471,0.301,29.47,64.56,0.89,0.11,797,0.2,29,4.9
+2023,10,29,15,0,-0.8,1.26,0.015,0.62,44,954,392,0,0,-16.8,44,954,0,392,0.299,28.69,68.58,0.89,0.11,797,0.2,29,4.7
+2023,10,29,15,30,-1.4000000000000001,1.26,0.015,0.62,40,901,303,0,0,-16.8,40,901,0,303,0.297,29.98,73.01,0.89,0.11,797,0.2,30,4.3
+2023,10,29,16,0,-2,1.27,0.014,0.62,35,819,208,0,0,-17.3,35,819,0,208,0.294,30.080000000000002,77.79,0.89,0.11,797,0.2,30,3.9000000000000004
+2023,10,29,16,30,-3.9000000000000004,1.27,0.014,0.62,27,680,112,0,0,-17.3,27,680,0,112,0.293,34.64,82.81,0.89,0.11,797,0.2,33,2.8000000000000003
+2023,10,29,17,0,-5.800000000000001,1.28,0.014,0.62,18,338,30,0,0,-16.2,18,338,0,30,0.291,43.76,87.95,0.89,0.12,797,0.2,35,1.6
+2023,10,29,17,30,-6.6000000000000005,1.28,0.014,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.289,46.58,93.64,0.89,0.12,798,0.2,40,1.4000000000000001
+2023,10,29,18,0,-7.4,1.3,0.014,0.62,0,0,0,0,0,-16,0,0,0,0,0.28700000000000003,50.11,99.21000000000001,0.89,0.12,798,0.2,44,1.2000000000000002
+2023,10,29,18,30,-7.6000000000000005,1.3,0.014,0.62,0,0,0,0,0,-16,0,0,0,0,0.28500000000000003,50.89,104.86,0.89,0.12,798,0.2,48,1.2000000000000002
+2023,10,29,19,0,-7.800000000000001,1.31,0.013000000000000001,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28300000000000003,51.46,110.55,0.89,0.12,798,0.2,52,1.1
+2023,10,29,19,30,-7.9,1.31,0.013000000000000001,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28200000000000003,51.86,116.25,0.89,0.12,798,0.2,57,1.1
+2023,10,29,20,0,-8,1.32,0.013000000000000001,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.281,52.230000000000004,121.91,0.89,0.12,798,0.2,63,1
+2023,10,29,20,30,-8,1.32,0.013000000000000001,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.281,52.300000000000004,127.48,0.89,0.12,799,0.2,69,1
+2023,10,29,21,0,-8.1,1.33,0.013000000000000001,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,53.050000000000004,132.89000000000001,0.89,0.12,799,0.2,76,0.9
+2023,10,29,21,30,-8.1,1.33,0.013000000000000001,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,53.050000000000004,138.05,0.89,0.12,799,0.2,83,0.9
+2023,10,29,22,0,-8.1,1.33,0.013000000000000001,0.62,0,0,0,0,0,-16,0,0,0,0,0.28,52.870000000000005,142.81,0.89,0.12,799,0.2,90,0.8
+2023,10,29,22,30,-8,1.33,0.013000000000000001,0.62,0,0,0,0,0,-16,0,0,0,0,0.279,52.46,147,0.89,0.12,799,0.2,97,0.8
+2023,10,29,23,0,-8,1.32,0.013000000000000001,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.279,51.79,150.33,0.89,0.12,798,0.2,103,0.7000000000000001
+2023,10,29,23,30,-7.9,1.32,0.013000000000000001,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.279,51.39,152.49,0.89,0.12,798,0.2,112,0.6000000000000001
+2023,10,30,0,0,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,50.92,153.17000000000002,0.89,0.12,798,0.2,120,0.5
+2023,10,30,0,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,50.92,152.28,0.89,0.12,798,0.2,134,0.4
+2023,10,30,1,0,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.279,51.08,149.95000000000002,0.89,0.12,798,0.2,149,0.4
+2023,10,30,1,30,-7.9,1.31,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.08,146.48,0.89,0.12,798,0.2,166,0.30000000000000004
+2023,10,30,2,0,-7.9,1.3,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.02,142.21,0.89,0.12,798,0.2,182,0.30000000000000004
+2023,10,30,2,30,-7.9,1.3,0.012,0.62,0,0,0,0,0,-16.3,0,0,0,0,0.28,51.02,137.39000000000001,0.88,0.12,798,0.2,193,0.30000000000000004
+2023,10,30,3,0,-7.9,1.28,0.012,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28,51.76,132.2,0.88,0.12,797,0.2,203,0.30000000000000004
+2023,10,30,3,30,-7.9,1.28,0.012,0.62,0,0,0,0,0,-16.1,0,0,0,0,0.28,51.76,126.77,0.89,0.12,797,0.2,206,0.30000000000000004
+2023,10,30,4,0,-7.9,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.800000000000004,121.19,0.89,0.12,797,0.2,208,0.30000000000000004
+2023,10,30,4,30,-7.800000000000001,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.39,115.53,0.89,0.12,797,0.2,206,0.30000000000000004
+2023,10,30,5,0,-7.800000000000001,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.42,109.83,0.89,0.12,797,0.2,205,0.30000000000000004
+2023,10,30,5,30,-7.800000000000001,1.27,0.012,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.28,52.42,104.15,0.89,0.12,797,0.2,202,0.30000000000000004
+2023,10,30,6,0,-7.7,1.27,0.012,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.28,52.67,98.52,0.89,0.12,797,0.2,199,0.30000000000000004
+2023,10,30,6,30,-7.2,1.27,0.012,0.62,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.28,50.67,92.98,0.89,0.12,797,0.2,207,0.4
+2023,10,30,7,0,-6.800000000000001,1.27,0.012,0.62,19,372,36,0,0,-16.900000000000002,19,372,0,36,0.28,44.480000000000004,87.35000000000001,0.89,0.12,797,0.2,214,0.6000000000000001
+2023,10,30,7,30,-5.2,1.27,0.012,0.62,28,704,123,0,0,-16.900000000000002,28,704,0,123,0.28,39.42,82.23,0.89,0.12,798,0.2,232,0.8
+2023,10,30,8,0,-3.7,1.27,0.012,0.62,34,826,216,0,0,-18,34,826,0,216,0.28,32.09,77.26,0.89,0.12,798,0.30000000000000004,250,1.1
+2023,10,30,8,30,-2.2,1.27,0.012,0.62,38,897,307,0,0,-18,38,897,0,307,0.279,28.71,72.54,0.89,0.12,798,0.30000000000000004,265,1.4000000000000001
+2023,10,30,9,0,-0.8,1.28,0.012,0.62,42,948,394,0,0,-18.3,42,948,0,394,0.278,25.23,68.18,0.89,0.12,798,0.30000000000000004,280,1.7000000000000002
+2023,10,30,9,30,0.2,1.28,0.012,0.62,44,982,471,0,0,-18.3,44,982,0,471,0.277,23.47,64.25,0.89,0.12,798,0.30000000000000004,284,1.9000000000000001
+2023,10,30,10,0,1.2000000000000002,1.28,0.012,0.62,45,1007,536,0,0,-18.3,45,1007,0,536,0.276,21.84,60.85,0.89,0.12,798,0.30000000000000004,289,2.1
+2023,10,30,10,30,2.1,1.28,0.012,0.62,47,1023,588,0,0,-18.3,47,1023,0,588,0.275,20.48,58.07,0.89,0.12,798,0.30000000000000004,291,2.1
+2023,10,30,11,0,3,1.28,0.012,0.62,48,1035,626,0,0,-18,48,1035,0,626,0.274,19.62,56.02,0.89,0.12,798,0.30000000000000004,293,2.2
+2023,10,30,11,30,3.7,1.28,0.012,0.62,49,1041,649,0,0,-18.1,49,1041,0,649,0.272,18.650000000000002,54.78,0.89,0.12,797,0.30000000000000004,294,2.2
+2023,10,30,12,0,4.4,1.29,0.012,0.62,48,1043,655,0,0,-17.8,48,1043,0,655,0.27,18.21,54.4,0.89,0.12,797,0.30000000000000004,296,2.3000000000000003
+2023,10,30,12,30,4.800000000000001,1.29,0.012,0.62,48,1041,646,0,0,-17.8,48,1041,0,646,0.269,17.69,54.92,0.89,0.12,796,0.30000000000000004,298,2.3000000000000003
+2023,10,30,13,0,5.300000000000001,1.29,0.011,0.62,47,1035,621,0,0,-17.3,47,1035,0,621,0.267,17.79,56.29,0.89,0.12,796,0.30000000000000004,300,2.3000000000000003
+2023,10,30,13,30,5.4,1.29,0.011,0.62,47,1022,581,0,0,-17.3,47,1022,0,581,0.266,17.66,58.47,0.89,0.12,796,0.30000000000000004,304,2.3000000000000003
+2023,10,30,14,0,5.6000000000000005,1.25,0.012,0.62,45,1001,525,0,0,-16.8,45,1001,0,525,0.265,18.240000000000002,61.35,0.89,0.12,796,0.30000000000000004,309,2.3000000000000003
+2023,10,30,14,30,5.4,1.25,0.012,0.62,43,976,458,0,0,-16.8,43,976,0,458,0.265,18.490000000000002,64.84,0.89,0.12,796,0.30000000000000004,314,2.2
+2023,10,30,15,0,5.1000000000000005,1.25,0.012,0.62,40,937,378,0,0,-16.2,40,937,0,378,0.264,19.8,68.85000000000001,0.89,0.12,796,0.4,320,2.1
+2023,10,30,15,30,3.9000000000000004,1.25,0.012,0.62,37,883,291,0,0,-16.2,37,883,0,291,0.264,21.53,73.28,0.89,0.12,796,0.4,328,1.5
+2023,10,30,16,0,2.6,1.25,0.012,0.62,33,797,198,0,0,-11.600000000000001,33,797,0,198,0.264,34.410000000000004,78.04,0.89,0.12,796,0.4,336,0.9
+2023,10,30,16,30,1,1.25,0.012,0.62,26,652,105,0,0,-11.600000000000001,26,652,0,105,0.264,38.57,83.05,0.89,0.12,796,0.4,172,0.9
+2023,10,30,17,0,-0.6000000000000001,1.26,0.012,0.62,15,270,24,0,0,-14.200000000000001,15,270,0,24,0.264,35,88.17,0.89,0.11,796,0.4,8,1
+2023,10,30,17,30,-1.2000000000000002,1.26,0.012,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.263,36.57,93.87,0.89,0.11,796,0.4,17,1
+2023,10,30,18,0,-1.8,1.25,0.011,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.263,36.81,99.43,0.88,0.11,797,0.4,27,1.1
+2023,10,30,18,30,-2.2,1.25,0.011,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.262,37.92,105.08,0.88,0.11,797,0.4,33,1.1
+2023,10,30,19,0,-2.6,1.24,0.011,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.261,39.78,110.77,0.88,0.11,797,0.4,39,1.1
+2023,10,30,19,30,-2.7,1.24,0.011,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.261,40.08,116.47,0.88,0.11,797,0.4,43,1
+2023,10,30,20,0,-2.9000000000000004,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.26,41.13,122.13,0.88,0.11,797,0.4,47,0.9
+2023,10,30,20,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.259,41.44,127.71000000000001,0.88,0.11,797,0.4,52,0.9
+2023,10,30,21,0,-3.1,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,41.800000000000004,133.13,0.89,0.11,798,0.4,56,0.8
+2023,10,30,21,30,-3,1.23,0.01,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,41.49,138.29,0.89,0.11,798,0.4,60,0.7000000000000001
+2023,10,30,22,0,-3,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,41.71,143.08,0.89,0.11,798,0.4,64,0.6000000000000001
+2023,10,30,22,30,-3.1,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,42.02,147.28,0.89,0.11,798,0.4,83,0.5
+2023,10,30,23,0,-3.1,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,42.14,150.63,0.89,0.11,798,0.4,102,0.4
+2023,10,30,23,30,-3.3000000000000003,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,42.77,152.81,0.89,0.11,798,0.4,129,0.4
+2023,10,31,0,0,-3.4000000000000004,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,42.87,153.5,0.89,0.11,797,0.4,156,0.5
+2023,10,31,0,30,-3.4000000000000004,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,42.87,152.59,0.89,0.11,797,0.4,166,0.5
+2023,10,31,1,0,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.257,43.28,150.24,0.89,0.11,798,0.4,176,0.5
+2023,10,31,1,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.258,43.28,146.75,0.89,0.11,798,0.4,179,0.5
+2023,10,31,2,0,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,43.07,142.46,0.89,0.11,798,0.4,182,0.5
+2023,10,31,2,30,-3.5,1.22,0.011,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.258,43.07,137.61,0.89,0.11,798,0.4,182,0.5
+2023,10,31,3,0,-3.6,1.21,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.259,43.59,132.41,0.89,0.11,798,0.4,183,0.6000000000000001
+2023,10,31,3,30,-3.7,1.21,0.011,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.259,43.92,126.97,0.89,0.11,798,0.4,186,0.6000000000000001
+2023,10,31,4,0,-3.8000000000000003,1.21,0.011,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.259,44.6,121.38,0.89,0.11,798,0.4,188,0.7000000000000001
+2023,10,31,4,30,-4,1.21,0.011,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.259,45.27,115.72,0.89,0.11,798,0.4,191,0.8
+2023,10,31,5,0,-4.1000000000000005,1.21,0.01,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.259,46.36,110.03,0.89,0.11,798,0.4,193,0.8
+2023,10,31,5,30,-4.3,1.21,0.01,0.62,0,0,0,0,0,-13.9,0,0,0,0,0.259,47.06,104.35000000000001,0.89,0.11,798,0.5,195,0.9
+2023,10,31,6,0,-4.4,1.21,0.01,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.259,47.79,98.72,0.89,0.11,798,0.5,197,0.9
+2023,10,31,6,30,-4,1.21,0.01,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.258,46.38,93.18,0.89,0.11,798,0.5,199,0.9
+2023,10,31,7,0,-3.6,1.21,0.01,0.62,18,339,32,0,0,-12.8,18,339,0,32,0.258,48.94,87.56,0.89,0.11,798,0.5,201,1
+2023,10,31,7,30,-2.1,1.21,0.01,0.62,26,664,113,0,0,-12.8,26,664,0,113,0.258,43.83,82.45,0.89,0.11,799,0.5,206,1.5
+2023,10,31,8,0,-0.5,1.21,0.01,0.62,31,797,204,0,0,-14.200000000000001,31,797,0,204,0.257,34.64,77.49,0.89,0.11,799,0.5,210,2
+2023,10,31,8,30,0.8,1.21,0.01,0.62,36,877,295,0,0,-14.200000000000001,36,877,0,295,0.257,31.53,72.79,0.89,0.11,799,0.5,221,2.3000000000000003
+2023,10,31,9,0,2.2,1.22,0.01,0.62,39,928,380,0,0,-14.200000000000001,39,928,0,380,0.256,28.59,68.44,0.89,0.11,799,0.5,231,2.5
+2023,10,31,9,30,3.1,1.22,0.01,0.62,40,964,455,0,0,-14.200000000000001,40,964,0,455,0.255,26.82,64.52,0.89,0.11,799,0.5,236,2.5
+2023,10,31,10,0,4,1.23,0.01,0.62,43,988,520,0,0,-14,43,988,0,520,0.255,25.66,61.14,0.89,0.11,799,0.5,240,2.5
+2023,10,31,10,30,4.7,1.23,0.01,0.62,44,1005,571,0,0,-14,44,1005,0,571,0.254,24.44,58.370000000000005,0.89,0.11,799,0.5,243,2.5
+2023,10,31,11,0,5.5,1.23,0.01,0.62,46,1016,609,0,0,-13.8,46,1016,0,609,0.254,23.46,56.33,0.9,0.11,798,0.5,246,2.4000000000000004
+2023,10,31,11,30,6.1000000000000005,1.23,0.01,0.62,46,1023,631,0,0,-13.8,46,1023,0,631,0.253,22.5,55.1,0.9,0.11,798,0.5,249,2.4000000000000004
+2023,10,31,12,0,6.800000000000001,1.24,0.01,0.62,45,1025,637,0,0,-13.5,45,1025,0,637,0.252,21.98,54.730000000000004,0.9,0.11,798,0.5,252,2.3000000000000003
+2023,10,31,12,30,7.2,1.24,0.01,0.62,45,1022,628,0,0,-13.5,45,1022,0,628,0.251,21.39,55.24,0.9,0.11,798,0.5,253,2.2
+2023,10,31,13,0,7.7,1.25,0.01,0.62,45,1016,604,0,0,-13.100000000000001,45,1016,0,604,0.249,21.35,56.61,0.9,0.11,797,0.5,255,2.1
+2023,10,31,13,30,7.800000000000001,1.25,0.01,0.62,44,1003,564,0,0,-13.100000000000001,44,1003,0,564,0.248,21.21,58.77,0.9,0.11,797,0.5,252,2
+2023,10,31,14,0,8,1.26,0.01,0.62,43,985,511,0,0,-12.700000000000001,43,985,0,511,0.247,21.650000000000002,61.64,0.9,0.11,797,0.5,250,1.8
+2023,10,31,14,30,7.9,1.26,0.01,0.62,40,960,444,0,0,-12.700000000000001,40,960,0,444,0.246,21.79,65.13,0.9,0.11,797,0.5,240,1.6
+2023,10,31,15,0,7.7,1.26,0.01,0.62,38,922,367,0,0,-12.100000000000001,38,922,0,367,0.245,23.02,69.12,0.9,0.11,797,0.5,230,1.5
+2023,10,31,15,30,6.2,1.26,0.01,0.62,35,867,281,0,0,-12.200000000000001,35,867,0,281,0.245,25.51,73.53,0.9,0.11,797,0.5,214,1.2000000000000002
+2023,10,31,16,0,4.7,1.25,0.011,0.62,32,780,190,0,0,-8.1,32,780,0,190,0.245,39,78.28,0.9,0.11,797,0.5,198,0.9
+2023,10,31,16,30,2.8000000000000003,1.25,0.011,0.62,25,633,99,0,0,-8.1,25,633,0,99,0.245,44.51,83.29,0.9,0.11,796,0.5,191,1.1
+2023,10,31,17,0,0.9,1.24,0.011,0.61,15,255,22,0,0,-11.4,15,255,0,22,0.245,39.230000000000004,88.38,0.9,0.11,796,0.5,184,1.3
+2023,10,31,17,30,0.2,1.24,0.011,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.245,41.26,94.09,0.9,0.11,796,0.5,182,1.3
+2023,10,31,18,0,-0.4,1.23,0.012,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.245,40.13,99.64,0.91,0.11,796,0.5,181,1.4000000000000001
+2023,10,31,18,30,-0.8,1.23,0.012,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.245,41.31,105.29,0.91,0.11,796,0.5,184,1.3
+2023,10,31,19,0,-1.1,1.22,0.012,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.244,41.7,110.98,0.91,0.11,796,0.4,186,1.3
+2023,10,31,19,30,-1.2000000000000002,1.22,0.012,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.244,42,116.68,0.91,0.11,796,0.4,192,1.3
+2023,10,31,20,0,-1.3,1.22,0.013000000000000001,0.61,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.243,41.93,122.35000000000001,0.91,0.11,796,0.4,198,1.2000000000000002
+2023,10,31,20,30,-1.4000000000000001,1.22,0.013000000000000001,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.243,42.24,127.93,0.91,0.11,796,0.4,205,1.2000000000000002
+2023,10,31,21,0,-1.5,1.23,0.013000000000000001,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.242,42.45,133.35,0.91,0.11,796,0.4,211,1.1
+2023,10,31,21,30,-1.6,1.23,0.013000000000000001,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.241,42.76,138.53,0.91,0.11,796,0.4,215,1.1
+2023,10,31,22,0,-1.7000000000000002,1.24,0.013000000000000001,0.61,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.24,43.02,143.34,0.91,0.11,796,0.4,219,1.1
+2023,10,31,22,30,-1.9000000000000001,1.24,0.013000000000000001,0.61,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.24,43.660000000000004,147.56,0.91,0.11,796,0.5,217,1.1
+2023,10,31,23,0,-2.1,1.24,0.013000000000000001,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.23900000000000002,44.52,150.94,0.91,0.11,796,0.5,216,1.2000000000000002
+2023,10,31,23,30,-2.3000000000000003,1.24,0.013000000000000001,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.23900000000000002,45.18,153.13,0.91,0.11,796,0.5,212,1.2000000000000002
+2023,11,1,0,0,-2.6,1.24,0.013000000000000001,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.23900000000000002,46.660000000000004,153.82,0.91,0.11,796,0.5,209,1.2000000000000002
+2023,11,1,0,30,-2.8000000000000003,1.24,0.013000000000000001,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.24,47.36,152.9,0.91,0.11,796,0.5,206,1.3
+2023,11,1,1,0,-3.1,1.23,0.014,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.241,49.24,150.53,0.92,0.11,795,0.5,203,1.3
+2023,11,1,1,30,-3.2,1.23,0.014,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.241,49.61,147.02,0.92,0.11,795,0.5,203,1.3
+2023,11,1,2,0,-3.3000000000000003,1.23,0.015,0.61,0,0,0,0,7,-11.9,0,0,0,0,0.242,51.480000000000004,142.70000000000002,0.92,0.11,795,0.5,202,1.3
+2023,11,1,2,30,-3.3000000000000003,1.23,0.015,0.61,0,0,0,0,7,-11.9,0,0,0,0,0.243,51.480000000000004,137.84,0.92,0.11,795,0.5,202,1.3
+2023,11,1,3,0,-3.4000000000000004,1.24,0.014,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.243,53.300000000000004,132.62,0.92,0.11,795,0.5,202,1.3
+2023,11,1,3,30,-3.5,1.24,0.014,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.244,53.7,127.17,0.91,0.11,795,0.5,203,1.3
+2023,11,1,4,0,-3.6,1.26,0.013000000000000001,0.61,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.244,55.550000000000004,121.58,0.91,0.11,795,0.5,203,1.3
+2023,11,1,4,30,-3.7,1.26,0.013000000000000001,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.245,55.97,115.91,0.91,0.11,795,0.5,205,1.3
+2023,11,1,5,0,-3.8000000000000003,1.25,0.014,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.246,57.63,110.22,0.91,0.11,795,0.5,207,1.2000000000000002
+2023,11,1,5,30,-3.9000000000000004,1.25,0.014,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.248,58.06,104.54,0.92,0.11,795,0.5,209,1.2000000000000002
+2023,11,1,6,0,-3.9000000000000004,1.22,0.015,0.61,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.249,59.28,98.92,0.92,0.11,795,0.5,211,1.2000000000000002
+2023,11,1,6,30,-3.4000000000000004,1.22,0.015,0.61,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.25,57.1,93.39,0.92,0.11,795,0.5,211,1.2000000000000002
+2023,11,1,7,0,-2.8000000000000003,1.21,0.015,0.61,18,313,30,6,8,-9.9,18,6,86,18,0.251,58.32,87.76,0.92,0.11,795,0.5,212,1.1
+2023,11,1,7,30,-1.1,1.21,0.015,0.61,28,639,110,4,7,-9.8,66,31,57,70,0.251,51.52,82.67,0.92,0.11,796,0.5,214,1.6
+2023,11,1,8,0,0.6000000000000001,1.21,0.016,0.61,36,778,201,0,7,-9.8,87,22,0,92,0.252,45.79,77.72,0.92,0.11,796,0.5,216,2.2
+2023,11,1,8,30,2.1,1.21,0.016,0.61,41,861,292,0,7,-9.8,136,48,0,150,0.251,41.12,73.04,0.92,0.11,796,0.5,218,2.4000000000000004
+2023,11,1,9,0,3.5,1.22,0.016,0.61,45,916,378,0,7,-10.8,162,43,0,178,0.25,34.230000000000004,68.7,0.92,0.11,796,0.5,220,2.7
+2023,11,1,9,30,4.9,1.22,0.016,0.61,47,951,452,0,6,-10.8,169,34,0,183,0.249,31.04,64.8,0.92,0.11,796,0.5,223,3.1
+2023,11,1,10,0,6.300000000000001,1.23,0.016,0.61,50,977,517,0,6,-12.8,194,27,0,207,0.248,24.1,61.42,0.92,0.11,796,0.5,226,3.5
+2023,11,1,10,30,7.2,1.23,0.016,0.61,51,995,568,0,7,-12.8,239,103,0,293,0.247,22.63,58.67,0.93,0.11,795,0.5,228,3.5
+2023,11,1,11,0,8.1,1.26,0.015,0.61,51,1008,605,0,7,-12.8,232,367,0,434,0.246,21.240000000000002,56.64,0.93,0.11,795,0.5,230,3.6
+2023,11,1,11,30,8.700000000000001,1.26,0.015,0.61,52,1012,626,0,7,-12.8,247,294,0,414,0.245,20.39,55.42,0.93,0.11,795,0.6000000000000001,234,3.6
+2023,11,1,12,0,9.3,1.26,0.016,0.61,53,1013,633,0,7,-12.5,238,121,0,307,0.245,20.1,55.050000000000004,0.93,0.11,795,0.6000000000000001,237,3.6
+2023,11,1,12,30,9.600000000000001,1.26,0.016,0.61,53,1010,624,0,7,-12.5,214,32,0,232,0.245,19.67,55.56,0.9400000000000001,0.11,794,0.6000000000000001,239,3.6
+2023,11,1,13,0,9.9,1.24,0.018000000000000002,0.61,54,1001,600,0,7,-12.3,210,25,0,224,0.245,19.59,56.92,0.9400000000000001,0.11,794,0.6000000000000001,241,3.5
+2023,11,1,13,30,9.8,1.24,0.018000000000000002,0.61,53,985,559,0,7,-12.3,174,14,0,181,0.247,19.72,59.08,0.9400000000000001,0.11,794,0.6000000000000001,241,3.4000000000000004
+2023,11,1,14,0,9.700000000000001,1.23,0.02,0.61,53,964,506,0,6,-12.3,189,31,0,204,0.248,19.92,61.940000000000005,0.9400000000000001,0.11,794,0.6000000000000001,240,3.2
+2023,11,1,14,30,9.4,1.23,0.02,0.61,50,934,439,0,7,-12.3,191,65,0,218,0.25,20.32,65.4,0.9400000000000001,0.11,794,0.6000000000000001,236,3
+2023,11,1,15,0,9.1,1.22,0.02,0.61,46,894,361,0,7,-11.700000000000001,128,22,0,136,0.252,21.7,69.39,0.9400000000000001,0.11,793,0.6000000000000001,232,2.7
+2023,11,1,15,30,7.6000000000000005,1.22,0.02,0.61,42,833,275,0,7,-11.700000000000001,83,19,0,88,0.254,24.02,73.79,0.9400000000000001,0.11,793,0.6000000000000001,225,2
+2023,11,1,16,0,6.1000000000000005,1.19,0.021,0.61,37,740,184,0,7,-7.5,83,82,0,99,0.256,37.12,78.52,0.9400000000000001,0.11,793,0.6000000000000001,219,1.2000000000000002
+2023,11,1,16,30,4.4,1.19,0.021,0.61,28,582,94,6,7,-7.5,36,20,86,38,0.257,41.76,83.51,0.9400000000000001,0.11,793,0.6000000000000001,212,1.3
+2023,11,1,17,0,2.8000000000000003,1.19,0.02,0.61,15,220,20,5,7,-9,9,0,71,9,0.258,41.52,88.59,0.93,0.11,793,0.6000000000000001,204,1.3
+2023,11,1,17,30,2,1.19,0.02,0.61,0,0,0,0,8,-9,0,0,0,0,0.259,43.95,94.3,0.93,0.11,793,0.6000000000000001,203,1.4000000000000001
+2023,11,1,18,0,1.3,1.2,0.019,0.61,0,0,0,0,5,-10.200000000000001,0,0,0,0,0.259,42.03,99.85000000000001,0.93,0.11,793,0.6000000000000001,201,1.4000000000000001
+2023,11,1,18,30,0.9,1.2,0.019,0.61,0,0,0,0,5,-10.200000000000001,0,0,0,0,0.26,43.26,105.49000000000001,0.93,0.11,793,0.6000000000000001,204,1.4000000000000001
+2023,11,1,19,0,0.5,1.2,0.019,0.61,0,0,0,0,4,-10.700000000000001,0,0,0,0,0.261,42.89,111.18,0.93,0.11,794,0.6000000000000001,207,1.3
+2023,11,1,19,30,0.4,1.2,0.019,0.61,0,0,0,0,4,-10.700000000000001,0,0,0,0,0.262,43.2,116.88,0.93,0.11,794,0.6000000000000001,212,1.3
+2023,11,1,20,0,0.2,1.18,0.021,0.61,0,0,0,0,8,-10.9,0,0,0,0,0.263,43.22,122.55,0.93,0.11,794,0.6000000000000001,216,1.2000000000000002
+2023,11,1,20,30,0.2,1.18,0.021,0.61,0,0,0,0,7,-10.9,0,0,0,0,0.263,43.22,128.14000000000001,0.9400000000000001,0.11,794,0.6000000000000001,215,1.2000000000000002
+2023,11,1,21,0,0.2,1.16,0.023,0.61,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.264,44.12,133.58,0.9400000000000001,0.11,794,0.6000000000000001,213,1.1
+2023,11,1,21,30,0.2,1.16,0.023,0.61,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.263,44.12,138.77,0.9400000000000001,0.11,794,0.6000000000000001,209,1.1
+2023,11,1,22,0,0.30000000000000004,1.16,0.024,0.61,0,0,0,0,7,-10.3,0,0,0,0,0.263,44.89,143.59,0.9400000000000001,0.11,794,0.6000000000000001,204,1.1
+2023,11,1,22,30,0.2,1.16,0.024,0.61,0,0,0,0,8,-10.3,0,0,0,0,0.261,45.22,147.83,0.9400000000000001,0.11,794,0.7000000000000001,202,1.1
+2023,11,1,23,0,0,1.18,0.023,0.61,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.26,46.62,151.23,0.9400000000000001,0.11,794,0.7000000000000001,199,1.2000000000000002
+2023,11,1,23,30,-0.2,1.18,0.023,0.61,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.26,47.300000000000004,153.44,0.93,0.11,794,0.7000000000000001,203,1.1
+2023,11,2,0,0,-0.4,1.19,0.021,0.61,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.259,47.85,154.14000000000001,0.93,0.11,794,0.7000000000000001,206,1.1
+2023,11,2,0,30,-0.7000000000000001,1.19,0.021,0.61,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.26,48.85,153.21,0.92,0.11,793,0.7000000000000001,205,1.2000000000000002
+2023,11,2,1,0,-1,1.21,0.018000000000000002,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.26,49.21,150.82,0.92,0.11,793,0.7000000000000001,204,1.3
+2023,11,2,1,30,-1.4000000000000001,1.21,0.018000000000000002,0.61,0,0,0,0,0,-10.3,0,0,0,0,0.259,50.67,147.28,0.91,0.11,793,0.7000000000000001,203,1.3
+2023,11,2,2,0,-1.8,1.22,0.017,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.259,50.03,142.94,0.91,0.11,793,0.7000000000000001,202,1.3
+2023,11,2,2,30,-2,1.22,0.017,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.257,50.77,138.06,0.91,0.11,793,0.7000000000000001,206,1.2000000000000002
+2023,11,2,3,0,-2.1,1.26,0.015,0.61,0,0,0,0,0,-11,0,0,0,0,0.256,50.72,132.83,0.91,0.11,793,0.7000000000000001,209,1.1
+2023,11,2,3,30,-2.2,1.26,0.015,0.61,0,0,0,0,0,-11,0,0,0,0,0.253,51.09,127.37,0.91,0.11,793,0.7000000000000001,213,1.1
+2023,11,2,4,0,-2.3000000000000003,1.31,0.013000000000000001,0.61,0,0,0,0,0,-11,0,0,0,0,0.25,51.19,121.78,0.9,0.11,794,0.7000000000000001,216,1
+2023,11,2,4,30,-2.3000000000000003,1.31,0.013000000000000001,0.61,0,0,0,0,0,-11,0,0,0,0,0.249,51.19,116.11,0.9,0.11,794,0.7000000000000001,215,1
+2023,11,2,5,0,-2.4000000000000004,1.33,0.012,0.61,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.247,51.32,110.41,0.9,0.11,794,0.7000000000000001,213,1
+2023,11,2,5,30,-2.5,1.33,0.012,0.61,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.247,51.7,104.74000000000001,0.9,0.11,794,0.8,211,1
+2023,11,2,6,0,-2.5,1.34,0.011,0.61,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.246,51.67,99.12,0.9,0.11,794,0.8,209,1
+2023,11,2,6,30,-2.1,1.34,0.011,0.61,0,0,0,0,8,-11.100000000000001,0,0,0,0,0.245,50.17,93.59,0.9,0.11,794,0.8,206,1
+2023,11,2,7,0,-1.7000000000000002,1.33,0.01,0.61,16,303,27,6,8,-10.3,17,21,82,18,0.245,52.08,87.96000000000001,0.9,0.11,795,0.8,203,1
+2023,11,2,7,30,0.1,1.33,0.01,0.61,25,622,102,4,8,-10.3,53,243,57,83,0.244,45.67,82.89,0.9,0.11,795,0.9,200,1.6
+2023,11,2,8,0,1.9000000000000001,1.31,0.011,0.61,32,759,190,0,0,-10.4,32,759,0,190,0.244,39.730000000000004,77.95,0.9,0.11,795,0.9,198,2.1
+2023,11,2,8,30,3.5,1.31,0.011,0.61,36,842,278,0,8,-10.4,101,443,0,228,0.244,35.47,73.28,0.91,0.11,795,0.9,201,2.4000000000000004
+2023,11,2,9,0,5.2,1.3,0.011,0.61,39,895,360,0,3,-11,157,382,0,294,0.244,29.97,68.96000000000001,0.91,0.11,795,1,204,2.6
+2023,11,2,9,30,7,1.3,0.011,0.61,42,931,434,0,0,-11,42,931,0,434,0.243,26.48,65.07000000000001,0.91,0.11,795,1,211,2.9000000000000004
+2023,11,2,10,0,8.8,1.32,0.011,0.61,43,956,496,0,0,-12,133,657,0,444,0.243,21.650000000000002,61.71,0.9,0.11,795,1,217,3.2
+2023,11,2,10,30,10,1.32,0.011,0.61,43,973,545,0,0,-12,67,905,0,534,0.242,19.98,58.97,0.9,0.11,795,1,221,3.4000000000000004
+2023,11,2,11,0,11.200000000000001,1.33,0.011,0.61,44,984,581,0,0,-11.600000000000001,44,984,0,581,0.241,18.98,56.95,0.9,0.11,795,1,225,3.7
+2023,11,2,11,30,12,1.33,0.011,0.61,46,989,603,0,0,-11.600000000000001,216,527,0,513,0.241,17.98,55.730000000000004,0.9,0.11,794,1.1,228,4
+2023,11,2,12,0,12.700000000000001,1.33,0.011,0.61,46,990,609,0,0,-10.3,199,561,0,518,0.241,19.05,55.370000000000005,0.91,0.11,794,1.1,230,4.2
+2023,11,2,12,30,13.200000000000001,1.33,0.011,0.61,47,985,600,0,7,-10.3,189,540,0,492,0.241,18.44,55.88,0.91,0.11,794,1.1,232,4.3
+2023,11,2,13,0,13.600000000000001,1.32,0.013000000000000001,0.61,48,975,576,0,7,-9,202,444,0,442,0.241,19.95,57.230000000000004,0.91,0.11,794,1.1,234,4.4
+2023,11,2,13,30,13.8,1.32,0.013000000000000001,0.61,50,959,538,0,6,-9,172,197,0,272,0.241,19.7,59.38,0.91,0.11,794,1.1,234,4.3
+2023,11,2,14,0,13.9,1.37,0.019,0.61,50,935,486,0,0,-8,66,883,0,478,0.242,21.150000000000002,62.22,0.91,0.11,793,1.1,234,4.2
+2023,11,2,14,30,13.700000000000001,1.37,0.019,0.61,48,907,422,0,0,-8,99,716,0,394,0.241,21.43,65.68,0.91,0.11,793,1.1,231,4
+2023,11,2,15,0,13.600000000000001,1.37,0.019,0.61,46,866,347,0,0,-7.300000000000001,86,682,0,323,0.241,22.77,69.65,0.91,0.11,793,1.1,229,3.7
+2023,11,2,15,30,12.200000000000001,1.37,0.019,0.61,41,806,263,0,8,-7.300000000000001,101,162,0,146,0.241,24.94,74.03,0.92,0.11,793,1.1,222,2.8000000000000003
+2023,11,2,16,0,10.8,1.3800000000000001,0.02,0.61,35,711,174,0,8,-4.7,50,17,0,53,0.24,33.49,78.76,0.92,0.11,793,1.1,216,1.9000000000000001
+2023,11,2,16,30,8.3,1.3800000000000001,0.02,0.61,27,548,87,6,8,-4.7,42,30,82,45,0.241,39.6,83.74,0.92,0.11,793,1.1,209,1.7000000000000002
+2023,11,2,17,0,5.800000000000001,1.3800000000000001,0.021,0.61,14,198,18,4,3,-4.800000000000001,10,29,64,11,0.241,46.4,88.8,0.92,0.11,793,1.1,203,1.5
+2023,11,2,17,30,5.1000000000000005,1.3800000000000001,0.021,0.61,0,0,0,0,8,-4.800000000000001,0,0,0,0,0.242,48.71,94.51,0.92,0.11,793,1.1,203,1.6
+2023,11,2,18,0,4.3,1.36,0.023,0.61,0,0,0,0,5,-5.5,0,0,0,0,0.243,49.07,100.06,0.92,0.11,793,1.1,204,1.6
+2023,11,2,18,30,3.9000000000000004,1.36,0.023,0.61,0,0,0,0,7,-5.5,0,0,0,0,0.244,50.46,105.69,0.92,0.11,793,1.1,206,1.7000000000000002
+2023,11,2,19,0,3.5,1.33,0.027,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.245,50.86,111.38,0.93,0.11,793,1.2000000000000002,208,1.8
+2023,11,2,19,30,3.3000000000000003,1.33,0.027,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.247,51.58,117.08,0.93,0.11,793,1.2000000000000002,210,1.8
+2023,11,2,20,0,3.1,1.32,0.028,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.248,51.870000000000005,122.75,0.93,0.11,793,1.2000000000000002,212,1.8
+2023,11,2,20,30,2.8000000000000003,1.32,0.028,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.25,52.980000000000004,128.35,0.93,0.11,793,1.2000000000000002,211,1.8
+2023,11,2,21,0,2.5,1.33,0.025,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.251,52.89,133.79,0.92,0.11,794,1.2000000000000002,210,1.8
+2023,11,2,21,30,2.2,1.33,0.025,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.253,53.96,139,0.92,0.11,793,1.2000000000000002,209,1.8
+2023,11,2,22,0,1.9000000000000001,1.35,0.023,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.254,53.45,143.83,0.92,0.11,793,1.2000000000000002,207,1.7000000000000002
+2023,11,2,22,30,1.8,1.35,0.023,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.256,53.83,148.1,0.92,0.11,793,1.2000000000000002,210,1.7000000000000002
+2023,11,2,23,0,1.6,1.37,0.022,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.257,53.5,151.52,0.92,0.11,793,1.2000000000000002,212,1.6
+2023,11,2,23,30,1.5,1.37,0.022,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.258,53.89,153.75,0.92,0.11,793,1.2000000000000002,214,1.6
+2023,11,3,0,0,1.4000000000000001,1.37,0.023,0.61,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.259,53.11,154.46,0.92,0.11,794,1.2000000000000002,216,1.5
+2023,11,3,0,30,1.2000000000000002,1.37,0.023,0.61,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.259,53.870000000000005,153.52,0.92,0.11,794,1.2000000000000002,216,1.5
+2023,11,3,1,0,1,1.36,0.024,0.61,0,0,0,0,0,-7.4,0,0,0,0,0.259,53.38,151.1,0.92,0.11,794,1.3,216,1.4000000000000001
+2023,11,3,1,30,1.1,1.36,0.024,0.61,0,0,0,0,0,-7.4,0,0,0,0,0.259,53,147.54,0.92,0.11,794,1.3,219,1.4000000000000001
+2023,11,3,2,0,1.1,1.32,0.028,0.61,0,0,0,0,7,-7.4,0,0,0,0,0.259,53.07,143.18,0.93,0.11,794,1.3,222,1.3
+2023,11,3,2,30,1.2000000000000002,1.32,0.028,0.61,0,0,0,0,7,-7.4,0,0,0,0,0.26,52.69,138.28,0.93,0.11,794,1.3,224,1.2000000000000002
+2023,11,3,3,0,1.4000000000000001,1.31,0.03,0.61,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.26,53.050000000000004,133.04,0.93,0.11,794,1.4000000000000001,226,1.1
+2023,11,3,3,30,1.4000000000000001,1.31,0.03,0.61,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.261,53.050000000000004,127.57000000000001,0.93,0.11,794,1.3,228,1.1
+2023,11,3,4,0,1.4000000000000001,1.31,0.028,0.61,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.262,53.09,121.97,0.93,0.11,795,1.3,230,1
+2023,11,3,4,30,1.6,1.31,0.028,0.61,0,0,0,0,8,-7.1000000000000005,0,0,0,0,0.264,52.34,116.3,0.93,0.11,795,1.3,234,1
+2023,11,3,5,0,1.7000000000000002,1.29,0.025,0.61,0,0,0,0,5,-7,0,0,0,0,0.265,52.61,110.60000000000001,0.93,0.11,795,1.3,238,1
+2023,11,3,5,30,1.9000000000000001,1.29,0.025,0.61,0,0,0,0,4,-7,0,0,0,0,0.267,51.870000000000005,104.93,0.93,0.11,795,1.2000000000000002,238,0.9
+2023,11,3,6,0,2.1,1.27,0.023,0.61,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.268,51.82,99.32000000000001,0.93,0.11,795,1.2000000000000002,238,0.8
+2023,11,3,6,30,2.3000000000000003,1.27,0.023,0.61,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.269,51.09,93.8,0.93,0.11,795,1.1,233,0.8
+2023,11,3,7,0,2.6,1.25,0.022,0.61,16,250,24,1,0,-6.5,16,242,14,24,0.271,51.300000000000004,88.17,0.93,0.11,795,1.1,227,0.8
+2023,11,3,7,30,3.9000000000000004,1.25,0.022,0.61,29,565,97,0,0,-6.5,29,565,0,97,0.271,46.81,83.11,0.92,0.11,795,1.1,218,1
+2023,11,3,8,0,5.300000000000001,1.24,0.022,0.61,37,718,184,0,0,-6,59,532,0,168,0.272,44.050000000000004,78.19,0.92,0.11,795,1.1,209,1.2000000000000002
+2023,11,3,8,30,7,1.24,0.022,0.61,43,809,272,0,8,-6,115,363,0,218,0.272,39.18,73.52,0.92,0.11,795,1.1,230,1.1
+2023,11,3,9,0,8.700000000000001,1.24,0.021,0.61,46,868,354,0,0,-3.6,117,546,0,311,0.272,41.67,69.21000000000001,0.92,0.11,796,1.1,250,1.1
+2023,11,3,9,30,10.100000000000001,1.24,0.021,0.61,50,905,428,0,8,-3.6,170,420,0,345,0.272,37.89,65.34,0.93,0.11,795,1.1,263,1.4000000000000001
+2023,11,3,10,0,11.5,1.23,0.023,0.61,53,930,490,0,8,-0.4,191,410,0,384,0.272,43.94,61.99,0.93,0.11,795,1.1,276,1.7000000000000002
+2023,11,3,10,30,12.200000000000001,1.23,0.023,0.61,53,952,540,0,7,-0.4,182,487,0,431,0.272,41.96,59.26,0.93,0.11,795,1.1,271,1.8
+2023,11,3,11,0,12.8,1.17,0.019,0.61,55,966,577,0,7,0.2,212,419,0,439,0.272,42.09,57.26,0.9400000000000001,0.11,795,1.1,265,2
+2023,11,3,11,30,13.200000000000001,1.17,0.019,0.61,54,973,598,0,8,0.2,175,601,0,511,0.271,41.01,56.04,0.9400000000000001,0.11,795,1.1,261,2.1
+2023,11,3,12,0,13.600000000000001,1.16,0.019,0.61,55,975,605,0,7,0.4,166,657,0,536,0.27,40.34,55.68,0.9400000000000001,0.11,794,1.1,257,2.3000000000000003
+2023,11,3,12,30,13.9,1.16,0.019,0.61,56,971,596,0,8,0.4,132,749,0,549,0.27,39.57,56.19,0.9400000000000001,0.11,794,1.1,256,2.4000000000000004
+2023,11,3,13,0,14.100000000000001,1.1500000000000001,0.021,0.61,56,961,572,0,0,0.30000000000000004,67,925,0,564,0.269,38.92,57.53,0.9400000000000001,0.11,794,1.1,255,2.5
+2023,11,3,13,30,14,1.1500000000000001,0.021,0.61,55,946,533,0,8,0.30000000000000004,124,724,0,490,0.27,39.18,59.67,0.9400000000000001,0.11,794,1.1,258,2.5
+2023,11,3,14,0,14,1.1400000000000001,0.026000000000000002,0.61,54,922,480,0,0,0.1,113,710,0,441,0.27,38.660000000000004,62.5,0.9500000000000001,0.11,794,1.1,260,2.5
+2023,11,3,14,30,13.700000000000001,1.1400000000000001,0.026000000000000002,0.61,52,892,416,0,0,0.1,102,702,0,388,0.27,39.42,65.95,0.9500000000000001,0.11,794,1.1,260,2.3000000000000003
+2023,11,3,15,0,13.4,1.1500000000000001,0.026000000000000002,0.61,49,849,341,0,8,-0.1,96,638,14,315,0.271,39.64,69.9,0.9500000000000001,0.11,794,1.1,259,2.1
+2023,11,3,15,30,12.5,1.1500000000000001,0.026000000000000002,0.61,44,787,257,0,7,-0.1,101,424,14,216,0.271,42.03,74.28,0.9500000000000001,0.11,794,1.1,251,1.4000000000000001
+2023,11,3,16,0,11.700000000000001,1.16,0.025,0.61,37,691,169,0,7,1.4000000000000001,99,143,0,126,0.271,49.38,78.99,0.9400000000000001,0.11,794,1,242,0.8
+2023,11,3,16,30,10.8,1.16,0.025,0.61,28,527,83,5,8,1.4000000000000001,52,97,71,62,0.272,52.410000000000004,83.96000000000001,0.9400000000000001,0.11,794,1,228,0.6000000000000001
+2023,11,3,17,0,10,1.2,0.022,0.61,12,170,15,1,0,0.2,12,170,11,15,0.273,50.49,88.99,0.93,0.11,794,1,214,0.4
+2023,11,3,17,30,9.4,1.2,0.022,0.61,0,0,0,0,7,0.2,0,0,0,0,0.273,52.56,94.71000000000001,0.93,0.11,794,1,274,0.4
+2023,11,3,18,0,8.9,1.21,0.021,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.272,51.83,100.25,0.93,0.11,794,1,334,0.30000000000000004
+2023,11,3,18,30,8,1.21,0.021,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.271,55.08,105.89,0.93,0.11,794,1,345,0.5
+2023,11,3,19,0,7.1000000000000005,1.2,0.022,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.27,57.26,111.57000000000001,0.93,0.11,794,0.9,356,0.7000000000000001
+2023,11,3,19,30,6.300000000000001,1.2,0.022,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.269,60.56,117.27,0.92,0.11,795,0.9,180,0.8
+2023,11,3,20,0,5.5,1.18,0.022,0.61,0,0,0,0,7,-0.8,0,0,14,0,0.269,63.7,122.95,0.92,0.11,795,0.9,4,0.8
+2023,11,3,20,30,4.9,1.18,0.022,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.268,66.41,128.55,0.92,0.11,795,0.9,8,0.9
+2023,11,3,21,0,4.2,1.17,0.021,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.268,69.82000000000001,134,0.92,0.11,795,0.9,13,1
+2023,11,3,21,30,3.7,1.17,0.021,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.268,72.31,139.22,0.92,0.11,795,0.9,17,1
+2023,11,3,22,0,3.3000000000000003,1.16,0.022,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.269,74.81,144.07,0.92,0.11,796,0.9,22,1.1
+2023,11,3,22,30,3,1.16,0.022,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.269,76.41,148.36,0.92,0.11,796,0.9,28,1.1
+2023,11,3,23,0,2.8000000000000003,1.1400000000000001,0.021,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.269,77.9,151.81,0.92,0.11,796,0.8,34,1
+2023,11,3,23,30,2.7,1.1400000000000001,0.021,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.269,78.46000000000001,154.05,0.92,0.11,796,0.8,45,1
+2023,11,4,0,0,2.7,1.1300000000000001,0.021,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.27,78.67,154.77,0.92,0.11,796,0.8,56,0.9
+2023,11,4,0,30,2.6,1.1300000000000001,0.021,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.27,79.23,153.82,0.92,0.11,796,0.8,71,0.8
+2023,11,4,1,0,2.5,1.11,0.021,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.269,79.56,151.38,0.92,0.11,796,0.8,87,0.7000000000000001
+2023,11,4,1,30,2.3000000000000003,1.11,0.021,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.269,80.7,147.8,0.92,0.11,796,0.8,102,0.8
+2023,11,4,2,0,2.1,1.12,0.019,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.268,81.25,143.42000000000002,0.91,0.11,796,0.8,117,0.8
+2023,11,4,2,30,1.7000000000000002,1.12,0.019,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.267,83.60000000000001,138.5,0.91,0.11,796,0.8,127,0.8
+2023,11,4,3,0,1.3,1.12,0.018000000000000002,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.266,85.18,133.25,0.91,0.11,796,0.8,137,0.9
+2023,11,4,3,30,1,1.12,0.018000000000000002,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.266,87.03,127.77,0.91,0.11,796,0.8,144,0.9
+2023,11,4,4,0,0.7000000000000001,1.11,0.018000000000000002,0.61,0,0,0,0,0,-1,0,0,0,0,0.266,88.07000000000001,122.17,0.92,0.11,796,0.8,151,1
+2023,11,4,4,30,0.4,1.11,0.018000000000000002,0.61,0,0,0,0,0,-1,0,0,0,0,0.266,90,116.49000000000001,0.92,0.11,796,0.8,156,1
+2023,11,4,5,0,0.2,1.11,0.017,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.266,90.43,110.8,0.92,0.11,796,0.8,161,1
+2023,11,4,5,30,-0.2,1.11,0.017,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.266,93.09,105.13,0.92,0.11,796,0.8,162,1.1
+2023,11,4,6,0,-0.5,1.11,0.017,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.266,94.22,99.52,0.92,0.11,796,0.8,163,1.1
+2023,11,4,6,30,-0.30000000000000004,1.11,0.017,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.266,92.98,94,0.92,0.11,797,0.8,165,1.1
+2023,11,4,7,0,-0.1,1.12,0.016,0.61,15,227,21,3,0,-1.4000000000000001,14,79,43,16,0.265,90.84,88.36,0.92,0.11,797,0.8,166,1.1
+2023,11,4,7,30,1.9000000000000001,1.12,0.016,0.61,27,585,95,3,8,-1.4000000000000001,52,199,43,75,0.265,78.67,83.33,0.92,0.11,797,0.9,168,1.4000000000000001
+2023,11,4,8,0,3.9000000000000004,1.1400000000000001,0.016,0.61,34,736,182,0,0,-1.4000000000000001,52,585,0,170,0.264,68.55,78.41,0.92,0.11,797,0.9,169,1.8
+2023,11,4,8,30,5.6000000000000005,1.1400000000000001,0.016,0.61,40,823,270,0,0,-1.4000000000000001,44,798,0,267,0.263,60.89,73.77,0.92,0.11,797,0.9,177,1.9000000000000001
+2023,11,4,9,0,7.300000000000001,1.1500000000000001,0.016,0.61,43,881,352,0,0,-1.2000000000000002,43,881,0,352,0.263,54.660000000000004,69.47,0.92,0.11,797,0.9,186,2
+2023,11,4,9,30,8.9,1.1500000000000001,0.016,0.61,46,920,426,0,0,-1.2000000000000002,46,920,0,426,0.262,49.04,65.61,0.92,0.11,797,0.9,201,2.2
+2023,11,4,10,0,10.5,1.16,0.016,0.61,48,946,488,0,0,-1.6,48,946,0,488,0.261,42.86,62.27,0.92,0.11,797,1,216,2.5
+2023,11,4,10,30,11.5,1.16,0.016,0.61,49,966,538,0,0,-1.6,49,966,0,538,0.26,40.06,59.56,0.92,0.11,796,1,223,2.6
+2023,11,4,11,0,12.5,1.09,0.012,0.61,47,981,573,0,0,-1.9000000000000001,47,981,0,573,0.259,36.65,57.56,0.92,0.11,796,1,230,2.8000000000000003
+2023,11,4,11,30,13.100000000000001,1.09,0.012,0.61,48,986,594,0,0,-1.9000000000000001,48,986,0,594,0.259,35.24,56.35,0.92,0.11,796,1,232,3
+2023,11,4,12,0,13.8,1.1,0.013000000000000001,0.61,48,988,601,0,0,-2.1,48,988,0,601,0.258,33.36,55.99,0.92,0.11,796,1,233,3.2
+2023,11,4,12,30,14.200000000000001,1.1,0.013000000000000001,0.61,48,985,592,0,0,-2.1,48,985,0,592,0.257,32.47,56.49,0.92,0.11,795,1,232,3.3000000000000003
+2023,11,4,13,0,14.600000000000001,1.1,0.014,0.61,49,977,569,0,0,-2,49,977,0,569,0.257,31.76,57.83,0.92,0.11,795,1,232,3.5
+2023,11,4,13,30,14.700000000000001,1.1,0.014,0.61,49,962,531,0,0,-2,49,962,0,531,0.256,31.560000000000002,59.96,0.92,0.11,795,1,231,3.6
+2023,11,4,14,0,14.8,1.1400000000000001,0.017,0.61,49,940,479,0,0,-2,49,940,0,479,0.256,31.5,62.78,0.92,0.11,794,1,231,3.7
+2023,11,4,14,30,14.5,1.1400000000000001,0.017,0.61,47,913,415,0,0,-2,47,913,0,415,0.255,32.11,66.21000000000001,0.92,0.11,794,0.9,230,3.6
+2023,11,4,15,0,14.200000000000001,1.1400000000000001,0.016,0.61,44,873,340,0,0,-1.9000000000000001,44,873,0,340,0.255,32.980000000000004,70.15,0.92,0.11,794,0.9,229,3.6
+2023,11,4,15,30,13.100000000000001,1.1400000000000001,0.016,0.61,39,811,256,0,0,-1.9000000000000001,39,811,0,256,0.254,35.42,74.51,0.93,0.11,794,0.9,227,2.8000000000000003
+2023,11,4,16,0,11.9,1.1500000000000001,0.017,0.61,33,714,167,0,0,-0.4,59,514,11,155,0.254,42.62,79.21000000000001,0.93,0.11,794,0.9,224,2
+2023,11,4,16,30,10,1.1500000000000001,0.017,0.61,26,544,81,5,8,-0.4,46,101,68,56,0.255,48.33,84.17,0.93,0.11,794,0.9,218,1.6
+2023,11,4,17,0,8.1,1.16,0.019,0.61,11,155,13,3,0,-0.5,10,109,43,12,0.255,54.51,89.18,0.93,0.11,794,0.9,213,1.2000000000000002
+2023,11,4,17,30,7.7,1.16,0.019,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.256,56.02,94.91,0.93,0.11,794,0.9,207,1.2000000000000002
+2023,11,4,18,0,7.4,1.18,0.02,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.257,56.4,100.45,0.93,0.11,794,0.9,201,1.2000000000000002
+2023,11,4,18,30,7.1000000000000005,1.18,0.02,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.258,57.57,106.08,0.93,0.11,794,0.9,200,1.2000000000000002
+2023,11,4,19,0,6.800000000000001,1.21,0.02,0.61,0,0,0,0,7,-1,0,0,0,0,0.259,57.730000000000004,111.76,0.93,0.11,794,0.9,198,1.3
+2023,11,4,19,30,6.6000000000000005,1.21,0.02,0.61,0,0,0,0,7,-1,0,0,0,0,0.259,58.53,117.46000000000001,0.93,0.11,794,0.9,199,1.3
+2023,11,4,20,0,6.300000000000001,1.25,0.022,0.61,0,0,0,0,6,-1.3,0,0,0,0,0.26,58.42,123.14,0.93,0.11,794,0.9,199,1.4000000000000001
+2023,11,4,20,30,6.2,1.25,0.022,0.61,0,0,0,0,7,-1.3,0,0,0,0,0.26,58.82,128.74,0.93,0.11,794,1,200,1.5
+2023,11,4,21,0,6.1000000000000005,1.31,0.026000000000000002,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.26,58.160000000000004,134.21,0.93,0.11,793,1,200,1.5
+2023,11,4,21,30,6.1000000000000005,1.31,0.026000000000000002,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.26,58.160000000000004,139.44,0.93,0.11,793,1,200,1.6
+2023,11,4,22,0,6.1000000000000005,1.37,0.029,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.26,57.28,144.31,0.93,0.11,793,1.1,201,1.7000000000000002
+2023,11,4,22,30,5.6000000000000005,1.37,0.029,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.26,59.29,148.62,0.93,0.11,793,1.1,201,1.8
+2023,11,4,23,0,5.1000000000000005,1.44,0.03,0.61,0,0,0,0,7,-2.1,0,0,0,0,0.259,59.79,152.09,0.92,0.11,793,1.1,200,1.9000000000000001
+2023,11,4,23,30,4.7,1.44,0.03,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.258,61.480000000000004,154.35,0.92,0.11,793,1.1,199,2
+2023,11,5,0,0,4.3,1.48,0.029,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.257,61.83,155.07,0.92,0.11,793,1.1,197,2.1
+2023,11,5,0,30,4.1000000000000005,1.48,0.029,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.257,62.63,154.12,0.92,0.11,792,1.1,196,2.1
+2023,11,5,1,0,3.9000000000000004,1.48,0.03,0.61,0,0,0,0,8,-2.6,0,0,0,0,0.256,62.58,151.66,0.92,0.11,792,1.1,195,2.2
+2023,11,5,1,30,3.9000000000000004,1.48,0.03,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.256,62.58,148.05,0.92,0.11,792,1.1,194,2.2
+2023,11,5,2,0,3.8000000000000003,1.48,0.03,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.257,62.15,143.65,0.92,0.11,792,1.1,193,2.2
+2023,11,5,2,30,3.8000000000000003,1.48,0.03,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.258,62.07,138.72,0.92,0.11,791,1.1,194,2.2
+2023,11,5,3,0,3.7,1.46,0.033,0.61,0,0,0,0,7,-3,0,0,0,0,0.259,61.46,133.45,0.92,0.11,791,1.1,194,2.2
+2023,11,5,3,30,3.7,1.46,0.033,0.61,0,0,0,0,7,-3,0,0,0,0,0.26,61.46,127.97,0.92,0.11,791,1,196,2.1
+2023,11,5,4,0,3.7,1.41,0.036000000000000004,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.261,60.49,122.36,0.92,0.11,791,1,198,2.1
+2023,11,5,4,30,3.8000000000000003,1.41,0.036000000000000004,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.262,60.07,116.68,0.92,0.11,791,1,199,2
+2023,11,5,5,0,3.9000000000000004,1.37,0.038,0.61,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.263,59.22,110.99000000000001,0.92,0.11,791,1,200,2
+2023,11,5,5,30,3.8000000000000003,1.37,0.038,0.61,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.264,59.64,105.32000000000001,0.92,0.11,791,1,200,2
+2023,11,5,6,0,3.8000000000000003,1.34,0.04,0.61,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.265,59.49,99.71000000000001,0.92,0.11,791,1,200,2
+2023,11,5,6,30,4,1.34,0.04,0.61,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.266,58.660000000000004,94.21000000000001,0.92,0.11,791,1,198,2.1
+2023,11,5,7,0,4.3,1.34,0.042,0.61,15,173,19,5,7,-3.3000000000000003,10,1,71,10,0.267,57.59,88.56,0.92,0.11,791,1,197,2.1
+2023,11,5,7,30,5.6000000000000005,1.34,0.042,0.61,32,501,88,5,7,-3.3000000000000003,49,15,71,51,0.268,52.620000000000005,83.55,0.92,0.11,791,1,197,2.6
+2023,11,5,8,0,6.9,1.34,0.043000000000000003,0.61,42,666,173,0,7,-3.3000000000000003,99,193,0,137,0.269,48.15,78.65,0.92,0.11,791,1,196,3.1
+2023,11,5,8,30,8.3,1.34,0.043000000000000003,0.61,50,767,261,0,0,-3.3000000000000003,106,368,0,207,0.27,43.77,74.01,0.92,0.11,791,1,197,3.5
+2023,11,5,9,0,9.8,1.37,0.042,0.61,54,833,343,0,7,-3.6,157,268,0,250,0.271,38.76,69.72,0.92,0.11,790,1,199,3.8000000000000003
+2023,11,5,9,30,11.700000000000001,1.37,0.042,0.61,58,878,417,0,7,-3.6,181,256,0,286,0.271,34.17,65.87,0.92,0.11,790,1,206,4.4
+2023,11,5,10,0,13.600000000000001,1.3900000000000001,0.04,0.61,61,910,480,0,7,-6.300000000000001,153,461,0,366,0.272,24.54,62.550000000000004,0.92,0.11,790,1,214,5
+2023,11,5,10,30,14.8,1.3900000000000001,0.04,0.61,58,943,532,0,0,-6.300000000000001,82,869,0,518,0.271,22.71,59.85,0.92,0.11,790,1,219,5.2
+2023,11,5,11,0,16,1.35,0.019,0.61,53,972,570,0,0,-8.9,120,752,7,520,0.271,17.25,57.86,0.93,0.11,789,1,224,5.4
+2023,11,5,11,30,16.400000000000002,1.35,0.019,0.61,55,975,591,0,0,-8.9,144,731,0,546,0.271,16.82,56.65,0.93,0.11,789,1,226,5.5
+2023,11,5,12,0,16.8,1.3,0.024,0.61,58,973,598,0,0,-8.6,58,973,0,598,0.27,16.75,56.29,0.9400000000000001,0.11,789,1,228,5.6000000000000005
+2023,11,5,12,30,16.900000000000002,1.3,0.024,0.61,59,968,589,0,7,-8.6,180,574,0,494,0.269,16.64,56.79,0.9400000000000001,0.11,789,1,229,5.5
+2023,11,5,13,0,17,1.31,0.028,0.61,59,959,565,0,7,-7.6000000000000005,204,482,0,458,0.268,17.900000000000002,58.13,0.9400000000000001,0.11,788,1,229,5.5
+2023,11,5,13,30,17,1.31,0.028,0.61,57,944,526,0,7,-7.6000000000000005,213,400,0,412,0.268,17.900000000000002,60.24,0.9400000000000001,0.11,788,0.9,230,5.5
+2023,11,5,14,0,16.900000000000002,1.31,0.031,0.61,57,921,474,0,7,-6.7,190,415,0,378,0.267,19.27,63.050000000000004,0.93,0.11,788,0.9,231,5.5
+2023,11,5,14,30,16.7,1.31,0.031,0.61,54,889,409,0,7,-6.7,183,342,0,320,0.267,19.52,66.47,0.93,0.11,788,0.9,231,5.1000000000000005
+2023,11,5,15,0,16.400000000000002,1.32,0.034,0.61,51,841,333,0,7,-5.800000000000001,156,276,0,249,0.266,21.31,70.4,0.93,0.11,788,0.9,232,4.7
+2023,11,5,15,30,15,1.32,0.034,0.61,46,770,249,0,7,-5.800000000000001,124,205,0,178,0.266,23.31,74.75,0.93,0.11,788,0.9,230,3.7
+2023,11,5,16,0,13.700000000000001,1.31,0.037,0.61,39,659,160,1,0,-3.7,62,451,14,145,0.266,29.67,79.43,0.93,0.11,788,0.9,229,2.6
+2023,11,5,16,30,11.9,1.31,0.037,0.61,29,474,75,7,8,-3.7,53,35,100,56,0.266,33.36,84.38,0.93,0.11,788,0.9,230,2.3000000000000003
+2023,11,5,17,0,10,1.28,0.04,0.61,11,119,12,4,7,-3.1,8,17,50,8,0.266,39.63,89.37,0.93,0.11,788,0.9,230,2
+2023,11,5,17,30,9.5,1.28,0.04,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,40.980000000000004,95.11,0.93,0.11,788,0.9,233,1.9000000000000001
+2023,11,5,18,0,9,1.26,0.041,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.266,42.07,100.64,0.93,0.11,788,0.9,236,1.9000000000000001
+2023,11,5,18,30,8.700000000000001,1.26,0.041,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.266,42.980000000000004,106.26,0.93,0.11,789,0.9,238,1.8
+2023,11,5,19,0,8.4,1.27,0.041,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,44.1,111.94,0.93,0.11,789,0.9,240,1.6
+2023,11,5,19,30,8.200000000000001,1.27,0.041,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.266,44.7,117.64,0.93,0.11,789,0.9,239,1.5
+2023,11,5,20,0,8,1.29,0.04,0.61,0,0,0,0,7,-3.1,0,0,0,0,0.267,45.45,123.32000000000001,0.93,0.11,789,0.9,237,1.3
+2023,11,5,20,30,8,1.29,0.04,0.61,0,0,0,0,6,-3.1,0,0,0,0,0.267,45.45,128.93,0.93,0.11,789,0.9,232,1.3
+2023,11,5,21,0,7.9,1.32,0.041,0.61,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.267,44.63,134.4,0.93,0.11,788,0.9,227,1.2000000000000002
+2023,11,5,21,30,7.800000000000001,1.32,0.041,0.61,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.267,44.94,139.65,0.93,0.11,788,0.9,219,1.2000000000000002
+2023,11,5,22,0,7.6000000000000005,1.36,0.04,0.61,0,0,0,0,6,-4,0,0,0,0,0.267,43.79,144.54,0.92,0.11,788,0.8,211,1.2000000000000002
+2023,11,5,22,30,7.300000000000001,1.36,0.04,0.61,0,0,0,0,6,-4,0,0,0,0,0.267,44.7,148.87,0.92,0.11,788,0.8,205,1.3
+2023,11,5,23,0,7,1.3800000000000001,0.04,0.61,0,0,0,0,6,-4.7,0,0,0,0,0.267,43.21,152.36,0.92,0.11,788,0.8,198,1.3
+2023,11,5,23,30,6.6000000000000005,1.3800000000000001,0.04,0.61,0,0,0,0,6,-4.7,0,0,0,0,0.267,44.35,154.65,0.92,0.11,787,0.8,196,1.4000000000000001
+2023,11,6,0,0,6.2,1.3900000000000001,0.04,0.61,0,0,0,0,6,-5.300000000000001,0,0,0,0,0.267,43.65,155.38,0.92,0.11,787,0.8,194,1.4000000000000001
+2023,11,6,0,30,5.9,1.3900000000000001,0.04,0.61,0,0,0,0,6,-5.300000000000001,0,0,0,0,0.267,44.57,154.41,0.92,0.11,787,0.8,195,1.5
+2023,11,6,1,0,5.6000000000000005,1.3800000000000001,0.041,0.61,0,0,0,0,7,-5.5,0,0,0,0,0.266,44.79,151.94,0.93,0.11,787,0.8,196,1.6
+2023,11,6,1,30,5.4,1.3800000000000001,0.041,0.61,0,0,0,0,6,-5.5,0,0,0,0,0.266,45.410000000000004,148.31,0.93,0.11,787,0.8,195,1.7000000000000002
+2023,11,6,2,0,5.300000000000001,1.37,0.042,0.61,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.265,45.21,143.89000000000001,0.93,0.11,787,0.9,195,1.7000000000000002
+2023,11,6,2,30,5.1000000000000005,1.37,0.042,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.264,45.84,138.94,0.93,0.11,787,0.9,194,1.7000000000000002
+2023,11,6,3,0,5,1.37,0.043000000000000003,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.264,45.93,133.66,0.93,0.11,787,0.9,193,1.8
+2023,11,6,3,30,4.800000000000001,1.37,0.043000000000000003,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.263,46.57,128.17000000000002,0.93,0.11,787,0.9,193,1.8
+2023,11,6,4,0,4.7,1.37,0.043000000000000003,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.263,46.550000000000004,122.55,0.93,0.11,787,0.9,193,1.8
+2023,11,6,4,30,4.6000000000000005,1.37,0.043000000000000003,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.262,46.88,116.87,0.93,0.11,787,0.9,191,1.8
+2023,11,6,5,0,4.5,1.4000000000000001,0.042,0.61,0,0,0,0,7,-6,0,0,0,0,0.262,46.47,111.18,0.92,0.11,787,0.9,190,1.9000000000000001
+2023,11,6,5,30,4.3,1.4000000000000001,0.042,0.61,0,0,0,0,7,-6,0,0,0,0,0.262,47.12,105.51,0.92,0.11,787,0.9,190,2
+2023,11,6,6,0,4,1.44,0.042,0.61,0,0,0,0,6,-6.4,0,0,0,0,0.262,46.76,99.91,0.92,0.11,787,0.9,190,2
+2023,11,6,6,30,4,1.44,0.042,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.261,46.76,94.41,0.91,0.11,787,0.9,193,2
+2023,11,6,7,0,4.1000000000000005,1.48,0.044,0.61,13,168,17,5,7,-6.6000000000000005,10,1,71,10,0.261,45.71,88.76,0.91,0.11,787,0.9,195,2.1
+2023,11,6,7,30,5.4,1.48,0.044,0.61,31,492,84,5,7,-6.6000000000000005,50,12,71,51,0.26,41.75,83.77,0.91,0.11,787,0.9,198,2.6
+2023,11,6,8,0,6.7,1.49,0.049,0.61,43,655,169,0,7,-7,88,40,0,96,0.26,37.02,78.87,0.91,0.11,787,0.9,200,3.1
+2023,11,6,8,30,7.6000000000000005,1.49,0.049,0.61,52,753,256,0,8,-7,107,396,0,214,0.259,34.81,74.25,0.91,0.11,787,0.9,200,3.3000000000000003
+2023,11,6,9,0,8.5,1.5,0.055,0.61,58,815,337,0,0,-7.2,100,584,4,300,0.259,32.24,69.97,0.91,0.11,787,0.9,200,3.6
+2023,11,6,9,30,9.5,1.5,0.055,0.61,63,858,410,1,7,-7.2,187,292,18,305,0.258,30.14,66.14,0.91,0.11,787,0.9,204,4.1000000000000005
+2023,11,6,10,0,10.5,1.51,0.058,0.61,67,886,472,2,7,-7.2,194,291,21,327,0.257,28.18,62.83,0.91,0.11,787,1,207,4.6000000000000005
+2023,11,6,10,30,11.3,1.51,0.058,0.61,69,912,523,1,7,-7.2,216,359,18,395,0.256,26.73,60.13,0.92,0.11,787,1,210,5
+2023,11,6,11,0,12.100000000000001,1.48,0.052000000000000005,0.61,69,930,560,0,7,-7,227,370,0,422,0.255,25.7,58.15,0.92,0.11,787,1,214,5.4
+2023,11,6,11,30,12.700000000000001,1.48,0.052000000000000005,0.61,71,935,581,0,7,-7,253,209,0,367,0.254,24.71,56.95,0.92,0.11,787,1,216,5.6000000000000005
+2023,11,6,12,0,13.200000000000001,1.45,0.058,0.61,74,934,588,0,7,-6.7,251,300,0,416,0.253,24.41,56.59,0.92,0.11,786,0.9,218,5.800000000000001
+2023,11,6,12,30,13.3,1.45,0.058,0.61,74,928,578,0,7,-6.7,257,258,0,397,0.252,24.26,57.09,0.92,0.11,786,0.9,219,5.800000000000001
+2023,11,6,13,0,13.4,1.43,0.064,0.61,74,916,554,0,7,-6.9,256,115,0,316,0.252,23.76,58.42,0.92,0.11,786,0.9,220,5.800000000000001
+2023,11,6,13,30,13.4,1.43,0.064,0.61,68,913,517,0,7,-6.9,226,301,0,374,0.251,23.76,60.52,0.92,0.11,786,0.9,219,5.5
+2023,11,6,14,0,13.5,1.3800000000000001,0.041,0.61,60,908,468,0,7,-7.2,200,163,0,273,0.25,23.06,63.32,0.92,0.11,785,0.9,219,5.2
+2023,11,6,14,30,13.5,1.3800000000000001,0.041,0.61,56,883,405,0,8,-7.2,129,474,14,316,0.25,23.06,66.72,0.92,0.11,785,0.9,218,4.800000000000001
+2023,11,6,15,0,13.5,1.43,0.032,0.61,50,846,330,0,0,-7.1000000000000005,86,693,4,316,0.249,23.23,70.64,0.92,0.11,785,0.9,216,4.4
+2023,11,6,15,30,12.700000000000001,1.43,0.032,0.61,44,784,247,0,0,-7.1000000000000005,67,640,7,233,0.249,24.48,74.97,0.92,0.11,785,0.8,214,3.6
+2023,11,6,16,0,11.8,1.43,0.028,0.61,37,684,160,1,3,-6,78,200,21,114,0.248,28.2,79.65,0.92,0.11,785,0.8,211,2.8000000000000003
+2023,11,6,16,30,10,1.43,0.028,0.61,27,506,75,7,8,-6.1000000000000005,47,20,100,49,0.248,31.77,84.58,0.92,0.11,785,0.8,208,2.6
+2023,11,6,17,0,8.1,1.37,0.027,0.61,10,135,11,4,7,-6,6,1,57,6,0.249,36.19,89.54,0.92,0.11,784,0.8,204,2.3000000000000003
+2023,11,6,17,30,7.7,1.37,0.027,0.61,0,0,0,0,7,-6,0,0,0,0,0.249,37.19,95.3,0.92,0.11,784,0.8,203,2.5
+2023,11,6,18,0,7.300000000000001,1.37,0.03,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.249,36.550000000000004,100.82000000000001,0.92,0.11,784,0.8,202,2.7
+2023,11,6,18,30,7.2,1.37,0.03,0.61,0,0,0,0,3,-6.6000000000000005,0,0,0,0,0.25,36.800000000000004,106.44,0.91,0.11,784,0.8,204,3
+2023,11,6,19,0,7.1000000000000005,1.49,0.044,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.25,35.33,112.12,0.91,0.11,784,0.8,205,3.3000000000000003
+2023,11,6,19,30,7.1000000000000005,1.49,0.044,0.61,0,0,0,0,5,-7.2,0,0,0,0,0.25,35.33,117.82000000000001,0.9,0.11,784,0.8,208,3.6
+2023,11,6,20,0,7.2,1.6500000000000001,0.066,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.25,33.24,123.5,0.9,0.11,784,0.8,212,3.9000000000000004
+2023,11,6,20,30,7.300000000000001,1.6500000000000001,0.066,0.61,0,0,0,0,5,-7.9,0,0,0,0,0.251,33.02,129.11,0.9,0.11,784,0.8,216,4.1000000000000005
+2023,11,6,21,0,7.4,1.7,0.077,0.61,0,0,0,0,5,-8.700000000000001,0,0,0,0,0.251,30.89,134.59,0.9,0.11,784,0.8,220,4.3
+2023,11,6,21,30,7.2,1.7,0.077,0.61,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.251,31.310000000000002,139.85,0.9,0.11,784,0.8,222,4.2
+2023,11,6,22,0,7,1.59,0.066,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.251,30.79,144.76,0.9,0.11,784,0.8,225,4
+2023,11,6,22,30,6.6000000000000005,1.59,0.066,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.251,31.64,149.11,0.9,0.11,784,0.8,227,3.7
+2023,11,6,23,0,6.2,1.4000000000000001,0.052000000000000005,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.251,33.1,152.63,0.91,0.11,784,0.8,228,3.4000000000000004
+2023,11,6,23,30,5.800000000000001,1.4000000000000001,0.052000000000000005,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.252,34.03,154.94,0.91,0.11,784,0.8,227,3
+2023,11,7,0,0,5.300000000000001,1.26,0.047,0.61,0,0,0,0,5,-8,0,0,0,0,0.252,37.54,155.67000000000002,0.91,0.11,784,0.8,225,2.6
+2023,11,7,0,30,5,1.26,0.047,0.61,0,0,0,0,0,-8,0,0,0,0,0.252,38.33,154.71,0.91,0.11,784,0.8,221,2.5
+2023,11,7,1,0,4.7,1.18,0.045,0.61,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.252,41.35,152.21,0.91,0.11,784,0.8,218,2.3000000000000003
+2023,11,7,1,30,4.4,1.18,0.045,0.61,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.252,42.22,148.56,0.91,0.11,784,0.9,216,2.2
+2023,11,7,2,0,4.2,1.1300000000000001,0.044,0.61,0,0,0,0,8,-7,0,0,0,0,0.252,44.07,144.12,0.92,0.11,784,0.9,215,2.1
+2023,11,7,2,30,3.9000000000000004,1.1300000000000001,0.044,0.61,0,0,0,0,0,-7,0,0,0,0,0.252,45.01,139.16,0.92,0.11,784,0.9,214,2
+2023,11,7,3,0,3.7,1.1,0.043000000000000003,0.61,0,0,0,0,0,-6.7,0,0,0,0,0.252,46.63,133.87,0.92,0.11,784,0.9,213,2
+2023,11,7,3,30,3.5,1.1,0.043000000000000003,0.61,0,0,0,0,5,-6.7,0,0,0,0,0.253,47.29,128.37,0.92,0.11,784,0.9,213,1.9000000000000001
+2023,11,7,4,0,3.4000000000000004,1.09,0.042,0.61,0,0,0,0,5,-6.4,0,0,0,0,0.253,48.82,122.75,0.93,0.11,784,0.9,213,1.8
+2023,11,7,4,30,3.3000000000000003,1.09,0.042,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.253,49.17,117.06,0.93,0.11,784,0.9,214,1.7000000000000002
+2023,11,7,5,0,3.3000000000000003,1.12,0.043000000000000003,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.253,51.1,111.37,0.93,0.11,785,0.9,215,1.6
+2023,11,7,5,30,3.2,1.12,0.043000000000000003,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.253,51.46,105.71000000000001,0.93,0.11,785,1,218,1.5
+2023,11,7,6,0,3.2,1.1300000000000001,0.046,0.61,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.254,53.58,100.11,0.9400000000000001,0.11,785,1,221,1.3
+2023,11,7,6,30,3.3000000000000003,1.1300000000000001,0.046,0.61,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.254,53.21,94.61,0.9400000000000001,0.11,785,1,225,1.2000000000000002
+2023,11,7,7,0,3.4000000000000004,1.1500000000000001,0.052000000000000005,0.61,14,136,16,5,7,-4.7,5,0,71,5,0.254,55.45,88.95,0.9400000000000001,0.11,785,1,230,1
+2023,11,7,7,30,4.1000000000000005,1.1500000000000001,0.052000000000000005,0.61,33,447,80,5,7,-4.7,18,0,71,18,0.254,52.86,83.98,0.9500000000000001,0.11,786,1,227,1.1
+2023,11,7,8,0,4.800000000000001,1.16,0.057,0.61,46,620,163,0,7,-4,9,0,0,9,0.254,52.95,79.10000000000001,0.9500000000000001,0.11,786,1,224,1.1
+2023,11,7,8,30,5.6000000000000005,1.16,0.057,0.61,54,728,249,0,7,-4,12,0,0,12,0.255,50.09,74.49,0.9500000000000001,0.11,786,1,226,1.4000000000000001
+2023,11,7,9,0,6.300000000000001,1.18,0.058,0.61,61,797,331,0,7,-4.2,59,1,0,59,0.255,47.160000000000004,70.23,0.9500000000000001,0.11,786,1,227,1.6
+2023,11,7,9,30,7.4,1.18,0.058,0.61,65,850,405,0,7,-4.2,167,47,0,186,0.255,43.730000000000004,66.4,0.9500000000000001,0.11,786,1,225,2.3000000000000003
+2023,11,7,10,0,8.5,1.21,0.052000000000000005,0.61,67,889,469,0,7,-4.1000000000000005,227,179,0,308,0.256,40.7,63.1,0.9400000000000001,0.11,786,1,222,2.9000000000000004
+2023,11,7,10,30,9.700000000000001,1.21,0.052000000000000005,0.61,66,921,521,0,7,-4.1000000000000005,246,132,0,311,0.256,37.5,60.42,0.9400000000000001,0.11,785,0.9,224,3.8000000000000003
+2023,11,7,11,0,10.8,1.31,0.037,0.61,64,948,560,0,7,-4.6000000000000005,251,170,0,340,0.256,33.6,58.44,0.9400000000000001,0.11,785,0.9,226,4.6000000000000005
+2023,11,7,11,30,11.700000000000001,1.31,0.037,0.61,64,958,582,0,8,-4.6000000000000005,224,405,0,443,0.255,31.66,57.25,0.93,0.11,785,0.9,228,5.2
+2023,11,7,12,0,12.600000000000001,1.35,0.034,0.61,64,962,589,0,8,-5,204,476,0,464,0.254,29.02,56.89,0.93,0.11,784,0.9,230,5.9
+2023,11,7,12,30,12.9,1.35,0.034,0.61,63,960,581,0,8,-5,220,111,0,280,0.254,28.45,57.38,0.9400000000000001,0.11,784,0.9,232,6.2
+2023,11,7,13,0,13.200000000000001,1.36,0.035,0.61,61,952,556,0,8,-4.9,215,174,0,305,0.253,28.09,58.7,0.9400000000000001,0.11,784,0.9,235,6.6000000000000005
+2023,11,7,13,30,13,1.36,0.035,0.61,61,936,518,0,8,-4.9,225,139,0,293,0.253,28.46,60.79,0.9400000000000001,0.11,784,0.9,239,6.5
+2023,11,7,14,0,12.9,1.4000000000000001,0.035,0.61,58,914,465,0,8,-4.4,186,333,7,334,0.252,29.810000000000002,63.58,0.9500000000000001,0.11,784,0.9,243,6.5
+2023,11,7,14,30,12.4,1.4000000000000001,0.035,0.61,57,877,400,0,0,-4.4,89,734,7,376,0.252,30.8,66.97,0.9500000000000001,0.11,784,0.9,250,6
+2023,11,7,15,0,11.9,1.34,0.041,0.61,53,823,323,0,8,-3.4000000000000004,139,371,0,261,0.252,34.21,70.87,0.96,0.11,784,0.9,257,5.5
+2023,11,7,15,30,10.9,1.34,0.041,0.61,50,740,239,0,7,-3.4000000000000004,121,260,0,187,0.252,36.54,75.19,0.96,0.11,784,1,275,4.7
+2023,11,7,16,0,9.8,1.26,0.052000000000000005,0.61,42,611,150,1,7,-2.1,84,147,14,110,0.252,43.39,79.86,0.97,0.11,784,1,293,3.8000000000000003
+2023,11,7,16,30,8.1,1.26,0.052000000000000005,0.61,31,394,67,7,7,-2.1,46,20,100,48,0.252,48.72,84.77,0.97,0.11,785,1,317,3.9000000000000004
+2023,11,7,17,0,6.4,1.21,0.073,0.61,9,73,9,4,5,-0.8,5,0,57,5,0.252,59.99,89.71000000000001,0.97,0.11,785,1.1,341,3.9000000000000004
+2023,11,7,17,30,5.2,1.21,0.073,0.61,0,0,0,0,5,-0.8,0,0,0,0,0.253,65.26,95.48,0.97,0.11,786,1.1,172,4.6000000000000005
+2023,11,7,18,0,4,1.21,0.079,0.61,0,0,0,0,5,-0.7000000000000001,0,0,0,0,0.253,71.5,100.99000000000001,0.97,0.11,786,1.1,3,5.300000000000001
+2023,11,7,18,30,3.2,1.21,0.079,0.61,0,0,0,0,5,-0.7000000000000001,0,0,0,0,0.254,75.64,106.61,0.97,0.11,786,1,8,5.1000000000000005
+2023,11,7,19,0,2.4000000000000004,1.21,0.07200000000000001,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.255,77.07000000000001,112.29,0.97,0.11,787,1,14,5
+2023,11,7,19,30,2,1.21,0.07200000000000001,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.257,79.29,117.99000000000001,0.97,0.11,787,1,17,4.6000000000000005
+2023,11,7,20,0,1.7000000000000002,1.2,0.07100000000000001,0.61,0,0,0,0,7,-1.8,0,0,0,0,0.258,77.49,123.67,0.97,0.11,787,1,21,4.1000000000000005
+2023,11,7,20,30,1.4000000000000001,1.2,0.07100000000000001,0.61,0,0,0,0,4,-1.8,0,0,0,0,0.26,79.17,129.29,0.97,0.11,787,0.9,20,3.7
+2023,11,7,21,0,1.2000000000000002,1.19,0.067,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.261,78.82000000000001,134.78,0.97,0.11,787,0.9,20,3.2
+2023,11,7,21,30,1,1.19,0.067,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.263,79.96000000000001,140.05,0.97,0.11,787,0.9,15,2.9000000000000004
+2023,11,7,22,0,0.8,1.18,0.064,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.265,81.09,144.97,0.97,0.11,787,0.9,11,2.6
+2023,11,7,22,30,0.5,1.18,0.064,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.266,82.86,149.35,0.97,0.11,787,0.9,6,2.4000000000000004
+2023,11,7,23,0,0.30000000000000004,1.17,0.061,0.61,0,0,0,0,4,-2,0,0,0,0,0.267,84.53,152.89000000000001,0.97,0.11,787,0.9,0,2.2
+2023,11,7,23,30,0.1,1.17,0.061,0.61,0,0,0,0,4,-2,0,0,0,0,0.268,85.76,155.22,0.97,0.11,787,0.9,175,2.3000000000000003
+2023,11,8,0,0,0,1.16,0.057,0.61,0,0,0,0,4,-2,0,0,0,0,0.268,86.69,155.97,0.97,0.11,787,0.9,350,2.3000000000000003
+2023,11,8,0,30,-0.2,1.16,0.057,0.61,0,0,0,0,4,-2,0,0,0,0,0.269,87.96000000000001,154.99,0.97,0.11,787,0.9,346,2.4000000000000004
+2023,11,8,1,0,-0.30000000000000004,1.1500000000000001,0.055,0.61,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.269,89.22,152.48,0.97,0.11,788,0.8,341,2.5
+2023,11,8,1,30,-0.30000000000000004,1.1500000000000001,0.055,0.61,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.27,89.22,148.81,0.96,0.11,788,0.8,337,2.6
+2023,11,8,2,0,-0.4,1.16,0.051000000000000004,0.61,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.27,89.51,144.35,0.96,0.11,788,0.8,332,2.8000000000000003
+2023,11,8,2,30,-0.4,1.16,0.051000000000000004,0.61,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.27,89.51,139.37,0.96,0.11,788,0.8,330,2.8000000000000003
+2023,11,8,3,0,-0.5,1.19,0.044,0.61,0,0,0,0,5,-2.2,0,0,0,0,0.27,88.42,134.07,0.96,0.11,788,0.8,328,2.8000000000000003
+2023,11,8,3,30,-0.5,1.19,0.044,0.61,0,0,0,0,5,-2.2,0,0,0,0,0.271,88.53,128.56,0.9500000000000001,0.11,789,0.8,329,2.7
+2023,11,8,4,0,-0.6000000000000001,1.22,0.036000000000000004,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.271,86.19,122.94,0.9500000000000001,0.11,789,0.7000000000000001,330,2.6
+2023,11,8,4,30,-0.8,1.22,0.036000000000000004,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.272,87.45,117.25,0.9500000000000001,0.11,789,0.7000000000000001,333,2.5
+2023,11,8,5,0,-1.1,1.24,0.032,0.61,0,0,0,0,8,-3.2,0,0,0,0,0.273,85.32000000000001,111.56,0.9400000000000001,0.11,789,0.7000000000000001,335,2.5
+2023,11,8,5,30,-1.4000000000000001,1.24,0.032,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.274,87.33,105.9,0.9400000000000001,0.11,790,0.7000000000000001,336,2.6
+2023,11,8,6,0,-1.7000000000000002,1.28,0.029,0.61,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.274,85.25,100.31,0.9400000000000001,0.11,790,0.6000000000000001,338,2.6
+2023,11,8,6,30,-1.9000000000000001,1.28,0.029,0.61,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.274,86.51,94.82000000000001,0.9400000000000001,0.11,790,0.6000000000000001,341,2.9000000000000004
+2023,11,8,7,0,-2,1.32,0.027,0.61,12,152,14,5,7,-4.4,5,0,71,5,0.274,83.52,89.13,0.93,0.11,791,0.6000000000000001,345,3.3000000000000003
+2023,11,8,7,30,-1.3,1.32,0.027,0.61,28,538,82,6,8,-4.4,36,5,86,37,0.274,79.33,84.2,0.93,0.11,791,0.6000000000000001,348,3.8000000000000003
+2023,11,8,8,0,-0.6000000000000001,1.34,0.025,0.61,37,712,169,0,7,-4.6000000000000005,90,58,0,101,0.273,74.29,79.33,0.93,0.11,792,0.6000000000000001,352,4.2
+2023,11,8,8,30,0.6000000000000001,1.34,0.025,0.61,43,812,257,0,5,-4.6000000000000005,140,104,0,167,0.273,68.1,74.72,0.93,0.11,792,0.6000000000000001,178,4.4
+2023,11,8,9,0,1.7000000000000002,1.36,0.023,0.61,47,879,341,0,5,-5.4,186,53,4,204,0.272,59.480000000000004,70.47,0.92,0.11,792,0.6000000000000001,3,4.6000000000000005
+2023,11,8,9,30,2.7,1.36,0.023,0.61,50,924,416,0,0,-5.4,150,496,0,347,0.271,55.39,66.66,0.92,0.11,792,0.6000000000000001,10,4.5
+2023,11,8,10,0,3.7,1.37,0.021,0.61,52,956,481,0,0,-6.6000000000000005,52,956,0,481,0.271,46.89,63.370000000000005,0.92,0.11,792,0.6000000000000001,17,4.3
+2023,11,8,10,30,4.2,1.37,0.021,0.61,54,976,532,0,0,-6.6000000000000005,85,847,0,500,0.271,45.28,60.7,0.92,0.11,792,0.5,20,4.1000000000000005
+2023,11,8,11,0,4.6000000000000005,1.32,0.023,0.61,57,988,570,0,0,-7.300000000000001,165,564,0,458,0.271,41.63,58.730000000000004,0.92,0.11,792,0.5,23,3.9000000000000004
+2023,11,8,11,30,4.9,1.32,0.023,0.61,57,996,592,0,0,-7.300000000000001,149,698,0,524,0.271,40.77,57.54,0.92,0.11,792,0.5,23,3.8000000000000003
+2023,11,8,12,0,5.2,1.29,0.024,0.61,58,998,599,0,0,-7.800000000000001,58,998,0,599,0.272,38.57,57.18,0.92,0.11,792,0.5,24,3.7
+2023,11,8,12,30,5.4,1.29,0.024,0.61,58,995,590,0,0,-7.800000000000001,58,995,0,590,0.272,38.04,57.67,0.92,0.11,792,0.5,23,3.7
+2023,11,8,13,0,5.6000000000000005,1.27,0.024,0.61,56,987,565,0,0,-8.1,66,958,0,560,0.272,36.53,58.980000000000004,0.92,0.11,792,0.5,22,3.6
+2023,11,8,13,30,5.6000000000000005,1.27,0.024,0.61,56,971,526,0,0,-8.1,73,914,0,515,0.273,36.53,61.06,0.92,0.11,792,0.5,19,3.6
+2023,11,8,14,0,5.6000000000000005,1.17,0.027,0.61,56,946,473,0,0,-8.6,62,914,0,465,0.273,35.35,63.83,0.92,0.11,792,0.5,16,3.5
+2023,11,8,14,30,5.5,1.17,0.027,0.61,52,918,408,0,0,-8.5,118,567,0,338,0.274,35.64,67.21000000000001,0.92,0.11,793,0.5,12,3.5
+2023,11,8,15,0,5.4,1.16,0.026000000000000002,0.61,48,879,333,0,4,-9.1,82,20,0,88,0.275,34.25,71.10000000000001,0.91,0.11,793,0.4,9,3.5
+2023,11,8,15,30,4.800000000000001,1.16,0.026000000000000002,0.61,43,815,248,0,4,-9.1,70,99,7,95,0.276,35.7,75.41,0.91,0.11,793,0.4,5,3.1
+2023,11,8,16,0,4.2,1.1500000000000001,0.025,0.61,36,708,158,0,4,-9.200000000000001,22,214,0,59,0.276,36.95,80.06,0.91,0.11,793,0.4,2,2.7
+2023,11,8,16,30,2.3000000000000003,1.1500000000000001,0.025,0.61,26,518,72,2,0,-9.200000000000001,31,366,32,63,0.277,42.25,84.96000000000001,0.91,0.11,793,0.4,179,2
+2023,11,8,17,0,0.4,1.1400000000000001,0.026000000000000002,0.61,8,98,8,1,0,-8.4,6,49,14,6,0.277,51.82,89.85000000000001,0.9,0.11,794,0.4,355,1.3
+2023,11,8,17,30,-0.30000000000000004,1.1400000000000001,0.026000000000000002,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.278,54.51,95.65,0.9,0.11,794,0.4,354,1.4000000000000001
+2023,11,8,18,0,-1,1.12,0.026000000000000002,0.61,0,0,0,0,0,-9,0,0,0,0,0.278,54.51,101.17,0.9,0.11,794,0.4,352,1.4000000000000001
+2023,11,8,18,30,-1.5,1.12,0.026000000000000002,0.61,0,0,0,0,0,-9,0,0,0,0,0.279,56.54,106.78,0.9,0.11,794,0.30000000000000004,351,1.4000000000000001
+2023,11,8,19,0,-2,1.08,0.027,0.61,0,0,0,0,0,-9.5,0,0,0,0,0.28,56.54,112.45,0.9,0.11,794,0.30000000000000004,350,1.4000000000000001
+2023,11,8,19,30,-2.5,1.08,0.027,0.61,0,0,0,0,0,-9.5,0,0,0,0,0.281,58.74,118.15,0.9,0.11,795,0.30000000000000004,350,1.4000000000000001
+2023,11,8,20,0,-2.9000000000000004,1.04,0.028,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.281,58.74,123.84,0.9,0.11,795,0.30000000000000004,350,1.4000000000000001
+2023,11,8,20,30,-3.3000000000000003,1.04,0.028,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.28200000000000003,60.51,129.46,0.9,0.11,795,0.30000000000000004,350,1.3
+2023,11,8,21,0,-3.7,0.99,0.03,0.61,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.28300000000000003,60.74,134.96,0.9,0.11,795,0.30000000000000004,351,1.3
+2023,11,8,21,30,-4.1000000000000005,0.99,0.03,0.61,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.28400000000000003,62.59,140.24,0.9,0.11,795,0.30000000000000004,350,1.3
+2023,11,8,22,0,-4.4,0.9500000000000001,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.28500000000000003,63.06,145.18,0.9,0.11,795,0.30000000000000004,350,1.3
+2023,11,8,22,30,-4.800000000000001,0.9500000000000001,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.28600000000000003,64.99,149.58,0.9,0.11,795,0.30000000000000004,350,1.3
+2023,11,8,23,0,-5.1000000000000005,0.93,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.28700000000000003,66.13,153.15,0.9,0.11,795,0.30000000000000004,350,1.4000000000000001
+2023,11,8,23,30,-5.4,0.93,0.031,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.289,67.65,155.5,0.9,0.11,795,0.30000000000000004,352,1.4000000000000001
+2023,11,9,0,0,-5.7,0.93,0.031,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,69.08,156.26,0.9,0.11,795,0.30000000000000004,353,1.3
+2023,11,9,0,30,-6,0.93,0.031,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,70.76,155.28,0.9,0.11,796,0.30000000000000004,354,1.3
+2023,11,9,1,0,-6.2,0.93,0.03,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,71.72,152.75,0.9,0.11,796,0.30000000000000004,356,1.3
+2023,11,9,1,30,-6.4,0.93,0.03,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,72.83,149.05,0.9,0.11,796,0.30000000000000004,178,1.2000000000000002
+2023,11,9,2,0,-6.5,0.92,0.029,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.292,73.23,144.57,0.9,0.11,796,0.30000000000000004,0,1.2000000000000002
+2023,11,9,2,30,-6.6000000000000005,0.92,0.029,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,73.79,139.58,0.9,0.11,796,0.30000000000000004,2,1.1
+2023,11,9,3,0,-6.7,0.91,0.028,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.291,74.33,134.27,0.9,0.11,796,0.30000000000000004,3,1.1
+2023,11,9,3,30,-6.7,0.91,0.028,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.33,128.76,0.9,0.11,796,0.30000000000000004,4,1.1
+2023,11,9,4,0,-6.800000000000001,0.9,0.026000000000000002,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.95,123.13000000000001,0.89,0.11,796,0.30000000000000004,6,1
+2023,11,9,4,30,-6.800000000000001,0.9,0.026000000000000002,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.95,117.44,0.89,0.11,796,0.30000000000000004,8,1
+2023,11,9,5,0,-6.800000000000001,0.89,0.025,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.94,111.75,0.89,0.11,796,0.30000000000000004,10,0.9
+2023,11,9,5,30,-6.800000000000001,0.89,0.025,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,74.94,106.09,0.89,0.11,796,0.30000000000000004,13,0.9
+2023,11,9,6,0,-6.9,0.89,0.024,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.29,75.51,100.5,0.89,0.11,796,0.30000000000000004,16,0.9
+2023,11,9,6,30,-6.5,0.89,0.024,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.289,73.23,95.02,0.89,0.11,796,0.30000000000000004,20,0.9
+2023,11,9,7,0,-6.1000000000000005,0.89,0.023,0.61,11,158,13,0,0,-10.5,11,158,0,13,0.289,71.26,89.32000000000001,0.89,0.11,796,0.30000000000000004,23,0.9
+2023,11,9,7,30,-4.6000000000000005,0.89,0.023,0.61,27,561,82,0,0,-10.5,27,561,0,82,0.289,63.6,84.41,0.89,0.11,796,0.30000000000000004,22,1.6
+2023,11,9,8,0,-3,0.91,0.023,0.61,36,738,170,0,0,-10.700000000000001,36,738,0,170,0.28800000000000003,55.38,79.55,0.89,0.11,797,0.30000000000000004,22,2.3000000000000003
+2023,11,9,8,30,-1.5,0.91,0.023,0.61,43,838,260,0,0,-10.700000000000001,43,838,0,260,0.28800000000000003,49.57,74.96000000000001,0.89,0.11,797,0.30000000000000004,19,2.8000000000000003
+2023,11,9,9,0,-0.1,0.93,0.023,0.61,47,902,345,0,0,-12.4,47,902,0,345,0.28700000000000003,39.04,70.72,0.89,0.11,797,0.30000000000000004,16,3.3000000000000003
+2023,11,9,9,30,0.8,0.93,0.023,0.61,51,944,421,0,0,-12.4,51,944,0,421,0.28700000000000003,36.59,66.92,0.9,0.11,797,0.30000000000000004,19,3.3000000000000003
+2023,11,9,10,0,1.6,0.9500000000000001,0.023,0.61,54,973,486,0,0,-13.200000000000001,54,973,0,486,0.28600000000000003,32.35,63.64,0.9,0.11,797,0.30000000000000004,21,3.3000000000000003
+2023,11,9,10,30,2.2,0.9500000000000001,0.023,0.61,55,995,538,0,0,-13.200000000000001,55,995,0,538,0.28600000000000003,30.96,60.97,0.89,0.11,796,0.30000000000000004,23,3.2
+2023,11,9,11,0,2.8000000000000003,1.11,0.02,0.61,55,1010,575,0,0,-13.5,55,1010,0,575,0.28600000000000003,29.11,59.01,0.89,0.11,796,0.30000000000000004,24,3
+2023,11,9,11,30,3.3000000000000003,1.11,0.02,0.61,56,1018,598,0,0,-13.5,56,1018,0,598,0.28700000000000003,28.1,57.83,0.89,0.11,796,0.30000000000000004,24,2.9000000000000004
+2023,11,9,12,0,3.7,1.1400000000000001,0.021,0.61,56,1020,604,0,0,-13.600000000000001,56,1020,0,604,0.28700000000000003,27.01,57.47,0.89,0.11,795,0.30000000000000004,24,2.8000000000000003
+2023,11,9,12,30,4,1.1400000000000001,0.021,0.61,55,1017,595,0,0,-13.600000000000001,55,1017,0,595,0.28800000000000003,26.45,57.95,0.89,0.11,795,0.30000000000000004,22,2.7
+2023,11,9,13,0,4.3,1.17,0.021,0.61,55,1009,571,0,0,-13.700000000000001,55,1009,0,571,0.28800000000000003,25.75,59.25,0.89,0.11,795,0.30000000000000004,20,2.6
+2023,11,9,13,30,4.3,1.17,0.021,0.61,53,997,531,0,0,-13.700000000000001,53,997,0,531,0.28800000000000003,25.71,61.32,0.89,0.11,794,0.30000000000000004,20,2.6
+2023,11,9,14,0,4.4,1.24,0.019,0.61,51,978,478,0,0,-13.8,51,978,0,478,0.28700000000000003,25.400000000000002,64.08,0.89,0.11,794,0.30000000000000004,20,2.5
+2023,11,9,14,30,4.2,1.24,0.019,0.61,47,949,411,0,0,-13.8,47,949,0,411,0.28700000000000003,25.75,67.45,0.89,0.11,794,0.30000000000000004,23,2.4000000000000004
+2023,11,9,15,0,4,1.24,0.018000000000000002,0.61,44,905,334,0,0,-13.8,44,905,0,334,0.28700000000000003,25.92,71.32000000000001,0.89,0.11,794,0.30000000000000004,25,2.4000000000000004
+2023,11,9,15,30,3,1.24,0.018000000000000002,0.61,39,841,248,0,0,-13.8,39,841,0,248,0.28700000000000003,27.810000000000002,75.62,0.89,0.11,794,0.30000000000000004,33,1.8
+2023,11,9,16,0,2,1.22,0.018000000000000002,0.61,33,738,158,0,0,-11.5,33,738,0,158,0.28600000000000003,36.22,80.25,0.89,0.11,794,0.30000000000000004,40,1.3
+2023,11,9,16,30,0.30000000000000004,1.22,0.018000000000000002,0.61,24,553,71,0,0,-11.5,24,553,0,71,0.28700000000000003,40.92,85.14,0.89,0.11,794,0.30000000000000004,57,1.2000000000000002
+2023,11,9,17,0,-1.5,1.21,0.017,0.61,8,110,8,0,0,-12.3,8,110,0,8,0.28800000000000003,43.54,90.01,0.88,0.11,794,0.30000000000000004,74,1.2000000000000002
+2023,11,9,17,30,-2,1.21,0.017,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.28800000000000003,45.17,95.83,0.88,0.11,794,0.30000000000000004,84,1.2000000000000002
+2023,11,9,18,0,-2.6,1.21,0.016,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,44.97,101.33,0.88,0.11,794,0.30000000000000004,93,1.2000000000000002
+2023,11,9,18,30,-3,1.21,0.016,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.289,46.33,106.94,0.88,0.11,794,0.30000000000000004,100,1.2000000000000002
+2023,11,9,19,0,-3.4000000000000004,1.21,0.016,0.61,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.289,46.71,112.61,0.88,0.11,795,0.30000000000000004,108,1.2000000000000002
+2023,11,9,19,30,-3.6,1.21,0.016,0.61,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.289,47.410000000000004,118.31,0.88,0.11,795,0.30000000000000004,114,1.2000000000000002
+2023,11,9,20,0,-3.8000000000000003,1.21,0.015,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.289,47.33,124,0.88,0.11,795,0.2,121,1.1
+2023,11,9,20,30,-3.8000000000000003,1.21,0.015,0.61,0,0,0,0,0,-13.4,0,0,0,0,0.29,47.27,129.62,0.88,0.11,794,0.2,130,1.1
+2023,11,9,21,0,-3.9000000000000004,1.21,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.29,47.26,135.13,0.88,0.11,794,0.2,139,1
+2023,11,9,21,30,-3.9000000000000004,1.21,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.29,47.26,140.43,0.88,0.11,794,0.2,150,0.9
+2023,11,9,22,0,-4,1.21,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.291,47.36,145.38,0.88,0.11,794,0.2,161,0.9
+2023,11,9,22,30,-4.1000000000000005,1.21,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.291,47.71,149.8,0.88,0.11,794,0.2,171,0.8
+2023,11,9,23,0,-4.2,1.21,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.292,47.82,153.4,0.88,0.11,794,0.2,182,0.8
+2023,11,9,23,30,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.292,48.19,155.77,0.88,0.11,794,0.2,189,0.8
+2023,11,10,0,0,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.292,47.94,156.54,0.88,0.11,794,0.2,196,0.8
+2023,11,10,0,30,-4.3,1.21,0.015,0.61,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.293,47.94,155.56,0.88,0.11,794,0.2,202,0.8
+2023,11,10,1,0,-4.3,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.67,153.01,0.88,0.11,793,0.2,209,0.8
+2023,11,10,1,30,-4.2,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.32,149.3,0.88,0.11,793,0.2,214,0.7000000000000001
+2023,11,10,2,0,-4.2,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.293,47.25,144.8,0.88,0.11,793,0.2,219,0.7000000000000001
+2023,11,10,2,30,-4.1000000000000005,1.2,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.9,139.8,0.88,0.11,793,0.2,219,0.7000000000000001
+2023,11,10,3,0,-4.1000000000000005,1.19,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.87,134.47,0.88,0.11,793,0.2,219,0.6000000000000001
+2023,11,10,3,30,-4,1.19,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.52,128.95,0.89,0.11,793,0.2,214,0.6000000000000001
+2023,11,10,4,0,-3.9000000000000004,1.18,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.15,123.32000000000001,0.89,0.11,793,0.2,209,0.6000000000000001
+2023,11,10,4,30,-3.9000000000000004,1.18,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.15,117.63,0.89,0.11,793,0.2,201,0.6000000000000001
+2023,11,10,5,0,-3.9000000000000004,1.17,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.294,46.17,111.94,0.89,0.11,793,0.2,193,0.6000000000000001
+2023,11,10,5,30,-4,1.17,0.014,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.295,46.51,106.29,0.89,0.11,793,0.2,189,0.7000000000000001
+2023,11,10,6,0,-4.1000000000000005,1.16,0.015,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.295,46.88,100.7,0.89,0.11,793,0.2,185,0.7000000000000001
+2023,11,10,6,30,-4,1.16,0.015,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.296,46.53,95.22,0.89,0.11,793,0.2,185,0.7000000000000001
+2023,11,10,7,0,-3.9000000000000004,1.1500000000000001,0.016,0.61,11,177,13,0,0,-13.3,10,143,7,11,0.296,48.2,89.5,0.89,0.11,793,0.2,184,0.7000000000000001
+2023,11,10,7,30,-2.7,1.1500000000000001,0.016,0.61,25,600,81,2,0,-13.3,33,400,36,71,0.296,44.08,84.62,0.9,0.11,793,0.2,190,1
+2023,11,10,8,0,-1.4000000000000001,1.1300000000000001,0.017,0.61,33,770,170,0,0,-13.4,33,770,0,170,0.297,39.64,79.78,0.9,0.11,794,0.2,195,1.2000000000000002
+2023,11,10,8,30,0.1,1.1300000000000001,0.017,0.61,40,866,261,0,0,-13.4,55,752,0,247,0.298,35.54,75.19,0.9,0.11,794,0.2,205,1.7000000000000002
+2023,11,10,9,0,1.5,1.12,0.018000000000000002,0.61,44,925,346,0,0,-14.100000000000001,44,925,0,346,0.299,30.22,70.97,0.9,0.11,794,0.2,216,2.1
+2023,11,10,9,30,2.6,1.12,0.018000000000000002,0.61,49,965,423,0,0,-14.100000000000001,49,965,0,423,0.301,27.94,67.17,0.91,0.11,794,0.2,219,2.5
+2023,11,10,10,0,3.8000000000000003,1.11,0.02,0.61,51,993,488,0,0,-15.3,112,750,0,442,0.303,23.41,63.9,0.91,0.11,794,0.2,223,2.8000000000000003
+2023,11,10,10,30,4.4,1.11,0.02,0.61,53,1012,540,0,0,-15.3,141,704,0,480,0.306,22.42,61.25,0.91,0.11,793,0.2,225,3
+2023,11,10,11,0,5,1.12,0.021,0.61,56,1023,578,0,0,-15.8,129,789,0,532,0.308,20.56,59.29,0.91,0.11,793,0.2,227,3.2
+2023,11,10,11,30,5.300000000000001,1.12,0.021,0.61,57,1030,601,0,8,-15.8,153,694,0,520,0.309,20.13,58.11,0.92,0.11,793,0.2,230,3.4000000000000004
+2023,11,10,12,0,5.6000000000000005,1.11,0.022,0.61,57,1028,606,0,7,-16.2,163,661,0,516,0.31,19.13,57.75,0.92,0.11,793,0.2,233,3.5
+2023,11,10,12,30,5.6000000000000005,1.11,0.022,0.61,58,1020,595,0,7,-16.2,159,673,0,513,0.31,19.1,58.230000000000004,0.92,0.11,792,0.30000000000000004,235,3.5
+2023,11,10,13,0,5.6000000000000005,1.12,0.024,0.61,57,1005,567,0,7,-16.5,165,628,0,484,0.311,18.650000000000002,59.52,0.92,0.11,792,0.30000000000000004,238,3.6
+2023,11,10,13,30,5.5,1.12,0.024,0.61,56,988,526,0,7,-16.5,109,798,0,489,0.311,18.78,61.58,0.93,0.11,792,0.30000000000000004,239,3.5
+2023,11,10,14,0,5.300000000000001,1.1500000000000001,0.025,0.61,54,965,472,0,0,-16.6,80,863,0,454,0.311,18.830000000000002,64.33,0.93,0.11,792,0.30000000000000004,241,3.4000000000000004
+2023,11,10,14,30,4.9,1.1500000000000001,0.025,0.61,52,933,406,0,0,-16.6,52,933,0,406,0.312,19.36,67.68,0.93,0.11,792,0.30000000000000004,240,3
+2023,11,10,15,0,4.5,1.17,0.026000000000000002,0.61,48,886,329,0,0,-15.9,59,830,0,322,0.312,21.2,71.54,0.93,0.11,792,0.30000000000000004,240,2.6
+2023,11,10,15,30,2.9000000000000004,1.17,0.026000000000000002,0.61,43,817,243,0,0,-15.9,55,737,14,236,0.312,23.72,75.82000000000001,0.93,0.11,792,0.30000000000000004,236,1.8
+2023,11,10,16,0,1.3,1.18,0.026000000000000002,0.61,36,707,153,2,8,-11.8,67,412,39,135,0.312,36.910000000000004,80.45,0.93,0.11,792,0.30000000000000004,232,1
+2023,11,10,16,30,0.30000000000000004,1.18,0.026000000000000002,0.61,25,510,67,7,7,-11.8,39,12,100,40,0.313,39.67,85.32000000000001,0.93,0.11,792,0.30000000000000004,224,1.1
+2023,11,10,17,0,-0.7000000000000001,1.19,0.026000000000000002,0.61,7,94,7,3,7,-14.4,4,0,43,4,0.314,34.72,90.16,0.93,0.11,792,0.30000000000000004,217,1.1
+2023,11,10,17,30,-0.8,1.19,0.026000000000000002,0.61,0,0,0,0,7,-14.4,0,0,0,0,0.315,34.980000000000004,95.99000000000001,0.93,0.11,792,0.30000000000000004,213,1.1
+2023,11,10,18,0,-0.9,1.2,0.024,0.61,0,0,0,0,7,-15.100000000000001,0,0,0,0,0.316,33.09,101.49000000000001,0.93,0.11,792,0.30000000000000004,209,1.1
+2023,11,10,18,30,-1.1,1.2,0.024,0.61,0,0,0,0,7,-15.100000000000001,0,0,0,0,0.316,33.58,107.09,0.92,0.11,792,0.30000000000000004,212,1.1
+2023,11,10,19,0,-1.4000000000000001,1.21,0.021,0.61,0,0,0,0,7,-15.5,0,0,0,0,0.316,33.38,112.76,0.92,0.11,792,0.30000000000000004,215,1.1
+2023,11,10,19,30,-1.6,1.21,0.021,0.61,0,0,0,0,7,-15.5,0,0,0,0,0.317,33.92,118.46000000000001,0.92,0.11,793,0.30000000000000004,221,1
+2023,11,10,20,0,-1.9000000000000001,1.2,0.019,0.61,0,0,0,0,7,-15.700000000000001,0,0,0,0,0.317,34,124.15,0.91,0.11,793,0.30000000000000004,227,1
+2023,11,10,20,30,-2.1,1.2,0.019,0.61,0,0,0,0,7,-15.700000000000001,0,0,0,0,0.317,34.51,129.78,0.91,0.11,793,0.30000000000000004,229,1
+2023,11,10,21,0,-2.3000000000000003,1.16,0.018000000000000002,0.61,0,0,0,0,5,-15.700000000000001,0,0,0,0,0.317,34.95,135.3,0.91,0.11,793,0.30000000000000004,231,0.9
+2023,11,10,21,30,-2.4000000000000004,1.16,0.018000000000000002,0.61,0,0,0,0,5,-15.700000000000001,0,0,0,0,0.317,35.21,140.6,0.91,0.11,793,0.30000000000000004,228,0.9
+2023,11,10,22,0,-2.6,1.1300000000000001,0.018000000000000002,0.61,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.317,35.7,145.58,0.91,0.11,793,0.30000000000000004,225,0.9
+2023,11,10,22,30,-2.8000000000000003,1.1300000000000001,0.018000000000000002,0.61,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.317,36.24,150.02,0.9,0.11,793,0.30000000000000004,220,0.9
+2023,11,10,23,0,-3,1.1400000000000001,0.016,0.61,0,0,0,0,0,-15.5,0,0,0,0,0.316,37.38,153.64000000000001,0.9,0.11,792,0.30000000000000004,215,1
+2023,11,10,23,30,-3.2,1.1400000000000001,0.016,0.61,0,0,0,0,0,-15.5,0,0,0,0,0.316,37.94,156.04,0.9,0.11,792,0.30000000000000004,213,1
+2023,11,11,0,0,-3.3000000000000003,1.16,0.015,0.61,0,0,0,0,0,-15.4,0,0,0,0,0.316,38.57,156.82,0.9,0.11,792,0.30000000000000004,210,1
+2023,11,11,0,30,-3.5,1.16,0.015,0.61,0,0,0,0,0,-15.4,0,0,0,0,0.315,39.15,155.83,0.9,0.11,792,0.30000000000000004,212,1
+2023,11,11,1,0,-3.6,1.1500000000000001,0.015,0.61,0,0,0,0,0,-15.3,0,0,0,0,0.315,39.81,153.27,0.9,0.11,792,0.30000000000000004,214,0.9
+2023,11,11,1,30,-3.7,1.1500000000000001,0.015,0.61,0,0,0,0,0,-15.3,0,0,0,0,0.314,40.11,149.54,0.9,0.11,792,0.30000000000000004,216,0.9
+2023,11,11,2,0,-3.7,1.1500000000000001,0.017,0.61,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.313,40.410000000000004,145.02,0.9,0.11,793,0.30000000000000004,219,0.9
+2023,11,11,2,30,-3.8000000000000003,1.1500000000000001,0.017,0.61,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.312,40.71,140.01,0.9,0.11,793,0.30000000000000004,219,0.8
+2023,11,11,3,0,-3.8000000000000003,1.17,0.017,0.61,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.31,41.11,134.67000000000002,0.9,0.11,793,0.30000000000000004,219,0.8
+2023,11,11,3,30,-3.8000000000000003,1.17,0.017,0.61,0,0,0,0,0,-15.100000000000001,0,0,29,0,0.308,41.11,129.15,0.9,0.11,793,0.30000000000000004,218,0.8
+2023,11,11,4,0,-3.9000000000000004,1.19,0.018000000000000002,0.61,0,0,0,0,0,-15,0,0,14,0,0.307,41.97,123.51,0.91,0.11,793,0.30000000000000004,217,0.8
+2023,11,11,4,30,-3.9000000000000004,1.19,0.018000000000000002,0.61,0,0,0,0,0,-15,0,0,0,0,0.305,41.97,117.82000000000001,0.91,0.11,793,0.30000000000000004,217,0.8
+2023,11,11,5,0,-4,1.22,0.018000000000000002,0.61,0,0,0,0,0,-14.8,0,0,0,0,0.302,42.83,112.13,0.91,0.11,793,0.30000000000000004,216,0.8
+2023,11,11,5,30,-4,1.22,0.018000000000000002,0.61,0,0,0,0,0,-14.8,0,0,0,0,0.301,42.83,106.48,0.91,0.11,793,0.4,215,0.9
+2023,11,11,6,0,-4.1000000000000005,1.21,0.019,0.61,0,0,0,0,0,-14.600000000000001,0,0,0,0,0.299,43.7,100.9,0.91,0.11,793,0.4,214,0.9
+2023,11,11,6,30,-4,1.21,0.019,0.61,0,0,0,0,7,-14.600000000000001,0,0,0,0,0.299,43.42,95.42,0.91,0.11,794,0.4,210,0.9
+2023,11,11,7,0,-3.8000000000000003,1.21,0.019,0.61,10,151,11,4,7,-13.9,6,1,57,6,0.298,45.36,89.69,0.91,0.11,794,0.4,207,1
+2023,11,11,7,30,-2.3000000000000003,1.21,0.019,0.61,26,548,75,6,7,-13.9,42,11,86,43,0.296,40.57,84.83,0.91,0.11,794,0.4,209,1.5
+2023,11,11,8,0,-0.7000000000000001,1.21,0.019,0.61,34,728,160,0,7,-14.4,69,13,0,71,0.294,34.800000000000004,80,0.91,0.11,794,0.4,211,2
+2023,11,11,8,30,0.8,1.21,0.019,0.61,40,831,249,0,7,-14.3,124,83,0,145,0.292,31.25,75.43,0.91,0.11,795,0.4,217,2.3000000000000003
+2023,11,11,9,0,2.3000000000000003,1.22,0.018000000000000002,0.61,43,896,332,0,7,-15.5,123,467,0,273,0.29,25.42,71.21000000000001,0.91,0.11,795,0.4,224,2.6
+2023,11,11,9,30,3.7,1.22,0.018000000000000002,0.61,47,939,407,0,0,-15.5,91,740,0,375,0.289,23.02,67.43,0.91,0.11,795,0.4,228,2.9000000000000004
+2023,11,11,10,0,5.1000000000000005,1.23,0.017,0.61,49,969,471,0,8,-16.400000000000002,192,371,0,354,0.28700000000000003,19.46,64.17,0.91,0.11,795,0.4,232,3.2
+2023,11,11,10,30,5.9,1.23,0.017,0.61,50,989,522,0,8,-16.400000000000002,204,381,0,386,0.28600000000000003,18.41,61.52,0.91,0.11,795,0.4,234,3.4000000000000004
+2023,11,11,11,0,6.7,1.42,0.014,0.61,49,1003,557,0,0,-16,191,565,0,477,0.28500000000000003,17.98,59.57,0.9,0.11,795,0.4,236,3.7
+2023,11,11,11,30,7.2,1.42,0.014,0.61,50,1008,578,0,0,-16,57,988,0,575,0.28300000000000003,17.35,58.39,0.91,0.11,794,0.5,236,3.8000000000000003
+2023,11,11,12,0,7.7,1.43,0.014,0.61,50,1007,583,0,0,-15.5,110,853,0,562,0.28200000000000003,17.52,58.02,0.91,0.11,794,0.5,237,4
+2023,11,11,12,30,8,1.43,0.014,0.61,49,1004,574,0,0,-15.5,58,980,0,570,0.281,17.17,58.5,0.91,0.11,794,0.5,238,4
+2023,11,11,13,0,8.200000000000001,1.44,0.015,0.61,49,996,550,0,0,-15.100000000000001,89,876,0,530,0.28,17.56,59.78,0.91,0.11,794,0.5,238,4
+2023,11,11,13,30,8.200000000000001,1.44,0.015,0.61,47,982,511,0,8,-15.100000000000001,96,814,0,480,0.279,17.56,61.83,0.91,0.11,794,0.5,237,4
+2023,11,11,14,0,8.3,1.45,0.014,0.61,46,962,459,0,7,-14.700000000000001,134,604,0,393,0.279,17.97,64.57000000000001,0.91,0.11,794,0.5,235,3.9000000000000004
+2023,11,11,14,30,7.9,1.45,0.014,0.61,43,932,394,0,7,-14.700000000000001,133,514,0,326,0.278,18.47,67.9,0.91,0.11,794,0.5,230,3.5
+2023,11,11,15,0,7.5,1.47,0.014,0.61,41,886,318,0,7,-14,139,313,0,237,0.277,20.09,71.75,0.91,0.11,794,0.5,225,3.2
+2023,11,11,15,30,5.4,1.47,0.014,0.61,37,817,234,0,7,-14,120,215,0,172,0.276,23.21,76.02,0.91,0.11,794,0.6000000000000001,217,2.3000000000000003
+2023,11,11,16,0,3.2,1.47,0.015,0.61,31,709,146,2,7,-10.600000000000001,85,175,29,113,0.276,35.56,80.63,0.92,0.11,794,0.6000000000000001,210,1.4000000000000001
+2023,11,11,16,30,1.3,1.47,0.015,0.61,22,516,63,7,7,-10.600000000000001,40,51,96,44,0.276,40.7,85.49,0.91,0.11,794,0.6000000000000001,206,1.5
+2023,11,11,17,0,-0.6000000000000001,1.47,0.016,0.61,7,97,6,3,7,-12.4,3,0,43,3,0.276,40.6,90.3,0.91,0.11,794,0.6000000000000001,203,1.6
+2023,11,11,17,30,-1,1.47,0.016,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.276,41.800000000000004,96.15,0.91,0.11,794,0.5,205,1.6
+2023,11,11,18,0,-1.4000000000000001,1.46,0.019,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.275,41.74,101.64,0.91,0.11,794,0.5,206,1.6
+2023,11,11,18,30,-1.6,1.46,0.019,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.275,42.36,107.24000000000001,0.91,0.11,794,0.5,210,1.6
+2023,11,11,19,0,-1.7000000000000002,1.45,0.023,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.275,42.49,112.91,0.91,0.11,795,0.5,214,1.6
+2023,11,11,19,30,-1.7000000000000002,1.45,0.023,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.276,42.49,118.60000000000001,0.91,0.11,795,0.5,217,1.6
+2023,11,11,20,0,-1.7000000000000002,1.41,0.028,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.276,42.800000000000004,124.3,0.91,0.11,795,0.5,221,1.7000000000000002
+2023,11,11,20,30,-1.6,1.41,0.028,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.276,42.49,129.93,0.91,0.11,795,0.5,223,1.6
+2023,11,11,21,0,-1.6,1.3900000000000001,0.032,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.276,42.69,135.45,0.9,0.11,795,0.5,224,1.6
+2023,11,11,21,30,-1.7000000000000002,1.3900000000000001,0.032,0.61,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.276,43,140.77,0.9,0.11,795,0.5,221,1.6
+2023,11,11,22,0,-1.9000000000000001,1.42,0.028,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.277,43.08,145.76,0.89,0.11,795,0.5,218,1.5
+2023,11,11,22,30,-2.3000000000000003,1.42,0.028,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.276,44.37,150.23,0.88,0.11,795,0.4,214,1.5
+2023,11,11,23,0,-2.6,1.46,0.023,0.61,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.276,44.4,153.87,0.88,0.11,796,0.4,210,1.5
+2023,11,11,23,30,-2.8000000000000003,1.46,0.023,0.61,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.276,45.07,156.3,0.88,0.11,796,0.4,207,1.5
+2023,11,12,0,0,-3,1.45,0.021,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.275,45.54,157.1,0.88,0.11,796,0.4,203,1.5
+2023,11,12,0,30,-3.1,1.45,0.021,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.274,45.88,156.11,0.88,0.11,796,0.4,202,1.4000000000000001
+2023,11,12,1,0,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.274,46.49,153.53,0.88,0.11,796,0.4,201,1.4000000000000001
+2023,11,12,1,30,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.273,46.49,149.78,0.88,0.11,796,0.4,202,1.3
+2023,11,12,2,0,-3.2,1.44,0.02,0.61,0,0,0,0,0,-13,0,0,0,0,0.273,46.92,145.24,0.88,0.11,796,0.4,202,1.2000000000000002
+2023,11,12,2,30,-3.1,1.44,0.02,0.61,0,0,0,0,0,-13,0,0,0,0,0.273,46.57,140.21,0.88,0.11,796,0.5,202,1.2000000000000002
+2023,11,12,3,0,-3,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,46.71,134.87,0.88,0.11,797,0.5,203,1.1
+2023,11,12,3,30,-2.9000000000000004,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,46.36,129.34,0.88,0.11,797,0.5,202,1.1
+2023,11,12,4,0,-2.7,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,45.730000000000004,123.7,0.88,0.11,797,0.5,200,1
+2023,11,12,4,30,-2.6,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,45.39,118.01,0.88,0.11,797,0.5,200,0.9
+2023,11,12,5,0,-2.4000000000000004,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.272,44.81,112.32000000000001,0.88,0.11,797,0.5,199,0.8
+2023,11,12,5,30,-2.3000000000000003,1.44,0.02,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.273,44.480000000000004,106.67,0.88,0.11,797,0.5,199,0.8
+2023,11,12,6,0,-2.2,1.45,0.019,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.274,44.39,101.09,0.88,0.11,797,0.5,198,0.7000000000000001
+2023,11,12,6,30,-2.1,1.45,0.019,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.274,44.06,95.62,0.88,0.11,797,0.5,195,0.6000000000000001
+2023,11,12,7,0,-1.9000000000000001,1.46,0.018000000000000002,0.61,8,106,8,0,0,-12.4,8,106,0,8,0.274,44.52,89.87,0.88,0.11,798,0.5,193,0.6000000000000001
+2023,11,12,7,30,-0.6000000000000001,1.46,0.018000000000000002,0.61,24,538,71,0,0,-12.4,24,538,0,71,0.274,40.480000000000004,85.04,0.88,0.11,798,0.5,198,0.6000000000000001
+2023,11,12,8,0,0.7000000000000001,1.47,0.018000000000000002,0.61,32,722,155,0,0,-11.100000000000001,32,722,0,155,0.274,40.74,80.22,0.88,0.11,798,0.5,204,0.6000000000000001
+2023,11,12,8,30,2.1,1.47,0.018000000000000002,0.61,38,826,243,0,0,-11.100000000000001,38,826,0,243,0.273,36.85,75.66,0.88,0.11,798,0.5,206,0.8
+2023,11,12,9,0,3.6,1.48,0.017,0.61,43,894,327,0,0,-12.600000000000001,43,894,0,327,0.272,29.52,71.45,0.87,0.11,798,0.4,209,0.9
+2023,11,12,9,30,5.300000000000001,1.48,0.017,0.61,46,938,402,0,0,-12.600000000000001,46,938,0,402,0.272,26.21,67.68,0.87,0.11,798,0.4,203,1.2000000000000002
+2023,11,12,10,0,7.1000000000000005,1.47,0.017,0.61,48,969,466,0,0,-12.8,48,969,0,466,0.271,22.76,64.43,0.87,0.11,798,0.4,197,1.5
+2023,11,12,10,30,8.200000000000001,1.47,0.017,0.61,49,991,517,0,0,-12.8,49,991,0,517,0.27,21.12,61.79,0.87,0.11,798,0.4,203,1.7000000000000002
+2023,11,12,11,0,9.4,1.6500000000000001,0.015,0.61,49,1005,554,0,0,-12.9,49,1005,0,554,0.27,19.39,59.84,0.86,0.11,798,0.4,208,1.8
+2023,11,12,11,30,10.100000000000001,1.6500000000000001,0.015,0.61,49,1013,576,0,0,-12.9,49,1013,0,576,0.269,18.5,58.660000000000004,0.86,0.11,798,0.4,212,1.8
+2023,11,12,12,0,10.8,1.6600000000000001,0.014,0.61,48,1016,582,0,0,-13.200000000000001,48,1016,0,582,0.269,17.17,58.300000000000004,0.86,0.11,798,0.4,216,1.9000000000000001
+2023,11,12,12,30,11.200000000000001,1.6600000000000001,0.014,0.61,49,1013,574,0,0,-13.200000000000001,49,1013,0,574,0.268,16.7,58.76,0.86,0.11,797,0.4,218,1.8
+2023,11,12,13,0,11.600000000000001,1.6600000000000001,0.014,0.61,48,1005,550,0,0,-13.5,48,1005,0,550,0.268,15.83,60.04,0.86,0.11,797,0.4,219,1.8
+2023,11,12,13,30,11.700000000000001,1.6600000000000001,0.014,0.61,47,991,511,0,0,-13.5,47,991,0,511,0.267,15.72,62.08,0.86,0.11,797,0.4,218,1.6
+2023,11,12,14,0,11.700000000000001,1.68,0.015,0.61,45,970,458,0,0,-13.8,45,970,0,458,0.267,15.43,64.8,0.86,0.11,797,0.4,217,1.5
+2023,11,12,14,30,11.3,1.68,0.015,0.61,43,939,393,0,0,-13.8,43,939,0,393,0.267,15.82,68.12,0.86,0.11,796,0.4,218,1.2000000000000002
+2023,11,12,15,0,10.8,1.68,0.016,0.61,41,894,318,0,0,-11.9,41,894,0,318,0.267,19.07,71.95,0.86,0.11,796,0.4,219,0.9
+2023,11,12,15,30,9.600000000000001,1.68,0.016,0.61,37,825,234,0,0,-11.9,37,825,0,234,0.267,20.650000000000002,76.21000000000001,0.86,0.11,796,0.4,246,0.7000000000000001
+2023,11,12,16,0,8.3,1.6600000000000001,0.017,0.61,31,715,145,0,0,-9.700000000000001,31,715,0,145,0.267,26.96,80.81,0.86,0.11,796,0.4,274,0.5
+2023,11,12,16,30,7.1000000000000005,1.6600000000000001,0.017,0.61,23,519,62,0,0,-9.700000000000001,23,519,0,62,0.267,29.25,85.66,0.86,0.11,796,0.4,305,0.6000000000000001
+2023,11,12,17,0,5.800000000000001,1.6400000000000001,0.018000000000000002,0.61,8,97,6,0,0,-12.700000000000001,8,97,0,6,0.267,25.07,90.96000000000001,0.86,0.11,796,0.4,336,0.7000000000000001
+2023,11,12,17,30,5.2,1.6400000000000001,0.018000000000000002,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.267,26.14,96.3,0.86,0.11,796,0.4,174,0.9
+2023,11,12,18,0,4.5,1.62,0.018000000000000002,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.267,26.51,101.79,0.86,0.11,796,0.4,12,1
+2023,11,12,18,30,3.9000000000000004,1.62,0.018000000000000002,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.268,27.650000000000002,107.38,0.86,0.11,796,0.4,27,1
+2023,11,12,19,0,3.2,1.6,0.017,0.61,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.268,28.990000000000002,113.05,0.86,0.11,796,0.4,42,1.1
+2023,11,12,19,30,2.9000000000000004,1.6,0.017,0.61,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.269,29.61,118.74000000000001,0.86,0.11,796,0.4,58,1
+2023,11,12,20,0,2.7,1.58,0.017,0.61,0,0,0,0,0,-13,0,0,0,0,0.27,30.32,124.44,0.87,0.11,796,0.4,73,1
+2023,11,12,20,30,2.5,1.58,0.017,0.61,0,0,0,0,0,-13,0,0,0,0,0.27,30.76,130.08,0.87,0.11,796,0.4,97,0.9
+2023,11,12,21,0,2.3000000000000003,1.55,0.018000000000000002,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.271,31.61,135.61,0.87,0.11,796,0.4,120,0.9
+2023,11,12,21,30,1.8,1.55,0.018000000000000002,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.271,32.76,140.94,0.87,0.11,796,0.4,144,1
+2023,11,12,22,0,1.3,1.52,0.019,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.271,34.230000000000004,145.94,0.88,0.11,796,0.4,168,1.1
+2023,11,12,22,30,0.8,1.52,0.019,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.271,35.480000000000004,150.43,0.88,0.11,796,0.4,177,1.2000000000000002
+2023,11,12,23,0,0.2,1.5,0.019,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.271,37.25,154.1,0.87,0.11,796,0.4,186,1.4000000000000001
+2023,11,12,23,30,-0.2,1.5,0.019,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.271,38.34,156.55,0.87,0.11,796,0.4,189,1.5
+2023,11,13,0,0,-0.6000000000000001,1.5,0.019,0.61,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.271,39.94,157.37,0.87,0.11,796,0.4,191,1.6
+2023,11,13,0,30,-0.9,1.5,0.019,0.61,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.271,40.82,156.37,0.87,0.11,796,0.4,193,1.7000000000000002
+2023,11,13,1,0,-1.2000000000000002,1.49,0.019,0.61,0,0,0,0,7,-12.5,0,0,0,0,0.271,42.03,153.78,0.87,0.11,796,0.4,195,1.7000000000000002
+2023,11,13,1,30,-1.4000000000000001,1.49,0.019,0.61,0,0,0,0,7,-12.5,0,0,0,0,0.272,42.65,150.01,0.87,0.11,796,0.4,196,1.7000000000000002
+2023,11,13,2,0,-1.6,1.48,0.019,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.273,43.64,145.46,0.87,0.11,796,0.4,198,1.6
+2023,11,13,2,30,-1.8,1.48,0.019,0.61,0,0,0,0,7,-12.4,0,0,0,0,0.274,44.29,140.42000000000002,0.87,0.11,796,0.4,198,1.6
+2023,11,13,3,0,-2,1.46,0.019,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.276,45.33,135.07,0.87,0.11,796,0.4,199,1.6
+2023,11,13,3,30,-2.1,1.46,0.019,0.61,0,0,0,0,0,-12.3,0,0,0,0,0.277,45.67,129.53,0.87,0.11,796,0.4,199,1.6
+2023,11,13,4,0,-2.3000000000000003,1.45,0.02,0.61,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.278,46.77,123.89,0.87,0.11,796,0.4,199,1.6
+2023,11,13,4,30,-2.4000000000000004,1.45,0.02,0.61,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.28,47.12,118.2,0.87,0.11,796,0.4,198,1.6
+2023,11,13,5,0,-2.5,1.43,0.02,0.61,0,0,0,0,7,-12,0,0,0,0,0.281,47.96,112.51,0.88,0.11,796,0.4,198,1.6
+2023,11,13,5,30,-2.5,1.43,0.02,0.61,0,0,0,0,7,-12,0,0,0,0,0.28200000000000003,47.96,106.86,0.88,0.11,796,0.4,197,1.6
+2023,11,13,6,0,-2.5,1.41,0.021,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.28400000000000003,48.28,101.29,0.88,0.11,796,0.4,197,1.6
+2023,11,13,6,30,-2.2,1.41,0.021,0.61,0,0,0,0,0,-11.9,0,0,0,0,0.28500000000000003,47.22,95.82000000000001,0.88,0.11,796,0.4,196,1.6
+2023,11,13,7,0,-1.9000000000000001,1.3800000000000001,0.022,0.61,7,100,7,0,0,-11.700000000000001,6,73,7,6,0.28600000000000003,47.11,90.05,0.88,0.11,796,0.4,196,1.6
+2023,11,13,7,30,0,1.3800000000000001,0.022,0.61,25,522,68,4,7,-11.700000000000001,37,210,64,54,0.28600000000000003,41.01,85.25,0.88,0.11,796,0.4,195,1.8
+2023,11,13,8,0,2,1.37,0.023,0.61,34,711,152,0,0,-10.9,34,711,0,152,0.28700000000000003,37.88,80.44,0.88,0.11,797,0.4,193,2.1
+2023,11,13,8,30,3.6,1.37,0.023,0.61,41,816,240,0,0,-10.9,41,816,0,240,0.28600000000000003,33.83,75.89,0.87,0.11,797,0.4,195,2.7
+2023,11,13,9,0,5.2,1.3800000000000001,0.022,0.61,45,882,322,0,0,-11.4,45,882,0,322,0.28600000000000003,29.05,71.69,0.87,0.11,797,0.4,196,3.2
+2023,11,13,9,30,7,1.3800000000000001,0.022,0.61,49,927,397,0,0,-11.4,49,927,0,397,0.28400000000000003,25.63,67.93,0.87,0.11,796,0.4,203,4.3
+2023,11,13,10,0,8.700000000000001,1.3900000000000001,0.022,0.61,51,958,461,0,0,-11.5,51,958,0,461,0.28300000000000003,22.72,64.68,0.87,0.11,796,0.4,209,5.300000000000001
+2023,11,13,10,30,9.8,1.3900000000000001,0.022,0.61,52,981,512,0,0,-11.5,52,981,0,512,0.28200000000000003,21.1,62.050000000000004,0.86,0.11,796,0.4,211,5.9
+2023,11,13,11,0,11,1.55,0.02,0.61,52,997,549,0,0,-11,82,909,0,535,0.281,20.18,60.11,0.85,0.11,796,0.4,213,6.6000000000000005
+2023,11,13,11,30,11.600000000000001,1.55,0.02,0.61,53,1004,571,0,0,-11,53,1004,0,571,0.28,19.37,58.93,0.86,0.11,795,0.4,213,6.5
+2023,11,13,12,0,12.200000000000001,1.56,0.02,0.61,54,1007,579,0,0,-10.700000000000001,54,1007,0,579,0.279,19.12,58.56,0.87,0.11,795,0.4,214,6.5
+2023,11,13,12,30,12.5,1.56,0.02,0.61,53,1004,570,0,0,-10.700000000000001,53,1004,0,570,0.277,18.75,59.02,0.88,0.11,795,0.4,214,6.4
+2023,11,13,13,0,12.9,1.56,0.02,0.61,52,994,545,0,7,-10.600000000000001,153,634,0,467,0.276,18.46,60.29,0.89,0.11,794,0.4,214,6.300000000000001
+2023,11,13,13,30,13,1.56,0.02,0.61,51,982,507,0,7,-10.600000000000001,197,417,0,391,0.275,18.34,62.32,0.88,0.11,794,0.4,213,6.1000000000000005
+2023,11,13,14,0,13,1.61,0.017,0.61,48,965,455,0,7,-10.5,130,633,0,397,0.274,18.5,65.03,0.88,0.11,794,0.4,213,5.800000000000001
+2023,11,13,14,30,12.600000000000001,1.61,0.017,0.61,45,936,390,0,0,-10.5,79,789,4,370,0.274,18.990000000000002,68.34,0.88,0.11,794,0.4,213,5.300000000000001
+2023,11,13,15,0,12.200000000000001,1.59,0.015,0.61,40,893,314,0,7,-10.200000000000001,124,442,4,259,0.273,19.95,72.15,0.88,0.11,793,0.4,213,4.800000000000001
+2023,11,13,15,30,10,1.59,0.015,0.61,36,826,230,0,7,-10.200000000000001,106,155,0,142,0.273,23.080000000000002,76.4,0.89,0.11,793,0.4,215,3.5
+2023,11,13,16,0,7.800000000000001,1.55,0.014,0.61,30,718,142,2,6,-8.1,56,8,32,57,0.272,31.54,80.99,0.89,0.11,793,0.4,216,2.2
+2023,11,13,16,30,5.5,1.55,0.014,0.61,22,519,60,7,6,-8.1,26,2,100,26,0.272,36.92,85.82000000000001,0.9,0.11,793,0.4,219,2
+2023,11,13,17,0,3.2,1.47,0.015,0.61,4,53,3,3,6,-8.4,2,0,43,2,0.271,42.410000000000004,91.12,0.91,0.11,793,0.4,221,1.8
+2023,11,13,17,30,2.9000000000000004,1.47,0.015,0.61,0,0,0,0,6,-8.4,0,0,0,0,0.271,43.37,96.45,0.91,0.11,794,0.4,221,1.7000000000000002
+2023,11,13,18,0,2.6,1.4000000000000001,0.017,0.61,0,0,0,0,6,-8.3,0,0,0,0,0.271,44.47,101.93,0.92,0.11,794,0.4,221,1.6
+2023,11,13,18,30,2.6,1.4000000000000001,0.017,0.61,0,0,0,0,6,-8.3,0,0,0,0,0.271,44.47,107.52,0.92,0.11,794,0.4,217,1.5
+2023,11,13,19,0,2.5,1.34,0.019,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.271,45.45,113.18,0.92,0.11,794,0.5,214,1.5
+2023,11,13,19,30,2.4000000000000004,1.34,0.019,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.272,45.77,118.88,0.92,0.11,794,0.5,211,1.5
+2023,11,13,20,0,2.3000000000000003,1.33,0.02,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.272,46.09,124.57000000000001,0.92,0.11,794,0.5,208,1.5
+2023,11,13,20,30,1.9000000000000001,1.33,0.02,0.61,0,0,0,0,6,-8.1,0,0,0,0,0.273,47.43,130.22,0.92,0.11,794,0.5,206,1.5
+2023,11,13,21,0,1.6,1.34,0.019,0.61,0,0,0,0,6,-8.4,0,0,0,0,0.274,47.480000000000004,135.75,0.92,0.11,794,0.5,203,1.5
+2023,11,13,21,30,1.2000000000000002,1.34,0.019,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.275,48.86,141.09,0.92,0.11,794,0.5,201,1.5
+2023,11,13,22,0,0.9,1.33,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.275,49.120000000000005,146.12,0.92,0.11,794,0.5,198,1.5
+2023,11,13,22,30,0.7000000000000001,1.33,0.019,0.61,0,0,0,0,6,-8.6,0,0,0,0,0.276,49.83,150.63,0.92,0.11,794,0.5,197,1.5
+2023,11,13,23,0,0.5,1.34,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.277,50.51,154.33,0.92,0.11,794,0.5,196,1.5
+2023,11,13,23,30,0.4,1.34,0.019,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.277,50.88,156.8,0.92,0.11,794,0.5,196,1.5
+2023,11,14,0,0,0.30000000000000004,1.35,0.019,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.278,51.54,157.63,0.92,0.11,794,0.5,196,1.5
+2023,11,14,0,30,0.30000000000000004,1.35,0.019,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.277,51.54,156.64000000000001,0.92,0.11,794,0.6000000000000001,197,1.5
+2023,11,14,1,0,0.30000000000000004,1.35,0.02,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.277,52.13,154.03,0.92,0.11,794,0.6000000000000001,197,1.5
+2023,11,14,1,30,0.2,1.35,0.02,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.277,52.51,150.25,0.92,0.11,794,0.6000000000000001,195,1.5
+2023,11,14,2,0,0.2,1.35,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,52.75,145.68,0.92,0.11,794,0.6000000000000001,194,1.5
+2023,11,14,2,30,0.1,1.35,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,53.13,140.62,0.92,0.11,794,0.6000000000000001,192,1.5
+2023,11,14,3,0,0.1,1.36,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,53.13,135.26,0.92,0.11,794,0.6000000000000001,190,1.5
+2023,11,14,3,30,-0.2,1.36,0.021,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.278,54.230000000000004,129.72,0.92,0.11,793,0.6000000000000001,190,1.6
+2023,11,14,4,0,-0.5,1.3900000000000001,0.021,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.278,54.32,124.07000000000001,0.92,0.11,793,0.6000000000000001,189,1.6
+2023,11,14,4,30,-0.6000000000000001,1.3900000000000001,0.021,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.28,54.71,118.38,0.92,0.11,793,0.6000000000000001,189,1.6
+2023,11,14,5,0,-0.7000000000000001,1.41,0.02,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.281,53.7,112.7,0.91,0.11,793,0.6000000000000001,188,1.6
+2023,11,14,5,30,-0.8,1.41,0.02,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.28200000000000003,54.1,107.05,0.91,0.11,793,0.6000000000000001,189,1.6
+2023,11,14,6,0,-0.9,1.44,0.019,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.28300000000000003,53,101.48,0.91,0.11,793,0.6000000000000001,191,1.6
+2023,11,14,6,30,-0.9,1.44,0.019,0.61,0,0,0,0,0,-9.3,0,0,0,0,0.28300000000000003,53,96.02,0.9,0.11,793,0.6000000000000001,193,1.6
+2023,11,14,7,0,-0.8,1.46,0.018000000000000002,0.61,6,96,6,0,0,-9.5,6,96,0,6,0.28300000000000003,51.92,90.23,0.9,0.11,794,0.6000000000000001,196,1.6
+2023,11,14,7,30,1.2000000000000002,1.46,0.018000000000000002,0.61,23,506,63,0,0,-9.5,23,506,0,63,0.28300000000000003,44.92,85.46000000000001,0.9,0.11,794,0.6000000000000001,199,1.8
+2023,11,14,8,0,3.3000000000000003,1.46,0.018000000000000002,0.61,32,696,145,0,0,-8.6,32,696,0,145,0.28200000000000003,41.21,80.66,0.9,0.11,794,0.6000000000000001,202,2.1
+2023,11,14,8,30,4.9,1.46,0.018000000000000002,0.61,38,803,231,0,0,-8.6,38,803,0,231,0.28200000000000003,36.84,76.12,0.9,0.11,794,0.6000000000000001,208,2.5
+2023,11,14,9,0,6.5,1.46,0.018000000000000002,0.61,43,872,313,0,0,-8.4,43,872,0,313,0.28200000000000003,33.49,71.93,0.89,0.11,794,0.6000000000000001,213,2.9000000000000004
+2023,11,14,9,30,8.3,1.46,0.018000000000000002,0.61,45,919,387,0,0,-8.4,45,919,0,387,0.281,29.62,68.17,0.89,0.11,794,0.6000000000000001,219,3.6
+2023,11,14,10,0,10,1.45,0.018000000000000002,0.61,48,951,451,0,0,-6.6000000000000005,48,951,0,451,0.281,30.38,64.94,0.89,0.11,794,0.6000000000000001,224,4.3
+2023,11,14,10,30,10.9,1.45,0.018000000000000002,0.61,49,974,502,0,0,-6.6000000000000005,49,974,0,502,0.28,28.61,62.31,0.89,0.11,794,0.5,227,4.5
+2023,11,14,11,0,11.700000000000001,1.57,0.017,0.61,50,991,540,0,0,-5.5,50,991,0,540,0.279,29.5,60.370000000000005,0.89,0.11,794,0.5,229,4.7
+2023,11,14,11,30,12.200000000000001,1.57,0.017,0.61,51,998,562,0,0,-5.5,51,998,0,562,0.278,28.55,59.19,0.89,0.11,794,0.5,230,4.7
+2023,11,14,12,0,12.600000000000001,1.56,0.017,0.61,51,1000,569,0,0,-5.5,51,1000,0,569,0.278,27.990000000000002,58.82,0.89,0.11,794,0.5,231,4.7
+2023,11,14,12,30,12.8,1.56,0.017,0.61,50,998,560,0,0,-5.5,50,998,0,560,0.278,27.62,59.28,0.89,0.11,794,0.5,232,4.7
+2023,11,14,13,0,13,1.55,0.017,0.61,49,990,536,0,0,-6,49,990,0,536,0.278,26.22,60.54,0.89,0.11,793,0.5,232,4.6000000000000005
+2023,11,14,13,30,13,1.55,0.017,0.61,49,975,498,0,0,-6,49,975,0,498,0.278,26.22,62.550000000000004,0.89,0.11,793,0.5,233,4.5
+2023,11,14,14,0,13,1.45,0.017,0.61,47,953,446,0,0,-6.6000000000000005,47,953,0,446,0.279,24.98,65.25,0.89,0.11,793,0.5,233,4.4
+2023,11,14,14,30,12.600000000000001,1.45,0.017,0.61,45,922,382,0,0,-6.6000000000000005,45,922,0,382,0.279,25.64,68.54,0.89,0.11,793,0.5,232,4.1000000000000005
+2023,11,14,15,0,12.3,1.43,0.017,0.61,42,875,307,0,0,-7,42,875,0,307,0.279,25.34,72.35000000000001,0.89,0.11,793,0.5,231,3.8000000000000003
+2023,11,14,15,30,10.5,1.43,0.017,0.61,37,804,224,0,0,-7,37,804,0,224,0.28,28.53,76.58,0.9,0.11,793,0.5,228,2.7
+2023,11,14,16,0,8.700000000000001,1.42,0.018000000000000002,0.61,31,690,137,0,0,-5.1000000000000005,31,690,0,137,0.281,37.35,81.16,0.9,0.11,793,0.5,226,1.6
+2023,11,14,16,30,6.800000000000001,1.42,0.018000000000000002,0.61,22,486,56,0,0,-5.1000000000000005,22,486,0,56,0.28200000000000003,42.5,85.98,0.9,0.11,793,0.5,221,1.5
+2023,11,14,17,0,4.9,1.43,0.018000000000000002,0.61,4,48,3,0,0,-6,4,48,0,3,0.28300000000000003,45.18,91.27,0.9,0.11,793,0.5,216,1.4000000000000001
+2023,11,14,17,30,4.5,1.43,0.018000000000000002,0.61,0,0,0,0,0,-6,0,0,0,0,0.28300000000000003,46.46,96.59,0.9,0.11,793,0.5,212,1.5
+2023,11,14,18,0,4,1.46,0.019,0.61,0,0,0,0,0,-6.5,0,0,0,0,0.28400000000000003,46.480000000000004,102.07000000000001,0.9,0.11,793,0.5,209,1.5
+2023,11,14,18,30,3.6,1.46,0.019,0.61,0,0,0,0,0,-6.4,0,0,0,0,0.28300000000000003,47.86,107.65,0.9,0.11,794,0.5,209,1.5
+2023,11,14,19,0,3.1,1.5,0.02,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28300000000000003,48.83,113.31,0.9,0.11,794,0.5,208,1.5
+2023,11,14,19,30,2.7,1.5,0.02,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.28200000000000003,50.230000000000004,119,0.89,0.11,794,0.5,208,1.5
+2023,11,14,20,0,2.3000000000000003,1.53,0.021,0.61,0,0,0,0,7,-6.7,0,0,0,0,0.28200000000000003,51.47,124.7,0.89,0.11,794,0.5,207,1.5
+2023,11,14,20,30,1.9000000000000001,1.53,0.021,0.61,0,0,0,0,7,-6.7,0,0,0,0,0.281,52.96,130.35,0.89,0.11,794,0.5,205,1.5
+2023,11,14,21,0,1.6,1.54,0.021,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.281,54.7,135.89000000000001,0.89,0.11,794,0.5,204,1.5
+2023,11,14,21,30,1.4000000000000001,1.54,0.021,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.281,55.49,141.24,0.9,0.11,794,0.5,201,1.4000000000000001
+2023,11,14,22,0,1.1,1.52,0.022,0.61,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.281,57.57,146.28,0.9,0.11,794,0.5,199,1.4000000000000001
+2023,11,14,22,30,0.9,1.52,0.022,0.61,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.281,58.4,150.82,0.9,0.11,794,0.5,196,1.4000000000000001
+2023,11,14,23,0,0.7000000000000001,1.47,0.022,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.281,60.01,154.54,0.9,0.11,794,0.6000000000000001,193,1.4000000000000001
+2023,11,14,23,30,0.6000000000000001,1.47,0.022,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28,60.45,157.04,0.9,0.11,794,0.6000000000000001,190,1.4000000000000001
+2023,11,15,0,0,0.4,1.43,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.28,61.71,157.89000000000001,0.9,0.11,794,0.6000000000000001,188,1.4000000000000001
+2023,11,15,0,30,0.30000000000000004,1.43,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.28,62.160000000000004,156.9,0.91,0.11,794,0.6000000000000001,186,1.4000000000000001
+2023,11,15,1,0,0.2,1.4000000000000001,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.28,62.620000000000005,154.28,0.91,0.11,794,0.6000000000000001,185,1.4000000000000001
+2023,11,15,1,30,0.2,1.4000000000000001,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.281,62.620000000000005,150.48,0.91,0.11,794,0.6000000000000001,184,1.3
+2023,11,15,2,0,0.2,1.37,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.28200000000000003,62.5,145.9,0.92,0.11,794,0.6000000000000001,184,1.3
+2023,11,15,2,30,0.4,1.37,0.022,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.28300000000000003,61.6,140.83,0.92,0.11,794,0.7000000000000001,185,1.2000000000000002
+2023,11,15,3,0,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28400000000000003,61.01,135.46,0.92,0.11,794,0.7000000000000001,185,1.2000000000000002
+2023,11,15,3,30,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28400000000000003,61.01,129.91,0.92,0.11,794,0.7000000000000001,185,1.2000000000000002
+2023,11,15,4,0,0.5,1.3800000000000001,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28500000000000003,60.81,124.26,0.92,0.11,794,0.8,185,1.2000000000000002
+2023,11,15,4,30,0.5,1.3800000000000001,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28600000000000003,60.81,118.57000000000001,0.92,0.11,794,0.8,186,1.2000000000000002
+2023,11,15,5,0,0.5,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28600000000000003,60.69,112.88,0.93,0.11,794,0.8,187,1.1
+2023,11,15,5,30,0.4,1.37,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28600000000000003,61.13,107.24000000000001,0.93,0.11,794,0.8,190,1.2000000000000002
+2023,11,15,6,0,0.4,1.36,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28600000000000003,61.11,101.67,0.93,0.11,794,0.8,193,1.2000000000000002
+2023,11,15,6,30,0.4,1.36,0.023,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.28600000000000003,61.11,96.22,0.93,0.11,794,0.8,196,1.2000000000000002
+2023,11,15,7,0,0.4,1.35,0.024,0.61,7,81,6,0,0,-6.2,7,81,0,6,0.28500000000000003,61.42,90.92,0.93,0.11,794,0.8,200,1.3
+2023,11,15,7,30,1.9000000000000001,1.35,0.024,0.61,23,459,58,0,0,-6.1000000000000005,23,459,0,58,0.28500000000000003,55.22,85.67,0.93,0.11,795,0.8,199,1.3
+2023,11,15,8,0,3.5,1.36,0.024,0.61,34,658,138,1,0,-5.2,50,354,14,106,0.28400000000000003,52.94,80.88,0.93,0.11,795,0.8,198,1.2000000000000002
+2023,11,15,8,30,5,1.36,0.024,0.61,41,771,223,4,7,-5.2,107,277,50,172,0.28200000000000003,47.67,76.34,0.93,0.11,795,0.8,198,1.5
+2023,11,15,9,0,6.6000000000000005,1.36,0.024,0.61,45,842,303,0,7,-5.300000000000001,148,198,0,209,0.281,42.49,72.16,0.93,0.11,795,0.8,197,1.8
+2023,11,15,9,30,8.3,1.36,0.024,0.61,49,889,376,0,7,-5.300000000000001,180,226,0,263,0.28,37.85,68.41,0.93,0.11,795,0.8,203,2.3000000000000003
+2023,11,15,10,0,10,1.3800000000000001,0.024,0.61,52,922,439,0,7,-3.9000000000000004,212,145,0,273,0.279,37.39,65.19,0.93,0.11,795,0.8,208,2.7
+2023,11,15,10,30,11.200000000000001,1.3800000000000001,0.024,0.61,53,947,489,0,7,-3.9000000000000004,233,162,0,308,0.278,34.480000000000004,62.56,0.93,0.11,794,0.8,210,3.4000000000000004
+2023,11,15,11,0,12.4,1.58,0.019,0.61,52,965,525,0,7,-2.7,246,190,0,339,0.277,34.95,60.63,0.93,0.11,794,0.8,211,4
+2023,11,15,11,30,12.9,1.58,0.019,0.61,52,973,547,0,7,-2.7,243,210,0,350,0.274,33.83,59.45,0.93,0.11,794,0.8,213,4.3
+2023,11,15,12,0,13.4,1.57,0.019,0.61,53,975,554,0,7,-2.3000000000000003,242,122,0,305,0.272,33.74,59.08,0.93,0.11,793,0.8,215,4.6000000000000005
+2023,11,15,12,30,13.600000000000001,1.57,0.019,0.61,52,973,545,0,7,-2.3000000000000003,208,413,0,417,0.271,33.31,59.53,0.93,0.11,793,0.8,216,4.7
+2023,11,15,13,0,13.700000000000001,1.58,0.018000000000000002,0.61,50,966,522,0,7,-2,194,430,0,404,0.269,33.7,60.78,0.93,0.11,792,0.8,217,4.9
+2023,11,15,13,30,13.700000000000001,1.58,0.018000000000000002,0.61,50,952,485,0,7,-2,196,258,0,314,0.269,33.7,62.78,0.92,0.11,792,0.8,218,4.9
+2023,11,15,14,0,13.8,1.45,0.018000000000000002,0.61,48,930,434,0,0,-2,111,677,0,392,0.269,33.58,65.46000000000001,0.92,0.11,792,0.8,219,4.9
+2023,11,15,14,30,13.5,1.45,0.018000000000000002,0.61,45,898,371,0,7,-2,117,562,0,321,0.269,34.2,68.74,0.92,0.11,791,0.8,220,4.7
+2023,11,15,15,0,13.200000000000001,1.41,0.018000000000000002,0.61,42,850,297,0,0,-2.2,85,606,0,267,0.269,34.44,72.54,0.92,0.11,791,0.8,221,4.6000000000000005
+2023,11,15,15,30,11.600000000000001,1.41,0.018000000000000002,0.61,37,779,216,0,8,-2.2,66,589,14,201,0.269,38.25,76.75,0.92,0.11,791,0.8,221,3.4000000000000004
+2023,11,15,16,0,9.9,1.36,0.018000000000000002,0.61,31,665,131,3,7,-1.6,64,348,50,117,0.27,44.53,81.32000000000001,0.92,0.11,791,0.8,221,2.1
+2023,11,15,16,30,7.800000000000001,1.36,0.018000000000000002,0.61,22,455,53,7,7,-1.6,36,21,100,37,0.271,51.300000000000004,86.13,0.93,0.11,791,0.7000000000000001,219,1.9000000000000001
+2023,11,15,17,0,5.7,1.28,0.02,0.61,4,42,3,2,7,-2.2,2,0,29,2,0.272,56.910000000000004,91.41,0.93,0.11,791,0.7000000000000001,216,1.6
+2023,11,15,17,30,5.5,1.28,0.02,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.272,57.71,96.73,0.93,0.11,791,0.7000000000000001,214,1.7000000000000002
+2023,11,15,18,0,5.300000000000001,1.26,0.021,0.61,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.273,57.97,102.2,0.93,0.11,791,0.7000000000000001,213,1.8
+2023,11,15,18,30,4.800000000000001,1.26,0.021,0.61,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.273,60.02,107.77,0.93,0.11,791,0.7000000000000001,214,1.8
+2023,11,15,19,0,4.2,1.27,0.02,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.274,61.980000000000004,113.43,0.92,0.11,791,0.7000000000000001,216,1.9000000000000001
+2023,11,15,19,30,3.8000000000000003,1.27,0.02,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.275,63.74,119.12,0.92,0.11,791,0.7000000000000001,215,1.9000000000000001
+2023,11,15,20,0,3.4000000000000004,1.27,0.021,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.276,65.07000000000001,124.82000000000001,0.92,0.11,791,0.7000000000000001,215,1.9000000000000001
+2023,11,15,20,30,3,1.27,0.021,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.276,66.94,130.47,0.92,0.11,791,0.7000000000000001,213,1.8
+2023,11,15,21,0,2.6,1.28,0.021,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.277,68.54,136.02,0.93,0.11,791,0.7000000000000001,211,1.8
+2023,11,15,21,30,2.4000000000000004,1.28,0.021,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.278,69.52,141.39000000000001,0.93,0.11,791,0.8,209,1.7000000000000002
+2023,11,15,22,0,2.2,1.29,0.023,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.278,70.17,146.44,0.93,0.11,790,0.8,206,1.7000000000000002
+2023,11,15,22,30,2.2,1.29,0.023,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.279,70.17,151,0.93,0.11,790,0.9,204,1.7000000000000002
+2023,11,15,23,0,2.2,1.3,0.025,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.279,69.84,154.75,0.93,0.11,790,1,202,1.8
+2023,11,15,23,30,2.3000000000000003,1.3,0.025,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.28,69.34,157.28,0.9400000000000001,0.11,790,1.1,201,1.8
+2023,11,16,0,0,2.3000000000000003,1.3,0.027,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.28,68.94,158.14000000000001,0.9400000000000001,0.11,790,1.2000000000000002,200,1.8
+2023,11,16,0,30,2.6,1.3,0.027,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.281,67.4,157.15,0.9400000000000001,0.11,789,1.3,200,1.8
+2023,11,16,1,0,2.8000000000000003,1.3,0.029,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.28200000000000003,66.22,154.52,0.9400000000000001,0.11,789,1.4000000000000001,200,1.8
+2023,11,16,1,30,3.1,1.3,0.029,0.61,0,0,0,0,6,-2.9000000000000004,0,0,0,0,0.28300000000000003,64.83,150.70000000000002,0.9400000000000001,0.11,789,1.4000000000000001,201,1.9000000000000001
+2023,11,16,2,0,3.4000000000000004,1.29,0.031,0.61,0,0,0,0,6,-2.8000000000000003,0,0,0,0,0.28500000000000003,63.980000000000004,146.11,0.9500000000000001,0.11,789,1.4000000000000001,203,2
+2023,11,16,2,30,3.6,1.29,0.031,0.61,0,0,0,0,6,-2.8000000000000003,0,0,0,0,0.28700000000000003,63.08,141.03,0.9500000000000001,0.11,789,1.4000000000000001,206,2.2
+2023,11,16,3,0,3.8000000000000003,1.29,0.03,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.289,63.71,135.65,0.9500000000000001,0.11,789,1.5,209,2.4000000000000004
+2023,11,16,3,30,3.8000000000000003,1.29,0.03,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.291,63.71,130.1,0.9500000000000001,0.11,789,1.5,210,2.5
+2023,11,16,4,0,3.9000000000000004,1.27,0.032,0.61,0,0,0,0,6,-1.7000000000000002,0,0,0,0,0.293,66.69,124.44,0.9500000000000001,0.11,788,1.5,210,2.5
+2023,11,16,4,30,3.8000000000000003,1.27,0.032,0.61,0,0,0,0,6,-1.7000000000000002,0,0,0,0,0.295,67.16,118.75,0.9500000000000001,0.11,788,1.5,209,2.6
+2023,11,16,5,0,3.7,1.26,0.033,0.61,0,0,0,0,9,-0.5,0,0,0,0,0.297,73.95,113.07000000000001,0.9500000000000001,0.11,788,1.5,208,2.7
+2023,11,16,5,30,3.4000000000000004,1.26,0.033,0.61,0,0,0,0,6,-0.5,0,0,0,0,0.299,75.52,107.42,0.9500000000000001,0.11,788,1.5,203,2.7
+2023,11,16,6,0,3.1,1.31,0.027,0.61,0,0,0,0,6,0.30000000000000004,0,0,0,0,0.301,81.83,101.86,0.9400000000000001,0.11,788,1.5,199,2.6
+2023,11,16,6,30,2.7,1.31,0.027,0.61,0,0,0,0,6,0.30000000000000004,0,0,0,0,0.301,84.18,96.41,0.9400000000000001,0.11,788,1.4000000000000001,197,2.5
+2023,11,16,7,0,2.3000000000000003,1.35,0.022,0.61,4,41,3,3,6,0.6000000000000001,1,0,43,1,0.302,88.44,91.12,0.93,0.11,788,1.4000000000000001,195,2.5
+2023,11,16,7,30,3.5,1.35,0.022,0.61,22,425,53,7,7,0.6000000000000001,13,0,100,13,0.301,81.35000000000001,85.87,0.9400000000000001,0.11,789,1.4000000000000001,199,2.9000000000000004
+2023,11,16,8,0,4.7,1.31,0.026000000000000002,0.61,33,619,129,4,7,1.5,15,0,50,15,0.3,79.59,81.09,0.9500000000000001,0.11,789,1.4000000000000001,203,3.4000000000000004
+2023,11,16,8,30,5.300000000000001,1.31,0.026000000000000002,0.61,43,720,210,0,4,1.5,45,26,0,51,0.299,76.34,76.56,0.9500000000000001,0.11,789,1.4000000000000001,214,3.8000000000000003
+2023,11,16,9,0,5.800000000000001,1.23,0.043000000000000003,0.61,52,776,287,0,7,2.4000000000000004,16,0,0,16,0.297,78.91,72.39,0.96,0.11,789,1.4000000000000001,225,4.2
+2023,11,16,9,30,6.1000000000000005,1.23,0.043000000000000003,0.61,57,829,359,0,4,2.4000000000000004,29,0,7,29,0.297,77.29,68.65,0.96,0.11,789,1.4000000000000001,234,4.4
+2023,11,16,10,0,6.4,1.23,0.045,0.61,61,865,421,0,4,2.9000000000000004,56,0,0,56,0.296,78.51,65.43,0.96,0.11,789,1.3,242,4.6000000000000005
+2023,11,16,10,30,7.6000000000000005,1.23,0.045,0.61,60,903,473,0,4,2.9000000000000004,40,0,0,40,0.294,72.32000000000001,62.81,0.9500000000000001,0.11,789,1.2000000000000002,247,4.5
+2023,11,16,11,0,8.700000000000001,1.37,0.03,0.61,59,935,514,0,4,3.2,133,6,0,136,0.293,68.31,60.88,0.9500000000000001,0.11,789,1.1,252,4.5
+2023,11,16,11,30,9.700000000000001,1.37,0.03,0.61,58,949,537,0,4,3.2,222,176,0,311,0.291,63.870000000000005,59.71,0.9400000000000001,0.11,789,1,253,4.5
+2023,11,16,12,0,10.700000000000001,1.3800000000000001,0.025,0.61,57,957,545,0,0,2.6,163,563,0,450,0.289,57.4,59.33,0.9400000000000001,0.11,789,1,255,4.5
+2023,11,16,12,30,11,1.3800000000000001,0.025,0.61,56,958,538,0,0,2.6,188,482,0,431,0.28800000000000003,56.27,59.77,0.9400000000000001,0.11,789,0.9,253,4.5
+2023,11,16,13,0,11.4,1.3900000000000001,0.022,0.61,54,954,516,0,0,1.7000000000000002,95,811,0,488,0.28700000000000003,51.230000000000004,61.01,0.93,0.11,789,0.9,252,4.4
+2023,11,16,13,30,11.4,1.3900000000000001,0.022,0.61,54,935,478,0,0,1.7000000000000002,112,695,0,428,0.28600000000000003,51.160000000000004,63,0.93,0.11,788,0.9,252,4.4
+2023,11,16,14,0,11.5,1.17,0.027,0.61,53,908,427,0,4,0.4,142,243,0,242,0.28500000000000003,46.4,65.67,0.93,0.11,788,0.9,252,4.4
+2023,11,16,14,30,11.4,1.17,0.027,0.61,51,875,365,0,0,0.4,126,340,0,248,0.28500000000000003,46.7,68.94,0.93,0.11,788,0.9,253,4.1000000000000005
+2023,11,16,15,0,11.3,1.19,0.027,0.61,47,826,292,0,0,-0.7000000000000001,89,594,0,265,0.28400000000000003,43.550000000000004,72.72,0.93,0.11,788,0.8,255,3.8000000000000003
+2023,11,16,15,30,9.9,1.19,0.027,0.61,41,750,211,0,0,-0.6000000000000001,41,750,0,211,0.28400000000000003,47.86,76.92,0.93,0.11,789,0.8,257,2.7
+2023,11,16,16,0,8.6,1.19,0.027,0.61,33,626,126,0,0,0.9,33,626,0,126,0.28300000000000003,58.38,81.48,0.93,0.11,789,0.8,259,1.5
+2023,11,16,16,30,6.9,1.19,0.027,0.61,23,407,49,0,0,0.9,23,407,0,49,0.28300000000000003,65.54,86.27,0.93,0.11,789,0.8,269,1.4000000000000001
+2023,11,16,17,0,5.2,1.19,0.027,0.61,3,35,2,0,0,-0.4,3,35,0,2,0.28300000000000003,67.28,91.55,0.93,0.11,789,0.9,278,1.3
+2023,11,16,17,30,4.5,1.19,0.027,0.61,0,0,0,0,4,-0.4,0,0,0,0,0.28200000000000003,70.64,96.86,0.93,0.11,789,0.9,290,1.3
+2023,11,16,18,0,3.8000000000000003,1.22,0.027,0.61,0,0,0,0,4,-0.8,0,0,0,0,0.28200000000000003,71.68,102.32000000000001,0.93,0.11,790,0.8,302,1.3
+2023,11,16,18,30,3.2,1.22,0.027,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.28200000000000003,74.78,107.89,0.93,0.11,790,0.8,311,1.3
+2023,11,16,19,0,2.5,1.29,0.026000000000000002,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.281,76.32000000000001,113.54,0.93,0.11,790,0.8,320,1.3
+2023,11,16,19,30,2.2,1.29,0.026000000000000002,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28200000000000003,78.07000000000001,119.24000000000001,0.92,0.11,791,0.8,331,1.3
+2023,11,16,20,0,1.9000000000000001,1.35,0.024,0.61,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.28200000000000003,78.95,124.93,0.92,0.11,791,0.8,342,1.2000000000000002
+2023,11,16,20,30,1.7000000000000002,1.35,0.024,0.61,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.28300000000000003,80.08,130.59,0.92,0.11,791,0.7000000000000001,177,1.2000000000000002
+2023,11,16,21,0,1.5,1.3800000000000001,0.023,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.28400000000000003,81.51,136.15,0.92,0.11,791,0.7000000000000001,12,1.2000000000000002
+2023,11,16,21,30,1.2000000000000002,1.3800000000000001,0.023,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.28400000000000003,83.28,141.52,0.92,0.11,791,0.7000000000000001,23,1.1
+2023,11,16,22,0,0.9,1.3900000000000001,0.022,0.61,0,0,0,0,4,-1.2000000000000002,0,0,0,0,0.28500000000000003,85.65,146.59,0.92,0.11,791,0.7000000000000001,33,1.1
+2023,11,16,22,30,0.7000000000000001,1.3900000000000001,0.022,0.61,0,0,0,0,4,-1.2000000000000002,0,0,0,0,0.28600000000000003,86.89,151.17000000000002,0.92,0.11,791,0.7000000000000001,37,1.1
+2023,11,16,23,0,0.4,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.28600000000000003,89.55,154.95000000000002,0.92,0.11,792,0.7000000000000001,41,1
+2023,11,16,23,30,0.2,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.28600000000000003,90.85000000000001,157.51,0.92,0.11,792,0.7000000000000001,41,1
+2023,11,17,0,0,0,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.28600000000000003,92.73,158.39000000000001,0.92,0.11,792,0.7000000000000001,41,1
+2023,11,17,0,30,-0.1,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.28600000000000003,93.4,157.4,0.92,0.11,792,0.7000000000000001,40,0.9
+2023,11,17,1,0,-0.2,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.28600000000000003,94.51,154.76,0.92,0.11,792,0.7000000000000001,38,0.8
+2023,11,17,1,30,-0.30000000000000004,1.3900000000000001,0.022,0.61,0,0,0,0,0,-1,0,0,0,0,0.28600000000000003,95.2,150.93,0.92,0.11,792,0.6000000000000001,34,0.8
+2023,11,17,2,0,-0.5,1.3800000000000001,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.28500000000000003,96.81,146.32,0.92,0.11,792,0.6000000000000001,29,0.8
+2023,11,17,2,30,-0.7000000000000001,1.3800000000000001,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.28500000000000003,98.23,141.23,0.92,0.11,792,0.6000000000000001,25,0.8
+2023,11,17,3,0,-0.9,1.3800000000000001,0.022,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.28500000000000003,99.7,135.84,0.92,0.11,792,0.6000000000000001,20,0.8
+2023,11,17,3,30,-1.2000000000000002,1.3800000000000001,0.022,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28500000000000003,100,130.28,0.92,0.11,792,0.6000000000000001,21,0.8
+2023,11,17,4,0,-1.5,1.3800000000000001,0.022,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.28500000000000003,100,124.63000000000001,0.92,0.11,792,0.6000000000000001,21,0.8
+2023,11,17,4,30,-1.7000000000000002,1.3800000000000001,0.022,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28500000000000003,100,118.93,0.92,0.11,792,0.6000000000000001,25,0.8
+2023,11,17,5,0,-2,1.3800000000000001,0.022,0.61,0,0,0,0,0,-2,0,0,0,0,0.28600000000000003,100,113.25,0.92,0.11,792,0.6000000000000001,29,0.8
+2023,11,17,5,30,-2.1,1.3800000000000001,0.022,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.28600000000000003,100,107.61,0.92,0.11,793,0.5,36,0.8
+2023,11,17,6,0,-2.2,1.3800000000000001,0.021,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.28600000000000003,100,102.05,0.92,0.11,793,0.5,42,0.8
+2023,11,17,6,30,-2.2,1.3800000000000001,0.021,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.28600000000000003,100,96.61,0.91,0.11,793,0.5,43,0.8
+2023,11,17,7,0,-2.1,1.3800000000000001,0.02,0.61,4,46,3,0,0,-2.1,4,46,0,3,0.28500000000000003,100,91.32000000000001,0.91,0.11,793,0.5,43,0.9
+2023,11,17,7,30,-0.9,1.3800000000000001,0.02,0.61,23,473,55,0,0,-1.5,23,473,0,55,0.28500000000000003,95.41,86.07000000000001,0.91,0.11,794,0.5,43,1
+2023,11,17,8,0,0.30000000000000004,1.3800000000000001,0.02,0.61,32,680,135,0,0,-1.5,32,680,0,135,0.28400000000000003,87.49,81.3,0.91,0.11,794,0.5,43,1.2000000000000002
+2023,11,17,8,30,1.8,1.3800000000000001,0.02,0.61,38,796,220,0,0,-1.5,38,796,0,220,0.28400000000000003,78.55,76.78,0.91,0.11,794,0.5,50,1.1
+2023,11,17,9,0,3.2,1.3900000000000001,0.019,0.61,43,868,302,0,0,-1.7000000000000002,43,868,0,302,0.28300000000000003,70.43,72.62,0.91,0.11,794,0.5,57,1.1
+2023,11,17,9,30,5,1.3900000000000001,0.019,0.61,46,916,376,0,0,-1.7000000000000002,46,916,0,376,0.28200000000000003,62.09,68.89,0.91,0.11,794,0.5,58,0.7000000000000001
+2023,11,17,10,0,6.800000000000001,1.3900000000000001,0.018000000000000002,0.61,48,948,439,0,0,-3.2,48,948,0,439,0.28200000000000003,49.09,65.67,0.9,0.11,794,0.5,58,0.30000000000000004
+2023,11,17,10,30,8.1,1.3900000000000001,0.018000000000000002,0.61,49,971,489,0,0,-3.2,49,971,0,489,0.28200000000000003,44.93,63.06,0.9,0.11,794,0.5,152,0.6000000000000001
+2023,11,17,11,0,9.4,1.45,0.017,0.61,50,986,526,0,0,-4.7,50,986,0,526,0.28200000000000003,36.61,61.13,0.9,0.11,794,0.5,246,0.9
+2023,11,17,11,30,10,1.45,0.017,0.61,50,995,548,0,0,-4.7,50,995,0,548,0.28300000000000003,35.17,59.95,0.9,0.11,794,0.5,246,1.3
+2023,11,17,12,0,10.600000000000001,1.47,0.016,0.61,50,997,555,0,0,-5.2,50,997,0,555,0.28400000000000003,32.58,59.58,0.9,0.11,793,0.5,247,1.6
+2023,11,17,12,30,10.9,1.47,0.016,0.61,50,995,547,0,0,-5.2,50,995,0,547,0.28500000000000003,31.93,60.01,0.9,0.11,793,0.5,247,1.9000000000000001
+2023,11,17,13,0,11.3,1.5,0.016,0.61,49,987,524,0,0,-5.4,83,856,0,495,0.28600000000000003,30.7,61.24,0.9,0.11,793,0.5,248,2.1
+2023,11,17,13,30,11.3,1.5,0.016,0.61,49,970,486,0,0,-5.4,79,841,0,458,0.28600000000000003,30.7,63.22,0.9,0.11,793,0.5,246,2.1
+2023,11,17,14,0,11.3,1.21,0.02,0.61,50,943,435,0,0,-5.4,50,943,0,435,0.28700000000000003,30.64,65.88,0.91,0.11,793,0.5,245,2.1
+2023,11,17,14,30,10.9,1.21,0.02,0.61,47,910,371,0,0,-5.4,47,910,0,371,0.28700000000000003,31.46,69.13,0.91,0.11,793,0.5,244,2.1
+2023,11,17,15,0,10.5,1.23,0.02,0.61,43,861,296,0,0,-5.2,43,861,0,296,0.28700000000000003,32.86,72.89,0.91,0.11,793,0.5,242,2
+2023,11,17,15,30,9.200000000000001,1.23,0.02,0.61,38,785,213,0,0,-5.2,38,785,0,213,0.28600000000000003,35.85,77.09,0.91,0.11,793,0.6000000000000001,245,1.4000000000000001
+2023,11,17,16,0,7.800000000000001,1.26,0.019,0.61,30,663,127,0,0,-2.4000000000000004,30,663,0,127,0.28600000000000003,48.370000000000005,81.62,0.91,0.11,793,0.6000000000000001,247,0.8
+2023,11,17,16,30,6.800000000000001,1.26,0.019,0.61,21,445,49,0,0,-2.4000000000000004,21,445,0,49,0.28500000000000003,51.79,86.41,0.91,0.11,793,0.6000000000000001,253,0.8
+2023,11,17,17,0,5.800000000000001,1.28,0.019,0.61,3,41,2,0,0,-4.1000000000000005,3,41,0,2,0.28500000000000003,49,91.68,0.91,0.11,793,0.6000000000000001,259,0.7000000000000001
+2023,11,17,17,30,5.5,1.28,0.019,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28400000000000003,50.02,96.98,0.91,0.11,793,0.6000000000000001,259,0.4
+2023,11,17,18,0,5.300000000000001,1.31,0.018000000000000002,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.28300000000000003,49.65,102.44,0.91,0.11,793,0.6000000000000001,259,0.2
+2023,11,17,18,30,4.800000000000001,1.31,0.018000000000000002,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.28200000000000003,51.4,108.01,0.91,0.11,793,0.6000000000000001,180,0.4
+2023,11,17,19,0,4.3,1.32,0.017,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.281,52.42,113.65,0.91,0.11,793,0.6000000000000001,101,0.5
+2023,11,17,19,30,3.6,1.32,0.017,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.28,54.99,119.34,0.91,0.11,792,0.6000000000000001,105,0.7000000000000001
+2023,11,17,20,0,2.9000000000000004,1.33,0.017,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28,56.94,125.04,0.91,0.11,792,0.6000000000000001,110,0.9
+2023,11,17,20,30,2.4000000000000004,1.33,0.017,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28,59,130.7,0.91,0.11,792,0.6000000000000001,116,1
+2023,11,17,21,0,1.9000000000000001,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,60.57,136.26,0.91,0.11,792,0.6000000000000001,122,1.1
+2023,11,17,21,30,1.7000000000000002,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,61.44,141.65,0.91,0.11,792,0.6000000000000001,130,1.1
+2023,11,17,22,0,1.5,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,62.36,146.74,0.91,0.11,792,0.6000000000000001,137,1.1
+2023,11,17,22,30,1.3,1.33,0.016,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.28,63.26,151.34,0.91,0.11,792,0.7000000000000001,148,1.1
+2023,11,17,23,0,1.1,1.33,0.015,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28,65.28,155.14000000000001,0.91,0.11,792,0.7000000000000001,158,1.1
+2023,11,17,23,30,0.9,1.33,0.015,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28,66.23,157.73,0.91,0.11,792,0.7000000000000001,167,1.1
+2023,11,18,0,0,0.6000000000000001,1.34,0.015,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.28,69.82000000000001,158.64000000000001,0.91,0.11,791,0.7000000000000001,176,1.1
+2023,11,18,0,30,0.30000000000000004,1.34,0.015,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.28,71.35000000000001,157.65,0.91,0.11,791,0.7000000000000001,180,1.2000000000000002
+2023,11,18,1,0,0,1.36,0.014,0.61,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28,75.8,155,0.91,0.11,791,0.7000000000000001,184,1.2000000000000002
+2023,11,18,1,30,-0.2,1.36,0.014,0.61,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28,76.91,151.15,0.91,0.11,791,0.7000000000000001,185,1.2000000000000002
+2023,11,18,2,0,-0.5,1.3800000000000001,0.014,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.28,81.57000000000001,146.53,0.91,0.11,791,0.7000000000000001,186,1.3
+2023,11,18,2,30,-0.6000000000000001,1.3800000000000001,0.014,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.279,82.17,141.42000000000002,0.91,0.11,791,0.7000000000000001,185,1.3
+2023,11,18,3,0,-0.7000000000000001,1.41,0.014,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.279,85.26,136.03,0.91,0.11,791,0.7000000000000001,184,1.3
+2023,11,18,3,30,-0.8,1.41,0.014,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.279,85.77,130.47,0.91,0.11,790,0.7000000000000001,183,1.3
+2023,11,18,4,0,-0.9,1.43,0.013000000000000001,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,87.93,124.81,0.91,0.11,790,0.7000000000000001,182,1.3
+2023,11,18,4,30,-1,1.43,0.013000000000000001,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,88.58,119.12,0.91,0.11,790,0.7000000000000001,181,1.4000000000000001
+2023,11,18,5,0,-1.1,1.44,0.013000000000000001,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,89.61,113.43,0.91,0.11,790,0.7000000000000001,181,1.4000000000000001
+2023,11,18,5,30,-1.2000000000000002,1.44,0.013000000000000001,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.279,90.27,107.8,0.91,0.11,790,0.7000000000000001,182,1.4000000000000001
+2023,11,18,6,0,-1.3,1.43,0.013000000000000001,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.279,90.27,102.24000000000001,0.91,0.11,790,0.7000000000000001,182,1.4000000000000001
+2023,11,18,6,30,-1.1,1.43,0.013000000000000001,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.279,88.96000000000001,96.8,0.91,0.11,790,0.7000000000000001,185,1.4000000000000001
+2023,11,18,7,0,-1,1.41,0.014,0.61,4,45,3,0,0,-2.8000000000000003,4,45,0,3,0.278,87.55,91.52,0.91,0.11,790,0.7000000000000001,188,1.4000000000000001
+2023,11,18,7,30,0.9,1.41,0.014,0.61,21,466,51,0,0,-2.8000000000000003,21,466,0,51,0.278,76.28,86.27,0.91,0.11,790,0.7000000000000001,190,1.5
+2023,11,18,8,0,2.7,1.3900000000000001,0.015,0.61,29,670,128,0,0,-2.5,31,648,4,127,0.278,68.63,81.51,0.91,0.11,790,0.7000000000000001,191,1.7000000000000002
+2023,11,18,8,30,4.2,1.3900000000000001,0.015,0.61,36,781,212,0,0,-2.5,36,781,0,212,0.278,61.75,77,0.91,0.11,790,0.8,196,2
+2023,11,18,9,0,5.7,1.37,0.017,0.61,41,848,291,0,0,-2.1,64,720,0,276,0.278,57.120000000000005,72.85000000000001,0.92,0.11,790,0.8,201,2.3000000000000003
+2023,11,18,9,30,7.6000000000000005,1.37,0.017,0.61,45,895,364,0,0,-2.1,85,678,0,327,0.278,50.07,69.12,0.92,0.11,789,0.8,206,3.2
+2023,11,18,10,0,9.4,1.37,0.018000000000000002,0.61,47,925,425,0,7,-1.3,178,330,0,313,0.279,47.230000000000004,65.91,0.92,0.11,789,0.8,211,4
+2023,11,18,10,30,10.100000000000001,1.37,0.018000000000000002,0.61,49,945,474,0,8,-1.3,179,438,0,376,0.28,45.07,63.300000000000004,0.92,0.11,789,0.9,214,4.3
+2023,11,18,11,0,10.8,1.41,0.019,0.61,51,958,510,0,7,-1.1,227,253,0,348,0.281,43.45,61.38,0.92,0.11,788,0.9,217,4.7
+2023,11,18,11,30,10.8,1.41,0.019,0.61,52,965,532,0,7,-1.1,240,123,0,301,0.28200000000000003,43.45,60.2,0.93,0.11,788,0.9,220,4.6000000000000005
+2023,11,18,12,0,10.8,1.41,0.02,0.61,53,966,539,0,7,-1.2000000000000002,69,1,0,70,0.28400000000000003,43.25,59.81,0.93,0.11,787,0.9,223,4.5
+2023,11,18,12,30,10.700000000000001,1.41,0.02,0.61,53,962,531,0,7,-1.2000000000000002,182,71,0,217,0.28500000000000003,43.54,60.24,0.93,0.11,787,0.9,226,4.4
+2023,11,18,13,0,10.5,1.4000000000000001,0.023,0.61,54,949,507,0,7,-1.4000000000000001,184,100,0,232,0.28700000000000003,43.65,61.46,0.9400000000000001,0.11,787,0.9,229,4.3
+2023,11,18,13,30,10.200000000000001,1.4000000000000001,0.023,0.61,53,929,469,0,7,-1.4000000000000001,92,11,0,97,0.289,44.47,63.43,0.9400000000000001,0.11,786,1,229,4.2
+2023,11,18,14,0,9.9,1.33,0.029,0.61,53,899,418,0,7,-1.5,136,48,0,155,0.29,45.08,66.07000000000001,0.9500000000000001,0.11,786,1,230,4.1000000000000005
+2023,11,18,14,30,9.3,1.33,0.029,0.61,52,858,355,0,7,-1.5,178,135,0,226,0.292,46.92,69.31,0.9500000000000001,0.11,786,1,229,3.4000000000000004
+2023,11,18,15,0,8.700000000000001,1.28,0.035,0.61,48,798,281,0,7,-0.9,108,54,0,124,0.293,50.85,73.06,0.96,0.11,787,1,228,2.8000000000000003
+2023,11,18,15,30,7.6000000000000005,1.28,0.035,0.61,43,716,201,0,7,-0.9,85,55,0,97,0.294,54.79,77.24,0.96,0.11,787,1,227,2
+2023,11,18,16,0,6.4,1.25,0.037,0.61,35,583,118,3,7,0.30000000000000004,59,45,43,65,0.295,64.84,81.77,0.96,0.11,787,1,226,1.2000000000000002
+2023,11,18,16,30,5.5,1.25,0.037,0.61,23,349,44,7,7,0.30000000000000004,19,1,100,19,0.296,69,86.54,0.96,0.11,787,1,227,1.2000000000000002
+2023,11,18,17,0,4.6000000000000005,1.23,0.042,0.61,3,25,2,2,6,-0.4,1,0,29,1,0.296,70.16,91.81,0.96,0.11,787,1,228,1.1
+2023,11,18,17,30,4.2,1.23,0.042,0.61,0,0,0,0,6,-0.4,0,0,0,0,0.296,72.15,97.10000000000001,0.97,0.11,787,1,230,1.2000000000000002
+2023,11,18,18,0,3.8000000000000003,1.22,0.045,0.61,0,0,0,0,6,-0.6000000000000001,0,0,0,0,0.296,72.76,102.55,0.97,0.11,787,1,232,1.2000000000000002
+2023,11,18,18,30,3.4000000000000004,1.22,0.045,0.61,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.295,74.84,108.11,0.97,0.11,787,1,234,1.3
+2023,11,18,19,0,3,1.24,0.043000000000000003,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.295,75.77,113.76,0.97,0.11,787,1,235,1.3
+2023,11,18,19,30,2.7,1.24,0.043000000000000003,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.294,77.39,119.45,0.97,0.11,787,1,235,1.3
+2023,11,18,20,0,2.4000000000000004,1.25,0.039,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.294,78.68,125.14,0.96,0.11,787,1,234,1.4000000000000001
+2023,11,18,20,30,2.2,1.25,0.039,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.295,79.81,130.81,0.96,0.11,787,1,232,1.4000000000000001
+2023,11,18,21,0,2,1.26,0.034,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.295,80.96000000000001,136.37,0.96,0.11,787,1,229,1.4000000000000001
+2023,11,18,21,30,1.8,1.26,0.034,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.297,82.13,141.77,0.96,0.11,787,0.9,227,1.5
+2023,11,18,22,0,1.5,1.27,0.029,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,83.92,146.88,0.9500000000000001,0.11,787,0.9,225,1.6
+2023,11,18,22,30,1.3,1.27,0.029,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,85.13,151.5,0.9500000000000001,0.11,787,0.9,225,1.6
+2023,11,18,23,0,1,1.26,0.026000000000000002,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.299,86.86,155.33,0.9500000000000001,0.11,787,0.9,224,1.6
+2023,11,18,23,30,0.7000000000000001,1.26,0.026000000000000002,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.298,88.75,157.95000000000002,0.9500000000000001,0.11,787,0.9,224,1.7000000000000002
+2023,11,19,0,0,0.4,1.25,0.026000000000000002,0.61,0,0,0,0,4,-1,0,0,0,0,0.298,90.49,158.87,0.9500000000000001,0.11,786,0.9,225,1.7000000000000002
+2023,11,19,0,30,0.2,1.25,0.026000000000000002,0.61,0,0,0,0,4,-1,0,0,0,0,0.297,91.8,157.89000000000001,0.9500000000000001,0.11,786,0.9,225,1.6
+2023,11,19,1,0,-0.1,1.21,0.028,0.61,0,0,0,0,4,-1,0,0,0,0,0.296,93.89,155.23,0.96,0.11,786,0.9,225,1.6
+2023,11,19,1,30,-0.30000000000000004,1.21,0.028,0.61,0,0,0,0,4,-1,0,0,0,0,0.296,95.26,151.37,0.96,0.11,786,1,225,1.5
+2023,11,19,2,0,-0.5,1.19,0.031,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.296,96.89,146.73,0.96,0.11,786,1,225,1.4000000000000001
+2023,11,19,2,30,-0.5,1.19,0.031,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.296,96.89,141.62,0.96,0.11,786,1,224,1.3
+2023,11,19,3,0,-0.6000000000000001,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.296,97.98,136.22,0.96,0.11,786,1,223,1.1
+2023,11,19,3,30,-0.5,1.17,0.034,0.61,0,0,0,0,8,-0.9,0,0,0,0,0.295,97.15,130.65,0.96,0.11,785,1,215,1
+2023,11,19,4,0,-0.4,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.295,96.73,124.99000000000001,0.96,0.11,785,1,207,0.9
+2023,11,19,4,30,-0.4,1.17,0.034,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.294,96.73,119.3,0.96,0.11,785,1,184,0.9
+2023,11,19,5,0,-0.4,1.18,0.032,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.293,96.87,113.61,0.96,0.11,785,1,161,0.9
+2023,11,19,5,30,-0.9,1.18,0.032,0.61,0,0,0,0,4,-0.9,0,0,0,0,0.293,100,107.98,0.96,0.11,784,1,147,1.1
+2023,11,19,6,0,-1.3,1.17,0.03,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.293,100,102.43,0.9500000000000001,0.11,784,1,133,1.2000000000000002
+2023,11,19,6,30,-1.3,1.17,0.03,0.61,0,0,0,0,8,-1.3,0,0,0,0,0.293,100,96.99000000000001,0.96,0.11,784,1,133,1.2000000000000002
+2023,11,19,7,0,-1.3,1.1400000000000001,0.032,0.61,3,30,2,2,4,-1.3,1,0,21,1,0.292,100,91.72,0.96,0.11,784,1,132,1.2000000000000002
+2023,11,19,7,30,-0.5,1.1400000000000001,0.032,0.61,22,368,45,7,4,-0.7000000000000001,23,0,100,23,0.292,98.58,86.47,0.96,0.11,784,1,134,1.1
+2023,11,19,8,0,0.2,1.12,0.036000000000000004,0.61,35,588,120,2,4,-0.1,58,245,21,93,0.292,97.91,81.72,0.96,0.11,784,1,136,1
+2023,11,19,8,30,0.7000000000000001,1.12,0.036000000000000004,0.61,44,715,202,0,4,-0.1,89,302,0,156,0.292,94.44,77.22,0.96,0.11,784,1,130,1.1
+2023,11,19,9,0,1.2000000000000002,1.11,0.038,0.61,50,793,281,0,3,0.30000000000000004,119,375,0,228,0.291,93.83,73.07000000000001,0.96,0.11,784,1,123,1.2000000000000002
+2023,11,19,9,30,1.4000000000000001,1.11,0.038,0.61,55,845,353,0,3,0.30000000000000004,169,312,0,279,0.292,92.5,69.35000000000001,0.96,0.11,784,1,117,1.3
+2023,11,19,10,0,1.6,1.12,0.039,0.61,58,881,414,0,0,0.5,163,458,0,348,0.292,92.43,66.15,0.97,0.11,784,1,111,1.3
+2023,11,19,10,30,1.9000000000000001,1.12,0.039,0.61,60,907,464,0,8,0.5,235,231,0,338,0.292,90.47,63.54,0.97,0.11,784,1,105,1.3
+2023,11,19,11,0,2.1,1.12,0.038,0.61,62,924,501,0,8,0.6000000000000001,206,377,0,385,0.292,89.7,61.61,0.97,0.11,784,1,99,1.2000000000000002
+2023,11,19,11,30,2.4000000000000004,1.12,0.038,0.61,62,934,523,0,8,0.6000000000000001,194,272,0,328,0.291,87.69,60.44,0.97,0.11,783,1,90,1.2000000000000002
+2023,11,19,12,0,2.7,1.1400000000000001,0.036000000000000004,0.61,62,940,531,0,8,0.5,179,159,0,258,0.291,85.5,60.050000000000004,0.97,0.11,783,1,81,1.1
+2023,11,19,12,30,3.2,1.1400000000000001,0.036000000000000004,0.61,60,942,524,0,8,0.5,145,54,0,172,0.291,82.53,60.47,0.96,0.11,783,1,71,1.4000000000000001
+2023,11,19,13,0,3.7,1.17,0.029,0.61,57,940,503,0,7,0.2,169,192,0,260,0.291,77.81,61.68,0.96,0.11,783,0.9,62,1.6
+2023,11,19,13,30,4.1000000000000005,1.17,0.029,0.61,55,928,467,0,8,0.2,180,364,0,342,0.292,75.66,63.63,0.9500000000000001,0.11,783,0.9,55,2
+2023,11,19,14,0,4.5,1.2,0.024,0.61,51,909,417,0,8,-0.30000000000000004,143,274,0,253,0.292,70.82000000000001,66.26,0.9500000000000001,0.11,782,0.9,48,2.3000000000000003
+2023,11,19,14,30,4.6000000000000005,1.2,0.024,0.61,47,878,355,0,7,-0.30000000000000004,136,156,0,191,0.293,70.33,69.49,0.9500000000000001,0.11,782,0.9,40,2.6
+2023,11,19,15,0,4.7,1.24,0.021,0.61,43,831,283,0,7,-1,133,66,0,152,0.293,66.69,73.22,0.9400000000000001,0.11,783,0.9,33,2.8000000000000003
+2023,11,19,15,30,3.8000000000000003,1.24,0.021,0.61,39,753,203,0,7,-1,104,226,0,153,0.294,71.02,77.39,0.9400000000000001,0.11,783,0.9,25,2.2
+2023,11,19,16,0,2.8000000000000003,1.27,0.022,0.61,32,626,120,4,7,-1.2000000000000002,66,160,57,89,0.294,74.79,81.91,0.9500000000000001,0.11,783,0.9,18,1.6
+2023,11,19,16,30,1.7000000000000002,1.27,0.022,0.61,21,365,42,7,8,-1.2000000000000002,25,6,100,25,0.294,80.88,86.66,0.9500000000000001,0.11,783,0.9,11,1.5
+2023,11,19,17,0,0.6000000000000001,1.28,0.026000000000000002,0.61,0,0,0,2,7,-2,0,0,29,0,0.295,82.45,91.93,0.9500000000000001,0.11,784,0.9,5,1.4000000000000001
+2023,11,19,17,30,0.5,1.28,0.026000000000000002,0.61,0,0,0,0,7,-2,0,0,0,0,0.295,83.04,97.21000000000001,0.9500000000000001,0.11,784,0.9,180,1.5
+2023,11,19,18,0,0.4,1.27,0.029,0.61,0,0,0,0,7,-2,0,0,0,0,0.295,83.72,102.65,0.96,0.11,784,0.9,355,1.7000000000000002
+2023,11,19,18,30,0.30000000000000004,1.27,0.029,0.61,0,0,0,0,8,-2,0,0,0,0,0.295,84.43,108.21000000000001,0.96,0.11,785,0.9,351,1.9000000000000001
+2023,11,19,19,0,0.30000000000000004,1.26,0.032,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.295,86.91,113.85000000000001,0.96,0.11,785,0.9,347,2.1
+2023,11,19,19,30,0.2,1.26,0.032,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.295,87.54,119.54,0.96,0.11,785,0.9,344,2.3000000000000003
+2023,11,19,20,0,0.1,1.25,0.033,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.296,90.64,125.24000000000001,0.9500000000000001,0.11,786,0.9,341,2.5
+2023,11,19,20,30,-0.1,1.25,0.033,0.61,0,0,0,0,8,-1.2000000000000002,0,0,0,0,0.296,91.97,130.9,0.9500000000000001,0.11,786,0.9,340,2.6
+2023,11,19,21,0,-0.30000000000000004,1.27,0.033,0.61,0,0,0,0,8,-1.2000000000000002,0,0,0,0,0.296,93.45,136.48,0.9500000000000001,0.11,786,0.9,338,2.8000000000000003
+2023,11,19,21,30,-0.6000000000000001,1.27,0.033,0.61,0,0,0,0,8,-1.2000000000000002,0,0,0,0,0.295,95.63,141.89000000000001,0.9400000000000001,0.11,787,0.9,338,3
+2023,11,19,22,0,-0.9,1.31,0.029,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.295,94.23,147,0.9400000000000001,0.11,787,0.9,338,3.2
+2023,11,19,22,30,-1.2000000000000002,1.31,0.029,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.295,96.32000000000001,151.65,0.93,0.11,787,0.9,338,3.4000000000000004
+2023,11,19,23,0,-1.6,1.34,0.026000000000000002,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.294,92.17,155.51,0.93,0.11,787,0.9,337,3.6
+2023,11,19,23,30,-2.2,1.34,0.026000000000000002,0.61,0,0,0,0,5,-2.7,0,0,0,0,0.294,96.46000000000001,158.16,0.92,0.11,788,0.9,338,3.4000000000000004
+2023,11,20,0,0,-2.7,1.35,0.024,0.61,0,0,0,0,5,-3.4000000000000004,0,0,0,0,0.293,94.60000000000001,159.1,0.92,0.11,788,0.8,339,3.2
+2023,11,20,0,30,-3.1,1.35,0.024,0.61,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.293,97.45,158.13,0.92,0.11,788,0.8,340,3.1
+2023,11,20,1,0,-3.5,1.37,0.022,0.61,0,0,0,0,0,-4,0,0,0,0,0.292,96.56,155.46,0.92,0.11,788,0.8,342,3
+2023,11,20,1,30,-3.6,1.37,0.022,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,97.41,151.58,0.92,0.11,789,0.8,345,3.1
+2023,11,20,2,0,-3.8000000000000003,1.4000000000000001,0.022,0.61,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.292,97.45,146.93,0.92,0.11,789,0.8,348,3.1
+2023,11,20,2,30,-3.7,1.4000000000000001,0.022,0.61,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.292,96.84,141.81,0.92,0.11,790,0.8,349,3.3000000000000003
+2023,11,20,3,0,-3.6,1.42,0.024,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,97.19,136.4,0.93,0.11,790,0.8,351,3.4000000000000004
+2023,11,20,3,30,-3.4000000000000004,1.42,0.024,0.61,0,0,0,0,4,-4,0,0,0,0,0.292,95.75,130.83,0.93,0.11,790,0.8,352,3.6
+2023,11,20,4,0,-3.1,1.41,0.026000000000000002,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.293,96.3,125.17,0.93,0.11,791,0.8,353,3.8000000000000003
+2023,11,20,4,30,-2.5,1.41,0.026000000000000002,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.293,92.11,119.48,0.93,0.11,791,0.9,355,4.4
+2023,11,20,5,0,-1.9000000000000001,1.36,0.028,0.61,0,0,0,0,4,-3,0,0,0,0,0.293,92.09,113.8,0.93,0.11,792,0.9,357,5.1000000000000005
+2023,11,20,5,30,-1.6,1.36,0.028,0.61,0,0,0,0,4,-3,0,0,0,0,0.294,90.08,108.16,0.93,0.11,792,0.9,179,5.300000000000001
+2023,11,20,6,0,-1.3,1.33,0.03,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.295,91.45,102.61,0.9400000000000001,0.11,793,0.9,1,5.4
+2023,11,20,6,30,-1.1,1.33,0.03,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.296,90.12,97.19,0.93,0.11,793,0.9,5,5.300000000000001
+2023,11,20,7,0,-0.8,1.33,0.027,0.61,0,0,0,2,4,-2.2,0,0,29,0,0.297,90.38,91.91,0.93,0.11,794,0.9,8,5.2
+2023,11,20,7,30,-0.30000000000000004,1.33,0.027,0.61,21,366,42,7,4,-2.2,7,0,100,7,0.299,87.15,86.66,0.93,0.11,794,0.9,11,5
+2023,11,20,8,0,0.2,1.4000000000000001,0.02,0.61,31,635,120,3,4,-2,20,0,43,20,0.3,85.32000000000001,81.92,0.92,0.11,795,0.8,15,4.9
+2023,11,20,8,30,1.1,1.4000000000000001,0.02,0.61,37,760,202,0,4,-2,60,2,0,60,0.301,79.96000000000001,77.43,0.91,0.11,795,0.8,18,5.300000000000001
+2023,11,20,9,0,2.1,1.43,0.017,0.61,41,842,283,0,4,-2.1,104,29,0,112,0.302,73.92,73.29,0.91,0.11,795,0.8,21,5.7
+2023,11,20,9,30,3.1,1.43,0.017,0.61,43,893,355,0,4,-2,144,12,0,148,0.301,68.95,69.57000000000001,0.9,0.11,796,0.8,24,5.800000000000001
+2023,11,20,10,0,4,1.42,0.016,0.61,46,927,417,0,4,-2.7,129,4,0,131,0.3,61.800000000000004,66.38,0.9,0.11,796,0.8,27,5.9
+2023,11,20,10,30,4.5,1.42,0.016,0.61,46,952,467,0,4,-2.7,175,19,0,183,0.299,59.75,63.77,0.9,0.11,797,0.8,25,5.800000000000001
+2023,11,20,11,0,5,1.44,0.013000000000000001,0.61,45,970,503,0,4,-3.3000000000000003,174,6,0,177,0.298,54.93,61.85,0.89,0.11,797,0.7000000000000001,22,5.6000000000000005
+2023,11,20,11,30,5.300000000000001,1.44,0.013000000000000001,0.61,46,979,526,0,4,-3.3000000000000003,166,3,0,167,0.297,53.800000000000004,60.67,0.89,0.11,797,0.7000000000000001,19,5.6000000000000005
+2023,11,20,12,0,5.6000000000000005,1.43,0.013000000000000001,0.61,47,983,534,0,4,-3.8000000000000003,95,0,0,95,0.295,50.64,60.27,0.9,0.11,797,0.7000000000000001,17,5.5
+2023,11,20,12,30,5.7,1.43,0.013000000000000001,0.61,46,981,526,0,4,-3.8000000000000003,58,0,0,58,0.295,50.300000000000004,60.69,0.9,0.11,797,0.7000000000000001,15,5.5
+2023,11,20,13,0,5.9,1.42,0.012,0.61,45,973,503,0,4,-4.3,64,0,0,64,0.294,47.81,61.89,0.9,0.11,797,0.7000000000000001,13,5.5
+2023,11,20,13,30,5.9,1.42,0.012,0.61,45,957,467,0,4,-4.3,42,0,0,42,0.294,47.870000000000005,63.83,0.91,0.11,798,0.7000000000000001,13,5.300000000000001
+2023,11,20,14,0,5.9,1.33,0.015,0.61,46,934,419,0,4,-4.9,50,0,0,50,0.293,45.99,66.45,0.91,0.11,798,0.7000000000000001,13,5.2
+2023,11,20,14,30,5.6000000000000005,1.33,0.015,0.61,43,903,357,0,4,-4.9,49,0,0,49,0.293,46.95,69.66,0.91,0.11,798,0.6000000000000001,13,4.800000000000001
+2023,11,20,15,0,5.4,1.31,0.017,0.61,40,852,284,0,4,-5.300000000000001,47,0,0,47,0.293,45.99,73.38,0.92,0.11,798,0.6000000000000001,13,4.5
+2023,11,20,15,30,4.3,1.31,0.017,0.61,36,776,204,0,4,-5.300000000000001,37,0,0,37,0.293,49.65,77.53,0.92,0.11,798,0.6000000000000001,14,3.5
+2023,11,20,16,0,3.3000000000000003,1.29,0.017,0.61,30,653,120,4,4,-5.1000000000000005,29,0,57,29,0.293,54.02,82.04,0.92,0.11,798,0.6000000000000001,14,2.6
+2023,11,20,16,30,1.4000000000000001,1.29,0.017,0.61,20,393,42,7,4,-5.1000000000000005,11,0,100,11,0.293,61.910000000000004,86.78,0.92,0.11,799,0.6000000000000001,15,2
+2023,11,20,17,0,-0.6000000000000001,1.28,0.017,0.61,0,0,0,2,4,-5.5,0,0,29,0,0.293,69.41,92.04,0.92,0.11,799,0.6000000000000001,16,1.5
+2023,11,20,17,30,-1.1,1.28,0.017,0.61,0,0,0,0,4,-5.5,0,0,0,0,0.292,71.99,97.32000000000001,0.92,0.11,799,0.6000000000000001,18,1.4000000000000001
+2023,11,20,18,0,-1.7000000000000002,1.25,0.017,0.61,0,0,0,0,4,-6,0,0,0,0,0.292,72.26,102.75,0.92,0.11,800,0.6000000000000001,19,1.4000000000000001
+2023,11,20,18,30,-2.1,1.25,0.017,0.61,0,0,0,0,4,-6,0,0,0,0,0.292,74.42,108.3,0.92,0.11,800,0.6000000000000001,20,1.4000000000000001
+2023,11,20,19,0,-2.6,1.23,0.017,0.61,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.293,75.42,113.94,0.92,0.11,800,0.6000000000000001,22,1.4000000000000001
+2023,11,20,19,30,-3,1.23,0.017,0.61,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.293,77.69,119.63,0.92,0.11,800,0.6000000000000001,23,1.3
+2023,11,20,20,0,-3.4000000000000004,1.2,0.017,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.292,78.75,125.33,0.92,0.11,801,0.6000000000000001,24,1.3
+2023,11,20,20,30,-3.7,1.2,0.017,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.291,80.54,131,0.92,0.11,801,0.6000000000000001,25,1.2000000000000002
+2023,11,20,21,0,-4,1.18,0.017,0.61,0,0,0,0,4,-6.7,0,0,0,0,0.29,81.36,136.58,0.92,0.11,801,0.6000000000000001,26,1.2000000000000002
+2023,11,20,21,30,-4.3,1.18,0.017,0.61,0,0,0,0,0,-6.7,0,0,0,0,0.29,83.22,141.99,0.92,0.11,801,0.6000000000000001,28,1.1
+2023,11,20,22,0,-4.6000000000000005,1.16,0.017,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.289,84.56,147.13,0.92,0.11,801,0.5,30,1.1
+2023,11,20,22,30,-4.7,1.16,0.017,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28800000000000003,85.2,151.79,0.92,0.11,801,0.5,34,1.1
+2023,11,20,23,0,-4.9,1.1500000000000001,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28700000000000003,86.14,155.68,0.92,0.11,801,0.5,37,1
+2023,11,20,23,30,-5.1000000000000005,1.1500000000000001,0.017,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28600000000000003,87.56,158.36,0.92,0.11,802,0.5,40,1
+2023,11,21,0,0,-5.300000000000001,1.1500000000000001,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28600000000000003,88.65,159.33,0.92,0.11,802,0.5,43,1
+2023,11,21,0,30,-5.4,1.1500000000000001,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28600000000000003,89.32000000000001,158.36,0.92,0.11,802,0.5,43,1
+2023,11,21,1,0,-5.5,1.1400000000000001,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28600000000000003,89.85000000000001,155.68,0.92,0.11,802,0.5,43,1
+2023,11,21,1,30,-5.5,1.1400000000000001,0.017,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28600000000000003,89.85000000000001,151.79,0.92,0.11,802,0.5,38,1
+2023,11,21,2,0,-5.5,1.1400000000000001,0.016,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28600000000000003,89.76,147.13,0.92,0.11,802,0.5,34,0.9
+2023,11,21,2,30,-5.5,1.1400000000000001,0.016,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28500000000000003,89.76,142,0.92,0.11,802,0.5,28,0.9
+2023,11,21,3,0,-5.5,1.1300000000000001,0.015,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28500000000000003,89.84,136.59,0.92,0.11,802,0.5,22,0.9
+2023,11,21,3,30,-5.5,1.1300000000000001,0.015,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28400000000000003,89.84,131.01,0.92,0.11,802,0.5,20,0.9
+2023,11,21,4,0,-5.5,1.1300000000000001,0.014,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28300000000000003,90.03,125.35000000000001,0.91,0.11,802,0.5,18,0.9
+2023,11,21,4,30,-5.4,1.1300000000000001,0.014,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28300000000000003,89.35000000000001,119.65,0.91,0.11,802,0.5,19,0.8
+2023,11,21,5,0,-5.4,1.12,0.013000000000000001,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28200000000000003,89.52,113.97,0.91,0.11,802,0.5,20,0.8
+2023,11,21,5,30,-5.300000000000001,1.12,0.013000000000000001,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.28200000000000003,88.84,108.34,0.91,0.11,802,0.5,19,0.7000000000000001
+2023,11,21,6,0,-5.2,1.11,0.013000000000000001,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.281,88.27,102.8,0.91,0.11,802,0.5,18,0.6000000000000001
+2023,11,21,6,30,-5.1000000000000005,1.11,0.013000000000000001,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28,87.60000000000001,97.37,0.91,0.11,802,0.5,16,0.6000000000000001
+2023,11,21,7,0,-4.9,1.1,0.012,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28,86.46000000000001,92.11,0.91,0.11,802,0.5,15,0.5
+2023,11,21,7,30,-3.7,1.1,0.012,0.61,19,414,42,0,0,-6.800000000000001,19,414,0,42,0.279,79.10000000000001,86.85000000000001,0.91,0.11,803,0.5,14,0.6000000000000001
+2023,11,21,8,0,-2.5,1.1,0.012,0.61,27,675,120,0,0,-6.7,27,675,0,120,0.278,72.81,82.12,0.91,0.11,803,0.5,14,0.7000000000000001
+2023,11,21,8,30,-1.2000000000000002,1.1,0.012,0.61,33,796,203,0,0,-6.7,33,796,0,203,0.277,66.16,77.64,0.91,0.11,803,0.5,186,0.7000000000000001
+2023,11,21,9,0,0.2,1.1,0.011,0.61,37,870,284,0,0,-7.1000000000000005,37,870,0,284,0.276,57.800000000000004,73.5,0.91,0.11,803,0.5,358,0.6000000000000001
+2023,11,21,9,30,1,1.1,0.011,0.61,40,919,357,0,0,-7.1000000000000005,40,919,0,357,0.275,54.56,69.79,0.91,0.11,803,0.5,358,0.6000000000000001
+2023,11,21,10,0,1.9000000000000001,1.11,0.011,0.61,41,952,419,0,0,-7.300000000000001,41,952,0,419,0.274,50.39,66.6,0.91,0.11,803,0.5,358,0.6000000000000001
+2023,11,21,10,30,2.6,1.11,0.011,0.61,42,973,469,0,0,-7.300000000000001,42,973,0,469,0.274,47.95,64,0.9,0.11,803,0.5,180,0.5
+2023,11,21,11,0,3.2,1.16,0.01,0.61,43,986,505,0,0,-7.4,43,986,0,505,0.273,45.6,62.08,0.9,0.11,803,0.6000000000000001,2,0.5
+2023,11,21,11,30,3.7,1.16,0.01,0.61,43,992,526,0,0,-7.4,43,992,0,526,0.273,44.02,60.89,0.9,0.11,803,0.6000000000000001,175,0.30000000000000004
+2023,11,21,12,0,4.1000000000000005,1.16,0.011,0.61,45,992,533,0,0,-7.6000000000000005,45,992,0,533,0.273,42.36,60.5,0.9,0.11,803,0.6000000000000001,348,0.2
+2023,11,21,12,30,4.5,1.16,0.011,0.61,44,989,525,0,0,-7.6000000000000005,44,989,0,525,0.272,41.14,60.9,0.9,0.11,802,0.6000000000000001,277,0.2
+2023,11,21,13,0,4.800000000000001,1.1400000000000001,0.011,0.61,44,980,503,0,0,-7.800000000000001,44,980,0,503,0.271,39.58,62.09,0.9,0.11,802,0.6000000000000001,206,0.30000000000000004
+2023,11,21,13,30,4.9,1.1400000000000001,0.011,0.61,43,966,466,0,0,-7.800000000000001,43,966,0,466,0.269,39.300000000000004,64.02,0.9,0.11,802,0.6000000000000001,208,0.5
+2023,11,21,14,0,5,1.1300000000000001,0.011,0.61,41,944,416,0,0,-8,41,944,0,416,0.268,38.57,66.62,0.9,0.11,802,0.6000000000000001,209,0.7000000000000001
+2023,11,21,14,30,4.800000000000001,1.1300000000000001,0.011,0.61,39,911,353,0,0,-8,39,911,0,353,0.267,39.11,69.82000000000001,0.9,0.11,802,0.6000000000000001,211,0.7000000000000001
+2023,11,21,15,0,4.6000000000000005,1.1400000000000001,0.011,0.61,37,862,281,0,0,-8,37,862,0,281,0.266,39.550000000000004,73.53,0.9,0.11,801,0.6000000000000001,212,0.8
+2023,11,21,15,30,3.4000000000000004,1.1400000000000001,0.011,0.61,33,788,201,0,0,-8,33,788,0,201,0.265,43.02,77.67,0.9,0.11,801,0.6000000000000001,210,0.6000000000000001
+2023,11,21,16,0,2.3000000000000003,1.16,0.011,0.61,27,667,118,0,0,-6.5,27,667,0,118,0.265,52.25,82.16,0.9,0.11,801,0.6000000000000001,208,0.5
+2023,11,21,16,30,1.2000000000000002,1.16,0.011,0.61,19,405,41,0,0,-6.5,19,405,0,41,0.265,56.52,86.89,0.9,0.11,801,0.6000000000000001,206,0.5
+2023,11,21,17,0,0.1,1.18,0.011,0.61,0,0,0,0,0,-8,0,0,0,0,0.265,54.57,92.15,0.9,0.11,801,0.6000000000000001,204,0.5
+2023,11,21,17,30,-0.4,1.18,0.011,0.61,0,0,0,0,0,-8,0,0,0,0,0.265,56.58,97.42,0.9,0.11,801,0.6000000000000001,203,0.5
+2023,11,21,18,0,-0.8,1.2,0.012,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.266,57.09,102.84,0.91,0.11,801,0.6000000000000001,201,0.5
+2023,11,21,18,30,-1.2000000000000002,1.2,0.012,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.265,58.78,108.39,0.91,0.11,801,0.6000000000000001,203,0.5
+2023,11,21,19,0,-1.6,1.22,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.265,60.64,114.03,0.9,0.11,801,0.6000000000000001,205,0.4
+2023,11,21,19,30,-1.9000000000000001,1.22,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.265,61.99,119.71000000000001,0.9,0.11,801,0.6000000000000001,214,0.4
+2023,11,21,20,0,-2.2,1.23,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.265,63.6,125.41,0.9,0.11,801,0.6000000000000001,223,0.30000000000000004
+2023,11,21,20,30,-2.3000000000000003,1.23,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.266,64.07000000000001,131.08,0.9,0.11,801,0.6000000000000001,232,0.30000000000000004
+2023,11,21,21,0,-2.5,1.24,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.266,65.11,136.67000000000002,0.9,0.11,801,0.6000000000000001,240,0.30000000000000004
+2023,11,21,21,30,-2.6,1.24,0.013000000000000001,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.267,65.59,142.09,0.9,0.11,801,0.6000000000000001,238,0.30000000000000004
+2023,11,21,22,0,-2.7,1.24,0.014,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.267,65.93,147.24,0.9,0.11,800,0.6000000000000001,235,0.30000000000000004
+2023,11,21,22,30,-2.7,1.24,0.014,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.268,65.93,151.93,0.91,0.11,800,0.6000000000000001,223,0.30000000000000004
+2023,11,21,23,0,-2.7,1.24,0.015,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.268,65.75,155.84,0.91,0.11,800,0.6000000000000001,210,0.30000000000000004
+2023,11,21,23,30,-2.8000000000000003,1.24,0.015,0.61,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.269,66.24,158.55,0.91,0.11,800,0.6000000000000001,204,0.4
+2023,11,22,0,0,-2.8000000000000003,1.23,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.269,65.93,159.55,0.91,0.11,799,0.5,199,0.5
+2023,11,22,0,30,-2.9000000000000004,1.23,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.27,66.42,158.59,0.91,0.11,799,0.5,200,0.6000000000000001
+2023,11,22,1,0,-3,1.24,0.016,0.61,0,0,0,0,7,-8.3,0,0,0,0,0.27,66.66,155.9,0.91,0.11,799,0.5,201,0.6000000000000001
+2023,11,22,1,30,-3.2,1.24,0.016,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.271,67.66,152,0.91,0.11,799,0.5,203,0.7000000000000001
+2023,11,22,2,0,-3.3000000000000003,1.25,0.015,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.272,67.9,147.33,0.91,0.11,799,0.5,205,0.8
+2023,11,22,2,30,-3.4000000000000004,1.25,0.015,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.272,68.33,142.19,0.91,0.11,798,0.5,209,0.9
+2023,11,22,3,0,-3.6,1.25,0.014,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.273,69.26,136.77,0.91,0.11,798,0.5,212,1
+2023,11,22,3,30,-3.8000000000000003,1.25,0.014,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.273,70.3,131.19,0.91,0.11,798,0.5,219,1
+2023,11,22,4,0,-4,1.27,0.013000000000000001,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.273,71.44,125.53,0.9,0.11,798,0.5,226,1
+2023,11,22,4,30,-4.1000000000000005,1.27,0.013000000000000001,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.274,71.98,119.83,0.9,0.11,798,0.5,232,1
+2023,11,22,5,0,-4.2,1.28,0.013000000000000001,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.274,72.79,114.15,0.9,0.11,798,0.5,239,1
+2023,11,22,5,30,-4.2,1.28,0.013000000000000001,0.61,0,0,0,0,0,-8.4,0,0,0,0,0.275,72.79,108.52,0.9,0.11,798,0.5,242,1
+2023,11,22,6,0,-4.2,1.28,0.012,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.276,73.16,102.98,0.9,0.11,798,0.5,245,1
+2023,11,22,6,30,-4,1.28,0.012,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.277,72.07000000000001,97.56,0.9,0.11,798,0.5,245,0.9
+2023,11,22,7,0,-3.9000000000000004,1.28,0.012,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.277,72.2,92.3,0.9,0.11,798,0.5,245,0.8
+2023,11,22,7,30,-2.5,1.28,0.012,0.61,19,405,40,0,0,-8.200000000000001,19,405,0,40,0.277,65.05,87.04,0.9,0.11,798,0.5,241,1.1
+2023,11,22,8,0,-1.2000000000000002,1.28,0.012,0.61,27,667,116,0,0,-7.6000000000000005,27,667,0,116,0.276,61.75,82.33,0.9,0.11,798,0.5,238,1.3
+2023,11,22,8,30,0.1,1.28,0.012,0.61,33,791,199,0,0,-7.6000000000000005,33,791,0,199,0.275,56.1,77.85000000000001,0.9,0.11,797,0.5,231,1.5
+2023,11,22,9,0,1.4000000000000001,1.29,0.012,0.61,37,866,280,0,0,-7.800000000000001,37,866,0,280,0.275,50.300000000000004,73.71000000000001,0.9,0.11,797,0.5,224,1.7000000000000002
+2023,11,22,9,30,2.7,1.29,0.012,0.61,39,916,352,0,0,-7.800000000000001,39,916,0,352,0.274,45.85,70.01,0.9,0.11,797,0.5,223,2
+2023,11,22,10,0,4.1000000000000005,1.29,0.011,0.61,41,949,415,0,0,-8.4,41,949,0,415,0.273,39.78,66.82000000000001,0.9,0.11,797,0.5,221,2.3000000000000003
+2023,11,22,10,30,5.1000000000000005,1.29,0.011,0.61,43,974,466,0,0,-8.4,43,974,0,466,0.272,37.050000000000004,64.23,0.9,0.11,796,0.5,222,2.5
+2023,11,22,11,0,6,1.35,0.011,0.61,43,989,503,0,8,-8.8,155,608,0,438,0.271,33.7,62.300000000000004,0.9,0.11,796,0.5,223,2.8000000000000003
+2023,11,22,11,30,6.7,1.35,0.011,0.61,44,998,526,0,3,-8.8,166,604,0,458,0.27,32.08,61.120000000000005,0.9,0.11,795,0.5,225,3
+2023,11,22,12,0,7.300000000000001,1.36,0.011,0.61,45,1000,534,0,7,-9,156,589,0,444,0.269,30.46,60.71,0.9,0.11,795,0.5,227,3.2
+2023,11,22,12,30,7.6000000000000005,1.36,0.011,0.61,44,998,526,0,7,-9,147,614,0,444,0.268,29.810000000000002,61.11,0.9,0.11,794,0.5,229,3.3000000000000003
+2023,11,22,13,0,7.800000000000001,1.37,0.011,0.61,43,990,503,0,0,-9.1,79,868,0,483,0.268,29.18,62.29,0.9,0.11,794,0.5,231,3.4000000000000004
+2023,11,22,13,30,7.9,1.37,0.011,0.61,43,975,467,0,0,-9.1,50,949,0,463,0.268,28.94,64.2,0.9,0.11,793,0.5,232,3.4000000000000004
+2023,11,22,14,0,7.9,1.1500000000000001,0.012,0.61,42,951,417,0,0,-9.1,42,951,0,417,0.268,28.84,66.79,0.9,0.11,793,0.5,233,3.4000000000000004
+2023,11,22,14,30,7.4,1.1500000000000001,0.012,0.61,40,918,354,0,0,-9.1,40,918,0,354,0.269,29.84,69.98,0.9,0.11,793,0.5,232,3
+2023,11,22,15,0,6.9,1.1300000000000001,0.012,0.61,37,869,281,0,0,-8.200000000000001,37,869,0,281,0.269,33.25,73.67,0.9,0.11,793,0.5,231,2.6
+2023,11,22,15,30,4.7,1.1300000000000001,0.012,0.61,33,794,201,0,0,-8.200000000000001,33,794,0,201,0.27,38.660000000000004,77.8,0.9,0.11,792,0.5,228,2
+2023,11,22,16,0,2.5,1.11,0.012,0.61,28,673,118,0,0,-6.5,30,643,7,116,0.271,51.45,82.28,0.9,0.11,792,0.5,225,1.3
+2023,11,22,16,30,1.2000000000000002,1.11,0.012,0.61,19,407,40,0,0,-6.5,19,407,0,40,0.272,56.45,86.99,0.9,0.11,792,0.5,223,1.4000000000000001
+2023,11,22,17,0,-0.1,1.07,0.013000000000000001,0.61,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.273,52.39,92.25,0.9,0.11,792,0.5,222,1.5
+2023,11,22,17,30,-0.4,1.07,0.013000000000000001,0.61,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.274,53.54,97.51,0.9,0.11,792,0.5,222,1.4000000000000001
+2023,11,22,18,0,-0.6000000000000001,1.02,0.013000000000000001,0.61,0,0,0,0,0,-9,0,0,0,0,0.274,52.88,102.93,0.9,0.11,792,0.4,223,1.4000000000000001
+2023,11,22,18,30,-0.7000000000000001,1.02,0.013000000000000001,0.61,0,0,0,0,0,-9,0,0,0,0,0.275,53.27,108.47,0.9,0.11,792,0.4,225,1.3
+2023,11,22,19,0,-0.8,0.98,0.014,0.61,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.276,53.07,114.10000000000001,0.9,0.11,792,0.4,227,1.3
+2023,11,22,19,30,-0.8,0.98,0.014,0.61,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.276,53.07,119.79,0.9,0.11,792,0.4,229,1.1
+2023,11,22,20,0,-0.9,0.9500000000000001,0.016,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.276,53.83,125.49000000000001,0.91,0.11,791,0.4,232,1
+2023,11,22,20,30,-0.8,0.9500000000000001,0.016,0.61,0,0,0,0,0,-9.1,0,0,0,0,0.276,53.44,131.16,0.91,0.11,791,0.4,231,0.8
+2023,11,22,21,0,-0.7000000000000001,0.93,0.017,0.61,0,0,0,0,0,-9,0,0,0,0,0.277,53.620000000000005,136.75,0.91,0.11,791,0.5,231,0.7000000000000001
+2023,11,22,21,30,-0.8,0.93,0.017,0.61,0,0,0,0,0,-9,0,0,0,0,0.277,54.02,142.19,0.91,0.11,791,0.5,218,0.5
+2023,11,22,22,0,-0.9,0.9500000000000001,0.019,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.277,55.22,147.35,0.92,0.11,791,0.5,206,0.4
+2023,11,22,22,30,-0.9,0.9500000000000001,0.019,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.278,55.22,152.05,0.92,0.11,791,0.5,193,0.4
+2023,11,22,23,0,-0.9,0.97,0.021,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.278,56.44,156,0.92,0.11,790,0.5,179,0.4
+2023,11,22,23,30,-0.9,0.97,0.021,0.61,0,0,0,0,0,-8.5,0,0,0,0,0.277,56.44,158.74,0.92,0.11,790,0.5,177,0.4
+2023,11,23,0,0,-0.9,1,0.023,0.61,0,0,0,0,7,-8.1,0,0,0,0,0.277,58.22,159.76,0.93,0.11,790,0.5,174,0.4
+2023,11,23,0,30,-0.9,1,0.023,0.61,0,0,0,0,7,-8.1,0,0,0,0,0.276,58.15,158.81,0.93,0.11,789,0.6000000000000001,183,0.4
+2023,11,23,1,0,-1,1.01,0.024,0.61,0,0,0,0,7,-8,0,0,0,0,0.275,59.13,156.12,0.93,0.11,789,0.6000000000000001,191,0.4
+2023,11,23,1,30,-1.1,1.01,0.024,0.61,0,0,0,0,7,-8,0,0,0,0,0.274,59.57,152.21,0.93,0.11,789,0.6000000000000001,197,0.5
+2023,11,23,2,0,-1.2000000000000002,1.01,0.024,0.61,0,0,0,0,7,-7.9,0,0,0,0,0.274,60.54,147.53,0.93,0.11,789,0.6000000000000001,203,0.5
+2023,11,23,2,30,-1.3,1.01,0.024,0.61,0,0,0,0,7,-7.9,0,0,0,0,0.275,60.910000000000004,142.38,0.93,0.11,788,0.5,197,0.5
+2023,11,23,3,0,-1.5,1.01,0.024,0.61,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.275,62.940000000000005,136.95000000000002,0.93,0.11,788,0.5,191,0.5
+2023,11,23,3,30,-1.5,1.01,0.024,0.61,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.276,62.940000000000005,131.37,0.93,0.11,788,0.6000000000000001,177,0.5
+2023,11,23,4,0,-1.4000000000000001,1.03,0.025,0.61,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.278,63.93,125.7,0.93,0.11,788,0.6000000000000001,164,0.6000000000000001
+2023,11,23,4,30,-1.4000000000000001,1.03,0.025,0.61,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.279,63.93,120.01,0.9400000000000001,0.11,788,0.6000000000000001,158,0.6000000000000001
+2023,11,23,5,0,-1.4000000000000001,1.05,0.027,0.61,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.281,65.31,114.33,0.9400000000000001,0.11,787,0.6000000000000001,152,0.7000000000000001
+2023,11,23,5,30,-1.5,1.05,0.027,0.61,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.28200000000000003,65.79,108.7,0.9400000000000001,0.11,787,0.6000000000000001,148,0.7000000000000001
+2023,11,23,6,0,-1.5,1.07,0.028,0.61,0,0,0,0,6,-6.9,0,0,0,0,0.28400000000000003,66.68,103.16,0.9400000000000001,0.11,787,0.6000000000000001,145,0.7000000000000001
+2023,11,23,6,30,-1.6,1.07,0.028,0.61,0,0,0,0,7,-6.9,0,0,0,0,0.28500000000000003,67.17,97.75,0.9400000000000001,0.11,787,0.6000000000000001,141,0.6000000000000001
+2023,11,23,7,0,-1.6,1.08,0.029,0.61,0,0,0,1,7,-6.7,0,0,14,0,0.28700000000000003,67.96000000000001,92.49,0.9400000000000001,0.11,787,0.6000000000000001,137,0.6000000000000001
+2023,11,23,7,30,-1.1,1.08,0.029,0.61,20,327,36,7,7,-6.7,20,2,100,20,0.28800000000000003,65.51,87.23,0.9400000000000001,0.11,787,0.6000000000000001,121,0.5
+2023,11,23,8,0,-0.7000000000000001,1.09,0.029,0.61,32,599,110,3,7,-6,60,14,43,62,0.289,67.28,82.52,0.9400000000000001,0.11,787,0.6000000000000001,104,0.4
+2023,11,23,8,30,-0.2,1.09,0.029,0.61,41,736,193,0,7,-6,100,53,0,111,0.289,64.8,78.05,0.9400000000000001,0.11,786,0.6000000000000001,86,0.6000000000000001
+2023,11,23,9,0,0.4,1.1,0.028,0.61,45,819,272,0,7,-6.1000000000000005,138,163,0,183,0.289,61.63,73.92,0.9400000000000001,0.11,786,0.7000000000000001,68,0.8
+2023,11,23,9,30,0.9,1.1,0.028,0.61,50,873,345,0,7,-6.1000000000000005,172,234,0,251,0.28800000000000003,59.45,70.23,0.9400000000000001,0.11,786,0.7000000000000001,71,1
+2023,11,23,10,0,1.5,1.12,0.028,0.61,53,910,408,0,7,-6.6000000000000005,194,74,0,223,0.28700000000000003,54.79,67.04,0.9400000000000001,0.11,786,0.7000000000000001,74,1.1
+2023,11,23,10,30,2,1.12,0.028,0.61,55,934,458,0,6,-6.6000000000000005,201,50,0,223,0.28600000000000003,52.870000000000005,64.45,0.9400000000000001,0.11,786,0.7000000000000001,77,1.1
+2023,11,23,11,0,2.5,1.1300000000000001,0.027,0.61,56,949,494,0,6,-6.800000000000001,182,21,0,192,0.28500000000000003,50.24,62.52,0.9400000000000001,0.11,785,0.7000000000000001,80,1.2000000000000002
+2023,11,23,11,30,2.9000000000000004,1.1300000000000001,0.027,0.61,57,958,517,0,6,-6.800000000000001,198,29,0,212,0.28400000000000003,48.83,61.33,0.9400000000000001,0.11,785,0.7000000000000001,82,1.2000000000000002
+2023,11,23,12,0,3.2,1.1400000000000001,0.027,0.61,57,961,524,0,6,-6.9,200,25,0,212,0.28300000000000003,47.410000000000004,60.92,0.9400000000000001,0.11,784,0.7000000000000001,84,1.2000000000000002
+2023,11,23,12,30,3.3000000000000003,1.1400000000000001,0.027,0.61,57,958,517,0,6,-6.9,190,20,0,200,0.28400000000000003,47.08,61.31,0.9400000000000001,0.11,784,0.7000000000000001,80,1.3
+2023,11,23,13,0,3.4000000000000004,1.1500000000000001,0.027,0.61,57,949,495,0,6,-6.800000000000001,193,26,0,205,0.28400000000000003,47.230000000000004,62.480000000000004,0.9400000000000001,0.11,784,0.7000000000000001,76,1.3
+2023,11,23,13,30,3.3000000000000003,1.1500000000000001,0.027,0.61,55,933,458,0,6,-6.800000000000001,173,26,0,184,0.28500000000000003,47.51,64.38,0.9400000000000001,0.11,783,0.7000000000000001,71,1.2000000000000002
+2023,11,23,14,0,3.1,1.1500000000000001,0.028,0.61,53,908,408,0,6,-5.5,143,22,0,152,0.28600000000000003,53.21,66.96000000000001,0.9500000000000001,0.11,783,0.7000000000000001,65,1
+2023,11,23,14,30,2.5,1.1500000000000001,0.028,0.61,50,872,346,0,6,-5.5,113,12,0,117,0.28800000000000003,55.52,70.13,0.9500000000000001,0.11,783,0.7000000000000001,58,0.9
+2023,11,23,15,0,2,1.16,0.028,0.61,46,818,274,0,7,-4.800000000000001,142,52,0,156,0.289,60.83,73.81,0.9500000000000001,0.11,783,0.7000000000000001,50,0.8
+2023,11,23,15,30,1.3,1.16,0.028,0.61,40,735,194,0,7,-4.800000000000001,94,109,0,117,0.29,63.95,77.93,0.9500000000000001,0.11,783,0.7000000000000001,46,0.9
+2023,11,23,16,0,0.6000000000000001,1.16,0.029,0.61,33,599,112,4,6,-5.5,56,26,57,59,0.291,63.89,82.39,0.9500000000000001,0.11,783,0.7000000000000001,42,1
+2023,11,23,16,30,0.2,1.16,0.029,0.61,20,330,37,7,6,-5.5,18,1,100,18,0.292,65.77,87.09,0.9500000000000001,0.11,783,0.7000000000000001,39,1.1
+2023,11,23,17,0,-0.1,1.17,0.03,0.61,0,0,0,1,7,-5.800000000000001,0,0,14,0,0.293,65.5,92.34,0.9500000000000001,0.65,782,0.7000000000000001,36,1.2000000000000002
+2023,11,23,17,30,-0.2,1.17,0.03,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.293,65.97,97.59,0.9500000000000001,0.65,782,0.7000000000000001,36,1.2000000000000002
+2023,11,23,18,0,-0.30000000000000004,1.17,0.032,0.61,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.293,67.31,103.01,0.9500000000000001,0.65,782,0.8,35,1.2000000000000002
+2023,11,23,18,30,-0.4,1.17,0.032,0.61,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.293,67.8,108.55,0.9500000000000001,0.65,782,0.8,37,1.1
+2023,11,23,19,0,-0.5,1.17,0.033,0.61,0,0,0,0,6,-5.300000000000001,0,0,0,0,0.293,69.93,114.17,0.9500000000000001,0.65,782,0.8,39,1.1
+2023,11,23,19,30,-0.6000000000000001,1.17,0.033,0.61,0,0,0,0,6,-5.300000000000001,0,0,0,0,0.294,70.44,119.86,0.9500000000000001,0.65,782,0.8,45,1.1
+2023,11,23,20,0,-0.8,1.17,0.036000000000000004,0.61,0,0,0,0,7,-4.9,0,0,0,0,0.294,73.62,125.55,0.96,0.65,782,0.8,51,1
+2023,11,23,20,30,-0.9,1.17,0.036000000000000004,0.61,0,0,0,0,6,-4.9,0,0,0,0,0.295,74.16,131.23,0.96,0.65,782,0.8,58,1
+2023,11,23,21,0,-1.1,1.16,0.041,0.61,0,0,0,0,6,-4.4,0,0,0,0,0.296,78.02,136.83,0.96,0.65,782,0.8,66,1
+2023,11,23,21,30,-1.1,1.16,0.041,0.61,0,0,0,0,6,-4.4,0,0,0,0,0.297,78.02,142.27,0.96,0.65,782,0.8,76,1
+2023,11,23,22,0,-1.2000000000000002,1.1500000000000001,0.045,0.61,0,0,0,0,6,-4,0,0,0,0,0.298,81.02,147.45000000000002,0.96,0.65,782,0.8,85,1
+2023,11,23,22,30,-1.3,1.1500000000000001,0.045,0.61,0,0,0,0,6,-4,0,0,0,0,0.299,81.61,152.17000000000002,0.96,0.65,782,0.8,94,1.1
+2023,11,23,23,0,-1.3,1.1400000000000001,0.059000000000000004,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.299,83.45,156.15,0.97,0.65,782,0.8,103,1.2000000000000002
+2023,11,23,23,30,-1.4000000000000001,1.1400000000000001,0.059000000000000004,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.299,84.06,158.92000000000002,0.97,0.65,782,0.8,110,1.3
+2023,11,24,0,0,-1.5,1.1400000000000001,0.069,0.61,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,86.91,159.97,0.97,0.65,782,0.9,116,1.3
+2023,11,24,0,30,-1.5,1.1400000000000001,0.069,0.61,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.299,86.91,159.02,0.97,0.65,782,0.9,119,1.3
+2023,11,24,1,0,-1.6,1.1400000000000001,0.073,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.299,90.52,156.33,0.97,0.65,782,0.9,121,1.4000000000000001
+2023,11,24,1,30,-1.6,1.1400000000000001,0.073,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.299,90.52,152.41,0.97,0.65,782,0.9,120,1.3
+2023,11,24,2,0,-1.7000000000000002,1.1400000000000001,0.089,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.3,93.64,147.72,0.98,0.65,782,0.9,119,1.3
+2023,11,24,2,30,-1.8,1.1400000000000001,0.089,0.61,0,0,0,0,7,-2.6,0,0,0,0,0.301,94.34,142.56,0.98,0.65,782,0.9,118,1.2000000000000002
+2023,11,24,3,0,-1.8,1.1400000000000001,0.093,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.302,95.67,137.13,0.98,0.65,782,0.9,116,1.2000000000000002
+2023,11,24,3,30,-1.9000000000000001,1.1400000000000001,0.093,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.303,96.37,131.54,0.98,0.65,782,0.9,115,1.1
+2023,11,24,4,0,-2,1.12,0.089,0.61,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.304,97.60000000000001,125.87,0.97,0.65,782,0.8,114,1
+2023,11,24,4,30,-2,1.12,0.089,0.61,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.305,97.60000000000001,120.18,0.98,0.65,782,0.8,111,1
+2023,11,24,5,0,-2,1.12,0.10400000000000001,0.61,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.306,97.57000000000001,114.5,0.98,0.65,782,0.8,108,1
+2023,11,24,5,30,-2.1,1.12,0.10400000000000001,0.61,0,0,0,0,7,-2.3000000000000003,0,0,0,0,0.307,98.29,108.88,0.98,0.65,782,0.8,105,1
+2023,11,24,6,0,-2.1,1.11,0.116,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.308,97.76,103.34,0.98,0.65,782,0.8,101,1
+2023,11,24,6,30,-2.1,1.11,0.116,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.309,97.76,97.93,0.98,0.65,782,0.8,99,1.1
+2023,11,24,7,0,-2.1,1.11,0.116,0.61,0,0,0,1,7,-2.5,0,0,14,0,0.31,97,92.67,0.98,0.65,782,0.8,97,1.1
+2023,11,24,7,30,-1.7000000000000002,1.11,0.116,0.61,23,138,29,7,7,-2.5,12,0,100,12,0.31,94.18,87.41,0.98,0.65,782,0.8,103,1.5
+2023,11,24,8,0,-1.3,1.12,0.132,0.61,50,362,96,4,7,-2.4000000000000004,29,0,57,29,0.311,91.93,82.72,0.98,0.65,782,0.8,108,1.8
+2023,11,24,8,30,-0.8,1.12,0.132,0.61,68,524,175,0,7,-2.4000000000000004,29,0,0,29,0.311,88.74,78.25,0.98,0.65,783,0.8,125,2.2
+2023,11,24,9,0,-0.2,1.1300000000000001,0.126,0.61,82,633,255,0,7,-2.4000000000000004,50,1,0,50,0.31,84.81,74.13,0.97,0.65,783,0.8,143,2.6
+2023,11,24,9,30,0.4,1.1300000000000001,0.126,0.61,91,715,330,0,7,-2.4000000000000004,109,6,0,111,0.31,81.2,70.44,0.97,0.65,783,0.8,160,3.3000000000000003
+2023,11,24,10,0,1.1,1.11,0.105,0.61,93,780,395,0,7,-2.9000000000000004,76,1,0,76,0.31,74.69,67.25,0.97,0.65,783,0.8,177,4
+2023,11,24,10,30,1.7000000000000002,1.11,0.105,0.61,98,817,448,0,7,-2.9000000000000004,120,1,0,120,0.311,71.54,64.66,0.97,0.65,783,0.8,184,4.4
+2023,11,24,11,0,2.2,1.1,0.099,0.61,101,841,486,0,7,-3.5,121,1,0,121,0.311,66.2,62.730000000000004,0.96,0.65,783,0.8,192,4.800000000000001
+2023,11,24,11,30,2.6,1.1,0.099,0.61,101,858,510,0,7,-3.5,103,0,0,103,0.313,64.34,61.54,0.96,0.65,783,0.8,195,4.9
+2023,11,24,12,0,2.9000000000000004,1.08,0.091,0.61,100,868,519,0,7,-3.8000000000000003,98,0,0,98,0.314,61.42,61.120000000000005,0.96,0.65,783,0.7000000000000001,197,5
+2023,11,24,12,30,2.8000000000000003,1.08,0.091,0.61,99,865,512,0,7,-3.8000000000000003,85,0,0,85,0.317,61.78,61.5,0.96,0.65,782,0.7000000000000001,196,4.7
+2023,11,24,13,0,2.8000000000000003,1.06,0.09,0.61,97,853,489,0,7,-3.9000000000000004,196,22,0,206,0.319,61.19,62.660000000000004,0.96,0.65,782,0.8,195,4.4
+2023,11,24,13,30,2.5,1.06,0.09,0.61,97,819,449,0,7,-3.9000000000000004,151,8,0,154,0.322,62.5,64.55,0.96,0.65,782,0.8,189,3.8000000000000003
+2023,11,24,14,0,2.3000000000000003,1.05,0.113,0.61,97,769,396,0,7,-3.8000000000000003,132,22,0,141,0.324,64.31,67.11,0.97,0.65,782,0.8,183,3.2
+2023,11,24,14,30,1.8,1.05,0.113,0.61,91,713,332,0,7,-3.8000000000000003,178,32,0,189,0.325,66.64,70.27,0.97,0.65,782,0.8,164,2.4000000000000004
+2023,11,24,15,0,1.4000000000000001,1.04,0.126,0.61,83,632,258,0,7,-3.1,150,33,0,159,0.326,71.97,73.94,0.97,0.65,782,0.8,146,1.7000000000000002
+2023,11,24,15,30,0.4,1.04,0.126,0.61,70,528,179,0,7,-3.1,102,15,0,105,0.325,77.43,78.04,0.97,0.65,783,0.8,109,1.5
+2023,11,24,16,0,-0.6000000000000001,1.04,0.128,0.61,51,371,99,4,8,-3.1,62,25,54,65,0.325,83.38,82.5,0.97,0.65,783,0.8,72,1.4000000000000001
+2023,11,24,16,30,-1.5,1.04,0.128,0.61,24,135,31,6,7,-3.1,16,3,93,16,0.324,89.05,87.19,0.98,0.65,783,0.8,57,2.3000000000000003
+2023,11,24,17,0,-2.3000000000000003,1.06,0.155,0.61,0,0,0,1,4,-3.6,0,0,14,0,0.324,90.75,92.43,0.98,0.8,783,0.8,43,3.2
+2023,11,24,17,30,-2.9000000000000004,1.06,0.155,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.324,94.99,97.67,0.98,0.8,784,0.8,38,3.8000000000000003
+2023,11,24,18,0,-3.5,1.09,0.167,0.61,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.324,91.96000000000001,103.08,0.98,0.8,784,0.8,33,4.5
+2023,11,24,18,30,-4.1000000000000005,1.09,0.167,0.61,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.325,96.19,108.62,0.98,0.8,784,0.7000000000000001,30,5.1000000000000005
+2023,11,24,19,0,-4.7,1.12,0.151,0.61,0,0,0,0,4,-6.4,0,0,0,0,0.325,87.78,114.24000000000001,0.98,0.8,784,0.7000000000000001,27,5.800000000000001
+2023,11,24,19,30,-5.300000000000001,1.12,0.151,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.326,91.97,119.92,0.98,0.8,785,0.7000000000000001,26,6.1000000000000005
+2023,11,24,20,0,-6,1.1300000000000001,0.147,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.326,83.07000000000001,125.62,0.98,0.8,785,0.7000000000000001,24,6.300000000000001
+2023,11,24,20,30,-6.4,1.1300000000000001,0.147,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.325,85.65,131.29,0.98,0.8,785,0.7000000000000001,22,6.4
+2023,11,24,21,0,-6.7,1.12,0.148,0.61,0,0,0,0,6,-9.8,0,0,0,0,0.325,78.57000000000001,136.9,0.98,0.8,785,0.7000000000000001,21,6.4
+2023,11,24,21,30,-7,1.12,0.148,0.61,0,0,0,0,6,-9.8,0,0,0,0,0.323,80.4,142.35,0.98,0.8,785,0.7000000000000001,19,6.4
+2023,11,24,22,0,-7.2,1.11,0.145,0.61,0,0,0,0,6,-10.5,0,0,0,0,0.322,77.02,147.54,0.98,0.8,785,0.7000000000000001,17,6.300000000000001
+2023,11,24,22,30,-7.300000000000001,1.11,0.145,0.61,0,0,0,0,9,-10.5,0,0,0,0,0.321,77.61,152.29,0.98,0.8,785,0.7000000000000001,17,6.300000000000001
+2023,11,24,23,0,-7.4,1.11,0.146,0.61,0,0,0,0,9,-11,0,0,0,0,0.319,75.52,156.29,0.98,0.8,785,0.7000000000000001,16,6.300000000000001
+2023,11,24,23,30,-7.5,1.11,0.146,0.61,0,0,0,0,9,-11,0,0,0,0,0.317,76.11,159.09,0.98,0.8,785,0.7000000000000001,15,6.2
+2023,11,25,0,0,-7.5,1.11,0.14100000000000001,0.61,0,0,0,0,9,-11.3,0,0,0,0,0.316,74.29,160.17000000000002,0.98,0.8,785,0.7000000000000001,14,6.1000000000000005
+2023,11,25,0,30,-7.6000000000000005,1.11,0.14100000000000001,0.61,0,0,0,0,9,-11.3,0,0,0,0,0.314,74.86,159.23,0.98,0.8,785,0.6000000000000001,14,5.9
+2023,11,25,1,0,-7.6000000000000005,1.11,0.131,0.61,0,0,0,0,7,-11.5,0,0,0,0,0.312,73.44,156.54,0.98,0.8,785,0.6000000000000001,13,5.7
+2023,11,25,1,30,-7.7,1.11,0.131,0.61,0,0,0,0,6,-11.5,0,0,0,0,0.311,74.01,152.61,0.98,0.8,785,0.6000000000000001,12,5.5
+2023,11,25,2,0,-7.800000000000001,1.12,0.137,0.61,0,0,0,0,9,-11.9,0,0,0,0,0.31,72.53,147.91,0.98,0.8,786,0.6000000000000001,11,5.4
+2023,11,25,2,30,-8,1.12,0.137,0.61,0,0,0,0,9,-11.9,0,0,0,0,0.309,73.67,142.74,0.98,0.8,786,0.6000000000000001,11,5.2
+2023,11,25,3,0,-8.1,1.12,0.139,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.309,71.58,137.31,0.98,0.8,786,0.6000000000000001,11,5.1000000000000005
+2023,11,25,3,30,-8.3,1.12,0.139,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.309,72.7,131.72,0.98,0.8,786,0.6000000000000001,11,5.1000000000000005
+2023,11,25,4,0,-8.5,1.11,0.13,0.61,0,0,0,0,7,-12.9,0,0,0,0,0.309,70.53,126.05,0.98,0.8,786,0.6000000000000001,11,5
+2023,11,25,4,30,-8.6,1.11,0.13,0.61,0,0,0,0,6,-12.9,0,0,0,0,0.309,71.18,120.35000000000001,0.98,0.8,787,0.6000000000000001,12,5
+2023,11,25,5,0,-8.8,1.12,0.11900000000000001,0.61,0,0,0,0,7,-13.5,0,0,0,0,0.308,68.55,114.68,0.98,0.8,787,0.6000000000000001,13,5
+2023,11,25,5,30,-9,1.12,0.11900000000000001,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.308,69.63,109.05,0.98,0.8,787,0.5,13,5
+2023,11,25,6,0,-9.200000000000001,1.1500000000000001,0.10300000000000001,0.61,0,0,0,0,4,-14.200000000000001,0,0,0,0,0.308,66.9,103.52,0.98,0.8,787,0.5,14,4.9
+2023,11,25,6,30,-9.5,1.1500000000000001,0.10300000000000001,0.61,0,0,0,0,4,-14.200000000000001,0,0,0,0,0.308,68.5,98.11,0.97,0.8,787,0.5,14,4.800000000000001
+2023,11,25,7,0,-9.8,1.19,0.082,0.61,0,0,0,1,4,-15,0,0,14,0,0.308,65.93,92.86,0.97,0.8,788,0.5,15,4.800000000000001
+2023,11,25,7,30,-9.600000000000001,1.19,0.082,0.61,20,204,29,7,4,-15,9,0,100,9,0.306,64.9,87.58,0.97,0.8,788,0.5,16,4.800000000000001
+2023,11,25,8,0,-9.4,1.23,0.064,0.61,40,509,103,4,4,-15.100000000000001,29,0,57,29,0.305,63.47,82.91,0.97,0.8,788,0.5,16,4.9
+2023,11,25,8,30,-8.8,1.23,0.064,0.61,52,678,188,0,4,-15,40,0,0,40,0.302,60.63,78.45,0.96,0.8,789,0.5,18,5
+2023,11,25,9,0,-8.200000000000001,1.25,0.05,0.61,60,791,274,0,5,-14.700000000000001,43,0,0,43,0.299,59.59,74.33,0.96,0.8,789,0.4,19,5.1000000000000005
+2023,11,25,9,30,-7.5,1.25,0.05,0.61,66,859,351,0,5,-14.700000000000001,105,0,0,105,0.296,56.45,70.64,0.96,0.8,789,0.4,20,4.9
+2023,11,25,10,0,-6.800000000000001,1.26,0.04,0.61,69,908,417,0,7,-14.100000000000001,96,0,0,96,0.293,56.07,67.46000000000001,0.9500000000000001,0.8,789,0.4,21,4.800000000000001
+2023,11,25,10,30,-6.1000000000000005,1.26,0.04,0.61,70,941,470,0,7,-14.100000000000001,194,12,0,199,0.291,53.15,64.87,0.9500000000000001,0.8,789,0.4,21,4.5
+2023,11,25,11,0,-5.4,1.23,0.03,0.61,71,966,510,0,8,-13.4,247,18,7,255,0.289,53.31,62.940000000000005,0.9500000000000001,0.8,789,0.4,20,4.2
+2023,11,25,11,30,-4.9,1.23,0.03,0.61,72,976,534,0,4,-13.4,322,31,0,337,0.28700000000000003,51.33,61.74,0.9500000000000001,0.8,789,0.4,18,4
+2023,11,25,12,0,-4.4,1.23,0.028,0.61,72,982,543,0,4,-12.700000000000001,364,65,0,395,0.28600000000000003,52.230000000000004,61.32,0.9500000000000001,0.8,789,0.4,16,3.7
+2023,11,25,12,30,-4,1.23,0.028,0.61,70,979,534,0,4,-12.700000000000001,283,10,0,288,0.28400000000000003,50.69,61.690000000000005,0.9500000000000001,0.8,789,0.4,13,3.5
+2023,11,25,13,0,-3.7,1.25,0.026000000000000002,0.61,68,970,511,0,4,-12.3,291,16,0,298,0.28300000000000003,51.19,62.83,0.9500000000000001,0.8,789,0.5,10,3.3000000000000003
+2023,11,25,13,30,-3.6,1.25,0.026000000000000002,0.61,64,957,473,0,4,-12.3,260,80,0,294,0.281,50.81,64.71000000000001,0.9500000000000001,0.8,789,0.5,8,3.2
+2023,11,25,14,0,-3.5,1.27,0.021,0.61,59,937,421,0,4,-12.100000000000001,203,2,0,204,0.28,51.27,67.26,0.9500000000000001,0.8,789,0.5,5,3
+2023,11,25,14,30,-3.7,1.27,0.021,0.61,54,904,357,0,4,-12.100000000000001,126,0,0,126,0.28,52.050000000000004,70.41,0.9400000000000001,0.8,789,0.5,5,2.8000000000000003
+2023,11,25,15,0,-3.8000000000000003,1.33,0.019,0.61,48,857,283,0,4,-11.8,101,0,0,101,0.279,53.85,74.06,0.9400000000000001,0.8,790,0.4,5,2.6
+2023,11,25,15,30,-4.6000000000000005,1.33,0.019,0.61,40,784,201,0,4,-11.8,49,105,0,71,0.279,57.18,78.15,0.9400000000000001,0.8,790,0.4,8,2.1
+2023,11,25,16,0,-5.4,1.3800000000000001,0.017,0.61,31,658,116,0,0,-12.600000000000001,31,658,0,116,0.279,57.03,82.59,0.9400000000000001,0.8,790,0.4,11,1.7000000000000002
+2023,11,25,16,30,-6.5,1.3800000000000001,0.017,0.61,20,386,38,0,0,-12.600000000000001,20,373,4,38,0.28,62.01,87.27,0.9400000000000001,0.8,790,0.4,25,1.2000000000000002
+2023,11,25,17,0,-7.5,1.3900000000000001,0.017,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.281,65.75,92.51,0.9400000000000001,0.8,791,0.4,39,0.8
+2023,11,25,17,30,-7.7,1.3900000000000001,0.017,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.28200000000000003,66.78,97.75,0.9400000000000001,0.8,791,0.4,53,0.7000000000000001
+2023,11,25,18,0,-7.9,1.36,0.019,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.28300000000000003,67.06,103.15,0.93,0.8,791,0.4,67,0.6000000000000001
+2023,11,25,18,30,-8.1,1.36,0.019,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.28500000000000003,68.2,108.68,0.93,0.8,792,0.4,93,0.5
+2023,11,25,19,0,-8.3,1.29,0.021,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.28700000000000003,68.55,114.3,0.93,0.8,792,0.30000000000000004,118,0.5
+2023,11,25,19,30,-8.6,1.29,0.021,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.28800000000000003,70.17,119.97,0.93,0.8,792,0.30000000000000004,139,0.7000000000000001
+2023,11,25,20,0,-8.9,1.23,0.021,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.29,68.91,125.67,0.92,0.8,792,0.30000000000000004,159,0.9
+2023,11,25,20,30,-9.200000000000001,1.23,0.021,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.289,70.55,131.35,0.92,0.8,792,0.30000000000000004,166,1.1
+2023,11,25,21,0,-9.4,1.18,0.022,0.61,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.28800000000000003,68.77,136.96,0.92,0.8,792,0.30000000000000004,173,1.4000000000000001
+2023,11,25,21,30,-9.600000000000001,1.18,0.022,0.61,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.28500000000000003,69.95,142.42000000000002,0.92,0.8,793,0.30000000000000004,178,1.3
+2023,11,25,22,0,-9.8,1.1500000000000001,0.022,0.61,0,0,0,0,4,-14.100000000000001,0,0,0,0,0.28300000000000003,71.11,147.63,0.93,0.8,793,0.30000000000000004,182,1.2000000000000002
+2023,11,25,22,30,-9.8,1.1500000000000001,0.022,0.61,0,0,0,0,4,-14.100000000000001,0,0,0,0,0.281,71.11,152.39000000000001,0.93,0.8,793,0.30000000000000004,185,1.1
+2023,11,25,23,0,-9.8,1.1500000000000001,0.023,0.61,0,0,0,0,4,-14,0,0,0,0,0.279,71.3,156.42000000000002,0.93,0.8,793,0.30000000000000004,188,1
+2023,11,25,23,30,-9.700000000000001,1.1500000000000001,0.023,0.61,0,0,0,0,4,-14,0,0,0,0,0.278,70.74,159.26,0.93,0.8,793,0.30000000000000004,190,0.9
+2023,11,26,0,0,-9.600000000000001,1.16,0.025,0.61,0,0,0,0,4,-14,0,0,0,0,0.278,70.47,160.36,0.93,0.8,793,0.30000000000000004,192,0.8
+2023,11,26,0,30,-9.600000000000001,1.16,0.025,0.61,0,0,0,0,4,-14,0,0,0,0,0.277,70.47,159.44,0.93,0.8,793,0.30000000000000004,192,0.7000000000000001
+2023,11,26,1,0,-9.600000000000001,1.18,0.026000000000000002,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.85000000000001,156.74,0.93,0.8,793,0.30000000000000004,192,0.6000000000000001
+2023,11,26,1,30,-9.5,1.18,0.026000000000000002,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.3,152.8,0.93,0.8,793,0.30000000000000004,191,0.7000000000000001
+2023,11,26,2,0,-9.5,1.2,0.026000000000000002,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.82000000000001,148.09,0.93,0.8,794,0.30000000000000004,189,0.7000000000000001
+2023,11,26,2,30,-9.4,1.2,0.026000000000000002,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.276,70.26,142.92000000000002,0.93,0.8,794,0.30000000000000004,190,0.8
+2023,11,26,3,0,-9.4,1.21,0.026000000000000002,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.276,71.07000000000001,137.48,0.92,0.8,794,0.30000000000000004,191,0.9
+2023,11,26,3,30,-9.4,1.21,0.026000000000000002,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.276,71.07000000000001,131.89000000000001,0.92,0.8,794,0.30000000000000004,194,1
+2023,11,26,4,0,-9.3,1.23,0.025,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.276,70.09,126.22,0.92,0.8,794,0.30000000000000004,196,1.1
+2023,11,26,4,30,-9.3,1.23,0.025,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.276,70.09,120.52,0.92,0.8,794,0.30000000000000004,197,1.1
+2023,11,26,5,0,-9.3,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.276,70.02,114.85000000000001,0.92,0.8,794,0.30000000000000004,198,1.2000000000000002
+2023,11,26,5,30,-9.4,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.58,109.23,0.92,0.8,794,0.30000000000000004,198,1.2000000000000002
+2023,11,26,6,0,-9.4,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,70.56,103.7,0.92,0.8,794,0.30000000000000004,198,1.2000000000000002
+2023,11,26,6,30,-9.5,1.24,0.024,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.277,71.12,98.29,0.92,0.8,794,0.30000000000000004,198,1.2000000000000002
+2023,11,26,7,0,-9.5,1.24,0.023,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.277,70.4,93.04,0.92,0.8,794,0.30000000000000004,199,1.1
+2023,11,26,7,30,-8.8,1.24,0.023,0.61,19,309,31,2,0,-13.9,15,169,29,22,0.277,66.64,87.76,0.92,0.8,794,0.30000000000000004,205,1.3
+2023,11,26,8,0,-8.1,1.23,0.023,0.61,32,632,108,3,4,-13.5,36,130,39,52,0.276,65.1,83.09,0.92,0.8,794,0.30000000000000004,212,1.5
+2023,11,26,8,30,-6.9,1.23,0.023,0.61,42,772,194,0,4,-13.5,75,0,0,75,0.275,59.33,78.64,0.92,0.8,794,0.30000000000000004,222,1.5
+2023,11,26,9,0,-5.800000000000001,1.22,0.024,0.61,50,855,278,0,4,-12,118,0,0,118,0.274,61.76,74.53,0.92,0.8,794,0.30000000000000004,232,1.5
+2023,11,26,9,30,-4.9,1.22,0.024,0.61,56,909,354,0,4,-12,162,1,0,162,0.273,57.69,70.84,0.92,0.8,794,0.30000000000000004,241,1.5
+2023,11,26,10,0,-3.9000000000000004,1.21,0.024,0.61,61,945,420,0,4,-11.200000000000001,197,1,0,197,0.272,56.72,67.66,0.92,0.8,794,0.30000000000000004,251,1.5
+2023,11,26,10,30,-3.3000000000000003,1.21,0.024,0.61,64,970,473,0,4,-11.200000000000001,222,1,0,222,0.272,54.24,65.07000000000001,0.92,0.8,794,0.30000000000000004,256,1.5
+2023,11,26,11,0,-2.7,1.21,0.024,0.61,67,986,512,0,4,-10.8,271,4,0,273,0.271,53.85,63.14,0.92,0.8,794,0.30000000000000004,262,1.5
+2023,11,26,11,30,-2.4000000000000004,1.21,0.024,0.61,68,995,536,0,4,-10.8,314,13,0,320,0.271,52.67,61.940000000000005,0.92,0.8,794,0.30000000000000004,262,1.5
+2023,11,26,12,0,-2,1.21,0.024,0.61,69,998,545,0,4,-10.5,314,8,0,318,0.27,52.27,61.51,0.92,0.8,793,0.30000000000000004,262,1.5
+2023,11,26,12,30,-1.9000000000000001,1.21,0.024,0.61,68,996,538,0,4,-10.5,295,4,0,297,0.27,51.88,61.870000000000005,0.92,0.8,793,0.30000000000000004,259,1.6
+2023,11,26,13,0,-1.7000000000000002,1.22,0.024,0.61,67,987,515,0,4,-10.4,261,2,0,262,0.269,51.42,63,0.92,0.8,793,0.30000000000000004,255,1.6
+2023,11,26,13,30,-1.6,1.22,0.024,0.61,64,972,477,0,4,-10.4,230,1,0,230,0.268,51.04,64.87,0.92,0.8,793,0.30000000000000004,254,1.7000000000000002
+2023,11,26,14,0,-1.6,1.23,0.024,0.61,61,948,425,0,4,-10.600000000000001,203,1,0,203,0.268,50.51,67.41,0.92,0.8,792,0.30000000000000004,252,1.7000000000000002
+2023,11,26,14,30,-1.8,1.23,0.024,0.61,56,912,360,0,4,-10.600000000000001,151,0,0,151,0.268,51.25,70.54,0.92,0.8,792,0.30000000000000004,253,1.7000000000000002
+2023,11,26,15,0,-2.1,1.25,0.025,0.61,51,859,285,0,4,-10.4,122,0,0,122,0.268,53.02,74.18,0.92,0.8,792,0.30000000000000004,255,1.7000000000000002
+2023,11,26,15,30,-3.1,1.25,0.025,0.61,43,779,202,0,4,-10.4,73,268,0,128,0.268,57.1,78.26,0.92,0.8,792,0.30000000000000004,248,1.3
+2023,11,26,16,0,-4,1.27,0.024,0.61,34,647,116,0,0,-10.700000000000001,34,647,0,116,0.269,59.74,82.69,0.92,0.8,792,0.30000000000000004,241,1
+2023,11,26,16,30,-5.2,1.27,0.024,0.61,20,369,37,0,0,-10.700000000000001,20,369,7,37,0.27,65.39,87.35000000000001,0.91,0.8,792,0.30000000000000004,227,1
+2023,11,26,17,0,-6.4,1.27,0.023,0.61,0,0,0,0,0,-11.600000000000001,0,0,7,0,0.272,66.81,92.58,0.91,0.8,792,0.30000000000000004,212,1
+2023,11,26,17,30,-6.800000000000001,1.27,0.023,0.61,0,0,0,0,4,-11.5,0,0,0,0,0.273,68.98,97.82000000000001,0.91,0.8,793,0.30000000000000004,211,1
+2023,11,26,18,0,-7.1000000000000005,1.27,0.021,0.61,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.274,69.46000000000001,103.21000000000001,0.91,0.8,793,0.30000000000000004,209,1.1
+2023,11,26,18,30,-7.4,1.27,0.021,0.61,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.275,71.08,108.73,0.91,0.8,793,0.30000000000000004,211,1.1
+2023,11,26,19,0,-7.7,1.27,0.019,0.61,0,0,0,0,4,-12.100000000000001,0,0,0,0,0.276,70.71000000000001,114.35000000000001,0.91,0.8,793,0.30000000000000004,213,1.2000000000000002
+2023,11,26,19,30,-8,1.27,0.019,0.61,0,0,0,0,4,-12.100000000000001,0,0,0,0,0.277,72.37,120.03,0.91,0.8,793,0.30000000000000004,213,1.2000000000000002
+2023,11,26,20,0,-8.3,1.28,0.019,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.278,72.13,125.72,0.91,0.8,794,0.30000000000000004,212,1.2000000000000002
+2023,11,26,20,30,-8.6,1.28,0.019,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.279,73.84,131.4,0.91,0.8,794,0.30000000000000004,209,1.2000000000000002
+2023,11,26,21,0,-8.8,1.29,0.019,0.61,0,0,0,0,4,-12.700000000000001,0,0,0,0,0.281,73.29,137.02,0.91,0.8,794,0.30000000000000004,206,1.2000000000000002
+2023,11,26,21,30,-9,1.29,0.019,0.61,0,0,0,0,4,-12.700000000000001,0,0,0,0,0.28300000000000003,74.44,142.49,0.91,0.8,794,0.30000000000000004,205,1.1
+2023,11,26,22,0,-9.1,1.29,0.019,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28400000000000003,74.14,147.70000000000002,0.91,0.8,794,0.30000000000000004,205,1
+2023,11,26,22,30,-9.200000000000001,1.29,0.019,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28500000000000003,74.73,152.49,0.91,0.8,794,0.30000000000000004,204,1
+2023,11,26,23,0,-9.200000000000001,1.3,0.02,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28700000000000003,74.29,156.55,0.91,0.8,795,0.30000000000000004,202,0.9
+2023,11,26,23,30,-9.3,1.3,0.02,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28700000000000003,74.88,159.41,0.91,0.8,795,0.30000000000000004,200,0.8
+2023,11,27,0,0,-9.3,1.31,0.02,0.61,0,0,0,0,8,-13,0,0,0,0,0.28700000000000003,74.3,160.54,0.91,0.8,795,0.30000000000000004,198,0.7000000000000001
+2023,11,27,0,30,-9.4,1.31,0.02,0.61,0,0,0,0,8,-13,0,0,0,0,0.28700000000000003,74.89,159.64000000000001,0.91,0.8,795,0.30000000000000004,193,0.6000000000000001
+2023,11,27,1,0,-9.5,1.3,0.02,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.28700000000000003,74.62,156.94,0.91,0.8,795,0.30000000000000004,188,0.6000000000000001
+2023,11,27,1,30,-9.600000000000001,1.3,0.02,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.28800000000000003,75.2,153,0.91,0.8,795,0.4,187,0.6000000000000001
+2023,11,27,2,0,-9.700000000000001,1.3,0.019,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.28800000000000003,75.32000000000001,148.28,0.91,0.8,795,0.4,185,0.6000000000000001
+2023,11,27,2,30,-9.700000000000001,1.3,0.019,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.28800000000000003,75.32000000000001,143.1,0.91,0.8,795,0.4,189,0.6000000000000001
+2023,11,27,3,0,-9.8,1.31,0.019,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.28800000000000003,75.85000000000001,137.65,0.91,0.8,795,0.4,193,0.6000000000000001
+2023,11,27,3,30,-9.8,1.31,0.019,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.289,75.85000000000001,132.06,0.91,0.8,795,0.4,193,0.5
+2023,11,27,4,0,-9.8,1.31,0.018000000000000002,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.289,75.96000000000001,126.38000000000001,0.91,0.8,795,0.4,193,0.5
+2023,11,27,4,30,-9.8,1.31,0.018000000000000002,0.61,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.289,75.96000000000001,120.69,0.9,0.8,795,0.4,181,0.5
+2023,11,27,5,0,-9.9,1.32,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.289,76.45,115.02,0.9,0.8,795,0.4,170,0.4
+2023,11,27,5,30,-10,1.32,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.28800000000000003,77.05,109.4,0.9,0.8,795,0.30000000000000004,161,0.5
+2023,11,27,6,0,-10,1.31,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.28700000000000003,76.91,103.87,0.9,0.8,796,0.30000000000000004,153,0.7000000000000001
+2023,11,27,6,30,-10.200000000000001,1.31,0.017,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.28500000000000003,78.13,98.47,0.9,0.8,796,0.30000000000000004,155,0.8
+2023,11,27,7,0,-10.3,1.3,0.016,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.28300000000000003,78.44,93.22,0.9,0.8,796,0.30000000000000004,156,0.9
+2023,11,27,7,30,-9.5,1.3,0.016,0.61,17,323,29,4,4,-13.3,12,91,57,15,0.281,73.65,87.93,0.9,0.8,796,0.30000000000000004,162,0.9
+2023,11,27,8,0,-8.8,1.3,0.016,0.61,29,650,105,4,4,-13.100000000000001,32,72,54,40,0.279,71.2,83.28,0.9,0.8,796,0.30000000000000004,168,1
+2023,11,27,8,30,-7.300000000000001,1.3,0.016,0.61,37,788,190,0,4,-13.100000000000001,57,0,0,57,0.277,63.370000000000005,78.83,0.9,0.8,796,0.30000000000000004,181,1.1
+2023,11,27,9,0,-5.800000000000001,1.3,0.015,0.61,45,870,274,0,4,-12.3,95,0,0,95,0.275,59.92,74.72,0.9,0.8,797,0.30000000000000004,194,1.2000000000000002
+2023,11,27,9,30,-4.9,1.3,0.015,0.61,50,924,350,0,4,-12.3,122,0,0,122,0.273,55.97,71.04,0.9,0.8,797,0.30000000000000004,203,1.3
+2023,11,27,10,0,-4,1.29,0.015,0.61,53,960,415,0,4,-12.100000000000001,165,0,0,165,0.272,53.14,67.86,0.9,0.8,797,0.30000000000000004,211,1.4000000000000001
+2023,11,27,10,30,-3.4000000000000004,1.29,0.015,0.61,56,984,468,0,4,-12.100000000000001,202,0,0,202,0.271,50.81,65.27,0.9,0.8,797,0.30000000000000004,216,1.5
+2023,11,27,11,0,-2.7,1.25,0.015,0.61,59,999,507,0,4,-11.700000000000001,258,2,0,259,0.269,50.08,63.34,0.9,0.8,797,0.30000000000000004,221,1.7000000000000002
+2023,11,27,11,30,-2.2,1.25,0.015,0.61,60,1008,531,0,4,-11.700000000000001,300,7,0,303,0.268,48.2,62.13,0.9,0.8,796,0.30000000000000004,226,1.7000000000000002
+2023,11,27,12,0,-1.7000000000000002,1.24,0.014,0.61,60,1012,540,0,4,-11.3,315,12,0,321,0.266,48.09,61.7,0.9,0.8,796,0.30000000000000004,232,1.8
+2023,11,27,12,30,-1.3,1.24,0.014,0.61,59,1010,532,0,4,-11.3,331,24,0,342,0.265,46.7,62.050000000000004,0.91,0.8,796,0.30000000000000004,234,1.7000000000000002
+2023,11,27,13,0,-1,1.23,0.013000000000000001,0.61,57,1003,510,0,4,-11,273,159,0,345,0.263,46.800000000000004,63.17,0.91,0.8,796,0.30000000000000004,237,1.6
+2023,11,27,13,30,-0.8,1.23,0.013000000000000001,0.61,54,989,472,0,4,-11,206,326,0,344,0.263,46.12,65.02,0.91,0.8,796,0.30000000000000004,236,1.5
+2023,11,27,14,0,-0.7000000000000001,1.2,0.013000000000000001,0.61,52,967,421,0,0,-10.8,64,897,0,407,0.262,46.35,67.54,0.91,0.8,795,0.30000000000000004,234,1.4000000000000001
+2023,11,27,14,30,-0.8,1.2,0.013000000000000001,0.61,48,933,357,0,0,-10.8,48,933,0,357,0.263,46.68,70.66,0.9,0.8,795,0.30000000000000004,230,1.4000000000000001
+2023,11,27,15,0,-1,1.16,0.013000000000000001,0.61,43,883,282,0,0,-10.4,43,883,0,282,0.264,48.9,74.29,0.9,0.8,795,0.30000000000000004,226,1.3
+2023,11,27,15,30,-2,1.16,0.013000000000000001,0.61,37,806,200,0,0,-10.4,37,806,0,200,0.266,52.69,78.36,0.9,0.8,796,0.30000000000000004,218,1.1
+2023,11,27,16,0,-3,1.12,0.013000000000000001,0.61,29,676,114,0,0,-10,29,676,0,114,0.267,58.370000000000005,82.77,0.9,0.8,796,0.30000000000000004,210,0.8
+2023,11,27,16,30,-4.1000000000000005,1.12,0.013000000000000001,0.61,19,398,37,0,0,-10,19,398,0,37,0.269,63.370000000000005,87.42,0.9,0.8,796,0.30000000000000004,206,0.9
+2023,11,27,17,0,-5.1000000000000005,1.1,0.014,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.271,62.04,92.65,0.9,0.8,796,0.30000000000000004,201,1
+2023,11,27,17,30,-5.5,1.1,0.014,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.273,63.95,97.88,0.91,0.8,796,0.30000000000000004,203,1
+2023,11,27,18,0,-5.800000000000001,1.09,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.274,64.67,103.27,0.91,0.8,796,0.4,204,1
+2023,11,27,18,30,-6.1000000000000005,1.09,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.275,66.25,108.78,0.91,0.8,797,0.4,208,1
+2023,11,27,19,0,-6.5,1.08,0.014,0.61,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.275,66.78,114.4,0.91,0.8,797,0.4,211,1
+2023,11,27,19,30,-6.800000000000001,1.08,0.014,0.61,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.276,68.33,120.07000000000001,0.91,0.8,797,0.4,214,1
+2023,11,27,20,0,-7.1000000000000005,1.08,0.015,0.61,0,0,0,0,4,-12.100000000000001,0,0,0,0,0.276,67.76,125.77,0.91,0.8,797,0.4,218,1
+2023,11,27,20,30,-7.300000000000001,1.08,0.015,0.61,0,0,0,0,4,-12.100000000000001,0,0,0,0,0.276,68.81,131.45,0.91,0.8,797,0.4,219,1
+2023,11,27,21,0,-7.5,1.1,0.016,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.276,68.17,137.07,0.91,0.8,797,0.4,220,1
+2023,11,27,21,30,-7.800000000000001,1.1,0.016,0.61,0,0,0,0,4,-12.4,0,0,0,0,0.277,69.77,142.54,0.91,0.8,797,0.4,218,1
+2023,11,27,22,0,-8,1.11,0.016,0.61,0,0,0,0,4,-12.600000000000001,0,0,0,0,0.277,69.58,147.78,0.91,0.8,797,0.4,216,1.1
+2023,11,27,22,30,-8.200000000000001,1.11,0.016,0.61,0,0,0,0,4,-12.600000000000001,0,0,0,0,0.278,70.67,152.58,0.91,0.8,797,0.4,214,1.1
+2023,11,27,23,0,-8.4,1.12,0.016,0.61,0,0,0,0,4,-12.8,0,0,0,0,0.279,70.72,156.66,0.91,0.8,797,0.4,212,1.1
+2023,11,27,23,30,-8.6,1.12,0.016,0.61,0,0,0,0,4,-12.8,0,0,0,0,0.279,71.83,159.56,0.91,0.8,797,0.4,211,1.2000000000000002
+2023,11,28,0,0,-8.700000000000001,1.1300000000000001,0.016,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28,71.47,160.72,0.91,0.8,797,0.4,210,1.2000000000000002
+2023,11,28,0,30,-8.9,1.1300000000000001,0.016,0.61,0,0,0,0,4,-12.9,0,0,0,0,0.28,72.60000000000001,159.83,0.91,0.8,797,0.4,210,1.2000000000000002
+2023,11,28,1,0,-9.1,1.12,0.016,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.28,72.55,157.14000000000001,0.91,0.8,797,0.30000000000000004,210,1.3
+2023,11,28,1,30,-9.3,1.12,0.016,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.279,73.7,153.18,0.91,0.8,797,0.30000000000000004,210,1.3
+2023,11,28,2,0,-9.4,1.11,0.015,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.279,73.06,148.46,0.9,0.8,797,0.30000000000000004,210,1.3
+2023,11,28,2,30,-9.600000000000001,1.11,0.015,0.61,0,0,0,0,4,-13.3,0,0,0,0,0.279,74.22,143.27,0.9,0.8,797,0.30000000000000004,210,1.3
+2023,11,28,3,0,-9.700000000000001,1.11,0.015,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.279,73.81,137.82,0.9,0.8,797,0.30000000000000004,209,1.3
+2023,11,28,3,30,-9.8,1.11,0.015,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.279,74.39,132.23,0.9,0.8,797,0.30000000000000004,209,1.2000000000000002
+2023,11,28,4,0,-9.9,1.1,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.279,74.07000000000001,126.55,0.9,0.8,797,0.30000000000000004,209,1.2000000000000002
+2023,11,28,4,30,-10,1.1,0.015,0.61,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.28,74.66,120.86,0.9,0.8,797,0.2,209,1.2000000000000002
+2023,11,28,5,0,-10.100000000000001,1.1,0.014,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.281,74.38,115.18,0.9,0.8,797,0.2,209,1.1
+2023,11,28,5,30,-10.100000000000001,1.1,0.014,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.28300000000000003,74.38,109.57000000000001,0.9,0.8,797,0.2,209,1.1
+2023,11,28,6,0,-10.200000000000001,1.1,0.014,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.28400000000000003,74.05,104.04,0.9,0.8,797,0.2,210,1.1
+2023,11,28,6,30,-10.200000000000001,1.1,0.014,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.28500000000000003,74.05,98.64,0.9,0.8,797,0.2,211,1
+2023,11,28,7,0,-10.200000000000001,1.1,0.014,0.61,0,0,0,0,4,-14.100000000000001,0,0,0,0,0.28600000000000003,73.2,93.4,0.9,0.8,797,0.2,213,1
+2023,11,28,7,30,-9,1.1,0.014,0.61,17,329,28,2,0,-14.100000000000001,14,227,21,22,0.28700000000000003,66.6,88.10000000000001,0.9,0.8,797,0.2,216,1.1
+2023,11,28,8,0,-7.9,1.1,0.014,0.61,28,664,104,2,0,-13.100000000000001,28,372,21,70,0.28700000000000003,66.05,83.46000000000001,0.9,0.8,798,0.2,219,1.2000000000000002
+2023,11,28,8,30,-6.2,1.1,0.014,0.61,37,803,190,0,4,-13.100000000000001,62,27,0,67,0.28700000000000003,57.95,79.02,0.9,0.8,798,0.2,220,1.4000000000000001
+2023,11,28,9,0,-4.6000000000000005,1.1,0.014,0.61,43,886,274,0,4,-12,105,0,0,105,0.28800000000000003,56.43,74.91,0.9,0.8,798,0.2,222,1.7000000000000002
+2023,11,28,9,30,-3.3000000000000003,1.1,0.014,0.61,48,939,350,0,4,-12,159,1,0,159,0.28800000000000003,51.19,71.23,0.9,0.8,798,0.2,225,1.9000000000000001
+2023,11,28,10,0,-1.9000000000000001,1.1,0.014,0.61,52,974,416,0,4,-11.100000000000001,205,2,0,206,0.28800000000000003,49.300000000000004,68.06,0.9,0.8,798,0.2,229,2.2
+2023,11,28,10,30,-1,1.1,0.014,0.61,56,996,470,0,4,-11.100000000000001,264,7,0,267,0.28800000000000003,46.15,65.46000000000001,0.9,0.8,798,0.2,228,2.2
+2023,11,28,11,0,-0.2,1,0.015,0.61,60,1010,510,0,4,-10.600000000000001,326,28,0,338,0.289,45.44,63.53,0.9,0.8,797,0.2,227,2.3000000000000003
+2023,11,28,11,30,0.5,1,0.015,0.61,61,1019,534,0,4,-10.600000000000001,323,203,0,417,0.289,43.19,62.32,0.9,0.8,797,0.2,227,2.3000000000000003
+2023,11,28,12,0,1.1,1.01,0.015,0.61,61,1023,543,0,4,-10.3,296,320,0,447,0.29,42.22,61.870000000000005,0.9,0.8,797,0.2,226,2.3000000000000003
+2023,11,28,12,30,1.4000000000000001,1.01,0.015,0.61,60,1021,536,0,4,-10.4,249,457,0,462,0.291,41.27,62.21,0.9,0.8,796,0.2,227,2.3000000000000003
+2023,11,28,13,0,1.8,1.02,0.015,0.61,59,1013,514,0,0,-10.3,69,978,0,508,0.291,40.35,63.32,0.9,0.8,796,0.2,228,2.2
+2023,11,28,13,30,1.7000000000000002,1.02,0.015,0.61,56,999,476,0,0,-10.3,56,999,0,476,0.292,40.64,65.16,0.9,0.8,796,0.2,225,2.1
+2023,11,28,14,0,1.7000000000000002,1.09,0.014,0.61,52,978,424,0,0,-10.100000000000001,52,978,0,424,0.293,41.15,67.67,0.9,0.8,796,0.2,222,2
+2023,11,28,14,30,1.3,1.09,0.014,0.61,49,944,360,0,0,-10.100000000000001,49,944,0,360,0.294,42.29,70.78,0.9,0.8,795,0.2,218,1.7000000000000002
+2023,11,28,15,0,0.9,1.1,0.013000000000000001,0.61,43,895,284,0,0,-9.4,43,895,0,284,0.295,46.27,74.4,0.9,0.8,795,0.2,214,1.5
+2023,11,28,15,30,-0.4,1.1,0.013000000000000001,0.61,37,818,201,0,0,-9.4,37,818,0,201,0.295,50.83,78.45,0.9,0.8,795,0.2,215,1.1
+2023,11,28,16,0,-1.6,1.1,0.013000000000000001,0.61,29,689,115,0,0,-10,29,689,0,115,0.296,52.81,82.85000000000001,0.9,0.8,795,0.2,216,0.7000000000000001
+2023,11,28,16,30,-2.3000000000000003,1.1,0.013000000000000001,0.61,18,360,34,0,0,-10,18,360,0,34,0.296,55.61,87.49,0.9,0.8,795,0.2,215,0.6000000000000001
+2023,11,28,17,0,-3.1,1.1,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.297,52.56,92.72,0.9,0.78,795,0.2,214,0.5
+2023,11,28,17,30,-3.4000000000000004,1.1,0.014,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.296,53.75,97.93,0.9,0.78,795,0.2,213,0.4
+2023,11,28,18,0,-3.8000000000000003,1.11,0.014,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.296,54.72,103.31,0.9,0.78,795,0.2,213,0.30000000000000004
+2023,11,28,18,30,-4.1000000000000005,1.11,0.014,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.296,55.96,108.83,0.9,0.78,795,0.2,263,0.2
+2023,11,28,19,0,-4.5,1.12,0.014,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.296,56.85,114.44,0.9,0.78,795,0.2,314,0.2
+2023,11,28,19,30,-4.9,1.12,0.014,0.61,0,0,0,0,0,-11.8,0,0,0,0,0.296,58.59,120.11,0.9,0.78,795,0.2,322,0.2
+2023,11,28,20,0,-5.2,1.1300000000000001,0.014,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.296,58.38,125.8,0.9,0.78,794,0.2,330,0.30000000000000004
+2023,11,28,20,30,-5.4,1.1300000000000001,0.014,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.296,59.27,131.49,0.9,0.78,794,0.2,325,0.4
+2023,11,28,21,0,-5.6000000000000005,1.1400000000000001,0.014,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.296,58.47,137.11,0.9,0.78,794,0.2,319,0.5
+2023,11,28,21,30,-5.800000000000001,1.1400000000000001,0.014,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.296,59.29,142.6,0.9,0.78,793,0.2,312,0.5
+2023,11,28,22,0,-5.9,1.16,0.013000000000000001,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.296,58.52,147.84,0.9,0.78,793,0.2,305,0.5
+2023,11,28,22,30,-6.1000000000000005,1.16,0.013000000000000001,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.296,59.42,152.66,0.9,0.78,793,0.2,293,0.5
+2023,11,28,23,0,-6.300000000000001,1.16,0.012,0.61,0,0,0,0,0,-13,0,0,0,0,0.296,59.02,156.77,0.9,0.78,793,0.2,281,0.6000000000000001
+2023,11,28,23,30,-6.5,1.16,0.012,0.61,0,0,0,0,0,-13,0,0,0,0,0.296,59.86,159.71,0.9,0.78,792,0.2,268,0.6000000000000001
+2023,11,29,0,0,-6.7,1.1500000000000001,0.012,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.295,59.4,160.9,0.9,0.78,792,0.2,256,0.7000000000000001
+2023,11,29,0,30,-6.9,1.1500000000000001,0.012,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.295,60.32,160.02,0.9,0.78,792,0.2,248,0.7000000000000001
+2023,11,29,1,0,-7.1000000000000005,1.1400000000000001,0.011,0.61,0,0,0,0,0,-13.5,0,0,0,0,0.295,60.13,157.33,0.9,0.78,792,0.2,240,0.8
+2023,11,29,1,30,-7.5,1.1400000000000001,0.011,0.61,0,0,0,0,4,-13.5,0,0,0,0,0.295,61.93,153.37,0.9,0.78,791,0.2,232,0.9
+2023,11,29,2,0,-7.9,1.1400000000000001,0.011,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.295,63.050000000000004,148.64000000000001,0.9,0.78,791,0.2,225,1
+2023,11,29,2,30,-8.4,1.1400000000000001,0.011,0.61,0,0,0,0,4,-13.700000000000001,0,0,0,0,0.296,65.55,143.45000000000002,0.9,0.78,791,0.2,222,1.1
+2023,11,29,3,0,-8.9,1.1400000000000001,0.011,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.296,67.7,137.99,0.9,0.78,791,0.2,219,1.2000000000000002
+2023,11,29,3,30,-9.3,1.1400000000000001,0.011,0.61,0,0,0,0,4,-13.8,0,0,0,0,0.296,69.85000000000001,132.39000000000001,0.9,0.78,791,0.2,218,1.2000000000000002
+2023,11,29,4,0,-9.700000000000001,1.1500000000000001,0.011,0.61,0,0,0,0,4,-13.9,0,0,29,0,0.297,71.59,126.72,0.9,0.78,791,0.2,218,1.2000000000000002
+2023,11,29,4,30,-10,1.1500000000000001,0.011,0.61,0,0,0,0,4,-13.9,0,0,0,0,0.297,73.21000000000001,121.02,0.9,0.78,790,0.2,218,1.3
+2023,11,29,5,0,-10.4,1.17,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.297,74.98,115.35000000000001,0.9,0.78,790,0.2,218,1.3
+2023,11,29,5,30,-10.600000000000001,1.17,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,76.18,109.73,0.9,0.78,790,0.2,218,1.3
+2023,11,29,6,0,-10.8,1.19,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,77.13,104.21000000000001,0.9,0.78,790,0.2,219,1.3
+2023,11,29,6,30,-10.9,1.19,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.298,77.75,98.81,0.9,0.78,790,0.2,219,1.3
+2023,11,29,7,0,-11.100000000000001,1.21,0.011,0.61,0,0,0,0,4,-14,0,0,0,0,0.299,79.11,93.58,0.9,0.78,790,0.2,220,1.3
+2023,11,29,7,30,-9.700000000000001,1.21,0.011,0.61,15,284,24,2,0,-14,12,119,36,16,0.298,70.8,88.27,0.9,0.78,790,0.2,223,1.4000000000000001
+2023,11,29,8,0,-8.4,1.22,0.011,0.61,26,670,100,3,4,-13.200000000000001,32,211,46,55,0.298,68.24,83.64,0.9,0.78,790,0.2,225,1.6
+2023,11,29,8,30,-6.800000000000001,1.22,0.011,0.61,35,807,186,0,4,-13.200000000000001,26,0,0,26,0.298,60.300000000000004,79.2,0.9,0.78,790,0.2,225,1.9000000000000001
+2023,11,29,9,0,-5.2,1.23,0.012,0.61,42,888,270,0,4,-12,56,0,7,56,0.297,58.67,75.10000000000001,0.9,0.78,790,0.2,224,2.2
+2023,11,29,9,30,-3.8000000000000003,1.23,0.012,0.61,46,940,346,0,4,-12,118,0,0,118,0.297,52.800000000000004,71.42,0.91,0.78,790,0.2,225,2.5
+2023,11,29,10,0,-2.4000000000000004,1.23,0.013000000000000001,0.61,51,968,410,0,4,-11.4,198,2,0,199,0.296,50.02,68.24,0.91,0.78,789,0.30000000000000004,227,2.8000000000000003
+2023,11,29,10,30,-1.4000000000000001,1.23,0.013000000000000001,0.61,54,983,459,0,4,-11.4,253,9,0,257,0.295,46.47,65.65,0.91,0.78,789,0.30000000000000004,227,3
+2023,11,29,11,0,-0.30000000000000004,1.24,0.014,0.61,57,998,499,0,4,-11.100000000000001,300,21,0,309,0.294,44.06,63.71,0.91,0.78,789,0.30000000000000004,227,3.2
+2023,11,29,11,30,0.4,1.24,0.014,0.61,58,1007,523,0,4,-11.100000000000001,337,60,0,365,0.293,41.83,62.5,0.91,0.78,788,0.30000000000000004,227,3.3000000000000003
+2023,11,29,12,0,1.1,1.25,0.014,0.61,58,1010,532,0,4,-11,349,73,0,383,0.292,40.17,62.04,0.91,0.78,787,0.30000000000000004,228,3.5
+2023,11,29,12,30,1.5,1.25,0.014,0.61,59,1005,525,0,4,-11,315,32,0,330,0.292,39.03,62.370000000000005,0.92,0.78,787,0.30000000000000004,229,3.5
+2023,11,29,13,0,1.8,1.25,0.016,0.61,58,987,499,0,8,-11,242,24,0,253,0.291,38.17,63.47,0.92,0.78,787,0.4,231,3.6
+2023,11,29,13,30,1.7000000000000002,1.25,0.016,0.61,57,970,462,0,4,-11,235,86,0,271,0.291,38.39,65.3,0.92,0.78,786,0.4,232,3.5
+2023,11,29,14,0,1.5,1.24,0.017,0.61,55,945,412,0,4,-10.9,224,19,0,231,0.291,39.25,67.8,0.93,0.78,786,0.4,234,3.4000000000000004
+2023,11,29,14,30,1,1.24,0.017,0.61,51,909,349,0,4,-10.9,159,352,0,274,0.292,40.68,70.89,0.93,0.78,786,0.4,234,2.9000000000000004
+2023,11,29,15,0,0.4,1.24,0.018000000000000002,0.61,46,857,275,0,4,-10.200000000000001,140,292,0,218,0.294,45.04,74.49,0.93,0.78,786,0.4,235,2.5
+2023,11,29,15,30,-0.6000000000000001,1.24,0.018000000000000002,0.61,39,772,193,0,0,-10.200000000000001,70,427,0,155,0.296,48.43,78.53,0.93,0.78,786,0.5,233,1.8
+2023,11,29,16,0,-1.6,1.24,0.018000000000000002,0.61,31,633,109,5,8,-9.3,53,159,71,73,0.297,55.76,82.93,0.93,0.78,785,0.5,231,1.2000000000000002
+2023,11,29,16,30,-2.2,1.24,0.018000000000000002,0.61,19,315,32,6,4,-9.3,17,51,89,19,0.3,58.27,87.55,0.93,0.78,785,0.5,227,0.9
+2023,11,29,17,0,-2.8000000000000003,1.25,0.018000000000000002,0.61,0,0,0,1,0,-9.4,0,0,14,0,0.302,60.53,92.77,0.93,0.74,785,0.5,222,0.7000000000000001
+2023,11,29,17,30,-3.1,1.25,0.018000000000000002,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.305,61.9,97.98,0.93,0.74,785,0.5,218,0.7000000000000001
+2023,11,29,18,0,-3.3000000000000003,1.28,0.018000000000000002,0.61,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.307,61.39,103.36,0.93,0.74,785,0.5,213,0.6000000000000001
+2023,11,29,18,30,-3.7,1.28,0.018000000000000002,0.61,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.309,63.25,108.86,0.93,0.74,785,0.5,214,0.6000000000000001
+2023,11,29,19,0,-4,1.3,0.018000000000000002,0.61,0,0,0,0,8,-10.200000000000001,0,0,0,0,0.311,62.15,114.47,0.93,0.74,785,0.5,215,0.5
+2023,11,29,19,30,-4.4,1.3,0.018000000000000002,0.61,0,0,0,0,8,-10.200000000000001,0,0,0,0,0.312,64.05,120.14,0.92,0.74,785,0.5,216,0.5
+2023,11,29,20,0,-4.7,1.32,0.017,0.61,0,0,0,0,8,-10.600000000000001,0,0,0,0,0.313,63.46,125.84,0.92,0.74,785,0.5,218,0.5
+2023,11,29,20,30,-4.9,1.32,0.017,0.61,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.314,64.34,131.52,0.92,0.74,784,0.5,222,0.5
+2023,11,29,21,0,-5.2,1.34,0.017,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.314,64.48,137.15,0.92,0.74,784,0.5,226,0.5
+2023,11,29,21,30,-5.4,1.34,0.017,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.315,65.47,142.64000000000001,0.92,0.74,784,0.5,233,0.4
+2023,11,29,22,0,-5.6000000000000005,1.33,0.018000000000000002,0.61,0,0,0,0,5,-11.100000000000001,0,0,0,0,0.315,65.06,147.89000000000001,0.93,0.74,784,0.5,240,0.4
+2023,11,29,22,30,-5.7,1.33,0.018000000000000002,0.61,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.315,65.56,152.74,0.93,0.74,784,0.5,247,0.4
+2023,11,29,23,0,-5.9,1.33,0.019,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.315,65.31,156.87,0.93,0.74,784,0.5,254,0.4
+2023,11,29,23,30,-6,1.33,0.019,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.315,65.73,159.84,0.93,0.74,783,0.5,262,0.30000000000000004
+2023,11,30,0,0,-6.1000000000000005,1.34,0.019,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.315,64.96000000000001,161.06,0.93,0.74,783,0.5,270,0.30000000000000004
+2023,11,30,0,30,-6.2,1.34,0.019,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.315,65.46000000000001,160.21,0.93,0.74,783,0.5,304,0.2
+2023,11,30,1,0,-6.4,1.34,0.019,0.61,0,0,0,0,4,-11.9,0,0,0,0,0.315,65.21000000000001,157.51,0.93,0.74,783,0.5,338,0.1
+2023,11,30,1,30,-6.4,1.34,0.019,0.61,0,0,0,0,4,-11.9,0,0,0,0,0.315,65.21000000000001,153.55,0.93,0.74,783,0.5,199,0.2
+2023,11,30,2,0,-6.5,1.34,0.02,0.61,0,0,0,0,0,-12,0,0,0,0,0.315,64.72,148.81,0.93,0.74,782,0.5,59,0.30000000000000004
+2023,11,30,2,30,-6.4,1.34,0.02,0.61,0,0,0,0,0,-12,0,0,0,0,0.315,64.23,143.62,0.93,0.74,782,0.6000000000000001,68,0.30000000000000004
+2023,11,30,3,0,-6.4,1.32,0.021,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.315,63.800000000000004,138.16,0.9400000000000001,0.74,782,0.6000000000000001,77,0.4
+2023,11,30,3,30,-6.300000000000001,1.32,0.021,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.315,63.32,132.56,0.9400000000000001,0.74,782,0.6000000000000001,77,0.4
+2023,11,30,4,0,-6.2,1.31,0.022,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.315,63.04,126.88000000000001,0.9400000000000001,0.74,782,0.6000000000000001,77,0.5
+2023,11,30,4,30,-6.1000000000000005,1.31,0.022,0.61,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.316,62.56,121.19,0.9400000000000001,0.74,782,0.6000000000000001,72,0.5
+2023,11,30,5,0,-6,1.31,0.023,0.61,0,0,0,0,7,-12,0,0,0,0,0.316,62.64,115.51,0.9400000000000001,0.74,782,0.6000000000000001,68,0.5
+2023,11,30,5,30,-6,1.31,0.023,0.61,0,0,0,0,7,-12,0,0,0,0,0.315,62.64,109.9,0.9400000000000001,0.74,782,0.6000000000000001,61,0.6000000000000001
+2023,11,30,6,0,-6,1.33,0.022,0.61,0,0,0,0,7,-12,0,0,0,0,0.314,62.57,104.38,0.9400000000000001,0.74,782,0.6000000000000001,55,0.6000000000000001
+2023,11,30,6,30,-5.9,1.33,0.022,0.61,0,0,0,0,7,-12,0,0,0,0,0.312,62.09,98.98,0.9400000000000001,0.74,782,0.6000000000000001,44,0.5
+2023,11,30,7,0,-5.9,1.34,0.023,0.61,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.309,61.74,93.75,0.9400000000000001,0.74,782,0.6000000000000001,34,0.5
+2023,11,30,7,30,-5.300000000000001,1.34,0.023,0.61,15,219,21,6,7,-12.100000000000001,8,0,86,8,0.307,58.99,88.44,0.9400000000000001,0.74,782,0.6000000000000001,194,0.6000000000000001
+2023,11,30,8,0,-4.7,1.33,0.025,0.61,30,567,91,5,7,-11,22,0,71,22,0.304,61.19,83.82000000000001,0.9400000000000001,0.74,782,0.6000000000000001,354,0.7000000000000001
+2023,11,30,8,30,-3.9000000000000004,1.33,0.025,0.61,40,716,172,0,7,-11,40,0,0,40,0.303,57.620000000000005,79.38,0.9500000000000001,0.74,782,0.6000000000000001,346,1
+2023,11,30,9,0,-3.1,1.33,0.028,0.61,49,803,253,0,7,-10.700000000000001,108,17,0,112,0.302,55.83,75.28,0.9500000000000001,0.74,782,0.6000000000000001,337,1.3
+2023,11,30,9,30,-2.1,1.33,0.028,0.61,56,857,327,0,8,-10.700000000000001,163,34,0,174,0.301,51.85,71.60000000000001,0.9500000000000001,0.74,782,0.6000000000000001,326,1.3
+2023,11,30,10,0,-1.1,1.34,0.036000000000000004,0.61,64,890,391,0,8,-9.9,197,20,7,204,0.3,51.28,68.43,0.9500000000000001,0.74,782,0.6000000000000001,315,1.3
+2023,11,30,10,30,-0.30000000000000004,1.34,0.036000000000000004,0.61,70,909,442,0,4,-9.9,188,2,0,189,0.299,48.31,65.83,0.9500000000000001,0.74,781,0.6000000000000001,302,1.4000000000000001
+2023,11,30,11,0,0.5,1.37,0.047,0.61,75,917,479,0,4,-9.1,175,0,0,175,0.298,48.53,63.89,0.9500000000000001,0.74,781,0.7000000000000001,289,1.4000000000000001
+2023,11,30,11,30,0.9,1.37,0.047,0.61,80,920,502,0,5,-9.1,258,13,0,264,0.298,47.15,62.67,0.96,0.74,781,0.7000000000000001,286,1.5
+2023,11,30,12,0,1.2000000000000002,1.3800000000000001,0.058,0.61,83,913,509,0,5,-8.200000000000001,275,20,0,284,0.298,49.65,62.21,0.96,0.74,781,0.7000000000000001,282,1.5
+2023,11,30,12,30,1.3,1.3800000000000001,0.058,0.61,84,906,502,0,5,-8.200000000000001,270,10,0,275,0.299,49.230000000000004,62.53,0.96,0.74,780,0.7000000000000001,282,1.6
+2023,11,30,13,0,1.4000000000000001,1.35,0.065,0.61,85,890,480,0,5,-7.5,221,20,0,230,0.3,51.480000000000004,63.620000000000005,0.96,0.74,780,0.7000000000000001,281,1.6
+2023,11,30,13,30,1.2000000000000002,1.35,0.065,0.61,82,869,443,0,5,-7.5,289,46,0,308,0.301,52.22,65.43,0.96,0.74,780,0.7000000000000001,286,1.6
+2023,11,30,14,0,0.9,1.32,0.069,0.61,78,837,393,0,5,-7,250,67,0,275,0.302,55.56,67.91,0.97,0.74,780,0.7000000000000001,290,1.6
+2023,11,30,14,30,0.5,1.32,0.069,0.61,73,790,330,0,0,-7,139,394,0,267,0.302,57.19,70.99,0.97,0.74,780,0.7000000000000001,300,1.5
+2023,11,30,15,0,0.1,1.31,0.075,0.61,66,720,257,0,0,-6.4,78,651,0,251,0.302,61.480000000000004,74.58,0.97,0.74,780,0.7000000000000001,310,1.3
+2023,11,30,15,30,-0.7000000000000001,1.31,0.075,0.61,55,623,178,0,4,-6.4,73,198,0,112,0.301,65.16,78.61,0.97,0.74,780,0.7000000000000001,322,1
+2023,11,30,16,0,-1.5,1.33,0.077,0.61,41,468,98,5,4,-5.9,30,0,71,30,0.3,72.14,83,0.96,0.74,780,0.7000000000000001,334,0.6000000000000001
+2023,11,30,16,30,-2,1.33,0.077,0.61,20,192,28,7,8,-5.9,16,0,100,16,0.3,74.94,87.61,0.96,0.74,781,0.7000000000000001,346,0.6000000000000001
+2023,11,30,17,0,-2.6,1.35,0.075,0.63,0,0,0,1,7,-6.4,0,0,14,0,0.3,75.34,92.82000000000001,0.96,0.75,781,0.7000000000000001,357,0.6000000000000001
+2023,11,30,17,30,-2.8000000000000003,1.35,0.075,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.299,76.46000000000001,98.02,0.96,0.75,781,0.6000000000000001,187,0.6000000000000001
+2023,11,30,18,0,-3.1,1.3800000000000001,0.07100000000000001,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.299,76.16,103.39,0.9500000000000001,0.75,781,0.6000000000000001,16,0.7000000000000001
+2023,11,30,18,30,-3.3000000000000003,1.3800000000000001,0.07100000000000001,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.299,77.3,108.9,0.9500000000000001,0.75,781,0.6000000000000001,23,0.6000000000000001
+2023,11,30,19,0,-3.6,1.3800000000000001,0.067,0.63,0,0,0,0,4,-7,0,0,0,0,0.299,77.46000000000001,114.5,0.9500000000000001,0.75,782,0.6000000000000001,30,0.6000000000000001
+2023,11,30,19,30,-3.7,1.3800000000000001,0.067,0.63,0,0,0,0,4,-7,0,0,0,0,0.299,78.04,120.16,0.9500000000000001,0.75,782,0.6000000000000001,41,0.5
+2023,11,30,20,0,-3.7,1.36,0.067,0.63,0,0,0,0,7,-7,0,0,0,0,0.299,77.59,125.86,0.9500000000000001,0.75,782,0.6000000000000001,52,0.5
+2023,11,30,20,30,-3.8000000000000003,1.36,0.067,0.63,0,0,0,0,7,-7,0,0,0,0,0.299,78.17,131.55,0.9500000000000001,0.75,782,0.6000000000000001,69,0.5
+2023,11,30,21,0,-3.9000000000000004,1.36,0.066,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,79.64,137.18,0.9500000000000001,0.75,782,0.6000000000000001,86,0.4
+2023,11,30,21,30,-4.1000000000000005,1.36,0.066,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,80.84,142.68,0.9500000000000001,0.75,782,0.6000000000000001,98,0.5
+2023,11,30,22,0,-4.2,1.37,0.064,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.3,80.01,147.94,0.9500000000000001,0.75,782,0.6000000000000001,111,0.5
+2023,11,30,22,30,-4.5,1.37,0.064,0.63,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.3,81.84,152.8,0.9500000000000001,0.75,782,0.6000000000000001,120,0.6000000000000001
+2023,11,30,23,0,-4.800000000000001,1.3800000000000001,0.065,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,83.29,156.97,0.9500000000000001,0.75,782,0.6000000000000001,128,0.6000000000000001
+2023,11,30,23,30,-5.1000000000000005,1.3800000000000001,0.065,0.63,0,0,0,0,4,-7.2,0,0,0,0,0.3,85.2,159.96,0.9500000000000001,0.75,782,0.6000000000000001,133,0.7000000000000001
+2023,12,1,0,0,-5.300000000000001,1.3900000000000001,0.069,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,86.66,161.22,0.9500000000000001,0.75,782,0.6000000000000001,138,0.7000000000000001
+2023,12,1,0,30,-5.6000000000000005,1.3900000000000001,0.069,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.3,88.54,160.38,0.9500000000000001,0.75,781,0.6000000000000001,140,0.7000000000000001
+2023,12,1,1,0,-5.800000000000001,1.3900000000000001,0.075,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.3,90.71000000000001,157.69,0.9500000000000001,0.75,781,0.6000000000000001,142,0.8
+2023,12,1,1,30,-5.9,1.3900000000000001,0.075,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.3,91.4,153.73,0.9500000000000001,0.75,781,0.6000000000000001,144,0.7000000000000001
+2023,12,1,2,0,-6.1000000000000005,1.3900000000000001,0.084,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.3,93.75,148.98,0.96,0.75,781,0.6000000000000001,145,0.7000000000000001
+2023,12,1,2,30,-6.1000000000000005,1.3900000000000001,0.084,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.301,93.75,143.78,0.96,0.75,781,0.6000000000000001,151,0.5
+2023,12,1,3,0,-6.2,1.3900000000000001,0.091,0.63,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.302,95.16,138.32,0.96,0.75,781,0.6000000000000001,158,0.4
+2023,12,1,3,30,-6.2,1.3900000000000001,0.091,0.63,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.303,95.16,132.72,0.96,0.75,781,0.6000000000000001,175,0.30000000000000004
+2023,12,1,4,0,-6.300000000000001,1.3800000000000001,0.095,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.304,95.83,127.04,0.96,0.75,781,0.6000000000000001,192,0.2
+2023,12,1,4,30,-6.300000000000001,1.3800000000000001,0.095,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.305,95.83,121.35000000000001,0.96,0.75,781,0.6000000000000001,203,0.2
+2023,12,1,5,0,-6.4,1.3900000000000001,0.096,0.63,0,0,0,0,4,-6.9,0,0,0,0,0.306,96.02,115.68,0.96,0.75,781,0.6000000000000001,214,0.2
+2023,12,1,5,30,-6.5,1.3900000000000001,0.096,0.63,0,0,0,0,7,-6.9,0,0,0,0,0.307,96.75,110.06,0.96,0.75,781,0.6000000000000001,207,0.2
+2023,12,1,6,0,-6.7,1.4000000000000001,0.093,0.63,0,0,0,0,7,-7,0,0,0,0,0.309,97.58,104.54,0.96,0.75,782,0.6000000000000001,200,0.2
+2023,12,1,6,30,-6.800000000000001,1.4000000000000001,0.093,0.63,0,0,0,0,7,-7,0,0,0,0,0.311,98.33,99.15,0.96,0.75,782,0.5,198,0.30000000000000004
+2023,12,1,7,0,-6.9,1.4000000000000001,0.092,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.313,97.88,93.92,0.96,0.75,782,0.5,195,0.4
+2023,12,1,7,30,-6.5,1.4000000000000001,0.092,0.63,15,122,18,5,7,-7.2,11,0,71,11,0.316,94.92,88.60000000000001,0.96,0.75,782,0.5,195,0.8
+2023,12,1,8,0,-6.1000000000000005,1.41,0.095,0.63,40,404,82,5,7,-7.1000000000000005,54,11,71,55,0.318,92.51,83.99,0.96,0.75,782,0.5,196,1.2000000000000002
+2023,12,1,8,30,-5.2,1.41,0.095,0.63,56,577,161,0,7,-7.1000000000000005,96,23,0,100,0.321,86.39,79.56,0.9500000000000001,0.75,782,0.5,198,1.6
+2023,12,1,9,0,-4.3,1.43,0.095,0.63,69,686,241,0,7,-6.9,153,59,0,168,0.324,81.91,75.46000000000001,0.9500000000000001,0.75,782,0.5,201,2
+2023,12,1,9,30,-3.6,1.43,0.095,0.63,78,760,316,0,7,-6.9,174,43,0,187,0.328,77.72,71.78,0.9500000000000001,0.75,782,0.5,205,2.4000000000000004
+2023,12,1,10,0,-2.8000000000000003,1.48,0.09,0.63,84,813,381,0,7,-7.1000000000000005,231,84,0,262,0.332,72.23,68.61,0.9500000000000001,0.75,782,0.5,209,2.7
+2023,12,1,10,30,-2.3000000000000003,1.48,0.09,0.63,91,840,433,0,7,-7.1000000000000005,264,174,0,335,0.336,69.61,66.01,0.9500000000000001,0.75,782,0.5,214,3.1
+2023,12,1,11,0,-1.8,1.5,0.1,0.63,98,854,472,0,7,-7.300000000000001,275,208,0,366,0.339,66.28,64.06,0.9500000000000001,0.75,782,0.5,219,3.5
+2023,12,1,11,30,-1.6,1.5,0.1,0.63,104,857,495,0,4,-7.300000000000001,298,287,0,429,0.341,65.31,62.84,0.9500000000000001,0.75,782,0.5,222,3.8000000000000003
+2023,12,1,12,0,-1.3,1.52,0.12,0.63,109,849,503,0,8,-7.300000000000001,279,334,0,434,0.343,63.54,62.370000000000005,0.9500000000000001,0.75,781,0.5,226,4.1000000000000005
+2023,12,1,12,30,-1.2000000000000002,1.52,0.12,0.63,114,831,495,0,7,-7.300000000000001,290,300,0,428,0.342,63.08,62.68,0.9500000000000001,0.75,781,0.5,227,4.2
+2023,12,1,13,0,-1.1,1.56,0.15,0.63,118,801,472,0,7,-7.4,303,234,0,406,0.341,62.36,63.75,0.9500000000000001,0.75,781,0.5,228,4.3
+2023,12,1,13,30,-1.1,1.56,0.15,0.63,121,753,433,0,7,-7.4,285,234,0,382,0.337,62.36,65.55,0.9500000000000001,0.75,781,0.5,228,4.3
+2023,12,1,14,0,-1.1,1.57,0.209,0.63,124,682,379,0,7,-7.4,248,274,0,351,0.333,62.47,68.02,0.9500000000000001,0.75,781,0.5,228,4.3
+2023,12,1,14,30,-1.3,1.57,0.209,0.63,119,605,315,0,7,-7.4,207,298,0,304,0.327,63.39,71.09,0.9500000000000001,0.75,781,0.5,227,4.1000000000000005
+2023,12,1,15,0,-1.5,1.6,0.274,0.63,110,495,241,0,7,-7.300000000000001,151,321,0,236,0.322,64.5,74.66,0.9500000000000001,0.75,781,0.5,227,3.9000000000000004
+2023,12,1,15,30,-2,1.6,0.274,0.63,89,371,162,0,0,-7.300000000000001,89,371,21,162,0.32,66.92,78.68,0.9500000000000001,0.75,781,0.6000000000000001,224,3.4000000000000004
+2023,12,1,16,0,-2.4000000000000004,1.6300000000000001,0.34500000000000003,0.63,59,210,84,0,0,-7.4,59,210,0,84,0.317,68.74,83.06,0.9500000000000001,0.75,781,0.6000000000000001,222,2.9000000000000004
+2023,12,1,16,30,-2.8000000000000003,1.6300000000000001,0.34500000000000003,0.63,19,59,21,0,0,-7.4,19,59,0,21,0.319,70.81,87.66,0.9500000000000001,0.75,781,0.6000000000000001,218,2.6
+2023,12,1,17,0,-3.2,1.6,0.419,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.32,73.55,92.86,0.9500000000000001,0.78,781,0.6000000000000001,215,2.3000000000000003
+2023,12,1,17,30,-3.4000000000000004,1.6,0.419,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.32,74.75,98.06,0.9500000000000001,0.78,782,0.6000000000000001,215,2.3000000000000003
+2023,12,1,18,0,-3.6,1.59,0.41300000000000003,0.63,0,0,0,0,7,-7,0,0,0,0,0.321,77.2,103.42,0.9500000000000001,0.78,782,0.6000000000000001,215,2.2
+2023,12,1,18,30,-3.9000000000000004,1.59,0.41300000000000003,0.63,0,0,0,0,5,-7,0,0,0,0,0.321,78.95,108.92,0.9400000000000001,0.78,782,0.6000000000000001,221,2.2
+2023,12,1,19,0,-4.1000000000000005,1.6300000000000001,0.302,0.63,0,0,0,0,5,-7.2,0,0,0,0,0.321,79.12,114.52,0.9400000000000001,0.78,782,0.5,227,2.1
+2023,12,1,19,30,-4.6000000000000005,1.6300000000000001,0.302,0.63,0,0,0,0,0,-7.2,0,0,0,0,0.322,82.16,120.18,0.93,0.78,782,0.5,234,1.9000000000000001
+2023,12,1,20,0,-5.1000000000000005,1.6400000000000001,0.181,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.323,82.09,125.88000000000001,0.93,0.78,782,0.5,240,1.8
+2023,12,1,20,30,-5.4,1.6400000000000001,0.181,0.63,0,0,0,0,4,-7.7,0,0,0,0,0.325,83.98,131.57,0.92,0.78,782,0.5,240,1.8
+2023,12,1,21,0,-5.800000000000001,1.62,0.10200000000000001,0.63,0,0,0,0,5,-8.1,0,0,0,0,0.327,83.57000000000001,137.20000000000002,0.92,0.78,783,0.4,240,1.7000000000000002
+2023,12,1,21,30,-6,1.62,0.10200000000000001,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.329,84.86,142.71,0.92,0.78,783,0.4,235,1.8
+2023,12,1,22,0,-6.2,1.57,0.068,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.331,83.26,147.98,0.92,0.78,783,0.4,231,2
+2023,12,1,22,30,-6.2,1.57,0.068,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.332,83.26,152.86,0.93,0.78,783,0.4,230,2.3000000000000003
+2023,12,1,23,0,-6.300000000000001,1.49,0.054,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.332,81.65,157.05,0.93,0.78,783,0.4,229,2.7
+2023,12,1,23,30,-6.4,1.49,0.054,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.333,82.27,160.08,0.93,0.78,783,0.4,229,2.9000000000000004
+2023,12,2,0,0,-6.4,1.4000000000000001,0.046,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.333,81.10000000000001,161.37,0.9400000000000001,0.78,783,0.5,229,3.2
+2023,12,2,0,30,-6.5,1.4000000000000001,0.046,0.63,0,0,0,0,7,-9.1,0,0,0,0,0.334,81.83,160.55,0.9400000000000001,0.78,784,0.4,229,3.2
+2023,12,2,1,0,-6.6000000000000005,1.32,0.04,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.335,81.11,157.87,0.9400000000000001,0.78,784,0.4,228,3.3000000000000003
+2023,12,2,1,30,-6.7,1.32,0.04,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.335,81.73,153.9,0.9400000000000001,0.78,784,0.4,228,3.1
+2023,12,2,2,0,-6.9,1.32,0.031,0.63,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.336,80.47,149.15,0.93,0.78,784,0.4,229,2.9000000000000004
+2023,12,2,2,30,-7.2,1.32,0.031,0.63,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.337,82.35000000000001,143.95000000000002,0.92,0.78,784,0.4,230,2.7
+2023,12,2,3,0,-7.6000000000000005,1.34,0.021,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.337,81.15,138.48,0.91,0.78,784,0.30000000000000004,231,2.5
+2023,12,2,3,30,-8.1,1.34,0.021,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.338,84.36,132.88,0.91,0.78,784,0.30000000000000004,232,2.3000000000000003
+2023,12,2,4,0,-8.6,1.32,0.017,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.338,83.88,127.2,0.91,0.78,785,0.30000000000000004,232,2.2
+2023,12,2,4,30,-8.9,1.32,0.017,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.339,85.87,121.5,0.91,0.78,785,0.30000000000000004,233,2.2
+2023,12,2,5,0,-9.200000000000001,1.31,0.017,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.339,85.24,115.83,0.91,0.78,785,0.30000000000000004,234,2.1
+2023,12,2,5,30,-9.4,1.31,0.017,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.34,86.59,110.22,0.91,0.78,785,0.30000000000000004,235,2
+2023,12,2,6,0,-9.5,1.3,0.017,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.34,86.3,104.71000000000001,0.91,0.78,786,0.4,237,2
+2023,12,2,6,30,-9.600000000000001,1.3,0.017,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.341,86.98,99.31,0.91,0.78,786,0.30000000000000004,238,1.9000000000000001
+2023,12,2,7,0,-9.600000000000001,1.31,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.341,87.15,94.08,0.91,0.78,786,0.30000000000000004,240,1.9000000000000001
+2023,12,2,7,30,-8.6,1.31,0.017,0.63,14,241,19,0,0,-11.3,14,241,0,19,0.341,80.58,88.75,0.91,0.78,786,0.30000000000000004,242,2.2
+2023,12,2,8,0,-7.6000000000000005,1.32,0.016,0.63,27,611,89,0,0,-10.700000000000001,27,611,0,89,0.341,78.57000000000001,84.16,0.91,0.78,787,0.30000000000000004,245,2.6
+2023,12,2,8,30,-6,1.32,0.016,0.63,36,762,172,0,0,-10.700000000000001,38,746,0,171,0.34,69.49,79.73,0.92,0.78,787,0.30000000000000004,253,2.8000000000000003
+2023,12,2,9,0,-4.4,1.33,0.017,0.63,44,850,255,0,7,-10,80,626,21,235,0.339,64.71000000000001,75.63,0.92,0.78,787,0.30000000000000004,261,3.1
+2023,12,2,9,30,-3.3000000000000003,1.33,0.017,0.63,49,906,330,0,7,-10,78,762,14,314,0.338,59.59,71.96000000000001,0.92,0.78,787,0.30000000000000004,270,3.4000000000000004
+2023,12,2,10,0,-2.1,1.35,0.019,0.63,54,939,394,0,0,-10.9,74,862,0,386,0.337,50.77,68.78,0.93,0.78,787,0.4,279,3.7
+2023,12,2,10,30,-1.5,1.35,0.019,0.63,59,954,444,0,0,-10.9,59,954,0,444,0.336,48.58,66.18,0.93,0.78,787,0.4,278,3.8000000000000003
+2023,12,2,11,0,-0.9,1.33,0.023,0.63,64,967,484,0,0,-11.3,64,967,0,484,0.334,45.38,64.23,0.9400000000000001,0.78,787,0.4,276,3.9000000000000004
+2023,12,2,11,30,-0.6000000000000001,1.33,0.023,0.63,68,969,508,0,0,-11.3,68,969,0,508,0.333,44.39,63,0.9500000000000001,0.78,787,0.4,268,3.9000000000000004
+2023,12,2,12,0,-0.30000000000000004,1.25,0.036000000000000004,0.63,74,960,517,0,0,-10.700000000000001,74,960,0,517,0.332,45.39,62.52,0.96,0.78,787,0.4,260,3.9000000000000004
+2023,12,2,12,30,-0.2,1.25,0.036000000000000004,0.63,77,942,507,0,0,-10.700000000000001,77,942,0,507,0.331,45.01,62.82,0.96,0.78,786,0.5,248,4.1000000000000005
+2023,12,2,13,0,-0.1,1.22,0.052000000000000005,0.63,79,917,483,0,7,-9.8,134,745,0,462,0.331,47.99,63.88,0.96,0.78,786,0.5,237,4.2
+2023,12,2,13,30,-0.30000000000000004,1.22,0.052000000000000005,0.63,81,884,445,0,5,-9.8,176,220,0,267,0.332,48.69,65.67,0.97,0.78,786,0.5,229,4.4
+2023,12,2,14,0,-0.4,1.18,0.077,0.63,83,833,393,0,4,-8.8,107,0,0,107,0.332,53.24,68.12,0.97,0.78,786,0.5,221,4.6000000000000005
+2023,12,2,14,30,-0.7000000000000001,1.18,0.077,0.63,79,773,328,0,4,-8.8,91,0,0,91,0.333,54.42,71.17,0.97,0.78,786,0.6000000000000001,216,4.7
+2023,12,2,15,0,-1.1,1.1300000000000001,0.093,0.63,72,687,253,0,5,-7.7,90,13,0,93,0.335,61.06,74.74,0.97,0.78,786,0.6000000000000001,211,4.800000000000001
+2023,12,2,15,30,-1.4000000000000001,1.1300000000000001,0.093,0.63,59,592,174,0,0,-7.7,66,488,0,161,0.336,62.410000000000004,78.75,0.97,0.78,786,0.6000000000000001,211,4.7
+2023,12,2,16,0,-1.8,1.1400000000000001,0.084,0.63,42,442,95,4,7,-6.800000000000001,55,204,64,79,0.338,68.54,83.11,0.97,0.78,785,0.6000000000000001,210,4.6000000000000005
+2023,12,2,16,30,-2.1,1.1400000000000001,0.084,0.63,20,175,27,7,6,-6.800000000000001,17,0,100,17,0.34,70.07000000000001,87.7,0.97,0.78,785,0.6000000000000001,211,4.6000000000000005
+2023,12,2,17,0,-2.4000000000000004,1.19,0.065,0.63,0,0,0,1,6,-6.5,0,0,14,0,0.342,73.59,92.9,0.97,0.68,785,0.6000000000000001,212,4.7
+2023,12,2,17,30,-2.5,1.19,0.065,0.63,0,0,0,0,6,-6.5,0,0,0,0,0.343,74.13,98.09,0.97,0.68,785,0.6000000000000001,216,5.300000000000001
+2023,12,2,18,0,-2.6,1.27,0.045,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.343,75.41,103.45,0.96,0.68,785,0.6000000000000001,220,5.9
+2023,12,2,18,30,-2.9000000000000004,1.27,0.045,0.63,0,0,0,0,6,-6.4,0,0,0,0,0.34400000000000003,77.10000000000001,108.94,0.96,0.68,785,0.6000000000000001,222,5.9
+2023,12,2,19,0,-3.2,1.35,0.031,0.63,0,0,0,0,6,-6.4,0,0,0,0,0.34500000000000003,78.82000000000001,114.53,0.9500000000000001,0.68,785,0.6000000000000001,223,5.9
+2023,12,2,19,30,-3.4000000000000004,1.35,0.031,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.34600000000000003,79.9,120.19,0.9500000000000001,0.68,784,0.6000000000000001,224,5.9
+2023,12,2,20,0,-3.7,1.35,0.027,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.34600000000000003,81.02,125.89,0.9500000000000001,0.68,784,0.6000000000000001,225,6
+2023,12,2,20,30,-3.5,1.35,0.027,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.34600000000000003,79.82000000000001,131.58,0.9500000000000001,0.68,784,0.6000000000000001,226,6.1000000000000005
+2023,12,2,21,0,-3.4000000000000004,1.29,0.028,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.34700000000000003,79.7,137.21,0.96,0.68,784,0.6000000000000001,227,6.2
+2023,12,2,21,30,-3.2,1.29,0.028,0.63,0,0,0,0,7,-6.4,0,0,0,0,0.34700000000000003,78.52,142.73,0.96,0.68,784,0.6000000000000001,225,6
+2023,12,2,22,0,-3.1,1.27,0.026000000000000002,0.63,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.34700000000000003,79.69,148.02,0.9500000000000001,0.68,784,0.7000000000000001,223,5.9
+2023,12,2,22,30,-3,1.27,0.026000000000000002,0.63,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.34700000000000003,79.10000000000001,152.91,0.9500000000000001,0.68,784,0.7000000000000001,223,5.9
+2023,12,2,23,0,-2.9000000000000004,1.29,0.025,0.63,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34800000000000003,80.33,157.13,0.9500000000000001,0.68,784,0.7000000000000001,224,5.9
+2023,12,2,23,30,-2.8000000000000003,1.29,0.025,0.63,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.34800000000000003,79.74,160.19,0.9500000000000001,0.68,784,0.7000000000000001,226,5.9
+2023,12,3,0,0,-2.7,1.28,0.025,0.63,0,0,0,0,6,-5.7,0,0,0,0,0.34900000000000003,80.02,161.51,0.9500000000000001,0.68,784,0.7000000000000001,229,5.9
+2023,12,3,0,30,-2.6,1.28,0.025,0.63,0,0,0,0,6,-5.7,0,0,0,0,0.34900000000000003,79.33,160.72,0.9500000000000001,0.68,783,0.7000000000000001,231,5.7
+2023,12,3,1,0,-2.5,1.27,0.025,0.63,0,0,0,0,6,-5.4,0,0,0,0,0.35000000000000003,80.21000000000001,158.04,0.9500000000000001,0.68,783,0.7000000000000001,234,5.4
+2023,12,3,1,30,-2.5,1.27,0.025,0.63,0,0,0,0,6,-5.4,0,0,0,0,0.35000000000000003,80.21000000000001,154.07,0.9500000000000001,0.68,783,0.7000000000000001,238,5
+2023,12,3,2,0,-2.5,1.26,0.027,0.63,0,0,0,0,7,-5,0,0,0,0,0.35000000000000003,82.83,149.32,0.9500000000000001,0.68,784,0.7000000000000001,243,4.6000000000000005
+2023,12,3,2,30,-2.5,1.26,0.027,0.63,0,0,0,0,6,-5,0,0,0,0,0.34900000000000003,82.83,144.11,0.9500000000000001,0.68,784,0.7000000000000001,248,3.9000000000000004
+2023,12,3,3,0,-2.6,1.23,0.028,0.63,0,0,0,0,6,-4.7,0,0,0,0,0.34800000000000003,85.75,138.64000000000001,0.9500000000000001,0.68,784,0.7000000000000001,252,3.3000000000000003
+2023,12,3,3,30,-2.7,1.23,0.028,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.34700000000000003,86.39,133.03,0.9500000000000001,0.68,784,0.7000000000000001,252,2.6
+2023,12,3,4,0,-2.9000000000000004,1.23,0.027,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.34600000000000003,88.65,127.36,0.9400000000000001,0.68,784,0.7000000000000001,251,1.9000000000000001
+2023,12,3,4,30,-3,1.23,0.027,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.343,89.43,121.66,0.9400000000000001,0.68,785,0.7000000000000001,255,1.6
+2023,12,3,5,0,-3.1,1.24,0.026000000000000002,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.341,90.74,115.99000000000001,0.9400000000000001,0.68,785,0.7000000000000001,260,1.4000000000000001
+2023,12,3,5,30,-3.3000000000000003,1.24,0.026000000000000002,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.338,92.11,110.38,0.9400000000000001,0.68,785,0.7000000000000001,275,1.2000000000000002
+2023,12,3,6,0,-3.4000000000000004,1.25,0.026000000000000002,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.336,92.73,104.87,0.9400000000000001,0.68,786,0.7000000000000001,290,1
+2023,12,3,6,30,-3.5,1.25,0.026000000000000002,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.334,93.42,99.48,0.9400000000000001,0.68,786,0.7000000000000001,304,0.8
+2023,12,3,7,0,-3.6,1.26,0.025,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.332,92.68,94.25,0.9400000000000001,0.68,787,0.7000000000000001,318,0.7000000000000001
+2023,12,3,7,30,-3.3000000000000003,1.26,0.025,0.63,13,195,17,5,7,-4.6000000000000005,6,0,71,6,0.331,90.63,88.91,0.93,0.68,787,0.7000000000000001,335,0.6000000000000001
+2023,12,3,8,0,-3,1.29,0.023,0.63,28,538,81,6,7,-4.7,31,1,86,31,0.33,88.16,84.32000000000001,0.93,0.68,788,0.7000000000000001,352,0.5
+2023,12,3,8,30,-2.4000000000000004,1.29,0.023,0.63,37,699,160,0,6,-4.7,30,1,0,30,0.329,84.32000000000001,79.9,0.93,0.68,788,0.7000000000000001,355,0.8
+2023,12,3,9,0,-1.7000000000000002,1.31,0.022,0.63,45,796,240,0,6,-4.7,44,0,0,44,0.329,79.87,75.8,0.93,0.68,789,0.7000000000000001,357,1.2000000000000002
+2023,12,3,9,30,-1.2000000000000002,1.31,0.022,0.63,50,857,313,0,6,-4.7,61,0,0,61,0.329,76.99,72.13,0.93,0.68,789,0.7000000000000001,349,1.5
+2023,12,3,10,0,-0.7000000000000001,1.32,0.022,0.63,55,897,377,0,7,-5.2,143,22,0,151,0.329,71.45,68.95,0.93,0.68,789,0.7000000000000001,341,1.9000000000000001
+2023,12,3,10,30,-0.1,1.32,0.022,0.63,57,924,428,0,7,-5.2,150,7,0,153,0.329,68.4,66.34,0.93,0.68,789,0.8,332,2
+2023,12,3,11,0,0.4,1.35,0.02,0.63,59,941,466,0,7,-5.2,186,19,0,194,0.328,66.27,64.39,0.93,0.68,789,0.8,323,2.2
+2023,12,3,11,30,0.8,1.35,0.02,0.63,60,950,489,0,7,-5.2,218,34,0,233,0.328,64.39,63.15,0.93,0.68,789,0.8,317,2.2
+2023,12,3,12,0,1.3,1.35,0.02,0.63,61,954,499,0,7,-4.800000000000001,215,27,0,227,0.328,63.85,62.660000000000004,0.93,0.68,789,0.8,311,2.3000000000000003
+2023,12,3,12,30,1.6,1.35,0.02,0.63,61,951,493,0,7,-4.800000000000001,252,66,0,282,0.326,62.49,62.95,0.93,0.68,789,0.8,306,2.2
+2023,12,3,13,0,1.8,1.34,0.019,0.63,58,941,471,0,7,-4.3,220,37,0,236,0.325,63.93,64,0.93,0.68,789,0.9,301,2.1
+2023,12,3,13,30,1.7000000000000002,1.34,0.019,0.63,56,925,435,0,7,-4.3,165,25,0,175,0.323,64.38,65.78,0.92,0.68,789,0.9,288,1.8
+2023,12,3,14,0,1.6,1.33,0.017,0.63,52,902,387,0,7,-3.5,151,23,0,160,0.321,68.8,68.22,0.92,0.68,789,0.9,276,1.4000000000000001
+2023,12,3,14,30,1.1,1.33,0.017,0.63,47,867,326,0,7,-3.5,147,34,0,158,0.319,71.31,71.25,0.92,0.68,789,0.9,247,1.1
+2023,12,3,15,0,0.6000000000000001,1.34,0.015,0.63,42,814,255,0,7,-2.5,50,2,0,51,0.318,79.58,74.81,0.92,0.68,789,1,218,0.9
+2023,12,3,15,30,-0.1,1.34,0.015,0.63,36,730,178,0,7,-2.5,54,4,0,55,0.316,83.82000000000001,78.8,0.92,0.68,790,1,209,1
+2023,12,3,16,0,-0.7000000000000001,1.31,0.015,0.63,28,594,99,5,7,-2.7,32,0,71,32,0.315,86.59,83.16,0.93,0.68,790,1,200,1.2000000000000002
+2023,12,3,16,30,-0.9,1.31,0.015,0.63,16,292,28,7,7,-2.7,10,0,100,10,0.314,87.87,87.74,0.93,0.68,790,1,202,1.5
+2023,12,3,17,0,-1.1,1.31,0.015,0.63,0,0,0,1,4,-2.5,0,0,14,0,0.313,90.49,92.93,0.93,0.65,790,1,203,1.8
+2023,12,3,17,30,-0.9,1.31,0.015,0.63,0,0,0,0,4,-2.5,0,0,0,0,0.312,89.18,98.11,0.93,0.65,790,1.1,208,2.1
+2023,12,3,18,0,-0.8,1.33,0.012,0.63,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.311,92.45,103.46000000000001,0.93,0.65,790,1.1,212,2.4000000000000004
+2023,12,3,18,30,-0.6000000000000001,1.33,0.012,0.63,0,0,0,0,5,-1.9000000000000001,0,0,0,0,0.308,91.12,108.95,0.92,0.65,790,1.1,216,2.6
+2023,12,3,19,0,-0.5,1.35,0.011,0.63,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.305,93.93,114.54,0.92,0.65,790,1.1,219,2.8000000000000003
+2023,12,3,19,30,-0.5,1.35,0.011,0.63,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.304,93.93,120.2,0.93,0.65,790,1.1,223,2.8000000000000003
+2023,12,3,20,0,-0.5,1.28,0.016,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.302,95.71000000000001,125.9,0.9400000000000001,0.65,790,1.1,227,2.8000000000000003
+2023,12,3,20,30,-0.7000000000000001,1.28,0.016,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.301,97.11,131.59,0.9400000000000001,0.65,790,1.1,229,2.6
+2023,12,3,21,0,-0.8,1.26,0.022,0.63,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.301,97.39,137.22,0.9500000000000001,0.65,790,1.1,231,2.3000000000000003
+2023,12,3,21,30,-1,1.26,0.022,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.302,98.95,142.74,0.9500000000000001,0.65,791,1,229,2.1
+2023,12,3,22,0,-1.2000000000000002,1.29,0.024,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.303,99.05,148.04,0.9500000000000001,0.65,791,1,227,1.9000000000000001
+2023,12,3,22,30,-1.4000000000000001,1.29,0.024,0.63,0,0,0,0,6,-1.4000000000000001,0,0,0,0,0.303,100,152.96,0.9400000000000001,0.65,791,1,228,1.8
+2023,12,3,23,0,-1.7000000000000002,1.31,0.021,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.304,100,157.19,0.9400000000000001,0.65,791,0.9,230,1.7000000000000002
+2023,12,3,23,30,-2,1.31,0.021,0.63,0,0,0,0,4,-2,0,0,0,0,0.304,100,160.29,0.93,0.65,791,0.9,232,1.6
+2023,12,4,0,0,-2.4000000000000004,1.37,0.014,0.63,0,0,0,0,4,-2.4000000000000004,0,0,0,0,0.304,100,161.65,0.92,0.65,791,0.9,235,1.5
+2023,12,4,0,30,-2.6,1.37,0.014,0.63,0,0,0,0,4,-2.6,0,0,0,0,0.303,100,160.88,0.91,0.65,792,0.9,233,1.4000000000000001
+2023,12,4,1,0,-2.9000000000000004,1.3900000000000001,0.012,0.63,0,0,0,0,8,-2.9000000000000004,0,0,0,0,0.302,100,158.21,0.9,0.65,792,0.9,232,1.4000000000000001
+2023,12,4,1,30,-3,1.3900000000000001,0.012,0.63,0,0,0,0,4,-3,0,0,0,0,0.302,100,154.23,0.9,0.65,792,0.8,228,1.4000000000000001
+2023,12,4,2,0,-3.2,1.37,0.011,0.63,0,0,0,0,4,-3.2,0,0,0,0,0.301,100,149.48,0.9,0.65,792,0.8,224,1.5
+2023,12,4,2,30,-3.4000000000000004,1.37,0.011,0.63,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.302,100,144.27,0.91,0.65,792,0.8,222,1.5
+2023,12,4,3,0,-3.6,1.36,0.011,0.63,0,0,0,0,4,-3.6,0,0,0,0,0.302,100,138.8,0.91,0.65,792,0.8,221,1.6
+2023,12,4,3,30,-3.7,1.36,0.011,0.63,0,0,0,0,4,-3.7,0,0,0,0,0.303,100,133.19,0.91,0.65,792,0.8,222,1.6
+2023,12,4,4,0,-3.7,1.35,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.304,100,127.51,0.91,0.65,792,0.8,224,1.5
+2023,12,4,4,30,-3.7,1.35,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.305,100,121.82000000000001,0.91,0.65,792,0.8,227,1.5
+2023,12,4,5,0,-3.7,1.34,0.012,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.306,100,116.15,0.91,0.65,793,0.8,230,1.5
+2023,12,4,5,30,-3.6,1.34,0.012,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.307,100,110.54,0.91,0.65,793,0.8,230,1.4000000000000001
+2023,12,4,6,0,-3.5,1.34,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.308,100,105.02,0.92,0.65,793,0.8,231,1.4000000000000001
+2023,12,4,6,30,-3.4000000000000004,1.34,0.012,0.63,0,0,0,0,8,-3.4000000000000004,0,0,0,0,0.309,100,99.63,0.92,0.65,793,0.8,230,1.4000000000000001
+2023,12,4,7,0,-3.4000000000000004,1.36,0.012,0.63,0,0,0,0,8,-3.4000000000000004,0,0,0,0,0.31,100,94.41,0.92,0.65,793,0.8,228,1.4000000000000001
+2023,12,4,7,30,-2.4000000000000004,1.36,0.012,0.63,11,172,14,5,7,-2.6,7,0,71,7,0.311,98.61,89.05,0.91,0.65,793,0.8,227,1.5
+2023,12,4,8,0,-1.5,1.41,0.012,0.63,24,562,78,6,7,-2,36,2,86,36,0.311,96.56,84.48,0.91,0.65,794,0.8,227,1.5
+2023,12,4,8,30,-0.1,1.41,0.012,0.63,32,717,156,1,7,-2,61,11,18,63,0.312,87.19,80.06,0.91,0.65,794,0.8,229,1.7000000000000002
+2023,12,4,9,0,1.2000000000000002,1.43,0.012,0.63,38,808,234,4,4,-0.9,85,9,50,87,0.312,85.65,75.97,0.91,0.65,794,0.8,231,1.9000000000000001
+2023,12,4,9,30,2.4000000000000004,1.43,0.012,0.63,44,865,307,1,7,-0.9,141,18,18,146,0.312,78.62,72.29,0.91,0.65,794,0.8,245,2
+2023,12,4,10,0,3.5,1.41,0.015,0.63,49,902,371,0,7,-0.7000000000000001,159,334,0,278,0.312,73.89,69.11,0.92,0.65,795,0.8,259,2
+2023,12,4,10,30,4.4,1.41,0.015,0.63,53,927,423,0,0,-0.7000000000000001,66,861,0,409,0.312,69.37,66.5,0.92,0.65,795,0.8,275,2.4000000000000004
+2023,12,4,11,0,5.300000000000001,1.35,0.018000000000000002,0.63,57,941,462,0,0,-1.1,138,623,0,406,0.312,63.31,64.54,0.93,0.65,795,0.8,290,2.7
+2023,12,4,11,30,5.7,1.35,0.018000000000000002,0.63,58,952,486,0,8,-1.1,209,302,0,345,0.312,61.51,63.29,0.92,0.65,794,0.8,294,3
+2023,12,4,12,0,6.1000000000000005,1.3800000000000001,0.017,0.63,59,957,496,0,8,-1.6,255,146,0,322,0.312,57.93,62.800000000000004,0.92,0.65,794,0.8,297,3.3000000000000003
+2023,12,4,12,30,6.300000000000001,1.3800000000000001,0.017,0.63,57,956,490,0,4,-1.6,270,99,0,315,0.312,57.14,63.08,0.92,0.65,794,0.8,297,3.4000000000000004
+2023,12,4,13,0,6.5,1.43,0.015,0.63,56,949,470,0,8,-1.9000000000000001,231,288,0,357,0.311,54.81,64.11,0.92,0.65,794,0.8,297,3.4000000000000004
+2023,12,4,13,30,6.4,1.43,0.015,0.63,54,932,435,0,7,-1.9000000000000001,223,162,0,289,0.311,55.18,65.88,0.92,0.65,794,0.8,300,3.4000000000000004
+2023,12,4,14,0,6.4,1.4000000000000001,0.016,0.63,52,907,387,0,7,-2.1,204,57,0,225,0.311,54.67,68.31,0.93,0.65,794,0.8,303,3.4000000000000004
+2023,12,4,14,30,5.6000000000000005,1.4000000000000001,0.016,0.63,48,872,327,0,4,-2.1,121,12,0,125,0.311,57.77,71.33,0.93,0.65,794,0.8,307,2.7
+2023,12,4,15,0,4.800000000000001,1.3900000000000001,0.016,0.63,43,820,257,0,4,-1.2000000000000002,85,60,0,101,0.31,65.18,74.87,0.92,0.65,795,0.8,311,2
+2023,12,4,15,30,3.2,1.3900000000000001,0.016,0.63,36,739,179,0,0,-1.2000000000000002,73,435,0,157,0.309,72.92,78.85000000000001,0.92,0.65,795,0.8,315,1.7000000000000002
+2023,12,4,16,0,1.5,1.4000000000000001,0.015,0.63,28,606,100,5,7,-2.2,62,47,71,68,0.308,76.34,83.2,0.92,0.65,795,0.8,318,1.4000000000000001
+2023,12,4,16,30,0.5,1.4000000000000001,0.015,0.63,16,300,28,6,7,-2.2,17,2,93,17,0.307,82.13,87.77,0.92,0.65,796,0.8,325,1.4000000000000001
+2023,12,4,17,0,-0.5,1.42,0.015,0.63,0,0,0,0,7,-2.8000000000000003,0,0,7,0,0.306,84.57000000000001,92.95,0.92,0.65,796,0.8,332,1.4000000000000001
+2023,12,4,17,30,-0.8,1.42,0.015,0.63,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.306,86.55,98.13,0.92,0.65,797,0.8,336,1.3
+2023,12,4,18,0,-1.2000000000000002,1.42,0.015,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.305,90.83,103.47,0.92,0.65,797,0.7000000000000001,341,1.2000000000000002
+2023,12,4,18,30,-1.3,1.42,0.015,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.305,91.49,108.96000000000001,0.92,0.65,797,0.7000000000000001,339,1.1
+2023,12,4,19,0,-1.4000000000000001,1.42,0.014,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.304,94.3,114.54,0.92,0.65,797,0.7000000000000001,336,1
+2023,12,4,19,30,-1.4000000000000001,1.42,0.014,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.304,94.3,120.2,0.92,0.65,797,0.7000000000000001,333,0.9
+2023,12,4,20,0,-1.4000000000000001,1.42,0.014,0.63,0,0,0,0,7,-2,0,0,0,0,0.303,96.02,125.89,0.92,0.65,798,0.7000000000000001,330,0.7000000000000001
+2023,12,4,20,30,-1.5,1.42,0.014,0.63,0,0,0,0,7,-2,0,0,0,0,0.303,96.73,131.59,0.92,0.65,798,0.7000000000000001,329,0.6000000000000001
+2023,12,4,21,0,-1.7000000000000002,1.42,0.013000000000000001,0.63,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.303,98.8,137.23,0.92,0.65,798,0.7000000000000001,328,0.5
+2023,12,4,21,30,-1.8,1.42,0.013000000000000001,0.63,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.303,99.53,142.75,0.92,0.65,798,0.7000000000000001,341,0.4
+2023,12,4,22,0,-2,1.43,0.013000000000000001,0.63,0,0,0,0,0,-2,0,0,0,0,0.303,100,148.06,0.92,0.65,798,0.8,355,0.30000000000000004
+2023,12,4,22,30,-2.3000000000000003,1.43,0.013000000000000001,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.303,100,152.99,0.92,0.65,798,0.8,206,0.30000000000000004
+2023,12,4,23,0,-2.5,1.42,0.013000000000000001,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.303,100,157.25,0.92,0.65,798,0.8,58,0.4
+2023,12,4,23,30,-2.7,1.42,0.013000000000000001,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.303,100,160.39000000000001,0.92,0.65,798,0.8,76,0.5
+2023,12,5,0,0,-2.9000000000000004,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.302,100,161.77,0.92,0.65,798,0.9,95,0.6000000000000001
+2023,12,5,0,30,-3,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-3,0,0,0,0,0.302,100,161.03,0.92,0.65,798,0.9,103,0.6000000000000001
+2023,12,5,1,0,-3.1,1.37,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,158.37,0.93,0.65,798,0.9,112,0.7000000000000001
+2023,12,5,1,30,-3.1,1.37,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,154.4,0.92,0.65,798,0.9,123,0.7000000000000001
+2023,12,5,2,0,-3.1,1.3800000000000001,0.014,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,149.64000000000001,0.92,0.65,798,0.9,133,0.7000000000000001
+2023,12,5,2,30,-3,1.3800000000000001,0.014,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,100,144.42000000000002,0.92,0.65,798,0.9,146,0.7000000000000001
+2023,12,5,3,0,-2.9000000000000004,1.3800000000000001,0.014,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.303,100,138.95000000000002,0.92,0.65,798,0.9,159,0.7000000000000001
+2023,12,5,3,30,-3,1.3800000000000001,0.014,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,100,133.34,0.92,0.65,798,0.9,169,0.8
+2023,12,5,4,0,-3,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-3,0,0,0,0,0.303,99.97,127.66,0.91,0.65,798,0.8,178,0.8
+2023,12,5,4,30,-3.1,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.303,100,121.97,0.91,0.65,799,0.8,181,0.8
+2023,12,5,5,0,-3.1,1.3900000000000001,0.012,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.303,98.88,116.3,0.91,0.65,799,0.8,183,0.9
+2023,12,5,5,30,-3.2,1.3900000000000001,0.012,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.302,99.62,110.69,0.91,0.65,799,0.8,184,0.9
+2023,12,5,6,0,-3.3000000000000003,1.3900000000000001,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.302,98.21000000000001,105.18,0.91,0.65,799,0.8,185,0.9
+2023,12,5,6,30,-3.4000000000000004,1.3900000000000001,0.012,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.301,98.95,99.79,0.91,0.65,799,0.8,185,0.9
+2023,12,5,7,0,-3.5,1.3900000000000001,0.011,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.301,97.45,94.57000000000001,0.91,0.65,799,0.8,186,1
+2023,12,5,7,30,-2.5,1.3900000000000001,0.011,0.63,11,169,13,0,0,-3.8000000000000003,11,169,0,13,0.3,90.47,89.19,0.9,0.65,799,0.8,186,1.1
+2023,12,5,8,0,-1.5,1.4000000000000001,0.011,0.63,23,558,75,0,0,-3.6,23,558,0,75,0.3,85.71000000000001,84.64,0.9,0.65,799,0.8,187,1.3
+2023,12,5,8,30,-0.1,1.4000000000000001,0.011,0.63,31,718,153,0,0,-3.6,31,718,0,153,0.3,77.38,80.22,0.9,0.65,799,0.8,189,1.8
+2023,12,5,9,0,1.3,1.41,0.01,0.63,37,811,231,0,0,-2.7,37,811,0,231,0.3,74.71000000000001,76.13,0.9,0.65,800,0.8,191,2.3000000000000003
+2023,12,5,9,30,2.5,1.41,0.01,0.63,41,872,304,0,0,-2.7,41,872,0,304,0.3,68.58,72.45,0.9,0.65,800,0.8,199,2.4000000000000004
+2023,12,5,10,0,3.8000000000000003,1.41,0.01,0.63,44,912,367,0,0,-1.8,44,912,0,367,0.3,66.68,69.27,0.9,0.65,800,0.8,207,2.6
+2023,12,5,10,30,4.800000000000001,1.41,0.01,0.63,48,938,420,0,0,-1.8,48,938,0,420,0.3,62.1,66.66,0.9,0.65,799,0.7000000000000001,214,2.8000000000000003
+2023,12,5,11,0,5.9,1.32,0.012,0.63,51,954,459,0,0,-1.7000000000000002,51,954,0,459,0.3,58.18,64.69,0.9,0.65,799,0.7000000000000001,221,3
+2023,12,5,11,30,6.4,1.32,0.012,0.63,53,964,484,0,0,-1.7000000000000002,53,964,0,484,0.3,56.21,63.43,0.9,0.65,799,0.7000000000000001,223,3
+2023,12,5,12,0,6.9,1.32,0.012,0.63,53,969,494,0,0,-1.9000000000000001,53,969,0,494,0.3,53.4,62.93,0.9,0.65,799,0.7000000000000001,225,3
+2023,12,5,12,30,7.2,1.32,0.012,0.63,53,967,489,0,0,-1.9000000000000001,53,967,0,489,0.301,52.32,63.190000000000005,0.9,0.65,799,0.7000000000000001,225,2.9000000000000004
+2023,12,5,13,0,7.5,1.31,0.012,0.63,52,959,469,0,0,-2.1,52,959,0,469,0.301,50.6,64.22,0.9,0.65,798,0.7000000000000001,226,2.8000000000000003
+2023,12,5,13,30,7.4,1.31,0.012,0.63,51,942,435,0,0,-2.1,51,942,0,435,0.301,50.94,65.97,0.9,0.65,798,0.7000000000000001,225,2.6
+2023,12,5,14,0,7.4,1.1300000000000001,0.015,0.63,51,914,388,0,0,-2,51,914,0,388,0.301,51.27,68.39,0.9,0.65,798,0.7000000000000001,225,2.3000000000000003
+2023,12,5,14,30,6.4,1.1300000000000001,0.015,0.63,47,881,328,0,0,-2,47,881,0,328,0.3,54.9,71.4,0.9,0.65,798,0.7000000000000001,220,1.7000000000000002
+2023,12,5,15,0,5.4,1.1500000000000001,0.015,0.63,42,831,258,0,0,-0.5,42,831,0,258,0.299,65.77,74.93,0.9,0.65,798,0.7000000000000001,216,1
+2023,12,5,15,30,4.1000000000000005,1.1500000000000001,0.015,0.63,36,751,181,0,0,-0.5,36,751,0,181,0.299,72,78.9,0.9,0.65,798,0.6000000000000001,212,1.1
+2023,12,5,16,0,2.8000000000000003,1.1500000000000001,0.015,0.63,28,617,101,0,0,-2.9000000000000004,28,617,0,101,0.298,66.14,83.23,0.9,0.65,798,0.6000000000000001,208,1.2000000000000002
+2023,12,5,16,30,2.1,1.1500000000000001,0.015,0.63,17,306,29,4,7,-2.9000000000000004,19,111,64,23,0.298,69.59,87.79,0.9,0.65,799,0.6000000000000001,207,1.3
+2023,12,5,17,0,1.4000000000000001,1.16,0.014,0.63,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.297,68.48,92.97,0.9,0.65,799,0.6000000000000001,206,1.4000000000000001
+2023,12,5,17,30,1.1,1.16,0.014,0.63,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.296,69.97,98.14,0.9,0.65,799,0.6000000000000001,208,1.4000000000000001
+2023,12,5,18,0,0.9,1.17,0.014,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.295,69.46000000000001,103.48,0.9,0.65,799,0.6000000000000001,211,1.3
+2023,12,5,18,30,0.6000000000000001,1.17,0.014,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.294,70.98,108.96000000000001,0.9,0.65,799,0.5,215,1.3
+2023,12,5,19,0,0.30000000000000004,1.17,0.013000000000000001,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.293,71.12,114.54,0.9,0.65,799,0.5,218,1.3
+2023,12,5,19,30,0.1,1.17,0.013000000000000001,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.292,72.15,120.2,0.89,0.65,799,0.5,221,1.3
+2023,12,5,20,0,-0.1,1.17,0.013000000000000001,0.63,0,0,0,0,7,-4.5,0,0,0,0,0.291,72.16,125.89,0.89,0.65,799,0.5,224,1.2000000000000002
+2023,12,5,20,30,-0.30000000000000004,1.17,0.013000000000000001,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.29,73.22,131.58,0.89,0.65,799,0.5,225,1.2000000000000002
+2023,12,5,21,0,-0.4,1.17,0.012,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.29,73.13,137.23,0.89,0.65,799,0.5,226,1.2000000000000002
+2023,12,5,21,30,-0.5,1.17,0.012,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.289,73.66,142.76,0.89,0.65,799,0.5,223,1.2000000000000002
+2023,12,5,22,0,-0.6000000000000001,1.17,0.012,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.28800000000000003,73.67,148.08,0.89,0.65,799,0.5,221,1.1
+2023,12,5,22,30,-0.8,1.17,0.012,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.28700000000000003,74.75,153.02,0.89,0.65,799,0.4,216,1.1
+2023,12,5,23,0,-0.9,1.17,0.012,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28600000000000003,74.62,157.31,0.89,0.65,798,0.4,212,1.1
+2023,12,5,23,30,-1.1,1.17,0.012,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28600000000000003,75.72,160.47,0.89,0.65,798,0.4,208,1.2000000000000002
+2023,12,6,0,0,-1.3,1.17,0.012,0.63,0,0,0,0,0,-5,0,0,0,0,0.28500000000000003,76.09,161.89000000000001,0.89,0.65,798,0.4,203,1.2000000000000002
+2023,12,6,0,30,-1.6,1.17,0.012,0.63,0,0,0,0,0,-5,0,0,0,0,0.28400000000000003,77.79,161.17000000000002,0.89,0.65,798,0.4,200,1.2000000000000002
+2023,12,6,1,0,-1.8,1.18,0.012,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28300000000000003,78.02,158.52,0.89,0.65,798,0.4,197,1.3
+2023,12,6,1,30,-2,1.18,0.012,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28200000000000003,79.17,154.55,0.89,0.65,798,0.4,196,1.3
+2023,12,6,2,0,-2.2,1.2,0.012,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.281,79.36,149.79,0.89,0.65,798,0.4,195,1.3
+2023,12,6,2,30,-2.4000000000000004,1.2,0.012,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28,80.54,144.58,0.89,0.65,798,0.4,196,1.3
+2023,12,6,3,0,-2.5,1.21,0.011,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,80.16,139.1,0.89,0.65,798,0.4,198,1.3
+2023,12,6,3,30,-2.6,1.21,0.011,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,80.65,133.49,0.89,0.65,797,0.4,200,1.3
+2023,12,6,4,0,-2.7,1.23,0.011,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.278,80.31,127.81,0.89,0.65,797,0.4,202,1.3
+2023,12,6,4,30,-2.8000000000000003,1.23,0.011,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.278,80.91,122.12,0.89,0.65,797,0.4,205,1.3
+2023,12,6,5,0,-3,1.24,0.011,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.278,81.33,116.45,0.89,0.65,797,0.4,207,1.3
+2023,12,6,5,30,-3.1,1.24,0.011,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.278,81.94,110.84,0.88,0.65,797,0.4,209,1.3
+2023,12,6,6,0,-3.2,1.26,0.011,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.278,81.7,105.33,0.88,0.65,797,0.4,210,1.3
+2023,12,6,6,30,-3.2,1.26,0.011,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.278,81.7,99.94,0.88,0.65,797,0.4,211,1.3
+2023,12,6,7,0,-3.3000000000000003,1.28,0.01,0.63,0,0,0,0,0,-6,0,0,0,0,0.278,81.55,94.72,0.88,0.65,797,0.4,212,1.3
+2023,12,6,7,30,-2.4000000000000004,1.28,0.01,0.63,11,185,13,0,0,-6,11,185,0,13,0.277,76.28,89.33,0.88,0.65,797,0.4,211,1.2000000000000002
+2023,12,6,8,0,-1.6,1.3,0.01,0.63,23,603,78,0,0,-5.4,23,603,0,78,0.277,75.27,84.79,0.88,0.65,797,0.30000000000000004,209,1.1
+2023,12,6,8,30,0,1.3,0.01,0.63,31,762,158,0,0,-5.4,31,762,0,158,0.277,66.97,80.37,0.88,0.65,797,0.30000000000000004,207,1.6
+2023,12,6,9,0,1.7000000000000002,1.32,0.01,0.63,37,853,239,0,0,-4.7,37,853,0,239,0.277,62.53,76.28,0.88,0.65,797,0.30000000000000004,206,2
+2023,12,6,9,30,2.8000000000000003,1.32,0.01,0.63,41,910,313,0,0,-4.7,41,910,0,313,0.276,57.75,72.60000000000001,0.88,0.65,796,0.4,210,2.4000000000000004
+2023,12,6,10,0,4,1.33,0.01,0.63,45,948,378,0,0,-4.4,45,948,0,378,0.275,54.46,69.42,0.88,0.65,796,0.4,215,2.7
+2023,12,6,10,30,5,1.33,0.01,0.63,47,972,430,0,0,-4.4,47,972,0,430,0.275,50.79,66.8,0.88,0.65,796,0.4,216,3.2
+2023,12,6,11,0,6,1.33,0.01,0.63,49,986,468,0,0,-4.5,49,986,0,468,0.274,47.01,64.83,0.88,0.65,795,0.4,218,3.6
+2023,12,6,11,30,6.5,1.33,0.01,0.63,50,996,493,0,0,-4.5,50,996,0,493,0.273,45.42,63.57,0.87,0.65,795,0.4,217,3.9000000000000004
+2023,12,6,12,0,7,1.34,0.01,0.63,50,1000,503,0,0,-4.800000000000001,50,1000,0,503,0.273,42.72,63.050000000000004,0.87,0.65,794,0.4,217,4.2
+2023,12,6,12,30,7.2,1.34,0.01,0.63,50,998,498,0,0,-4.800000000000001,50,998,0,498,0.273,42.14,63.31,0.87,0.65,794,0.4,216,4.3
+2023,12,6,13,0,7.4,1.36,0.01,0.63,49,990,478,0,0,-4.9,49,990,0,478,0.272,41.26,64.32000000000001,0.87,0.65,793,0.4,216,4.4
+2023,12,6,13,30,7.2,1.36,0.01,0.63,48,975,444,0,0,-4.9,48,975,0,444,0.272,41.83,66.06,0.88,0.65,793,0.4,216,4.2
+2023,12,6,14,0,7,1.33,0.011,0.63,47,951,396,0,0,-4.7,47,951,0,396,0.272,43.09,68.46000000000001,0.89,0.65,792,0.4,215,4
+2023,12,6,14,30,5.9,1.33,0.011,0.63,43,917,335,0,0,-4.7,43,917,0,335,0.273,46.47,71.46000000000001,0.89,0.65,792,0.4,216,2.9000000000000004
+2023,12,6,15,0,4.800000000000001,1.35,0.012,0.63,40,865,264,0,0,-3.1,40,865,0,264,0.273,56.550000000000004,74.98,0.89,0.65,792,0.4,216,1.9000000000000001
+2023,12,6,15,30,2.7,1.35,0.012,0.63,34,785,185,0,0,-3.1,34,785,0,185,0.273,65.54,78.94,0.89,0.65,792,0.4,214,1.7000000000000002
+2023,12,6,16,0,0.5,1.37,0.012,0.63,26,652,103,0,0,-4.4,26,652,0,103,0.274,69.51,83.26,0.89,0.65,791,0.4,213,1.5
+2023,12,6,16,30,-0.5,1.37,0.012,0.63,17,332,30,0,0,-4.4,17,332,0,30,0.274,74.73,87.81,0.89,0.65,791,0.4,210,1.5
+2023,12,6,17,0,-1.5,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.275,74.63,92.98,0.89,0.65,791,0.4,208,1.6
+2023,12,6,17,30,-1.8,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.276,76.3,98.14,0.89,0.65,791,0.4,206,1.6
+2023,12,6,18,0,-2.1,1.4000000000000001,0.014,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.276,77.61,103.48,0.9,0.65,791,0.4,203,1.6
+2023,12,6,18,30,-2.4000000000000004,1.4000000000000001,0.014,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.276,79.35000000000001,108.95,0.9,0.65,791,0.4,201,1.6
+2023,12,6,19,0,-2.6,1.41,0.015,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.277,80.17,114.53,0.9,0.65,790,0.4,200,1.7000000000000002
+2023,12,6,19,30,-2.7,1.41,0.015,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.277,80.76,120.18,0.91,0.65,790,0.4,197,1.8
+2023,12,6,20,0,-2.7,1.41,0.016,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.277,80.72,125.88000000000001,0.91,0.65,790,0.4,195,1.9000000000000001
+2023,12,6,20,30,-2.6,1.41,0.016,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.277,80.12,131.57,0.91,0.65,790,0.5,194,2
+2023,12,6,21,0,-2.4000000000000004,1.4000000000000001,0.017,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.277,78.93,137.22,0.92,0.65,789,0.5,193,2.1
+2023,12,6,21,30,-2.3000000000000003,1.4000000000000001,0.017,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.277,78.35000000000001,142.75,0.92,0.65,789,0.6000000000000001,193,2.2
+2023,12,6,22,0,-2.1,1.3900000000000001,0.018000000000000002,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.277,77.2,148.08,0.92,0.65,789,0.7000000000000001,193,2.2
+2023,12,6,22,30,-1.9000000000000001,1.3900000000000001,0.018000000000000002,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.278,75.98,153.04,0.92,0.65,788,0.8,193,2.3000000000000003
+2023,12,6,23,0,-1.7000000000000002,1.35,0.019,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,75.17,157.35,0.92,0.65,788,0.8,193,2.3000000000000003
+2023,12,6,23,30,-1.5,1.35,0.019,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.279,74.08,160.55,0.93,0.65,788,0.8,192,2.3000000000000003
+2023,12,7,0,0,-1.3,1.33,0.021,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.28,72.99,162.01,0.93,0.65,787,0.9,191,2.4000000000000004
+2023,12,7,0,30,-1.2000000000000002,1.33,0.021,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.28,72.46000000000001,161.31,0.93,0.65,787,0.9,191,2.4000000000000004
+2023,12,7,1,0,-1.2000000000000002,1.35,0.021,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.281,72.08,158.67000000000002,0.92,0.65,786,0.9,191,2.5
+2023,12,7,1,30,-1.1,1.35,0.021,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.281,71.55,154.71,0.92,0.65,786,0.8,191,2.5
+2023,12,7,2,0,-1,1.34,0.021,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.28200000000000003,70.57000000000001,149.94,0.92,0.65,786,0.8,191,2.5
+2023,12,7,2,30,-0.9,1.34,0.021,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.28400000000000003,69.97,144.73,0.92,0.65,785,0.8,192,2.5
+2023,12,7,3,0,-0.8,1.32,0.022,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.28600000000000003,69.12,139.25,0.92,0.65,785,0.8,193,2.6
+2023,12,7,3,30,-0.7000000000000001,1.32,0.022,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.289,68.62,133.64000000000001,0.92,0.65,785,0.8,194,2.7
+2023,12,7,4,0,-0.7000000000000001,1.31,0.025,0.63,0,0,0,0,5,-5.9,0,0,0,0,0.292,67.95,127.96000000000001,0.92,0.65,784,0.8,196,2.8000000000000003
+2023,12,7,4,30,-0.8,1.31,0.025,0.63,0,0,0,0,4,-5.9,0,0,0,0,0.294,68.44,122.26,0.92,0.65,784,0.8,198,3
+2023,12,7,5,0,-1,1.27,0.028,0.63,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.295,68.11,116.60000000000001,0.93,0.65,784,0.7000000000000001,200,3.1
+2023,12,7,5,30,-1.2000000000000002,1.27,0.028,0.63,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.297,69.11,110.99000000000001,0.93,0.65,784,0.7000000000000001,203,3.3000000000000003
+2023,12,7,6,0,-1.3,1.24,0.027,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.298,68.66,105.48,0.93,0.65,784,0.7000000000000001,205,3.4000000000000004
+2023,12,7,6,30,-1.4000000000000001,1.24,0.027,0.63,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.299,69.17,100.09,0.92,0.65,784,0.6000000000000001,210,3.5
+2023,12,7,7,0,-1.4000000000000001,1.24,0.026000000000000002,0.63,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.3,69.31,94.87,0.92,0.65,785,0.6000000000000001,214,3.5
+2023,12,7,7,30,-0.6000000000000001,1.24,0.026000000000000002,0.63,10,135,11,1,0,-6.300000000000001,9,102,18,10,0.3,65.37,89.48,0.93,0.65,785,0.6000000000000001,222,3.8000000000000003
+2023,12,7,8,0,0.2,1.25,0.028,0.63,27,501,71,2,0,-5.6000000000000005,35,353,32,66,0.299,64.91,84.94,0.93,0.65,785,0.6000000000000001,229,4.1000000000000005
+2023,12,7,8,30,1.4000000000000001,1.25,0.028,0.63,38,678,150,0,0,-5.6000000000000005,38,554,0,129,0.298,59.54,80.52,0.93,0.65,785,0.6000000000000001,234,4.4
+2023,12,7,9,0,2.6,1.27,0.027,0.63,46,784,230,2,4,-4.800000000000001,94,150,21,129,0.298,58.29,76.43,0.93,0.65,785,0.6000000000000001,239,4.7
+2023,12,7,9,30,3.7,1.27,0.027,0.63,51,857,305,1,4,-4.800000000000001,130,20,14,136,0.298,53.94,72.75,0.92,0.65,785,0.6000000000000001,245,4.9
+2023,12,7,10,0,4.800000000000001,1.29,0.022,0.63,54,908,371,1,4,-4.2,178,56,18,198,0.297,51.980000000000004,69.56,0.92,0.65,785,0.5,251,5.1000000000000005
+2023,12,7,10,30,5.4,1.29,0.022,0.63,56,939,424,2,4,-4.2,176,24,21,185,0.298,49.86,66.94,0.91,0.65,785,0.5,255,5.5
+2023,12,7,11,0,6.1000000000000005,1.23,0.018000000000000002,0.63,57,964,465,0,4,-5.4,188,3,0,189,0.299,43.39,64.97,0.91,0.65,785,0.5,259,5.9
+2023,12,7,11,30,6.2,1.23,0.018000000000000002,0.63,58,981,493,0,4,-5.4,241,36,0,257,0.3,43.1,63.690000000000005,0.91,0.65,785,0.4,258,6.1000000000000005
+2023,12,7,12,0,6.300000000000001,1.17,0.016,0.63,57,990,504,0,5,-7.7,284,216,14,381,0.301,35.88,63.17,0.91,0.65,785,0.4,257,6.300000000000001
+2023,12,7,12,30,6.2,1.17,0.016,0.63,57,988,499,0,5,-7.7,284,220,14,382,0.302,36.13,63.410000000000004,0.91,0.65,785,0.4,257,6.2
+2023,12,7,13,0,6.2,1.17,0.015,0.63,54,981,478,0,7,-8.9,194,488,11,405,0.303,32.97,64.41,0.91,0.65,785,0.4,256,6.1000000000000005
+2023,12,7,13,30,5.9,1.17,0.015,0.63,53,964,443,0,0,-8.9,55,958,0,443,0.303,33.660000000000004,66.13,0.91,0.65,785,0.4,257,5.800000000000001
+2023,12,7,14,0,5.6000000000000005,1.19,0.015,0.63,51,938,394,0,0,-9.200000000000001,51,938,0,394,0.304,33.65,68.52,0.92,0.65,784,0.5,259,5.5
+2023,12,7,14,30,4.9,1.19,0.015,0.63,47,902,333,0,0,-9.200000000000001,47,902,0,333,0.305,35.37,71.51,0.92,0.65,785,0.5,262,4.6000000000000005
+2023,12,7,15,0,4.1000000000000005,1.21,0.015,0.63,43,849,262,0,0,-8.5,43,849,0,262,0.305,39.56,75.02,0.92,0.65,785,0.5,265,3.7
+2023,12,7,15,30,2.1,1.21,0.015,0.63,36,768,183,0,0,-8.5,36,768,0,183,0.307,45.56,78.97,0.92,0.65,785,0.5,270,2.9000000000000004
+2023,12,7,16,0,0.1,1.22,0.015,0.63,28,632,102,0,0,-7.800000000000001,28,632,0,102,0.308,55.17,83.28,0.92,0.65,785,0.5,275,2
+2023,12,7,16,30,-1.1,1.22,0.015,0.63,17,316,29,1,0,-7.800000000000001,17,304,14,29,0.309,60.21,87.82000000000001,0.92,0.65,785,0.5,280,1.9000000000000001
+2023,12,7,17,0,-2.2,1.23,0.015,0.63,0,0,0,0,7,-8.6,0,0,0,0,0.31,61.68,92.99,0.92,0.1,785,0.5,286,1.8
+2023,12,7,17,30,-2.1,1.23,0.015,0.63,0,0,0,0,6,-8.6,0,0,0,0,0.31,61.22,98.14,0.92,0.1,785,0.5,290,1.8
+2023,12,7,18,0,-2,1.23,0.016,0.63,0,0,0,0,6,-8.3,0,0,0,0,0.31,61.9,103.47,0.93,0.1,786,0.5,294,1.7000000000000002
+2023,12,7,18,30,-2,1.23,0.016,0.63,0,0,0,0,7,-8.3,0,0,0,0,0.311,61.9,108.94,0.93,0.1,786,0.4,297,1.6
+2023,12,7,19,0,-2,1.22,0.017,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.312,62.870000000000005,114.52,0.93,0.1,786,0.4,300,1.5
+2023,12,7,19,30,-2.1,1.22,0.017,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.315,63.34,120.17,0.93,0.1,786,0.4,302,1.4000000000000001
+2023,12,7,20,0,-2.2,1.21,0.017,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.317,64.81,125.86,0.93,0.1,786,0.4,304,1.2000000000000002
+2023,12,7,20,30,-2.2,1.21,0.017,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.319,64.81,131.55,0.93,0.1,786,0.4,303,1.1
+2023,12,7,21,0,-2.2,1.19,0.016,0.63,0,0,0,0,6,-7.9,0,0,0,0,0.322,64.93,137.20000000000002,0.93,0.1,785,0.4,302,1
+2023,12,7,21,30,-2.1,1.19,0.016,0.63,0,0,0,0,6,-7.9,0,0,0,0,0.324,64.45,142.74,0.93,0.1,785,0.4,295,1
+2023,12,7,22,0,-1.9000000000000001,1.18,0.017,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.325,62.620000000000005,148.08,0.93,0.1,785,0.4,289,0.9
+2023,12,7,22,30,-1.7000000000000002,1.18,0.017,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.326,61.7,153.05,0.93,0.1,785,0.4,278,0.8
+2023,12,7,23,0,-1.6,1.19,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.327,59.95,157.39000000000001,0.92,0.1,785,0.4,267,0.7000000000000001
+2023,12,7,23,30,-1.7000000000000002,1.19,0.015,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.329,60.39,160.62,0.92,0.1,785,0.4,250,0.6000000000000001
+2023,12,8,0,0,-1.8,1.22,0.013000000000000001,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.33,58.480000000000004,162.11,0.91,0.1,784,0.4,234,0.6000000000000001
+2023,12,8,0,30,-2,1.22,0.013000000000000001,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.332,59.34,161.44,0.91,0.1,784,0.4,215,0.6000000000000001
+2023,12,8,1,0,-2.2,1.22,0.012,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.334,59.2,158.82,0.91,0.1,784,0.4,196,0.6000000000000001
+2023,12,8,1,30,-2.3000000000000003,1.22,0.012,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.335,59.64,154.85,0.91,0.1,784,0.4,187,0.7000000000000001
+2023,12,8,2,0,-2.4000000000000004,1.21,0.012,0.63,0,0,0,0,0,-9,0,0,0,0,0.335,60.4,150.09,0.91,0.1,784,0.4,177,0.7000000000000001
+2023,12,8,2,30,-2.6,1.21,0.012,0.63,0,0,0,0,7,-9,0,0,0,0,0.336,61.22,144.87,0.91,0.1,783,0.4,171,0.8
+2023,12,8,3,0,-2.8000000000000003,1.2,0.012,0.63,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.336,63.7,139.4,0.91,0.1,783,0.4,164,0.8
+2023,12,8,3,30,-3,1.2,0.012,0.63,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.337,64.65,133.78,0.92,0.1,783,0.4,162,0.8
+2023,12,8,4,0,-3.3000000000000003,1.17,0.016,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.338,68.07000000000001,128.1,0.93,0.1,783,0.5,161,0.8
+2023,12,8,4,30,-3.3000000000000003,1.17,0.016,0.63,0,0,0,0,7,-8.4,0,0,0,0,0.34,68.07000000000001,122.41,0.9400000000000001,0.1,783,0.5,173,0.8
+2023,12,8,5,0,-3.3000000000000003,1.12,0.023,0.63,0,0,0,0,6,-7.7,0,0,0,0,0.341,71.73,116.74000000000001,0.9500000000000001,0.1,783,0.5,185,0.7000000000000001
+2023,12,8,5,30,-3.3000000000000003,1.12,0.023,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.342,71.73,111.14,0.9500000000000001,0.1,783,0.5,203,0.8
+2023,12,8,6,0,-3.4000000000000004,1.09,0.029,0.63,0,0,0,0,6,-6.800000000000001,0,0,0,0,0.34400000000000003,77.26,105.62,0.96,0.1,783,0.6000000000000001,220,0.8
+2023,12,8,6,30,-3.4000000000000004,1.09,0.029,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.34400000000000003,77.26,100.24000000000001,0.96,0.1,783,0.6000000000000001,225,1.1
+2023,12,8,7,0,-3.4000000000000004,1.09,0.033,0.63,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.34400000000000003,81.71000000000001,95.02,0.96,0.1,783,0.6000000000000001,230,1.4000000000000001
+2023,12,8,7,30,-3.4000000000000004,1.09,0.033,0.63,9,115,10,4,7,-6.1000000000000005,5,0,57,5,0.34400000000000003,81.71000000000001,89.60000000000001,0.96,0.1,783,0.6000000000000001,238,1.8
+2023,12,8,8,0,-3.4000000000000004,1.12,0.037,0.63,28,461,67,7,7,-5.4,30,2,100,30,0.34500000000000003,86.01,85.09,0.96,0.1,783,0.6000000000000001,247,2.2
+2023,12,8,8,30,-3.1,1.12,0.037,0.63,38,643,142,1,7,-5.4,77,122,14,97,0.34600000000000003,84.10000000000001,80.67,0.96,0.1,783,0.6000000000000001,261,2.8000000000000003
+2023,12,8,9,0,-2.8000000000000003,1.1500000000000001,0.04,0.63,45,748,219,0,7,-5.2,95,23,0,100,0.34700000000000003,83.7,76.58,0.9500000000000001,0.1,783,0.6000000000000001,275,3.3000000000000003
+2023,12,8,9,30,-2.3000000000000003,1.1500000000000001,0.04,0.63,51,822,293,0,7,-5.2,147,66,0,166,0.35000000000000003,80.66,72.89,0.9500000000000001,0.1,783,0.6000000000000001,289,4.2
+2023,12,8,10,0,-1.9000000000000001,1.17,0.037,0.63,54,874,357,0,7,-6,167,61,0,188,0.352,73.39,69.7,0.9500000000000001,0.1,783,0.5,304,5
+2023,12,8,10,30,-1.6,1.17,0.037,0.63,56,912,411,0,7,-6,169,49,0,188,0.354,71.79,67.08,0.9400000000000001,0.1,783,0.5,310,5.6000000000000005
+2023,12,8,11,0,-1.4000000000000001,1.2,0.029,0.63,55,939,451,0,6,-7.800000000000001,150,16,0,157,0.355,61.67,65.09,0.9400000000000001,0.1,783,0.5,316,6.1000000000000005
+2023,12,8,11,30,-1.2000000000000002,1.2,0.029,0.63,55,957,477,0,6,-7.800000000000001,139,9,0,143,0.355,60.77,63.81,0.93,0.1,783,0.5,315,6.300000000000001
+2023,12,8,12,0,-1.1,1.21,0.022,0.63,53,974,491,0,6,-9.8,155,12,0,160,0.355,51.75,63.28,0.92,0.1,783,0.4,313,6.4
+2023,12,8,12,30,-1.1,1.21,0.022,0.63,52,976,487,0,6,-9.8,145,8,0,149,0.356,51.75,63.51,0.92,0.1,783,0.4,312,6.300000000000001
+2023,12,8,13,0,-1,1.22,0.018000000000000002,0.63,49,972,468,0,6,-11.3,115,3,0,116,0.357,45.39,64.49,0.92,0.1,783,0.4,311,6.2
+2023,12,8,13,30,-1.1,1.22,0.018000000000000002,0.63,47,958,434,0,6,-11.3,103,3,0,104,0.359,45.730000000000004,66.2,0.92,0.1,783,0.4,311,6
+2023,12,8,14,0,-1.3,1.23,0.017,0.63,46,934,387,0,6,-12.100000000000001,76,1,0,76,0.36,43.68,68.58,0.92,0.1,784,0.4,312,5.9
+2023,12,8,14,30,-1.7000000000000002,1.23,0.017,0.63,43,899,327,0,6,-12.100000000000001,66,3,0,67,0.362,44.99,71.56,0.92,0.1,784,0.4,313,5.7
+2023,12,8,15,0,-2.1,1.23,0.017,0.63,39,846,257,0,7,-12.200000000000001,90,12,0,93,0.363,45.82,75.05,0.92,0.1,784,0.4,314,5.5
+2023,12,8,15,30,-2.6,1.23,0.017,0.63,34,763,180,0,7,-12.200000000000001,59,6,0,60,0.364,47.61,78.99,0.92,0.1,785,0.4,314,5.1000000000000005
+2023,12,8,16,0,-3.2,1.24,0.018000000000000002,0.63,27,627,100,6,7,-12,36,2,86,36,0.365,50.71,83.29,0.92,0.1,785,0.4,315,4.7
+2023,12,8,16,30,-3.6,1.24,0.018000000000000002,0.63,17,311,29,6,7,-12,15,1,86,15,0.366,52.31,87.82000000000001,0.92,0.1,786,0.4,315,4.4
+2023,12,8,17,0,-4,1.26,0.018000000000000002,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.366,55.52,92.98,0.92,0.79,786,0.4,315,4.1000000000000005
+2023,12,8,17,30,-4.3,1.26,0.018000000000000002,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.365,56.86,98.13,0.92,0.79,787,0.4,315,4
+2023,12,8,18,0,-4.5,1.27,0.018000000000000002,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.365,59.46,103.46000000000001,0.92,0.79,787,0.4,316,3.9000000000000004
+2023,12,8,18,30,-4.800000000000001,1.27,0.018000000000000002,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.363,60.82,108.92,0.92,0.79,787,0.4,317,3.9000000000000004
+2023,12,8,19,0,-5.1000000000000005,1.27,0.018000000000000002,0.63,0,0,0,0,7,-11,0,0,0,0,0.362,63.370000000000005,114.49000000000001,0.92,0.79,788,0.4,318,3.8000000000000003
+2023,12,8,19,30,-5.4,1.27,0.018000000000000002,0.63,0,0,0,0,7,-11,0,0,0,0,0.362,64.82000000000001,120.14,0.92,0.79,788,0.4,319,3.8000000000000003
+2023,12,8,20,0,-5.7,1.26,0.019,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.361,66.94,125.83,0.92,0.79,788,0.4,321,3.8000000000000003
+2023,12,8,20,30,-5.800000000000001,1.26,0.019,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.36,67.45,131.53,0.92,0.79,788,0.4,322,4
+2023,12,8,21,0,-6,1.24,0.023,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.36,69.27,137.18,0.93,0.79,789,0.4,324,4.1000000000000005
+2023,12,8,21,30,-6.1000000000000005,1.24,0.023,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.36,69.8,142.73,0.93,0.79,789,0.4,324,4.3
+2023,12,8,22,0,-6.2,1.2,0.028,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.359,71.75,148.07,0.9400000000000001,0.79,789,0.4,325,4.6000000000000005
+2023,12,8,22,30,-6.2,1.2,0.028,0.63,0,0,0,0,5,-10.5,0,0,0,0,0.36,71.84,153.06,0.9500000000000001,0.79,790,0.4,328,4.5
+2023,12,8,23,0,-6.300000000000001,1.17,0.038,0.63,0,0,0,0,5,-10,0,0,0,0,0.36,75.06,157.42000000000002,0.96,0.79,790,0.5,331,4.5
+2023,12,8,23,30,-6.300000000000001,1.17,0.038,0.63,0,0,0,0,8,-10,0,0,0,0,0.36,75.06,160.67000000000002,0.96,0.79,790,0.5,335,4.4
+2023,12,9,0,0,-6.2,1.16,0.044,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.361,78.01,162.21,0.96,0.79,790,0.5,340,4.3
+2023,12,9,0,30,-6.2,1.16,0.044,0.63,0,0,0,0,7,-9.4,0,0,0,0,0.361,78.11,161.57,0.96,0.79,791,0.5,347,4.2
+2023,12,9,1,0,-6.1000000000000005,1.1500000000000001,0.041,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.362,80.91,158.96,0.96,0.79,791,0.5,355,4.1000000000000005
+2023,12,9,1,30,-6,1.1500000000000001,0.041,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.363,80.39,155,0.96,0.79,792,0.5,182,3.8000000000000003
+2023,12,9,2,0,-5.9,1.17,0.035,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.364,81.69,150.24,0.96,0.79,792,0.5,8,3.6
+2023,12,9,2,30,-5.9,1.17,0.035,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.366,81.69,145.02,0.9500000000000001,0.79,792,0.4,15,3.4000000000000004
+2023,12,9,3,0,-5.9,1.2,0.029,0.63,0,0,0,0,7,-8.8,0,0,0,0,0.368,80.27,139.54,0.9500000000000001,0.79,793,0.4,22,3.1
+2023,12,9,3,30,-6.2,1.2,0.029,0.63,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.37,82.13,133.93,0.9500000000000001,0.79,793,0.4,27,2.7
+2023,12,9,4,0,-6.6000000000000005,1.25,0.022,0.63,0,0,0,0,8,-9.600000000000001,0,0,0,0,0.371,79.4,128.24,0.9400000000000001,0.79,793,0.4,32,2.2
+2023,12,9,4,30,-7,1.25,0.022,0.63,0,0,0,0,8,-9.600000000000001,0,0,0,0,0.372,81.98,122.55,0.9400000000000001,0.79,794,0.4,29,1.9000000000000001
+2023,12,9,5,0,-7.4,1.29,0.018000000000000002,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.373,81.19,116.88,0.93,0.79,794,0.4,26,1.7000000000000002
+2023,12,9,5,30,-7.7,1.29,0.018000000000000002,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.374,83.2,111.28,0.93,0.79,795,0.4,17,1.5
+2023,12,9,6,0,-8,1.31,0.017,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.375,83.95,105.77,0.92,0.79,795,0.4,7,1.4000000000000001
+2023,12,9,6,30,-8.1,1.31,0.017,0.63,0,0,0,0,8,-10.200000000000001,0,0,0,0,0.377,84.71000000000001,100.38,0.92,0.79,796,0.4,179,1.3
+2023,12,9,7,0,-8.3,1.32,0.016,0.63,0,0,0,0,7,-10.3,0,0,0,0,0.378,85.37,95.16,0.92,0.79,796,0.4,351,1.3
+2023,12,9,7,30,-7.5,1.32,0.016,0.63,10,158,11,4,7,-10.3,6,0,57,6,0.379,80.24,89.72,0.92,0.79,796,0.4,350,1.6
+2023,12,9,8,0,-6.7,1.33,0.016,0.63,24,552,70,7,5,-10.4,39,2,100,39,0.38,74.89,85.22,0.92,0.79,797,0.4,348,2
+2023,12,9,8,30,-5.800000000000001,1.33,0.016,0.63,33,725,149,1,5,-10.4,96,75,14,108,0.38,69.91,80.81,0.92,0.79,797,0.4,351,2.2
+2023,12,9,9,0,-4.9,1.35,0.015,0.63,41,828,231,0,5,-10.8,151,102,0,174,0.38,63.1,76.71000000000001,0.92,0.79,798,0.30000000000000004,354,2.4000000000000004
+2023,12,9,9,30,-4.6000000000000005,1.35,0.015,0.63,46,893,307,0,4,-10.8,146,378,0,256,0.377,61.690000000000005,73.03,0.92,0.79,798,0.30000000000000004,355,2.2
+2023,12,9,10,0,-4.4,1.36,0.014,0.63,50,936,373,0,4,-11.700000000000001,239,98,0,273,0.374,56.67,69.84,0.92,0.79,798,0.30000000000000004,356,2.1
+2023,12,9,10,30,-4.2,1.36,0.014,0.63,55,961,427,0,4,-11.700000000000001,228,352,0,364,0.369,55.83,67.21000000000001,0.92,0.79,798,0.30000000000000004,352,2
+2023,12,9,11,0,-4.1000000000000005,1.32,0.018000000000000002,0.63,60,976,469,0,4,-12.5,290,232,0,387,0.365,52.24,65.21000000000001,0.93,0.79,798,0.30000000000000004,347,2
+2023,12,9,11,30,-4,1.32,0.018000000000000002,0.63,61,988,495,0,4,-12.5,290,299,0,421,0.361,51.85,63.92,0.93,0.79,798,0.30000000000000004,344,1.9000000000000001
+2023,12,9,12,0,-3.8000000000000003,1.32,0.017,0.63,61,993,506,0,5,-13,271,390,0,446,0.357,48.99,63.38,0.93,0.79,798,0.30000000000000004,341,1.8
+2023,12,9,12,30,-3.7,1.32,0.017,0.63,59,993,501,0,4,-13,333,125,0,389,0.355,48.63,63.6,0.92,0.79,798,0.30000000000000004,339,1.7000000000000002
+2023,12,9,13,0,-3.7,1.33,0.015,0.63,57,987,481,0,4,-13.3,284,268,7,399,0.353,47.160000000000004,64.57000000000001,0.92,0.79,798,0.30000000000000004,337,1.6
+2023,12,9,13,30,-3.6,1.33,0.015,0.63,55,973,447,0,5,-13.3,231,346,0,370,0.353,46.81,66.27,0.92,0.79,798,0.30000000000000004,331,1.6
+2023,12,9,14,0,-3.5,1.34,0.014,0.63,51,951,398,0,0,-13.700000000000001,153,486,0,330,0.353,45,68.63,0.92,0.79,798,0.30000000000000004,324,1.6
+2023,12,9,14,30,-3.6,1.34,0.014,0.63,47,918,337,0,0,-13.700000000000001,66,787,0,315,0.353,45.34,71.59,0.91,0.79,798,0.30000000000000004,320,1.6
+2023,12,9,15,0,-3.7,1.35,0.012,0.63,41,870,265,0,0,-14.100000000000001,41,870,0,265,0.352,44.21,75.08,0.91,0.79,798,0.30000000000000004,316,1.5
+2023,12,9,15,30,-4.2,1.35,0.012,0.63,35,799,187,0,0,-14.100000000000001,35,799,0,187,0.352,45.9,79,0.91,0.79,798,0.30000000000000004,308,1.2000000000000002
+2023,12,9,16,0,-4.7,1.36,0.011,0.63,27,679,106,0,0,-13.9,27,679,0,106,0.35100000000000003,48.72,83.29,0.9,0.79,798,0.2,301,0.9
+2023,12,9,16,30,-5.4,1.36,0.011,0.63,17,356,31,1,0,-13.9,17,287,14,28,0.35000000000000003,51.43,87.82000000000001,0.9,0.79,799,0.2,274,0.7000000000000001
+2023,12,9,17,0,-6.1000000000000005,1.36,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.34900000000000003,53.58,92.98,0.9,0.8,799,0.2,247,0.6000000000000001
+2023,12,9,17,30,-6.5,1.36,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.34800000000000003,55.24,98.12,0.9,0.8,799,0.2,236,0.7000000000000001
+2023,12,9,18,0,-6.9,1.37,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.34600000000000003,56.7,103.44,0.89,0.8,799,0.2,225,0.8
+2023,12,9,18,30,-7.300000000000001,1.37,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.34500000000000003,58.47,108.9,0.89,0.8,799,0.2,220,0.9
+2023,12,9,19,0,-7.7,1.3800000000000001,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.34400000000000003,60.65,114.47,0.89,0.8,799,0.30000000000000004,214,1.1
+2023,12,9,19,30,-8.1,1.3800000000000001,0.01,0.63,0,0,0,0,0,-14,0,0,0,0,0.343,62.56,120.11,0.89,0.8,799,0.30000000000000004,213,1.2000000000000002
+2023,12,9,20,0,-8.5,1.3800000000000001,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.341,63.24,125.8,0.89,0.8,799,0.30000000000000004,212,1.3
+2023,12,9,20,30,-8.8,1.3800000000000001,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.34,64.74,131.5,0.9,0.8,799,0.30000000000000004,211,1.4000000000000001
+2023,12,9,21,0,-9,1.37,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.339,65.34,137.15,0.9,0.8,799,0.30000000000000004,210,1.5
+2023,12,9,21,30,-9.3,1.37,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.338,66.89,142.70000000000002,0.9,0.8,799,0.30000000000000004,207,1.6
+2023,12,9,22,0,-9.5,1.36,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.338,67.69,148.06,0.9,0.8,799,0.4,204,1.7000000000000002
+2023,12,9,22,30,-9.700000000000001,1.36,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.337,68.67,153.06,0.9,0.8,798,0.4,200,1.8
+2023,12,9,23,0,-9.9,1.34,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.336,69.92,157.44,0.9,0.8,798,0.4,197,1.9000000000000001
+2023,12,9,23,30,-10,1.34,0.01,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.334,70.48,160.73,0.91,0.8,798,0.4,195,2
+2023,12,10,0,0,-10.100000000000001,1.31,0.01,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.331,71.11,162.29,0.91,0.8,797,0.4,193,2.2
+2023,12,10,0,30,-10.100000000000001,1.31,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.329,71.11,161.69,0.92,0.8,797,0.5,194,2.3000000000000003
+2023,12,10,1,0,-10.100000000000001,1.27,0.013000000000000001,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.327,71.41,159.09,0.93,0.8,797,0.5,195,2.5
+2023,12,10,1,30,-10,1.27,0.013000000000000001,0.63,0,0,0,0,7,-14.3,0,0,0,0,0.324,70.85000000000001,155.14000000000001,0.93,0.8,797,0.5,197,2.4000000000000004
+2023,12,10,2,0,-9.9,1.26,0.016,0.63,0,0,0,0,6,-14.200000000000001,0,0,0,0,0.322,70.81,150.38,0.93,0.8,797,0.6000000000000001,199,2.3000000000000003
+2023,12,10,2,30,-9.600000000000001,1.26,0.016,0.63,0,0,0,0,7,-14.200000000000001,0,0,0,0,0.32,69.15,145.16,0.93,0.8,797,0.6000000000000001,199,2.4000000000000004
+2023,12,10,3,0,-9.3,1.27,0.016,0.63,0,0,0,0,0,-14,0,0,0,0,0.318,68.82000000000001,139.68,0.93,0.8,797,0.7000000000000001,198,2.5
+2023,12,10,3,30,-9.3,1.27,0.016,0.63,0,0,0,0,4,-14,0,0,0,0,0.317,68.74,134.06,0.93,0.8,796,0.7000000000000001,195,2.4000000000000004
+2023,12,10,4,0,-9.4,1.29,0.015,0.63,0,0,0,0,4,-13.9,0,0,0,0,0.316,69.55,128.38,0.93,0.8,796,0.7000000000000001,192,2.3000000000000003
+2023,12,10,4,30,-9.4,1.29,0.015,0.63,0,0,0,0,4,-13.9,0,0,0,0,0.317,69.55,122.69,0.92,0.8,796,0.7000000000000001,192,2.2
+2023,12,10,5,0,-9.5,1.29,0.014,0.63,0,0,0,0,7,-14,0,0,0,0,0.317,69.74,117.02,0.92,0.8,796,0.7000000000000001,192,2.1
+2023,12,10,5,30,-9.4,1.29,0.014,0.63,0,0,0,0,7,-14,0,0,0,0,0.318,69.19,111.42,0.92,0.8,796,0.7000000000000001,194,2.2
+2023,12,10,6,0,-9.4,1.29,0.015,0.63,0,0,0,0,7,-14.100000000000001,0,0,0,0,0.318,68.41,105.91,0.92,0.8,796,0.7000000000000001,197,2.3000000000000003
+2023,12,10,6,30,-9.200000000000001,1.29,0.015,0.63,0,0,0,0,5,-14.100000000000001,0,0,0,0,0.319,67.43,100.52,0.93,0.8,797,0.7000000000000001,197,2.4000000000000004
+2023,12,10,7,0,-9,1.27,0.016,0.63,0,0,0,0,4,-14.100000000000001,0,0,0,0,0.321,66.43,95.3,0.93,0.8,797,0.7000000000000001,198,2.5
+2023,12,10,7,30,-8.3,1.27,0.016,0.63,8,99,8,4,7,-14.100000000000001,4,0,57,4,0.322,62.9,89.84,0.93,0.8,797,0.7000000000000001,197,2.9000000000000004
+2023,12,10,8,0,-7.5,1.25,0.018000000000000002,0.63,24,505,65,7,7,-13.700000000000001,26,0,100,26,0.323,60.92,85.36,0.93,0.8,797,0.7000000000000001,197,3.4000000000000004
+2023,12,10,8,30,-6.4,1.25,0.018000000000000002,0.63,34,683,142,2,8,-13.700000000000001,67,13,29,69,0.325,55.980000000000004,80.94,0.93,0.8,797,0.7000000000000001,197,3.7
+2023,12,10,9,0,-5.300000000000001,1.25,0.019,0.63,42,786,221,0,4,-13.600000000000001,121,7,0,123,0.326,52,76.85000000000001,0.93,0.8,797,0.7000000000000001,198,4
+2023,12,10,9,30,-4,1.25,0.019,0.63,49,850,295,1,4,-13.600000000000001,132,5,18,133,0.327,47.15,73.16,0.93,0.8,797,0.7000000000000001,201,4.2
+2023,12,10,10,0,-2.7,1.25,0.019,0.63,53,893,359,3,4,-14.3,158,6,39,160,0.328,40.61,69.96000000000001,0.93,0.8,797,0.7000000000000001,204,4.5
+2023,12,10,10,30,-1.6,1.25,0.019,0.63,57,922,412,0,5,-14.3,203,11,0,207,0.328,37.4,67.33,0.93,0.8,796,0.7000000000000001,208,4.6000000000000005
+2023,12,10,11,0,-0.5,1.26,0.018000000000000002,0.63,59,941,452,0,4,-14.5,226,5,0,228,0.328,33.9,65.33,0.93,0.8,796,0.7000000000000001,212,4.7
+2023,12,10,11,30,0.2,1.26,0.018000000000000002,0.63,60,954,478,1,4,-14.5,226,12,11,231,0.328,32.18,64.03,0.93,0.8,795,0.7000000000000001,216,4.7
+2023,12,10,12,0,1,1.27,0.017,0.63,60,960,489,0,8,-13.3,123,4,4,125,0.328,33.54,63.47,0.93,0.8,795,0.7000000000000001,220,4.800000000000001
+2023,12,10,12,30,1.4000000000000001,1.27,0.017,0.63,60,959,485,0,7,-13.3,192,19,0,200,0.328,32.6,63.68,0.93,0.8,795,0.7000000000000001,223,4.7
+2023,12,10,13,0,1.8,1.28,0.017,0.63,59,952,467,0,7,-11.9,263,108,0,309,0.328,35.52,64.64,0.93,0.8,794,0.7000000000000001,227,4.6000000000000005
+2023,12,10,13,30,1.8,1.28,0.017,0.63,57,938,434,0,7,-11.9,248,196,0,327,0.328,35.52,66.32000000000001,0.93,0.8,794,0.6000000000000001,225,4.5
+2023,12,10,14,0,1.8,1.27,0.017,0.63,54,914,386,0,7,-10.9,232,187,0,300,0.328,38.35,68.68,0.93,0.8,794,0.6000000000000001,224,4.3
+2023,12,10,14,30,1.3,1.27,0.017,0.63,50,878,327,0,7,-10.9,165,340,0,272,0.328,39.74,71.62,0.93,0.8,794,0.6000000000000001,219,4
+2023,12,10,15,0,0.8,1.27,0.017,0.63,45,825,257,0,7,-10.200000000000001,147,232,0,207,0.328,43.62,75.10000000000001,0.93,0.8,794,0.6000000000000001,213,3.6
+2023,12,10,15,30,-0.5,1.27,0.017,0.63,38,744,180,0,7,-10.200000000000001,112,47,0,121,0.329,47.92,79.01,0.93,0.8,794,0.6000000000000001,207,3
+2023,12,10,16,0,-1.9000000000000001,1.27,0.017,0.63,29,609,100,6,7,-10,63,13,86,65,0.329,53.84,83.3,0.93,0.8,793,0.6000000000000001,201,2.3000000000000003
+2023,12,10,16,30,-2.7,1.27,0.017,0.63,18,300,29,6,7,-10,19,3,86,19,0.33,57.120000000000005,87.81,0.93,0.8,793,0.6000000000000001,199,2.4000000000000004
+2023,12,10,17,0,-3.5,1.27,0.017,0.63,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.331,58,92.96000000000001,0.93,0.74,793,0.6000000000000001,196,2.4000000000000004
+2023,12,10,17,30,-3.8000000000000003,1.27,0.017,0.63,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.331,59.31,98.10000000000001,0.93,0.74,793,0.6000000000000001,195,2.5
+2023,12,10,18,0,-4.1000000000000005,1.28,0.017,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.331,59.39,103.41,0.93,0.74,793,0.6000000000000001,194,2.6
+2023,12,10,18,30,-4.4,1.28,0.017,0.63,0,0,0,0,6,-10.8,0,0,0,0,0.332,60.74,108.87,0.93,0.74,793,0.6000000000000001,193,2.6
+2023,12,10,19,0,-4.7,1.28,0.018000000000000002,0.63,0,0,0,0,6,-11.100000000000001,0,0,0,0,0.332,60.94,114.43,0.93,0.74,793,0.6000000000000001,192,2.6
+2023,12,10,19,30,-5.1000000000000005,1.28,0.018000000000000002,0.63,0,0,0,0,6,-11.100000000000001,0,0,0,0,0.332,62.81,120.08,0.9400000000000001,0.74,793,0.6000000000000001,191,2.4000000000000004
+2023,12,10,20,0,-5.4,1.29,0.017,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.332,63.42,125.77,0.9400000000000001,0.74,793,0.7000000000000001,190,2.2
+2023,12,10,20,30,-5.800000000000001,1.29,0.017,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.332,65.38,131.46,0.9400000000000001,0.74,793,0.7000000000000001,191,2
+2023,12,10,21,0,-6.1000000000000005,1.29,0.017,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.332,66.16,137.12,0.9400000000000001,0.74,793,0.7000000000000001,191,1.9000000000000001
+2023,12,10,21,30,-6.300000000000001,1.29,0.017,0.63,0,0,0,0,7,-11.4,0,0,0,0,0.332,67.18,142.67000000000002,0.9400000000000001,0.74,793,0.7000000000000001,193,1.7000000000000002
+2023,12,10,22,0,-6.4,1.3,0.016,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.333,66.69,148.04,0.93,0.74,793,0.7000000000000001,195,1.6
+2023,12,10,22,30,-6.6000000000000005,1.3,0.016,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.333,67.72,153.05,0.93,0.74,793,0.7000000000000001,195,1.4000000000000001
+2023,12,10,23,0,-6.7,1.3,0.014,0.63,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.333,67.35,157.45000000000002,0.93,0.74,793,0.8,195,1.3
+2023,12,10,23,30,-6.800000000000001,1.3,0.014,0.63,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.333,67.87,160.77,0.93,0.74,793,0.8,197,1.2000000000000002
+2023,12,11,0,0,-6.800000000000001,1.29,0.013000000000000001,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.333,67.43,162.37,0.93,0.74,793,0.8,199,1.1
+2023,12,11,0,30,-6.800000000000001,1.29,0.013000000000000001,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.333,67.43,161.8,0.93,0.74,793,0.8,201,1
+2023,12,11,1,0,-6.7,1.28,0.013000000000000001,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.334,67.02,159.22,0.93,0.74,793,0.8,204,0.8
+2023,12,11,1,30,-6.7,1.28,0.013000000000000001,0.63,0,0,0,0,7,-11.8,0,0,0,0,0.334,67.02,155.27,0.93,0.74,793,0.8,199,0.8
+2023,12,11,2,0,-6.7,1.27,0.012,0.63,0,0,0,0,4,-11.8,0,0,0,0,0.334,66.92,150.51,0.93,0.74,793,0.8,193,0.8
+2023,12,11,2,30,-6.7,1.27,0.012,0.63,0,0,0,0,8,-11.8,0,0,0,0,0.334,66.92,145.29,0.93,0.74,793,0.8,187,0.8
+2023,12,11,3,0,-6.7,1.27,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.334,66.12,139.82,0.93,0.74,793,0.8,180,0.8
+2023,12,11,3,30,-6.7,1.27,0.012,0.63,0,0,0,0,4,-12,0,0,0,0,0.333,66.12,134.2,0.93,0.74,793,0.8,175,0.8
+2023,12,11,4,0,-6.7,1.26,0.013000000000000001,0.63,0,0,0,0,4,-12.200000000000001,0,0,29,0,0.332,64.94,128.52,0.93,0.74,793,0.8,170,0.8
+2023,12,11,4,30,-6.7,1.26,0.013000000000000001,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.331,64.94,122.83,0.9400000000000001,0.74,793,0.8,164,0.8
+2023,12,11,5,0,-6.7,1.24,0.014,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.33,64.3,117.16,0.9400000000000001,0.74,793,0.8,159,0.8
+2023,12,11,5,30,-6.6000000000000005,1.24,0.014,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.328,63.81,111.55,0.9400000000000001,0.74,793,0.8,155,0.8
+2023,12,11,6,0,-6.6000000000000005,1.24,0.015,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.327,64.07000000000001,106.04,0.9400000000000001,0.74,793,0.8,152,0.8
+2023,12,11,6,30,-6.4,1.24,0.015,0.63,0,0,0,0,6,-12.3,0,0,0,0,0.325,63.09,100.66,0.9400000000000001,0.74,793,0.8,151,0.8
+2023,12,11,7,0,-6.300000000000001,1.24,0.015,0.63,0,0,0,0,7,-12,0,0,0,0,0.324,63.800000000000004,95.44,0.9400000000000001,0.74,793,0.8,149,0.7000000000000001
+2023,12,11,7,30,-5.6000000000000005,1.24,0.015,0.63,7,97,7,4,6,-12,3,0,57,3,0.322,60.49,89.96000000000001,0.9400000000000001,0.74,793,0.8,157,0.7000000000000001
+2023,12,11,8,0,-5,1.25,0.016,0.63,23,495,62,7,7,-11.600000000000001,36,3,100,36,0.321,59.7,85.49,0.9400000000000001,0.74,793,0.8,164,0.8
+2023,12,11,8,30,-4,1.25,0.016,0.63,33,676,138,1,8,-11.600000000000001,67,11,18,69,0.32,55.370000000000005,81.08,0.9400000000000001,0.74,793,0.8,173,0.9
+2023,12,11,9,0,-3.1,1.26,0.016,0.63,40,781,216,0,7,-11.700000000000001,98,18,0,102,0.318,51.31,76.98,0.9400000000000001,0.74,793,0.8,181,1.1
+2023,12,11,9,30,-1.8,1.26,0.016,0.63,45,848,289,0,7,-11.700000000000001,130,24,0,137,0.317,46.6,73.29,0.93,0.74,793,0.8,194,1.3
+2023,12,11,10,0,-0.4,1.3,0.014,0.63,49,895,354,0,7,-11.5,135,11,0,139,0.316,42.74,70.09,0.93,0.74,793,0.8,207,1.6
+2023,12,11,10,30,0.4,1.3,0.014,0.63,54,924,408,0,8,-11.5,216,63,0,240,0.314,40.33,67.44,0.93,0.74,793,0.8,212,1.7000000000000002
+2023,12,11,11,0,1.3,1.25,0.016,0.63,56,943,448,0,5,-10.600000000000001,269,64,0,296,0.313,40.75,65.44,0.9400000000000001,0.74,793,0.7000000000000001,218,1.8
+2023,12,11,11,30,1.8,1.25,0.016,0.63,58,956,475,0,8,-10.600000000000001,237,318,0,376,0.312,39.27,64.13,0.9400000000000001,0.74,792,0.7000000000000001,221,1.8
+2023,12,11,12,0,2.2,1.25,0.016,0.63,59,961,487,0,7,-9.700000000000001,261,267,0,380,0.311,41.050000000000004,63.56,0.9400000000000001,0.74,792,0.7000000000000001,224,1.8
+2023,12,11,12,30,2.4000000000000004,1.25,0.016,0.63,59,962,484,0,7,-9.700000000000001,277,225,0,377,0.31,40.47,63.75,0.9400000000000001,0.74,792,0.7000000000000001,227,1.8
+2023,12,11,13,0,2.6,1.26,0.016,0.63,57,956,466,0,7,-9.200000000000001,269,169,0,341,0.309,41.59,64.7,0.9400000000000001,0.74,792,0.6000000000000001,230,1.8
+2023,12,11,13,30,2.5,1.26,0.016,0.63,56,941,433,0,8,-9.200000000000001,215,220,0,303,0.309,41.83,66.37,0.9400000000000001,0.74,791,0.6000000000000001,231,1.6
+2023,12,11,14,0,2.5,1.22,0.018000000000000002,0.63,53,917,386,0,0,-9,123,645,0,357,0.308,42.5,68.71000000000001,0.93,0.74,791,0.6000000000000001,231,1.4000000000000001
+2023,12,11,14,30,2.1,1.22,0.018000000000000002,0.63,49,883,327,0,0,-9,55,856,0,324,0.309,43.730000000000004,71.65,0.93,0.74,791,0.6000000000000001,228,1
+2023,12,11,15,0,1.7000000000000002,1.25,0.015,0.63,43,834,257,0,0,-7.7,43,834,0,257,0.309,49.870000000000005,75.11,0.92,0.74,791,0.6000000000000001,226,0.6000000000000001
+2023,12,11,15,30,1,1.25,0.015,0.63,36,757,180,0,0,-7.7,36,757,0,180,0.31,52.44,79.02,0.92,0.74,791,0.6000000000000001,221,0.4
+2023,12,11,16,0,0.2,1.26,0.013000000000000001,0.63,27,630,101,0,0,-8.8,27,630,0,101,0.31,50.67,83.29,0.91,0.74,791,0.5,216,0.1
+2023,12,11,16,30,-0.5,1.26,0.013000000000000001,0.63,17,318,29,0,0,-8.8,17,318,0,29,0.311,53.31,87.8,0.91,0.74,791,0.5,141,0.30000000000000004
+2023,12,11,17,0,-1.1,1.26,0.012,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.312,51.61,92.94,0.9,0.1,791,0.5,66,0.6000000000000001
+2023,12,11,17,30,-1.8,1.26,0.012,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.313,54.33,98.07000000000001,0.9,0.1,791,0.5,66,0.8
+2023,12,11,18,0,-2.4000000000000004,1.26,0.012,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.314,57.93,103.38,0.9,0.1,791,0.5,66,1
+2023,12,11,18,30,-2.9000000000000004,1.26,0.012,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.314,60.120000000000005,108.83,0.9,0.1,791,0.5,67,1
+2023,12,11,19,0,-3.3000000000000003,1.26,0.012,0.63,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.315,63.85,114.4,0.9,0.1,791,0.5,68,1.1
+2023,12,11,19,30,-3.6,1.26,0.012,0.63,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.315,65.3,120.04,0.9,0.1,791,0.5,70,1.1
+2023,12,11,20,0,-3.9000000000000004,1.25,0.012,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.316,68.11,125.72,0.91,0.1,791,0.5,71,1.1
+2023,12,11,20,30,-4.1000000000000005,1.25,0.012,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.316,69.14,131.42000000000002,0.91,0.1,791,0.5,72,1
+2023,12,11,21,0,-4.3,1.25,0.014,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.316,72.05,137.08,0.92,0.1,791,0.5,74,1
+2023,12,11,21,30,-4.6000000000000005,1.25,0.014,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.315,73.69,142.64000000000001,0.92,0.1,791,0.5,74,1
+2023,12,11,22,0,-4.800000000000001,1.22,0.016,0.63,0,0,0,0,0,-8.1,0,0,0,0,0.314,77.44,148.01,0.93,0.1,791,0.5,75,1
+2023,12,11,22,30,-4.9,1.22,0.016,0.63,0,0,0,0,7,-8.1,0,0,0,0,0.313,78.03,153.04,0.93,0.1,791,0.5,75,1
+2023,12,11,23,0,-5.1000000000000005,1.21,0.016,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.312,82.36,157.45000000000002,0.93,0.1,791,0.5,76,1
+2023,12,11,23,30,-5.1000000000000005,1.21,0.016,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.311,82.25,160.8,0.93,0.1,790,0.5,76,1
+2023,12,12,0,0,-5.2,1.21,0.017,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.31,85.03,162.45000000000002,0.9400000000000001,0.1,790,0.5,76,1
+2023,12,12,0,30,-5.300000000000001,1.21,0.017,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.309,85.68,161.9,0.9400000000000001,0.1,790,0.5,76,1
+2023,12,12,1,0,-5.4,1.2,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.309,86.94,159.34,0.9400000000000001,0.1,790,0.5,75,1
+2023,12,12,1,30,-5.4,1.2,0.019,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.308,86.94,155.4,0.9400000000000001,0.1,790,0.5,75,1
+2023,12,12,2,0,-5.4,1.19,0.02,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.308,86.78,150.64000000000001,0.9400000000000001,0.1,790,0.5,75,1
+2023,12,12,2,30,-5.4,1.19,0.02,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.308,86.78,145.43,0.9400000000000001,0.1,790,0.5,74,1
+2023,12,12,3,0,-5.300000000000001,1.18,0.022,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.308,85.53,139.95000000000002,0.9400000000000001,0.1,790,0.6000000000000001,73,0.9
+2023,12,12,3,30,-5.300000000000001,1.18,0.022,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.308,85.53,134.33,0.9400000000000001,0.1,790,0.6000000000000001,71,0.9
+2023,12,12,4,0,-5.300000000000001,1.16,0.023,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.308,84.4,128.65,0.9400000000000001,0.1,789,0.6000000000000001,69,0.9
+2023,12,12,4,30,-5.2,1.16,0.023,0.63,0,0,0,0,7,-7.5,0,0,0,0,0.309,83.76,122.96000000000001,0.9400000000000001,0.1,789,0.6000000000000001,67,0.9
+2023,12,12,5,0,-5.2,1.1400000000000001,0.024,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.31,82.66,117.29,0.9400000000000001,0.1,789,0.6000000000000001,65,0.8
+2023,12,12,5,30,-5,1.1400000000000001,0.024,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.311,81.41,111.69,0.9400000000000001,0.1,789,0.6000000000000001,63,0.8
+2023,12,12,6,0,-4.9,1.1300000000000001,0.025,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.311,79.7,106.17,0.9400000000000001,0.1,789,0.6000000000000001,60,0.8
+2023,12,12,6,30,-4.800000000000001,1.1300000000000001,0.025,0.63,0,0,0,0,7,-7.9,0,0,0,0,0.312,79.10000000000001,100.79,0.9400000000000001,0.1,789,0.6000000000000001,58,0.9
+2023,12,12,7,0,-4.6000000000000005,1.1300000000000001,0.025,0.63,0,0,0,0,6,-8.1,0,0,0,0,0.313,76.64,95.57000000000001,0.9400000000000001,0.1,789,0.6000000000000001,55,0.9
+2023,12,12,7,30,-4.1000000000000005,1.1300000000000001,0.025,0.63,7,88,7,3,7,-8.1,3,0,43,3,0.314,73.81,90.08,0.9400000000000001,0.1,789,0.6000000000000001,48,1.1
+2023,12,12,8,0,-3.6,1.1300000000000001,0.025,0.63,25,476,61,4,7,-7.9,30,3,100,30,0.314,71.84,85.62,0.9400000000000001,0.1,789,0.6000000000000001,40,1.3
+2023,12,12,8,30,-2.8000000000000003,1.1300000000000001,0.025,0.63,34,667,136,1,7,-7.9,49,6,29,50,0.315,67.69,81.2,0.9400000000000001,0.1,789,0.6000000000000001,38,1.7000000000000002
+2023,12,12,9,0,-2,1.1500000000000001,0.024,0.63,41,777,214,0,7,-7.5,63,5,0,64,0.316,66.01,77.10000000000001,0.9400000000000001,0.1,789,0.6000000000000001,36,2.1
+2023,12,12,9,30,-1.2000000000000002,1.1500000000000001,0.024,0.63,45,846,287,0,7,-7.5,116,20,0,122,0.316,62.24,73.41,0.9400000000000001,0.1,789,0.6000000000000001,37,2.2
+2023,12,12,10,0,-0.4,1.17,0.024,0.63,49,892,351,0,7,-7.7,115,9,0,118,0.317,57.68,70.2,0.9400000000000001,0.1,790,0.6000000000000001,38,2.3000000000000003
+2023,12,12,10,30,0.5,1.17,0.024,0.63,51,922,403,0,7,-7.7,144,15,0,150,0.318,54.04,67.55,0.9400000000000001,0.1,790,0.6000000000000001,40,2.4000000000000004
+2023,12,12,11,0,1.4000000000000001,1.18,0.023,0.63,52,941,442,0,6,-7.800000000000001,189,40,0,206,0.318,50.58,65.54,0.9400000000000001,0.1,789,0.6000000000000001,42,2.6
+2023,12,12,11,30,2,1.18,0.023,0.63,53,951,467,0,7,-7.800000000000001,213,62,0,240,0.318,48.46,64.22,0.9400000000000001,0.1,789,0.6000000000000001,44,2.7
+2023,12,12,12,0,2.5,1.19,0.024,0.63,54,955,478,0,7,-7.7,234,151,0,301,0.319,46.83,63.64,0.9400000000000001,0.1,789,0.6000000000000001,46,2.9000000000000004
+2023,12,12,12,30,2.7,1.19,0.024,0.63,55,953,475,0,7,-7.7,233,210,0,326,0.319,46.17,63.82,0.9400000000000001,0.1,789,0.6000000000000001,46,3
+2023,12,12,13,0,3,1.2,0.024,0.63,54,945,457,0,7,-7.4,204,337,0,348,0.318,46.35,64.76,0.9400000000000001,0.1,789,0.6000000000000001,46,3.1
+2023,12,12,13,30,2.9000000000000004,1.2,0.024,0.63,52,930,424,0,8,-7.4,190,319,0,318,0.318,46.68,66.42,0.93,0.1,789,0.6000000000000001,46,3.1
+2023,12,12,14,0,2.9000000000000004,1.22,0.024,0.63,50,905,378,0,8,-6.5,171,303,0,281,0.318,50.15,68.74,0.93,0.1,789,0.6000000000000001,45,3.1
+2023,12,12,14,30,2.4000000000000004,1.22,0.024,0.63,47,869,320,0,8,-6.5,154,169,0,207,0.318,51.96,71.67,0.93,0.1,789,0.6000000000000001,43,2.8000000000000003
+2023,12,12,15,0,1.9000000000000001,1.23,0.023,0.63,43,815,252,0,8,-4.800000000000001,87,194,0,137,0.318,60.94,75.12,0.93,0.1,789,0.6000000000000001,42,2.4000000000000004
+2023,12,12,15,30,0.8,1.23,0.023,0.63,37,731,176,0,7,-4.800000000000001,85,179,0,119,0.318,65.93,79.01,0.93,0.1,789,0.6000000000000001,40,2.4000000000000004
+2023,12,12,16,0,-0.30000000000000004,1.24,0.023,0.63,29,593,98,6,7,-4.800000000000001,60,82,86,70,0.318,71.8,83.28,0.93,0.1,789,0.6000000000000001,38,2.4000000000000004
+2023,12,12,16,30,-0.9,1.24,0.023,0.63,17,286,28,7,7,-4.800000000000001,17,3,100,17,0.319,75.10000000000001,87.78,0.93,0.1,790,0.6000000000000001,38,2.8000000000000003
+2023,12,12,17,0,-1.5,1.24,0.022,0.63,0,0,0,1,7,-4.4,0,0,14,0,0.319,80.7,92.91,0.93,0.1,790,0.6000000000000001,38,3.2
+2023,12,12,17,30,-1.7000000000000002,1.24,0.022,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.319,81.9,98.04,0.92,0.1,790,0.6000000000000001,39,3.5
+2023,12,12,18,0,-1.9000000000000001,1.23,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.32,85.65,103.34,0.92,0.1,790,0.6000000000000001,39,3.7
+2023,12,12,18,30,-2.1,1.23,0.022,0.63,0,0,0,0,7,-4,0,0,0,0,0.321,86.92,108.79,0.92,0.1,790,0.6000000000000001,40,3.8000000000000003
+2023,12,12,19,0,-2.3000000000000003,1.23,0.022,0.63,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.322,88.62,114.35000000000001,0.92,0.1,790,0.6000000000000001,40,3.8000000000000003
+2023,12,12,19,30,-2.5,1.23,0.022,0.63,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.323,89.94,119.99000000000001,0.92,0.1,790,0.6000000000000001,41,3.8000000000000003
+2023,12,12,20,0,-2.7,1.23,0.023,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.324,90.42,125.68,0.92,0.1,791,0.6000000000000001,42,3.8000000000000003
+2023,12,12,20,30,-2.9000000000000004,1.23,0.023,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.325,91.77,131.37,0.92,0.1,791,0.6000000000000001,41,3.7
+2023,12,12,21,0,-3.1,1.21,0.024,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.325,91.12,137.03,0.92,0.1,791,0.6000000000000001,40,3.6
+2023,12,12,21,30,-3.2,1.21,0.024,0.63,0,0,0,0,7,-4.3,0,0,0,0,0.326,91.81,142.6,0.92,0.1,791,0.6000000000000001,40,3.5
+2023,12,12,22,0,-3.4000000000000004,1.19,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.326,90.5,147.98,0.92,0.1,791,0.6000000000000001,39,3.4000000000000004
+2023,12,12,22,30,-3.4000000000000004,1.19,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.326,90.5,153.02,0.92,0.1,791,0.6000000000000001,38,3.4000000000000004
+2023,12,12,23,0,-3.5,1.18,0.025,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.327,88.91,157.45000000000002,0.92,0.1,792,0.6000000000000001,37,3.4000000000000004
+2023,12,12,23,30,-3.6,1.18,0.025,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.328,89.57000000000001,160.83,0.92,0.1,792,0.6000000000000001,37,3.4000000000000004
+2023,12,13,0,0,-3.7,1.18,0.026000000000000002,0.63,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.329,88.35000000000001,162.51,0.93,0.1,792,0.6000000000000001,36,3.4000000000000004
+2023,12,13,0,30,-3.9000000000000004,1.18,0.026000000000000002,0.63,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.33,89.68,162,0.93,0.1,792,0.7000000000000001,35,3.3000000000000003
+2023,12,13,1,0,-4,1.17,0.028,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.331,88.78,159.46,0.93,0.1,792,0.7000000000000001,35,3.2
+2023,12,13,1,30,-4,1.17,0.028,0.63,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.332,88.78,155.53,0.93,0.1,792,0.7000000000000001,35,3.1
+2023,12,13,2,0,-4.1000000000000005,1.16,0.029,0.63,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.333,88.25,150.77,0.93,0.1,792,0.7000000000000001,34,3
+2023,12,13,2,30,-4,1.16,0.029,0.63,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.333,87.59,145.56,0.93,0.1,792,0.7000000000000001,33,3
+2023,12,13,3,0,-4,1.1500000000000001,0.029,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.333,86.38,140.08,0.93,0.1,792,0.7000000000000001,33,3.1
+2023,12,13,3,30,-4.1000000000000005,1.1500000000000001,0.029,0.63,0,0,0,0,7,-5.9,0,0,0,0,0.333,87.03,134.46,0.93,0.1,792,0.7000000000000001,31,3.1
+2023,12,13,4,0,-4.1000000000000005,1.1300000000000001,0.029,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.333,85.47,128.78,0.93,0.1,792,0.7000000000000001,30,3.2
+2023,12,13,4,30,-4.2,1.1300000000000001,0.029,0.63,0,0,0,0,7,-6.2,0,0,0,0,0.334,86.11,123.09,0.93,0.1,792,0.7000000000000001,30,3.3000000000000003
+2023,12,13,5,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.334,84.09,117.42,0.93,0.1,792,0.7000000000000001,30,3.3000000000000003
+2023,12,13,5,30,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.335,84.19,111.82000000000001,0.93,0.1,793,0.7000000000000001,30,3.3000000000000003
+2023,12,13,6,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.336,82.34,106.3,0.93,0.1,793,0.7000000000000001,31,3.3000000000000003
+2023,12,13,6,30,-4.2,1.12,0.03,0.63,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.336,82.34,100.92,0.93,0.1,793,0.7000000000000001,31,3.3000000000000003
+2023,12,13,7,0,-4.2,1.12,0.03,0.63,0,0,0,0,7,-7,0,0,0,0,0.336,81.11,95.69,0.93,0.1,793,0.8,32,3.3000000000000003
+2023,12,13,7,30,-3.8000000000000003,1.12,0.03,0.63,6,76,6,1,0,-7,4,27,18,4,0.336,78.71000000000001,90.18,0.93,0.1,793,0.8,34,3.4000000000000004
+2023,12,13,8,0,-3.5,1.1400000000000001,0.029,0.63,24,438,57,2,0,-6.800000000000001,28,312,36,51,0.336,77.78,85.74,0.93,0.1,794,0.8,36,3.4000000000000004
+2023,12,13,8,30,-2.6,1.1400000000000001,0.029,0.63,34,636,130,0,0,-6.800000000000001,34,636,0,130,0.336,72.75,81.33,0.93,0.1,794,0.8,37,3.4000000000000004
+2023,12,13,9,0,-1.8,1.18,0.027,0.63,41,752,207,0,0,-6.4,41,752,0,207,0.336,71.02,77.22,0.92,0.1,794,0.8,38,3.4000000000000004
+2023,12,13,9,30,-0.6000000000000001,1.18,0.027,0.63,45,826,279,0,0,-6.4,45,826,0,279,0.337,65.05,73.52,0.92,0.1,794,0.7000000000000001,40,3.4000000000000004
+2023,12,13,10,0,0.6000000000000001,1.21,0.023,0.63,48,877,343,0,0,-5.4,48,877,0,343,0.337,64.29,70.31,0.92,0.1,794,0.7000000000000001,42,3.3000000000000003
+2023,12,13,10,30,2,1.21,0.023,0.63,50,911,396,0,0,-5.4,76,793,0,378,0.338,58.15,67.65,0.91,0.1,794,0.7000000000000001,48,3.1
+2023,12,13,11,0,3.5,1.23,0.021,0.63,50,934,435,0,7,-4.800000000000001,129,638,0,392,0.338,54.63,65.63,0.91,0.1,793,0.7000000000000001,54,3
+2023,12,13,11,30,4.5,1.23,0.021,0.63,51,946,461,0,7,-4.800000000000001,195,131,0,252,0.339,50.93,64.3,0.9,0.1,793,0.7000000000000001,64,2.8000000000000003
+2023,12,13,12,0,5.5,1.22,0.02,0.63,50,952,472,0,7,-4.4,183,422,7,370,0.339,48.97,63.71,0.9,0.1,793,0.7000000000000001,74,2.6
+2023,12,13,12,30,5.800000000000001,1.22,0.02,0.63,51,950,469,0,0,-4.4,115,696,0,421,0.339,47.96,63.88,0.9,0.1,793,0.7000000000000001,77,2.3000000000000003
+2023,12,13,13,0,6.1000000000000005,1.22,0.021,0.63,50,942,451,0,0,-4.3,91,792,0,428,0.34,47.33,64.8,0.91,0.1,792,0.7000000000000001,80,2.1
+2023,12,13,13,30,6,1.22,0.021,0.63,49,925,419,0,0,-4.3,66,858,0,409,0.34,47.660000000000004,66.45,0.91,0.1,792,0.7000000000000001,77,1.9000000000000001
+2023,12,13,14,0,5.800000000000001,1.2,0.023,0.63,48,899,374,0,0,-4,48,899,0,374,0.34,49.300000000000004,68.76,0.91,0.1,792,0.7000000000000001,74,1.7000000000000002
+2023,12,13,14,30,4.9,1.2,0.023,0.63,45,861,316,0,0,-4,45,861,0,316,0.34,52.47,71.68,0.91,0.1,792,0.7000000000000001,63,1.3
+2023,12,13,15,0,4,1.18,0.024,0.63,42,805,249,0,7,-2.6,101,416,0,208,0.34,62.07,75.12,0.92,0.1,792,0.7000000000000001,52,0.9
+2023,12,13,15,30,2.4000000000000004,1.18,0.024,0.63,37,718,174,0,7,-2.6,81,41,0,89,0.34,69.49,79,0.92,0.1,792,0.7000000000000001,48,1.1
+2023,12,13,16,0,0.9,1.16,0.025,0.63,29,576,97,4,7,-4.1000000000000005,39,173,54,59,0.34,69.31,83.26,0.92,0.1,792,0.7000000000000001,44,1.2000000000000002
+2023,12,13,16,30,0.30000000000000004,1.16,0.025,0.63,17,272,28,0,0,-4.1000000000000005,17,272,0,28,0.34,72.47,87.76,0.92,0.1,793,0.7000000000000001,46,1.2000000000000002
+2023,12,13,17,0,-0.30000000000000004,1.1500000000000001,0.027,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.339,73.96000000000001,92.88,0.93,0.1,793,0.7000000000000001,48,1.3
+2023,12,13,17,30,-0.5,1.1500000000000001,0.027,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.338,75.05,98,0.93,0.1,793,0.7000000000000001,44,1.3
+2023,12,13,18,0,-0.6000000000000001,1.16,0.026000000000000002,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.337,76.74,103.3,0.93,0.1,793,0.7000000000000001,40,1.2000000000000002
+2023,12,13,18,30,-1,1.16,0.026000000000000002,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.336,79.02,108.74000000000001,0.92,0.1,793,0.7000000000000001,37,1.3
+2023,12,13,19,0,-1.4000000000000001,1.18,0.025,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.336,81.88,114.3,0.92,0.1,794,0.7000000000000001,33,1.3
+2023,12,13,19,30,-1.6,1.18,0.025,0.63,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.335,82.99,119.94,0.92,0.1,793,0.7000000000000001,31,1.3
+2023,12,13,20,0,-1.9000000000000001,1.2,0.025,0.63,0,0,0,0,0,-4,0,0,0,0,0.335,85.53,125.62,0.92,0.1,793,0.7000000000000001,29,1.3
+2023,12,13,20,30,-2.2,1.2,0.025,0.63,0,0,0,0,0,-4,0,0,0,0,0.335,87.44,131.32,0.92,0.1,793,0.7000000000000001,28,1.3
+2023,12,13,21,0,-2.5,1.22,0.024,0.63,0,0,0,0,5,-3.9000000000000004,0,0,0,0,0.335,89.77,136.98,0.92,0.1,793,0.7000000000000001,27,1.3
+2023,12,13,21,30,-2.7,1.22,0.024,0.63,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.335,91.11,142.55,0.92,0.1,793,0.7000000000000001,28,1.3
+2023,12,13,22,0,-3,1.24,0.023,0.63,0,0,0,0,7,-4,0,0,0,0,0.336,93.09,147.94,0.91,0.1,793,0.7000000000000001,28,1.3
+2023,12,13,22,30,-3.1,1.24,0.023,0.63,0,0,0,0,7,-4,0,0,0,0,0.336,93.79,152.99,0.91,0.1,793,0.7000000000000001,27,1.3
+2023,12,13,23,0,-3.1,1.24,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.336,93.26,157.44,0.91,0.1,793,0.7000000000000001,26,1.2000000000000002
+2023,12,13,23,30,-3.2,1.24,0.024,0.63,0,0,0,0,4,-4,0,0,0,0,0.337,93.95,160.85,0.92,0.1,793,0.7000000000000001,24,1.2000000000000002
+2023,12,14,0,0,-3.2,1.23,0.025,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.337,92.96000000000001,162.56,0.92,0.1,793,0.7000000000000001,22,1.2000000000000002
+2023,12,14,0,30,-3.2,1.23,0.025,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.338,92.96000000000001,162.08,0.92,0.1,793,0.8,23,1.2000000000000002
+2023,12,14,1,0,-3.2,1.21,0.027,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.338,92.11,159.57,0.92,0.1,793,0.8,24,1.2000000000000002
+2023,12,14,1,30,-3.1,1.21,0.027,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.339,91.43,155.65,0.92,0.1,793,0.8,30,1.2000000000000002
+2023,12,14,2,0,-3.1,1.2,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.339,90.7,150.9,0.92,0.1,793,0.8,36,1.2000000000000002
+2023,12,14,2,30,-3.3000000000000003,1.2,0.029,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.338,92.06,145.68,0.92,0.1,793,0.8,41,1.3
+2023,12,14,3,0,-3.4000000000000004,1.21,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.338,91.85000000000001,140.21,0.92,0.1,793,0.8,46,1.3
+2023,12,14,3,30,-3.7,1.21,0.029,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.337,93.93,134.59,0.92,0.1,793,0.8,48,1.1
+2023,12,14,4,0,-3.9000000000000004,1.22,0.028,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.336,94.44,128.91,0.92,0.1,793,0.8,50,1
+2023,12,14,4,30,-4.1000000000000005,1.22,0.028,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.336,95.87,123.21000000000001,0.92,0.1,793,0.8,44,0.9
+2023,12,14,5,0,-4.3,1.23,0.026000000000000002,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.336,96.57000000000001,117.55,0.92,0.1,793,0.7000000000000001,37,0.8
+2023,12,14,5,30,-4.7,1.23,0.026000000000000002,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.336,99.52,111.94,0.91,0.1,793,0.7000000000000001,24,0.9
+2023,12,14,6,0,-5.1000000000000005,1.24,0.024,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.337,100,106.43,0.91,0.1,793,0.7000000000000001,11,1
+2023,12,14,6,30,-5.5,1.24,0.024,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.336,100,101.04,0.91,0.1,793,0.7000000000000001,12,1
+2023,12,14,7,0,-5.800000000000001,1.23,0.023,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.335,100,95.82000000000001,0.91,0.1,793,0.6000000000000001,13,1
+2023,12,14,7,30,-5.2,1.23,0.023,0.63,6,80,6,0,0,-5.300000000000001,6,80,0,6,0.333,99.22,90.29,0.91,0.1,793,0.6000000000000001,35,1.1
+2023,12,14,8,0,-4.5,1.21,0.027,0.63,23,452,56,0,0,-5.6000000000000005,23,452,0,56,0.331,91.99,85.86,0.92,0.1,794,0.6000000000000001,57,1.2000000000000002
+2023,12,14,8,30,-3.5,1.21,0.027,0.63,34,644,130,0,0,-5.6000000000000005,34,644,0,130,0.329,85.34,81.44,0.92,0.1,794,0.6000000000000001,76,1.2000000000000002
+2023,12,14,9,0,-2.5,1.21,0.03,0.63,42,753,207,0,0,-4.7,42,753,0,207,0.327,84.58,77.33,0.93,0.1,794,0.6000000000000001,94,1.3
+2023,12,14,9,30,-1.6,1.21,0.03,0.63,47,827,280,0,0,-4.7,47,827,0,280,0.325,79.15,73.63,0.92,0.1,794,0.6000000000000001,76,0.8
+2023,12,14,10,0,-0.6000000000000001,1.22,0.028,0.63,50,878,344,0,0,-4.3,50,878,0,344,0.324,75.86,70.41,0.92,0.1,794,0.6000000000000001,58,0.30000000000000004
+2023,12,14,10,30,0.1,1.22,0.028,0.63,52,911,397,0,0,-4.3,52,911,0,397,0.322,72.10000000000001,67.75,0.92,0.1,794,0.6000000000000001,186,1
+2023,12,14,11,0,0.9,1.17,0.025,0.63,53,933,437,0,0,-4.7,53,933,0,437,0.321,66.22,65.72,0.92,0.1,794,0.6000000000000001,314,1.7000000000000002
+2023,12,14,11,30,1.4000000000000001,1.17,0.025,0.63,54,947,463,0,0,-4.7,54,947,0,463,0.319,63.800000000000004,64.38,0.91,0.1,793,0.6000000000000001,311,2.2
+2023,12,14,12,0,1.9000000000000001,1.16,0.023,0.63,53,955,475,0,0,-5.300000000000001,53,955,0,475,0.318,59.04,63.77,0.91,0.1,793,0.6000000000000001,308,2.6
+2023,12,14,12,30,2.3000000000000003,1.16,0.023,0.63,52,955,472,0,0,-5.300000000000001,52,955,0,472,0.317,57.38,63.93,0.91,0.1,793,0.6000000000000001,305,2.7
+2023,12,14,13,0,2.7,1.1500000000000001,0.021,0.63,51,950,455,0,0,-5.9,51,950,0,455,0.316,53,64.84,0.91,0.1,792,0.6000000000000001,303,2.7
+2023,12,14,13,30,3,1.1500000000000001,0.021,0.63,50,937,424,0,0,-5.9,50,937,0,424,0.315,51.88,66.48,0.91,0.1,792,0.6000000000000001,299,2.6
+2023,12,14,14,0,3.2,1.17,0.019,0.63,46,917,378,0,0,-6.5,46,917,0,378,0.314,49.09,68.78,0.91,0.1,792,0.6000000000000001,296,2.4000000000000004
+2023,12,14,14,30,2.8000000000000003,1.17,0.019,0.63,43,883,321,0,0,-6.5,43,883,0,321,0.313,50.56,71.68,0.91,0.1,793,0.6000000000000001,284,1.7000000000000002
+2023,12,14,15,0,2.4000000000000004,1.1500000000000001,0.018000000000000002,0.63,40,830,253,0,0,-4.800000000000001,40,830,0,253,0.312,58.81,75.11,0.9,0.1,793,0.6000000000000001,272,1
+2023,12,14,15,30,1.1,1.1500000000000001,0.018000000000000002,0.63,35,749,178,0,0,-4.800000000000001,35,749,0,178,0.311,64.53,78.99,0.9,0.1,793,0.6000000000000001,258,1
+2023,12,14,16,0,-0.2,1.1300000000000001,0.018000000000000002,0.63,27,616,100,0,0,-6.2,27,616,0,100,0.31,63.99,83.24,0.9,0.1,793,0.5,244,1
+2023,12,14,16,30,-1,1.1300000000000001,0.018000000000000002,0.63,17,306,29,0,0,-6.2,17,306,0,29,0.31,67.92,87.73,0.9,0.1,794,0.5,240,1
+2023,12,14,17,0,-1.8,1.1,0.017,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.309,69.02,92.84,0.9,0.1,794,0.5,236,1.1
+2023,12,14,17,30,-2.1,1.1,0.017,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.309,70.56,97.95,0.9,0.1,794,0.5,236,1.1
+2023,12,14,18,0,-2.4000000000000004,1.08,0.017,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.309,73.4,103.25,0.89,0.1,795,0.5,237,1
+2023,12,14,18,30,-2.6,1.08,0.017,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.31,74.5,108.69,0.89,0.1,795,0.5,239,1
+2023,12,14,19,0,-2.8000000000000003,1.08,0.017,0.63,0,0,0,0,0,-6.4,0,0,0,0,0.31,76.51,114.25,0.89,0.1,795,0.5,242,1
+2023,12,14,19,30,-3,1.08,0.017,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.312,77.75,119.88,0.89,0.1,796,0.5,245,0.9
+2023,12,14,20,0,-3.2,1.1,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.313,79.48,125.57000000000001,0.89,0.1,796,0.5,248,0.9
+2023,12,14,20,30,-3.3000000000000003,1.1,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.315,80.07000000000001,131.26,0.89,0.1,796,0.5,249,0.9
+2023,12,14,21,0,-3.4000000000000004,1.12,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.317,80.68,136.93,0.89,0.1,796,0.4,251,0.9
+2023,12,14,21,30,-3.5,1.12,0.017,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.319,81.28,142.5,0.89,0.1,796,0.4,250,0.8
+2023,12,14,22,0,-3.7,1.1400000000000001,0.016,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.322,81.89,147.89000000000001,0.88,0.1,796,0.4,250,0.8
+2023,12,14,22,30,-3.9000000000000004,1.1400000000000001,0.016,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.323,83.13,152.95000000000002,0.88,0.1,796,0.4,250,0.8
+2023,12,14,23,0,-4.1000000000000005,1.16,0.015,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.324,83.26,157.42000000000002,0.88,0.1,796,0.4,251,0.8
+2023,12,14,23,30,-4.3,1.16,0.015,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.324,84.52,160.86,0.88,0.1,796,0.4,253,0.8
+2023,12,15,0,0,-4.5,1.18,0.015,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.324,84.60000000000001,162.61,0.88,0.1,796,0.4,256,0.7000000000000001
+2023,12,15,0,30,-4.7,1.18,0.015,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.324,85.89,162.17000000000002,0.88,0.1,796,0.4,259,0.7000000000000001
+2023,12,15,1,0,-4.9,1.2,0.015,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.324,86.23,159.67000000000002,0.88,0.1,796,0.4,261,0.6000000000000001
+2023,12,15,1,30,-4.9,1.2,0.015,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.325,86.23,155.76,0.88,0.1,796,0.4,260,0.5
+2023,12,15,2,0,-4.9,1.21,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.325,85.86,151.02,0.88,0.1,797,0.4,258,0.4
+2023,12,15,2,30,-5,1.21,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.326,86.52,145.8,0.88,0.1,797,0.4,255,0.30000000000000004
+2023,12,15,3,0,-5,1.22,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.327,86.4,140.33,0.88,0.1,797,0.4,252,0.30000000000000004
+2023,12,15,3,30,-5,1.22,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.328,86.4,134.71,0.88,0.1,797,0.4,266,0.2
+2023,12,15,4,0,-5.1000000000000005,1.23,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.328,86.86,129.03,0.88,0.1,797,0.4,281,0.1
+2023,12,15,4,30,-5,1.23,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.329,86.21000000000001,123.34,0.88,0.1,797,0.4,172,0.1
+2023,12,15,5,0,-5,1.24,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.33,86.27,117.67,0.88,0.1,798,0.4,63,0.1
+2023,12,15,5,30,-5.1000000000000005,1.24,0.015,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.331,86.93,112.06,0.88,0.1,798,0.4,143,0.1
+2023,12,15,6,0,-5.2,1.24,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.331,87.66,106.55,0.88,0.1,798,0.4,223,0.1
+2023,12,15,6,30,-5.4,1.24,0.014,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.329,89,101.16,0.88,0.1,798,0.4,267,0.2
+2023,12,15,7,0,-5.5,1.23,0.014,0.63,0,0,0,0,0,-7,0,0,0,0,0.328,89.35000000000001,95.94,0.88,0.1,799,0.4,310,0.30000000000000004
+2023,12,15,7,30,-5,1.23,0.014,0.63,8,98,6,0,0,-7,8,98,0,6,0.325,86.03,90.91,0.88,0.1,799,0.4,330,0.30000000000000004
+2023,12,15,8,0,-4.6000000000000005,1.23,0.014,0.63,21,514,57,0,0,-6.9,21,514,0,57,0.322,83.98,85.97,0.88,0.1,799,0.4,350,0.30000000000000004
+2023,12,15,8,30,-3.3000000000000003,1.23,0.014,0.63,29,703,132,0,0,-6.9,29,703,0,132,0.321,76.28,81.55,0.88,0.1,800,0.4,186,0.5
+2023,12,15,9,0,-2,1.24,0.013000000000000001,0.63,35,811,211,0,0,-6.6000000000000005,35,811,0,211,0.321,70.75,77.44,0.88,0.1,800,0.4,22,0.7000000000000001
+2023,12,15,9,30,-0.7000000000000001,1.24,0.013000000000000001,0.63,38,878,284,0,0,-6.6000000000000005,38,878,0,284,0.322,64.32000000000001,73.73,0.88,0.1,800,0.4,11,0.9
+2023,12,15,10,0,0.5,1.25,0.013000000000000001,0.63,40,923,348,0,0,-7.6000000000000005,40,923,0,348,0.323,54.53,70.51,0.88,0.1,800,0.4,0,1.1
+2023,12,15,10,30,1.5,1.25,0.013000000000000001,0.63,43,952,402,0,0,-7.6000000000000005,43,952,0,402,0.324,50.75,67.84,0.88,0.1,800,0.4,172,1.2000000000000002
+2023,12,15,11,0,2.6,1.29,0.012,0.63,44,972,442,0,0,-8.9,44,972,0,442,0.325,42.39,65.8,0.87,0.1,800,0.4,344,1.4000000000000001
+2023,12,15,11,30,3.1,1.29,0.012,0.63,44,984,468,0,0,-8.9,44,984,0,468,0.327,40.87,64.45,0.87,0.1,799,0.4,340,1.2000000000000002
+2023,12,15,12,0,3.6,1.31,0.012,0.63,44,989,480,0,0,-9.9,44,989,0,480,0.328,36.480000000000004,63.83,0.87,0.1,799,0.4,337,1
+2023,12,15,12,30,3.9000000000000004,1.31,0.012,0.63,44,988,477,0,0,-9.9,44,988,0,477,0.328,35.72,63.980000000000004,0.87,0.1,799,0.4,322,0.9
+2023,12,15,13,0,4.1000000000000005,1.31,0.012,0.63,42,981,459,0,0,-10.600000000000001,42,981,0,459,0.329,33.54,64.87,0.87,0.1,799,0.4,308,0.9
+2023,12,15,13,30,4.1000000000000005,1.31,0.012,0.63,43,968,429,0,0,-10.600000000000001,43,968,0,429,0.329,33.54,66.49,0.88,0.1,799,0.4,298,0.8
+2023,12,15,14,0,4.1000000000000005,1.1,0.014,0.63,43,946,385,0,0,-10.8,43,946,0,385,0.329,32.82,68.78,0.88,0.1,799,0.4,287,0.8
+2023,12,15,14,30,3.6,1.1,0.014,0.63,40,918,329,0,0,-10.8,40,918,0,329,0.329,34,71.67,0.88,0.1,799,0.30000000000000004,262,0.6000000000000001
+2023,12,15,15,0,3.1,1.1,0.013000000000000001,0.63,37,868,260,0,0,-7.800000000000001,37,868,0,260,0.329,44.7,75.09,0.88,0.1,799,0.30000000000000004,238,0.4
+2023,12,15,15,30,2.3000000000000003,1.1,0.013000000000000001,0.63,32,789,183,0,0,-7.800000000000001,32,789,0,183,0.329,47.31,78.96000000000001,0.88,0.1,799,0.30000000000000004,219,0.4
+2023,12,15,16,0,1.6,1.1,0.013000000000000001,0.63,26,659,104,0,0,-10,26,659,0,104,0.328,41.83,83.2,0.88,0.1,799,0.30000000000000004,200,0.4
+2023,12,15,16,30,1.1,1.1,0.013000000000000001,0.63,17,338,31,0,0,-10,17,338,0,31,0.329,43.35,87.69,0.88,0.1,799,0.30000000000000004,170,0.4
+2023,12,15,17,0,0.6000000000000001,1.12,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.329,42.27,92.8,0.88,0.1,799,0.30000000000000004,140,0.4
+2023,12,15,17,30,0,1.12,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.328,44.14,97.9,0.89,0.1,799,0.30000000000000004,141,0.7000000000000001
+2023,12,15,18,0,-0.6000000000000001,1.1300000000000001,0.016,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.328,46.87,103.2,0.89,0.1,799,0.30000000000000004,141,0.9
+2023,12,15,18,30,-1.2000000000000002,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.327,48.97,108.64,0.9,0.1,799,0.30000000000000004,150,1
+2023,12,15,19,0,-1.8,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.326,52.56,114.19,0.9,0.1,799,0.30000000000000004,160,1.1
+2023,12,15,19,30,-1.9000000000000001,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.327,52.95,119.82000000000001,0.9,0.1,799,0.30000000000000004,175,1.1
+2023,12,15,20,0,-2,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.327,53.85,125.5,0.9,0.1,799,0.30000000000000004,190,1
+2023,12,15,20,30,-2,1.1300000000000001,0.016,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.327,53.85,131.2,0.89,0.1,799,0.30000000000000004,208,1
+2023,12,15,21,0,-1.9000000000000001,1.1400000000000001,0.016,0.63,0,0,0,0,7,-10,0,0,0,0,0.328,53.89,136.87,0.89,0.1,799,0.30000000000000004,227,1
+2023,12,15,21,30,-1.9000000000000001,1.1400000000000001,0.016,0.63,0,0,0,0,0,-10,0,0,0,0,0.328,53.89,142.44,0.9,0.1,799,0.30000000000000004,232,0.9
+2023,12,15,22,0,-1.9000000000000001,1.16,0.016,0.63,0,0,0,0,7,-9.9,0,0,0,0,0.329,54.480000000000004,147.84,0.9,0.1,799,0.30000000000000004,237,0.9
+2023,12,15,22,30,-2.1,1.16,0.016,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,55.29,152.91,0.89,0.1,799,0.30000000000000004,234,0.9
+2023,12,15,23,0,-2.3000000000000003,1.18,0.014,0.63,0,0,0,0,0,-10,0,0,0,0,0.33,55.57,157.4,0.88,0.1,799,0.4,230,1
+2023,12,15,23,30,-2.6,1.18,0.014,0.63,0,0,0,0,0,-10,0,0,0,0,0.33,56.81,160.86,0.88,0.1,799,0.4,226,1
+2023,12,16,0,0,-3,1.18,0.014,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.33,57.13,162.65,0.88,0.1,798,0.4,223,1.1
+2023,12,16,0,30,-3.3000000000000003,1.18,0.014,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.33,58.42,162.24,0.88,0.1,798,0.4,220,1.1
+2023,12,16,1,0,-3.7,1.17,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.33,59.26,159.77,0.88,0.1,798,0.4,218,1.2000000000000002
+2023,12,16,1,30,-4,1.17,0.014,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.329,60.61,155.87,0.88,0.1,798,0.4,215,1.2000000000000002
+2023,12,16,2,0,-4.3,1.16,0.014,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.329,61.38,151.13,0.88,0.1,798,0.4,213,1.2000000000000002
+2023,12,16,2,30,-4.7,1.16,0.014,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.328,63.26,145.92000000000002,0.89,0.1,798,0.4,212,1.2000000000000002
+2023,12,16,3,0,-5,1.16,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.327,63.910000000000004,140.45000000000002,0.89,0.1,797,0.4,211,1.2000000000000002
+2023,12,16,3,30,-5.300000000000001,1.16,0.014,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.327,65.37,134.83,0.89,0.1,797,0.4,211,1.2000000000000002
+2023,12,16,4,0,-5.5,1.1500000000000001,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.326,65.53,129.15,0.89,0.1,797,0.4,211,1.2000000000000002
+2023,12,16,4,30,-5.800000000000001,1.1500000000000001,0.014,0.63,0,0,0,0,0,-10.9,0,0,0,0,0.325,67.05,123.45,0.89,0.1,797,0.4,211,1.2000000000000002
+2023,12,16,5,0,-6,1.1500000000000001,0.014,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.324,67.43,117.79,0.89,0.1,798,0.4,211,1.2000000000000002
+2023,12,16,5,30,-6.1000000000000005,1.1500000000000001,0.014,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.322,67.95,112.18,0.89,0.1,798,0.4,209,1.2000000000000002
+2023,12,16,6,0,-6.300000000000001,1.1500000000000001,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.321,68.17,106.67,0.89,0.1,798,0.4,208,1.2000000000000002
+2023,12,16,6,30,-6.5,1.1500000000000001,0.014,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.32,69.23,101.28,0.89,0.1,798,0.4,207,1.2000000000000002
+2023,12,16,7,0,-6.7,1.1500000000000001,0.013000000000000001,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.318,69.31,96.05,0.89,0.1,798,0.4,205,1.2000000000000002
+2023,12,16,7,30,-5.9,1.1500000000000001,0.013000000000000001,0.63,4,53,3,0,0,-11.4,4,53,0,3,0.316,65.2,91.02,0.89,0.1,798,0.4,205,1.2000000000000002
+2023,12,16,8,0,-5.2,1.16,0.013000000000000001,0.63,21,512,56,0,0,-10.700000000000001,21,512,0,56,0.315,65.34,86.07000000000001,0.89,0.1,798,0.4,205,1.1
+2023,12,16,8,30,-3.4000000000000004,1.16,0.013000000000000001,0.63,29,704,131,0,0,-10.700000000000001,29,704,0,131,0.314,57.07,81.66,0.89,0.1,798,0.4,208,1.7000000000000002
+2023,12,16,9,0,-1.7000000000000002,1.18,0.012,0.63,34,813,209,0,0,-10.3,34,813,0,209,0.312,51.89,77.54,0.89,0.1,798,0.4,210,2.3000000000000003
+2023,12,16,9,30,-0.30000000000000004,1.18,0.012,0.63,37,880,282,0,0,-10.3,37,880,0,282,0.311,46.85,73.83,0.89,0.1,798,0.4,216,2.6
+2023,12,16,10,0,1.1,1.2,0.012,0.63,40,924,347,0,0,-9.9,40,924,0,347,0.31,43.54,70.60000000000001,0.89,0.1,798,0.4,221,3
+2023,12,16,10,30,2.3000000000000003,1.2,0.012,0.63,41,955,400,0,0,-10,41,955,0,400,0.308,39.910000000000004,67.92,0.89,0.1,797,0.4,226,3.3000000000000003
+2023,12,16,11,0,3.4000000000000004,1.41,0.011,0.63,42,975,441,0,0,-10,83,785,7,404,0.307,36.86,65.87,0.89,0.1,797,0.4,231,3.7
+2023,12,16,11,30,4,1.41,0.011,0.63,43,987,468,0,7,-10,179,380,0,343,0.306,35.29,64.51,0.89,0.1,796,0.4,232,3.8000000000000003
+2023,12,16,12,0,4.6000000000000005,1.46,0.011,0.63,43,993,480,0,7,-10,163,520,0,392,0.304,33.730000000000004,63.88,0.89,0.1,796,0.4,233,3.9000000000000004
+2023,12,16,12,30,4.9,1.46,0.011,0.63,42,992,477,0,7,-10,132,638,0,412,0.304,33.04,64.01,0.89,0.1,796,0.4,233,3.9000000000000004
+2023,12,16,13,0,5.1000000000000005,1.49,0.01,0.63,41,986,459,0,0,-10.100000000000001,70,865,0,437,0.303,32.34,64.9,0.88,0.1,795,0.4,234,3.9000000000000004
+2023,12,16,13,30,5,1.49,0.01,0.63,41,972,428,0,0,-10.100000000000001,61,901,0,420,0.303,32.57,66.51,0.88,0.1,795,0.4,233,3.7
+2023,12,16,14,0,4.9,1.52,0.01,0.63,38,950,382,0,0,-10,68,832,0,369,0.303,33.07,68.78,0.88,0.1,795,0.4,233,3.5
+2023,12,16,14,30,4,1.52,0.01,0.63,37,916,325,0,7,-10,122,510,0,282,0.304,35.22,71.66,0.88,0.1,795,0.4,231,2.7
+2023,12,16,15,0,3,1.49,0.01,0.63,34,866,257,0,7,-7.800000000000001,109,429,0,220,0.304,44.79,75.07000000000001,0.89,0.1,795,0.4,229,1.9000000000000001
+2023,12,16,15,30,1.2000000000000002,1.49,0.01,0.63,31,787,182,0,7,-7.9,91,335,0,155,0.306,50.92,78.93,0.89,0.1,795,0.4,223,1.5
+2023,12,16,16,0,-0.6000000000000001,1.45,0.011,0.63,25,657,103,6,7,-8.3,64,81,86,74,0.307,55.92,83.17,0.9,0.1,795,0.4,218,1.2000000000000002
+2023,12,16,16,30,-1.2000000000000002,1.45,0.011,0.63,17,341,31,7,7,-8.3,19,4,100,19,0.308,58.42,87.65,0.9,0.1,795,0.4,216,1.2000000000000002
+2023,12,16,17,0,-1.7000000000000002,1.42,0.012,0.63,0,0,0,1,7,-9.5,0,0,14,0,0.31,55.1,92.75,0.9,0.1,795,0.4,214,1.3
+2023,12,16,17,30,-1.9000000000000001,1.42,0.012,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.311,55.92,97.85000000000001,0.91,0.1,795,0.4,214,1.2000000000000002
+2023,12,16,18,0,-2,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.313,56.480000000000004,103.14,0.91,0.1,795,0.4,215,1.1
+2023,12,16,18,30,-2.1,1.3900000000000001,0.013000000000000001,0.63,0,0,0,0,7,-9.5,0,0,0,0,0.314,56.9,108.57000000000001,0.91,0.1,795,0.4,216,1.1
+2023,12,16,19,0,-2.3000000000000003,1.3800000000000001,0.014,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.315,58,114.12,0.91,0.1,795,0.4,217,1.1
+2023,12,16,19,30,-2.5,1.3800000000000001,0.014,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.315,58.86,119.75,0.91,0.1,795,0.4,215,1.1
+2023,12,16,20,0,-2.7,1.42,0.013000000000000001,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.315,59.230000000000004,125.44,0.9,0.1,795,0.4,213,1.1
+2023,12,16,20,30,-2.8000000000000003,1.42,0.013000000000000001,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.315,59.67,131.13,0.9,0.1,795,0.4,212,1.1
+2023,12,16,21,0,-3,1.45,0.011,0.63,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.315,59.9,136.8,0.89,0.1,795,0.4,210,1.2000000000000002
+2023,12,16,21,30,-3.1,1.45,0.011,0.63,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.315,60.35,142.38,0.89,0.1,795,0.4,210,1.2000000000000002
+2023,12,16,22,0,-3.2,1.45,0.011,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.314,60.33,147.78,0.88,0.1,795,0.4,210,1.2000000000000002
+2023,12,16,22,30,-3.3000000000000003,1.45,0.011,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.314,60.79,152.86,0.89,0.1,795,0.4,211,1.2000000000000002
+2023,12,16,23,0,-3.4000000000000004,1.42,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.314,60.94,157.37,0.89,0.1,795,0.4,211,1.2000000000000002
+2023,12,16,23,30,-3.6,1.42,0.01,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.314,61.85,160.85,0.88,0.1,795,0.4,212,1.2000000000000002
+2023,12,17,0,0,-3.8000000000000003,1.4000000000000001,0.01,0.63,0,0,0,0,0,-10,0,0,0,0,0.313,61.86,162.68,0.88,0.1,795,0.4,213,1.2000000000000002
+2023,12,17,0,30,-4,1.4000000000000001,0.01,0.63,0,0,0,0,0,-10,0,0,0,0,0.313,62.800000000000004,162.3,0.88,0.1,795,0.4,215,1.2000000000000002
+2023,12,17,1,0,-4.2,1.3800000000000001,0.01,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.313,62.76,159.86,0.88,0.1,795,0.4,217,1.1
+2023,12,17,1,30,-4.3,1.3800000000000001,0.01,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.313,63.24,155.97,0.88,0.1,795,0.4,221,1
+2023,12,17,2,0,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.313,63.120000000000005,151.24,0.88,0.1,795,0.30000000000000004,225,0.9
+2023,12,17,2,30,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.314,63.120000000000005,146.03,0.88,0.1,795,0.30000000000000004,230,0.8
+2023,12,17,3,0,-4.4,1.35,0.011,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.314,62.64,140.56,0.88,0.1,795,0.30000000000000004,236,0.7000000000000001
+2023,12,17,3,30,-4.5,1.35,0.011,0.63,0,0,0,0,0,-10.5,0,0,0,0,0.315,63.11,134.95,0.87,0.1,795,0.30000000000000004,241,0.5
+2023,12,17,4,0,-4.6000000000000005,1.37,0.01,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.315,62.870000000000005,129.26,0.87,0.1,795,0.30000000000000004,246,0.4
+2023,12,17,4,30,-4.6000000000000005,1.37,0.01,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.315,62.870000000000005,123.57000000000001,0.87,0.1,795,0.30000000000000004,250,0.30000000000000004
+2023,12,17,5,0,-4.7,1.37,0.01,0.63,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.315,62.940000000000005,117.9,0.86,0.1,795,0.30000000000000004,255,0.2
+2023,12,17,5,30,-4.800000000000001,1.37,0.01,0.63,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.315,63.49,112.29,0.86,0.1,796,0.30000000000000004,147,0.1
+2023,12,17,6,0,-4.9,1.36,0.01,0.63,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.316,63.64,106.78,0.86,0.1,796,0.30000000000000004,39,0.1
+2023,12,17,6,30,-5,1.36,0.01,0.63,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.316,64.12,101.39,0.86,0.1,796,0.30000000000000004,184,0.1
+2023,12,17,7,0,-5.2,1.35,0.01,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.316,64.55,96.16,0.86,0.1,796,0.30000000000000004,329,0.1
+2023,12,17,7,30,-4.800000000000001,1.35,0.01,0.63,4,56,3,0,0,-10.8,4,56,0,3,0.316,62.620000000000005,91.13,0.86,0.1,796,0.30000000000000004,307,0.2
+2023,12,17,8,0,-4.3,1.33,0.01,0.63,19,535,55,0,0,-10.4,19,535,0,55,0.316,62.51,86.18,0.86,0.1,797,0.30000000000000004,285,0.2
+2023,12,17,8,30,-2.9000000000000004,1.33,0.01,0.63,26,724,130,0,0,-10.4,26,724,0,130,0.316,56.300000000000004,81.76,0.86,0.1,797,0.30000000000000004,272,0.30000000000000004
+2023,12,17,9,0,-1.4000000000000001,1.32,0.01,0.63,31,830,209,0,0,-9.5,31,830,0,209,0.316,54.19,77.64,0.86,0.1,797,0.30000000000000004,258,0.5
+2023,12,17,9,30,-0.1,1.32,0.01,0.63,35,896,283,0,0,-9.5,35,896,0,283,0.316,49.29,73.92,0.86,0.1,797,0.30000000000000004,263,0.6000000000000001
+2023,12,17,10,0,1.2000000000000002,1.32,0.01,0.63,38,940,349,0,0,-10.200000000000001,38,940,0,349,0.315,42.52,70.68,0.86,0.1,798,0.30000000000000004,268,0.7000000000000001
+2023,12,17,10,30,2.5,1.32,0.01,0.63,41,966,403,0,0,-10.200000000000001,41,966,0,403,0.315,38.7,67.99,0.88,0.1,797,0.30000000000000004,283,0.9
+2023,12,17,11,0,3.7,0.92,0.013000000000000001,0.63,44,982,445,0,0,-11,44,982,0,445,0.315,33.22,65.93,0.89,0.1,797,0.30000000000000004,297,1.1
+2023,12,17,11,30,4.5,0.92,0.013000000000000001,0.63,45,994,472,0,0,-11,45,994,0,472,0.315,31.41,64.56,0.89,0.1,797,0.30000000000000004,303,1.2000000000000002
+2023,12,17,12,0,5.2,0.91,0.013000000000000001,0.63,45,1000,485,0,0,-11.700000000000001,45,1000,0,485,0.315,28.240000000000002,63.92,0.89,0.1,796,0.30000000000000004,309,1.3
+2023,12,17,12,30,5.5,0.91,0.013000000000000001,0.63,46,999,483,0,0,-11.700000000000001,46,999,0,483,0.315,27.66,64.04,0.89,0.1,796,0.30000000000000004,321,1.1
+2023,12,17,13,0,5.9,0.92,0.012,0.63,45,992,465,0,0,-12.3,45,992,0,465,0.315,25.69,64.92,0.89,0.1,796,0.30000000000000004,332,1
+2023,12,17,13,30,5.9,0.92,0.012,0.63,44,978,434,0,0,-12.3,44,978,0,434,0.315,25.69,66.51,0.89,0.1,796,0.30000000000000004,338,0.9
+2023,12,17,14,0,5.800000000000001,0.89,0.013000000000000001,0.63,42,955,388,0,0,-12.100000000000001,42,955,0,388,0.315,26.240000000000002,68.78,0.89,0.1,796,0.30000000000000004,344,0.7000000000000001
+2023,12,17,14,30,5.2,0.89,0.013000000000000001,0.63,40,922,330,0,0,-12.100000000000001,40,922,0,330,0.314,27.35,71.65,0.89,0.1,796,0.30000000000000004,327,0.5
+2023,12,17,15,0,4.6000000000000005,0.91,0.012,0.63,36,872,261,0,0,-9.1,36,872,0,261,0.313,36.31,75.04,0.89,0.1,796,0.30000000000000004,310,0.30000000000000004
+2023,12,17,15,30,3.8000000000000003,0.91,0.012,0.63,32,795,185,0,0,-9.1,32,795,0,185,0.313,38.4,78.9,0.89,0.1,796,0.30000000000000004,295,0.2
+2023,12,17,16,0,3,0.93,0.012,0.63,26,665,106,0,0,-11.8,26,665,0,106,0.312,32.77,83.12,0.89,0.1,796,0.30000000000000004,281,0.2
+2023,12,17,16,30,2.5,0.93,0.012,0.63,18,345,32,0,0,-11.8,18,345,0,32,0.312,33.95,87.60000000000001,0.89,0.1,796,0.30000000000000004,177,0.30000000000000004
+2023,12,17,17,0,2,0.9500000000000001,0.012,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.311,33.3,92.69,0.89,0.1,796,0.30000000000000004,73,0.4
+2023,12,17,17,30,1.5,0.9500000000000001,0.012,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.311,34.51,97.79,0.89,0.1,796,0.30000000000000004,79,0.6000000000000001
+2023,12,17,18,0,1,0.9500000000000001,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.31,35.83,103.07000000000001,0.89,0.1,796,0.30000000000000004,84,0.8
+2023,12,17,18,30,0.6000000000000001,0.9500000000000001,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.31,36.88,108.5,0.88,0.1,796,0.30000000000000004,93,0.8
+2023,12,17,19,0,0.1,0.9500000000000001,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.309,38.96,114.05,0.88,0.1,796,0.30000000000000004,101,0.9
+2023,12,17,19,30,-0.1,0.9500000000000001,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.31,39.52,119.68,0.88,0.1,796,0.30000000000000004,115,0.8
+2023,12,17,20,0,-0.30000000000000004,0.96,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.311,40.38,125.36,0.88,0.1,796,0.30000000000000004,130,0.7000000000000001
+2023,12,17,20,30,-0.5,0.96,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.313,40.97,131.06,0.88,0.1,796,0.30000000000000004,157,0.6000000000000001
+2023,12,17,21,0,-0.7000000000000001,0.97,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.315,41.480000000000004,136.73,0.88,0.1,796,0.30000000000000004,184,0.6000000000000001
+2023,12,17,21,30,-0.9,0.97,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.317,42.09,142.31,0.88,0.1,796,0.30000000000000004,201,0.6000000000000001
+2023,12,17,22,0,-1,0.98,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.32,42.22,147.72,0.89,0.1,796,0.30000000000000004,219,0.5
+2023,12,17,22,30,-1.1,0.98,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.322,42.53,152.81,0.89,0.1,796,0.30000000000000004,217,0.5
+2023,12,17,23,0,-1.2000000000000002,0.99,0.01,0.63,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.323,42.85,157.33,0.89,0.1,796,0.30000000000000004,215,0.4
+2023,12,17,23,30,-1.4000000000000001,0.99,0.01,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.323,43.49,160.84,0.89,0.1,796,0.30000000000000004,205,0.4
+2023,12,18,0,0,-1.6,1.01,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,43.7,162.70000000000002,0.9,0.1,796,0.30000000000000004,195,0.4
+2023,12,18,0,30,-1.8,1.01,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,44.29,162.36,0.9,0.1,795,0.30000000000000004,182,0.5
+2023,12,18,1,0,-2,1.04,0.012,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.322,45.13,159.94,0.9,0.1,795,0.30000000000000004,169,0.5
+2023,12,18,1,30,-2.3000000000000003,1.04,0.012,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.323,46.15,156.07,0.91,0.1,795,0.30000000000000004,166,0.6000000000000001
+2023,12,18,2,0,-2.6,1.06,0.014,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.324,47.230000000000004,151.34,0.91,0.1,795,0.30000000000000004,164,0.7000000000000001
+2023,12,18,2,30,-2.9000000000000004,1.06,0.014,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.325,48.300000000000004,146.14000000000001,0.92,0.1,795,0.30000000000000004,167,0.7000000000000001
+2023,12,18,3,0,-3.2,1.07,0.016,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.326,49.2,140.67000000000002,0.92,0.1,795,0.30000000000000004,170,0.8
+2023,12,18,3,30,-3.5,1.07,0.016,0.63,0,0,0,0,7,-12.4,0,0,0,0,0.328,50.32,135.06,0.92,0.1,795,0.30000000000000004,177,0.8
+2023,12,18,4,0,-3.8000000000000003,1.08,0.016,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.329,51.84,129.38,0.92,0.1,795,0.30000000000000004,185,0.8
+2023,12,18,4,30,-4,1.08,0.016,0.63,0,0,0,0,7,-12.3,0,0,0,0,0.33,52.620000000000005,123.68,0.92,0.1,795,0.30000000000000004,189,0.9
+2023,12,18,5,0,-4.2,1.08,0.017,0.63,0,0,0,0,0,-12,0,0,0,0,0.331,54.550000000000004,118.01,0.92,0.1,795,0.30000000000000004,194,0.9
+2023,12,18,5,30,-4.4,1.08,0.017,0.63,0,0,0,0,0,-12,0,0,0,0,0.332,55.370000000000005,112.4,0.92,0.1,795,0.30000000000000004,193,1
+2023,12,18,6,0,-4.6000000000000005,1.08,0.018000000000000002,0.63,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.332,57.480000000000004,106.89,0.93,0.1,795,0.30000000000000004,193,1
+2023,12,18,6,30,-4.7,1.08,0.018000000000000002,0.63,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.332,57.84,101.5,0.93,0.1,794,0.30000000000000004,190,1.1
+2023,12,18,7,0,-4.9,1.08,0.018000000000000002,0.63,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.333,59.52,96.27,0.93,0.1,794,0.30000000000000004,187,1.1
+2023,12,18,7,30,-4.4,1.08,0.018000000000000002,0.63,4,49,3,3,7,-11.600000000000001,1,0,43,1,0.331,57.32,91.23,0.93,0.1,794,0.30000000000000004,187,1.1
+2023,12,18,8,0,-4,1.09,0.018000000000000002,0.63,22,492,54,7,7,-10.700000000000001,23,1,100,23,0.33,59.800000000000004,86.27,0.93,0.1,794,0.30000000000000004,188,1.1
+2023,12,18,8,30,-2.8000000000000003,1.09,0.018000000000000002,0.63,30,695,129,3,7,-10.700000000000001,66,22,43,69,0.328,54.68,81.85000000000001,0.93,0.1,794,0.30000000000000004,193,1.3
+2023,12,18,9,0,-1.6,1.11,0.018000000000000002,0.63,37,808,209,0,7,-9.8,101,36,0,109,0.326,53.71,77.73,0.93,0.1,794,0.30000000000000004,198,1.5
+2023,12,18,9,30,-0.7000000000000001,1.11,0.018000000000000002,0.63,41,878,283,0,7,-9.8,146,84,0,169,0.324,50.29,74.01,0.93,0.1,794,0.30000000000000004,205,1.7000000000000002
+2023,12,18,10,0,0.30000000000000004,1.1300000000000001,0.017,0.63,44,926,349,0,7,-10.200000000000001,172,177,0,230,0.323,45.25,70.76,0.92,0.1,794,0.30000000000000004,212,2
+2023,12,18,10,30,1.3,1.1300000000000001,0.017,0.63,47,956,404,0,7,-10.200000000000001,203,121,0,248,0.321,42.050000000000004,68.06,0.92,0.1,793,0.30000000000000004,217,2.5
+2023,12,18,11,0,2.4000000000000004,1.1300000000000001,0.017,0.63,48,976,445,0,7,-10,175,60,0,199,0.32,39.56,65.99,0.92,0.1,793,0.30000000000000004,222,3
+2023,12,18,11,30,3.2,1.1300000000000001,0.017,0.63,49,989,473,0,7,-10,226,88,0,264,0.318,37.38,64.61,0.92,0.1,793,0.30000000000000004,222,3.4000000000000004
+2023,12,18,12,0,3.9000000000000004,1.1400000000000001,0.016,0.63,49,995,486,0,7,-10.100000000000001,241,127,0,297,0.316,35.300000000000004,63.96,0.92,0.1,792,0.30000000000000004,222,3.8000000000000003
+2023,12,18,12,30,4.2,1.1400000000000001,0.016,0.63,50,993,484,0,7,-10.100000000000001,219,225,0,317,0.315,34.57,64.07000000000001,0.92,0.1,792,0.30000000000000004,221,3.9000000000000004
+2023,12,18,13,0,4.5,1.1300000000000001,0.018000000000000002,0.63,50,985,467,0,6,-10.200000000000001,163,67,0,191,0.314,33.65,64.93,0.93,0.1,791,0.30000000000000004,221,4.1000000000000005
+2023,12,18,13,30,4,1.1300000000000001,0.018000000000000002,0.63,49,968,435,0,6,-10.200000000000001,134,10,0,138,0.313,34.85,66.51,0.93,0.1,791,0.30000000000000004,221,3.6
+2023,12,18,14,0,3.6,1.1300000000000001,0.019,0.63,47,938,387,0,6,-9.200000000000001,94,3,0,95,0.312,38.69,68.76,0.93,0.1,791,0.4,221,3.1
+2023,12,18,14,30,2.6,1.1300000000000001,0.019,0.63,45,899,328,0,6,-9.200000000000001,64,1,0,64,0.311,41.52,71.62,0.93,0.1,791,0.4,218,2.4000000000000004
+2023,12,18,15,0,1.7000000000000002,1.1400000000000001,0.019,0.63,41,846,260,0,6,-8,55,2,0,56,0.311,48.6,75.01,0.93,0.1,791,0.4,216,1.8
+2023,12,18,15,30,0.7000000000000001,1.1400000000000001,0.019,0.63,36,766,184,0,6,-8,36,0,0,36,0.311,52.21,78.85000000000001,0.93,0.1,791,0.4,212,1.6
+2023,12,18,16,0,-0.4,1.16,0.018000000000000002,0.63,28,627,104,6,6,-8,28,1,86,28,0.31,56.61,83.07000000000001,0.93,0.1,790,0.5,209,1.4000000000000001
+2023,12,18,16,30,-1,1.16,0.018000000000000002,0.63,18,314,31,7,6,-8,12,0,100,12,0.311,59.14,87.55,0.93,0.1,790,0.5,208,1.4000000000000001
+2023,12,18,17,0,-1.7000000000000002,1.17,0.019,0.63,0,0,0,1,6,-8.700000000000001,0,0,14,0,0.312,59.01,92.63,0.93,0.1,790,0.5,206,1.4000000000000001
+2023,12,18,17,30,-2,1.17,0.019,0.63,0,0,0,0,6,-8.700000000000001,0,0,0,0,0.313,60.32,97.72,0.92,0.1,790,0.5,206,1.4000000000000001
+2023,12,18,18,0,-2.2,1.19,0.018000000000000002,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.314,59.9,103,0.92,0.1,790,0.5,205,1.4000000000000001
+2023,12,18,18,30,-2.5,1.19,0.018000000000000002,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.315,61.24,108.43,0.92,0.1,790,0.5,206,1.4000000000000001
+2023,12,18,19,0,-2.7,1.2,0.017,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.316,60.93,113.98,0.91,0.1,790,0.5,206,1.4000000000000001
+2023,12,18,19,30,-2.9000000000000004,1.2,0.017,0.63,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.317,61.84,119.60000000000001,0.91,0.1,790,0.5,208,1.5
+2023,12,18,20,0,-3.1,1.22,0.017,0.63,0,0,0,0,8,-9.4,0,0,0,0,0.318,61.620000000000005,125.28,0.91,0.1,790,0.5,209,1.5
+2023,12,18,20,30,-3.2,1.22,0.017,0.63,0,0,0,0,8,-9.4,0,0,0,0,0.319,62.08,130.98,0.91,0.1,790,0.5,211,1.5
+2023,12,18,21,0,-3.3000000000000003,1.22,0.017,0.63,0,0,0,0,5,-9.5,0,0,0,0,0.319,62.08,136.65,0.91,0.1,790,0.5,212,1.6
+2023,12,18,21,30,-3.4000000000000004,1.22,0.017,0.63,0,0,0,0,4,-9.5,0,0,0,0,0.32,62.54,142.23,0.91,0.1,790,0.5,213,1.6
+2023,12,18,22,0,-3.5,1.22,0.018000000000000002,0.63,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.321,62.45,147.65,0.91,0.1,790,0.5,213,1.6
+2023,12,18,22,30,-3.7,1.22,0.018000000000000002,0.63,0,0,0,0,5,-9.600000000000001,0,0,0,0,0.322,63.39,152.74,0.91,0.1,790,0.5,212,1.6
+2023,12,18,23,0,-3.9000000000000004,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.323,63.56,157.28,0.91,0.1,789,0.5,210,1.7000000000000002
+2023,12,18,23,30,-4,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.324,64.03,160.82,0.91,0.1,789,0.5,209,1.7000000000000002
+2023,12,19,0,0,-4.1000000000000005,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.325,64.33,162.71,0.91,0.1,789,0.5,207,1.7000000000000002
+2023,12,19,0,30,-4.2,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.326,64.81,162.41,0.91,0.1,789,0.5,206,1.7000000000000002
+2023,12,19,1,0,-4.3,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.327,65.53,160.02,0.91,0.1,789,0.5,205,1.8
+2023,12,19,1,30,-4.4,1.22,0.018000000000000002,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.328,66.03,156.16,0.91,0.1,789,0.5,203,1.8
+2023,12,19,2,0,-4.4,1.23,0.018000000000000002,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.328,66.23,151.44,0.91,0.1,789,0.5,201,1.8
+2023,12,19,2,30,-4.5,1.23,0.018000000000000002,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,66.73,146.25,0.9,0.1,789,0.5,200,1.8
+2023,12,19,3,0,-4.6000000000000005,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,67.17,140.78,0.9,0.1,789,0.5,198,1.8
+2023,12,19,3,30,-4.800000000000001,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,68.19,135.16,0.9,0.1,789,0.5,198,1.8
+2023,12,19,4,0,-4.9,1.24,0.017,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.329,68.34,129.48,0.9,0.1,788,0.5,198,1.8
+2023,12,19,4,30,-5.1000000000000005,1.24,0.017,0.63,0,0,0,0,8,-9.8,0,0,0,0,0.329,69.46000000000001,123.79,0.91,0.1,789,0.6000000000000001,197,1.8
+2023,12,19,5,0,-5.2,1.25,0.017,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,69.53,118.12,0.91,0.1,789,0.6000000000000001,197,1.8
+2023,12,19,5,30,-5.300000000000001,1.25,0.017,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.329,70.06,112.51,0.91,0.1,789,0.6000000000000001,197,1.8
+2023,12,19,6,0,-5.4,1.27,0.017,0.63,0,0,0,0,0,-10,0,0,0,0,0.329,70.05,106.99000000000001,0.91,0.1,789,0.6000000000000001,196,1.7000000000000002
+2023,12,19,6,30,-5.5,1.27,0.017,0.63,0,0,0,0,0,-10,0,0,0,0,0.329,70.58,101.60000000000001,0.91,0.1,789,0.6000000000000001,196,1.7000000000000002
+2023,12,19,7,0,-5.5,1.28,0.017,0.63,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.329,69.92,96.37,0.91,0.1,789,0.6000000000000001,196,1.7000000000000002
+2023,12,19,7,30,-4.6000000000000005,1.28,0.017,0.63,4,45,3,0,0,-10.100000000000001,4,45,0,3,0.328,65.31,91.33,0.91,0.1,789,0.6000000000000001,195,1.7000000000000002
+2023,12,19,8,0,-3.7,1.29,0.016,0.63,21,462,50,5,4,-9.600000000000001,21,114,68,28,0.328,63.67,86.36,0.91,0.1,789,0.6000000000000001,194,1.6
+2023,12,19,8,30,-1.8,1.29,0.016,0.63,29,660,122,3,4,-9.600000000000001,53,2,43,53,0.328,55.370000000000005,81.94,0.91,0.1,790,0.7000000000000001,195,2.1
+2023,12,19,9,0,0,1.3,0.016,0.63,35,772,198,0,4,-9.1,78,3,0,79,0.328,50.28,77.81,0.91,0.1,790,0.7000000000000001,196,2.6
+2023,12,19,9,30,1.3,1.3,0.016,0.63,39,842,270,0,8,-9.1,141,103,4,169,0.328,45.79,74.08,0.91,0.1,790,0.7000000000000001,200,2.7
+2023,12,19,10,0,2.7,1.31,0.016,0.63,42,889,334,0,8,-8.700000000000001,163,76,4,188,0.327,42.68,70.83,0.91,0.1,790,0.7000000000000001,203,2.8000000000000003
+2023,12,19,10,30,4.1000000000000005,1.31,0.016,0.63,45,920,388,0,8,-8.700000000000001,178,48,0,196,0.327,38.67,68.12,0.91,0.1,790,0.7000000000000001,207,3.2
+2023,12,19,11,0,5.5,1.25,0.017,0.63,47,939,428,0,5,-8.5,174,8,0,177,0.326,35.82,66.04,0.92,0.1,789,0.7000000000000001,211,3.7
+2023,12,19,11,30,6.2,1.25,0.017,0.63,49,949,455,0,4,-8.5,171,4,0,173,0.325,34.13,64.65,0.92,0.1,789,0.8,212,3.7
+2023,12,19,12,0,6.9,1.24,0.017,0.63,49,954,467,0,4,-7.9,157,8,0,161,0.323,33.9,63.99,0.92,0.1,789,0.8,214,3.8000000000000003
+2023,12,19,12,30,7.1000000000000005,1.24,0.017,0.63,49,952,465,0,8,-8,194,200,0,281,0.322,33.4,64.08,0.92,0.1,788,0.8,214,3.7
+2023,12,19,13,0,7.300000000000001,1.24,0.018000000000000002,0.63,49,944,449,0,8,-7.4,187,344,0,333,0.321,34.49,64.93,0.92,0.1,788,0.8,215,3.7
+2023,12,19,13,30,7.1000000000000005,1.24,0.018000000000000002,0.63,48,928,418,0,8,-7.4,154,429,0,325,0.321,34.97,66.5,0.92,0.1,788,0.8,216,3.3000000000000003
+2023,12,19,14,0,6.800000000000001,1.1300000000000001,0.019,0.63,46,904,374,0,8,-6.7,126,525,0,316,0.32,37.65,68.74,0.92,0.1,788,0.8,217,3
+2023,12,19,14,30,5.4,1.1300000000000001,0.019,0.63,44,869,318,0,7,-6.7,123,448,0,264,0.318,41.46,71.59,0.92,0.1,788,0.8,219,2.1
+2023,12,19,15,0,4.1000000000000005,1.17,0.018000000000000002,0.63,40,818,252,0,7,-4.5,109,386,0,209,0.317,53.660000000000004,74.97,0.92,0.1,788,0.8,221,1.3
+2023,12,19,15,30,2.6,1.17,0.018000000000000002,0.63,35,738,178,0,7,-4.5,101,210,0,142,0.316,59.64,78.8,0.92,0.1,788,0.8,222,1.2000000000000002
+2023,12,19,16,0,1.1,1.2,0.018000000000000002,0.63,28,609,102,6,7,-6.300000000000001,62,32,86,66,0.315,57.68,83.02,0.92,0.1,788,0.7000000000000001,223,1.2000000000000002
+2023,12,19,16,30,0.6000000000000001,1.2,0.018000000000000002,0.63,18,345,33,7,7,-6.300000000000001,19,3,100,19,0.315,59.79,87.49,0.92,0.1,788,0.7000000000000001,223,1.2000000000000002
+2023,12,19,17,0,0.2,1.23,0.018000000000000002,0.63,0,0,0,1,7,-7.300000000000001,0,0,14,0,0.314,57.230000000000004,92.56,0.92,0.1,788,0.7000000000000001,222,1.1
+2023,12,19,17,30,0,1.23,0.018000000000000002,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.314,58.06,97.65,0.92,0.1,788,0.7000000000000001,220,1.1
+2023,12,19,18,0,-0.2,1.25,0.019,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.313,58.620000000000005,102.93,0.92,0.1,788,0.7000000000000001,218,1
+2023,12,19,18,30,-0.5,1.25,0.019,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.314,59.910000000000004,108.35000000000001,0.92,0.1,788,0.7000000000000001,214,1
+2023,12,19,19,0,-0.7000000000000001,1.27,0.02,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.314,61.120000000000005,113.9,0.92,0.1,788,0.8,210,1
+2023,12,19,19,30,-0.9,1.27,0.02,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.315,62.02,119.52,0.92,0.1,788,0.8,207,1
+2023,12,19,20,0,-1,1.29,0.021,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.315,63.08,125.2,0.92,0.1,788,0.8,204,1.1
+2023,12,19,20,30,-1.1,1.29,0.021,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.316,63.54,130.9,0.92,0.1,788,0.8,202,1.1
+2023,12,19,21,0,-1.1,1.3,0.023,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.316,63.78,136.57,0.92,0.1,788,0.8,200,1.2000000000000002
+2023,12,19,21,30,-1.1,1.3,0.023,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.317,63.86,142.15,0.92,0.1,789,0.8,200,1.2000000000000002
+2023,12,19,22,0,-1.1,1.32,0.023,0.63,0,0,0,0,7,-7,0,0,0,0,0.317,64.16,147.57,0.92,0.1,789,0.8,200,1.2000000000000002
+2023,12,19,22,30,-1.2000000000000002,1.32,0.023,0.63,0,0,0,0,7,-7,0,0,0,0,0.317,64.63,152.68,0.92,0.1,789,0.8,201,1.2000000000000002
+2023,12,19,23,0,-1.3,1.32,0.022,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.317,64.49,157.23,0.92,0.1,789,0.8,202,1.2000000000000002
+2023,12,19,23,30,-1.3,1.32,0.022,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.317,64.49,160.79,0.92,0.1,789,0.8,202,1.3
+2023,12,20,0,0,-1.4000000000000001,1.32,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.7,162.71,0.92,0.1,789,0.8,202,1.3
+2023,12,20,0,30,-1.4000000000000001,1.32,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.7,162.45000000000002,0.92,0.1,789,0.8,202,1.3
+2023,12,20,1,0,-1.4000000000000001,1.31,0.021,0.63,0,0,0,0,7,-7.2,0,0,0,0,0.318,64.79,160.09,0.92,0.1,789,0.8,201,1.3
+2023,12,20,1,30,-1.4000000000000001,1.31,0.021,0.63,0,0,0,0,6,-7.2,0,0,0,0,0.319,64.79,156.25,0.92,0.1,789,0.8,199,1.3
+2023,12,20,2,0,-1.4000000000000001,1.31,0.022,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.319,65.04,151.54,0.92,0.1,789,0.8,197,1.3
+2023,12,20,2,30,-1.4000000000000001,1.31,0.022,0.63,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.319,65.04,146.34,0.92,0.1,789,0.8,196,1.2000000000000002
+2023,12,20,3,0,-1.4000000000000001,1.3,0.023,0.63,0,0,0,0,0,-7,0,0,0,0,0.319,65.43,140.88,0.92,0.1,789,0.8,194,1.2000000000000002
+2023,12,20,3,30,-1.6,1.3,0.023,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,66.4,135.27,0.92,0.1,789,0.8,195,1.2000000000000002
+2023,12,20,4,0,-1.7000000000000002,1.31,0.024,0.63,0,0,0,0,8,-7,0,0,0,0,0.32,67.16,129.59,0.92,0.1,789,0.8,196,1.2000000000000002
+2023,12,20,4,30,-1.8,1.31,0.024,0.63,0,0,0,0,4,-7,0,0,0,0,0.32,67.66,123.89,0.92,0.1,789,0.8,199,1.2000000000000002
+2023,12,20,5,0,-1.9000000000000001,1.33,0.023,0.63,0,0,0,0,8,-6.9,0,0,0,0,0.321,68.67,118.22,0.91,0.1,790,0.7000000000000001,202,1.2000000000000002
+2023,12,20,5,30,-2,1.33,0.023,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.321,69.17,112.61,0.91,0.1,790,0.7000000000000001,205,1.2000000000000002
+2023,12,20,6,0,-2.2,1.34,0.023,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.321,70.57000000000001,107.09,0.91,0.1,790,0.7000000000000001,207,1.2000000000000002
+2023,12,20,6,30,-2.2,1.34,0.023,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.32,70.57000000000001,101.7,0.91,0.1,790,0.7000000000000001,209,1.2000000000000002
+2023,12,20,7,0,-2.2,1.35,0.023,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.32,70.95,96.46000000000001,0.91,0.1,790,0.7000000000000001,210,1.1
+2023,12,20,7,30,-1.7000000000000002,1.35,0.023,0.63,4,39,3,0,0,-6.800000000000001,4,39,0,3,0.319,68.39,91.42,0.91,0.1,790,0.7000000000000001,209,1.1
+2023,12,20,8,0,-1.1,1.35,0.024,0.63,21,423,47,0,0,-6.1000000000000005,21,423,0,47,0.318,68.65,86.45,0.91,0.1,790,0.7000000000000001,208,1
+2023,12,20,8,30,0.30000000000000004,1.35,0.024,0.63,32,627,119,1,4,-6.1000000000000005,56,223,11,87,0.318,62.08,82.02,0.91,0.1,791,0.8,206,1.2000000000000002
+2023,12,20,9,0,1.6,1.34,0.026000000000000002,0.63,39,742,195,0,5,-5.300000000000001,79,4,0,80,0.318,60.1,77.89,0.92,0.1,791,0.8,204,1.5
+2023,12,20,9,30,2.7,1.34,0.026000000000000002,0.63,44,812,266,2,5,-5.300000000000001,101,14,21,105,0.318,55.57,74.15,0.92,0.1,791,0.8,207,1.8
+2023,12,20,10,0,3.7,1.32,0.029,0.63,49,858,330,1,8,-5.2,156,62,14,176,0.317,52.22,70.89,0.93,0.1,791,0.8,210,2.1
+2023,12,20,10,30,4.7,1.32,0.029,0.63,52,890,383,0,8,-5.2,176,103,0,214,0.317,48.69,68.18,0.93,0.1,791,0.8,212,2.6
+2023,12,20,11,0,5.7,1.3,0.032,0.63,56,908,424,0,8,-5.5,189,300,0,311,0.317,44.39,66.09,0.93,0.1,791,0.8,214,3.1
+2023,12,20,11,30,6,1.3,0.032,0.63,57,919,450,0,8,-5.5,182,387,0,348,0.316,43.480000000000004,64.68,0.9400000000000001,0.1,791,0.9,216,3.1
+2023,12,20,12,0,6.2,1.28,0.033,0.63,58,924,463,0,8,-5.300000000000001,164,484,0,376,0.316,43.58,64,0.9400000000000001,0.1,790,0.9,219,3.1
+2023,12,20,12,30,6,1.28,0.033,0.63,58,922,461,0,7,-5.300000000000001,167,466,0,371,0.315,44.19,64.09,0.9400000000000001,0.1,790,0.9,222,2.9000000000000004
+2023,12,20,13,0,5.800000000000001,1.28,0.033,0.63,57,913,444,0,7,-4.800000000000001,183,390,0,348,0.314,46.57,64.92,0.9400000000000001,0.1,790,0.9,226,2.7
+2023,12,20,13,30,5,1.28,0.033,0.63,56,898,414,0,7,-4.800000000000001,155,457,0,337,0.314,49.22,66.48,0.9400000000000001,0.1,790,0.9,234,2
+2023,12,20,14,0,4.2,1.27,0.033,0.63,53,873,370,0,7,-3.2,150,438,0,309,0.314,58.660000000000004,68.71000000000001,0.9400000000000001,0.1,790,0.9,243,1.3
+2023,12,20,14,30,3.3000000000000003,1.27,0.033,0.63,50,837,315,0,7,-3.2,157,249,0,236,0.315,62.49,71.55,0.9400000000000001,0.1,790,0.9,254,1.1
+2023,12,20,15,0,2.3000000000000003,1.28,0.032,0.63,46,782,249,0,7,-3.3000000000000003,135,91,0,159,0.316,66.53,74.92,0.9400000000000001,0.1,790,0.9,265,1
+2023,12,20,15,30,1.6,1.28,0.032,0.63,39,698,175,0,7,-3.3000000000000003,103,61,0,115,0.318,69.93,78.75,0.9400000000000001,0.1,790,0.9,275,1
+2023,12,20,16,0,0.9,1.28,0.031,0.63,31,562,100,6,7,-4.4,46,7,86,47,0.319,67.65,82.96000000000001,0.9400000000000001,0.1,790,1,285,1
+2023,12,20,16,30,0.7000000000000001,1.28,0.031,0.63,18,302,32,7,7,-4.4,16,1,100,16,0.32,68.72,87.42,0.9400000000000001,0.1,791,1,292,1
+2023,12,20,17,0,0.4,1.29,0.03,0.63,0,0,0,1,7,-4.9,0,0,14,0,0.321,67.41,92.49,0.9400000000000001,0.11,791,1,300,1
+2023,12,20,17,30,0.5,1.29,0.03,0.63,0,0,0,0,7,-4.9,0,0,0,0,0.321,66.92,97.57000000000001,0.9400000000000001,0.11,791,1,301,0.9
+2023,12,20,18,0,0.6000000000000001,1.28,0.031,0.63,0,0,0,0,8,-5.1000000000000005,0,0,0,0,0.321,65.57000000000001,102.85000000000001,0.9400000000000001,0.11,791,1,302,0.8
+2023,12,20,18,30,0.6000000000000001,1.28,0.031,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.321,65.57000000000001,108.27,0.9400000000000001,0.11,791,1,293,0.7000000000000001
+2023,12,20,19,0,0.7000000000000001,1.28,0.031,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.321,65.14,113.81,0.9400000000000001,0.11,791,1,285,0.7000000000000001
+2023,12,20,19,30,0.6000000000000001,1.28,0.031,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.321,65.61,119.44,0.9400000000000001,0.11,791,1,272,0.7000000000000001
+2023,12,20,20,0,0.6000000000000001,1.27,0.032,0.63,0,0,0,0,7,-5,0,0,0,0,0.321,66.23,125.11,0.9400000000000001,0.11,792,1,258,0.7000000000000001
+2023,12,20,20,30,0.5,1.27,0.032,0.63,0,0,0,0,7,-5,0,0,0,0,0.321,66.71000000000001,130.81,0.9400000000000001,0.11,792,1,250,0.7000000000000001
+2023,12,20,21,0,0.4,1.27,0.032,0.63,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.321,68.11,136.48,0.9400000000000001,0.11,792,1,241,0.7000000000000001
+2023,12,20,21,30,0.2,1.27,0.032,0.63,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.321,69.10000000000001,142.07,0.9400000000000001,0.11,792,1,239,0.8
+2023,12,20,22,0,0.1,1.29,0.031,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.321,70.12,147.49,0.9400000000000001,0.11,792,1,236,0.8
+2023,12,20,22,30,-0.2,1.29,0.031,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.321,71.66,152.6,0.9400000000000001,0.11,792,1,236,0.8
+2023,12,20,23,0,-0.4,1.33,0.027,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.321,72.8,157.17000000000002,0.93,0.11,792,1,236,0.9
+2023,12,20,23,30,-0.6000000000000001,1.33,0.027,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.322,73.87,160.75,0.93,0.11,792,1,235,0.9
+2023,12,21,0,0,-0.8,1.36,0.025,0.63,0,0,0,0,8,-4.7,0,0,0,0,0.322,75.09,162.71,0.93,0.11,792,1,233,1
+2023,12,21,0,30,-1,1.36,0.025,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.323,76.2,162.48,0.92,0.11,792,0.9,231,1
+2023,12,21,1,0,-1.3,1.37,0.024,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.323,78.02,160.15,0.92,0.11,792,0.9,228,1
+2023,12,21,1,30,-1.4000000000000001,1.37,0.024,0.63,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.325,78.60000000000001,156.33,0.92,0.11,792,0.9,226,1
+2023,12,21,2,0,-1.5,1.3800000000000001,0.022,0.63,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.326,79.38,151.63,0.92,0.11,793,0.9,225,1
+2023,12,21,2,30,-1.5,1.3800000000000001,0.022,0.63,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.327,79.38,146.44,0.92,0.11,793,0.9,225,1
+2023,12,21,3,0,-1.6,1.3900000000000001,0.022,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.328,80.06,140.98,0.92,0.11,793,0.9,225,1
+2023,12,21,3,30,-1.6,1.3900000000000001,0.022,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.329,80.06,135.37,0.92,0.11,793,0.9,226,1
+2023,12,21,4,0,-1.7000000000000002,1.3800000000000001,0.021,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.329,80.73,129.69,0.92,0.11,793,0.9,228,1
+2023,12,21,4,30,-1.8,1.3800000000000001,0.021,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.33,81.33,123.99000000000001,0.92,0.11,793,0.9,227,1
+2023,12,21,5,0,-1.9000000000000001,1.37,0.021,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.33,81.99,118.32000000000001,0.92,0.11,793,0.9,226,1
+2023,12,21,5,30,-2,1.37,0.021,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.33,82.7,112.71000000000001,0.92,0.11,794,0.9,224,1
+2023,12,21,6,0,-2.1,1.36,0.021,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,83.33,107.19,0.92,0.11,794,0.9,223,1
+2023,12,21,6,30,-2.2,1.36,0.021,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,83.95,101.79,0.92,0.11,794,0.9,220,1
+2023,12,21,7,0,-2.3000000000000003,1.35,0.022,0.63,0,0,0,0,4,-4.5,0,0,0,0,0.33,84.56,96.55,0.92,0.11,794,0.9,218,1
+2023,12,21,7,30,-1.8,1.35,0.022,0.63,3,38,2,2,4,-4.5,0,0,29,0,0.329,81.60000000000001,91.51,0.92,0.11,795,0.9,218,0.9
+2023,12,21,8,0,-1.4000000000000001,1.34,0.023,0.63,21,413,46,4,4,-4.3,22,171,64,32,0.329,80.73,86.53,0.92,0.11,795,0.9,218,0.9
+2023,12,21,8,30,-0.2,1.34,0.023,0.63,31,621,116,2,0,-4.3,37,335,21,83,0.328,73.96000000000001,82.10000000000001,0.93,0.11,795,0.9,220,1.3
+2023,12,21,9,0,1.1,1.34,0.024,0.63,38,739,192,0,4,-4,90,58,0,102,0.328,68.9,77.96000000000001,0.93,0.11,795,0.9,223,1.8
+2023,12,21,9,30,2.3000000000000003,1.34,0.024,0.63,44,813,265,0,4,-4,147,53,0,161,0.326,63.32,74.22,0.93,0.11,796,0.9,224,2.2
+2023,12,21,10,0,3.5,1.33,0.025,0.63,48,862,329,0,4,-3,147,13,0,151,0.325,62.63,70.95,0.93,0.11,796,0.8,226,2.7
+2023,12,21,10,30,4.2,1.33,0.025,0.63,50,898,383,0,4,-3,173,23,0,182,0.323,59.63,68.22,0.93,0.11,796,0.8,228,2.9000000000000004
+2023,12,21,11,0,5,1.33,0.023,0.63,52,922,425,0,4,-2.3000000000000003,226,222,0,316,0.32,59.410000000000004,66.12,0.93,0.11,795,0.8,231,3.2
+2023,12,21,11,30,5.4,1.33,0.023,0.63,52,936,452,0,4,-2.3000000000000003,172,511,0,390,0.318,57.79,64.7,0.93,0.11,795,0.8,232,3.4000000000000004
+2023,12,21,12,0,5.800000000000001,1.35,0.022,0.63,53,943,466,0,0,-2,63,911,0,462,0.316,57.47,64.02,0.93,0.11,795,0.8,234,3.5
+2023,12,21,12,30,5.9,1.35,0.022,0.63,52,944,464,0,0,-2,52,944,0,464,0.314,57.07,64.09,0.93,0.11,795,0.8,235,3.6
+2023,12,21,13,0,6,1.36,0.021,0.63,52,937,449,0,0,-1.8,52,937,0,449,0.313,57.21,64.91,0.93,0.11,794,0.8,236,3.6
+2023,12,21,13,30,5.800000000000001,1.36,0.021,0.63,49,923,418,0,0,-1.8,49,923,0,418,0.312,58.01,66.45,0.93,0.11,794,0.8,237,3.4000000000000004
+2023,12,21,14,0,5.6000000000000005,1.37,0.021,0.63,48,900,375,0,0,-1.8,48,900,0,375,0.312,59.06,68.67,0.93,0.11,794,0.8,237,3.3000000000000003
+2023,12,21,14,30,4.800000000000001,1.37,0.021,0.63,45,868,320,0,0,-1.8,45,868,0,320,0.311,62.440000000000005,71.5,0.92,0.11,794,0.8,238,2.5
+2023,12,21,15,0,3.9000000000000004,1.3900000000000001,0.02,0.63,40,818,254,0,0,-1.5,40,818,0,254,0.311,67.95,74.86,0.92,0.11,794,0.8,238,1.8
+2023,12,21,15,30,2.2,1.3900000000000001,0.02,0.63,36,740,181,0,0,-1.5,36,740,0,181,0.311,76.62,78.69,0.92,0.11,794,0.7000000000000001,239,1.5
+2023,12,21,16,0,0.4,1.41,0.019,0.63,28,612,104,0,0,-2,28,612,0,104,0.311,84.04,82.89,0.92,0.11,794,0.7000000000000001,240,1.2000000000000002
+2023,12,21,16,30,-0.1,1.41,0.019,0.63,19,353,35,0,0,-2,19,353,0,35,0.312,87.24,87.35000000000001,0.92,0.11,795,0.7000000000000001,239,1.2000000000000002
+2023,12,21,17,0,-0.6000000000000001,1.42,0.019,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.312,89.81,92.41,0.92,0.12,795,0.7000000000000001,238,1.2000000000000002
+2023,12,21,17,30,-0.6000000000000001,1.42,0.019,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.313,89.81,97.49000000000001,0.92,0.12,795,0.7000000000000001,236,1.1
+2023,12,21,18,0,-0.5,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.313,89.11,102.76,0.92,0.12,795,0.7000000000000001,233,1
+2023,12,21,18,30,-0.4,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.314,88.46000000000001,108.18,0.92,0.12,795,0.7000000000000001,229,0.9
+2023,12,21,19,0,-0.4,1.41,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.314,88.46000000000001,113.72,0.92,0.12,795,0.7000000000000001,224,0.8
+2023,12,21,19,30,-0.4,1.41,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.315,88.46000000000001,119.35000000000001,0.92,0.12,795,0.7000000000000001,216,0.7000000000000001
+2023,12,21,20,0,-0.5,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.316,89.11,125.02,0.92,0.12,795,0.7000000000000001,208,0.7000000000000001
+2023,12,21,20,30,-0.7000000000000001,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.317,90.42,130.72,0.92,0.12,795,0.7000000000000001,203,0.7000000000000001
+2023,12,21,21,0,-0.8,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.318,91.05,136.39000000000001,0.92,0.12,795,0.7000000000000001,197,0.8
+2023,12,21,21,30,-1,1.41,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.319,92.39,141.98,0.92,0.12,795,0.7000000000000001,196,0.8
+2023,12,21,22,0,-1.2000000000000002,1.42,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.321,93.73,147.41,0.92,0.12,795,0.7000000000000001,195,0.9
+2023,12,21,22,30,-1.4000000000000001,1.42,0.021,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.322,95.11,152.53,0.92,0.12,795,0.7000000000000001,196,0.9
+2023,12,21,23,0,-1.6,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.323,96.38,157.1,0.92,0.12,795,0.7000000000000001,197,1
+2023,12,21,23,30,-1.8,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.324,97.68,160.70000000000002,0.92,0.12,794,0.7000000000000001,199,1
+2023,12,22,0,0,-2,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.325,98.92,162.70000000000002,0.92,0.12,794,0.7000000000000001,201,1
+2023,12,22,0,30,-2.1,1.42,0.02,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.325,99.65,162.51,0.92,0.12,794,0.7000000000000001,203,1
+2023,12,22,1,0,-2.3000000000000003,1.41,0.02,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.326,100,160.20000000000002,0.92,0.12,794,0.7000000000000001,205,1
+2023,12,22,1,30,-2.3000000000000003,1.41,0.02,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.327,100,156.4,0.92,0.12,794,0.7000000000000001,205,1
+2023,12,22,2,0,-2.4000000000000004,1.4000000000000001,0.021,0.63,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.327,100,151.71,0.93,0.12,794,0.7000000000000001,204,1
+2023,12,22,2,30,-2.5,1.4000000000000001,0.021,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.328,100,146.53,0.93,0.12,794,0.7000000000000001,203,0.9
+2023,12,22,3,0,-2.5,1.36,0.024,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.329,100,141.07,0.93,0.12,794,0.7000000000000001,201,0.9
+2023,12,22,3,30,-2.6,1.36,0.024,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.33,100,135.46,0.9400000000000001,0.12,794,0.7000000000000001,202,0.9
+2023,12,22,4,0,-2.6,1.32,0.027,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.331,100,129.78,0.9400000000000001,0.12,793,0.7000000000000001,202,1
+2023,12,22,4,30,-2.7,1.32,0.027,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.332,100,124.09,0.9400000000000001,0.12,794,0.8,203,1
+2023,12,22,5,0,-2.8000000000000003,1.3,0.028,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.333,100,118.41,0.9400000000000001,0.12,794,0.8,204,1
+2023,12,22,5,30,-2.8000000000000003,1.3,0.028,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.334,100,112.8,0.9400000000000001,0.12,794,0.8,206,1
+2023,12,22,6,0,-2.8000000000000003,1.3,0.029,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.336,100,107.28,0.9400000000000001,0.12,794,0.8,208,1.1
+2023,12,22,6,30,-2.8000000000000003,1.3,0.029,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.337,100,101.88,0.9400000000000001,0.12,794,0.8,208,1
+2023,12,22,7,0,-2.8000000000000003,1.32,0.027,0.63,0,0,0,0,4,-2.8000000000000003,0,0,0,0,0.339,99.96000000000001,96.64,0.9400000000000001,0.12,794,0.8,209,1
+2023,12,22,7,30,-2.2,1.32,0.027,0.63,3,36,2,2,4,-2.8000000000000003,0,0,29,0,0.34,95.62,91.59,0.93,0.12,794,0.8,207,0.9
+2023,12,22,8,0,-1.6,1.35,0.024,0.63,21,408,45,7,5,-2.9000000000000004,14,0,100,14,0.341,90.78,86.61,0.93,0.12,793,0.8,204,0.8
+2023,12,22,8,30,-0.6000000000000001,1.35,0.024,0.63,30,621,115,3,4,-2.9000000000000004,41,22,39,44,0.342,84.38,82.17,0.93,0.12,793,0.8,196,1
+2023,12,22,9,0,0.5,1.37,0.022,0.63,38,744,192,0,4,-2.8000000000000003,96,7,0,97,0.343,78.37,78.03,0.93,0.12,793,0.8,189,1.1
+2023,12,22,9,30,1.8,1.37,0.022,0.63,42,819,264,1,4,-2.8000000000000003,114,9,14,116,0.34400000000000003,71.39,74.28,0.93,0.12,793,0.8,194,1.8
+2023,12,22,10,0,3.1,1.36,0.022,0.63,45,868,328,2,4,-2.6,126,7,32,128,0.34500000000000003,66.4,71,0.93,0.12,793,0.8,200,2.6
+2023,12,22,10,30,3.9000000000000004,1.36,0.022,0.63,49,899,382,0,4,-2.6,183,18,0,190,0.34500000000000003,62.77,68.26,0.9400000000000001,0.12,793,0.8,206,3.2
+2023,12,22,11,0,4.6000000000000005,1.33,0.025,0.63,52,918,423,0,4,-2.7,215,28,0,226,0.34600000000000003,59.25,66.15,0.9400000000000001,0.12,792,0.8,211,3.7
+2023,12,22,11,30,4.9,1.33,0.025,0.63,53,930,450,2,4,-2.7,219,36,21,234,0.34600000000000003,58.03,64.72,0.9400000000000001,0.12,792,0.8,214,3.9000000000000004
+2023,12,22,12,0,5.2,1.33,0.025,0.63,54,936,464,1,7,-2.6,107,8,14,111,0.34600000000000003,57.17,64.02,0.9400000000000001,0.12,791,0.8,217,4.1000000000000005
+2023,12,22,12,30,5.300000000000001,1.33,0.025,0.63,53,937,463,0,7,-2.6,169,74,0,201,0.34600000000000003,56.78,64.08,0.9400000000000001,0.12,791,0.8,219,4.1000000000000005
+2023,12,22,13,0,5.5,1.35,0.024,0.63,52,932,448,0,7,-2.3000000000000003,169,306,0,299,0.34600000000000003,57.08,64.89,0.9400000000000001,0.12,790,0.8,220,4.2
+2023,12,22,13,30,5.4,1.35,0.024,0.63,51,918,418,0,7,-2.3000000000000003,155,424,0,325,0.34600000000000003,57.480000000000004,66.42,0.9400000000000001,0.12,790,0.8,220,4
+2023,12,22,14,0,5.300000000000001,1.37,0.023,0.63,49,896,375,0,7,-2.1,152,358,0,282,0.34500000000000003,58.910000000000004,68.63,0.9400000000000001,0.12,790,0.8,220,3.8000000000000003
+2023,12,22,14,30,4.3,1.37,0.023,0.63,45,860,319,0,7,-2.1,113,470,0,263,0.34500000000000003,63.08,71.45,0.9400000000000001,0.12,789,0.8,220,2.8000000000000003
+2023,12,22,15,0,3.4000000000000004,1.37,0.024,0.63,43,806,254,0,7,-1.7000000000000002,56,749,50,252,0.34400000000000003,69.04,74.8,0.9400000000000001,0.12,789,0.8,219,1.8
+2023,12,22,15,30,2,1.37,0.024,0.63,37,726,180,0,7,-1.7000000000000002,66,534,29,171,0.34400000000000003,76.24,78.62,0.9400000000000001,0.12,789,0.8,216,1.4000000000000001
+2023,12,22,16,0,0.5,1.36,0.024,0.63,29,596,104,5,7,-2.2,65,138,71,82,0.343,82.03,82.81,0.9400000000000001,0.12,789,0.8,214,1.1
+2023,12,22,16,30,0.30000000000000004,1.36,0.024,0.63,19,338,35,7,7,-2.2,22,5,100,22,0.343,83.23,87.27,0.9400000000000001,0.12,789,0.8,210,1
+2023,12,22,17,0,0,1.37,0.022,0.63,0,0,0,1,7,-2.4000000000000004,0,0,14,0,0.342,84.18,92.32000000000001,0.9400000000000001,0.12,789,0.8,205,0.9
+2023,12,22,17,30,-0.1,1.37,0.022,0.63,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.342,84.69,97.4,0.9400000000000001,0.12,788,0.8,196,0.8
+2023,12,22,18,0,-0.2,1.37,0.022,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.342,84.67,102.67,0.9400000000000001,0.12,788,0.9,186,0.6000000000000001
+2023,12,22,18,30,-0.30000000000000004,1.37,0.022,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.341,85.29,108.09,0.9500000000000001,0.12,788,0.9,184,0.6000000000000001
+2023,12,22,19,0,-0.5,1.35,0.024,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.34,85.86,113.63,0.9500000000000001,0.12,788,0.9,182,0.5
+2023,12,22,19,30,-0.5,1.35,0.024,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,85.86,119.25,0.9500000000000001,0.12,788,1,187,0.5
+2023,12,22,20,0,-0.5,1.31,0.026000000000000002,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,85.53,124.93,0.96,0.12,787,1,191,0.5
+2023,12,22,20,30,-0.4,1.31,0.026000000000000002,0.63,0,0,0,0,7,-2.6,0,0,0,0,0.339,84.91,130.62,0.96,0.12,787,1,194,0.4
+2023,12,22,21,0,-0.2,1.27,0.031,0.63,0,0,0,0,7,-2.5,0,0,0,0,0.339,84.33,136.29,0.97,0.12,787,1.1,197,0.4
+2023,12,22,21,30,-0.2,1.27,0.031,0.63,0,0,0,0,6,-2.5,0,0,0,0,0.34,84.33,141.89000000000001,0.97,0.12,787,1.1,214,0.30000000000000004
+2023,12,22,22,0,-0.2,1.23,0.036000000000000004,0.63,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.341,85.66,147.31,0.97,0.12,786,1.1,231,0.2
+2023,12,22,22,30,-0.4,1.23,0.036000000000000004,0.63,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.342,86.92,152.44,0.97,0.12,786,1.1,219,0.30000000000000004
+2023,12,22,23,0,-0.6000000000000001,1.21,0.045,0.63,0,0,0,0,6,-2,0,0,0,0,0.34400000000000003,90.10000000000001,157.03,0.97,0.12,786,1.1,208,0.4
+2023,12,22,23,30,-0.7000000000000001,1.21,0.045,0.63,0,0,0,0,7,-2,0,0,0,0,0.34500000000000003,90.76,160.65,0.97,0.12,786,1.1,196,0.4
+2023,12,23,0,0,-0.8,1.23,0.05,0.63,0,0,0,0,6,-1.8,0,0,0,0,0.34600000000000003,93.05,162.68,0.98,0.12,785,1.1,184,0.5
+2023,12,23,0,30,-0.9,1.23,0.05,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.34500000000000003,93.74,162.53,0.97,0.12,785,1.1,178,0.5
+2023,12,23,1,0,-1,1.23,0.048,0.63,0,0,0,0,6,-1.7000000000000002,0,0,0,0,0.34500000000000003,94.96000000000001,160.25,0.97,0.12,785,1.1,172,0.6000000000000001
+2023,12,23,1,30,-1.1,1.23,0.048,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.342,95.53,156.47,0.98,0.12,784,1.1,176,0.7000000000000001
+2023,12,23,2,0,-1.2000000000000002,1.22,0.052000000000000005,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.34,96.63,151.79,0.98,0.12,784,1.1,179,0.8
+2023,12,23,2,30,-1.4000000000000001,1.22,0.052000000000000005,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.339,98.05,146.61,0.98,0.12,784,1.1,182,0.8
+2023,12,23,3,0,-1.5,1.22,0.053,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.338,99.21000000000001,141.16,0.98,0.12,784,1.1,185,0.9
+2023,12,23,3,30,-1.6,1.22,0.053,0.63,0,0,0,0,6,-1.6,0,0,0,0,0.338,99.81,135.55,0.98,0.12,783,1.1,188,0.9
+2023,12,23,4,0,-1.7000000000000002,1.21,0.051000000000000004,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.337,100,129.87,0.98,0.12,783,1.1,191,0.9
+2023,12,23,4,30,-1.7000000000000002,1.21,0.051000000000000004,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.338,100,124.18,0.98,0.12,783,1.1,198,0.9
+2023,12,23,5,0,-1.7000000000000002,1.21,0.055,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.338,100,118.5,0.98,0.12,783,1.1,204,0.9
+2023,12,23,5,30,-1.8,1.21,0.055,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.338,100,112.89,0.98,0.12,783,1.1,211,0.9
+2023,12,23,6,0,-1.8,1.2,0.058,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.337,100,107.37,0.98,0.12,783,1,217,0.9
+2023,12,23,6,30,-1.8,1.2,0.058,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.336,100,101.96000000000001,0.98,0.12,783,1,220,1
+2023,12,23,7,0,-1.9000000000000001,1.19,0.057,0.63,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.336,100,96.72,0.98,0.12,783,1,223,1
+2023,12,23,7,30,-1.6,1.19,0.057,0.63,3,19,2,2,8,-1.6,0,0,29,0,0.334,100,91.67,0.98,0.12,783,1,227,1.2000000000000002
+2023,12,23,8,0,-1.3,1.19,0.062,0.63,23,286,40,7,7,-1.3,18,1,100,18,0.333,100,86.68,0.98,0.12,783,1,230,1.3
+2023,12,23,8,30,-1,1.19,0.062,0.63,39,507,107,3,8,-1.3,62,12,43,64,0.332,98.12,82.24,0.98,0.12,783,1,236,1.6
+2023,12,23,9,0,-0.6000000000000001,1.18,0.067,0.63,50,636,181,0,7,-1.1,99,20,0,103,0.33,96.10000000000001,78.09,0.98,0.12,783,1,241,1.8
+2023,12,23,9,30,-0.2,1.18,0.067,0.63,58,719,252,0,7,-1.1,132,35,0,141,0.329,93.34,74.33,0.98,0.12,783,1,251,1.8
+2023,12,23,10,0,0.1,1.1500000000000001,0.07100000000000001,0.63,64,774,315,0,7,-1,140,23,0,147,0.328,92.46000000000001,71.04,0.98,0.12,783,1,261,1.8
+2023,12,23,10,30,0.5,1.1500000000000001,0.07100000000000001,0.63,68,814,369,0,7,-1,167,30,0,178,0.326,89.71000000000001,68.3,0.98,0.12,782,1,277,2
+2023,12,23,11,0,0.9,1.1300000000000001,0.07,0.63,71,842,411,0,6,-0.9,155,22,0,164,0.325,87.56,66.17,0.98,0.12,782,1,293,2.1
+2023,12,23,11,30,1.1,1.1300000000000001,0.07,0.63,73,855,438,0,7,-0.9,181,32,0,195,0.324,86.31,64.73,0.98,0.12,782,1,307,2.6
+2023,12,23,12,0,1.2000000000000002,1.12,0.076,0.63,76,858,452,0,7,-1.2000000000000002,207,43,0,226,0.324,83.83,64.02,0.98,0.12,782,1,320,3
+2023,12,23,12,30,1.1,1.12,0.076,0.63,74,864,452,0,7,-1.2000000000000002,226,68,0,256,0.324,84.43,64.06,0.97,0.12,782,0.9,327,3.5
+2023,12,23,13,0,1,1.1,0.068,0.63,72,862,438,0,7,-2.1,213,56,0,237,0.325,80.07000000000001,64.86,0.97,0.12,781,0.9,335,3.9000000000000004
+2023,12,23,13,30,0.6000000000000001,1.1,0.068,0.63,69,848,409,0,7,-2,214,78,0,245,0.326,82.51,66.38,0.97,0.12,782,0.9,339,4.1000000000000005
+2023,12,23,14,0,0.30000000000000004,1.1,0.064,0.63,65,827,367,0,7,-3.2,202,85,0,233,0.327,77.09,68.58,0.97,0.12,782,0.9,343,4.3
+2023,12,23,14,30,-0.1,1.1,0.064,0.63,60,797,314,0,7,-3.2,170,154,0,219,0.328,79.36,71.39,0.97,0.12,782,0.8,345,4.1000000000000005
+2023,12,23,15,0,-0.5,1.1,0.053,0.63,53,750,250,0,7,-4.4,125,76,0,145,0.33,75.19,74.74,0.97,0.12,782,0.8,346,3.8000000000000003
+2023,12,23,15,30,-1,1.1,0.053,0.63,44,680,179,0,7,-4.3,87,12,0,89,0.331,78.08,78.54,0.96,0.12,783,0.7000000000000001,348,3.4000000000000004
+2023,12,23,16,0,-1.6,1.11,0.038,0.63,33,563,104,5,7,-5.800000000000001,32,1,71,32,0.332,73.11,82.73,0.96,0.12,783,0.7000000000000001,349,3.1
+2023,12,23,16,30,-2.1,1.11,0.038,0.63,20,306,35,7,7,-5.800000000000001,13,0,100,13,0.334,75.85000000000001,87.19,0.96,0.12,783,0.7000000000000001,348,3.1
+2023,12,23,17,0,-2.5,1.1300000000000001,0.033,0.63,0,0,0,1,7,-7.6000000000000005,0,0,14,0,0.335,67.95,92.23,0.96,0.8,784,0.6000000000000001,348,3.1
+2023,12,23,17,30,-2.8000000000000003,1.1300000000000001,0.033,0.63,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.337,69.48,97.31,0.9500000000000001,0.8,784,0.6000000000000001,344,3.4000000000000004
+2023,12,23,18,0,-3,1.1400000000000001,0.029,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.338,61.59,102.57000000000001,0.9500000000000001,0.8,785,0.6000000000000001,340,3.7
+2023,12,23,18,30,-3.4000000000000004,1.1400000000000001,0.029,0.63,0,0,0,0,7,-9.3,0,0,0,0,0.34,63.45,107.99000000000001,0.9500000000000001,0.8,785,0.5,337,4
+2023,12,23,19,0,-3.7,1.17,0.026000000000000002,0.63,0,0,0,0,7,-10.8,0,0,0,0,0.341,58.06,113.53,0.9400000000000001,0.8,785,0.5,334,4.2
+2023,12,23,19,30,-4.1000000000000005,1.17,0.026000000000000002,0.63,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.342,59.9,119.15,0.9400000000000001,0.8,786,0.5,333,4.2
+2023,12,23,20,0,-4.5,1.22,0.023,0.63,0,0,0,0,4,-11.3,0,0,0,0,0.343,58.870000000000005,124.83,0.9400000000000001,0.8,786,0.5,333,4.2
+2023,12,23,20,30,-5,1.22,0.023,0.63,0,0,0,0,8,-11.3,0,0,0,0,0.34400000000000003,61.14,130.52,0.93,0.8,786,0.5,334,4.2
+2023,12,23,21,0,-5.4,1.27,0.021,0.63,0,0,0,0,8,-11.200000000000001,0,0,0,0,0.34500000000000003,63.9,136.19,0.93,0.8,787,0.5,335,4.3
+2023,12,23,21,30,-5.7,1.27,0.021,0.63,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.34600000000000003,65.37,141.79,0.93,0.8,787,0.4,336,4.1000000000000005
+2023,12,23,22,0,-6,1.29,0.02,0.63,0,0,0,0,4,-10.5,0,0,0,0,0.34700000000000003,70.51,147.22,0.92,0.8,787,0.4,337,3.9000000000000004
+2023,12,23,22,30,-6.2,1.29,0.02,0.63,0,0,0,0,4,-10.5,0,0,0,0,0.34700000000000003,71.59,152.35,0.92,0.8,787,0.4,338,3.8000000000000003
+2023,12,23,23,0,-6.4,1.3,0.02,0.63,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.34700000000000003,75.14,156.95000000000002,0.92,0.8,787,0.4,339,3.7
+2023,12,23,23,30,-6.6000000000000005,1.3,0.02,0.63,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.34700000000000003,76.3,160.59,0.92,0.8,787,0.4,340,3.7
+2023,12,24,0,0,-6.7,1.32,0.021,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.34600000000000003,77.82000000000001,162.65,0.92,0.8,788,0.4,341,3.7
+2023,12,24,0,30,-7,1.32,0.021,0.63,0,0,0,0,4,-9.9,0,0,0,0,0.34500000000000003,79.64,162.53,0.92,0.8,788,0.4,342,3.5
+2023,12,24,1,0,-7.2,1.34,0.02,0.63,0,0,0,0,4,-10,0,0,0,0,0.34400000000000003,80.43,160.29,0.92,0.8,788,0.4,342,3.3000000000000003
+2023,12,24,1,30,-7.6000000000000005,1.34,0.02,0.63,0,0,0,0,4,-10,0,0,0,0,0.34400000000000003,82.96000000000001,156.53,0.92,0.8,788,0.4,343,3.1
+2023,12,24,2,0,-7.9,1.35,0.021,0.63,0,0,0,0,4,-10.200000000000001,0,0,0,0,0.34400000000000003,83.74,151.86,0.92,0.8,788,0.4,345,2.8000000000000003
+2023,12,24,2,30,-8,1.35,0.021,0.63,0,0,0,0,4,-10.200000000000001,0,0,0,0,0.34500000000000003,84.39,146.69,0.93,0.8,788,0.4,346,2.8000000000000003
+2023,12,24,3,0,-8.200000000000001,1.34,0.022,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.34500000000000003,84.87,141.24,0.93,0.8,788,0.4,347,2.8000000000000003
+2023,12,24,3,30,-8.3,1.34,0.022,0.63,0,0,0,0,4,-10.3,0,0,0,0,0.34600000000000003,85.64,135.64000000000001,0.93,0.8,789,0.4,349,2.9000000000000004
+2023,12,24,4,0,-8.3,1.34,0.022,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.34700000000000003,85.09,129.96,0.93,0.8,789,0.4,351,2.9000000000000004
+2023,12,24,4,30,-8.4,1.34,0.022,0.63,0,0,0,0,4,-10.4,0,0,0,0,0.34900000000000003,85.75,124.26,0.93,0.8,789,0.4,353,2.9000000000000004
+2023,12,24,5,0,-8.4,1.33,0.021,0.63,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.35000000000000003,84.32000000000001,118.59,0.93,0.8,789,0.4,356,2.9000000000000004
+2023,12,24,5,30,-8.5,1.33,0.021,0.63,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.35000000000000003,84.98,112.97,0.93,0.8,789,0.30000000000000004,357,2.9000000000000004
+2023,12,24,6,0,-8.6,1.32,0.02,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.35100000000000003,83.11,107.45,0.93,0.8,790,0.30000000000000004,358,2.8000000000000003
+2023,12,24,6,30,-8.8,1.32,0.02,0.63,0,0,0,0,4,-10.9,0,0,0,0,0.35100000000000003,84.42,102.04,0.93,0.8,790,0.30000000000000004,179,2.8000000000000003
+2023,12,24,7,0,-8.9,1.31,0.018000000000000002,0.63,0,0,0,0,5,-11.5,0,0,0,0,0.352,81.64,96.79,0.93,0.8,790,0.30000000000000004,0,2.7
+2023,12,24,7,30,-8.5,1.31,0.018000000000000002,0.63,3,44,2,2,5,-11.5,1,0,29,1,0.352,79.13,91.74,0.93,0.8,790,0.30000000000000004,3,3.1
+2023,12,24,8,0,-8.1,1.29,0.018000000000000002,0.63,21,465,48,7,5,-11.700000000000001,24,0,100,24,0.352,75.17,86.73,0.93,0.8,791,0.30000000000000004,5,3.4000000000000004
+2023,12,24,8,30,-7.2,1.29,0.018000000000000002,0.63,32,679,123,4,5,-11.700000000000001,57,2,64,57,0.353,70.11,82.3,0.93,0.8,791,0.30000000000000004,7,3.8000000000000003
+2023,12,24,9,0,-6.4,1.28,0.019,0.63,40,797,204,1,8,-11.700000000000001,68,3,14,69,0.353,66.29,78.14,0.93,0.8,791,0.30000000000000004,9,4.1000000000000005
+2023,12,24,9,30,-5.9,1.28,0.019,0.63,47,870,281,0,5,-11.600000000000001,74,0,4,74,0.354,63.89,74.37,0.93,0.8,792,0.30000000000000004,9,4.1000000000000005
+2023,12,24,10,0,-5.4,1.3,0.018000000000000002,0.63,52,919,350,0,5,-12,137,2,0,138,0.354,59.7,71.07000000000001,0.93,0.8,792,0.30000000000000004,9,4.2
+2023,12,24,10,30,-5.2,1.3,0.018000000000000002,0.63,56,950,407,0,5,-12,209,4,0,210,0.354,58.800000000000004,68.32000000000001,0.93,0.8,792,0.30000000000000004,6,4.1000000000000005
+2023,12,24,11,0,-4.9,1.24,0.019,0.63,59,970,451,0,5,-12.5,239,6,0,241,0.354,55.43,66.18,0.93,0.8,792,0.30000000000000004,3,4
+2023,12,24,11,30,-4.800000000000001,1.24,0.019,0.63,61,983,481,0,5,-12.5,228,4,0,230,0.354,55.01,64.73,0.93,0.8,792,0.30000000000000004,179,3.9000000000000004
+2023,12,24,12,0,-4.6000000000000005,1.26,0.018000000000000002,0.63,61,990,495,0,5,-13.100000000000001,153,0,0,153,0.353,51.68,64,0.93,0.8,791,0.30000000000000004,355,3.9000000000000004
+2023,12,24,12,30,-4.6000000000000005,1.26,0.018000000000000002,0.63,61,991,495,0,8,-13.100000000000001,213,24,0,224,0.353,51.68,64.04,0.93,0.8,791,0.30000000000000004,354,3.8000000000000003
+2023,12,24,13,0,-4.5,1.27,0.017,0.63,60,985,479,0,8,-13.600000000000001,255,43,0,273,0.352,49.22,64.82000000000001,0.93,0.8,791,0.30000000000000004,353,3.7
+2023,12,24,13,30,-4.5,1.27,0.017,0.63,56,973,447,0,8,-13.600000000000001,225,28,4,236,0.352,49.22,66.33,0.92,0.8,791,0.30000000000000004,352,3.5
+2023,12,24,14,0,-4.5,1.28,0.016,0.63,53,953,402,0,8,-13.9,199,29,0,210,0.352,47.76,68.52,0.92,0.8,791,0.30000000000000004,352,3.2
+2023,12,24,14,30,-4.800000000000001,1.28,0.016,0.63,49,922,344,0,5,-13.9,173,26,0,181,0.352,48.86,71.32000000000001,0.92,0.8,791,0.30000000000000004,351,2.9000000000000004
+2023,12,24,15,0,-5,1.29,0.014,0.63,44,875,275,0,8,-14.200000000000001,143,168,0,187,0.352,48.34,74.66,0.91,0.8,791,0.30000000000000004,350,2.6
+2023,12,24,15,30,-5.6000000000000005,1.29,0.014,0.63,37,803,198,0,0,-14.200000000000001,59,552,0,169,0.352,50.58,78.46000000000001,0.91,0.8,791,0.30000000000000004,350,2.1
+2023,12,24,16,0,-6.300000000000001,1.28,0.014,0.63,29,689,117,2,0,-14.600000000000001,40,542,21,109,0.352,51.7,82.65,0.91,0.8,791,0.30000000000000004,349,1.6
+2023,12,24,16,30,-7,1.28,0.014,0.63,19,428,41,1,0,-14.600000000000001,20,383,14,39,0.352,54.550000000000004,87.10000000000001,0.91,0.8,791,0.2,350,1.2000000000000002
+2023,12,24,17,0,-7.7,1.28,0.015,0.63,0,0,0,0,0,-14,0,0,4,0,0.352,60.75,92.14,0.91,0.8,791,0.2,351,0.8
+2023,12,24,17,30,-8,1.28,0.015,0.63,0,0,0,0,4,-14,0,0,0,0,0.352,62.18,97.21000000000001,0.91,0.8,791,0.2,347,0.7000000000000001
+2023,12,24,18,0,-8.3,1.27,0.016,0.63,0,0,0,0,4,-14.3,0,0,0,0,0.352,62.190000000000005,102.47,0.91,0.8,791,0.2,342,0.6000000000000001
+2023,12,24,18,30,-8.5,1.27,0.016,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.35100000000000003,63.160000000000004,107.89,0.91,0.8,791,0.2,329,0.6000000000000001
+2023,12,24,19,0,-8.8,1.24,0.017,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.35100000000000003,63.15,113.42,0.9,0.8,792,0.2,316,0.5
+2023,12,24,19,30,-9,1.24,0.017,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.35000000000000003,64.15,119.04,0.9,0.8,792,0.2,304,0.5
+2023,12,24,20,0,-9.200000000000001,1.17,0.017,0.63,0,0,0,0,0,-15,0,0,0,0,0.35000000000000003,62.53,124.72,0.9,0.8,792,0.2,292,0.5
+2023,12,24,20,30,-9.4,1.17,0.017,0.63,0,0,0,0,0,-15,0,0,0,0,0.34900000000000003,63.52,130.42000000000002,0.9,0.8,792,0.2,283,0.5
+2023,12,24,21,0,-9.600000000000001,1.1,0.017,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.34900000000000003,62.63,136.09,0.9,0.8,792,0.2,273,0.4
+2023,12,24,21,30,-9.8,1.1,0.017,0.63,0,0,0,0,0,-15.4,0,0,0,0,0.34800000000000003,63.63,141.68,0.89,0.8,792,0.2,265,0.4
+2023,12,24,22,0,-10.100000000000001,1.02,0.017,0.63,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.34800000000000003,64.34,147.12,0.89,0.8,792,0.2,256,0.4
+2023,12,24,22,30,-10.4,1.02,0.017,0.63,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.34800000000000003,65.89,152.26,0.89,0.8,792,0.2,252,0.5
+2023,12,24,23,0,-10.8,0.97,0.017,0.63,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.34800000000000003,67.38,156.86,0.89,0.8,792,0.2,247,0.6000000000000001
+2023,12,24,23,30,-11.200000000000001,0.97,0.017,0.63,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.34800000000000003,69.57000000000001,160.52,0.89,0.8,792,0.2,253,0.6000000000000001
+2023,12,25,0,0,-11.5,0.9400000000000001,0.018000000000000002,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.34900000000000003,70.71000000000001,162.61,0.89,0.8,792,0.2,258,0.6000000000000001
+2023,12,25,0,30,-11.8,0.9400000000000001,0.018000000000000002,0.63,0,0,0,0,0,-15.8,0,0,0,0,0.34900000000000003,72.43,162.53,0.89,0.8,792,0.2,264,0.6000000000000001
+2023,12,25,1,0,-12.100000000000001,0.9400000000000001,0.018000000000000002,0.63,0,0,0,0,0,-15.9,0,0,0,0,0.34900000000000003,73.47,160.32,0.89,0.8,791,0.2,270,0.7000000000000001
+2023,12,25,1,30,-12.4,0.9400000000000001,0.018000000000000002,0.63,0,0,0,0,0,-15.9,0,0,0,0,0.34900000000000003,75.27,156.58,0.89,0.8,791,0.2,269,0.6000000000000001
+2023,12,25,2,0,-12.600000000000001,0.9500000000000001,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.34900000000000003,75.97,151.93,0.89,0.8,791,0.2,267,0.6000000000000001
+2023,12,25,2,30,-12.9,0.9500000000000001,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.34900000000000003,77.84,146.77,0.89,0.8,791,0.2,265,0.7000000000000001
+2023,12,25,3,0,-13.100000000000001,0.96,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.34900000000000003,78.77,141.32,0.89,0.8,791,0.2,263,0.7000000000000001
+2023,12,25,3,30,-13.4,0.96,0.017,0.63,0,0,0,0,0,-16,0,0,0,0,0.34900000000000003,80.72,135.72,0.88,0.8,791,0.2,263,0.7000000000000001
+2023,12,25,4,0,-13.700000000000001,0.97,0.016,0.63,0,0,0,0,0,-16.1,0,0,29,0,0.34900000000000003,82.19,130.04,0.88,0.8,791,0.2,263,0.8
+2023,12,25,4,30,-13.9,0.97,0.016,0.63,0,0,0,0,0,-16.1,0,0,0,0,0.35000000000000003,83.55,124.34,0.88,0.8,791,0.2,265,0.8
+2023,12,25,5,0,-14.100000000000001,0.99,0.015,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.35000000000000003,84.12,118.67,0.88,0.8,791,0.2,268,0.8
+2023,12,25,5,30,-14.3,0.99,0.015,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.35000000000000003,85.51,113.05,0.88,0.8,791,0.2,271,0.8
+2023,12,25,6,0,-14.4,1,0.015,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.35100000000000003,85.29,107.52,0.88,0.8,791,0.2,275,0.8
+2023,12,25,6,30,-14.5,1,0.015,0.63,0,0,0,0,0,-16.3,0,0,0,0,0.35000000000000003,85.99,102.12,0.88,0.8,791,0.2,280,0.8
+2023,12,25,7,0,-14.600000000000001,1.01,0.015,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.35000000000000003,85.84,96.86,0.88,0.8,791,0.2,284,0.7000000000000001
+2023,12,25,7,30,-13.8,1.01,0.015,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.35000000000000003,80.49,91.8,0.88,0.8,792,0.2,284,0.8
+2023,12,25,8,0,-13,1.02,0.015,0.63,20,441,45,0,0,-16.3,20,441,0,45,0.34900000000000003,75.97,86.79,0.88,0.8,792,0.2,283,0.9
+2023,12,25,8,30,-11.5,1.02,0.015,0.63,30,703,124,0,0,-16.3,30,703,0,124,0.34900000000000003,67.33,82.35000000000001,0.88,0.8,792,0.2,301,1.3
+2023,12,25,9,0,-10,1.02,0.015,0.63,39,822,207,0,0,-15.8,39,822,0,207,0.34900000000000003,62.71,78.18,0.88,0.8,792,0.2,319,1.8
+2023,12,25,9,30,-8.700000000000001,1.02,0.015,0.63,45,894,285,0,0,-15.8,45,894,0,285,0.34800000000000003,56.63,74.41,0.88,0.8,792,0.2,325,2.6
+2023,12,25,10,0,-7.300000000000001,1.03,0.014,0.63,49,941,354,0,0,-15.9,49,941,0,354,0.34800000000000003,50.410000000000004,71.10000000000001,0.88,0.8,792,0.2,332,3.4000000000000004
+2023,12,25,10,30,-6.300000000000001,1.03,0.014,0.63,53,973,412,0,0,-15.9,53,973,0,412,0.34700000000000003,46.69,68.34,0.88,0.8,792,0.2,334,3.7
+2023,12,25,11,0,-5.300000000000001,1.03,0.014,0.63,55,994,456,0,0,-16.3,55,994,0,456,0.34600000000000003,41.75,66.19,0.88,0.8,791,0.2,337,4.1000000000000005
+2023,12,25,11,30,-4.7,1.03,0.014,0.63,56,1007,486,0,0,-16.3,56,1007,0,486,0.34500000000000003,39.89,64.72,0.88,0.8,791,0.2,338,4.3
+2023,12,25,12,0,-4,1.06,0.014,0.63,56,1014,501,0,0,-16.8,56,1014,0,501,0.343,36.38,63.99,0.88,0.8,791,0.2,340,4.4
+2023,12,25,12,30,-3.6,1.06,0.014,0.63,56,1014,501,0,0,-16.8,56,1014,0,501,0.342,35.26,64,0.89,0.8,790,0.2,341,4.5
+2023,12,25,13,0,-3.3000000000000003,1.1,0.014,0.63,56,1008,486,0,0,-17.2,56,1008,0,486,0.34,33.34,64.78,0.89,0.8,790,0.2,342,4.6000000000000005
+2023,12,25,13,30,-3.3000000000000003,1.1,0.014,0.63,55,995,455,0,0,-17.2,55,995,0,455,0.339,33.34,66.28,0.89,0.8,790,0.2,344,4.5
+2023,12,25,14,0,-3.3000000000000003,1.1300000000000001,0.014,0.63,51,974,409,0,0,-17.400000000000002,51,974,0,409,0.338,32.85,68.46000000000001,0.89,0.8,790,0.2,347,4.4
+2023,12,25,14,30,-3.7,1.1300000000000001,0.014,0.63,48,942,351,0,0,-17.400000000000002,48,942,0,351,0.336,33.85,71.25,0.89,0.8,790,0.2,350,4.2
+2023,12,25,15,0,-4.1000000000000005,1.17,0.014,0.63,43,895,281,0,0,-17.6,43,895,0,281,0.335,34.11,74.58,0.89,0.8,790,0.2,353,3.9000000000000004
+2023,12,25,15,30,-5.4,1.17,0.014,0.63,37,822,203,0,0,-17.6,37,822,0,203,0.334,37.62,78.37,0.9,0.8,790,0.2,355,2.9000000000000004
+2023,12,25,16,0,-6.7,1.2,0.014,0.63,30,703,121,0,0,-17.2,30,703,0,121,0.334,42.92,82.55,0.9,0.8,790,0.2,357,1.9000000000000001
+2023,12,25,16,30,-7.7,1.2,0.014,0.63,20,439,43,0,0,-17.2,20,439,0,43,0.333,46.36,87.01,0.9,0.8,790,0.2,356,1.5
+2023,12,25,17,0,-8.8,1.22,0.013000000000000001,0.63,0,0,0,0,0,-17,0,0,0,0,0.333,51.660000000000004,92.04,0.89,0.8,790,0.2,355,1.1
+2023,12,25,17,30,-9.1,1.22,0.013000000000000001,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.333,52.95,97.11,0.89,0.8,791,0.2,346,1
+2023,12,25,18,0,-9.4,1.23,0.013000000000000001,0.63,0,0,0,0,0,-17.7,0,0,0,0,0.333,51.07,102.37,0.89,0.8,791,0.2,337,0.9
+2023,12,25,18,30,-9.9,1.23,0.013000000000000001,0.63,0,0,0,0,0,-17.7,0,0,0,0,0.333,53.120000000000005,107.78,0.89,0.8,791,0.2,325,0.9
+2023,12,25,19,0,-10.4,1.22,0.012,0.63,0,0,0,0,0,-18.1,0,0,0,0,0.334,53.24,113.32000000000001,0.89,0.8,791,0.2,312,0.9
+2023,12,25,19,30,-10.8,1.22,0.012,0.63,0,0,0,0,0,-18.1,0,0,0,0,0.334,54.96,118.94,0.89,0.8,791,0.2,307,0.9
+2023,12,25,20,0,-11.3,1.21,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,56.120000000000005,124.61,0.89,0.8,791,0.2,302,1
+2023,12,25,20,30,-11.600000000000001,1.21,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.336,57.49,130.31,0.88,0.8,791,0.2,302,1
+2023,12,25,21,0,-12,1.2,0.012,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.336,59.21,135.98,0.88,0.8,791,0.2,302,1.1
+2023,12,25,21,30,-12.3,1.2,0.012,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.336,60.660000000000004,141.58,0.88,0.8,791,0.2,303,1.1
+2023,12,25,22,0,-12.600000000000001,1.22,0.012,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.337,62.14,147.01,0.88,0.8,791,0.2,305,1.2000000000000002
+2023,12,25,22,30,-12.9,1.22,0.012,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.336,63.660000000000004,152.16,0.88,0.8,791,0.2,306,1.2000000000000002
+2023,12,25,23,0,-13.200000000000001,1.25,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.336,65.52,156.77,0.87,0.8,791,0.2,307,1.2000000000000002
+2023,12,25,23,30,-13.4,1.25,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,66.5,160.45000000000002,0.87,0.8,790,0.2,309,1.2000000000000002
+2023,12,26,0,0,-13.600000000000001,1.27,0.013000000000000001,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.335,67.74,162.56,0.87,0.8,790,0.2,310,1.2000000000000002
+2023,12,26,0,30,-13.700000000000001,1.27,0.013000000000000001,0.63,0,0,0,0,7,-18.3,0,0,0,0,0.334,68.29,162.52,0.87,0.8,790,0.2,313,1.1
+2023,12,26,1,0,-13.9,1.28,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.333,69.63,160.35,0.87,0.8,790,0.2,316,1.1
+2023,12,26,1,30,-14,1.28,0.012,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.333,70.2,156.63,0.87,0.8,790,0.2,317,1
+2023,12,26,2,0,-14.100000000000001,1.29,0.011,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.332,70.68,151.99,0.87,0.8,790,0.30000000000000004,318,1
+2023,12,26,2,30,-14.100000000000001,1.29,0.011,0.63,0,0,0,0,0,-18.3,0,0,0,0,0.332,70.68,146.84,0.87,0.8,790,0.30000000000000004,317,1
+2023,12,26,3,0,-14.100000000000001,1.29,0.011,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.331,69.85000000000001,141.39000000000001,0.87,0.8,790,0.30000000000000004,316,0.9
+2023,12,26,3,30,-14.100000000000001,1.29,0.011,0.63,0,0,0,0,0,-18.400000000000002,0,0,0,0,0.331,69.85000000000001,135.79,0.87,0.8,790,0.30000000000000004,316,0.9
+2023,12,26,4,0,-14.100000000000001,1.29,0.01,0.63,0,0,0,0,0,-18.6,0,0,0,0,0.331,68.71000000000001,130.12,0.87,0.8,790,0.30000000000000004,317,0.9
+2023,12,26,4,30,-14,1.29,0.01,0.63,0,0,0,0,0,-18.6,0,0,0,0,0.332,68.24,124.42,0.87,0.8,791,0.30000000000000004,319,0.8
+2023,12,26,5,0,-13.8,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,66.53,118.75,0.87,0.8,791,0.30000000000000004,322,0.8
+2023,12,26,5,30,-13.700000000000001,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,65.99,113.13,0.87,0.8,791,0.30000000000000004,326,0.7000000000000001
+2023,12,26,6,0,-13.600000000000001,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,65.3,107.60000000000001,0.87,0.8,791,0.30000000000000004,330,0.6000000000000001
+2023,12,26,6,30,-13.5,1.29,0.01,0.63,0,0,0,0,0,-18.7,0,0,0,0,0.332,64.77,102.18,0.87,0.8,791,0.30000000000000004,333,0.5
+2023,12,26,7,0,-13.4,1.29,0.01,0.63,0,0,0,0,0,-18.8,0,0,0,0,0.332,64.05,96.93,0.87,0.8,791,0.30000000000000004,335,0.5
+2023,12,26,7,30,-12.5,1.29,0.01,0.63,0,0,0,0,0,-18.8,0,0,0,0,0.331,59.54,91.86,0.87,0.8,791,0.30000000000000004,323,0.4
+2023,12,26,8,0,-11.600000000000001,1.29,0.01,0.63,19,441,43,0,0,-18.1,19,441,0,43,0.331,58.52,86.84,0.86,0.8,791,0.4,311,0.4
+2023,12,26,8,30,-10.3,1.29,0.01,0.63,28,696,120,0,0,-18.1,28,696,0,120,0.33,52.76,82.39,0.86,0.8,791,0.4,305,0.5
+2023,12,26,9,0,-9,1.29,0.01,0.63,34,810,199,0,0,-17.7,34,810,0,199,0.329,49.33,78.22,0.86,0.8,791,0.4,300,0.5
+2023,12,26,9,30,-7.7,1.29,0.01,0.63,39,880,275,0,0,-17.7,39,880,0,275,0.329,44.58,74.44,0.86,0.8,791,0.4,303,0.8
+2023,12,26,10,0,-6.4,1.29,0.01,0.63,43,926,343,0,0,-17.5,43,926,0,343,0.328,40.9,71.12,0.86,0.8,791,0.4,306,1
+2023,12,26,10,30,-5.300000000000001,1.29,0.01,0.63,47,958,400,0,0,-17.5,47,958,0,400,0.327,37.61,68.35000000000001,0.86,0.8,791,0.4,303,1.2000000000000002
+2023,12,26,11,0,-4.2,1.1500000000000001,0.01,0.63,49,978,444,0,0,-17.400000000000002,49,978,0,444,0.327,35.03,66.19,0.87,0.8,791,0.4,299,1.4000000000000001
+2023,12,26,11,30,-3.3000000000000003,1.1500000000000001,0.01,0.63,51,991,474,0,0,-17.400000000000002,51,991,0,474,0.326,32.75,64.71000000000001,0.87,0.8,791,0.4,297,1.6
+2023,12,26,12,0,-2.4000000000000004,1.1400000000000001,0.01,0.63,51,997,489,0,0,-17.3,51,997,0,489,0.326,30.98,63.96,0.87,0.8,790,0.4,295,1.9000000000000001
+2023,12,26,12,30,-1.8,1.1400000000000001,0.01,0.63,51,998,489,0,0,-17.3,51,998,0,489,0.326,29.64,63.97,0.87,0.8,790,0.4,297,2
+2023,12,26,13,0,-1.1,1.1300000000000001,0.01,0.63,51,994,475,0,0,-17,51,994,0,475,0.326,28.67,64.73,0.87,0.8,790,0.4,299,2.1
+2023,12,26,13,30,-0.7000000000000001,1.1300000000000001,0.01,0.63,50,981,446,0,0,-17,50,981,0,446,0.326,27.84,66.22,0.88,0.8,790,0.30000000000000004,303,2.1
+2023,12,26,14,0,-0.4,0.9400000000000001,0.012,0.63,50,959,403,0,0,-16.6,50,959,0,403,0.327,28.39,68.38,0.88,0.8,790,0.30000000000000004,307,2.1
+2023,12,26,14,30,-0.6000000000000001,0.9400000000000001,0.012,0.63,46,930,346,0,0,-16.6,46,930,0,346,0.327,28.810000000000002,71.17,0.88,0.8,790,0.30000000000000004,308,1.6
+2023,12,26,15,0,-0.9,0.93,0.012,0.63,42,883,278,0,0,-14.700000000000001,42,883,0,278,0.327,34.410000000000004,74.49,0.88,0.8,790,0.30000000000000004,308,1.2000000000000002
+2023,12,26,15,30,-2.2,0.93,0.012,0.63,36,811,201,0,0,-14.700000000000001,36,811,0,201,0.327,37.85,78.28,0.88,0.8,790,0.30000000000000004,306,0.9
+2023,12,26,16,0,-3.4000000000000004,0.92,0.012,0.63,29,692,120,0,0,-14.3,29,692,0,120,0.327,42.74,82.46000000000001,0.88,0.8,790,0.30000000000000004,304,0.6000000000000001
+2023,12,26,16,30,-4.3,0.92,0.012,0.63,20,429,43,0,0,-14.3,20,429,0,43,0.328,45.78,86.91,0.88,0.8,791,0.30000000000000004,300,0.6000000000000001
+2023,12,26,17,0,-5.2,0.9,0.012,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.328,41.86,91.93,0.88,0.8,791,0.30000000000000004,296,0.6000000000000001
+2023,12,26,17,30,-5.7,0.9,0.012,0.63,0,0,0,0,0,-16.2,0,0,0,0,0.328,43.480000000000004,97,0.88,0.8,791,0.30000000000000004,294,0.6000000000000001
+2023,12,26,18,0,-6.300000000000001,0.89,0.012,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.328,44.7,102.26,0.88,0.8,792,0.30000000000000004,291,0.6000000000000001
+2023,12,26,18,30,-6.800000000000001,0.89,0.012,0.63,0,0,0,0,0,-16.400000000000002,0,0,0,0,0.328,46.45,107.67,0.88,0.8,792,0.30000000000000004,293,0.6000000000000001
+2023,12,26,19,0,-7.4,0.89,0.012,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.328,47.84,113.2,0.88,0.8,792,0.30000000000000004,294,0.6000000000000001
+2023,12,26,19,30,-7.9,0.89,0.012,0.63,0,0,0,0,0,-16.6,0,0,0,0,0.327,49.72,118.82000000000001,0.87,0.8,792,0.30000000000000004,302,0.7000000000000001
+2023,12,26,20,0,-8.3,0.91,0.012,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.327,50.35,124.5,0.87,0.8,792,0.30000000000000004,310,0.7000000000000001
+2023,12,26,20,30,-8.700000000000001,0.91,0.012,0.63,0,0,0,0,0,-16.8,0,0,0,0,0.327,51.95,130.19,0.87,0.8,792,0.30000000000000004,320,0.7000000000000001
+2023,12,26,21,0,-9.1,0.9500000000000001,0.012,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.326,53.21,135.87,0.87,0.8,793,0.30000000000000004,329,0.7000000000000001
+2023,12,26,21,30,-9.5,0.9500000000000001,0.012,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.326,54.910000000000004,141.47,0.87,0.8,793,0.30000000000000004,335,0.7000000000000001
+2023,12,26,22,0,-9.8,0.99,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,55.78,146.9,0.87,0.8,793,0.30000000000000004,340,0.7000000000000001
+2023,12,26,22,30,-10.200000000000001,0.99,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,57.57,152.05,0.87,0.8,793,0.30000000000000004,344,0.7000000000000001
+2023,12,26,23,0,-10.5,1.03,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.326,58.97,156.67000000000002,0.87,0.8,793,0.30000000000000004,347,0.7000000000000001
+2023,12,26,23,30,-10.8,1.03,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,60.4,160.37,0.87,0.8,793,0.30000000000000004,348,0.6000000000000001
+2023,12,27,0,0,-11,1.06,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,61.51,162.51,0.86,0.8,793,0.30000000000000004,348,0.6000000000000001
+2023,12,27,0,30,-11.200000000000001,1.06,0.011,0.63,0,0,0,0,0,-17,0,0,0,0,0.325,62.49,162.51,0.86,0.8,793,0.2,350,0.6000000000000001
+2023,12,27,1,0,-11.4,1.09,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.325,63.67,160.36,0.86,0.8,793,0.2,352,0.6000000000000001
+2023,12,27,1,30,-11.4,1.09,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.325,63.67,156.67000000000002,0.86,0.8,793,0.2,354,0.5
+2023,12,27,2,0,-11.4,1.11,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.325,63.86,152.05,0.86,0.8,794,0.2,356,0.5
+2023,12,27,2,30,-11.3,1.11,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.325,63.35,146.9,0.87,0.8,794,0.2,354,0.4
+2023,12,27,3,0,-11.200000000000001,1.11,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.324,62.54,141.46,0.87,0.8,794,0.2,352,0.4
+2023,12,27,3,30,-11.200000000000001,1.11,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.324,62.54,135.86,0.87,0.8,794,0.2,178,0.30000000000000004
+2023,12,27,4,0,-11.200000000000001,1.09,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.323,62.18,130.19,0.87,0.8,794,0.2,3,0.30000000000000004
+2023,12,27,4,30,-11.200000000000001,1.09,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.323,62.18,124.49000000000001,0.87,0.8,794,0.2,17,0.4
+2023,12,27,5,0,-11.3,1.08,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,62.52,118.82000000000001,0.87,0.8,794,0.2,31,0.5
+2023,12,27,5,30,-11.4,1.08,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,63.02,113.2,0.87,0.8,794,0.2,39,0.6000000000000001
+2023,12,27,6,0,-11.600000000000001,1.07,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,64.3,107.66,0.87,0.8,794,0.2,47,0.7000000000000001
+2023,12,27,6,30,-11.700000000000001,1.07,0.01,0.63,0,0,0,0,0,-17,0,0,0,0,0.322,64.81,102.25,0.87,0.8,794,0.2,49,0.7000000000000001
+2023,12,27,7,0,-11.8,1.08,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.322,65.66,96.99000000000001,0.87,0.8,794,0.2,51,0.8
+2023,12,27,7,30,-11.200000000000001,1.08,0.01,0.63,0,0,0,0,0,-16.900000000000002,0,0,0,0,0.322,62.58,91.92,0.87,0.8,794,0.2,56,0.7000000000000001
+2023,12,27,8,0,-10.600000000000001,1.09,0.01,0.63,19,445,43,1,0,-16.2,19,338,18,37,0.322,63.65,86.89,0.87,0.8,795,0.30000000000000004,61,0.6000000000000001
+2023,12,27,8,30,-9.1,1.09,0.01,0.63,28,701,120,1,0,-16.2,32,634,11,115,0.322,56.550000000000004,82.44,0.87,0.8,795,0.30000000000000004,70,0.8
+2023,12,27,9,0,-7.7,1.11,0.01,0.63,35,817,201,0,0,-15.3,35,817,0,201,0.321,54.59,78.26,0.87,0.8,795,0.30000000000000004,79,0.9
+2023,12,27,9,30,-6.4,1.11,0.01,0.63,40,889,278,0,0,-15.3,40,889,0,278,0.321,49.39,74.47,0.87,0.8,795,0.30000000000000004,78,0.7000000000000001
+2023,12,27,10,0,-5.1000000000000005,1.12,0.01,0.63,45,935,347,0,0,-14.4,45,935,0,347,0.32,48.160000000000004,71.14,0.87,0.8,795,0.30000000000000004,76,0.5
+2023,12,27,10,30,-3.9000000000000004,1.12,0.01,0.63,49,963,404,0,0,-14.4,49,963,0,404,0.319,44,68.35000000000001,0.88,0.8,795,0.30000000000000004,183,0.5
+2023,12,27,11,0,-2.6,0.9,0.013000000000000001,0.63,53,977,448,0,0,-13.5,53,977,0,448,0.318,43,66.18,0.89,0.8,794,0.30000000000000004,291,0.5
+2023,12,27,11,30,-1.7000000000000002,0.9,0.013000000000000001,0.63,56,987,478,0,0,-13.5,56,987,0,478,0.317,40.24,64.69,0.89,0.8,794,0.4,285,0.8
+2023,12,27,12,0,-0.8,0.91,0.013000000000000001,0.63,56,989,491,0,0,-12.200000000000001,56,989,0,491,0.316,41.86,63.93,0.89,0.8,794,0.4,279,1.1
+2023,12,27,12,30,-0.2,0.91,0.013000000000000001,0.63,55,990,490,0,0,-12.200000000000001,55,990,0,490,0.316,40.07,63.92,0.89,0.8,794,0.4,278,1
+2023,12,27,13,0,0.5,0.92,0.012,0.63,54,984,475,0,0,-10.9,54,984,0,475,0.316,42.04,64.67,0.89,0.8,794,0.4,276,0.9
+2023,12,27,13,30,0.6000000000000001,0.92,0.012,0.63,52,972,445,0,0,-10.9,52,972,0,445,0.316,41.730000000000004,66.15,0.89,0.8,794,0.4,276,0.7000000000000001
+2023,12,27,14,0,0.8,0.9400000000000001,0.012,0.63,50,951,401,0,0,-10.3,50,951,0,401,0.317,43.24,68.31,0.89,0.8,794,0.4,276,0.5
+2023,12,27,14,30,0.5,0.9400000000000001,0.012,0.63,46,920,344,0,0,-10.3,46,920,0,344,0.318,44.18,71.08,0.89,0.8,794,0.4,267,0.4
+2023,12,27,15,0,0.30000000000000004,0.97,0.012,0.63,42,872,276,0,0,-9.8,42,872,0,276,0.318,46.550000000000004,74.4,0.89,0.8,794,0.4,259,0.2
+2023,12,27,15,30,-0.7000000000000001,0.97,0.012,0.63,36,801,200,0,0,-9.8,36,801,0,200,0.319,50.050000000000004,78.18,0.89,0.8,794,0.4,212,0.30000000000000004
+2023,12,27,16,0,-1.7000000000000002,1,0.011,0.63,29,684,120,0,0,-9.600000000000001,29,684,0,120,0.319,54.84,82.36,0.89,0.8,794,0.4,165,0.4
+2023,12,27,16,30,-2.5,1,0.011,0.63,19,428,43,0,0,-9.600000000000001,19,428,0,43,0.32,58.18,86.81,0.89,0.8,794,0.4,170,0.5
+2023,12,27,17,0,-3.3000000000000003,1.03,0.011,0.63,0,0,0,0,0,-11,0,0,0,0,0.321,55.06,91.82000000000001,0.89,0.8,794,0.4,175,0.6000000000000001
+2023,12,27,17,30,-3.8000000000000003,1.03,0.011,0.63,0,0,0,0,0,-11,0,0,0,0,0.321,57.15,96.89,0.89,0.8,794,0.4,182,0.7000000000000001
+2023,12,27,18,0,-4.4,1.05,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.321,58.31,102.15,0.89,0.8,794,0.4,189,0.7000000000000001
+2023,12,27,18,30,-4.9,1.05,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.322,60.550000000000004,107.56,0.89,0.8,794,0.4,195,0.7000000000000001
+2023,12,27,19,0,-5.4,1.06,0.011,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.322,61.36,113.09,0.89,0.8,794,0.4,201,0.7000000000000001
+2023,12,27,19,30,-5.7,1.06,0.011,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.323,62.77,118.71000000000001,0.89,0.8,794,0.4,200,0.6000000000000001
+2023,12,27,20,0,-6,1.07,0.011,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,62.6,124.38000000000001,0.89,0.8,794,0.30000000000000004,199,0.6000000000000001
+2023,12,27,20,30,-6.300000000000001,1.07,0.011,0.63,0,0,0,0,0,-12,0,0,0,0,0.323,64.05,130.08,0.89,0.8,794,0.30000000000000004,187,0.6000000000000001
+2023,12,27,21,0,-6.5,1.07,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,62.74,135.75,0.89,0.8,794,0.30000000000000004,174,0.6000000000000001
+2023,12,27,21,30,-6.800000000000001,1.07,0.011,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.323,64.2,141.35,0.89,0.8,794,0.30000000000000004,165,0.6000000000000001
+2023,12,27,22,0,-7.1000000000000005,1.08,0.011,0.63,0,0,0,0,0,-13,0,0,0,0,0.323,62.980000000000004,146.79,0.89,0.8,794,0.30000000000000004,157,0.7000000000000001
+2023,12,27,22,30,-7.4,1.08,0.011,0.63,0,0,0,0,0,-13,0,0,0,0,0.323,64.45,151.94,0.89,0.8,794,0.30000000000000004,161,0.7000000000000001
+2023,12,27,23,0,-7.6000000000000005,1.08,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.322,62.910000000000004,156.57,0.89,0.8,794,0.2,165,0.7000000000000001
+2023,12,27,23,30,-7.800000000000001,1.08,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.322,63.89,160.28,0.89,0.8,794,0.2,174,0.7000000000000001
+2023,12,28,0,0,-7.9,1.08,0.011,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.322,62.59,162.45000000000002,0.89,0.8,794,0.2,184,0.7000000000000001
+2023,12,28,0,30,-8,1.08,0.011,0.63,0,0,0,0,0,-13.8,0,0,0,0,0.323,63.08,162.48,0.89,0.8,794,0.2,193,0.7000000000000001
+2023,12,28,1,0,-8.200000000000001,1.08,0.011,0.63,0,0,0,0,0,-14,0,0,0,0,0.323,63.01,160.37,0.89,0.8,794,0.2,202,0.6000000000000001
+2023,12,28,1,30,-8.3,1.08,0.011,0.63,0,0,0,0,0,-14,0,0,0,0,0.323,63.5,156.70000000000002,0.89,0.8,794,0.2,203,0.5
+2023,12,28,2,0,-8.5,1.08,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.323,64.05,152.1,0.89,0.8,794,0.2,205,0.4
+2023,12,28,2,30,-8.6,1.08,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.322,64.55,146.96,0.89,0.8,794,0.2,208,0.4
+2023,12,28,3,0,-8.8,1.09,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.322,65.17,141.53,0.89,0.8,794,0.2,211,0.30000000000000004
+2023,12,28,3,30,-8.9,1.09,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.322,65.68,135.93,0.89,0.8,794,0.2,235,0.2
+2023,12,28,4,0,-9.1,1.11,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.321,66.24,130.26,0.88,0.8,794,0.2,260,0.2
+2023,12,28,4,30,-9.3,1.11,0.01,0.63,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.321,67.37,124.56,0.88,0.8,795,0.2,291,0.2
+2023,12,28,5,0,-9.4,1.1300000000000001,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,67.53,118.88,0.88,0.8,795,0.2,322,0.2
+2023,12,28,5,30,-9.5,1.1300000000000001,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,68.06,113.26,0.88,0.8,795,0.2,339,0.2
+2023,12,28,6,0,-9.600000000000001,1.16,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.321,68.45,107.72,0.88,0.8,795,0.2,355,0.1
+2023,12,28,6,30,-9.700000000000001,1.16,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.32,69,102.31,0.88,0.8,795,0.2,318,0.1
+2023,12,28,7,0,-9.8,1.18,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.32,69.63,97.04,0.88,0.8,795,0.2,280,0.1
+2023,12,28,7,30,-9.3,1.18,0.01,0.63,0,0,0,1,0,-14.3,0,0,18,0,0.319,66.95,91.97,0.89,0.8,795,0.2,257,0.2
+2023,12,28,8,0,-8.9,1.2,0.01,0.63,20,456,44,2,0,-14,20,383,25,41,0.318,66.81,86.93,0.89,0.8,795,0.2,234,0.30000000000000004
+2023,12,28,8,30,-7.5,1.2,0.01,0.63,28,719,122,2,0,-13.9,54,420,36,109,0.317,60,82.47,0.89,0.8,796,0.2,226,0.6000000000000001
+2023,12,28,9,0,-6,1.21,0.01,0.63,35,835,204,0,0,-12.8,70,580,0,188,0.316,58.800000000000004,78.29,0.89,0.8,796,0.2,218,1
+2023,12,28,9,30,-4.800000000000001,1.21,0.01,0.63,41,905,283,0,0,-12.8,81,681,0,263,0.315,53.68,74.48,0.89,0.8,796,0.2,222,1.1
+2023,12,28,10,0,-3.6,1.23,0.011,0.63,46,951,353,0,0,-12.600000000000001,61,886,0,347,0.314,49.83,71.15,0.9,0.8,796,0.2,226,1.2000000000000002
+2023,12,28,10,30,-2.6,1.23,0.011,0.63,49,982,411,0,0,-12.600000000000001,61,936,0,406,0.312,46.26,68.35000000000001,0.9,0.8,796,0.2,229,1.3
+2023,12,28,11,0,-1.5,1.25,0.011,0.63,52,1002,457,0,0,-12.100000000000001,52,1002,0,457,0.311,44.480000000000004,66.17,0.9,0.8,796,0.2,231,1.3
+2023,12,28,11,30,-0.8,1.25,0.011,0.63,54,1015,488,0,0,-12.100000000000001,75,947,0,480,0.31,42.26,64.66,0.9,0.8,796,0.2,233,1.3
+2023,12,28,12,0,-0.1,1.27,0.011,0.63,54,1020,503,0,0,-11.700000000000001,113,841,0,483,0.308,41.35,63.88,0.9,0.8,796,0.2,235,1.3
+2023,12,28,12,30,0.2,1.27,0.011,0.63,54,1017,502,0,7,-11.700000000000001,192,610,0,461,0.307,40.46,63.86,0.9,0.8,796,0.2,233,1.3
+2023,12,28,13,0,0.6000000000000001,1.29,0.011,0.63,54,1008,486,0,7,-11.4,195,570,0,439,0.306,40.35,64.6,0.9,0.8,796,0.30000000000000004,231,1.3
+2023,12,28,13,30,0.7000000000000001,1.29,0.011,0.63,53,992,455,0,0,-11.4,111,796,0,434,0.305,40.06,66.07000000000001,0.9,0.8,796,0.30000000000000004,231,1.2000000000000002
+2023,12,28,14,0,0.8,1.04,0.013000000000000001,0.63,51,964,409,0,0,-11.3,51,964,0,409,0.305,39.99,68.22,0.9,0.8,796,0.30000000000000004,230,1.1
+2023,12,28,14,30,0.6000000000000001,1.04,0.013000000000000001,0.63,47,932,351,0,0,-11.3,50,921,0,350,0.305,40.57,70.99,0.9,0.8,796,0.30000000000000004,225,1
+2023,12,28,15,0,0.30000000000000004,1.05,0.013000000000000001,0.63,43,886,283,0,0,-10.100000000000001,58,811,0,277,0.306,45.65,74.3,0.9,0.8,796,0.30000000000000004,221,0.8
+2023,12,28,15,30,-0.9,1.05,0.013000000000000001,0.63,38,815,206,0,0,-10.100000000000001,38,815,11,206,0.306,49.81,78.08,0.9,0.8,796,0.30000000000000004,209,0.8
+2023,12,28,16,0,-2,1.06,0.013000000000000001,0.63,30,699,124,0,0,-10.3,30,699,7,124,0.306,53.25,82.25,0.9,0.8,796,0.30000000000000004,198,0.8
+2023,12,28,16,30,-2.7,1.06,0.013000000000000001,0.63,20,487,48,2,0,-10.3,24,369,32,45,0.306,56.08,86.7,0.9,0.8,796,0.30000000000000004,196,0.9
+2023,12,28,17,0,-3.5,1.07,0.013000000000000001,0.63,3,47,2,2,0,-11.700000000000001,1,0,29,1,0.307,52.99,91.71000000000001,0.9,0.75,796,0.30000000000000004,195,0.9
+2023,12,28,17,30,-3.8000000000000003,1.07,0.013000000000000001,0.63,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.307,54.19,96.77,0.9,0.75,796,0.30000000000000004,198,0.9
+2023,12,28,18,0,-4.2,1.08,0.013000000000000001,0.63,0,0,0,0,0,-12,0,0,0,0,0.307,54.38,102.03,0.9,0.75,796,0.4,201,0.9
+2023,12,28,18,30,-4.5,1.08,0.013000000000000001,0.63,0,0,0,0,0,-12,0,0,0,0,0.307,55.620000000000005,107.44,0.9,0.75,796,0.4,207,0.9
+2023,12,28,19,0,-4.800000000000001,1.08,0.013000000000000001,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.308,55.2,112.97,0.9,0.75,796,0.4,213,0.9
+2023,12,28,19,30,-5,1.08,0.013000000000000001,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.308,56.04,118.59,0.9,0.75,796,0.4,214,0.8
+2023,12,28,20,0,-5.1000000000000005,1.08,0.012,0.63,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.308,55.39,124.26,0.9,0.75,797,0.4,214,0.8
+2023,12,28,20,30,-5.2,1.08,0.012,0.63,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.309,55.81,129.96,0.9,0.75,797,0.4,208,0.8
+2023,12,28,21,0,-5.4,1.07,0.012,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.309,55.69,135.63,0.9,0.75,797,0.4,202,0.8
+2023,12,28,21,30,-5.5,1.07,0.012,0.63,0,0,0,0,0,-12.9,0,0,0,0,0.309,56.04,141.23,0.9,0.75,796,0.4,198,0.8
+2023,12,28,22,0,-5.6000000000000005,1.06,0.011,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.31,55.39,146.67000000000002,0.9,0.75,796,0.4,193,0.9
+2023,12,28,22,30,-5.7,1.06,0.011,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.311,55.81,151.82,0.9,0.75,796,0.4,192,0.9
+2023,12,28,23,0,-5.800000000000001,1.06,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.311,55.09,156.46,0.9,0.75,796,0.4,190,0.9
+2023,12,28,23,30,-5.800000000000001,1.06,0.011,0.63,0,0,0,0,0,-13.4,0,0,0,0,0.312,55.09,160.18,0.9,0.75,796,0.4,190,0.8
+2023,12,29,0,0,-5.800000000000001,1.06,0.011,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.313,53.92,162.38,0.9,0.75,796,0.4,189,0.8
+2023,12,29,0,30,-5.9,1.06,0.011,0.63,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.314,54.33,162.45000000000002,0.9,0.75,796,0.4,188,0.8
+2023,12,29,1,0,-6,1.07,0.011,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.314,53.6,160.38,0.9,0.75,796,0.4,186,0.8
+2023,12,29,1,30,-6.1000000000000005,1.07,0.011,0.63,0,0,0,0,0,-13.9,0,0,0,0,0.315,54.01,156.73,0.9,0.75,796,0.4,187,0.8
+2023,12,29,2,0,-6.2,1.07,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.315,53.44,152.14000000000001,0.9,0.75,797,0.4,189,0.7000000000000001
+2023,12,29,2,30,-6.4,1.07,0.01,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.315,54.26,147.01,0.89,0.75,797,0.4,194,0.7000000000000001
+2023,12,29,3,0,-6.6000000000000005,1.07,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.315,54.21,141.58,0.89,0.75,797,0.4,200,0.7000000000000001
+2023,12,29,3,30,-6.800000000000001,1.07,0.01,0.63,0,0,0,0,0,-14.3,0,0,0,0,0.316,55.050000000000004,135.99,0.89,0.75,797,0.4,202,0.7000000000000001
+2023,12,29,4,0,-7,1.08,0.01,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.316,54.980000000000004,130.32,0.89,0.75,797,0.4,204,0.7000000000000001
+2023,12,29,4,30,-7.300000000000001,1.08,0.01,0.63,0,0,0,0,0,-14.5,0,0,0,0,0.316,56.26,124.62,0.89,0.75,797,0.4,204,0.7000000000000001
+2023,12,29,5,0,-7.5,1.09,0.01,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.316,56,118.94,0.89,0.75,797,0.4,204,0.7000000000000001
+2023,12,29,5,30,-7.800000000000001,1.09,0.01,0.63,0,0,0,0,0,-14.8,0,0,0,0,0.316,57.32,113.32000000000001,0.9,0.75,797,0.4,205,0.8
+2023,12,29,6,0,-8,1.09,0.011,0.63,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.316,56.88,107.78,0.9,0.75,797,0.4,207,0.8
+2023,12,29,6,30,-8.200000000000001,1.09,0.011,0.63,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.316,57.77,102.36,0.9,0.75,797,0.4,208,0.8
+2023,12,29,7,0,-8.4,1.1,0.011,0.63,0,0,0,0,0,-15.3,0,0,0,0,0.316,57.35,97.09,0.9,0.75,797,0.4,210,0.9
+2023,12,29,7,30,-7.9,1.1,0.011,0.63,0,0,0,0,0,-15.3,0,0,0,0,0.315,55.17,92.01,0.9,0.75,797,0.4,213,0.8
+2023,12,29,8,0,-7.4,1.1,0.011,0.63,19,421,41,0,0,-14.3,19,421,0,41,0.314,57.84,86.97,0.9,0.75,797,0.4,216,0.8
+2023,12,29,8,30,-5.9,1.1,0.011,0.63,28,681,117,0,0,-14.3,28,681,0,117,0.314,51.620000000000005,82.5,0.9,0.75,798,0.4,216,1
+2023,12,29,9,0,-4.5,1.1,0.011,0.63,35,800,197,0,0,-13.600000000000001,35,800,0,197,0.314,49.09,78.31,0.9,0.75,798,0.4,217,1.2000000000000002
+2023,12,29,9,30,-3.2,1.1,0.011,0.63,40,874,274,0,0,-13.600000000000001,40,874,0,274,0.313,44.54,74.5,0.9,0.75,798,0.4,222,1.3
+2023,12,29,10,0,-2,1.1,0.01,0.63,44,922,342,0,0,-12.200000000000001,44,922,0,342,0.313,45.660000000000004,71.15,0.9,0.75,798,0.4,226,1.5
+2023,12,29,10,30,-0.7000000000000001,1.1,0.01,0.63,49,950,400,0,0,-12.200000000000001,49,950,0,400,0.313,41.46,68.34,0.9,0.75,797,0.4,228,1.7000000000000002
+2023,12,29,11,0,0.5,0.76,0.015,0.63,56,965,446,0,0,-10.100000000000001,56,965,0,446,0.313,45.07,66.14,0.91,0.75,797,0.4,230,2
+2023,12,29,11,30,1.1,0.76,0.015,0.63,57,979,477,0,0,-10.100000000000001,57,979,0,477,0.313,43.17,64.62,0.91,0.75,797,0.4,228,2
+2023,12,29,12,0,1.7000000000000002,0.77,0.014,0.63,57,986,492,0,0,-9.1,57,986,0,492,0.312,44.4,63.84,0.91,0.75,796,0.4,226,2.1
+2023,12,29,12,30,2.1,0.77,0.014,0.63,57,987,493,0,0,-9.1,57,987,0,493,0.313,43.15,63.800000000000004,0.91,0.75,796,0.4,224,2.1
+2023,12,29,13,0,2.4000000000000004,0.8,0.014,0.63,56,981,478,0,0,-8.700000000000001,56,981,0,478,0.313,43.74,64.53,0.91,0.75,796,0.4,222,2.1
+2023,12,29,13,30,2.4000000000000004,0.8,0.014,0.63,55,968,449,0,0,-8.700000000000001,55,968,0,449,0.313,43.74,65.99,0.91,0.75,796,0.4,219,2.1
+2023,12,29,14,0,2.5,0.8200000000000001,0.014,0.63,52,948,405,0,0,-8.6,52,948,0,405,0.313,43.93,68.13,0.91,0.75,796,0.4,217,2.1
+2023,12,29,14,30,2,0.8200000000000001,0.014,0.63,49,916,349,0,0,-8.6,49,916,0,349,0.312,45.46,70.89,0.91,0.75,795,0.4,216,1.8
+2023,12,29,15,0,1.5,0.85,0.014,0.63,44,870,281,0,0,-7.5,44,870,0,281,0.311,51.18,74.19,0.91,0.75,795,0.4,216,1.6
+2023,12,29,15,30,0.2,0.85,0.014,0.63,38,799,205,0,0,-7.5,38,799,0,205,0.311,56.2,77.97,0.91,0.75,795,0.4,219,1.2000000000000002
+2023,12,29,16,0,-1.1,0.87,0.014,0.63,31,682,124,0,0,-8.1,31,682,0,124,0.31,58.95,82.13,0.91,0.75,795,0.4,223,0.9
+2023,12,29,16,30,-1.6,0.87,0.014,0.63,21,472,49,0,0,-8.1,21,472,0,49,0.309,61.15,86.59,0.91,0.75,795,0.4,227,0.9
+2023,12,29,17,0,-2.2,0.89,0.013000000000000001,0.63,3,45,2,0,0,-9.5,3,45,0,2,0.309,57.47,91.59,0.9,0.74,795,0.4,231,0.9
+2023,12,29,17,30,-2.6,0.89,0.013000000000000001,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.307,59.19,96.65,0.9,0.74,795,0.4,237,0.9
+2023,12,29,18,0,-3,0.9,0.013000000000000001,0.63,0,0,0,0,0,-10,0,0,0,0,0.306,58.47,101.9,0.9,0.74,795,0.4,242,0.9
+2023,12,29,18,30,-3.5,0.9,0.013000000000000001,0.63,0,0,0,0,0,-10,0,0,0,0,0.305,60.69,107.31,0.9,0.74,795,0.4,246,0.9
+2023,12,29,19,0,-4,0.9,0.013000000000000001,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.303,61.06,112.84,0.9,0.74,795,0.4,250,0.9
+2023,12,29,19,30,-4.4,0.9,0.013000000000000001,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.302,62.92,118.46000000000001,0.9,0.74,795,0.4,248,0.9
+2023,12,29,20,0,-4.9,0.89,0.012,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.301,63.49,124.14,0.9,0.74,795,0.4,246,1
+2023,12,29,20,30,-5.1000000000000005,0.89,0.012,0.63,0,0,0,0,0,-10.8,0,0,0,0,0.301,64.46000000000001,129.83,0.9,0.74,795,0.4,241,1
+2023,12,29,21,0,-5.4,0.89,0.012,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.301,64.21000000000001,135.51,0.9,0.74,795,0.4,237,1.1
+2023,12,29,21,30,-5.5,0.89,0.012,0.63,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.301,64.7,141.1,0.9,0.74,795,0.4,232,1.1
+2023,12,29,22,0,-5.7,0.9,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.302,63.910000000000004,146.55,0.9,0.74,794,0.4,228,1.2000000000000002
+2023,12,29,22,30,-5.800000000000001,0.9,0.011,0.63,0,0,0,0,0,-11.4,0,0,0,0,0.302,64.4,151.70000000000002,0.9,0.74,794,0.4,224,1.2000000000000002
+2023,12,29,23,0,-5.9,0.91,0.011,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.302,62.96,156.34,0.9,0.74,794,0.4,221,1.3
+2023,12,29,23,30,-6,0.91,0.011,0.63,0,0,0,0,0,-11.8,0,0,0,0,0.303,63.440000000000005,160.08,0.9,0.74,794,0.4,219,1.3
+2023,12,30,0,0,-6.2,0.9400000000000001,0.011,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.303,62.56,162.3,0.9,0.74,794,0.4,218,1.3
+2023,12,30,0,30,-6.300000000000001,0.9400000000000001,0.011,0.63,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.304,63.04,162.41,0.9,0.74,794,0.4,216,1.4000000000000001
+2023,12,30,1,0,-6.5,0.97,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.304,62.300000000000004,160.37,0.9,0.74,794,0.4,215,1.4000000000000001
+2023,12,30,1,30,-6.6000000000000005,0.97,0.011,0.63,0,0,0,0,0,-12.5,0,0,0,0,0.304,62.78,156.75,0.9,0.74,794,0.4,212,1.4000000000000001
+2023,12,30,2,0,-6.800000000000001,1.02,0.011,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.305,62.27,152.18,0.9,0.74,794,0.4,209,1.4000000000000001
+2023,12,30,2,30,-7,1.02,0.011,0.63,0,0,0,0,0,-12.8,0,0,0,0,0.305,63.230000000000004,147.06,0.9,0.74,794,0.4,206,1.4000000000000001
+2023,12,30,3,0,-7.2,1.06,0.012,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.305,62.84,141.64000000000001,0.9,0.74,793,0.4,203,1.4000000000000001
+2023,12,30,3,30,-7.4,1.06,0.012,0.63,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.305,63.82,136.05,0.91,0.74,793,0.4,200,1.4000000000000001
+2023,12,30,4,0,-7.5,1.1,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.305,63.03,130.38,0.91,0.74,793,0.5,198,1.4000000000000001
+2023,12,30,4,30,-7.6000000000000005,1.1,0.012,0.63,0,0,0,0,0,-13.3,0,0,0,0,0.306,63.52,124.68,0.91,0.74,793,0.5,194,1.4000000000000001
+2023,12,30,5,0,-7.6000000000000005,1.1400000000000001,0.013000000000000001,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.306,61.870000000000005,119,0.91,0.74,793,0.5,191,1.3
+2023,12,30,5,30,-7.6000000000000005,1.1400000000000001,0.013000000000000001,0.63,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.306,61.870000000000005,113.37,0.91,0.74,793,0.5,187,1.3
+2023,12,30,6,0,-7.7,1.17,0.013000000000000001,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.306,60.17,107.83,0.91,0.74,793,0.5,184,1.3
+2023,12,30,6,30,-7.6000000000000005,1.17,0.013000000000000001,0.63,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.306,59.7,102.41,0.91,0.74,793,0.5,182,1.3
+2023,12,30,7,0,-7.5,1.19,0.013000000000000001,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.307,57.57,97.13,0.91,0.74,793,0.5,180,1.3
+2023,12,30,7,30,-6.7,1.19,0.013000000000000001,0.63,0,0,0,0,0,-14.4,0,0,0,0,0.307,54.13,92.05,0.91,0.74,793,0.5,182,1.3
+2023,12,30,8,0,-5.800000000000001,1.21,0.013000000000000001,0.63,20,404,41,0,0,-13.4,20,404,0,41,0.307,55.050000000000004,87,0.92,0.74,793,0.5,184,1.2000000000000002
+2023,12,30,8,30,-4.3,1.21,0.013000000000000001,0.63,30,662,116,0,0,-13.4,30,662,0,116,0.307,49.14,82.52,0.92,0.74,793,0.5,189,1.6
+2023,12,30,9,0,-2.8000000000000003,1.23,0.014,0.63,38,782,196,0,0,-12.600000000000001,38,782,0,196,0.307,46.79,78.32000000000001,0.92,0.74,793,0.5,194,2
+2023,12,30,9,30,-1.7000000000000002,1.23,0.014,0.63,44,855,272,0,0,-12.600000000000001,44,855,0,272,0.306,43.14,74.5,0.92,0.74,793,0.5,201,2.2
+2023,12,30,10,0,-0.7000000000000001,1.24,0.015,0.63,48,902,340,0,0,-12.3,48,902,0,340,0.306,41.12,71.14,0.92,0.74,793,0.5,208,2.5
+2023,12,30,10,30,0.6000000000000001,1.24,0.015,0.63,52,934,397,0,0,-12.3,52,934,0,397,0.306,37.42,68.32000000000001,0.92,0.74,793,0.5,214,2.9000000000000004
+2023,12,30,11,0,1.8,1.22,0.016,0.63,55,955,442,0,0,-11.9,55,955,0,442,0.306,35.46,66.11,0.93,0.74,793,0.5,220,3.4000000000000004
+2023,12,30,11,30,2.5,1.22,0.016,0.63,57,969,473,0,0,-11.9,57,969,0,473,0.306,33.7,64.58,0.93,0.74,792,0.5,221,3.5
+2023,12,30,12,0,3.1,1.23,0.016,0.63,58,975,489,0,0,-11.700000000000001,58,975,0,489,0.305,32.9,63.78,0.93,0.74,792,0.5,223,3.6
+2023,12,30,12,30,3.3000000000000003,1.23,0.016,0.63,58,976,490,0,0,-11.700000000000001,65,951,0,486,0.305,32.4,63.730000000000004,0.93,0.74,791,0.5,223,3.5
+2023,12,30,13,0,3.6,1.24,0.015,0.63,57,971,476,0,7,-11.5,213,459,0,411,0.305,32.19,64.45,0.92,0.74,791,0.5,223,3.4000000000000004
+2023,12,30,13,30,3.4000000000000004,1.24,0.015,0.63,55,959,447,0,7,-11.5,260,215,0,348,0.306,32.64,65.9,0.92,0.74,791,0.5,223,3.2
+2023,12,30,14,0,3.3000000000000003,1.1500000000000001,0.015,0.63,53,939,404,0,7,-11.200000000000001,233,248,0,326,0.306,33.730000000000004,68.03,0.92,0.74,791,0.5,222,3.1
+2023,12,30,14,30,2.6,1.1500000000000001,0.015,0.63,49,909,348,0,7,-11.200000000000001,213,141,0,259,0.307,35.44,70.78,0.92,0.74,791,0.5,223,2.4000000000000004
+2023,12,30,15,0,1.9000000000000001,1.19,0.014,0.63,44,864,281,0,7,-8.6,167,168,0,213,0.307,45.67,74.08,0.91,0.74,791,0.5,223,1.7000000000000002
+2023,12,30,15,30,0.6000000000000001,1.19,0.014,0.63,38,794,205,0,7,-8.6,132,104,0,154,0.308,50.13,77.85000000000001,0.92,0.74,791,0.5,224,1.4000000000000001
+2023,12,30,16,0,-0.7000000000000001,1.2,0.014,0.63,30,680,125,3,7,-8.9,65,262,43,101,0.308,53.660000000000004,82.01,0.92,0.74,790,0.5,225,1.1
+2023,12,30,16,30,-1,1.2,0.014,0.63,21,475,50,7,7,-8.9,32,6,100,32,0.308,54.92,86.47,0.92,0.74,791,0.5,224,1
+2023,12,30,17,0,-1.3,1.21,0.014,0.63,4,46,3,2,7,-10.100000000000001,1,0,29,1,0.309,51.230000000000004,91.46000000000001,0.92,0.65,791,0.5,223,1
+2023,12,30,17,30,-1.3,1.21,0.014,0.63,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.309,51.17,96.52,0.92,0.65,790,0.5,220,0.9
+2023,12,30,18,0,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.309,49.43,101.78,0.93,0.65,790,0.5,218,0.8
+2023,12,30,18,30,-1.3,1.2,0.015,0.63,0,0,0,0,8,-10.5,0,0,0,0,0.309,49.43,107.19,0.93,0.65,790,0.5,215,0.7000000000000001
+2023,12,30,19,0,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.31,48.1,112.72,0.93,0.65,790,0.5,212,0.6000000000000001
+2023,12,30,19,30,-1.3,1.2,0.015,0.63,0,0,0,0,7,-10.9,0,0,0,0,0.309,48.1,118.33,0.93,0.65,790,0.5,205,0.5
+2023,12,30,20,0,-1.3,1.21,0.015,0.63,0,0,0,0,0,-11,0,0,0,0,0.309,47.5,124.01,0.93,0.65,790,0.5,199,0.5
+2023,12,30,20,30,-1.2000000000000002,1.21,0.015,0.63,0,0,0,0,0,-11,0,0,0,0,0.309,47.160000000000004,129.7,0.93,0.65,790,0.5,188,0.4
+2023,12,30,21,0,-1.2000000000000002,1.22,0.015,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.308,47.08,135.38,0.93,0.65,790,0.5,176,0.30000000000000004
+2023,12,30,21,30,-1.2000000000000002,1.22,0.015,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.308,47.08,140.98,0.93,0.65,790,0.6000000000000001,164,0.30000000000000004
+2023,12,30,22,0,-1.1,1.23,0.016,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.308,46.33,146.42000000000002,0.93,0.65,790,0.6000000000000001,152,0.30000000000000004
+2023,12,30,22,30,-1.1,1.23,0.016,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.307,46.33,151.58,0.93,0.65,790,0.6000000000000001,137,0.30000000000000004
+2023,12,30,23,0,-1.1,1.23,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.307,46.050000000000004,156.22,0.93,0.65,790,0.6000000000000001,122,0.30000000000000004
+2023,12,30,23,30,-1,1.23,0.017,0.63,0,0,0,0,0,-11.3,0,0,0,0,0.307,45.71,159.97,0.9400000000000001,0.65,790,0.7000000000000001,106,0.30000000000000004
+2023,12,31,0,0,-1,1.21,0.019,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.307,45.82,162.21,0.9400000000000001,0.65,790,0.7000000000000001,89,0.30000000000000004
+2023,12,31,0,30,-0.9,1.21,0.019,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.307,45.49,162.35,0.9400000000000001,0.65,790,0.7000000000000001,75,0.4
+2023,12,31,1,0,-0.9,1.21,0.021,0.63,0,0,0,0,7,-11.3,0,0,0,0,0.307,45.38,160.35,0.9400000000000001,0.65,789,0.7000000000000001,62,0.4
+2023,12,31,1,30,-1,1.21,0.021,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.307,45.77,156.76,0.9400000000000001,0.65,790,0.7000000000000001,59,0.5
+2023,12,31,2,0,-1.1,1.21,0.021,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.307,46.300000000000004,152.21,0.9400000000000001,0.65,790,0.7000000000000001,57,0.5
+2023,12,31,2,30,-1.3,1.21,0.021,0.63,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.308,46.99,147.1,0.9400000000000001,0.65,790,0.7000000000000001,56,0.6000000000000001
+2023,12,31,3,0,-1.6,1.23,0.02,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.308,48,141.68,0.9400000000000001,0.65,790,0.7000000000000001,55,0.7000000000000001
+2023,12,31,3,30,-1.9000000000000001,1.23,0.02,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.308,49,136.1,0.9400000000000001,0.65,789,0.7000000000000001,55,0.7000000000000001
+2023,12,31,4,0,-2.2,1.25,0.019,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.308,50.27,130.43,0.9400000000000001,0.65,789,0.7000000000000001,55,0.8
+2023,12,31,4,30,-2.5,1.25,0.019,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.309,51.39,124.73,0.93,0.65,789,0.7000000000000001,54,0.8
+2023,12,31,5,0,-2.8000000000000003,1.26,0.018000000000000002,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.309,52.86,119.05,0.93,0.65,789,0.7000000000000001,53,0.9
+2023,12,31,5,30,-3.1,1.26,0.018000000000000002,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.31,54.050000000000004,113.42,0.93,0.65,789,0.7000000000000001,52,0.9
+2023,12,31,6,0,-3.4000000000000004,1.28,0.017,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.31,55.27,107.88,0.93,0.65,789,0.7000000000000001,50,0.9
+2023,12,31,6,30,-3.6,1.28,0.017,0.63,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.311,56.11,102.45,0.92,0.65,789,0.6000000000000001,47,0.9
+2023,12,31,7,0,-3.8000000000000003,1.3,0.015,0.63,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.311,56.620000000000005,97.17,0.92,0.65,789,0.6000000000000001,43,0.9
+2023,12,31,7,30,-3.4000000000000004,1.3,0.015,0.63,0,0,0,2,7,-11.100000000000001,0,0,29,0,0.311,55.02,92.08,0.92,0.65,790,0.6000000000000001,38,0.8
+2023,12,31,8,0,-3,1.31,0.015,0.63,20,391,40,7,7,-9.9,19,0,100,19,0.311,58.980000000000004,87.02,0.92,0.65,790,0.6000000000000001,32,0.7000000000000001
+2023,12,31,8,30,-1.9000000000000001,1.31,0.015,0.63,30,649,114,4,7,-9.9,59,158,57,80,0.312,54.370000000000005,82.54,0.92,0.65,790,0.6000000000000001,24,0.9
+2023,12,31,9,0,-0.7000000000000001,1.31,0.015,0.63,37,771,193,0,0,-9.3,69,541,0,178,0.313,52.31,78.33,0.92,0.65,790,0.6000000000000001,15,1.1
+2023,12,31,9,30,0.30000000000000004,1.31,0.015,0.63,43,844,269,0,7,-9.3,101,499,0,234,0.314,48.65,74.5,0.92,0.65,790,0.6000000000000001,187,1
+2023,12,31,10,0,1.4000000000000001,1.3,0.016,0.63,49,892,337,2,7,-9.600000000000001,175,141,36,221,0.314,43.69,71.13,0.92,0.65,791,0.6000000000000001,359,0.9
+2023,12,31,10,30,2.5,1.3,0.016,0.63,52,924,394,0,7,-9.600000000000001,166,478,0,343,0.315,40.39,68.3,0.92,0.65,791,0.6000000000000001,318,0.9
+2023,12,31,11,0,3.5,1.23,0.018000000000000002,0.63,56,944,439,0,7,-9,201,294,0,320,0.316,39.660000000000004,66.07000000000001,0.93,0.65,791,0.6000000000000001,277,0.9
+2023,12,31,11,30,3.9000000000000004,1.23,0.018000000000000002,0.63,57,958,469,0,7,-9,185,443,7,376,0.316,38.51,64.53,0.93,0.65,790,0.6000000000000001,266,1.2000000000000002
+2023,12,31,12,0,4.3,1.24,0.018000000000000002,0.63,59,965,486,0,7,-8.3,251,130,0,309,0.317,39.59,63.71,0.93,0.65,790,0.6000000000000001,254,1.5
+2023,12,31,12,30,4.4,1.24,0.018000000000000002,0.63,58,965,486,0,7,-8.3,231,96,0,274,0.318,39.32,63.660000000000004,0.93,0.65,790,0.6000000000000001,250,1.7000000000000002
+2023,12,31,13,0,4.5,1.26,0.018000000000000002,0.63,58,959,473,0,7,-8,224,379,0,388,0.319,39.97,64.36,0.93,0.65,790,0.6000000000000001,245,1.8
+2023,12,31,13,30,4.3,1.26,0.018000000000000002,0.63,58,942,444,0,7,-8,171,545,11,394,0.32,40.53,65.8,0.93,0.65,790,0.6000000000000001,241,1.8
+2023,12,31,14,0,4.2,0.97,0.023,0.63,57,915,401,0,0,-7.5,88,808,4,392,0.321,42.28,67.92,0.93,0.65,790,0.6000000000000001,236,1.7000000000000002
+2023,12,31,14,30,3.3000000000000003,0.97,0.023,0.63,53,884,346,0,0,-7.5,58,865,0,344,0.322,45.1,70.67,0.93,0.65,791,0.6000000000000001,232,1.3
+2023,12,31,15,0,2.5,0.99,0.021,0.63,47,838,279,0,0,-5,47,838,0,279,0.323,57.7,73.96000000000001,0.93,0.65,791,0.6000000000000001,229,0.8
+2023,12,31,15,30,1.6,0.99,0.021,0.63,41,767,204,0,0,-5,41,767,0,204,0.323,61.52,77.73,0.93,0.65,791,0.6000000000000001,225,0.8
+2023,12,31,16,0,0.6000000000000001,1.02,0.02,0.63,33,651,125,0,0,-7.4,33,651,0,125,0.324,55.120000000000005,81.89,0.93,0.65,791,0.6000000000000001,221,0.8
+2023,12,31,16,30,0.6000000000000001,1.02,0.02,0.63,22,443,50,4,0,-7.4,29,258,50,45,0.324,55.120000000000005,86.35000000000001,0.93,0.65,791,0.6000000000000001,221,0.8
+2023,12,31,17,0,-0.9,1.19,0.027,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.27,100,91.3,0.96,0.65,781,1.1,193,1.6
+2023,12,31,17,30,-1.1,1.19,0.027,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.271,100,96.36,0.96,0.65,781,1.1,187,1.6
+2023,12,31,18,0,-1.2000000000000002,1.19,0.027,0.63,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.272,100,101.61,0.96,0.65,781,1.1,180,1.6
+2023,12,31,18,30,-1.4000000000000001,1.19,0.027,0.63,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.272,100,107.02,0.96,0.65,780,1.1,175,1.6
+2023,12,31,19,0,-1.6,1.19,0.025,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.273,100,112.55,0.9500000000000001,0.65,780,1.1,169,1.7000000000000002
+2023,12,31,19,30,-1.7000000000000002,1.19,0.025,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.273,100,118.17,0.9500000000000001,0.65,780,1.1,171,1.8
+2023,12,31,20,0,-1.8,1.18,0.028,0.63,0,0,0,0,4,-1.8,0,0,0,0,0.274,100,123.84,0.96,0.65,780,1.1,172,1.9000000000000001
+2023,12,31,20,30,-1.8,1.18,0.028,0.63,0,0,0,0,8,-1.8,0,0,0,0,0.274,100,129.54,0.96,0.65,780,1.1,175,2
+2023,12,31,21,0,-1.8,1.19,0.026000000000000002,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.274,100,135.21,0.96,0.65,780,1.1,177,2.2
+2023,12,31,21,30,-1.8,1.19,0.026000000000000002,0.63,0,0,0,0,7,-1.8,0,0,0,0,0.274,100,140.81,0.96,0.65,780,1.1,181,2.3000000000000003
+2023,12,31,22,0,-1.9000000000000001,1.2,0.022,0.63,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.274,100,146.25,0.9500000000000001,0.65,780,1.1,185,2.4000000000000004
+2023,12,31,22,30,-1.7000000000000002,1.2,0.022,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.275,100,151.41,0.96,0.65,780,1.1,188,2.6
+2023,12,31,23,0,-1.5,1.2,0.025,0.63,0,0,0,0,7,-1.5,0,0,0,0,0.276,100,156.06,0.96,0.65,780,1.1,192,2.8000000000000003
+2023,12,31,23,30,-1.4000000000000001,1.2,0.025,0.63,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.277,100,159.82,0.96,0.65,780,1.1,194,2.9000000000000004
diff --git a/pvlib/tests/iotools/test_goes4.py b/pvlib/tests/iotools/test_goes4.py
new file mode 100644
index 0000000000..a22c903988
--- /dev/null
+++ b/pvlib/tests/iotools/test_goes4.py
@@ -0,0 +1,198 @@
+"""
+test iotools for GOES4
+"""
+
+import os
+from pvlib.iotools import goes4
+from ..conftest import DATA_DIR, RERUNS, RERUNS_DELAY, assert_index_equal
+import numpy as np
+import pandas as pd
+import pytest
+from requests import HTTPError
+from io import StringIO
+import warnings
+from pvlib._deprecation import pvlibDeprecationWarning
+
+TMY_TEST_DATA = DATA_DIR / 'test_goes4_tmy-2023.csv'
+YEAR_TEST_DATA = DATA_DIR / 'test_goes4_2023.csv'
+YEAR_TEST_DATA_5MIN = DATA_DIR / 'test_goes4_2023_5min.csv'
+MANUAL_TEST_DATA = DATA_DIR / 'test_read_goes4.csv'
+LATITUDE, LONGITUDE = 40.5137, -108.5449
+METADATA_FIELDS = [
+ 'Source', 'Location ID', 'City', 'State', 'Country', 'Latitude',
+ 'Longitude', 'Time Zone', 'Elevation', 'Local Time Zone',
+ 'Dew Point Units', 'DHI Units', 'DNI Units', 'GHI Units',
+ 'Temperature Units', 'Pressure Units', 'Wind Direction Units',
+ 'Wind Speed Units', 'Surface Albedo Units', 'Version']
+PVLIB_EMAIL = 'pvlib-admin@googlegroups.com'
+
+
+@pytest.fixture(scope="module")
+def nrel_api_key():
+ """Supplies pvlib-python's NREL Developer Network API key.
+
+ Azure Pipelines CI utilizes a secret variable set to NREL_API_KEY
+ to mitigate failures associated with using the default key of
+ "DEMO_KEY". A user is capable of using their own key this way if
+ desired however the default key should suffice for testing purposes.
+ """
+ try:
+ demo_key = os.environ["NREL_API_KEY"]
+ except KeyError:
+ warnings.warn(
+ "WARNING: NREL API KEY environment variable not set! "
+ "Using DEMO_KEY instead. Unexpected failures may occur."
+ )
+ demo_key = 'DEMO_KEY'
+ return demo_key
+
+
+def assert_goes4_equal(data, metadata, expected):
+ """check consistency of GOES4 data"""
+ # check datevec columns
+ assert np.allclose(data.Year, expected.Year)
+ assert np.allclose(data.Month, expected.Month)
+ assert np.allclose(data.Day, expected.Day)
+ assert np.allclose(data.Hour, expected.Hour)
+ assert np.allclose(data.Minute, expected.Minute)
+ # check data columns
+ assert np.allclose(data.GHI, expected.GHI)
+ assert np.allclose(data.DNI, expected.DNI)
+ assert np.allclose(data.DHI, expected.DHI)
+ assert np.allclose(data.Temperature, expected.Temperature)
+ assert np.allclose(data.Pressure, expected.Pressure)
+ assert np.allclose(data['Dew Point'], expected['Dew Point'])
+ assert np.allclose(data['Surface Albedo'], expected['Surface Albedo'])
+ assert np.allclose(data['Wind Speed'], expected['Wind Speed'])
+ assert np.allclose(data['Wind Direction'], expected['Wind Direction'])
+ # check header
+ for mf in METADATA_FIELDS:
+ assert mf in metadata
+ # check timezone
+ assert (data.index.tzinfo.zone == 'Etc/GMT%+d' % -metadata['Time Zone'])
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_tmy(nrel_api_key):
+ """test get_goes4 with a TMY"""
+ data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='tmy-2023',
+ leap_day=False, map_variables=False)
+ expected = pd.read_csv(TMY_TEST_DATA)
+ assert_goes4_equal(data, metadata, expected)
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_singleyear(nrel_api_key):
+ """test get_goes4 with a single year"""
+ data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='2023',
+ leap_day=False, map_variables=False,
+ interval=30)
+ expected = pd.read_csv(YEAR_TEST_DATA)
+ assert_goes4_equal(data, metadata, expected)
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_5min(nrel_api_key):
+ """test get_goes4 for 5-minute data"""
+ data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='2023', interval=5,
+ leap_day=False, map_variables=False)
+ assert len(data) == 525600/5
+ first_day = data.loc['2023-01-01']
+ expected = pd.read_csv(YEAR_TEST_DATA_5MIN)
+ assert_goes4_equal(first_day, metadata, expected)
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_check_leap_day(nrel_api_key):
+ data_2012, _ = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names="2012", interval=60,
+ leap_day=True, map_variables=False)
+ assert len(data_2012) == (8760 + 24)
+
+
+@pytest.mark.parametrize('latitude, longitude, api_key, names, interval',
+ [(LATITUDE, LONGITUDE, 'BAD', 'tmy-2023', 60),
+ (51, -5, nrel_api_key, 'tmy-2023', 60),
+ (LATITUDE, LONGITUDE, nrel_api_key, 'bad', 60),
+ (LATITUDE, LONGITUDE, nrel_api_key, '2023', 15),
+ ])
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_tmy_errors(
+ latitude, longitude, api_key, names, interval
+):
+ """Test get_goes4() for multiple erroneous input scenarios.
+
+ These scenarios include:
+ * Bad API key -> HTTP 403 forbidden because api_key is rejected
+ * Bad latitude/longitude -> Coordinates were not found in the NSRDB.
+ * Bad name -> Name is not one of the available options.
+ * Bad interval, single year -> Intervals can only be 30 or 60 minutes.
+ """
+ with pytest.raises(HTTPError) as excinfo:
+ goes4.get_goes4(latitude, longitude, api_key, PVLIB_EMAIL,
+ names=names, interval=interval, leap_day=False,
+ map_variables=False)
+ # ensure the HTTPError caught isn't due to overuse of the API key
+ assert "OVER_RATE_LIMIT" not in str(excinfo.value)
+
+
+@pytest.fixture
+def io_input(request):
+ """file-like object for parse_goes4"""
+ with MANUAL_TEST_DATA.open() as f:
+ data = f.read()
+ obj = StringIO(data)
+ return obj
+
+
+def test_parse_goes4(io_input):
+ """test parse_goes4"""
+ data, metadata = goes4.parse_goes4(io_input, map_variables=False)
+ expected = pd.read_csv(YEAR_TEST_DATA)
+ assert_goes4_equal(data, metadata, expected)
+
+
+def test_read_goes4():
+ """test read_goes4"""
+ data, metadata = goes4.read_goes4(MANUAL_TEST_DATA, map_variables=False)
+ expected = pd.read_csv(YEAR_TEST_DATA)
+ assert_goes4_equal(data, metadata, expected)
+
+
+def test_read_goes4_map_variables():
+ """test read_goes4 map_variables=True"""
+ data, metadata = goes4.read_goes4(MANUAL_TEST_DATA, map_variables=True)
+ columns_mapped = ['Year', 'Month', 'Day', 'Hour', 'Minute', 'temp_air',
+ 'alpha', 'aod', 'asymmetry', 'dhi_clear', 'dni_clear',
+ 'ghi_clear', 'Cloud Fill Flag', 'Cloud Type',
+ 'temp_dew', 'dhi', 'dni', 'Fill Flag', 'ghi', 'Ozone',
+ 'relative_humidity', 'solar_zenith', 'SSA', 'albedo',
+ 'pressure','precipitable_water', 'wind_direction',
+ 'wind_speed']
+ assert_index_equal(data.columns, pd.Index(columns_mapped))
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_get_goes4_attribute_mapping(nrel_api_key):
+ """Test that pvlib names can be passed in as attributes and get correctly
+ reverse mapped to GOES4 names"""
+ data, meta = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key, PVLIB_EMAIL,
+ names=2019, interval=60,
+ attributes=['ghi', 'wind_speed'],
+ leap_day=False, map_variables=True)
+ # Check that columns are in the correct order (GH1647)
+ expected_columns = [
+ 'Year', 'Month', 'Day', 'Hour', 'Minute', 'ghi', 'wind_speed']
+ pd.testing.assert_index_equal(pd.Index(expected_columns), data.columns)
+ assert 'latitude' in meta.keys()
+ assert 'longitude' in meta.keys()
+ assert 'altitude' in meta.keys()
From 01183173d297b3b67e313c4cba0cb1fbd4236d26 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 18:03:39 -0600
Subject: [PATCH 09/19] fixed linter issues
---
pvlib/tests/iotools/test_goes4.py | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/pvlib/tests/iotools/test_goes4.py b/pvlib/tests/iotools/test_goes4.py
index a22c903988..9bae9bdcb1 100644
--- a/pvlib/tests/iotools/test_goes4.py
+++ b/pvlib/tests/iotools/test_goes4.py
@@ -11,7 +11,6 @@
from requests import HTTPError
from io import StringIO
import warnings
-from pvlib._deprecation import pvlibDeprecationWarning
TMY_TEST_DATA = DATA_DIR / 'test_goes4_tmy-2023.csv'
YEAR_TEST_DATA = DATA_DIR / 'test_goes4_2023.csv'
@@ -138,8 +137,8 @@ def test_get_goes4_tmy_errors(
"""
with pytest.raises(HTTPError) as excinfo:
goes4.get_goes4(latitude, longitude, api_key, PVLIB_EMAIL,
- names=names, interval=interval, leap_day=False,
- map_variables=False)
+ names=names, interval=interval, leap_day=False,
+ map_variables=False)
# ensure the HTTPError caught isn't due to overuse of the API key
assert "OVER_RATE_LIMIT" not in str(excinfo.value)
@@ -175,7 +174,7 @@ def test_read_goes4_map_variables():
'ghi_clear', 'Cloud Fill Flag', 'Cloud Type',
'temp_dew', 'dhi', 'dni', 'Fill Flag', 'ghi', 'Ozone',
'relative_humidity', 'solar_zenith', 'SSA', 'albedo',
- 'pressure','precipitable_water', 'wind_direction',
+ 'pressure', 'precipitable_water', 'wind_direction',
'wind_speed']
assert_index_equal(data.columns, pd.Index(columns_mapped))
@@ -185,10 +184,10 @@ def test_read_goes4_map_variables():
def test_get_goes4_attribute_mapping(nrel_api_key):
"""Test that pvlib names can be passed in as attributes and get correctly
reverse mapped to GOES4 names"""
- data, meta = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key, PVLIB_EMAIL,
- names=2019, interval=60,
- attributes=['ghi', 'wind_speed'],
- leap_day=False, map_variables=True)
+ data, meta = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names=2019, interval=60,
+ attributes=['ghi', 'wind_speed'],
+ leap_day=False, map_variables=True)
# Check that columns are in the correct order (GH1647)
expected_columns = [
'Year', 'Month', 'Day', 'Hour', 'Minute', 'ghi', 'wind_speed']
From 2f6817c5c54772cbb3cb58ac48815a9a38a1c7c6 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 6 Feb 2025 18:04:29 -0600
Subject: [PATCH 10/19] Update docs/sphinx/source/whatsnew/v0.11.3.rst
Co-authored-by: Echedey Luis <80125792+echedey-ls@users.noreply.github.com>
---
docs/sphinx/source/whatsnew/v0.11.3.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst
index e146ac8009..903b4ccc93 100644
--- a/docs/sphinx/source/whatsnew/v0.11.3.rst
+++ b/docs/sphinx/source/whatsnew/v0.11.3.rst
@@ -12,7 +12,7 @@ Enhancements
~~~~~~~~~~~~
* Fix a bug in :py:func:`pvlib.bifacial.get_irradiance_poa` which may have yielded non-zero
ground irradiance when the sun was below the horizon. (:issue:`2245`, :pull:`2359`)
-* Added NREL NSRDB GOES v4 to `pvlib.iotools` (:issue:`2326`, :pull:`2378`)
+* Add NREL NSRDB GOES v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_goes4`, :py:func:`~pvlib.iotools.read_goes4` and :py:func:`~pvlib.iotools.parse_goes4`. (:issue:`2326`, :pull:`2378`)
Documentation
~~~~~~~~~~~~~
From fe8821d9ce2940fbb0497b6c1ff03ccd34ada580 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Fri, 7 Feb 2025 20:43:41 -0600
Subject: [PATCH 11/19] change "goes4" to "psm4"
---
...test_goes4_2023.csv => test_psm4_2023.csv} | 0
..._2023_5min.csv => test_psm4_2023_5min.csv} | 0
...s4_tmy-2023.csv => test_psm4_tmy-2023.csv} | 0
...test_read_goes4.csv => test_read_psm4.csv} | 0
pvlib/iotools/{goes4.py => psm4.py} | 64 +++++------
.../iotools/{test_goes4.py => test_psm4.py} | 108 +++++++++---------
6 files changed, 86 insertions(+), 86 deletions(-)
rename pvlib/data/{test_goes4_2023.csv => test_psm4_2023.csv} (100%)
rename pvlib/data/{test_goes4_2023_5min.csv => test_psm4_2023_5min.csv} (100%)
rename pvlib/data/{test_goes4_tmy-2023.csv => test_psm4_tmy-2023.csv} (100%)
rename pvlib/data/{test_read_goes4.csv => test_read_psm4.csv} (100%)
rename pvlib/iotools/{goes4.py => psm4.py} (87%)
rename pvlib/tests/iotools/{test_goes4.py => test_psm4.py} (64%)
diff --git a/pvlib/data/test_goes4_2023.csv b/pvlib/data/test_psm4_2023.csv
similarity index 100%
rename from pvlib/data/test_goes4_2023.csv
rename to pvlib/data/test_psm4_2023.csv
diff --git a/pvlib/data/test_goes4_2023_5min.csv b/pvlib/data/test_psm4_2023_5min.csv
similarity index 100%
rename from pvlib/data/test_goes4_2023_5min.csv
rename to pvlib/data/test_psm4_2023_5min.csv
diff --git a/pvlib/data/test_goes4_tmy-2023.csv b/pvlib/data/test_psm4_tmy-2023.csv
similarity index 100%
rename from pvlib/data/test_goes4_tmy-2023.csv
rename to pvlib/data/test_psm4_tmy-2023.csv
diff --git a/pvlib/data/test_read_goes4.csv b/pvlib/data/test_read_psm4.csv
similarity index 100%
rename from pvlib/data/test_read_goes4.csv
rename to pvlib/data/test_read_psm4.csv
diff --git a/pvlib/iotools/goes4.py b/pvlib/iotools/psm4.py
similarity index 87%
rename from pvlib/iotools/goes4.py
rename to pvlib/iotools/psm4.py
index 95e32d2db5..35672c639e 100644
--- a/pvlib/iotools/goes4.py
+++ b/pvlib/iotools/psm4.py
@@ -1,5 +1,5 @@
"""
-Get NSRDB GOES V4.0.0
+Get NSRDB PSM4
see
https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-conus-v4-0-0-download/
"""
@@ -23,7 +23,7 @@
'surface_pressure', 'wind_direction', 'wind_speed')
PVLIB_PYTHON = 'pvlib python'
-# Dictionary mapping GOES4 response names to pvlib names
+# Dictionary mapping PSM4 response names to pvlib names
VARIABLE_MAP = {
'GHI': 'ghi',
'DHI': 'dhi',
@@ -45,8 +45,8 @@
'Asymmetry': 'asymmetry',
}
-# Dictionary mapping pvlib names to GOES4 request names
-# Note, GOES4 uses different names for the same variables in the
+# Dictionary mapping pvlib names to PSM4 request names
+# Note, PSM4 uses different names for the same variables in the
# response and the request
REQUEST_VARIABLE_MAP = {
'ghi': 'ghi',
@@ -70,12 +70,12 @@
}
-def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
- attributes=ATTRIBUTES, leap_day=True, full_name=PVLIB_PYTHON,
- affiliation=PVLIB_PYTHON, map_variables=True, url=None,
- timeout=30):
+def get_psm4(latitude, longitude, api_key, email, names='tmy', interval=60,
+ attributes=ATTRIBUTES, leap_day=True, full_name=PVLIB_PYTHON,
+ affiliation=PVLIB_PYTHON, map_variables=True, url=None,
+ timeout=30):
"""
- Retrieve NSRDB GOES4 timeseries weather data from the GOES4 API. The NSRDB
+ Retrieve NSRDB PSM4 timeseries weather data from the GOES4 API. The NSRDB
is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and
[4]_.
@@ -100,7 +100,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
typical year requests (i.e., tmy/tgy/tdy).
attributes : list of str, optional
meteorological fields to fetch. If not specified, defaults to
- ``pvlib.iotools.goes4.ATTRIBUTES``. See references [2]_, [3]_, and [4]_
+ ``pvlib.iotools.psm4.ATTRIBUTES``. See references [2]_, [3]_, and [4]_
for lists of available fields. Alternatively, pvlib names may also be
used (e.g. 'ghi' rather than 'GHI'); see :const:`REQUEST_VARIABLE_MAP`.
To retrieve all available fields, set ``attributes=[]``.
@@ -123,10 +123,10 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
Returns
-------
data : pandas.DataFrame
- timeseries data from NREL GOES4
+ timeseries data from NREL PSM4
metadata : dict
- metadata from NREL GOES4 about the record, see
- :func:`pvlib.iotools.parse_goes4` for fields
+ metadata from NREL PSM4 about the record, see
+ :func:`pvlib.iotools.parse_psm4` for fields
Raises
------
@@ -144,14 +144,14 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
.. warning:: The "DEMO_KEY" `api_key` is severely rate limited and may
result in rejected requests.
- .. warning:: GOES4 is limited to data found in the NSRDB, please consult
+ .. warning:: PSM4 is limited to data found in the NSRDB, please consult
the references below for locations with available data. Additionally,
querying data with < 30-minute resolution uses a different API endpoint
with fewer available fields (see [4]_).
See Also
--------
- pvlib.iotools.read_goes4, pvlib.iotools.parse_goes4
+ pvlib.iotools.read_psm4, pvlib.iotools.parse_psm4
References
----------
@@ -175,7 +175,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
# convert to string to accomodate integer years being passed in
names = str(names)
- # convert pvlib names in attributes to psm3/goes4 convention
+ # convert pvlib names in attributes to PSM4 convention
attributes = [REQUEST_VARIABLE_MAP.get(a, a) for a in attributes]
# required query-string parameters for request to GOES4 API
@@ -193,7 +193,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
'utc': 'false',
'interval': interval
}
- # request CSV download from NREL GOES4
+ # request CSV download from NREL PSM4
if url is None:
# determine the endpoint that suits the user inputs
if any(prefix in names for prefix in ('tmy', 'tgy', 'tdy')):
@@ -220,7 +220,7 @@ def get_goes4(latitude, longitude, api_key, email, names='tmy', interval=60,
def parse_goes4(fbuf, map_variables=True):
"""
- Parse an NSRDB GOES4 weather file (formatted as SAM CSV). The NSRDB
+ Parse an NSRDB PSM4 weather file (formatted as SAM CSV). The NSRDB
is described in [1]_ and the SAM CSV format is described in [2]_.
Parameters
@@ -234,16 +234,16 @@ def parse_goes4(fbuf, map_variables=True):
Returns
-------
data : pandas.DataFrame
- timeseries data from NREL GOES4
+ timeseries data from NREL PSM4
metadata : dict
- metadata from NREL GOES4 about the record, see notes for fields
+ metadata from NREL PSM4 about the record, see notes for fields
Notes
-----
The return is a tuple with two items. The first item is a dataframe with
- the GOES4 timeseries data.
+ the PSM4 timeseries data.
- The second item is a dictionary with metadata from NREL GOES4 about the
+ The second item is a dictionary with metadata from NREL PSM4 about the
record containing the following fields:
* Source
@@ -295,13 +295,13 @@ def parse_goes4(fbuf, map_variables=True):
Examples
--------
- >>> # Read a local GOES4 file:
+ >>> # Read a local PSM4 file:
>>> with open(filename, 'r') as f: # doctest: +SKIP
- ... df, metadata = iotools.parse_goes4(f) # doctest: +SKIP
+ ... df, metadata = iotools.parse_psm4(f) # doctest: +SKIP
See Also
--------
- pvlib.iotools.read_goes4, pvlib.iotools.get_goes4
+ pvlib.iotools.read_psm4, pvlib.iotools.get_psm4
References
----------
@@ -351,9 +351,9 @@ def parse_goes4(fbuf, map_variables=True):
return data, metadata
-def read_goes4(filename, map_variables=True):
+def read_psm4(filename, map_variables=True):
"""
- Read an NSRDB GOES4 weather file (formatted as SAM CSV). The NSRDB
+ Read an NSRDB PSM4 weather file (formatted as SAM CSV). The NSRDB
is described in [1]_ and the SAM CSV format is described in [2]_.
.. versionchanged:: 0.9.0
@@ -372,14 +372,14 @@ def read_goes4(filename, map_variables=True):
Returns
-------
data : pandas.DataFrame
- timeseries data from NREL GOES4
+ timeseries data from NREL PSM4
metadata : dict
- metadata from NREL GOES4 about the record, see
- :func:`pvlib.iotools.parse_goes4` for fields
+ metadata from NREL PSM4 about the record, see
+ :func:`pvlib.iotools.parse_psm4` for fields
See Also
--------
- pvlib.iotools.parse_goes4, pvlib.iotools.get_goes4
+ pvlib.iotools.parse_psm4, pvlib.iotools.get_psm4
References
----------
@@ -389,5 +389,5 @@ def read_goes4(filename, map_variables=True):
`_
"""
with open(str(filename), 'r') as fbuf:
- content = parse_goes4(fbuf, map_variables)
+ content = parse_psm4(fbuf, map_variables)
return content
diff --git a/pvlib/tests/iotools/test_goes4.py b/pvlib/tests/iotools/test_psm4.py
similarity index 64%
rename from pvlib/tests/iotools/test_goes4.py
rename to pvlib/tests/iotools/test_psm4.py
index 9bae9bdcb1..a525e88d46 100644
--- a/pvlib/tests/iotools/test_goes4.py
+++ b/pvlib/tests/iotools/test_psm4.py
@@ -1,9 +1,9 @@
"""
-test iotools for GOES4
+test iotools for PSM4
"""
import os
-from pvlib.iotools import goes4
+from pvlib.iotools import psm4
from ..conftest import DATA_DIR, RERUNS, RERUNS_DELAY, assert_index_equal
import numpy as np
import pandas as pd
@@ -12,10 +12,10 @@
from io import StringIO
import warnings
-TMY_TEST_DATA = DATA_DIR / 'test_goes4_tmy-2023.csv'
-YEAR_TEST_DATA = DATA_DIR / 'test_goes4_2023.csv'
-YEAR_TEST_DATA_5MIN = DATA_DIR / 'test_goes4_2023_5min.csv'
-MANUAL_TEST_DATA = DATA_DIR / 'test_read_goes4.csv'
+TMY_TEST_DATA = DATA_DIR / 'test_psm4_tmy-2023.csv'
+YEAR_TEST_DATA = DATA_DIR / 'test_psm4_2023.csv'
+YEAR_TEST_DATA_5MIN = DATA_DIR / 'test_psm4_2023_5min.csv'
+MANUAL_TEST_DATA = DATA_DIR / 'test_read_psm4.csv'
LATITUDE, LONGITUDE = 40.5137, -108.5449
METADATA_FIELDS = [
'Source', 'Location ID', 'City', 'State', 'Country', 'Latitude',
@@ -46,8 +46,8 @@ def nrel_api_key():
return demo_key
-def assert_goes4_equal(data, metadata, expected):
- """check consistency of GOES4 data"""
+def assert_psm4_equal(data, metadata, expected):
+ """check consistency of PSM4 data"""
# check datevec columns
assert np.allclose(data.Year, expected.Year)
assert np.allclose(data.Month, expected.Month)
@@ -73,46 +73,46 @@ def assert_goes4_equal(data, metadata, expected):
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_tmy(nrel_api_key):
- """test get_goes4 with a TMY"""
- data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names='tmy-2023',
- leap_day=False, map_variables=False)
+def test_get_psm4_tmy(nrel_api_key):
+ """test get_psm4 with a TMY"""
+ data, metadata = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='tmy-2023',
+ leap_day=False, map_variables=False)
expected = pd.read_csv(TMY_TEST_DATA)
- assert_goes4_equal(data, metadata, expected)
+ assert_psm4_equal(data, metadata, expected)
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_singleyear(nrel_api_key):
- """test get_goes4 with a single year"""
- data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names='2023',
- leap_day=False, map_variables=False,
- interval=30)
+def test_get_psm4_singleyear(nrel_api_key):
+ """test get_psm4 with a single year"""
+ data, metadata = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='2023',
+ leap_day=False, map_variables=False,
+ interval=30)
expected = pd.read_csv(YEAR_TEST_DATA)
- assert_goes4_equal(data, metadata, expected)
+ assert_psm4_equal(data, metadata, expected)
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_5min(nrel_api_key):
- """test get_goes4 for 5-minute data"""
- data, metadata = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names='2023', interval=5,
- leap_day=False, map_variables=False)
+def test_get_psm4_5min(nrel_api_key):
+ """test get_psm4 for 5-minute data"""
+ data, metadata = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names='2023', interval=5,
+ leap_day=False, map_variables=False)
assert len(data) == 525600/5
first_day = data.loc['2023-01-01']
expected = pd.read_csv(YEAR_TEST_DATA_5MIN)
- assert_goes4_equal(first_day, metadata, expected)
+ assert_psm4_equal(first_day, metadata, expected)
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_check_leap_day(nrel_api_key):
- data_2012, _ = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names="2012", interval=60,
- leap_day=True, map_variables=False)
+def test_get_psm4_check_leap_day(nrel_api_key):
+ data_2012, _ = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names="2012", interval=60,
+ leap_day=True, map_variables=False)
assert len(data_2012) == (8760 + 24)
@@ -124,10 +124,10 @@ def test_get_goes4_check_leap_day(nrel_api_key):
])
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_tmy_errors(
+def test_get_psm4_tmy_errors(
latitude, longitude, api_key, names, interval
):
- """Test get_goes4() for multiple erroneous input scenarios.
+ """Test get_psm4() for multiple erroneous input scenarios.
These scenarios include:
* Bad API key -> HTTP 403 forbidden because api_key is rejected
@@ -136,39 +136,39 @@ def test_get_goes4_tmy_errors(
* Bad interval, single year -> Intervals can only be 30 or 60 minutes.
"""
with pytest.raises(HTTPError) as excinfo:
- goes4.get_goes4(latitude, longitude, api_key, PVLIB_EMAIL,
- names=names, interval=interval, leap_day=False,
- map_variables=False)
+ psm4.get_psm4(latitude, longitude, api_key, PVLIB_EMAIL,
+ names=names, interval=interval, leap_day=False,
+ map_variables=False)
# ensure the HTTPError caught isn't due to overuse of the API key
assert "OVER_RATE_LIMIT" not in str(excinfo.value)
@pytest.fixture
def io_input(request):
- """file-like object for parse_goes4"""
+ """file-like object for parse_psm4"""
with MANUAL_TEST_DATA.open() as f:
data = f.read()
obj = StringIO(data)
return obj
-def test_parse_goes4(io_input):
- """test parse_goes4"""
- data, metadata = goes4.parse_goes4(io_input, map_variables=False)
+def test_parse_psm4(io_input):
+ """test parse_psm4"""
+ data, metadata = psm4.parse_psm4(io_input, map_variables=False)
expected = pd.read_csv(YEAR_TEST_DATA)
- assert_goes4_equal(data, metadata, expected)
+ assert_psm4_equal(data, metadata, expected)
-def test_read_goes4():
- """test read_goes4"""
- data, metadata = goes4.read_goes4(MANUAL_TEST_DATA, map_variables=False)
+def test_read_psm4():
+ """test read_psm4"""
+ data, metadata = psm4.read_psm4(MANUAL_TEST_DATA, map_variables=False)
expected = pd.read_csv(YEAR_TEST_DATA)
- assert_goes4_equal(data, metadata, expected)
+ assert_psm4_equal(data, metadata, expected)
-def test_read_goes4_map_variables():
- """test read_goes4 map_variables=True"""
- data, metadata = goes4.read_goes4(MANUAL_TEST_DATA, map_variables=True)
+def test_read_psm4_map_variables():
+ """test read_psm4 map_variables=True"""
+ data, metadata = psm4.read_psm4(MANUAL_TEST_DATA, map_variables=True)
columns_mapped = ['Year', 'Month', 'Day', 'Hour', 'Minute', 'temp_air',
'alpha', 'aod', 'asymmetry', 'dhi_clear', 'dni_clear',
'ghi_clear', 'Cloud Fill Flag', 'Cloud Type',
@@ -181,13 +181,13 @@ def test_read_goes4_map_variables():
@pytest.mark.remote_data
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
-def test_get_goes4_attribute_mapping(nrel_api_key):
+def test_get_psm4_attribute_mapping(nrel_api_key):
"""Test that pvlib names can be passed in as attributes and get correctly
- reverse mapped to GOES4 names"""
- data, meta = goes4.get_goes4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names=2019, interval=60,
- attributes=['ghi', 'wind_speed'],
- leap_day=False, map_variables=True)
+ reverse mapped to psm4 names"""
+ data, meta = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
+ PVLIB_EMAIL, names=2019, interval=60,
+ attributes=['ghi', 'wind_speed'],
+ leap_day=False, map_variables=True)
# Check that columns are in the correct order (GH1647)
expected_columns = [
'Year', 'Month', 'Day', 'Hour', 'Minute', 'ghi', 'wind_speed']
From f5dec0ad4118a235555de70ea57333d66b213d9f Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Fri, 7 Feb 2025 20:47:02 -0600
Subject: [PATCH 12/19] fix some missed goes4 instances
---
pvlib/iotools/psm4.py | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/pvlib/iotools/psm4.py b/pvlib/iotools/psm4.py
index 35672c639e..9bce27b848 100644
--- a/pvlib/iotools/psm4.py
+++ b/pvlib/iotools/psm4.py
@@ -75,8 +75,8 @@ def get_psm4(latitude, longitude, api_key, email, names='tmy', interval=60,
affiliation=PVLIB_PYTHON, map_variables=True, url=None,
timeout=30):
"""
- Retrieve NSRDB PSM4 timeseries weather data from the GOES4 API. The NSRDB
- is described in [1]_ and the GOES4 API is described in [2]_, [3]_, and
+ Retrieve NSRDB PSM4 timeseries weather data from the PSM4 API. The NSRDB
+ is described in [1]_ and the PSM4 API is described in [2]_, [3]_, and
[4]_.
Parameters
@@ -91,8 +91,8 @@ def get_psm4(latitude, longitude, api_key, email, names='tmy', interval=60,
NREL API uses this to automatically communicate messages back
to the user only if necessary
names : str, default 'tmy'
- GOES4 API parameter specifing year (e.g. ``2020``) or TMY variant
- to download (e.g. ``'tmy'`` or ``'tgy-2022'``). The allowed values
+ PSM4 API parameter specifing year (e.g. ``2020``) or TMY variant to
+ download (e.g. ``'tmy'`` or ``'tgy-2022'``). The allowed values
update periodically, so consult the NSRDB references below for the
current set of options.
interval : int, {60, 5, 15, 30}
@@ -178,7 +178,7 @@ def get_psm4(latitude, longitude, api_key, email, names='tmy', interval=60,
# convert pvlib names in attributes to PSM4 convention
attributes = [REQUEST_VARIABLE_MAP.get(a, a) for a in attributes]
- # required query-string parameters for request to GOES4 API
+ # required query-string parameters for request to PSM4 API
params = {
'api_key': api_key,
'full_name': full_name,
@@ -215,10 +215,10 @@ def get_psm4(latitude, longitude, api_key, email, names='tmy', interval=60,
# the CSV is in the response content as a UTF-8 bytestring
# to use pandas we need to create a file buffer from the response
fbuf = io.StringIO(response.content.decode('utf-8'))
- return parse_goes4(fbuf, map_variables)
+ return parse_psm4(fbuf, map_variables)
-def parse_goes4(fbuf, map_variables=True):
+def parse_psm4(fbuf, map_variables=True):
"""
Parse an NSRDB PSM4 weather file (formatted as SAM CSV). The NSRDB
is described in [1]_ and the SAM CSV format is described in [2]_.
From c23ce24e683fc406123780b39ff89a75e14049b5 Mon Sep 17 00:00:00 2001
From: Will Holmgren
Date: Wed, 12 Feb 2025 09:32:58 -0700
Subject: [PATCH 13/19] init file goes4 --> psm4
---
pvlib/iotools/__init__.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pvlib/iotools/__init__.py b/pvlib/iotools/__init__.py
index c4d864f0a9..a43f929719 100644
--- a/pvlib/iotools/__init__.py
+++ b/pvlib/iotools/__init__.py
@@ -11,6 +11,9 @@
from pvlib.iotools.psm3 import get_psm3 # noqa: F401
from pvlib.iotools.psm3 import read_psm3 # noqa: F401
from pvlib.iotools.psm3 import parse_psm3 # noqa: F401
+from pvlib.iotools.psm4 import get_psm4 # noqa: F401
+from pvlib.iotools.psm4 import read_psm4 # noqa: F401
+from pvlib.iotools.psm4 import parse_psm4 # noqa: F401
from pvlib.iotools.pvgis import get_pvgis_tmy, read_pvgis_tmy # noqa: F401
from pvlib.iotools.pvgis import read_pvgis_hourly # noqa: F401
from pvlib.iotools.pvgis import get_pvgis_hourly # noqa: F401
@@ -34,6 +37,3 @@
from pvlib.iotools.solcast import get_solcast_historic # noqa: F401
from pvlib.iotools.solcast import get_solcast_tmy # noqa: F401
from pvlib.iotools.solargis import get_solargis # noqa: F401
-from pvlib.iotools.goes4 import get_goes4 # noqa: F401
-from pvlib.iotools.goes4 import read_goes4 # noqa: F401
-from pvlib.iotools.goes4 import parse_goes4 # noqa: F401
From c857047d342794263bd6f4ffe51f743b449a752c Mon Sep 17 00:00:00 2001
From: Will Holmgren
Date: Wed, 12 Feb 2025 09:55:07 -0700
Subject: [PATCH 14/19] use urljoin
---
pvlib/iotools/psm4.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/pvlib/iotools/psm4.py b/pvlib/iotools/psm4.py
index 9bce27b848..e346a45adb 100644
--- a/pvlib/iotools/psm4.py
+++ b/pvlib/iotools/psm4.py
@@ -5,18 +5,18 @@
"""
import io
+from urllib.parse import urljoin
import requests
import pandas as pd
from json import JSONDecodeError
-NSRDB_API_BASE = "https://developer.nrel.gov"
-API_STUB = "/api/nsrdb/v2/solar/"
+NSRDB_API_BASE = "https://developer.nrel.gov/api/nsrdb/v2/solar/"
GOES_ENDPOINT = "nsrdb-GOES-aggregated-v4-0-0-download.csv"
TMY_ENDPOINT = "nsrdb-GOES-tmy-v4-0-0-download.csv"
GOESCONUS_ENDPOINT = "nsrdb-GOES-conus-v4-0-0-download.csv"
-GOES_URL = NSRDB_API_BASE + API_STUB + GOES_ENDPOINT
-TMY_URL = NSRDB_API_BASE + API_STUB + TMY_ENDPOINT
-GOESCONUS_URL = NSRDB_API_BASE + API_STUB + GOESCONUS_ENDPOINT
+GOES_URL = urljoin(NSRDB_API_BASE, GOES_ENDPOINT)
+TMY_URL = urljoin(NSRDB_API_BASE, TMY_ENDPOINT)
+GOESCONUS_URL = urljoin(NSRDB_API_BASE, GOESCONUS_ENDPOINT)
ATTRIBUTES = (
'air_temperature', 'dew_point', 'dhi', 'dni', 'ghi', 'surface_albedo',
From c216255c6098503bbb7a4259c8c8af910b2957d0 Mon Sep 17 00:00:00 2001
From: Will Holmgren
Date: Wed, 12 Feb 2025 09:57:11 -0700
Subject: [PATCH 15/19] use str year in test
---
pvlib/tests/iotools/test_psm4.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pvlib/tests/iotools/test_psm4.py b/pvlib/tests/iotools/test_psm4.py
index a525e88d46..d6464451c8 100644
--- a/pvlib/tests/iotools/test_psm4.py
+++ b/pvlib/tests/iotools/test_psm4.py
@@ -185,7 +185,7 @@ def test_get_psm4_attribute_mapping(nrel_api_key):
"""Test that pvlib names can be passed in as attributes and get correctly
reverse mapped to psm4 names"""
data, meta = psm4.get_psm4(LATITUDE, LONGITUDE, nrel_api_key,
- PVLIB_EMAIL, names=2019, interval=60,
+ PVLIB_EMAIL, names='2019', interval=60,
attributes=['ghi', 'wind_speed'],
leap_day=False, map_variables=True)
# Check that columns are in the correct order (GH1647)
From 314489909a7905c463f556afc0a930e3434644c2 Mon Sep 17 00:00:00 2001
From: Will Holmgren
Date: Wed, 12 Feb 2025 09:59:09 -0700
Subject: [PATCH 16/19] remove versionchanged doc warning
---
pvlib/iotools/psm4.py | 5 -----
1 file changed, 5 deletions(-)
diff --git a/pvlib/iotools/psm4.py b/pvlib/iotools/psm4.py
index e346a45adb..f1a5eba7e3 100644
--- a/pvlib/iotools/psm4.py
+++ b/pvlib/iotools/psm4.py
@@ -356,11 +356,6 @@ def read_psm4(filename, map_variables=True):
Read an NSRDB PSM4 weather file (formatted as SAM CSV). The NSRDB
is described in [1]_ and the SAM CSV format is described in [2]_.
- .. versionchanged:: 0.9.0
- The function now returns a tuple where the first element is a dataframe
- and the second element is a dictionary containing metadata. Previous
- versions of this function had the return values switched.
-
Parameters
----------
filename: str
From 30bf1b15647452b4ed409e21b45d69aecc39920a Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 13 Feb 2025 12:45:43 -0600
Subject: [PATCH 17/19] fix function names in whatsnew
---
docs/sphinx/source/whatsnew/v0.11.3.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst
index 903b4ccc93..68eeabba13 100644
--- a/docs/sphinx/source/whatsnew/v0.11.3.rst
+++ b/docs/sphinx/source/whatsnew/v0.11.3.rst
@@ -12,7 +12,7 @@ Enhancements
~~~~~~~~~~~~
* Fix a bug in :py:func:`pvlib.bifacial.get_irradiance_poa` which may have yielded non-zero
ground irradiance when the sun was below the horizon. (:issue:`2245`, :pull:`2359`)
-* Add NREL NSRDB GOES v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_goes4`, :py:func:`~pvlib.iotools.read_goes4` and :py:func:`~pvlib.iotools.parse_goes4`. (:issue:`2326`, :pull:`2378`)
+* Add NREL NSRDB GOES v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_psm4`, :py:func:`~pvlib.iotools.read_psm4` and :py:func:`~pvlib.iotools.parse_psm4`. (:issue:`2326`, :pull:`2378`)
Documentation
~~~~~~~~~~~~~
From d75c5a0a9eeeb8a4ebbe35ee18e490c79bda6140 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 13 Feb 2025 12:46:39 -0600
Subject: [PATCH 18/19] another whatsnew fix
---
docs/sphinx/source/whatsnew/v0.11.3.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst
index 68eeabba13..81f4d1c24b 100644
--- a/docs/sphinx/source/whatsnew/v0.11.3.rst
+++ b/docs/sphinx/source/whatsnew/v0.11.3.rst
@@ -12,7 +12,7 @@ Enhancements
~~~~~~~~~~~~
* Fix a bug in :py:func:`pvlib.bifacial.get_irradiance_poa` which may have yielded non-zero
ground irradiance when the sun was below the horizon. (:issue:`2245`, :pull:`2359`)
-* Add NREL NSRDB GOES v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_psm4`, :py:func:`~pvlib.iotools.read_psm4` and :py:func:`~pvlib.iotools.parse_psm4`. (:issue:`2326`, :pull:`2378`)
+* Add NREL NSRDB PSM v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_psm4`, :py:func:`~pvlib.iotools.read_psm4` and :py:func:`~pvlib.iotools.parse_psm4`. (:issue:`2326`, :pull:`2378`)
Documentation
~~~~~~~~~~~~~
From 523877bc3ea345169b2e3fec5e2d07d0c16f0314 Mon Sep 17 00:00:00 2001
From: Will Hobbs <45701090+williamhobbs@users.noreply.github.com>
Date: Thu, 13 Feb 2025 16:11:28 -0600
Subject: [PATCH 19/19] update docs for API changes
---
docs/sphinx/source/reference/iotools.rst | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/sphinx/source/reference/iotools.rst b/docs/sphinx/source/reference/iotools.rst
index cc9cf5d7f3..b72afc8499 100644
--- a/docs/sphinx/source/reference/iotools.rst
+++ b/docs/sphinx/source/reference/iotools.rst
@@ -26,6 +26,9 @@ of sources and file formats relevant to solar energy modeling.
iotools.read_crn
iotools.read_solrad
iotools.get_solrad
+ iotools.get_psm4
+ iotools.read_psm4
+ iotools.parse_psm4
iotools.get_psm3
iotools.read_psm3
iotools.parse_psm3