diff --git a/.coveragerc b/.coveragerc
index 9e7e885ab3..350ed8ed41 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -1,2 +1,2 @@
[run]
-omit = pvlib/_version.py
\ No newline at end of file
+omit = pvlib/version.py
\ No newline at end of file
diff --git a/.gitattributes b/.gitattributes
index 1cce3a387a..bfeee5551e 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,4 +1,2 @@
-pvlib/version.py export-subst
-
# reduce the number of merge conflicts
docs/sphinx/source/whatsnew/* merge=union
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index f716995416..15a3856159 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -7,6 +7,6 @@
- [ ] Adds description and name entries in the appropriate "what's new" file in [`docs/sphinx/source/whatsnew`](https://github.com/pvlib/pvlib-python/tree/master/docs/sphinx/source/whatsnew) for all changes. Includes link to the GitHub Issue with `` :issue:`num` `` or this Pull Request with `` :pull:`num` ``. Includes contributor name and/or GitHub username (link with `` :ghuser:`user` ``).
- [ ] New code is fully documented. Includes [numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html) compliant docstrings, examples, and comments where necessary.
- [ ] Pull request is nearly complete and ready for detailed review.
- - [ ] Maintainer: Appropriate GitHub Labels and Milestone are assigned to the Pull Request and linked Issue.
+ - [ ] Maintainer: Appropriate GitHub Labels (including `remote-data`) and Milestone are assigned to the Pull Request and linked Issue.
diff --git a/.github/workflows/asv_check.yml b/.github/workflows/asv_check.yml
new file mode 100644
index 0000000000..db0f11f4da
--- /dev/null
+++ b/.github/workflows/asv_check.yml
@@ -0,0 +1,34 @@
+name: asv
+
+# CI ASV CHECK is aimed to verify that the benchmarks execute without error.
+on: [pull_request, push]
+
+jobs:
+ quick:
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ shell: bash -el {0}
+
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Install Python
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.9.7'
+
+ - name: Install asv
+ run: pip install asv==0.4.2
+
+ - name: Run asv benchmarks
+ run: |
+ cd benchmarks
+ asv machine --yes
+ asv run HEAD^! --quick --dry-run --show-stderr | sed "/failed$/ s/^/##[error]/" | tee benchmarks.log
+ if grep "failed" benchmarks.log > /dev/null ; then
+ exit 1
+ fi
+
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index e404ca7d5d..0363316ee3 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -1,11 +1,12 @@
name: Publish distributions to PyPI
-# if this workflow is modified to be a generic CI workflow then
-# add an if statement to the publish step so it only runs on tags.
on:
+ pull_request:
push:
+ branches:
+ - master
tags:
- - "v*"
+ - "v*"
jobs:
build-n-publish:
@@ -26,13 +27,15 @@ jobs:
- name: Install build tools
run: |
python -m pip install --upgrade pip
- python -m pip install --upgrade setuptools wheel
+ python -m pip install build
- name: Build packages
- run: python setup.py sdist bdist_wheel
+ run: python -m build
+ # only publish distribution to PyPI for tagged commits
- name: Publish distribution to PyPI
- uses: pypa/gh-action-pypi-publish@master
+ if: startsWith(github.ref, 'refs/tags/v')
+ uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}
\ No newline at end of file
diff --git a/.github/workflows/pytest-remote-data.yml b/.github/workflows/pytest-remote-data.yml
new file mode 100644
index 0000000000..347871658b
--- /dev/null
+++ b/.github/workflows/pytest-remote-data.yml
@@ -0,0 +1,111 @@
+# A secondary test job that only runs the iotools tests if explicitly requested
+# (for pull requests) or on a push to the master branch.
+# Because the iotools tests require GitHub secrets, we need to be careful about
+# malicious PRs accessing the secrets and exposing them externally.
+#
+# We prevent this by only running this workflow when a maintainer has looked
+# over the PR's diff and verified that nothing malicious seems to be going on.
+# The maintainer then adds the "remote-data" label to the PR, which will then
+# trigger this workflow via the combination of the "on: ... types:"
+# and "if:" sections below. The first restricts the workflow to only run when
+# a label is added to the PR and the second requires one of the PR's labels
+# is the "remote-data" label. Technically this is slightly different from
+# triggering when the "remote-data" label is added, since it will also trigger
+# when "remote-data" is added, then later some other label is added. Maybe
+# there's a better way to do this.
+#
+# But wait, you say! Can't a malicious PR get around this by modifying
+# this workflow file and removing the label requirement? I think the answer
+# is "no" as long as we trigger the workflow on "pull_request_target" instead
+# of the usual "pull_request". The difference is what context the workflow
+# runs inside: "pull_request" runs in the context of the fork, where changes
+# to the workflow definition will take immediate effect, while "pull_request_target"
+# runs in the context of the main pvlib repository, where the original (non-fork)
+# workflow definition is used instead. Of course by switching away from the fork's
+# context to keep our original workflow definitions, we're also keeping all the
+# original code, so the tests won't be run against the PR's new code. To fix this
+# we explicitly check out the PR's code as the first step of the workflow.
+# This allows the job to run modified pvlib & pytest code, but only ever via
+# the original workflow file.
+# So long as a maintainer always verifies that the PR's code is not malicious prior to
+# adding the label and triggering this workflow, I think this should not present
+# a security risk.
+#
+# Note that this workflow can be triggered again by removing and re-adding the
+# "remote-data" label to the PR.
+#
+# Note also that "pull_request_target" is also the only way for the secrets
+# to be accessible in the first place.
+#
+# Further reading:
+# - https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
+# - https://github.community/t/can-workflow-changes-be-used-with-pull-request-target/178626/7
+
+name: pytest-remote-data
+
+on:
+ pull_request_target:
+ types: [labeled]
+ push:
+ branches:
+ - master
+
+jobs:
+ test:
+
+ strategy:
+ fail-fast: false # don't cancel other matrix jobs when one fails
+ matrix:
+ python-version: [3.7, 3.8, 3.9, "3.10"]
+ suffix: [''] # the alternative to "-min"
+ include:
+ - python-version: 3.7
+ suffix: -min
+
+ runs-on: ubuntu-latest
+ if: (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'remote-data')) || (github.event_name == 'push')
+
+ steps:
+ - uses: actions/checkout@v3
+ if: github.event_name == 'pull_request_target'
+ # pull_request_target runs in the context of the target branch (pvlib/master),
+ # but what we need is the hypothetical merge commit from the PR:
+ with:
+ ref: "refs/pull/${{ github.event.number }}/merge"
+
+ - uses: actions/checkout@v2
+ if: github.event_name == 'push'
+
+ - name: Set up conda environment
+ uses: conda-incubator/setup-miniconda@v2
+ with:
+ activate-environment: test_env
+ environment-file: ${{ env.REQUIREMENTS }}
+ python-version: ${{ matrix.python-version }}
+ auto-activate-base: false
+ env:
+ # build requirement filename. First replacement is for the python
+ # version, second is to add "-min" if needed
+ REQUIREMENTS: ci/requirements-py${{ matrix.python-version }}${{ matrix.suffix }}.yml
+
+ - name: List installed package versions
+ shell: bash -l {0} # necessary for conda env to be active
+ run: conda list
+
+ - name: Run tests
+ shell: bash -l {0} # necessary for conda env to be active
+ env:
+ # copy GitHub Secrets into environment variables for the tests to access
+ NREL_API_KEY: ${{ secrets.NRELAPIKEY }}
+ SOLARANYWHERE_API_KEY: ${{ secrets.SOLARANYWHERE_API_KEY }}
+ BSRN_FTP_USERNAME: ${{ secrets.BSRN_FTP_USERNAME }}
+ BSRN_FTP_PASSWORD: ${{ secrets.BSRN_FTP_PASSWORD }}
+ run: pytest pvlib/tests/iotools pvlib/tests/test_forecast.py --cov=./ --cov-report=xml --remote-data
+
+ - name: Upload coverage to Codecov
+ if: matrix.python-version == 3.7 && matrix.suffix == ''
+ uses: codecov/codecov-action@v2
+ with:
+ fail_ci_if_error: true
+ verbose: true
+ flags: remote-data # flags are configured in codecov.yml
diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml
new file mode 100644
index 0000000000..79e345baff
--- /dev/null
+++ b/.github/workflows/pytest.yml
@@ -0,0 +1,88 @@
+name: pytest
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+
+jobs:
+ test:
+ strategy:
+ fail-fast: false # don't cancel other matrix jobs when one fails
+ matrix:
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ python-version: [3.7, 3.8, 3.9, "3.10"]
+ environment-type: [conda, bare]
+ suffix: [''] # placeholder as an alternative to "-min"
+ include:
+ - os: ubuntu-latest
+ python-version: 3.7
+ environment-type: conda
+ suffix: -min
+ exclude:
+ - os: macos-latest
+ environment-type: conda
+ - os: windows-latest
+ environment-type: bare
+
+ runs-on: ${{ matrix.os }}
+
+ steps:
+ # We check out only a limited depth and then pull tags to save time
+ - name: Checkout source
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 100
+
+ - name: Get tags
+ run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
+
+ - name: Install Conda environment with Micromamba
+ if: matrix.environment-type == 'conda'
+ uses: mamba-org/provision-with-micromamba@v12
+ with:
+ environment-file: ${{ env.REQUIREMENTS }}
+ cache-downloads: true
+ extra-specs: |
+ python=${{ matrix.python-version }}
+ env:
+ # build requirement filename. First replacement is for the python
+ # version, second is to add "-min" if needed
+ REQUIREMENTS: ci/requirements-py${{ matrix.python-version }}${{ matrix.suffix }}.yml
+
+ - name: List installed package versions (conda)
+ if: matrix.environment-type == 'conda'
+ shell: bash -l {0} # necessary for conda env to be active
+ run: micromamba list
+
+ - name: Install bare Python ${{ matrix.python-version }}${{ matrix.suffix }}
+ if: matrix.environment-type == 'bare'
+ uses: actions/setup-python@v1
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install pvlib
+ if: matrix.environment-type == 'conda'
+ shell: bash -l {0}
+ run: python -m pip install --no-deps .
+
+ - name: Set up bare environment
+ if: matrix.environment-type == 'bare'
+ run: |
+ pip install .[test]
+ pip freeze
+
+ - name: Run tests
+ shell: bash -l {0} # necessary for conda env to be active
+ run: |
+ # ignore iotools & forecast; those tests are run in a separate workflow
+ pytest pvlib --cov=./ --cov-report=xml --ignore=pvlib/tests/iotools --ignore=pvlib/tests/test_forecast.py
+
+ - name: Upload coverage to Codecov
+ if: matrix.python-version == 3.7 && matrix.suffix == '' && matrix.os == 'ubuntu-latest' && matrix.environment-type == 'conda'
+ uses: codecov/codecov-action@v2
+ with:
+ fail_ci_if_error: true
+ verbose: true
+ flags: core # flags are configured in codecov.yml
diff --git a/.landscape.yml b/.landscape.yml
deleted file mode 100644
index 2a56757274..0000000000
--- a/.landscape.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-doc-warnings: yes
-test-warnings: yes
-strictness: medium
-max-line-length: 79
-autodetect: yes
-ignore-paths:
- - ci
- - docs
-pep257:
- disable:
- - D202
diff --git a/.lgtm.yml b/.lgtm.yml
index 33aaa106e9..701c795978 100644
--- a/.lgtm.yml
+++ b/.lgtm.yml
@@ -1,6 +1,3 @@
path_classifiers:
- generated:
- - pvlib/_version.py
library:
- - versioneer.py
- pvlib/_deprecation.py
\ No newline at end of file
diff --git a/.stickler.yml b/.stickler.yml
index dc360a6a7b..1ddf168f37 100644
--- a/.stickler.yml
+++ b/.stickler.yml
@@ -5,4 +5,4 @@ linters:
ignore: E201,E241,E226,W503,W504
files:
ignore:
- - 'pvlib/_version.py'
+ - 'pvlib/version.py'
diff --git a/MANIFEST.in b/MANIFEST.in
index 8cf60a428a..d907e04a7b 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,20 +1,7 @@
-include MANIFEST.in
-include AUTHORS.md
-include LICENSE
-include README.md
-include setup.py
-
-# include most everything under pvlib by default
-# better to package too much than not enough
-graft pvlib
-
-# we included pvlib files needed to compile NREL SPA code in graft above,
-# now we exclude the NREL code itself to comply with their license
global-exclude */spa.c
global-exclude */spa.h
prune pvlib/spa_c_files/build
-graft docs
prune docs/sphinx/build
prune docs/sphinx/source/generated
# all doc figures created by doc build
@@ -31,5 +18,14 @@ global-exclude .git*
global-exclude \#*
global-exclude .ipynb_checkpoints
-include versioneer.py
-include pvlib/_version.py
\ No newline at end of file
+exclude .coveragerc
+exclude .lgtm.yml
+exclude .stickler.yml
+exclude codecov.yml
+exclude readthedocs.yml
+exclude CODE_OF_CONDUCT.md
+
+prune paper
+prune .github
+prune benchmarks
+prune ci
diff --git a/README.md b/README.md
index 211eb7ff95..88c132673a 100644
--- a/README.md
+++ b/README.md
@@ -28,8 +28,11 @@
-
-
+
+
+
+
+
@@ -44,17 +47,6 @@
-
| Benchmarks |
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index dc048dd04a..0000000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-# https://docs.microsoft.com/azure/devops/pipelines/languages/python
-
-trigger:
-- master
-
-
-jobs:
-
-- template: ci/azure/posix.yml
- parameters:
- name: Test_bare_Linux
- vmImage: ubuntu-20.04
-
-
-- template: ci/azure/posix.yml
- parameters:
- name: Test_bare_macOS
- vmImage: macOS-10.15
-
-
-- template: ci/azure/conda_linux.yml
- parameters:
- name: Test_conda_linux
- vmImage: ubuntu-20.04
-
-
-- template: ci/azure/conda_windows.yml
- parameters:
- name: Test_conda_windows
- vmImage: windows-latest
-
-
-- job: 'Publish'
- dependsOn: 'Test_conda_linux'
- pool:
- vmImage: 'ubuntu-latest'
-
- steps:
- - task: UsePythonVersion@0
- inputs:
- versionSpec: '3.x'
- architecture: 'x64'
-
- - script: python setup.py sdist
- displayName: 'Build sdist'
diff --git a/benchmarks/asv.conf.json b/benchmarks/asv.conf.json
index 79773e928f..16e66ab8a1 100644
--- a/benchmarks/asv.conf.json
+++ b/benchmarks/asv.conf.json
@@ -114,7 +114,7 @@
"include": [
// minimum supported versions
{
- "python": "3.6",
+ "python": "3.7",
"numpy": "1.16.0",
"pandas": "0.25.0",
"scipy": "1.2.0",
diff --git a/benchmarks/benchmarks/scaling.py b/benchmarks/benchmarks/scaling.py
new file mode 100644
index 0000000000..8c2ed1471b
--- /dev/null
+++ b/benchmarks/benchmarks/scaling.py
@@ -0,0 +1,37 @@
+"""
+ASV benchmarks for scaling.py
+"""
+
+import pandas as pd
+from pvlib import scaling
+import numpy as np
+
+
+class Scaling:
+
+ def setup(self):
+ self.n = 1000
+ lat = np.array((9.99, 10, 10.01))
+ lon = np.array((4.99, 5, 5.01))
+ self.coordinates = np.array([(lati, loni) for
+ (lati, loni) in zip(lat, lon)])
+ self.times = pd.date_range('2019-01-01', freq='1T', periods=self.n)
+ self.positions = np.array([[0, 0], [100, 0], [100, 100], [0, 100]])
+ self.clearsky_index = pd.Series(np.random.rand(self.n),
+ index=self.times)
+ self.cloud_speed = 5
+ self.tmscales = np.array((1, 2, 4, 8, 16, 32, 64,
+ 128, 256, 512, 1024, 2048, 4096))
+
+ def time_latlon_to_xy(self):
+ scaling.latlon_to_xy(self.coordinates)
+
+ def time__compute_wavelet(self):
+ scaling._compute_wavelet(self.clearsky_index, dt=1)
+
+ def time__compute_vr(self):
+ scaling._compute_vr(self.positions, self.cloud_speed, self.tmscales)
+
+ def time_wvm(self):
+ scaling.wvm(self.clearsky_index, self.positions,
+ self.cloud_speed, dt=1)
diff --git a/ci/azure/conda_linux.yml b/ci/azure/conda_linux.yml
deleted file mode 100644
index 3bf8215cc4..0000000000
--- a/ci/azure/conda_linux.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-parameters:
- name: ''
- vmImage: ''
-
-jobs:
-- job: ${{ parameters.name }}
- pool:
- vmImage: ${{ parameters.vmImage }}
- strategy:
- matrix:
- Python36-min:
- python.version: '36'
- suffix: '-min'
- Python36:
- python.version: '36'
- coverage: true
- Python37:
- python.version: '37'
- Python38:
- python.version: '38'
- Python39:
- python.version: '39'
-
- steps:
- - bash: echo "##vso[task.prependpath]/usr/share/miniconda/bin"
- displayName: Add conda to PATH
- - script: conda env create --quiet --file ci/requirements-py$(python.version)$(suffix).yml
- displayName: Create Anaconda environment
- - script: |
- source activate test_env
- pip install pytest-azurepipelines
- pip install -e .
- displayName: 'pip dependencies'
- - script: |
- source activate test_env
- conda list
- displayName: 'List installed dependencies'
- - script: |
- source activate test_env
- export NREL_API_KEY=$(nrelApiKey)
- export BSRN_FTP_USERNAME=$(BSRN_FTP_USERNAME)
- export BSRN_FTP_PASSWORD=$(BSRN_FTP_PASSWORD)
- pytest pvlib --remote-data --junitxml=junit/test-results.xml --cov --cov-report=xml --cov-report=html
- displayName: 'pytest'
- - task: PublishTestResults@2
- inputs:
- testResultsFiles: '**/test-results.xml'
- testRunTitle: 'Linux $(python.version)'
- - task: PublishCodeCoverageResults@1
- inputs:
- codeCoverageTool: Cobertura
- summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
- reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
- condition: eq(variables['coverage'], true)
- - script: |
- bash <(curl https://codecov.io/bash) -t bbc2bdbe-5e67-4fef-9cb7-f52fe0b703a8 -f coverage.xml -F adder -F subtractor -F conda
- displayName: 'codecov'
- condition: eq(variables['coverage'], true)
diff --git a/ci/azure/conda_windows.yml b/ci/azure/conda_windows.yml
deleted file mode 100644
index 4b8cf61911..0000000000
--- a/ci/azure/conda_windows.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-parameters:
- name: ''
- vmImage: ''
-
-jobs:
-- job: ${{ parameters.name }}
- pool:
- vmImage: ${{ parameters.vmImage }}
- strategy:
- matrix:
- Python36-windows:
- python.version: '36'
- Python37-windows:
- python.version: '37'
- Python38-windows:
- python.version: '38'
- Python39-windows:
- python.version: '39'
-
- steps:
- - powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
- displayName: Add conda to PATH
- - script: conda env create --quiet --file ci/requirements-py$(python.version).yml
- displayName: Create Anaconda environment
- - script: |
- call activate test_env
- pip install pytest-azurepipelines
- pip install -e .
- displayName: 'pip dependencies'
- - script: |
- call activate test_env
- conda list
- displayName: 'List installed dependencies'
- - script: |
- call activate test_env
- pytest pvlib --junitxml=junit/test-results.xml
- displayName: 'pytest'
- - task: PublishTestResults@2
- inputs:
- testResultsFiles: '**/test-results.xml'
- testRunTitle: 'Windows $(python.version)'
diff --git a/ci/azure/posix.yml b/ci/azure/posix.yml
deleted file mode 100644
index 086f03dd69..0000000000
--- a/ci/azure/posix.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-parameters:
- name: ''
- vmImage: ''
-
-jobs:
-- job: ${{ parameters.name }}
- pool:
- vmImage: ${{ parameters.vmImage }}
- strategy:
- matrix:
- Python36:
- python.version: '3.6'
- Python37:
- python.version: '3.7'
- Python38:
- python.version: '3.8'
- Python39:
- python.version: '3.9'
-
- steps:
- - task: UsePythonVersion@0
- inputs:
- versionSpec: '$(python.version)'
-
- - script: |
- pip install pytest pytest-cov pytest-mock requests-mock pytest-timeout pytest-azurepipelines pytest-rerunfailures pytest-remotedata
- pip install -e .
- pytest pvlib --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
- displayName: 'Test with pytest'
-
- - task: PublishTestResults@2
- condition: succeededOrFailed()
- inputs:
- testResultsFiles: '**/test-*.xml'
- testRunTitle: 'Publish test results for Python $(python.version)'
-
- - task: PublishCodeCoverageResults@1
- inputs:
- codeCoverageTool: Cobertura
- summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
- reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
diff --git a/ci/requirements-py36.yml b/ci/requirements-py3.10.yml
similarity index 67%
rename from ci/requirements-py36.yml
rename to ci/requirements-py3.10.yml
index 596a2e0bbd..c7e5248230 100644
--- a/ci/requirements-py36.yml
+++ b/ci/requirements-py3.10.yml
@@ -7,9 +7,9 @@ dependencies:
- cython
- ephem
- h5py
- - netcdf4
+ # - netcdf4 # pulls in a different version of numpy with ImportError
- nose
- - numba
+ # - numba # python 3.9 compat in early 2021
- numpy >= 1.16.0
- pandas >= 0.25.0
- pip
@@ -17,17 +17,16 @@ dependencies:
- pytest-cov
- pytest-mock
- requests-mock
+ - pytest-timeout
- pytest-rerunfailures
- pytest-remotedata
- - pytest-timeout
- - python=3.6
+ - python=3.10
- pytz
- requests
- scipy >= 1.2.0
- shapely # pvfactors dependency
- - siphon # conda-forge
+ # - siphon # conda-forge
- statsmodels
- pip:
- - dataclasses
- - nrel-pysam>=2.0
+ # - nrel-pysam>=2.0 # install error on windows
- pvfactors==1.4.1
diff --git a/ci/requirements-py36-min.yml b/ci/requirements-py3.7-min.yml
similarity index 96%
rename from ci/requirements-py36-min.yml
rename to ci/requirements-py3.7-min.yml
index dfff0a9f97..d93d0b2bd3 100644
--- a/ci/requirements-py36-min.yml
+++ b/ci/requirements-py3.7-min.yml
@@ -9,7 +9,7 @@ dependencies:
- pytest-cov
- pytest-mock
- pytest-timeout
- - python=3.6
+ - python=3.7
- pytz
- requests
- pip:
diff --git a/ci/requirements-py37.yml b/ci/requirements-py3.7.yml
similarity index 100%
rename from ci/requirements-py37.yml
rename to ci/requirements-py3.7.yml
diff --git a/ci/requirements-py38.yml b/ci/requirements-py3.8.yml
similarity index 100%
rename from ci/requirements-py38.yml
rename to ci/requirements-py3.8.yml
diff --git a/ci/requirements-py39.yml b/ci/requirements-py3.9.yml
similarity index 100%
rename from ci/requirements-py39.yml
rename to ci/requirements-py3.9.yml
diff --git a/codecov.yml b/codecov.yml
index dbcb6f075f..c407f28d16 100644
--- a/codecov.yml
+++ b/codecov.yml
@@ -2,26 +2,68 @@ codecov:
notify:
require_ci_to_pass: no
+# "flags" are used to identify subsets of the overall codebase when calculating coverage.
+# Currently used for "remote_data" (pvlib.iotools & forecast) and "core" (everything else).
+# Because we only run the remote_data tests sometimes, we need to split it out so that
+# codecov doesn't report a big drop in coverage when we don't run them.
+# We also use "carryforward: true" so that, when we don't run remote_data tests, the last
+# known coverage is carried forward and used in place of the missing coverage.
+# https://docs.codecov.com/docs/flags
+flags:
+
+ core:
+ paths:
+ - pvlib/
+ - '!pvlib/iotools/'
+ - '!pvlib/tests/iotools/'
+ - '!pvlib/forecast.py'
+ - '!pvlib/tests/test_forecast.py'
+ carryforward: false
+
+ remote-data:
+ paths:
+ - pvlib/iotools/
+ - pvlib/tests/iotools
+ - pvlib/forecast.py
+ - pvlib/tests/test_forecast.py
+ carryforward: true # if not run, use coverage from previous commit
+
+
coverage:
- status:
+ status: # each entry here represents a check status to report to GitHub
patch:
default:
target: 100%
- if_no_uploads: error
- if_not_found: success
- if_ci_failed: failure
+
project:
- default: false
- library:
+ default: off
+
+ core:
target: auto
- if_no_uploads: error
- if_not_found: success
- if_ci_failed: failure
+ flags:
+ - core
+
+ remote-data:
+ target: auto
+ flags:
+ - remote-data
+
+ tests-core:
+ target: 95%
paths:
- - "pvlib/.*"
- tests:
+ - 'pvlib/tests/.*'
+ - '!pvlib/tests/iotools/.*'
+ - '!pvlib/tests/test_forecast.py'
+ flags:
+ - core
+
+ tests-remote-data:
target: 95%
paths:
- - "pvlib/tests/.*"
+ - 'pvlib/tests/iotools/.*'
+ - 'pvlib/tests/test_forecast.py'
+ flags:
+ - remote-data
+
comment: off
diff --git a/docs/examples/bifacial/plot_pvfactors_fixed_tilt.py b/docs/examples/bifacial/plot_pvfactors_fixed_tilt.py
new file mode 100644
index 0000000000..5525c49453
--- /dev/null
+++ b/docs/examples/bifacial/plot_pvfactors_fixed_tilt.py
@@ -0,0 +1,68 @@
+"""
+Fixed-Tilt Simulation with pvfactors
+====================================
+
+Modeling the irradiance on the rear side of a fixed-tilt array.
+"""
+
+# %%
+# Because pvfactors was originally designed for modeling single-axis
+# tracking systems, it's not necessarily obvious how to use it to model
+# fixed-tilt systems correctly.
+# This example shows how to model rear-side irradiance on a fixed-tilt
+# array using :py:func:`pvlib.bifacial.pvfactors.pvfactors_timeseries`.
+
+import pandas as pd
+from pvlib import location
+from pvlib.bifacial.pvfactors import pvfactors_timeseries
+import matplotlib.pyplot as plt
+import warnings
+
+# supressing shapely warnings that occur on import of pvfactors
+warnings.filterwarnings(action='ignore', module='pvfactors')
+
+# %%
+# First, generate the usual modeling inputs:
+
+times = pd.date_range('2021-06-21', '2021-06-22', freq='1T', tz='Etc/GMT+5')
+loc = location.Location(latitude=40, longitude=-80, tz=times.tz)
+sp = loc.get_solarposition(times)
+cs = loc.get_clearsky(times)
+
+# example array geometry
+pvrow_height = 1
+pvrow_width = 4
+pitch = 10
+gcr = pvrow_width / pitch
+axis_azimuth = 180
+albedo = 0.2
+
+# %%
+# Now the trick: since pvfactors only wants to model single-axis tracking
+# arrays, we have to pretend our fixed tilt array is a single-axis tracking
+# array that never rotates. In that case, the "axis of rotation" is
+# along the length of the row, with ``axis_azimuth`` 90 degrees offset from the
+# fixed ``surface_azimuth``.
+
+irrad = pvfactors_timeseries(
+ solar_azimuth=sp['azimuth'],
+ solar_zenith=sp['apparent_zenith'],
+ surface_azimuth=180, # south-facing array
+ surface_tilt=20,
+ axis_azimuth=90, # 90 degrees off from surface_azimuth. 270 is ok too
+ timestamps=times,
+ dni=cs['dni'],
+ dhi=cs['dhi'],
+ gcr=gcr,
+ pvrow_height=pvrow_height,
+ pvrow_width=pvrow_width,
+ albedo=albedo,
+ n_pvrows=3,
+ index_observed_pvrow=1
+)
+
+# turn into pandas DataFrame
+irrad = pd.concat(irrad, axis=1)
+
+irrad[['total_inc_back', 'total_abs_back']].plot()
+plt.ylabel('Irradiance [W m$^{-2}$]')
diff --git a/docs/examples/solar-position/plot_sunpath_diagrams.py b/docs/examples/solar-position/plot_sunpath_diagrams.py
index 2b36b7e6b4..618d5f9792 100644
--- a/docs/examples/solar-position/plot_sunpath_diagrams.py
+++ b/docs/examples/solar-position/plot_sunpath_diagrams.py
@@ -24,8 +24,7 @@
tz = 'Asia/Calcutta'
lat, lon = 28.6, 77.2
-times = pd.date_range('2019-01-01 00:00:00', '2020-01-01', closed='left',
- freq='H', tz=tz)
+times = pd.date_range('2019-01-01 00:00:00', '2020-01-01', freq='H', tz=tz)
solpos = solarposition.get_solarposition(times, lat, lon)
# remove nighttime
solpos = solpos.loc[solpos['apparent_elevation'] > 0, :]
diff --git a/docs/examples/solar-tracking/plot_single_axis_tracking.py b/docs/examples/solar-tracking/plot_single_axis_tracking.py
index cd318b61d6..80ed800be6 100644
--- a/docs/examples/solar-tracking/plot_single_axis_tracking.py
+++ b/docs/examples/solar-tracking/plot_single_axis_tracking.py
@@ -27,7 +27,7 @@
tz = 'US/Eastern'
lat, lon = 40, -80
-times = pd.date_range('2019-01-01', '2019-01-02', closed='left', freq='5min',
+times = pd.date_range('2019-01-01', '2019-01-02', freq='5min',
tz=tz)
solpos = solarposition.get_solarposition(times, lat, lon)
diff --git a/docs/examples/solar-tracking/plot_single_axis_tracking_on_sloped_terrain.py b/docs/examples/solar-tracking/plot_single_axis_tracking_on_sloped_terrain.py
index 66a30c60d2..979007efa1 100644
--- a/docs/examples/solar-tracking/plot_single_axis_tracking_on_sloped_terrain.py
+++ b/docs/examples/solar-tracking/plot_single_axis_tracking_on_sloped_terrain.py
@@ -91,8 +91,8 @@
gcr = 0.4
# calculate the solar position
-times = pd.date_range('2019-01-01 06:00', '2019-01-01 18:00', closed='left',
- freq='1min', tz=tz)
+times = pd.date_range('2019-01-01 06:00', '2019-01-01 18:00', freq='1min',
+ tz=tz)
solpos = solarposition.get_solarposition(times, lat, lon)
# compare the backtracking angle at various terrain slopes
diff --git a/docs/sphinx/source/reference/effects_on_pv_system_output.rst b/docs/sphinx/source/reference/effects_on_pv_system_output.rst
index 92efa946b4..6144df2802 100644
--- a/docs/sphinx/source/reference/effects_on_pv_system_output.rst
+++ b/docs/sphinx/source/reference/effects_on_pv_system_output.rst
@@ -21,6 +21,7 @@ Snow
snow.coverage_nrel
snow.fully_covered_nrel
snow.dc_loss_nrel
+ snow.loss_townsend
Soiling
-------
@@ -48,3 +49,6 @@ Spectrum
:toctree: generated/
spectrum.spectrl2
+ spectrum.get_example_spectral_response
+ spectrum.get_am15g
+ spectrum.calc_spectral_mismatch_field
diff --git a/docs/sphinx/source/reference/index.rst b/docs/sphinx/source/reference/index.rst
index 0f1902325a..b96ca4114f 100644
--- a/docs/sphinx/source/reference/index.rst
+++ b/docs/sphinx/source/reference/index.rst
@@ -20,3 +20,4 @@ API reference
modelchain
bifacial
scaling
+ location
diff --git a/docs/sphinx/source/reference/irradiance.rst b/docs/sphinx/source/reference/irradiance.rst
index e0a5777533..ad3da96eab 100644
--- a/docs/sphinx/source/reference/irradiance.rst
+++ b/docs/sphinx/source/reference/irradiance.rst
@@ -28,6 +28,7 @@ Decomposing and combining irradiance
irradiance.poa_components
irradiance.get_ground_diffuse
irradiance.dni
+ irradiance.complete_irradiance
Transposition models
--------------------
diff --git a/docs/sphinx/source/reference/location.rst b/docs/sphinx/source/reference/location.rst
new file mode 100644
index 0000000000..28ef46812a
--- /dev/null
+++ b/docs/sphinx/source/reference/location.rst
@@ -0,0 +1,11 @@
+.. currentmodule:: pvlib
+
+Location
+========
+
+Methods for information about locations.
+
+.. autosummary::
+ :toctree: generated/
+
+ location.lookup_altitude
diff --git a/docs/sphinx/source/reference/pv_modeling.rst b/docs/sphinx/source/reference/pv_modeling.rst
index d1ae5a6559..31c380c1bb 100644
--- a/docs/sphinx/source/reference/pv_modeling.rst
+++ b/docs/sphinx/source/reference/pv_modeling.rst
@@ -45,6 +45,8 @@ PV temperature models
temperature.noct_sam
temperature.prilliman
pvsystem.PVSystem.get_cell_temperature
+ temperature.generic_linear
+ temperature.GenericLinearModel
Temperature Model Parameters
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/docs/sphinx/source/reference/tracking.rst b/docs/sphinx/source/reference/tracking.rst
index 7f2599b6a0..f4bbcc9aa9 100644
--- a/docs/sphinx/source/reference/tracking.rst
+++ b/docs/sphinx/source/reference/tracking.rst
@@ -25,3 +25,4 @@ Functions
tracking.singleaxis
tracking.calc_axis_tilt
tracking.calc_cross_axis_tilt
+ tracking.calc_surface_orientation
diff --git a/docs/sphinx/source/whatsnew.rst b/docs/sphinx/source/whatsnew.rst
index 4219f9c3cb..4830371985 100644
--- a/docs/sphinx/source/whatsnew.rst
+++ b/docs/sphinx/source/whatsnew.rst
@@ -6,6 +6,8 @@ What's New
These are new features and improvements of note in each release.
+.. include:: whatsnew/v0.9.3.rst
+.. include:: whatsnew/v0.9.2.rst
.. include:: whatsnew/v0.9.1.rst
.. include:: whatsnew/v0.9.0.rst
.. include:: whatsnew/v0.8.1.rst
diff --git a/docs/sphinx/source/whatsnew/v0.9.2.rst b/docs/sphinx/source/whatsnew/v0.9.2.rst
index d6bce8a5ac..d8221e48db 100644
--- a/docs/sphinx/source/whatsnew/v0.9.2.rst
+++ b/docs/sphinx/source/whatsnew/v0.9.2.rst
@@ -1,39 +1,85 @@
.. _whatsnew_0920:
-v0.9.2 (TBD)
------------------------
-
-Deprecations
-~~~~~~~~~~~~
+v0.9.2 (August 19, 2022)
+------------------------
Enhancements
~~~~~~~~~~~~
+* albedo can now be provided as a column in the `weather` DataFrame input to
+ :py:meth:`pvlib.modelchain.ModelChain.run_model`. (:issue:`1387`, :pull:`1478`)
+* albedo is now available as an input to :py:meth:`pvlib.pvsystem.PVSystem.get_irradiance`
+ and :py:meth:`pvlib.pvsystem.Array.get_irradiance`. (:pull:`1478`)
+* :py:func:`pvlib.iotools.read_surfrad` now also accepts remote files
+ with https links in addition to files on the SURFRAD FTP server.
+ (:pull:`1459`)
+* Add :py:func:`pvlib.tracking.calc_surface_orientation` for calculating
+ single-axis tracker ``surface_tilt`` and ``surface_azimuth`` from
+ rotation angles. (:issue:`1471`, :pull:`1480`)
+* Improve error message about uneven time intervals for
+ :py:func:`~pvlib.clearsky.detect_clearsky` and :py:func:`~pvlib.temperature.prilliman`.
+ (:issue:`1476`, :pull:`1490`)
+* Add support for `PEP517 `_ & `PEP518 `_
+ with setuptools build backend. (:pull:`1495`)
+
Bug fixes
~~~~~~~~~
* :py:func:`pvlib.irradiance.get_total_irradiance` and
:py:func:`pvlib.solarposition.spa_python` now raise an error instead
- of silently ignoring unknown parameters (:pull:`1437`)
+ of silently ignoring unknown parameters. (:pull:`1437`)
* Fix a bug in :py:func:`pvlib.solarposition.sun_rise_set_transit_ephem`
where passing localized timezones with large UTC offsets could return
- rise/set/transit times for the wrong day in recent versions of ``ephem``
+ rise/set/transit times for the wrong day in recent versions of ``ephem``.
(:issue:`1449`, :pull:`1448`)
-
+* :py:func:`pvlib.iotools.read_tmy3` is now able to accept midnight
+ timestamps as either 24:00 (which is the standard) as well as 00:00.
+ Previously 00:00 timestamps would incorrectly be moved one day forward.
+ (:pull:`1494`)
+* :py:func:`pvlib.iotools.get_psm3` now raises a deprecation warning if
+ the ``leap_day`` parameter is not specified in a single-year request.
+ Starting in pvlib 0.11.0 ``leap_day`` will default to True instead of False.
+ (:issue:`1481`, :pull:`1511`)
Testing
~~~~~~~
+* Switched CI testing provider from Azure to GitHub Actions. (:pull:`1306`)
+* Speed up CI setup using micromamba instead of conda. (:pull:`1493`)
+* Drop python 3.6 (reached end of life Dec 2021) and add 3.10 to test matrix. (:pull:`1507`)
Documentation
~~~~~~~~~~~~~
+* Added a reference to :py:func:`pvlib.inverter.sandia_multi`. (:pull:`1479`)
+* Add gallery example of simulating rearside irradiance for a fixed-tilt
+ array with pvfactors. (:pull:`1470`)
+* Updated reference links to CAMS Radiation. (:issue:`1515`, :pull:`1529`)
Benchmarking
~~~~~~~~~~~~~
* Updated version of numba in asv.conf from 0.36.1 to 0.40.0 to solve numba/numpy conflict. (:issue:`1439`, :pull:`1440`)
+* Added benchmarks for the ``pvlib.scaling`` module. (:pull:`1445`)
+* Added a basic CI asv check. (:issue:`1446`, :pull:`1454`)
Requirements
~~~~~~~~~~~~
+* Python 3.7 or greater. (:pull:`1507`)
* Minimum pandas version increased to v0.25.0, released July 18, 2019. (:pull:`1448`)
Contributors
~~~~~~~~~~~~
+* Adam R. Jensen (:ghuser:`AdamRJensen`)
* Naman Priyadarshi (:ghuser:`Naman-Priyadarshi`)
+* Chencheng Luo (:ghuser:`roger-lcc`)
+* Prajwal Borkar (:ghuser:`PrajwalBorkar`)
+* Cliff Hansen (:ghuser:`cwhanse`)
+* Kevin Anderson (:ghuser:`kanderso-nrel`)
+* Cliff Hansen (:ghuser:`cwhanse`)
+* Jules Chéron (:ghuser:`jules-ch`)
+* Kurt Rhee (:ghuser:`kurt-rhee`)
+* Will Hobbs (:ghuser:`williamhobbs`)
+* Stephen Schneider (:ghuser:`sjschneider`)
+* :ghuser:`Kaesekopf`
+* :ghuser:`hf-kklein`
+* Mark Campanelli (:ghuser:`campanelli-sunpower`)
+* Anton Driesse (:ghuser:`adriesse`)
+* Kristen Wagner (:ghuser:`kwagnercpr`)
+* Mark Mikofski (:ghuser:`mikofski`)
diff --git a/docs/sphinx/source/whatsnew/v0.9.3.rst b/docs/sphinx/source/whatsnew/v0.9.3.rst
new file mode 100644
index 0000000000..820ecc251d
--- /dev/null
+++ b/docs/sphinx/source/whatsnew/v0.9.3.rst
@@ -0,0 +1,42 @@
+.. _whatsnew_0930:
+
+v0.9.3 (September 15, 2022)
+---------------------------
+
+Enhancements
+~~~~~~~~~~~~
+* New class and function translate module temperature model parameters
+ :py:func:`~pvlib.temperature.GenericLinearModel`
+ :py:func:`~pvlib.temperature.generic_linear`
+ (:issue:`1442`, :pull:`1463`)
+* Low resolution altitude lookup map
+ :py:func:`~pvlib.location.lookup_altitude`
+ (:issue:`1516`, :pull:`1518`)
+* New module to calculate spectral mismatch from field spectral measurements
+ :py:func:`~pvlib.spectrum.get_example_spectral_response`
+ :py:func:`~pvlib.spectrum.get_am15g`
+ :py:func:`~pvlib.spectrum.calc_spectral_mismatch_field`
+ (:issue:`1523`, :pull:`1524`)
+* Added Townsend-Powers monthly snow loss model:
+ :py:func:`pvlib.snow.loss_townsend`
+ (:issue:`1246`, :pull:`1251`, :pull:`1468`)
+
+Documentation
+~~~~~~~~~~~~~
+* Clarified description of cross-axis slope in :py:mod:`pvlib.tracking` (:pull:`1530`)
+* Removed the kwarg ``closed`` from ``pd.date_range`` in the examples since it is deprecated for pandas >= 1.4.0. (:pull:`1540`)
+
+Contributors
+~~~~~~~~~~~~
+* João Guilherme (:ghuser:`joaoguilhermeS`)
+* Nicolas Martinez (:ghuser:`nicomt`)
+* Anton Driesse (:ghuser:`adriesse`)
+* Cliff Hansen (:ghuser:`cwhanse`)
+* Kevin Anderson (:ghuser:`kanderso-nrel`)
+* Mark Mikofski (:ghuser:`mikofski`)
+* Will Holmgren (:ghuser:`wholmgren`)
+* Mark Campanelli (:ghuser:`markcampanelli`)
+* Adam R. Jensen (:ghuser:`AdamRJensen`)
+* Abhishek Parikh (:ghuser:`abhisheksparikh`)
+* Taos Transue (:ghuser:`reepoi`)
+* (:ghuser:`chiragpachori`)
diff --git a/docs/sphinx/source/whatsnew/v0.9.4.rst b/docs/sphinx/source/whatsnew/v0.9.4.rst
new file mode 100644
index 0000000000..00bc89207a
--- /dev/null
+++ b/docs/sphinx/source/whatsnew/v0.9.4.rst
@@ -0,0 +1,45 @@
+.. _whatsnew_0940:
+
+v0.9.4 (TBD)
+------------------------
+
+Deprecations
+~~~~~~~~~~~~
+
+
+Enhancements
+~~~~~~~~~~~~
+* Multiple code style issues fixed that were reported by LGTM analysis. (:issue:`1275`, :pull:`1559`)
+* Added a function to calculate one of GHI, DHI, and DNI from values of the other two.
+ :py:func:`~pvlib.irradiance.complete_irradiance`
+ (:issue:`1565`, :pull:`1567`)
+* Add optional ``return_components`` parameter to :py:func:`pvlib.irradiance.haydavies` to return
+ individual diffuse irradiance components (:issue:`1553`, :pull:`1568`)
+
+
+Bug fixes
+~~~~~~~~~
+
+
+Testing
+~~~~~~~
+* Corrected a flawed test for :py:func:`~pvlib.irradiance.get_ground_diffuse` (:issue:`1569`, :pull:`1575`)
+
+Documentation
+~~~~~~~~~~~~~
+
+
+Benchmarking
+~~~~~~~~~~~~~
+
+
+Requirements
+~~~~~~~~~~~~
+
+
+Contributors
+~~~~~~~~~~~~
+* Kirsten Perry (:ghuser:`kperrynrel`)
+* Christian Orner (:ghuser:`chrisorner`)
+* Saurabh Aneja (:ghuser:`spaneja`)
+* Marcus Boumans (:ghuser:`bowie2211`)
diff --git a/pvlib/_version.py b/pvlib/_version.py
deleted file mode 100644
index ca37627e7c..0000000000
--- a/pvlib/_version.py
+++ /dev/null
@@ -1,484 +0,0 @@
-
-# This file helps to compute a version number in source trees obtained from
-# git-archive tarball (such as those provided by githubs download-from-tag
-# feature). Distribution tarballs (built by setup.py sdist) and build
-# directories (produced by setup.py build) will contain a much shorter file
-# that just contains the computed version number.
-
-# This file is released into the public domain. Generated by
-# versioneer-0.16 (https://github.com/warner/python-versioneer)
-
-"""Git implementation of _version.py."""
-
-import errno
-import os
-import re
-import subprocess
-import sys
-
-
-def get_keywords():
- """Get the keywords needed to look up the version information."""
- # these strings will be replaced by git during git-archive.
- # setup.py/versioneer.py will grep for the variable names, so they must
- # each be defined on a line of their own. _version.py will just call
- # get_keywords().
- git_refnames = "$Format:%d$"
- git_full = "$Format:%H$"
- keywords = {"refnames": git_refnames, "full": git_full}
- return keywords
-
-
-class VersioneerConfig:
- """Container for Versioneer configuration parameters."""
-
-
-def get_config():
- """Create, populate and return the VersioneerConfig() object."""
- # these strings are filled in when 'setup.py versioneer' creates
- # _version.py
- cfg = VersioneerConfig()
- cfg.VCS = "git"
- cfg.style = "pep440"
- cfg.tag_prefix = "v"
- cfg.parentdir_prefix = "pvlib-python-"
- cfg.versionfile_source = "pvlib/_version.py"
- cfg.verbose = False
- return cfg
-
-
-class NotThisMethod(Exception):
- """Exception raised if a method is not valid for the current scenario."""
-
-
-LONG_VERSION_PY = {}
-HANDLERS = {}
-
-
-def register_vcs_handler(vcs, method): # decorator
- """Decorator to mark a method as the handler for a particular VCS."""
- def decorate(f):
- """Store f in HANDLERS[vcs][method]."""
- if vcs not in HANDLERS:
- HANDLERS[vcs] = {}
- HANDLERS[vcs][method] = f
- return f
- return decorate
-
-
-def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False):
- """Call the given command(s)."""
- assert isinstance(commands, list)
- p = None
- for c in commands:
- try:
- dispcmd = str([c] + args)
- # remember shell=False, so use git.cmd on windows, not just git
- p = subprocess.Popen([c] + args, cwd=cwd, stdout=subprocess.PIPE,
- stderr=(subprocess.PIPE if hide_stderr
- else None))
- break
- except EnvironmentError:
- e = sys.exc_info()[1]
- if e.errno == errno.ENOENT:
- continue
- if verbose:
- print("unable to run %s" % dispcmd)
- print(e)
- return None
- else:
- if verbose:
- print("unable to find command, tried %s" % (commands,))
- return None
- stdout = p.communicate()[0].strip()
- if sys.version_info[0] >= 3:
- stdout = stdout.decode()
- if p.returncode != 0:
- if verbose:
- print("unable to run %s (error)" % dispcmd)
- return None
- return stdout
-
-
-def versions_from_parentdir(parentdir_prefix, root, verbose):
- """Try to determine the version from the parent directory name.
-
- Source tarballs conventionally unpack into a directory that includes
- both the project name and a version string.
- """
- dirname = os.path.basename(root)
- if not dirname.startswith(parentdir_prefix):
- if verbose:
- print("guessing rootdir is '%s', but '%s' doesn't start with "
- "prefix '%s'" % (root, dirname, parentdir_prefix))
- raise NotThisMethod("rootdir doesn't start with parentdir_prefix")
- return {"version": dirname[len(parentdir_prefix):],
- "full-revisionid": None,
- "dirty": False, "error": None}
-
-
-@register_vcs_handler("git", "get_keywords")
-def git_get_keywords(versionfile_abs):
- """Extract version information from the given file."""
- # the code embedded in _version.py can just fetch the value of these
- # keywords. When used from setup.py, we don't want to import _version.py,
- # so we do it with a regexp instead. This function is not used from
- # _version.py.
- keywords = {}
- try:
- f = open(versionfile_abs, "r")
- for line in f.readlines():
- if line.strip().startswith("git_refnames ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["refnames"] = mo.group(1)
- if line.strip().startswith("git_full ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["full"] = mo.group(1)
- f.close()
- except EnvironmentError:
- pass
- return keywords
-
-
-@register_vcs_handler("git", "keywords")
-def git_versions_from_keywords(keywords, tag_prefix, verbose):
- """Get version information from git keywords."""
- if not keywords:
- raise NotThisMethod("no keywords at all, weird")
- refnames = keywords["refnames"].strip()
- if refnames.startswith("$Format"):
- if verbose:
- print("keywords are unexpanded, not using")
- raise NotThisMethod("unexpanded keywords, not a git-archive tarball")
- refs = set([r.strip() for r in refnames.strip("()").split(",")])
- # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of
- # just "foo-1.0". If we see a "tag: " prefix, prefer those.
- TAG = "tag: "
- tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)])
- if not tags:
- # Either we're using git < 1.8.3, or there really are no tags. We use
- # a heuristic: assume all version tags have a digit. The old git %d
- # expansion behaves like git log --decorate=short and strips out the
- # refs/heads/ and refs/tags/ prefixes that would let us distinguish
- # between branches and tags. By ignoring refnames without digits, we
- # filter out many common branch names like "release" and
- # "stabilization", as well as "HEAD" and "master".
- tags = set([r for r in refs if re.search(r'\d', r)])
- if verbose:
- print("discarding '%s', no digits" % ",".join(refs-tags))
- if verbose:
- print("likely tags: %s" % ",".join(sorted(tags)))
- for ref in sorted(tags):
- # sorting will prefer e.g. "2.0" over "2.0rc1"
- if ref.startswith(tag_prefix):
- r = ref[len(tag_prefix):]
- if verbose:
- print("picking %s" % r)
- return {"version": r,
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": None
- }
- # no suitable tags, so version is "0+unknown", but full hex is still there
- if verbose:
- print("no suitable tags, using unknown + full revision id")
- return {"version": "0+unknown",
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": "no suitable tags"}
-
-
-@register_vcs_handler("git", "pieces_from_vcs")
-def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
- """Get version from 'git describe' in the root of the source tree.
-
- This only gets called if the git-archive 'subst' keywords were *not*
- expanded, and _version.py hasn't already been rewritten with a short
- version string, meaning we're inside a checked out source tree.
- """
- if not os.path.exists(os.path.join(root, ".git")):
- if verbose:
- print("no .git in %s" % root)
- raise NotThisMethod("no .git directory")
-
- GITS = ["git"]
- if sys.platform == "win32":
- GITS = ["git.cmd", "git.exe"]
- # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty]
- # if there isn't one, this yields HEX[-dirty] (no NUM)
- describe_out = run_command(GITS, ["describe", "--tags", "--dirty",
- "--always", "--long",
- "--match", "%s*" % tag_prefix],
- cwd=root)
- # --long was added in git-1.5.5
- if describe_out is None:
- raise NotThisMethod("'git describe' failed")
- describe_out = describe_out.strip()
- full_out = run_command(GITS, ["rev-parse", "HEAD"], cwd=root)
- if full_out is None:
- raise NotThisMethod("'git rev-parse' failed")
- full_out = full_out.strip()
-
- pieces = {}
- pieces["long"] = full_out
- pieces["short"] = full_out[:7] # maybe improved later
- pieces["error"] = None
-
- # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty]
- # TAG might have hyphens.
- git_describe = describe_out
-
- # look for -dirty suffix
- dirty = git_describe.endswith("-dirty")
- pieces["dirty"] = dirty
- if dirty:
- git_describe = git_describe[:git_describe.rindex("-dirty")]
-
- # now we have TAG-NUM-gHEX or HEX
-
- if "-" in git_describe:
- # TAG-NUM-gHEX
- mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe)
- if not mo:
- # unparseable. Maybe git-describe is misbehaving?
- pieces["error"] = ("unable to parse git-describe output: '%s'"
- % describe_out)
- return pieces
-
- # tag
- full_tag = mo.group(1)
- if not full_tag.startswith(tag_prefix):
- if verbose:
- fmt = "tag '%s' doesn't start with prefix '%s'"
- print(fmt % (full_tag, tag_prefix))
- pieces["error"] = ("tag '%s' doesn't start with prefix '%s'"
- % (full_tag, tag_prefix))
- return pieces
- pieces["closest-tag"] = full_tag[len(tag_prefix):]
-
- # distance: number of commits since tag
- pieces["distance"] = int(mo.group(2))
-
- # commit: short hex revision ID
- pieces["short"] = mo.group(3)
-
- else:
- # HEX: no tags
- pieces["closest-tag"] = None
- count_out = run_command(GITS, ["rev-list", "HEAD", "--count"],
- cwd=root)
- pieces["distance"] = int(count_out) # total number of commits
-
- return pieces
-
-
-def plus_or_dot(pieces):
- """Return a + if we don't already have one, else return a ."""
- if "+" in pieces.get("closest-tag", ""):
- return "."
- return "+"
-
-
-def render_pep440(pieces):
- """Build up version string, with post-release "local version identifier".
-
- Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you
- get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty
-
- Exceptions:
- 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += plus_or_dot(pieces)
- rendered += "%d.g%s" % (pieces["distance"], pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- else:
- # exception #1
- rendered = "0+untagged.%d.g%s" % (pieces["distance"],
- pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- return rendered
-
-
-def render_pep440_pre(pieces):
- """TAG[.post.devDISTANCE] -- No -dirty.
-
- Exceptions:
- 1: no tags. 0.post.devDISTANCE
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += ".post.dev%d" % pieces["distance"]
- else:
- # exception #1
- rendered = "0.post.dev%d" % pieces["distance"]
- return rendered
-
-
-def render_pep440_post(pieces):
- """TAG[.postDISTANCE[.dev0]+gHEX] .
-
- The ".dev0" means dirty. Note that .dev0 sorts backwards
- (a dirty tree will appear "older" than the corresponding clean one),
- but you shouldn't be releasing software with -dirty anyways.
-
- Exceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += plus_or_dot(pieces)
- rendered += "g%s" % pieces["short"]
- else:
- # exception #1
- rendered = "0.post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += "+g%s" % pieces["short"]
- return rendered
-
-
-def render_pep440_old(pieces):
- """TAG[.postDISTANCE[.dev0]] .
-
- The ".dev0" means dirty.
-
- Eexceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- else:
- # exception #1
- rendered = "0.post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- return rendered
-
-
-def render_git_describe(pieces):
- """TAG[-DISTANCE-gHEX][-dirty].
-
- Like 'git describe --tags --dirty --always'.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += "-%d-g%s" % (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render_git_describe_long(pieces):
- """TAG-DISTANCE-gHEX[-dirty].
-
- Like 'git describe --tags --dirty --always -long'.
- The distance/hash is unconditional.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- rendered += "-%d-g%s" % (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render(pieces, style):
- """Render the given version pieces into the requested style."""
- if pieces["error"]:
- return {"version": "unknown",
- "full-revisionid": pieces.get("long"),
- "dirty": None,
- "error": pieces["error"]}
-
- if not style or style == "default":
- style = "pep440" # the default
-
- if style == "pep440":
- rendered = render_pep440(pieces)
- elif style == "pep440-pre":
- rendered = render_pep440_pre(pieces)
- elif style == "pep440-post":
- rendered = render_pep440_post(pieces)
- elif style == "pep440-old":
- rendered = render_pep440_old(pieces)
- elif style == "git-describe":
- rendered = render_git_describe(pieces)
- elif style == "git-describe-long":
- rendered = render_git_describe_long(pieces)
- else:
- raise ValueError("unknown style '%s'" % style)
-
- return {"version": rendered, "full-revisionid": pieces["long"],
- "dirty": pieces["dirty"], "error": None}
-
-
-def get_versions():
- """Get version information or return default if unable to do so."""
- # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have
- # __file__, we can work backwards from there to the root. Some
- # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which
- # case we can only use expanded keywords.
-
- cfg = get_config()
- verbose = cfg.verbose
-
- try:
- return git_versions_from_keywords(get_keywords(), cfg.tag_prefix,
- verbose)
- except NotThisMethod:
- pass
-
- try:
- root = os.path.realpath(__file__)
- # versionfile_source is the relative path from the top of the source
- # tree (where the .git directory might live) to this file. Invert
- # this to find the root from __file__.
- for i in cfg.versionfile_source.split('/'):
- root = os.path.dirname(root)
- except NameError:
- return {"version": "0+unknown", "full-revisionid": None,
- "dirty": None,
- "error": "unable to find root of source tree"}
-
- try:
- pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose)
- return render(pieces, cfg.style)
- except NotThisMethod:
- pass
-
- try:
- if cfg.parentdir_prefix:
- return versions_from_parentdir(cfg.parentdir_prefix, root, verbose)
- except NotThisMethod:
- pass
-
- return {"version": "0+unknown", "full-revisionid": None,
- "dirty": None,
- "error": "unable to compute version"}
diff --git a/pvlib/bifacial/pvfactors.py b/pvlib/bifacial/pvfactors.py
index 3c70b779fb..ed09879a21 100644
--- a/pvlib/bifacial/pvfactors.py
+++ b/pvlib/bifacial/pvfactors.py
@@ -35,6 +35,8 @@ def pvfactors_timeseries(
axis_azimuth: float
Azimuth angle of the rotation axis of the PV modules, using pvlib's
convention (deg). This is supposed to be fixed for all timestamps.
+ When modeling fixed-tilt arrays, set this value to be 90 degrees
+ clockwise from ``surface_azimuth``.
timestamps: datetime or DatetimeIndex
List of simulation timestamps
dni: numeric
diff --git a/pvlib/clearsky.py b/pvlib/clearsky.py
index 9f355669d0..ffc7ac9b55 100644
--- a/pvlib/clearsky.py
+++ b/pvlib/clearsky.py
@@ -14,6 +14,7 @@
import h5py
from pvlib import atmosphere, tools
+from pvlib.tools import _degrees_to_index
def ineichen(apparent_zenith, airmass_absolute, linke_turbidity,
@@ -286,67 +287,6 @@ def _calendar_month_middles(year):
return middles
-def _degrees_to_index(degrees, coordinate):
- """Transform input degrees to an output index integer. The Linke
- turbidity lookup tables have three dimensions, latitude, longitude, and
- month. Specify a degree value and either 'latitude' or 'longitude' to get
- the appropriate index number for the first two of these index numbers.
-
- Parameters
- ----------
- degrees : float or int
- Degrees of either latitude or longitude.
- coordinate : string
- Specify whether degrees arg is latitude or longitude. Must be set to
- either 'latitude' or 'longitude' or an error will be raised.
-
- Returns
- -------
- index : np.int16
- The latitude or longitude index number to use when looking up values
- in the Linke turbidity lookup table.
- """
- # Assign inputmin, inputmax, and outputmax based on degree type.
- if coordinate == 'latitude':
- inputmin = 90
- inputmax = -90
- outputmax = 2160
- elif coordinate == 'longitude':
- inputmin = -180
- inputmax = 180
- outputmax = 4320
- else:
- raise IndexError("coordinate must be 'latitude' or 'longitude'.")
-
- inputrange = inputmax - inputmin
- scale = outputmax/inputrange # number of indices per degree
- center = inputmin + 1 / scale / 2 # shift to center of index
- outputmax -= 1 # shift index to zero indexing
- index = (degrees - center) * scale
- err = IndexError('Input, %g, is out of range (%g, %g).' %
- (degrees, inputmin, inputmax))
-
- # If the index is still out of bounds after rounding, raise an error.
- # 0.500001 is used in comparisons instead of 0.5 to allow for a small
- # margin of error which can occur when dealing with floating point numbers.
- if index > outputmax:
- if index - outputmax <= 0.500001:
- index = outputmax
- else:
- raise err
- elif index < 0:
- if -index <= 0.500001:
- index = 0
- else:
- raise err
- # If the index wasn't set to outputmax or 0, round it and cast it as an
- # integer so it can be used in integer-based indexing.
- else:
- index = int(np.around(index))
-
- return index
-
-
def haurwitz(apparent_zenith):
'''
Determine clear sky GHI using the Haurwitz model.
@@ -647,8 +587,6 @@ def _calc_stats(data, samples_per_window, sample_interval, H):
data_slope = data_diff / sample_interval
data_slope_nstd = _slope_nstd_windowed(data_slope.values[:-1], data, H,
samples_per_window, sample_interval)
- data_slope_nstd = data_slope_nstd
-
return data_mean, data_max, data_slope_nstd, data_slope
@@ -962,8 +900,8 @@ def bird(zenith, airmass_relative, aod380, aod500, precipitable_water,
Extraterrestrial radiation [W/m^2], defaults to 1364[W/m^2]
asymmetry : numeric
Asymmetry factor, defaults to 0.85
- albedo : numeric
- Albedo, defaults to 0.2
+ albedo : numeric, default 0.2
+ Ground surface albedo. [unitless]
Returns
-------
diff --git a/pvlib/data/Altitude.h5 b/pvlib/data/Altitude.h5
new file mode 100644
index 0000000000..2921233212
Binary files /dev/null and b/pvlib/data/Altitude.h5 differ
diff --git a/pvlib/data/Burlington, United States SolarAnywhere Time Series 2021 Lat_44_465 Lon_-73_205 TMY3 format.csv b/pvlib/data/Burlington, United States SolarAnywhere Time Series 2021 Lat_44_465 Lon_-73_205 TMY3 format.csv
new file mode 100644
index 0000000000..c24dce3b2d
--- /dev/null
+++ b/pvlib/data/Burlington, United States SolarAnywhere Time Series 2021 Lat_44_465 Lon_-73_205 TMY3 format.csv
@@ -0,0 +1,8762 @@
+0,Burlington United States,NA,-5,44.465,-73.205,41,"Data Version: 3.6 / Type: Timeseries / LatLon Resolution: 0.010 / Time Resolution: 60 minutes / Averaging Method: End of Period / TD: No / Copyright 2010-2022 Clean Power Research®, L.L.C. DownloadID=f05846d6-ef54-4483-b716-311c66cb9c80",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+Date (MM/DD/YYYY),Time (HH:MM),ETR (W/m^2),ETRN (W/m^2),GHI (W/m^2),GHI source,GHI uncert (%),DNI (W/m^2)),DNI source,DNI uncert (%),DHI (W/m^2),DHI source,DHI uncert (%),GH illum (lx),GH illum source,Global illum uncert (%),DN illum (lx),DN illum source,DN illum uncert (%),DH illum (lx),DH illum source,DH illum uncert (%),Zenith lum (cd/m^2),Zenith lum source,Zenith lum uncert (%),TotCld (tenths),TotCld source,TotCld uncert (code),OpqCld (tenths),OpqCld source,OpqCld uncert (code),Dry-bulb (C),Dry-bulb source,Dry-bulb uncert (code),Dew-point (C),Dew-point source,Dew-point uncert (code),RHum (%),RHum source,RHum uncert (code),Pressure (mbar),Pressure source,Pressure uncert (code),Wdir (degrees),Wdir source,Wdir uncert (code),Wspd (m/s),Wspd source,Wspd uncert (code),Hvis (m),Hvis source,Hvis uncert (code),CeilHgt (m),CeilHgt source,CeilHgt uncert (code),Pwat (cm),Pwat source,Pwat uncert (code),AOD (unitless),AOD source,AOD uncert (code),Alb (unitless),Alb source,Alb uncert (code),Lprecip depth (mm),Lprecip quantity (hr),Lprecip source,Lprecip uncert (code)
+01/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,08:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,09:00,,,32,2,,0,2,,32,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,10:00,,,70,2,,1,2,,70,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,11:00,,,190,2,,118,2,,150,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,12:00,,,181,2,,51,2,,162,2,,,,,,,,,,,,,,,,,,,,0,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,13:00,,,239,2,,178,2,,172,2,,,,,,,,,,,,,,,,,,,,0,,,,,,57,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,14:00,,,173,2,,82,2,,146,2,,,,,,,,,,,,,,,,,,,,1,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,15:00,,,104,2,,26,2,,98,2,,,,,,,,,,,,,,,,,,,,1,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,16:00,,,33,2,,1,2,,33,2,,,,,,,,,,,,,,,,,,,,0,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,08:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,09:00,,,57,2,,44,2,,51,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,10:00,,,72,2,,6,2,,70,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,11:00,,,88,2,,0,2,,88,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,12:00,,,105,2,,0,2,,105,2,,,,,,,,,,,,,,,,,,,,0,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,13:00,,,188,2,,103,2,,149,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,14:00,,,129,2,,39,2,,116,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,15:00,,,67,2,,1,2,,67,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,16:00,,,38,2,,8,2,,37,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,08:00,,,6,2,,3,2,,6,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,09:00,,,61,2,,60,2,,53,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,10:00,,,68,2,,5,2,,67,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,11:00,,,131,2,,36,2,,119,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,12:00,,,146,2,,31,2,,134,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,13:00,,,115,2,,0,2,,115,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,14:00,,,68,2,,0,2,,68,2,,,,,,,,,,,,,,,,,,,,0,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,15:00,,,62,2,,0,2,,62,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,16:00,,,32,2,,0,2,,32,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,08:00,,,6,2,,7,2,,6,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,09:00,,,82,2,,155,2,,61,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,10:00,,,148,2,,132,2,,114,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,11:00,,,183,2,,86,2,,154,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,12:00,,,205,2,,68,2,,179,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,13:00,,,191,2,,47,2,,173,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,14:00,,,160,2,,44,2,,145,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,15:00,,,123,2,,70,2,,106,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,16:00,,,58,2,,43,2,,53,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,17:00,,,3,2,,2,2,,3,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,08:00,,,6,2,,7,2,,6,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,09:00,,,76,2,,139,2,,57,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,10:00,,,130,2,,99,2,,105,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,11:00,,,144,2,,23,2,,136,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,12:00,,,185,2,,33,2,,172,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,13:00,,,190,2,,53,2,,170,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,14:00,,,157,2,,47,2,,141,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,15:00,,,136,2,,106,2,,110,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,16:00,,,55,2,,29,2,,51,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,17:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,08:00,,,5,2,,4,2,,5,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,09:00,,,58,2,,39,2,,53,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,10:00,,,106,2,,17,2,,102,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,11:00,,,133,2,,7,2,,131,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,12:00,,,150,2,,8,2,,147,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,13:00,,,161,2,,17,2,,154,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,14:00,,,168,2,,66,2,,146,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,15:00,,,143,2,,156,2,,104,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,16:00,,,77,2,,178,2,,54,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,17:00,,,7,2,,10,2,,7,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,08:00,,,6,2,,3,2,,6,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,09:00,,,58,2,,43,2,,52,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,10:00,,,100,2,,14,2,,96,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,11:00,,,143,2,,14,2,,138,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,12:00,,,168,2,,18,2,,161,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,13:00,,,152,2,,10,2,,148,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,14:00,,,162,2,,63,2,,140,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,15:00,,,112,2,,27,2,,105,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,16:00,,,54,2,,32,2,,50,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,17:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,08:00,,,6,2,,2,2,,6,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,09:00,,,60,2,,34,2,,55,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,10:00,,,118,2,,41,2,,107,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,11:00,,,155,2,,29,2,,145,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,12:00,,,197,2,,66,2,,171,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,13:00,,,277,2,,287,2,,165,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,14:00,,,332,2,,622,2,,118,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,15:00,,,221,2,,561,2,,77,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,16:00,,,88,2,,269,2,,52,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,17:00,,,7,2,,10,2,,7,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,08:00,,,9,2,,8,2,,9,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,09:00,,,82,2,,155,2,,60,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,10:00,,,126,2,,85,2,,104,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,11:00,,,198,2,,119,2,,157,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,12:00,,,260,2,,222,2,,173,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,13:00,,,292,2,,340,2,,159,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,14:00,,,301,2,,488,2,,132,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,15:00,,,170,2,,242,2,,107,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,16:00,,,94,2,,192,2,,68,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,17:00,,,10,2,,10,2,,10,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,08:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,09:00,,,45,2,,1,2,,45,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,10:00,,,89,2,,0,2,,89,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,11:00,,,137,2,,8,2,,134,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,12:00,,,157,2,,10,2,,153,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,13:00,,,165,2,,22,2,,156,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,14:00,,,193,2,,122,2,,150,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,15:00,,,189,2,,321,2,,105,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,16:00,,,91,2,,220,2,,60,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,17:00,,,10,2,,7,2,,10,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,08:00,,,8,2,,4,2,,8,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,09:00,,,67,2,,55,2,,59,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,10:00,,,117,2,,35,2,,108,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,11:00,,,149,2,,13,2,,144,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,12:00,,,172,2,,15,2,,166,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,13:00,,,144,2,,3,2,,143,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,14:00,,,132,2,,9,2,,129,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,15:00,,,90,2,,4,2,,89,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,16:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,17:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,08:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,09:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,10:00,,,70,2,,0,2,,70,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,11:00,,,93,2,,0,2,,93,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,12:00,,,133,2,,1,2,,133,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,13:00,,,123,2,,1,2,,123,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,14:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,15:00,,,94,2,,2,2,,94,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,16:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,17:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,08:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,09:00,,,40,2,,0,2,,40,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,10:00,,,93,2,,1,2,,93,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,11:00,,,131,2,,3,2,,130,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,12:00,,,136,2,,0,2,,136,2,,,,,,,,,,,,,,,,,,,,0,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,13:00,,,131,2,,3,2,,130,2,,,,,,,,,,,,,,,,,,,,1,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,14:00,,,116,2,,1,2,,116,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,15:00,,,97,2,,2,2,,96,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,16:00,,,43,2,,0,2,,43,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,17:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,1,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,08:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,09:00,,,43,2,,0,2,,43,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,10:00,,,101,2,,5,2,,100,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,11:00,,,168,2,,29,2,,158,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,12:00,,,174,2,,12,2,,169,2,,,,,,,,,,,,,,,,,,,,0,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,13:00,,,157,2,,6,2,,155,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,14:00,,,139,2,,6,2,,137,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,15:00,,,102,2,,2,2,,102,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,16:00,,,44,2,,0,2,,44,2,,,,,,,,,,,,,,,,,,,,2,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,17:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,08:00,,,8,2,,3,2,,8,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,09:00,,,76,2,,79,2,,64,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,10:00,,,197,2,,288,2,,119,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,11:00,,,257,2,,250,2,,167,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,12:00,,,281,2,,218,2,,192,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,13:00,,,352,2,,427,2,,178,2,,,,,,,,,,,,,,,,,,,,2,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,14:00,,,313,2,,432,2,,156,2,,,,,,,,,,,,,,,,,,,,3,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,15:00,,,177,2,,174,2,,129,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,16:00,,,58,2,,21,2,,55,2,,,,,,,,,,,,,,,,,,,,3,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,17:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,08:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,09:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,10:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,1,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,11:00,,,112,2,,0,2,,112,2,,,,,,,,,,,,,,,,,,,,1,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,12:00,,,146,2,,3,2,,145,2,,,,,,,,,,,,,,,,,,,,1,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,13:00,,,154,2,,9,2,,150,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,14:00,,,121,2,,2,2,,120,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,15:00,,,106,2,,14,2,,102,2,,,,,,,,,,,,,,,,,,,,1,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,16:00,,,58,2,,6,2,,57,2,,,,,,,,,,,,,,,,,,,,1,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,17:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,1,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,08:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,09:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,10:00,,,106,2,,8,2,,104,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,11:00,,,147,2,,16,2,,141,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,12:00,,,153,2,,4,2,,151,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,13:00,,,149,2,,3,2,,148,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,14:00,,,120,2,,0,2,,120,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,15:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,1,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,16:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,17:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,08:00,,,8,2,,3,2,,8,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,09:00,,,61,2,,24,2,,57,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,10:00,,,103,2,,4,2,,102,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,11:00,,,158,2,,21,2,,150,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,12:00,,,240,2,,114,2,,193,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,13:00,,,228,2,,80,2,,195,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,14:00,,,163,2,,21,2,,155,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,15:00,,,137,2,,55,2,,121,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,16:00,,,91,2,,101,2,,74,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,17:00,,,15,2,,10,2,,15,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,08:00,,,13,2,,11,2,,13,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,09:00,,,101,2,,209,2,,68,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,10:00,,,147,2,,115,2,,115,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,11:00,,,176,2,,39,2,,162,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,12:00,,,184,2,,21,2,,175,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,13:00,,,187,2,,30,2,,174,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,14:00,,,185,2,,55,2,,164,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,15:00,,,179,2,,172,2,,129,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,16:00,,,92,2,,96,2,,76,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,17:00,,,15,2,,9,2,,15,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,08:00,,,11,2,,6,2,,11,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,09:00,,,74,2,,56,2,,65,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,10:00,,,121,2,,29,2,,113,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,11:00,,,179,2,,39,2,,164,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,12:00,,,258,2,,135,2,,201,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,13:00,,,270,2,,146,2,,208,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,14:00,,,266,2,,240,2,,175,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,15:00,,,189,2,,188,2,,134,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,16:00,,,113,2,,190,2,,80,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,17:00,,,22,2,,90,2,,20,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,08:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,09:00,,,55,2,,4,2,,54,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,10:00,,,125,2,,22,2,,119,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,11:00,,,196,2,,49,2,,178,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,12:00,,,221,2,,47,2,,201,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,13:00,,,214,2,,35,2,,199,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,14:00,,,167,2,,13,2,,162,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,15:00,,,111,2,,2,2,,110,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,16:00,,,59,2,,0,2,,59,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,17:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,08:00,,,12,2,,6,2,,12,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,09:00,,,88,2,,106,2,,71,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,10:00,,,118,2,,25,2,,111,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,11:00,,,225,2,,125,2,,178,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,12:00,,,250,2,,93,2,,210,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,13:00,,,255,2,,93,2,,215,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,14:00,,,222,2,,110,2,,179,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,15:00,,,230,2,,324,2,,132,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,16:00,,,110,2,,159,2,,81,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,17:00,,,17,2,,11,2,,17,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,08:00,,,14,2,,21,2,,14,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,09:00,,,105,2,,188,2,,74,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,10:00,,,194,2,,244,2,,123,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,11:00,,,283,2,,300,2,,168,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,12:00,,,316,2,,280,2,,195,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,13:00,,,351,2,,374,2,,189,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,14:00,,,362,2,,570,2,,139,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,15:00,,,255,2,,439,2,,120,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,16:00,,,126,2,,242,2,,81,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,17:00,,,25,2,,61,2,,23,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,08:00,,,18,2,,76,2,,17,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,09:00,,,126,2,,429,2,,54,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,10:00,,,264,2,,679,2,,64,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,11:00,,,389,2,,829,2,,69,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,12:00,,,466,2,,890,2,,79,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,13:00,,,488,2,,898,2,,95,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,14:00,,,417,2,,860,2,,77,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,15:00,,,300,2,,719,2,,76,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,16:00,,,149,2,,422,2,,69,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,17:00,,,29,2,,125,2,,24,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,08:00,,,19,2,,65,2,,18,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,09:00,,,106,2,,178,2,,76,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,10:00,,,188,2,,187,2,,132,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,76,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,11:00,,,276,2,,249,2,,179,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,71,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,12:00,,,287,2,,199,2,,200,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,66,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,13:00,,,256,2,,102,2,,211,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,14:00,,,278,2,,230,2,,186,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,15:00,,,273,2,,489,2,,119,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,16:00,,,150,2,,401,2,,73,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,17:00,,,29,2,,90,2,,25,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,08:00,,,20,2,,74,2,,19,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,09:00,,,126,2,,343,2,,66,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,10:00,,,258,2,,552,2,,92,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,11:00,,,376,2,,693,2,,104,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,12:00,,,430,2,,677,2,,131,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,13:00,,,389,2,,469,2,,180,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,14:00,,,219,2,,107,2,,176,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,15:00,,,95,2,,2,2,,94,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,16:00,,,46,2,,0,2,,46,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,17:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,08:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,09:00,,,46,2,,0,2,,46,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,10:00,,,106,2,,4,2,,105,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,11:00,,,185,2,,28,2,,174,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,12:00,,,184,2,,9,2,,180,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,13:00,,,202,2,,16,2,,195,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,14:00,,,186,2,,17,2,,179,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,15:00,,,113,2,,1,2,,113,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,16:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,17:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,08:00,,,14,2,,13,2,,14,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,09:00,,,67,2,,12,2,,65,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,10:00,,,114,2,,5,2,,112,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,11:00,,,188,2,,38,2,,173,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,12:00,,,213,2,,29,2,,200,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,13:00,,,232,2,,51,2,,209,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,14:00,,,195,2,,34,2,,181,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,15:00,,,127,2,,7,2,,125,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,16:00,,,83,2,,69,2,,69,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,17:00,,,22,2,,16,2,,21,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,08:00,,,25,2,,85,2,,23,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,09:00,,,133,2,,371,2,,65,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,10:00,,,271,2,,587,2,,88,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,11:00,,,388,2,,734,2,,92,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,12:00,,,452,2,,749,2,,112,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,13:00,,,433,2,,668,2,,127,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,14:00,,,405,2,,725,2,,103,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,15:00,,,310,2,,633,2,,100,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,16:00,,,160,2,,421,2,,72,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,17:00,,,41,2,,108,2,,35,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,08:00,,,14,2,,1,2,,14,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,09:00,,,81,2,,39,2,,74,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,10:00,,,215,2,,262,2,,132,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,11:00,,,299,2,,330,2,,164,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,12:00,,,350,2,,363,2,,184,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,13:00,,,365,2,,389,2,,185,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,14:00,,,400,2,,616,2,,141,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,15:00,,,330,2,,692,2,,98,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,16:00,,,170,2,,450,2,,74,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,17:00,,,43,2,,141,2,,34,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,80,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-21,,,,,,82,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-22,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-24,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-24,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,08:00,,,32,2,,163,2,,26,2,,,,,,,,,,,,,,,,,,,,-24,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,09:00,,,161,2,,579,2,,51,2,,,,,,,,,,,,,,,,,,,,-22,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,10:00,,,306,2,,755,2,,65,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,73,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,11:00,,,452,2,,850,2,,102,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,70,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,12:00,,,519,2,,903,2,,102,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,66,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,13:00,,,517,2,,908,2,,93,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,14:00,,,469,2,,887,2,,92,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,15:00,,,354,2,,814,2,,77,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,16:00,,,196,2,,600,2,,65,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,17:00,,,47,2,,155,2,,37,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+01/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-21,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-22,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-22,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-23,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-23,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,08:00,,,32,2,,119,2,,28,2,,,,,,,,,,,,,,,,,,,,-24,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,09:00,,,162,2,,495,2,,66,2,,,,,,,,,,,,,,,,,,,,-22,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,10:00,,,271,2,,551,2,,93,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,11:00,,,390,2,,700,2,,99,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,67,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,12:00,,,475,2,,775,2,,114,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,13:00,,,471,2,,771,2,,108,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,14:00,,,437,2,,703,2,,135,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,15:00,,,254,2,,316,2,,145,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,16:00,,,98,2,,40,2,,89,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,17:00,,,25,2,,1,2,,25,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,08:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,09:00,,,69,2,,1,2,,69,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,10:00,,,127,2,,6,2,,125,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,11:00,,,159,2,,7,2,,156,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,12:00,,,180,2,,7,2,,177,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,13:00,,,198,2,,14,2,,191,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,14:00,,,186,2,,18,2,,178,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,15:00,,,143,2,,12,2,,139,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,16:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,17:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,94,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,94,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,08:00,,,23,2,,42,2,,21,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,09:00,,,110,2,,121,2,,86,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,10:00,,,191,2,,102,2,,157,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,11:00,,,254,2,,106,2,,209,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,12:00,,,264,2,,72,2,,230,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,13:00,,,266,2,,68,2,,233,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,14:00,,,234,2,,63,2,,206,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,15:00,,,196,2,,81,2,,167,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,16:00,,,122,2,,75,2,,105,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,17:00,,,34,2,,16,2,,33,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,08:00,,,16,2,,0,2,,16,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,09:00,,,85,2,,29,2,,79,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,10:00,,,179,2,,121,2,,138,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,11:00,,,290,2,,282,2,,169,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,12:00,,,543,2,,748,2,,184,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,13:00,,,556,2,,915,2,,113,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,14:00,,,480,2,,891,2,,85,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,15:00,,,352,2,,760,2,,80,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,16:00,,,196,2,,548,2,,67,2,,,,,,,,,,,,,,,,,,,,0,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,17:00,,,55,2,,173,2,,41,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,18:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,71,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,08:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,09:00,,,63,2,,0,2,,63,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,10:00,,,110,2,,0,2,,110,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,11:00,,,165,2,,27,2,,153,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,12:00,,,255,2,,53,2,,229,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,13:00,,,277,2,,108,2,,224,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,14:00,,,418,2,,480,2,,203,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,15:00,,,280,2,,386,2,,140,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,16:00,,,191,2,,399,2,,95,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,17:00,,,59,2,,151,2,,46,2,,,,,,,,,,,,,,,,,,,,3,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,18:00,,,1,2,,4,2,,1,2,,,,,,,,,,,,,,,,,,,,2,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,08:00,,,33,2,,56,2,,30,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,09:00,,,128,2,,150,2,,96,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,10:00,,,183,2,,88,2,,153,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,11:00,,,238,2,,71,2,,207,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,12:00,,,288,2,,95,2,,242,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,13:00,,,339,2,,187,2,,247,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,48,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,14:00,,,242,2,,71,2,,210,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,49,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,15:00,,,160,2,,17,2,,154,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,50,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,16:00,,,85,2,,7,2,,83,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,17:00,,,40,2,,26,2,,38,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,18:00,,,1,2,,1,2,,1,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,08:00,,,22,2,,3,2,,22,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,09:00,,,76,2,,3,2,,75,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,10:00,,,159,2,,31,2,,148,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,11:00,,,270,2,,133,2,,211,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,12:00,,,215,2,,29,2,,201,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,13:00,,,210,2,,14,2,,203,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,14:00,,,189,2,,12,2,,184,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,15:00,,,132,2,,2,2,,131,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,16:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,17:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,08:00,,,44,2,,162,2,,34,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,09:00,,,185,2,,560,2,,62,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,10:00,,,352,2,,772,2,,81,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,11:00,,,486,2,,874,2,,96,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,12:00,,,562,2,,895,2,,116,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,13:00,,,550,2,,882,2,,106,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,14:00,,,509,2,,856,2,,114,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,15:00,,,382,2,,771,2,,92,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,16:00,,,228,2,,610,2,,74,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,17:00,,,73,2,,263,2,,47,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,18:00,,,2,2,,11,2,,2,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,08:00,,,33,2,,33,2,,31,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,09:00,,,114,2,,49,2,,103,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,10:00,,,218,2,,99,2,,183,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,11:00,,,248,2,,68,2,,217,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,12:00,,,218,2,,17,2,,210,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,13:00,,,258,2,,35,2,,240,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,14:00,,,265,2,,64,2,,235,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,15:00,,,253,2,,142,2,,199,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,16:00,,,167,2,,145,2,,130,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,17:00,,,51,2,,28,2,,48,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,08:00,,,29,2,,15,2,,28,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,09:00,,,132,2,,150,2,,98,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,10:00,,,256,2,,256,2,,164,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,11:00,,,435,2,,532,2,,193,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,12:00,,,381,2,,302,2,,228,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,13:00,,,383,2,,282,2,,238,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,14:00,,,280,2,,120,2,,223,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,15:00,,,208,2,,80,2,,177,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,16:00,,,136,2,,102,2,,109,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,17:00,,,68,2,,148,2,,52,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,18:00,,,2,2,,6,2,,2,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,75,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,08:00,,,47,2,,101,2,,40,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,76,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,09:00,,,179,2,,375,2,,92,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,10:00,,,316,2,,517,2,,127,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,65,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,11:00,,,476,2,,649,2,,177,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,12:00,,,383,2,,302,2,,228,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,13:00,,,419,2,,368,2,,228,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,14:00,,,504,2,,747,2,,148,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,15:00,,,394,2,,813,2,,76,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,16:00,,,247,2,,689,2,,63,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,17:00,,,85,2,,301,2,,51,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,18:00,,,3,2,,8,2,,3,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,08:00,,,52,2,,138,2,,41,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,09:00,,,181,2,,383,2,,90,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,10:00,,,277,2,,338,2,,152,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,11:00,,,391,2,,420,2,,196,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,12:00,,,511,2,,559,2,,222,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,13:00,,,419,2,,390,2,,215,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,14:00,,,454,2,,594,2,,168,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,15:00,,,370,2,,596,2,,134,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,16:00,,,236,2,,534,2,,91,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,17:00,,,83,2,,235,2,,55,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,18:00,,,3,2,,12,2,,3,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-16,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-19,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-20,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-20,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-20,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-21,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,08:00,,,59,2,,121,2,,49,2,,,,,,,,,,,,,,,,,,,,-20,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,09:00,,,173,2,,332,2,,93,2,,,,,,,,,,,,,,,,,,,,-18,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,10:00,,,276,2,,345,2,,147,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,11:00,,,349,2,,325,2,,196,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,12:00,,,423,2,,385,2,,222,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,13:00,,,500,2,,603,2,,182,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,14:00,,,444,2,,548,2,,178,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,15:00,,,286,2,,246,2,,188,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,16:00,,,171,2,,149,2,,130,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,17:00,,,67,2,,73,2,,58,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,18:00,,,2,2,,4,2,,2,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,08:00,,,36,2,,9,2,,35,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,09:00,,,134,2,,59,2,,119,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,10:00,,,195,2,,47,2,,177,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,11:00,,,223,2,,19,2,,214,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,12:00,,,268,2,,36,2,,249,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,13:00,,,263,2,,27,2,,249,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,14:00,,,225,2,,19,2,,216,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,15:00,,,130,2,,1,2,,130,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,16:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,17:00,,,44,2,,20,2,,42,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,18:00,,,3,2,,3,2,,3,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,08:00,,,47,2,,48,2,,43,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,09:00,,,183,2,,274,2,,114,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,10:00,,,245,2,,162,2,,183,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,65,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,11:00,,,285,2,,101,2,,237,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,12:00,,,352,2,,144,2,,275,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,13:00,,,318,2,,104,2,,262,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,14:00,,,395,2,,302,2,,245,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,15:00,,,320,2,,313,2,,192,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,16:00,,,149,2,,75,2,,128,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,17:00,,,46,2,,1,2,,46,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,08:00,,,38,2,,10,2,,37,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,09:00,,,125,2,,74,2,,106,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,10:00,,,273,2,,251,2,,175,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,11:00,,,269,2,,76,2,,232,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,12:00,,,298,2,,65,2,,263,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,13:00,,,328,2,,101,2,,273,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,14:00,,,242,2,,29,2,,228,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,15:00,,,201,2,,34,2,,187,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,16:00,,,126,2,,13,2,,122,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,17:00,,,42,2,,0,2,,42,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,07:00,,,2,2,,8,2,,2,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,08:00,,,68,2,,209,2,,47,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,09:00,,,227,2,,574,2,,77,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,10:00,,,393,2,,778,2,,87,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,11:00,,,557,2,,895,2,,119,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,12:00,,,630,2,,937,2,,122,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,13:00,,,635,2,,938,2,,121,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,14:00,,,582,2,,917,2,,118,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,15:00,,,458,2,,858,2,,98,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,16:00,,,288,2,,681,2,,87,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,17:00,,,103,2,,262,2,,66,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,18:00,,,4,2,,9,2,,4,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,64,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,75,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,07:00,,,2,2,,6,2,,2,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,08:00,,,74,2,,194,2,,54,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,09:00,,,195,2,,295,2,,117,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,10:00,,,234,2,,124,2,,185,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,65,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,11:00,,,253,2,,48,2,,229,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,12:00,,,257,2,,22,2,,245,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,13:00,,,228,2,,16,2,,219,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,14:00,,,250,2,,50,2,,224,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,15:00,,,170,2,,12,2,,165,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,16:00,,,119,2,,16,2,,114,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,17:00,,,53,2,,3,2,,53,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,07:00,,,2,2,,4,2,,2,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,08:00,,,64,2,,115,2,,51,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,09:00,,,163,2,,134,2,,127,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,10:00,,,234,2,,89,2,,198,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,11:00,,,293,2,,83,2,,252,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,12:00,,,310,2,,62,2,,276,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,13:00,,,328,2,,75,2,,286,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,14:00,,,267,2,,39,2,,247,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,15:00,,,182,2,,13,2,,176,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,16:00,,,99,2,,1,2,,99,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,17:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,07:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,08:00,,,70,2,,88,2,,60,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,09:00,,,207,2,,306,2,,123,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,10:00,,,320,2,,337,2,,182,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,11:00,,,353,2,,217,2,,243,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,12:00,,,379,2,,139,2,,302,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,13:00,,,411,2,,214,2,,290,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,14:00,,,331,2,,129,2,,264,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,15:00,,,234,2,,69,2,,204,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,16:00,,,170,2,,81,2,,145,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,17:00,,,71,2,,38,2,,65,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,18:00,,,3,2,,1,2,,3,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,07:00,,,3,2,,15,2,,3,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,08:00,,,95,2,,354,2,,53,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,09:00,,,273,2,,703,2,,76,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,10:00,,,444,2,,840,2,,96,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,11:00,,,584,2,,905,2,,122,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,12:00,,,653,2,,929,2,,130,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,13:00,,,660,2,,931,2,,131,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,14:00,,,604,2,,911,2,,125,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,15:00,,,492,2,,865,2,,112,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,16:00,,,321,2,,766,2,,81,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,17:00,,,131,2,,457,2,,59,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,18:00,,,11,2,,20,2,,11,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,08:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,09:00,,,88,2,,0,2,,88,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,10:00,,,129,2,,0,2,,129,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,11:00,,,169,2,,1,2,,168,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,12:00,,,220,2,,7,2,,216,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,13:00,,,200,2,,4,2,,198,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,14:00,,,170,2,,2,2,,169,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,73,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,15:00,,,143,2,,1,2,,143,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,80,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,16:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,17:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,08:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,09:00,,,101,2,,20,2,,95,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,10:00,,,248,2,,111,2,,201,2,,,,,,,,,,,,,,,,,,,,1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,11:00,,,363,2,,216,2,,250,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,12:00,,,395,2,,205,2,,278,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,13:00,,,241,2,,33,2,,222,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,14:00,,,275,2,,51,2,,248,2,,,,,,,,,,,,,,,,,,,,3,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,15:00,,,177,2,,11,2,,172,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,16:00,,,143,2,,21,2,,136,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,17:00,,,64,2,,11,2,,62,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,18:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,2,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,07:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,2,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,08:00,,,86,2,,214,2,,57,2,,,,,,,,,,,,,,,,,,,,2,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,09:00,,,245,2,,410,2,,124,2,,,,,,,,,,,,,,,,,,,,2,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,10:00,,,275,2,,201,2,,189,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,11:00,,,510,2,,543,2,,224,2,,,,,,,,,,,,,,,,,,,,4,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,12:00,,,409,2,,249,2,,265,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,13:00,,,270,2,,35,2,,250,2,,,,,,,,,,,,,,,,,,,,5,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,14:00,,,211,2,,10,2,,206,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,15:00,,,139,2,,1,2,,138,2,,,,,,,,,,,,,,,,,,,,5,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,16:00,,,71,2,,0,2,,71,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,17:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,5,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,18:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,07:00,,,3,2,,3,2,,3,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,08:00,,,57,2,,36,2,,52,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,09:00,,,147,2,,83,2,,122,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,10:00,,,264,2,,130,2,,207,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,11:00,,,409,2,,330,2,,234,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,12:00,,,443,2,,328,2,,252,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,13:00,,,538,2,,546,2,,216,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,14:00,,,444,2,,362,2,,246,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,60,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,15:00,,,485,2,,693,2,,167,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,16:00,,,318,2,,717,2,,80,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,17:00,,,147,2,,487,2,,62,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,18:00,,,17,2,,73,2,,17,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,07:00,,,6,2,,15,2,,6,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,08:00,,,113,2,,387,2,,57,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,75,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,09:00,,,295,2,,732,2,,70,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,70,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,10:00,,,483,2,,862,2,,103,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,57,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,11:00,,,617,2,,913,2,,127,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,51,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,12:00,,,686,2,,937,2,,134,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,48,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,13:00,,,692,2,,940,2,,134,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,14:00,,,636,2,,924,2,,127,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,15:00,,,516,2,,876,2,,110,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,16:00,,,321,2,,677,2,,93,2,,,,,,,,,,,,,,,,,,,,0,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,17:00,,,132,2,,336,2,,72,2,,,,,,,,,,,,,,,,,,,,0,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,18:00,,,16,2,,52,2,,16,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,07:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,08:00,,,53,2,,4,2,,52,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,09:00,,,132,2,,11,2,,129,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,10:00,,,215,2,,40,2,,197,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,11:00,,,354,2,,149,2,,273,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,82,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,12:00,,,395,2,,163,2,,298,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,13:00,,,354,2,,121,2,,282,2,,,,,,,,,,,,,,,,,,,,2,,,,,,84,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,14:00,,,206,2,,10,2,,200,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,15:00,,,175,2,,6,2,,172,2,,,,,,,,,,,,,,,,,,,,2,,,,,,84,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,16:00,,,128,2,,6,2,,126,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,17:00,,,59,2,,1,2,,59,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,18:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,3,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,80,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,07:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,08:00,,,46,2,,4,2,,45,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,09:00,,,147,2,,35,2,,136,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,10:00,,,208,2,,31,2,,194,2,,,,,,,,,,,,,,,,,,,,2,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,11:00,,,243,2,,19,2,,233,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,12:00,,,200,2,,6,2,,196,2,,,,,,,,,,,,,,,,,,,,3,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,13:00,,,244,2,,16,2,,234,2,,,,,,,,,,,,,,,,,,,,5,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,14:00,,,186,2,,3,2,,184,2,,,,,,,,,,,,,,,,,,,,5,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,15:00,,,120,2,,0,2,,120,2,,,,,,,,,,,,,,,,,,,,5,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,16:00,,,77,2,,0,2,,77,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,17:00,,,60,2,,7,2,,59,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,18:00,,,9,2,,1,2,,9,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,65,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+02/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,73,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,82,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,07:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,3,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,08:00,,,50,2,,0,2,,50,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,09:00,,,108,2,,0,2,,108,2,,,,,,,,,,,,,,,,,,,,3,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,10:00,,,193,2,,15,2,,186,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,11:00,,,273,2,,44,2,,249,2,,,,,,,,,,,,,,,,,,,,4,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,12:00,,,210,2,,9,2,,205,2,,,,,,,,,,,,,,,,,,,,4,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,13:00,,,286,2,,29,2,,268,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,14:00,,,290,2,,67,2,,252,2,,,,,,,,,,,,,,,,,,,,4,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,15:00,,,195,2,,17,2,,187,2,,,,,,,,,,,,,,,,,,,,4,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,16:00,,,148,2,,38,2,,135,2,,,,,,,,,,,,,,,,,,,,2,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,17:00,,,137,2,,211,2,,96,2,,,,,,,,,,,,,,,,,,,,0,,,,,,61,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,18:00,,,21,2,,56,2,,20,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,60,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,59,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,56,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,53,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,51,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,51,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,52,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,54,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,55,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,56,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,57,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,07:00,,,12,2,,16,2,,12,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,08:00,,,126,2,,373,2,,64,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,09:00,,,293,2,,608,2,,93,2,,,,,,,,,,,,,,,,,,,,-17,,,,,,54,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,10:00,,,491,2,,793,2,,125,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,51,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,11:00,,,633,2,,898,2,,132,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,49,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,12:00,,,710,2,,933,2,,141,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,47,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,13:00,,,717,2,,942,2,,138,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,46,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,14:00,,,661,2,,932,2,,129,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,46,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,15:00,,,537,2,,890,2,,108,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,16:00,,,353,2,,792,2,,72,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,17:00,,,165,2,,535,2,,60,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,18:00,,,25,2,,115,2,,23,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,07:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,08:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,09:00,,,129,2,,5,2,,127,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,10:00,,,201,2,,12,2,,195,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,11:00,,,273,2,,25,2,,259,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,12:00,,,296,2,,26,2,,280,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,13:00,,,266,2,,15,2,,257,2,,,,,,,,,,,,,,,,,,,,0,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,14:00,,,248,2,,14,2,,240,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,15:00,,,180,2,,5,2,,178,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,16:00,,,120,2,,1,2,,120,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,17:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,18:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,07:00,,,10,2,,2,2,,10,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,08:00,,,76,2,,33,2,,70,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,09:00,,,238,2,,254,2,,152,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,10:00,,,398,2,,434,2,,193,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,11:00,,,602,2,,747,2,,177,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,12:00,,,707,2,,916,2,,138,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,13:00,,,717,2,,924,2,,140,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,14:00,,,663,2,,837,2,,177,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,48,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,15:00,,,480,2,,605,2,,182,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,48,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,16:00,,,320,2,,493,2,,140,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,49,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,17:00,,,129,2,,197,2,,88,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,18:00,,,19,2,,21,2,,18,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,07:00,,,13,2,,12,2,,13,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,08:00,,,93,2,,90,2,,77,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,09:00,,,170,2,,59,2,,150,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,10:00,,,333,2,,242,2,,217,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,11:00,,,599,2,,672,2,,213,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,12:00,,,649,2,,650,2,,242,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,13:00,,,565,2,,483,2,,261,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,14:00,,,402,2,,216,2,,275,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,15:00,,,252,2,,50,2,,227,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,16:00,,,165,2,,30,2,,154,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,17:00,,,82,2,,18,2,,78,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,18:00,,,17,2,,8,2,,17,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,07:00,,,15,2,,18,2,,15,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,08:00,,,84,2,,61,2,,72,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,09:00,,,245,2,,263,2,,153,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,10:00,,,431,2,,512,2,,183,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,11:00,,,425,2,,268,2,,270,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,12:00,,,514,2,,375,2,,277,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,13:00,,,459,2,,247,2,,302,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,14:00,,,399,2,,210,2,,275,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,15:00,,,318,2,,184,2,,226,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,16:00,,,232,2,,154,2,,174,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,17:00,,,137,2,,184,2,,98,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,18:00,,,30,2,,69,2,,28,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,07:00,,,23,2,,84,2,,22,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,08:00,,,141,2,,362,2,,71,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,09:00,,,323,2,,591,2,,113,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,10:00,,,523,2,,807,2,,128,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,11:00,,,673,2,,919,2,,135,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,12:00,,,743,2,,937,2,,146,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,13:00,,,747,2,,935,2,,148,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,14:00,,,687,2,,917,2,,141,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,15:00,,,571,2,,878,2,,126,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,16:00,,,403,2,,799,2,,101,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,17:00,,,193,2,,587,2,,65,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,18:00,,,34,2,,140,2,,28,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,67,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,71,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,07:00,,,24,2,,74,2,,23,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,78,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,08:00,,,168,2,,509,2,,67,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,79,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,09:00,,,358,2,,770,2,,80,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,68,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,10:00,,,541,2,,881,2,,105,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,54,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,11:00,,,683,2,,929,2,,134,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,49,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,12:00,,,750,2,,944,2,,144,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,44,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,13:00,,,754,2,,942,2,,146,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,40,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,14:00,,,693,2,,918,2,,142,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,15:00,,,569,2,,770,2,,176,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,38,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,16:00,,,338,2,,503,2,,146,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,17:00,,,163,2,,286,2,,99,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,18:00,,,18,2,,19,2,,17,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,07:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,08:00,,,70,2,,1,2,,70,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,09:00,,,144,2,,6,2,,142,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,10:00,,,212,2,,12,2,,206,2,,,,,,,,,,,,,,,,,,,,1,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,11:00,,,283,2,,44,2,,257,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,12:00,,,490,2,,285,2,,306,2,,,,,,,,,,,,,,,,,,,,2,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,13:00,,,707,2,,641,2,,290,2,,,,,,,,,,,,,,,,,,,,4,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,14:00,,,427,2,,242,2,,280,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,15:00,,,282,2,,109,2,,226,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,16:00,,,226,2,,194,2,,151,2,,,,,,,,,,,,,,,,,,,,4,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,17:00,,,113,2,,116,2,,87,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,18:00,,,34,2,,61,2,,31,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,07:00,,,26,2,,67,2,,24,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,08:00,,,161,2,,367,2,,84,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,09:00,,,337,2,,601,2,,113,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,10:00,,,514,2,,762,2,,128,2,,,,,,,,,,,,,,,,,,,,1,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,11:00,,,672,2,,882,2,,141,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,12:00,,,725,2,,917,2,,126,2,,,,,,,,,,,,,,,,,,,,4,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,13:00,,,738,2,,916,2,,137,2,,,,,,,,,,,,,,,,,,,,7,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,14:00,,,691,2,,897,2,,143,2,,,,,,,,,,,,,,,,,,,,8,,,,,,44,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,15:00,,,553,2,,777,2,,149,2,,,,,,,,,,,,,,,,,,,,8,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,16:00,,,369,2,,545,2,,156,2,,,,,,,,,,,,,,,,,,,,9,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,17:00,,,174,2,,288,2,,107,2,,,,,,,,,,,,,,,,,,,,10,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,18:00,,,31,2,,52,2,,28,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,07:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,6,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,08:00,,,100,2,,34,2,,93,2,,,,,,,,,,,,,,,,,,,,5,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,09:00,,,226,2,,120,2,,181,2,,,,,,,,,,,,,,,,,,,,5,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,10:00,,,441,2,,370,2,,252,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,11:00,,,494,2,,343,2,,286,2,,,,,,,,,,,,,,,,,,,,9,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,12:00,,,336,2,,95,2,,274,2,,,,,,,,,,,,,,,,,,,,10,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,13:00,,,412,2,,229,2,,261,2,,,,,,,,,,,,,,,,,,,,11,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,14:00,,,384,2,,149,2,,292,2,,,,,,,,,,,,,,,,,,,,12,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,15:00,,,531,2,,536,2,,250,2,,,,,,,,,,,,,,,,,,,,11,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,16:00,,,352,2,,362,2,,209,2,,,,,,,,,,,,,,,,,,,,13,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,17:00,,,98,2,,54,2,,85,2,,,,,,,,,,,,,,,,,,,,13,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,18:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,14,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,48,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,62,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,07:00,,,27,2,,69,2,,24,2,,,,,,,,,,,,,,,,,,,,5,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,08:00,,,154,2,,309,2,,86,2,,,,,,,,,,,,,,,,,,,,6,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,09:00,,,325,2,,488,2,,138,2,,,,,,,,,,,,,,,,,,,,6,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,10:00,,,531,2,,722,2,,158,2,,,,,,,,,,,,,,,,,,,,7,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,11:00,,,703,2,,903,2,,150,2,,,,,,,,,,,,,,,,,,,,8,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,12:00,,,772,2,,931,2,,155,2,,,,,,,,,,,,,,,,,,,,8,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,13:00,,,776,2,,934,2,,154,2,,,,,,,,,,,,,,,,,,,,10,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,14:00,,,715,2,,919,2,,145,2,,,,,,,,,,,,,,,,,,,,10,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,15:00,,,598,2,,854,2,,146,2,,,,,,,,,,,,,,,,,,,,10,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,16:00,,,403,2,,652,2,,142,2,,,,,,,,,,,,,,,,,,,,10,,,,,,40,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,17:00,,,170,2,,323,2,,92,2,,,,,,,,,,,,,,,,,,,,9,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,18:00,,,39,2,,102,2,,33,2,,,,,,,,,,,,,,,,,,,,6,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,56,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,61,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,63,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,62,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,07:00,,,34,2,,104,2,,29,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,08:00,,,172,2,,394,2,,82,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,09:00,,,335,2,,497,2,,141,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,10:00,,,524,2,,600,2,,210,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,11:00,,,695,2,,775,2,,216,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,12:00,,,766,2,,865,2,,188,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,13:00,,,774,2,,894,2,,174,2,,,,,,,,,,,,,,,,,,,,0,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,14:00,,,718,2,,905,2,,153,2,,,,,,,,,,,,,,,,,,,,0,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,15:00,,,590,2,,863,2,,129,2,,,,,,,,,,,,,,,,,,,,0,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,16:00,,,416,2,,780,2,,101,2,,,,,,,,,,,,,,,,,,,,1,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,17:00,,,214,2,,560,2,,77,2,,,,,,,,,,,,,,,,,,,,1,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,18:00,,,47,2,,140,2,,38,2,,,,,,,,,,,,,,,,,,,,0,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,07:00,,,27,2,,29,2,,26,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,08:00,,,109,2,,50,2,,97,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,09:00,,,296,2,,290,2,,181,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,65,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,10:00,,,458,2,,408,2,,242,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,60,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,11:00,,,393,2,,150,2,,300,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,55,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,12:00,,,569,2,,395,2,,303,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,51,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,13:00,,,491,2,,244,2,,326,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,50,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,14:00,,,438,2,,195,2,,315,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,50,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,15:00,,,338,2,,121,2,,273,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,48,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,16:00,,,217,2,,73,2,,187,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,45,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,17:00,,,99,2,,26,2,,93,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,44,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,18:00,,,34,2,,40,2,,31,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,43,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,42,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,40,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,40,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,43,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,44,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,45,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,46,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,46,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,47,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,48,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,49,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,49,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,07:00,,,32,2,,47,2,,29,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,48,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,08:00,,,137,2,,123,2,,108,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,47,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,09:00,,,279,2,,243,2,,182,2,,,,,,,,,,,,,,,,,,,,-14,,,,,,44,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,10:00,,,505,2,,566,2,,203,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,40,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,11:00,,,720,2,,854,2,,183,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,37,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,12:00,,,793,2,,947,2,,150,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,34,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,13:00,,,795,2,,946,2,,151,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,32,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,14:00,,,733,2,,929,2,,144,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,33,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,15:00,,,601,2,,869,2,,129,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,33,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,16:00,,,415,2,,772,2,,97,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,32,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,17:00,,,218,2,,555,2,,78,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,36,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,18:00,,,48,2,,112,2,,40,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,38,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,07:00,,,53,2,,182,2,,41,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,08:00,,,234,2,,625,2,,81,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,09:00,,,410,2,,728,2,,114,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,10:00,,,528,2,,629,2,,189,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,25,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,11:00,,,529,2,,408,2,,270,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,12:00,,,597,2,,483,2,,267,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,21,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,13:00,,,599,2,,484,2,,267,2,,,,,,,,,,,,,,,,,,,,1,,,,,,19,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,14:00,,,584,2,,552,2,,231,2,,,,,,,,,,,,,,,,,,,,2,,,,,,20,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,15:00,,,547,2,,657,2,,188,2,,,,,,,,,,,,,,,,,,,,2,,,,,,20,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,16:00,,,417,2,,555,2,,186,2,,,,,,,,,,,,,,,,,,,,4,,,,,,21,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,17:00,,,159,2,,159,2,,118,2,,,,,,,,,,,,,,,,,,,,4,,,,,,28,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,18:00,,,33,2,,15,2,,32,2,,,,,,,,,,,,,,,,,,,,1,,,,,,36,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,1,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,07:00,,,57,2,,175,2,,45,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,08:00,,,240,2,,622,2,,84,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,09:00,,,431,2,,770,2,,114,2,,,,,,,,,,,,,,,,,,,,0,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,10:00,,,599,2,,834,2,,144,2,,,,,,,,,,,,,,,,,,,,2,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,11:00,,,723,2,,865,2,,170,2,,,,,,,,,,,,,,,,,,,,4,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,12:00,,,778,2,,883,2,,170,2,,,,,,,,,,,,,,,,,,,,5,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,13:00,,,781,2,,887,2,,169,2,,,,,,,,,,,,,,,,,,,,8,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,14:00,,,720,2,,870,2,,160,2,,,,,,,,,,,,,,,,,,,,8,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,15:00,,,599,2,,812,2,,151,2,,,,,,,,,,,,,,,,,,,,9,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,16:00,,,431,2,,665,2,,151,2,,,,,,,,,,,,,,,,,,,,10,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,17:00,,,222,2,,340,2,,134,2,,,,,,,,,,,,,,,,,,,,10,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,18:00,,,40,2,,41,2,,37,2,,,,,,,,,,,,,,,,,,,,7,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,07:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,08:00,,,41,2,,0,2,,41,2,,,,,,,,,,,,,,,,,,,,2,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,09:00,,,109,2,,0,2,,109,2,,,,,,,,,,,,,,,,,,,,3,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,10:00,,,138,2,,0,2,,138,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,11:00,,,153,2,,0,2,,153,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,12:00,,,187,2,,2,2,,186,2,,,,,,,,,,,,,,,,,,,,4,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,13:00,,,204,2,,3,2,,202,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,14:00,,,213,2,,4,2,,210,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,15:00,,,187,2,,2,2,,186,2,,,,,,,,,,,,,,,,,,,,5,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,16:00,,,103,2,,0,2,,103,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,17:00,,,57,2,,5,2,,56,2,,,,,,,,,,,,,,,,,,,,5,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,18:00,,,33,2,,34,2,,30,2,,,,,,,,,,,,,,,,,,,,4,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,47,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,39,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,36,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,35,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,34,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,36,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,37,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,36,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,38,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,41,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,43,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,06:00,,,1,2,,3,2,,1,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,43,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,07:00,,,65,2,,218,2,,47,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,43,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,08:00,,,249,2,,644,2,,80,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,09:00,,,442,2,,795,2,,105,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,42,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,10:00,,,619,2,,867,2,,137,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,39,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,11:00,,,742,2,,899,2,,158,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,37,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,12:00,,,800,2,,911,2,,163,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,34,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,13:00,,,799,2,,907,2,,164,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,31,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,14:00,,,738,2,,885,2,,160,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,30,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,15:00,,,620,2,,841,2,,149,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,30,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,16:00,,,445,2,,753,2,,122,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,17:00,,,250,2,,565,2,,98,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,32,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,18:00,,,64,2,,163,2,,50,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,19:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,50,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+03/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,06:00,,,1,2,,3,2,,1,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,07:00,,,67,2,,184,2,,51,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,08:00,,,251,2,,592,2,,93,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,09:00,,,449,2,,743,2,,130,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,10:00,,,620,2,,808,2,,166,2,,,,,,,,,,,,,,,,,,,,2,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,11:00,,,735,2,,834,2,,189,2,,,,,,,,,,,,,,,,,,,,5,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,12:00,,,795,2,,851,2,,196,2,,,,,,,,,,,,,,,,,,,,6,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,13:00,,,791,2,,847,2,,194,2,,,,,,,,,,,,,,,,,,,,9,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,14:00,,,728,2,,824,2,,186,2,,,,,,,,,,,,,,,,,,,,9,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,15:00,,,599,2,,769,2,,165,2,,,,,,,,,,,,,,,,,,,,10,,,,,,31,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,16:00,,,426,2,,651,2,,144,2,,,,,,,,,,,,,,,,,,,,12,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,17:00,,,241,2,,468,2,,114,2,,,,,,,,,,,,,,,,,,,,12,,,,,,37,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,18:00,,,62,2,,122,2,,51,2,,,,,,,,,,,,,,,,,,,,9,,,,,,37,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,10,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,33,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,06:00,,,1,2,,4,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,07:00,,,71,2,,208,2,,52,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,08:00,,,255,2,,605,2,,90,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,09:00,,,463,2,,784,2,,122,2,,,,,,,,,,,,,,,,,,,,2,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,10:00,,,636,2,,863,2,,147,2,,,,,,,,,,,,,,,,,,,,7,,,,,,38,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,11:00,,,757,2,,903,2,,161,2,,,,,,,,,,,,,,,,,,,,10,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,12:00,,,813,2,,910,2,,168,2,,,,,,,,,,,,,,,,,,,,11,,,,,,27,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,13:00,,,807,2,,900,2,,168,2,,,,,,,,,,,,,,,,,,,,14,,,,,,21,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,14:00,,,745,2,,874,2,,167,2,,,,,,,,,,,,,,,,,,,,15,,,,,,20,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,15:00,,,629,2,,840,2,,151,2,,,,,,,,,,,,,,,,,,,,15,,,,,,18,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,16:00,,,464,2,,771,2,,127,2,,,,,,,,,,,,,,,,,,,,16,,,,,,18,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,17:00,,,263,2,,612,2,,94,2,,,,,,,,,,,,,,,,,,,,16,,,,,,34,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,18:00,,,70,2,,190,2,,52,2,,,,,,,,,,,,,,,,,,,,12,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,19:00,,,1,2,,1,2,,1,2,,,,,,,,,,,,,,,,,,,,8,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,06:00,,,2,2,,9,2,,2,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,07:00,,,77,2,,277,2,,50,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,08:00,,,265,2,,657,2,,82,2,,,,,,,,,,,,,,,,,,,,1,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,09:00,,,461,2,,780,2,,118,2,,,,,,,,,,,,,,,,,,,,3,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,10:00,,,633,2,,830,2,,158,2,,,,,,,,,,,,,,,,,,,,10,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,11:00,,,749,2,,848,2,,185,2,,,,,,,,,,,,,,,,,,,,12,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,12:00,,,812,2,,873,2,,189,2,,,,,,,,,,,,,,,,,,,,14,,,,,,24,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,13:00,,,813,2,,881,2,,184,2,,,,,,,,,,,,,,,,,,,,17,,,,,,19,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,14:00,,,749,2,,868,2,,171,2,,,,,,,,,,,,,,,,,,,,18,,,,,,17,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,15:00,,,632,2,,832,2,,155,2,,,,,,,,,,,,,,,,,,,,18,,,,,,16,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,16:00,,,464,2,,757,2,,130,2,,,,,,,,,,,,,,,,,,,,18,,,,,,16,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,17:00,,,266,2,,595,2,,99,2,,,,,,,,,,,,,,,,,,,,17,,,,,,29,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,18:00,,,74,2,,192,2,,55,2,,,,,,,,,,,,,,,,,,,,10,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,19:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,06:00,,,2,2,,6,2,,2,2,,,,,,,,,,,,,,,,,,,,3,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,07:00,,,77,2,,202,2,,56,2,,,,,,,,,,,,,,,,,,,,3,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,08:00,,,249,2,,502,2,,106,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,09:00,,,438,2,,623,2,,160,2,,,,,,,,,,,,,,,,,,,,5,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,10:00,,,637,2,,794,2,,178,2,,,,,,,,,,,,,,,,,,,,10,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,11:00,,,758,2,,876,2,,170,2,,,,,,,,,,,,,,,,,,,,14,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,12:00,,,815,2,,884,2,,180,2,,,,,,,,,,,,,,,,,,,,15,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,13:00,,,812,2,,876,2,,182,2,,,,,,,,,,,,,,,,,,,,18,,,,,,20,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,14:00,,,746,2,,850,2,,176,2,,,,,,,,,,,,,,,,,,,,20,,,,,,17,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,15:00,,,626,2,,790,2,,170,2,,,,,,,,,,,,,,,,,,,,20,,,,,,17,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,16:00,,,438,2,,618,2,,163,2,,,,,,,,,,,,,,,,,,,,20,,,,,,20,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,17:00,,,226,2,,331,2,,132,2,,,,,,,,,,,,,,,,,,,,19,,,,,,28,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,18:00,,,51,2,,47,2,,46,2,,,,,,,,,,,,,,,,,,,,15,,,,,,38,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,14,,,,,,38,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,07:00,,,58,2,,64,2,,51,2,,,,,,,,,,,,,,,,,,,,6,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,08:00,,,143,2,,55,2,,127,2,,,,,,,,,,,,,,,,,,,,6,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,09:00,,,233,2,,65,2,,204,2,,,,,,,,,,,,,,,,,,,,8,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,10:00,,,214,2,,10,2,,208,2,,,,,,,,,,,,,,,,,,,,12,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,11:00,,,267,2,,12,2,,259,2,,,,,,,,,,,,,,,,,,,,12,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,12:00,,,281,2,,11,2,,273,2,,,,,,,,,,,,,,,,,,,,12,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,13:00,,,206,2,,2,2,,205,2,,,,,,,,,,,,,,,,,,,,14,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,14:00,,,187,2,,2,2,,186,2,,,,,,,,,,,,,,,,,,,,15,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,15:00,,,150,2,,0,2,,150,2,,,,,,,,,,,,,,,,,,,,15,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,16:00,,,97,2,,0,2,,97,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,17:00,,,48,2,,0,2,,48,2,,,,,,,,,,,,,,,,,,,,12,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,18:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,12,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,06:00,,,2,2,,2,2,,2,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,07:00,,,72,2,,89,2,,62,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,08:00,,,203,2,,188,2,,147,2,,,,,,,,,,,,,,,,,,,,11,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,09:00,,,469,2,,545,2,,220,2,,,,,,,,,,,,,,,,,,,,12,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,10:00,,,646,2,,805,2,,172,2,,,,,,,,,,,,,,,,,,,,16,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,11:00,,,770,2,,891,2,,163,2,,,,,,,,,,,,,,,,,,,,16,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,12:00,,,829,2,,904,2,,170,2,,,,,,,,,,,,,,,,,,,,17,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,13:00,,,828,2,,872,2,,193,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,14:00,,,722,2,,737,2,,222,2,,,,,,,,,,,,,,,,,,,,21,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,15:00,,,571,2,,648,2,,192,2,,,,,,,,,,,,,,,,,,,,21,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,16:00,,,423,2,,572,2,,164,2,,,,,,,,,,,,,,,,,,,,22,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,17:00,,,225,2,,279,2,,144,2,,,,,,,,,,,,,,,,,,,,22,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,18:00,,,49,2,,30,2,,46,2,,,,,,,,,,,,,,,,,,,,19,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,17,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+03/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,07:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,08:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,09:00,,,77,2,,0,2,,77,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,10:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,11:00,,,147,2,,25,2,,130,2,,,,,,,,,,,,,,,,,,,,13,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,12:00,,,607,2,,349,2,,351,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,13:00,,,169,2,,24,2,,151,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,14:00,,,183,2,,9,2,,177,2,,,,,,,,,,,,,,,,,,,,15,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,15:00,,,108,2,,1,2,,107,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,16:00,,,78,2,,0,2,,78,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,17:00,,,56,2,,0,2,,56,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,18:00,,,28,2,,0,2,,28,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,06:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,07:00,,,63,2,,53,2,,56,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,08:00,,,177,2,,143,2,,133,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,09:00,,,216,2,,33,2,,201,2,,,,,,,,,,,,,,,,,,,,3,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,10:00,,,250,2,,23,2,,236,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,11:00,,,355,2,,56,2,,316,2,,,,,,,,,,,,,,,,,,,,5,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,12:00,,,414,2,,88,2,,349,2,,,,,,,,,,,,,,,,,,,,5,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,13:00,,,430,2,,109,2,,350,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,14:00,,,491,2,,241,2,,325,2,,,,,,,,,,,,,,,,,,,,7,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,15:00,,,593,2,,680,2,,189,2,,,,,,,,,,,,,,,,,,,,8,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,16:00,,,440,2,,678,2,,127,2,,,,,,,,,,,,,,,,,,,,9,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,17:00,,,245,2,,423,2,,118,2,,,,,,,,,,,,,,,,,,,,9,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,18:00,,,64,2,,77,2,,55,2,,,,,,,,,,,,,,,,,,,,7,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,19:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,5,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,07:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,08:00,,,59,2,,0,2,,59,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,09:00,,,91,2,,0,2,,91,2,,,,,,,,,,,,,,,,,,,,5,,,,,,75,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,10:00,,,100,2,,0,2,,100,2,,,,,,,,,,,,,,,,,,,,8,,,,,,72,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,11:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,7,,,,,,75,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,12:00,,,123,2,,0,2,,123,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,13:00,,,129,2,,0,2,,129,2,,,,,,,,,,,,,,,,,,,,6,,,,,,91,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,14:00,,,113,2,,0,2,,113,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,15:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,16:00,,,83,2,,0,2,,83,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,17:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,18:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,76,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,73,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,07:00,,,57,2,,39,2,,52,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,08:00,,,133,2,,37,2,,121,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,09:00,,,349,2,,256,2,,226,2,,,,,,,,,,,,,,,,,,,,0,,,,,,64,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,10:00,,,495,2,,365,2,,273,2,,,,,,,,,,,,,,,,,,,,1,,,,,,57,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,11:00,,,743,2,,730,2,,232,2,,,,,,,,,,,,,,,,,,,,1,,,,,,53,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,12:00,,,810,2,,897,2,,140,2,,,,,,,,,,,,,,,,,,,,1,,,,,,47,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,13:00,,,811,2,,925,2,,121,2,,,,,,,,,,,,,,,,,,,,4,,,,,,42,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,14:00,,,754,2,,930,2,,107,2,,,,,,,,,,,,,,,,,,,,3,,,,,,41,,,,,,,,,8,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,15:00,,,640,2,,895,2,,102,2,,,,,,,,,,,,,,,,,,,,4,,,,,,39,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,16:00,,,481,2,,823,2,,95,2,,,,,,,,,,,,,,,,,,,,5,,,,,,37,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,17:00,,,288,2,,654,2,,87,2,,,,,,,,,,,,,,,,,,,,5,,,,,,40,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,18:00,,,94,2,,267,2,,60,2,,,,,,,,,,,,,,,,,,,,3,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,19:00,,,3,2,,9,2,,3,2,,,,,,,,,,,,,,,,,,,,3,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+03/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,06:00,,,3,2,,2,2,,3,2,,,,,,,,,,,,,,,,,,,,0,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,07:00,,,96,2,,214,2,,65,2,,,,,,,,,,,,,,,,,,,,0,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,08:00,,,275,2,,468,2,,123,2,,,,,,,,,,,,,,,,,,,,0,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,09:00,,,495,2,,723,2,,145,2,,,,,,,,,,,,,,,,,,,,1,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,10:00,,,656,2,,888,2,,111,2,,,,,,,,,,,,,,,,,,,,6,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,11:00,,,771,2,,942,2,,106,2,,,,,,,,,,,,,,,,,,,,8,,,,,,41,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,12:00,,,818,2,,940,2,,111,2,,,,,,,,,,,,,,,,,,,,9,,,,,,35,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,13:00,,,799,2,,902,2,,123,2,,,,,,,,,,,,,,,,,,,,13,,,,,,31,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,14:00,,,731,2,,830,2,,150,2,,,,,,,,,,,,,,,,,,,,14,,,,,,30,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,15:00,,,608,2,,750,2,,154,2,,,,,,,,,,,,,,,,,,,,14,,,,,,28,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,16:00,,,478,2,,763,2,,117,2,,,,,,,,,,,,,,,,,,,,16,,,,,,27,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,17:00,,,286,2,,592,2,,102,2,,,,,,,,,,,,,,,,,,,,16,,,,,,30,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,18:00,,,93,2,,226,2,,64,2,,,,,,,,,,,,,,,,,,,,14,,,,,,33,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,19:00,,,2,2,,5,2,,2,2,,,,,,,,,,,,,,,,,,,,14,,,,,,34,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,35,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,39,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,45,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,49,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,59,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,62,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,06:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,07:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,08:00,,,133,2,,35,2,,122,2,,,,,,,,,,,,,,,,,,,,9,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,09:00,,,351,2,,208,2,,249,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,10:00,,,348,2,,143,2,,260,2,,,,,,,,,,,,,,,,,,,,12,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,11:00,,,257,2,,12,2,,248,2,,,,,,,,,,,,,,,,,,,,13,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,12:00,,,264,2,,7,2,,259,2,,,,,,,,,,,,,,,,,,,,14,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,13:00,,,182,2,,2,2,,180,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,14:00,,,161,2,,1,2,,160,2,,,,,,,,,,,,,,,,,,,,16,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,15:00,,,165,2,,2,2,,164,2,,,,,,,,,,,,,,,,,,,,16,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,16:00,,,106,2,,0,2,,106,2,,,,,,,,,,,,,,,,,,,,15,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,17:00,,,47,2,,0,2,,47,2,,,,,,,,,,,,,,,,,,,,15,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,18:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+03/31/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+03/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+03/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+03/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,06:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,1,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,07:00,,,28,2,,0,2,,28,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,08:00,,,105,2,,3,2,,104,2,,,,,,,,,,,,,,,,,,,,1,,,,,,100,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,09:00,,,146,2,,3,2,,144,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,10:00,,,133,2,,0,2,,133,2,,,,,,,,,,,,,,,,,,,,0,,,,,,98,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,11:00,,,146,2,,0,2,,146,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,12:00,,,212,2,,5,2,,208,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,13:00,,,139,2,,0,2,,139,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,14:00,,,133,2,,0,2,,133,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,15:00,,,211,2,,11,2,,204,2,,,,,,,,,,,,,,,,,,,,1,,,,,,69,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,16:00,,,186,2,,10,2,,181,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,17:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,0,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,18:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,06:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,07:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,08:00,,,117,2,,16,2,,112,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,09:00,,,314,2,,162,2,,233,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,10:00,,,417,2,,169,2,,311,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,11:00,,,637,2,,443,2,,318,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,47,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,12:00,,,685,2,,463,2,,331,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,13:00,,,752,2,,588,2,,304,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,44,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,14:00,,,594,2,,384,2,,321,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,15:00,,,482,2,,321,2,,284,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,16:00,,,295,2,,122,2,,236,2,,,,,,,,,,,,,,,,,,,,0,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,17:00,,,172,2,,82,2,,146,2,,,,,,,,,,,,,,,,,,,,0,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,18:00,,,52,2,,8,2,,51,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,19:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,0,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,06:00,,,8,2,,11,2,,8,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,07:00,,,120,2,,293,2,,71,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,08:00,,,314,2,,555,2,,122,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,09:00,,,532,2,,768,2,,144,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,10:00,,,710,2,,872,2,,157,2,,,,,,,,,,,,,,,,,,,,1,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,11:00,,,830,2,,896,2,,181,2,,,,,,,,,,,,,,,,,,,,2,,,,,,32,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,12:00,,,890,2,,910,2,,190,2,,,,,,,,,,,,,,,,,,,,3,,,,,,29,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,13:00,,,886,2,,910,2,,188,2,,,,,,,,,,,,,,,,,,,,6,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,14:00,,,818,2,,894,2,,178,2,,,,,,,,,,,,,,,,,,,,5,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,15:00,,,695,2,,860,2,,161,2,,,,,,,,,,,,,,,,,,,,5,,,,,,32,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,16:00,,,525,2,,793,2,,139,2,,,,,,,,,,,,,,,,,,,,7,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,17:00,,,313,2,,618,2,,112,2,,,,,,,,,,,,,,,,,,,,6,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,18:00,,,109,2,,255,2,,72,2,,,,,,,,,,,,,,,,,,,,6,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,19:00,,,4,2,,7,2,,4,2,,,,,,,,,,,,,,,,,,,,6,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+04/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,55,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,65,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,06:00,,,12,2,,9,2,,12,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,07:00,,,117,2,,204,2,,82,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,08:00,,,283,2,,372,2,,152,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,09:00,,,405,2,,336,2,,234,2,,,,,,,,,,,,,,,,,,,,2,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,10:00,,,445,2,,195,2,,320,2,,,,,,,,,,,,,,,,,,,,6,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,11:00,,,473,2,,149,2,,364,2,,,,,,,,,,,,,,,,,,,,7,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,12:00,,,714,2,,519,2,,312,2,,,,,,,,,,,,,,,,,,,,7,,,,,,40,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,13:00,,,791,2,,734,2,,225,2,,,,,,,,,,,,,,,,,,,,10,,,,,,38,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,14:00,,,752,2,,804,2,,173,2,,,,,,,,,,,,,,,,,,,,10,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,15:00,,,634,2,,766,2,,156,2,,,,,,,,,,,,,,,,,,,,10,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,16:00,,,474,2,,658,2,,151,2,,,,,,,,,,,,,,,,,,,,11,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,17:00,,,285,2,,445,2,,139,2,,,,,,,,,,,,,,,,,,,,11,,,,,,42,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,18:00,,,99,2,,163,2,,75,2,,,,,,,,,,,,,,,,,,,,9,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,19:00,,,3,2,,3,2,,3,2,,,,,,,,,,,,,,,,,,,,9,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,06:00,,,13,2,,12,2,,13,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,07:00,,,136,2,,282,2,,86,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,08:00,,,328,2,,560,2,,128,2,,,,,,,,,,,,,,,,,,,,4,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,09:00,,,516,2,,719,2,,146,2,,,,,,,,,,,,,,,,,,,,5,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,10:00,,,678,2,,835,2,,140,2,,,,,,,,,,,,,,,,,,,,8,,,,,,42,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,11:00,,,788,2,,837,2,,174,2,,,,,,,,,,,,,,,,,,,,8,,,,,,40,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,12:00,,,778,2,,714,2,,222,2,,,,,,,,,,,,,,,,,,,,8,,,,,,37,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,13:00,,,764,2,,699,2,,222,2,,,,,,,,,,,,,,,,,,,,11,,,,,,35,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,14:00,,,701,2,,630,2,,245,2,,,,,,,,,,,,,,,,,,,,11,,,,,,35,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,15:00,,,570,2,,517,2,,245,2,,,,,,,,,,,,,,,,,,,,12,,,,,,33,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,16:00,,,474,2,,600,2,,177,2,,,,,,,,,,,,,,,,,,,,13,,,,,,32,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,17:00,,,278,2,,415,2,,140,2,,,,,,,,,,,,,,,,,,,,13,,,,,,35,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,18:00,,,80,2,,85,2,,67,2,,,,,,,,,,,,,,,,,,,,11,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,19:00,,,3,2,,2,2,,3,2,,,,,,,,,,,,,,,,,,,,10,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,06:00,,,18,2,,66,2,,18,2,,,,,,,,,,,,,,,,,,,,4,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,07:00,,,154,2,,457,2,,70,2,,,,,,,,,,,,,,,,,,,,4,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,08:00,,,355,2,,719,2,,95,2,,,,,,,,,,,,,,,,,,,,4,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,09:00,,,517,2,,768,2,,118,2,,,,,,,,,,,,,,,,,,,,5,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,10:00,,,687,2,,873,2,,121,2,,,,,,,,,,,,,,,,,,,,8,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,11:00,,,806,2,,947,2,,107,2,,,,,,,,,,,,,,,,,,,,9,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,12:00,,,861,2,,961,2,,109,2,,,,,,,,,,,,,,,,,,,,10,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,13:00,,,856,2,,955,2,,112,2,,,,,,,,,,,,,,,,,,,,12,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,14:00,,,791,2,,936,2,,110,2,,,,,,,,,,,,,,,,,,,,12,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,15:00,,,673,2,,900,2,,105,2,,,,,,,,,,,,,,,,,,,,13,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,16:00,,,512,2,,833,2,,97,2,,,,,,,,,,,,,,,,,,,,14,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,17:00,,,323,2,,682,2,,94,2,,,,,,,,,,,,,,,,,,,,14,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,18:00,,,120,2,,361,2,,64,2,,,,,,,,,,,,,,,,,,,,11,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,19:00,,,5,2,,13,2,,5,2,,,,,,,,,,,,,,,,,,,,11,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,06:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,6,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,07:00,,,121,2,,239,2,,76,2,,,,,,,,,,,,,,,,,,,,6,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,08:00,,,327,2,,538,2,,130,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,09:00,,,495,2,,668,2,,144,2,,,,,,,,,,,,,,,,,,,,9,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,10:00,,,630,2,,655,2,,202,2,,,,,,,,,,,,,,,,,,,,12,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,11:00,,,538,2,,266,2,,340,2,,,,,,,,,,,,,,,,,,,,13,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,12:00,,,619,2,,401,2,,304,2,,,,,,,,,,,,,,,,,,,,13,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,13:00,,,781,2,,714,2,,222,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,14:00,,,749,2,,810,2,,157,2,,,,,,,,,,,,,,,,,,,,15,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,15:00,,,669,2,,853,2,,127,2,,,,,,,,,,,,,,,,,,,,15,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,16:00,,,512,2,,806,2,,108,2,,,,,,,,,,,,,,,,,,,,16,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,17:00,,,322,2,,659,2,,98,2,,,,,,,,,,,,,,,,,,,,15,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,18:00,,,125,2,,347,2,,70,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,19:00,,,8,2,,15,2,,8,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,82,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,06:00,,,21,2,,84,2,,20,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,07:00,,,157,2,,413,2,,77,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,08:00,,,361,2,,685,2,,106,2,,,,,,,,,,,,,,,,,,,,8,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,09:00,,,548,2,,835,2,,105,2,,,,,,,,,,,,,,,,,,,,10,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,10:00,,,705,2,,909,2,,107,2,,,,,,,,,,,,,,,,,,,,15,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,11:00,,,817,2,,952,2,,106,2,,,,,,,,,,,,,,,,,,,,17,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,12:00,,,870,2,,956,2,,114,2,,,,,,,,,,,,,,,,,,,,17,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,13:00,,,857,2,,939,2,,118,2,,,,,,,,,,,,,,,,,,,,20,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,14:00,,,789,2,,911,2,,120,2,,,,,,,,,,,,,,,,,,,,21,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,15:00,,,673,2,,882,2,,110,2,,,,,,,,,,,,,,,,,,,,21,,,,,,38,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,16:00,,,519,2,,831,2,,99,2,,,,,,,,,,,,,,,,,,,,22,,,,,,38,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,17:00,,,329,2,,689,2,,93,2,,,,,,,,,,,,,,,,,,,,22,,,,,,46,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,18:00,,,129,2,,360,2,,70,2,,,,,,,,,,,,,,,,,,,,19,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,19:00,,,8,2,,11,2,,8,2,,,,,,,,,,,,,,,,,,,,18,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,06:00,,,21,2,,57,2,,20,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,07:00,,,157,2,,322,2,,93,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,08:00,,,357,2,,608,2,,128,2,,,,,,,,,,,,,,,,,,,,10,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,09:00,,,545,2,,789,2,,123,2,,,,,,,,,,,,,,,,,,,,11,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,10:00,,,704,2,,880,2,,121,2,,,,,,,,,,,,,,,,,,,,16,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,11:00,,,816,2,,932,2,,116,2,,,,,,,,,,,,,,,,,,,,18,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,12:00,,,872,2,,950,2,,117,2,,,,,,,,,,,,,,,,,,,,19,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,13:00,,,866,2,,949,2,,116,2,,,,,,,,,,,,,,,,,,,,22,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,14:00,,,799,2,,927,2,,115,2,,,,,,,,,,,,,,,,,,,,22,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,15:00,,,678,2,,820,2,,151,2,,,,,,,,,,,,,,,,,,,,23,,,,,,29,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,16:00,,,472,2,,646,2,,144,2,,,,,,,,,,,,,,,,,,,,23,,,,,,29,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,17:00,,,326,2,,647,2,,102,2,,,,,,,,,,,,,,,,,,,,23,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,18:00,,,133,2,,364,2,,72,2,,,,,,,,,,,,,,,,,,,,20,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,19:00,,,11,2,,12,2,,11,2,,,,,,,,,,,,,,,,,,,,19,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,06:00,,,14,2,,4,2,,14,2,,,,,,,,,,,,,,,,,,,,11,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,07:00,,,137,2,,181,2,,100,2,,,,,,,,,,,,,,,,,,,,11,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,08:00,,,349,2,,499,2,,158,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,09:00,,,536,2,,702,2,,157,2,,,,,,,,,,,,,,,,,,,,13,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,10:00,,,700,2,,830,2,,146,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,11:00,,,817,2,,924,2,,119,2,,,,,,,,,,,,,,,,,,,,18,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,12:00,,,874,2,,941,2,,122,2,,,,,,,,,,,,,,,,,,,,19,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,13:00,,,863,2,,931,2,,124,2,,,,,,,,,,,,,,,,,,,,22,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,14:00,,,797,2,,913,2,,120,2,,,,,,,,,,,,,,,,,,,,22,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,15:00,,,682,2,,878,2,,115,2,,,,,,,,,,,,,,,,,,,,23,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,16:00,,,523,2,,807,2,,110,2,,,,,,,,,,,,,,,,,,,,24,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,17:00,,,329,2,,593,2,,122,2,,,,,,,,,,,,,,,,,,,,24,,,,,,47,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,18:00,,,124,2,,264,2,,79,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,19:00,,,11,2,,8,2,,11,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,06:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,10,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,07:00,,,101,2,,55,2,,89,2,,,,,,,,,,,,,,,,,,,,10,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,08:00,,,301,2,,297,2,,186,2,,,,,,,,,,,,,,,,,,,,12,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,09:00,,,483,2,,488,2,,217,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,10:00,,,640,2,,620,2,,224,2,,,,,,,,,,,,,,,,,,,,16,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,11:00,,,758,2,,669,2,,250,2,,,,,,,,,,,,,,,,,,,,17,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,12:00,,,683,2,,431,2,,337,2,,,,,,,,,,,,,,,,,,,,17,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,13:00,,,751,2,,584,2,,285,2,,,,,,,,,,,,,,,,,,,,20,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,14:00,,,754,2,,693,2,,238,2,,,,,,,,,,,,,,,,,,,,20,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,15:00,,,518,2,,358,2,,286,2,,,,,,,,,,,,,,,,,,,,21,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,16:00,,,205,2,,33,2,,188,2,,,,,,,,,,,,,,,,,,,,20,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,17:00,,,80,2,,0,2,,80,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,18:00,,,25,2,,0,2,,25,2,,,,,,,,,,,,,,,,,,,,17,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,19:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,16,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,06:00,,,23,2,,52,2,,21,2,,,,,,,,,,,,,,,,,,,,9,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,07:00,,,139,2,,204,2,,95,2,,,,,,,,,,,,,,,,,,,,9,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,08:00,,,383,2,,634,2,,134,2,,,,,,,,,,,,,,,,,,,,11,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,09:00,,,569,2,,850,2,,102,2,,,,,,,,,,,,,,,,,,,,12,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,10:00,,,715,2,,895,2,,110,2,,,,,,,,,,,,,,,,,,,,14,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,11:00,,,804,2,,775,2,,212,2,,,,,,,,,,,,,,,,,,,,15,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,12:00,,,566,2,,297,2,,326,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,13:00,,,301,2,,20,2,,285,2,,,,,,,,,,,,,,,,,,,,16,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,14:00,,,245,2,,11,2,,237,2,,,,,,,,,,,,,,,,,,,,16,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,15:00,,,148,2,,0,2,,148,2,,,,,,,,,,,,,,,,,,,,15,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,16:00,,,127,2,,0,2,,127,2,,,,,,,,,,,,,,,,,,,,15,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,17:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,18:00,,,28,2,,0,2,,28,2,,,,,,,,,,,,,,,,,,,,15,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,19:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,14,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,06:00,,,31,2,,130,2,,26,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,07:00,,,186,2,,505,2,,74,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,08:00,,,393,2,,758,2,,92,2,,,,,,,,,,,,,,,,,,,,8,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,09:00,,,578,2,,869,2,,97,2,,,,,,,,,,,,,,,,,,,,10,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,10:00,,,731,2,,923,2,,103,2,,,,,,,,,,,,,,,,,,,,14,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,11:00,,,838,2,,953,2,,106,2,,,,,,,,,,,,,,,,,,,,15,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,12:00,,,891,2,,964,2,,110,2,,,,,,,,,,,,,,,,,,,,15,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,13:00,,,883,2,,960,2,,110,2,,,,,,,,,,,,,,,,,,,,17,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,14:00,,,815,2,,943,2,,106,2,,,,,,,,,,,,,,,,,,,,17,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,15:00,,,700,2,,916,2,,99,2,,,,,,,,,,,,,,,,,,,,17,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,16:00,,,540,2,,795,2,,125,2,,,,,,,,,,,,,,,,,,,,18,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,17:00,,,322,2,,560,2,,120,2,,,,,,,,,,,,,,,,,,,,17,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,18:00,,,122,2,,232,2,,80,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,19:00,,,5,2,,5,2,,5,2,,,,,,,,,,,,,,,,,,,,15,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,06:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,9,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,07:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,9,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,08:00,,,238,2,,201,2,,157,2,,,,,,,,,,,,,,,,,,,,10,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,09:00,,,484,2,,462,2,,226,2,,,,,,,,,,,,,,,,,,,,10,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,10:00,,,689,2,,684,2,,221,2,,,,,,,,,,,,,,,,,,,,14,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,11:00,,,731,2,,597,2,,270,2,,,,,,,,,,,,,,,,,,,,15,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,12:00,,,888,2,,864,2,,185,2,,,,,,,,,,,,,,,,,,,,15,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,13:00,,,872,2,,898,2,,146,2,,,,,,,,,,,,,,,,,,,,18,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,14:00,,,783,2,,726,2,,234,2,,,,,,,,,,,,,,,,,,,,18,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,15:00,,,500,2,,321,2,,288,2,,,,,,,,,,,,,,,,,,,,18,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,16:00,,,270,2,,86,2,,225,2,,,,,,,,,,,,,,,,,,,,18,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,17:00,,,78,2,,1,2,,78,2,,,,,,,,,,,,,,,,,,,,17,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,18:00,,,34,2,,0,2,,34,2,,,,,,,,,,,,,,,,,,,,15,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,19:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,06:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,9,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,07:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,9,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,08:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,8,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,09:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,10:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,11:00,,,136,2,,0,2,,136,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,12:00,,,170,2,,0,2,,170,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,13:00,,,167,2,,0,2,,167,2,,,,,,,,,,,,,,,,,,,,9,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,14:00,,,157,2,,0,2,,157,2,,,,,,,,,,,,,,,,,,,,9,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,15:00,,,167,2,,0,2,,167,2,,,,,,,,,,,,,,,,,,,,9,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,16:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,17:00,,,81,2,,0,2,,81,2,,,,,,,,,,,,,,,,,,,,7,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,18:00,,,25,2,,0,2,,25,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,19:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,5,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,06:00,,,38,2,,67,2,,34,2,,,,,,,,,,,,,,,,,,,,2,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,07:00,,,132,2,,138,2,,100,2,,,,,,,,,,,,,,,,,,,,2,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,08:00,,,99,2,,3,2,,98,2,,,,,,,,,,,,,,,,,,,,2,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,09:00,,,151,2,,0,2,,151,2,,,,,,,,,,,,,,,,,,,,2,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,10:00,,,221,2,,5,2,,218,2,,,,,,,,,,,,,,,,,,,,2,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,11:00,,,207,2,,1,2,,206,2,,,,,,,,,,,,,,,,,,,,2,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,12:00,,,176,2,,1,2,,175,2,,,,,,,,,,,,,,,,,,,,2,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,13:00,,,169,2,,0,2,,169,2,,,,,,,,,,,,,,,,,,,,2,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,14:00,,,143,2,,0,2,,143,2,,,,,,,,,,,,,,,,,,,,2,,,,,,99,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,15:00,,,118,2,,0,2,,118,2,,,,,,,,,,,,,,,,,,,,2,,,,,,100,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,16:00,,,90,2,,0,2,,90,2,,,,,,,,,,,,,,,,,,,,2,,,,,,99,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,17:00,,,59,2,,0,2,,59,2,,,,,,,,,,,,,,,,,,,,2,,,,,,100,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,18:00,,,35,2,,0,2,,35,2,,,,,,,,,,,,,,,,,,,,2,,,,,,100,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,19:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,2,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,06:00,,,13,2,,2,2,,13,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,07:00,,,114,2,,64,2,,99,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,08:00,,,169,2,,25,2,,159,2,,,,,,,,,,,,,,,,,,,,4,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,09:00,,,205,2,,12,2,,198,2,,,,,,,,,,,,,,,,,,,,3,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,10:00,,,320,2,,47,2,,287,2,,,,,,,,,,,,,,,,,,,,5,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,11:00,,,178,2,,3,2,,176,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,12:00,,,336,2,,77,2,,272,2,,,,,,,,,,,,,,,,,,,,6,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,13:00,,,408,2,,115,2,,314,2,,,,,,,,,,,,,,,,,,,,7,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,14:00,,,727,2,,513,2,,334,2,,,,,,,,,,,,,,,,,,,,8,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,15:00,,,349,2,,103,2,,280,2,,,,,,,,,,,,,,,,,,,,7,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,16:00,,,333,2,,149,2,,253,2,,,,,,,,,,,,,,,,,,,,8,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,17:00,,,171,2,,47,2,,154,2,,,,,,,,,,,,,,,,,,,,7,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,18:00,,,104,2,,100,2,,84,2,,,,,,,,,,,,,,,,,,,,6,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,19:00,,,9,2,,8,2,,9,2,,,,,,,,,,,,,,,,,,,,6,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,06:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,07:00,,,102,2,,77,2,,83,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,08:00,,,208,2,,110,2,,162,2,,,,,,,,,,,,,,,,,,,,5,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,09:00,,,299,2,,72,2,,258,2,,,,,,,,,,,,,,,,,,,,5,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,10:00,,,290,2,,35,2,,266,2,,,,,,,,,,,,,,,,,,,,8,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,11:00,,,600,2,,331,2,,340,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,12:00,,,707,2,,414,2,,364,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,13:00,,,400,2,,78,2,,336,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,14:00,,,337,2,,87,2,,270,2,,,,,,,,,,,,,,,,,,,,12,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,15:00,,,679,2,,663,2,,234,2,,,,,,,,,,,,,,,,,,,,12,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,16:00,,,549,2,,799,2,,119,2,,,,,,,,,,,,,,,,,,,,13,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,17:00,,,361,2,,658,2,,113,2,,,,,,,,,,,,,,,,,,,,12,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,18:00,,,157,2,,367,2,,84,2,,,,,,,,,,,,,,,,,,,,11,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,19:00,,,20,2,,50,2,,19,2,,,,,,,,,,,,,,,,,,,,10,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,06:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,07:00,,,90,2,,39,2,,80,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,08:00,,,252,2,,159,2,,184,2,,,,,,,,,,,,,,,,,,,,7,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,09:00,,,564,2,,596,2,,218,2,,,,,,,,,,,,,,,,,,,,8,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,10:00,,,713,2,,720,2,,206,2,,,,,,,,,,,,,,,,,,,,12,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,11:00,,,762,2,,584,2,,300,2,,,,,,,,,,,,,,,,,,,,14,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,12:00,,,486,2,,176,2,,340,2,,,,,,,,,,,,,,,,,,,,14,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,13:00,,,660,2,,379,2,,347,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,14:00,,,783,2,,672,2,,264,2,,,,,,,,,,,,,,,,,,,,15,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,15:00,,,576,2,,411,2,,299,2,,,,,,,,,,,,,,,,,,,,15,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,16:00,,,247,2,,98,2,,194,2,,,,,,,,,,,,,,,,,,,,16,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,17:00,,,224,2,,169,2,,160,2,,,,,,,,,,,,,,,,,,,,16,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,18:00,,,81,2,,29,2,,75,2,,,,,,,,,,,,,,,,,,,,14,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,19:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,06:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,7,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,07:00,,,50,2,,0,2,,50,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,08:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,6,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,09:00,,,124,2,,0,2,,124,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,10:00,,,126,2,,0,2,,126,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,11:00,,,149,2,,0,2,,149,2,,,,,,,,,,,,,,,,,,,,9,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,12:00,,,159,2,,1,2,,158,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,13:00,,,259,2,,15,2,,247,2,,,,,,,,,,,,,,,,,,,,11,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,14:00,,,476,2,,227,2,,300,2,,,,,,,,,,,,,,,,,,,,11,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,15:00,,,657,2,,530,2,,298,2,,,,,,,,,,,,,,,,,,,,12,,,,,,40,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,16:00,,,234,2,,78,2,,192,2,,,,,,,,,,,,,,,,,,,,11,,,,,,36,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,17:00,,,76,2,,3,2,,75,2,,,,,,,,,,,,,,,,,,,,11,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,18:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,9,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,19:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,8,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,06:00,,,32,2,,22,2,,30,2,,,,,,,,,,,,,,,,,,,,0,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,07:00,,,50,2,,3,2,,49,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,08:00,,,95,2,,0,2,,95,2,,,,,,,,,,,,,,,,,,,,0,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,09:00,,,114,2,,0,2,,114,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,10:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,0,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,11:00,,,146,2,,0,2,,146,2,,,,,,,,,,,,,,,,,,,,0,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,12:00,,,160,2,,0,2,,160,2,,,,,,,,,,,,,,,,,,,,0,,,,,,98,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,13:00,,,148,2,,0,2,,148,2,,,,,,,,,,,,,,,,,,,,0,,,,,,100,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,14:00,,,133,2,,0,2,,133,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,99,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,15:00,,,122,2,,0,2,,122,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,98,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,16:00,,,102,2,,0,2,,102,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,17:00,,,65,2,,0,2,,65,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,18:00,,,28,2,,0,2,,28,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,19:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,06:00,,,41,2,,28,2,,39,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,07:00,,,141,2,,101,2,,114,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,08:00,,,239,2,,99,2,,196,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,09:00,,,255,2,,37,2,,233,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,10:00,,,414,2,,104,2,,340,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,11:00,,,479,2,,112,2,,389,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,12:00,,,456,2,,74,2,,394,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,67,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,13:00,,,376,2,,32,2,,349,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,14:00,,,470,2,,118,2,,378,2,,,,,,,,,,,,,,,,,,,,0,,,,,,61,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,15:00,,,340,2,,45,2,,309,2,,,,,,,,,,,,,,,,,,,,0,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,16:00,,,181,2,,6,2,,178,2,,,,,,,,,,,,,,,,,,,,2,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,17:00,,,83,2,,0,2,,83,2,,,,,,,,,,,,,,,,,,,,2,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,18:00,,,28,2,,0,2,,28,2,,,,,,,,,,,,,,,,,,,,2,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,19:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,3,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,2,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,06:00,,,31,2,,3,2,,31,2,,,,,,,,,,,,,,,,,,,,4,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,07:00,,,129,2,,94,2,,104,2,,,,,,,,,,,,,,,,,,,,4,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,08:00,,,355,2,,365,2,,194,2,,,,,,,,,,,,,,,,,,,,4,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,09:00,,,628,2,,708,2,,206,2,,,,,,,,,,,,,,,,,,,,4,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,10:00,,,799,2,,869,2,,174,2,,,,,,,,,,,,,,,,,,,,7,,,,,,47,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,11:00,,,917,2,,902,2,,191,2,,,,,,,,,,,,,,,,,,,,8,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,12:00,,,938,2,,869,2,,204,2,,,,,,,,,,,,,,,,,,,,9,,,,,,38,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,13:00,,,957,2,,911,2,,194,2,,,,,,,,,,,,,,,,,,,,12,,,,,,35,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,14:00,,,892,2,,902,2,,185,2,,,,,,,,,,,,,,,,,,,,12,,,,,,36,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,15:00,,,757,2,,743,2,,247,2,,,,,,,,,,,,,,,,,,,,12,,,,,,35,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,16:00,,,426,2,,338,2,,239,2,,,,,,,,,,,,,,,,,,,,14,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,17:00,,,313,2,,416,2,,150,2,,,,,,,,,,,,,,,,,,,,14,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,18:00,,,167,2,,360,2,,90,2,,,,,,,,,,,,,,,,,,,,12,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,19:00,,,28,2,,84,2,,25,2,,,,,,,,,,,,,,,,,,,,11,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+04/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,06:00,,,46,2,,59,2,,41,2,,,,,,,,,,,,,,,,,,,,7,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,07:00,,,157,2,,134,2,,120,2,,,,,,,,,,,,,,,,,,,,8,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,08:00,,,205,2,,45,2,,185,2,,,,,,,,,,,,,,,,,,,,9,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,09:00,,,314,2,,65,2,,275,2,,,,,,,,,,,,,,,,,,,,11,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,10:00,,,599,2,,410,2,,302,2,,,,,,,,,,,,,,,,,,,,14,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,11:00,,,869,2,,827,2,,201,2,,,,,,,,,,,,,,,,,,,,16,,,,,,38,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,12:00,,,917,2,,881,2,,170,2,,,,,,,,,,,,,,,,,,,,16,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,13:00,,,846,2,,666,2,,286,2,,,,,,,,,,,,,,,,,,,,20,,,,,,29,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,14:00,,,345,2,,80,2,,282,2,,,,,,,,,,,,,,,,,,,,20,,,,,,28,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,15:00,,,308,2,,47,2,,276,2,,,,,,,,,,,,,,,,,,,,20,,,,,,27,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,16:00,,,173,2,,4,2,,171,2,,,,,,,,,,,,,,,,,,,,19,,,,,,26,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,17:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,19,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,18:00,,,68,2,,12,2,,65,2,,,,,,,,,,,,,,,,,,,,16,,,,,,38,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,19:00,,,19,2,,8,2,,19,2,,,,,,,,,,,,,,,,,,,,16,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,06:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,8,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,07:00,,,97,2,,4,2,,96,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,08:00,,,159,2,,4,2,,157,2,,,,,,,,,,,,,,,,,,,,9,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,09:00,,,297,2,,48,2,,268,2,,,,,,,,,,,,,,,,,,,,10,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,10:00,,,240,2,,17,2,,228,2,,,,,,,,,,,,,,,,,,,,14,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,11:00,,,166,2,,1,2,,165,2,,,,,,,,,,,,,,,,,,,,15,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,12:00,,,184,2,,1,2,,183,2,,,,,,,,,,,,,,,,,,,,16,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,13:00,,,176,2,,1,2,,175,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,14:00,,,137,2,,0,2,,137,2,,,,,,,,,,,,,,,,,,,,15,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,15:00,,,123,2,,0,2,,123,2,,,,,,,,,,,,,,,,,,,,14,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,16:00,,,104,2,,0,2,,104,2,,,,,,,,,,,,,,,,,,,,12,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,17:00,,,114,2,,0,2,,114,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,18:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,10,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,19:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,06:00,,,34,2,,15,2,,32,2,,,,,,,,,,,,,,,,,,,,0,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,07:00,,,75,2,,2,2,,74,2,,,,,,,,,,,,,,,,,,,,1,,,,,,59,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,08:00,,,150,2,,2,2,,149,2,,,,,,,,,,,,,,,,,,,,1,,,,,,59,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,09:00,,,301,2,,61,2,,264,2,,,,,,,,,,,,,,,,,,,,1,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,10:00,,,351,2,,38,2,,323,2,,,,,,,,,,,,,,,,,,,,3,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,11:00,,,316,2,,17,2,,302,2,,,,,,,,,,,,,,,,,,,,3,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,12:00,,,388,2,,30,2,,362,2,,,,,,,,,,,,,,,,,,,,3,,,,,,51,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,13:00,,,324,2,,15,2,,311,2,,,,,,,,,,,,,,,,,,,,5,,,,,,48,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,14:00,,,350,2,,31,2,,325,2,,,,,,,,,,,,,,,,,,,,5,,,,,,47,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,15:00,,,439,2,,181,2,,313,2,,,,,,,,,,,,,,,,,,,,6,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,16:00,,,522,2,,587,2,,192,2,,,,,,,,,,,,,,,,,,,,7,,,,,,42,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,17:00,,,376,2,,663,2,,110,2,,,,,,,,,,,,,,,,,,,,8,,,,,,44,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,18:00,,,191,2,,521,2,,74,2,,,,,,,,,,,,,,,,,,,,7,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,19:00,,,34,2,,141,2,,28,2,,,,,,,,,,,,,,,,,,,,7,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,05:00,,,2,2,,11,2,,2,2,,,,,,,,,,,,,,,,,,,,1,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,06:00,,,69,2,,221,2,,46,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,07:00,,,254,2,,553,2,,96,2,,,,,,,,,,,,,,,,,,,,4,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,08:00,,,446,2,,741,2,,106,2,,,,,,,,,,,,,,,,,,,,5,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,09:00,,,632,2,,847,2,,114,2,,,,,,,,,,,,,,,,,,,,6,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,10:00,,,778,2,,875,2,,136,2,,,,,,,,,,,,,,,,,,,,9,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,11:00,,,856,2,,805,2,,198,2,,,,,,,,,,,,,,,,,,,,10,,,,,,29,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,12:00,,,795,2,,565,2,,311,2,,,,,,,,,,,,,,,,,,,,10,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,13:00,,,767,2,,541,2,,308,2,,,,,,,,,,,,,,,,,,,,13,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,14:00,,,839,2,,831,2,,178,2,,,,,,,,,,,,,,,,,,,,14,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,15:00,,,737,2,,898,2,,110,2,,,,,,,,,,,,,,,,,,,,14,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,16:00,,,577,2,,778,2,,138,2,,,,,,,,,,,,,,,,,,,,16,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,17:00,,,347,2,,504,2,,143,2,,,,,,,,,,,,,,,,,,,,16,,,,,,28,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,18:00,,,188,2,,377,2,,102,2,,,,,,,,,,,,,,,,,,,,14,,,,,,33,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,19:00,,,35,2,,98,2,,30,2,,,,,,,,,,,,,,,,,,,,13,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,06:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,10,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,07:00,,,90,2,,3,2,,89,2,,,,,,,,,,,,,,,,,,,,10,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,08:00,,,126,2,,6,2,,123,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,09:00,,,304,2,,78,2,,256,2,,,,,,,,,,,,,,,,,,,,11,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,10:00,,,629,2,,342,2,,377,2,,,,,,,,,,,,,,,,,,,,14,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,11:00,,,474,2,,127,2,,370,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,12:00,,,560,2,,171,2,,413,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,13:00,,,275,2,,23,2,,255,2,,,,,,,,,,,,,,,,,,,,17,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,14:00,,,160,2,,1,2,,159,2,,,,,,,,,,,,,,,,,,,,17,,,,,,54,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,15:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,16,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,16:00,,,92,2,,0,2,,92,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,17:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,18:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,11,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,19:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,11,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,06:00,,,33,2,,0,2,,33,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,07:00,,,70,2,,0,2,,70,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,08:00,,,144,2,,3,2,,143,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,09:00,,,237,2,,12,2,,230,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,10:00,,,288,2,,12,2,,279,2,,,,,,,,,,,,,,,,,,,,11,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,11:00,,,285,2,,9,2,,278,2,,,,,,,,,,,,,,,,,,,,11,,,,,,89,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,12:00,,,230,2,,2,2,,228,2,,,,,,,,,,,,,,,,,,,,11,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,13:00,,,177,2,,1,2,,176,2,,,,,,,,,,,,,,,,,,,,11,,,,,,80,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,14:00,,,140,2,,0,2,,140,2,,,,,,,,,,,,,,,,,,,,13,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,15:00,,,124,2,,0,2,,124,2,,,,,,,,,,,,,,,,,,,,14,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,16:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,17:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,18:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,12,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,19:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,06:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,11,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,07:00,,,48,2,,0,2,,48,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,08:00,,,88,2,,0,2,,88,2,,,,,,,,,,,,,,,,,,,,10,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,09:00,,,152,2,,0,2,,152,2,,,,,,,,,,,,,,,,,,,,10,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,10:00,,,185,2,,1,2,,184,2,,,,,,,,,,,,,,,,,,,,11,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,11:00,,,211,2,,4,2,,208,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,12:00,,,164,2,,1,2,,163,2,,,,,,,,,,,,,,,,,,,,10,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,13:00,,,163,2,,0,2,,163,2,,,,,,,,,,,,,,,,,,,,10,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,14:00,,,172,2,,0,2,,172,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,15:00,,,154,2,,0,2,,154,2,,,,,,,,,,,,,,,,,,,,10,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,16:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,9,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,17:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,18:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,5,,,,,,92,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,19:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,4,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+04/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,82,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,06:00,,,33,2,,3,2,,33,2,,,,,,,,,,,,,,,,,,,,2,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,07:00,,,149,2,,68,2,,128,2,,,,,,,,,,,,,,,,,,,,2,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,08:00,,,244,2,,64,2,,214,2,,,,,,,,,,,,,,,,,,,,2,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,09:00,,,325,2,,73,2,,279,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,10:00,,,547,2,,292,2,,329,2,,,,,,,,,,,,,,,,,,,,5,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,11:00,,,864,2,,751,2,,241,2,,,,,,,,,,,,,,,,,,,,5,,,,,,44,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,12:00,,,941,2,,924,2,,139,2,,,,,,,,,,,,,,,,,,,,6,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,13:00,,,930,2,,950,2,,113,2,,,,,,,,,,,,,,,,,,,,8,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,14:00,,,864,2,,872,2,,162,2,,,,,,,,,,,,,,,,,,,,9,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,15:00,,,640,2,,600,2,,215,2,,,,,,,,,,,,,,,,,,,,9,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,16:00,,,532,2,,630,2,,169,2,,,,,,,,,,,,,,,,,,,,11,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,17:00,,,390,2,,591,2,,144,2,,,,,,,,,,,,,,,,,,,,10,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,18:00,,,168,2,,326,2,,90,2,,,,,,,,,,,,,,,,,,,,9,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,19:00,,,38,2,,146,2,,29,2,,,,,,,,,,,,,,,,,,,,10,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,06:00,,,59,2,,64,2,,51,2,,,,,,,,,,,,,,,,,,,,7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,07:00,,,245,2,,406,2,,121,2,,,,,,,,,,,,,,,,,,,,7,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,08:00,,,422,2,,496,2,,186,2,,,,,,,,,,,,,,,,,,,,9,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,09:00,,,388,2,,206,2,,259,2,,,,,,,,,,,,,,,,,,,,10,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,10:00,,,273,2,,33,2,,248,2,,,,,,,,,,,,,,,,,,,,14,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,11:00,,,211,2,,2,2,,209,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,12:00,,,231,2,,3,2,,228,2,,,,,,,,,,,,,,,,,,,,15,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,13:00,,,300,2,,61,2,,247,2,,,,,,,,,,,,,,,,,,,,16,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,14:00,,,779,2,,615,2,,282,2,,,,,,,,,,,,,,,,,,,,15,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,15:00,,,727,2,,792,2,,164,2,,,,,,,,,,,,,,,,,,,,16,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,16:00,,,582,2,,794,2,,123,2,,,,,,,,,,,,,,,,,,,,17,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,17:00,,,399,2,,702,2,,105,2,,,,,,,,,,,,,,,,,,,,16,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,18:00,,,210,2,,470,2,,96,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,19:00,,,35,2,,66,2,,31,2,,,,,,,,,,,,,,,,,,,,14,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,06:00,,,54,2,,37,2,,49,2,,,,,,,,,,,,,,,,,,,,7,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,07:00,,,115,2,,15,2,,110,2,,,,,,,,,,,,,,,,,,,,7,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,08:00,,,177,2,,8,2,,173,2,,,,,,,,,,,,,,,,,,,,7,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,09:00,,,237,2,,13,2,,229,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,10:00,,,183,2,,4,2,,180,2,,,,,,,,,,,,,,,,,,,,8,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,11:00,,,145,2,,0,2,,145,2,,,,,,,,,,,,,,,,,,,,8,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,12:00,,,148,2,,0,2,,148,2,,,,,,,,,,,,,,,,,,,,7,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,13:00,,,197,2,,3,2,,194,2,,,,,,,,,,,,,,,,,,,,8,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,14:00,,,193,2,,3,2,,191,2,,,,,,,,,,,,,,,,,,,,8,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,15:00,,,150,2,,0,2,,150,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,16:00,,,142,2,,0,2,,142,2,,,,,,,,,,,,,,,,,,,,8,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,17:00,,,119,2,,0,2,,119,2,,,,,,,,,,,,,,,,,,,,8,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,18:00,,,95,2,,31,2,,87,2,,,,,,,,,,,,,,,,,,,,9,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,19:00,,,19,2,,4,2,,19,2,,,,,,,,,,,,,,,,,,,,9,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,06:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,07:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,8,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,08:00,,,108,2,,0,2,,108,2,,,,,,,,,,,,,,,,,,,,9,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,09:00,,,134,2,,0,2,,134,2,,,,,,,,,,,,,,,,,,,,10,,,,,,76,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,10:00,,,161,2,,1,2,,160,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,11:00,,,242,2,,6,2,,237,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,12:00,,,337,2,,21,2,,319,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,13:00,,,326,2,,43,2,,289,2,,,,,,,,,,,,,,,,,,,,12,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,14:00,,,164,2,,1,2,,163,2,,,,,,,,,,,,,,,,,,,,12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,15:00,,,149,2,,0,2,,149,2,,,,,,,,,,,,,,,,,,,,12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,16:00,,,138,2,,0,2,,138,2,,,,,,,,,,,,,,,,,,,,12,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,17:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,18:00,,,46,2,,0,2,,46,2,,,,,,,,,,,,,,,,,,,,12,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,19:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,06:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,07:00,,,54,2,,0,2,,54,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,08:00,,,108,2,,2,2,,107,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,09:00,,,218,2,,15,2,,208,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,10:00,,,202,2,,2,2,,200,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,11:00,,,199,2,,1,2,,198,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,12:00,,,224,2,,1,2,,223,2,,,,,,,,,,,,,,,,,,,,11,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,13:00,,,169,2,,1,2,,168,2,,,,,,,,,,,,,,,,,,,,12,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,14:00,,,172,2,,1,2,,171,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,15:00,,,128,2,,0,2,,128,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,16:00,,,104,2,,0,2,,104,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,17:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,18:00,,,44,2,,0,2,,44,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,19:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,6,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,06:00,,,63,2,,44,2,,57,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,07:00,,,216,2,,249,2,,136,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,08:00,,,321,2,,225,2,,211,2,,,,,,,,,,,,,,,,,,,,7,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,09:00,,,540,2,,458,2,,247,2,,,,,,,,,,,,,,,,,,,,7,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,10:00,,,801,2,,819,2,,178,2,,,,,,,,,,,,,,,,,,,,9,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,11:00,,,900,2,,922,2,,123,2,,,,,,,,,,,,,,,,,,,,10,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,12:00,,,947,2,,935,2,,124,2,,,,,,,,,,,,,,,,,,,,10,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,13:00,,,938,2,,938,2,,120,2,,,,,,,,,,,,,,,,,,,,13,,,,,,39,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,14:00,,,871,2,,923,2,,116,2,,,,,,,,,,,,,,,,,,,,13,,,,,,37,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,15:00,,,753,2,,876,2,,121,2,,,,,,,,,,,,,,,,,,,,13,,,,,,34,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,16:00,,,582,2,,804,2,,108,2,,,,,,,,,,,,,,,,,,,,14,,,,,,33,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,17:00,,,401,2,,713,2,,94,2,,,,,,,,,,,,,,,,,,,,13,,,,,,37,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,18:00,,,221,2,,497,2,,94,2,,,,,,,,,,,,,,,,,,,,12,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,19:00,,,40,2,,68,2,,35,2,,,,,,,,,,,,,,,,,,,,11,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,05:00,,,6,2,,19,2,,6,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,06:00,,,113,2,,345,2,,63,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,07:00,,,276,2,,520,2,,108,2,,,,,,,,,,,,,,,,,,,,5,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,08:00,,,465,2,,637,2,,151,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,09:00,,,659,2,,747,2,,179,2,,,,,,,,,,,,,,,,,,,,8,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,10:00,,,680,2,,514,2,,288,2,,,,,,,,,,,,,,,,,,,,12,,,,,,39,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,11:00,,,680,2,,350,2,,384,2,,,,,,,,,,,,,,,,,,,,13,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,12:00,,,836,2,,579,2,,325,2,,,,,,,,,,,,,,,,,,,,13,,,,,,33,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,13:00,,,789,2,,499,2,,353,2,,,,,,,,,,,,,,,,,,,,15,,,,,,30,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,14:00,,,663,2,,391,2,,342,2,,,,,,,,,,,,,,,,,,,,16,,,,,,28,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,15:00,,,542,2,,354,2,,286,2,,,,,,,,,,,,,,,,,,,,16,,,,,,26,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,16:00,,,523,2,,519,2,,216,2,,,,,,,,,,,,,,,,,,,,16,,,,,,26,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,17:00,,,386,2,,478,2,,179,2,,,,,,,,,,,,,,,,,,,,16,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,18:00,,,103,2,,50,2,,90,2,,,,,,,,,,,,,,,,,,,,14,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,19:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,14,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,06:00,,,45,2,,2,2,,45,2,,,,,,,,,,,,,,,,,,,,8,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,07:00,,,85,2,,1,2,,85,2,,,,,,,,,,,,,,,,,,,,8,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,08:00,,,192,2,,12,2,,186,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,09:00,,,250,2,,16,2,,240,2,,,,,,,,,,,,,,,,,,,,9,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,10:00,,,374,2,,60,2,,328,2,,,,,,,,,,,,,,,,,,,,12,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,11:00,,,600,2,,242,2,,395,2,,,,,,,,,,,,,,,,,,,,12,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,12:00,,,527,2,,121,2,,420,2,,,,,,,,,,,,,,,,,,,,12,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,13:00,,,417,2,,32,2,,389,2,,,,,,,,,,,,,,,,,,,,13,,,,,,46,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,14:00,,,407,2,,45,2,,370,2,,,,,,,,,,,,,,,,,,,,13,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,15:00,,,332,2,,37,2,,305,2,,,,,,,,,,,,,,,,,,,,13,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,16:00,,,369,2,,135,2,,289,2,,,,,,,,,,,,,,,,,,,,13,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,17:00,,,259,2,,99,2,,216,2,,,,,,,,,,,,,,,,,,,,13,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,18:00,,,124,2,,47,2,,112,2,,,,,,,,,,,,,,,,,,,,12,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,19:00,,,24,2,,3,2,,24,2,,,,,,,,,,,,,,,,,,,,12,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,05:00,,,6,2,,7,2,,6,2,,,,,,,,,,,,,,,,,,,,5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,06:00,,,98,2,,182,2,,70,2,,,,,,,,,,,,,,,,,,,,8,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,07:00,,,289,2,,530,2,,114,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,08:00,,,481,2,,744,2,,110,2,,,,,,,,,,,,,,,,,,,,8,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,09:00,,,645,2,,787,2,,135,2,,,,,,,,,,,,,,,,,,,,9,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,10:00,,,790,2,,782,2,,190,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,11:00,,,823,2,,711,2,,219,2,,,,,,,,,,,,,,,,,,,,12,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,12:00,,,925,2,,810,2,,206,2,,,,,,,,,,,,,,,,,,,,12,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,13:00,,,774,2,,505,2,,330,2,,,,,,,,,,,,,,,,,,,,15,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,14:00,,,524,2,,296,2,,280,2,,,,,,,,,,,,,,,,,,,,15,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,15:00,,,546,2,,308,2,,322,2,,,,,,,,,,,,,,,,,,,,15,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,16:00,,,303,2,,73,2,,260,2,,,,,,,,,,,,,,,,,,,,15,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,17:00,,,175,2,,19,2,,167,2,,,,,,,,,,,,,,,,,,,,15,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,18:00,,,90,2,,7,2,,88,2,,,,,,,,,,,,,,,,,,,,13,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,19:00,,,22,2,,0,2,,22,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,13,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,7,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,06:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,9,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,07:00,,,103,2,,2,2,,102,2,,,,,,,,,,,,,,,,,,,,9,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,08:00,,,232,2,,51,2,,206,2,,,,,,,,,,,,,,,,,,,,10,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,09:00,,,425,2,,183,2,,306,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,10:00,,,585,2,,341,2,,322,2,,,,,,,,,,,,,,,,,,,,14,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,11:00,,,688,2,,384,2,,361,2,,,,,,,,,,,,,,,,,,,,14,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,12:00,,,666,2,,288,2,,410,2,,,,,,,,,,,,,,,,,,,,14,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,13:00,,,766,2,,442,2,,377,2,,,,,,,,,,,,,,,,,,,,16,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,14:00,,,617,2,,290,2,,377,2,,,,,,,,,,,,,,,,,,,,16,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,15:00,,,609,2,,397,2,,319,2,,,,,,,,,,,,,,,,,,,,16,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,16:00,,,549,2,,521,2,,237,2,,,,,,,,,,,,,,,,,,,,16,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,17:00,,,316,2,,253,2,,204,2,,,,,,,,,,,,,,,,,,,,15,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,18:00,,,126,2,,94,2,,101,2,,,,,,,,,,,,,,,,,,,,13,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,19:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,13,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,05:00,,,8,2,,5,2,,8,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,06:00,,,65,2,,46,2,,58,2,,,,,,,,,,,,,,,,,,,,7,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,07:00,,,126,2,,22,2,,119,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,08:00,,,190,2,,25,2,,177,2,,,,,,,,,,,,,,,,,,,,8,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,09:00,,,547,2,,443,2,,258,2,,,,,,,,,,,,,,,,,,,,9,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,10:00,,,747,2,,598,2,,285,2,,,,,,,,,,,,,,,,,,,,11,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,11:00,,,495,2,,327,2,,216,2,,,,,,,,,,,,,,,,,,,,11,,,,,,41,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,12:00,,,455,2,,162,2,,311,2,,,,,,,,,,,,,,,,,,,,12,,,,,,39,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,13:00,,,684,2,,320,2,,402,2,,,,,,,,,,,,,,,,,,,,13,,,,,,39,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,14:00,,,609,2,,310,2,,352,2,,,,,,,,,,,,,,,,,,,,13,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,15:00,,,404,2,,252,2,,219,2,,,,,,,,,,,,,,,,,,,,13,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,16:00,,,421,2,,238,2,,278,2,,,,,,,,,,,,,,,,,,,,12,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,17:00,,,215,2,,66,2,,186,2,,,,,,,,,,,,,,,,,,,,12,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,18:00,,,119,2,,46,2,,107,2,,,,,,,,,,,,,,,,,,,,10,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,19:00,,,19,2,,1,2,,19,2,,,,,,,,,,,,,,,,,,,,10,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,6,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,06:00,,,88,2,,186,2,,58,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,07:00,,,300,2,,524,2,,123,2,,,,,,,,,,,,,,,,,,,,8,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,08:00,,,489,2,,750,2,,109,2,,,,,,,,,,,,,,,,,,,,8,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,09:00,,,660,2,,816,2,,125,2,,,,,,,,,,,,,,,,,,,,8,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,10:00,,,803,2,,789,2,,192,2,,,,,,,,,,,,,,,,,,,,12,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,11:00,,,785,2,,569,2,,298,2,,,,,,,,,,,,,,,,,,,,13,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,12:00,,,879,2,,633,2,,314,2,,,,,,,,,,,,,,,,,,,,13,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,13:00,,,303,2,,60,2,,250,2,,,,,,,,,,,,,,,,,,,,15,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,14:00,,,495,2,,245,2,,292,2,,,,,,,,,,,,,,,,,,,,15,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,15:00,,,420,2,,139,2,,318,2,,,,,,,,,,,,,,,,,,,,15,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,16:00,,,392,2,,192,2,,276,2,,,,,,,,,,,,,,,,,,,,16,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,17:00,,,377,2,,404,2,,197,2,,,,,,,,,,,,,,,,,,,,16,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,18:00,,,152,2,,116,2,,120,2,,,,,,,,,,,,,,,,,,,,15,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,19:00,,,32,2,,12,2,,31,2,,,,,,,,,,,,,,,,,,,,14,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,05:00,,,11,2,,16,2,,11,2,,,,,,,,,,,,,,,,,,,,5,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,06:00,,,120,2,,345,2,,63,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,07:00,,,308,2,,637,2,,91,2,,,,,,,,,,,,,,,,,,,,8,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,08:00,,,502,2,,804,2,,92,2,,,,,,,,,,,,,,,,,,,,10,,,,,,58,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,09:00,,,675,2,,873,2,,100,2,,,,,,,,,,,,,,,,,,,,11,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,10:00,,,816,2,,913,2,,107,2,,,,,,,,,,,,,,,,,,,,14,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,11:00,,,914,2,,936,2,,111,2,,,,,,,,,,,,,,,,,,,,16,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,12:00,,,959,2,,942,2,,116,2,,,,,,,,,,,,,,,,,,,,17,,,,,,29,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,13:00,,,945,2,,933,2,,118,2,,,,,,,,,,,,,,,,,,,,19,,,,,,28,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,14:00,,,880,2,,918,2,,116,2,,,,,,,,,,,,,,,,,,,,18,,,,,,28,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,15:00,,,766,2,,888,2,,112,2,,,,,,,,,,,,,,,,,,,,19,,,,,,28,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,16:00,,,613,2,,837,2,,106,2,,,,,,,,,,,,,,,,,,,,19,,,,,,27,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,17:00,,,430,2,,733,2,,101,2,,,,,,,,,,,,,,,,,,,,20,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,18:00,,,235,2,,554,2,,82,2,,,,,,,,,,,,,,,,,,,,18,,,,,,39,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,19:00,,,65,2,,178,2,,47,2,,,,,,,,,,,,,,,,,,,,18,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,20:00,,,1,2,,3,2,,1,2,,,,,,,,,,,,,,,,,,,,16,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,05:00,,,11,2,,15,2,,11,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,06:00,,,118,2,,283,2,,71,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,07:00,,,262,2,,379,2,,132,2,,,,,,,,,,,,,,,,,,,,10,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,08:00,,,494,2,,655,2,,159,2,,,,,,,,,,,,,,,,,,,,12,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,09:00,,,674,2,,830,2,,126,2,,,,,,,,,,,,,,,,,,,,14,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,10:00,,,770,2,,643,2,,269,2,,,,,,,,,,,,,,,,,,,,18,,,,,,38,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,11:00,,,376,2,,114,2,,278,2,,,,,,,,,,,,,,,,,,,,21,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,12:00,,,559,2,,236,2,,347,2,,,,,,,,,,,,,,,,,,,,21,,,,,,25,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,13:00,,,615,2,,218,2,,421,2,,,,,,,,,,,,,,,,,,,,23,,,,,,20,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,14:00,,,503,2,,202,2,,334,2,,,,,,,,,,,,,,,,,,,,22,,,,,,21,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,15:00,,,612,2,,442,2,,285,2,,,,,,,,,,,,,,,,,,,,22,,,,,,22,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,16:00,,,584,2,,594,2,,223,2,,,,,,,,,,,,,,,,,,,,22,,,,,,22,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,17:00,,,325,2,,314,2,,183,2,,,,,,,,,,,,,,,,,,,,22,,,,,,25,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,18:00,,,162,2,,162,2,,117,2,,,,,,,,,,,,,,,,,,,,20,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,19:00,,,49,2,,64,2,,42,2,,,,,,,,,,,,,,,,,,,,20,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,34,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,38,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,05:00,,,11,2,,9,2,,11,2,,,,,,,,,,,,,,,,,,,,8,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,06:00,,,116,2,,254,2,,73,2,,,,,,,,,,,,,,,,,,,,10,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,07:00,,,293,2,,494,2,,122,2,,,,,,,,,,,,,,,,,,,,11,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,08:00,,,482,2,,681,2,,132,2,,,,,,,,,,,,,,,,,,,,13,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,09:00,,,658,2,,761,2,,154,2,,,,,,,,,,,,,,,,,,,,14,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,10:00,,,799,2,,831,2,,150,2,,,,,,,,,,,,,,,,,,,,18,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,11:00,,,871,2,,813,2,,170,2,,,,,,,,,,,,,,,,,,,,20,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,12:00,,,901,2,,762,2,,216,2,,,,,,,,,,,,,,,,,,,,21,,,,,,27,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,13:00,,,754,2,,504,2,,305,2,,,,,,,,,,,,,,,,,,,,23,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,14:00,,,572,2,,342,2,,286,2,,,,,,,,,,,,,,,,,,,,23,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,15:00,,,570,2,,320,2,,333,2,,,,,,,,,,,,,,,,,,,,23,,,,,,22,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,16:00,,,400,2,,185,2,,287,2,,,,,,,,,,,,,,,,,,,,24,,,,,,20,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,17:00,,,359,2,,369,2,,192,2,,,,,,,,,,,,,,,,,,,,24,,,,,,21,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,18:00,,,164,2,,136,2,,126,2,,,,,,,,,,,,,,,,,,,,22,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,19:00,,,34,2,,11,2,,33,2,,,,,,,,,,,,,,,,,,,,21,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,05:00,,,13,2,,27,2,,13,2,,,,,,,,,,,,,,,,,,,,7,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,06:00,,,114,2,,255,2,,70,2,,,,,,,,,,,,,,,,,,,,10,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,07:00,,,269,2,,405,2,,128,2,,,,,,,,,,,,,,,,,,,,11,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,08:00,,,472,2,,621,2,,151,2,,,,,,,,,,,,,,,,,,,,13,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,09:00,,,665,2,,746,2,,169,2,,,,,,,,,,,,,,,,,,,,14,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,10:00,,,754,2,,671,2,,229,2,,,,,,,,,,,,,,,,,,,,18,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,11:00,,,893,2,,825,2,,181,2,,,,,,,,,,,,,,,,,,,,20,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,12:00,,,940,2,,868,2,,158,2,,,,,,,,,,,,,,,,,,,,20,,,,,,34,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,13:00,,,922,2,,849,2,,164,2,,,,,,,,,,,,,,,,,,,,22,,,,,,32,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,14:00,,,866,2,,850,2,,153,2,,,,,,,,,,,,,,,,,,,,22,,,,,,32,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,15:00,,,756,2,,824,2,,144,2,,,,,,,,,,,,,,,,,,,,22,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,16:00,,,596,2,,732,2,,148,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,17:00,,,412,2,,561,2,,156,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,18:00,,,202,2,,280,2,,122,2,,,,,,,,,,,,,,,,,,,,18,,,,,,50,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,19:00,,,28,2,,18,2,,26,2,,,,,,,,,,,,,,,,,,,,18,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,05:00,,,12,2,,11,2,,12,2,,,,,,,,,,,,,,,,,,,,7,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,06:00,,,115,2,,218,2,,77,2,,,,,,,,,,,,,,,,,,,,11,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,07:00,,,296,2,,460,2,,134,2,,,,,,,,,,,,,,,,,,,,12,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,08:00,,,490,2,,670,2,,142,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,09:00,,,667,2,,795,2,,137,2,,,,,,,,,,,,,,,,,,,,15,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,10:00,,,812,2,,865,2,,133,2,,,,,,,,,,,,,,,,,,,,19,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,11:00,,,910,2,,903,2,,129,2,,,,,,,,,,,,,,,,,,,,22,,,,,,33,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,12:00,,,953,2,,905,2,,136,2,,,,,,,,,,,,,,,,,,,,22,,,,,,28,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,13:00,,,940,2,,894,2,,141,2,,,,,,,,,,,,,,,,,,,,24,,,,,,24,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,14:00,,,878,2,,879,2,,139,2,,,,,,,,,,,,,,,,,,,,25,,,,,,23,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,15:00,,,759,2,,828,2,,142,2,,,,,,,,,,,,,,,,,,,,25,,,,,,22,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,16:00,,,603,2,,672,2,,190,2,,,,,,,,,,,,,,,,,,,,25,,,,,,20,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,17:00,,,326,2,,289,2,,194,2,,,,,,,,,,,,,,,,,,,,25,,,,,,25,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,18:00,,,169,2,,155,2,,125,2,,,,,,,,,,,,,,,,,,,,23,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,19:00,,,57,2,,90,2,,47,2,,,,,,,,,,,,,,,,,,,,23,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,21,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,05:00,,,11,2,,4,2,,11,2,,,,,,,,,,,,,,,,,,,,11,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,06:00,,,72,2,,34,2,,66,2,,,,,,,,,,,,,,,,,,,,14,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,07:00,,,168,2,,52,2,,150,2,,,,,,,,,,,,,,,,,,,,15,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,08:00,,,224,2,,40,2,,203,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,09:00,,,190,2,,10,2,,183,2,,,,,,,,,,,,,,,,,,,,17,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,10:00,,,447,2,,149,2,,330,2,,,,,,,,,,,,,,,,,,,,20,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,11:00,,,831,2,,575,2,,332,2,,,,,,,,,,,,,,,,,,,,22,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,12:00,,,927,2,,786,2,,216,2,,,,,,,,,,,,,,,,,,,,22,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,13:00,,,920,2,,814,2,,191,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,14:00,,,859,2,,810,2,,177,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,15:00,,,738,2,,739,2,,186,2,,,,,,,,,,,,,,,,,,,,24,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,16:00,,,570,2,,578,2,,213,2,,,,,,,,,,,,,,,,,,,,25,,,,,,33,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,17:00,,,326,2,,241,2,,215,2,,,,,,,,,,,,,,,,,,,,25,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,18:00,,,165,2,,100,2,,136,2,,,,,,,,,,,,,,,,,,,,23,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,19:00,,,53,2,,35,2,,49,2,,,,,,,,,,,,,,,,,,,,23,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,22,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,05:00,,,10,2,,4,2,,10,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,06:00,,,107,2,,142,2,,81,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,07:00,,,228,2,,220,2,,150,2,,,,,,,,,,,,,,,,,,,,14,,,,,,67,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,08:00,,,337,2,,220,2,,222,2,,,,,,,,,,,,,,,,,,,,16,,,,,,59,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,09:00,,,617,2,,551,2,,248,2,,,,,,,,,,,,,,,,,,,,17,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,10:00,,,795,2,,752,2,,202,2,,,,,,,,,,,,,,,,,,,,21,,,,,,31,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,11:00,,,896,2,,823,2,,181,2,,,,,,,,,,,,,,,,,,,,23,,,,,,28,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,12:00,,,937,2,,833,2,,182,2,,,,,,,,,,,,,,,,,,,,23,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,13:00,,,931,2,,801,2,,212,2,,,,,,,,,,,,,,,,,,,,25,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,14:00,,,754,2,,573,2,,270,2,,,,,,,,,,,,,,,,,,,,26,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,15:00,,,729,2,,680,2,,220,2,,,,,,,,,,,,,,,,,,,,26,,,,,,27,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,16:00,,,579,2,,622,2,,194,2,,,,,,,,,,,,,,,,,,,,27,,,,,,27,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,17:00,,,383,2,,417,2,,190,2,,,,,,,,,,,,,,,,,,,,27,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,18:00,,,181,2,,228,2,,114,2,,,,,,,,,,,,,,,,,,,,24,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,19:00,,,60,2,,87,2,,50,2,,,,,,,,,,,,,,,,,,,,24,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,20:00,,,2,2,,3,2,,2,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,05:00,,,10,2,,3,2,,10,2,,,,,,,,,,,,,,,,,,,,13,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,06:00,,,83,2,,46,2,,75,2,,,,,,,,,,,,,,,,,,,,16,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,07:00,,,196,2,,105,2,,158,2,,,,,,,,,,,,,,,,,,,,17,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,08:00,,,426,2,,384,2,,224,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,09:00,,,625,2,,610,2,,215,2,,,,,,,,,,,,,,,,,,,,20,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,10:00,,,815,2,,814,2,,172,2,,,,,,,,,,,,,,,,,,,,25,,,,,,38,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,11:00,,,911,2,,893,2,,134,2,,,,,,,,,,,,,,,,,,,,27,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,12:00,,,956,2,,903,2,,137,2,,,,,,,,,,,,,,,,,,,,28,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,13:00,,,948,2,,898,2,,141,2,,,,,,,,,,,,,,,,,,,,31,,,,,,27,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,14:00,,,870,2,,824,2,,173,2,,,,,,,,,,,,,,,,,,,,31,,,,,,26,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,15:00,,,711,2,,676,2,,203,2,,,,,,,,,,,,,,,,,,,,31,,,,,,26,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,16:00,,,608,2,,714,2,,164,2,,,,,,,,,,,,,,,,,,,,31,,,,,,25,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,17:00,,,405,2,,472,2,,185,2,,,,,,,,,,,,,,,,,,,,31,,,,,,29,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,18:00,,,151,2,,119,2,,116,2,,,,,,,,,,,,,,,,,,,,29,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,19:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,27,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,05:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,18,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,06:00,,,76,2,,41,2,,68,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,07:00,,,253,2,,240,2,,167,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,08:00,,,461,2,,466,2,,216,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,09:00,,,655,2,,681,2,,196,2,,,,,,,,,,,,,,,,,,,,22,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,10:00,,,801,2,,805,2,,164,2,,,,,,,,,,,,,,,,,,,,26,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,11:00,,,897,2,,847,2,,159,2,,,,,,,,,,,,,,,,,,,,27,,,,,,40,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,12:00,,,943,2,,851,2,,170,2,,,,,,,,,,,,,,,,,,,,28,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,13:00,,,932,2,,824,2,,190,2,,,,,,,,,,,,,,,,,,,,31,,,,,,32,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,14:00,,,848,2,,717,2,,240,2,,,,,,,,,,,,,,,,,,,,31,,,,,,31,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,15:00,,,674,2,,533,2,,273,2,,,,,,,,,,,,,,,,,,,,32,,,,,,31,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,16:00,,,537,2,,448,2,,258,2,,,,,,,,,,,,,,,,,,,,32,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,17:00,,,288,2,,163,2,,212,2,,,,,,,,,,,,,,,,,,,,32,,,,,,32,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,18:00,,,85,2,,2,2,,84,2,,,,,,,,,,,,,,,,,,,,29,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,19:00,,,33,2,,1,2,,33,2,,,,,,,,,,,,,,,,,,,,28,,,,,,52,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,05:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,20,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,06:00,,,34,2,,0,2,,34,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,07:00,,,111,2,,1,2,,111,2,,,,,,,,,,,,,,,,,,,,22,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,08:00,,,242,2,,43,2,,219,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,09:00,,,470,2,,209,2,,329,2,,,,,,,,,,,,,,,,,,,,22,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,10:00,,,597,2,,313,2,,349,2,,,,,,,,,,,,,,,,,,,,26,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,11:00,,,727,2,,393,2,,384,2,,,,,,,,,,,,,,,,,,,,27,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,12:00,,,817,2,,503,2,,359,2,,,,,,,,,,,,,,,,,,,,27,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,13:00,,,569,2,,176,2,,410,2,,,,,,,,,,,,,,,,,,,,28,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,14:00,,,267,2,,14,2,,255,2,,,,,,,,,,,,,,,,,,,,28,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,15:00,,,249,2,,7,2,,244,2,,,,,,,,,,,,,,,,,,,,29,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,16:00,,,223,2,,15,2,,214,2,,,,,,,,,,,,,,,,,,,,29,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,17:00,,,229,2,,63,2,,199,2,,,,,,,,,,,,,,,,,,,,29,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,18:00,,,78,2,,3,2,,77,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,19:00,,,21,2,,0,2,,21,2,,,,,,,,,,,,,,,,,,,,26,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,05:00,,,17,2,,57,2,,16,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,06:00,,,122,2,,246,2,,75,2,,,,,,,,,,,,,,,,,,,,20,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,07:00,,,289,2,,359,2,,158,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,08:00,,,146,2,,30,2,,130,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,09:00,,,182,2,,7,2,,177,2,,,,,,,,,,,,,,,,,,,,23,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,10:00,,,157,2,,2,2,,155,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,11:00,,,161,2,,1,2,,160,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,12:00,,,260,2,,11,2,,250,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,13:00,,,227,2,,2,2,,225,2,,,,,,,,,,,,,,,,,,,,16,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,14:00,,,174,2,,1,2,,173,2,,,,,,,,,,,,,,,,,,,,17,,,,,,62,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,15:00,,,253,2,,50,2,,215,2,,,,,,,,,,,,,,,,,,,,18,,,,,,52,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,16:00,,,506,2,,430,2,,236,2,,,,,,,,,,,,,,,,,,,,18,,,,,,46,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,17:00,,,451,2,,690,2,,125,2,,,,,,,,,,,,,,,,,,,,18,,,,,,45,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,18:00,,,263,2,,570,2,,91,2,,,,,,,,,,,,,,,,,,,,16,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,19:00,,,84,2,,224,2,,56,2,,,,,,,,,,,,,,,,,,,,16,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,20:00,,,3,2,,5,2,,3,2,,,,,,,,,,,,,,,,,,,,15,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,05:00,,,20,2,,104,2,,18,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,06:00,,,146,2,,451,2,,60,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,07:00,,,335,2,,714,2,,74,2,,,,,,,,,,,,,,,,,,,,9,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,08:00,,,521,2,,825,2,,82,2,,,,,,,,,,,,,,,,,,,,11,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,09:00,,,691,2,,888,2,,89,2,,,,,,,,,,,,,,,,,,,,12,,,,,,41,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,10:00,,,830,2,,927,2,,92,2,,,,,,,,,,,,,,,,,,,,16,,,,,,32,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,11:00,,,926,2,,949,2,,95,2,,,,,,,,,,,,,,,,,,,,17,,,,,,29,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,12:00,,,971,2,,958,2,,96,2,,,,,,,,,,,,,,,,,,,,18,,,,,,25,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,13:00,,,962,2,,957,2,,96,2,,,,,,,,,,,,,,,,,,,,20,,,,,,22,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,14:00,,,899,2,,946,2,,93,2,,,,,,,,,,,,,,,,,,,,21,,,,,,21,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,15:00,,,787,2,,918,2,,91,2,,,,,,,,,,,,,,,,,,,,21,,,,,,21,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,16:00,,,636,2,,871,2,,88,2,,,,,,,,,,,,,,,,,,,,23,,,,,,20,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,17:00,,,459,2,,794,2,,82,2,,,,,,,,,,,,,,,,,,,,23,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,18:00,,,268,2,,589,2,,89,2,,,,,,,,,,,,,,,,,,,,21,,,,,,28,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,19:00,,,87,2,,236,2,,56,2,,,,,,,,,,,,,,,,,,,,21,,,,,,31,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,20:00,,,3,2,,6,2,,3,2,,,,,,,,,,,,,,,,,,,,19,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,05:00,,,19,2,,51,2,,18,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,06:00,,,127,2,,253,2,,78,2,,,,,,,,,,,,,,,,,,,,14,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,07:00,,,299,2,,460,2,,130,2,,,,,,,,,,,,,,,,,,,,14,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,08:00,,,500,2,,657,2,,150,2,,,,,,,,,,,,,,,,,,,,15,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,09:00,,,664,2,,705,2,,185,2,,,,,,,,,,,,,,,,,,,,16,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,10:00,,,689,2,,481,2,,306,2,,,,,,,,,,,,,,,,,,,,19,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,11:00,,,536,2,,183,2,,376,2,,,,,,,,,,,,,,,,,,,,21,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,12:00,,,861,2,,601,2,,312,2,,,,,,,,,,,,,,,,,,,,22,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,13:00,,,831,2,,576,2,,309,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,14:00,,,464,2,,154,2,,333,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,15:00,,,416,2,,145,2,,306,2,,,,,,,,,,,,,,,,,,,,24,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,16:00,,,362,2,,150,2,,267,2,,,,,,,,,,,,,,,,,,,,26,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,17:00,,,344,2,,246,2,,227,2,,,,,,,,,,,,,,,,,,,,27,,,,,,50,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,18:00,,,130,2,,41,2,,117,2,,,,,,,,,,,,,,,,,,,,26,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,19:00,,,52,2,,34,2,,48,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,25,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,06:00,,,85,2,,63,2,,73,2,,,,,,,,,,,,,,,,,,,,21,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,07:00,,,258,2,,252,2,,165,2,,,,,,,,,,,,,,,,,,,,21,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,08:00,,,473,2,,514,2,,198,2,,,,,,,,,,,,,,,,,,,,22,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,09:00,,,666,2,,733,2,,167,2,,,,,,,,,,,,,,,,,,,,23,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,10:00,,,806,2,,807,2,,162,2,,,,,,,,,,,,,,,,,,,,26,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,11:00,,,878,2,,714,2,,251,2,,,,,,,,,,,,,,,,,,,,29,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,12:00,,,510,2,,275,2,,258,2,,,,,,,,,,,,,,,,,,,,30,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,13:00,,,251,2,,54,2,,202,2,,,,,,,,,,,,,,,,,,,,31,,,,,,40,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,14:00,,,770,2,,539,2,,309,2,,,,,,,,,,,,,,,,,,,,31,,,,,,46,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,15:00,,,204,2,,45,2,,170,2,,,,,,,,,,,,,,,,,,,,28,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,16:00,,,136,2,,1,2,,135,2,,,,,,,,,,,,,,,,,,,,28,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,17:00,,,133,2,,0,2,,133,2,,,,,,,,,,,,,,,,,,,,26,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,18:00,,,86,2,,6,2,,84,2,,,,,,,,,,,,,,,,,,,,25,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,19:00,,,50,2,,40,2,,45,2,,,,,,,,,,,,,,,,,,,,24,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,05:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,15,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,06:00,,,35,2,,1,2,,35,2,,,,,,,,,,,,,,,,,,,,14,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,07:00,,,148,2,,25,2,,139,2,,,,,,,,,,,,,,,,,,,,14,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,08:00,,,177,2,,6,2,,174,2,,,,,,,,,,,,,,,,,,,,14,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,09:00,,,174,2,,2,2,,173,2,,,,,,,,,,,,,,,,,,,,14,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,10:00,,,385,2,,178,2,,243,2,,,,,,,,,,,,,,,,,,,,14,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,11:00,,,820,2,,610,2,,284,2,,,,,,,,,,,,,,,,,,,,15,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,12:00,,,954,2,,854,2,,171,2,,,,,,,,,,,,,,,,,,,,15,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,13:00,,,952,2,,917,2,,119,2,,,,,,,,,,,,,,,,,,,,17,,,,,,33,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,14:00,,,898,2,,925,2,,106,2,,,,,,,,,,,,,,,,,,,,17,,,,,,32,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,15:00,,,788,2,,900,2,,102,2,,,,,,,,,,,,,,,,,,,,17,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,16:00,,,637,2,,852,2,,96,2,,,,,,,,,,,,,,,,,,,,17,,,,,,30,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,17:00,,,459,2,,755,2,,96,2,,,,,,,,,,,,,,,,,,,,16,,,,,,32,,,,,,,,,5,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,18:00,,,268,2,,567,2,,92,2,,,,,,,,,,,,,,,,,,,,14,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,19:00,,,93,2,,252,2,,58,2,,,,,,,,,,,,,,,,,,,,13,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,20:00,,,4,2,,7,2,,4,2,,,,,,,,,,,,,,,,,,,,13,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,05:00,,,18,2,,32,2,,17,2,,,,,,,,,,,,,,,,,,,,4,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,06:00,,,60,2,,52,2,,50,2,,,,,,,,,,,,,,,,,,,,6,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,07:00,,,135,2,,9,2,,132,2,,,,,,,,,,,,,,,,,,,,6,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,08:00,,,193,2,,13,2,,186,2,,,,,,,,,,,,,,,,,,,,6,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,09:00,,,424,2,,186,2,,297,2,,,,,,,,,,,,,,,,,,,,6,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,10:00,,,602,2,,313,2,,352,2,,,,,,,,,,,,,,,,,,,,8,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,11:00,,,357,2,,45,2,,317,2,,,,,,,,,,,,,,,,,,,,8,,,,,,39,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,12:00,,,407,2,,71,2,,342,2,,,,,,,,,,,,,,,,,,,,9,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,13:00,,,641,2,,261,2,,404,2,,,,,,,,,,,,,,,,,,,,11,,,,,,33,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,14:00,,,476,2,,114,2,,378,2,,,,,,,,,,,,,,,,,,,,12,,,,,,32,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,15:00,,,305,2,,19,2,,290,2,,,,,,,,,,,,,,,,,,,,11,,,,,,32,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,16:00,,,199,2,,4,2,,196,2,,,,,,,,,,,,,,,,,,,,11,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,17:00,,,141,2,,0,2,,141,2,,,,,,,,,,,,,,,,,,,,11,,,,,,32,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,18:00,,,75,2,,0,2,,75,2,,,,,,,,,,,,,,,,,,,,10,,,,,,36,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,19:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,10,,,,,,37,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,10,,,,,,38,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,05:00,,,13,2,,5,2,,13,2,,,,,,,,,,,,,,,,,,,,6,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,06:00,,,91,2,,67,2,,78,2,,,,,,,,,,,,,,,,,,,,9,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,07:00,,,184,2,,66,2,,159,2,,,,,,,,,,,,,,,,,,,,10,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,08:00,,,313,2,,122,2,,247,2,,,,,,,,,,,,,,,,,,,,10,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,09:00,,,374,2,,92,2,,311,2,,,,,,,,,,,,,,,,,,,,11,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,10:00,,,508,2,,174,2,,369,2,,,,,,,,,,,,,,,,,,,,14,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,11:00,,,734,2,,418,2,,366,2,,,,,,,,,,,,,,,,,,,,15,,,,,,28,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,12:00,,,773,2,,463,2,,348,2,,,,,,,,,,,,,,,,,,,,16,,,,,,25,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,13:00,,,862,2,,639,2,,280,2,,,,,,,,,,,,,,,,,,,,17,,,,,,23,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,14:00,,,794,2,,612,2,,268,2,,,,,,,,,,,,,,,,,,,,18,,,,,,21,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,15:00,,,685,2,,599,2,,226,2,,,,,,,,,,,,,,,,,,,,18,,,,,,19,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,16:00,,,608,2,,725,2,,145,2,,,,,,,,,,,,,,,,,,,,19,,,,,,18,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,17:00,,,441,2,,678,2,,113,2,,,,,,,,,,,,,,,,,,,,19,,,,,,20,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,18:00,,,262,2,,496,2,,106,2,,,,,,,,,,,,,,,,,,,,18,,,,,,23,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,19:00,,,86,2,,201,2,,57,2,,,,,,,,,,,,,,,,,,,,17,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,20:00,,,3,2,,7,2,,3,2,,,,,,,,,,,,,,,,,,,,16,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,05:00,,,22,2,,78,2,,20,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,06:00,,,126,2,,270,2,,72,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,07:00,,,300,2,,483,2,,119,2,,,,,,,,,,,,,,,,,,,,10,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,08:00,,,486,2,,565,2,,181,2,,,,,,,,,,,,,,,,,,,,12,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,09:00,,,355,2,,135,2,,262,2,,,,,,,,,,,,,,,,,,,,13,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,10:00,,,267,2,,12,2,,257,2,,,,,,,,,,,,,,,,,,,,16,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,11:00,,,253,2,,3,2,,250,2,,,,,,,,,,,,,,,,,,,,17,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,12:00,,,239,2,,3,2,,236,2,,,,,,,,,,,,,,,,,,,,17,,,,,,33,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,13:00,,,232,2,,2,2,,230,2,,,,,,,,,,,,,,,,,,,,18,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,14:00,,,200,2,,1,2,,199,2,,,,,,,,,,,,,,,,,,,,17,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,15:00,,,188,2,,1,2,,187,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,16:00,,,139,2,,0,2,,139,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,17:00,,,145,2,,6,2,,142,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,18:00,,,102,2,,12,2,,98,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,19:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,10,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,06:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,07:00,,,79,2,,0,2,,79,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,08:00,,,175,2,,6,2,,172,2,,,,,,,,,,,,,,,,,,,,9,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,09:00,,,172,2,,2,2,,171,2,,,,,,,,,,,,,,,,,,,,9,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,10:00,,,148,2,,1,2,,147,2,,,,,,,,,,,,,,,,,,,,11,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,11:00,,,157,2,,0,2,,157,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,12:00,,,171,2,,2,2,,169,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,13:00,,,203,2,,4,2,,199,2,,,,,,,,,,,,,,,,,,,,13,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,14:00,,,378,2,,49,2,,336,2,,,,,,,,,,,,,,,,,,,,14,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,15:00,,,374,2,,43,2,,341,2,,,,,,,,,,,,,,,,,,,,14,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,16:00,,,249,2,,17,2,,238,2,,,,,,,,,,,,,,,,,,,,16,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,17:00,,,251,2,,103,2,,201,2,,,,,,,,,,,,,,,,,,,,17,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,18:00,,,256,2,,383,2,,134,2,,,,,,,,,,,,,,,,,,,,15,,,,,,72,,,,,,,,,0,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,19:00,,,91,2,,201,2,,62,2,,,,,,,,,,,,,,,,,,,,15,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.15,,,,,,
+05/31/2021,20:00,,,4,2,,5,2,,4,2,,,,,,,,,,,,,,,,,,,,15,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+05/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+05/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+05/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,05:00,,,17,2,,22,2,,16,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,06:00,,,52,2,,28,2,,46,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,07:00,,,77,2,,0,2,,77,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,08:00,,,113,2,,0,2,,113,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,09:00,,,231,2,,10,2,,224,2,,,,,,,,,,,,,,,,,,,,13,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,10:00,,,218,2,,2,2,,216,2,,,,,,,,,,,,,,,,,,,,16,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,11:00,,,236,2,,8,2,,229,2,,,,,,,,,,,,,,,,,,,,18,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,12:00,,,556,2,,337,2,,245,2,,,,,,,,,,,,,,,,,,,,18,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,13:00,,,853,2,,598,2,,306,2,,,,,,,,,,,,,,,,,,,,22,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,14:00,,,874,2,,791,2,,192,2,,,,,,,,,,,,,,,,,,,,23,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,15:00,,,776,2,,828,2,,138,2,,,,,,,,,,,,,,,,,,,,23,,,,,,33,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,16:00,,,626,2,,715,2,,166,2,,,,,,,,,,,,,,,,,,,,24,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,17:00,,,407,2,,419,2,,202,2,,,,,,,,,,,,,,,,,,,,24,,,,,,33,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,18:00,,,162,2,,103,2,,129,2,,,,,,,,,,,,,,,,,,,,22,,,,,,38,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,19:00,,,49,2,,16,2,,47,2,,,,,,,,,,,,,,,,,,,,22,,,,,,43,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,20:00,,,3,2,,1,2,,3,2,,,,,,,,,,,,,,,,,,,,21,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,05:00,,,22,2,,51,2,,20,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,06:00,,,146,2,,328,2,,79,2,,,,,,,,,,,,,,,,,,,,14,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,07:00,,,330,2,,591,2,,107,2,,,,,,,,,,,,,,,,,,,,15,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,08:00,,,512,2,,721,2,,121,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,09:00,,,677,2,,791,2,,133,2,,,,,,,,,,,,,,,,,,,,18,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,10:00,,,824,2,,831,2,,155,2,,,,,,,,,,,,,,,,,,,,22,,,,,,37,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,11:00,,,878,2,,766,2,,200,2,,,,,,,,,,,,,,,,,,,,24,,,,,,34,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,12:00,,,945,2,,813,2,,195,2,,,,,,,,,,,,,,,,,,,,25,,,,,,30,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,13:00,,,878,2,,648,2,,285,2,,,,,,,,,,,,,,,,,,,,27,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,14:00,,,816,2,,636,2,,267,2,,,,,,,,,,,,,,,,,,,,26,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,15:00,,,720,2,,603,2,,255,2,,,,,,,,,,,,,,,,,,,,27,,,,,,23,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,16:00,,,521,2,,380,2,,276,2,,,,,,,,,,,,,,,,,,,,27,,,,,,22,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,17:00,,,287,2,,142,2,,217,2,,,,,,,,,,,,,,,,,,,,27,,,,,,27,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,18:00,,,83,2,,1,2,,83,2,,,,,,,,,,,,,,,,,,,,24,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,19:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,23,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,22,,,,,,41,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,15,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,06:00,,,48,2,,3,2,,47,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,07:00,,,154,2,,29,2,,143,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,08:00,,,184,2,,9,2,,179,2,,,,,,,,,,,,,,,,,,,,17,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,09:00,,,181,2,,2,2,,180,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,10:00,,,230,2,,7,2,,224,2,,,,,,,,,,,,,,,,,,,,19,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,11:00,,,163,2,,1,2,,162,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,12:00,,,213,2,,3,2,,210,2,,,,,,,,,,,,,,,,,,,,20,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,13:00,,,172,2,,1,2,,171,2,,,,,,,,,,,,,,,,,,,,19,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,14:00,,,279,2,,10,2,,270,2,,,,,,,,,,,,,,,,,,,,18,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,15:00,,,283,2,,13,2,,273,2,,,,,,,,,,,,,,,,,,,,19,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,16:00,,,163,2,,1,2,,162,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,17:00,,,113,2,,0,2,,113,2,,,,,,,,,,,,,,,,,,,,19,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,18:00,,,79,2,,6,2,,77,2,,,,,,,,,,,,,,,,,,,,21,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,19:00,,,55,2,,17,2,,52,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,05:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,06:00,,,63,2,,4,2,,62,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,07:00,,,240,2,,227,2,,154,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,08:00,,,488,2,,559,2,,184,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,09:00,,,675,2,,770,2,,144,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,10:00,,,800,2,,696,2,,239,2,,,,,,,,,,,,,,,,,,,,23,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,11:00,,,649,2,,322,2,,364,2,,,,,,,,,,,,,,,,,,,,24,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,12:00,,,901,2,,681,2,,272,2,,,,,,,,,,,,,,,,,,,,25,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,13:00,,,821,2,,540,2,,326,2,,,,,,,,,,,,,,,,,,,,27,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,14:00,,,753,2,,451,2,,362,2,,,,,,,,,,,,,,,,,,,,27,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,15:00,,,585,2,,406,2,,271,2,,,,,,,,,,,,,,,,,,,,28,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,16:00,,,461,2,,343,2,,239,2,,,,,,,,,,,,,,,,,,,,28,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,17:00,,,368,2,,329,2,,205,2,,,,,,,,,,,,,,,,,,,,28,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,18:00,,,259,2,,345,2,,146,2,,,,,,,,,,,,,,,,,,,,26,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,19:00,,,70,2,,90,2,,56,2,,,,,,,,,,,,,,,,,,,,26,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,25,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,05:00,,,24,2,,73,2,,21,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,06:00,,,135,2,,245,2,,84,2,,,,,,,,,,,,,,,,,,,,19,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,07:00,,,303,2,,425,2,,142,2,,,,,,,,,,,,,,,,,,,,19,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,08:00,,,402,2,,357,2,,208,2,,,,,,,,,,,,,,,,,,,,20,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,09:00,,,668,2,,663,2,,211,2,,,,,,,,,,,,,,,,,,,,22,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,10:00,,,736,2,,609,2,,245,2,,,,,,,,,,,,,,,,,,,,26,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,11:00,,,862,2,,683,2,,256,2,,,,,,,,,,,,,,,,,,,,28,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,12:00,,,855,2,,609,2,,292,2,,,,,,,,,,,,,,,,,,,,29,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,13:00,,,841,2,,566,2,,321,2,,,,,,,,,,,,,,,,,,,,28,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,14:00,,,216,2,,38,2,,183,2,,,,,,,,,,,,,,,,,,,,27,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,15:00,,,206,2,,6,2,,201,2,,,,,,,,,,,,,,,,,,,,28,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,16:00,,,168,2,,1,2,,167,2,,,,,,,,,,,,,,,,,,,,29,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,17:00,,,129,2,,0,2,,129,2,,,,,,,,,,,,,,,,,,,,28,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,18:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,25,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,19:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,25,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,25,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,05:00,,,17,2,,10,2,,17,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,06:00,,,132,2,,221,2,,86,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,07:00,,,311,2,,460,2,,136,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,08:00,,,495,2,,657,2,,137,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,09:00,,,658,2,,734,2,,151,2,,,,,,,,,,,,,,,,,,,,23,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,10:00,,,791,2,,760,2,,178,2,,,,,,,,,,,,,,,,,,,,26,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,11:00,,,900,2,,823,2,,170,2,,,,,,,,,,,,,,,,,,,,29,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,12:00,,,953,2,,863,2,,154,2,,,,,,,,,,,,,,,,,,,,30,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,13:00,,,947,2,,866,2,,151,2,,,,,,,,,,,,,,,,,,,,33,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,14:00,,,881,2,,837,2,,154,2,,,,,,,,,,,,,,,,,,,,33,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,15:00,,,763,2,,750,2,,181,2,,,,,,,,,,,,,,,,,,,,34,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,16:00,,,602,2,,644,2,,183,2,,,,,,,,,,,,,,,,,,,,34,,,,,,28,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,17:00,,,432,2,,535,2,,166,2,,,,,,,,,,,,,,,,,,,,34,,,,,,29,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,18:00,,,250,2,,327,2,,142,2,,,,,,,,,,,,,,,,,,,,32,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,19:00,,,67,2,,46,2,,60,2,,,,,,,,,,,,,,,,,,,,31,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,20:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,30,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,29,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,05:00,,,20,2,,31,2,,19,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,06:00,,,139,2,,270,2,,82,2,,,,,,,,,,,,,,,,,,,,23,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,07:00,,,321,2,,535,2,,117,2,,,,,,,,,,,,,,,,,,,,24,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,08:00,,,510,2,,716,2,,120,2,,,,,,,,,,,,,,,,,,,,25,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,09:00,,,681,2,,813,2,,119,2,,,,,,,,,,,,,,,,,,,,27,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,10:00,,,818,2,,858,2,,125,2,,,,,,,,,,,,,,,,,,,,30,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,11:00,,,919,2,,896,2,,123,2,,,,,,,,,,,,,,,,,,,,32,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,12:00,,,962,2,,898,2,,130,2,,,,,,,,,,,,,,,,,,,,32,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,13:00,,,952,2,,889,2,,134,2,,,,,,,,,,,,,,,,,,,,34,,,,,,27,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,14:00,,,883,2,,842,2,,151,2,,,,,,,,,,,,,,,,,,,,35,,,,,,25,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,15:00,,,749,2,,657,2,,238,2,,,,,,,,,,,,,,,,,,,,35,,,,,,25,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,16:00,,,437,2,,252,2,,273,2,,,,,,,,,,,,,,,,,,,,35,,,,,,27,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,17:00,,,356,2,,274,2,,219,2,,,,,,,,,,,,,,,,,,,,34,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,18:00,,,170,2,,104,2,,136,2,,,,,,,,,,,,,,,,,,,,33,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,19:00,,,47,2,,11,2,,45,2,,,,,,,,,,,,,,,,,,,,32,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,31,,,,,,40,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,30,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,23,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,06:00,,,44,2,,0,2,,44,2,,,,,,,,,,,,,,,,,,,,25,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,07:00,,,98,2,,2,2,,97,2,,,,,,,,,,,,,,,,,,,,25,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,08:00,,,233,2,,41,2,,211,2,,,,,,,,,,,,,,,,,,,,26,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,09:00,,,371,2,,157,2,,262,2,,,,,,,,,,,,,,,,,,,,27,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,10:00,,,276,2,,20,2,,260,2,,,,,,,,,,,,,,,,,,,,29,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,11:00,,,430,2,,84,2,,355,2,,,,,,,,,,,,,,,,,,,,30,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,12:00,,,534,2,,155,2,,390,2,,,,,,,,,,,,,,,,,,,,29,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,13:00,,,560,2,,149,2,,423,2,,,,,,,,,,,,,,,,,,,,30,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,14:00,,,563,2,,223,2,,369,2,,,,,,,,,,,,,,,,,,,,29,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,15:00,,,572,2,,272,2,,360,2,,,,,,,,,,,,,,,,,,,,30,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,16:00,,,353,2,,132,2,,267,2,,,,,,,,,,,,,,,,,,,,29,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,17:00,,,104,2,,1,2,,104,2,,,,,,,,,,,,,,,,,,,,28,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,18:00,,,55,2,,0,2,,55,2,,,,,,,,,,,,,,,,,,,,28,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,19:00,,,19,2,,0,2,,19,2,,,,,,,,,,,,,,,,,,,,27,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,27,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,05:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,06:00,,,73,2,,12,2,,70,2,,,,,,,,,,,,,,,,,,,,20,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,07:00,,,249,2,,201,2,,172,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,08:00,,,483,2,,539,2,,189,2,,,,,,,,,,,,,,,,,,,,23,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,09:00,,,675,2,,764,2,,147,2,,,,,,,,,,,,,,,,,,,,23,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,10:00,,,816,2,,866,2,,116,2,,,,,,,,,,,,,,,,,,,,26,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,11:00,,,916,2,,909,2,,108,2,,,,,,,,,,,,,,,,,,,,27,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,12:00,,,966,2,,929,2,,105,2,,,,,,,,,,,,,,,,,,,,28,,,,,,29,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,13:00,,,962,2,,935,2,,101,2,,,,,,,,,,,,,,,,,,,,29,,,,,,28,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,14:00,,,902,2,,927,2,,95,2,,,,,,,,,,,,,,,,,,,,29,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,15:00,,,798,2,,907,2,,91,2,,,,,,,,,,,,,,,,,,,,29,,,,,,32,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,16:00,,,652,2,,867,2,,85,2,,,,,,,,,,,,,,,,,,,,29,,,,,,32,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,17:00,,,481,2,,804,2,,77,2,,,,,,,,,,,,,,,,,,,,29,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,18:00,,,296,2,,665,2,,73,2,,,,,,,,,,,,,,,,,,,,27,,,,,,24,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,19:00,,,117,2,,371,2,,56,2,,,,,,,,,,,,,,,,,,,,27,,,,,,22,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,20:00,,,10,2,,16,2,,10,2,,,,,,,,,,,,,,,,,,,,26,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,05:00,,,28,2,,127,2,,22,2,,,,,,,,,,,,,,,,,,,,13,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,06:00,,,157,2,,380,2,,77,2,,,,,,,,,,,,,,,,,,,,14,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,07:00,,,271,2,,370,2,,130,2,,,,,,,,,,,,,,,,,,,,15,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,08:00,,,452,2,,500,2,,179,2,,,,,,,,,,,,,,,,,,,,16,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,09:00,,,679,2,,720,2,,181,2,,,,,,,,,,,,,,,,,,,,17,,,,,,33,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,10:00,,,748,2,,635,2,,234,2,,,,,,,,,,,,,,,,,,,,19,,,,,,28,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,11:00,,,913,2,,854,2,,154,2,,,,,,,,,,,,,,,,,,,,19,,,,,,27,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,12:00,,,969,2,,927,2,,109,2,,,,,,,,,,,,,,,,,,,,20,,,,,,26,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,13:00,,,955,2,,912,2,,114,2,,,,,,,,,,,,,,,,,,,,22,,,,,,24,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,14:00,,,888,2,,853,2,,145,2,,,,,,,,,,,,,,,,,,,,22,,,,,,23,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,15:00,,,774,2,,801,2,,149,2,,,,,,,,,,,,,,,,,,,,22,,,,,,22,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,16:00,,,648,2,,826,2,,107,2,,,,,,,,,,,,,,,,,,,,23,,,,,,21,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,17:00,,,481,2,,789,2,,84,2,,,,,,,,,,,,,,,,,,,,23,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,18:00,,,297,2,,649,2,,79,2,,,,,,,,,,,,,,,,,,,,21,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,19:00,,,117,2,,362,2,,57,2,,,,,,,,,,,,,,,,,,,,21,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,20:00,,,10,2,,15,2,,10,2,,,,,,,,,,,,,,,,,,,,20,,,,,,27,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,05:00,,,7,2,,1,2,,7,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,06:00,,,82,2,,18,2,,78,2,,,,,,,,,,,,,,,,,,,,14,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,07:00,,,165,2,,40,2,,150,2,,,,,,,,,,,,,,,,,,,,15,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,08:00,,,157,2,,3,2,,155,2,,,,,,,,,,,,,,,,,,,,15,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,09:00,,,215,2,,6,2,,211,2,,,,,,,,,,,,,,,,,,,,15,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,10:00,,,268,2,,11,2,,259,2,,,,,,,,,,,,,,,,,,,,18,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,11:00,,,196,2,,5,2,,192,2,,,,,,,,,,,,,,,,,,,,18,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,12:00,,,361,2,,55,2,,310,2,,,,,,,,,,,,,,,,,,,,19,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,13:00,,,316,2,,19,2,,298,2,,,,,,,,,,,,,,,,,,,,21,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,14:00,,,312,2,,14,2,,300,2,,,,,,,,,,,,,,,,,,,,22,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,15:00,,,373,2,,51,2,,333,2,,,,,,,,,,,,,,,,,,,,22,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,16:00,,,371,2,,100,2,,305,2,,,,,,,,,,,,,,,,,,,,22,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,17:00,,,302,2,,117,2,,243,2,,,,,,,,,,,,,,,,,,,,22,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,18:00,,,142,2,,42,2,,128,2,,,,,,,,,,,,,,,,,,,,20,,,,,,46,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,19:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,20,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,20,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,05:00,,,23,2,,49,2,,21,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,06:00,,,152,2,,388,2,,70,2,,,,,,,,,,,,,,,,,,,,14,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,07:00,,,338,2,,666,2,,83,2,,,,,,,,,,,,,,,,,,,,16,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,08:00,,,522,2,,793,2,,88,2,,,,,,,,,,,,,,,,,,,,17,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,09:00,,,681,2,,819,2,,114,2,,,,,,,,,,,,,,,,,,,,18,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,10:00,,,823,2,,862,2,,126,2,,,,,,,,,,,,,,,,,,,,22,,,,,,42,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,11:00,,,909,2,,861,2,,143,2,,,,,,,,,,,,,,,,,,,,23,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,12:00,,,958,2,,898,2,,124,2,,,,,,,,,,,,,,,,,,,,24,,,,,,34,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,13:00,,,954,2,,873,2,,148,2,,,,,,,,,,,,,,,,,,,,26,,,,,,28,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,14:00,,,850,2,,698,2,,241,2,,,,,,,,,,,,,,,,,,,,26,,,,,,26,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,15:00,,,745,2,,682,2,,212,2,,,,,,,,,,,,,,,,,,,,27,,,,,,24,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,16:00,,,611,2,,701,2,,150,2,,,,,,,,,,,,,,,,,,,,27,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,17:00,,,464,2,,698,2,,111,2,,,,,,,,,,,,,,,,,,,,27,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,18:00,,,284,2,,563,2,,93,2,,,,,,,,,,,,,,,,,,,,25,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,19:00,,,112,2,,273,2,,66,2,,,,,,,,,,,,,,,,,,,,25,,,,,,22,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,20:00,,,12,2,,26,2,,12,2,,,,,,,,,,,,,,,,,,,,24,,,,,,25,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,36,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,05:00,,,16,2,,10,2,,16,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,06:00,,,124,2,,205,2,,81,2,,,,,,,,,,,,,,,,,,,,14,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,07:00,,,288,2,,362,2,,149,2,,,,,,,,,,,,,,,,,,,,16,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,08:00,,,473,2,,570,2,,161,2,,,,,,,,,,,,,,,,,,,,17,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,09:00,,,668,2,,725,2,,166,2,,,,,,,,,,,,,,,,,,,,19,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,10:00,,,777,2,,723,2,,192,2,,,,,,,,,,,,,,,,,,,,23,,,,,,30,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,11:00,,,913,2,,852,2,,155,2,,,,,,,,,,,,,,,,,,,,25,,,,,,25,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,12:00,,,933,2,,789,2,,200,2,,,,,,,,,,,,,,,,,,,,26,,,,,,20,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,13:00,,,868,2,,650,2,,268,2,,,,,,,,,,,,,,,,,,,,28,,,,,,15,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,14:00,,,733,2,,430,2,,357,2,,,,,,,,,,,,,,,,,,,,29,,,,,,14,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,15:00,,,594,2,,360,2,,312,2,,,,,,,,,,,,,,,,,,,,29,,,,,,14,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,16:00,,,495,2,,325,2,,281,2,,,,,,,,,,,,,,,,,,,,30,,,,,,13,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,17:00,,,460,2,,608,2,,152,2,,,,,,,,,,,,,,,,,,,,30,,,,,,16,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,18:00,,,273,2,,497,2,,104,2,,,,,,,,,,,,,,,,,,,,28,,,,,,16,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,19:00,,,111,2,,279,2,,64,2,,,,,,,,,,,,,,,,,,,,28,,,,,,14,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,20:00,,,8,2,,15,2,,8,2,,,,,,,,,,,,,,,,,,,,27,,,,,,16,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,28,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,06:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,07:00,,,66,2,,2,2,,65,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,08:00,,,321,2,,172,2,,227,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,09:00,,,273,2,,38,2,,247,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,10:00,,,289,2,,33,2,,262,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,11:00,,,155,2,,1,2,,154,2,,,,,,,,,,,,,,,,,,,,16,,,,,,100,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,12:00,,,222,2,,6,2,,216,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,13:00,,,346,2,,35,2,,314,2,,,,,,,,,,,,,,,,,,,,19,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,14:00,,,211,2,,8,2,,204,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,15:00,,,275,2,,13,2,,265,2,,,,,,,,,,,,,,,,,,,,19,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,16:00,,,164,2,,2,2,,163,2,,,,,,,,,,,,,,,,,,,,20,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,17:00,,,124,2,,3,2,,122,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,18:00,,,96,2,,15,2,,91,2,,,,,,,,,,,,,,,,,,,,20,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,19:00,,,19,2,,0,2,,19,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,05:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,15,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,06:00,,,75,2,,5,2,,74,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,07:00,,,148,2,,21,2,,140,2,,,,,,,,,,,,,,,,,,,,17,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,08:00,,,379,2,,258,2,,238,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,09:00,,,663,2,,683,2,,190,2,,,,,,,,,,,,,,,,,,,,19,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,10:00,,,808,2,,833,2,,134,2,,,,,,,,,,,,,,,,,,,,21,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,11:00,,,901,2,,853,2,,142,2,,,,,,,,,,,,,,,,,,,,21,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,12:00,,,937,2,,818,2,,177,2,,,,,,,,,,,,,,,,,,,,22,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,13:00,,,903,2,,721,2,,237,2,,,,,,,,,,,,,,,,,,,,24,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,14:00,,,869,2,,716,2,,243,2,,,,,,,,,,,,,,,,,,,,24,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,15:00,,,559,2,,334,2,,297,2,,,,,,,,,,,,,,,,,,,,24,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,16:00,,,299,2,,111,2,,226,2,,,,,,,,,,,,,,,,,,,,20,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,17:00,,,216,2,,48,2,,192,2,,,,,,,,,,,,,,,,,,,,19,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,18:00,,,165,2,,132,2,,120,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,19:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,05:00,,,23,2,,71,2,,20,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,06:00,,,153,2,,414,2,,65,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,07:00,,,341,2,,676,2,,82,2,,,,,,,,,,,,,,,,,,,,13,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,08:00,,,521,2,,806,2,,81,2,,,,,,,,,,,,,,,,,,,,13,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,09:00,,,687,2,,870,2,,85,2,,,,,,,,,,,,,,,,,,,,14,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,10:00,,,824,2,,884,2,,109,2,,,,,,,,,,,,,,,,,,,,17,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,11:00,,,877,2,,718,2,,238,2,,,,,,,,,,,,,,,,,,,,18,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,12:00,,,693,2,,385,2,,335,2,,,,,,,,,,,,,,,,,,,,18,,,,,,42,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,13:00,,,923,2,,766,2,,215,2,,,,,,,,,,,,,,,,,,,,19,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,14:00,,,851,2,,741,2,,202,2,,,,,,,,,,,,,,,,,,,,19,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,15:00,,,781,2,,824,2,,134,2,,,,,,,,,,,,,,,,,,,,19,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,16:00,,,651,2,,751,2,,155,2,,,,,,,,,,,,,,,,,,,,20,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,17:00,,,377,2,,372,2,,187,2,,,,,,,,,,,,,,,,,,,,19,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,18:00,,,206,2,,197,2,,138,2,,,,,,,,,,,,,,,,,,,,18,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,19:00,,,114,2,,231,2,,74,2,,,,,,,,,,,,,,,,,,,,18,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,20:00,,,11,2,,10,2,,11,2,,,,,,,,,,,,,,,,,,,,18,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,05:00,,,23,2,,62,2,,20,2,,,,,,,,,,,,,,,,,,,,8,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,06:00,,,158,2,,467,2,,59,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,07:00,,,343,2,,720,2,,68,2,,,,,,,,,,,,,,,,,,,,13,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,08:00,,,522,2,,819,2,,75,2,,,,,,,,,,,,,,,,,,,,15,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,09:00,,,687,2,,873,2,,83,2,,,,,,,,,,,,,,,,,,,,16,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,10:00,,,823,2,,906,2,,90,2,,,,,,,,,,,,,,,,,,,,20,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,11:00,,,918,2,,923,2,,96,2,,,,,,,,,,,,,,,,,,,,21,,,,,,31,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,12:00,,,965,2,,933,2,,98,2,,,,,,,,,,,,,,,,,,,,21,,,,,,27,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,13:00,,,960,2,,934,2,,96,2,,,,,,,,,,,,,,,,,,,,23,,,,,,24,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,14:00,,,904,2,,926,2,,93,2,,,,,,,,,,,,,,,,,,,,23,,,,,,24,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,15:00,,,799,2,,902,2,,90,2,,,,,,,,,,,,,,,,,,,,24,,,,,,22,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,16:00,,,655,2,,861,2,,85,2,,,,,,,,,,,,,,,,,,,,25,,,,,,21,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,17:00,,,485,2,,791,2,,81,2,,,,,,,,,,,,,,,,,,,,25,,,,,,23,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,18:00,,,302,2,,595,2,,97,2,,,,,,,,,,,,,,,,,,,,23,,,,,,25,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,19:00,,,111,2,,214,2,,74,2,,,,,,,,,,,,,,,,,,,,23,,,,,,23,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,20:00,,,5,2,,6,2,,5,2,,,,,,,,,,,,,,,,,,,,24,,,,,,29,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,05:00,,,21,2,,70,2,,18,2,,,,,,,,,,,,,,,,,,,,12,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,06:00,,,103,2,,111,2,,80,2,,,,,,,,,,,,,,,,,,,,15,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,07:00,,,331,2,,529,2,,129,2,,,,,,,,,,,,,,,,,,,,16,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,08:00,,,495,2,,691,2,,118,2,,,,,,,,,,,,,,,,,,,,17,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,09:00,,,638,2,,676,2,,171,2,,,,,,,,,,,,,,,,,,,,18,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,10:00,,,713,2,,555,2,,264,2,,,,,,,,,,,,,,,,,,,,22,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,11:00,,,711,2,,383,2,,370,2,,,,,,,,,,,,,,,,,,,,24,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,12:00,,,506,2,,125,2,,390,2,,,,,,,,,,,,,,,,,,,,25,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,13:00,,,361,2,,35,2,,329,2,,,,,,,,,,,,,,,,,,,,26,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,14:00,,,249,2,,8,2,,242,2,,,,,,,,,,,,,,,,,,,,26,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,15:00,,,367,2,,74,2,,309,2,,,,,,,,,,,,,,,,,,,,26,,,,,,40,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,16:00,,,364,2,,133,2,,276,2,,,,,,,,,,,,,,,,,,,,25,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,17:00,,,123,2,,1,2,,122,2,,,,,,,,,,,,,,,,,,,,25,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,18:00,,,50,2,,0,2,,50,2,,,,,,,,,,,,,,,,,,,,23,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,19:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,22,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,21,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,05:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,06:00,,,65,2,,21,2,,61,2,,,,,,,,,,,,,,,,,,,,19,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,07:00,,,304,2,,371,2,,162,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,08:00,,,504,2,,664,2,,142,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,09:00,,,664,2,,761,2,,138,2,,,,,,,,,,,,,,,,,,,,21,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,10:00,,,755,2,,597,2,,272,2,,,,,,,,,,,,,,,,,,,,24,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,11:00,,,341,2,,82,2,,268,2,,,,,,,,,,,,,,,,,,,,26,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,12:00,,,510,2,,252,2,,276,2,,,,,,,,,,,,,,,,,,,,26,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,13:00,,,540,2,,341,2,,224,2,,,,,,,,,,,,,,,,,,,,27,,,,,,33,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,14:00,,,617,2,,301,2,,353,2,,,,,,,,,,,,,,,,,,,,28,,,,,,33,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,15:00,,,268,2,,43,2,,234,2,,,,,,,,,,,,,,,,,,,,27,,,,,,36,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,16:00,,,289,2,,67,2,,245,2,,,,,,,,,,,,,,,,,,,,26,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,17:00,,,303,2,,219,2,,191,2,,,,,,,,,,,,,,,,,,,,26,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,18:00,,,162,2,,151,2,,110,2,,,,,,,,,,,,,,,,,,,,23,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,19:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,24,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,20:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,05:00,,,22,2,,42,2,,20,2,,,,,,,,,,,,,,,,,,,,15,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,06:00,,,142,2,,291,2,,81,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,07:00,,,294,2,,452,2,,122,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,08:00,,,513,2,,722,2,,120,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,09:00,,,667,2,,791,2,,121,2,,,,,,,,,,,,,,,,,,,,21,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,10:00,,,815,2,,860,2,,120,2,,,,,,,,,,,,,,,,,,,,24,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,11:00,,,909,2,,893,2,,114,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,12:00,,,946,2,,837,2,,168,2,,,,,,,,,,,,,,,,,,,,25,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,13:00,,,850,2,,638,2,,260,2,,,,,,,,,,,,,,,,,,,,27,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,14:00,,,790,2,,576,2,,285,2,,,,,,,,,,,,,,,,,,,,28,,,,,,40,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,15:00,,,520,2,,312,2,,274,2,,,,,,,,,,,,,,,,,,,,28,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,16:00,,,616,2,,627,2,,200,2,,,,,,,,,,,,,,,,,,,,29,,,,,,35,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,17:00,,,420,2,,494,2,,166,2,,,,,,,,,,,,,,,,,,,,29,,,,,,37,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,18:00,,,283,2,,446,2,,128,2,,,,,,,,,,,,,,,,,,,,27,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,19:00,,,79,2,,86,2,,64,2,,,,,,,,,,,,,,,,,,,,27,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,20:00,,,10,2,,5,2,,10,2,,,,,,,,,,,,,,,,,,,,26,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,05:00,,,19,2,,14,2,,18,2,,,,,,,,,,,,,,,,,,,,18,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,06:00,,,69,2,,36,2,,62,2,,,,,,,,,,,,,,,,,,,,22,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,07:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,08:00,,,245,2,,62,2,,211,2,,,,,,,,,,,,,,,,,,,,22,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,09:00,,,488,2,,280,2,,295,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,10:00,,,356,2,,82,2,,290,2,,,,,,,,,,,,,,,,,,,,26,,,,,,63,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,11:00,,,820,2,,532,2,,347,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,12:00,,,865,2,,615,2,,293,2,,,,,,,,,,,,,,,,,,,,29,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,13:00,,,908,2,,682,2,,277,2,,,,,,,,,,,,,,,,,,,,31,,,,,,49,,,,,,,,,7,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,14:00,,,530,2,,325,2,,245,2,,,,,,,,,,,,,,,,,,,,31,,,,,,47,,,,,,,,,8,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,15:00,,,354,2,,105,2,,271,2,,,,,,,,,,,,,,,,,,,,32,,,,,,45,,,,,,,,,7,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,16:00,,,162,2,,6,2,,158,2,,,,,,,,,,,,,,,,,,,,31,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,17:00,,,79,2,,0,2,,79,2,,,,,,,,,,,,,,,,,,,,30,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,18:00,,,120,2,,81,2,,92,2,,,,,,,,,,,,,,,,,,,,27,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,19:00,,,74,2,,77,2,,60,2,,,,,,,,,,,,,,,,,,,,26,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,06:00,,,37,2,,0,2,,37,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,07:00,,,80,2,,0,2,,80,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,08:00,,,134,2,,0,2,,134,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,09:00,,,164,2,,0,2,,164,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,10:00,,,251,2,,6,2,,246,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,11:00,,,318,2,,12,2,,307,2,,,,,,,,,,,,,,,,,,,,15,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,12:00,,,301,2,,10,2,,292,2,,,,,,,,,,,,,,,,,,,,15,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,13:00,,,227,2,,2,2,,225,2,,,,,,,,,,,,,,,,,,,,15,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,14:00,,,195,2,,1,2,,194,2,,,,,,,,,,,,,,,,,,,,15,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,15:00,,,164,2,,1,2,,163,2,,,,,,,,,,,,,,,,,,,,15,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,16:00,,,179,2,,4,2,,176,2,,,,,,,,,,,,,,,,,,,,16,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,17:00,,,129,2,,1,2,,128,2,,,,,,,,,,,,,,,,,,,,16,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,18:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,19:00,,,22,2,,0,2,,22,2,,,,,,,,,,,,,,,,,,,,15,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,15,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,05:00,,,17,2,,20,2,,16,2,,,,,,,,,,,,,,,,,,,,8,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,06:00,,,142,2,,328,2,,74,2,,,,,,,,,,,,,,,,,,,,12,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,07:00,,,316,2,,552,2,,107,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,08:00,,,517,2,,779,2,,94,2,,,,,,,,,,,,,,,,,,,,14,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,09:00,,,682,2,,870,2,,82,2,,,,,,,,,,,,,,,,,,,,15,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,10:00,,,811,2,,880,2,,101,2,,,,,,,,,,,,,,,,,,,,17,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,11:00,,,889,2,,820,2,,160,2,,,,,,,,,,,,,,,,,,,,18,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,12:00,,,852,2,,651,2,,247,2,,,,,,,,,,,,,,,,,,,,18,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,13:00,,,952,2,,884,2,,134,2,,,,,,,,,,,,,,,,,,,,20,,,,,,35,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,14:00,,,896,2,,908,2,,99,2,,,,,,,,,,,,,,,,,,,,20,,,,,,34,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,15:00,,,797,2,,830,2,,142,2,,,,,,,,,,,,,,,,,,,,21,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,16:00,,,547,2,,545,2,,184,2,,,,,,,,,,,,,,,,,,,,22,,,,,,31,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,17:00,,,472,2,,678,2,,123,2,,,,,,,,,,,,,,,,,,,,22,,,,,,33,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,18:00,,,307,2,,658,2,,77,2,,,,,,,,,,,,,,,,,,,,21,,,,,,35,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,19:00,,,128,2,,371,2,,62,2,,,,,,,,,,,,,,,,,,,,21,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,20:00,,,12,2,,14,2,,12,2,,,,,,,,,,,,,,,,,,,,20,,,,,,48,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,05:00,,,20,2,,51,2,,18,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,06:00,,,143,2,,376,2,,65,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,07:00,,,335,2,,679,2,,78,2,,,,,,,,,,,,,,,,,,,,15,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,08:00,,,516,2,,812,2,,76,2,,,,,,,,,,,,,,,,,,,,16,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,09:00,,,680,2,,868,2,,82,2,,,,,,,,,,,,,,,,,,,,17,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,10:00,,,817,2,,900,2,,91,2,,,,,,,,,,,,,,,,,,,,22,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,11:00,,,913,2,,917,2,,98,2,,,,,,,,,,,,,,,,,,,,24,,,,,,34,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,12:00,,,961,2,,927,2,,99,2,,,,,,,,,,,,,,,,,,,,24,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,13:00,,,957,2,,928,2,,98,2,,,,,,,,,,,,,,,,,,,,27,,,,,,27,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,14:00,,,902,2,,919,2,,95,2,,,,,,,,,,,,,,,,,,,,27,,,,,,26,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,15:00,,,798,2,,896,2,,91,2,,,,,,,,,,,,,,,,,,,,27,,,,,,25,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,16:00,,,655,2,,855,2,,86,2,,,,,,,,,,,,,,,,,,,,28,,,,,,25,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,17:00,,,487,2,,787,2,,81,2,,,,,,,,,,,,,,,,,,,,28,,,,,,27,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,18:00,,,302,2,,657,2,,72,2,,,,,,,,,,,,,,,,,,,,25,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,19:00,,,130,2,,413,2,,56,2,,,,,,,,,,,,,,,,,,,,25,,,,,,31,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,20:00,,,15,2,,58,2,,14,2,,,,,,,,,,,,,,,,,,,,24,,,,,,35,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,42,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,05:00,,,16,2,,19,2,,15,2,,,,,,,,,,,,,,,,,,,,16,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,06:00,,,71,2,,22,2,,66,2,,,,,,,,,,,,,,,,,,,,17,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,07:00,,,247,2,,233,2,,159,2,,,,,,,,,,,,,,,,,,,,17,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,08:00,,,482,2,,557,2,,180,2,,,,,,,,,,,,,,,,,,,,18,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,09:00,,,583,2,,489,2,,247,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,10:00,,,774,2,,724,2,,190,2,,,,,,,,,,,,,,,,,,,,22,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,11:00,,,849,2,,701,2,,226,2,,,,,,,,,,,,,,,,,,,,24,,,,,,35,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,12:00,,,829,2,,577,2,,293,2,,,,,,,,,,,,,,,,,,,,24,,,,,,32,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,13:00,,,864,2,,624,2,,286,2,,,,,,,,,,,,,,,,,,,,27,,,,,,30,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,14:00,,,770,2,,532,2,,303,2,,,,,,,,,,,,,,,,,,,,27,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,15:00,,,662,2,,443,2,,312,2,,,,,,,,,,,,,,,,,,,,27,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,16:00,,,472,2,,255,2,,302,2,,,,,,,,,,,,,,,,,,,,27,,,,,,30,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,17:00,,,199,2,,33,2,,182,2,,,,,,,,,,,,,,,,,,,,27,,,,,,31,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,18:00,,,148,2,,33,2,,136,2,,,,,,,,,,,,,,,,,,,,26,,,,,,32,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,19:00,,,40,2,,3,2,,40,2,,,,,,,,,,,,,,,,,,,,26,,,,,,33,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,25,,,,,,36,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,05:00,,,20,2,,21,2,,19,2,,,,,,,,,,,,,,,,,,,,18,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,06:00,,,63,2,,56,2,,52,2,,,,,,,,,,,,,,,,,,,,19,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,07:00,,,89,2,,0,2,,89,2,,,,,,,,,,,,,,,,,,,,19,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,08:00,,,197,2,,12,2,,190,2,,,,,,,,,,,,,,,,,,,,19,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,09:00,,,350,2,,64,2,,306,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,10:00,,,323,2,,29,2,,300,2,,,,,,,,,,,,,,,,,,,,22,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,11:00,,,194,2,,5,2,,190,2,,,,,,,,,,,,,,,,,,,,22,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,12:00,,,164,2,,2,2,,162,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,13:00,,,167,2,,1,2,,166,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,14:00,,,161,2,,0,2,,161,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,15:00,,,161,2,,0,2,,161,2,,,,,,,,,,,,,,,,,,,,22,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,16:00,,,180,2,,3,2,,178,2,,,,,,,,,,,,,,,,,,,,23,,,,,,75,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,17:00,,,185,2,,8,2,,181,2,,,,,,,,,,,,,,,,,,,,25,,,,,,69,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,18:00,,,95,2,,0,2,,95,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,19:00,,,40,2,,0,2,,40,2,,,,,,,,,,,,,,,,,,,,25,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,20:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,05:00,,,18,2,,12,2,,18,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,06:00,,,71,2,,22,2,,66,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,07:00,,,216,2,,127,2,,168,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,08:00,,,291,2,,91,2,,242,2,,,,,,,,,,,,,,,,,,,,25,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,09:00,,,486,2,,273,2,,299,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,10:00,,,674,2,,434,2,,325,2,,,,,,,,,,,,,,,,,,,,29,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,11:00,,,769,2,,479,2,,344,2,,,,,,,,,,,,,,,,,,,,30,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,12:00,,,878,2,,611,2,,310,2,,,,,,,,,,,,,,,,,,,,31,,,,,,46,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,13:00,,,838,2,,564,2,,316,2,,,,,,,,,,,,,,,,,,,,33,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,14:00,,,679,2,,379,2,,346,2,,,,,,,,,,,,,,,,,,,,33,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,15:00,,,695,2,,517,2,,287,2,,,,,,,,,,,,,,,,,,,,33,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,16:00,,,609,2,,579,2,,223,2,,,,,,,,,,,,,,,,,,,,33,,,,,,42,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,17:00,,,408,2,,381,2,,211,2,,,,,,,,,,,,,,,,,,,,33,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,18:00,,,216,2,,219,2,,139,2,,,,,,,,,,,,,,,,,,,,32,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,19:00,,,94,2,,114,2,,74,2,,,,,,,,,,,,,,,,,,,,32,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,20:00,,,8,2,,3,2,,8,2,,,,,,,,,,,,,,,,,,,,31,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,30,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,28,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,05:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,24,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,06:00,,,42,2,,0,2,,42,2,,,,,,,,,,,,,,,,,,,,25,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,07:00,,,155,2,,84,2,,124,2,,,,,,,,,,,,,,,,,,,,25,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,08:00,,,316,2,,265,2,,173,2,,,,,,,,,,,,,,,,,,,,26,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,09:00,,,604,2,,523,2,,245,2,,,,,,,,,,,,,,,,,,,,27,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,10:00,,,745,2,,608,2,,256,2,,,,,,,,,,,,,,,,,,,,30,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,11:00,,,767,2,,504,2,,320,2,,,,,,,,,,,,,,,,,,,,32,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,12:00,,,808,2,,475,2,,367,2,,,,,,,,,,,,,,,,,,,,32,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,13:00,,,789,2,,448,2,,374,2,,,,,,,,,,,,,,,,,,,,33,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,14:00,,,484,2,,178,2,,328,2,,,,,,,,,,,,,,,,,,,,33,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,15:00,,,742,2,,567,2,,294,2,,,,,,,,,,,,,,,,,,,,33,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,16:00,,,480,2,,383,2,,225,2,,,,,,,,,,,,,,,,,,,,32,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,17:00,,,413,2,,369,2,,222,2,,,,,,,,,,,,,,,,,,,,28,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,18:00,,,145,2,,58,2,,125,2,,,,,,,,,,,,,,,,,,,,32,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,19:00,,,85,2,,120,2,,63,2,,,,,,,,,,,,,,,,,,,,32,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,31,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,30,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,05:00,,,21,2,,66,2,,19,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,06:00,,,139,2,,356,2,,67,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,07:00,,,319,2,,629,2,,84,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,08:00,,,501,2,,771,2,,86,2,,,,,,,,,,,,,,,,,,,,26,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,09:00,,,667,2,,836,2,,94,2,,,,,,,,,,,,,,,,,,,,27,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,10:00,,,805,2,,878,2,,99,2,,,,,,,,,,,,,,,,,,,,30,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,11:00,,,903,2,,895,2,,109,2,,,,,,,,,,,,,,,,,,,,30,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,12:00,,,908,2,,767,2,,196,2,,,,,,,,,,,,,,,,,,,,31,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,13:00,,,637,2,,377,2,,288,2,,,,,,,,,,,,,,,,,,,,33,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,14:00,,,851,2,,650,2,,280,2,,,,,,,,,,,,,,,,,,,,33,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,15:00,,,371,2,,141,2,,260,2,,,,,,,,,,,,,,,,,,,,33,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,16:00,,,209,2,,13,2,,200,2,,,,,,,,,,,,,,,,,,,,31,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,17:00,,,207,2,,78,2,,167,2,,,,,,,,,,,,,,,,,,,,31,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,18:00,,,149,2,,88,2,,118,2,,,,,,,,,,,,,,,,,,,,30,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,19:00,,,93,2,,99,2,,75,2,,,,,,,,,,,,,,,,,,,,29,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,20:00,,,8,2,,4,2,,8,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,28,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,05:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,06:00,,,41,2,,0,2,,41,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,07:00,,,120,2,,7,2,,117,2,,,,,,,,,,,,,,,,,,,,25,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,08:00,,,156,2,,6,2,,153,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,09:00,,,165,2,,1,2,,164,2,,,,,,,,,,,,,,,,,,,,25,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,10:00,,,220,2,,2,2,,218,2,,,,,,,,,,,,,,,,,,,,25,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,11:00,,,332,2,,18,2,,316,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,12:00,,,304,2,,37,2,,270,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,13:00,,,243,2,,12,2,,232,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,14:00,,,229,2,,5,2,,225,2,,,,,,,,,,,,,,,,,,,,30,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,15:00,,,281,2,,12,2,,272,2,,,,,,,,,,,,,,,,,,,,30,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,16:00,,,255,2,,14,2,,246,2,,,,,,,,,,,,,,,,,,,,27,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,17:00,,,135,2,,4,2,,133,2,,,,,,,,,,,,,,,,,,,,27,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,18:00,,,128,2,,20,2,,121,2,,,,,,,,,,,,,,,,,,,,26,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,19:00,,,57,2,,42,2,,50,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+06/30/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,24,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+06/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+06/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+06/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,05:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,06:00,,,56,2,,0,2,,56,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,07:00,,,187,2,,102,2,,149,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,08:00,,,255,2,,67,2,,219,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,09:00,,,230,2,,15,2,,220,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,10:00,,,455,2,,146,2,,338,2,,,,,,,,,,,,,,,,,,,,21,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,11:00,,,586,2,,208,2,,402,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,12:00,,,747,2,,417,2,,360,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,13:00,,,722,2,,360,2,,389,2,,,,,,,,,,,,,,,,,,,,24,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,14:00,,,430,2,,84,2,,356,2,,,,,,,,,,,,,,,,,,,,24,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,15:00,,,330,2,,22,2,,313,2,,,,,,,,,,,,,,,,,,,,24,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,16:00,,,240,2,,12,2,,232,2,,,,,,,,,,,,,,,,,,,,24,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,17:00,,,181,2,,7,2,,177,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,18:00,,,85,2,,0,2,,85,2,,,,,,,,,,,,,,,,,,,,22,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,19:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,22,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,06:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,07:00,,,55,2,,0,2,,55,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,08:00,,,96,2,,0,2,,96,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,09:00,,,145,2,,0,2,,145,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,10:00,,,140,2,,0,2,,140,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,11:00,,,160,2,,0,2,,160,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,12:00,,,247,2,,9,2,,239,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,13:00,,,240,2,,5,2,,235,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,14:00,,,215,2,,1,2,,214,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,15:00,,,173,2,,1,2,,172,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,16:00,,,167,2,,3,2,,165,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,17:00,,,216,2,,37,2,,197,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,18:00,,,161,2,,78,2,,134,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,19:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,05:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,06:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,07:00,,,111,2,,2,2,,110,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,08:00,,,205,2,,15,2,,197,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,09:00,,,187,2,,4,2,,184,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,10:00,,,171,2,,1,2,,170,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,11:00,,,240,2,,3,2,,237,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,12:00,,,299,2,,13,2,,287,2,,,,,,,,,,,,,,,,,,,,17,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,13:00,,,203,2,,2,2,,201,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,14:00,,,146,2,,0,2,,146,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,15:00,,,178,2,,3,2,,176,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,16:00,,,211,2,,8,2,,206,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,17:00,,,207,2,,18,2,,198,2,,,,,,,,,,,,,,,,,,,,18,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,18:00,,,75,2,,1,2,,75,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,19:00,,,35,2,,0,2,,35,2,,,,,,,,,,,,,,,,,,,,17,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,20:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,14,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,06:00,,,31,2,,2,2,,31,2,,,,,,,,,,,,,,,,,,,,15,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,07:00,,,136,2,,19,2,,129,2,,,,,,,,,,,,,,,,,,,,15,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,08:00,,,238,2,,37,2,,218,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,09:00,,,356,2,,100,2,,288,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,10:00,,,411,2,,100,2,,331,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,11:00,,,336,2,,18,2,,320,2,,,,,,,,,,,,,,,,,,,,17,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,12:00,,,473,2,,72,2,,406,2,,,,,,,,,,,,,,,,,,,,16,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,13:00,,,410,2,,53,2,,361,2,,,,,,,,,,,,,,,,,,,,18,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,14:00,,,546,2,,197,2,,373,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,15:00,,,434,2,,105,2,,351,2,,,,,,,,,,,,,,,,,,,,19,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,16:00,,,322,2,,63,2,,280,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,17:00,,,282,2,,91,2,,235,2,,,,,,,,,,,,,,,,,,,,21,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,18:00,,,132,2,,11,2,,128,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,19:00,,,40,2,,0,2,,40,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,05:00,,,19,2,,54,2,,18,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,06:00,,,133,2,,338,2,,67,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,07:00,,,311,2,,599,2,,92,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,08:00,,,493,2,,747,2,,96,2,,,,,,,,,,,,,,,,,,,,17,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,09:00,,,660,2,,823,2,,101,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,10:00,,,800,2,,871,2,,104,2,,,,,,,,,,,,,,,,,,,,22,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,11:00,,,899,2,,899,2,,106,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,12:00,,,948,2,,902,2,,114,2,,,,,,,,,,,,,,,,,,,,23,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,13:00,,,945,2,,895,2,,119,2,,,,,,,,,,,,,,,,,,,,26,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,14:00,,,889,2,,876,2,,121,2,,,,,,,,,,,,,,,,,,,,26,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,15:00,,,783,2,,812,2,,143,2,,,,,,,,,,,,,,,,,,,,27,,,,,,37,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,16:00,,,622,2,,653,2,,187,2,,,,,,,,,,,,,,,,,,,,28,,,,,,36,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,17:00,,,427,2,,445,2,,197,2,,,,,,,,,,,,,,,,,,,,28,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,18:00,,,200,2,,139,2,,151,2,,,,,,,,,,,,,,,,,,,,27,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,19:00,,,64,2,,30,2,,59,2,,,,,,,,,,,,,,,,,,,,26,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,25,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,06:00,,,22,2,,0,2,,22,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,07:00,,,74,2,,1,2,,74,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,08:00,,,180,2,,7,2,,176,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,09:00,,,315,2,,72,2,,266,2,,,,,,,,,,,,,,,,,,,,21,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,10:00,,,394,2,,55,2,,350,2,,,,,,,,,,,,,,,,,,,,22,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,11:00,,,393,2,,66,2,,335,2,,,,,,,,,,,,,,,,,,,,23,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,12:00,,,662,2,,252,2,,429,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,13:00,,,697,2,,298,2,,422,2,,,,,,,,,,,,,,,,,,,,27,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,14:00,,,666,2,,297,2,,406,2,,,,,,,,,,,,,,,,,,,,28,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,15:00,,,553,2,,292,2,,323,2,,,,,,,,,,,,,,,,,,,,28,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,16:00,,,551,2,,443,2,,256,2,,,,,,,,,,,,,,,,,,,,31,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,17:00,,,424,2,,469,2,,182,2,,,,,,,,,,,,,,,,,,,,30,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,18:00,,,243,2,,266,2,,150,2,,,,,,,,,,,,,,,,,,,,27,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,19:00,,,77,2,,86,2,,62,2,,,,,,,,,,,,,,,,,,,,26,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,25,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,06:00,,,52,2,,3,2,,51,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,07:00,,,199,2,,119,2,,156,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,08:00,,,401,2,,324,2,,230,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,09:00,,,380,2,,144,2,,283,2,,,,,,,,,,,,,,,,,,,,19,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,10:00,,,237,2,,25,2,,217,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,11:00,,,151,2,,0,2,,151,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,12:00,,,203,2,,3,2,,200,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,13:00,,,266,2,,10,2,,257,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,14:00,,,165,2,,1,2,,164,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,15:00,,,132,2,,0,2,,132,2,,,,,,,,,,,,,,,,,,,,19,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,16:00,,,108,2,,0,2,,108,2,,,,,,,,,,,,,,,,,,,,19,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,17:00,,,182,2,,37,2,,163,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,18:00,,,156,2,,74,2,,130,2,,,,,,,,,,,,,,,,,,,,18,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,19:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,18,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,20:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,17,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,05:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,14,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,06:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,15,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,07:00,,,102,2,,4,2,,101,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,08:00,,,156,2,,4,2,,154,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,09:00,,,176,2,,1,2,,175,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,10:00,,,233,2,,4,2,,230,2,,,,,,,,,,,,,,,,,,,,17,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,11:00,,,254,2,,5,2,,250,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,12:00,,,267,2,,8,2,,260,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,13:00,,,205,2,,4,2,,201,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,14:00,,,233,2,,2,2,,231,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,15:00,,,171,2,,1,2,,170,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,16:00,,,130,2,,0,2,,130,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,17:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,18:00,,,53,2,,0,2,,53,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,19:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,20:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,06:00,,,33,2,,0,2,,33,2,,,,,,,,,,,,,,,,,,,,18,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,07:00,,,176,2,,89,2,,144,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,08:00,,,252,2,,57,2,,222,2,,,,,,,,,,,,,,,,,,,,18,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,09:00,,,407,2,,159,2,,300,2,,,,,,,,,,,,,,,,,,,,18,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,10:00,,,534,2,,211,2,,366,2,,,,,,,,,,,,,,,,,,,,19,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,11:00,,,547,2,,157,2,,409,2,,,,,,,,,,,,,,,,,,,,19,,,,,,99,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,12:00,,,676,2,,301,2,,398,2,,,,,,,,,,,,,,,,,,,,19,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,13:00,,,654,2,,291,2,,386,2,,,,,,,,,,,,,,,,,,,,19,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,14:00,,,502,2,,113,2,,403,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,15:00,,,347,2,,28,2,,325,2,,,,,,,,,,,,,,,,,,,,19,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,16:00,,,254,2,,15,2,,244,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,17:00,,,142,2,,1,2,,142,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,18:00,,,104,2,,4,2,,103,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,19:00,,,25,2,,0,2,,25,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,05:00,,,15,2,,44,2,,14,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,06:00,,,124,2,,325,2,,64,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,07:00,,,306,2,,606,2,,89,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,08:00,,,488,2,,781,2,,79,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,09:00,,,648,2,,812,2,,102,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,10:00,,,760,2,,743,2,,171,2,,,,,,,,,,,,,,,,,,,,21,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,11:00,,,890,2,,865,2,,131,2,,,,,,,,,,,,,,,,,,,,21,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,12:00,,,944,2,,914,2,,102,2,,,,,,,,,,,,,,,,,,,,21,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,13:00,,,943,2,,917,2,,100,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,14:00,,,889,2,,909,2,,95,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,15:00,,,788,2,,887,2,,91,2,,,,,,,,,,,,,,,,,,,,24,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,16:00,,,646,2,,847,2,,84,2,,,,,,,,,,,,,,,,,,,,25,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,17:00,,,479,2,,782,2,,78,2,,,,,,,,,,,,,,,,,,,,25,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,18:00,,,297,2,,603,2,,88,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,19:00,,,115,2,,312,2,,61,2,,,,,,,,,,,,,,,,,,,,22,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,20:00,,,11,2,,12,2,,11,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,05:00,,,7,2,,7,2,,7,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,06:00,,,107,2,,198,2,,71,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,07:00,,,203,2,,156,2,,148,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,08:00,,,383,2,,324,2,,214,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,09:00,,,550,2,,450,2,,248,2,,,,,,,,,,,,,,,,,,,,18,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,10:00,,,633,2,,405,2,,312,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,11:00,,,660,2,,328,2,,372,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,12:00,,,644,2,,266,2,,399,2,,,,,,,,,,,,,,,,,,,,23,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,13:00,,,502,2,,102,2,,408,2,,,,,,,,,,,,,,,,,,,,25,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,14:00,,,472,2,,82,2,,400,2,,,,,,,,,,,,,,,,,,,,25,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,15:00,,,500,2,,169,2,,367,2,,,,,,,,,,,,,,,,,,,,25,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,16:00,,,270,2,,28,2,,252,2,,,,,,,,,,,,,,,,,,,,25,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,17:00,,,193,2,,10,2,,188,2,,,,,,,,,,,,,,,,,,,,24,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,18:00,,,130,2,,12,2,,126,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,19:00,,,50,2,,13,2,,48,2,,,,,,,,,,,,,,,,,,,,23,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,22,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,05:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,06:00,,,43,2,,0,2,,43,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,07:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,08:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,09:00,,,214,2,,15,2,,204,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,10:00,,,483,2,,235,2,,297,2,,,,,,,,,,,,,,,,,,,,22,,,,,,69,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,11:00,,,694,2,,394,2,,349,2,,,,,,,,,,,,,,,,,,,,23,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,12:00,,,758,2,,427,2,,366,2,,,,,,,,,,,,,,,,,,,,23,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,13:00,,,697,2,,350,2,,376,2,,,,,,,,,,,,,,,,,,,,26,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,14:00,,,618,2,,257,2,,394,2,,,,,,,,,,,,,,,,,,,,26,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,15:00,,,572,2,,299,2,,337,2,,,,,,,,,,,,,,,,,,,,27,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,16:00,,,565,2,,504,2,,232,2,,,,,,,,,,,,,,,,,,,,27,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,17:00,,,434,2,,520,2,,168,2,,,,,,,,,,,,,,,,,,,,27,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,18:00,,,270,2,,409,2,,129,2,,,,,,,,,,,,,,,,,,,,25,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,19:00,,,85,2,,98,2,,68,2,,,,,,,,,,,,,,,,,,,,25,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,20:00,,,4,2,,3,2,,4,2,,,,,,,,,,,,,,,,,,,,25,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,06:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,07:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,08:00,,,84,2,,0,2,,84,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,09:00,,,126,2,,0,2,,126,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,10:00,,,241,2,,7,2,,236,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,11:00,,,315,2,,13,2,,304,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,12:00,,,420,2,,40,2,,383,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,13:00,,,462,2,,80,2,,389,2,,,,,,,,,,,,,,,,,,,,22,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,14:00,,,338,2,,20,2,,321,2,,,,,,,,,,,,,,,,,,,,23,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,15:00,,,346,2,,28,2,,324,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,16:00,,,218,2,,7,2,,213,2,,,,,,,,,,,,,,,,,,,,24,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,17:00,,,133,2,,2,2,,132,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,18:00,,,57,2,,2,2,,56,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,19:00,,,55,2,,15,2,,52,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,20:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,20,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,06:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,07:00,,,184,2,,151,2,,131,2,,,,,,,,,,,,,,,,,,,,22,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,08:00,,,417,2,,409,2,,206,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,09:00,,,560,2,,436,2,,270,2,,,,,,,,,,,,,,,,,,,,22,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,10:00,,,521,2,,303,2,,282,2,,,,,,,,,,,,,,,,,,,,24,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,11:00,,,503,2,,155,2,,368,2,,,,,,,,,,,,,,,,,,,,25,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,12:00,,,494,2,,159,2,,348,2,,,,,,,,,,,,,,,,,,,,26,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,13:00,,,254,2,,57,2,,202,2,,,,,,,,,,,,,,,,,,,,27,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,14:00,,,819,2,,643,2,,259,2,,,,,,,,,,,,,,,,,,,,27,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,15:00,,,755,2,,742,2,,174,2,,,,,,,,,,,,,,,,,,,,26,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,16:00,,,612,2,,642,2,,188,2,,,,,,,,,,,,,,,,,,,,27,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,17:00,,,367,2,,297,2,,216,2,,,,,,,,,,,,,,,,,,,,26,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,18:00,,,166,2,,117,2,,126,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,19:00,,,77,2,,56,2,,68,2,,,,,,,,,,,,,,,,,,,,25,,,,,,78,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,20:00,,,5,2,,3,2,,5,2,,,,,,,,,,,,,,,,,,,,25,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,05:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,06:00,,,48,2,,0,2,,48,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,07:00,,,143,2,,27,2,,134,2,,,,,,,,,,,,,,,,,,,,21,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,08:00,,,349,2,,224,2,,234,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,09:00,,,609,2,,597,2,,212,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,10:00,,,765,2,,765,2,,163,2,,,,,,,,,,,,,,,,,,,,26,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,11:00,,,870,2,,825,2,,150,2,,,,,,,,,,,,,,,,,,,,27,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,12:00,,,921,2,,835,2,,156,2,,,,,,,,,,,,,,,,,,,,27,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,13:00,,,917,2,,826,2,,161,2,,,,,,,,,,,,,,,,,,,,30,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,14:00,,,865,2,,813,2,,158,2,,,,,,,,,,,,,,,,,,,,30,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,15:00,,,752,2,,728,2,,183,2,,,,,,,,,,,,,,,,,,,,31,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,16:00,,,599,2,,617,2,,193,2,,,,,,,,,,,,,,,,,,,,31,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,17:00,,,424,2,,491,2,,174,2,,,,,,,,,,,,,,,,,,,,30,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,18:00,,,241,2,,272,2,,148,2,,,,,,,,,,,,,,,,,,,,28,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,19:00,,,43,2,,12,2,,41,2,,,,,,,,,,,,,,,,,,,,28,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,26,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,05:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,23,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,06:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,07:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,08:00,,,136,2,,4,2,,134,2,,,,,,,,,,,,,,,,,,,,23,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,09:00,,,211,2,,20,2,,198,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,10:00,,,469,2,,143,2,,357,2,,,,,,,,,,,,,,,,,,,,23,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,11:00,,,360,2,,43,2,,322,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,12:00,,,625,2,,227,2,,417,2,,,,,,,,,,,,,,,,,,,,24,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,13:00,,,552,2,,149,2,,416,2,,,,,,,,,,,,,,,,,,,,25,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,14:00,,,763,2,,522,2,,310,2,,,,,,,,,,,,,,,,,,,,26,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,15:00,,,751,2,,733,2,,179,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,16:00,,,619,2,,666,2,,181,2,,,,,,,,,,,,,,,,,,,,26,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,17:00,,,371,2,,272,2,,233,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,18:00,,,129,2,,106,2,,93,2,,,,,,,,,,,,,,,,,,,,24,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,19:00,,,55,2,,34,2,,49,2,,,,,,,,,,,,,,,,,,,,23,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,22,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,05:00,,,7,2,,3,2,,7,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,06:00,,,66,2,,46,2,,58,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,07:00,,,77,2,,3,2,,76,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,08:00,,,216,2,,36,2,,198,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,09:00,,,258,2,,24,2,,242,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,10:00,,,274,2,,11,2,,265,2,,,,,,,,,,,,,,,,,,,,21,,,,,,76,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,11:00,,,261,2,,3,2,,258,2,,,,,,,,,,,,,,,,,,,,21,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,12:00,,,287,2,,13,2,,275,2,,,,,,,,,,,,,,,,,,,,21,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,13:00,,,391,2,,29,2,,364,2,,,,,,,,,,,,,,,,,,,,22,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,14:00,,,413,2,,60,2,,361,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,15:00,,,293,2,,21,2,,277,2,,,,,,,,,,,,,,,,,,,,22,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,16:00,,,284,2,,27,2,,266,2,,,,,,,,,,,,,,,,,,,,22,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,17:00,,,188,2,,12,2,,182,2,,,,,,,,,,,,,,,,,,,,22,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,18:00,,,102,2,,14,2,,97,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,19:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,20,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,06:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,07:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,08:00,,,81,2,,0,2,,81,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,09:00,,,118,2,,0,2,,118,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,10:00,,,144,2,,0,2,,144,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,11:00,,,241,2,,7,2,,235,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,12:00,,,244,2,,7,2,,238,2,,,,,,,,,,,,,,,,,,,,20,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,13:00,,,200,2,,1,2,,199,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,14:00,,,228,2,,2,2,,226,2,,,,,,,,,,,,,,,,,,,,22,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,15:00,,,179,2,,1,2,,178,2,,,,,,,,,,,,,,,,,,,,22,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,16:00,,,187,2,,2,2,,186,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,17:00,,,158,2,,5,2,,156,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,18:00,,,47,2,,0,2,,47,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,19:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,06:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,07:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,08:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,09:00,,,138,2,,0,2,,138,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,10:00,,,262,2,,10,2,,254,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,11:00,,,411,2,,62,2,,357,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,12:00,,,383,2,,32,2,,354,2,,,,,,,,,,,,,,,,,,,,23,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,13:00,,,404,2,,49,2,,359,2,,,,,,,,,,,,,,,,,,,,25,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,14:00,,,575,2,,254,2,,355,2,,,,,,,,,,,,,,,,,,,,25,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,15:00,,,657,2,,439,2,,316,2,,,,,,,,,,,,,,,,,,,,25,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,16:00,,,509,2,,324,2,,297,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,17:00,,,314,2,,143,2,,242,2,,,,,,,,,,,,,,,,,,,,27,,,,,,57,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,18:00,,,136,2,,29,2,,126,2,,,,,,,,,,,,,,,,,,,,26,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,19:00,,,41,2,,0,2,,41,2,,,,,,,,,,,,,,,,,,,,26,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,20:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,25,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,06:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,07:00,,,91,2,,0,2,,91,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,08:00,,,79,2,,0,2,,79,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,09:00,,,159,2,,1,2,,158,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,10:00,,,150,2,,4,2,,147,2,,,,,,,,,,,,,,,,,,,,23,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,11:00,,,445,2,,81,2,,375,2,,,,,,,,,,,,,,,,,,,,23,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,12:00,,,712,2,,318,2,,423,2,,,,,,,,,,,,,,,,,,,,24,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,13:00,,,630,2,,277,2,,378,2,,,,,,,,,,,,,,,,,,,,26,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,14:00,,,699,2,,377,2,,373,2,,,,,,,,,,,,,,,,,,,,26,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,15:00,,,600,2,,305,2,,363,2,,,,,,,,,,,,,,,,,,,,27,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,16:00,,,467,2,,234,2,,314,2,,,,,,,,,,,,,,,,,,,,24,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,17:00,,,297,2,,122,2,,236,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,18:00,,,80,2,,7,2,,78,2,,,,,,,,,,,,,,,,,,,,22,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,19:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,22,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,06:00,,,47,2,,8,2,,46,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,07:00,,,76,2,,1,2,,76,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,08:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,09:00,,,122,2,,0,2,,122,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,10:00,,,155,2,,0,2,,155,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,11:00,,,170,2,,1,2,,169,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,12:00,,,265,2,,6,2,,260,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,13:00,,,209,2,,2,2,,207,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,14:00,,,176,2,,1,2,,175,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,15:00,,,164,2,,1,2,,163,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,16:00,,,139,2,,0,2,,139,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,17:00,,,118,2,,2,2,,117,2,,,,,,,,,,,,,,,,,,,,22,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,18:00,,,156,2,,106,2,,121,2,,,,,,,,,,,,,,,,,,,,20,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,19:00,,,77,2,,91,2,,63,2,,,,,,,,,,,,,,,,,,,,20,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,20:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,98,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,05:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,14,,,,,,97,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,06:00,,,69,2,,56,2,,60,2,,,,,,,,,,,,,,,,,,,,15,,,,,,96,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,07:00,,,214,2,,245,2,,132,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,08:00,,,353,2,,266,2,,220,2,,,,,,,,,,,,,,,,,,,,16,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,09:00,,,497,2,,342,2,,274,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,10:00,,,432,2,,109,2,,347,2,,,,,,,,,,,,,,,,,,,,20,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,11:00,,,597,2,,269,2,,365,2,,,,,,,,,,,,,,,,,,,,21,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,12:00,,,766,2,,444,2,,363,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,13:00,,,796,2,,524,2,,321,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,14:00,,,609,2,,395,2,,269,2,,,,,,,,,,,,,,,,,,,,25,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,15:00,,,613,2,,365,2,,331,2,,,,,,,,,,,,,,,,,,,,24,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,16:00,,,569,2,,544,2,,216,2,,,,,,,,,,,,,,,,,,,,24,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,17:00,,,419,2,,499,2,,171,2,,,,,,,,,,,,,,,,,,,,24,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,18:00,,,236,2,,319,2,,131,2,,,,,,,,,,,,,,,,,,,,22,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,19:00,,,75,2,,85,2,,62,2,,,,,,,,,,,,,,,,,,,,22,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,20:00,,,3,2,,1,2,,3,2,,,,,,,,,,,,,,,,,,,,21,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,05:00,,,4,2,,1,2,,4,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,06:00,,,63,2,,32,2,,58,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,07:00,,,184,2,,137,2,,139,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,08:00,,,441,2,,523,2,,180,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,09:00,,,553,2,,511,2,,220,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,10:00,,,667,2,,507,2,,275,2,,,,,,,,,,,,,,,,,,,,20,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,11:00,,,858,2,,785,2,,182,2,,,,,,,,,,,,,,,,,,,,22,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,12:00,,,916,2,,858,2,,139,2,,,,,,,,,,,,,,,,,,,,22,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,13:00,,,913,2,,860,2,,134,2,,,,,,,,,,,,,,,,,,,,24,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,14:00,,,864,2,,858,2,,127,2,,,,,,,,,,,,,,,,,,,,24,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,15:00,,,763,2,,840,2,,115,2,,,,,,,,,,,,,,,,,,,,24,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,16:00,,,621,2,,798,2,,104,2,,,,,,,,,,,,,,,,,,,,25,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,17:00,,,452,2,,723,2,,94,2,,,,,,,,,,,,,,,,,,,,25,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,18:00,,,264,2,,502,2,,100,2,,,,,,,,,,,,,,,,,,,,22,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,19:00,,,87,2,,180,2,,60,2,,,,,,,,,,,,,,,,,,,,22,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,20:00,,,3,2,,5,2,,3,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,05:00,,,6,2,,12,2,,6,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,06:00,,,100,2,,305,2,,53,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,07:00,,,276,2,,626,2,,70,2,,,,,,,,,,,,,,,,,,,,17,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,08:00,,,460,2,,774,2,,75,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,09:00,,,627,2,,832,2,,87,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,10:00,,,767,2,,866,2,,98,2,,,,,,,,,,,,,,,,,,,,22,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,11:00,,,868,2,,882,2,,110,2,,,,,,,,,,,,,,,,,,,,24,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,12:00,,,921,2,,894,2,,113,2,,,,,,,,,,,,,,,,,,,,24,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,13:00,,,920,2,,896,2,,110,2,,,,,,,,,,,,,,,,,,,,26,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,14:00,,,863,2,,879,2,,109,2,,,,,,,,,,,,,,,,,,,,27,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,15:00,,,765,2,,862,2,,101,2,,,,,,,,,,,,,,,,,,,,27,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,16:00,,,618,2,,775,2,,118,2,,,,,,,,,,,,,,,,,,,,27,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,17:00,,,421,2,,504,2,,172,2,,,,,,,,,,,,,,,,,,,,27,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,18:00,,,133,2,,47,2,,118,2,,,,,,,,,,,,,,,,,,,,25,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,19:00,,,35,2,,0,2,,35,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,20:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,23,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,06:00,,,37,2,,6,2,,36,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,07:00,,,67,2,,1,2,,67,2,,,,,,,,,,,,,,,,,,,,19,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,08:00,,,171,2,,7,2,,168,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,09:00,,,318,2,,73,2,,271,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,10:00,,,505,2,,277,2,,292,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,11:00,,,778,2,,547,2,,309,2,,,,,,,,,,,,,,,,,,,,22,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,12:00,,,820,2,,532,2,,340,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,13:00,,,804,2,,515,2,,339,2,,,,,,,,,,,,,,,,,,,,26,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,14:00,,,751,2,,488,2,,333,2,,,,,,,,,,,,,,,,,,,,27,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,15:00,,,649,2,,436,2,,314,2,,,,,,,,,,,,,,,,,,,,27,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,16:00,,,456,2,,234,2,,305,2,,,,,,,,,,,,,,,,,,,,28,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,17:00,,,317,2,,147,2,,245,2,,,,,,,,,,,,,,,,,,,,28,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,18:00,,,154,2,,55,2,,136,2,,,,,,,,,,,,,,,,,,,,25,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,19:00,,,38,2,,1,2,,38,2,,,,,,,,,,,,,,,,,,,,24,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,24,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,06:00,,,44,2,,1,2,,44,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,07:00,,,142,2,,26,2,,134,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,08:00,,,252,2,,50,2,,227,2,,,,,,,,,,,,,,,,,,,,20,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,09:00,,,376,2,,97,2,,313,2,,,,,,,,,,,,,,,,,,,,21,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,10:00,,,485,2,,127,2,,387,2,,,,,,,,,,,,,,,,,,,,24,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,11:00,,,542,2,,145,2,,418,2,,,,,,,,,,,,,,,,,,,,24,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,12:00,,,624,2,,194,2,,449,2,,,,,,,,,,,,,,,,,,,,25,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,13:00,,,605,2,,177,2,,446,2,,,,,,,,,,,,,,,,,,,,27,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,14:00,,,431,2,,69,2,,372,2,,,,,,,,,,,,,,,,,,,,27,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,15:00,,,190,2,,12,2,,181,2,,,,,,,,,,,,,,,,,,,,27,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,16:00,,,302,2,,71,2,,256,2,,,,,,,,,,,,,,,,,,,,27,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,17:00,,,328,2,,195,2,,232,2,,,,,,,,,,,,,,,,,,,,28,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,18:00,,,133,2,,76,2,,109,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,19:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,25,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,24,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,05:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,06:00,,,47,2,,3,2,,47,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,07:00,,,157,2,,59,2,,138,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,08:00,,,351,2,,240,2,,233,2,,,,,,,,,,,,,,,,,,,,19,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,09:00,,,383,2,,128,2,,301,2,,,,,,,,,,,,,,,,,,,,19,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,10:00,,,510,2,,216,2,,344,2,,,,,,,,,,,,,,,,,,,,22,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,11:00,,,707,2,,383,2,,380,2,,,,,,,,,,,,,,,,,,,,23,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,12:00,,,351,2,,48,2,,308,2,,,,,,,,,,,,,,,,,,,,23,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,13:00,,,196,2,,3,2,,193,2,,,,,,,,,,,,,,,,,,,,22,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,14:00,,,139,2,,0,2,,139,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,15:00,,,112,2,,0,2,,112,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,16:00,,,84,2,,0,2,,84,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,17:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,19,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,18:00,,,35,2,,0,2,,35,2,,,,,,,,,,,,,,,,,,,,17,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,19:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,16,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,05:00,,,3,2,,1,2,,3,2,,,,,,,,,,,,,,,,,,,,15,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,06:00,,,69,2,,84,2,,57,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,07:00,,,251,2,,396,2,,125,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,08:00,,,352,2,,325,2,,193,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,09:00,,,345,2,,123,2,,266,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,10:00,,,623,2,,417,2,,304,2,,,,,,,,,,,,,,,,,,,,19,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,11:00,,,758,2,,569,2,,273,2,,,,,,,,,,,,,,,,,,,,19,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,12:00,,,830,2,,656,2,,241,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,13:00,,,856,2,,713,2,,216,2,,,,,,,,,,,,,,,,,,,,22,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,14:00,,,855,2,,838,2,,142,2,,,,,,,,,,,,,,,,,,,,22,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,15:00,,,753,2,,843,2,,110,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,16:00,,,610,2,,798,2,,101,2,,,,,,,,,,,,,,,,,,,,23,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,17:00,,,440,2,,722,2,,90,2,,,,,,,,,,,,,,,,,,,,22,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,18:00,,,256,2,,545,2,,84,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,19:00,,,84,2,,237,2,,51,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,20:00,,,3,2,,9,2,,3,2,,,,,,,,,,,,,,,,,,,,19,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,12,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,06:00,,,62,2,,97,2,,48,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,07:00,,,216,2,,289,2,,125,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,08:00,,,399,2,,459,2,,176,2,,,,,,,,,,,,,,,,,,,,16,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,09:00,,,531,2,,417,2,,265,2,,,,,,,,,,,,,,,,,,,,17,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,10:00,,,551,2,,309,2,,315,2,,,,,,,,,,,,,,,,,,,,20,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,11:00,,,463,2,,107,2,,372,2,,,,,,,,,,,,,,,,,,,,21,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,12:00,,,221,2,,7,2,,215,2,,,,,,,,,,,,,,,,,,,,22,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,13:00,,,198,2,,1,2,,197,2,,,,,,,,,,,,,,,,,,,,21,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,14:00,,,129,2,,0,2,,129,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,15:00,,,150,2,,0,2,,150,2,,,,,,,,,,,,,,,,,,,,22,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,16:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,20,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,17:00,,,73,2,,0,2,,73,2,,,,,,,,,,,,,,,,,,,,19,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,18:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,19:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,06:00,,,47,2,,29,2,,43,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,07:00,,,118,2,,63,2,,98,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,08:00,,,140,2,,0,2,,140,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,09:00,,,234,2,,25,2,,218,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,10:00,,,178,2,,5,2,,174,2,,,,,,,,,,,,,,,,,,,,17,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,11:00,,,301,2,,15,2,,288,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,12:00,,,351,2,,17,2,,336,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,13:00,,,384,2,,44,2,,345,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,14:00,,,620,2,,292,2,,372,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,15:00,,,717,2,,681,2,,200,2,,,,,,,,,,,,,,,,,,,,18,,,,,,61,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,16:00,,,583,2,,695,2,,143,2,,,,,,,,,,,,,,,,,,,,18,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,17:00,,,423,2,,592,2,,139,2,,,,,,,,,,,,,,,,,,,,18,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,18:00,,,180,2,,242,2,,105,2,,,,,,,,,,,,,,,,,,,,18,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,19:00,,,29,2,,24,2,,26,2,,,,,,,,,,,,,,,,,,,,18,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,05:00,,,2,2,,8,2,,2,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,06:00,,,63,2,,106,2,,49,2,,,,,,,,,,,,,,,,,,,,14,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,07:00,,,240,2,,413,2,,112,2,,,,,,,,,,,,,,,,,,,,14,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,08:00,,,434,2,,665,2,,114,2,,,,,,,,,,,,,,,,,,,,14,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,09:00,,,607,2,,789,2,,106,2,,,,,,,,,,,,,,,,,,,,14,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,10:00,,,752,2,,855,2,,103,2,,,,,,,,,,,,,,,,,,,,18,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,11:00,,,857,2,,894,2,,100,2,,,,,,,,,,,,,,,,,,,,19,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,12:00,,,908,2,,897,2,,108,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,13:00,,,890,2,,808,2,,169,2,,,,,,,,,,,,,,,,,,,,21,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,14:00,,,753,2,,570,2,,271,2,,,,,,,,,,,,,,,,,,,,21,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,15:00,,,656,2,,523,2,,260,2,,,,,,,,,,,,,,,,,,,,21,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,16:00,,,526,2,,458,2,,237,2,,,,,,,,,,,,,,,,,,,,22,,,,,,42,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,17:00,,,292,2,,210,2,,192,2,,,,,,,,,,,,,,,,,,,,22,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,18:00,,,154,2,,126,2,,115,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,19:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+07/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,06:00,,,36,2,,0,2,,36,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,07:00,,,106,2,,3,2,,105,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,08:00,,,106,2,,0,2,,106,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,09:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,10:00,,,196,2,,9,2,,189,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,11:00,,,422,2,,106,2,,332,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,12:00,,,514,2,,130,2,,398,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,13:00,,,194,2,,9,2,,186,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,14:00,,,147,2,,0,2,,147,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,15:00,,,127,2,,0,2,,127,2,,,,,,,,,,,,,,,,,,,,18,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,16:00,,,118,2,,0,2,,118,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,17:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,18:00,,,37,2,,0,2,,37,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,19:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,18,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,06:00,,,37,2,,13,2,,35,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,07:00,,,78,2,,5,2,,76,2,,,,,,,,,,,,,,,,,,,,16,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,08:00,,,239,2,,73,2,,204,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,09:00,,,481,2,,356,2,,257,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,10:00,,,708,2,,635,2,,229,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,11:00,,,692,2,,437,2,,324,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,12:00,,,847,2,,664,2,,257,2,,,,,,,,,,,,,,,,,,,,19,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,13:00,,,889,2,,749,2,,224,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,14:00,,,509,2,,239,2,,308,2,,,,,,,,,,,,,,,,,,,,22,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,15:00,,,581,2,,375,2,,299,2,,,,,,,,,,,,,,,,,,,,22,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,16:00,,,505,2,,442,2,,228,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,17:00,,,418,2,,630,2,,120,2,,,,,,,,,,,,,,,,,,,,23,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,18:00,,,242,2,,562,2,,73,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,19:00,,,71,2,,197,2,,47,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,20:00,,,2,2,,3,2,,2,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,05:00,,,2,2,,10,2,,2,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,06:00,,,75,2,,247,2,,44,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,07:00,,,248,2,,580,2,,72,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,08:00,,,436,2,,750,2,,80,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,09:00,,,607,2,,838,2,,81,2,,,,,,,,,,,,,,,,,,,,17,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,10:00,,,751,2,,888,2,,82,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,11:00,,,854,2,,916,2,,84,2,,,,,,,,,,,,,,,,,,,,23,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,12:00,,,906,2,,927,2,,84,2,,,,,,,,,,,,,,,,,,,,23,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,13:00,,,901,2,,902,2,,102,2,,,,,,,,,,,,,,,,,,,,25,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,14:00,,,805,2,,742,2,,182,2,,,,,,,,,,,,,,,,,,,,25,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,15:00,,,704,2,,733,2,,154,2,,,,,,,,,,,,,,,,,,,,25,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,16:00,,,575,2,,726,2,,122,2,,,,,,,,,,,,,,,,,,,,25,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,17:00,,,425,2,,701,2,,96,2,,,,,,,,,,,,,,,,,,,,25,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,18:00,,,234,2,,517,2,,80,2,,,,,,,,,,,,,,,,,,,,24,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,19:00,,,63,2,,139,2,,46,2,,,,,,,,,,,,,,,,,,,,23,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,20:00,,,1,2,,1,2,,1,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,06:00,,,43,2,,9,2,,42,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,07:00,,,108,2,,13,2,,104,2,,,,,,,,,,,,,,,,,,,,17,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,08:00,,,284,2,,128,2,,224,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,09:00,,,424,2,,194,2,,303,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,10:00,,,550,2,,252,2,,361,2,,,,,,,,,,,,,,,,,,,,21,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,11:00,,,619,2,,260,2,,401,2,,,,,,,,,,,,,,,,,,,,22,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,12:00,,,725,2,,387,2,,383,2,,,,,,,,,,,,,,,,,,,,23,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,13:00,,,695,2,,324,2,,409,2,,,,,,,,,,,,,,,,,,,,25,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,14:00,,,698,2,,424,2,,343,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,15:00,,,590,2,,364,2,,318,2,,,,,,,,,,,,,,,,,,,,26,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,16:00,,,466,2,,302,2,,278,2,,,,,,,,,,,,,,,,,,,,26,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,17:00,,,264,2,,109,2,,213,2,,,,,,,,,,,,,,,,,,,,26,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,18:00,,,168,2,,118,2,,133,2,,,,,,,,,,,,,,,,,,,,24,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,19:00,,,18,2,,2,2,,18,2,,,,,,,,,,,,,,,,,,,,23,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,06:00,,,47,2,,37,2,,43,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,07:00,,,210,2,,325,2,,113,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,08:00,,,389,2,,514,2,,148,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,09:00,,,525,2,,523,2,,199,2,,,,,,,,,,,,,,,,,,,,19,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,10:00,,,626,2,,472,2,,273,2,,,,,,,,,,,,,,,,,,,,22,,,,,,62,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,11:00,,,666,2,,399,2,,332,2,,,,,,,,,,,,,,,,,,,,24,,,,,,59,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,12:00,,,859,2,,701,2,,240,2,,,,,,,,,,,,,,,,,,,,24,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,13:00,,,847,2,,710,2,,221,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,14:00,,,818,2,,781,2,,166,2,,,,,,,,,,,,,,,,,,,,26,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,15:00,,,734,2,,824,2,,120,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,16:00,,,587,2,,777,2,,106,2,,,,,,,,,,,,,,,,,,,,26,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,17:00,,,413,2,,649,2,,112,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,18:00,,,220,2,,408,2,,101,2,,,,,,,,,,,,,,,,,,,,24,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,19:00,,,50,2,,60,2,,43,2,,,,,,,,,,,,,,,,,,,,24,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,20:00,,,1,2,,1,2,,1,2,,,,,,,,,,,,,,,,,,,,23,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,17,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,06:00,,,49,2,,28,2,,46,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,07:00,,,179,2,,165,2,,130,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,08:00,,,358,2,,352,2,,194,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,09:00,,,536,2,,529,2,,208,2,,,,,,,,,,,,,,,,,,,,20,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,10:00,,,687,2,,611,2,,231,2,,,,,,,,,,,,,,,,,,,,24,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,11:00,,,800,2,,694,2,,221,2,,,,,,,,,,,,,,,,,,,,25,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,12:00,,,858,2,,726,2,,219,2,,,,,,,,,,,,,,,,,,,,26,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,13:00,,,847,2,,688,2,,242,2,,,,,,,,,,,,,,,,,,,,29,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,14:00,,,774,2,,618,2,,260,2,,,,,,,,,,,,,,,,,,,,29,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,15:00,,,665,2,,573,2,,240,2,,,,,,,,,,,,,,,,,,,,29,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,16:00,,,528,2,,545,2,,192,2,,,,,,,,,,,,,,,,,,,,30,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,17:00,,,356,2,,402,2,,171,2,,,,,,,,,,,,,,,,,,,,29,,,,,,45,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,18:00,,,176,2,,195,2,,120,2,,,,,,,,,,,,,,,,,,,,27,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,19:00,,,44,2,,40,2,,40,2,,,,,,,,,,,,,,,,,,,,26,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,25,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,06:00,,,42,2,,13,2,,40,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,07:00,,,155,2,,106,2,,124,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,08:00,,,320,2,,268,2,,196,2,,,,,,,,,,,,,,,,,,,,21,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,09:00,,,514,2,,440,2,,242,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,10:00,,,656,2,,496,2,,287,2,,,,,,,,,,,,,,,,,,,,26,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,11:00,,,629,2,,316,2,,366,2,,,,,,,,,,,,,,,,,,,,27,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,12:00,,,552,2,,155,2,,416,2,,,,,,,,,,,,,,,,,,,,28,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,13:00,,,760,2,,443,2,,372,2,,,,,,,,,,,,,,,,,,,,28,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,14:00,,,664,2,,342,2,,380,2,,,,,,,,,,,,,,,,,,,,25,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,15:00,,,419,2,,211,2,,263,2,,,,,,,,,,,,,,,,,,,,27,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,16:00,,,268,2,,36,2,,246,2,,,,,,,,,,,,,,,,,,,,27,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,17:00,,,195,2,,32,2,,180,2,,,,,,,,,,,,,,,,,,,,27,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,18:00,,,90,2,,28,2,,82,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,19:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,25,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,20:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,06:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,07:00,,,98,2,,3,2,,97,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,08:00,,,179,2,,12,2,,174,2,,,,,,,,,,,,,,,,,,,,21,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,09:00,,,339,2,,93,2,,282,2,,,,,,,,,,,,,,,,,,,,22,,,,,,79,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,10:00,,,503,2,,196,2,,358,2,,,,,,,,,,,,,,,,,,,,25,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,11:00,,,753,2,,504,2,,334,2,,,,,,,,,,,,,,,,,,,,25,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,12:00,,,845,2,,663,2,,264,2,,,,,,,,,,,,,,,,,,,,25,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,13:00,,,850,2,,700,2,,238,2,,,,,,,,,,,,,,,,,,,,27,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,14:00,,,783,2,,642,2,,252,2,,,,,,,,,,,,,,,,,,,,28,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,15:00,,,668,2,,577,2,,243,2,,,,,,,,,,,,,,,,,,,,28,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,16:00,,,505,2,,420,2,,249,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,17:00,,,229,2,,83,2,,191,2,,,,,,,,,,,,,,,,,,,,28,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,18:00,,,78,2,,23,2,,72,2,,,,,,,,,,,,,,,,,,,,26,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,19:00,,,14,2,,3,2,,14,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,06:00,,,43,2,,16,2,,41,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,07:00,,,128,2,,42,2,,116,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,08:00,,,296,2,,215,2,,197,2,,,,,,,,,,,,,,,,,,,,22,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,09:00,,,496,2,,381,2,,262,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,10:00,,,569,2,,343,2,,315,2,,,,,,,,,,,,,,,,,,,,26,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,11:00,,,457,2,,108,2,,368,2,,,,,,,,,,,,,,,,,,,,27,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,12:00,,,333,2,,25,2,,311,2,,,,,,,,,,,,,,,,,,,,27,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,13:00,,,395,2,,51,2,,350,2,,,,,,,,,,,,,,,,,,,,30,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,14:00,,,534,2,,197,2,,372,2,,,,,,,,,,,,,,,,,,,,30,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,15:00,,,593,2,,381,2,,313,2,,,,,,,,,,,,,,,,,,,,30,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,16:00,,,533,2,,536,2,,208,2,,,,,,,,,,,,,,,,,,,,30,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,17:00,,,334,2,,351,2,,176,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,18:00,,,185,2,,262,2,,112,2,,,,,,,,,,,,,,,,,,,,27,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,19:00,,,41,2,,46,2,,36,2,,,,,,,,,,,,,,,,,,,,26,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,06:00,,,46,2,,27,2,,43,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,07:00,,,169,2,,167,2,,122,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,08:00,,,337,2,,305,2,,198,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,09:00,,,552,2,,588,2,,193,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,10:00,,,704,2,,725,2,,170,2,,,,,,,,,,,,,,,,,,,,26,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,11:00,,,814,2,,791,2,,161,2,,,,,,,,,,,,,,,,,,,,27,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,12:00,,,881,2,,851,2,,140,2,,,,,,,,,,,,,,,,,,,,27,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,13:00,,,880,2,,865,2,,128,2,,,,,,,,,,,,,,,,,,,,29,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,14:00,,,824,2,,855,2,,121,2,,,,,,,,,,,,,,,,,,,,30,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,15:00,,,714,2,,805,2,,125,2,,,,,,,,,,,,,,,,,,,,30,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,16:00,,,562,2,,660,2,,164,2,,,,,,,,,,,,,,,,,,,,30,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,17:00,,,297,2,,321,2,,153,2,,,,,,,,,,,,,,,,,,,,30,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,18:00,,,147,2,,143,2,,108,2,,,,,,,,,,,,,,,,,,,,28,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,19:00,,,33,2,,13,2,,32,2,,,,,,,,,,,,,,,,,,,,27,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,06:00,,,31,2,,10,2,,30,2,,,,,,,,,,,,,,,,,,,,23,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,07:00,,,78,2,,18,2,,73,2,,,,,,,,,,,,,,,,,,,,23,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,08:00,,,162,2,,14,2,,156,2,,,,,,,,,,,,,,,,,,,,23,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,09:00,,,217,2,,18,2,,206,2,,,,,,,,,,,,,,,,,,,,23,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,10:00,,,280,2,,57,2,,238,2,,,,,,,,,,,,,,,,,,,,25,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,11:00,,,757,2,,551,2,,303,2,,,,,,,,,,,,,,,,,,,,26,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,12:00,,,444,2,,170,2,,296,2,,,,,,,,,,,,,,,,,,,,26,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,13:00,,,826,2,,652,2,,261,2,,,,,,,,,,,,,,,,,,,,30,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,14:00,,,783,2,,683,2,,223,2,,,,,,,,,,,,,,,,,,,,31,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,15:00,,,662,2,,625,2,,207,2,,,,,,,,,,,,,,,,,,,,31,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,16:00,,,543,2,,566,2,,203,2,,,,,,,,,,,,,,,,,,,,32,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,17:00,,,285,2,,208,2,,193,2,,,,,,,,,,,,,,,,,,,,32,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,18:00,,,63,2,,9,2,,61,2,,,,,,,,,,,,,,,,,,,,29,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,19:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,28,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,28,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,06:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,24,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,07:00,,,71,2,,4,2,,70,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,08:00,,,270,2,,139,2,,207,2,,,,,,,,,,,,,,,,,,,,25,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,09:00,,,458,2,,276,2,,291,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,10:00,,,669,2,,549,2,,267,2,,,,,,,,,,,,,,,,,,,,28,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,11:00,,,733,2,,552,2,,280,2,,,,,,,,,,,,,,,,,,,,30,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,12:00,,,644,2,,285,2,,397,2,,,,,,,,,,,,,,,,,,,,30,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,13:00,,,428,2,,84,2,,355,2,,,,,,,,,,,,,,,,,,,,31,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,14:00,,,255,2,,10,2,,247,2,,,,,,,,,,,,,,,,,,,,31,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,15:00,,,262,2,,12,2,,253,2,,,,,,,,,,,,,,,,,,,,32,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,16:00,,,191,2,,5,2,,188,2,,,,,,,,,,,,,,,,,,,,32,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,17:00,,,215,2,,112,2,,166,2,,,,,,,,,,,,,,,,,,,,30,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,18:00,,,130,2,,96,2,,104,2,,,,,,,,,,,,,,,,,,,,28,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,19:00,,,15,2,,1,2,,15,2,,,,,,,,,,,,,,,,,,,,27,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,05:00,,,1,2,,3,2,,1,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,06:00,,,52,2,,126,2,,40,2,,,,,,,,,,,,,,,,,,,,23,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,07:00,,,207,2,,437,2,,87,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,08:00,,,396,2,,647,2,,106,2,,,,,,,,,,,,,,,,,,,,23,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,09:00,,,568,2,,753,2,,114,2,,,,,,,,,,,,,,,,,,,,24,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,10:00,,,721,2,,843,2,,106,2,,,,,,,,,,,,,,,,,,,,28,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,11:00,,,825,2,,882,2,,103,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,12:00,,,877,2,,886,2,,112,2,,,,,,,,,,,,,,,,,,,,30,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,13:00,,,866,2,,861,2,,124,2,,,,,,,,,,,,,,,,,,,,32,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,14:00,,,798,2,,798,2,,149,2,,,,,,,,,,,,,,,,,,,,33,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,15:00,,,704,2,,789,2,,134,2,,,,,,,,,,,,,,,,,,,,33,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,16:00,,,545,2,,646,2,,162,2,,,,,,,,,,,,,,,,,,,,33,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,17:00,,,337,2,,366,2,,177,2,,,,,,,,,,,,,,,,,,,,32,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,18:00,,,140,2,,103,2,,113,2,,,,,,,,,,,,,,,,,,,,28,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,19:00,,,13,2,,2,2,,13,2,,,,,,,,,,,,,,,,,,,,28,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,06:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,07:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,08:00,,,165,2,,7,2,,162,2,,,,,,,,,,,,,,,,,,,,22,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,09:00,,,249,2,,24,2,,235,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,10:00,,,380,2,,149,2,,272,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,11:00,,,513,2,,196,2,,353,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,12:00,,,474,2,,143,2,,351,2,,,,,,,,,,,,,,,,,,,,22,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,13:00,,,777,2,,602,2,,260,2,,,,,,,,,,,,,,,,,,,,26,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,14:00,,,818,2,,865,2,,117,2,,,,,,,,,,,,,,,,,,,,27,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,15:00,,,711,2,,873,2,,83,2,,,,,,,,,,,,,,,,,,,,28,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,16:00,,,563,2,,821,2,,78,2,,,,,,,,,,,,,,,,,,,,27,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,17:00,,,388,2,,669,2,,98,2,,,,,,,,,,,,,,,,,,,,26,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,18:00,,,185,2,,309,2,,105,2,,,,,,,,,,,,,,,,,,,,23,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,19:00,,,14,2,,12,2,,13,2,,,,,,,,,,,,,,,,,,,,23,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,13,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,06:00,,,53,2,,152,2,,40,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,07:00,,,212,2,,539,2,,67,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,08:00,,,400,2,,724,2,,80,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,09:00,,,572,2,,801,2,,93,2,,,,,,,,,,,,,,,,,,,,16,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,10:00,,,712,2,,831,2,,110,2,,,,,,,,,,,,,,,,,,,,20,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,11:00,,,812,2,,851,2,,120,2,,,,,,,,,,,,,,,,,,,,20,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,12:00,,,870,2,,878,2,,116,2,,,,,,,,,,,,,,,,,,,,20,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,13:00,,,868,2,,884,2,,111,2,,,,,,,,,,,,,,,,,,,,22,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,14:00,,,812,2,,876,2,,104,2,,,,,,,,,,,,,,,,,,,,22,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,15:00,,,704,2,,844,2,,100,2,,,,,,,,,,,,,,,,,,,,22,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,16:00,,,555,2,,786,2,,94,2,,,,,,,,,,,,,,,,,,,,23,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,17:00,,,372,2,,631,2,,101,2,,,,,,,,,,,,,,,,,,,,23,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,18:00,,,184,2,,384,2,,86,2,,,,,,,,,,,,,,,,,,,,20,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,19:00,,,33,2,,77,2,,27,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,05:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,10,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,06:00,,,49,2,,147,2,,36,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,07:00,,,204,2,,475,2,,78,2,,,,,,,,,,,,,,,,,,,,14,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,08:00,,,395,2,,700,2,,87,2,,,,,,,,,,,,,,,,,,,,15,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,09:00,,,570,2,,804,2,,91,2,,,,,,,,,,,,,,,,,,,,16,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,10:00,,,711,2,,810,2,,126,2,,,,,,,,,,,,,,,,,,,,20,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,11:00,,,774,2,,718,2,,192,2,,,,,,,,,,,,,,,,,,,,21,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,12:00,,,860,2,,840,2,,141,2,,,,,,,,,,,,,,,,,,,,22,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,13:00,,,833,2,,765,2,,180,2,,,,,,,,,,,,,,,,,,,,24,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,14:00,,,746,2,,661,2,,214,2,,,,,,,,,,,,,,,,,,,,25,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,15:00,,,621,2,,566,2,,218,2,,,,,,,,,,,,,,,,,,,,24,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,16:00,,,531,2,,654,2,,150,2,,,,,,,,,,,,,,,,,,,,25,,,,,,40,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,17:00,,,344,2,,458,2,,149,2,,,,,,,,,,,,,,,,,,,,25,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,18:00,,,133,2,,132,2,,100,2,,,,,,,,,,,,,,,,,,,,22,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,19:00,,,25,2,,21,2,,24,2,,,,,,,,,,,,,,,,,,,,22,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,06:00,,,30,2,,19,2,,28,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,07:00,,,57,2,,3,2,,56,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,08:00,,,81,2,,0,2,,81,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,09:00,,,115,2,,0,2,,115,2,,,,,,,,,,,,,,,,,,,,19,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,10:00,,,236,2,,9,2,,230,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,11:00,,,276,2,,12,2,,266,2,,,,,,,,,,,,,,,,,,,,23,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,12:00,,,197,2,,3,2,,194,2,,,,,,,,,,,,,,,,,,,,23,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,13:00,,,211,2,,3,2,,208,2,,,,,,,,,,,,,,,,,,,,24,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,14:00,,,287,2,,14,2,,276,2,,,,,,,,,,,,,,,,,,,,24,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,15:00,,,179,2,,3,2,,177,2,,,,,,,,,,,,,,,,,,,,24,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,16:00,,,172,2,,3,2,,170,2,,,,,,,,,,,,,,,,,,,,24,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,17:00,,,123,2,,2,2,,122,2,,,,,,,,,,,,,,,,,,,,24,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,18:00,,,37,2,,0,2,,37,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,19:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,06:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,07:00,,,68,2,,0,2,,68,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,08:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,09:00,,,180,2,,3,2,,178,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,10:00,,,220,2,,6,2,,216,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,11:00,,,245,2,,3,2,,243,2,,,,,,,,,,,,,,,,,,,,23,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,12:00,,,325,2,,17,2,,311,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,13:00,,,299,2,,13,2,,288,2,,,,,,,,,,,,,,,,,,,,26,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,14:00,,,341,2,,27,2,,319,2,,,,,,,,,,,,,,,,,,,,26,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,15:00,,,282,2,,16,2,,271,2,,,,,,,,,,,,,,,,,,,,26,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,16:00,,,240,2,,18,2,,230,2,,,,,,,,,,,,,,,,,,,,26,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,17:00,,,179,2,,22,2,,170,2,,,,,,,,,,,,,,,,,,,,26,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,18:00,,,90,2,,26,2,,84,2,,,,,,,,,,,,,,,,,,,,24,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,19:00,,,17,2,,3,2,,17,2,,,,,,,,,,,,,,,,,,,,24,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,06:00,,,16,2,,0,2,,16,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,07:00,,,73,2,,3,2,,72,2,,,,,,,,,,,,,,,,,,,,21,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,08:00,,,141,2,,31,2,,128,2,,,,,,,,,,,,,,,,,,,,20,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,09:00,,,257,2,,90,2,,204,2,,,,,,,,,,,,,,,,,,,,20,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,10:00,,,174,2,,1,2,,173,2,,,,,,,,,,,,,,,,,,,,21,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,11:00,,,285,2,,13,2,,275,2,,,,,,,,,,,,,,,,,,,,21,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,12:00,,,275,2,,8,2,,268,2,,,,,,,,,,,,,,,,,,,,22,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,13:00,,,207,2,,3,2,,204,2,,,,,,,,,,,,,,,,,,,,23,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,14:00,,,153,2,,0,2,,153,2,,,,,,,,,,,,,,,,,,,,22,,,,,,100,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,15:00,,,178,2,,1,2,,177,2,,,,,,,,,,,,,,,,,,,,22,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,16:00,,,119,2,,0,2,,119,2,,,,,,,,,,,,,,,,,,,,22,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,17:00,,,67,2,,0,2,,67,2,,,,,,,,,,,,,,,,,,,,22,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,18:00,,,43,2,,0,2,,43,2,,,,,,,,,,,,,,,,,,,,22,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,19:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,22,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,06:00,,,26,2,,12,2,,25,2,,,,,,,,,,,,,,,,,,,,21,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,07:00,,,131,2,,135,2,,97,2,,,,,,,,,,,,,,,,,,,,21,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,08:00,,,327,2,,363,2,,171,2,,,,,,,,,,,,,,,,,,,,21,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,09:00,,,424,2,,309,2,,243,2,,,,,,,,,,,,,,,,,,,,22,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,10:00,,,554,2,,372,2,,289,2,,,,,,,,,,,,,,,,,,,,25,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,11:00,,,735,2,,576,2,,274,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,12:00,,,815,2,,679,2,,242,2,,,,,,,,,,,,,,,,,,,,26,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,13:00,,,793,2,,612,2,,278,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,14:00,,,719,2,,552,2,,282,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,15:00,,,579,2,,413,2,,291,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,16:00,,,425,2,,297,2,,256,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,17:00,,,261,2,,170,2,,192,2,,,,,,,,,,,,,,,,,,,,29,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,18:00,,,103,2,,40,2,,94,2,,,,,,,,,,,,,,,,,,,,27,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,19:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,27,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,27,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,81,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,89,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,96,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,06:00,,,26,2,,9,2,,25,2,,,,,,,,,,,,,,,,,,,,22,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,07:00,,,140,2,,95,2,,116,2,,,,,,,,,,,,,,,,,,,,22,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,08:00,,,265,2,,167,2,,194,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,09:00,,,448,2,,324,2,,260,2,,,,,,,,,,,,,,,,,,,,24,,,,,,77,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,10:00,,,627,2,,509,2,,266,2,,,,,,,,,,,,,,,,,,,,28,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,11:00,,,748,2,,625,2,,250,2,,,,,,,,,,,,,,,,,,,,29,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,12:00,,,813,2,,670,2,,249,2,,,,,,,,,,,,,,,,,,,,29,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,13:00,,,680,2,,456,2,,298,2,,,,,,,,,,,,,,,,,,,,31,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,14:00,,,731,2,,605,2,,254,2,,,,,,,,,,,,,,,,,,,,31,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,15:00,,,551,2,,383,2,,285,2,,,,,,,,,,,,,,,,,,,,31,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,16:00,,,276,2,,109,2,,215,2,,,,,,,,,,,,,,,,,,,,30,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,17:00,,,166,2,,157,2,,102,2,,,,,,,,,,,,,,,,,,,,28,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,18:00,,,157,2,,269,2,,96,2,,,,,,,,,,,,,,,,,,,,25,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,19:00,,,23,2,,43,2,,21,2,,,,,,,,,,,,,,,,,,,,26,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,06:00,,,33,2,,37,2,,31,2,,,,,,,,,,,,,,,,,,,,23,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,07:00,,,87,2,,48,2,,75,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,08:00,,,125,2,,0,2,,125,2,,,,,,,,,,,,,,,,,,,,24,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,09:00,,,252,2,,44,2,,226,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,10:00,,,364,2,,97,2,,296,2,,,,,,,,,,,,,,,,,,,,27,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,11:00,,,708,2,,536,2,,282,2,,,,,,,,,,,,,,,,,,,,28,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,12:00,,,830,2,,747,2,,204,2,,,,,,,,,,,,,,,,,,,,28,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,13:00,,,758,2,,548,2,,300,2,,,,,,,,,,,,,,,,,,,,29,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,14:00,,,322,2,,67,2,,269,2,,,,,,,,,,,,,,,,,,,,30,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,15:00,,,480,2,,292,2,,278,2,,,,,,,,,,,,,,,,,,,,29,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,16:00,,,383,2,,285,2,,224,2,,,,,,,,,,,,,,,,,,,,30,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,17:00,,,83,2,,8,2,,80,2,,,,,,,,,,,,,,,,,,,,29,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,18:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,27,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,19:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,26,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,06:00,,,32,2,,58,2,,28,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,07:00,,,187,2,,355,2,,100,2,,,,,,,,,,,,,,,,,,,,22,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,08:00,,,285,2,,280,2,,168,2,,,,,,,,,,,,,,,,,,,,22,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,09:00,,,362,2,,181,2,,258,2,,,,,,,,,,,,,,,,,,,,23,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,10:00,,,392,2,,174,2,,270,2,,,,,,,,,,,,,,,,,,,,25,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,11:00,,,669,2,,501,2,,273,2,,,,,,,,,,,,,,,,,,,,25,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,12:00,,,670,2,,397,2,,338,2,,,,,,,,,,,,,,,,,,,,26,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,13:00,,,353,2,,64,2,,300,2,,,,,,,,,,,,,,,,,,,,27,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,14:00,,,527,2,,268,2,,318,2,,,,,,,,,,,,,,,,,,,,28,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,15:00,,,428,2,,192,2,,296,2,,,,,,,,,,,,,,,,,,,,28,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,16:00,,,273,2,,129,2,,201,2,,,,,,,,,,,,,,,,,,,,28,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,17:00,,,89,2,,21,2,,81,2,,,,,,,,,,,,,,,,,,,,27,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,18:00,,,123,2,,175,2,,85,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,19:00,,,7,2,,3,2,,7,2,,,,,,,,,,,,,,,,,,,,24,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,06:00,,,35,2,,85,2,,30,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,07:00,,,151,2,,208,2,,101,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,08:00,,,250,2,,157,2,,185,2,,,,,,,,,,,,,,,,,,,,22,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,09:00,,,277,2,,99,2,,220,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,10:00,,,176,2,,14,2,,166,2,,,,,,,,,,,,,,,,,,,,26,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,11:00,,,466,2,,197,2,,311,2,,,,,,,,,,,,,,,,,,,,26,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,12:00,,,810,2,,676,2,,248,2,,,,,,,,,,,,,,,,,,,,26,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,13:00,,,833,2,,847,2,,132,2,,,,,,,,,,,,,,,,,,,,29,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,14:00,,,779,2,,859,2,,111,2,,,,,,,,,,,,,,,,,,,,29,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,15:00,,,669,2,,826,2,,105,2,,,,,,,,,,,,,,,,,,,,29,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,16:00,,,518,2,,769,2,,94,2,,,,,,,,,,,,,,,,,,,,30,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,17:00,,,338,2,,634,2,,90,2,,,,,,,,,,,,,,,,,,,,30,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,18:00,,,148,2,,370,2,,69,2,,,,,,,,,,,,,,,,,,,,28,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,19:00,,,20,2,,67,2,,18,2,,,,,,,,,,,,,,,,,,,,27,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,25,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,06:00,,,30,2,,70,2,,26,2,,,,,,,,,,,,,,,,,,,,21,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,07:00,,,172,2,,364,2,,85,2,,,,,,,,,,,,,,,,,,,,21,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,08:00,,,360,2,,612,2,,107,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,09:00,,,525,2,,689,2,,132,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,10:00,,,680,2,,795,2,,126,2,,,,,,,,,,,,,,,,,,,,26,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,11:00,,,785,2,,839,2,,126,2,,,,,,,,,,,,,,,,,,,,28,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,12:00,,,831,2,,836,2,,138,2,,,,,,,,,,,,,,,,,,,,28,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,13:00,,,823,2,,817,2,,149,2,,,,,,,,,,,,,,,,,,,,31,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,14:00,,,751,2,,750,2,,171,2,,,,,,,,,,,,,,,,,,,,31,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,15:00,,,631,2,,674,2,,173,2,,,,,,,,,,,,,,,,,,,,31,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,16:00,,,476,2,,586,2,,156,2,,,,,,,,,,,,,,,,,,,,31,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,17:00,,,309,2,,483,2,,122,2,,,,,,,,,,,,,,,,,,,,30,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,18:00,,,139,2,,278,2,,81,2,,,,,,,,,,,,,,,,,,,,27,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,19:00,,,18,2,,32,2,,17,2,,,,,,,,,,,,,,,,,,,,27,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,06:00,,,28,2,,63,2,,25,2,,,,,,,,,,,,,,,,,,,,23,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,07:00,,,155,2,,271,2,,91,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,08:00,,,336,2,,477,2,,140,2,,,,,,,,,,,,,,,,,,,,24,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,09:00,,,511,2,,619,2,,160,2,,,,,,,,,,,,,,,,,,,,25,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,10:00,,,666,2,,725,2,,163,2,,,,,,,,,,,,,,,,,,,,28,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,11:00,,,768,2,,773,2,,164,2,,,,,,,,,,,,,,,,,,,,30,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,12:00,,,815,2,,770,2,,179,2,,,,,,,,,,,,,,,,,,,,30,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,13:00,,,803,2,,745,2,,191,2,,,,,,,,,,,,,,,,,,,,32,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,14:00,,,731,2,,678,2,,209,2,,,,,,,,,,,,,,,,,,,,32,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,15:00,,,615,2,,598,2,,211,2,,,,,,,,,,,,,,,,,,,,32,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,16:00,,,432,2,,426,2,,201,2,,,,,,,,,,,,,,,,,,,,32,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,17:00,,,212,2,,188,2,,140,2,,,,,,,,,,,,,,,,,,,,30,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,18:00,,,69,2,,28,2,,63,2,,,,,,,,,,,,,,,,,,,,28,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,19:00,,,6,2,,4,2,,6,2,,,,,,,,,,,,,,,,,,,,28,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,26,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,06:00,,,23,2,,28,2,,22,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,07:00,,,116,2,,87,2,,96,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,08:00,,,324,2,,389,2,,165,2,,,,,,,,,,,,,,,,,,,,20,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,09:00,,,516,2,,628,2,,162,2,,,,,,,,,,,,,,,,,,,,20,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,10:00,,,667,2,,760,2,,142,2,,,,,,,,,,,,,,,,,,,,22,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,11:00,,,771,2,,803,2,,146,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,12:00,,,806,2,,770,2,,173,2,,,,,,,,,,,,,,,,,,,,23,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,13:00,,,798,2,,758,2,,178,2,,,,,,,,,,,,,,,,,,,,24,,,,,,49,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,14:00,,,745,2,,758,2,,164,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,15:00,,,639,2,,734,2,,147,2,,,,,,,,,,,,,,,,,,,,24,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,16:00,,,485,2,,647,2,,137,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,17:00,,,304,2,,470,2,,127,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,18:00,,,124,2,,233,2,,78,2,,,,,,,,,,,,,,,,,,,,20,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,19:00,,,11,2,,8,2,,11,2,,,,,,,,,,,,,,,,,,,,20,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,06:00,,,19,2,,8,2,,19,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,07:00,,,109,2,,66,2,,94,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,08:00,,,242,2,,148,2,,182,2,,,,,,,,,,,,,,,,,,,,17,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,09:00,,,312,2,,123,2,,243,2,,,,,,,,,,,,,,,,,,,,17,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,10:00,,,306,2,,43,2,,276,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,11:00,,,192,2,,5,2,,188,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,12:00,,,162,2,,1,2,,161,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,13:00,,,165,2,,3,2,,163,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,14:00,,,258,2,,21,2,,242,2,,,,,,,,,,,,,,,,,,,,21,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,15:00,,,163,2,,1,2,,162,2,,,,,,,,,,,,,,,,,,,,20,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,16:00,,,156,2,,1,2,,156,2,,,,,,,,,,,,,,,,,,,,20,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,17:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,20,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,18:00,,,25,2,,0,2,,25,2,,,,,,,,,,,,,,,,,,,,18,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,19:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,06:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,07:00,,,58,2,,2,2,,58,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,08:00,,,153,2,,14,2,,147,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,09:00,,,199,2,,17,2,,190,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,10:00,,,264,2,,15,2,,254,2,,,,,,,,,,,,,,,,,,,,19,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,11:00,,,368,2,,39,2,,338,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,12:00,,,562,2,,229,2,,375,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,13:00,,,719,2,,495,2,,318,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,14:00,,,571,2,,315,2,,332,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,15:00,,,239,2,,44,2,,210,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,16:00,,,103,2,,18,2,,94,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,17:00,,,249,2,,263,2,,152,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,18:00,,,110,2,,155,2,,81,2,,,,,,,,,,,,,,,,,,,,21,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,19:00,,,11,2,,6,2,,11,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,06:00,,,24,2,,26,2,,23,2,,,,,,,,,,,,,,,,,,,,21,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,07:00,,,70,2,,68,2,,55,2,,,,,,,,,,,,,,,,,,,,22,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,08:00,,,143,2,,44,2,,126,2,,,,,,,,,,,,,,,,,,,,22,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,09:00,,,281,2,,69,2,,243,2,,,,,,,,,,,,,,,,,,,,22,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,10:00,,,284,2,,20,2,,270,2,,,,,,,,,,,,,,,,,,,,24,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,11:00,,,226,2,,8,2,,220,2,,,,,,,,,,,,,,,,,,,,24,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,12:00,,,185,2,,40,2,,152,2,,,,,,,,,,,,,,,,,,,,24,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,13:00,,,761,2,,600,2,,277,2,,,,,,,,,,,,,,,,,,,,28,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,14:00,,,733,2,,751,2,,167,2,,,,,,,,,,,,,,,,,,,,29,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,15:00,,,593,2,,615,2,,188,2,,,,,,,,,,,,,,,,,,,,29,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,16:00,,,391,2,,353,2,,206,2,,,,,,,,,,,,,,,,,,,,30,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,17:00,,,197,2,,111,2,,157,2,,,,,,,,,,,,,,,,,,,,28,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,18:00,,,80,2,,52,2,,70,2,,,,,,,,,,,,,,,,,,,,25,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,19:00,,,4,2,,2,2,,4,2,,,,,,,,,,,,,,,,,,,,24,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,06:00,,,25,2,,99,2,,22,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,07:00,,,166,2,,454,2,,67,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,08:00,,,346,2,,637,2,,94,2,,,,,,,,,,,,,,,,,,,,18,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,09:00,,,511,2,,635,2,,160,2,,,,,,,,,,,,,,,,,,,,19,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,10:00,,,424,2,,266,2,,244,2,,,,,,,,,,,,,,,,,,,,22,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,11:00,,,464,2,,217,2,,298,2,,,,,,,,,,,,,,,,,,,,23,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,12:00,,,625,2,,354,2,,339,2,,,,,,,,,,,,,,,,,,,,23,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,13:00,,,728,2,,577,2,,265,2,,,,,,,,,,,,,,,,,,,,25,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,14:00,,,456,2,,252,2,,267,2,,,,,,,,,,,,,,,,,,,,25,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,15:00,,,409,2,,245,2,,249,2,,,,,,,,,,,,,,,,,,,,26,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,16:00,,,397,2,,345,2,,218,2,,,,,,,,,,,,,,,,,,,,26,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,17:00,,,248,2,,324,2,,132,2,,,,,,,,,,,,,,,,,,,,26,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,18:00,,,118,2,,272,2,,70,2,,,,,,,,,,,,,,,,,,,,23,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,19:00,,,7,2,,17,2,,7,2,,,,,,,,,,,,,,,,,,,,22,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+08/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,06:00,,,14,2,,1,2,,14,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,07:00,,,106,2,,109,2,,82,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,08:00,,,207,2,,101,2,,167,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,09:00,,,238,2,,40,2,,216,2,,,,,,,,,,,,,,,,,,,,16,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,10:00,,,385,2,,111,2,,310,2,,,,,,,,,,,,,,,,,,,,19,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,11:00,,,419,2,,86,2,,353,2,,,,,,,,,,,,,,,,,,,,19,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,12:00,,,507,2,,169,2,,371,2,,,,,,,,,,,,,,,,,,,,19,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,13:00,,,520,2,,187,2,,371,2,,,,,,,,,,,,,,,,,,,,21,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,14:00,,,348,2,,42,2,,317,2,,,,,,,,,,,,,,,,,,,,21,,,,,,47,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,15:00,,,267,2,,19,2,,255,2,,,,,,,,,,,,,,,,,,,,21,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,16:00,,,204,2,,12,2,,198,2,,,,,,,,,,,,,,,,,,,,21,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,17:00,,,109,2,,0,2,,109,2,,,,,,,,,,,,,,,,,,,,21,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,18:00,,,22,2,,0,2,,22,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,18,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,06:00,,,23,2,,73,2,,21,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,07:00,,,120,2,,198,2,,78,2,,,,,,,,,,,,,,,,,,,,13,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,08:00,,,225,2,,163,2,,162,2,,,,,,,,,,,,,,,,,,,,14,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,09:00,,,259,2,,64,2,,224,2,,,,,,,,,,,,,,,,,,,,14,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,10:00,,,489,2,,318,2,,275,2,,,,,,,,,,,,,,,,,,,,17,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,11:00,,,702,2,,602,2,,245,2,,,,,,,,,,,,,,,,,,,,18,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,12:00,,,603,2,,364,2,,311,2,,,,,,,,,,,,,,,,,,,,19,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,13:00,,,496,2,,188,2,,346,2,,,,,,,,,,,,,,,,,,,,20,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,14:00,,,349,2,,153,2,,236,2,,,,,,,,,,,,,,,,,,,,20,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,15:00,,,293,2,,182,2,,176,2,,,,,,,,,,,,,,,,,,,,19,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,16:00,,,378,2,,325,2,,212,2,,,,,,,,,,,,,,,,,,,,19,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,17:00,,,143,2,,71,2,,118,2,,,,,,,,,,,,,,,,,,,,19,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,18:00,,,92,2,,161,2,,65,2,,,,,,,,,,,,,,,,,,,,17,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,19:00,,,4,2,,5,2,,4,2,,,,,,,,,,,,,,,,,,,,16,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,06:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,07:00,,,67,2,,12,2,,64,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,08:00,,,151,2,,30,2,,139,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,09:00,,,322,2,,170,2,,230,2,,,,,,,,,,,,,,,,,,,,15,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,10:00,,,285,2,,93,2,,223,2,,,,,,,,,,,,,,,,,,,,18,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,11:00,,,394,2,,162,2,,272,2,,,,,,,,,,,,,,,,,,,,18,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,12:00,,,458,2,,120,2,,362,2,,,,,,,,,,,,,,,,,,,,19,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,13:00,,,449,2,,139,2,,339,2,,,,,,,,,,,,,,,,,,,,21,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,14:00,,,666,2,,498,2,,299,2,,,,,,,,,,,,,,,,,,,,21,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,15:00,,,301,2,,108,2,,232,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,16:00,,,142,2,,5,2,,140,2,,,,,,,,,,,,,,,,,,,,21,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,17:00,,,143,2,,139,2,,95,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,18:00,,,92,2,,194,2,,60,2,,,,,,,,,,,,,,,,,,,,19,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,19:00,,,5,2,,15,2,,5,2,,,,,,,,,,,,,,,,,,,,19,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,06:00,,,19,2,,53,2,,18,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,07:00,,,153,2,,447,2,,61,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,08:00,,,342,2,,699,2,,75,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,09:00,,,517,2,,804,2,,84,2,,,,,,,,,,,,,,,,,,,,16,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,10:00,,,662,2,,860,2,,90,2,,,,,,,,,,,,,,,,,,,,20,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,11:00,,,762,2,,888,2,,94,2,,,,,,,,,,,,,,,,,,,,21,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,12:00,,,810,2,,898,2,,97,2,,,,,,,,,,,,,,,,,,,,21,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,13:00,,,802,2,,893,2,,99,2,,,,,,,,,,,,,,,,,,,,23,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,14:00,,,735,2,,860,2,,104,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,15:00,,,615,2,,757,2,,134,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,16:00,,,404,2,,474,2,,167,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,17:00,,,258,2,,383,2,,129,2,,,,,,,,,,,,,,,,,,,,24,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,18:00,,,95,2,,238,2,,58,2,,,,,,,,,,,,,,,,,,,,21,,,,,,57,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,19:00,,,3,2,,13,2,,3,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,06:00,,,15,2,,19,2,,15,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,07:00,,,58,2,,3,2,,57,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,08:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,09:00,,,162,2,,2,2,,161,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,10:00,,,188,2,,10,2,,181,2,,,,,,,,,,,,,,,,,,,,19,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,11:00,,,189,2,,2,2,,188,2,,,,,,,,,,,,,,,,,,,,19,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,12:00,,,210,2,,1,2,,209,2,,,,,,,,,,,,,,,,,,,,19,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,13:00,,,243,2,,6,2,,238,2,,,,,,,,,,,,,,,,,,,,21,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,14:00,,,151,2,,0,2,,151,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,15:00,,,103,2,,0,2,,103,2,,,,,,,,,,,,,,,,,,,,22,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,16:00,,,115,2,,0,2,,115,2,,,,,,,,,,,,,,,,,,,,20,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,17:00,,,85,2,,0,2,,85,2,,,,,,,,,,,,,,,,,,,,21,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,18:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,06:00,,,17,2,,53,2,,16,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,07:00,,,112,2,,154,2,,81,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,08:00,,,219,2,,181,2,,151,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,09:00,,,110,2,,9,2,,105,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,10:00,,,157,2,,1,2,,156,2,,,,,,,,,,,,,,,,,,,,20,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,11:00,,,259,2,,17,2,,246,2,,,,,,,,,,,,,,,,,,,,21,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,12:00,,,171,2,,2,2,,169,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,13:00,,,223,2,,49,2,,185,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,14:00,,,654,2,,488,2,,301,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,15:00,,,279,2,,90,2,,223,2,,,,,,,,,,,,,,,,,,,,18,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,16:00,,,118,2,,0,2,,118,2,,,,,,,,,,,,,,,,,,,,20,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,17:00,,,113,2,,97,2,,81,2,,,,,,,,,,,,,,,,,,,,20,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,18:00,,,89,2,,202,2,,60,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,19:00,,,3,2,,12,2,,3,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,06:00,,,16,2,,63,2,,15,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,07:00,,,145,2,,420,2,,63,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,08:00,,,332,2,,689,2,,75,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,09:00,,,505,2,,784,2,,90,2,,,,,,,,,,,,,,,,,,,,16,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,10:00,,,640,2,,799,2,,117,2,,,,,,,,,,,,,,,,,,,,19,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,11:00,,,750,2,,874,2,,102,2,,,,,,,,,,,,,,,,,,,,20,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,12:00,,,796,2,,898,2,,94,2,,,,,,,,,,,,,,,,,,,,21,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,13:00,,,775,2,,852,2,,115,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,14:00,,,705,2,,773,2,,149,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,15:00,,,552,2,,618,2,,168,2,,,,,,,,,,,,,,,,,,,,23,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,16:00,,,455,2,,733,2,,100,2,,,,,,,,,,,,,,,,,,,,23,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,17:00,,,271,2,,636,2,,67,2,,,,,,,,,,,,,,,,,,,,23,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,18:00,,,87,2,,283,2,,47,2,,,,,,,,,,,,,,,,,,,,20,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,19:00,,,3,2,,11,2,,3,2,,,,,,,,,,,,,,,,,,,,20,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,06:00,,,15,2,,36,2,,15,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,07:00,,,131,2,,284,2,,76,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,08:00,,,282,2,,373,2,,144,2,,,,,,,,,,,,,,,,,,,,18,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,09:00,,,336,2,,295,2,,181,2,,,,,,,,,,,,,,,,,,,,19,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,10:00,,,477,2,,283,2,,293,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,11:00,,,496,2,,320,2,,260,2,,,,,,,,,,,,,,,,,,,,22,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,12:00,,,732,2,,648,2,,228,2,,,,,,,,,,,,,,,,,,,,23,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,13:00,,,733,2,,653,2,,230,2,,,,,,,,,,,,,,,,,,,,25,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,14:00,,,618,2,,457,2,,291,2,,,,,,,,,,,,,,,,,,,,26,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,15:00,,,326,2,,104,2,,262,2,,,,,,,,,,,,,,,,,,,,26,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,16:00,,,262,2,,141,2,,194,2,,,,,,,,,,,,,,,,,,,,25,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,17:00,,,124,2,,45,2,,110,2,,,,,,,,,,,,,,,,,,,,24,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,18:00,,,19,2,,0,2,,19,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,06:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,07:00,,,65,2,,27,2,,60,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,08:00,,,212,2,,194,2,,141,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,09:00,,,185,2,,8,2,,181,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,10:00,,,229,2,,10,2,,222,2,,,,,,,,,,,,,,,,,,,,20,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,11:00,,,308,2,,25,2,,290,2,,,,,,,,,,,,,,,,,,,,20,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,12:00,,,322,2,,18,2,,308,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,13:00,,,308,2,,19,2,,293,2,,,,,,,,,,,,,,,,,,,,22,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,14:00,,,200,2,,4,2,,197,2,,,,,,,,,,,,,,,,,,,,22,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,15:00,,,175,2,,4,2,,173,2,,,,,,,,,,,,,,,,,,,,22,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,16:00,,,87,2,,0,2,,87,2,,,,,,,,,,,,,,,,,,,,22,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,17:00,,,59,2,,0,2,,59,2,,,,,,,,,,,,,,,,,,,,22,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,18:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,19,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,06:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,07:00,,,47,2,,0,2,,47,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,08:00,,,117,2,,2,2,,116,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,09:00,,,162,2,,2,2,,161,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,10:00,,,246,2,,12,2,,238,2,,,,,,,,,,,,,,,,,,,,16,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,11:00,,,335,2,,33,2,,311,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,12:00,,,380,2,,72,2,,325,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,13:00,,,377,2,,122,2,,284,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,14:00,,,431,2,,197,2,,292,2,,,,,,,,,,,,,,,,,,,,18,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,15:00,,,312,2,,117,2,,241,2,,,,,,,,,,,,,,,,,,,,18,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,16:00,,,412,2,,515,2,,170,2,,,,,,,,,,,,,,,,,,,,19,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,17:00,,,201,2,,274,2,,118,2,,,,,,,,,,,,,,,,,,,,19,,,,,,53,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,18:00,,,44,2,,29,2,,40,2,,,,,,,,,,,,,,,,,,,,16,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,16,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,06:00,,,13,2,,20,2,,13,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,07:00,,,134,2,,415,2,,58,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,08:00,,,320,2,,694,2,,71,2,,,,,,,,,,,,,,,,,,,,13,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,09:00,,,494,2,,813,2,,75,2,,,,,,,,,,,,,,,,,,,,14,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,10:00,,,638,2,,868,2,,82,2,,,,,,,,,,,,,,,,,,,,18,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,11:00,,,722,2,,835,2,,116,2,,,,,,,,,,,,,,,,,,,,20,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,12:00,,,755,2,,795,2,,146,2,,,,,,,,,,,,,,,,,,,,20,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,13:00,,,767,2,,818,2,,148,2,,,,,,,,,,,,,,,,,,,,23,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,14:00,,,628,2,,544,2,,247,2,,,,,,,,,,,,,,,,,,,,23,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,15:00,,,453,2,,396,2,,215,2,,,,,,,,,,,,,,,,,,,,23,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,16:00,,,412,2,,566,2,,150,2,,,,,,,,,,,,,,,,,,,,23,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,17:00,,,216,2,,388,2,,100,2,,,,,,,,,,,,,,,,,,,,23,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,18:00,,,62,2,,117,2,,48,2,,,,,,,,,,,,,,,,,,,,20,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,19:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,19,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,06:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,18,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,07:00,,,65,2,,10,2,,63,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,08:00,,,200,2,,88,2,,169,2,,,,,,,,,,,,,,,,,,,,19,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,09:00,,,184,2,,19,2,,174,2,,,,,,,,,,,,,,,,,,,,19,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,10:00,,,143,2,,1,2,,142,2,,,,,,,,,,,,,,,,,,,,22,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,11:00,,,149,2,,1,2,,148,2,,,,,,,,,,,,,,,,,,,,23,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,12:00,,,277,2,,22,2,,260,2,,,,,,,,,,,,,,,,,,,,24,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,13:00,,,270,2,,41,2,,239,2,,,,,,,,,,,,,,,,,,,,25,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,14:00,,,163,2,,31,2,,141,2,,,,,,,,,,,,,,,,,,,,25,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,15:00,,,501,2,,430,2,,245,2,,,,,,,,,,,,,,,,,,,,25,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,16:00,,,306,2,,266,2,,184,2,,,,,,,,,,,,,,,,,,,,25,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,17:00,,,135,2,,63,2,,116,2,,,,,,,,,,,,,,,,,,,,24,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,18:00,,,26,2,,3,2,,26,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,98,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,06:00,,,9,2,,13,2,,9,2,,,,,,,,,,,,,,,,,,,,15,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,07:00,,,116,2,,273,2,,68,2,,,,,,,,,,,,,,,,,,,,14,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,08:00,,,290,2,,533,2,,102,2,,,,,,,,,,,,,,,,,,,,15,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,09:00,,,440,2,,540,2,,165,2,,,,,,,,,,,,,,,,,,,,15,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,10:00,,,568,2,,590,2,,194,2,,,,,,,,,,,,,,,,,,,,18,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,11:00,,,670,2,,655,2,,200,2,,,,,,,,,,,,,,,,,,,,19,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,12:00,,,733,2,,706,2,,198,2,,,,,,,,,,,,,,,,,,,,20,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,13:00,,,753,2,,843,2,,122,2,,,,,,,,,,,,,,,,,,,,21,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,14:00,,,690,2,,854,2,,100,2,,,,,,,,,,,,,,,,,,,,21,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,15:00,,,577,2,,827,2,,88,2,,,,,,,,,,,,,,,,,,,,22,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,16:00,,,417,2,,693,2,,103,2,,,,,,,,,,,,,,,,,,,,22,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,17:00,,,213,2,,418,2,,93,2,,,,,,,,,,,,,,,,,,,,21,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,18:00,,,57,2,,141,2,,42,2,,,,,,,,,,,,,,,,,,,,18,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,17,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,06:00,,,9,2,,18,2,,9,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,07:00,,,123,2,,391,2,,56,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,08:00,,,305,2,,674,2,,70,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,09:00,,,480,2,,797,2,,78,2,,,,,,,,,,,,,,,,,,,,14,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,10:00,,,627,2,,868,2,,80,2,,,,,,,,,,,,,,,,,,,,18,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,11:00,,,725,2,,877,2,,99,2,,,,,,,,,,,,,,,,,,,,19,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,12:00,,,739,2,,777,2,,154,2,,,,,,,,,,,,,,,,,,,,20,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,13:00,,,733,2,,779,2,,154,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,14:00,,,641,2,,631,2,,208,2,,,,,,,,,,,,,,,,,,,,22,,,,,,48,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,15:00,,,393,2,,320,2,,206,2,,,,,,,,,,,,,,,,,,,,23,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,16:00,,,296,2,,232,2,,192,2,,,,,,,,,,,,,,,,,,,,23,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,17:00,,,115,2,,47,2,,102,2,,,,,,,,,,,,,,,,,,,,22,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,18:00,,,35,2,,11,2,,34,2,,,,,,,,,,,,,,,,,,,,21,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,78,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,06:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,07:00,,,40,2,,0,2,,40,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,08:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,09:00,,,166,2,,16,2,,158,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,10:00,,,155,2,,2,2,,154,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,11:00,,,206,2,,5,2,,202,2,,,,,,,,,,,,,,,,,,,,23,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,12:00,,,317,2,,50,2,,280,2,,,,,,,,,,,,,,,,,,,,24,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,13:00,,,272,2,,44,2,,240,2,,,,,,,,,,,,,,,,,,,,22,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,14:00,,,109,2,,0,2,,109,2,,,,,,,,,,,,,,,,,,,,22,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,15:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,16:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,17:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,20,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,18:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,06:00,,,8,2,,21,2,,8,2,,,,,,,,,,,,,,,,,,,,14,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,07:00,,,121,2,,426,2,,51,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,08:00,,,303,2,,708,2,,61,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,09:00,,,479,2,,829,2,,66,2,,,,,,,,,,,,,,,,,,,,14,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,10:00,,,623,2,,888,2,,71,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,11:00,,,721,2,,922,2,,70,2,,,,,,,,,,,,,,,,,,,,19,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,12:00,,,767,2,,934,2,,72,2,,,,,,,,,,,,,,,,,,,,20,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,13:00,,,755,2,,932,2,,70,2,,,,,,,,,,,,,,,,,,,,22,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,14:00,,,686,2,,914,2,,68,2,,,,,,,,,,,,,,,,,,,,23,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,15:00,,,568,2,,874,2,,65,2,,,,,,,,,,,,,,,,,,,,23,,,,,,43,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,16:00,,,409,2,,797,2,,61,2,,,,,,,,,,,,,,,,,,,,24,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,17:00,,,225,2,,602,2,,62,2,,,,,,,,,,,,,,,,,,,,23,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,18:00,,,53,2,,144,2,,40,2,,,,,,,,,,,,,,,,,,,,19,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,19:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,06:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,07:00,,,56,2,,11,2,,54,2,,,,,,,,,,,,,,,,,,,,16,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,08:00,,,169,2,,84,2,,141,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,09:00,,,207,2,,25,2,,195,2,,,,,,,,,,,,,,,,,,,,16,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,10:00,,,258,2,,35,2,,236,2,,,,,,,,,,,,,,,,,,,,20,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,11:00,,,285,2,,35,2,,260,2,,,,,,,,,,,,,,,,,,,,21,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,12:00,,,403,2,,86,2,,339,2,,,,,,,,,,,,,,,,,,,,22,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,13:00,,,312,2,,29,2,,291,2,,,,,,,,,,,,,,,,,,,,24,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,14:00,,,247,2,,17,2,,236,2,,,,,,,,,,,,,,,,,,,,25,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,15:00,,,279,2,,142,2,,198,2,,,,,,,,,,,,,,,,,,,,25,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,16:00,,,265,2,,173,2,,190,2,,,,,,,,,,,,,,,,,,,,24,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,17:00,,,124,2,,82,2,,102,2,,,,,,,,,,,,,,,,,,,,24,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,18:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,06:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,07:00,,,51,2,,1,2,,51,2,,,,,,,,,,,,,,,,,,,,19,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,08:00,,,173,2,,92,2,,142,2,,,,,,,,,,,,,,,,,,,,19,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,09:00,,,341,2,,253,2,,217,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,10:00,,,320,2,,133,2,,238,2,,,,,,,,,,,,,,,,,,,,21,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,11:00,,,299,2,,65,2,,254,2,,,,,,,,,,,,,,,,,,,,22,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,12:00,,,321,2,,87,2,,257,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,13:00,,,144,2,,4,2,,141,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,14:00,,,447,2,,270,2,,267,2,,,,,,,,,,,,,,,,,,,,20,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,15:00,,,347,2,,218,2,,224,2,,,,,,,,,,,,,,,,,,,,20,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,16:00,,,186,2,,44,2,,167,2,,,,,,,,,,,,,,,,,,,,21,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,17:00,,,123,2,,103,2,,96,2,,,,,,,,,,,,,,,,,,,,20,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,18:00,,,25,2,,14,2,,24,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,06:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,07:00,,,69,2,,67,2,,59,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,08:00,,,165,2,,88,2,,136,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,09:00,,,351,2,,294,2,,208,2,,,,,,,,,,,,,,,,,,,,12,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,10:00,,,595,2,,723,2,,154,2,,,,,,,,,,,,,,,,,,,,15,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,11:00,,,709,2,,911,2,,77,2,,,,,,,,,,,,,,,,,,,,16,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,12:00,,,754,2,,935,2,,70,2,,,,,,,,,,,,,,,,,,,,17,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,13:00,,,741,2,,934,2,,68,2,,,,,,,,,,,,,,,,,,,,19,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,14:00,,,672,2,,917,2,,65,2,,,,,,,,,,,,,,,,,,,,19,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,15:00,,,552,2,,876,2,,62,2,,,,,,,,,,,,,,,,,,,,19,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,16:00,,,393,2,,798,2,,58,2,,,,,,,,,,,,,,,,,,,,20,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,17:00,,,209,2,,615,2,,53,2,,,,,,,,,,,,,,,,,,,,19,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,18:00,,,43,2,,175,2,,31,2,,,,,,,,,,,,,,,,,,,,15,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,06:00,,,4,2,,21,2,,4,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,07:00,,,109,2,,421,2,,46,2,,,,,,,,,,,,,,,,,,,,9,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,08:00,,,290,2,,710,2,,58,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,09:00,,,465,2,,832,2,,63,2,,,,,,,,,,,,,,,,,,,,12,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,10:00,,,608,2,,894,2,,66,2,,,,,,,,,,,,,,,,,,,,16,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,11:00,,,705,2,,924,2,,68,2,,,,,,,,,,,,,,,,,,,,18,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,12:00,,,751,2,,939,2,,69,2,,,,,,,,,,,,,,,,,,,,19,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,13:00,,,737,2,,936,2,,67,2,,,,,,,,,,,,,,,,,,,,22,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,14:00,,,665,2,,912,2,,66,2,,,,,,,,,,,,,,,,,,,,23,,,,,,40,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,15:00,,,545,2,,872,2,,62,2,,,,,,,,,,,,,,,,,,,,24,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,16:00,,,386,2,,792,2,,58,2,,,,,,,,,,,,,,,,,,,,24,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,17:00,,,202,2,,607,2,,52,2,,,,,,,,,,,,,,,,,,,,23,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,18:00,,,40,2,,193,2,,28,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,06:00,,,3,2,,16,2,,3,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,07:00,,,103,2,,348,2,,52,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,08:00,,,268,2,,586,2,,78,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,09:00,,,451,2,,754,2,,90,2,,,,,,,,,,,,,,,,,,,,16,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,10:00,,,592,2,,846,2,,82,2,,,,,,,,,,,,,,,,,,,,19,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,11:00,,,686,2,,859,2,,97,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,12:00,,,733,2,,862,2,,111,2,,,,,,,,,,,,,,,,,,,,20,,,,,,56,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,13:00,,,689,2,,752,2,,155,2,,,,,,,,,,,,,,,,,,,,22,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,14:00,,,579,2,,585,2,,198,2,,,,,,,,,,,,,,,,,,,,22,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,15:00,,,402,2,,308,2,,233,2,,,,,,,,,,,,,,,,,,,,22,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,16:00,,,346,2,,527,2,,131,2,,,,,,,,,,,,,,,,,,,,23,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,17:00,,,163,2,,357,2,,77,2,,,,,,,,,,,,,,,,,,,,23,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,18:00,,,33,2,,154,2,,24,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,06:00,,,3,2,,12,2,,3,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,07:00,,,95,2,,222,2,,63,2,,,,,,,,,,,,,,,,,,,,17,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,08:00,,,200,2,,250,2,,120,2,,,,,,,,,,,,,,,,,,,,17,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,09:00,,,182,2,,23,2,,171,2,,,,,,,,,,,,,,,,,,,,18,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,10:00,,,232,2,,24,2,,218,2,,,,,,,,,,,,,,,,,,,,22,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,11:00,,,168,2,,3,2,,166,2,,,,,,,,,,,,,,,,,,,,23,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,12:00,,,258,2,,64,2,,212,2,,,,,,,,,,,,,,,,,,,,23,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,13:00,,,611,2,,497,2,,260,2,,,,,,,,,,,,,,,,,,,,25,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,14:00,,,400,2,,313,2,,198,2,,,,,,,,,,,,,,,,,,,,25,,,,,,64,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,15:00,,,424,2,,375,2,,220,2,,,,,,,,,,,,,,,,,,,,26,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,16:00,,,272,2,,252,2,,170,2,,,,,,,,,,,,,,,,,,,,26,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,17:00,,,178,2,,326,2,,101,2,,,,,,,,,,,,,,,,,,,,25,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,18:00,,,19,2,,20,2,,18,2,,,,,,,,,,,,,,,,,,,,24,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,82,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,06:00,,,3,2,,18,2,,3,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,07:00,,,99,2,,367,2,,48,2,,,,,,,,,,,,,,,,,,,,21,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,08:00,,,267,2,,574,2,,85,2,,,,,,,,,,,,,,,,,,,,22,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,09:00,,,398,2,,528,2,,149,2,,,,,,,,,,,,,,,,,,,,22,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,10:00,,,488,2,,464,2,,212,2,,,,,,,,,,,,,,,,,,,,25,,,,,,63,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,11:00,,,449,2,,330,2,,226,2,,,,,,,,,,,,,,,,,,,,26,,,,,,60,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,12:00,,,618,2,,518,2,,249,2,,,,,,,,,,,,,,,,,,,,26,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,13:00,,,565,2,,410,2,,278,2,,,,,,,,,,,,,,,,,,,,27,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,14:00,,,523,2,,420,2,,254,2,,,,,,,,,,,,,,,,,,,,27,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,15:00,,,343,2,,212,2,,229,2,,,,,,,,,,,,,,,,,,,,27,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,16:00,,,289,2,,331,2,,158,2,,,,,,,,,,,,,,,,,,,,27,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,17:00,,,126,2,,130,2,,96,2,,,,,,,,,,,,,,,,,,,,27,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,18:00,,,11,2,,4,2,,11,2,,,,,,,,,,,,,,,,,,,,25,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,24,,,,,,71,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,22,,,,,,75,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,23,,,,,,76,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,20,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,07:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,17,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,08:00,,,100,2,,12,2,,96,2,,,,,,,,,,,,,,,,,,,,15,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,09:00,,,125,2,,3,2,,124,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,10:00,,,254,2,,46,2,,227,2,,,,,,,,,,,,,,,,,,,,15,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,11:00,,,487,2,,381,2,,231,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,12:00,,,714,2,,778,2,,163,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,13:00,,,706,2,,888,2,,88,2,,,,,,,,,,,,,,,,,,,,19,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,14:00,,,635,2,,872,2,,81,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,15:00,,,517,2,,835,2,,73,2,,,,,,,,,,,,,,,,,,,,21,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,16:00,,,356,2,,747,2,,64,2,,,,,,,,,,,,,,,,,,,,21,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,17:00,,,174,2,,523,2,,57,2,,,,,,,,,,,,,,,,,,,,21,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,18:00,,,12,2,,28,2,,11,2,,,,,,,,,,,,,,,,,,,,18,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,06:00,,,3,2,,14,2,,3,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,07:00,,,88,2,,303,2,,48,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,08:00,,,245,2,,491,2,,93,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,09:00,,,437,2,,723,2,,102,2,,,,,,,,,,,,,,,,,,,,13,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,10:00,,,576,2,,780,2,,119,2,,,,,,,,,,,,,,,,,,,,16,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,11:00,,,604,2,,593,2,,208,2,,,,,,,,,,,,,,,,,,,,18,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,12:00,,,508,2,,270,2,,318,2,,,,,,,,,,,,,,,,,,,,18,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,13:00,,,620,2,,559,2,,234,2,,,,,,,,,,,,,,,,,,,,21,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,14:00,,,598,2,,668,2,,177,2,,,,,,,,,,,,,,,,,,,,21,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,15:00,,,392,2,,321,2,,223,2,,,,,,,,,,,,,,,,,,,,21,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,16:00,,,248,2,,205,2,,169,2,,,,,,,,,,,,,,,,,,,,21,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,17:00,,,117,2,,168,2,,80,2,,,,,,,,,,,,,,,,,,,,20,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,18:00,,,22,2,,70,2,,20,2,,,,,,,,,,,,,,,,,,,,17,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,06:00,,,2,2,,2,2,,2,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,07:00,,,69,2,,109,2,,55,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,08:00,,,158,2,,154,2,,111,2,,,,,,,,,,,,,,,,,,,,13,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,09:00,,,143,2,,22,2,,133,2,,,,,,,,,,,,,,,,,,,,14,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,10:00,,,416,2,,342,2,,217,2,,,,,,,,,,,,,,,,,,,,16,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,11:00,,,670,2,,729,2,,187,2,,,,,,,,,,,,,,,,,,,,17,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,12:00,,,588,2,,471,2,,259,2,,,,,,,,,,,,,,,,,,,,17,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,13:00,,,216,2,,37,2,,191,2,,,,,,,,,,,,,,,,,,,,19,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,14:00,,,441,2,,305,2,,250,2,,,,,,,,,,,,,,,,,,,,19,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,15:00,,,164,2,,43,2,,142,2,,,,,,,,,,,,,,,,,,,,19,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,16:00,,,106,2,,23,2,,97,2,,,,,,,,,,,,,,,,,,,,19,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,17:00,,,106,2,,140,2,,76,2,,,,,,,,,,,,,,,,,,,,18,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,18:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,16,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,12,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,07:00,,,21,2,,0,2,,21,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,08:00,,,41,2,,0,2,,41,2,,,,,,,,,,,,,,,,,,,,13,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,09:00,,,99,2,,0,2,,99,2,,,,,,,,,,,,,,,,,,,,13,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,10:00,,,101,2,,0,2,,101,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,11:00,,,119,2,,0,2,,119,2,,,,,,,,,,,,,,,,,,,,14,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,12:00,,,141,2,,0,2,,141,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,13:00,,,114,2,,0,2,,114,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,14:00,,,98,2,,0,2,,98,2,,,,,,,,,,,,,,,,,,,,14,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,15:00,,,80,2,,0,2,,80,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,16:00,,,62,2,,0,2,,62,2,,,,,,,,,,,,,,,,,,,,16,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,17:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,99,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,12,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,07:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,08:00,,,124,2,,39,2,,112,2,,,,,,,,,,,,,,,,,,,,11,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,09:00,,,198,2,,30,2,,184,2,,,,,,,,,,,,,,,,,,,,10,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,10:00,,,320,2,,129,2,,246,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,11:00,,,603,2,,585,2,,220,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,12:00,,,678,2,,791,2,,133,2,,,,,,,,,,,,,,,,,,,,14,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,13:00,,,674,2,,815,2,,124,2,,,,,,,,,,,,,,,,,,,,15,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,14:00,,,579,2,,709,2,,144,2,,,,,,,,,,,,,,,,,,,,15,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,15:00,,,477,2,,719,2,,111,2,,,,,,,,,,,,,,,,,,,,15,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,16:00,,,330,2,,538,2,,132,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,17:00,,,97,2,,124,2,,72,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,18:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,11,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,06:00,,,2,2,,7,2,,2,2,,,,,,,,,,,,,,,,,,,,9,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,07:00,,,74,2,,161,2,,55,2,,,,,,,,,,,,,,,,,,,,9,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,08:00,,,133,2,,55,2,,117,2,,,,,,,,,,,,,,,,,,,,9,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,09:00,,,157,2,,29,2,,144,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,10:00,,,218,2,,51,2,,189,2,,,,,,,,,,,,,,,,,,,,12,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,11:00,,,289,2,,95,2,,227,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,12:00,,,168,2,,1,2,,167,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,13:00,,,148,2,,0,2,,148,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,14:00,,,152,2,,2,2,,151,2,,,,,,,,,,,,,,,,,,,,13,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,15:00,,,148,2,,13,2,,142,2,,,,,,,,,,,,,,,,,,,,13,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,16:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,17:00,,,29,2,,0,2,,29,2,,,,,,,,,,,,,,,,,,,,12,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,11,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,07:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,08:00,,,53,2,,0,2,,53,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,09:00,,,110,2,,3,2,,109,2,,,,,,,,,,,,,,,,,,,,9,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,10:00,,,94,2,,0,2,,94,2,,,,,,,,,,,,,,,,,,,,11,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,11:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,12:00,,,190,2,,32,2,,168,2,,,,,,,,,,,,,,,,,,,,11,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,13:00,,,543,2,,429,2,,258,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,14:00,,,556,2,,651,2,,163,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,15:00,,,456,2,,604,2,,155,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,16:00,,,248,2,,267,2,,153,2,,,,,,,,,,,,,,,,,,,,14,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,17:00,,,51,2,,36,2,,44,2,,,,,,,,,,,,,,,,,,,,14,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,18:00,,,12,2,,16,2,,12,2,,,,,,,,,,,,,,,,,,,,11,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+09/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+09/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+09/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+09/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,06:00,,,2,2,,7,2,,2,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,07:00,,,45,2,,72,2,,37,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,08:00,,,107,2,,28,2,,99,2,,,,,,,,,,,,,,,,,,,,9,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,09:00,,,300,2,,263,2,,184,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,10:00,,,464,2,,444,2,,215,2,,,,,,,,,,,,,,,,,,,,12,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,11:00,,,388,2,,193,2,,264,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,12:00,,,179,2,,38,2,,153,2,,,,,,,,,,,,,,,,,,,,14,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,13:00,,,591,2,,513,2,,252,2,,,,,,,,,,,,,,,,,,,,15,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,14:00,,,470,2,,380,2,,243,2,,,,,,,,,,,,,,,,,,,,16,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,15:00,,,247,2,,98,2,,199,2,,,,,,,,,,,,,,,,,,,,16,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,16:00,,,215,2,,221,2,,137,2,,,,,,,,,,,,,,,,,,,,16,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,17:00,,,80,2,,52,2,,70,2,,,,,,,,,,,,,,,,,,,,16,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,18:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,13,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,07:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,08:00,,,40,2,,0,2,,40,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,09:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,10:00,,,91,2,,0,2,,91,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,11:00,,,114,2,,0,2,,114,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,12:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,13:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,13,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,14:00,,,97,2,,0,2,,97,2,,,,,,,,,,,,,,,,,,,,14,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,15:00,,,78,2,,0,2,,78,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,16:00,,,55,2,,0,2,,55,2,,,,,,,,,,,,,,,,,,,,15,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,17:00,,,21,2,,0,2,,21,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,15,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,07:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,08:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,09:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,10:00,,,125,2,,0,2,,125,2,,,,,,,,,,,,,,,,,,,,14,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,11:00,,,113,2,,0,2,,113,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,12:00,,,119,2,,0,2,,119,2,,,,,,,,,,,,,,,,,,,,14,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,13:00,,,101,2,,0,2,,101,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,14:00,,,108,2,,0,2,,108,2,,,,,,,,,,,,,,,,,,,,15,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,15:00,,,87,2,,0,2,,87,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,16:00,,,46,2,,0,2,,46,2,,,,,,,,,,,,,,,,,,,,15,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,17:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,15,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,18:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,07:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,14,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,08:00,,,77,2,,4,2,,76,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,09:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,10:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,11:00,,,221,2,,10,2,,215,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,12:00,,,278,2,,24,2,,262,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,13:00,,,185,2,,2,2,,184,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,14:00,,,157,2,,1,2,,156,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,15:00,,,121,2,,0,2,,121,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,16:00,,,54,2,,0,2,,54,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,17:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,15,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,07:00,,,25,2,,0,2,,25,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,08:00,,,95,2,,8,2,,93,2,,,,,,,,,,,,,,,,,,,,13,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,09:00,,,209,2,,54,2,,186,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,10:00,,,323,2,,111,2,,263,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,11:00,,,339,2,,84,2,,287,2,,,,,,,,,,,,,,,,,,,,14,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,12:00,,,386,2,,117,2,,309,2,,,,,,,,,,,,,,,,,,,,14,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,13:00,,,395,2,,154,2,,297,2,,,,,,,,,,,,,,,,,,,,15,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,14:00,,,329,2,,162,2,,236,2,,,,,,,,,,,,,,,,,,,,15,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,15:00,,,186,2,,19,2,,177,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,16:00,,,100,2,,1,2,,100,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,17:00,,,46,2,,3,2,,46,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,07:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,08:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,09:00,,,165,2,,15,2,,159,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,10:00,,,272,2,,73,2,,233,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,11:00,,,415,2,,239,2,,268,2,,,,,,,,,,,,,,,,,,,,17,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,12:00,,,627,2,,677,2,,188,2,,,,,,,,,,,,,,,,,,,,17,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,13:00,,,644,2,,845,2,,109,2,,,,,,,,,,,,,,,,,,,,20,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,14:00,,,579,2,,892,2,,70,2,,,,,,,,,,,,,,,,,,,,20,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,15:00,,,453,2,,834,2,,66,2,,,,,,,,,,,,,,,,,,,,20,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,16:00,,,285,2,,672,2,,68,2,,,,,,,,,,,,,,,,,,,,20,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,17:00,,,108,2,,339,2,,56,2,,,,,,,,,,,,,,,,,,,,19,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,18:00,,,4,2,,12,2,,4,2,,,,,,,,,,,,,,,,,,,,15,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,07:00,,,42,2,,76,2,,35,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,08:00,,,158,2,,214,2,,102,2,,,,,,,,,,,,,,,,,,,,11,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,09:00,,,354,2,,506,2,,145,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,10:00,,,490,2,,649,2,,144,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,11:00,,,624,2,,855,2,,101,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,12:00,,,666,2,,918,2,,75,2,,,,,,,,,,,,,,,,,,,,17,,,,,,70,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,13:00,,,648,2,,915,2,,73,2,,,,,,,,,,,,,,,,,,,,20,,,,,,61,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,14:00,,,573,2,,890,2,,70,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,15:00,,,444,2,,793,2,,80,2,,,,,,,,,,,,,,,,,,,,21,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,16:00,,,278,2,,636,2,,76,2,,,,,,,,,,,,,,,,,,,,21,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,17:00,,,102,2,,345,2,,51,2,,,,,,,,,,,,,,,,,,,,20,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,18:00,,,4,2,,14,2,,4,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,91,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,06:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,13,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,07:00,,,52,2,,160,2,,39,2,,,,,,,,,,,,,,,,,,,,13,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,08:00,,,214,2,,542,2,,74,2,,,,,,,,,,,,,,,,,,,,12,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,09:00,,,385,2,,740,2,,82,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,10:00,,,525,2,,832,2,,85,2,,,,,,,,,,,,,,,,,,,,17,,,,,,73,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,11:00,,,618,2,,873,2,,88,2,,,,,,,,,,,,,,,,,,,,19,,,,,,69,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,12:00,,,658,2,,894,2,,87,2,,,,,,,,,,,,,,,,,,,,19,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,13:00,,,638,2,,893,2,,82,2,,,,,,,,,,,,,,,,,,,,22,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,14:00,,,563,2,,872,2,,75,2,,,,,,,,,,,,,,,,,,,,22,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,15:00,,,434,2,,778,2,,81,2,,,,,,,,,,,,,,,,,,,,22,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,16:00,,,261,2,,563,2,,86,2,,,,,,,,,,,,,,,,,,,,22,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,17:00,,,93,2,,270,2,,54,2,,,,,,,,,,,,,,,,,,,,22,,,,,,69,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,18:00,,,3,2,,9,2,,3,2,,,,,,,,,,,,,,,,,,,,18,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,07:00,,,47,2,,128,2,,37,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,08:00,,,202,2,,456,2,,86,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,09:00,,,362,2,,607,2,,116,2,,,,,,,,,,,,,,,,,,,,12,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,10:00,,,492,2,,675,2,,138,2,,,,,,,,,,,,,,,,,,,,16,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,11:00,,,568,2,,699,2,,147,2,,,,,,,,,,,,,,,,,,,,16,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,12:00,,,603,2,,708,2,,154,2,,,,,,,,,,,,,,,,,,,,16,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,13:00,,,563,2,,590,2,,199,2,,,,,,,,,,,,,,,,,,,,18,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,14:00,,,382,2,,240,2,,249,2,,,,,,,,,,,,,,,,,,,,18,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,15:00,,,232,2,,102,2,,186,2,,,,,,,,,,,,,,,,,,,,18,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,16:00,,,208,2,,297,2,,117,2,,,,,,,,,,,,,,,,,,,,18,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,17:00,,,79,2,,164,2,,56,2,,,,,,,,,,,,,,,,,,,,17,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,18:00,,,2,2,,2,2,,2,2,,,,,,,,,,,,,,,,,,,,15,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,07:00,,,27,2,,12,2,,26,2,,,,,,,,,,,,,,,,,,,,12,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,08:00,,,127,2,,101,2,,102,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,09:00,,,168,2,,23,2,,159,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,10:00,,,235,2,,37,2,,216,2,,,,,,,,,,,,,,,,,,,,14,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,11:00,,,199,2,,6,2,,195,2,,,,,,,,,,,,,,,,,,,,15,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,12:00,,,186,2,,6,2,,182,2,,,,,,,,,,,,,,,,,,,,16,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,13:00,,,257,2,,91,2,,201,2,,,,,,,,,,,,,,,,,,,,18,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,14:00,,,519,2,,585,2,,198,2,,,,,,,,,,,,,,,,,,,,18,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,15:00,,,417,2,,752,2,,84,2,,,,,,,,,,,,,,,,,,,,18,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,16:00,,,251,2,,593,2,,73,2,,,,,,,,,,,,,,,,,,,,19,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,17:00,,,68,2,,172,2,,45,2,,,,,,,,,,,,,,,,,,,,19,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,18:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,17,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,07:00,,,36,2,,61,2,,32,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,08:00,,,198,2,,343,2,,114,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,09:00,,,247,2,,224,2,,158,2,,,,,,,,,,,,,,,,,,,,15,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,10:00,,,382,2,,324,2,,215,2,,,,,,,,,,,,,,,,,,,,18,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,11:00,,,424,2,,339,2,,223,2,,,,,,,,,,,,,,,,,,,,18,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,12:00,,,559,2,,562,2,,208,2,,,,,,,,,,,,,,,,,,,,19,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,13:00,,,446,2,,312,2,,257,2,,,,,,,,,,,,,,,,,,,,21,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,14:00,,,309,2,,100,2,,255,2,,,,,,,,,,,,,,,,,,,,22,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,15:00,,,239,2,,115,2,,189,2,,,,,,,,,,,,,,,,,,,,22,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,16:00,,,184,2,,245,2,,112,2,,,,,,,,,,,,,,,,,,,,22,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,17:00,,,84,2,,209,2,,58,2,,,,,,,,,,,,,,,,,,,,21,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,18:00,,,2,2,,10,2,,2,2,,,,,,,,,,,,,,,,,,,,17,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,07:00,,,42,2,,87,2,,36,2,,,,,,,,,,,,,,,,,,,,12,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,08:00,,,163,2,,263,2,,100,2,,,,,,,,,,,,,,,,,,,,13,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,09:00,,,339,2,,492,2,,146,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,10:00,,,373,2,,323,2,,208,2,,,,,,,,,,,,,,,,,,,,18,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,11:00,,,390,2,,243,2,,247,2,,,,,,,,,,,,,,,,,,,,20,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,12:00,,,404,2,,216,2,,270,2,,,,,,,,,,,,,,,,,,,,20,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,13:00,,,492,2,,444,2,,225,2,,,,,,,,,,,,,,,,,,,,23,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,14:00,,,485,2,,569,2,,179,2,,,,,,,,,,,,,,,,,,,,23,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,15:00,,,415,2,,636,2,,141,2,,,,,,,,,,,,,,,,,,,,23,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,16:00,,,202,2,,297,2,,116,2,,,,,,,,,,,,,,,,,,,,23,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,17:00,,,54,2,,75,2,,45,2,,,,,,,,,,,,,,,,,,,,22,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,18:00,,,2,2,,4,2,,2,2,,,,,,,,,,,,,,,,,,,,19,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,07:00,,,38,2,,79,2,,33,2,,,,,,,,,,,,,,,,,,,,13,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,08:00,,,155,2,,242,2,,98,2,,,,,,,,,,,,,,,,,,,,13,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,09:00,,,321,2,,478,2,,136,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,10:00,,,487,2,,731,2,,118,2,,,,,,,,,,,,,,,,,,,,18,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,11:00,,,589,2,,844,2,,98,2,,,,,,,,,,,,,,,,,,,,19,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,12:00,,,620,2,,848,2,,100,2,,,,,,,,,,,,,,,,,,,,19,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,13:00,,,576,2,,726,2,,143,2,,,,,,,,,,,,,,,,,,,,21,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,14:00,,,455,2,,528,2,,174,2,,,,,,,,,,,,,,,,,,,,21,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,15:00,,,250,2,,222,2,,156,2,,,,,,,,,,,,,,,,,,,,22,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,16:00,,,131,2,,111,2,,100,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,17:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,20,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,07:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,17,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,08:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,17,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,09:00,,,115,2,,1,2,,115,2,,,,,,,,,,,,,,,,,,,,16,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,10:00,,,154,2,,1,2,,154,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,11:00,,,152,2,,0,2,,152,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,12:00,,,166,2,,1,2,,165,2,,,,,,,,,,,,,,,,,,,,19,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,13:00,,,141,2,,0,2,,141,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,14:00,,,181,2,,15,2,,173,2,,,,,,,,,,,,,,,,,,,,21,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,15:00,,,80,2,,2,2,,79,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,16:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,17:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,21,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,94,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,15,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,07:00,,,27,2,,56,2,,24,2,,,,,,,,,,,,,,,,,,,,16,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,08:00,,,104,2,,67,2,,89,2,,,,,,,,,,,,,,,,,,,,16,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,09:00,,,242,2,,220,2,,159,2,,,,,,,,,,,,,,,,,,,,16,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,10:00,,,216,2,,53,2,,190,2,,,,,,,,,,,,,,,,,,,,18,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,11:00,,,108,2,,2,2,,107,2,,,,,,,,,,,,,,,,,,,,18,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,12:00,,,118,2,,4,2,,116,2,,,,,,,,,,,,,,,,,,,,18,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,13:00,,,367,2,,174,2,,265,2,,,,,,,,,,,,,,,,,,,,20,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,14:00,,,492,2,,571,2,,194,2,,,,,,,,,,,,,,,,,,,,20,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,15:00,,,296,2,,284,2,,178,2,,,,,,,,,,,,,,,,,,,,20,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,16:00,,,52,2,,4,2,,51,2,,,,,,,,,,,,,,,,,,,,20,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,17:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,20,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,18,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,19,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,07:00,,,24,2,,41,2,,22,2,,,,,,,,,,,,,,,,,,,,19,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,08:00,,,82,2,,27,2,,76,2,,,,,,,,,,,,,,,,,,,,19,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,09:00,,,104,2,,21,2,,96,2,,,,,,,,,,,,,,,,,,,,19,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,10:00,,,123,2,,2,2,,122,2,,,,,,,,,,,,,,,,,,,,20,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,11:00,,,224,2,,21,2,,212,2,,,,,,,,,,,,,,,,,,,,20,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,12:00,,,199,2,,14,2,,191,2,,,,,,,,,,,,,,,,,,,,21,,,,,,81,,,,,,,,,7,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,13:00,,,102,2,,0,2,,102,2,,,,,,,,,,,,,,,,,,,,21,,,,,,79,,,,,,,,,7,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,14:00,,,90,2,,0,2,,90,2,,,,,,,,,,,,,,,,,,,,21,,,,,,77,,,,,,,,,6,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,15:00,,,64,2,,0,2,,64,2,,,,,,,,,,,,,,,,,,,,22,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,16:00,,,69,2,,25,2,,62,2,,,,,,,,,,,,,,,,,,,,20,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,17:00,,,14,2,,3,2,,14,2,,,,,,,,,,,,,,,,,,,,19,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,17,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,16,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,07:00,,,20,2,,21,2,,19,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,08:00,,,102,2,,84,2,,84,2,,,,,,,,,,,,,,,,,,,,10,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,09:00,,,278,2,,371,2,,141,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,10:00,,,421,2,,503,2,,176,2,,,,,,,,,,,,,,,,,,,,12,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,11:00,,,233,2,,78,2,,189,2,,,,,,,,,,,,,,,,,,,,12,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,12:00,,,295,2,,100,2,,236,2,,,,,,,,,,,,,,,,,,,,12,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,13:00,,,417,2,,282,2,,255,2,,,,,,,,,,,,,,,,,,,,14,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,14:00,,,421,2,,370,2,,232,2,,,,,,,,,,,,,,,,,,,,13,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,15:00,,,97,2,,28,2,,86,2,,,,,,,,,,,,,,,,,,,,13,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,16:00,,,124,2,,134,2,,89,2,,,,,,,,,,,,,,,,,,,,13,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,17:00,,,20,2,,19,2,,18,2,,,,,,,,,,,,,,,,,,,,12,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,07:00,,,23,2,,55,2,,21,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,08:00,,,95,2,,70,2,,80,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,09:00,,,120,2,,9,2,,117,2,,,,,,,,,,,,,,,,,,,,7,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,10:00,,,112,2,,0,2,,112,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,11:00,,,151,2,,2,2,,150,2,,,,,,,,,,,,,,,,,,,,9,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,12:00,,,148,2,,3,2,,146,2,,,,,,,,,,,,,,,,,,,,9,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,13:00,,,106,2,,0,2,,106,2,,,,,,,,,,,,,,,,,,,,10,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,14:00,,,96,2,,0,2,,96,2,,,,,,,,,,,,,,,,,,,,10,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,15:00,,,144,2,,13,2,,139,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,16:00,,,79,2,,6,2,,78,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,17:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,10,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,07:00,,,22,2,,51,2,,20,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,08:00,,,157,2,,278,2,,98,2,,,,,,,,,,,,,,,,,,,,7,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,09:00,,,231,2,,252,2,,140,2,,,,,,,,,,,,,,,,,,,,7,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,10:00,,,154,2,,4,2,,152,2,,,,,,,,,,,,,,,,,,,,8,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,11:00,,,159,2,,1,2,,158,2,,,,,,,,,,,,,,,,,,,,10,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,12:00,,,145,2,,0,2,,145,2,,,,,,,,,,,,,,,,,,,,10,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,13:00,,,109,2,,0,2,,109,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,14:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,11,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,15:00,,,77,2,,0,2,,77,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,16:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,12,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,17:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,12,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,07:00,,,28,2,,131,2,,23,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,08:00,,,168,2,,492,2,,66,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,09:00,,,330,2,,718,2,,74,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,10:00,,,469,2,,841,2,,72,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,11:00,,,556,2,,886,2,,71,2,,,,,,,,,,,,,,,,,,,,15,,,,,,63,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,12:00,,,597,2,,910,2,,72,2,,,,,,,,,,,,,,,,,,,,16,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,13:00,,,573,2,,897,2,,71,2,,,,,,,,,,,,,,,,,,,,19,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,14:00,,,491,2,,779,2,,106,2,,,,,,,,,,,,,,,,,,,,19,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,15:00,,,309,2,,495,2,,117,2,,,,,,,,,,,,,,,,,,,,19,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,16:00,,,186,2,,411,2,,85,2,,,,,,,,,,,,,,,,,,,,19,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,17:00,,,44,2,,119,2,,35,2,,,,,,,,,,,,,,,,,,,,18,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,07:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,08:00,,,39,2,,1,2,,39,2,,,,,,,,,,,,,,,,,,,,12,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,09:00,,,94,2,,7,2,,92,2,,,,,,,,,,,,,,,,,,,,12,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,10:00,,,79,2,,0,2,,79,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,11:00,,,151,2,,1,2,,150,2,,,,,,,,,,,,,,,,,,,,14,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,12:00,,,102,2,,0,2,,102,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,13:00,,,93,2,,0,2,,93,2,,,,,,,,,,,,,,,,,,,,15,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,14:00,,,93,2,,0,2,,93,2,,,,,,,,,,,,,,,,,,,,16,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,15:00,,,103,2,,0,2,,103,2,,,,,,,,,,,,,,,,,,,,15,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,16:00,,,50,2,,0,2,,50,2,,,,,,,,,,,,,,,,,,,,16,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,17:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,16,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,07:00,,,13,2,,11,2,,13,2,,,,,,,,,,,,,,,,,,,,13,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,08:00,,,54,2,,4,2,,53,2,,,,,,,,,,,,,,,,,,,,13,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,09:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,13,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,10:00,,,126,2,,13,2,,120,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,11:00,,,402,2,,320,2,,230,2,,,,,,,,,,,,,,,,,,,,10,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,12:00,,,531,2,,628,2,,175,2,,,,,,,,,,,,,,,,,,,,10,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,13:00,,,536,2,,711,2,,146,2,,,,,,,,,,,,,,,,,,,,9,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,14:00,,,382,2,,399,2,,189,2,,,,,,,,,,,,,,,,,,,,9,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,15:00,,,165,2,,71,2,,138,2,,,,,,,,,,,,,,,,,,,,9,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,16:00,,,159,2,,300,2,,88,2,,,,,,,,,,,,,,,,,,,,9,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,17:00,,,37,2,,133,2,,28,2,,,,,,,,,,,,,,,,,,,,9,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,07:00,,,18,2,,60,2,,17,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,08:00,,,61,2,,24,2,,56,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,09:00,,,168,2,,70,2,,144,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,10:00,,,301,2,,213,2,,204,2,,,,,,,,,,,,,,,,,,,,6,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,11:00,,,454,2,,460,2,,209,2,,,,,,,,,,,,,,,,,,,,6,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,12:00,,,545,2,,603,2,,206,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,13:00,,,239,2,,110,2,,179,2,,,,,,,,,,,,,,,,,,,,8,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,14:00,,,348,2,,320,2,,195,2,,,,,,,,,,,,,,,,,,,,8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,15:00,,,298,2,,426,2,,139,2,,,,,,,,,,,,,,,,,,,,8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,16:00,,,150,2,,249,2,,92,2,,,,,,,,,,,,,,,,,,,,8,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,17:00,,,40,2,,96,2,,34,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,07:00,,,22,2,,151,2,,19,2,,,,,,,,,,,,,,,,,,,,2,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,08:00,,,154,2,,555,2,,49,2,,,,,,,,,,,,,,,,,,,,3,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,09:00,,,317,2,,774,2,,56,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,10:00,,,450,2,,857,2,,62,2,,,,,,,,,,,,,,,,,,,,8,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,11:00,,,537,2,,893,2,,66,2,,,,,,,,,,,,,,,,,,,,9,,,,,,53,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,12:00,,,576,2,,910,2,,69,2,,,,,,,,,,,,,,,,,,,,9,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,13:00,,,552,2,,896,2,,69,2,,,,,,,,,,,,,,,,,,,,12,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,14:00,,,470,2,,848,2,,68,2,,,,,,,,,,,,,,,,,,,,12,,,,,,43,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,15:00,,,335,2,,674,2,,87,2,,,,,,,,,,,,,,,,,,,,12,,,,,,44,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,16:00,,,164,2,,341,2,,87,2,,,,,,,,,,,,,,,,,,,,12,,,,,,46,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,17:00,,,22,2,,21,2,,21,2,,,,,,,,,,,,,,,,,,,,11,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,07:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,6,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,08:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,6,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,09:00,,,51,2,,0,2,,51,2,,,,,,,,,,,,,,,,,,,,6,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,10:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,6,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,11:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,6,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,12:00,,,91,2,,0,2,,91,2,,,,,,,,,,,,,,,,,,,,5,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,13:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,6,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,14:00,,,73,2,,0,2,,73,2,,,,,,,,,,,,,,,,,,,,6,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,15:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,16:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,17:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,07:00,,,12,2,,39,2,,12,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,08:00,,,41,2,,5,2,,40,2,,,,,,,,,,,,,,,,,,,,8,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,09:00,,,56,2,,0,2,,56,2,,,,,,,,,,,,,,,,,,,,9,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,10:00,,,83,2,,0,2,,83,2,,,,,,,,,,,,,,,,,,,,9,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,11:00,,,106,2,,0,2,,106,2,,,,,,,,,,,,,,,,,,,,9,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,12:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,9,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,13:00,,,145,2,,1,2,,144,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,14:00,,,182,2,,29,2,,168,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,15:00,,,66,2,,4,2,,65,2,,,,,,,,,,,,,,,,,,,,11,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,16:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,17:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,07:00,,,13,2,,23,2,,13,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,08:00,,,67,2,,16,2,,64,2,,,,,,,,,,,,,,,,,,,,7,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,09:00,,,138,2,,25,2,,130,2,,,,,,,,,,,,,,,,,,,,7,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,10:00,,,199,2,,26,2,,188,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,11:00,,,279,2,,99,2,,228,2,,,,,,,,,,,,,,,,,,,,9,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,12:00,,,420,2,,350,2,,230,2,,,,,,,,,,,,,,,,,,,,9,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,13:00,,,416,2,,423,2,,195,2,,,,,,,,,,,,,,,,,,,,11,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,14:00,,,411,2,,601,2,,135,2,,,,,,,,,,,,,,,,,,,,12,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,15:00,,,313,2,,684,2,,72,2,,,,,,,,,,,,,,,,,,,,12,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,16:00,,,162,2,,512,2,,54,2,,,,,,,,,,,,,,,,,,,,11,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,17:00,,,22,2,,49,2,,20,2,,,,,,,,,,,,,,,,,,,,11,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,07:00,,,15,2,,72,2,,15,2,,,,,,,,,,,,,,,,,,,,4,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,08:00,,,129,2,,426,2,,56,2,,,,,,,,,,,,,,,,,,,,4,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,09:00,,,277,2,,643,2,,72,2,,,,,,,,,,,,,,,,,,,,5,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,10:00,,,410,2,,776,2,,73,2,,,,,,,,,,,,,,,,,,,,7,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,11:00,,,495,2,,821,2,,78,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,12:00,,,543,2,,865,2,,78,2,,,,,,,,,,,,,,,,,,,,8,,,,,,66,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,13:00,,,526,2,,891,2,,64,2,,,,,,,,,,,,,,,,,,,,10,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,14:00,,,451,2,,867,2,,58,2,,,,,,,,,,,,,,,,,,,,10,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,15:00,,,319,2,,748,2,,59,2,,,,,,,,,,,,,,,,,,,,10,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,16:00,,,158,2,,489,2,,57,2,,,,,,,,,,,,,,,,,,,,10,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,17:00,,,24,2,,69,2,,21,2,,,,,,,,,,,,,,,,,,,,10,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,100,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,07:00,,,14,2,,81,2,,14,2,,,,,,,,,,,,,,,,,,,,1,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,08:00,,,131,2,,479,2,,50,2,,,,,,,,,,,,,,,,,,,,2,,,,,,98,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,09:00,,,285,2,,733,2,,54,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,10:00,,,415,2,,833,2,,57,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,11:00,,,509,2,,889,2,,62,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,12:00,,,549,2,,914,2,,63,2,,,,,,,,,,,,,,,,,,,,8,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,13:00,,,524,2,,903,2,,60,2,,,,,,,,,,,,,,,,,,,,12,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,14:00,,,444,2,,866,2,,55,2,,,,,,,,,,,,,,,,,,,,12,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,15:00,,,312,2,,746,2,,56,2,,,,,,,,,,,,,,,,,,,,13,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,16:00,,,152,2,,486,2,,54,2,,,,,,,,,,,,,,,,,,,,13,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,17:00,,,25,2,,134,2,,20,2,,,,,,,,,,,,,,,,,,,,13,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,07:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,7,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,08:00,,,48,2,,9,2,,46,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,09:00,,,93,2,,17,2,,88,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,10:00,,,218,2,,115,2,,169,2,,,,,,,,,,,,,,,,,,,,9,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,11:00,,,123,2,,1,2,,122,2,,,,,,,,,,,,,,,,,,,,10,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,12:00,,,140,2,,4,2,,138,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,13:00,,,103,2,,0,2,,103,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,5,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,14:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,11,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,15:00,,,55,2,,0,2,,55,2,,,,,,,,,,,,,,,,,,,,12,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,16:00,,,31,2,,0,2,,31,2,,,,,,,,,,,,,,,,,,,,12,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,17:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,12,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,98,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,07:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,9,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,08:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,10,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,09:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,10,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,10:00,,,83,2,,0,2,,83,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,11:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,12:00,,,118,2,,0,2,,118,2,,,,,,,,,,,,,,,,,,,,10,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,13:00,,,89,2,,0,2,,89,2,,,,,,,,,,,,,,,,,,,,11,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,14:00,,,78,2,,0,2,,78,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,15:00,,,54,2,,0,2,,54,2,,,,,,,,,,,,,,,,,,,,11,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,16:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,17:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.17,,,,,,
+10/31/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+10/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+10/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+10/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,07:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,9,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,08:00,,,77,2,,100,2,,62,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,09:00,,,275,2,,571,2,,103,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,10:00,,,415,2,,841,2,,66,2,,,,,,,,,,,,,,,,,,,,10,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,11:00,,,502,2,,899,2,,62,2,,,,,,,,,,,,,,,,,,,,10,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,12:00,,,536,2,,912,2,,64,2,,,,,,,,,,,,,,,,,,,,10,,,,,,44,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,13:00,,,510,2,,900,2,,61,2,,,,,,,,,,,,,,,,,,,,12,,,,,,39,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,14:00,,,437,2,,850,2,,68,2,,,,,,,,,,,,,,,,,,,,12,,,,,,40,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,15:00,,,303,2,,588,2,,110,2,,,,,,,,,,,,,,,,,,,,11,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,16:00,,,77,2,,156,2,,48,2,,,,,,,,,,,,,,,,,,,,11,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,17:00,,,19,2,,50,2,,18,2,,,,,,,,,,,,,,,,,,,,10,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,07:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,08:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,09:00,,,91,2,,7,2,,89,2,,,,,,,,,,,,,,,,,,,,4,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,10:00,,,155,2,,53,2,,133,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,11:00,,,258,2,,90,2,,214,2,,,,,,,,,,,,,,,,,,,,8,,,,,,63,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,12:00,,,213,2,,57,2,,184,2,,,,,,,,,,,,,,,,,,,,8,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,13:00,,,197,2,,90,2,,152,2,,,,,,,,,,,,,,,,,,,,9,,,,,,56,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,14:00,,,123,2,,3,2,,122,2,,,,,,,,,,,,,,,,,,,,9,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,15:00,,,88,2,,0,2,,88,2,,,,,,,,,,,,,,,,,,,,8,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,16:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,8,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,17:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,8,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,08:00,,,38,2,,10,2,,36,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,09:00,,,49,2,,1,2,,49,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,10:00,,,77,2,,0,2,,77,2,,,,,,,,,,,,,,,,,,,,5,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,11:00,,,101,2,,0,2,,101,2,,,,,,,,,,,,,,,,,,,,5,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,12:00,,,139,2,,15,2,,131,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,13:00,,,267,2,,120,2,,208,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,14:00,,,251,2,,166,2,,180,2,,,,,,,,,,,,,,,,,,,,5,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,15:00,,,183,2,,248,2,,104,2,,,,,,,,,,,,,,,,,,,,6,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,16:00,,,128,2,,304,2,,73,2,,,,,,,,,,,,,,,,,,,,5,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,17:00,,,8,2,,20,2,,8,2,,,,,,,,,,,,,,,,,,,,5,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,07:00,,,4,2,,5,2,,4,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,08:00,,,58,2,,49,2,,51,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,09:00,,,128,2,,53,2,,113,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,10:00,,,124,2,,10,2,,120,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,11:00,,,92,2,,0,2,,92,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,12:00,,,133,2,,5,2,,130,2,,,,,,,,,,,,,,,,,,,,3,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,13:00,,,257,2,,99,2,,209,2,,,,,,,,,,,,,,,,,,,,5,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,14:00,,,300,2,,300,2,,174,2,,,,,,,,,,,,,,,,,,,,6,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,15:00,,,198,2,,232,2,,125,2,,,,,,,,,,,,,,,,,,,,6,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,16:00,,,103,2,,205,2,,67,2,,,,,,,,,,,,,,,,,,,,5,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,17:00,,,11,2,,12,2,,11,2,,,,,,,,,,,,,,,,,,,,6,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,07:00,,,4,2,,4,2,,4,2,,,,,,,,,,,,,,,,,,,,0,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,08:00,,,77,2,,134,2,,58,2,,,,,,,,,,,,,,,,,,,,0,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,09:00,,,241,2,,499,2,,100,2,,,,,,,,,,,,,,,,,,,,0,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,10:00,,,388,2,,772,2,,82,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,11:00,,,475,2,,874,2,,64,2,,,,,,,,,,,,,,,,,,,,4,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,12:00,,,509,2,,811,2,,105,2,,,,,,,,,,,,,,,,,,,,5,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,13:00,,,407,2,,469,2,,182,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,14:00,,,199,2,,210,2,,112,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,15:00,,,77,2,,32,2,,67,2,,,,,,,,,,,,,,,,,,,,8,,,,,,48,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,16:00,,,56,2,,43,2,,49,2,,,,,,,,,,,,,,,,,,,,8,,,,,,42,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,17:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,8,,,,,,47,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,59,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,62,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,07:00,,,4,2,,17,2,,4,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,08:00,,,93,2,,345,2,,47,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,09:00,,,246,2,,655,2,,63,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,10:00,,,383,2,,804,2,,68,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,11:00,,,461,2,,854,2,,64,2,,,,,,,,,,,,,,,,,,,,6,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,12:00,,,505,2,,889,2,,66,2,,,,,,,,,,,,,,,,,,,,7,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,13:00,,,484,2,,820,2,,94,2,,,,,,,,,,,,,,,,,,,,9,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,14:00,,,376,2,,652,2,,107,2,,,,,,,,,,,,,,,,,,,,10,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,15:00,,,278,2,,677,2,,70,2,,,,,,,,,,,,,,,,,,,,10,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,16:00,,,127,2,,414,2,,57,2,,,,,,,,,,,,,,,,,,,,9,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,17:00,,,8,2,,13,2,,8,2,,,,,,,,,,,,,,,,,,,,9,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,07:00,,,3,2,,14,2,,3,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,08:00,,,88,2,,308,2,,48,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,09:00,,,243,2,,641,2,,67,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,10:00,,,377,2,,816,2,,61,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,11:00,,,464,2,,874,2,,61,2,,,,,,,,,,,,,,,,,,,,7,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,12:00,,,504,2,,902,2,,62,2,,,,,,,,,,,,,,,,,,,,7,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,13:00,,,480,2,,895,2,,58,2,,,,,,,,,,,,,,,,,,,,11,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,14:00,,,405,2,,863,2,,53,2,,,,,,,,,,,,,,,,,,,,12,,,,,,44,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,15:00,,,283,2,,760,2,,53,2,,,,,,,,,,,,,,,,,,,,12,,,,,,45,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,16:00,,,127,2,,465,2,,51,2,,,,,,,,,,,,,,,,,,,,12,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,17:00,,,11,2,,21,2,,11,2,,,,,,,,,,,,,,,,,,,,11,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,5,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,08:00,,,51,2,,48,2,,45,2,,,,,,,,,,,,,,,,,,,,4,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,09:00,,,185,2,,327,2,,97,2,,,,,,,,,,,,,,,,,,,,6,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,10:00,,,294,2,,414,2,,135,2,,,,,,,,,,,,,,,,,,,,9,,,,,,64,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,11:00,,,426,2,,661,2,,124,2,,,,,,,,,,,,,,,,,,,,10,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,12:00,,,480,2,,799,2,,92,2,,,,,,,,,,,,,,,,,,,,11,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,13:00,,,462,2,,838,2,,71,2,,,,,,,,,,,,,,,,,,,,14,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,14:00,,,390,2,,798,2,,68,2,,,,,,,,,,,,,,,,,,,,15,,,,,,55,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,15:00,,,266,2,,665,2,,67,2,,,,,,,,,,,,,,,,,,,,15,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,16:00,,,114,2,,344,2,,59,2,,,,,,,,,,,,,,,,,,,,14,,,,,,61,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,17:00,,,8,2,,13,2,,8,2,,,,,,,,,,,,,,,,,,,,13,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,08:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,09:00,,,70,2,,19,2,,65,2,,,,,,,,,,,,,,,,,,,,7,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,10:00,,,312,2,,384,2,,167,2,,,,,,,,,,,,,,,,,,,,10,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,11:00,,,418,2,,579,2,,156,2,,,,,,,,,,,,,,,,,,,,11,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,12:00,,,265,2,,222,2,,158,2,,,,,,,,,,,,,,,,,,,,12,,,,,,68,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,13:00,,,117,2,,0,2,,117,2,,,,,,,,,,,,,,,,,,,,15,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,14:00,,,114,2,,0,2,,114,2,,,,,,,,,,,,,,,,,,,,15,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,15:00,,,80,2,,13,2,,76,2,,,,,,,,,,,,,,,,,,,,15,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,16:00,,,45,2,,10,2,,43,2,,,,,,,,,,,,,,,,,,,,14,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,14,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,08:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,8,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,09:00,,,52,2,,0,2,,52,2,,,,,,,,,,,,,,,,,,,,8,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,10:00,,,224,2,,260,2,,127,2,,,,,,,,,,,,,,,,,,,,11,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,11:00,,,436,2,,698,2,,124,2,,,,,,,,,,,,,,,,,,,,11,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,12:00,,,474,2,,854,2,,67,2,,,,,,,,,,,,,,,,,,,,10,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,13:00,,,460,2,,864,2,,64,2,,,,,,,,,,,,,,,,,,,,12,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,14:00,,,390,2,,838,2,,59,2,,,,,,,,,,,,,,,,,,,,12,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,15:00,,,266,2,,713,2,,58,2,,,,,,,,,,,,,,,,,,,,12,,,,,,38,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,16:00,,,110,2,,377,2,,52,2,,,,,,,,,,,,,,,,,,,,11,,,,,,39,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,17:00,,,5,2,,12,2,,5,2,,,,,,,,,,,,,,,,,,,,10,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,84,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,07:00,,,3,2,,14,2,,3,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,95,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,08:00,,,78,2,,299,2,,44,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,09:00,,,219,2,,585,2,,68,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,10:00,,,350,2,,724,2,,82,2,,,,,,,,,,,,,,,,,,,,2,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,11:00,,,418,2,,733,2,,93,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,12:00,,,419,2,,598,2,,137,2,,,,,,,,,,,,,,,,,,,,5,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,13:00,,,437,2,,639,2,,147,2,,,,,,,,,,,,,,,,,,,,8,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,14:00,,,229,2,,277,2,,121,2,,,,,,,,,,,,,,,,,,,,9,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,15:00,,,162,2,,180,2,,110,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,16:00,,,37,2,,20,2,,34,2,,,,,,,,,,,,,,,,,,,,9,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,9,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,60,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,53,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,59,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,62,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,67,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,67,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,66,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,08:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,10,,,,,,68,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,09:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,10,,,,,,75,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,10:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,10,,,,,,86,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,11:00,,,75,2,,0,2,,75,2,,,,,,,,,,,,,,,,,,,,9,,,,,,90,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,12:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,9,,,,,,91,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,13:00,,,80,2,,0,2,,80,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,14:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,15:00,,,46,2,,0,2,,46,2,,,,,,,,,,,,,,,,,,,,11,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,16:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,11,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,90,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,4,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,08:00,,,42,2,,36,2,,38,2,,,,,,,,,,,,,,,,,,,,4,,,,,,90,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,09:00,,,78,2,,12,2,,75,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,10:00,,,191,2,,103,2,,154,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,11:00,,,165,2,,21,2,,156,2,,,,,,,,,,,,,,,,,,,,7,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,12:00,,,177,2,,52,2,,153,2,,,,,,,,,,,,,,,,,,,,8,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,13:00,,,127,2,,1,2,,127,2,,,,,,,,,,,,,,,,,,,,10,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,14:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,10,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,15:00,,,45,2,,0,2,,45,2,,,,,,,,,,,,,,,,,,,,9,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,16:00,,,19,2,,0,2,,19,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,07:00,,,2,2,,14,2,,2,2,,,,,,,,,,,,,,,,,,,,3,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,08:00,,,54,2,,161,2,,38,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,09:00,,,203,2,,404,2,,104,2,,,,,,,,,,,,,,,,,,,,3,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,10:00,,,302,2,,510,2,,120,2,,,,,,,,,,,,,,,,,,,,5,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,11:00,,,409,2,,692,2,,111,2,,,,,,,,,,,,,,,,,,,,5,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,12:00,,,441,2,,726,2,,108,2,,,,,,,,,,,,,,,,,,,,6,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,13:00,,,421,2,,635,2,,140,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,14:00,,,232,2,,183,2,,162,2,,,,,,,,,,,,,,,,,,,,7,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,15:00,,,111,2,,29,2,,103,2,,,,,,,,,,,,,,,,,,,,7,,,,,,58,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,16:00,,,37,2,,3,2,,37,2,,,,,,,,,,,,,,,,,,,,7,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,08:00,,,15,2,,0,2,,15,2,,,,,,,,,,,,,,,,,,,,2,,,,,,96,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,09:00,,,51,2,,0,2,,51,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,10:00,,,101,2,,3,2,,100,2,,,,,,,,,,,,,,,,,,,,4,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,11:00,,,135,2,,1,2,,135,2,,,,,,,,,,,,,,,,,,,,4,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,12:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,4,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,13:00,,,76,2,,0,2,,76,2,,,,,,,,,,,,,,,,,,,,5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,14:00,,,73,2,,0,2,,73,2,,,,,,,,,,,,,,,,,,,,5,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,15:00,,,49,2,,0,2,,49,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,16:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,4,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,4,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,08:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,09:00,,,77,2,,4,2,,76,2,,,,,,,,,,,,,,,,,,,,1,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,10:00,,,110,2,,9,2,,107,2,,,,,,,,,,,,,,,,,,,,2,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,11:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,12:00,,,173,2,,77,2,,138,2,,,,,,,,,,,,,,,,,,,,3,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,13:00,,,159,2,,18,2,,151,2,,,,,,,,,,,,,,,,,,,,4,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,14:00,,,70,2,,0,2,,70,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,15:00,,,50,2,,0,2,,50,2,,,,,,,,,,,,,,,,,,,,3,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,16:00,,,20,2,,0,2,,20,2,,,,,,,,,,,,,,,,,,,,3,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,69,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,07:00,,,1,2,,9,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,08:00,,,52,2,,149,2,,39,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,09:00,,,118,2,,138,2,,86,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,10:00,,,86,2,,0,2,,86,2,,,,,,,,,,,,,,,,,,,,1,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,11:00,,,116,2,,0,2,,116,2,,,,,,,,,,,,,,,,,,,,2,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,12:00,,,193,2,,47,2,,172,2,,,,,,,,,,,,,,,,,,,,2,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,13:00,,,174,2,,20,2,,165,2,,,,,,,,,,,,,,,,,,,,3,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,14:00,,,99,2,,2,2,,98,2,,,,,,,,,,,,,,,,,,,,3,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,15:00,,,43,2,,0,2,,43,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,16:00,,,17,2,,0,2,,17,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,79,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,82,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,85,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,86,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,8,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,08:00,,,45,2,,57,2,,40,2,,,,,,,,,,,,,,,,,,,,8,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,09:00,,,53,2,,8,2,,51,2,,,,,,,,,,,,,,,,,,,,8,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,10:00,,,167,2,,154,2,,114,2,,,,,,,,,,,,,,,,,,,,10,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,11:00,,,226,2,,122,2,,176,2,,,,,,,,,,,,,,,,,,,,11,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,12:00,,,90,2,,10,2,,86,2,,,,,,,,,,,,,,,,,,,,12,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,13:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,12,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,14:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,12,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,15:00,,,41,2,,0,2,,41,2,,,,,,,,,,,,,,,,,,,,13,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,16:00,,,16,2,,0,2,,16,2,,,,,,,,,,,,,,,,,,,,12,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,08:00,,,29,2,,14,2,,28,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,09:00,,,112,2,,94,2,,91,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,10:00,,,81,2,,3,2,,80,2,,,,,,,,,,,,,,,,,,,,4,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,11:00,,,111,2,,0,2,,111,2,,,,,,,,,,,,,,,,,,,,4,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,12:00,,,128,2,,10,2,,124,2,,,,,,,,,,,,,,,,,,,,3,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,13:00,,,241,2,,187,2,,162,2,,,,,,,,,,,,,,,,,,,,3,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,14:00,,,241,2,,249,2,,151,2,,,,,,,,,,,,,,,,,,,,3,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,15:00,,,64,2,,4,2,,63,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,16:00,,,42,2,,14,2,,40,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,08:00,,,53,2,,202,2,,37,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,09:00,,,187,2,,611,2,,52,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,10:00,,,315,2,,777,2,,56,2,,,,,,,,,,,,,,,,,,,,2,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,11:00,,,398,2,,832,2,,60,2,,,,,,,,,,,,,,,,,,,,2,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,12:00,,,440,2,,792,2,,95,2,,,,,,,,,,,,,,,,,,,,3,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,13:00,,,367,2,,572,2,,127,2,,,,,,,,,,,,,,,,,,,,5,,,,,,50,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,14:00,,,281,2,,432,2,,126,2,,,,,,,,,,,,,,,,,,,,5,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,15:00,,,179,2,,322,2,,96,2,,,,,,,,,,,,,,,,,,,,5,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,16:00,,,79,2,,182,2,,57,2,,,,,,,,,,,,,,,,,,,,4,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,17:00,,,2,2,,6,2,,2,2,,,,,,,,,,,,,,,,,,,,5,,,,,,54,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,08:00,,,24,2,,11,2,,23,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,09:00,,,120,2,,148,2,,88,2,,,,,,,,,,,,,,,,,,,,3,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,10:00,,,279,2,,474,2,,123,2,,,,,,,,,,,,,,,,,,,,4,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,11:00,,,372,2,,673,2,,101,2,,,,,,,,,,,,,,,,,,,,5,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,12:00,,,426,2,,782,2,,88,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,13:00,,,411,2,,819,2,,70,2,,,,,,,,,,,,,,,,,,,,7,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,14:00,,,342,2,,712,2,,88,2,,,,,,,,,,,,,,,,,,,,7,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,15:00,,,192,2,,376,2,,96,2,,,,,,,,,,,,,,,,,,,,7,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,16:00,,,47,2,,64,2,,39,2,,,,,,,,,,,,,,,,,,,,7,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,86,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,07:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,08:00,,,39,2,,56,2,,35,2,,,,,,,,,,,,,,,,,,,,7,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,09:00,,,39,2,,8,2,,37,2,,,,,,,,,,,,,,,,,,,,7,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,10:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,6,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,11:00,,,82,2,,8,2,,79,2,,,,,,,,,,,,,,,,,,,,5,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,12:00,,,164,2,,62,2,,137,2,,,,,,,,,,,,,,,,,,,,5,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,13:00,,,191,2,,48,2,,171,2,,,,,,,,,,,,,,,,,,,,5,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,14:00,,,206,2,,155,2,,151,2,,,,,,,,,,,,,,,,,,,,5,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,15:00,,,196,2,,336,2,,111,2,,,,,,,,,,,,,,,,,,,,5,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,16:00,,,28,2,,27,2,,25,2,,,,,,,,,,,,,,,,,,,,3,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,08:00,,,19,2,,0,2,,19,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,68,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,09:00,,,83,2,,15,2,,80,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,10:00,,,178,2,,126,2,,137,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,62,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,11:00,,,163,2,,79,2,,132,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,12:00,,,82,2,,0,2,,82,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,13:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,58,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,14:00,,,115,2,,43,2,,100,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,59,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,15:00,,,79,2,,23,2,,73,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,60,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,16:00,,,16,2,,0,2,,16,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,60,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,61,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,65,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,08:00,,,45,2,,202,2,,32,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,09:00,,,174,2,,594,2,,52,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,10:00,,,300,2,,770,2,,55,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,11:00,,,383,2,,827,2,,59,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,12:00,,,430,2,,869,2,,63,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,51,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,13:00,,,411,2,,866,2,,58,2,,,,,,,,,,,,,,,,,,,,2,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,14:00,,,333,2,,815,2,,50,2,,,,,,,,,,,,,,,,,,,,3,,,,,,45,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,15:00,,,216,2,,692,2,,45,2,,,,,,,,,,,,,,,,,,,,3,,,,,,47,,,,,,,,,0,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,16:00,,,74,2,,276,2,,43,2,,,,,,,,,,,,,,,,,,,,3,,,,,,50,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,17:00,,,2,2,,4,2,,2,2,,,,,,,,,,,,,,,,,,,,2,,,,,,52,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,08:00,,,36,2,,90,2,,31,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,09:00,,,66,2,,35,2,,59,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,10:00,,,69,2,,5,2,,67,2,,,,,,,,,,,,,,,,,,,,2,,,,,,67,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,11:00,,,120,2,,14,2,,115,2,,,,,,,,,,,,,,,,,,,,2,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,12:00,,,80,2,,0,2,,80,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,13:00,,,115,2,,0,2,,115,2,,,,,,,,,,,,,,,,,,,,5,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,14:00,,,95,2,,0,2,,95,2,,,,,,,,,,,,,,,,,,,,4,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,15:00,,,42,2,,0,2,,42,2,,,,,,,,,,,,,,,,,,,,5,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,16:00,,,16,2,,0,2,,16,2,,,,,,,,,,,,,,,,,,,,4,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,08:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,09:00,,,30,2,,0,2,,30,2,,,,,,,,,,,,,,,,,,,,3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,10:00,,,61,2,,0,2,,61,2,,,,,,,,,,,,,,,,,,,,4,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,11:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,4,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,12:00,,,69,2,,0,2,,69,2,,,,,,,,,,,,,,,,,,,,4,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,13:00,,,84,2,,0,2,,84,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,14:00,,,65,2,,0,2,,65,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,15:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,16:00,,,18,2,,0,2,,18,2,,,,,,,,,,,,,,,,,,,,2,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,97,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,98,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+11/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+11/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,99,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,98,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,96,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,08:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,09:00,,,37,2,,0,2,,37,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,10:00,,,67,2,,0,2,,67,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,11:00,,,111,2,,10,2,,107,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,12:00,,,273,2,,190,2,,194,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,13:00,,,189,2,,77,2,,158,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,76,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,14:00,,,87,2,,0,2,,87,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,15:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,16:00,,,32,2,,4,2,,32,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+11/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,08:00,,,32,2,,125,2,,26,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,09:00,,,146,2,,405,2,,68,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,10:00,,,260,2,,528,2,,99,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,11:00,,,315,2,,506,2,,123,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,12:00,,,369,2,,561,2,,139,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,13:00,,,249,2,,279,2,,138,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,14:00,,,229,2,,280,2,,134,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,15:00,,,127,2,,122,2,,98,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,16:00,,,54,2,,126,2,,41,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,17:00,,,2,2,,5,2,,2,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,97,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,95,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,08:00,,,25,2,,60,2,,22,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,09:00,,,104,2,,152,2,,75,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,10:00,,,237,2,,414,2,,112,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,11:00,,,336,2,,616,2,,104,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,12:00,,,387,2,,729,2,,90,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,13:00,,,376,2,,746,2,,82,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,14:00,,,310,2,,740,2,,62,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,15:00,,,200,2,,603,2,,57,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,16:00,,,67,2,,224,2,,44,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,17:00,,,2,2,,7,2,,2,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,08:00,,,16,2,,1,2,,16,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,09:00,,,82,2,,49,2,,73,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,10:00,,,154,2,,104,2,,123,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,11:00,,,236,2,,205,2,,160,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,12:00,,,211,2,,69,2,,183,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,13:00,,,235,2,,128,2,,185,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,14:00,,,204,2,,179,2,,144,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,15:00,,,149,2,,198,2,,102,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,16:00,,,55,2,,72,2,,48,2,,,,,,,,,,,,,,,,,,,,0,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+11/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,08:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,1,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,09:00,,,60,2,,0,2,,60,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,10:00,,,103,2,,4,2,,102,2,,,,,,,,,,,,,,,,,,,,1,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,11:00,,,170,2,,66,2,,146,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,12:00,,,357,2,,501,2,,156,2,,,,,,,,,,,,,,,,,,,,1,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,13:00,,,357,2,,681,2,,92,2,,,,,,,,,,,,,,,,,,,,2,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,14:00,,,297,2,,671,2,,75,2,,,,,,,,,,,,,,,,,,,,2,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,15:00,,,201,2,,556,2,,71,2,,,,,,,,,,,,,,,,,,,,1,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,16:00,,,62,2,,164,2,,45,2,,,,,,,,,,,,,,,,,,,,0,,,,,,58,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,17:00,,,2,2,,5,2,,2,2,,,,,,,,,,,,,,,,,,,,1,,,,,,54,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/01/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,08:00,,,13,2,,2,2,,13,2,,,,,,,,,,,,,,,,,,,,1,,,,,,89,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,09:00,,,64,2,,22,2,,60,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,10:00,,,157,2,,110,2,,125,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,11:00,,,143,2,,14,2,,138,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,12:00,,,123,2,,5,2,,121,2,,,,,,,,,,,,,,,,,,,,4,,,,,,88,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,13:00,,,101,2,,0,2,,101,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,14:00,,,84,2,,0,2,,84,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,15:00,,,71,2,,2,2,,70,2,,,,,,,,,,,,,,,,,,,,5,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,16:00,,,35,2,,13,2,,34,2,,,,,,,,,,,,,,,,,,,,6,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/02/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/02/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/02/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/02/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,81,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,81,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,82,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,78,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,63,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,63,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,08:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,64,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,09:00,,,53,2,,0,2,,53,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,10:00,,,152,2,,195,2,,96,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,57,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,11:00,,,328,2,,566,2,,122,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,55,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,12:00,,,389,2,,776,2,,81,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,49,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,13:00,,,385,2,,837,2,,63,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,44,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,14:00,,,323,2,,796,2,,62,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,42,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,15:00,,,209,2,,617,2,,67,2,,,,,,,,,,,,,,,,,,,,0,,,,,,41,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,16:00,,,55,2,,131,2,,42,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,43,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,17:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/03/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,46,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,50,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,55,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,59,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,67,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,08:00,,,27,2,,166,2,,22,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,65,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,09:00,,,145,2,,516,2,,55,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,56,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,10:00,,,272,2,,743,2,,59,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,49,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,11:00,,,356,2,,813,2,,61,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,46,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,12:00,,,397,2,,838,2,,66,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,43,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,13:00,,,378,2,,805,2,,70,2,,,,,,,,,,,,,,,,,,,,0,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,14:00,,,296,2,,505,2,,132,2,,,,,,,,,,,,,,,,,,,,1,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,15:00,,,76,2,,41,2,,67,2,,,,,,,,,,,,,,,,,,,,1,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,16:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,1,,,,,,70,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/04/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,08:00,,,7,2,,0,2,,7,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,09:00,,,64,2,,11,2,,62,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,10:00,,,122,2,,30,2,,114,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,11:00,,,222,2,,148,2,,169,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,12:00,,,304,2,,303,2,,185,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,13:00,,,200,2,,105,2,,160,2,,,,,,,,,,,,,,,,,,,,0,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,14:00,,,218,2,,240,2,,140,2,,,,,,,,,,,,,,,,,,,,0,,,,,,57,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,15:00,,,117,2,,98,2,,95,2,,,,,,,,,,,,,,,,,,,,0,,,,,,60,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,16:00,,,24,2,,1,2,,24,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,72,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/05/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,78,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/05/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/05/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/05/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,66,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,65,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,72,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,80,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,87,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,93,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,08:00,,,11,2,,0,2,,11,2,,,,,,,,,,,,,,,,,,,,2,,,,,,93,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,09:00,,,81,2,,65,2,,70,2,,,,,,,,,,,,,,,,,,,,2,,,,,,93,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,10:00,,,125,2,,40,2,,114,2,,,,,,,,,,,,,,,,,,,,4,,,,,,94,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,11:00,,,209,2,,135,2,,161,2,,,,,,,,,,,,,,,,,,,,4,,,,,,94,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,12:00,,,299,2,,316,2,,176,2,,,,,,,,,,,,,,,,,,,,4,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,13:00,,,188,2,,109,2,,147,2,,,,,,,,,,,,,,,,,,,,6,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,14:00,,,165,2,,109,2,,130,2,,,,,,,,,,,,,,,,,,,,6,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,15:00,,,106,2,,56,2,,93,2,,,,,,,,,,,,,,,,,,,,7,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,16:00,,,43,2,,39,2,,39,2,,,,,,,,,,,,,,,,,,,,9,,,,,,94,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,9,,,,,,92,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,89,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/06/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,85,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/06/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,78,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/06/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/06/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,53,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,08:00,,,23,2,,125,2,,20,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,09:00,,,136,2,,480,2,,56,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,10:00,,,266,2,,703,2,,70,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,11:00,,,331,2,,624,2,,109,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,12:00,,,267,2,,259,2,,166,2,,,,,,,,,,,,,,,,,,,,0,,,,,,44,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,13:00,,,250,2,,230,2,,163,2,,,,,,,,,,,,,,,,,,,,0,,,,,,43,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,14:00,,,152,2,,82,2,,126,2,,,,,,,,,,,,,,,,,,,,0,,,,,,45,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,15:00,,,51,2,,0,2,,51,2,,,,,,,,,,,,,,,,,,,,0,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,16:00,,,14,2,,0,2,,14,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,49,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,51,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,52,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/07/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,54,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,56,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,57,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,08:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,09:00,,,42,2,,4,2,,41,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,10:00,,,99,2,,27,2,,92,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,11:00,,,112,2,,0,2,,112,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,12:00,,,159,2,,27,2,,149,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,13:00,,,200,2,,88,2,,167,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,14:00,,,93,2,,1,2,,93,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,15:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,16:00,,,10,2,,0,2,,10,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/08/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/08/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/08/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/08/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,08:00,,,9,2,,0,2,,9,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,09:00,,,60,2,,7,2,,59,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,10:00,,,91,2,,5,2,,90,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,11:00,,,117,2,,0,2,,117,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,12:00,,,125,2,,1,2,,125,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,13:00,,,135,2,,15,2,,129,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,14:00,,,209,2,,229,2,,136,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,15:00,,,119,2,,101,2,,96,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,16:00,,,34,2,,10,2,,33,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/09/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,76,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,08:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,09:00,,,53,2,,1,2,,53,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,10:00,,,113,2,,11,2,,110,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,76,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,11:00,,,151,2,,14,2,,146,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,12:00,,,187,2,,42,2,,171,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,13:00,,,220,2,,120,2,,175,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,14:00,,,182,2,,112,2,,146,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,15:00,,,68,2,,6,2,,67,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,16:00,,,23,2,,0,2,,23,2,,,,,,,,,,,,,,,,,,,,0,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/10/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,08:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,1,,,,,,88,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,09:00,,,49,2,,3,2,,48,2,,,,,,,,,,,,,,,,,,,,1,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,10:00,,,110,2,,27,2,,103,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,11:00,,,133,2,,14,2,,128,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,8,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,12:00,,,195,2,,57,2,,173,2,,,,,,,,,,,,,,,,,,,,2,,,,,,95,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,13:00,,,214,2,,105,2,,175,2,,,,,,,,,,,,,,,,,,,,4,,,,,,94,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,14:00,,,150,2,,44,2,,136,2,,,,,,,,,,,,,,,,,,,,5,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,15:00,,,94,2,,30,2,,87,2,,,,,,,,,,,,,,,,,,,,6,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,16:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,7,,,,,,93,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,8,,,,,,91,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,90,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,91,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,93,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,10,,,,,,87,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,76,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/11/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,71,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,65,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,60,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,59,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,58,,,,,,,,,7,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,58,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,08:00,,,15,2,,48,2,,14,2,,,,,,,,,,,,,,,,,,,,2,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,09:00,,,104,2,,327,2,,53,2,,,,,,,,,,,,,,,,,,,,2,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,10:00,,,214,2,,544,2,,68,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,11:00,,,313,2,,686,2,,76,2,,,,,,,,,,,,,,,,,,,,4,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,12:00,,,363,2,,766,2,,71,2,,,,,,,,,,,,,,,,,,,,4,,,,,,48,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,13:00,,,363,2,,804,2,,65,2,,,,,,,,,,,,,,,,,,,,6,,,,,,41,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,14:00,,,291,2,,729,2,,60,2,,,,,,,,,,,,,,,,,,,,6,,,,,,38,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,15:00,,,180,2,,569,2,,53,2,,,,,,,,,,,,,,,,,,,,6,,,,,,37,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,16:00,,,63,2,,236,2,,41,2,,,,,,,,,,,,,,,,,,,,6,,,,,,39,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,17:00,,,2,2,,6,2,,2,2,,,,,,,,,,,,,,,,,,,,5,,,,,,44,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,50,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/12/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/12/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/12/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/12/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,60,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,61,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,62,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,08:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,3,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,09:00,,,34,2,,9,2,,33,2,,,,,,,,,,,,,,,,,,,,3,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,10:00,,,109,2,,67,2,,91,2,,,,,,,,,,,,,,,,,,,,5,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,11:00,,,101,2,,0,2,,101,2,,,,,,,,,,,,,,,,,,,,5,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,12:00,,,95,2,,0,2,,95,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,13:00,,,136,2,,59,2,,114,2,,,,,,,,,,,,,,,,,,,,8,,,,,,53,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,14:00,,,232,2,,340,2,,124,2,,,,,,,,,,,,,,,,,,,,9,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,15:00,,,200,2,,579,2,,71,2,,,,,,,,,,,,,,,,,,,,9,,,,,,51,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,16:00,,,73,2,,400,2,,35,2,,,,,,,,,,,,,,,,,,,,9,,,,,,52,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,17:00,,,2,2,,21,2,,2,2,,,,,,,,,,,,,,,,,,,,8,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,61,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/13/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,64,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,67,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,72,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,08:00,,,17,2,,122,2,,16,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,09:00,,,122,2,,510,2,,45,2,,,,,,,,,,,,,,,,,,,,2,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,10:00,,,249,2,,640,2,,79,2,,,,,,,,,,,,,,,,,,,,3,,,,,,59,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,11:00,,,267,2,,487,2,,100,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,12:00,,,372,2,,710,2,,104,2,,,,,,,,,,,,,,,,,,,,3,,,,,,52,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,13:00,,,373,2,,826,2,,68,2,,,,,,,,,,,,,,,,,,,,3,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,14:00,,,314,2,,797,2,,62,2,,,,,,,,,,,,,,,,,,,,3,,,,,,46,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,15:00,,,200,2,,676,2,,50,2,,,,,,,,,,,,,,,,,,,,3,,,,,,47,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,16:00,,,73,2,,411,2,,34,2,,,,,,,,,,,,,,,,,,,,2,,,,,,48,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,17:00,,,2,2,,22,2,,2,2,,,,,,,,,,,,,,,,,,,,2,,,,,,55,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,64,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,66,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/14/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,77,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,76,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,08:00,,,13,2,,53,2,,13,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,09:00,,,104,2,,327,2,,55,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,10:00,,,235,2,,601,2,,76,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,11:00,,,303,2,,632,2,,87,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,53,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,12:00,,,285,2,,358,2,,150,2,,,,,,,,,,,,,,,,,,,,0,,,,,,47,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,13:00,,,189,2,,82,2,,159,2,,,,,,,,,,,,,,,,,,,,2,,,,,,42,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,14:00,,,152,2,,73,2,,129,2,,,,,,,,,,,,,,,,,,,,2,,,,,,41,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,15:00,,,55,2,,5,2,,54,2,,,,,,,,,,,,,,,,,,,,3,,,,,,42,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,16:00,,,13,2,,0,2,,13,2,,,,,,,,,,,,,,,,,,,,3,,,,,,45,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,64,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,74,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,85,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/15/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,96,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,96,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,96,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,95,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,5,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,08:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,4,,,,,,96,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,09:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,5,,,,,,95,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,10:00,,,65,2,,0,2,,65,2,,,,,,,,,,,,,,,,,,,,6,,,,,,96,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,11:00,,,192,2,,214,2,,119,2,,,,,,,,,,,,,,,,,,,,5,,,,,,97,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,12:00,,,197,2,,144,2,,143,2,,,,,,,,,,,,,,,,,,,,6,,,,,,93,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,13:00,,,290,2,,351,2,,161,2,,,,,,,,,,,,,,,,,,,,9,,,,,,85,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,14:00,,,234,2,,315,2,,135,2,,,,,,,,,,,,,,,,,,,,10,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,15:00,,,137,2,,214,2,,89,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,16:00,,,31,2,,13,2,,30,2,,,,,,,,,,,,,,,,,,,,12,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,11,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,11,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/16/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,68,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,13,,,,,,59,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,14,,,,,,48,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,12,,,,,,44,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,9,,,,,,47,,,,,,,,,7,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,8,,,,,,52,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,6,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,6,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,08:00,,,15,2,,94,2,,15,2,,,,,,,,,,,,,,,,,,,,7,,,,,,55,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,09:00,,,118,2,,470,2,,50,2,,,,,,,,,,,,,,,,,,,,7,,,,,,54,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,10:00,,,247,2,,722,2,,59,2,,,,,,,,,,,,,,,,,,,,7,,,,,,52,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,11:00,,,334,2,,809,2,,60,2,,,,,,,,,,,,,,,,,,,,7,,,,,,51,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,12:00,,,376,2,,841,2,,60,2,,,,,,,,,,,,,,,,,,,,7,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,13:00,,,368,2,,840,2,,59,2,,,,,,,,,,,,,,,,,,,,8,,,,,,48,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,14:00,,,311,2,,801,2,,58,2,,,,,,,,,,,,,,,,,,,,8,,,,,,47,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,15:00,,,201,2,,671,2,,52,2,,,,,,,,,,,,,,,,,,,,8,,,,,,49,,,,,,,,,5,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,16:00,,,74,2,,393,2,,36,2,,,,,,,,,,,,,,,,,,,,6,,,,,,51,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,17:00,,,2,2,,20,2,,2,2,,,,,,,,,,,,,,,,,,,,6,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,4,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,57,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/17/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,56,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,58,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,60,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,66,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,69,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,08:00,,,9,2,,2,2,,9,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,09:00,,,44,2,,16,2,,42,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,65,,,,,,,,,3,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,10:00,,,72,2,,0,2,,72,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,11:00,,,62,2,,0,2,,62,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,12:00,,,74,2,,0,2,,74,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,65,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,13:00,,,67,2,,0,2,,67,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,68,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,14:00,,,57,2,,0,2,,57,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,15:00,,,38,2,,0,2,,38,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,16:00,,,12,2,,0,2,,12,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,17:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.16,,,,,,
+12/18/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,97,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/18/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/18/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,98,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/18/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,96,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,94,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,93,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,08:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,09:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,10:00,,,92,2,,4,2,,91,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,11:00,,,141,2,,14,2,,136,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,12:00,,,159,2,,17,2,,153,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,13:00,,,175,2,,42,2,,160,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,14:00,,,173,2,,152,2,,125,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,15:00,,,165,2,,302,2,,98,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,77,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,16:00,,,58,2,,188,2,,40,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,75,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,17:00,,,2,2,,9,2,,2,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,74,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,77,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,78,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/19/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,78,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,80,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,08:00,,,8,2,,0,2,,8,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,09:00,,,78,2,,170,2,,54,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,10:00,,,193,2,,368,2,,98,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,11:00,,,227,2,,278,2,,133,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,12:00,,,193,2,,81,2,,163,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,75,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,13:00,,,189,2,,74,2,,162,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,14:00,,,152,2,,53,2,,135,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,15:00,,,99,2,,36,2,,91,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,16:00,,,43,2,,42,2,,39,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,17:00,,,1,2,,2,2,,1,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,71,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,75,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,73,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/20/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,69,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,68,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,08:00,,,6,2,,0,2,,6,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,09:00,,,55,2,,16,2,,53,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,10:00,,,134,2,,90,2,,111,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,11:00,,,222,2,,236,2,,143,2,,,,,,,,,,,,,,,,,,,,0,,,,,,74,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,12:00,,,274,2,,336,2,,148,2,,,,,,,,,,,,,,,,,,,,0,,,,,,67,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,13:00,,,350,2,,646,2,,113,2,,,,,,,,,,,,,,,,,,,,1,,,,,,62,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,14:00,,,287,2,,693,2,,68,2,,,,,,,,,,,,,,,,,,,,1,,,,,,61,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,15:00,,,179,2,,539,2,,58,2,,,,,,,,,,,,,,,,,,,,1,,,,,,63,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,16:00,,,64,2,,236,2,,41,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,17:00,,,2,2,,7,2,,2,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/21/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,81,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,83,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,08:00,,,9,2,,8,2,,9,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,09:00,,,76,2,,107,2,,61,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,10:00,,,180,2,,247,2,,117,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,11:00,,,218,2,,193,2,,153,2,,,,,,,,,,,,,,,,,,,,0,,,,,,80,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,12:00,,,170,2,,37,2,,156,2,,,,,,,,,,,,,,,,,,,,0,,,,,,77,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,13:00,,,121,2,,2,2,,120,2,,,,,,,,,,,,,,,,,,,,1,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,14:00,,,92,2,,0,2,,92,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,15:00,,,109,2,,104,2,,86,2,,,,,,,,,,,,,,,,,,,,1,,,,,,66,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,16:00,,,60,2,,115,2,,48,2,,,,,,,,,,,,,,,,,,,,0,,,,,,62,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,17:00,,,2,2,,8,2,,2,2,,,,,,,,,,,,,,,,,,,,0,,,,,,65,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,67,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/22/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,67,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,68,,,,,,,,,6,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,69,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,70,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,71,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,72,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,73,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,08:00,,,10,2,,17,2,,10,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,74,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,09:00,,,98,2,,376,2,,46,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,71,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,10:00,,,221,2,,678,2,,48,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,68,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,11:00,,,320,2,,800,2,,52,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,67,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,12:00,,,391,2,,857,2,,71,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,63,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,13:00,,,384,2,,838,2,,76,2,,,,,,,,,,,,,,,,,,,,-9,,,,,,58,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,14:00,,,295,2,,734,2,,62,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,55,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,15:00,,,196,2,,597,2,,61,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,54,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,16:00,,,67,2,,209,2,,46,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,57,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,17:00,,,2,2,,8,2,,2,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,64,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,71,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,72,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-12,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/23/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-15,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-13,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,82,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,08:00,,,7,2,,4,2,,7,2,,,,,,,,,,,,,,,,,,,,-11,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,09:00,,,59,2,,42,2,,53,2,,,,,,,,,,,,,,,,,,,,-10,,,,,,77,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,10:00,,,124,2,,60,2,,109,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,11:00,,,222,2,,217,2,,149,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,12:00,,,340,2,,482,2,,160,2,,,,,,,,,,,,,,,,,,,,-8,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,13:00,,,264,2,,267,2,,166,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,69,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,14:00,,,199,2,,143,2,,154,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,15:00,,,127,2,,112,2,,102,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,16:00,,,50,2,,61,2,,44,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,70,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,71,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,79,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,80,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/24/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,08:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,09:00,,,27,2,,0,2,,27,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,10:00,,,66,2,,0,2,,66,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,11:00,,,102,2,,0,2,,102,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,12:00,,,132,2,,2,2,,131,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,13:00,,,153,2,,30,2,,142,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,14:00,,,156,2,,78,2,,131,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,15:00,,,88,2,,11,2,,86,2,,,,,,,,,,,,,,,,,,,,0,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,16:00,,,32,2,,1,2,,32,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,97,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,99,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,99,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,96,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,93,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/25/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,92,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,91,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,89,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,08:00,,,5,2,,0,2,,5,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,09:00,,,51,2,,10,2,,50,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,10:00,,,115,2,,36,2,,106,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,11:00,,,150,2,,26,2,,141,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,12:00,,,167,2,,18,2,,160,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,13:00,,,157,2,,14,2,,152,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,14:00,,,132,2,,9,2,,129,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,15:00,,,84,2,,4,2,,83,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,16:00,,,24,2,,0,2,,24,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,86,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,82,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/26/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,79,,,,,,,,,5,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,79,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,80,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,84,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,88,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,08:00,,,3,2,,0,2,,3,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,86,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,09:00,,,39,2,,0,2,,39,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,10:00,,,89,2,,4,2,,88,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,11:00,,,169,2,,79,2,,142,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,12:00,,,228,2,,162,2,,167,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,13:00,,,161,2,,29,2,,150,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,14:00,,,134,2,,16,2,,129,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,15:00,,,106,2,,60,2,,92,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,16:00,,,48,2,,58,2,,42,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,82,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-6,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-7,,,,,,85,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,83,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/27/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-5,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,81,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-4,,,,,,83,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-3,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-2,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,89,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,08:00,,,5,2,,1,2,,5,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,4,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,09:00,,,52,2,,16,2,,50,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,87,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,10:00,,,116,2,,46,2,,104,2,,,,,,,,,,,,,,,,,,,,1,,,,,,85,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,11:00,,,140,2,,27,2,,131,2,,,,,,,,,,,,,,,,,,,,1,,,,,,82,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,12:00,,,99,2,,3,2,,98,2,,,,,,,,,,,,,,,,,,,,1,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,13:00,,,81,2,,0,2,,81,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,3,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,14:00,,,71,2,,0,2,,71,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,15:00,,,48,2,,0,2,,48,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,16:00,,,26,2,,0,2,,26,2,,,,,,,,,,,,,,,,,,,,0,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,17:00,,,1,2,,0,2,,1,2,,,,,,,,,,,,,,,,,,,,0,,,,,,76,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,75,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,73,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,72,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,74,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/28/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,84,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,08:00,,,6,2,,1,2,,6,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,09:00,,,69,2,,84,2,,58,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,10:00,,,116,2,,49,2,,104,2,,,,,,,,,,,,,,,,,,,,0,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,11:00,,,134,2,,12,2,,130,2,,,,,,,,,,,,,,,,,,,,0,,,,,,85,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,12:00,,,172,2,,36,2,,158,2,,,,,,,,,,,,,,,,,,,,0,,,,,,83,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,13:00,,,184,2,,46,2,,167,2,,,,,,,,,,,,,,,,,,,,1,,,,,,81,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,14:00,,,164,2,,64,2,,143,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,15:00,,,120,2,,84,2,,100,2,,,,,,,,,,,,,,,,,,,,1,,,,,,78,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,16:00,,,60,2,,85,2,,51,2,,,,,,,,,,,,,,,,,,,,1,,,,,,79,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,17:00,,,2,2,,1,2,,2,2,,,,,,,,,,,,,,,,,,,,0,,,,,,84,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,-1,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,0,,,,,,88,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/29/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,08:00,,,4,2,,0,2,,4,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,09:00,,,46,2,,8,2,,45,2,,,,,,,,,,,,,,,,,,,,0,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,10:00,,,149,2,,136,2,,114,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,11:00,,,181,2,,80,2,,154,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,12:00,,,193,2,,50,2,,174,2,,,,,,,,,,,,,,,,,,,,1,,,,,,87,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,13:00,,,195,2,,62,2,,172,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,14:00,,,158,2,,60,2,,138,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,15:00,,,133,2,,125,2,,104,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,16:00,,,51,2,,49,2,,46,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,17:00,,,2,2,,5,2,,2,2,,,,,,,,,,,,,,,,,,,,2,,,,,,89,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,91,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/30/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,01:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,02:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,03:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,04:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,05:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,06:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,94,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,07:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,1,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,08:00,,,6,2,,3,2,,6,2,,,,,,,,,,,,,,,,,,,,1,,,,,,95,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,09:00,,,63,2,,41,2,,58,2,,,,,,,,,,,,,,,,,,,,1,,,,,,93,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,10:00,,,139,2,,87,2,,117,2,,,,,,,,,,,,,,,,,,,,1,,,,,,92,,,,,,,,,0,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,11:00,,,188,2,,83,2,,160,2,,,,,,,,,,,,,,,,,,,,1,,,,,,90,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,12:00,,,187,2,,50,2,,168,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,1,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,13:00,,,213,2,,104,2,,174,2,,,,,,,,,,,,,,,,,,,,3,,,,,,86,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,14:00,,,98,2,,7,2,,96,2,,,,,,,,,,,,,,,,,,,,2,,,,,,87,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,15:00,,,70,2,,1,2,,70,2,,,,,,,,,,,,,,,,,,,,2,,,,,,88,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,16:00,,,41,2,,6,2,,40,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,17:00,,,2,2,,0,2,,2,2,,,,,,,,,,,,,,,,,,,,2,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,18:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,19:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,90,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,20:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,91,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,21:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,92,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,22:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,3,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+12/31/2021,23:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,94,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
+01/01/2022,00:00,,,0,2,,0,2,,0,2,,,,,,,,,,,,,,,,,,,,2,,,,,,95,,,,,,,,,2,,,,,,,,,,,,,,,0.6,,,,,,
diff --git a/pvlib/data/astm_g173_am15g.csv b/pvlib/data/astm_g173_am15g.csv
new file mode 100644
index 0000000000..893c04dd30
--- /dev/null
+++ b/pvlib/data/astm_g173_am15g.csv
@@ -0,0 +1,2003 @@
+wavelength [nm],am15g [(W/m^2)/nm]
+280.0,4.7309e-23
+280.5,1.2307e-21
+281.0,5.6895e-21
+281.5,1.5662e-19
+282.0,1.1946e-18
+282.5,4.5436e-18
+283.0,1.8452e-17
+283.5,3.536e-17
+284.0,7.267e-16
+284.5,2.4856e-15
+285.0,8.0142e-15
+285.5,4.2613e-14
+286.0,1.3684e-13
+286.5,8.3823e-13
+287.0,2.7367e-12
+287.5,1.0903e-11
+288.0,6.2337e-11
+288.5,1.7162e-10
+289.0,5.6265e-10
+289.5,2.0749e-09
+290.0,6.0168e-09
+290.5,1.3783e-08
+291.0,3.5052e-08
+291.5,1.0913e-07
+292.0,2.683e-07
+292.5,4.2685e-07
+293.0,8.6466e-07
+293.5,2.2707e-06
+294.0,4.1744e-06
+294.5,6.5911e-06
+295.0,1.229e-05
+295.5,2.7826e-05
+296.0,4.7904e-05
+296.5,7.1345e-05
+297.0,9.68e-05
+297.5,0.00018608
+298.0,0.00028988
+298.5,0.00035789
+299.0,0.00049211
+299.5,0.00086068
+300.0,0.0010205
+300.5,0.001245
+301.0,0.00193
+301.5,0.0026914
+302.0,0.0029209
+302.5,0.004284
+303.0,0.0070945
+303.5,0.0089795
+304.0,0.0094701
+304.5,0.011953
+305.0,0.016463
+305.5,0.018719
+306.0,0.018577
+306.5,0.021108
+307.0,0.027849
+307.5,0.035635
+308.0,0.037837
+308.5,0.04143
+309.0,0.040534
+309.5,0.043306
+310.0,0.050939
+310.5,0.06554
+311.0,0.082922
+311.5,0.08408
+312.0,0.093376
+312.5,0.098984
+313.0,0.10733
+313.5,0.10757
+314.0,0.11969
+314.5,0.1306
+315.0,0.13625
+315.5,0.11838
+316.0,0.12348
+316.5,0.15036
+317.0,0.17158
+317.5,0.18245
+318.0,0.17594
+318.5,0.18591
+319.0,0.2047
+319.5,0.19589
+320.0,0.20527
+320.5,0.24525
+321.0,0.25024
+321.5,0.23843
+322.0,0.22203
+322.5,0.21709
+323.0,0.21226
+323.5,0.24861
+324.0,0.27537
+324.5,0.28321
+325.0,0.27894
+325.5,0.32436
+326.0,0.3812
+326.5,0.40722
+327.0,0.39806
+327.5,0.38465
+328.0,0.35116
+328.5,0.37164
+329.0,0.42235
+329.5,0.46878
+330.0,0.47139
+330.5,0.428
+331.0,0.40262
+331.5,0.41806
+332.0,0.43623
+332.5,0.43919
+333.0,0.42944
+333.5,0.40724
+334.0,0.41497
+334.5,0.44509
+335.0,0.46388
+335.5,0.45313
+336.0,0.41519
+336.5,0.38214
+337.0,0.3738
+337.5,0.40051
+338.0,0.43411
+338.5,0.45527
+339.0,0.46355
+339.5,0.47446
+340.0,0.5018
+340.5,0.50071
+341.0,0.47139
+341.5,0.46935
+342.0,0.48934
+342.5,0.50767
+343.0,0.51489
+343.5,0.48609
+344.0,0.41843
+344.5,0.40307
+345.0,0.45898
+345.5,0.48932
+346.0,0.47778
+346.5,0.48657
+347.0,0.49404
+347.5,0.47674
+348.0,0.47511
+348.5,0.48336
+349.0,0.46564
+349.5,0.47805
+350.0,0.52798
+350.5,0.56741
+351.0,0.55172
+351.5,0.53022
+352.0,0.51791
+352.5,0.48962
+353.0,0.5204
+353.5,0.57228
+354.0,0.60498
+354.5,0.61156
+355.0,0.6114
+355.5,0.59028
+356.0,0.55387
+356.5,0.51942
+357.0,0.45673
+357.5,0.46215
+358.0,0.43006
+358.5,0.39926
+359.0,0.46953
+359.5,0.56549
+360.0,0.59817
+360.5,0.56531
+361.0,0.52024
+361.5,0.50956
+362.0,0.5342
+362.5,0.5851
+363.0,0.60191
+363.5,0.58541
+364.0,0.60628
+364.5,0.60058
+365.0,0.62359
+365.5,0.68628
+366.0,0.73532
+366.5,0.73658
+367.0,0.72285
+367.5,0.70914
+368.0,0.66759
+368.5,0.6631
+369.0,0.69315
+369.5,0.74469
+370.0,0.75507
+370.5,0.68261
+371.0,0.69338
+371.5,0.72051
+372.0,0.67444
+372.5,0.64253
+373.0,0.61886
+373.5,0.55786
+374.0,0.5564
+374.5,0.55227
+375.0,0.5893
+375.5,0.65162
+376.0,0.6748
+376.5,0.6639
+377.0,0.71225
+377.5,0.79455
+378.0,0.85595
+378.5,0.83418
+379.0,0.74389
+379.5,0.66683
+380.0,0.70077
+380.5,0.75075
+381.0,0.76383
+381.5,0.68837
+382.0,0.58678
+382.5,0.50762
+383.0,0.45499
+383.5,0.44049
+384.0,0.50968
+384.5,0.61359
+385.0,0.67355
+385.5,0.64363
+386.0,0.621
+386.5,0.6457
+387.0,0.65147
+387.5,0.64204
+388.0,0.63582
+388.5,0.63136
+389.0,0.68543
+389.5,0.7597
+390.0,0.79699
+390.5,0.80371
+391.0,0.85138
+391.5,0.86344
+392.0,0.79493
+392.5,0.66257
+393.0,0.47975
+393.5,0.38152
+394.0,0.49567
+394.5,0.68385
+395.0,0.80772
+395.5,0.86038
+396.0,0.75655
+396.5,0.55017
+397.0,0.42619
+397.5,0.62945
+398.0,0.85249
+398.5,1.0069
+399.0,1.0693
+399.5,1.1021
+400.0,1.1141
+401.0,1.1603
+402.0,1.2061
+403.0,1.1613
+404.0,1.1801
+405.0,1.1511
+406.0,1.1227
+407.0,1.1026
+408.0,1.1514
+409.0,1.2299
+410.0,1.0485
+411.0,1.1738
+412.0,1.2478
+413.0,1.1971
+414.0,1.1842
+415.0,1.2258
+416.0,1.2624
+417.0,1.2312
+418.0,1.1777
+419.0,1.2258
+420.0,1.1232
+421.0,1.2757
+422.0,1.2583
+423.0,1.2184
+424.0,1.2117
+425.0,1.2488
+426.0,1.2135
+427.0,1.1724
+428.0,1.1839
+429.0,1.0963
+430.0,0.87462
+431.0,0.79394
+432.0,1.3207
+433.0,1.2288
+434.0,1.1352
+435.0,1.2452
+436.0,1.3659
+437.0,1.3943
+438.0,1.2238
+439.0,1.1775
+440.0,1.3499
+441.0,1.3313
+442.0,1.425
+443.0,1.4453
+444.0,1.4084
+445.0,1.4619
+446.0,1.3108
+447.0,1.4903
+448.0,1.5081
+449.0,1.5045
+450.0,1.5595
+451.0,1.6173
+452.0,1.5482
+453.0,1.4297
+454.0,1.5335
+455.0,1.5224
+456.0,1.5724
+457.0,1.5854
+458.0,1.5514
+459.0,1.5391
+460.0,1.5291
+461.0,1.5827
+462.0,1.5975
+463.0,1.6031
+464.0,1.5544
+465.0,1.535
+466.0,1.5673
+467.0,1.4973
+468.0,1.5619
+469.0,1.5682
+470.0,1.5077
+471.0,1.5331
+472.0,1.6126
+473.0,1.5499
+474.0,1.5671
+475.0,1.6185
+476.0,1.5631
+477.0,1.5724
+478.0,1.623
+479.0,1.5916
+480.0,1.6181
+481.0,1.6177
+482.0,1.6236
+483.0,1.6038
+484.0,1.5734
+485.0,1.5683
+486.0,1.2716
+487.0,1.4241
+488.0,1.5413
+489.0,1.4519
+490.0,1.6224
+491.0,1.5595
+492.0,1.4869
+493.0,1.5903
+494.0,1.5525
+495.0,1.6485
+496.0,1.5676
+497.0,1.5944
+498.0,1.5509
+499.0,1.5507
+500.0,1.5451
+501.0,1.4978
+502.0,1.4966
+503.0,1.5653
+504.0,1.4587
+505.0,1.5635
+506.0,1.6264
+507.0,1.556
+508.0,1.5165
+509.0,1.5893
+510.0,1.5481
+511.0,1.5769
+512.0,1.6186
+513.0,1.5206
+514.0,1.4885
+515.0,1.5314
+516.0,1.5455
+517.0,1.2594
+518.0,1.4403
+519.0,1.3957
+520.0,1.5236
+521.0,1.5346
+522.0,1.569
+523.0,1.4789
+524.0,1.5905
+525.0,1.5781
+526.0,1.5341
+527.0,1.3417
+528.0,1.5357
+529.0,1.6071
+530.0,1.5446
+531.0,1.6292
+532.0,1.5998
+533.0,1.4286
+534.0,1.5302
+535.0,1.5535
+536.0,1.6199
+537.0,1.4989
+538.0,1.5738
+539.0,1.5352
+540.0,1.4825
+541.0,1.4251
+542.0,1.5511
+543.0,1.5256
+544.0,1.5792
+545.0,1.5435
+546.0,1.5291
+547.0,1.549
+548.0,1.5049
+549.0,1.552
+550.0,1.5399
+551.0,1.5382
+552.0,1.5697
+553.0,1.525
+554.0,1.5549
+555.0,1.5634
+556.0,1.5366
+557.0,1.4988
+558.0,1.531
+559.0,1.4483
+560.0,1.474
+561.0,1.5595
+562.0,1.4847
+563.0,1.5408
+564.0,1.5106
+565.0,1.5201
+566.0,1.4374
+567.0,1.532
+568.0,1.518
+569.0,1.4807
+570.0,1.4816
+571.0,1.4331
+572.0,1.5134
+573.0,1.5198
+574.0,1.5119
+575.0,1.4777
+576.0,1.4654
+577.0,1.5023
+578.0,1.456
+579.0,1.477
+580.0,1.502
+581.0,1.5089
+582.0,1.532
+583.0,1.5479
+584.0,1.5448
+585.0,1.5324
+586.0,1.4953
+587.0,1.5281
+588.0,1.4934
+589.0,1.2894
+590.0,1.3709
+591.0,1.4662
+592.0,1.4354
+593.0,1.4561
+594.0,1.4491
+595.0,1.4308
+596.0,1.4745
+597.0,1.4788
+598.0,1.4607
+599.0,1.4606
+600.0,1.4753
+601.0,1.4579
+602.0,1.436
+603.0,1.4664
+604.0,1.4921
+605.0,1.4895
+606.0,1.4822
+607.0,1.4911
+608.0,1.4862
+609.0,1.4749
+610.0,1.4686
+611.0,1.4611
+612.0,1.4831
+613.0,1.4621
+614.0,1.4176
+615.0,1.4697
+616.0,1.431
+617.0,1.4128
+618.0,1.4664
+619.0,1.4733
+620.0,1.4739
+621.0,1.4802
+622.0,1.4269
+623.0,1.4165
+624.0,1.4118
+625.0,1.4026
+626.0,1.4012
+627.0,1.4417
+628.0,1.3631
+629.0,1.4114
+630.0,1.3924
+631.0,1.4161
+632.0,1.3638
+633.0,1.4508
+634.0,1.4284
+635.0,1.4458
+636.0,1.4128
+637.0,1.461
+638.0,1.4707
+639.0,1.4646
+640.0,1.434
+641.0,1.4348
+642.0,1.4376
+643.0,1.4525
+644.0,1.4462
+645.0,1.4567
+646.0,1.415
+647.0,1.4086
+648.0,1.3952
+649.0,1.3519
+650.0,1.3594
+651.0,1.4447
+652.0,1.3871
+653.0,1.4311
+654.0,1.4153
+655.0,1.3499
+656.0,1.1851
+657.0,1.2393
+658.0,1.3855
+659.0,1.3905
+660.0,1.3992
+661.0,1.3933
+662.0,1.3819
+663.0,1.3844
+664.0,1.3967
+665.0,1.4214
+666.0,1.4203
+667.0,1.4102
+668.0,1.415
+669.0,1.4394
+670.0,1.4196
+671.0,1.4169
+672.0,1.3972
+673.0,1.4094
+674.0,1.4074
+675.0,1.3958
+676.0,1.412
+677.0,1.3991
+678.0,1.4066
+679.0,1.3947
+680.0,1.3969
+681.0,1.3915
+682.0,1.3981
+683.0,1.383
+684.0,1.3739
+685.0,1.3748
+686.0,1.3438
+687.0,0.96824
+688.0,1.1206
+689.0,1.1278
+690.0,1.1821
+691.0,1.2333
+692.0,1.2689
+693.0,1.2609
+694.0,1.2464
+695.0,1.2714
+696.0,1.2684
+697.0,1.3403
+698.0,1.3192
+699.0,1.2918
+700.0,1.2823
+701.0,1.2659
+702.0,1.2674
+703.0,1.2747
+704.0,1.3078
+705.0,1.3214
+706.0,1.3144
+707.0,1.309
+708.0,1.3048
+709.0,1.3095
+710.0,1.3175
+711.0,1.3155
+712.0,1.3071
+713.0,1.2918
+714.0,1.3029
+715.0,1.2587
+716.0,1.2716
+717.0,1.1071
+718.0,1.0296
+719.0,0.92318
+720.0,0.9855
+721.0,1.0861
+722.0,1.2407
+723.0,1.1444
+724.0,1.0555
+725.0,1.038
+726.0,1.0813
+727.0,1.085
+728.0,1.04
+729.0,1.0466
+730.0,1.1285
+731.0,1.0703
+732.0,1.1534
+733.0,1.1962
+734.0,1.2357
+735.0,1.2178
+736.0,1.2059
+737.0,1.2039
+738.0,1.2269
+739.0,1.1905
+740.0,1.2195
+741.0,1.2148
+742.0,1.2153
+743.0,1.2405
+744.0,1.2503
+745.0,1.2497
+746.0,1.247
+747.0,1.2477
+748.0,1.2401
+749.0,1.2357
+750.0,1.2341
+751.0,1.2286
+752.0,1.233
+753.0,1.2266
+754.0,1.242
+755.0,1.2383
+756.0,1.2232
+757.0,1.2221
+758.0,1.2295
+759.0,1.1945
+760.0,0.26604
+761.0,0.15396
+762.0,0.68766
+763.0,0.37952
+764.0,0.53878
+765.0,0.68601
+766.0,0.81461
+767.0,0.97417
+768.0,1.1138
+769.0,1.1278
+770.0,1.1608
+771.0,1.1686
+772.0,1.1778
+773.0,1.1771
+774.0,1.1771
+775.0,1.1771
+776.0,1.1798
+777.0,1.1727
+778.0,1.1713
+779.0,1.1765
+780.0,1.1636
+781.0,1.1607
+782.0,1.1662
+783.0,1.1614
+784.0,1.1536
+785.0,1.1586
+786.0,1.1592
+787.0,1.145
+788.0,1.1305
+789.0,1.1257
+790.0,1.091
+791.0,1.1058
+792.0,1.0953
+793.0,1.0875
+794.0,1.0972
+795.0,1.0932
+796.0,1.0742
+797.0,1.0913
+798.0,1.1121
+799.0,1.0905
+800.0,1.0725
+801.0,1.0843
+802.0,1.0856
+803.0,1.0657
+804.0,1.0782
+805.0,1.0545
+806.0,1.0974
+807.0,1.0859
+808.0,1.0821
+809.0,1.0548
+810.0,1.0559
+811.0,1.0533
+812.0,1.0268
+813.0,1.0086
+814.0,0.90356
+815.0,0.89523
+816.0,0.83216
+817.0,0.85183
+818.0,0.82259
+819.0,0.90519
+820.0,0.86188
+821.0,0.99764
+822.0,0.95157
+823.0,0.67271
+824.0,0.93506
+825.0,0.96935
+826.0,0.93381
+827.0,0.98465
+828.0,0.84979
+829.0,0.9293
+830.0,0.91601
+831.0,0.92392
+832.0,0.89426
+833.0,0.9565
+834.0,0.93412
+835.0,1.0032
+836.0,0.97234
+837.0,1.0092
+838.0,0.99901
+839.0,1.0013
+840.0,1.0157
+841.0,1.0101
+842.0,0.99703
+843.0,1.0053
+844.0,0.98631
+845.0,1.0165
+846.0,1.0187
+847.0,0.9917
+848.0,0.99217
+849.0,0.98596
+850.0,0.89372
+851.0,0.97493
+852.0,0.96927
+853.0,0.96486
+854.0,0.85112
+855.0,0.913
+856.0,0.97317
+857.0,0.99166
+858.0,0.99196
+859.0,0.99171
+860.0,0.98816
+861.0,0.98679
+862.0,0.99449
+863.0,1.0005
+864.0,0.97916
+865.0,0.96324
+866.0,0.849
+867.0,0.91546
+868.0,0.9592
+869.0,0.94956
+870.0,0.96755
+871.0,0.95387
+872.0,0.96686
+873.0,0.95721
+874.0,0.94042
+875.0,0.92687
+876.0,0.95277
+877.0,0.95615
+878.0,0.95237
+879.0,0.93656
+880.0,0.93957
+881.0,0.90861
+882.0,0.93245
+883.0,0.92927
+884.0,0.93305
+885.0,0.94423
+886.0,0.90752
+887.0,0.91062
+888.0,0.92228
+889.0,0.93455
+890.0,0.92393
+891.0,0.92584
+892.0,0.90881
+893.0,0.87327
+894.0,0.8513
+895.0,0.81357
+896.0,0.76253
+897.0,0.66566
+898.0,0.7178
+899.0,0.54871
+900.0,0.7426
+901.0,0.59933
+902.0,0.66791
+903.0,0.68889
+904.0,0.84457
+905.0,0.81709
+906.0,0.77558
+907.0,0.63854
+908.0,0.65217
+909.0,0.70431
+910.0,0.62467
+911.0,0.66808
+912.0,0.68893
+913.0,0.62834
+914.0,0.62649
+915.0,0.67836
+916.0,0.57646
+917.0,0.73017
+918.0,0.59271
+919.0,0.73877
+920.0,0.74414
+921.0,0.78049
+922.0,0.70026
+923.0,0.74504
+924.0,0.7215
+925.0,0.7111
+926.0,0.70331
+927.0,0.78742
+928.0,0.58968
+929.0,0.55127
+930.0,0.4321
+931.0,0.40921
+932.0,0.30086
+933.0,0.24841
+934.0,0.1438
+935.0,0.25084
+936.0,0.16142
+937.0,0.16338
+938.0,0.20058
+939.0,0.39887
+940.0,0.47181
+941.0,0.37195
+942.0,0.40532
+943.0,0.27834
+944.0,0.28579
+945.0,0.36821
+946.0,0.19461
+947.0,0.37112
+948.0,0.27423
+949.0,0.49396
+950.0,0.14726
+951.0,0.48378
+952.0,0.26891
+953.0,0.34362
+954.0,0.42411
+955.0,0.34117
+956.0,0.32821
+957.0,0.27067
+958.0,0.46101
+959.0,0.37385
+960.0,0.42066
+961.0,0.4612
+962.0,0.44174
+963.0,0.50503
+964.0,0.4586
+965.0,0.50374
+966.0,0.50275
+967.0,0.5024
+968.0,0.6521
+969.0,0.68622
+970.0,0.63461
+971.0,0.71397
+972.0,0.68765
+973.0,0.60648
+974.0,0.57529
+975.0,0.58987
+976.0,0.57191
+977.0,0.63864
+978.0,0.61509
+979.0,0.63815
+980.0,0.60468
+981.0,0.71338
+982.0,0.69218
+983.0,0.66865
+984.0,0.73732
+985.0,0.68817
+986.0,0.75083
+987.0,0.73928
+988.0,0.73462
+989.0,0.74906
+990.0,0.73227
+991.0,0.75358
+992.0,0.75102
+993.0,0.73728
+994.0,0.7541
+995.0,0.75176
+996.0,0.74884
+997.0,0.73971
+998.0,0.73887
+999.0,0.73857
+1000.0,0.73532
+1001.0,0.74442
+1002.0,0.72805
+1003.0,0.73442
+1004.0,0.72336
+1005.0,0.68174
+1006.0,0.71252
+1007.0,0.72753
+1008.0,0.72685
+1009.0,0.71972
+1010.0,0.71914
+1011.0,0.72278
+1012.0,0.71877
+1013.0,0.71761
+1014.0,0.72068
+1015.0,0.70817
+1016.0,0.71129
+1017.0,0.70337
+1018.0,0.71422
+1019.0,0.68878
+1020.0,0.69896
+1021.0,0.70175
+1022.0,0.6897
+1023.0,0.69508
+1024.0,0.69058
+1025.0,0.69753
+1026.0,0.69636
+1027.0,0.69305
+1028.0,0.69385
+1029.0,0.68628
+1030.0,0.69055
+1031.0,0.68736
+1032.0,0.68787
+1033.0,0.67613
+1034.0,0.68015
+1035.0,0.68234
+1036.0,0.68202
+1037.0,0.67497
+1038.0,0.67172
+1039.0,0.67636
+1040.0,0.6717
+1041.0,0.67176
+1042.0,0.672
+1043.0,0.66525
+1044.0,0.66833
+1045.0,0.66452
+1046.0,0.64714
+1047.0,0.65694
+1048.0,0.66274
+1049.0,0.65896
+1050.0,0.65463
+1051.0,0.65521
+1052.0,0.65118
+1053.0,0.64919
+1054.0,0.64646
+1055.0,0.64847
+1056.0,0.64641
+1057.0,0.64482
+1058.0,0.63818
+1059.0,0.61875
+1060.0,0.63585
+1061.0,0.62121
+1062.0,0.63266
+1063.0,0.62239
+1064.0,0.63196
+1065.0,0.62913
+1066.0,0.61713
+1067.0,0.62032
+1068.0,0.61944
+1069.0,0.58626
+1070.0,0.60469
+1071.0,0.61661
+1072.0,0.61536
+1073.0,0.60363
+1074.0,0.62158
+1075.0,0.59252
+1076.0,0.61471
+1077.0,0.60434
+1078.0,0.60321
+1079.0,0.60474
+1080.0,0.59722
+1081.0,0.58083
+1082.0,0.5894
+1083.0,0.59814
+1084.0,0.57852
+1085.0,0.5933
+1086.0,0.5541
+1087.0,0.56697
+1088.0,0.59317
+1089.0,0.57919
+1090.0,0.55573
+1091.0,0.58835
+1092.0,0.58124
+1093.0,0.51058
+1094.0,0.53965
+1095.0,0.52067
+1096.0,0.50323
+1097.0,0.57852
+1098.0,0.50291
+1099.0,0.50772
+1100.0,0.48577
+1101.0,0.49696
+1102.0,0.46883
+1103.0,0.46637
+1104.0,0.46765
+1105.0,0.50644
+1106.0,0.39792
+1107.0,0.48304
+1108.0,0.41565
+1109.0,0.41278
+1110.0,0.47899
+1111.0,0.33154
+1112.0,0.41357
+1113.0,0.2685
+1114.0,0.29985
+1115.0,0.24987
+1116.0,0.20136
+1117.0,0.079618
+1118.0,0.21753
+1119.0,0.11317
+1120.0,0.14189
+1121.0,0.18586
+1122.0,0.081686
+1123.0,0.12817
+1124.0,0.1087
+1125.0,0.14428
+1126.0,0.051589
+1127.0,0.15725
+1128.0,0.099224
+1129.0,0.10591
+1130.0,0.070574
+1131.0,0.2956
+1132.0,0.23411
+1133.0,0.15331
+1134.0,0.04174
+1135.0,0.015462
+1136.0,0.12876
+1137.0,0.28785
+1138.0,0.20329
+1139.0,0.2985
+1140.0,0.25599
+1141.0,0.19337
+1142.0,0.22479
+1143.0,0.31183
+1144.0,0.11326
+1145.0,0.14604
+1146.0,0.15764
+1147.0,0.059176
+1148.0,0.27113
+1149.0,0.21854
+1150.0,0.12164
+1151.0,0.2034
+1152.0,0.24762
+1153.0,0.23812
+1154.0,0.14248
+1155.0,0.31316
+1156.0,0.2809
+1157.0,0.31458
+1158.0,0.31171
+1159.0,0.33693
+1160.0,0.28648
+1161.0,0.34753
+1162.0,0.35002
+1163.0,0.46857
+1164.0,0.40188
+1165.0,0.3886
+1166.0,0.37494
+1167.0,0.40996
+1168.0,0.41954
+1169.0,0.4231
+1170.0,0.45873
+1171.0,0.44831
+1172.0,0.45483
+1173.0,0.45642
+1174.0,0.33692
+1175.0,0.4524
+1176.0,0.47679
+1177.0,0.47235
+1178.0,0.36
+1179.0,0.48371
+1180.0,0.44069
+1181.0,0.45514
+1182.0,0.32318
+1183.0,0.4387
+1184.0,0.41985
+1185.0,0.40741
+1186.0,0.47715
+1187.0,0.45575
+1188.0,0.33504
+1189.0,0.41569
+1190.0,0.46239
+1191.0,0.4466
+1192.0,0.47336
+1193.0,0.45434
+1194.0,0.4689
+1195.0,0.44696
+1196.0,0.43131
+1197.0,0.47715
+1198.0,0.43392
+1199.0,0.36489
+1200.0,0.44825
+1201.0,0.43708
+1202.0,0.43717
+1203.0,0.43409
+1204.0,0.36247
+1205.0,0.43692
+1206.0,0.48086
+1207.0,0.42986
+1208.0,0.43346
+1209.0,0.41428
+1210.0,0.45336
+1211.0,0.42232
+1212.0,0.42489
+1213.0,0.46956
+1214.0,0.43407
+1215.0,0.4278
+1216.0,0.4664
+1217.0,0.45528
+1218.0,0.45934
+1219.0,0.44663
+1220.0,0.45805
+1221.0,0.46531
+1222.0,0.45139
+1223.0,0.44406
+1224.0,0.44808
+1225.0,0.46236
+1226.0,0.46819
+1227.0,0.43304
+1228.0,0.46658
+1229.0,0.46721
+1230.0,0.46003
+1231.0,0.47203
+1232.0,0.46633
+1233.0,0.45397
+1234.0,0.47016
+1235.0,0.46504
+1236.0,0.46908
+1237.0,0.46339
+1238.0,0.46797
+1239.0,0.46272
+1240.0,0.46077
+1241.0,0.46197
+1242.0,0.46247
+1243.0,0.45754
+1244.0,0.45528
+1245.0,0.45655
+1246.0,0.45945
+1247.0,0.45746
+1248.0,0.4586
+1249.0,0.45966
+1250.0,0.45705
+1251.0,0.45258
+1252.0,0.45097
+1253.0,0.44773
+1254.0,0.44363
+1255.0,0.4507
+1256.0,0.44023
+1257.0,0.43532
+1258.0,0.44496
+1259.0,0.42725
+1260.0,0.4311
+1261.0,0.41146
+1262.0,0.39567
+1263.0,0.40019
+1264.0,0.37148
+1265.0,0.3957
+1266.0,0.38527
+1267.0,0.38822
+1268.0,0.37051
+1269.0,0.24652
+1270.0,0.38744
+1271.0,0.40825
+1272.0,0.40879
+1273.0,0.40625
+1274.0,0.40614
+1275.0,0.41233
+1276.0,0.41693
+1277.0,0.42001
+1278.0,0.42763
+1279.0,0.42456
+1280.0,0.42204
+1281.0,0.41335
+1282.0,0.37305
+1283.0,0.40733
+1284.0,0.42078
+1285.0,0.42399
+1286.0,0.42714
+1287.0,0.42213
+1288.0,0.41989
+1289.0,0.40936
+1290.0,0.41285
+1291.0,0.41786
+1292.0,0.39618
+1293.0,0.41257
+1294.0,0.40421
+1295.0,0.40514
+1296.0,0.38957
+1297.0,0.3713
+1298.0,0.39183
+1299.0,0.40852
+1300.0,0.35312
+1301.0,0.36228
+1302.0,0.39181
+1303.0,0.34621
+1304.0,0.30062
+1305.0,0.38382
+1306.0,0.38453
+1307.0,0.30594
+1308.0,0.34696
+1309.0,0.38413
+1310.0,0.30114
+1311.0,0.33366
+1312.0,0.33337
+1313.0,0.31352
+1314.0,0.28833
+1315.0,0.28581
+1316.0,0.32419
+1317.0,0.31217
+1318.0,0.33328
+1319.0,0.26855
+1320.0,0.25872
+1321.0,0.29866
+1322.0,0.30217
+1323.0,0.23279
+1324.0,0.26249
+1325.0,0.32224
+1326.0,0.28051
+1327.0,0.26625
+1328.0,0.2345
+1329.0,0.17759
+1330.0,0.22923
+1331.0,0.1448
+1332.0,0.14579
+1333.0,0.20304
+1334.0,0.16925
+1335.0,0.23117
+1336.0,0.18348
+1337.0,0.16454
+1338.0,0.17804
+1339.0,0.17681
+1340.0,0.16831
+1341.0,0.17039
+1342.0,0.17798
+1343.0,0.12711
+1344.0,0.075645
+1345.0,0.10904
+1346.0,0.058186
+1347.0,0.060119
+1348.0,0.0047451
+1349.0,0.016159
+1350.0,0.016025
+1351.0,0.0046298
+1352.0,0.0015164
+1353.0,9.6096e-05
+1354.0,0.00029009
+1355.0,3.6034e-06
+1356.0,4.807e-05
+1357.0,7.1786e-05
+1358.0,4.1948e-06
+1359.0,7.3439e-07
+1360.0,2.1404e-06
+1361.0,4.8133e-09
+1362.0,1.8076e-11
+1363.0,3.1563e-06
+1364.0,1.3589e-06
+1365.0,9.0764e-12
+1366.0,1.2791e-05
+1367.0,4.9764e-06
+1368.0,1.481e-13
+1369.0,5.1667e-07
+1370.0,2.92e-07
+1371.0,1.9731e-08
+1372.0,2.7498e-06
+1373.0,4.4401e-05
+1374.0,0.00017917
+1375.0,0.00032332
+1376.0,0.00025748
+1377.0,0.0001227
+1378.0,0.0011089
+1379.0,5.2164e-05
+1380.0,8.1587e-05
+1381.0,2.3716e-06
+1382.0,2.5672e-06
+1383.0,4.4017e-08
+1384.0,6.1689e-07
+1385.0,2.0899e-06
+1386.0,2.5215e-06
+1387.0,0.00019896
+1388.0,4.0262e-06
+1389.0,0.00058098
+1390.0,0.00049328
+1391.0,0.00034384
+1392.0,2.3782e-05
+1393.0,0.00011586
+1394.0,7.5526e-05
+1395.0,6.7136e-07
+1396.0,6.3215e-09
+1397.0,4.9057e-05
+1398.0,0.0012704
+1399.0,0.00081226
+1400.0,3.2466e-09
+1401.0,1.0528e-08
+1402.0,0.0018353
+1403.0,0.00238
+1404.0,0.00073892
+1405.0,3.6444e-07
+1406.0,0.0020448
+1407.0,0.00017457
+1408.0,0.0016493
+1409.0,0.00061919
+1410.0,0.00046653
+1411.0,0.0021142
+1412.0,0.0026396
+1413.0,0.023353
+1414.0,0.00036378
+1415.0,0.00018366
+1416.0,0.035565
+1417.0,0.011759
+1418.0,0.013559
+1419.0,0.0021442
+1420.0,0.0082718
+1421.0,0.0091637
+1422.0,0.046314
+1423.0,0.0092198
+1424.0,0.016975
+1425.0,0.02585
+1426.0,0.027792
+1427.0,0.049546
+1428.0,0.0045588
+1429.0,0.03802
+1430.0,0.061601
+1431.0,0.050156
+1432.0,0.0025194
+1433.0,0.035834
+1434.0,0.020962
+1435.0,0.021416
+1436.0,0.038351
+1437.0,0.02988
+1438.0,0.013263
+1439.0,0.051039
+1440.0,0.039601
+1441.0,0.0318
+1442.0,0.036317
+1443.0,0.045063
+1444.0,0.061791
+1445.0,0.049751
+1446.0,0.023095
+1447.0,0.036215
+1448.0,0.11569
+1449.0,0.10213
+1450.0,0.027412
+1451.0,0.011271
+1452.0,0.062361
+1453.0,0.081978
+1454.0,0.13759
+1455.0,0.06615
+1456.0,0.088509
+1457.0,0.117
+1458.0,0.13643
+1459.0,0.16307
+1460.0,0.085421
+1461.0,0.090276
+1462.0,0.1306
+1463.0,0.043225
+1464.0,0.15184
+1465.0,0.093383
+1466.0,0.065197
+1467.0,0.036054
+1468.0,0.076942
+1469.0,0.094845
+1470.0,0.049678
+1471.0,0.017848
+1472.0,0.046771
+1473.0,0.070198
+1474.0,0.097339
+1475.0,0.18463
+1476.0,0.068778
+1477.0,0.069736
+1478.0,0.06348
+1479.0,0.12001
+1480.0,0.060637
+1481.0,0.11529
+1482.0,0.05849
+1483.0,0.14859
+1484.0,0.13747
+1485.0,0.12503
+1486.0,0.1234
+1487.0,0.060629
+1488.0,0.09418
+1489.0,0.18973
+1490.0,0.17478
+1491.0,0.19778
+1492.0,0.16441
+1493.0,0.18157
+1494.0,0.20367
+1495.0,0.18253
+1496.0,0.16852
+1497.0,0.2285
+1498.0,0.18968
+1499.0,0.21759
+1500.0,0.25061
+1501.0,0.26552
+1502.0,0.23356
+1503.0,0.18493
+1504.0,0.16029
+1505.0,0.18402
+1506.0,0.25773
+1507.0,0.25514
+1508.0,0.24302
+1509.0,0.1869
+1510.0,0.27052
+1511.0,0.26474
+1512.0,0.26068
+1513.0,0.24239
+1514.0,0.22571
+1515.0,0.26573
+1516.0,0.25683
+1517.0,0.24929
+1518.0,0.25211
+1519.0,0.24437
+1520.0,0.2645
+1521.0,0.27505
+1522.0,0.26378
+1523.0,0.28004
+1524.0,0.27539
+1525.0,0.25884
+1526.0,0.26745
+1527.0,0.2622
+1528.0,0.27928
+1529.0,0.27244
+1530.0,0.25522
+1531.0,0.26973
+1532.0,0.27839
+1533.0,0.27714
+1534.0,0.26892
+1535.0,0.26686
+1536.0,0.27464
+1537.0,0.27336
+1538.0,0.27202
+1539.0,0.27295
+1540.0,0.26491
+1541.0,0.26904
+1542.0,0.26927
+1543.0,0.27208
+1544.0,0.2721
+1545.0,0.27705
+1546.0,0.27481
+1547.0,0.27309
+1548.0,0.26675
+1549.0,0.27342
+1550.0,0.2699
+1551.0,0.27058
+1552.0,0.27182
+1553.0,0.27132
+1554.0,0.26474
+1555.0,0.26759
+1556.0,0.2631
+1557.0,0.27062
+1558.0,0.26848
+1559.0,0.26808
+1560.0,0.26568
+1561.0,0.27002
+1562.0,0.26756
+1563.0,0.26667
+1564.0,0.26264
+1565.0,0.26728
+1566.0,0.26245
+1567.0,0.26308
+1568.0,0.25722
+1569.0,0.25452
+1570.0,0.24175
+1571.0,0.23507
+1572.0,0.23775
+1573.0,0.23407
+1574.0,0.24145
+1575.0,0.23974
+1576.0,0.24678
+1577.0,0.21602
+1578.0,0.23516
+1579.0,0.23672
+1580.0,0.24464
+1581.0,0.2487
+1582.0,0.24195
+1583.0,0.24755
+1584.0,0.24904
+1585.0,0.25874
+1586.0,0.25569
+1587.0,0.25303
+1588.0,0.25107
+1589.0,0.23233
+1590.0,0.24179
+1591.0,0.24197
+1592.0,0.25225
+1593.0,0.25833
+1594.0,0.25624
+1595.0,0.25823
+1596.0,0.24452
+1597.0,0.24692
+1598.0,0.25421
+1599.0,0.24202
+1600.0,0.2381
+1601.0,0.22323
+1602.0,0.22413
+1603.0,0.22397
+1604.0,0.22842
+1605.0,0.23683
+1606.0,0.2414
+1607.0,0.23296
+1608.0,0.2299
+1609.0,0.22727
+1610.0,0.2176
+1611.0,0.2268
+1612.0,0.23076
+1613.0,0.23719
+1614.0,0.23838
+1615.0,0.24104
+1616.0,0.2305
+1617.0,0.23465
+1618.0,0.24352
+1619.0,0.241
+1620.0,0.23449
+1621.0,0.2343
+1622.0,0.23754
+1623.0,0.24246
+1624.0,0.24269
+1625.0,0.23782
+1626.0,0.23971
+1627.0,0.24078
+1628.0,0.24126
+1629.0,0.24137
+1630.0,0.23651
+1631.0,0.23806
+1632.0,0.23821
+1633.0,0.23267
+1634.0,0.23282
+1635.0,0.23367
+1636.0,0.23539
+1637.0,0.227
+1638.0,0.22007
+1639.0,0.22026
+1640.0,0.21511
+1641.0,0.2196
+1642.0,0.22082
+1643.0,0.21535
+1644.0,0.22355
+1645.0,0.21822
+1646.0,0.21749
+1647.0,0.22768
+1648.0,0.21655
+1649.0,0.21867
+1650.0,0.22526
+1651.0,0.20855
+1652.0,0.22373
+1653.0,0.22277
+1654.0,0.21583
+1655.0,0.22231
+1656.0,0.22101
+1657.0,0.22223
+1658.0,0.22487
+1659.0,0.2212
+1660.0,0.22332
+1661.0,0.22384
+1662.0,0.21908
+1663.0,0.22235
+1664.0,0.22098
+1665.0,0.21178
+1666.0,0.17884
+1667.0,0.21068
+1668.0,0.21459
+1669.0,0.21516
+1670.0,0.22168
+1671.0,0.21879
+1672.0,0.21147
+1673.0,0.21629
+1674.0,0.21575
+1675.0,0.2136
+1676.0,0.21145
+1677.0,0.21229
+1678.0,0.20915
+1679.0,0.21303
+1680.0,0.20558
+1681.0,0.19447
+1682.0,0.20366
+1683.0,0.20906
+1684.0,0.19797
+1685.0,0.21321
+1686.0,0.21026
+1687.0,0.20484
+1688.0,0.21013
+1689.0,0.20718
+1690.0,0.20523
+1691.0,0.19303
+1692.0,0.20708
+1693.0,0.21134
+1694.0,0.20477
+1695.0,0.20968
+1696.0,0.20922
+1697.0,0.18107
+1698.0,0.20739
+1699.0,0.20551
+1700.0,0.19975
+1702.0,0.20396
+1705.0,0.19778
+1710.0,0.1879
+1715.0,0.18965
+1720.0,0.18698
+1725.0,0.17808
+1730.0,0.17407
+1735.0,0.16154
+1740.0,0.16818
+1745.0,0.15481
+1750.0,0.16566
+1755.0,0.15301
+1760.0,0.15998
+1765.0,0.13284
+1770.0,0.14172
+1775.0,0.11484
+1780.0,0.1005
+1785.0,0.076981
+1790.0,0.088904
+1795.0,0.046931
+1800.0,0.031828
+1805.0,0.014815
+1810.0,0.0096911
+1815.0,0.0032816
+1820.0,0.00098755
+1825.0,0.0012744
+1830.0,5.2041e-06
+1835.0,6.419e-06
+1840.0,6.2703e-08
+1845.0,6.2658e-06
+1850.0,2.9993e-06
+1855.0,2.8396e-07
+1860.0,1.1151e-05
+1865.0,1.6982e-05
+1870.0,2.6662e-10
+1875.0,4.513e-10
+1880.0,7.7505e-05
+1885.0,4.389e-05
+1890.0,0.00022333
+1895.0,0.00012947
+1900.0,8.6221e-07
+1905.0,5.6667e-07
+1910.0,2.3045e-05
+1915.0,1.9947e-05
+1920.0,0.00045069
+1925.0,0.00093615
+1930.0,0.00055242
+1935.0,0.0035935
+1940.0,0.0032821
+1945.0,0.010863
+1950.0,0.016727
+1955.0,0.010036
+1960.0,0.021906
+1965.0,0.028563
+1970.0,0.048847
+1975.0,0.067857
+1980.0,0.075512
+1985.0,0.083063
+1990.0,0.085613
+1995.0,0.08119
+2000.0,0.038156
+2005.0,0.015001
+2010.0,0.039748
+2015.0,0.026648
+2020.0,0.044981
+2025.0,0.07401
+2030.0,0.084856
+2035.0,0.096386
+2040.0,0.089781
+2045.0,0.091074
+2050.0,0.067927
+2055.0,0.054906
+2060.0,0.069193
+2065.0,0.061875
+2070.0,0.065676
+2075.0,0.077443
+2080.0,0.086812
+2085.0,0.085102
+2090.0,0.0891
+2095.0,0.089747
+2100.0,0.086133
+2105.0,0.093153
+2110.0,0.089654
+2115.0,0.091673
+2120.0,0.087588
+2125.0,0.088632
+2130.0,0.089774
+2135.0,0.090044
+2140.0,0.090767
+2145.0,0.089486
+2150.0,0.084639
+2155.0,0.08484
+2160.0,0.08417
+2165.0,0.07631
+2170.0,0.081996
+2175.0,0.080448
+2180.0,0.081808
+2185.0,0.07455
+2190.0,0.079068
+2195.0,0.078992
+2200.0,0.071202
+2205.0,0.07401
+2210.0,0.079315
+2215.0,0.076273
+2220.0,0.07773
+2225.0,0.075453
+2230.0,0.075773
+2235.0,0.074299
+2240.0,0.073118
+2245.0,0.070838
+2250.0,0.071937
+2255.0,0.06769
+2260.0,0.066929
+2265.0,0.068137
+2270.0,0.064867
+2275.0,0.064021
+2280.0,0.066288
+2285.0,0.06308
+2290.0,0.06322
+2295.0,0.061265
+2300.0,0.058824
+2305.0,0.059171
+2310.0,0.06387
+2315.0,0.058141
+2320.0,0.052031
+2325.0,0.056215
+2330.0,0.056824
+2335.0,0.057967
+2340.0,0.045836
+2345.0,0.0514
+2350.0,0.041536
+2355.0,0.047473
+2360.0,0.050237
+2365.0,0.049409
+2370.0,0.030817
+2375.0,0.044147
+2380.0,0.042552
+2385.0,0.030826
+2390.0,0.037109
+2395.0,0.040594
+2400.0,0.04415
+2405.0,0.033599
+2410.0,0.033813
+2415.0,0.0273
+2420.0,0.02659
+2425.0,0.033078
+2430.0,0.045099
+2435.0,0.014878
+2440.0,0.043249
+2445.0,0.020798
+2450.0,0.013611
+2455.0,0.024853
+2460.0,0.033363
+2465.0,0.024148
+2470.0,0.016727
+2475.0,0.016455
+2480.0,0.0080395
+2485.0,0.0056102
+2490.0,0.0035113
+2495.0,0.0028772
+2500.0,0.0070642
+2505.0,0.0015191
+2510.0,0.0022163
+2515.0,0.0005188
+2520.0,0.00037054
+2525.0,4.1393e-05
+2530.0,6.3593e-07
+2535.0,1.7502e-07
+2540.0,3.7716e-07
+2545.0,5.3758e-11
+2550.0,2.8222e-13
+2555.0,1.0435e-09
+2560.0,3.102e-11
+2565.0,1.5955e-14
+2570.0,1.5258e-18
+2575.0,1.0786e-27
+2580.0,3.8214e-22
+2585.0,1.7194e-34
+2590.0,5.4793e-31
+2595.0,2.2838e-33
+2600.0,4.4912e-28
+2605.0,5.8053e-35
+2610.0,5.9447e-34
+2615.0,1.1196e-37
+2620.0,5.6505e-29
+2625.0,3.8687e-28
+2630.0,2.8026e-45
+2635.0,3.9027e-16
+2640.0,1.175e-16
+2645.0,8.9988e-19
+2650.0,1.4295e-19
+2655.0,1.3133e-27
+2660.0,2.6068e-25
+2665.0,1.1123e-37
+2670.0,0.0
+2675.0,0.0
+2680.0,0.0
+2685.0,0.0
+2690.0,1.0226e-29
+2695.0,7.1284e-33
+2700.0,0.0
+2705.0,2.9315e-42
+2710.0,1.125e-35
+2715.0,3.8557e-26
+2720.0,5.6052e-45
+2725.0,7.2935e-22
+2730.0,6.0734e-19
+2735.0,5.4888e-21
+2740.0,2.3314e-27
+2745.0,1.3146e-23
+2750.0,1.6648e-28
+2755.0,6.7262e-44
+2760.0,0.0
+2765.0,2.6777e-27
+2770.0,8.3791e-24
+2775.0,3.999e-38
+2780.0,4.8067e-34
+2785.0,3.8866e-27
+2790.0,1.217e-16
+2795.0,3.6205e-16
+2800.0,1.6484e-12
+2805.0,6.7478e-14
+2810.0,4.0233e-10
+2815.0,2.8685e-10
+2820.0,2.0548e-11
+2825.0,1.7605e-07
+2830.0,3.9008e-06
+2835.0,2.1276e-10
+2840.0,1.9609e-07
+2845.0,4.0575e-05
+2850.0,1.1566e-06
+2855.0,4.4867e-07
+2860.0,2.5356e-05
+2865.0,0.00016763
+2870.0,6.3129e-06
+2875.0,0.0003917
+2880.0,0.00024724
+2885.0,0.00045332
+2890.0,0.00018623
+2895.0,0.0026643
+2900.0,0.00081152
+2905.0,0.00011096
+2910.0,0.002722
+2915.0,0.0012581
+2920.0,0.0028948
+2925.0,0.0010835
+2930.0,0.0058858
+2935.0,0.0064903
+2940.0,0.0016273
+2945.0,0.0014489
+2950.0,0.0052276
+2955.0,0.0023361
+2960.0,0.0045971
+2965.0,0.0074379
+2970.0,0.00035233
+2975.0,0.00085429
+2980.0,0.0013381
+2985.0,0.0069628
+2990.0,0.01028
+2995.0,0.0042755
+3000.0,0.0078472
+3005.0,0.0028906
+3010.0,0.0068479
+3015.0,0.0055551
+3020.0,0.00063369
+3025.0,0.0075031
+3030.0,0.0060753
+3035.0,0.0024986
+3040.0,0.0020242
+3045.0,0.004209
+3050.0,0.0010321
+3055.0,0.00028947
+3060.0,0.0063012
+3065.0,0.0029113
+3070.0,0.0017492
+3075.0,0.0060221
+3080.0,0.0036224
+3085.0,0.0017671
+3090.0,0.0023805
+3095.0,0.0006551
+3100.0,0.004401
+3105.0,0.00092155
+3110.0,0.00084569
+3115.0,0.0022677
+3120.0,0.0098197
+3125.0,0.0030289
+3130.0,0.0057614
+3135.0,0.011446
+3140.0,0.0033241
+3145.0,0.0032517
+3150.0,0.0066744
+3155.0,0.0056366
+3160.0,0.009232
+3165.0,0.014017
+3170.0,0.012516
+3175.0,0.0092302
+3180.0,0.010621
+3185.0,0.0080823
+3190.0,0.0042388
+3195.0,0.0026927
+3200.0,0.00043843
+3205.0,0.00030973
+3210.0,0.00013634
+3215.0,0.00049752
+3220.0,0.0016089
+3225.0,0.00019875
+3230.0,0.0003408
+3235.0,0.007294
+3240.0,0.0037464
+3245.0,0.00073409
+3250.0,0.0026067
+3255.0,0.0099378
+3260.0,0.0012248
+3265.0,0.0024465
+3270.0,0.0012186
+3275.0,0.0059265
+3280.0,0.0028644
+3285.0,0.011128
+3290.0,0.0087571
+3295.0,0.0012234
+3300.0,0.0017794
+3305.0,0.0039416
+3310.0,0.0039235
+3315.0,1.6133e-05
+3320.0,5.9987e-05
+3325.0,0.0035187
+3330.0,0.0046616
+3335.0,0.0090694
+3340.0,0.0034602
+3345.0,0.0035408
+3350.0,0.0080277
+3355.0,0.0036308
+3360.0,0.0052402
+3365.0,0.0071907
+3370.0,0.0039389
+3375.0,0.008456
+3380.0,0.0051115
+3385.0,0.0074896
+3390.0,0.0098552
+3395.0,0.0095465
+3400.0,0.012509
+3405.0,0.0044594
+3410.0,0.0070802
+3415.0,0.0072774
+3420.0,0.013165
+3425.0,0.010006
+3430.0,0.0086892
+3435.0,0.011553
+3440.0,0.0080348
+3445.0,0.011318
+3450.0,0.011153
+3455.0,0.0083089
+3460.0,0.01253
+3465.0,0.0098179
+3470.0,0.012264
+3475.0,0.010943
+3480.0,0.011224
+3485.0,0.012094
+3490.0,0.010419
+3495.0,0.012265
+3500.0,0.011917
+3505.0,0.011809
+3510.0,0.011963
+3515.0,0.011494
+3520.0,0.012122
+3525.0,0.011428
+3530.0,0.011127
+3535.0,0.0094556
+3540.0,0.009031
+3545.0,0.0095432
+3550.0,0.010538
+3555.0,0.0090581
+3560.0,0.010795
+3565.0,0.010851
+3570.0,0.0083376
+3575.0,0.0086444
+3580.0,0.010187
+3585.0,0.0091671
+3590.0,0.0094523
+3595.0,0.00967
+3600.0,0.010262
+3605.0,0.010359
+3610.0,0.0094787
+3615.0,0.0094726
+3620.0,0.011614
+3625.0,0.010239
+3630.0,0.009955
+3635.0,0.010299
+3640.0,0.01148
+3645.0,0.010599
+3650.0,0.010123
+3655.0,0.010978
+3660.0,0.010914
+3665.0,0.010253
+3670.0,0.0079003
+3675.0,0.0048286
+3680.0,0.0083312
+3685.0,0.009438
+3690.0,0.0096922
+3695.0,0.010132
+3700.0,0.010878
+3705.0,0.01077
+3710.0,0.009364
+3715.0,0.0092254
+3720.0,0.010376
+3725.0,0.010698
+3730.0,0.0092707
+3735.0,0.0085837
+3740.0,0.0088494
+3745.0,0.010331
+3750.0,0.0092903
+3755.0,0.0089918
+3760.0,0.0088633
+3765.0,0.0085502
+3770.0,0.0091243
+3775.0,0.0090521
+3780.0,0.0095746
+3785.0,0.0088123
+3790.0,0.0077564
+3795.0,0.0088692
+3800.0,0.0098592
+3805.0,0.0093049
+3810.0,0.0082451
+3815.0,0.0077569
+3820.0,0.009655
+3825.0,0.0095056
+3830.0,0.0095925
+3835.0,0.0076916
+3840.0,0.0089756
+3845.0,0.0087801
+3850.0,0.0088274
+3855.0,0.0085085
+3860.0,0.007994
+3865.0,0.0080989
+3870.0,0.0073604
+3875.0,0.006762
+3880.0,0.006534
+3885.0,0.0067717
+3890.0,0.0068818
+3895.0,0.007476
+3900.0,0.0079254
+3905.0,0.0079269
+3910.0,0.0071353
+3915.0,0.0069868
+3920.0,0.0069466
+3925.0,0.006852
+3930.0,0.0070502
+3935.0,0.0073541
+3940.0,0.0074027
+3945.0,0.0075412
+3950.0,0.0076277
+3955.0,0.0077199
+3960.0,0.0077482
+3965.0,0.0078057
+3970.0,0.0076806
+3975.0,0.0075097
+3980.0,0.0073872
+3985.0,0.0074327
+3990.0,0.0073723
+3995.0,0.00721
+4000.0,0.0071043
diff --git a/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_CM_10kWp_CIS_5_2a_2013_2014.json b/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_CM_10kWp_CIS_5_2a_2013_2014.json
deleted file mode 100644
index 3a27f4f368..0000000000
--- a/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_CM_10kWp_CIS_5_2a_2013_2014.json
+++ /dev/null
@@ -1 +0,0 @@
-{"inputs": {"location": {"latitude": 45.0, "longitude": 8.0, "elevation": 250.0}, "meteo_data": {"radiation_db": "PVGIS-CMSAF", "meteo_db": "ERA-Interim", "year_min": 2013, "year_max": 2014, "use_horizon": true, "horizon_db": null, "horizon_data": "DEM-calculated"}, "mounting_system": {"two_axis": {"slope": {"value": "-", "optimal": "-"}, "azimuth": {"value": "-", "optimal": "-"}}}, "pv_module": {"technology": "CIS", "peak_power": 10.0, "system_loss": 5.0}}, "outputs": {"hourly": [{"time": "20130101:0055", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 3.01, "WS10m": 1.23, "Int": 0.0}, {"time": "20130101:0155", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 2.22, "WS10m": 1.46, "Int": 0.0}, {"time": "20130101:0255", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 1.43, "WS10m": 1.7, "Int": 0.0}, {"time": "20130101:0355", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 0.64, "WS10m": 1.93, "Int": 0.0}, {"time": "20130101:0455", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 0.77, "WS10m": 1.8, "Int": 0.0}, {"time": "20130101:0555", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 0.91, "WS10m": 1.66, "Int": 0.0}, {"time": "20130101:0655", "P": 0.0, "Gb(i)": 0.0, "Gd(i)": 0.0, "Gr(i)": 0.0, "H_sun": 0.0, "T2m": 1.05, "WS10m": 1.53, "Int": 0.0}, {"time": "20130101:0755", "P": 3464.5, "Gb(i)": 270.35, "Gd(i)": 91.27, "Gr(i)": 6.09, "H_sun": 6.12, "T2m": 1.92, "WS10m": 1.44, "Int": 0.0}, {"time": "20130101:0855", "P": 1586.9, "Gb(i)": 80.76, "Gd(i)": 83.95, "Gr(i)": 9.04, "H_sun": 13.28, "T2m": 2.79, "WS10m": 1.36, "Int": 0.0}, {"time": "20130101:0955", "P": 713.3, "Gb(i)": 5.18, "Gd(i)": 70.57, "Gr(i)": 7.31, "H_sun": 18.56, "T2m": 3.66, "WS10m": 1.27, "Int": 0.0}]}, "meta": {"inputs": {"location": {"description": "Selected location", "variables": {"latitude": {"description": "Latitude", "units": "decimal degree"}, "longitude": {"description": "Longitude", "units": "decimal degree"}, "elevation": {"description": "Elevation", "units": "m"}}}, "meteo_data": {"description": "Sources of meteorological data", "variables": {"radiation_db": {"description": "Solar radiation database"}, "meteo_db": {"description": "Database used for meteorological variables other than solar radiation"}, "year_min": {"description": "First year of the calculations"}, "year_max": {"description": "Last year of the calculations"}, "use_horizon": {"description": "Include horizon shadows"}, "horizon_db": {"description": "Source of horizon data"}}}, "mounting_system": {"description": "Mounting system", "choices": "fixed, vertical_axis, inclined_axis, two_axis", "fields": {"slope": {"description": "Inclination angle from the horizontal plane", "units": "degree"}, "azimuth": {"description": "Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)", "units": "degree"}}}, "pv_module": {"description": "PV module parameters", "variables": {"technology": {"description": "PV technology"}, "peak_power": {"description": "Nominal (peak) power of the PV module", "units": "kW"}, "system_loss": {"description": "Sum of system losses", "units": "%"}}}}, "outputs": {"hourly": {"type": "time series", "timestamp": "hourly averages", "variables": {"P": {"description": "PV system power", "units": "W"}, "Gb(i)": {"description": "Beam (direct) irradiance on the inclined plane (plane of the array)", "units": "W/m2"}, "Gd(i)": {"description": "Diffuse irradiance on the inclined plane (plane of the array)", "units": "W/m2"}, "Gr(i)": {"description": "Reflected irradiance on the inclined plane (plane of the array)", "units": "W/m2"}, "H_sun": {"description": "Sun height", "units": "degree"}, "T2m": {"description": "2-m air temperature", "units": "degree Celsius"}, "WS10m": {"description": "10-m total wind speed", "units": "m/s"}, "Int": {"description": "1 means solar radiation values are reconstructed"}}}}}}
\ No newline at end of file
diff --git a/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json b/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json
new file mode 100644
index 0000000000..c6691217c1
--- /dev/null
+++ b/pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json
@@ -0,0 +1 @@
+{"inputs": {"location": {"latitude": 45.0, "longitude": 8.0, "elevation": 250.0}, "meteo_data": {"radiation_db": "PVGIS-SARAH2", "meteo_db": "ERA-Interim", "year_min": 2013, "year_max": 2014, "use_horizon": true, "horizon_db": null, "horizon_data": "DEM-calculated"}, "mounting_system": {"two_axis": {"slope": {"value": "-", "optimal": "-"}, "azimuth": {"value": "-", "optimal": "-"}}}, "pv_module": {"technology": "CIS", "peak_power": 10.0, "system_loss": 5.0}}, "outputs": {"hourly": [{"time": "20130101:0010", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -0.97, "WS10m": 1.52, "Int": 0.0}, {"time": "20130101:0110", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -1.06, "WS10m": 1.45, "Int": 0.0}, {"time": "20130101:0210", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -1.03, "WS10m": 1.45, "Int": 0.0}, {"time": "20130101:0310", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -0.48, "WS10m": 1.31, "Int": 0.0}, {"time": "20130101:0410", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -0.09, "WS10m": 1.24, "Int": 0.0}, {"time": "20130101:0510", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": -0.38, "WS10m": 1.17, "Int": 0.0}, {"time": "20130101:0610", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": 0.29, "WS10m": 1.03, "Int": 0.0}, {"time": "20130101:0710", "P": 0.0, "G(i)": 0.0, "H_sun": 0.0, "T2m": 1.0, "WS10m": 0.62, "Int": 0.0}, {"time": "20130101:0810", "P": 1187.2, "G(i)": 129.59, "H_sun": 8.06, "T2m": 0.97, "WS10m": 0.97, "Int": 0.0}, {"time": "20130101:0910", "P": 3950.1, "G(i)": 423.28, "H_sun": 14.8, "T2m": 1.89, "WS10m": 0.69, "Int": 0.0}]}, "meta": {"inputs": {"location": {"description": "Selected location", "variables": {"latitude": {"description": "Latitude", "units": "decimal degree"}, "longitude": {"description": "Longitude", "units": "decimal degree"}, "elevation": {"description": "Elevation", "units": "m"}}}, "meteo_data": {"description": "Sources of meteorological data", "variables": {"radiation_db": {"description": "Solar radiation database"}, "meteo_db": {"description": "Database used for meteorological variables other than solar radiation"}, "year_min": {"description": "First year of the calculations"}, "year_max": {"description": "Last year of the calculations"}, "use_horizon": {"description": "Include horizon shadows"}, "horizon_db": {"description": "Source of horizon data"}}}, "mounting_system": {"description": "Mounting system", "choices": "fixed, vertical_axis, inclined_axis, two_axis", "fields": {"slope": {"description": "Inclination angle from the horizontal plane", "units": "degree"}, "azimuth": {"description": "Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)", "units": "degree"}}}, "pv_module": {"description": "PV module parameters", "variables": {"technology": {"description": "PV technology"}, "peak_power": {"description": "Nominal (peak) power of the PV module", "units": "kW"}, "system_loss": {"description": "Sum of system losses", "units": "%"}}}}, "outputs": {"hourly": {"type": "time series", "timestamp": "hourly averages", "variables": {"P": {"description": "PV system power", "units": "W"}, "G(i)": {"description": "Global irradiance on the inclined plane (plane of the array)", "units": "W/m2"}, "H_sun": {"description": "Sun height", "units": "degree"}, "T2m": {"description": "2-m air temperature", "units": "degree Celsius"}, "WS10m": {"description": "10-m total wind speed", "units": "m/s"}, "Int": {"description": "1 means solar radiation values are reconstructed"}}}}}}
\ No newline at end of file
diff --git a/pvlib/forecast.py b/pvlib/forecast.py
index ce80e0ad74..b077024b28 100644
--- a/pvlib/forecast.py
+++ b/pvlib/forecast.py
@@ -10,7 +10,6 @@
from pvlib.location import Location
from pvlib.irradiance import campbell_norman, get_extra_radiation, disc
-from pvlib.irradiance import _liujordan
from siphon.catalog import TDSCatalog
from siphon.ncss import NCSS
diff --git a/pvlib/iam.py b/pvlib/iam.py
index dfb2729906..a8592f4036 100644
--- a/pvlib/iam.py
+++ b/pvlib/iam.py
@@ -353,6 +353,7 @@ def martin_ruiz_diffuse(surface_tilt, a_r=0.16, c1=0.4244, c2=None):
# avoid undefined results for horizontal or upside-down surfaces
zeroang = 1e-06
+
surface_tilt = np.where(surface_tilt == 0, zeroang, surface_tilt)
surface_tilt = np.where(surface_tilt == 180, 180 - zeroang, surface_tilt)
@@ -361,8 +362,9 @@ def martin_ruiz_diffuse(surface_tilt, a_r=0.16, c1=0.4244, c2=None):
c2 = 0.5 * a_r - 0.154
beta = np.radians(surface_tilt)
-
- from numpy import pi, sin, cos, exp
+ sin = np.sin
+ pi = np.pi
+ cos = np.cos
# avoid RuntimeWarnings for <, sin, and cos with nan
with np.errstate(invalid='ignore'):
@@ -372,8 +374,8 @@ def martin_ruiz_diffuse(surface_tilt, a_r=0.16, c1=0.4244, c2=None):
trig_term_sky = sin_beta + (pi - beta - sin_beta) / (1 + cos(beta))
trig_term_gnd = sin_beta + (beta - sin_beta) / (1 - cos(beta)) # noqa: E222 E261 E501
- iam_sky = 1 - exp(-(c1 + c2 * trig_term_sky) * trig_term_sky / a_r)
- iam_gnd = 1 - exp(-(c1 + c2 * trig_term_gnd) * trig_term_gnd / a_r)
+ iam_sky = 1 - np.exp(-(c1 + c2 * trig_term_sky) * trig_term_sky / a_r)
+ iam_gnd = 1 - np.exp(-(c1 + c2 * trig_term_gnd) * trig_term_gnd / a_r)
if out_index is not None:
iam_sky = pd.Series(iam_sky, index=out_index, name='iam_sky')
diff --git a/pvlib/inverter.py b/pvlib/inverter.py
index a192f5e1c2..cfac1682c7 100644
--- a/pvlib/inverter.py
+++ b/pvlib/inverter.py
@@ -142,7 +142,8 @@ def sandia_multi(v_dc, p_dc, inverter):
Convert DC power and voltage to AC power for an inverter with multiple
MPPT inputs.
- Uses Sandia's Grid-Connected PV Inverter model [1]_.
+ Uses Sandia's Grid-Connected PV Inverter model [1]_. Extension of [1]_
+ to inverters with multiple, unbalanced inputs as described in [2]_.
Parameters
----------
@@ -177,6 +178,9 @@ def sandia_multi(v_dc, p_dc, inverter):
.. [1] D. King, S. Gonzalez, G. Galbraith, W. Boyson, "Performance Model
for Grid-Connected Photovoltaic Inverters", SAND2007-5036, Sandia
National Laboratories.
+ .. [2] C. Hansen, J. Johnson, R. Darbali-Zamora, N. Gurule. "Modeling
+ Efficiency Of Inverters With Multiple Inputs", 49th IEEE Photovoltaic
+ Specialist Conference, Philadelphia, PA, USA. June 2022.
See also
--------
diff --git a/pvlib/iotools/epw.py b/pvlib/iotools/epw.py
index df93e125c5..249dd76056 100644
--- a/pvlib/iotools/epw.py
+++ b/pvlib/iotools/epw.py
@@ -225,14 +225,15 @@ def read_epw(filename, coerce_year=None):
'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 '
'Safari/537.36')})
response = urlopen(request)
- csvdata = io.StringIO(response.read().decode(errors='ignore'))
+ with io.StringIO(response.read().decode(errors='ignore')) as csvdata:
+ data, meta = parse_epw(csvdata, coerce_year)
+
else:
# Assume it's accessible via the file system
- csvdata = open(str(filename), 'r')
- try:
- data, meta = parse_epw(csvdata, coerce_year)
- finally:
- csvdata.close()
+ with open(str(filename), 'r') as csvdata:
+ data, meta = parse_epw(csvdata, coerce_year)
+
+
return data, meta
diff --git a/pvlib/iotools/psm3.py b/pvlib/iotools/psm3.py
index a8f9781c22..71e74dfd54 100644
--- a/pvlib/iotools/psm3.py
+++ b/pvlib/iotools/psm3.py
@@ -42,7 +42,7 @@
def get_psm3(latitude, longitude, api_key, email, names='tmy', interval=60,
- attributes=ATTRIBUTES, leap_day=False, full_name=PVLIB_PYTHON,
+ attributes=ATTRIBUTES, leap_day=None, full_name=PVLIB_PYTHON,
affiliation=PVLIB_PYTHON, map_variables=None, timeout=30):
"""
Retrieve NSRDB PSM3 timeseries weather data from the PSM3 API. The NSRDB
@@ -165,6 +165,14 @@ def get_psm3(latitude, longitude, api_key, email, names='tmy', interval=60,
attributes = [amap.get(a, a) for a in attributes]
attributes = list(set(attributes)) # remove duplicate values
+ if (leap_day is None) and (not names.startswith('t')):
+ warnings.warn(
+ 'The ``get_psm3`` function will default to leap_day=True '
+ 'starting in pvlib 0.11.0. Specify leap_day=True '
+ 'to enable this behavior now, or specify leap_day=False '
+ 'to hide this warning.', pvlibDeprecationWarning)
+ leap_day = False
+
# required query-string parameters for request to PSM3 API
params = {
'api_key': api_key,
diff --git a/pvlib/iotools/pvgis.py b/pvlib/iotools/pvgis.py
index 64b23139eb..edfb28c124 100644
--- a/pvlib/iotools/pvgis.py
+++ b/pvlib/iotools/pvgis.py
@@ -26,7 +26,7 @@
URL = 'https://re.jrc.ec.europa.eu/api/'
# Dictionary mapping PVGIS names to pvlib names
-PVGIS_VARIABLE_MAP = {
+VARIABLE_MAP = {
'G(h)': 'ghi',
'Gb(n)': 'dni',
'Gd(h)': 'dhi',
@@ -112,10 +112,11 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
documentation [2]_ for more info.
url: str, default: :const:`pvlib.iotools.pvgis.URL`
Base url of PVGIS API. ``seriescalc`` is appended to get hourly data
- endpoint.
+ endpoint. Note, a specific PVGIS version can be specified, e.g.,
+ https://re.jrc.ec.europa.eu/api/v5_2/
map_variables: bool, default: True
When true, renames columns of the Dataframe to pvlib variable names
- where applicable. See variable PVGIS_VARIABLE_MAP.
+ where applicable. See variable :const:`VARIABLE_MAP`.
timeout: int, default: 30
Time in seconds to wait for server response before timeout
@@ -138,10 +139,10 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
Hint
----
PVGIS provides access to a number of different solar radiation datasets,
- including satellite-based (SARAH, CMSAF, and NSRDB PSM3) and re-analysis
- products (ERA5 and COSMO). Each data source has a different geographical
- coverage and time stamp convention, e.g., SARAH and CMSAF provide
- instantaneous values, whereas values from ERA5 are averages for the hour.
+ including satellite-based (SARAH, SARAH2, and NSRDB PSM3) and re-analysis
+ products (ERA5). Each data source has a different geographical coverage and
+ time stamp convention, e.g., SARAH and SARAH2 provide instantaneous values,
+ whereas values from ERA5 are averages for the hour.
Notes
-----
@@ -172,6 +173,12 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
--------
pvlib.iotools.read_pvgis_hourly, pvlib.iotools.get_pvgis_tmy
+ Examples
+ --------
+ >>> # Retrieve two years of irradiance data from PVGIS:
+ >>> data, meta, inputs = pvlib.iotools.get_pvgis_hourly( # doctest: +SKIP
+ >>> latitude=45, longitude=8, start=2015, end=2016) # doctest: +SKIP
+
References
----------
.. [1] `PVGIS `_
@@ -228,7 +235,7 @@ def _parse_pvgis_hourly_json(src, map_variables):
data = data.drop('time', axis=1)
data = data.astype(dtype={'Int': 'int'}) # The 'Int' column to be integer
if map_variables:
- data = data.rename(columns=PVGIS_VARIABLE_MAP)
+ data = data.rename(columns=VARIABLE_MAP)
return data, inputs, metadata
@@ -270,7 +277,7 @@ def _parse_pvgis_hourly_csv(src, map_variables):
data.index = pd.to_datetime(data['time'], format='%Y%m%d:%H%M', utc=True)
data = data.drop('time', axis=1)
if map_variables:
- data = data.rename(columns=PVGIS_VARIABLE_MAP)
+ data = data.rename(columns=VARIABLE_MAP)
# All columns should have the dtype=float, except 'Int' which should be
# integer. It is necessary to convert to float, before converting to int
data = data.astype(float).astype(dtype={'Int': 'int'})
@@ -297,7 +304,7 @@ def read_pvgis_hourly(filename, pvgis_format=None, map_variables=True):
``pvgis_format`` is required and must be in ``['csv', 'json']``.
map_variables: bool, default True
When true, renames columns of the DataFrame to pvlib variable names
- where applicable. See variable PVGIS_VARIABLE_MAP.
+ where applicable. See variable :const:`VARIABLE_MAP`.
Returns
-------
@@ -369,8 +376,9 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
userhorizon=None, startyear=None, endyear=None, url=URL,
map_variables=None, timeout=30):
"""
- Get TMY data from PVGIS. For more information see the PVGIS [1]_ TMY tool
- documentation [2]_.
+ Get TMY data from PVGIS.
+
+ For more information see the PVGIS [1]_ TMY tool documentation [2]_.
Parameters
----------
@@ -396,7 +404,7 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
base url of PVGIS API, append ``tmy`` to get TMY endpoint
map_variables: bool
When true, renames columns of the Dataframe to pvlib variable names
- where applicable. See variable PVGIS_VARIABLE_MAP.
+ where applicable. See variable const:`VARIABLE_MAP`.
timeout : int, default 30
time in seconds to wait for server response before timeout
@@ -428,13 +436,12 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
the error message in the response will be raised as an exception,
otherwise raise whatever ``HTTP/1.1`` error occurred
- See also
+ See Also
--------
read_pvgis_tmy
References
----------
-
.. [1] `PVGIS `_
.. [2] `PVGIS TMY tool `_
.. [3] `PVGIS horizon profile tool
@@ -492,7 +499,7 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
)
map_variables = False
if map_variables:
- data = data.rename(columns=PVGIS_VARIABLE_MAP)
+ data = data.rename(columns=VARIABLE_MAP)
return data, months_selected, inputs, meta
@@ -566,7 +573,7 @@ def read_pvgis_tmy(filename, pvgis_format=None, map_variables=None):
be in ``['csv', 'epw', 'json', 'basic']``.
map_variables: bool
When true, renames columns of the Dataframe to pvlib variable names
- where applicable. See variable PVGIS_VARIABLE_MAP.
+ where applicable. See variable :const:`VARIABLE_MAP`.
Returns
@@ -584,12 +591,12 @@ def read_pvgis_tmy(filename, pvgis_format=None, map_variables=None):
------
ValueError
if ``pvgis_format`` is ``None`` and the file extension is neither
- ``.csv``, ``.json``, nor ``.epw``, or if ``pvgis_format`` is provided as
- input but isn't in ``['csv', 'epw', 'json', 'basic']``
+ ``.csv``, ``.json``, nor ``.epw``, or if ``pvgis_format`` is provided
+ as input but isn't in ``['csv', 'epw', 'json', 'basic']``
TypeError
if ``pvgis_format`` is ``None`` and ``filename`` is a buffer
- See also
+ See Also
--------
get_pvgis_tmy
"""
@@ -655,7 +662,6 @@ def read_pvgis_tmy(filename, pvgis_format=None, map_variables=None):
)
map_variables = False
if map_variables:
- data = data.rename(columns=PVGIS_VARIABLE_MAP)
+ data = data.rename(columns=VARIABLE_MAP)
return data, months_selected, inputs, meta
-
diff --git a/pvlib/iotools/sodapro.py b/pvlib/iotools/sodapro.py
index abb06da8bb..c57052b254 100644
--- a/pvlib/iotools/sodapro.py
+++ b/pvlib/iotools/sodapro.py
@@ -15,7 +15,7 @@
'GHI no corr', 'BHI no corr', 'DHI no corr', 'BNI no corr']
# Dictionary mapping CAMS Radiation and McClear variables to pvlib names
-CAMS_VARIABLE_MAP = {
+VARIABLE_MAP = {
'TOA': 'ghi_extra',
'Clear sky GHI': 'ghi_clear',
'Clear sky BHI': 'bhi_clear',
@@ -47,12 +47,11 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
server='www.soda-is.com', timeout=30):
"""
Retrieve time-series of radiation and/or clear-sky global, beam, and
- diffuse radiation from CAMS. Data from CAMS Radiation [1]_ and CAMS McClear
- [2]_ are retrieved from SoDa [3]_.
+ diffuse radiation from CAMS (see [1]_). Data is retrieved from SoDa [2]_.
Time coverage: 2004-01-01 to two days ago
- Access: free, but requires registration, see [1]_
+ Access: free, but requires registration, see [2]_
Requests: max. 100 per day
Geographical coverage: worldwide for CAMS McClear and approximately -66° to
@@ -91,7 +90,7 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
all time steps except for '1M' which has a default of 'right'.
map_variables: bool, default: True
When true, renames columns of the DataFrame to pvlib variable names
- where applicable. See variable CAMS_VARIABLE_MAP.
+ where applicable. See variable :const:`VARIABLE_MAP`.
server: str, default: 'www.soda-is.com'
Main server (www.soda-is.com) or backup mirror server (pro.soda-is.com)
timeout : int, default: 30
@@ -107,7 +106,7 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
Notes
-----
In order to use the CAMS services, users must register for a free SoDa
- account using an email address [1]_.
+ account using an email address [2]_.
The returned data DataFrame includes the following fields:
@@ -130,15 +129,14 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
======================== ====== =========================================
†Parameters only returned if identifier='cams_radiation'. For description
- of additional output parameters in verbose mode, see [1]_ and [2]_.
+ of additional output parameters in verbose mode, see [1]_.
Note that it is recommended to specify the latitude and longitude to at
least the fourth decimal place.
Variables corresponding to standard pvlib variables are renamed,
- e.g. `sza` becomes `solar_zenith`. See the
- `pvlib.iotools.cams.CAMS_VARIABLE_MAP` dict for the complete
- mapping.
+ e.g. `sza` becomes `solar_zenith`. See variable :const:`VARIABLE_MAP` for
+ the complete mapping.
See Also
--------
@@ -152,12 +150,10 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
References
----------
- .. [1] `CAMS Radiation Service Info
- `_
- .. [2] `CAMS McClear Service Info
- `_
- .. [3] `CAMS McClear Automatic Access
- `_
+ .. [1] `CAMS solar radiation documentation
+ `_
+ .. [2] `CAMS Radiation Automatic Access (SoDa)
+ `_
"""
try:
time_step_str = TIME_STEPS_MAP[time_step]
@@ -185,7 +181,7 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
email = email.replace('@', '%2540') # Format email address
identifier = 'get_{}'.format(identifier.lower()) # Format identifier str
- base_url = f"http://{server}/service/wps"
+ base_url = f"https://{server}/service/wps"
data_inputs_dict = {
'latitude': latitude,
@@ -233,7 +229,7 @@ def get_cams(latitude, longitude, start, end, email, identifier='mcclear',
def parse_cams(fbuf, integrated=False, label=None, map_variables=True):
"""
Parse a file-like buffer with data in the format of a CAMS Radiation or
- McClear file. The CAMS services are described in [1]_ and [2]_.
+ McClear file. The CAMS solar radiation services are described in [1]_.
Parameters
----------
@@ -247,7 +243,7 @@ def parse_cams(fbuf, integrated=False, label=None, map_variables=True):
all time steps except for '1M' which has a default of 'right'.
map_variables: bool, default: True
When true, renames columns of the Dataframe to pvlib variable names
- where applicable. See variable CAMS_VARIABLE_MAP.
+ where applicable. See variable :const:`VARIABLE_MAP`.
Returns
-------
@@ -262,10 +258,8 @@ def parse_cams(fbuf, integrated=False, label=None, map_variables=True):
References
----------
- .. [1] `CAMS Radiation Service Info
- `_
- .. [2] `CAMS McClear Service Info
- `_
+ .. [1] `CAMS solar radiation documentation
+ `_
"""
metadata = {}
# Initial lines starting with # contain metadata
@@ -327,15 +321,16 @@ def parse_cams(fbuf, integrated=False, label=None, map_variables=True):
TIME_STEPS_IN_HOURS[time_step])
data.index.name = None # Set index name to None
if map_variables:
- data = data.rename(columns=CAMS_VARIABLE_MAP)
+ data = data.rename(columns=VARIABLE_MAP)
return data, metadata
def read_cams(filename, integrated=False, label=None, map_variables=True):
"""
- Read a CAMS Radiation or McClear file into a pandas DataFrame. CAMS
- radiation and McClear are described in [1]_ and [2]_, respectively.
+ Read a CAMS Radiation or McClear file into a pandas DataFrame.
+
+ CAMS Radiation and McClear are described in [1]_.
Parameters
----------
@@ -349,7 +344,7 @@ def read_cams(filename, integrated=False, label=None, map_variables=True):
all time steps except for '1M' which has a default of 'right'.
map_variables: bool, default: True
When true, renames columns of the Dataframe to pvlib variable names
- where applicable. See variable CAMS_VARIABLE_MAP.
+ where applicable. See variable VARIABLE_MAP.
Returns
-------
@@ -365,10 +360,8 @@ def read_cams(filename, integrated=False, label=None, map_variables=True):
References
----------
- .. [1] `CAMS Radiation Service Info
- `_
- .. [2] `CAMS McClear Service Info
- `_
+ .. [1] `CAMS solar radiation documentation
+ `_
"""
with open(str(filename), 'r') as fbuf:
content = parse_cams(fbuf, integrated, label, map_variables)
diff --git a/pvlib/iotools/surfrad.py b/pvlib/iotools/surfrad.py
index b819923497..7f4d86e46a 100644
--- a/pvlib/iotools/surfrad.py
+++ b/pvlib/iotools/surfrad.py
@@ -44,7 +44,7 @@ def read_surfrad(filename, map_variables=True):
Parameters
----------
filename: str
- Filepath or url.
+ Filepath or URL. URL can be either FTP or HTTP.
map_variables: bool
When true, renames columns of the Dataframe to pvlib variable names
where applicable. See variable :const:`VARIABLE_MAP`.
@@ -113,7 +113,8 @@ def read_surfrad(filename, map_variables=True):
======================= ====== ==========================================
See README files located in the station directories in the SURFRAD
- data archives [2]_ for details on SURFRAD daily data files.
+ data archives [2]_ for details on SURFRAD daily data files. In addition to
+ the FTP server, the SURFRAD files are also available via HTTP access [3]_.
References
----------
@@ -122,8 +123,10 @@ def read_surfrad(filename, map_variables=True):
`SURFRAD Homepage `_
.. [2] NOAA SURFRAD Data Archive
`SURFRAD Archive `_
+ .. [3] `NOAA SURFRAD HTTP Index
+ `_
"""
- if str(filename).startswith('ftp'):
+ if str(filename).startswith('ftp') or str(filename).startswith('http'):
req = Request(filename)
response = urlopen(req)
file_buffer = io.StringIO(response.read().decode(errors='ignore'))
diff --git a/pvlib/iotools/tmy.py b/pvlib/iotools/tmy.py
index 0f43aa83bb..032680a14b 100644
--- a/pvlib/iotools/tmy.py
+++ b/pvlib/iotools/tmy.py
@@ -1,6 +1,4 @@
-"""
-Import functions for TMY2 and TMY3 data files.
-"""
+"""Functions for reading TMY2 and TMY3 data files."""
import datetime
import re
@@ -8,8 +6,7 @@
def read_tmy3(filename, coerce_year=None, recolumn=True):
- '''
- Read a TMY3 file in to a pandas dataframe.
+ """Read a TMY3 file into a pandas dataframe.
Note that values contained in the metadata dictionary are unchanged
from the TMY3 file (i.e. units are retained). In the case of any
@@ -23,12 +20,10 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
----------
filename : str
A relative file path or absolute file path.
-
coerce_year : None or int, default None
If supplied, the year of the index will be set to `coerce_year`, except
for the last index value which will be set to the *next* year so that
the index increases monotonically.
-
recolumn : bool, default True
If ``True``, apply standard names to TMY3 columns. Typically this
results in stripping the units from the column name.
@@ -40,7 +35,7 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
data : DataFrame
A pandas dataframe with the columns described in the table
below. For more detailed descriptions of each component, please
- consult the TMY3 User's Manual ([1]), especially tables 1-1
+ consult the TMY3 User's Manual ([1]_), especially tables 1-1
through 1-6.
metadata : dict
@@ -62,80 +57,85 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
USAF Int USAF identifier
=============== ====== ===================
- ============================= ======================================================================================================================================================
- TMYData field description
- ============================= ======================================================================================================================================================
- TMYData.Index A pandas datetime index. NOTE, the index is currently timezone unaware, and times are set to local standard time (daylight savings is not included)
- TMYData.ETR Extraterrestrial horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
- TMYData.ETRN Extraterrestrial normal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
- TMYData.GHI Direct and diffuse horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
- TMYData.GHISource See [1]_, Table 1-4
- TMYData.GHIUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.DNI Amount of direct normal radiation (modeled) recv'd during 60 mintues prior to timestamp, Wh/m^2
- TMYData.DNISource See [1]_, Table 1-4
- TMYData.DNIUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.DHI Amount of diffuse horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
- TMYData.DHISource See [1]_, Table 1-4
- TMYData.DHIUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.GHillum Avg. total horizontal illuminance recv'd during the 60 minutes prior to timestamp, lx
- TMYData.GHillumSource See [1]_, Table 1-4
- TMYData.GHillumUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.DNillum Avg. direct normal illuminance recv'd during the 60 minutes prior to timestamp, lx
- TMYData.DNillumSource See [1]_, Table 1-4
- TMYData.DNillumUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.DHillum Avg. horizontal diffuse illuminance recv'd during the 60 minutes prior to timestamp, lx
- TMYData.DHillumSource See [1]_, Table 1-4
- TMYData.DHillumUncertainty Uncertainty based on random and bias error estimates see [2]_
- TMYData.Zenithlum Avg. luminance at the sky's zenith during the 60 minutes prior to timestamp, cd/m^2
- TMYData.ZenithlumSource See [1]_, Table 1-4
- TMYData.ZenithlumUncertainty Uncertainty based on random and bias error estimates see [1]_ section 2.10
- TMYData.TotCld Amount of sky dome covered by clouds or obscuring phenonema at time stamp, tenths of sky
- TMYData.TotCldSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.TotCldUncertainty See [1]_, Table 1-6
- TMYData.OpqCld Amount of sky dome covered by clouds or obscuring phenonema that prevent observing the sky at time stamp, tenths of sky
- TMYData.OpqCldSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.OpqCldUncertainty See [1]_, Table 1-6
- TMYData.DryBulb Dry bulb temperature at the time indicated, deg C
- TMYData.DryBulbSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.DryBulbUncertainty See [1]_, Table 1-6
- TMYData.DewPoint Dew-point temperature at the time indicated, deg C
- TMYData.DewPointSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.DewPointUncertainty See [1]_, Table 1-6
- TMYData.RHum Relatitudeive humidity at the time indicated, percent
- TMYData.RHumSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.RHumUncertainty See [1]_, Table 1-6
- TMYData.Pressure Station pressure at the time indicated, 1 mbar
- TMYData.PressureSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.PressureUncertainty See [1]_, Table 1-6
- TMYData.Wdir Wind direction at time indicated, degrees from north (360 = north; 0 = undefined,calm)
- TMYData.WdirSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.WdirUncertainty See [1]_, Table 1-6
- TMYData.Wspd Wind speed at the time indicated, meter/second
- TMYData.WspdSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.WspdUncertainty See [1]_, Table 1-6
- TMYData.Hvis Distance to discernable remote objects at time indicated (7777=unlimited), meter
- TMYData.HvisSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.HvisUncertainty See [1]_, Table 1-6
- TMYData.CeilHgt Height of cloud base above local terrain (7777=unlimited), meter
- TMYData.CeilHgtSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.CeilHgtUncertainty See [1]_, Table 1-6
- TMYData.Pwat Total precipitable water contained in a column of unit cross section from earth to top of atmosphere, cm
- TMYData.PwatSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.PwatUncertainty See [1]_, Table 1-6
- TMYData.AOD The broadband aerosol optical depth per unit of air mass due to extinction by aerosol component of atmosphere, unitless
- TMYData.AODSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.AODUncertainty See [1]_, Table 1-6
- TMYData.Alb The ratio of reflected solar irradiance to global horizontal irradiance, unitless
- TMYData.AlbSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.AlbUncertainty See [1]_, Table 1-6
- TMYData.Lprecipdepth The amount of liquid precipitation observed at indicated time for the period indicated in the liquid precipitation quantity field, millimeter
- TMYData.Lprecipquantity The period of accumulatitudeion for the liquid precipitation depth field, hour
- TMYData.LprecipSource See [1]_, Table 1-5, 8760x1 cell array of strings
- TMYData.LprecipUncertainty See [1]_, Table 1-6
- TMYData.PresWth Present weather code, see [2]_.
- TMYData.PresWthSource Present weather code source, see [2]_.
- TMYData.PresWthUncertainty Present weather code uncertainty, see [2]_.
- ============================= ======================================================================================================================================================
+ ===================== ======================================================================================================================================================
+ field description
+ ===================== ======================================================================================================================================================
+ Index A pandas datetime index. NOTE, the index is timezone aware, and times are set to local standard time (daylight savings is not included)
+ ETR Extraterrestrial horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
+ ETRN Extraterrestrial normal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
+ GHI Direct and diffuse horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
+ GHISource See [1]_, Table 1-4
+ GHIUncertainty Uncertainty based on random and bias error estimates see [2]_
+ DNI Amount of direct normal radiation (modeled) recv'd during 60 mintues prior to timestamp, Wh/m^2
+ DNISource See [1]_, Table 1-4
+ DNIUncertainty Uncertainty based on random and bias error estimates see [2]_
+ DHI Amount of diffuse horizontal radiation recv'd during 60 minutes prior to timestamp, Wh/m^2
+ DHISource See [1]_, Table 1-4
+ DHIUncertainty Uncertainty based on random and bias error estimates see [2]_
+ GHillum Avg. total horizontal illuminance recv'd during the 60 minutes prior to timestamp, lx
+ GHillumSource See [1]_, Table 1-4
+ GHillumUncertainty Uncertainty based on random and bias error estimates see [2]_
+ DNillum Avg. direct normal illuminance recv'd during the 60 minutes prior to timestamp, lx
+ DNillumSource See [1]_, Table 1-4
+ DNillumUncertainty Uncertainty based on random and bias error estimates see [2]_
+ DHillum Avg. horizontal diffuse illuminance recv'd during the 60 minutes prior to timestamp, lx
+ DHillumSource See [1]_, Table 1-4
+ DHillumUncertainty Uncertainty based on random and bias error estimates see [2]_
+ Zenithlum Avg. luminance at the sky's zenith during the 60 minutes prior to timestamp, cd/m^2
+ ZenithlumSource See [1]_, Table 1-4
+ ZenithlumUncertainty Uncertainty based on random and bias error estimates see [1]_ section 2.10
+ TotCld Amount of sky dome covered by clouds or obscuring phenonema at time stamp, tenths of sky
+ TotCldSource See [1]_, Table 1-5
+ TotCldUncertainty See [1]_, Table 1-6
+ OpqCld Amount of sky dome covered by clouds or obscuring phenonema that prevent observing the sky at time stamp, tenths of sky
+ OpqCldSource See [1]_, Table 1-5
+ OpqCldUncertainty See [1]_, Table 1-6
+ DryBulb Dry bulb temperature at the time indicated, deg C
+ DryBulbSource See [1]_, Table 1-5
+ DryBulbUncertainty See [1]_, Table 1-6
+ DewPoint Dew-point temperature at the time indicated, deg C
+ DewPointSource See [1]_, Table 1-5
+ DewPointUncertainty See [1]_, Table 1-6
+ RHum Relatitudeive humidity at the time indicated, percent
+ RHumSource See [1]_, Table 1-5
+ RHumUncertainty See [1]_, Table 1-6
+ Pressure Station pressure at the time indicated, 1 mbar
+ PressureSource See [1]_, Table 1-5
+ PressureUncertainty See [1]_, Table 1-6
+ Wdir Wind direction at time indicated, degrees from north (360 = north; 0 = undefined,calm)
+ WdirSource See [1]_, Table 1-5
+ WdirUncertainty See [1]_, Table 1-6
+ Wspd Wind speed at the time indicated, meter/second
+ WspdSource See [1]_, Table 1-5
+ WspdUncertainty See [1]_, Table 1-6
+ Hvis Distance to discernable remote objects at time indicated (7777=unlimited), meter
+ HvisSource See [1]_, Table 1-5
+ HvisUncertainty See [1]_, Table 1-6
+ CeilHgt Height of cloud base above local terrain (7777=unlimited), meter
+ CeilHgtSource See [1]_, Table 1-5
+ CeilHgtUncertainty See [1]_, Table 1-6
+ Pwat Total precipitable water contained in a column of unit cross section from earth to top of atmosphere, cm
+ PwatSource See [1]_, Table 1-5
+ PwatUncertainty See [1]_, Table 1-6
+ AOD The broadband aerosol optical depth per unit of air mass due to extinction by aerosol component of atmosphere, unitless
+ AODSource See [1]_, Table 1-5
+ AODUncertainty See [1]_, Table 1-6
+ Alb The ratio of reflected solar irradiance to global horizontal irradiance, unitless
+ AlbSource See [1]_, Table 1-5
+ AlbUncertainty See [1]_, Table 1-6
+ Lprecipdepth The amount of liquid precipitation observed at indicated time for the period indicated in the liquid precipitation quantity field, millimeter
+ Lprecipquantity The period of accumulatitudeion for the liquid precipitation depth field, hour
+ LprecipSource See [1]_, Table 1-5
+ LprecipUncertainty See [1]_, Table 1-6
+ PresWth Present weather code, see [2]_.
+ PresWthSource Present weather code source, see [2]_.
+ PresWthUncertainty Present weather code uncertainty, see [2]_.
+ ===================== ======================================================================================================================================================
+
+ .. admonition:: Midnight representation
+
+ The function is able to handle midnight represented as 24:00 (NREL TMY3
+ format, see [1]_) and as 00:00 (SolarAnywhere TMY3 format, see [3]_).
.. warning:: TMY3 irradiance data corresponds to the *previous* hour, so
the first index is 1AM, corresponding to the irradiance from midnight
@@ -150,24 +150,23 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
References
----------
-
.. [1] Wilcox, S and Marion, W. "Users Manual for TMY3 Data Sets".
NREL/TP-581-43156, Revised May 2008.
-
.. [2] Wilcox, S. (2007). National Solar Radiation Database 1991 2005
Update: Users Manual. 472 pp.; NREL Report No. TP-581-41364.
- '''
-
+ .. [3] `SolarAnywhere file formats
+ `_
+ """ # noqa: E501
head = ['USAF', 'Name', 'State', 'TZ', 'latitude', 'longitude', 'altitude']
- with open(str(filename), 'r') as csvdata:
- # read in file metadata, advance buffer to second line
- firstline = csvdata.readline()
- # use pandas to read the csv file buffer
- # header is actually the second line, but tell pandas to look for
- # header information on the 1st line (0 indexing) because we've already
- # advanced past the true first line with the readline call above.
- data = pd.read_csv(csvdata, header=0)
+ try:
+ with open(str(filename), 'r') as fbuf:
+ firstline, data = _parse_tmy3(fbuf)
+ # SolarAnywhere files contain non-UTF8 characters and may require
+ # encoding='iso-8859-1' in order to be parsed
+ except UnicodeDecodeError:
+ with open(str(filename), 'r', encoding='iso-8859-1') as fbuf:
+ firstline, data = _parse_tmy3(fbuf)
meta = dict(zip(head, firstline.rstrip('\n').split(",")))
# convert metadata strings to numeric types
@@ -181,8 +180,9 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
data_ymd = pd.to_datetime(data['Date (MM/DD/YYYY)'], format='%m/%d/%Y')
# shift the time column so that midnite is 00:00 instead of 24:00
shifted_hour = data['Time (HH:MM)'].str[:2].astype(int) % 24
- # shift the dates at midnite so they correspond to the next day
- data_ymd[shifted_hour == 0] += datetime.timedelta(days=1)
+ # shift the dates at midnight (24:00) so they correspond to the next day.
+ # If midnight is specified as 00:00 do not shift date.
+ data_ymd[data['Time (HH:MM)'].str[:2] == '24'] += datetime.timedelta(days=1) # noqa: E501
# NOTE: as of pandas>=0.24 the pd.Series.array has a month attribute, but
# in pandas-0.18.1, only DatetimeIndex has month, but indices are immutable
# so we need to continue to work with the panda series of dates `data_ymd`
@@ -207,6 +207,15 @@ def read_tmy3(filename, coerce_year=None, recolumn=True):
return data, meta
+def _parse_tmy3(fbuf):
+ # header information on the 1st line (0 indexing)
+ firstline = fbuf.readline()
+ # use pandas to read the csv file buffer
+ # header is actually the second line, but tell pandas to look for
+ data = pd.read_csv(fbuf, header=0)
+ return firstline, data
+
+
def _recolumn(tmy3_dataframe):
"""
Rename the columns of the TMY3 DataFrame.
@@ -250,8 +259,8 @@ def _recolumn(tmy3_dataframe):
def read_tmy2(filename):
- '''
- Read a TMY2 file in to a DataFrame.
+ """
+ Read a TMY2 file into a DataFrame.
Note that values contained in the DataFrame are unchanged from the
TMY2 file (i.e. units are retained). Time/Date and location data
@@ -282,7 +291,6 @@ def read_tmy2(filename):
Notes
-----
-
The returned structures have the following fields.
============= ==================================
@@ -298,7 +306,7 @@ def read_tmy2(filename):
============= ==================================
============================ ==========================================================================================================================================================================
- TMYData field description
+ field description
============================ ==========================================================================================================================================================================
index Pandas timeseries object containing timestamps
year
@@ -329,57 +337,55 @@ def read_tmy2(filename):
ZenithlumSource See [1]_, Table 3-3
ZenithlumUncertainty See [1]_, Table 3-4
TotCld Amount of sky dome covered by clouds or obscuring phenonema at time stamp, tenths of sky
- TotCldSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ TotCldSource See [1]_, Table 3-5
TotCldUncertainty See [1]_, Table 3-6
OpqCld Amount of sky dome covered by clouds or obscuring phenonema that prevent observing the sky at time stamp, tenths of sky
- OpqCldSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ OpqCldSource See [1]_, Table 3-5
OpqCldUncertainty See [1]_, Table 3-6
DryBulb Dry bulb temperature at the time indicated, in tenths of degree C (e.g. 352 = 35.2 C).
- DryBulbSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ DryBulbSource See [1]_, Table 3-5
DryBulbUncertainty See [1]_, Table 3-6
DewPoint Dew-point temperature at the time indicated, in tenths of degree C (e.g. 76 = 7.6 C).
- DewPointSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ DewPointSource See [1]_, Table 3-5
DewPointUncertainty See [1]_, Table 3-6
RHum Relative humidity at the time indicated, percent
- RHumSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ RHumSource See [1]_, Table 3-5
RHumUncertainty See [1]_, Table 3-6
Pressure Station pressure at the time indicated, 1 mbar
- PressureSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ PressureSource See [1]_, Table 3-5
PressureUncertainty See [1]_, Table 3-6
Wdir Wind direction at time indicated, degrees from east of north (360 = 0 = north; 90 = East; 0 = undefined,calm)
- WdirSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ WdirSource See [1]_, Table 3-5
WdirUncertainty See [1]_, Table 3-6
Wspd Wind speed at the time indicated, in tenths of meters/second (e.g. 212 = 21.2 m/s)
- WspdSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ WspdSource See [1]_, Table 3-5
WspdUncertainty See [1]_, Table 3-6
Hvis Distance to discernable remote objects at time indicated (7777=unlimited, 9999=missing data), in tenths of kilometers (e.g. 341 = 34.1 km).
- HvisSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ HvisSource See [1]_, Table 3-5
HvisUncertainty See [1]_, Table 3-6
CeilHgt Height of cloud base above local terrain (7777=unlimited, 88888=cirroform, 99999=missing data), in meters
- CeilHgtSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ CeilHgtSource See [1]_, Table 3-5
CeilHgtUncertainty See [1]_, Table 3-6
Pwat Total precipitable water contained in a column of unit cross section from Earth to top of atmosphere, in millimeters
- PwatSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ PwatSource See [1]_, Table 3-5
PwatUncertainty See [1]_, Table 3-6
AOD The broadband aerosol optical depth (broadband turbidity) in thousandths on the day indicated (e.g. 114 = 0.114)
- AODSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ AODSource See [1]_, Table 3-5
AODUncertainty See [1]_, Table 3-6
SnowDepth Snow depth in centimeters on the day indicated, (999 = missing data).
- SnowDepthSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ SnowDepthSource See [1]_, Table 3-5
SnowDepthUncertainty See [1]_, Table 3-6
LastSnowfall Number of days since last snowfall (maximum value of 88, where 88 = 88 or greater days; 99 = missing data)
- LastSnowfallSource See [1]_, Table 3-5, 8760x1 cell array of strings
+ LastSnowfallSource See [1]_, Table 3-5
LastSnowfallUncertainty See [1]_, Table 3-6
- PresentWeather See [1]_, Appendix B, an 8760x1 cell array of strings. Each string contains 10 numeric values. The string can be parsed to determine each of 10 observed weather metrics.
+ PresentWeather See [1]_, Appendix B. Each string contains 10 numeric values. The string can be parsed to determine each of 10 observed weather metrics.
============================ ==========================================================================================================================================================================
References
----------
-
.. [1] Marion, W and Urban, K. "Wilcox, S and Marion, W. "User's Manual
for TMY2s". NREL 1995.
- '''
-
+ """ # noqa: E501
# paste in the column info as one long line
string = '%2d%2d%2d%2d%4d%4d%4d%1s%1d%4d%1s%1d%4d%1s%1d%4d%1s%1d%4d%1s%1d%4d%1s%1d%4d%1s%1d%2d%1s%1d%2d%1s%1d%4d%1s%1d%4d%1s%1d%3d%1s%1d%4d%1s%1d%3d%1s%1d%3d%1s%1d%4d%1s%1d%5d%1s%1d%10d%3d%1s%1d%3d%1s%1d%3d%1s%1d%2d%1s%1d' # noqa: E501
columns = 'year,month,day,hour,ETR,ETRN,GHI,GHISource,GHIUncertainty,DNI,DNISource,DNIUncertainty,DHI,DHISource,DHIUncertainty,GHillum,GHillumSource,GHillumUncertainty,DNillum,DNillumSource,DNillumUncertainty,DHillum,DHillumSource,DHillumUncertainty,Zenithlum,ZenithlumSource,ZenithlumUncertainty,TotCld,TotCldSource,TotCldUncertainty,OpqCld,OpqCldSource,OpqCldUncertainty,DryBulb,DryBulbSource,DryBulbUncertainty,DewPoint,DewPointSource,DewPointUncertainty,RHum,RHumSource,RHumUncertainty,Pressure,PressureSource,PressureUncertainty,Wdir,WdirSource,WdirUncertainty,Wspd,WspdSource,WspdUncertainty,Hvis,HvisSource,HvisUncertainty,CeilHgt,CeilHgtSource,CeilHgtUncertainty,PresentWeather,Pwat,PwatSource,PwatUncertainty,AOD,AODSource,AODUncertainty,SnowDepth,SnowDepthSource,SnowDepthUncertainty,LastSnowfall,LastSnowfallSource,LastSnowfallUncertaint' # noqa: E501
@@ -391,7 +397,7 @@ def read_tmy2(filename):
def _parsemeta_tmy2(columns, line):
- """Retrieves metadata from the top line of the tmy2 file.
+ """Retrieve metadata from the top line of the tmy2 file.
Parameters
----------
diff --git a/pvlib/irradiance.py b/pvlib/irradiance.py
index 3de4d96f65..f6d166d44c 100644
--- a/pvlib/irradiance.py
+++ b/pvlib/irradiance.py
@@ -12,6 +12,7 @@
import pandas as pd
from pvlib import atmosphere, solarposition, tools
+import pvlib # used to avoid dni name collision in complete_irradiance
# see References section of get_ground_diffuse function
@@ -304,7 +305,7 @@ def beam_component(surface_tilt, surface_azimuth, solar_zenith, solar_azimuth,
def get_total_irradiance(surface_tilt, surface_azimuth,
solar_zenith, solar_azimuth,
dni, ghi, dhi, dni_extra=None, airmass=None,
- albedo=.25, surface_type=None,
+ albedo=0.25, surface_type=None,
model='isotropic',
model_perez='allsitescomposite1990'):
r"""
@@ -344,7 +345,7 @@ def get_total_irradiance(surface_tilt, surface_azimuth,
airmass : None or numeric, default None
Relative airmass (not adjusted for pressure). [unitless]
albedo : numeric, default 0.25
- Surface albedo. [unitless]
+ Ground surface albedo. [unitless]
surface_type : None or str, default None
Surface type. See :py:func:`~pvlib.irradiance.get_ground_diffuse` for
the list of accepted values.
@@ -739,7 +740,8 @@ def klucher(surface_tilt, surface_azimuth, dhi, ghi, solar_zenith,
def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
- solar_zenith=None, solar_azimuth=None, projection_ratio=None):
+ solar_zenith=None, solar_azimuth=None, projection_ratio=None,
+ return_components=False):
r'''
Determine diffuse irradiance from the sky on a tilted surface using
Hay & Davies' 1980 model
@@ -790,10 +792,27 @@ def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
projection. Must supply ``solar_zenith`` and ``solar_azimuth``
or supply ``projection_ratio``.
+ return_components : bool, default False
+ Flag used to decide whether to return the calculated diffuse components
+ or not.
+
Returns
--------
+ numeric, OrderedDict, or DataFrame
+ Return type controlled by `return_components` argument.
+ If ``return_components=False``, `sky_diffuse` is returned.
+ If ``return_components=True``, `diffuse_components` is returned.
+
sky_diffuse : numeric
- The sky diffuse component of the solar radiation.
+ The sky diffuse component of the solar radiation on a tilted
+ surface.
+
+ diffuse_components : OrderedDict (array input) or DataFrame (Series input)
+ Keys/columns are:
+ * sky_diffuse: Total sky diffuse
+ * isotropic
+ * circumsolar
+ * horizon
Notes
------
@@ -830,10 +849,25 @@ def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
term1 = 1 - AI
term2 = 0.5 * (1 + tools.cosd(surface_tilt))
- sky_diffuse = dhi * (AI * Rb + term1 * term2)
- sky_diffuse = np.maximum(sky_diffuse, 0)
+ poa_isotropic = np.maximum(dhi * term1 * term2, 0)
+ poa_circumsolar = np.maximum(dhi * (AI * Rb), 0)
+ sky_diffuse = poa_isotropic + poa_circumsolar
- return sky_diffuse
+ if return_components:
+ diffuse_components = OrderedDict()
+ diffuse_components['sky_diffuse'] = sky_diffuse
+
+ # Calculate the individual components
+ diffuse_components['isotropic'] = poa_isotropic
+ diffuse_components['circumsolar'] = poa_circumsolar
+ diffuse_components['horizon'] = np.where(
+ np.isnan(diffuse_components['isotropic']), np.nan, 0.)
+
+ if isinstance(sky_diffuse, pd.Series):
+ diffuse_components = pd.DataFrame(diffuse_components)
+ return diffuse_components
+ else:
+ return sky_diffuse
def reindl(surface_tilt, surface_azimuth, dhi, dni, ghi, dni_extra,
@@ -1872,7 +1906,7 @@ def gti_dirint(poa_global, aoi, solar_zenith, solar_azimuth, times,
applied.
albedo : numeric, default 0.25
- Surface albedo
+ Ground surface albedo. [unitless]
model : String, default 'perez'
Irradiance model. See :py:func:`get_sky_diffuse` for allowed values.
@@ -2915,3 +2949,67 @@ def dni(ghi, dhi, zenith, clearsky_dni=None, clearsky_tolerance=1.1,
(zenith < zenith_threshold_for_zero_dni) &
(dni > max_dni)] = max_dni
return dni
+
+
+def complete_irradiance(solar_zenith,
+ ghi=None,
+ dhi=None,
+ dni=None,
+ dni_clear=None):
+ r"""
+ Use the component sum equations to calculate the missing series, using
+ the other available time series. One of the three parameters (ghi, dhi,
+ dni) is passed as None, and the other associated series passed are used to
+ calculate the missing series value.
+
+ The "component sum" or "closure" equation relates the three
+ primary irradiance components as follows:
+
+ .. math::
+
+ GHI = DHI + DNI \cos(\theta_z)
+
+ Parameters
+ ----------
+ solar_zenith : Series
+ Zenith angles in decimal degrees, with datetime index.
+ Angles must be >=0 and <=180. Must have the same datetime index
+ as ghi, dhi, and dni series, when available.
+ ghi : Series, optional
+ Pandas series of dni data, with datetime index. Must have the same
+ datetime index as dni, dhi, and zenith series, when available.
+ dhi : Series, optional
+ Pandas series of dni data, with datetime index. Must have the same
+ datetime index as ghi, dni, and zenith series, when available.
+ dni : Series, optional
+ Pandas series of dni data, with datetime index. Must have the same
+ datetime index as ghi, dhi, and zenith series, when available.
+ dni_clear : Series, optional
+ Pandas series of clearsky dni data. Must have the same datetime index
+ as ghi, dhi, dni, and zenith series, when available. See
+ :py:func:`dni` for details.
+
+ Returns
+ -------
+ component_sum_df : Dataframe
+ Pandas series of 'ghi', 'dhi', and 'dni' columns with datetime index
+ """
+ if ghi is not None and dhi is not None and dni is None:
+ dni = pvlib.irradiance.dni(ghi, dhi, solar_zenith,
+ clearsky_dni=dni_clear,
+ clearsky_tolerance=1.1)
+ elif dni is not None and dhi is not None and ghi is None:
+ ghi = (dhi + dni * tools.cosd(solar_zenith))
+ elif dni is not None and ghi is not None and dhi is None:
+ dhi = (ghi - dni * tools.cosd(solar_zenith))
+ else:
+ raise ValueError(
+ "Please check that exactly one of ghi, dhi and dni parameters "
+ "is set to None"
+ )
+ # Merge the outputs into a master dataframe containing 'ghi', 'dhi',
+ # and 'dni' columns
+ component_sum_df = pd.DataFrame({'ghi': ghi,
+ 'dhi': dhi,
+ 'dni': dni})
+ return component_sum_df
diff --git a/pvlib/location.py b/pvlib/location.py
index ddd2d1b96a..6e8e89ee00 100644
--- a/pvlib/location.py
+++ b/pvlib/location.py
@@ -4,13 +4,15 @@
# Will Holmgren, University of Arizona, 2014-2016.
+import os
import datetime
-import warnings
import pandas as pd
import pytz
+import h5py
from pvlib import solarposition, clearsky, atmosphere, irradiance
+from pvlib.tools import _degrees_to_index
class Location:
"""
@@ -356,3 +358,88 @@ def get_sun_rise_set_transit(self, times, method='pyephem', **kwargs):
'one of pyephem, spa, geometric'
.format(method))
return result
+
+
+def lookup_altitude(latitude, longitude):
+ """
+ Look up location altitude from low-resolution altitude map
+ supplied with pvlib. The data for this map comes from multiple open data
+ sources with varying resolutions aggregated by Mapzen.
+
+ More details can be found here
+ https://github.com/tilezen/joerd/blob/master/docs/data-sources.md
+
+ Altitudes from this map are a coarse approximation and can have
+ significant errors (100+ meters) introduced by downsampling and
+ source data resolution.
+
+ Parameters
+ ----------
+ latitude : float.
+ Positive is north of the equator.
+ Use decimal degrees notation.
+
+ longitude : float.
+ Positive is east of the prime meridian.
+ Use decimal degrees notation.
+
+ Returns
+ -------
+ altitude : float
+ The altitude of the location in meters.
+
+ Notes
+ -----------
+ Attributions:
+
+ * ArcticDEM terrain data DEM(s) were created from DigitalGlobe, Inc.,
+ imagery and funded under National Science Foundation awards 1043681,
+ 1559691, and 1542736;
+ * Australia terrain data © Commonwealth of Australia
+ (Geoscience Australia) 2017;
+ * Austria terrain data © offene Daten Österreichs - Digitales
+ Geländemodell (DGM) Österreich;
+ * Canada terrain data contains information licensed under the Open
+ Government Licence - Canada;
+ * Europe terrain data produced using Copernicus data and information
+ funded by the European Union - EU-DEM layers;
+ * Global ETOPO1 terrain data U.S. National Oceanic and Atmospheric
+ Administration
+ * Mexico terrain data source: INEGI, Continental relief, 2016;
+ * New Zealand terrain data Copyright 2011 Crown copyright (c) Land
+ Information New Zealand and the New Zealand Government
+ (All rights reserved);
+ * Norway terrain data © Kartverket;
+ * United Kingdom terrain data © Environment Agency copyright and/or
+ database right 2015. All rights reserved;
+ * United States 3DEP (formerly NED) and global GMTED2010 and SRTM
+ terrain data courtesy of the U.S. Geological Survey.
+
+ References
+ ----------
+ .. [1] `Mapzen, Linux foundation project for open data maps
+ `_
+ .. [2] `Joerd, tool for downloading and processing DEMs, Used by Mapzen
+ `_
+ .. [3] `AWS, Open Data Registry Terrain Tiles
+ `_
+
+ """
+
+ pvlib_path = os.path.dirname(os.path.abspath(__file__))
+ filepath = os.path.join(pvlib_path, 'data', 'Altitude.h5')
+
+ latitude_index = _degrees_to_index(latitude, coordinate='latitude')
+ longitude_index = _degrees_to_index(longitude, coordinate='longitude')
+
+ with h5py.File(filepath, 'r') as alt_h5_file:
+ alt = alt_h5_file['Altitude'][latitude_index, longitude_index]
+
+ # 255 is a special value that means nodata. Fallback to 0 if nodata.
+ if alt == 255:
+ return 0
+ # Altitude is encoded in 28 meter steps from -450 meters to 6561 meters
+ # There are 0-254 possible altitudes, with 255 reserved for nodata.
+ alt *= 28
+ alt -= 450
+ return float(alt)
diff --git a/pvlib/modelchain.py b/pvlib/modelchain.py
index 2798c39a68..ccf2e614f3 100644
--- a/pvlib/modelchain.py
+++ b/pvlib/modelchain.py
@@ -268,7 +268,7 @@ class ModelChainResult:
_per_array_fields = {'total_irrad', 'aoi', 'aoi_modifier',
'spectral_modifier', 'cell_temperature',
'effective_irradiance', 'dc', 'diode_params',
- 'dc_ohmic_losses', 'weather'}
+ 'dc_ohmic_losses', 'weather', 'albedo'}
# system-level information
solar_position: Optional[pd.DataFrame] = field(default=None)
@@ -366,6 +366,10 @@ class ModelChainResult:
"""DatetimeIndex containing a copy of the index of the input weather data.
"""
+ albedo: Optional[PerArray[pd.Series]] = None
+ """Series (or tuple of Series, one for each array) containing albedo.
+ """
+
def _result_type(self, value):
"""Coerce `value` to the correct type according to
``self._singleton_tuples``."""
@@ -1285,13 +1289,13 @@ def complete_irradiance(self, weather):
self._assign_times()
self.results.solar_position = self.location.get_solarposition(
self.results.times, method=self.solar_position_method)
-
+ # Calculate the irradiance using the component sum equations,
+ # if needed
if isinstance(weather, tuple):
for w in self.results.weather:
self._complete_irradiance(w)
else:
self._complete_irradiance(self.results.weather)
-
return self
def _complete_irradiance(self, weather):
@@ -1300,26 +1304,32 @@ def _complete_irradiance(self, weather):
"Results can be too high or negative.\n" +
"Help to improve this function on github:\n" +
"https://github.com/pvlib/pvlib-python \n")
-
if {'ghi', 'dhi'} <= icolumns and 'dni' not in icolumns:
clearsky = self.location.get_clearsky(
weather.index, solar_position=self.results.solar_position)
- weather.loc[:, 'dni'] = pvlib.irradiance.dni(
- weather.loc[:, 'ghi'], weather.loc[:, 'dhi'],
- self.results.solar_position.zenith,
- clearsky_dni=clearsky['dni'],
- clearsky_tolerance=1.1)
+ complete_irrad_df = pvlib.irradiance.complete_irradiance(
+ solar_zenith=self.results.solar_position.zenith,
+ ghi=weather.ghi,
+ dhi=weather.dhi,
+ dni=None,
+ dni_clear=clearsky.dni)
+ weather.loc[:, 'dni'] = complete_irrad_df.dni
elif {'dni', 'dhi'} <= icolumns and 'ghi' not in icolumns:
warnings.warn(wrn_txt, UserWarning)
- weather.loc[:, 'ghi'] = (
- weather.dhi + weather.dni *
- tools.cosd(self.results.solar_position.zenith)
- )
+ complete_irrad_df = pvlib.irradiance.complete_irradiance(
+ solar_zenith=self.results.solar_position.zenith,
+ ghi=None,
+ dhi=weather.dhi,
+ dni=weather.dni)
+ weather.loc[:, 'ghi'] = complete_irrad_df.ghi
elif {'dni', 'ghi'} <= icolumns and 'dhi' not in icolumns:
warnings.warn(wrn_txt, UserWarning)
- weather.loc[:, 'dhi'] = (
- weather.ghi - weather.dni *
- tools.cosd(self.results.solar_position.zenith))
+ complete_irrad_df = pvlib.irradiance.complete_irradiance(
+ solar_zenith=self.results.solar_position.zenith,
+ ghi=weather.ghi,
+ dhi=None,
+ dni=weather.dni)
+ weather.loc[:, 'dhi'] = complete_irrad_df.dhi
def _prep_inputs_solar_pos(self, weather):
"""
@@ -1339,6 +1349,17 @@ def _prep_inputs_solar_pos(self, weather):
**kwargs)
return self
+ def _prep_inputs_albedo(self, weather):
+ """
+ Get albedo from weather
+ """
+ try:
+ self.results.albedo = _tuple_from_dfs(weather, 'albedo')
+ except KeyError:
+ self.results.albedo = tuple([
+ a.albedo for a in self.system.arrays])
+ return self
+
def _prep_inputs_airmass(self):
"""
Assign airmass
@@ -1471,11 +1492,17 @@ def prepare_inputs(self, weather):
Parameters
----------
- weather : DataFrame, or tuple or list of DataFrame
+ weather : DataFrame, or tuple or list of DataFrames
Required column names include ``'dni'``, ``'ghi'``, ``'dhi'``.
- Optional column names are ``'wind_speed'``, ``'temp_air'``; if not
+ Optional column names are ``'wind_speed'``, ``'temp_air'``,
+ ``'albedo'``.
+
+ If optional columns ``'wind_speed'``, ``'temp_air'`` are not
provided, air temperature of 20 C and wind speed
- of 0 m/s will be added to the DataFrame.
+ of 0 m/s will be added to the ``weather`` DataFrame.
+
+ If optional column ``'albedo'`` is provided, albedo values in the
+ ModelChain's PVSystem.arrays are ignored.
If `weather` is a tuple or list, it must be of the same length and
order as the Arrays of the ModelChain's PVSystem.
@@ -1494,7 +1521,7 @@ def prepare_inputs(self, weather):
Notes
-----
Assigns attributes to ``results``: ``times``, ``weather``,
- ``solar_position``, ``airmass``, ``total_irrad``, ``aoi``
+ ``solar_position``, ``airmass``, ``total_irrad``, ``aoi``, ``albedo``.
See also
--------
@@ -1507,6 +1534,7 @@ def prepare_inputs(self, weather):
self._prep_inputs_solar_pos(weather)
self._prep_inputs_airmass()
+ self._prep_inputs_albedo(weather)
# PVSystem.get_irradiance and SingleAxisTracker.get_irradiance
# and PVSystem.get_aoi and SingleAxisTracker.get_aoi
@@ -1531,6 +1559,7 @@ def prepare_inputs(self, weather):
_tuple_from_dfs(self.results.weather, 'dni'),
_tuple_from_dfs(self.results.weather, 'ghi'),
_tuple_from_dfs(self.results.weather, 'dhi'),
+ albedo=self.results.albedo,
airmass=self.results.airmass['airmass_relative'],
model=self.transposition_model
)
@@ -1724,16 +1753,32 @@ def run_model(self, weather):
Parameters
----------
weather : DataFrame, or tuple or list of DataFrame
- Irradiance column names must include ``'dni'``, ``'ghi'``, and
- ``'dhi'``. If optional columns ``'temp_air'`` and ``'wind_speed'``
+ Column names must include:
+
+ - ``'dni'``
+ - ``'ghi'``
+ - ``'dhi'``
+
+ Optional columns are:
+
+ - ``'temp_air'``
+ - ``'cell_temperature'``
+ - ``'module_temperature'``
+ - ``'wind_speed'``
+ - ``'albedo'``
+
+ If optional columns ``'temp_air'`` and ``'wind_speed'``
are not provided, air temperature of 20 C and wind speed of 0 m/s
are added to the DataFrame. If optional column
``'cell_temperature'`` is provided, these values are used instead
- of `temperature_model`. If optional column `module_temperature`
- is provided, `temperature_model` must be ``'sapm'``.
+ of `temperature_model`. If optional column ``'module_temperature'``
+ is provided, ``temperature_model`` must be ``'sapm'``.
- If list or tuple, must be of the same length and order as the
- Arrays of the ModelChain's PVSystem.
+ If optional column ``'albedo'`` is provided, ``'albedo'`` may not
+ be present on the ModelChain's PVSystem.Arrays.
+
+ If weather is a list or tuple, it must be of the same length and
+ order as the Arrays of the ModelChain's PVSystem.
Returns
-------
diff --git a/pvlib/pvsystem.py b/pvlib/pvsystem.py
index 6bb89f34a3..77560e04c0 100644
--- a/pvlib/pvsystem.py
+++ b/pvlib/pvsystem.py
@@ -134,7 +134,7 @@ class PVSystem:
a single array is created from the other parameters (e.g.
`surface_tilt`, `surface_azimuth`). Must contain at least one Array,
if length of arrays is 0 a ValueError is raised. If `arrays` is
- specified the following parameters are ignored:
+ specified the following PVSystem parameters are ignored:
- `surface_tilt`
- `surface_azimuth`
@@ -157,13 +157,14 @@ class PVSystem:
North=0, East=90, South=180, West=270.
albedo : None or float, default None
- The ground albedo. If ``None``, will attempt to use
- ``surface_type`` and ``irradiance.SURFACE_ALBEDOS``
- to lookup albedo.
+ Ground surface albedo. If ``None``, then ``surface_type`` is used
+ to look up a value in ``irradiance.SURFACE_ALBEDOS``.
+ If ``surface_type`` is also None then a ground surface albedo
+ of 0.25 is used.
surface_type : None or string, default None
- The ground surface type. See ``irradiance.SURFACE_ALBEDOS``
- for valid values.
+ The ground surface type. See ``irradiance.SURFACE_ALBEDOS`` for
+ valid values.
module : None or string, default None
The model name of the modules.
@@ -333,30 +334,33 @@ def get_aoi(self, solar_zenith, solar_azimuth):
@_unwrap_single_value
def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
- dni_extra=None, airmass=None, model='haydavies',
- **kwargs):
+ dni_extra=None, airmass=None, albedo=None,
+ model='haydavies', **kwargs):
"""
Uses the :py:func:`irradiance.get_total_irradiance` function to
- calculate the plane of array irradiance components on a tilted
- surface defined by ``self.surface_tilt``,
- ``self.surface_azimuth``, and ``self.albedo``.
+ calculate the plane of array irradiance components on the tilted
+ surfaces defined by each array's ``surface_tilt`` and
+ ``surface_azimuth``.
Parameters
----------
- solar_zenith : float or Series.
+ solar_zenith : float or Series
Solar zenith angle.
- solar_azimuth : float or Series.
+ solar_azimuth : float or Series
Solar azimuth angle.
dni : float or Series or tuple of float or Series
- Direct Normal Irradiance
+ Direct Normal Irradiance. [W/m2]
ghi : float or Series or tuple of float or Series
- Global horizontal irradiance
+ Global horizontal irradiance. [W/m2]
dhi : float or Series or tuple of float or Series
- Diffuse horizontal irradiance
- dni_extra : None, float or Series, default None
- Extraterrestrial direct normal irradiance
+ Diffuse horizontal irradiance. [W/m2]
+ dni_extra : None, float, Series or tuple of float or Series,\
+ default None
+ Extraterrestrial direct normal irradiance. [W/m2]
airmass : None, float or Series, default None
- Airmass
+ Airmass. [unitless]
+ albedo : None, float or Series, default None
+ Ground surface albedo. [unitless]
model : String, default 'haydavies'
Irradiance model.
@@ -376,17 +380,24 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
poa_irradiance : DataFrame or tuple of DataFrame
Column names are: ``'poa_global', 'poa_direct', 'poa_diffuse',
'poa_sky_diffuse', 'poa_ground_diffuse'``.
+
+ See also
+ --------
+ pvlib.irradiance.get_total_irradiance
"""
dni = self._validate_per_array(dni, system_wide=True)
ghi = self._validate_per_array(ghi, system_wide=True)
dhi = self._validate_per_array(dhi, system_wide=True)
+
+ albedo = self._validate_per_array(albedo, system_wide=True)
+
return tuple(
array.get_irradiance(solar_zenith, solar_azimuth,
dni, ghi, dhi,
- dni_extra, airmass, model,
- **kwargs)
- for array, dni, ghi, dhi in zip(
- self.arrays, dni, ghi, dhi
+ dni_extra=dni_extra, airmass=airmass,
+ albedo=albedo, model=model, **kwargs)
+ for array, dni, ghi, dhi, albedo in zip(
+ self.arrays, dni, ghi, dhi, albedo
)
)
@@ -1258,14 +1269,14 @@ class Array:
If not provided, a FixedMount with zero tilt is used.
albedo : None or float, default None
- The ground albedo. If ``None``, will attempt to use
- ``surface_type`` to look up an albedo value in
- ``irradiance.SURFACE_ALBEDOS``. If a surface albedo
- cannot be found then 0.25 is used.
+ Ground surface albedo. If ``None``, then ``surface_type`` is used
+ to look up a value in ``irradiance.SURFACE_ALBEDOS``.
+ If ``surface_type`` is also None then a ground surface albedo
+ of 0.25 is used.
surface_type : None or string, default None
- The ground surface type. See ``irradiance.SURFACE_ALBEDOS``
- for valid values.
+ The ground surface type. See ``irradiance.SURFACE_ALBEDOS`` for valid
+ values.
module : None or string, default None
The model name of the modules.
@@ -1425,15 +1436,14 @@ def get_aoi(self, solar_zenith, solar_azimuth):
solar_zenith, solar_azimuth)
def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
- dni_extra=None, airmass=None, model='haydavies',
- **kwargs):
+ dni_extra=None, airmass=None, albedo=None,
+ model='haydavies', **kwargs):
"""
Get plane of array irradiance components.
Uses the :py:func:`pvlib.irradiance.get_total_irradiance` function to
calculate the plane of array irradiance components for a surface
- defined by ``self.surface_tilt`` and ``self.surface_azimuth`` with
- albedo ``self.albedo``.
+ defined by ``self.surface_tilt`` and ``self.surface_azimuth``.
Parameters
----------
@@ -1442,15 +1452,17 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
solar_azimuth : float or Series.
Solar azimuth angle.
dni : float or Series
- Direct Normal Irradiance
- ghi : float or Series
+ Direct normal irradiance. [W/m2]
+ ghi : float or Series. [W/m2]
Global horizontal irradiance
dhi : float or Series
- Diffuse horizontal irradiance
+ Diffuse horizontal irradiance. [W/m2]
dni_extra : None, float or Series, default None
- Extraterrestrial direct normal irradiance
+ Extraterrestrial direct normal irradiance. [W/m2]
airmass : None, float or Series, default None
- Airmass
+ Airmass. [unitless]
+ albedo : None, float or Series, default None
+ Ground surface albedo. [unitless]
model : String, default 'haydavies'
Irradiance model.
@@ -1463,7 +1475,14 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
poa_irradiance : DataFrame
Column names are: ``'poa_global', 'poa_direct', 'poa_diffuse',
'poa_sky_diffuse', 'poa_ground_diffuse'``.
+
+ See also
+ --------
+ :py:func:`pvlib.irradiance.get_total_irradiance`
"""
+ if albedo is None:
+ albedo = self.albedo
+
# not needed for all models, but this is easier
if dni_extra is None:
dni_extra = irradiance.get_extra_radiation(solar_zenith.index)
@@ -1478,8 +1497,8 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
dni, ghi, dhi,
dni_extra=dni_extra,
airmass=airmass,
+ albedo=albedo,
model=model,
- albedo=self.albedo,
**kwargs)
def get_iam(self, aoi, iam_model='physical'):
@@ -3293,7 +3312,7 @@ def dc_ohms_from_percent(vmp_ref, imp_ref, dc_ohmic_percent,
See Also
--------
- :py:func:`~pvlib.pvsystem.dc_ohmic_losses`
+ pvlib.pvsystem.dc_ohmic_losses
References
----------
@@ -3328,7 +3347,7 @@ def dc_ohmic_losses(resistance, current):
See Also
--------
- :py:func:`~pvlib.pvsystem.dc_ohms_from_percent`
+ pvlib.pvsystem.dc_ohms_from_percent
References
----------
diff --git a/pvlib/snow.py b/pvlib/snow.py
index bf40c7b995..c06b317a2f 100644
--- a/pvlib/snow.py
+++ b/pvlib/snow.py
@@ -5,7 +5,7 @@
import numpy as np
import pandas as pd
-from pvlib.tools import sind
+from pvlib.tools import sind, cosd, tand
def _time_delta_in_hours(times):
@@ -185,3 +185,140 @@ def dc_loss_nrel(snow_coverage, num_strings):
Available at https://www.nrel.gov/docs/fy18osti/67399.pdf
'''
return np.ceil(snow_coverage * num_strings) / num_strings
+
+
+def _townsend_effective_snow(snow_total, snow_events):
+ '''
+ Calculates effective snow using the total snowfall received each month and
+ the number of snowfall events each month.
+
+ Parameters
+ ----------
+ snow_total : array-like
+ Snow received each month. Referred to as S in [1]_. [cm]
+
+ snow_events : array-like
+ Number of snowfall events each month. Referred to as N in [1]_. [-]
+
+ Returns
+ -------
+ effective_snowfall : array-like
+ Effective snowfall as defined in the Townsend model. [cm]
+
+ References
+ ----------
+ .. [1] Townsend, Tim & Powers, Loren. (2011). Photovoltaics and snow: An
+ update from two winters of measurements in the SIERRA. 37th IEEE
+ Photovoltaic Specialists Conference, Seattle, WA, USA.
+ :doi:`10.1109/PVSC.2011.6186627`
+ '''
+ snow_events_no_zeros = np.maximum(snow_events, 1)
+ effective_snow = 0.5 * snow_total * (1 + 1 / snow_events_no_zeros)
+ return np.where(snow_events > 0, effective_snow, 0)
+
+
+def loss_townsend(snow_total, snow_events, surface_tilt, relative_humidity,
+ temp_air, poa_global, slant_height, lower_edge_height,
+ angle_of_repose=40):
+ '''
+ Calculates monthly snow loss based on the Townsend monthly snow loss
+ model [1]_.
+
+ Parameters
+ ----------
+ snow_total : array-like
+ Snow received each month. Referred to as S in [1]_. [cm]
+
+ snow_events : array-like
+ Number of snowfall events each month. Referred to as N in [1]_. [-]
+
+ surface_tilt : float
+ Tilt angle of the array. [deg]
+
+ relative_humidity : array-like
+ Monthly average relative humidity. [%]
+
+ temp_air : array-like
+ Monthly average ambient temperature. [C]
+
+ poa_global : array-like
+ Monthly plane of array insolation. [Wh/m2]
+
+ slant_height : float
+ Row length in the slanted plane of array dimension. [m]
+
+ lower_edge_height : float
+ Distance from array lower edge to the ground. [m]
+
+ angle_of_repose : float, default 40
+ Piled snow angle, assumed to stabilize at 40°, the midpoint of
+ 25°-55° avalanching slope angles. [deg]
+
+ Returns
+ -------
+ loss : array-like
+ Monthly average DC capacity loss fraction due to snow coverage.
+
+ Notes
+ -----
+ This model has not been validated for tracking arrays; however, for
+ tracking arrays [1]_ suggests using the maximum rotation angle in place
+ of ``surface_tilt``.
+
+ References
+ ----------
+ .. [1] Townsend, Tim & Powers, Loren. (2011). Photovoltaics and snow: An
+ update from two winters of measurements in the SIERRA. 37th IEEE
+ Photovoltaic Specialists Conference, Seattle, WA, USA.
+ :doi:`10.1109/PVSC.2011.6186627`
+ '''
+
+ C1 = 5.7e04
+ C2 = 0.51
+
+ snow_total_prev = np.roll(snow_total, 1)
+ snow_events_prev = np.roll(snow_events, 1)
+
+ effective_snow = _townsend_effective_snow(snow_total, snow_events)
+ effective_snow_prev = _townsend_effective_snow(
+ snow_total_prev,
+ snow_events_prev
+ )
+ effective_snow_weighted = (
+ 1 / 3 * effective_snow_prev
+ + 2 / 3 * effective_snow
+ )
+ effective_snow_weighted_m = effective_snow_weighted / 100
+
+ lower_edge_height_clipped = np.maximum(lower_edge_height, 0.01)
+ gamma = (
+ slant_height
+ * effective_snow_weighted_m
+ * cosd(surface_tilt)
+ / (lower_edge_height_clipped**2 - effective_snow_weighted_m**2)
+ * 2
+ * tand(angle_of_repose)
+ )
+
+ ground_interference_term = 1 - C2 * np.exp(-gamma)
+ relative_humidity_fraction = relative_humidity / 100
+ temp_air_kelvin = temp_air + 273.15
+ effective_snow_weighted_in = effective_snow_weighted / 2.54
+ poa_global_kWh = poa_global / 1000
+
+ # Calculate Eqn. 3 in the reference.
+ # Although the reference says Eqn. 3 calculates percentage loss, the y-axis
+ # of Figure 7 indicates Eqn. 3 calculates fractional loss. Since the slope
+ # of the line in Figure 7 is the same as C1 in Eqn. 3, it is assumed that
+ # Eqn. 3 calculates fractional loss.
+ loss_fraction = (
+ C1
+ * effective_snow_weighted_in
+ * cosd(surface_tilt)**2
+ * ground_interference_term
+ * relative_humidity_fraction
+ / temp_air_kelvin**2
+ / poa_global_kWh**0.67
+ )
+
+ return np.clip(loss_fraction, 0, 1)
diff --git a/pvlib/spectrum/__init__.py b/pvlib/spectrum/__init__.py
index 36b3503d13..b3d838acfe 100644
--- a/pvlib/spectrum/__init__.py
+++ b/pvlib/spectrum/__init__.py
@@ -1 +1,3 @@
from pvlib.spectrum.spectrl2 import spectrl2 # noqa: F401
+from pvlib.spectrum.mismatch import (get_example_spectral_response, get_am15g,
+ calc_spectral_mismatch_field)
diff --git a/pvlib/spectrum/mismatch.py b/pvlib/spectrum/mismatch.py
new file mode 100644
index 0000000000..5db4649ddd
--- /dev/null
+++ b/pvlib/spectrum/mismatch.py
@@ -0,0 +1,237 @@
+"""
+The ``mismatch`` module provides functions for spectral mismatch calculations.
+"""
+
+import pvlib
+import numpy as np
+import pandas as pd
+from scipy.interpolate import interp1d
+import os
+
+
+def get_example_spectral_response(wavelength=None):
+ '''
+ Generate a generic smooth spectral response (SR) for tests and experiments.
+
+ Parameters
+ ----------
+ wavelength: 1-D sequence of numeric, optional
+ Wavelengths at which spectral response values are generated.
+ By default ``wavelength`` is from 280 to 1200 in 5 nm intervals. [nm]
+
+ Returns
+ -------
+ spectral_response : pandas.Series
+ The relative spectral response indexed by ``wavelength`` in nm. [-]
+
+ Notes
+ -----
+ This spectral response is based on measurements taken on a c-Si cell.
+ A small number of points near the measured curve are used to define
+ a cubic spline having no undue oscillations, as shown in [1]_. The spline
+ can be interpolated at arbitrary wavelengths to produce a continuous,
+ smooth curve , which makes it suitable for experimenting with spectral
+ data of different resolutions.
+
+ References
+ ----------
+ .. [1] Driesse, Anton, and Stein, Joshua. "Global Normal Spectral
+ Irradiance in Albuquerque: a One-Year Open Dataset for PV Research".
+ United States 2020. :doi:`10.2172/1814068`.
+ '''
+ # Contributed by Anton Driesse (@adriesse), PV Performance Labs. Aug. 2022
+
+ SR_DATA = np.array([[ 290, 0.00],
+ [ 350, 0.27],
+ [ 400, 0.37],
+ [ 500, 0.52],
+ [ 650, 0.71],
+ [ 800, 0.88],
+ [ 900, 0.97],
+ [ 950, 1.00],
+ [1000, 0.93],
+ [1050, 0.58],
+ [1100, 0.21],
+ [1150, 0.05],
+ [1190, 0.00]]).transpose()
+
+ if wavelength is None:
+ resolution = 5.0
+ wavelength = np.arange(280, 1200 + resolution, resolution)
+
+ interpolator = interp1d(SR_DATA[0], SR_DATA[1],
+ kind='cubic',
+ bounds_error=False,
+ fill_value=0.0,
+ copy=False,
+ assume_sorted=True)
+
+ sr = pd.Series(data=interpolator(wavelength), index=wavelength)
+
+ sr.index.name = 'wavelength'
+ sr.name = 'spectral_response'
+
+ return sr
+
+
+def get_am15g(wavelength=None):
+ '''
+ Read the ASTM G173-03 AM1.5 global spectrum on a 37-degree tilted surface,
+ optionally interpolated to the specified wavelength(s).
+
+ Global (tilted) irradiance includes direct and diffuse irradiance from sky
+ and ground reflections, and is more formally called hemispherical
+ irradiance (on a tilted surface). In the context of photovoltaic systems
+ the irradiance on a flat receiver is frequently called plane-of-array (POA)
+ irradiance.
+
+ Parameters
+ ----------
+ wavelength: 1-D sequence of numeric, optional
+ Wavelengths at which the spectrum is interpolated.
+ By default the 2002 wavelengths of the standard are returned. [nm]
+
+ Returns
+ -------
+ am15g: pandas.Series
+ The AM1.5g standard spectrum indexed by ``wavelength``. [(W/m^2)/nm]
+
+ Notes
+ -----
+ If ``wavelength`` is specified this function uses linear interpolation.
+
+ If the values in ``wavelength`` are too widely spaced, the integral of the
+ spectrum may deviate from the standard value of 1000.37 W/m^2.
+
+ The values in the data file provided with pvlib-python are copied from an
+ Excel file distributed by NREL, which is found here:
+ https://www.nrel.gov/grid/solar-resource/assets/data/astmg173.xls
+
+ More information about reference spectra is found here:
+ https://www.nrel.gov/grid/solar-resource/spectra-am1.5.html
+
+ References
+ ----------
+ .. [1] ASTM "G173-03 Standard Tables for Reference Solar Spectral
+ Irradiances: Direct Normal and Hemispherical on 37° Tilted Surface."
+ '''
+ # Contributed by Anton Driesse (@adriesse), PV Performance Labs. Aug. 2022
+
+ pvlib_path = pvlib.__path__[0]
+ filepath = os.path.join(pvlib_path, 'data', 'astm_g173_am15g.csv')
+
+ am15g = pd.read_csv(filepath, index_col=0).squeeze()
+
+ if wavelength is not None:
+ interpolator = interp1d(am15g.index, am15g,
+ kind='linear',
+ bounds_error=False,
+ fill_value=0.0,
+ copy=False,
+ assume_sorted=True)
+
+ am15g = pd.Series(data=interpolator(wavelength), index=wavelength)
+
+ am15g.index.name = 'wavelength'
+ am15g.name = 'am15g'
+
+ return am15g
+
+
+def calc_spectral_mismatch_field(sr, e_sun, e_ref=None):
+ """
+ Calculate spectral mismatch between a test device and broadband reference
+ device under specified solar spectral irradiance conditions.
+
+ Parameters
+ ----------
+ sr: pandas.Series
+ The relative spectral response of one (photovoltaic) test device.
+ The index of the Series must contain wavelength values in nm. [-]
+
+ e_sun: pandas.DataFrame or pandas.Series
+ One or more measured solar irradiance spectra in a pandas.DataFrame
+ having wavelength in nm as column index. A single spectrum may be
+ be given as a pandas.Series having wavelength in nm as index.
+ [(W/m^2)/nm]
+
+ e_ref: pandas.Series, optional
+ The reference spectrum to use for the mismatch calculation.
+ The index of the Series must contain wavelength values in nm.
+ The default is the ASTM G173-03 global tilted spectrum. [(W/m^2)/nm]
+
+ Returns
+ -------
+ smm: pandas.Series or float if a single measured spectrum is provided. [-]
+
+ Notes
+ -----
+ Measured solar spectral irradiance usually covers a wavelength range
+ that is smaller than the range considered as broadband irradiance.
+ The infrared limit for the former typically lies around 1100 or 1600 nm,
+ whereas the latter extends to around 2800 or 4000 nm. To avoid imbalance
+ between the magnitudes of the integrated spectra (the broadband values)
+ this function truncates the reference spectrum to the same range as the
+ measured (or simulated) field spectra. The assumption implicit in this
+ truncation is that the energy in the unmeasured wavelength range
+ is the same fraction of the broadband energy for both the measured
+ spectra and the reference spectrum.
+
+ If the default reference spectrum is used it is linearly interpolated
+ to the wavelengths of the measured spectrum, but if a reference spectrum
+ is provided via the parameter ``e_ref`` it is used without change. This
+ makes it possible to avoid interpolation, or to use a different method of
+ interpolation, or to avoid truncation.
+
+ The spectral response is linearly interpolated to the wavelengths of each
+ spectrum with which is it multiplied internally (``e_sun`` and ``e_ref``).
+ If the wavelengths of the spectral response already match one or both
+ of these spectra interpolation has no effect; therefore, another type of
+ interpolation could be used to process ``sr`` before calling this function.
+
+ The standards describing mismatch calculations focus on indoor laboratory
+ applications, but are applicable to outdoor performance as well.
+ The 2016 version of ASTM E973 [1]_ is somewhat more difficult to
+ read than the 2010 version [2]_ because it includes adjustments for
+ the temperature dependency of spectral response, which led to a
+ formulation using quantum efficiency (QE).
+ IEC 60904-7 is clearer and also discusses the use of a broadband
+ reference device. [3]_
+
+ References
+ ----------
+ .. [1] ASTM "E973-16 Standard Test Method for Determination of the
+ Spectral Mismatch Parameter Between a Photovoltaic Device and a
+ Photovoltaic Reference Cell" :doi:`10.1520/E0973-16R20`
+ .. [2] ASTM "E973-10 Standard Test Method for Determination of the
+ Spectral Mismatch Parameter Between a Photovoltaic Device and a
+ Photovoltaic Reference Cell" :doi:`10.1520/E0973-10`
+ .. [3] IEC 60904-7 "Computation of the spectral mismatch correction
+ for measurements of photovoltaic devices"
+ """
+ # Contributed by Anton Driesse (@adriesse), PV Performance Labs. Aug. 2022
+
+ # get the reference spectrum at wavelengths matching the measured spectra
+ if e_ref is None:
+ e_ref = get_am15g(wavelength=e_sun.T.index)
+
+ # interpolate the sr at the wavelengths of the spectra
+ # reference spectrum wavelengths may differ if e_ref is from caller
+ sr_sun = np.interp(e_sun.T.index, sr.index, sr, left=0.0, right=0.0)
+ sr_ref = np.interp(e_ref.T.index, sr.index, sr, left=0.0, right=0.0)
+
+ # a helper function to make usable fraction calculations more readable
+ def integrate(e):
+ return np.trapz(e, x=e.T.index, axis=-1)
+
+ # calculate usable fractions
+ uf_sun = integrate(e_sun * sr_sun) / integrate(e_sun)
+ uf_ref = integrate(e_ref * sr_ref) / integrate(e_ref)
+
+ # mismatch is the ratio or quotient of the usable fractions
+ smm = uf_sun / uf_ref
+
+ if isinstance(e_sun, pd.DataFrame):
+ smm = pd.Series(smm, index=e_sun.index)
+
+ return smm
diff --git a/pvlib/temperature.py b/pvlib/temperature.py
index 6a4ed1fd6e..e52032f6ec 100644
--- a/pvlib/temperature.py
+++ b/pvlib/temperature.py
@@ -655,7 +655,6 @@ def fuentes(poa_global, temp_air, wind_speed, noct_installed, module_height=5,
# iterate through timeseries inputs
sun0 = 0
- tmod0 = 293.15
# n.b. the way Fuentes calculates the first timedelta makes it seem like
# the value doesn't matter -- rather than recreate it here, just assume
@@ -839,7 +838,8 @@ def prilliman(temp_cell, wind_speed, unit_mass=11.1, coefficients=None):
.. warning::
This implementation requires the time series inputs to be regularly
sampled in time with frequency less than 20 minutes. Data with
- irregular time steps should be resampled prior to using this function.
+ irregular time steps (including from data gaps, missing leap days,
+ etc) should be resampled prior to using this function.
Parameters
----------
@@ -977,3 +977,419 @@ def prilliman(temp_cell, wind_speed, unit_mass=11.1, coefficients=None):
smoothed[0] = temp_cell.values[0]
smoothed = pd.Series(smoothed, index=temp_cell.index)
return smoothed
+
+
+def generic_linear(poa_global, temp_air, wind_speed, u_const, du_wind,
+ module_efficiency, absorptance):
+ """
+ Calculate cell temperature using a generic linear heat loss factor model.
+
+ The parameters for this model can be obtained from other model
+ parameters using :py:class:`GenericLinearModel`. A description of this
+ model and its relationship to other temperature models is found in [1]_.
+
+ Parameters
+ ----------
+ poa_global : numeric
+ Total incident irradiance [W/m^2].
+
+ temp_air : numeric
+ Ambient dry bulb temperature [C].
+
+ wind_speed : numeric
+ Wind speed at a height of 10 meters [m/s].
+
+ u_const : float
+ Combined heat transfer coefficient at zero wind speed [(W/m^2)/C]
+
+ du_wind : float
+ Influence of wind speed on combined heat transfer coefficient
+ [(W/m^2)/C/(m/s)]
+
+ module_efficiency : float
+ The electrical efficiency of the module. [-]
+
+ absorptance : float
+ The light absorptance of the module. [-]
+
+ Returns
+ -------
+ numeric, values in degrees C.
+
+ References
+ ----------
+ .. [1] A. Driesse et al, "PV Module Operating Temperature
+ Model Equivalence and Parameter Translation". 2022 IEEE
+ Photovoltaic Specialists Conference (PVSC), 2022.
+
+ See also
+ --------
+ pvlib.temperature.GenericLinearModel
+ """
+ # Contributed by Anton Driesse (@adriesse), PV Performance Labs, Sept. 2022
+
+ heat_input = poa_global * (absorptance - module_efficiency)
+ total_loss_factor = u_const + du_wind * wind_speed
+ temp_difference = heat_input / total_loss_factor
+
+ return temp_air + temp_difference
+
+
+class GenericLinearModel():
+ '''
+ A class that can both use and convert parameters of linear module
+ temperature models: faiman, pvsyst, noct_sam, sapm_module
+ and generic_linear.
+
+ Parameters are converted between models by first converting
+ to the generic linear heat transfer model [1]_ by the ``use_``
+ methods. The equivalent parameters for the target temperature
+ model are then obtained by the ``to_`` method.
+ Parameters are returned as a dictionary that is compatible with the
+ target model function to use in simulations.
+
+ An instance of the class represents a specific module type and
+ the parameters ``module_efficiency`` and ``absorptance`` are required.
+ Although some temperature models do not use these properties, they
+ nevertheless exist and affect operating temperature. Values
+ should be representative of the conditions at which the input
+ model parameters were determined (usually high irradiance).
+
+ Parameters
+ ----------
+ module_efficiency : float
+ The electrical efficiency of the module. [-]
+
+ absorptance : float
+ The light absorptance of the module. [-]
+
+ Notes
+ -----
+ After creating a GenericLinearModel object using the module properties,
+ one of the ``use_`` methods must be called to provide thermal model
+ parameters. If this is not done, the ``to_`` methods will return ``nan``
+ values.
+
+ References
+ ----------
+ .. [1] A. Driesse et al, "PV Module Operating Temperature
+ Model Equivalence and Parameter Translation". 2022 IEEE
+ Photovoltaic Specialists Conference (PVSC), 2022.
+
+ Examples
+ --------
+ >>> glm = GenericLinearModel(module_efficiency=0.19, absorptance=0.88)
+
+ >>> glm.use_faiman(16, 8)
+ GenericLinearModel: {'u_const': 11.04, 'du_wind': 5.52,
+ 'eta': 0.19, 'alpha': 0.88}
+
+ >>> glm.to_pvsyst()
+ {'u_c': 11.404800000000002, 'u_v': 5.702400000000001,
+ 'module_efficiency': 0.19, 'alpha_absorption': 0.88}
+
+ >>> parmdict = glm.to_pvsyst()
+ >>> pvsyst_cell(800, 20, 1, **parmdict)
+ 53.33333333333333
+
+ See also
+ --------
+ pvlib.temperature.generic_linear
+ '''
+ # Contributed by Anton Driesse (@adriesse), PV Performance Labs, Sept. 2022
+
+ def __init__(self, module_efficiency, absorptance):
+
+ self.u_const = np.nan
+ self.du_wind = np.nan
+ self.eta = module_efficiency
+ self.alpha = absorptance
+
+ return None
+
+ def __repr__(self):
+
+ return self.__class__.__name__ + ': ' + vars(self).__repr__()
+
+ def __call__(self, poa_global, temp_air, wind_speed,
+ module_efficiency=None):
+ '''
+ Calculate module temperature using the generic_linear model and
+ previously initialized parameters.
+
+ Parameters
+ ----------
+ poa_global : numeric
+ Total incident irradiance [W/m^2].
+
+ temp_air : numeric
+ Ambient dry bulb temperature [C].
+
+ wind_speed : numeric
+ Wind speed in m/s measured at the same height for which the wind
+ loss factor was determined. [m/s]
+
+ module_efficiency : numeric, optional
+ Module electrical efficiency. The default value is the one
+ that was specified initially. [-]
+
+ Returns
+ -------
+ numeric, values in degrees Celsius
+
+ See also
+ --------
+ get_generic
+ pvlib.temperature.generic_linear
+ '''
+ if module_efficiency is None:
+ module_efficiency = self.eta
+
+ return generic_linear(poa_global, temp_air, wind_speed,
+ self.u_const, self.du_wind,
+ module_efficiency, self.alpha)
+
+ def get_generic_linear(self):
+ '''
+ Get the generic linear model parameters to use with the separate
+ generic linear module temperature calculation function.
+
+ Returns
+ -------
+ model_parameters : dict
+
+ See also
+ --------
+ pvlib.temperature.generic_linear
+ '''
+ return dict(u_const=self.u_const,
+ du_wind=self.du_wind,
+ module_efficiency=self.eta,
+ absorptance=self.alpha)
+
+ def use_faiman(self, u0, u1):
+ '''
+ Use the Faiman model parameters to set the generic_model equivalents.
+
+ Parameters
+ ----------
+ u0, u1 : float
+ See :py:func:`pvlib.temperature.faiman` for details.
+ '''
+ net_absorptance = self.alpha - self.eta
+ self.u_const = u0 * net_absorptance
+ self.du_wind = u1 * net_absorptance
+
+ return self
+
+ def to_faiman(self):
+ '''
+ Convert the generic model parameters to Faiman equivalents.
+
+ Returns
+ ----------
+ model_parameters : dict
+ See :py:func:`pvlib.temperature.faiman` for
+ model parameter details.
+ '''
+ net_absorptance = self.alpha - self.eta
+ u0 = self.u_const / net_absorptance
+ u1 = self.du_wind / net_absorptance
+
+ return dict(u0=u0, u1=u1)
+
+ def use_pvsyst(self, u_c, u_v, module_efficiency=None,
+ alpha_absorption=None):
+ '''
+ Use the PVsyst model parameters to set the generic_model equivalents.
+
+ Parameters
+ ----------
+ u_c, u_v : float
+ See :py:func:`pvlib.temperature.pvsyst_cell` for details.
+
+ module_efficiency, alpha_absorption : float, optional
+ See :py:func:`pvlib.temperature.pvsyst_cell` for details.
+
+ Notes
+ -----
+ The optional parameters are primarily for convenient compatibility
+ with existing function signatures.
+ '''
+ if module_efficiency is not None:
+ self.eta = module_efficiency
+
+ if alpha_absorption is not None:
+ self.alpha = alpha_absorption
+
+ net_absorptance_glm = self.alpha - self.eta
+ net_absorptance_pvsyst = self.alpha * (1.0 - self.eta)
+ absorptance_ratio = net_absorptance_glm / net_absorptance_pvsyst
+
+ self.u_const = u_c * absorptance_ratio
+ self.du_wind = u_v * absorptance_ratio
+
+ return self
+
+ def to_pvsyst(self):
+ '''
+ Convert the generic model parameters to PVsyst model equivalents.
+
+ Returns
+ ----------
+ model_parameters : dict
+ See :py:func:`pvlib.temperature.pvsyst_cell` for
+ model parameter details.
+ '''
+ net_absorptance_glm = self.alpha - self.eta
+ net_absorptance_pvsyst = self.alpha * (1.0 - self.eta)
+ absorptance_ratio = net_absorptance_glm / net_absorptance_pvsyst
+
+ u_c = self.u_const / absorptance_ratio
+ u_v = self.du_wind / absorptance_ratio
+
+ return dict(u_c=u_c,
+ u_v=u_v,
+ module_efficiency=self.eta,
+ alpha_absorption=self.alpha)
+
+ def use_noct_sam(self, noct, module_efficiency=None,
+ transmittance_absorptance=None):
+ '''
+ Use the NOCT SAM model parameters to set the generic_model equivalents.
+
+ Parameters
+ ----------
+ noct : float
+ See :py:func:`pvlib.temperature.noct_sam` for details.
+
+ module_efficiency, transmittance_absorptance : float, optional
+ See :py:func:`pvlib.temperature.noct_sam` for details.
+
+ Notes
+ -----
+ The optional parameters are primarily for convenient compatibility
+ with existing function signatures.
+ '''
+ if module_efficiency is not None:
+ self.eta = module_efficiency
+
+ if transmittance_absorptance is not None:
+ self.alpha = transmittance_absorptance
+
+ # NOCT is determined with wind speed near module height
+ # the adjustment reduces the wind coefficient for use with 10m wind
+ wind_adj = 0.51
+ u_noct = 800.0 * self.alpha / (noct - 20.0)
+ self.u_const = u_noct * 0.6
+ self.du_wind = u_noct * 0.4 * wind_adj
+
+ return self
+
+ def to_noct_sam(self):
+ '''
+ Convert the generic model parameters to NOCT SAM model equivalents.
+
+ Returns
+ ----------
+ model_parameters : dict
+ See :py:func:`pvlib.temperature.noct_sam` for
+ model parameter details.
+ '''
+ # NOCT is determined with wind speed near module height
+ # the adjustment reduces the wind coefficient for use with 10m wind
+ wind_adj = 0.51
+ u_noct = self.u_const + self.du_wind / wind_adj
+ noct = 20.0 + (800.0 * self.alpha) / u_noct
+
+ return dict(noct=noct,
+ module_efficiency=self.eta,
+ transmittance_absorptance=self.alpha)
+
+ def use_sapm(self, a, b, wind_fit_low=1.4, wind_fit_high=5.4):
+ '''
+ Use the SAPM model parameters to set the generic_model equivalents.
+
+ In the SAPM the heat transfer coefficient increases exponentially
+ with windspeed, whereas in the other models the increase is linear.
+ This function equates the generic linear model to SAPM at two
+ specified winds speeds, thereby defining a linear approximation
+ for the exponential behavior.
+
+ Parameters
+ ----------
+ a, b : float
+ See :py:func:`pvlib.temperature.sapm_module` for details.
+
+ wind_fit_low : float, optional
+ First wind speed value at which the generic linear model
+ must be equal to the SAPM model. [m/s]
+
+ wind_fit_high : float, optional
+ Second wind speed value at which the generic linear model
+ must be equal to the SAPM model. [m/s]
+
+ Notes
+ -----
+ The two default wind speed values are based on measurements
+ at 10 m height. Both the SAPM model and the conversion
+ functions can work with wind speed data at different heights as
+ long as the same height is used consistently throughout.
+ '''
+ u_low = 1.0 / np.exp(a + b * wind_fit_low)
+ u_high = 1.0 / np.exp(a + b * wind_fit_high)
+
+ du_wind = (u_high - u_low) / (wind_fit_high - wind_fit_low)
+ u_const = u_low - du_wind * wind_fit_low
+
+ net_absorptance = self.alpha - self.eta
+ self.u_const = u_const * net_absorptance
+ self.du_wind = du_wind * net_absorptance
+
+ return self
+
+ def to_sapm(self, wind_fit_low=1.4, wind_fit_high=5.4):
+ '''
+ Convert the generic model parameters to SAPM model equivalents.
+
+ In the SAPM the heat transfer coefficient increases exponentially
+ with windspeed, whereas in the other models the increase is linear.
+ This function equates SAPM to the generic linear model at two
+ specified winds speeds, thereby defining an exponential approximation
+ for the linear behavior.
+
+ Parameters
+ ----------
+ wind_fit_low : float, optional
+ First wind speed value at which the generic linear model
+ must be equal to the SAPM model. [m/s]
+
+ wind_fit_high : float, optional
+ Second wind speed value at which the generic linear model
+ must be equal to the SAPM model. [m/s]
+
+ Returns
+ ----------
+ model_parameters : dict
+ See :py:func:`pvlib.temperature.sapm_module` for
+ model parameter details.
+
+ Notes
+ -----
+ The two default wind speed values are based on measurements
+ at 10 m height. Both the SAPM model and the conversion
+ functions can work with wind speed data at different heights as
+ long as the same height is used consistently throughout.
+ '''
+ net_absorptance = self.alpha - self.eta
+ u_const = self.u_const / net_absorptance
+ du_wind = self.du_wind / net_absorptance
+
+ u_low = u_const + du_wind * wind_fit_low
+ u_high = u_const + du_wind * wind_fit_high
+
+ b = - ((np.log(u_high) - np.log(u_low)) /
+ (wind_fit_high - wind_fit_low))
+ a = - (np.log(u_low) + b * wind_fit_low)
+
+ return dict(a=a, b=b)
diff --git a/pvlib/tests/iotools/test_psm3.py b/pvlib/tests/iotools/test_psm3.py
index d151cfa6da..c02246c5bd 100644
--- a/pvlib/tests/iotools/test_psm3.py
+++ b/pvlib/tests/iotools/test_psm3.py
@@ -78,7 +78,7 @@ def test_get_psm3_tmy(nrel_api_key):
"""test get_psm3 with a TMY"""
data, metadata = psm3.get_psm3(LATITUDE, LONGITUDE, nrel_api_key,
PVLIB_EMAIL, names='tmy-2017',
- map_variables=False)
+ leap_day=False, map_variables=False)
expected = pd.read_csv(TMY_TEST_DATA)
assert_psm3_equal(data, metadata, expected)
@@ -89,7 +89,8 @@ def test_get_psm3_singleyear(nrel_api_key):
"""test get_psm3 with a single year"""
data, metadata = psm3.get_psm3(LATITUDE, LONGITUDE, nrel_api_key,
PVLIB_EMAIL, names='2017',
- map_variables=False, interval=30)
+ leap_day=False, map_variables=False,
+ interval=30)
expected = pd.read_csv(YEAR_TEST_DATA)
assert_psm3_equal(data, metadata, expected)
@@ -100,7 +101,7 @@ def test_get_psm3_5min(nrel_api_key):
"""test get_psm3 for 5-minute data"""
data, metadata = psm3.get_psm3(LATITUDE, LONGITUDE, nrel_api_key,
PVLIB_EMAIL, names='2019', interval=5,
- map_variables=False)
+ leap_day=False, map_variables=False)
assert len(data) == 525600/5
first_day = data.loc['2019-01-01']
expected = pd.read_csv(YEAR_TEST_DATA_5MIN)
@@ -137,7 +138,8 @@ def test_get_psm3_tmy_errors(
"""
with pytest.raises(HTTPError) as excinfo:
psm3.get_psm3(latitude, longitude, api_key, PVLIB_EMAIL,
- names=names, interval=interval, 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)
@@ -186,7 +188,7 @@ def test_get_psm3_attribute_mapping(nrel_api_key):
data, meta = psm3.get_psm3(LATITUDE, LONGITUDE, nrel_api_key, PVLIB_EMAIL,
names=2019, interval=60,
attributes=['ghi', 'wind_speed'],
- map_variables=True)
+ leap_day=False, map_variables=True)
assert 'ghi' in data.columns
assert 'wind_speed' in data.columns
assert 'latitude' in meta.keys()
@@ -199,3 +201,14 @@ def test_get_psm3_attribute_mapping(nrel_api_key):
def test_psm3_variable_map_deprecation_warning(nrel_api_key):
with pytest.warns(pvlibDeprecationWarning, match='names will be renamed'):
_ = psm3.read_psm3(MANUAL_TEST_DATA)
+
+
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_psm3_leap_day_deprecation_warning(nrel_api_key):
+ with pytest.warns(pvlibDeprecationWarning,
+ match='default to leap_day=True'):
+ _, _ = psm3.get_psm3(LATITUDE, LONGITUDE, nrel_api_key, PVLIB_EMAIL,
+ names=2019, interval=60,
+ attributes=['ghi', 'wind_speed'],
+ map_variables=True)
diff --git a/pvlib/tests/iotools/test_pvgis.py b/pvlib/tests/iotools/test_pvgis.py
index a7b0cbbd0a..579c26914c 100644
--- a/pvlib/tests/iotools/test_pvgis.py
+++ b/pvlib/tests/iotools/test_pvgis.py
@@ -20,12 +20,12 @@
testfile_radiation_csv = DATA_DIR / \
'pvgis_hourly_Timeseries_45.000_8.000_SA_30deg_0deg_2016_2016.csv'
testfile_pv_json = DATA_DIR / \
- 'pvgis_hourly_Timeseries_45.000_8.000_CM_10kWp_CIS_5_2a_2013_2014.json'
+ 'pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json'
index_radiation_csv = \
pd.date_range('20160101 00:10', freq='1h', periods=14, tz='UTC')
index_pv_json = \
- pd.date_range('2013-01-01 00:55', freq='1h', periods=10, tz='UTC')
+ pd.date_range('2013-01-01 00:10', freq='1h', periods=10, tz='UTC')
columns_radiation_csv = [
'Gb(i)', 'Gd(i)', 'Gr(i)', 'H_sun', 'T2m', 'WS10m', 'Int']
@@ -33,10 +33,9 @@
'poa_direct', 'poa_sky_diffuse', 'poa_ground_diffuse', 'solar_elevation',
'temp_air', 'wind_speed', 'Int']
columns_pv_json = [
- 'P', 'Gb(i)', 'Gd(i)', 'Gr(i)', 'H_sun', 'T2m', 'WS10m', 'Int']
+ 'P', 'G(i)', 'H_sun', 'T2m', 'WS10m', 'Int']
columns_pv_json_mapped = [
- 'P', 'poa_direct', 'poa_sky_diffuse', 'poa_ground_diffuse',
- 'solar_elevation', 'temp_air', 'wind_speed', 'Int']
+ 'P', 'poa_global', 'solar_elevation', 'temp_air', 'wind_speed', 'Int']
data_radiation_csv = [
[0.0, 0.0, 0.0, 0.0, 3.44, 1.43, 0.0],
@@ -54,16 +53,16 @@
[4.25, 1.88, 0.05, 21.41, 7.84, 0.4, 1.0],
[0.0, 0.0, 0.0, 0.0, 7.43, 0.72, 0.0]]
data_pv_json = [
- [0.0, 0.0, 0.0, 0.0, 0.0, 3.01, 1.23, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 2.22, 1.46, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 1.43, 1.7, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 0.64, 1.93, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 0.77, 1.8, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 0.91, 1.66, 0.0],
- [0.0, 0.0, 0.0, 0.0, 0.0, 1.05, 1.53, 0.0],
- [3464.5, 270.35, 91.27, 6.09, 6.12, 1.92, 1.44, 0.0],
- [1586.9, 80.76, 83.95, 9.04, 13.28, 2.79, 1.36, 0.0],
- [713.3, 5.18, 70.57, 7.31, 18.56, 3.66, 1.27, 0.0]]
+ [0.0, 0.0, 0.0, -0.97, 1.52, 0.0],
+ [0.0, 0.0, 0.0, -1.06, 1.45, 0.0],
+ [0.0, 0.0, 0.0, -1.03, 1.45, 0.0],
+ [0.0, 0.0, 0.0, -0.48, 1.31, 0.0],
+ [0.0, 0.0, 0.0, -0.09, 1.24, 0.0],
+ [0.0, 0.0, 0.0, -0.38, 1.17, 0.0],
+ [0.0, 0.0, 0.0, 0.29, 1.03, 0.0],
+ [0.0, 0.0, 0.0, 1.0, 0.62, 0.0],
+ [1187.2, 129.59, 8.06, 0.97, 0.97, 0.0],
+ [3950.1, 423.28, 14.8, 1.89, 0.69, 0.0]]
inputs_radiation_csv = {'latitude': 45.0, 'longitude': 8.0, 'elevation': 250.0,
'radiation_database': 'PVGIS-SARAH',
@@ -80,7 +79,7 @@
inputs_pv_json = {
'location': {'latitude': 45.0, 'longitude': 8.0, 'elevation': 250.0},
- 'meteo_data': {'radiation_db': 'PVGIS-CMSAF', 'meteo_db': 'ERA-Interim',
+ 'meteo_data': {'radiation_db': 'PVGIS-SARAH2', 'meteo_db': 'ERA-Interim',
'year_min': 2013, 'year_max': 2014, 'use_horizon': True,
'horizon_db': None, 'horizon_data': 'DEM-calculated'},
'mounting_system': {'two_axis': {
@@ -88,45 +87,45 @@
'azimuth': {'value': '-', 'optimal': '-'}}},
'pv_module': {'technology': 'CIS', 'peak_power': 10.0, 'system_loss': 5.0}}
+
metadata_pv_json = {
'inputs': {
- 'location': {'description': 'Selected location', 'variables': {
- 'latitude': {'description': 'Latitude', 'units': 'decimal degree'},
- 'longitude': {'description': 'Longitude', 'units': 'decimal degree'}, # noqa: E501
- 'elevation': {'description': 'Elevation', 'units': 'm'}}},
- 'meteo_data': {
- 'description': 'Sources of meteorological data',
- 'variables': {
- 'radiation_db': {'description': 'Solar radiation database'},
- 'meteo_db': {'description': 'Database used for meteorological variables other than solar radiation'}, # noqa: E501
- 'year_min': {'description': 'First year of the calculations'},
- 'year_max': {'description': 'Last year of the calculations'},
- 'use_horizon': {'description': 'Include horizon shadows'},
- 'horizon_db': {'description': 'Source of horizon data'}}},
- 'mounting_system': {
- 'description': 'Mounting system',
- 'choices': 'fixed, vertical_axis, inclined_axis, two_axis',
- 'fields': {
- 'slope': {'description': 'Inclination angle from the horizontal plane', 'units': 'degree'}, # noqa: E501
- 'azimuth': {'description': 'Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)', 'units': 'degree'}}}, # noqa: E501
- 'pv_module': {
- 'description': 'PV module parameters',
- 'variables': {
- 'technology': {'description': 'PV technology'},
- 'peak_power': {'description': 'Nominal (peak) power of the PV module', 'units': 'kW'}, # noqa: E501
- 'system_loss': {'description': 'Sum of system losses', 'units': '%'}}}}, # noqa: E501
- 'outputs': {
- 'hourly': {
- 'type': 'time series', 'timestamp': 'hourly averages',
- 'variables': {
- 'P': {'description': 'PV system power', 'units': 'W'},
- 'Gb(i)': {'description': 'Beam (direct) irradiance on the inclined plane (plane of the array)', 'units': 'W/m2'}, # noqa: E501
- 'Gd(i)': {'description': 'Diffuse irradiance on the inclined plane (plane of the array)', 'units': 'W/m2'}, # noqa: E501
- 'Gr(i)': {'description': 'Reflected irradiance on the inclined plane (plane of the array)', 'units': 'W/m2'}, # noqa: E501
- 'H_sun': {'description': 'Sun height', 'units': 'degree'},
- 'T2m': {'description': '2-m air temperature', 'units': 'degree Celsius'}, # noqa: E501
- 'WS10m': {'description': '10-m total wind speed', 'units': 'm/s'}, # noqa: E501
- 'Int': {'description': '1 means solar radiation values are reconstructed'}}}}} # noqa: E501
+ 'location':
+ {'description': 'Selected location', 'variables': {
+ 'latitude': {'description': 'Latitude', 'units': 'decimal degree'}, # noqa: E501
+ 'longitude': {'description': 'Longitude', 'units': 'decimal degree'}, # noqa: E501
+ 'elevation': {'description': 'Elevation', 'units': 'm'}}},
+ 'meteo_data': {
+ 'description': 'Sources of meteorological data',
+ 'variables': {
+ 'radiation_db': {'description': 'Solar radiation database'}, # noqa: E501
+ 'meteo_db': {'description': 'Database used for meteorological variables other than solar radiation'}, # noqa: E501
+ 'year_min': {'description': 'First year of the calculations'}, # noqa: E501
+ 'year_max': {'description': 'Last year of the calculations'}, # noqa: E501
+ 'use_horizon': {'description': 'Include horizon shadows'},
+ 'horizon_db': {'description': 'Source of horizon data'}}},
+ 'mounting_system': {
+ 'description': 'Mounting system',
+ 'choices': 'fixed, vertical_axis, inclined_axis, two_axis',
+ 'fields': {
+ 'slope': {'description': 'Inclination angle from the horizontal plane', 'units': 'degree'}, # noqa: E501
+ 'azimuth': {'description': 'Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)', 'units': 'degree'}}}, # noqa: E501
+ 'pv_module': {
+ 'description': 'PV module parameters',
+ 'variables': {
+ 'technology': {'description': 'PV technology'},
+ 'peak_power': {'description': 'Nominal (peak) power of the PV module', 'units': 'kW'}, # noqa: E501
+ 'system_loss': {'description': 'Sum of system losses', 'units': '%'}}}}, # noqa: E501
+ 'outputs': {
+ 'hourly': {
+ 'type': 'time series', 'timestamp': 'hourly averages',
+ 'variables': {
+ 'P': {'description': 'PV system power', 'units': 'W'},
+ 'G(i)': {'description': 'Global irradiance on the inclined plane (plane of the array)', 'units': 'W/m2'}, # noqa: E501
+ 'H_sun': {'description': 'Sun height', 'units': 'degree'},
+ 'T2m': {'description': '2-m air temperature', 'units': 'degree Celsius'}, # noqa: E501
+ 'WS10m': {'description': '10-m total wind speed', 'units': 'm/s'}, # noqa: E501
+ 'Int': {'description': '1 means solar radiation values are reconstructed'}}}}} # noqa: E501
def generate_expected_dataframe(values, columns, index):
@@ -215,12 +214,13 @@ def test_read_pvgis_hourly_bad_extension():
args_pv_json = {
'surface_tilt': 30, 'surface_azimuth': 0, 'outputformat': 'json',
- 'usehorizon': True, 'userhorizon': None, 'raddatabase': 'PVGIS-CMSAF',
+ 'usehorizon': True, 'userhorizon': None, 'raddatabase': 'PVGIS-SARAH2',
'start': pd.Timestamp(2013, 1, 1), 'end': pd.Timestamp(2014, 5, 1),
'pvcalculation': True, 'peakpower': 10, 'pvtechchoice': 'CIS', 'loss': 5,
- 'trackingtype': 2, 'optimalangles': True, 'components': True}
+ 'trackingtype': 2, 'optimalangles': True, 'components': False,
+ 'url': 'https://re.jrc.ec.europa.eu/api/v5_2/'}
-url_pv_json = 'https://re.jrc.ec.europa.eu/api/seriescalc?lat=45&lon=8&outputformat=json&angle=30&aspect=0&pvtechchoice=CIS&mountingplace=free&trackingtype=2&components=1&usehorizon=1&raddatabase=PVGIS-CMSAF&startyear=2013&endyear=2014&pvcalculation=1&peakpower=10&loss=5&optimalangles=1' # noqa: E501
+url_pv_json = 'https://re.jrc.ec.europa.eu/api/v5_2/seriescalc?lat=45&lon=8&outputformat=json&angle=30&aspect=0&pvtechchoice=CIS&mountingplace=free&trackingtype=2&components=0&usehorizon=1&raddatabase=PVGIS-SARAH2&startyear=2013&endyear=2014&pvcalculation=1&peakpower=10&loss=5&optimalangles=1' # noqa: E501
@pytest.mark.parametrize('testfile,expected_name,args,map_variables,url_test', [ # noqa: E501
diff --git a/pvlib/tests/iotools/test_sodapro.py b/pvlib/tests/iotools/test_sodapro.py
index 10f9a1e8c9..24e5ebbfcf 100644
--- a/pvlib/tests/iotools/test_sodapro.py
+++ b/pvlib/tests/iotools/test_sodapro.py
@@ -209,7 +209,7 @@ def test_get_cams(requests_mock, testfile, index, columns, values, dtypes,
mock_response = test_file.read()
# Specify the full URI of a specific example, this ensures that all of the
# inputs are passing on correctly
- url_test_cams = f'http://www.soda-is.com/service/wps?DataInputs=latitude=55.7906;longitude=12.5251;altitude=80;date_begin=2020-01-01;date_end=2020-05-04;time_ref=UT;summarization=P01M;username=pvlib-admin%2540googlegroups.com;verbose=false&Service=WPS&Request=Execute&Identifier=get_{identifier}&version=1.0.0&RawDataOutput=irradiation' # noqa: E501
+ url_test_cams = f'https://www.soda-is.com/service/wps?DataInputs=latitude=55.7906;longitude=12.5251;altitude=80;date_begin=2020-01-01;date_end=2020-05-04;time_ref=UT;summarization=P01M;username=pvlib-admin%2540googlegroups.com;verbose=false&Service=WPS&Request=Execute&Identifier=get_{identifier}&version=1.0.0&RawDataOutput=irradiation' # noqa: E501
requests_mock.get(url_test_cams, text=mock_response,
headers={'Content-Type': 'application/csv'})
@@ -254,7 +254,7 @@ def test_get_cams_bad_request(requests_mock):
Please, register yourself at www.soda-pro.com
"""
- url_cams_bad_request = 'http://pro.soda-is.com/service/wps?DataInputs=latitude=55.7906;longitude=12.5251;altitude=-999;date_begin=2020-01-01;date_end=2020-05-04;time_ref=TST;summarization=PT01H;username=test%2540test.com;verbose=false&Service=WPS&Request=Execute&Identifier=get_mcclear&version=1.0.0&RawDataOutput=irradiation' # noqa: E501
+ url_cams_bad_request = 'https://pro.soda-is.com/service/wps?DataInputs=latitude=55.7906;longitude=12.5251;altitude=-999;date_begin=2020-01-01;date_end=2020-05-04;time_ref=TST;summarization=PT01H;username=test%2540test.com;verbose=false&Service=WPS&Request=Execute&Identifier=get_mcclear&version=1.0.0&RawDataOutput=irradiation' # noqa: E501
requests_mock.get(url_cams_bad_request, text=mock_response_bad,
headers={'Content-Type': 'application/xml'})
diff --git a/pvlib/tests/iotools/test_surfrad.py b/pvlib/tests/iotools/test_surfrad.py
index 6ef9fcab51..83f7ec7645 100644
--- a/pvlib/tests/iotools/test_surfrad.py
+++ b/pvlib/tests/iotools/test_surfrad.py
@@ -7,6 +7,8 @@
testfile = DATA_DIR / 'surfrad-slv16001.dat'
network_testfile = ('ftp://aftp.cmdl.noaa.gov/data/radiation/surfrad/'
'Alamosa_CO/2016/slv16001.dat')
+https_testfile = ('https://gml.noaa.gov/aftp/data/radiation/surfrad/'
+ 'Alamosa_CO/2016/slv16001.dat')
@pytest.mark.remote_data
@@ -19,6 +21,17 @@ def test_read_surfrad_network():
assert local_data.equals(network_data)
+@pytest.mark.remote_data
+@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
+def test_read_surfrad_https():
+ # Test reading of https files.
+ # If this test begins failing, SURFRAD's data structure or data
+ # archive may have changed.
+ local_data, _ = surfrad.read_surfrad(testfile)
+ network_data, _ = surfrad.read_surfrad(https_testfile)
+ assert local_data.equals(network_data)
+
+
def test_read_surfrad_columns_no_map():
data, _ = surfrad.read_surfrad(testfile, map_variables=False)
assert 'zen' in data.columns
diff --git a/pvlib/tests/iotools/test_tmy.py b/pvlib/tests/iotools/test_tmy.py
index 7e4b76c294..cc939588ac 100644
--- a/pvlib/tests/iotools/test_tmy.py
+++ b/pvlib/tests/iotools/test_tmy.py
@@ -2,13 +2,17 @@
import pandas as pd
from pvlib.iotools import tmy
from ..conftest import DATA_DIR
+import pytest
# test the API works
from pvlib.iotools import read_tmy3
-TMY3_TESTFILE = DATA_DIR / '703165TY.csv'
TMY2_TESTFILE = DATA_DIR / '12839.tm2'
+# TMY3 format (two files below) represents midnight as 24:00
+TMY3_TESTFILE = DATA_DIR / '703165TY.csv'
TMY3_FEB_LEAPYEAR = DATA_DIR / '723170TYA.CSV'
+# The SolarAnywhere TMY3 format (file below) represents midnight as 00:00
+TMY3_SOLARANYWHERE = DATA_DIR / 'Burlington, United States SolarAnywhere Time Series 2021 Lat_44_465 Lon_-73_205 TMY3 format.csv' # noqa: E501
def test_read_tmy3():
@@ -72,3 +76,23 @@ def test_gh865_read_tmy3_feb_leapyear_hr24():
# hour so check that the 1st hour is 1AM and the last hour is midnite
assert data.index[0].hour == 1
assert data.index[-1].hour == 0
+
+
+@pytest.fixture
+def solaranywhere_index():
+ return pd.date_range('2021-01-01 01:00:00-05:00', periods=8760, freq='1h')
+
+
+def test_solaranywhere_tmy3(solaranywhere_index):
+ # The SolarAnywhere TMY3 format specifies midnight as 00:00 whereas the
+ # NREL TMY3 format utilizes 24:00. The SolarAnywhere file is therefore
+ # included to test files with 00:00 timestamps are parsed correctly
+ data, meta = tmy.read_tmy3(TMY3_SOLARANYWHERE)
+ pd.testing.assert_index_equal(data.index, solaranywhere_index)
+ assert meta['USAF'] == 0
+ assert meta['Name'] == 'Burlington United States'
+ assert meta['State'] == 'NA'
+ assert meta['TZ'] == -5.0
+ assert meta['latitude'] == 44.465
+ assert meta['longitude'] == -73.205
+ assert meta['altitude'] == 41.0
diff --git a/pvlib/tests/test_clearsky.py b/pvlib/tests/test_clearsky.py
index 15fc74e383..6e620f3c79 100644
--- a/pvlib/tests/test_clearsky.py
+++ b/pvlib/tests/test_clearsky.py
@@ -511,13 +511,6 @@ def monthly_lt_nointerp(lat, lon, time=months):
monthly_lt_nointerp(38.2, -181) # exceeds min longitude
-def test_degrees_to_index_1():
- """Test that _degrees_to_index raises an error when something other than
- 'latitude' or 'longitude' is passed."""
- with pytest.raises(IndexError): # invalid value for coordinate argument
- clearsky._degrees_to_index(degrees=22.0, coordinate='width')
-
-
@pytest.fixture
def detect_clearsky_data():
data_file = DATA_DIR / 'detect_clearsky_data.csv'
@@ -756,6 +749,30 @@ def test_bird():
assert np.allclose(
testdata['Dif Hz'].where(dusk, 0.), diffuse_horz[1:48], rtol=1e-3
)
+ # repeat test with albedo as a Series
+ alb_series = pd.Series(0.2, index=times)
+ irrads = clearsky.bird(
+ zenith, airmass, aod_380nm, aod_500nm, h2o_cm, o3_cm, press_mB * 100.,
+ etr, b_a, alb_series
+ )
+ Eb, Ebh, Gh, Dh = (irrads[_] for _ in field_names)
+ direct_beam = pd.Series(np.where(dawn, Eb, 0.), index=times).fillna(0.)
+ assert np.allclose(
+ testdata['Direct Beam'].where(dusk, 0.), direct_beam[1:48], rtol=1e-3
+ )
+ direct_horz = pd.Series(np.where(dawn, Ebh, 0.), index=times).fillna(0.)
+ assert np.allclose(
+ testdata['Direct Hz'].where(dusk, 0.), direct_horz[1:48], rtol=1e-3
+ )
+ global_horz = pd.Series(np.where(dawn, Gh, 0.), index=times).fillna(0.)
+ assert np.allclose(
+ testdata['Global Hz'].where(dusk, 0.), global_horz[1:48], rtol=1e-3
+ )
+ diffuse_horz = pd.Series(np.where(dawn, Dh, 0.), index=times).fillna(0.)
+ assert np.allclose(
+ testdata['Dif Hz'].where(dusk, 0.), diffuse_horz[1:48], rtol=1e-3
+ )
+
# test keyword parameters
irrads2 = clearsky.bird(
zenith, airmass, aod_380nm, aod_500nm, h2o_cm, dni_extra=etr
diff --git a/pvlib/tests/test_irradiance.py b/pvlib/tests/test_irradiance.py
index 80986f26c3..ae3a7ec88a 100644
--- a/pvlib/tests/test_irradiance.py
+++ b/pvlib/tests/test_irradiance.py
@@ -7,8 +7,8 @@
import pandas as pd
import pytest
-from numpy.testing import assert_almost_equal, assert_allclose
-
+from numpy.testing import (assert_almost_equal,
+ assert_allclose)
from pvlib import irradiance
from .conftest import (
@@ -34,23 +34,23 @@ def times():
@pytest.fixture
def irrad_data(times):
return pd.DataFrame(np.array(
- [[ 0. , 0. , 0. ],
- [ 79.73860422, 316.1949056 , 40.46149818],
+ [[0., 0., 0.],
+ [79.73860422, 316.1949056, 40.46149818],
[1042.48031487, 939.95469881, 118.45831879],
- [ 257.20751138, 646.22886049, 62.03376265]]),
+ [257.20751138, 646.22886049, 62.03376265]]),
columns=['ghi', 'dni', 'dhi'], index=times)
@pytest.fixture
def ephem_data(times):
return pd.DataFrame(np.array(
- [[124.0390863 , 124.0390863 , -34.0390863 , -34.0390863 ,
+ [[124.0390863, 124.0390863, -34.0390863, -34.0390863,
352.69550699, -2.36677158],
- [ 82.85457044, 82.97705621, 7.14542956, 7.02294379,
- 66.71410338, -2.42072165],
- [ 10.56413562, 10.56725766, 79.43586438, 79.43274234,
+ [82.85457044, 82.97705621, 7.14542956, 7.02294379,
+ 66.71410338, -2.42072165],
+ [10.56413562, 10.56725766, 79.43586438, 79.43274234,
144.76567754, -2.47457321],
- [ 72.41687122, 72.46903556, 17.58312878, 17.53096444,
+ [72.41687122, 72.46903556, 17.58312878, 17.53096444,
287.04104128, -2.52831909]]),
columns=['apparent_zenith', 'zenith', 'apparent_elevation',
'elevation', 'azimuth', 'equation_of_time'],
@@ -120,20 +120,29 @@ def test_get_extra_radiation_invalid():
irradiance.get_extra_radiation(300, method='invalid')
-def test_grounddiffuse_simple_float():
+def test_get_ground_diffuse_simple_float():
result = irradiance.get_ground_diffuse(40, 900)
assert_allclose(result, 26.32000014911496)
-def test_grounddiffuse_simple_series(irrad_data):
+def test_get_ground_diffuse_simple_series(irrad_data):
ground_irrad = irradiance.get_ground_diffuse(40, irrad_data['ghi'])
assert ground_irrad.name == 'diffuse_ground'
-def test_grounddiffuse_albedo_0(irrad_data):
+def test_get_ground_diffuse_albedo_0(irrad_data):
ground_irrad = irradiance.get_ground_diffuse(
40, irrad_data['ghi'], albedo=0)
- assert 0 == ground_irrad.all()
+ assert (0 == ground_irrad).all()
+
+
+def test_get_ground_diffuse_albedo_series(times):
+ albedo = pd.Series(0.2, index=times)
+ ground_irrad = irradiance.get_ground_diffuse(
+ 45, pd.Series(1000, index=times), albedo)
+ expected = albedo * 0.5 * (1 - np.sqrt(2) / 2.) * 1000
+ expected.name = 'diffuse_ground'
+ assert_series_equal(ground_irrad, expected)
def test_grounddiffuse_albedo_invalid_surface(irrad_data):
@@ -142,7 +151,7 @@ def test_grounddiffuse_albedo_invalid_surface(irrad_data):
40, irrad_data['ghi'], surface_type='invalid')
-def test_grounddiffuse_albedo_surface(irrad_data):
+def test_get_ground_diffuse_albedo_surface(irrad_data):
result = irradiance.get_ground_diffuse(40, irrad_data['ghi'],
surface_type='sand')
assert_allclose(result, [0, 3.731058, 48.778813, 12.035025], atol=1e-4)
@@ -198,6 +207,45 @@ def test_haydavies(irrad_data, ephem_data, dni_et):
assert_allclose(result, [0, 27.1775, 102.9949, 33.1909], atol=1e-4)
+def test_haydavies_components(irrad_data, ephem_data, dni_et):
+ expected = pd.DataFrame(np.array(
+ [[0, 27.1775, 102.9949, 33.1909],
+ [0, 27.1775, 30.1818, 27.9837],
+ [0, 0, 72.8130, 5.2071],
+ [0, 0, 0, 0]]).T,
+ columns=['sky_diffuse', 'isotropic', 'circumsolar', 'horizon'],
+ index=irrad_data.index
+ )
+ # pandas
+ result = irradiance.haydavies(
+ 40, 180, irrad_data['dhi'], irrad_data['dni'], dni_et,
+ ephem_data['apparent_zenith'], ephem_data['azimuth'],
+ return_components=True)
+ assert_frame_equal(result, expected, check_less_precise=4)
+ # numpy
+ result = irradiance.haydavies(
+ 40, 180, irrad_data['dhi'].values, irrad_data['dni'].values, dni_et,
+ ephem_data['apparent_zenith'].values, ephem_data['azimuth'].values,
+ return_components=True)
+ assert_allclose(result['sky_diffuse'], expected['sky_diffuse'], atol=1e-4)
+ assert_allclose(result['isotropic'], expected['isotropic'], atol=1e-4)
+ assert_allclose(result['circumsolar'], expected['circumsolar'], atol=1e-4)
+ assert_allclose(result['horizon'], expected['horizon'], atol=1e-4)
+ assert isinstance(result, dict)
+ # scalar
+ result = irradiance.haydavies(
+ 40, 180, irrad_data['dhi'].values[-1], irrad_data['dni'].values[-1],
+ dni_et[-1], ephem_data['apparent_zenith'].values[-1],
+ ephem_data['azimuth'].values[-1], return_components=True)
+ assert_allclose(result['sky_diffuse'], expected['sky_diffuse'][-1],
+ atol=1e-4)
+ assert_allclose(result['isotropic'], expected['isotropic'][-1],
+ atol=1e-4)
+ assert_allclose(result['circumsolar'], expected['circumsolar'][-1],
+ atol=1e-4)
+ assert_allclose(result['horizon'], expected['horizon'][-1], atol=1e-4)
+ assert isinstance(result, dict)
+
def test_reindl(irrad_data, ephem_data, dni_et):
result = irradiance.reindl(
40, 180, irrad_data['dhi'], irrad_data['dni'], irrad_data['ghi'],
@@ -219,7 +267,7 @@ def test_perez(irrad_data, ephem_data, dni_et, relative_airmass):
dni_et, ephem_data['apparent_zenith'],
ephem_data['azimuth'], relative_airmass)
expected = pd.Series(np.array(
- [ 0. , 31.46046871, np.nan, 45.45539877]),
+ [0., 31.46046871, np.nan, 45.45539877]),
index=irrad_data.index)
assert_series_equal(out, expected, check_less_precise=2)
@@ -232,10 +280,10 @@ def test_perez_components(irrad_data, ephem_data, dni_et, relative_airmass):
ephem_data['azimuth'], relative_airmass,
return_components=True)
expected = pd.DataFrame(np.array(
- [[ 0. , 31.46046871, np.nan, 45.45539877],
- [ 0. , 26.84138589, np.nan, 31.72696071],
- [ 0. , 0. , np.nan, 4.47966439],
- [ 0. , 4.62212181, np.nan, 9.25316454]]).T,
+ [[0., 31.46046871, np.nan, 45.45539877],
+ [0., 26.84138589, np.nan, 31.72696071],
+ [0., 0., np.nan, 4.47966439],
+ [0., 4.62212181, np.nan, 9.25316454]]).T,
columns=['sky_diffuse', 'isotropic', 'circumsolar', 'horizon'],
index=irrad_data.index
)
@@ -258,12 +306,12 @@ def test_perez_negative_horizon():
# dni_e is slightly rounded from irradiance.get_extra_radiation
# airmass from atmosphere.get_relative_airmas
inputs = pd.DataFrame(np.array(
- [[ 158, 19, 1, 0, 0],
- [ 249, 165, 136, 93, 50],
- [ 57.746951, 57.564205, 60.813841, 66.989435, 75.353368],
- [ 171.003315, 187.346924, 202.974357, 216.725599, 228.317233],
+ [[158, 19, 1, 0, 0],
+ [249, 165, 136, 93, 50],
+ [57.746951, 57.564205, 60.813841, 66.989435, 75.353368],
+ [171.003315, 187.346924, 202.974357, 216.725599, 228.317233],
[1414, 1414, 1414, 1414, 1414],
- [ 1.869315, 1.859981, 2.044429, 2.544943, 3.900136]]).T,
+ [1.869315, 1.859981, 2.044429, 2.544943, 3.900136]]).T,
columns=['dni', 'dhi', 'solar_zenith',
'solar_azimuth', 'dni_extra', 'airmass'],
index=times
@@ -281,7 +329,7 @@ def test_perez_negative_horizon():
[[281.410185, 152.20879, 123.867898, 82.836412, 43.517015],
[166.785419, 142.24475, 119.173875, 83.525150, 45.725931],
[113.548755, 16.09757, 9.956174, 3.142467, 0],
- [ 1.076010, -6.13353, -5.262151, -3.831230, -2.208923]]).T,
+ [1.076010, -6.13353, -5.262151, -3.831230, -2.208923]]).T,
columns=['sky_diffuse', 'isotropic', 'circumsolar', 'horizon'],
index=times
)
@@ -302,7 +350,7 @@ def test_perez_arrays(irrad_data, ephem_data, dni_et, relative_airmass):
ephem_data['azimuth'].values,
relative_airmass.values)
expected = np.array(
- [ 0. , 31.46046871, np.nan, 45.45539877])
+ [0., 31.46046871, np.nan, 45.45539877])
assert_allclose(out, expected, atol=1e-2)
assert isinstance(out, np.ndarray)
@@ -387,6 +435,25 @@ def test_get_total_irradiance(irrad_data, ephem_data, dni_et,
'poa_ground_diffuse']
+@pytest.mark.parametrize('model', ['isotropic', 'klucher',
+ 'haydavies', 'reindl', 'king', 'perez'])
+def test_get_total_irradiance_albedo(
+ irrad_data, ephem_data, dni_et, relative_airmass, model):
+ albedo = pd.Series(0.2, index=ephem_data.index)
+ total = irradiance.get_total_irradiance(
+ 32, 180,
+ ephem_data['apparent_zenith'], ephem_data['azimuth'],
+ dni=irrad_data['dni'], ghi=irrad_data['ghi'],
+ dhi=irrad_data['dhi'],
+ dni_extra=dni_et, airmass=relative_airmass,
+ model=model,
+ albedo=albedo)
+
+ assert total.columns.tolist() == ['poa_global', 'poa_direct',
+ 'poa_diffuse', 'poa_sky_diffuse',
+ 'poa_ground_diffuse']
+
+
@pytest.mark.parametrize('model', ['isotropic', 'klucher',
'haydavies', 'reindl', 'king', 'perez'])
def test_get_total_irradiance_scalars(model):
@@ -441,14 +508,14 @@ def test_poa_components(irrad_data, ephem_data, dni_et, relative_airmass):
out = irradiance.poa_components(
aoi, irrad_data['dni'], diff_perez, gr_sand)
expected = pd.DataFrame(np.array(
- [[ 0. , -0. , 0. , 0. ,
- 0. ],
- [ 35.19456561, 0. , 35.19456561, 31.4635077 ,
+ [[0., -0., 0., 0.,
+ 0.],
+ [35.19456561, 0., 35.19456561, 31.4635077,
3.73105791],
[956.18253696, 798.31939281, 157.86314414, 109.08433162,
- 48.77881252],
- [ 90.99624896, 33.50143401, 57.49481495, 45.45978964,
- 12.03502531]]),
+ 48.77881252],
+ [90.99624896, 33.50143401, 57.49481495, 45.45978964,
+ 12.03502531]]),
columns=['poa_global', 'poa_direct', 'poa_diffuse', 'poa_sky_diffuse',
'poa_ground_diffuse'],
index=irrad_data.index)
@@ -653,9 +720,9 @@ def test_gti_dirint():
expected_col_order = ['ghi', 'dni', 'dhi']
expected = pd.DataFrame(array(
- [[ 21.05796198, 0. , 21.05796198],
- [ 291.40037163, 63.41290679, 246.56067523],
- [ 931.04078010, 695.94965324, 277.06172442]]),
+ [[21.05796198, 0., 21.05796198],
+ [291.40037163, 63.41290679, 246.56067523],
+ [931.04078010, 695.94965324, 277.06172442]]),
columns=expected_col_order, index=times)
assert_frame_equal(output, expected)
@@ -677,9 +744,9 @@ def test_gti_dirint():
pressure=pressure)
expected = pd.DataFrame(array(
- [[ 21.05796198, 0. , 21.05796198],
- [ 293.21310935, 63.27500913, 248.47092131],
- [ 932.46756378, 648.05001357, 323.49974813]]),
+ [[21.05796198, 0., 21.05796198],
+ [293.21310935, 63.27500913, 248.47092131],
+ [932.46756378, 648.05001357, 323.49974813]]),
columns=expected_col_order, index=times)
assert_frame_equal(output, expected)
@@ -691,13 +758,21 @@ def test_gti_dirint():
albedo=albedo)
expected = pd.DataFrame(array(
- [[ 21.3592591, 0. , 21.3592591 ],
- [ 294.4985420, 66.25848451, 247.64671830],
- [ 941.7943404, 727.50552952, 258.16276278]]),
+ [[21.3592591, 0., 21.3592591],
+ [294.4985420, 66.25848451, 247.64671830],
+ [941.7943404, 727.50552952, 258.16276278]]),
columns=expected_col_order, index=times)
assert_frame_equal(output, expected)
+ # test with albedo as a Series
+ albedo = pd.Series(0.05, index=times)
+ output = irradiance.gti_dirint(
+ poa_global, aoi, zenith, azimuth, times, surface_tilt, surface_azimuth,
+ albedo=albedo)
+
+ assert_frame_equal(output, expected)
+
# test temp_dew input
temp_dew = np.array([70, 80, 20])
output = irradiance.gti_dirint(
@@ -705,9 +780,9 @@ def test_gti_dirint():
temp_dew=temp_dew)
expected = pd.DataFrame(array(
- [[ 21.05796198, 0., 21.05796198],
- [ 295.06070190, 38.20346345, 268.0467738],
- [ 931.79627208, 689.81549269, 283.5817439]]),
+ [[21.05796198, 0., 21.05796198],
+ [295.06070190, 38.20346345, 268.0467738],
+ [931.79627208, 689.81549269, 283.5817439]]),
columns=expected_col_order, index=times)
assert_frame_equal(output, expected)
@@ -914,7 +989,7 @@ def airmass_kt():
def test_kt_kt_prime_factor(airmass_kt):
out = irradiance._kt_kt_prime_factor(airmass_kt)
- expected = np.array([ 0.999971, 0.723088, 0.548811, 0.471068])
+ expected = np.array([0.999971, 0.723088, 0.548811, 0.471068])
assert_allclose(out, expected, atol=1e-5)
@@ -925,11 +1000,11 @@ def test_clearsky_index():
with np.errstate(invalid='ignore', divide='ignore'):
out = irradiance.clearsky_index(ghi_measured, ghi_modeled)
expected = np.array(
- [[1. , 0. , 0. , 0. , 0. , np.nan],
- [0. , 0. , 0. , 0. , 0. , np.nan],
- [0. , 0. , 1. , 2. , 2. , np.nan],
- [0. , 0. , 0.002 , 1. , 2. , np.nan],
- [0. , 0. , 0.001 , 0.5 , 1. , np.nan],
+ [[1., 0., 0., 0., 0., np.nan],
+ [0., 0., 0., 0., 0., np.nan],
+ [0., 0., 1., 2., 2., np.nan],
+ [0., 0., 0.002, 1., 2., np.nan],
+ [0., 0., 0.001, 0.5, 1., np.nan],
[np.nan, np.nan, np.nan, np.nan, np.nan, np.nan]])
assert_allclose(out, expected, atol=0.001)
# specify max_clearsky_index
@@ -937,11 +1012,11 @@ def test_clearsky_index():
out = irradiance.clearsky_index(ghi_measured, ghi_modeled,
max_clearsky_index=1.5)
expected = np.array(
- [[1. , 0. , 0. , 0. , 0. , np.nan],
- [0. , 0. , 0. , 0. , 0. , np.nan],
- [0. , 0. , 1. , 1.5 , 1.5 , np.nan],
- [0. , 0. , 0.002 , 1. , 1.5 , np.nan],
- [0. , 0. , 0.001 , 0.5 , 1. , np.nan],
+ [[1., 0., 0., 0., 0., np.nan],
+ [0., 0., 0., 0., 0., np.nan],
+ [0., 0., 1., 1.5, 1.5, np.nan],
+ [0., 0., 0.002, 1., 1.5, np.nan],
+ [0., 0., 0.001, 0.5, 1., np.nan],
[np.nan, np.nan, np.nan, np.nan, np.nan, np.nan]])
assert_allclose(out, expected, atol=0.001)
# scalars
@@ -965,29 +1040,29 @@ def test_clearness_index():
out = irradiance.clearness_index(ghi, solar_zenith, 1370)
# np.set_printoptions(precision=3, floatmode='maxprec', suppress=True)
expected = np.array(
- [[0. , 0. , 0.011, 2. ],
- [0. , 0. , 0.011, 2. ],
- [0. , 0. , 0.011, 2. ],
- [0. , 0. , 0.001, 0.73 ]])
+ [[0., 0., 0.011, 2.],
+ [0., 0., 0.011, 2.],
+ [0., 0., 0.011, 2.],
+ [0., 0., 0.001, 0.73]])
assert_allclose(out, expected, atol=0.001)
# specify min_cos_zenith
with np.errstate(invalid='ignore', divide='ignore'):
out = irradiance.clearness_index(ghi, solar_zenith, 1400,
min_cos_zenith=0)
expected = np.array(
- [[0. , nan, 2. , 2. ],
- [0. , 0. , 2. , 2. ],
- [0. , 0. , 2. , 2. ],
- [0. , 0. , 0.001, 0.714]])
+ [[0., nan, 2., 2.],
+ [0., 0., 2., 2.],
+ [0., 0., 2., 2.],
+ [0., 0., 0.001, 0.714]])
assert_allclose(out, expected, atol=0.001)
# specify max_clearness_index
out = irradiance.clearness_index(ghi, solar_zenith, 1370,
max_clearness_index=0.82)
expected = np.array(
- [[ 0. , 0. , 0.011, 0.82 ],
- [ 0. , 0. , 0.011, 0.82 ],
- [ 0. , 0. , 0.011, 0.82 ],
- [ 0. , 0. , 0.001, 0.73 ]])
+ [[0., 0., 0.011, 0.82],
+ [0., 0., 0.011, 0.82],
+ [0., 0., 0.011, 0.82],
+ [0., 0., 0.001, 0.73]])
assert_allclose(out, expected, atol=0.001)
# specify min_cos_zenith and max_clearness_index
with np.errstate(invalid='ignore', divide='ignore'):
@@ -995,10 +1070,10 @@ def test_clearness_index():
min_cos_zenith=0,
max_clearness_index=0.82)
expected = np.array(
- [[ 0. , nan, 0.82 , 0.82 ],
- [ 0. , 0. , 0.82 , 0.82 ],
- [ 0. , 0. , 0.82 , 0.82 ],
- [ 0. , 0. , 0.001, 0.714]])
+ [[0., nan, 0.82, 0.82],
+ [0., 0., 0.82, 0.82],
+ [0., 0., 0.82, 0.82],
+ [0., 0., 0.001, 0.714]])
assert_allclose(out, expected, atol=0.001)
# scalars
out = irradiance.clearness_index(1000, 10, 1400)
@@ -1020,19 +1095,19 @@ def test_clearness_index_zenith_independent(airmass_kt):
out = irradiance.clearness_index_zenith_independent(clearness_index,
airmass_kt)
expected = np.array(
- [[0. , 0. , 0.1 , 1. ],
- [0. , 0. , 0.138, 1.383],
- [0. , 0. , 0.182, 1.822],
- [0. , 0. , 0.212, 2. ]])
+ [[0., 0., 0.1, 1.],
+ [0., 0., 0.138, 1.383],
+ [0., 0., 0.182, 1.822],
+ [0., 0., 0.212, 2.]])
assert_allclose(out, expected, atol=0.001)
# test max_clearness_index
out = irradiance.clearness_index_zenith_independent(
clearness_index, airmass_kt, max_clearness_index=0.82)
expected = np.array(
- [[ 0. , 0. , 0.1 , 0.82 ],
- [ 0. , 0. , 0.138, 0.82 ],
- [ 0. , 0. , 0.182, 0.82 ],
- [ 0. , 0. , 0.212, 0.82 ]])
+ [[0., 0., 0.1, 0.82],
+ [0., 0., 0.138, 0.82],
+ [0., 0., 0.182, 0.82],
+ [0., 0., 0.212, 0.82]])
assert_allclose(out, expected, atol=0.001)
# scalars
out = irradiance.clearness_index_zenith_independent(.4, 2)
@@ -1046,3 +1121,69 @@ def test_clearness_index_zenith_independent(airmass_kt):
airmass)
expected = pd.Series([np.nan, 0.553744437562], index=times)
assert_series_equal(out, expected)
+
+
+def test_complete_irradiance():
+ # Generate dataframe to test on
+ times = pd.date_range('2010-07-05 7:00:00-0700', periods=2, freq='H')
+ i = pd.DataFrame({'ghi': [372.103976116, 497.087579068],
+ 'dhi': [356.543700, 465.44400],
+ 'dni': [49.63565561689957, 62.10624908037814]},
+ index=times)
+ # Define the solar position and clearsky dataframe
+ solar_position = pd.DataFrame({'apparent_zenith': [71.7303262449161,
+ 59.369],
+ 'zenith': [71.7764, 59.395]},
+ index=pd.DatetimeIndex([
+ '2010-07-05 07:00:00-0700',
+ '2010-07-05 08:00:00-0700']))
+ clearsky = pd.DataFrame({'dni': [625.5254880160008, 778.7766443075865],
+ 'ghi': [246.3508023804681, 469.461381740857],
+ 'dhi': [50.25488725346631, 72.66909939636372]},
+ index=pd.DatetimeIndex([
+ '2010-07-05 07:00:00-0700',
+ '2010-07-05 08:00:00-0700']))
+ # Test scenario where DNI is generated via component sum equation
+ complete_df = irradiance.complete_irradiance(
+ solar_position.apparent_zenith,
+ ghi=i.ghi,
+ dhi=i.dhi,
+ dni=None,
+ dni_clear=clearsky.dni)
+ # Assert that the ghi, dhi, and dni series match the original dataframe
+ # values
+ assert_frame_equal(complete_df, i)
+ # Test scenario where GHI is generated via component sum equation
+ complete_df = irradiance.complete_irradiance(
+ solar_position.apparent_zenith,
+ ghi=None,
+ dhi=i.dhi,
+ dni=i.dni,
+ dni_clear=clearsky.dni)
+ # Assert that the ghi, dhi, and dni series match the original dataframe
+ # values
+ assert_frame_equal(complete_df, i)
+ # Test scenario where DHI is generated via component sum equation
+ complete_df = irradiance.complete_irradiance(
+ solar_position.apparent_zenith,
+ ghi=i.ghi,
+ dhi=None,
+ dni=i.dni,
+ dni_clear=clearsky.dni)
+ # Assert that the ghi, dhi, and dni series match the original dataframe
+ # values
+ assert_frame_equal(complete_df, i)
+ # Test scenario where all parameters are passed (throw error)
+ with pytest.raises(ValueError):
+ irradiance.complete_irradiance(solar_position.apparent_zenith,
+ ghi=i.ghi,
+ dhi=i.dhi,
+ dni=i.dni,
+ dni_clear=clearsky.dni)
+ # Test scenario where only one parameter is passed (throw error)
+ with pytest.raises(ValueError):
+ irradiance.complete_irradiance(solar_position.apparent_zenith,
+ ghi=None,
+ dhi=None,
+ dni=i.dni,
+ dni_clear=clearsky.dni)
diff --git a/pvlib/tests/test_location.py b/pvlib/tests/test_location.py
index a4b69e5cb2..b3c1576bdf 100644
--- a/pvlib/tests/test_location.py
+++ b/pvlib/tests/test_location.py
@@ -12,7 +12,7 @@
from pytz.exceptions import UnknownTimeZoneError
import pvlib
-from pvlib.location import Location
+from pvlib.location import Location, lookup_altitude
from pvlib.solarposition import declination_spencer71
from pvlib.solarposition import equation_of_time_spencer71
from .conftest import requires_ephem
@@ -326,3 +326,23 @@ def test_get_sun_rise_set_transit_valueerror(golden):
def test_extra_kwargs():
with pytest.raises(TypeError, match='arbitrary_kwarg'):
Location(32.2, -111, arbitrary_kwarg='value')
+
+
+def test_lookup_altitude():
+ max_alt_error = 125
+ # location name, latitude, longitude, altitude
+ test_locations = [
+ ('Tucson, USA', 32.2540, -110.9742, 724),
+ ('Lusaka, Zambia', -15.3875, 28.3228, 1253),
+ ('Tokio, Japan', 35.6762, 139.6503, 40),
+ ('Canberra, Australia', -35.2802, 149.1310, 566),
+ ('Bogota, Colombia', 4.7110, -74.0721, 2555),
+ ('Dead Sea, West Bank', 31.525849, 35.449214, -415),
+ ('New Delhi, India', 28.6139, 77.2090, 214),
+ ('Null Island, Atlantic Ocean', 0, 0, 0),
+ ]
+
+ for name, lat, lon, expected_alt in test_locations:
+ alt_found = lookup_altitude(lat, lon)
+ assert abs(alt_found - expected_alt) < max_alt_error, \
+ f'Max error exceded for {name} - e: {expected_alt} f: {alt_found}'
diff --git a/pvlib/tests/test_modelchain.py b/pvlib/tests/test_modelchain.py
index f4a92eadad..62b71f2042 100644
--- a/pvlib/tests/test_modelchain.py
+++ b/pvlib/tests/test_modelchain.py
@@ -495,6 +495,26 @@ def test_prepare_inputs_multi_weather(
mc.prepare_inputs(input_type((weather, weather)))
num_arrays = sapm_dc_snl_ac_system_Array.num_arrays
assert len(mc.results.total_irrad) == num_arrays
+ # check that albedo is transfered to mc.results from mc.system.arrays
+ assert mc.results.albedo == (0.2, 0.2)
+
+
+@pytest.mark.parametrize("input_type", [tuple, list])
+def test_prepare_inputs_albedo_in_weather(
+ sapm_dc_snl_ac_system_Array, location, input_type):
+ times = pd.date_range(start='20160101 1200-0700',
+ end='20160101 1800-0700', freq='6H')
+ mc = ModelChain(sapm_dc_snl_ac_system_Array, location)
+ weather = pd.DataFrame({'ghi': 1, 'dhi': 1, 'dni': 1, 'albedo': 0.5},
+ index=times)
+ # weather as a single DataFrame
+ mc.prepare_inputs(weather)
+ num_arrays = sapm_dc_snl_ac_system_Array.num_arrays
+ assert len(mc.results.albedo) == num_arrays
+ # repeat with tuple of weather
+ mc.prepare_inputs(input_type((weather, weather)))
+ num_arrays = sapm_dc_snl_ac_system_Array.num_arrays
+ assert len(mc.results.albedo) == num_arrays
def test_prepare_inputs_no_irradiance(sapm_dc_snl_ac_system, location):
diff --git a/pvlib/tests/test_pvsystem.py b/pvlib/tests/test_pvsystem.py
index 1141e490e9..7fa013d0dc 100644
--- a/pvlib/tests/test_pvsystem.py
+++ b/pvlib/tests/test_pvsystem.py
@@ -18,6 +18,7 @@
from pvlib.pvsystem import FixedMount
from pvlib import temperature
from pvlib._deprecation import pvlibDeprecationWarning
+from pvlib.tools import cosd
@pytest.mark.parametrize('iam_model,model_params', [
@@ -1673,51 +1674,70 @@ def test_PVSystem_multiple_array_get_aoi():
assert aoi_one > 0
-def test_PVSystem_get_irradiance():
- system = pvsystem.PVSystem(surface_tilt=32, surface_azimuth=135)
+@pytest.fixture
+def solar_pos():
times = pd.date_range(start='20160101 1200-0700',
end='20160101 1800-0700', freq='6H')
location = Location(latitude=32, longitude=-111)
- solar_position = location.get_solarposition(times)
+ return location.get_solarposition(times)
+
+
+def test_PVSystem_get_irradiance(solar_pos):
+ system = pvsystem.PVSystem(surface_tilt=32, surface_azimuth=135)
irrads = pd.DataFrame({'dni':[900,0], 'ghi':[600,0], 'dhi':[100,0]},
- index=times)
+ index=solar_pos.index)
- irradiance = system.get_irradiance(solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ irradiance = system.get_irradiance(solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'],
irrads['ghi'],
irrads['dhi'])
expected = pd.DataFrame(data=np.array(
- [[ 883.65494055, 745.86141676, 137.79352379, 126.397131 ,
- 11.39639279],
- [ 0. , -0. , 0. , 0. , 0. ]]),
+ [[883.65494055, 745.86141676, 137.79352379, 126.397131, 11.39639279],
+ [0., -0., 0., 0., 0.]]),
columns=['poa_global', 'poa_direct',
'poa_diffuse', 'poa_sky_diffuse',
'poa_ground_diffuse'],
- index=times)
+ index=solar_pos.index)
+ assert_frame_equal(irradiance, expected, check_less_precise=2)
+
+def test_PVSystem_get_irradiance_albedo(solar_pos):
+ system = pvsystem.PVSystem(surface_tilt=32, surface_azimuth=135)
+ irrads = pd.DataFrame({'dni': [900, 0], 'ghi': [600, 0], 'dhi': [100, 0],
+ 'albedo': [0.5, 0.5]},
+ index=solar_pos.index)
+ # albedo as a Series
+ irradiance = system.get_irradiance(solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
+ irrads['dni'],
+ irrads['ghi'],
+ irrads['dhi'],
+ albedo=irrads['albedo'])
+ expected = pd.DataFrame(data=np.array(
+ [[895.05134334, 745.86141676, 149.18992658, 126.397131, 22.79279558],
+ [0., -0., 0., 0., 0.]]),
+ columns=['poa_global', 'poa_direct', 'poa_diffuse', 'poa_sky_diffuse',
+ 'poa_ground_diffuse'],
+ index=solar_pos.index)
assert_frame_equal(irradiance, expected, check_less_precise=2)
-def test_PVSystem_get_irradiance_model(mocker):
+def test_PVSystem_get_irradiance_model(mocker, solar_pos):
spy_perez = mocker.spy(irradiance, 'perez')
spy_haydavies = mocker.spy(irradiance, 'haydavies')
system = pvsystem.PVSystem(surface_tilt=32, surface_azimuth=135)
- times = pd.date_range(start='20160101 1200-0700',
- end='20160101 1800-0700', freq='6H')
- location = Location(latitude=32, longitude=-111)
- solar_position = location.get_solarposition(times)
irrads = pd.DataFrame({'dni': [900, 0], 'ghi': [600, 0], 'dhi': [100, 0]},
- index=times)
- system.get_irradiance(solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ index=solar_pos.index)
+ system.get_irradiance(solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'],
irrads['ghi'],
irrads['dhi'])
spy_haydavies.assert_called_once()
- system.get_irradiance(solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ system.get_irradiance(solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'],
irrads['ghi'],
irrads['dhi'],
@@ -1725,31 +1745,28 @@ def test_PVSystem_get_irradiance_model(mocker):
spy_perez.assert_called_once()
-def test_PVSystem_multi_array_get_irradiance():
+def test_PVSystem_multi_array_get_irradiance(solar_pos):
array_one = pvsystem.Array(pvsystem.FixedMount(surface_tilt=32,
surface_azimuth=135))
array_two = pvsystem.Array(pvsystem.FixedMount(surface_tilt=5,
surface_azimuth=150))
system = pvsystem.PVSystem(arrays=[array_one, array_two])
- location = Location(latitude=32, longitude=-111)
- times = pd.date_range(start='20160101 1200-0700',
- end='20160101 1800-0700', freq='6H')
- solar_position = location.get_solarposition(times)
+
irrads = pd.DataFrame({'dni': [900, 0], 'ghi': [600, 0], 'dhi': [100, 0]},
- index=times)
+ index=solar_pos.index)
array_one_expected = array_one.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'], irrads['ghi'], irrads['dhi']
)
array_two_expected = array_two.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'], irrads['ghi'], irrads['dhi']
)
array_one_irrad, array_two_irrad = system.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dni'], irrads['ghi'], irrads['dhi']
)
assert_frame_equal(
@@ -1760,7 +1777,7 @@ def test_PVSystem_multi_array_get_irradiance():
)
-def test_PVSystem_multi_array_get_irradiance_multi_irrad():
+def test_PVSystem_multi_array_get_irradiance_multi_irrad(solar_pos):
"""Test a system with two identical arrays but different irradiance.
Because only the irradiance is different we expect the same output
@@ -1771,39 +1788,36 @@ def test_PVSystem_multi_array_get_irradiance_multi_irrad():
array_one = pvsystem.Array(pvsystem.FixedMount(0, 180))
array_two = pvsystem.Array(pvsystem.FixedMount(0, 180))
system = pvsystem.PVSystem(arrays=[array_one, array_two])
- location = Location(latitude=32, longitude=-111)
- times = pd.date_range(start='20160101 1200-0700',
- end='20160101 1800-0700', freq='6H')
- solar_position = location.get_solarposition(times)
+
irrads = pd.DataFrame({'dni': [900, 0], 'ghi': [600, 0], 'dhi': [100, 0]},
- index=times)
+ index=solar_pos.index)
irrads_two = pd.DataFrame(
{'dni': [0, 900], 'ghi': [0, 600], 'dhi': [0, 100]},
- index=times
+ index=solar_pos.index
)
array_irrad = system.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
(irrads['dhi'], irrads['dhi']),
(irrads['ghi'], irrads['ghi']),
(irrads['dni'], irrads['dni'])
)
assert_frame_equal(array_irrad[0], array_irrad[1])
array_irrad = system.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
(irrads['dhi'], irrads_two['dhi']),
(irrads['ghi'], irrads_two['ghi']),
(irrads['dni'], irrads_two['dni'])
)
array_one_expected = array_one.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads['dhi'], irrads['ghi'], irrads['dni']
)
array_two_expected = array_two.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
irrads_two['dhi'], irrads_two['ghi'], irrads_two['dni']
)
assert not array_irrad[0].equals(array_irrad[1])
@@ -1812,15 +1826,15 @@ def test_PVSystem_multi_array_get_irradiance_multi_irrad():
with pytest.raises(ValueError,
match="Length mismatch for per-array parameter"):
system.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
(irrads['dhi'], irrads_two['dhi'], irrads['dhi']),
(irrads['ghi'], irrads_two['ghi']),
irrads['dni']
)
array_irrad = system.get_irradiance(
- solar_position['apparent_zenith'],
- solar_position['azimuth'],
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
(irrads['dhi'], irrads_two['dhi']),
irrads['ghi'],
irrads['dni']
@@ -1829,6 +1843,44 @@ def test_PVSystem_multi_array_get_irradiance_multi_irrad():
assert not array_irrad[0].equals(array_irrad[1])
+def test_Array_get_irradiance(solar_pos):
+ array = pvsystem.Array(pvsystem.FixedMount(surface_tilt=32,
+ surface_azimuth=135))
+ irrads = pd.DataFrame({'dni': [900, 0], 'ghi': [600, 0], 'dhi': [100, 0]},
+ index=solar_pos.index)
+ # defaults for kwargs
+ modeled = array.get_irradiance(
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
+ irrads['dni'], irrads['ghi'], irrads['dhi']
+ )
+ expected = pd.DataFrame(
+ data=np.array(
+ [[883.65494055, 745.86141676, 137.79352379, 126.397131,
+ 11.39639279],
+ [0., -0., 0., 0., 0.]]),
+ columns=['poa_global', 'poa_direct', 'poa_diffuse', 'poa_sky_diffuse',
+ 'poa_ground_diffuse'],
+ index=solar_pos.index
+ )
+ assert_frame_equal(modeled, expected, check_less_precise=5)
+ # with specified kwargs, use isotropic sky diffuse because it's easier
+ modeled = array.get_irradiance(
+ solar_pos['apparent_zenith'],
+ solar_pos['azimuth'],
+ irrads['dni'], irrads['ghi'], irrads['dhi'],
+ albedo=0.5, model='isotropic'
+ )
+ sky_diffuse = irradiance.isotropic(array.mount.surface_tilt, irrads['dhi'])
+ ground_diff = irradiance.get_ground_diffuse(
+ array.mount.surface_tilt, irrads['ghi'], 0.5, surface_type=None)
+ aoi = irradiance.aoi(array.mount.surface_tilt, array.mount.surface_azimuth,
+ solar_pos['apparent_zenith'], solar_pos['azimuth'])
+ direct = irrads['dni'] * cosd(aoi)
+ expected = sky_diffuse + ground_diff + direct
+ assert_series_equal(expected, expected, check_less_precise=5)
+
+
@fail_on_pvlib_version('0.10')
@pytest.mark.parametrize('attr', ['module_parameters', 'module', 'module_type',
'temperature_model_parameters', 'albedo',
diff --git a/pvlib/tests/test_snow.py b/pvlib/tests/test_snow.py
index 3db56c8f61..11f0b21e83 100644
--- a/pvlib/tests/test_snow.py
+++ b/pvlib/tests/test_snow.py
@@ -95,3 +95,35 @@ def test_dc_loss_nrel():
expected = pd.Series([1, 1, .5, .625, .25, .5, 0])
actual = snow.dc_loss_nrel(snow_coverage, num_strings)
assert_series_equal(expected, actual)
+
+
+def test__townsend_effective_snow():
+ snow_total = np.array([25.4, 25.4, 12.7, 2.54, 0, 0, 0, 0, 0, 0, 12.7,
+ 25.4])
+ snow_events = np.array([2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3])
+ expected = np.array([19.05, 19.05, 12.7, 0, 0, 0, 0, 0, 0, 0, 9.525,
+ 254 / 15])
+ actual = snow._townsend_effective_snow(snow_total, snow_events)
+ np.testing.assert_allclose(expected, actual, rtol=1e-07)
+
+
+def test_loss_townsend():
+ snow_total = np.array([25.4, 25.4, 12.7, 2.54, 0, 0, 0, 0, 0, 0, 12.7,
+ 25.4])
+ snow_events = np.array([2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3])
+ surface_tilt = 20
+ relative_humidity = np.array([80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80])
+ temp_air = np.array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
+ poa_global = np.array([350000, 350000, 350000, 350000, 350000, 350000,
+ 350000, 350000, 350000, 350000, 350000, 350000])
+ angle_of_repose = 40
+ slant_height = 2.54
+ lower_edge_height = 0.254
+ expected = np.array([0.07696253, 0.07992262, 0.06216201, 0.01715392, 0, 0,
+ 0, 0, 0, 0, 0.02643821, 0.06068194])
+ actual = snow.loss_townsend(snow_total, snow_events, surface_tilt,
+ relative_humidity, temp_air,
+ poa_global, slant_height,
+ lower_edge_height, angle_of_repose)
+ np.testing.assert_allclose(expected, actual, rtol=1e-05)
diff --git a/pvlib/tests/test_spectrum.py b/pvlib/tests/test_spectrum.py
index cfcd50d1fe..80b53d2af3 100644
--- a/pvlib/tests/test_spectrum.py
+++ b/pvlib/tests/test_spectrum.py
@@ -1,13 +1,13 @@
import pytest
-from numpy.testing import assert_allclose
+from numpy.testing import assert_allclose, assert_approx_equal, assert_equal
import pandas as pd
import numpy as np
from pvlib import spectrum
+
from .conftest import DATA_DIR
SPECTRL2_TEST_DATA = DATA_DIR / 'spectrl2_example_spectra.csv'
-
@pytest.fixture
def spectrl2_data():
# reference spectra generated with solar_utils==0.3
@@ -34,9 +34,9 @@ def spectrl2_data():
'aerosol_turbidity_500nm': 0.1,
'dayofyear': 75
}
- df = pd.read_csv(SPECTRL2_TEST_DATA)
+ df = pd.read_csv(SPECTRL2_TEST_DATA, index_col=0)
# convert um to nm
- df['wavelength'] *= 1000
+ df['wavelength'] = np.round(df['wavelength'] * 1000, 1)
df[['specdif', 'specdir', 'specetr', 'specglo']] /= 1000
return kwargs, df
@@ -106,3 +106,68 @@ def test_aoi_gt_90(spectrl2_data):
for key in ['poa_direct', 'poa_global']:
message = f'{key} contains negative values for aoi>90'
assert np.all(spectra[key] >= 0), message
+
+
+def test_get_example_spectral_response():
+ # test that the sample sr is read and interpolated correctly
+ sr = spectrum.get_example_spectral_response()
+ assert_equal(len(sr), 185)
+ assert_equal(np.sum(sr.index), 136900)
+ assert_approx_equal(np.sum(sr), 107.6116)
+
+ wavelength = [270, 850, 950, 1200, 4001]
+ expected = [0.0, 0.92778, 1.0, 0.0, 0.0]
+
+ sr = spectrum.get_example_spectral_response(wavelength)
+ assert_equal(len(sr), len(wavelength))
+ assert_allclose(sr, expected, rtol=1e-5)
+
+
+def test_get_am15g():
+ # test that the reference spectrum is read and interpolated correctly
+ e = spectrum.get_am15g()
+ assert_equal(len(e), 2002)
+ assert_equal(np.sum(e.index), 2761442)
+ assert_approx_equal(np.sum(e), 1002.88, significant=6)
+
+ wavelength = [270, 850, 950, 1200, 4001]
+ expected = [0.0, 0.893720, 0.147260, 0.448250, 0.0]
+
+ e = spectrum.get_am15g(wavelength)
+ assert_equal(len(e), len(wavelength))
+ assert_allclose(e, expected, rtol=1e-6)
+
+
+def test_calc_spectral_mismatch_field(spectrl2_data):
+ # test that the mismatch is calculated correctly with
+ # - default and custom reference sepctrum
+ # - single or multiple sun spectra
+
+ # sample data
+ _, e_sun = spectrl2_data
+ e_sun = e_sun.set_index('wavelength')
+ e_sun = e_sun.transpose()
+
+ e_ref = spectrum.get_am15g()
+ sr = spectrum.get_example_spectral_response()
+
+ # test with single sun spectrum, same as ref spectrum
+ mm = spectrum.calc_spectral_mismatch_field(sr, e_sun=e_ref)
+ assert_approx_equal(mm, 1.0, significant=6)
+
+ # test with single sun spectrum
+ mm = spectrum.calc_spectral_mismatch_field(sr, e_sun=e_sun.loc['specglo'])
+ assert_approx_equal(mm, 0.992397, significant=6)
+
+ # test with single sun spectrum, also used as reference spectrum
+ mm = spectrum.calc_spectral_mismatch_field(sr,
+ e_sun=e_sun.loc['specglo'],
+ e_ref=e_sun.loc['specglo'])
+ assert_approx_equal(mm, 1.0, significant=6)
+
+ # test with multiple sun spectra
+ expected = [0.972982, 0.995581, 0.899782, 0.992397]
+
+ mm = spectrum.calc_spectral_mismatch_field(sr, e_sun=e_sun)
+ assert mm.index is e_sun.index
+ assert_allclose(mm, expected, rtol=1e-6)
diff --git a/pvlib/tests/test_temperature.py b/pvlib/tests/test_temperature.py
index 5630f441e5..5e36714d12 100644
--- a/pvlib/tests/test_temperature.py
+++ b/pvlib/tests/test_temperature.py
@@ -363,3 +363,90 @@ def test_prilliman_nans():
# original implementation would return some values < 1 here
expected = pd.Series(1., index=times)
assert_series_equal(actual, expected)
+
+
+def test_glm_conversions():
+ # it is easiest and sufficient to test conversion from & to the same model
+ glm = temperature.GenericLinearModel(module_efficiency=0.1,
+ absorptance=0.9)
+
+ inp = {'u0': 25.0, 'u1': 6.84}
+ glm.use_faiman(**inp)
+ out = glm.to_faiman()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+ inp = {'u_c': 25, 'u_v': 4}
+ glm.use_pvsyst(**inp)
+ out = glm.to_pvsyst()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+ # test with optional parameters
+ inp = {'u_c': 25, 'u_v': 4,
+ 'module_efficiency': 0.15,
+ 'alpha_absorption': 0.95}
+ glm.use_pvsyst(**inp)
+ out = glm.to_pvsyst()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+ inp = {'noct': 47}
+ glm.use_noct_sam(**inp)
+ out = glm.to_noct_sam()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+ # test with optional parameters
+ inp = {'noct': 47,
+ 'module_efficiency': 0.15,
+ 'transmittance_absorptance': 0.95}
+ glm.use_noct_sam(**inp)
+ out = glm.to_noct_sam()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+ inp = {'a': -3.5, 'b': -0.1}
+ glm.use_sapm(**inp)
+ out = glm.to_sapm()
+ for k, v in inp.items():
+ assert np.isclose(out[k], v)
+
+
+def test_glm_simulations():
+
+ glm = temperature.GenericLinearModel(module_efficiency=0.1,
+ absorptance=0.9)
+ wind = np.array([1.4, 1/.51, 5.4])
+ weather = (800, 20, wind)
+
+ inp = {'u0': 20.0, 'u1': 5.0}
+ glm.use_faiman(**inp)
+ out = glm(*weather)
+ expected = temperature.faiman(*weather, **inp)
+ assert np.allclose(out, expected)
+
+ out = glm(*weather)
+ assert np.allclose(out, expected)
+
+ out = glm(*weather, module_efficiency=0.1)
+ assert np.allclose(out, expected)
+
+ inp = glm.get_generic_linear()
+ out = temperature.generic_linear(*weather, **inp)
+ assert np.allclose(out, expected)
+
+
+def test_glm_repr():
+
+ glm = temperature.GenericLinearModel(module_efficiency=0.1,
+ absorptance=0.9)
+ inp = {'u0': 20.0, 'u1': 5.0}
+ glm.use_faiman(**inp)
+ expected = ("GenericLinearModel: {"
+ "'u_const': 16.0, "
+ "'du_wind': 4.0, "
+ "'eta': 0.1, "
+ "'alpha': 0.9}")
+
+ assert glm.__repr__() == expected
diff --git a/pvlib/tests/test_tools.py b/pvlib/tests/test_tools.py
index e6b8e9091a..167dca8cec 100644
--- a/pvlib/tests/test_tools.py
+++ b/pvlib/tests/test_tools.py
@@ -72,3 +72,10 @@ def test__golden_sect_DataFrame_nans():
v, x = tools._golden_sect_DataFrame(params, lower, upper,
_obj_test_golden_sect)
assert np.allclose(x, expected, atol=1e-8, equal_nan=True)
+
+
+def test_degrees_to_index_1():
+ """Test that _degrees_to_index raises an error when something other than
+ 'latitude' or 'longitude' is passed."""
+ with pytest.raises(IndexError): # invalid value for coordinate argument
+ tools._degrees_to_index(degrees=22.0, coordinate='width')
diff --git a/pvlib/tests/test_tracking.py b/pvlib/tests/test_tracking.py
index c88c92b248..87452939f5 100644
--- a/pvlib/tests/test_tracking.py
+++ b/pvlib/tests/test_tracking.py
@@ -393,6 +393,25 @@ def test_get_irradiance():
assert_frame_equal(irradiance, expected, check_less_precise=2)
+ # test with albedo as a Series
+ irrads['albedo'] = [0.5, 0.5]
+ with np.errstate(invalid='ignore'):
+ irradiance = system.get_irradiance(tracker_data['surface_tilt'],
+ tracker_data['surface_azimuth'],
+ solar_zenith,
+ solar_azimuth,
+ irrads['dni'],
+ irrads['ghi'],
+ irrads['dhi'],
+ albedo=irrads['albedo'])
+
+ expected = pd.Series(data=[21.05514984, nan], index=times,
+ name='poa_ground_diffuse')
+
+ assert_series_equal(irradiance['poa_ground_diffuse'], expected,
+ check_less_precise=2)
+
+
def test_SingleAxisTracker___repr__():
with pytest.warns(pvlibDeprecationWarning):
@@ -517,3 +536,72 @@ def test_singleaxis_aoi_gh1221():
fixed = pvlib.irradiance.aoi(90, 180, sp['apparent_zenith'], sp['azimuth'])
fixed[np.isnan(tr['aoi'])] = np.nan
assert np.allclose(tr['aoi'], fixed, equal_nan=True)
+
+
+def test_calc_surface_orientation_types():
+ # numpy arrays
+ rotations = np.array([-10, 0, 10])
+ expected_tilts = np.array([10, 0, 10], dtype=float)
+ expected_azimuths = np.array([270, 90, 90], dtype=float)
+ out = tracking.calc_surface_orientation(tracker_theta=rotations)
+ np.testing.assert_allclose(expected_tilts, out['surface_tilt'])
+ np.testing.assert_allclose(expected_azimuths, out['surface_azimuth'])
+
+ # pandas Series
+ rotations = pd.Series(rotations)
+ expected_tilts = pd.Series(expected_tilts).rename('surface_tilt')
+ expected_azimuths = pd.Series(expected_azimuths).rename('surface_azimuth')
+ out = tracking.calc_surface_orientation(tracker_theta=rotations)
+ assert_series_equal(expected_tilts, out['surface_tilt'])
+ assert_series_equal(expected_azimuths, out['surface_azimuth'])
+
+ # float
+ for rotation, expected_tilt, expected_azimuth in zip(
+ rotations, expected_tilts, expected_azimuths):
+ out = tracking.calc_surface_orientation(rotation)
+ assert out['surface_tilt'] == pytest.approx(expected_tilt)
+ assert out['surface_azimuth'] == pytest.approx(expected_azimuth)
+
+
+def test_calc_surface_orientation_kwargs():
+ # non-default axis tilt & azimuth
+ rotations = np.array([-10, 0, 10])
+ expected_tilts = np.array([22.2687445, 20.0, 22.2687445])
+ expected_azimuths = np.array([152.72683041, 180.0, 207.27316959])
+ out = tracking.calc_surface_orientation(rotations,
+ axis_tilt=20,
+ axis_azimuth=180)
+ np.testing.assert_allclose(out['surface_tilt'], expected_tilts)
+ np.testing.assert_allclose(out['surface_azimuth'], expected_azimuths)
+
+
+def test_calc_surface_orientation_special():
+ # special cases for rotations
+ rotations = np.array([-180, -90, -0, 0, 90, 180])
+ expected_tilts = np.array([180, 90, 0, 0, 90, 180], dtype=float)
+ expected_azimuths = [270, 270, 90, 90, 90, 90]
+ out = tracking.calc_surface_orientation(rotations)
+ np.testing.assert_allclose(out['surface_tilt'], expected_tilts)
+ np.testing.assert_allclose(out['surface_azimuth'], expected_azimuths)
+
+ # special case for axis_tilt
+ rotations = np.array([-10, 0, 10])
+ expected_tilts = np.array([90, 90, 90], dtype=float)
+ expected_azimuths = np.array([350, 0, 10], dtype=float)
+ out = tracking.calc_surface_orientation(rotations, axis_tilt=90)
+ np.testing.assert_allclose(out['surface_tilt'], expected_tilts)
+ np.testing.assert_allclose(out['surface_azimuth'], expected_azimuths)
+
+ # special cases for axis_azimuth
+ rotations = np.array([-10, 0, 10])
+ expected_tilts = np.array([10, 0, 10], dtype=float)
+ expected_azimuth_offsets = np.array([-90, 90, 90], dtype=float)
+ for axis_azimuth in [0, 90, 180, 270, 360]:
+ expected_azimuths = (axis_azimuth + expected_azimuth_offsets) % 360
+ out = tracking.calc_surface_orientation(rotations,
+ axis_azimuth=axis_azimuth)
+ np.testing.assert_allclose(out['surface_tilt'], expected_tilts)
+ # the rounding is a bit ugly, but necessary to test approximately equal
+ # in a modulo-360 sense.
+ np.testing.assert_allclose(np.round(out['surface_azimuth'], 4) % 360,
+ expected_azimuths, rtol=1e-5, atol=1e-5)
diff --git a/pvlib/tools.py b/pvlib/tools.py
index 5c6e1dd293..991568f9e0 100644
--- a/pvlib/tools.py
+++ b/pvlib/tools.py
@@ -85,6 +85,25 @@ def asind(number):
return res
+def acosd(number):
+ """
+ Inverse Cosine returning an angle in degrees
+
+ Parameters
+ ----------
+ number : float
+ Input number
+
+ Returns
+ -------
+ result : float
+ arccos result
+ """
+
+ res = np.degrees(np.arccos(number))
+ return res
+
+
def localize_to_utc(time, location):
"""
Converts or localizes a time series to UTC.
@@ -387,5 +406,67 @@ def _get_sample_intervals(times, win_length):
samples_per_window = int(win_length / sample_interval)
return sample_interval, samples_per_window
else:
- raise NotImplementedError('algorithm does not yet support unequal '
- 'times. consider resampling your data.')
+ message = (
+ 'algorithm does not yet support unequal time intervals. consider '
+ 'resampling your data and checking for gaps from missing '
+ 'periods, leap days, etc.'
+ )
+ raise NotImplementedError(message)
+
+
+def _degrees_to_index(degrees, coordinate):
+ """Transform input degrees to an output index integer.
+ Specify a degree value and either 'latitude' or 'longitude' to get
+ the appropriate index number for these two index numbers.
+ Parameters
+ ----------
+ degrees : float or int
+ Degrees of either latitude or longitude.
+ coordinate : string
+ Specify whether degrees arg is latitude or longitude. Must be set to
+ either 'latitude' or 'longitude' or an error will be raised.
+ Returns
+ -------
+ index : np.int16
+ The latitude or longitude index number to use when looking up values
+ in the Linke turbidity lookup table.
+ """
+ # Assign inputmin, inputmax, and outputmax based on degree type.
+ if coordinate == 'latitude':
+ inputmin = 90
+ inputmax = -90
+ outputmax = 2160
+ elif coordinate == 'longitude':
+ inputmin = -180
+ inputmax = 180
+ outputmax = 4320
+ else:
+ raise IndexError("coordinate must be 'latitude' or 'longitude'.")
+
+ inputrange = inputmax - inputmin
+ scale = outputmax/inputrange # number of indices per degree
+ center = inputmin + 1 / scale / 2 # shift to center of index
+ outputmax -= 1 # shift index to zero indexing
+ index = (degrees - center) * scale
+ err = IndexError('Input, %g, is out of range (%g, %g).' %
+ (degrees, inputmin, inputmax))
+
+ # If the index is still out of bounds after rounding, raise an error.
+ # 0.500001 is used in comparisons instead of 0.5 to allow for a small
+ # margin of error which can occur when dealing with floating point numbers.
+ if index > outputmax:
+ if index - outputmax <= 0.500001:
+ index = outputmax
+ else:
+ raise err
+ elif index < 0:
+ if -index <= 0.500001:
+ index = 0
+ else:
+ raise err
+ # If the index wasn't set to outputmax or 0, round it and cast it as an
+ # integer so it can be used in integer-based indexing.
+ else:
+ index = int(np.around(index))
+
+ return index
diff --git a/pvlib/tracking.py b/pvlib/tracking.py
index 951f2e886e..9ae148447f 100644
--- a/pvlib/tracking.py
+++ b/pvlib/tracking.py
@@ -1,7 +1,7 @@
import numpy as np
import pandas as pd
-from pvlib.tools import cosd, sind, tand
+from pvlib.tools import cosd, sind, tand, acosd, asind
from pvlib.pvsystem import (
PVSystem, Array, SingleAxisTrackerMount, _unwrap_single_value
)
@@ -20,7 +20,8 @@ class SingleAxisTracker(PVSystem):
----------
axis_tilt : float, default 0
The tilt of the axis of rotation (i.e, the y-axis defined by
- axis_azimuth) with respect to horizontal, in decimal degrees.
+ ``axis_azimuth``) with respect to horizontal.
+ ``axis_tilt`` must be >= 0 and <= 90. [degree]
axis_azimuth : float, default 0
A value denoting the compass direction along which the axis of
@@ -53,7 +54,7 @@ class SingleAxisTracker(PVSystem):
using a right-handed convention. For example, trackers with axis
azimuth of 180 degrees (heading south) will have a negative cross-axis
tilt if the tracker axes plane slopes down to the east and positive
- cross-axis tilt if the tracker axes plane slopes up to the east. Use
+ cross-axis tilt if the tracker axes plane slopes down to the west. Use
:func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate
`cross_axis_tilt`. [degrees]
@@ -187,7 +188,8 @@ def get_aoi(self, surface_tilt, surface_azimuth, solar_zenith,
@_unwrap_single_value
def get_irradiance(self, surface_tilt, surface_azimuth,
solar_zenith, solar_azimuth, dni, ghi, dhi,
- dni_extra=None, airmass=None, model='haydavies',
+ albedo=None, dni_extra=None, airmass=None,
+ model='haydavies',
**kwargs):
"""
Uses the :func:`irradiance.get_total_irradiance` function to
@@ -214,6 +216,8 @@ def get_irradiance(self, surface_tilt, surface_azimuth,
Global horizontal irradiance
dhi : float or Series
Diffuse horizontal irradiance
+ albedo : None, float or Series, default None
+ Ground surface albedo. [unitless]
dni_extra : float or Series, default None
Extraterrestrial direct normal irradiance
airmass : float or Series, default None
@@ -244,6 +248,13 @@ def get_irradiance(self, surface_tilt, surface_azimuth,
ghi = self._validate_per_array(ghi, system_wide=True)
dhi = self._validate_per_array(dhi, system_wide=True)
+ if albedo is None:
+ # assign default albedo here because SingleAxisTracker
+ # initializes albedo to None
+ albedo = 0.25
+
+ albedo = self._validate_per_array(albedo, system_wide=True)
+
return tuple(
irradiance.get_total_irradiance(
surface_tilt,
@@ -254,10 +265,10 @@ def get_irradiance(self, surface_tilt, surface_azimuth,
dni_extra=dni_extra,
airmass=airmass,
model=model,
- albedo=self.arrays[0].albedo,
+ albedo=albedo,
**kwargs)
- for array, dni, ghi, dhi in zip(
- self.arrays, dni, ghi, dhi
+ for array, dni, ghi, dhi, albedo in zip(
+ self.arrays, dni, ghi, dhi, albedo
)
)
@@ -294,7 +305,8 @@ def singleaxis(apparent_zenith, apparent_azimuth,
axis_tilt : float, default 0
The tilt of the axis of rotation (i.e, the y-axis defined by
- axis_azimuth) with respect to horizontal, in decimal degrees.
+ ``axis_azimuth``) with respect to horizontal.
+ ``axis_tilt`` must be >= 0 and <= 90. [degree]
axis_azimuth : float, default 0
A value denoting the compass direction along which the axis of
@@ -327,16 +339,16 @@ def singleaxis(apparent_zenith, apparent_azimuth,
using a right-handed convention. For example, trackers with axis
azimuth of 180 degrees (heading south) will have a negative cross-axis
tilt if the tracker axes plane slopes down to the east and positive
- cross-axis tilt if the tracker axes plane slopes up to the east. Use
+ cross-axis tilt if the tracker axes plane slopes down to the west. Use
:func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate
`cross_axis_tilt`. [degrees]
Returns
-------
dict or DataFrame with the following columns:
- * `tracker_theta`: The rotation angle of the tracker.
- tracker_theta = 0 is horizontal, and positive rotation angles are
- clockwise. [degrees]
+ * `tracker_theta`: The rotation angle of the tracker is a right-handed
+ rotation defined by `axis_azimuth`.
+ tracker_theta = 0 is horizontal. [degrees]
* `aoi`: The angle-of-incidence of direct irradiance onto the
rotated panel surface. [degrees]
* `surface_tilt`: The angle between the panel surface and the earth
@@ -349,6 +361,7 @@ def singleaxis(apparent_zenith, apparent_azimuth,
--------
pvlib.tracking.calc_axis_tilt
pvlib.tracking.calc_cross_axis_tilt
+ pvlib.tracking.calc_surface_orientation
References
----------
@@ -396,9 +409,10 @@ def singleaxis(apparent_zenith, apparent_azimuth,
cos_axis_tilt = cosd(axis_tilt)
sin_axis_tilt = sind(axis_tilt)
xp = x*cos_axis_azimuth - y*sin_axis_azimuth
- yp = (x*cos_axis_tilt*sin_axis_azimuth
- + y*cos_axis_tilt*cos_axis_azimuth
- - z*sin_axis_tilt)
+ # not necessary to calculate y'
+ # yp = (x*cos_axis_tilt*sin_axis_azimuth
+ # + y*cos_axis_tilt*cos_axis_azimuth
+ # - z*sin_axis_tilt)
zp = (x*sin_axis_tilt*sin_axis_azimuth
+ y*sin_axis_tilt*cos_axis_azimuth
+ z*cos_axis_tilt)
@@ -446,81 +460,18 @@ def singleaxis(apparent_zenith, apparent_azimuth,
# system-plane normal
tracker_theta = np.clip(tracker_theta, -max_angle, max_angle)
- # Calculate panel normal vector in panel-oriented x, y, z coordinates.
- # y-axis is axis of tracker rotation. tracker_theta is a compass angle
- # (clockwise is positive) rather than a trigonometric angle.
- # NOTE: the *0 is a trick to preserve NaN values.
- panel_norm = np.array([sind(tracker_theta),
- tracker_theta*0,
- cosd(tracker_theta)])
-
- # sun position in vector format in panel-oriented x, y, z coordinates
- sun_vec = np.array([xp, yp, zp])
-
- # calculate angle-of-incidence on panel
- # TODO: use irradiance.aoi
- projection = np.clip(np.sum(sun_vec*panel_norm, axis=0), -1, 1)
- aoi = np.degrees(np.arccos(projection))
-
- # Calculate panel tilt and azimuth in a coordinate system where the panel
- # tilt is the angle from horizontal, and the panel azimuth is the compass
- # angle (clockwise from north) to the projection of the panel's normal to
- # the earth's surface. These outputs are provided for convenience and
- # comparison with other PV software which use these angle conventions.
-
- # Project normal vector to earth surface. First rotate about x-axis by
- # angle -axis_tilt so that y-axis is also parallel to earth surface, then
- # project.
-
- # Calculate standard rotation matrix
- rot_x = np.array([[1, 0, 0],
- [0, cosd(-axis_tilt), -sind(-axis_tilt)],
- [0, sind(-axis_tilt), cosd(-axis_tilt)]])
-
- # panel_norm_earth contains the normal vector expressed in earth-surface
- # coordinates (z normal to surface, y aligned with tracker axis parallel to
- # earth)
- panel_norm_earth = np.dot(rot_x, panel_norm).T
-
- # projection to plane tangent to earth surface, in earth surface
- # coordinates
- projected_normal = np.array([panel_norm_earth[:, 0],
- panel_norm_earth[:, 1],
- panel_norm_earth[:, 2]*0]).T
-
- # calculate vector magnitudes
- projected_normal_mag = np.sqrt(np.nansum(projected_normal**2, axis=1))
-
- # renormalize the projected vector, avoid creating nan values.
- non_zeros = projected_normal_mag != 0
- projected_normal[non_zeros] = (projected_normal[non_zeros].T /
- projected_normal_mag[non_zeros]).T
-
- # calculation of surface_azimuth
- surface_azimuth = \
- np.degrees(np.arctan2(projected_normal[:, 1], projected_normal[:, 0]))
-
- # Rotate 0 reference from panel's x-axis to its y-axis and then back to
- # north.
- surface_azimuth = 90 - surface_azimuth + axis_azimuth
-
- # Map azimuth into [0,360) domain.
- with np.errstate(invalid='ignore'):
- surface_azimuth = surface_azimuth % 360
-
- # Calculate surface_tilt
- dotproduct = (panel_norm_earth * projected_normal).sum(axis=1)
- # for edge cases like axis_tilt=90, numpy's SIMD can produce values like
- # dotproduct = (1 + 2e-16). Clip off the excess so that arccos works:
- dotproduct = np.clip(dotproduct, -1, 1)
- surface_tilt = 90 - np.degrees(np.arccos(dotproduct))
+ # Calculate auxiliary angles
+ surface = calc_surface_orientation(tracker_theta, axis_tilt, axis_azimuth)
+ surface_tilt = surface['surface_tilt']
+ surface_azimuth = surface['surface_azimuth']
+ aoi = irradiance.aoi(surface_tilt, surface_azimuth,
+ apparent_zenith, apparent_azimuth)
# Bundle DataFrame for return values and filter for sun below horizon.
out = {'tracker_theta': tracker_theta, 'aoi': aoi,
- 'surface_tilt': surface_tilt, 'surface_azimuth': surface_azimuth}
+ 'surface_azimuth': surface_azimuth, 'surface_tilt': surface_tilt}
if index is not None:
out = pd.DataFrame(out, index=index)
- out = out[['tracker_theta', 'aoi', 'surface_azimuth', 'surface_tilt']]
out[zen_gt_90] = np.nan
else:
out = {k: np.where(zen_gt_90, np.nan, v) for k, v in out.items()}
@@ -528,10 +479,67 @@ def singleaxis(apparent_zenith, apparent_azimuth,
return out
+def calc_surface_orientation(tracker_theta, axis_tilt=0, axis_azimuth=0):
+ """
+ Calculate the surface tilt and azimuth angles for a given tracker rotation.
+
+ Parameters
+ ----------
+ tracker_theta : numeric
+ Tracker rotation angle as a right-handed rotation around
+ the axis defined by ``axis_tilt`` and ``axis_azimuth``. For example,
+ with ``axis_tilt=0`` and ``axis_azimuth=180``, ``tracker_theta > 0``
+ results in ``surface_azimuth`` to the West while ``tracker_theta < 0``
+ results in ``surface_azimuth`` to the East. [degree]
+ axis_tilt : float, default 0
+ The tilt of the axis of rotation with respect to horizontal.
+ ``axis_tilt`` must be >= 0 and <= 90. [degree]
+ axis_azimuth : float, default 0
+ A value denoting the compass direction along which the axis of
+ rotation lies. Measured east of north. [degree]
+
+ Returns
+ -------
+ dict or DataFrame
+ Contains keys ``'surface_tilt'`` and ``'surface_azimuth'`` representing
+ the module orientation accounting for tracker rotation and axis
+ orientation. [degree]
+
+ References
+ ----------
+ .. [1] William F. Marion and Aron P. Dobos, "Rotation Angle for the Optimum
+ Tracking of One-Axis Trackers", Technical Report NREL/TP-6A20-58891,
+ July 2013. :doi:`10.2172/1089596`
+ """
+ with np.errstate(invalid='ignore', divide='ignore'):
+ surface_tilt = acosd(cosd(tracker_theta) * cosd(axis_tilt))
+
+ # clip(..., -1, +1) to prevent arcsin(1 + epsilon) issues:
+ azimuth_delta = asind(np.clip(sind(tracker_theta) / sind(surface_tilt),
+ a_min=-1, a_max=1))
+ # Combine Eqs 2, 3, and 4:
+ azimuth_delta = np.where(abs(tracker_theta) < 90,
+ azimuth_delta,
+ -azimuth_delta + np.sign(tracker_theta) * 180)
+ # handle surface_tilt=0 case:
+ azimuth_delta = np.where(sind(surface_tilt) != 0, azimuth_delta, 90)
+ surface_azimuth = (axis_azimuth + azimuth_delta) % 360
+
+ out = {
+ 'surface_tilt': surface_tilt,
+ 'surface_azimuth': surface_azimuth,
+ }
+ if hasattr(tracker_theta, 'index'):
+ out = pd.DataFrame(out)
+ return out
+
+
def calc_axis_tilt(slope_azimuth, slope_tilt, axis_azimuth):
"""
Calculate tracker axis tilt in the global reference frame when on a sloped
- plane.
+ plane. Axis tilt is the inclination of the tracker rotation axis with
+ respect to horizontal, ranging from 0 degrees (horizontal axis) to 90
+ degrees (vertical axis).
Parameters
----------
@@ -633,7 +641,7 @@ def calc_cross_axis_tilt(
specified using a right-handed convention. For example, trackers with axis
azimuth of 180 degrees (heading south) will have a negative cross-axis tilt
if the tracker axes plane slopes down to the east and positive cross-axis
- tilt if the tracker axes plane slopes up to the east.
+ tilt if the tracker axes plane slopes down to the west.
Parameters
----------
@@ -646,7 +654,8 @@ def calc_cross_axis_tilt(
axis_azimuth : float
direction of tracker axes projected on the horizontal [degrees]
axis_tilt : float
- tilt of trackers relative to horizontal [degrees]
+ tilt of trackers relative to horizontal. ``axis_tilt`` must be >= 0
+ and <= 90. [degree]
Returns
-------
diff --git a/pvlib/version.py b/pvlib/version.py
index e44e9d1566..781e53797c 100644
--- a/pvlib/version.py
+++ b/pvlib/version.py
@@ -1,3 +1,10 @@
-from ._version import get_versions
-__version__ = get_versions()['version']
-del get_versions
+try:
+ from importlib.metadata import PackageNotFoundError, version
+except ImportError:
+ # for python < 3.8
+ from importlib_metadata import PackageNotFoundError, version
+
+try:
+ __version__ = version(__package__)
+except PackageNotFoundError:
+ __version__ = "0+unknown"
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000000..d60aea67f6
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,25 @@
+[build-system]
+requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
+build-backend = "setuptools.build_meta"
+
+[tool.setuptools_scm]
+
+[tool.pytest]
+junit_family = "xunit2"
+testpaths = "pvlib/tests"
+# warning messages to suppress from pytest output. useful in cases
+# where a dependency hasn't addressed a deprecation yet, and there's
+# nothing we can do to fix it ourselves.
+# syntax is: action:message:category:module:lineno
+# `message` is a regex matching start of warning message
+# https://docs.python.org/3/library/warnings.html#the-warnings-filter
+filterwarnings =[
+ "ignore:Using or importing the ABCs:DeprecationWarning:.*patsy:",
+ # deprecation warnings from numpy 1.20
+ "ignore:`np.long` is a deprecated alias:DeprecationWarning:.*numba:",
+ "ignore:`np.int` is a deprecated alias:DeprecationWarning:.*(numba|scipy):",
+ "ignore:`np.bool` is a deprecated alias:DeprecationWarning:.*numba:",
+ # warnings from netcdf4, but reported as coming from pvlib
+ "ignore:`np.bool` is a deprecated alias:DeprecationWarning:.*(ecmwf_macc|forecast):",
+ "ignore:tostring() is deprecated:DeprecationWarning:.*ecmwf_macc:"
+ ]
\ No newline at end of file
diff --git a/setup.cfg b/setup.cfg
index 17b6782a34..96cae26584 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,41 +1,8 @@
-# See the docstring in versioneer.py for instructions. Note that you must
-# re-run 'versioneer.py setup' after changing this section, and commit the
-# resulting files.
-
-[versioneer]
-VCS = git
-style = pep440
-versionfile_source = pvlib/_version.py
-versionfile_build = pvlib/_version.py
-tag_prefix = v
-parentdir_prefix = pvlib-python-
-
[aliases]
test=pytest
[flake8]
max-line-length = 79
ignore = E201, E241, E226, W503, W504
-exclude = pvlib/_version.py docs dist
-
-[tool:pytest]
-junit_family=xunit2
-testpaths = pvlib/tests
-filterwarnings =
- # warning messages to suppress from pytest output. useful in cases
- # where a dependency hasn't addressed a deprecation yet, and there's
- # nothing we can do to fix it ourselves.
- # syntax is: action:message:category:module:lineno
- # `message` is a regex matching start of warning message
- # https://docs.python.org/3/library/warnings.html#the-warnings-filter
-
- ignore:Using or importing the ABCs:DeprecationWarning:.*patsy:
-
- # deprecation warnings from numpy 1.20
- ignore:`np.long` is a deprecated alias:DeprecationWarning:.*numba:
- ignore:`np.int` is a deprecated alias:DeprecationWarning:.*(numba|scipy):
- ignore:`np.bool` is a deprecated alias:DeprecationWarning:.*numba:
- # warnings from netcdf4, but reported as coming from pvlib
- ignore:`np.bool` is a deprecated alias:DeprecationWarning:.*(ecmwf_macc|forecast):
- ignore:tostring\(\) is deprecated:DeprecationWarning:.*ecmwf_macc:
+exclude = docs dist
diff --git a/setup.py b/setup.py
index 96b4737515..134ec1d88c 100755
--- a/setup.py
+++ b/setup.py
@@ -1,18 +1,14 @@
#!/usr/bin/env python
import os
-import sys
try:
- from setuptools import setup
+ from setuptools import setup, find_namespace_packages
from setuptools.extension import Extension
except ImportError:
raise RuntimeError('setuptools is required')
-import versioneer
-
-
DESCRIPTION = ('A set of functions and classes for simulating the ' +
'performance of photovoltaic energy systems.')
LONG_DESCRIPTION = """
@@ -44,7 +40,7 @@
'requests',
'scipy >= 1.2.0',
'h5py',
- 'dataclasses; python_version < "3.7"']
+ 'importlib-metadata; python_version < "3.8"']
TESTS_REQUIRE = ['nose', 'pytest', 'pytest-cov', 'pytest-mock',
'requests-mock', 'pytest-timeout', 'pytest-rerunfailures',
@@ -75,7 +71,7 @@
'zip_safe': False,
'scripts': [],
'include_package_data': True,
- 'python_requires': '>=3.6'
+ 'python_requires': '>=3.7'
}
PROJECT_URLS = {
@@ -85,7 +81,17 @@
}
# set up pvlib packages to be installed and extensions to be compiled
-PACKAGES = ['pvlib']
+
+# the list of packages is not just the top-level "pvlib", but also
+# all sub-packages like "pvlib.bifacial". Here, setuptools's definition of
+# "package" is, in effect, any directory you want to include in the
+# distribution. So even "pvlib.data" counts as a package, despite
+# not having any python code or even an __init__.py.
+# setuptools.find_namespace_packages() will find all these directories,
+# although to exclude "docs", "ci", etc., we include only names matching
+# the "pvlib*" glob. Although note that "docs" does get added separately
+# via the MANIFEST.in spec.
+PACKAGES = find_namespace_packages(include=['pvlib*'])
extensions = []
@@ -107,8 +113,6 @@
setup(name=DISTNAME,
- version=versioneer.get_version(),
- cmdclass=versioneer.get_cmdclass(),
packages=PACKAGES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
diff --git a/versioneer.py b/versioneer.py
deleted file mode 100644
index 7ed2a21d28..0000000000
--- a/versioneer.py
+++ /dev/null
@@ -1,1774 +0,0 @@
-
-# Version: 0.16
-
-"""The Versioneer - like a rocketeer, but for versions.
-
-The Versioneer
-==============
-
-* like a rocketeer, but for versions!
-* https://github.com/warner/python-versioneer
-* Brian Warner
-* License: Public Domain
-* Compatible With: python2.6, 2.7, 3.3, 3.4, 3.5, and pypy
-* [![Latest Version]
-(https://pypip.in/version/versioneer/badge.svg?style=flat)
-](https://pypi.python.org/pypi/versioneer/)
-* [![Build Status]
-(https://travis-ci.org/warner/python-versioneer.png?branch=master)
-](https://travis-ci.org/warner/python-versioneer)
-
-This is a tool for managing a recorded version number in distutils-based
-python projects. The goal is to remove the tedious and error-prone "update
-the embedded version string" step from your release process. Making a new
-release should be as easy as recording a new tag in your version-control
-system, and maybe making new tarballs.
-
-
-## Quick Install
-
-* `pip install versioneer` to somewhere to your $PATH
-* add a `[versioneer]` section to your setup.cfg (see below)
-* run `versioneer install` in your source tree, commit the results
-
-## Version Identifiers
-
-Source trees come from a variety of places:
-
-* a version-control system checkout (mostly used by developers)
-* a nightly tarball, produced by build automation
-* a snapshot tarball, produced by a web-based VCS browser, like github's
- "tarball from tag" feature
-* a release tarball, produced by "setup.py sdist", distributed through PyPI
-
-Within each source tree, the version identifier (either a string or a number,
-this tool is format-agnostic) can come from a variety of places:
-
-* ask the VCS tool itself, e.g. "git describe" (for checkouts), which knows
- about recent "tags" and an absolute revision-id
-* the name of the directory into which the tarball was unpacked
-* an expanded VCS keyword ($Id$, etc)
-* a `_version.py` created by some earlier build step
-
-For released software, the version identifier is closely related to a VCS
-tag. Some projects use tag names that include more than just the version
-string (e.g. "myproject-1.2" instead of just "1.2"), in which case the tool
-needs to strip the tag prefix to extract the version identifier. For
-unreleased software (between tags), the version identifier should provide
-enough information to help developers recreate the same tree, while also
-giving them an idea of roughly how old the tree is (after version 1.2, before
-version 1.3). Many VCS systems can report a description that captures this,
-for example `git describe --tags --dirty --always` reports things like
-"0.7-1-g574ab98-dirty" to indicate that the checkout is one revision past the
-0.7 tag, has a unique revision id of "574ab98", and is "dirty" (it has
-uncommitted changes.
-
-The version identifier is used for multiple purposes:
-
-* to allow the module to self-identify its version: `myproject.__version__`
-* to choose a name and prefix for a 'setup.py sdist' tarball
-
-## Theory of Operation
-
-Versioneer works by adding a special `_version.py` file into your source
-tree, where your `__init__.py` can import it. This `_version.py` knows how to
-dynamically ask the VCS tool for version information at import time.
-
-`_version.py` also contains `$Revision$` markers, and the installation
-process marks `_version.py` to have this marker rewritten with a tag name
-during the `git archive` command. As a result, generated tarballs will
-contain enough information to get the proper version.
-
-To allow `setup.py` to compute a version too, a `versioneer.py` is added to
-the top level of your source tree, next to `setup.py` and the `setup.cfg`
-that configures it. This overrides several distutils/setuptools commands to
-compute the version when invoked, and changes `setup.py build` and `setup.py
-sdist` to replace `_version.py` with a small static file that contains just
-the generated version data.
-
-## Installation
-
-First, decide on values for the following configuration variables:
-
-* `VCS`: the version control system you use. Currently accepts "git".
-
-* `style`: the style of version string to be produced. See "Styles" below for
- details. Defaults to "pep440", which looks like
- `TAG[+DISTANCE.gSHORTHASH[.dirty]]`.
-
-* `versionfile_source`:
-
- A project-relative pathname into which the generated version strings should
- be written. This is usually a `_version.py` next to your project's main
- `__init__.py` file, so it can be imported at runtime. If your project uses
- `src/myproject/__init__.py`, this should be `src/myproject/_version.py`.
- This file should be checked in to your VCS as usual: the copy created below
- by `setup.py setup_versioneer` will include code that parses expanded VCS
- keywords in generated tarballs. The 'build' and 'sdist' commands will
- replace it with a copy that has just the calculated version string.
-
- This must be set even if your project does not have any modules (and will
- therefore never import `_version.py`), since "setup.py sdist" -based trees
- still need somewhere to record the pre-calculated version strings. Anywhere
- in the source tree should do. If there is a `__init__.py` next to your
- `_version.py`, the `setup.py setup_versioneer` command (described below)
- will append some `__version__`-setting assignments, if they aren't already
- present.
-
-* `versionfile_build`:
-
- Like `versionfile_source`, but relative to the build directory instead of
- the source directory. These will differ when your setup.py uses
- 'package_dir='. If you have `package_dir={'myproject': 'src/myproject'}`,
- then you will probably have `versionfile_build='myproject/_version.py'` and
- `versionfile_source='src/myproject/_version.py'`.
-
- If this is set to None, then `setup.py build` will not attempt to rewrite
- any `_version.py` in the built tree. If your project does not have any
- libraries (e.g. if it only builds a script), then you should use
- `versionfile_build = None`. To actually use the computed version string,
- your `setup.py` will need to override `distutils.command.build_scripts`
- with a subclass that explicitly inserts a copy of
- `versioneer.get_version()` into your script file. See
- `test/demoapp-script-only/setup.py` for an example.
-
-* `tag_prefix`:
-
- a string, like 'PROJECTNAME-', which appears at the start of all VCS tags.
- If your tags look like 'myproject-1.2.0', then you should use
- tag_prefix='myproject-'. If you use unprefixed tags like '1.2.0', this
- should be an empty string, using either `tag_prefix=` or `tag_prefix=''`.
-
-* `parentdir_prefix`:
-
- a optional string, frequently the same as tag_prefix, which appears at the
- start of all unpacked tarball filenames. If your tarball unpacks into
- 'myproject-1.2.0', this should be 'myproject-'. To disable this feature,
- just omit the field from your `setup.cfg`.
-
-This tool provides one script, named `versioneer`. That script has one mode,
-"install", which writes a copy of `versioneer.py` into the current directory
-and runs `versioneer.py setup` to finish the installation.
-
-To versioneer-enable your project:
-
-* 1: Modify your `setup.cfg`, adding a section named `[versioneer]` and
- populating it with the configuration values you decided earlier (note that
- the option names are not case-sensitive):
-
- ````
- [versioneer]
- VCS = git
- style = pep440
- versionfile_source = src/myproject/_version.py
- versionfile_build = myproject/_version.py
- tag_prefix =
- parentdir_prefix = myproject-
- ````
-
-* 2: Run `versioneer install`. This will do the following:
-
- * copy `versioneer.py` into the top of your source tree
- * create `_version.py` in the right place (`versionfile_source`)
- * modify your `__init__.py` (if one exists next to `_version.py`) to define
- `__version__` (by calling a function from `_version.py`)
- * modify your `MANIFEST.in` to include both `versioneer.py` and the
- generated `_version.py` in sdist tarballs
-
- `versioneer install` will complain about any problems it finds with your
- `setup.py` or `setup.cfg`. Run it multiple times until you have fixed all
- the problems.
-
-* 3: add a `import versioneer` to your setup.py, and add the following
- arguments to the setup() call:
-
- version=versioneer.get_version(),
- cmdclass=versioneer.get_cmdclass(),
-
-* 4: commit these changes to your VCS. To make sure you won't forget,
- `versioneer install` will mark everything it touched for addition using
- `git add`. Don't forget to add `setup.py` and `setup.cfg` too.
-
-## Post-Installation Usage
-
-Once established, all uses of your tree from a VCS checkout should get the
-current version string. All generated tarballs should include an embedded
-version string (so users who unpack them will not need a VCS tool installed).
-
-If you distribute your project through PyPI, then the release process should
-boil down to two steps:
-
-* 1: git tag 1.0
-* 2: python setup.py register sdist upload
-
-If you distribute it through github (i.e. users use github to generate
-tarballs with `git archive`), the process is:
-
-* 1: git tag 1.0
-* 2: git push; git push --tags
-
-Versioneer will report "0+untagged.NUMCOMMITS.gHASH" until your tree has at
-least one tag in its history.
-
-## Version-String Flavors
-
-Code which uses Versioneer can learn about its version string at runtime by
-importing `_version` from your main `__init__.py` file and running the
-`get_versions()` function. From the "outside" (e.g. in `setup.py`), you can
-import the top-level `versioneer.py` and run `get_versions()`.
-
-Both functions return a dictionary with different flavors of version
-information:
-
-* `['version']`: A condensed version string, rendered using the selected
- style. This is the most commonly used value for the project's version
- string. The default "pep440" style yields strings like `0.11`,
- `0.11+2.g1076c97`, or `0.11+2.g1076c97.dirty`. See the "Styles" section
- below for alternative styles.
-
-* `['full-revisionid']`: detailed revision identifier. For Git, this is the
- full SHA1 commit id, e.g. "1076c978a8d3cfc70f408fe5974aa6c092c949ac".
-
-* `['dirty']`: a boolean, True if the tree has uncommitted changes. Note that
- this is only accurate if run in a VCS checkout, otherwise it is likely to
- be False or None
-
-* `['error']`: if the version string could not be computed, this will be set
- to a string describing the problem, otherwise it will be None. It may be
- useful to throw an exception in setup.py if this is set, to avoid e.g.
- creating tarballs with a version string of "unknown".
-
-Some variants are more useful than others. Including `full-revisionid` in a
-bug report should allow developers to reconstruct the exact code being tested
-(or indicate the presence of local changes that should be shared with the
-developers). `version` is suitable for display in an "about" box or a CLI
-`--version` output: it can be easily compared against release notes and lists
-of bugs fixed in various releases.
-
-The installer adds the following text to your `__init__.py` to place a basic
-version in `YOURPROJECT.__version__`:
-
- from ._version import get_versions
- __version__ = get_versions()['version']
- del get_versions
-
-## Styles
-
-The setup.cfg `style=` configuration controls how the VCS information is
-rendered into a version string.
-
-The default style, "pep440", produces a PEP440-compliant string, equal to the
-un-prefixed tag name for actual releases, and containing an additional "local
-version" section with more detail for in-between builds. For Git, this is
-TAG[+DISTANCE.gHEX[.dirty]] , using information from `git describe --tags
---dirty --always`. For example "0.11+2.g1076c97.dirty" indicates that the
-tree is like the "1076c97" commit but has uncommitted changes (".dirty"), and
-that this commit is two revisions ("+2") beyond the "0.11" tag. For released
-software (exactly equal to a known tag), the identifier will only contain the
-stripped tag, e.g. "0.11".
-
-Other styles are available. See details.md in the Versioneer source tree for
-descriptions.
-
-## Debugging
-
-Versioneer tries to avoid fatal errors: if something goes wrong, it will tend
-to return a version of "0+unknown". To investigate the problem, run `setup.py
-version`, which will run the version-lookup code in a verbose mode, and will
-display the full contents of `get_versions()` (including the `error` string,
-which may help identify what went wrong).
-
-## Updating Versioneer
-
-To upgrade your project to a new release of Versioneer, do the following:
-
-* install the new Versioneer (`pip install -U versioneer` or equivalent)
-* edit `setup.cfg`, if necessary, to include any new configuration settings
- indicated by the release notes
-* re-run `versioneer install` in your source tree, to replace
- `SRC/_version.py`
-* commit any changed files
-
-### Upgrading to 0.16
-
-Nothing special.
-
-### Upgrading to 0.15
-
-Starting with this version, Versioneer is configured with a `[versioneer]`
-section in your `setup.cfg` file. Earlier versions required the `setup.py` to
-set attributes on the `versioneer` module immediately after import. The new
-version will refuse to run (raising an exception during import) until you
-have provided the necessary `setup.cfg` section.
-
-In addition, the Versioneer package provides an executable named
-`versioneer`, and the installation process is driven by running `versioneer
-install`. In 0.14 and earlier, the executable was named
-`versioneer-installer` and was run without an argument.
-
-### Upgrading to 0.14
-
-0.14 changes the format of the version string. 0.13 and earlier used
-hyphen-separated strings like "0.11-2-g1076c97-dirty". 0.14 and beyond use a
-plus-separated "local version" section strings, with dot-separated
-components, like "0.11+2.g1076c97". PEP440-strict tools did not like the old
-format, but should be ok with the new one.
-
-### Upgrading from 0.11 to 0.12
-
-Nothing special.
-
-### Upgrading from 0.10 to 0.11
-
-You must add a `versioneer.VCS = "git"` to your `setup.py` before re-running
-`setup.py setup_versioneer`. This will enable the use of additional
-version-control systems (SVN, etc) in the future.
-
-## Future Directions
-
-This tool is designed to make it easily extended to other version-control
-systems: all VCS-specific components are in separate directories like
-src/git/ . The top-level `versioneer.py` script is assembled from these
-components by running make-versioneer.py . In the future, make-versioneer.py
-will take a VCS name as an argument, and will construct a version of
-`versioneer.py` that is specific to the given VCS. It might also take the
-configuration arguments that are currently provided manually during
-installation by editing setup.py . Alternatively, it might go the other
-direction and include code from all supported VCS systems, reducing the
-number of intermediate scripts.
-
-
-## License
-
-To make Versioneer easier to embed, all its code is dedicated to the public
-domain. The `_version.py` that it creates is also in the public domain.
-Specifically, both are released under the Creative Commons "Public Domain
-Dedication" license (CC0-1.0), as described in
-https://creativecommons.org/publicdomain/zero/1.0/ .
-
-"""
-
-from __future__ import print_function
-try:
- import configparser
-except ImportError:
- import ConfigParser as configparser
-import errno
-import json
-import os
-import re
-import subprocess
-import sys
-
-
-class VersioneerConfig:
- """Container for Versioneer configuration parameters."""
-
-
-def get_root():
- """Get the project root directory.
-
- We require that all commands are run from the project root, i.e. the
- directory that contains setup.py, setup.cfg, and versioneer.py .
- """
- root = os.path.realpath(os.path.abspath(os.getcwd()))
- setup_py = os.path.join(root, "setup.py")
- versioneer_py = os.path.join(root, "versioneer.py")
- if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)):
- # allow 'python path/to/setup.py COMMAND'
- root = os.path.dirname(os.path.realpath(os.path.abspath(sys.argv[0])))
- setup_py = os.path.join(root, "setup.py")
- versioneer_py = os.path.join(root, "versioneer.py")
- if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)):
- err = ("Versioneer was unable to run the project root directory. "
- "Versioneer requires setup.py to be executed from "
- "its immediate directory (like 'python setup.py COMMAND'), "
- "or in a way that lets it use sys.argv[0] to find the root "
- "(like 'python path/to/setup.py COMMAND').")
- raise VersioneerBadRootError(err)
- try:
- # Certain runtime workflows (setup.py install/develop in a setuptools
- # tree) execute all dependencies in a single python process, so
- # "versioneer" may be imported multiple times, and python's shared
- # module-import table will cache the first one. So we can't use
- # os.path.dirname(__file__), as that will find whichever
- # versioneer.py was first imported, even in later projects.
- me = os.path.realpath(os.path.abspath(__file__))
- if os.path.splitext(me)[0] != os.path.splitext(versioneer_py)[0]:
- print("Warning: build in %s is using versioneer.py from %s"
- % (os.path.dirname(me), versioneer_py))
- except NameError:
- pass
- return root
-
-
-def get_config_from_root(root):
- """Read the project setup.cfg file to determine Versioneer config."""
- # This might raise EnvironmentError (if setup.cfg is missing), or
- # configparser.NoSectionError (if it lacks a [versioneer] section), or
- # configparser.NoOptionError (if it lacks "VCS="). See the docstring at
- # the top of versioneer.py for instructions on writing your setup.cfg .
- setup_cfg = os.path.join(root, "setup.cfg")
- parser = configparser.SafeConfigParser()
- with open(setup_cfg, "r") as f:
- parser.readfp(f)
- VCS = parser.get("versioneer", "VCS") # mandatory
-
- def get(parser, name):
- if parser.has_option("versioneer", name):
- return parser.get("versioneer", name)
- return None
- cfg = VersioneerConfig()
- cfg.VCS = VCS
- cfg.style = get(parser, "style") or ""
- cfg.versionfile_source = get(parser, "versionfile_source")
- cfg.versionfile_build = get(parser, "versionfile_build")
- cfg.tag_prefix = get(parser, "tag_prefix")
- if cfg.tag_prefix in ("''", '""'):
- cfg.tag_prefix = ""
- cfg.parentdir_prefix = get(parser, "parentdir_prefix")
- cfg.verbose = get(parser, "verbose")
- return cfg
-
-
-class NotThisMethod(Exception):
- """Exception raised if a method is not valid for the current scenario."""
-
-# these dictionaries contain VCS-specific tools
-LONG_VERSION_PY = {}
-HANDLERS = {}
-
-
-def register_vcs_handler(vcs, method): # decorator
- """Decorator to mark a method as the handler for a particular VCS."""
- def decorate(f):
- """Store f in HANDLERS[vcs][method]."""
- if vcs not in HANDLERS:
- HANDLERS[vcs] = {}
- HANDLERS[vcs][method] = f
- return f
- return decorate
-
-
-def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False):
- """Call the given command(s)."""
- assert isinstance(commands, list)
- p = None
- for c in commands:
- try:
- dispcmd = str([c] + args)
- # remember shell=False, so use git.cmd on windows, not just git
- p = subprocess.Popen([c] + args, cwd=cwd, stdout=subprocess.PIPE,
- stderr=(subprocess.PIPE if hide_stderr
- else None))
- break
- except EnvironmentError:
- e = sys.exc_info()[1]
- if e.errno == errno.ENOENT:
- continue
- if verbose:
- print("unable to run %s" % dispcmd)
- print(e)
- return None
- else:
- if verbose:
- print("unable to find command, tried %s" % (commands,))
- return None
- stdout = p.communicate()[0].strip()
- if sys.version_info[0] >= 3:
- stdout = stdout.decode()
- if p.returncode != 0:
- if verbose:
- print("unable to run %s (error)" % dispcmd)
- return None
- return stdout
-LONG_VERSION_PY['git'] = '''
-# This file helps to compute a version number in source trees obtained from
-# git-archive tarball (such as those provided by githubs download-from-tag
-# feature). Distribution tarballs (built by setup.py sdist) and build
-# directories (produced by setup.py build) will contain a much shorter file
-# that just contains the computed version number.
-
-# This file is released into the public domain. Generated by
-# versioneer-0.16 (https://github.com/warner/python-versioneer)
-
-"""Git implementation of _version.py."""
-
-import errno
-import os
-import re
-import subprocess
-import sys
-
-
-def get_keywords():
- """Get the keywords needed to look up the version information."""
- # these strings will be replaced by git during git-archive.
- # setup.py/versioneer.py will grep for the variable names, so they must
- # each be defined on a line of their own. _version.py will just call
- # get_keywords().
- git_refnames = "%(DOLLAR)sFormat:%%d%(DOLLAR)s"
- git_full = "%(DOLLAR)sFormat:%%H%(DOLLAR)s"
- keywords = {"refnames": git_refnames, "full": git_full}
- return keywords
-
-
-class VersioneerConfig:
- """Container for Versioneer configuration parameters."""
-
-
-def get_config():
- """Create, populate and return the VersioneerConfig() object."""
- # these strings are filled in when 'setup.py versioneer' creates
- # _version.py
- cfg = VersioneerConfig()
- cfg.VCS = "git"
- cfg.style = "%(STYLE)s"
- cfg.tag_prefix = "%(TAG_PREFIX)s"
- cfg.parentdir_prefix = "%(PARENTDIR_PREFIX)s"
- cfg.versionfile_source = "%(VERSIONFILE_SOURCE)s"
- cfg.verbose = False
- return cfg
-
-
-class NotThisMethod(Exception):
- """Exception raised if a method is not valid for the current scenario."""
-
-
-LONG_VERSION_PY = {}
-HANDLERS = {}
-
-
-def register_vcs_handler(vcs, method): # decorator
- """Decorator to mark a method as the handler for a particular VCS."""
- def decorate(f):
- """Store f in HANDLERS[vcs][method]."""
- if vcs not in HANDLERS:
- HANDLERS[vcs] = {}
- HANDLERS[vcs][method] = f
- return f
- return decorate
-
-
-def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False):
- """Call the given command(s)."""
- assert isinstance(commands, list)
- p = None
- for c in commands:
- try:
- dispcmd = str([c] + args)
- # remember shell=False, so use git.cmd on windows, not just git
- p = subprocess.Popen([c] + args, cwd=cwd, stdout=subprocess.PIPE,
- stderr=(subprocess.PIPE if hide_stderr
- else None))
- break
- except EnvironmentError:
- e = sys.exc_info()[1]
- if e.errno == errno.ENOENT:
- continue
- if verbose:
- print("unable to run %%s" %% dispcmd)
- print(e)
- return None
- else:
- if verbose:
- print("unable to find command, tried %%s" %% (commands,))
- return None
- stdout = p.communicate()[0].strip()
- if sys.version_info[0] >= 3:
- stdout = stdout.decode()
- if p.returncode != 0:
- if verbose:
- print("unable to run %%s (error)" %% dispcmd)
- return None
- return stdout
-
-
-def versions_from_parentdir(parentdir_prefix, root, verbose):
- """Try to determine the version from the parent directory name.
-
- Source tarballs conventionally unpack into a directory that includes
- both the project name and a version string.
- """
- dirname = os.path.basename(root)
- if not dirname.startswith(parentdir_prefix):
- if verbose:
- print("guessing rootdir is '%%s', but '%%s' doesn't start with "
- "prefix '%%s'" %% (root, dirname, parentdir_prefix))
- raise NotThisMethod("rootdir doesn't start with parentdir_prefix")
- return {"version": dirname[len(parentdir_prefix):],
- "full-revisionid": None,
- "dirty": False, "error": None}
-
-
-@register_vcs_handler("git", "get_keywords")
-def git_get_keywords(versionfile_abs):
- """Extract version information from the given file."""
- # the code embedded in _version.py can just fetch the value of these
- # keywords. When used from setup.py, we don't want to import _version.py,
- # so we do it with a regexp instead. This function is not used from
- # _version.py.
- keywords = {}
- try:
- f = open(versionfile_abs, "r")
- for line in f.readlines():
- if line.strip().startswith("git_refnames ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["refnames"] = mo.group(1)
- if line.strip().startswith("git_full ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["full"] = mo.group(1)
- f.close()
- except EnvironmentError:
- pass
- return keywords
-
-
-@register_vcs_handler("git", "keywords")
-def git_versions_from_keywords(keywords, tag_prefix, verbose):
- """Get version information from git keywords."""
- if not keywords:
- raise NotThisMethod("no keywords at all, weird")
- refnames = keywords["refnames"].strip()
- if refnames.startswith("$Format"):
- if verbose:
- print("keywords are unexpanded, not using")
- raise NotThisMethod("unexpanded keywords, not a git-archive tarball")
- refs = set([r.strip() for r in refnames.strip("()").split(",")])
- # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of
- # just "foo-1.0". If we see a "tag: " prefix, prefer those.
- TAG = "tag: "
- tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)])
- if not tags:
- # Either we're using git < 1.8.3, or there really are no tags. We use
- # a heuristic: assume all version tags have a digit. The old git %%d
- # expansion behaves like git log --decorate=short and strips out the
- # refs/heads/ and refs/tags/ prefixes that would let us distinguish
- # between branches and tags. By ignoring refnames without digits, we
- # filter out many common branch names like "release" and
- # "stabilization", as well as "HEAD" and "master".
- tags = set([r for r in refs if re.search(r'\d', r)])
- if verbose:
- print("discarding '%%s', no digits" %% ",".join(refs-tags))
- if verbose:
- print("likely tags: %%s" %% ",".join(sorted(tags)))
- for ref in sorted(tags):
- # sorting will prefer e.g. "2.0" over "2.0rc1"
- if ref.startswith(tag_prefix):
- r = ref[len(tag_prefix):]
- if verbose:
- print("picking %%s" %% r)
- return {"version": r,
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": None
- }
- # no suitable tags, so version is "0+unknown", but full hex is still there
- if verbose:
- print("no suitable tags, using unknown + full revision id")
- return {"version": "0+unknown",
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": "no suitable tags"}
-
-
-@register_vcs_handler("git", "pieces_from_vcs")
-def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
- """Get version from 'git describe' in the root of the source tree.
-
- This only gets called if the git-archive 'subst' keywords were *not*
- expanded, and _version.py hasn't already been rewritten with a short
- version string, meaning we're inside a checked out source tree.
- """
- if not os.path.exists(os.path.join(root, ".git")):
- if verbose:
- print("no .git in %%s" %% root)
- raise NotThisMethod("no .git directory")
-
- GITS = ["git"]
- if sys.platform == "win32":
- GITS = ["git.cmd", "git.exe"]
- # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty]
- # if there isn't one, this yields HEX[-dirty] (no NUM)
- describe_out = run_command(GITS, ["describe", "--tags", "--dirty",
- "--always", "--long",
- "--match", "%%s*" %% tag_prefix],
- cwd=root)
- # --long was added in git-1.5.5
- if describe_out is None:
- raise NotThisMethod("'git describe' failed")
- describe_out = describe_out.strip()
- full_out = run_command(GITS, ["rev-parse", "HEAD"], cwd=root)
- if full_out is None:
- raise NotThisMethod("'git rev-parse' failed")
- full_out = full_out.strip()
-
- pieces = {}
- pieces["long"] = full_out
- pieces["short"] = full_out[:7] # maybe improved later
- pieces["error"] = None
-
- # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty]
- # TAG might have hyphens.
- git_describe = describe_out
-
- # look for -dirty suffix
- dirty = git_describe.endswith("-dirty")
- pieces["dirty"] = dirty
- if dirty:
- git_describe = git_describe[:git_describe.rindex("-dirty")]
-
- # now we have TAG-NUM-gHEX or HEX
-
- if "-" in git_describe:
- # TAG-NUM-gHEX
- mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe)
- if not mo:
- # unparseable. Maybe git-describe is misbehaving?
- pieces["error"] = ("unable to parse git-describe output: '%%s'"
- %% describe_out)
- return pieces
-
- # tag
- full_tag = mo.group(1)
- if not full_tag.startswith(tag_prefix):
- if verbose:
- fmt = "tag '%%s' doesn't start with prefix '%%s'"
- print(fmt %% (full_tag, tag_prefix))
- pieces["error"] = ("tag '%%s' doesn't start with prefix '%%s'"
- %% (full_tag, tag_prefix))
- return pieces
- pieces["closest-tag"] = full_tag[len(tag_prefix):]
-
- # distance: number of commits since tag
- pieces["distance"] = int(mo.group(2))
-
- # commit: short hex revision ID
- pieces["short"] = mo.group(3)
-
- else:
- # HEX: no tags
- pieces["closest-tag"] = None
- count_out = run_command(GITS, ["rev-list", "HEAD", "--count"],
- cwd=root)
- pieces["distance"] = int(count_out) # total number of commits
-
- return pieces
-
-
-def plus_or_dot(pieces):
- """Return a + if we don't already have one, else return a ."""
- if "+" in pieces.get("closest-tag", ""):
- return "."
- return "+"
-
-
-def render_pep440(pieces):
- """Build up version string, with post-release "local version identifier".
-
- Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you
- get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty
-
- Exceptions:
- 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += plus_or_dot(pieces)
- rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- else:
- # exception #1
- rendered = "0+untagged.%%d.g%%s" %% (pieces["distance"],
- pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- return rendered
-
-
-def render_pep440_pre(pieces):
- """TAG[.post.devDISTANCE] -- No -dirty.
-
- Exceptions:
- 1: no tags. 0.post.devDISTANCE
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += ".post.dev%%d" %% pieces["distance"]
- else:
- # exception #1
- rendered = "0.post.dev%%d" %% pieces["distance"]
- return rendered
-
-
-def render_pep440_post(pieces):
- """TAG[.postDISTANCE[.dev0]+gHEX] .
-
- The ".dev0" means dirty. Note that .dev0 sorts backwards
- (a dirty tree will appear "older" than the corresponding clean one),
- but you shouldn't be releasing software with -dirty anyways.
-
- Exceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%%d" %% pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += plus_or_dot(pieces)
- rendered += "g%%s" %% pieces["short"]
- else:
- # exception #1
- rendered = "0.post%%d" %% pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += "+g%%s" %% pieces["short"]
- return rendered
-
-
-def render_pep440_old(pieces):
- """TAG[.postDISTANCE[.dev0]] .
-
- The ".dev0" means dirty.
-
- Eexceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%%d" %% pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- else:
- # exception #1
- rendered = "0.post%%d" %% pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- return rendered
-
-
-def render_git_describe(pieces):
- """TAG[-DISTANCE-gHEX][-dirty].
-
- Like 'git describe --tags --dirty --always'.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render_git_describe_long(pieces):
- """TAG-DISTANCE-gHEX[-dirty].
-
- Like 'git describe --tags --dirty --always -long'.
- The distance/hash is unconditional.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render(pieces, style):
- """Render the given version pieces into the requested style."""
- if pieces["error"]:
- return {"version": "unknown",
- "full-revisionid": pieces.get("long"),
- "dirty": None,
- "error": pieces["error"]}
-
- if not style or style == "default":
- style = "pep440" # the default
-
- if style == "pep440":
- rendered = render_pep440(pieces)
- elif style == "pep440-pre":
- rendered = render_pep440_pre(pieces)
- elif style == "pep440-post":
- rendered = render_pep440_post(pieces)
- elif style == "pep440-old":
- rendered = render_pep440_old(pieces)
- elif style == "git-describe":
- rendered = render_git_describe(pieces)
- elif style == "git-describe-long":
- rendered = render_git_describe_long(pieces)
- else:
- raise ValueError("unknown style '%%s'" %% style)
-
- return {"version": rendered, "full-revisionid": pieces["long"],
- "dirty": pieces["dirty"], "error": None}
-
-
-def get_versions():
- """Get version information or return default if unable to do so."""
- # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have
- # __file__, we can work backwards from there to the root. Some
- # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which
- # case we can only use expanded keywords.
-
- cfg = get_config()
- verbose = cfg.verbose
-
- try:
- return git_versions_from_keywords(get_keywords(), cfg.tag_prefix,
- verbose)
- except NotThisMethod:
- pass
-
- try:
- root = os.path.realpath(__file__)
- # versionfile_source is the relative path from the top of the source
- # tree (where the .git directory might live) to this file. Invert
- # this to find the root from __file__.
- for i in cfg.versionfile_source.split('/'):
- root = os.path.dirname(root)
- except NameError:
- return {"version": "0+unknown", "full-revisionid": None,
- "dirty": None,
- "error": "unable to find root of source tree"}
-
- try:
- pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose)
- return render(pieces, cfg.style)
- except NotThisMethod:
- pass
-
- try:
- if cfg.parentdir_prefix:
- return versions_from_parentdir(cfg.parentdir_prefix, root, verbose)
- except NotThisMethod:
- pass
-
- return {"version": "0+unknown", "full-revisionid": None,
- "dirty": None,
- "error": "unable to compute version"}
-'''
-
-
-@register_vcs_handler("git", "get_keywords")
-def git_get_keywords(versionfile_abs):
- """Extract version information from the given file."""
- # the code embedded in _version.py can just fetch the value of these
- # keywords. When used from setup.py, we don't want to import _version.py,
- # so we do it with a regexp instead. This function is not used from
- # _version.py.
- keywords = {}
- try:
- f = open(versionfile_abs, "r")
- for line in f.readlines():
- if line.strip().startswith("git_refnames ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["refnames"] = mo.group(1)
- if line.strip().startswith("git_full ="):
- mo = re.search(r'=\s*"(.*)"', line)
- if mo:
- keywords["full"] = mo.group(1)
- f.close()
- except EnvironmentError:
- pass
- return keywords
-
-
-@register_vcs_handler("git", "keywords")
-def git_versions_from_keywords(keywords, tag_prefix, verbose):
- """Get version information from git keywords."""
- if not keywords:
- raise NotThisMethod("no keywords at all, weird")
- refnames = keywords["refnames"].strip()
- if refnames.startswith("$Format"):
- if verbose:
- print("keywords are unexpanded, not using")
- raise NotThisMethod("unexpanded keywords, not a git-archive tarball")
- refs = set([r.strip() for r in refnames.strip("()").split(",")])
- # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of
- # just "foo-1.0". If we see a "tag: " prefix, prefer those.
- TAG = "tag: "
- tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)])
- if not tags:
- # Either we're using git < 1.8.3, or there really are no tags. We use
- # a heuristic: assume all version tags have a digit. The old git %d
- # expansion behaves like git log --decorate=short and strips out the
- # refs/heads/ and refs/tags/ prefixes that would let us distinguish
- # between branches and tags. By ignoring refnames without digits, we
- # filter out many common branch names like "release" and
- # "stabilization", as well as "HEAD" and "master".
- tags = set([r for r in refs if re.search(r'\d', r)])
- if verbose:
- print("discarding '%s', no digits" % ",".join(refs-tags))
- if verbose:
- print("likely tags: %s" % ",".join(sorted(tags)))
- for ref in sorted(tags):
- # sorting will prefer e.g. "2.0" over "2.0rc1"
- if ref.startswith(tag_prefix):
- r = ref[len(tag_prefix):]
- if verbose:
- print("picking %s" % r)
- return {"version": r,
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": None
- }
- # no suitable tags, so version is "0+unknown", but full hex is still there
- if verbose:
- print("no suitable tags, using unknown + full revision id")
- return {"version": "0+unknown",
- "full-revisionid": keywords["full"].strip(),
- "dirty": False, "error": "no suitable tags"}
-
-
-@register_vcs_handler("git", "pieces_from_vcs")
-def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command):
- """Get version from 'git describe' in the root of the source tree.
-
- This only gets called if the git-archive 'subst' keywords were *not*
- expanded, and _version.py hasn't already been rewritten with a short
- version string, meaning we're inside a checked out source tree.
- """
- if not os.path.exists(os.path.join(root, ".git")):
- if verbose:
- print("no .git in %s" % root)
- raise NotThisMethod("no .git directory")
-
- GITS = ["git"]
- if sys.platform == "win32":
- GITS = ["git.cmd", "git.exe"]
- # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty]
- # if there isn't one, this yields HEX[-dirty] (no NUM)
- describe_out = run_command(GITS, ["describe", "--tags", "--dirty",
- "--always", "--long",
- "--match", "%s*" % tag_prefix],
- cwd=root)
- # --long was added in git-1.5.5
- if describe_out is None:
- raise NotThisMethod("'git describe' failed")
- describe_out = describe_out.strip()
- full_out = run_command(GITS, ["rev-parse", "HEAD"], cwd=root)
- if full_out is None:
- raise NotThisMethod("'git rev-parse' failed")
- full_out = full_out.strip()
-
- pieces = {}
- pieces["long"] = full_out
- pieces["short"] = full_out[:7] # maybe improved later
- pieces["error"] = None
-
- # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty]
- # TAG might have hyphens.
- git_describe = describe_out
-
- # look for -dirty suffix
- dirty = git_describe.endswith("-dirty")
- pieces["dirty"] = dirty
- if dirty:
- git_describe = git_describe[:git_describe.rindex("-dirty")]
-
- # now we have TAG-NUM-gHEX or HEX
-
- if "-" in git_describe:
- # TAG-NUM-gHEX
- mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe)
- if not mo:
- # unparseable. Maybe git-describe is misbehaving?
- pieces["error"] = ("unable to parse git-describe output: '%s'"
- % describe_out)
- return pieces
-
- # tag
- full_tag = mo.group(1)
- if not full_tag.startswith(tag_prefix):
- if verbose:
- fmt = "tag '%s' doesn't start with prefix '%s'"
- print(fmt % (full_tag, tag_prefix))
- pieces["error"] = ("tag '%s' doesn't start with prefix '%s'"
- % (full_tag, tag_prefix))
- return pieces
- pieces["closest-tag"] = full_tag[len(tag_prefix):]
-
- # distance: number of commits since tag
- pieces["distance"] = int(mo.group(2))
-
- # commit: short hex revision ID
- pieces["short"] = mo.group(3)
-
- else:
- # HEX: no tags
- pieces["closest-tag"] = None
- count_out = run_command(GITS, ["rev-list", "HEAD", "--count"],
- cwd=root)
- pieces["distance"] = int(count_out) # total number of commits
-
- return pieces
-
-
-def do_vcs_install(manifest_in, versionfile_source, ipy):
- """Git-specific installation logic for Versioneer.
-
- For Git, this means creating/changing .gitattributes to mark _version.py
- for export-time keyword substitution.
- """
- GITS = ["git"]
- if sys.platform == "win32":
- GITS = ["git.cmd", "git.exe"]
- files = [manifest_in, versionfile_source]
- if ipy:
- files.append(ipy)
- try:
- me = __file__
- if me.endswith(".pyc") or me.endswith(".pyo"):
- me = os.path.splitext(me)[0] + ".py"
- versioneer_file = os.path.relpath(me)
- except NameError:
- versioneer_file = "versioneer.py"
- files.append(versioneer_file)
- present = False
- try:
- f = open(".gitattributes", "r")
- for line in f.readlines():
- if line.strip().startswith(versionfile_source):
- if "export-subst" in line.strip().split()[1:]:
- present = True
- f.close()
- except EnvironmentError:
- pass
- if not present:
- f = open(".gitattributes", "a+")
- f.write("%s export-subst\n" % versionfile_source)
- f.close()
- files.append(".gitattributes")
- run_command(GITS, ["add", "--"] + files)
-
-
-def versions_from_parentdir(parentdir_prefix, root, verbose):
- """Try to determine the version from the parent directory name.
-
- Source tarballs conventionally unpack into a directory that includes
- both the project name and a version string.
- """
- dirname = os.path.basename(root)
- if not dirname.startswith(parentdir_prefix):
- if verbose:
- print("guessing rootdir is '%s', but '%s' doesn't start with "
- "prefix '%s'" % (root, dirname, parentdir_prefix))
- raise NotThisMethod("rootdir doesn't start with parentdir_prefix")
- return {"version": dirname[len(parentdir_prefix):],
- "full-revisionid": None,
- "dirty": False, "error": None}
-
-SHORT_VERSION_PY = """
-# This file was generated by 'versioneer.py' (0.16) from
-# revision-control system data, or from the parent directory name of an
-# unpacked source archive. Distribution tarballs contain a pre-generated copy
-# of this file.
-
-import json
-import sys
-
-version_json = '''
-%s
-''' # END VERSION_JSON
-
-
-def get_versions():
- return json.loads(version_json)
-"""
-
-
-def versions_from_file(filename):
- """Try to determine the version from _version.py if present."""
- try:
- with open(filename) as f:
- contents = f.read()
- except EnvironmentError:
- raise NotThisMethod("unable to read _version.py")
- mo = re.search(r"version_json = '''\n(.*)''' # END VERSION_JSON",
- contents, re.M | re.S)
- if not mo:
- raise NotThisMethod("no version_json in _version.py")
- return json.loads(mo.group(1))
-
-
-def write_to_version_file(filename, versions):
- """Write the given version number to the given _version.py file."""
- os.unlink(filename)
- contents = json.dumps(versions, sort_keys=True,
- indent=1, separators=(",", ": "))
- with open(filename, "w") as f:
- f.write(SHORT_VERSION_PY % contents)
-
- print("set %s to '%s'" % (filename, versions["version"]))
-
-
-def plus_or_dot(pieces):
- """Return a + if we don't already have one, else return a ."""
- if "+" in pieces.get("closest-tag", ""):
- return "."
- return "+"
-
-
-def render_pep440(pieces):
- """Build up version string, with post-release "local version identifier".
-
- Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you
- get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty
-
- Exceptions:
- 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += plus_or_dot(pieces)
- rendered += "%d.g%s" % (pieces["distance"], pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- else:
- # exception #1
- rendered = "0+untagged.%d.g%s" % (pieces["distance"],
- pieces["short"])
- if pieces["dirty"]:
- rendered += ".dirty"
- return rendered
-
-
-def render_pep440_pre(pieces):
- """TAG[.post.devDISTANCE] -- No -dirty.
-
- Exceptions:
- 1: no tags. 0.post.devDISTANCE
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += ".post.dev%d" % pieces["distance"]
- else:
- # exception #1
- rendered = "0.post.dev%d" % pieces["distance"]
- return rendered
-
-
-def render_pep440_post(pieces):
- """TAG[.postDISTANCE[.dev0]+gHEX] .
-
- The ".dev0" means dirty. Note that .dev0 sorts backwards
- (a dirty tree will appear "older" than the corresponding clean one),
- but you shouldn't be releasing software with -dirty anyways.
-
- Exceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += plus_or_dot(pieces)
- rendered += "g%s" % pieces["short"]
- else:
- # exception #1
- rendered = "0.post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- rendered += "+g%s" % pieces["short"]
- return rendered
-
-
-def render_pep440_old(pieces):
- """TAG[.postDISTANCE[.dev0]] .
-
- The ".dev0" means dirty.
-
- Eexceptions:
- 1: no tags. 0.postDISTANCE[.dev0]
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"] or pieces["dirty"]:
- rendered += ".post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- else:
- # exception #1
- rendered = "0.post%d" % pieces["distance"]
- if pieces["dirty"]:
- rendered += ".dev0"
- return rendered
-
-
-def render_git_describe(pieces):
- """TAG[-DISTANCE-gHEX][-dirty].
-
- Like 'git describe --tags --dirty --always'.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- if pieces["distance"]:
- rendered += "-%d-g%s" % (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render_git_describe_long(pieces):
- """TAG-DISTANCE-gHEX[-dirty].
-
- Like 'git describe --tags --dirty --always -long'.
- The distance/hash is unconditional.
-
- Exceptions:
- 1: no tags. HEX[-dirty] (note: no 'g' prefix)
- """
- if pieces["closest-tag"]:
- rendered = pieces["closest-tag"]
- rendered += "-%d-g%s" % (pieces["distance"], pieces["short"])
- else:
- # exception #1
- rendered = pieces["short"]
- if pieces["dirty"]:
- rendered += "-dirty"
- return rendered
-
-
-def render(pieces, style):
- """Render the given version pieces into the requested style."""
- if pieces["error"]:
- return {"version": "unknown",
- "full-revisionid": pieces.get("long"),
- "dirty": None,
- "error": pieces["error"]}
-
- if not style or style == "default":
- style = "pep440" # the default
-
- if style == "pep440":
- rendered = render_pep440(pieces)
- elif style == "pep440-pre":
- rendered = render_pep440_pre(pieces)
- elif style == "pep440-post":
- rendered = render_pep440_post(pieces)
- elif style == "pep440-old":
- rendered = render_pep440_old(pieces)
- elif style == "git-describe":
- rendered = render_git_describe(pieces)
- elif style == "git-describe-long":
- rendered = render_git_describe_long(pieces)
- else:
- raise ValueError("unknown style '%s'" % style)
-
- return {"version": rendered, "full-revisionid": pieces["long"],
- "dirty": pieces["dirty"], "error": None}
-
-
-class VersioneerBadRootError(Exception):
- """The project root directory is unknown or missing key files."""
-
-
-def get_versions(verbose=False):
- """Get the project version from whatever source is available.
-
- Returns dict with two keys: 'version' and 'full'.
- """
- if "versioneer" in sys.modules:
- # see the discussion in cmdclass.py:get_cmdclass()
- del sys.modules["versioneer"]
-
- root = get_root()
- cfg = get_config_from_root(root)
-
- assert cfg.VCS is not None, "please set [versioneer]VCS= in setup.cfg"
- handlers = HANDLERS.get(cfg.VCS)
- assert handlers, "unrecognized VCS '%s'" % cfg.VCS
- verbose = verbose or cfg.verbose
- assert cfg.versionfile_source is not None, \
- "please set versioneer.versionfile_source"
- assert cfg.tag_prefix is not None, "please set versioneer.tag_prefix"
-
- versionfile_abs = os.path.join(root, cfg.versionfile_source)
-
- # extract version from first of: _version.py, VCS command (e.g. 'git
- # describe'), parentdir. This is meant to work for developers using a
- # source checkout, for users of a tarball created by 'setup.py sdist',
- # and for users of a tarball/zipball created by 'git archive' or github's
- # download-from-tag feature or the equivalent in other VCSes.
-
- get_keywords_f = handlers.get("get_keywords")
- from_keywords_f = handlers.get("keywords")
- if get_keywords_f and from_keywords_f:
- try:
- keywords = get_keywords_f(versionfile_abs)
- ver = from_keywords_f(keywords, cfg.tag_prefix, verbose)
- if verbose:
- print("got version from expanded keyword %s" % ver)
- return ver
- except NotThisMethod:
- pass
-
- try:
- ver = versions_from_file(versionfile_abs)
- if verbose:
- print("got version from file %s %s" % (versionfile_abs, ver))
- return ver
- except NotThisMethod:
- pass
-
- from_vcs_f = handlers.get("pieces_from_vcs")
- if from_vcs_f:
- try:
- pieces = from_vcs_f(cfg.tag_prefix, root, verbose)
- ver = render(pieces, cfg.style)
- if verbose:
- print("got version from VCS %s" % ver)
- return ver
- except NotThisMethod:
- pass
-
- try:
- if cfg.parentdir_prefix:
- ver = versions_from_parentdir(cfg.parentdir_prefix, root, verbose)
- if verbose:
- print("got version from parentdir %s" % ver)
- return ver
- except NotThisMethod:
- pass
-
- if verbose:
- print("unable to compute version")
-
- return {"version": "0+unknown", "full-revisionid": None,
- "dirty": None, "error": "unable to compute version"}
-
-
-def get_version():
- """Get the short version string for this project."""
- return get_versions()["version"]
-
-
-def get_cmdclass():
- """Get the custom setuptools/distutils subclasses used by Versioneer."""
- if "versioneer" in sys.modules:
- del sys.modules["versioneer"]
- # this fixes the "python setup.py develop" case (also 'install' and
- # 'easy_install .'), in which subdependencies of the main project are
- # built (using setup.py bdist_egg) in the same python process. Assume
- # a main project A and a dependency B, which use different versions
- # of Versioneer. A's setup.py imports A's Versioneer, leaving it in
- # sys.modules by the time B's setup.py is executed, causing B to run
- # with the wrong versioneer. Setuptools wraps the sub-dep builds in a
- # sandbox that restores sys.modules to it's pre-build state, so the
- # parent is protected against the child's "import versioneer". By
- # removing ourselves from sys.modules here, before the child build
- # happens, we protect the child from the parent's versioneer too.
- # Also see https://github.com/warner/python-versioneer/issues/52
-
- cmds = {}
-
- # we add "version" to both distutils and setuptools
- from distutils.core import Command
-
- class cmd_version(Command):
- description = "report generated version string"
- user_options = []
- boolean_options = []
-
- def initialize_options(self):
- pass
-
- def finalize_options(self):
- pass
-
- def run(self):
- vers = get_versions(verbose=True)
- print("Version: %s" % vers["version"])
- print(" full-revisionid: %s" % vers.get("full-revisionid"))
- print(" dirty: %s" % vers.get("dirty"))
- if vers["error"]:
- print(" error: %s" % vers["error"])
- cmds["version"] = cmd_version
-
- # we override "build_py" in both distutils and setuptools
- #
- # most invocation pathways end up running build_py:
- # distutils/build -> build_py
- # distutils/install -> distutils/build ->..
- # setuptools/bdist_wheel -> distutils/install ->..
- # setuptools/bdist_egg -> distutils/install_lib -> build_py
- # setuptools/install -> bdist_egg ->..
- # setuptools/develop -> ?
-
- # we override different "build_py" commands for both environments
- if "setuptools" in sys.modules:
- from setuptools.command.build_py import build_py as _build_py
- else:
- from distutils.command.build_py import build_py as _build_py
-
- class cmd_build_py(_build_py):
- def run(self):
- root = get_root()
- cfg = get_config_from_root(root)
- versions = get_versions()
- _build_py.run(self)
- # now locate _version.py in the new build/ directory and replace
- # it with an updated value
- if cfg.versionfile_build:
- target_versionfile = os.path.join(self.build_lib,
- cfg.versionfile_build)
- print("UPDATING %s" % target_versionfile)
- write_to_version_file(target_versionfile, versions)
- cmds["build_py"] = cmd_build_py
-
- if "cx_Freeze" in sys.modules: # cx_freeze enabled?
- from cx_Freeze.dist import build_exe as _build_exe
-
- class cmd_build_exe(_build_exe):
- def run(self):
- root = get_root()
- cfg = get_config_from_root(root)
- versions = get_versions()
- target_versionfile = cfg.versionfile_source
- print("UPDATING %s" % target_versionfile)
- write_to_version_file(target_versionfile, versions)
-
- _build_exe.run(self)
- os.unlink(target_versionfile)
- with open(cfg.versionfile_source, "w") as f:
- LONG = LONG_VERSION_PY[cfg.VCS]
- f.write(LONG %
- {"DOLLAR": "$",
- "STYLE": cfg.style,
- "TAG_PREFIX": cfg.tag_prefix,
- "PARENTDIR_PREFIX": cfg.parentdir_prefix,
- "VERSIONFILE_SOURCE": cfg.versionfile_source,
- })
- cmds["build_exe"] = cmd_build_exe
- del cmds["build_py"]
-
- # we override different "sdist" commands for both environments
- if "setuptools" in sys.modules:
- from setuptools.command.sdist import sdist as _sdist
- else:
- from distutils.command.sdist import sdist as _sdist
-
- class cmd_sdist(_sdist):
- def run(self):
- versions = get_versions()
- self._versioneer_generated_versions = versions
- # unless we update this, the command will keep using the old
- # version
- self.distribution.metadata.version = versions["version"]
- return _sdist.run(self)
-
- def make_release_tree(self, base_dir, files):
- root = get_root()
- cfg = get_config_from_root(root)
- _sdist.make_release_tree(self, base_dir, files)
- # now locate _version.py in the new base_dir directory
- # (remembering that it may be a hardlink) and replace it with an
- # updated value
- target_versionfile = os.path.join(base_dir, cfg.versionfile_source)
- print("UPDATING %s" % target_versionfile)
- write_to_version_file(target_versionfile,
- self._versioneer_generated_versions)
- cmds["sdist"] = cmd_sdist
-
- return cmds
-
-
-CONFIG_ERROR = """
-setup.cfg is missing the necessary Versioneer configuration. You need
-a section like:
-
- [versioneer]
- VCS = git
- style = pep440
- versionfile_source = src/myproject/_version.py
- versionfile_build = myproject/_version.py
- tag_prefix =
- parentdir_prefix = myproject-
-
-You will also need to edit your setup.py to use the results:
-
- import versioneer
- setup(version=versioneer.get_version(),
- cmdclass=versioneer.get_cmdclass(), ...)
-
-Please read the docstring in ./versioneer.py for configuration instructions,
-edit setup.cfg, and re-run the installer or 'python versioneer.py setup'.
-"""
-
-SAMPLE_CONFIG = """
-# See the docstring in versioneer.py for instructions. Note that you must
-# re-run 'versioneer.py setup' after changing this section, and commit the
-# resulting files.
-
-[versioneer]
-#VCS = git
-#style = pep440
-#versionfile_source =
-#versionfile_build =
-#tag_prefix =
-#parentdir_prefix =
-
-"""
-
-INIT_PY_SNIPPET = """
-from ._version import get_versions
-__version__ = get_versions()['version']
-del get_versions
-"""
-
-
-def do_setup():
- """Main VCS-independent setup function for installing Versioneer."""
- root = get_root()
- try:
- cfg = get_config_from_root(root)
- except (EnvironmentError, configparser.NoSectionError,
- configparser.NoOptionError) as e:
- if isinstance(e, (EnvironmentError, configparser.NoSectionError)):
- print("Adding sample versioneer config to setup.cfg",
- file=sys.stderr)
- with open(os.path.join(root, "setup.cfg"), "a") as f:
- f.write(SAMPLE_CONFIG)
- print(CONFIG_ERROR, file=sys.stderr)
- return 1
-
- print(" creating %s" % cfg.versionfile_source)
- with open(cfg.versionfile_source, "w") as f:
- LONG = LONG_VERSION_PY[cfg.VCS]
- f.write(LONG % {"DOLLAR": "$",
- "STYLE": cfg.style,
- "TAG_PREFIX": cfg.tag_prefix,
- "PARENTDIR_PREFIX": cfg.parentdir_prefix,
- "VERSIONFILE_SOURCE": cfg.versionfile_source,
- })
-
- ipy = os.path.join(os.path.dirname(cfg.versionfile_source),
- "__init__.py")
- if os.path.exists(ipy):
- try:
- with open(ipy, "r") as f:
- old = f.read()
- except EnvironmentError:
- old = ""
- if INIT_PY_SNIPPET not in old:
- print(" appending to %s" % ipy)
- with open(ipy, "a") as f:
- f.write(INIT_PY_SNIPPET)
- else:
- print(" %s unmodified" % ipy)
- else:
- print(" %s doesn't exist, ok" % ipy)
- ipy = None
-
- # Make sure both the top-level "versioneer.py" and versionfile_source
- # (PKG/_version.py, used by runtime code) are in MANIFEST.in, so
- # they'll be copied into source distributions. Pip won't be able to
- # install the package without this.
- manifest_in = os.path.join(root, "MANIFEST.in")
- simple_includes = set()
- try:
- with open(manifest_in, "r") as f:
- for line in f:
- if line.startswith("include "):
- for include in line.split()[1:]:
- simple_includes.add(include)
- except EnvironmentError:
- pass
- # That doesn't cover everything MANIFEST.in can do
- # (http://docs.python.org/2/distutils/sourcedist.html#commands), so
- # it might give some false negatives. Appending redundant 'include'
- # lines is safe, though.
- if "versioneer.py" not in simple_includes:
- print(" appending 'versioneer.py' to MANIFEST.in")
- with open(manifest_in, "a") as f:
- f.write("include versioneer.py\n")
- else:
- print(" 'versioneer.py' already in MANIFEST.in")
- if cfg.versionfile_source not in simple_includes:
- print(" appending versionfile_source ('%s') to MANIFEST.in" %
- cfg.versionfile_source)
- with open(manifest_in, "a") as f:
- f.write("include %s\n" % cfg.versionfile_source)
- else:
- print(" versionfile_source already in MANIFEST.in")
-
- # Make VCS-specific changes. For git, this means creating/changing
- # .gitattributes to mark _version.py for export-time keyword
- # substitution.
- do_vcs_install(manifest_in, cfg.versionfile_source, ipy)
- return 0
-
-
-def scan_setup_py():
- """Validate the contents of setup.py against Versioneer's expectations."""
- found = set()
- setters = False
- errors = 0
- with open("setup.py", "r") as f:
- for line in f.readlines():
- if "import versioneer" in line:
- found.add("import")
- if "versioneer.get_cmdclass()" in line:
- found.add("cmdclass")
- if "versioneer.get_version()" in line:
- found.add("get_version")
- if "versioneer.VCS" in line:
- setters = True
- if "versioneer.versionfile_source" in line:
- setters = True
- if len(found) != 3:
- print("")
- print("Your setup.py appears to be missing some important items")
- print("(but I might be wrong). Please make sure it has something")
- print("roughly like the following:")
- print("")
- print(" import versioneer")
- print(" setup( version=versioneer.get_version(),")
- print(" cmdclass=versioneer.get_cmdclass(), ...)")
- print("")
- errors += 1
- if setters:
- print("You should remove lines like 'versioneer.VCS = ' and")
- print("'versioneer.versionfile_source = ' . This configuration")
- print("now lives in setup.cfg, and should be removed from setup.py")
- print("")
- errors += 1
- return errors
-
-if __name__ == "__main__":
- cmd = sys.argv[1]
- if cmd == "setup":
- errors = do_setup()
- errors += scan_setup_py()
- if errors:
- sys.exit(1)
|