Compare commits

..

23 Commits
1.0 ... main

Author SHA1 Message Date
ValueRaider
fa755363dc Version 1.1.0 2026-01-24 16:01:54 +00:00
ValueRaider
7874a45e3b Merge pull request #2682 from ranaroussi/dev
sync dev -> main
2026-01-24 15:57:45 +00:00
ValueRaider
9e6d00c674 Merge pull request #2683 from ctasada/ctasada/issue-2679
Upgrade to Pandas 3.0 (Fixes #2679)
2026-01-24 12:08:09 +00:00
Carlos-Tasada
04cd07eb6a Timestamp.now(tz) already exists in Pandas since 9 years ago, so there's no need to upgrade Pandas right now.
Keeping the change removes the deprecation warning, achieving the goal of this PR
2026-01-23 14:09:03 +01:00
Carlos-Tasada
25bf12cb92 Upgrade to Pandas 3.0 (Fixes #2679)
Pandas 3.0 introduced many changes. One of them is a noisy deprecation warning `Pandas4Warning: Timestamp.utcnow is deprecated and will be removed in a future version. Use Timestamp.now('UTC') instead.`

This PR upgrades YFinance to use the latest Pandas 3.0.0 version, removing the warning
2026-01-23 08:44:47 +01:00
ValueRaider
27cb8aa2a2 Docs for capital-gains repair; Fix warnings in price-repair 2026-01-22 19:36:37 +00:00
ValueRaider
947cd4420c Merge pull request #2671 from sd416/main
Add GitHub Actions to Dependabot configuration
2026-01-20 19:18:43 +00:00
sd416
fd3965ad92 Add GitHub Actions to Dependabot configuration and updating actions
Add GitHub Actions to Dependabot configuration

Add GitHub Actions to Dependabot configuration

Bump actions/checkout from 2 to 6

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Bump actions/setup-python from 4 to 6

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Bump actions/github-script from 7 to 8

Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v7...v8)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-20 05:04:51 +00:00
ValueRaider
bf94ae937b Merge pull request #2668 from ranaroussi/fix/price-split-repair-false-positives
Improve stock-split repair false-positives
2026-01-19 23:11:02 +00:00
ValueRaider
496d238bfa Merge pull request #2667 from ranaroussi/feature/price-repair-capital-gains-double-count
New price repair: capital gains double-counting
2026-01-19 23:10:49 +00:00
ValueRaider
ce4c07be1f New price repair: capital gains double-counting 2026-01-19 23:10:05 +00:00
ValueRaider
f984876b35 Improve stock-split repair false-positives 2026-01-19 23:09:16 +00:00
ValueRaider
8d6188c926 Merge pull request #2674 from orionnelson/hotfix/py39-compat-regression-2672
Fix Python 3.9 compatibility regression in calendars.py
2026-01-19 23:06:40 +00:00
Orion Nelson
12e1951f80 Fix Python 3.9 compatibility regression in calendars.py
Fixes #2673

syntax issue
2026-01-18 16:05:43 -05:00
ValueRaider
47a8f64ff7 Merge pull request #2673 from kbluck/fix/config-init-all
Add config to __all__
2026-01-17 22:32:39 +00:00
Kevin Bluck
0f1d091ac8 Add config to __all__ 2026-01-17 13:08:24 -08:00
ValueRaider
42411d44df Merge pull request #2669 from ranaroussi/main
sync main -> dev
2026-01-11 12:58:34 +00:00
ValueRaider
b0e855e7ec Merge pull request #2661 from peter199711/fix-pypi-link
Fix broken contributing link in PyPI documentation
2026-01-10 12:20:11 +00:00
ValueRaider
ea455c16a5 Merge pull request #2664 from Timour-Ilyas/fix-license-link
Fix broken LICENSE.txt link in PyPI documentation
2026-01-10 12:19:47 +00:00
ValueRaider
3e33a75230 Merge pull request #2665 from salsugair/fix-Saudi-Arabia-MIC-Code
Fix Saudi Arabia MIC Code
2026-01-10 12:19:21 +00:00
salsugair
0df671b566 Fix Saudi Arabia MIC Code
fix Saudi Arabia mic code XSAU and yahoo finance suffix SR
2026-01-08 19:53:01 +03:00
Ilyas Timour
03ec05d286 Fix broken LICENSE.txt link in PyPI documentation
The relative link works on GitHub but is broken on PyPI.
Replaced it with an absolute GitHub URL.
2026-01-07 14:42:03 +01:00
Peter
5c7b41d510 Fix broken contributing link in PyPI documentation 2026-01-05 11:01:15 +08:00
28 changed files with 5020 additions and 211 deletions

View File

@@ -1,7 +1,13 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

View File

@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check if issue uses custom template
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const issue = context.payload.issue;

View File

@@ -13,10 +13,10 @@ jobs:
steps:
- name: Check out the repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

View File

@@ -13,10 +13,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
- name: Install dependencies
run: |

View File

@@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies

View File

@@ -9,7 +9,7 @@ jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: check --ignore E702 . --exclude yfinance/pricing_pb2.py

View File

@@ -1,6 +1,19 @@
Change Log
===========
1.1.0
-----
Features:
- New price repair: capital gains double-counting #2667
Fixes:
- Fix Saudi Arabia MIC Code #2665 @salsugair
- Add config to __all__ #2673 @kbluck
- Fix Python 3.9 compatibility regression in calendars.py #2674 @orionnelson
- Improve stock-split repair false-positives #2668
- Docs for capital-gains repair; Fix warnings in price-repair 27cb8aa
Already in main:
- Upgrade to Pandas 3.0 (Fixes #2679) #2683
1.0
---
yfinance been stable a long time now, time to grow up

View File

@@ -53,7 +53,7 @@ Install `yfinance` from PYPI using `pip`:
$ pip install yfinance
```
### [yfinance relies on the community to investigate bugs and contribute code. Here's how you can help.](CONTRIBUTING.md)
### [yfinance relies on the community to investigate bugs and contribute code. Here's how you can help.](https://github.com/ranaroussi/yfinance/blob/main/CONTRIBUTING.md)
---
@@ -64,7 +64,7 @@ $ pip install yfinance
### Legal Stuff
**yfinance** is distributed under the **Apache Software License**. See
the [LICENSE.txt](./LICENSE.txt) file in the release for details.
the [LICENSE.txt](https://github.com/ranaroussi/yfinance/blob/main/LICENSE.txt) file in the release for details.
AGAIN - yfinance is **not** affiliated, endorsed, or vetted by Yahoo, Inc. It's
an open-source tool that uses Yahoo's publicly available APIs, and is

View File

@@ -111,6 +111,7 @@ Fix errors in dividends:
2. duplicate dividend (within 7 days)
3. dividend 100x too big/small for the ex-dividend price drop
4. ex-div date wrong (price drop is few days/weeks after)
5. **NEW: capital gains double-counted**
Most errors I've seen are on London stock exchange (£/pence mixup), but no exchange is safe.
@@ -275,3 +276,27 @@ TETY.ST
2022-06-21 00:00:00+02:00 71.599998 60.007881 0.0
2022-06-20 00:00:00+02:00 71.800003 60.175503 0.0
2022-06-17 00:00:00+02:00 71.000000 59.505021 0.0
Capital-gains double-counted
----------------------------
Clue: price drop matches dividend better than dividend+capital gains.
DODFX
.. code-block:: text
# ORIGINAL:
Close Adj Close Dividends Capital Gains
Date
2025-12-18 00:00:00-05:00 16.219999 16.219999 0.837 0.417
2025-12-17 00:00:00-05:00 16.920000 15.665999 0.000 0.000
.. code-block:: text
# REPAIRED:
Close Adj Close Dividends Capital Gains
Date
2025-12-18 00:00:00-05:00 16.219999 16.219999 0.42 0.417
2025-12-17 00:00:00-05:00 16.920000 16.083000 0.00 0.000

View File

@@ -1,5 +1,5 @@
{% set name = "yfinance" %}
{% set version = "1.0" %}
{% set version = "1.1.0" %}
package:
name: "{{ name|lower }}"

View File

@@ -1,37 +0,0 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits
2022-05-30 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-05-23 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-05-16 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,532454,0,0
2022-05-09 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-05-02 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-04-25 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-04-18 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-04-11 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-04-04 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-03-28 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-03-21 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-03-14 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-03-07 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-02-28 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-02-21 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-02-14 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-02-07 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-01-31 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-01-24 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-01-17 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-01-10 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2022-01-03 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-12-27 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-12-20 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-12-13 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-12-06 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-11-29 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-11-22 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-11-15 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-11-08 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-11-01 00:00:00+00:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-10-25 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-10-18 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-10-11 00:00:00+01:00,14.5500,14.5500,14.5500,14.5500,14.5500,0,0,0
2021-10-04 00:00:00+01:00,14.8000,15.3400,14.4000,14.5500,14.5500,2171373,0,0
2021-09-27 00:00:00+01:00,15.6000,16.0000,14.9000,15.0500,15.0500,3860549,0,0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits
2 2022-05-30 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
3 2022-05-23 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
4 2022-05-16 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 532454 0 0
5 2022-05-09 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
6 2022-05-02 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
7 2022-04-25 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
8 2022-04-18 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
9 2022-04-11 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
10 2022-04-04 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
11 2022-03-28 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
12 2022-03-21 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
13 2022-03-14 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
14 2022-03-07 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
15 2022-02-28 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
16 2022-02-21 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
17 2022-02-14 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
18 2022-02-07 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
19 2022-01-31 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
20 2022-01-24 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
21 2022-01-17 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
22 2022-01-10 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
23 2022-01-03 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
24 2021-12-27 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
25 2021-12-20 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
26 2021-12-13 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
27 2021-12-06 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
28 2021-11-29 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
29 2021-11-22 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
30 2021-11-15 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
31 2021-11-08 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
32 2021-11-01 00:00:00+00:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
33 2021-10-25 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
34 2021-10-18 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
35 2021-10-11 00:00:00+01:00 14.5500 14.5500 14.5500 14.5500 14.5500 0 0 0
36 2021-10-04 00:00:00+01:00 14.8000 15.3400 14.4000 14.5500 14.5500 2171373 0 0
37 2021-09-27 00:00:00+01:00 15.6000 16.0000 14.9000 15.0500 15.0500 3860549 0 0

View File

@@ -1,37 +0,0 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits
2022-05-30 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-05-23 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-05-16 00:00:00+01:00,14.550000190734863,14.550000190734863,0.14550000429153442,0.14550000429153442,0.14550000429153442,532454,0.0,0.0
2022-05-09 00:00:00+01:00,14.550000190734863,14.550000190734863,14.550000190734863,14.550000190734863,14.550000190734863,0,0.0,0.0
2022-05-02 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-04-25 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-04-18 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-04-11 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-04-04 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-03-28 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-03-21 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-03-14 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-03-07 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-02-28 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-02-21 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-02-14 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-02-07 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-01-31 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-01-24 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-01-17 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-01-10 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2022-01-03 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-12-27 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-12-20 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-12-13 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-12-06 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-11-29 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-11-22 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-11-15 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-11-08 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-11-01 00:00:00+00:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-10-25 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-10-18 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-10-11 00:00:00+01:00,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0.14550000429153442,0,0.0,0.0
2021-10-04 00:00:00+01:00,14.800000190734863,15.34000015258789,0.14399999380111694,0.14550000429153442,0.14550000429153442,2171373,0.0,0.0
2021-09-27 00:00:00+01:00,15.600000381469727,16.0,14.899999618530273,15.050000190734863,15.050000190734863,3860549,0.0,0.0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits
2 2022-05-30 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
3 2022-05-23 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
4 2022-05-16 00:00:00+01:00 14.550000190734863 14.550000190734863 0.14550000429153442 0.14550000429153442 0.14550000429153442 532454 0.0 0.0
5 2022-05-09 00:00:00+01:00 14.550000190734863 14.550000190734863 14.550000190734863 14.550000190734863 14.550000190734863 0 0.0 0.0
6 2022-05-02 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
7 2022-04-25 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
8 2022-04-18 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
9 2022-04-11 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
10 2022-04-04 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
11 2022-03-28 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
12 2022-03-21 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
13 2022-03-14 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
14 2022-03-07 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
15 2022-02-28 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
16 2022-02-21 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
17 2022-02-14 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
18 2022-02-07 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
19 2022-01-31 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
20 2022-01-24 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
21 2022-01-17 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
22 2022-01-10 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
23 2022-01-03 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
24 2021-12-27 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
25 2021-12-20 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
26 2021-12-13 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
27 2021-12-06 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
28 2021-11-29 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
29 2021-11-22 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
30 2021-11-15 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
31 2021-11-08 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
32 2021-11-01 00:00:00+00:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
33 2021-10-25 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
34 2021-10-18 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
35 2021-10-11 00:00:00+01:00 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0.14550000429153442 0 0.0 0.0
36 2021-10-04 00:00:00+01:00 14.800000190734863 15.34000015258789 0.14399999380111694 0.14550000429153442 0.14550000429153442 2171373 0.0 0.0
37 2021-09-27 00:00:00+01:00 15.600000381469727 16.0 14.899999618530273 15.050000190734863 15.050000190734863 3860549 0.0 0.0

View File

@@ -0,0 +1,503 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits,Capital Gains
2024-01-10 00:00:00-05:00,12.147500038147,12.147500038147,12.147500038147,12.147500038147,11.2976727169889,0,0,0,0
2024-01-11 00:00:00-05:00,12.1350002288818,12.1350002288818,12.1350002288818,12.1350002288818,11.2860473822568,0,0,0,0
2024-01-12 00:00:00-05:00,12.1400003433228,12.1400003433228,12.1400003433228,12.1400003433228,11.2906976935409,0,0,0,0
2024-01-16 00:00:00-05:00,11.9300003051758,11.9300003051758,11.9300003051758,11.9300003051758,11.0953890543897,0,0,0,0
2024-01-17 00:00:00-05:00,11.7924995422363,11.7924995422363,11.7924995422363,11.7924995422363,10.9675077114674,0,0,0,0
2024-01-18 00:00:00-05:00,11.8400001525879,11.8400001525879,11.8400001525879,11.8400001525879,11.0116852251883,0,0,0,0
2024-01-19 00:00:00-05:00,11.9025001525879,11.9025001525879,11.9025001525879,11.9025001525879,11.0698127858052,0,0,0,0
2024-01-22 00:00:00-05:00,11.9075002670288,11.9075002670288,11.9075002670288,11.9075002670288,11.0744630970893,0,0,0,0
2024-01-23 00:00:00-05:00,11.9224996566772,11.9224996566772,11.9224996566772,11.9224996566772,11.0884131439854,0,0,0,0
2024-01-24 00:00:00-05:00,11.9925003051758,11.9925003051758,11.9925003051758,11.9925003051758,11.1535166150066,0,0,0,0
2024-01-25 00:00:00-05:00,11.9575004577637,11.9575004577637,11.9575004577637,11.9575004577637,11.1209653229741,0,0,0,0
2024-01-26 00:00:00-05:00,12.0325002670288,12.0325002670288,12.0325002670288,12.0325002670288,11.1907182183232,0,0,0,0
2024-01-29 00:00:00-05:00,12.0749998092651,12.0749998092651,12.0749998092651,12.0749998092651,11.2302445338038,0,0,0,0
2024-01-30 00:00:00-05:00,12.0299997329712,12.0299997329712,12.0299997329712,12.0299997329712,11.1883926192031,0,0,0,0
2024-01-31 00:00:00-05:00,11.9324998855591,11.9324998855591,11.9324998855591,11.9324998855591,11.0977137665536,0,0,0,0
2024-02-01 00:00:00-05:00,11.9825000762939,11.9825000762939,11.9825000762939,11.9825000762939,11.1442159924384,0,0,0,0
2024-02-02 00:00:00-05:00,11.9125003814697,11.9125003814697,11.9125003814697,11.9125003814697,11.0791134083734,0,0,0,0
2024-02-05 00:00:00-05:00,11.8400001525879,11.8400001525879,11.8400001525879,11.8400001525879,11.0116852251883,0,0,0,0
2024-02-06 00:00:00-05:00,11.9274997711182,11.9274997711182,11.9274997711182,11.9274997711182,11.0930634552695,0,0,0,0
2024-02-07 00:00:00-05:00,11.8699998855591,11.8699998855591,11.8699998855591,11.8699998855591,11.0395862059367,0,0,0,0
2024-02-08 00:00:00-05:00,11.7974996566772,11.7974996566772,11.7974996566772,11.7974996566772,10.9721580227515,0,0,0,0
2024-02-09 00:00:00-05:00,11.8050003051758,11.8050003051758,11.8050003051758,11.8050003051758,10.9791339331558,0,0,0,0
2024-02-12 00:00:00-05:00,11.875,11.875,11.875,11.875,11.0442365172208,0,0,0,0
2024-02-13 00:00:00-05:00,11.727499961853,11.727499961853,11.727499961853,11.727499961853,10.9070554386865,0,0,0,0
2024-02-14 00:00:00-05:00,11.7974996566772,11.7974996566772,11.7974996566772,11.7974996566772,10.9721580227515,0,0,0,0
2024-02-15 00:00:00-05:00,11.9049997329712,11.9049997329712,11.9049997329712,11.9049997329712,11.0721374979692,0,0,0,0
2024-02-16 00:00:00-05:00,11.9624996185303,11.9624996185303,11.9624996185303,11.9624996185303,11.125614747302,0,0,0,0
2024-02-20 00:00:00-05:00,12.0349998474121,12.0349998474121,12.0349998474121,12.0349998474121,11.1930429304872,0,0,0,0
2024-02-21 00:00:00-05:00,12.0550003051758,12.0550003051758,12.0550003051758,12.0550003051758,11.2116441756236,0,0,0,0
2024-02-22 00:00:00-05:00,12.1800003051758,12.1800003051758,12.1800003051758,12.1800003051758,11.3278992968575,0,0,0,0
2024-02-23 00:00:00-05:00,12.1774997711182,12.1774997711182,12.1774997711182,12.1774997711182,11.3255736977373,0,0,0,0
2024-02-26 00:00:00-05:00,12.1525001525879,12.1525001525879,12.1525001525879,12.1525001525879,11.302323028273,0,0,0,0
2024-02-27 00:00:00-05:00,12.1724996566772,12.1724996566772,12.1724996566772,12.1724996566772,11.3209233864532,0,0,0,0
2024-02-28 00:00:00-05:00,12.1175003051758,12.1175003051758,12.1175003051758,12.1175003051758,11.2697717362405,0,0,0,0
2024-02-29 00:00:00-05:00,12.0900001525879,12.0900001525879,12.0900001525879,12.0900001525879,11.2441954676561,0,0,0,0
2024-03-01 00:00:00-05:00,12.2150001525879,12.2150001525879,12.2150001525879,12.2150001525879,11.36045058889,0,0,0,0
2024-03-04 00:00:00-05:00,12.1549997329712,12.1549997329712,12.1549997329712,12.1549997329712,11.304647740437,0,0,0,0
2024-03-05 00:00:00-05:00,12.1374998092651,12.1374998092651,12.1374998092651,12.1374998092651,11.2883720944207,0,0,0,0
2024-03-06 00:00:00-05:00,12.2674999237061,12.2674999237061,12.2674999237061,12.2674999237061,11.4092775269387,0,0,0,0
2024-03-07 00:00:00-05:00,12.3699998855591,12.3699998855591,12.3699998855591,12.3699998855591,11.5046066908723,0,0,0,0
2024-03-08 00:00:00-05:00,12.3874998092651,12.3874998092651,12.3874998092651,12.3874998092651,11.5208823368885,0,0,0,0
2024-03-11 00:00:00-04:00,12.4174995422363,12.4174995422363,12.4174995422363,12.4174995422363,11.5487833176369,0,0,0,0
2024-03-12 00:00:00-04:00,12.5299997329712,12.5299997329712,12.5299997329712,12.5299997329712,11.6534131041387,0,0,0,0
2024-03-13 00:00:00-04:00,12.5775003433228,12.5775003433228,12.5775003433228,12.5775003433228,11.6975906178595,0,0,0,0
2024-03-14 00:00:00-04:00,12.4875001907349,12.4875001907349,12.4875001907349,12.4875001907349,11.6138867886581,0,0,0,0
2024-03-15 00:00:00-04:00,12.4549999237061,12.4549999237061,12.4549999237061,12.4549999237061,11.5836602087896,0,0,0,0
2024-03-18 00:00:00-04:00,12.4700002670288,12.4700002670288,12.4700002670288,12.4700002670288,11.5976111426419,0,0,0,0
2024-03-19 00:00:00-04:00,12.477499961853,12.477499961853,12.477499961853,12.477499961853,11.6045861660899,0,0,0,0
2024-03-20 00:00:00-04:00,12.5825004577637,12.5825004577637,12.5825004577637,12.5825004577637,11.7022409291436,0,0,0,0
2024-03-21 00:00:00-04:00,12.5749998092651,12.5749998092651,12.5749998092651,12.5749998092651,11.6952650187394,0,0,0,0
2024-03-22 00:00:00-04:00,12.5325002670288,12.5325002670288,12.5325002670288,12.5325002670288,11.6557387032588,0,0,0,0
2024-03-25 00:00:00-04:00,12.5524997711182,12.5524997711182,12.5524997711182,12.5524997711182,11.674339061439,0,0,0,0
2024-03-26 00:00:00-04:00,12.5749998092651,12.5749998092651,12.5749998092651,12.5749998092651,11.6952650187394,0,0,0,0
2024-03-27 00:00:00-04:00,12.6800003051758,12.6800003051758,12.6800003051758,12.6800003051758,11.7929197817931,0,0,0,0
2024-03-28 00:00:00-04:00,12.6750001907349,12.6750001907349,12.6750001907349,12.6750001907349,11.788269470509,0,0,0,0
2024-04-01 00:00:00-04:00,12.625,12.625,12.625,12.625,11.7417672446242,0,0,0,0
2024-04-02 00:00:00-04:00,12.5874996185303,12.5874996185303,12.5874996185303,12.5874996185303,11.7068903534715,0,0,0,0
2024-04-03 00:00:00-04:00,12.6724996566772,12.6724996566772,12.6724996566772,12.6724996566772,11.7859438713888,0,0,0,0
2024-04-04 00:00:00-04:00,12.6199998855591,12.6199998855591,12.6199998855591,12.6199998855591,11.7371169333401,0,0,0,0
2024-04-05 00:00:00-04:00,12.6225004196167,12.6225004196167,12.6225004196167,12.6225004196167,11.7394425324602,0,0,0,0
2024-04-08 00:00:00-04:00,12.6750001907349,12.6750001907349,12.6750001907349,12.6750001907349,11.788269470509,0,0,0,0
2024-04-09 00:00:00-04:00,12.7124996185303,12.7124996185303,12.7124996185303,12.7124996185303,11.8231454747054,0,0,0,0
2024-04-10 00:00:00-04:00,12.5900001525879,12.5900001525879,12.5900001525879,12.5900001525879,11.7092159525917,0,0,0,0
2024-04-11 00:00:00-04:00,12.5574998855591,12.5574998855591,12.5574998855591,12.5574998855591,11.6789893727231,0,0,0,0
2024-04-12 00:00:00-04:00,12.3474998474121,12.3474998474121,12.3474998474121,12.3474998474121,11.4836807335719,0,0,0,0
2024-04-15 00:00:00-04:00,12.2799997329712,12.2799997329712,12.2799997329712,12.2799997329712,11.4209028616709,0,0,0,0
2024-04-16 00:00:00-04:00,12.1625003814697,12.1625003814697,12.1625003814697,12.1625003814697,11.3116236508412,0,0,0,0
2024-04-17 00:00:00-04:00,12.1850004196167,12.1850004196167,12.1850004196167,12.1850004196167,11.3325496081416,0,0,0,0
2024-04-18 00:00:00-04:00,12.1999998092651,12.1999998092651,12.1999998092651,12.1999998092651,11.3464996550377,0,0,0,0
2024-04-19 00:00:00-04:00,12.2349996566772,12.2349996566772,12.2349996566772,12.2349996566772,11.3790509470702,0,0,0,0
2024-04-22 00:00:00-04:00,12.4125003814697,12.4125003814697,12.4125003814697,12.4125003814697,11.544133893309,0,0,0,0
2024-04-23 00:00:00-04:00,12.5124998092651,12.5124998092651,12.5124998092651,12.5124998092651,11.6371374581224,0,0,0,0
2024-04-24 00:00:00-04:00,12.5074996948242,12.5074996948242,12.5074996948242,12.5074996948242,11.6324871468383,0,0,0,0
2024-04-25 00:00:00-04:00,12.5699996948242,12.5699996948242,12.5699996948242,12.5699996948242,11.6906147074553,0,0,0,0
2024-04-26 00:00:00-04:00,12.6149997711182,12.6149997711182,12.6149997711182,12.6149997711182,11.732466622056,0,0,0,0
2024-04-29 00:00:00-04:00,12.6999998092651,12.6999998092651,12.6999998092651,12.6999998092651,11.8115201399733,0,0,0,0
2024-04-30 00:00:00-04:00,12.5050001144409,12.5050001144409,12.5050001144409,12.5050001144409,11.6301624346744,0,0,0,0
2024-05-01 00:00:00-04:00,12.4949998855591,12.4949998855591,12.4949998855591,12.4949998855591,11.6208618121062,0,0,0,0
2024-05-02 00:00:00-04:00,12.6674995422363,12.6674995422363,12.6674995422363,12.6674995422363,11.7812935601047,0,0,0,0
2024-05-03 00:00:00-04:00,12.7524995803833,12.7524995803833,12.7524995803833,12.7524995803833,11.860347078022,0,0,0,0
2024-05-06 00:00:00-04:00,12.852499961853,12.852499961853,12.852499961853,12.852499961853,11.9533515297916,0,0,0,0
2024-05-07 00:00:00-04:00,12.914999961853,12.914999961853,12.914999961853,12.914999961853,12.0114790904086,0,0,0,0
2024-05-08 00:00:00-04:00,12.9350004196167,12.9350004196167,12.9350004196167,12.9350004196167,12.030080335545,0,0,0,0
2024-05-09 00:00:00-04:00,13.0249996185303,13.0249996185303,13.0249996185303,13.0249996185303,12.1137832777902,0,0,0,0
2024-05-10 00:00:00-04:00,13.1075000762939,13.1075000762939,13.1075000762939,13.1075000762939,12.1905120835435,0,0,0,0
2024-05-13 00:00:00-04:00,13.1824998855591,13.1824998855591,13.1824998855591,13.1824998855591,12.2602649788926,0,0,0,0
2024-05-14 00:00:00-04:00,13.2399997711182,13.2399997711182,13.2399997711182,13.2399997711182,12.3137422282255,0,0,0,0
2024-05-15 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.4299973494594,0,0,0,0
2024-05-16 00:00:00-04:00,13.3500003814697,13.3500003814697,13.3500003814697,13.3500003814697,12.4160473025633,0,0,0,0
2024-05-17 00:00:00-04:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.4323229485795,0,0,0,0
2024-05-20 00:00:00-04:00,13.397500038147,13.397500038147,13.397500038147,13.397500038147,12.4602239293279,0,0,0,0
2024-05-21 00:00:00-04:00,13.3474998474121,13.3474998474121,13.3474998474121,13.3474998474121,12.4137217034432,0,0,0,0
2024-05-22 00:00:00-04:00,13.2224998474121,13.2224998474121,13.2224998474121,13.2224998474121,12.2974665822092,0,0,0,0
2024-05-23 00:00:00-04:00,13.125,13.125,13.125,13.125,12.2067877295598,0,0,0,0
2024-05-24 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,12.281190936193,0,0,0,0
2024-05-28 00:00:00-04:00,13.1899995803833,13.1899995803833,13.1899995803833,13.1899995803833,12.2672400023407,0,0,0,0
2024-05-29 00:00:00-04:00,12.9674997329712,12.9674997329712,12.9674997329712,12.9674997329712,12.0603060284573,0,0,0,0
2024-05-30 00:00:00-04:00,13.0699996948242,13.0699996948242,13.0699996948242,13.0699996948242,12.1556351923909,0,0,0,0
2024-05-31 00:00:00-04:00,13.1925001144409,13.1925001144409,13.1925001144409,13.1925001144409,12.2695656014608,0,0,0,0
2024-06-03 00:00:00-04:00,13.1774997711182,13.1774997711182,13.1774997711182,13.1774997711182,12.2556146676085,0,0,0,0
2024-06-04 00:00:00-04:00,13.0550003051758,13.0550003051758,13.0550003051758,13.0550003051758,12.1416851454948,0,0,0,0
2024-06-05 00:00:00-04:00,13.1549997329712,13.1549997329712,13.1549997329712,13.1549997329712,12.2346887103082,0,0,0,0
2024-06-06 00:00:00-04:00,13.1975002288818,13.1975002288818,13.1975002288818,13.1975002288818,12.2742159127449,0,0,0,0
2024-06-07 00:00:00-04:00,13.085000038147,13.085000038147,13.085000038147,13.085000038147,12.1695861262432,0,0,0,0
2024-06-10 00:00:00-04:00,13.039999961853,13.039999961853,13.039999961853,13.039999961853,12.1277342116425,0,0,0,0
2024-06-11 00:00:00-04:00,12.9025001525879,12.9025001525879,12.9025001525879,12.9025001525879,11.9998537556764,0,0,0,0
2024-06-12 00:00:00-04:00,13.0074996948242,13.0074996948242,13.0074996948242,13.0074996948242,12.0975076317739,0,0,0,0
2024-06-13 00:00:00-04:00,12.8275003433228,12.8275003433228,12.8275003433228,12.8275003433228,11.9301008603273,0,0,0,0
2024-06-14 00:00:00-04:00,12.7049999237061,12.7049999237061,12.7049999237061,12.7049999237061,11.8161704512574,0,0,0,0
2024-06-17 00:00:00-04:00,12.7574996948242,12.7574996948242,12.7574996948242,12.7574996948242,11.8649973893061,0,0,0,0
2024-06-18 00:00:00-04:00,12.7849998474121,12.7849998474121,12.7849998474121,12.7849998474121,11.8905736578906,0,0,0,0
2024-06-20 00:00:00-04:00,12.8325004577637,12.8325004577637,12.8325004577637,12.8325004577637,11.9347511716114,0,0,0,0
2024-06-21 00:00:00-04:00,12.7200002670288,12.7200002670288,12.7200002670288,12.7200002670288,11.8301213851097,0,0,0,0
2024-06-24 00:00:00-04:00,12.8675003051758,12.8675003051758,12.8675003051758,12.8675003051758,11.9673024636439,0,0,0,0
2024-06-25 00:00:00-04:00,12.8249998092651,12.8249998092651,12.8249998092651,12.8249998092651,11.9277752612072,0,0,0,0
2024-06-26 00:00:00-04:00,12.7399997711182,12.7399997711182,12.7399997711182,12.7399997711182,11.8487217432899,0,0,0,0
2024-06-27 00:00:00-04:00,12.7025003433228,12.7025003433228,12.7025003433228,12.7025003433228,11.8138457390934,0,0,0,0
2024-06-28 00:00:00-04:00,12.6774997711182,12.6774997711182,12.6774997711182,12.6774997711182,11.7905941826729,0,0,0,0
2024-07-01 00:00:00-04:00,12.727499961853,12.727499961853,12.727499961853,12.727499961853,11.8370964085577,0,0,0,0
2024-07-02 00:00:00-04:00,12.727499961853,12.727499961853,12.727499961853,12.727499961853,11.8370964085577,0,0,0,0
2024-07-03 00:00:00-04:00,12.8999996185303,12.8999996185303,12.8999996185303,12.8999996185303,11.9975281565563,0,0,0,0
2024-07-05 00:00:00-04:00,12.960000038147,12.960000038147,12.960000038147,12.960000038147,12.0533310050093,0,0,0,0
2024-07-08 00:00:00-04:00,12.9499998092651,12.9499998092651,12.9499998092651,12.9499998092651,12.0440303824411,0,0,0,0
2024-07-09 00:00:00-04:00,12.9075002670288,12.9075002670288,12.9075002670288,12.9075002670288,12.0045040669605,0,0,0,0
2024-07-10 00:00:00-04:00,13.0649995803833,13.0649995803833,13.0649995803833,13.0649995803833,12.1509848811068,0,0,0,0
2024-07-11 00:00:00-04:00,13.1724996566772,13.1724996566772,13.1724996566772,13.1724996566772,12.2509643563244,0,0,0,0
2024-07-12 00:00:00-04:00,13.2950000762939,13.2950000762939,13.2950000762939,13.2950000762939,12.3648947653944,0,0,0,0
2024-07-15 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,12.281190936193,0,0,0,0
2024-07-16 00:00:00-04:00,13.2200002670288,13.2200002670288,13.2200002670288,13.2200002670288,12.2951418700453,0,0,0,0
2024-07-17 00:00:00-04:00,13.289999961853,13.289999961853,13.289999961853,13.289999961853,12.3602444541103,0,0,0,0
2024-07-18 00:00:00-04:00,13.1499996185303,13.1499996185303,13.1499996185303,13.1499996185303,12.2300383990241,0,0,0,0
2024-07-19 00:00:00-04:00,13.0500001907349,13.0500001907349,13.0500001907349,13.0500001907349,12.1370348342107,0,0,0,0
2024-07-22 00:00:00-04:00,13.1949996948242,13.1949996948242,13.1949996948242,13.1949996948242,12.2718903136248,0,0,0,0
2024-07-23 00:00:00-04:00,13.0874996185303,13.0874996185303,13.0874996185303,13.0874996185303,12.1719108384071,0,0,0,0
2024-07-24 00:00:00-04:00,12.9624996185303,12.9624996185303,12.9624996185303,12.9624996185303,12.0556557171732,0,0,0,0
2024-07-25 00:00:00-04:00,12.9300003051758,12.9300003051758,12.9300003051758,12.9300003051758,12.0254300242609,0,0,0,0
2024-07-26 00:00:00-04:00,13.0325002670288,13.0325002670288,13.0325002670288,13.0325002670288,12.1207591881944,0,0,0,0
2024-07-29 00:00:00-04:00,13.0150003433228,13.0150003433228,13.0150003433228,13.0150003433228,12.1044835421782,0,0,0,0
2024-07-30 00:00:00-04:00,12.9825000762939,12.9825000762939,12.9825000762939,12.9825000762939,12.0742569623096,0,0,0,0
2024-07-31 00:00:00-04:00,13.0799999237061,13.0799999237061,13.0799999237061,13.0799999237061,12.1649358149591,0,0,0,0
2024-08-01 00:00:00-04:00,12.8299999237061,12.8299999237061,12.8299999237061,12.8299999237061,11.9324255724913,0,0,0,0
2024-08-02 00:00:00-04:00,12.6400003433228,12.6400003433228,12.6400003433228,12.6400003433228,11.7557181784765,0,0,0,0
2024-08-05 00:00:00-04:00,12.3599996566772,12.3599996566772,12.3599996566772,12.3599996566772,11.4953060683041,0,0,0,0
2024-08-06 00:00:00-04:00,12.3649997711182,12.3649997711182,12.3649997711182,12.3649997711182,11.4999563795882,0,0,0,0
2024-08-07 00:00:00-04:00,12.4475002288818,12.4475002288818,12.4475002288818,12.4475002288818,11.5766851853415,0,0,0,0
2024-08-08 00:00:00-04:00,12.6575002670288,12.6575002670288,12.6575002670288,12.6575002670288,11.7719938244927,0,0,0,0
2024-08-09 00:00:00-04:00,12.6899995803833,12.6899995803833,12.6899995803833,12.6899995803833,11.8022195174051,0,0,0,0
2024-08-12 00:00:00-04:00,12.6949996948242,12.6949996948242,12.6949996948242,12.6949996948242,11.8068698286892,0,0,0,0
2024-08-13 00:00:00-04:00,12.8474998474121,12.8474998474121,12.8474998474121,12.8474998474121,11.9487012185075,0,0,0,0
2024-08-14 00:00:00-04:00,12.875,12.875,12.875,12.875,11.974277487092,0,0,0,0
2024-08-15 00:00:00-04:00,13.0450000762939,13.0450000762939,13.0450000762939,13.0450000762939,12.1323845229266,0,0,0,0
2024-08-16 00:00:00-04:00,13.1350002288818,13.1350002288818,13.1350002288818,13.1350002288818,12.216088352128,0,0,0,0
2024-08-19 00:00:00-04:00,13.2849998474121,13.2849998474121,13.2849998474121,13.2849998474121,12.3555941428262,0,0,0,0
2024-08-20 00:00:00-04:00,13.2124996185303,13.2124996185303,13.2124996185303,13.2124996185303,12.2881659596411,0,0,0,0
2024-08-21 00:00:00-04:00,13.2749996185303,13.2749996185303,13.2749996185303,13.2749996185303,12.346293520258,0,0,0,0
2024-08-22 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,12.281190936193,0,0,0,0
2024-08-23 00:00:00-04:00,13.4025001525879,13.4025001525879,13.4025001525879,13.4025001525879,12.464874240612,0,0,0,0
2024-08-26 00:00:00-04:00,13.3774995803833,13.3774995803833,13.3774995803833,13.3774995803833,12.4416226841916,0,0,0,0
2024-08-27 00:00:00-04:00,13.4449996948242,13.4449996948242,13.4449996948242,13.4449996948242,12.5044005560926,0,0,0,0
2024-08-28 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.4299973494594,0,0,0,0
2024-08-29 00:00:00-04:00,13.4049997329712,13.4049997329712,13.4049997329712,13.4049997329712,12.467198952776,0,0,0,0
2024-08-30 00:00:00-04:00,13.4650001525879,13.4650001525879,13.4650001525879,13.4650001525879,12.523001801229,0,0,0,0
2024-09-03 00:00:00-04:00,13.2550001144409,13.2550001144409,13.2550001144409,13.2550001144409,12.3276931620778,0,0,0,0
2024-09-04 00:00:00-04:00,13.2700004577637,13.2700004577637,13.2700004577637,13.2700004577637,12.3416440959301,0,0,0,0
2024-09-05 00:00:00-04:00,13.3024997711182,13.3024997711182,13.3024997711182,13.3024997711182,12.3718697888425,0,0,0,0
2024-09-06 00:00:00-04:00,13.0924997329712,13.0924997329712,13.0924997329712,13.0924997329712,12.1765611496912,0,0,0,0
2024-09-09 00:00:00-04:00,13.1850004196167,13.1850004196167,13.1850004196167,13.1850004196167,12.2625905780128,0,0,0,0
2024-09-10 00:00:00-04:00,13.1324996948242,13.1324996948242,13.1324996948242,13.1324996948242,12.2137627530078,0,0,0,0
2024-09-11 00:00:00-04:00,13.1599998474121,13.1599998474121,13.1599998474121,13.1599998474121,12.2393390215923,0,0,0,0
2024-09-12 00:00:00-04:00,13.2550001144409,13.2550001144409,13.2550001144409,13.2550001144409,12.3276931620778,0,0,0,0
2024-09-13 00:00:00-04:00,13.3249998092651,13.3249998092651,13.3249998092651,13.3249998092651,12.3927957461428,0,0,0,0
2024-09-16 00:00:00-04:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.4323229485795,0,0,0,0
2024-09-17 00:00:00-04:00,13.4300003051758,13.4300003051758,13.4300003051758,13.4300003051758,12.4904505091965,0,0,0,0
2024-09-18 00:00:00-04:00,13.4075002670288,13.4075002670288,13.4075002670288,13.4075002670288,12.4695245518961,0,0,0,0
2024-09-19 00:00:00-04:00,13.625,13.625,13.625,13.625,12.6718082144954,0,0,0,0
2024-09-20 00:00:00-04:00,13.5150003433228,13.5150003433228,13.5150003433228,13.5150003433228,12.5695040271138,0,0,0,0
2024-09-23 00:00:00-04:00,13.5574998855591,13.5574998855591,13.5574998855591,13.5574998855591,12.6090303425944,0,0,0,0
2024-09-24 00:00:00-04:00,13.7600002288818,13.7600002288818,13.7600002288818,13.7600002288818,12.7973639582975,0,0,0,0
2024-09-25 00:00:00-04:00,13.6949996948242,13.6949996948242,13.6949996948242,13.6949996948242,12.7369107985604,0,0,0,0
2024-09-26 00:00:00-04:00,14.0024995803833,14.0024995803833,14.0024995803833,14.0024995803833,13.0228982903611,0,0,0,0
2024-09-27 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,13.1763550149116,0,0,0,0
2024-09-30 00:00:00-04:00,13.9425001144409,13.9425001144409,13.9425001144409,13.9425001144409,12.9670963288643,0,0,0,0
2024-10-01 00:00:00-04:00,13.9174995422363,13.9174995422363,13.9174995422363,13.9174995422363,12.9438447724438,0,0,0,0
2024-10-02 00:00:00-04:00,13.9549999237061,13.9549999237061,13.9549999237061,13.9549999237061,12.9787216635964,0,0,0,0
2024-10-03 00:00:00-04:00,13.7950000762939,13.7950000762939,13.7950000762939,13.7950000762939,12.82991525033,0,0,0,0
2024-10-04 00:00:00-04:00,13.9274997711182,13.9274997711182,13.9274997711182,13.9274997711182,12.953145395012,0,0,0,0
2024-10-07 00:00:00-04:00,13.8924999237061,13.8924999237061,13.8924999237061,13.8924999237061,12.9205941029795,0,0,0,0
2024-10-08 00:00:00-04:00,13.7749996185303,13.7749996185303,13.7749996185303,13.7749996185303,12.8113140051936,0,0,0,0
2024-10-09 00:00:00-04:00,13.8125,13.8125,13.8125,13.8125,12.8461908963463,0,0,0,0
2024-10-10 00:00:00-04:00,13.789999961853,13.789999961853,13.789999961853,13.789999961853,12.8252649390459,0,0,0,0
2024-10-11 00:00:00-04:00,13.8199996948242,13.8199996948242,13.8199996948242,13.8199996948242,12.8531659197943,0,0,0,0
2024-10-14 00:00:00-04:00,13.8249998092651,13.8249998092651,13.8249998092651,13.8249998092651,12.8578162310784,0,0,0,0
2024-10-15 00:00:00-04:00,13.6274995803833,13.6274995803833,13.6274995803833,13.6274995803833,12.6741329266594,0,0,0,0
2024-10-16 00:00:00-04:00,13.6674995422363,13.6674995422363,13.6674995422363,13.6674995422363,12.711334529976,0,0,0,0
2024-10-17 00:00:00-04:00,13.6975002288818,13.6975002288818,13.6975002288818,13.6975002288818,12.7392363976806,0,0,0,0
2024-10-18 00:00:00-04:00,13.7875003814697,13.7875003814697,13.7875003814697,13.7875003814697,12.822940226882,0,0,0,0
2024-10-21 00:00:00-04:00,13.664999961853,13.664999961853,13.664999961853,13.664999961853,12.709009817812,0,0,0,0
2024-10-22 00:00:00-04:00,13.6125001907349,13.6125001907349,13.6125001907349,13.6125001907349,12.6601828797633,0,0,0,0
2024-10-23 00:00:00-04:00,13.5299997329712,13.5299997329712,13.5299997329712,13.5299997329712,12.5834540740099,0,0,0,0
2024-10-24 00:00:00-04:00,13.585000038147,13.585000038147,13.585000038147,13.585000038147,12.6346066111788,0,0,0,0
2024-10-25 00:00:00-04:00,13.5625,13.5625,13.5625,13.5625,12.6136806538785,0,0,0,0
2024-10-28 00:00:00-04:00,13.6724996566772,13.6724996566772,13.6724996566772,13.6724996566772,12.7159848412601,0,0,0,0
2024-10-29 00:00:00-04:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.6392569224629,0,0,0,0
2024-10-30 00:00:00-04:00,13.4875001907349,13.4875001907349,13.4875001907349,13.4875001907349,12.5439277585293,0,0,0,0
2024-10-31 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.4299973494594,0,0,0,0
2024-11-01 00:00:00-04:00,13.4274997711182,13.4274997711182,13.4274997711182,13.4274997711182,12.4881249100764,0,0,0,0
2024-11-04 00:00:00-05:00,13.4700002670288,13.4700002670288,13.4700002670288,13.4700002670288,12.5276521125131,0,0,0,0
2024-11-05 00:00:00-05:00,13.602499961853,13.602499961853,13.602499961853,13.602499961853,12.6508822571951,0,0,0,0
2024-11-06 00:00:00-05:00,13.5074996948242,13.5074996948242,13.5074996948242,13.5074996948242,12.5625281167096,0,0,0,0
2024-11-07 00:00:00-05:00,13.602499961853,13.602499961853,13.602499961853,13.602499961853,12.6508822571951,0,0,0,0
2024-11-08 00:00:00-05:00,13.4525003433228,13.4525003433228,13.4525003433228,13.4525003433228,12.5113764664968,0,0,0,0
2024-11-11 00:00:00-05:00,13.477499961853,13.477499961853,13.477499961853,13.477499961853,12.5346271359612,0,0,0,0
2024-11-12 00:00:00-05:00,13.1850004196167,13.1850004196167,13.1850004196167,13.1850004196167,12.2625905780128,0,0,0,0
2024-11-13 00:00:00-05:00,13.1199998855591,13.1199998855591,13.1199998855591,13.1199998855591,12.2021374182757,0,0,0,0
2024-11-14 00:00:00-05:00,13.1499996185303,13.1499996185303,13.1499996185303,13.1499996185303,12.2300383990241,0,0,0,0
2024-11-15 00:00:00-05:00,13.1175003051758,13.1175003051758,13.1175003051758,13.1175003051758,12.1998127061117,0,0,0,0
2024-11-18 00:00:00-05:00,13.2075004577637,13.2075004577637,13.2075004577637,13.2075004577637,12.2835165353131,0,0,0,0
2024-11-19 00:00:00-05:00,13.1625003814697,13.1625003814697,13.1625003814697,13.1625003814697,12.2416646207124,0,0,0,0
2024-11-20 00:00:00-05:00,13.125,13.125,13.125,13.125,12.2067877295598,0,0,0,0
2024-11-21 00:00:00-05:00,13.1225004196167,13.1225004196167,13.1225004196167,13.1225004196167,12.2044630173958,0,0,0,0
2024-11-22 00:00:00-05:00,13.1225004196167,13.1225004196167,13.1225004196167,13.1225004196167,12.2044630173958,0,0,0,0
2024-11-25 00:00:00-05:00,13.210000038147,13.210000038147,13.210000038147,13.210000038147,12.2858412474771,0,0,0,0
2024-11-26 00:00:00-05:00,13.1099996566772,13.1099996566772,13.1099996566772,13.1099996566772,12.1928367957075,0,0,0,0
2024-11-27 00:00:00-05:00,13.164999961853,13.164999961853,13.164999961853,13.164999961853,12.2439893328764,0,0,0,0
2024-11-29 00:00:00-05:00,13.2075004577637,13.2075004577637,13.2075004577637,13.2075004577637,12.2835165353131,0,0,0,0
2024-12-02 00:00:00-05:00,13.1975002288818,13.1975002288818,13.1975002288818,13.1975002288818,12.2742159127449,0,0,0,0
2024-12-03 00:00:00-05:00,13.2650003433228,13.2650003433228,13.2650003433228,13.2650003433228,12.336993784646,0,0,0,0
2024-12-04 00:00:00-05:00,13.25,13.25,13.25,13.25,12.3230428507937,0,0,0,0
2024-12-05 00:00:00-05:00,13.3824996948242,13.3824996948242,13.3824996948242,13.3824996948242,12.4462729954757,0,0,0,0
2024-12-06 00:00:00-05:00,13.3774995803833,13.3774995803833,13.3774995803833,13.3774995803833,12.4416226841916,0,0,0,0
2024-12-09 00:00:00-05:00,13.4425001144409,13.4425001144409,13.4425001144409,13.4425001144409,12.5020758439286,0,0,0,0
2024-12-10 00:00:00-05:00,13.3175001144409,13.3175001144409,13.3175001144409,13.3175001144409,12.3858207226947,0,0,0,0
2024-12-11 00:00:00-05:00,13.3024997711182,13.3024997711182,13.3024997711182,13.3024997711182,12.3718697888425,0,0,0,0
2024-12-12 00:00:00-05:00,13.2624998092651,13.2624998092651,13.2624998092651,13.2624998092651,12.3346681855259,0,0,0,0
2024-12-13 00:00:00-05:00,13.1875,13.1875,13.1875,13.1875,12.2649152901767,0,0,0,0
2024-12-16 00:00:00-05:00,13.1075000762939,13.1075000762939,13.1075000762939,13.1075000762939,12.1905120835435,0,0,0,0
2024-12-17 00:00:00-05:00,13.0349998474121,13.0349998474121,13.0349998474121,13.0349998474121,12.1230839003584,0,0,0,0
2024-12-18 00:00:00-05:00,12.4525003433228,12.4525003433228,12.4525003433228,12.4525003433228,11.8364989993296,0,0.281,0,0
2024-12-19 00:00:00-05:00,12.3850002288818,12.3850002288818,12.3850002288818,12.3850002288818,11.7723379862795,0,0,0,0
2024-12-20 00:00:00-05:00,12.4250001907349,12.4250001907349,12.4250001907349,12.4250001907349,11.8103592266242,0,0,0,0
2024-12-23 00:00:00-05:00,12.5024995803833,12.5024995803833,12.5024995803833,12.5024995803833,11.8840248698871,0,0,0,0
2024-12-24 00:00:00-05:00,12.5349998474121,12.5349998474121,12.5349998474121,12.5349998474121,11.9149174109478,0,0,0,0
2024-12-26 00:00:00-05:00,12.5349998474121,12.5349998474121,12.5349998474121,12.5349998474121,11.9149174109478,0,0,0,0
2024-12-27 00:00:00-05:00,12.5450000762939,12.5450000762939,12.5450000762939,12.5450000762939,11.9244229476585,0,0,0,0
2024-12-30 00:00:00-05:00,12.4825000762939,12.4825000762939,12.4825000762939,12.4825000762939,11.8650147029637,0,0,0,0
2024-12-31 00:00:00-05:00,12.4750003814697,12.4750003814697,12.4750003814697,12.4750003814697,11.8578860036797,0,0,0,0
2025-01-02 00:00:00-05:00,12.4300003051758,12.4300003051758,12.4300003051758,12.4300003051758,11.8151119949796,0,0,0,0
2025-01-03 00:00:00-05:00,12.4624996185303,12.4624996185303,12.4624996185303,12.4624996185303,11.8460036295424,0,0,0,0
2025-01-06 00:00:00-05:00,12.602499961853,12.602499961853,12.602499961853,12.602499961853,11.979078423998,0,0,0,0
2025-01-07 00:00:00-05:00,12.6149997711182,12.6149997711182,12.6149997711182,12.6149997711182,11.9909598916373,0,0,0,0
2025-01-08 00:00:00-05:00,12.5574998855591,12.5574998855591,12.5574998855591,12.5574998855591,11.9363044152979,0,0,0,0
2025-01-10 00:00:00-05:00,12.3299999237061,12.3299999237061,12.3299999237061,12.3299999237061,11.7200584408688,0,0,0,0
2025-01-13 00:00:00-05:00,12.3024997711182,12.3024997711182,12.3024997711182,12.3024997711182,11.6939186681634,0,0,0,0
2025-01-14 00:00:00-05:00,12.3800001144409,12.3800001144409,12.3800001144409,12.3800001144409,11.7675852179242,0,0,0,0
2025-01-15 00:00:00-05:00,12.539999961853,12.539999961853,12.539999961853,12.539999961853,11.9196701793032,0,0,0,0
2025-01-16 00:00:00-05:00,12.6125001907349,12.6125001907349,12.6125001907349,12.6125001907349,11.9885839607086,0,0,0,0
2025-01-17 00:00:00-05:00,12.7049999237061,12.7049999237061,12.7049999237061,12.7049999237061,12.0765079090375,0,0,0,0
2025-01-21 00:00:00-05:00,12.8625001907349,12.8625001907349,12.8625001907349,12.8625001907349,12.2262169394878,0,0,0,0
2025-01-22 00:00:00-05:00,12.8725004196167,12.8725004196167,12.8725004196167,12.8725004196167,12.2357224761984,0,0,0,0
2025-01-23 00:00:00-05:00,12.9674997329712,12.9674997329712,12.9674997329712,12.9674997329712,12.3260223554561,0,0,0,0
2025-01-24 00:00:00-05:00,13.0249996185303,13.0249996185303,13.0249996185303,13.0249996185303,12.3806778317955,0,0,0,0
2025-01-27 00:00:00-05:00,13.0024995803833,13.0024995803833,13.0024995803833,13.0024995803833,12.3592908274455,0,0,0,0
2025-01-28 00:00:00-05:00,13.0150003433228,13.0150003433228,13.0150003433228,13.0150003433228,12.3711732015827,0,0,0,0
2025-01-29 00:00:00-05:00,13.0200004577637,13.0200004577637,13.0200004577637,13.0200004577637,12.3759259699381,0,0,0,0
2025-01-30 00:00:00-05:00,13.1525001525879,13.1525001525879,13.1525001525879,13.1525001525879,12.5018711586117,0,0,0,0
2025-01-31 00:00:00-05:00,13.0649995803833,13.0649995803833,13.0649995803833,13.0649995803833,12.4186990721403,0,0,0,0
2025-02-03 00:00:00-05:00,12.8924999237061,12.8924999237061,12.8924999237061,12.8924999237061,12.2547326431219,0,0,0,0
2025-02-04 00:00:00-05:00,13.0600004196167,13.0600004196167,13.0600004196167,13.0600004196167,12.4139472102828,0,0,0,0
2025-02-05 00:00:00-05:00,13.1999998092651,13.1999998092651,13.1999998092651,13.1999998092651,12.5470210982405,0,0,0,0
2025-02-06 00:00:00-05:00,13.352499961853,13.352499961853,13.352499961853,13.352499961853,12.6919773603355,0,0,0,0
2025-02-07 00:00:00-05:00,13.2624998092651,13.2624998092651,13.2624998092651,13.2624998092651,12.6064293429353,0,0,0,0
2025-02-10 00:00:00-05:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.7062356654015,0,0,0,0
2025-02-11 00:00:00-05:00,13.3950004577637,13.3950004577637,13.3950004577637,13.3950004577637,12.7323754381068,0,0,0,0
2025-02-12 00:00:00-05:00,13.477499961853,13.477499961853,13.477499961853,13.477499961853,12.8107938497251,0,0,0,0
2025-02-13 00:00:00-05:00,13.5924997329712,13.5924997329712,13.5924997329712,13.5924997329712,12.920104802404,0,0,0,0
2025-02-14 00:00:00-05:00,13.6374998092651,13.6374998092651,13.6374998092651,13.6374998092651,12.9628788111041,0,0,0,0
2025-02-18 00:00:00-05:00,13.7425003051758,13.7425003051758,13.7425003051758,13.7425003051758,13.0626851335702,0,0,0,0
2025-02-19 00:00:00-05:00,13.6049995422363,13.6049995422363,13.6049995422363,13.6049995422363,12.9319862700434,0,0,0,0
2025-02-20 00:00:00-05:00,13.6724996566772,13.6724996566772,13.6724996566772,13.6724996566772,12.9961472830935,0,0,0,0
2025-02-21 00:00:00-05:00,13.647500038147,13.647500038147,13.647500038147,13.647500038147,12.9723843478147,0,0,0,0
2025-02-24 00:00:00-05:00,13.5349998474121,13.5349998474121,13.5349998474121,13.5349998474121,12.8654493260645,0,0,0,0
2025-02-25 00:00:00-05:00,13.647500038147,13.647500038147,13.647500038147,13.647500038147,12.9723843478147,0,0,0,0
2025-02-26 00:00:00-05:00,13.7299995422363,13.7299995422363,13.7299995422363,13.7299995422363,13.0508027594329,0,0,0,0
2025-02-27 00:00:00-05:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.9177288714753,0,0,0,0
2025-02-28 00:00:00-05:00,13.6549997329712,13.6549997329712,13.6549997329712,13.6549997329712,12.9795130470988,0,0,0,0
2025-03-03 00:00:00-05:00,13.6700000762939,13.6700000762939,13.6700000762939,13.6700000762939,12.9937713521648,0,0,0,0
2025-03-04 00:00:00-05:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.9177288714753,0,0,0,0
2025-03-05 00:00:00-05:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,13.26704964036,0,0,0,0
2025-03-06 00:00:00-05:00,13.9650001525879,13.9650001525879,13.9650001525879,13.9650001525879,13.274178339644,0,0,0,0
2025-03-07 00:00:00-05:00,14.0675001144409,14.0675001144409,14.0675001144409,14.0675001144409,13.3716078246835,0,0,0,0
2025-03-10 00:00:00-04:00,13.7775001525879,13.7775001525879,13.7775001525879,13.7775001525879,13.0959536055596,0,0,0,0
2025-03-11 00:00:00-04:00,13.710000038147,13.710000038147,13.710000038147,13.710000038147,13.0317925925095,0,0,0,0
2025-03-12 00:00:00-04:00,13.7674999237061,13.7674999237061,13.7674999237061,13.7674999237061,13.086448068849,0,0,0,0
2025-03-13 00:00:00-04:00,13.6875,13.6875,13.6875,13.6875,13.0104055881595,0,0,0,0
2025-03-14 00:00:00-04:00,13.9350004196167,13.9350004196167,13.9350004196167,13.9350004196167,13.2456626360099,0,0,0,0
2025-03-17 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,13.4666604722965,0,0,0,0
2025-03-18 00:00:00-04:00,14.2124996185303,14.2124996185303,14.2124996185303,14.2124996185303,13.5094344809966,0,0,0,0
2025-03-19 00:00:00-04:00,14.227499961853,14.227499961853,14.227499961853,14.227499961853,13.5236927860626,0,0,0,0
2025-03-20 00:00:00-04:00,14.1149997711182,14.1149997711182,14.1149997711182,14.1149997711182,13.4167577643124,0,0,0,0
2025-03-21 00:00:00-04:00,14.0124998092651,14.0124998092651,14.0124998092651,14.0124998092651,13.3193282792728,0,0,0,0
2025-03-24 00:00:00-04:00,14.0150003433228,14.0150003433228,14.0150003433228,14.0150003433228,13.3217051166994,0,0,0,0
2025-03-25 00:00:00-04:00,14.0775003433228,14.0775003433228,14.0775003433228,14.0775003433228,13.3811133613942,0,0,0,0
2025-03-26 00:00:00-04:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,13.26704964036,0,0,0,0
2025-03-27 00:00:00-04:00,13.9549999237061,13.9549999237061,13.9549999237061,13.9549999237061,13.2646728029333,0,0,0,0
2025-03-28 00:00:00-04:00,13.8000001907349,13.8000001907349,13.8000001907349,13.8000001907349,13.1173406099097,0,0,0,0
2025-03-31 00:00:00-04:00,13.6824998855591,13.6824998855591,13.6824998855591,13.6824998855591,13.0056528198041,0,0,0,0
2025-04-01 00:00:00-04:00,13.727499961853,13.727499961853,13.727499961853,13.727499961853,13.0484268285042,0,0,0,0
2025-04-02 00:00:00-04:00,13.7475004196167,13.7475004196167,13.7475004196167,13.7475004196167,13.0674379019255,0,0,0,0
2025-04-03 00:00:00-04:00,13.4674997329712,13.4674997329712,13.4674997329712,13.4674997329712,12.8012883130144,0,0,0,0
2025-04-04 00:00:00-04:00,12.6424999237061,12.6424999237061,12.6424999237061,12.6424999237061,12.0170996643427,0,0,0,0
2025-04-07 00:00:00-04:00,12.2799997329712,12.2799997329712,12.2799997329712,12.2799997329712,11.6725316638133,0,0,0,0
2025-04-08 00:00:00-04:00,12.1774997711182,12.1774997711182,12.1774997711182,12.1774997711182,11.5751021787738,0,0,0,0
2025-04-09 00:00:00-04:00,12.7574996948242,12.7574996948242,12.7574996948242,12.7574996948242,12.1264106170216,0,0,0,0
2025-04-10 00:00:00-04:00,12.6899995803833,12.6899995803833,12.6899995803833,12.6899995803833,12.0622496039715,0,0,0,0
2025-04-11 00:00:00-04:00,12.9399995803833,12.9399995803833,12.9399995803833,12.9399995803833,12.2998825827507,0,0,0,0
2025-04-14 00:00:00-04:00,13.1350002288818,13.1350002288818,13.1350002288818,13.1350002288818,12.485236922617,0,0,0,0
2025-04-15 00:00:00-04:00,13.2425003051758,13.2425003051758,13.2425003051758,13.2425003051758,12.5874191760119,0,0,0,0
2025-04-16 00:00:00-04:00,13.1674995422363,13.1674995422363,13.1674995422363,13.1674995422363,12.5161285571798,0,0,0,0
2025-04-17 00:00:00-04:00,13.289999961853,13.289999961853,13.289999961853,13.289999961853,12.6325691156407,0,0,0,0
2025-04-21 00:00:00-04:00,13.2174997329712,13.2174997329712,13.2174997329712,13.2174997329712,12.5636553342352,0,0,0,0
2025-04-22 00:00:00-04:00,13.4949998855591,13.4949998855591,13.4949998855591,13.4949998855591,12.8274280857198,0,0,0,0
2025-04-23 00:00:00-04:00,13.6125001907349,13.6125001907349,13.6125001907349,13.6125001907349,12.9391158758253,0,0,0,0
2025-04-24 00:00:00-04:00,13.7924995422363,13.7924995422363,13.7924995422363,13.7924995422363,13.1102110041277,0,0,0,0
2025-04-25 00:00:00-04:00,13.835000038147,13.835000038147,13.835000038147,13.835000038147,13.1506090818991,0,0,0,0
2025-04-28 00:00:00-04:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,13.26704964036,0,0,0,0
2025-04-29 00:00:00-04:00,13.9624996185303,13.9624996185303,13.9624996185303,13.9624996185303,13.2718015022174,0,0,0,0
2025-04-30 00:00:00-04:00,13.9650001525879,13.9650001525879,13.9650001525879,13.9650001525879,13.274178339644,0,0,0,0
2025-05-01 00:00:00-04:00,13.9399995803833,13.9399995803833,13.9399995803833,13.9399995803833,13.2504144978674,0,0,0,0
2025-05-02 00:00:00-04:00,14.1549997329712,14.1549997329712,14.1549997329712,14.1549997329712,13.4547790046571,0,0,0,0
2025-05-05 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,13.4666604722965,0,0,0,0
2025-05-06 00:00:00-04:00,14.2049999237061,14.2049999237061,14.2049999237061,14.2049999237061,13.5023057817125,0,0,0,0
2025-05-07 00:00:00-04:00,14.1125001907349,14.1125001907349,14.1125001907349,14.1125001907349,13.4143818333836,0,0,0,0
2025-05-08 00:00:00-04:00,14.1199998855591,14.1199998855591,14.1199998855591,14.1199998855591,13.4215105326677,0,0,0,0
2025-05-09 00:00:00-04:00,14.2399997711182,14.2399997711182,14.2399997711182,14.2399997711182,13.5355742537019,0,0,0,0
2025-05-12 00:00:00-04:00,14.4324998855591,14.4324998855591,14.4324998855591,14.4324998855591,13.7185517561416,0,0,0,0
2025-05-13 00:00:00-04:00,14.4849996566772,14.4849996566772,14.4849996566772,14.4849996566772,13.7684544641258,0,0,0,0
2025-05-14 00:00:00-04:00,14.4700002670288,14.4700002670288,14.4700002670288,14.4700002670288,13.7541970655577,0,0,0,0
2025-05-15 00:00:00-04:00,14.5524997711182,14.5524997711182,14.5524997711182,14.5524997711182,13.8326154771759,0,0,0,0
2025-05-16 00:00:00-04:00,14.6000003814697,14.6000003814697,14.6000003814697,14.6000003814697,13.8777663233026,0,0,0,0
2025-05-19 00:00:00-04:00,14.710000038147,14.710000038147,14.710000038147,14.710000038147,13.9823245076262,0,0,0,0
2025-05-20 00:00:00-04:00,14.772500038147,14.772500038147,14.772500038147,14.772500038147,14.041732752321,0,0,0,0
2025-05-21 00:00:00-04:00,14.6925001144409,14.6925001144409,14.6925001144409,14.6925001144409,13.9656902716315,0,0,0,0
2025-05-22 00:00:00-04:00,14.6899995803833,14.6899995803833,14.6899995803833,14.6899995803833,13.9633134342049,0,0,0,0
2025-05-23 00:00:00-04:00,14.7075004577637,14.7075004577637,14.7075004577637,14.7075004577637,13.9799485766975,0,0,0,0
2025-05-27 00:00:00-04:00,14.8649997711182,14.8649997711182,14.8649997711182,14.8649997711182,14.1296567006499,0,0,0,0
2025-05-28 00:00:00-04:00,14.7174997329712,14.7174997329712,14.7174997329712,14.7174997329712,13.9894532069102,0,0,0,0
2025-05-29 00:00:00-04:00,14.8199996948242,14.8199996948242,14.8199996948242,14.8199996948242,14.0868826919498,0,0,0,0
2025-05-30 00:00:00-04:00,14.7799997329712,14.7799997329712,14.7799997329712,14.7799997329712,14.048861451605,0,0,0,0
2025-06-02 00:00:00-04:00,14.8950004577637,14.8950004577637,14.8950004577637,14.8950004577637,14.1581733107818,0,0,0,0
2025-06-03 00:00:00-04:00,14.8450002670288,14.8450002670288,14.8450002670288,14.8450002670288,14.1106465337264,0,0,0,0
2025-06-04 00:00:00-04:00,14.9300003051758,14.9300003051758,14.9300003051758,14.9300003051758,14.1914417827713,0,0,0,0
2025-06-05 00:00:00-04:00,14.9700002670288,14.9700002670288,14.9700002670288,14.9700002670288,14.229463023116,0,0,0,0
2025-06-06 00:00:00-04:00,15.0275001525879,15.0275001525879,15.0275001525879,15.0275001525879,14.2841184994555,0,0,0,0
2025-06-09 00:00:00-04:00,15.0775003433228,15.0775003433228,15.0775003433228,15.0775003433228,14.3316452765109,0,0,0,0
2025-06-10 00:00:00-04:00,15.0775003433228,15.0775003433228,15.0775003433228,15.0775003433228,14.3316452765109,0,0,0,0
2025-06-11 00:00:00-04:00,15.1300001144409,15.1300001144409,15.1300001144409,15.1300001144409,14.381547984495,0,0,0,0
2025-06-12 00:00:00-04:00,15.1925001144409,15.1925001144409,15.1925001144409,15.1925001144409,14.4409562291898,0,0,0,0
2025-06-13 00:00:00-04:00,14.9899997711182,14.9899997711182,14.9899997711182,14.9899997711182,14.2484731900394,0,0,0,0
2025-06-16 00:00:00-04:00,15.1149997711182,15.1149997711182,15.1149997711182,15.1149997711182,14.367289679429,0,0,0,0
2025-06-17 00:00:00-04:00,14.960000038147,14.960000038147,14.960000038147,14.960000038147,14.2199574864054,0,0,0,0
2025-06-18 00:00:00-04:00,14.897500038147,14.897500038147,14.897500038147,14.897500038147,14.1605492417106,0,0,0,0
2025-06-20 00:00:00-04:00,14.7974996566772,14.7974996566772,14.7974996566772,14.7974996566772,14.0654956875997,0,0,0,0
2025-06-23 00:00:00-04:00,14.8675003051758,14.8675003051758,14.8675003051758,14.8675003051758,14.1320335380765,0,0,0,0
2025-06-24 00:00:00-04:00,15.0900001525879,15.0900001525879,15.0900001525879,15.0900001525879,14.3435267441503,0,0,0,0
2025-06-25 00:00:00-04:00,15.0249996185303,15.0249996185303,15.0249996185303,15.0249996185303,14.2817416620289,0,0,0,0
2025-06-26 00:00:00-04:00,15.1424999237061,15.1424999237061,15.1424999237061,15.1424999237061,14.3934294521344,0,0,0,0
2025-06-27 00:00:00-04:00,15.2650003433228,15.2650003433228,15.2650003433228,15.2650003433228,14.5098700105953,0,0,0,0
2025-06-30 00:00:00-04:00,15.2674999237061,15.2674999237061,15.2674999237061,15.2674999237061,14.512245941524,0,0,0,0
2025-07-01 00:00:00-04:00,15.3149995803833,15.3149995803833,15.3149995803833,15.3149995803833,14.5573958811528,0,0,0,0
2025-07-02 00:00:00-04:00,15.3850002288818,15.3850002288818,15.3850002288818,15.3850002288818,14.6239337316295,0,0,0,0
2025-07-03 00:00:00-04:00,15.3850002288818,15.3850002288818,15.3850002288818,15.3850002288818,14.6239337316295,0,0,0,0
2025-07-07 00:00:00-04:00,15.2600002288818,15.2600002288818,15.2600002288818,15.2600002288818,14.5051172422399,0,0,0,0
2025-07-08 00:00:00-04:00,15.3374996185303,15.3374996185303,15.3374996185303,15.3374996185303,14.5787828855028,0,0,0,0
2025-07-09 00:00:00-04:00,15.3800001144409,15.3800001144409,15.3800001144409,15.3800001144409,14.6191809632742,0,0,0,0
2025-07-10 00:00:00-04:00,15.4300003051758,15.4300003051758,15.4300003051758,15.4300003051758,14.6667077403296,0,0,0,0
2025-07-11 00:00:00-04:00,15.3149995803833,15.3149995803833,15.3149995803833,15.3149995803833,14.5573958811528,0,0,0,0
2025-07-14 00:00:00-04:00,15.2875003814697,15.2875003814697,15.2875003814697,15.2875003814697,14.5312570149453,0,0,0,0
2025-07-15 00:00:00-04:00,15.2299995422363,15.2299995422363,15.2299995422363,15.2299995422363,14.476600632108,0,0,0,0
2025-07-16 00:00:00-04:00,15.2700004577637,15.2700004577637,15.2700004577637,15.2700004577637,14.5146227789506,0,0,0,0
2025-07-17 00:00:00-04:00,15.3125,15.3125,15.3125,15.3125,14.5550199502241,0,0,0,0
2025-07-18 00:00:00-04:00,15.3199996948242,15.3199996948242,15.3199996948242,15.3199996948242,14.5621486495081,0,0,0,0
2025-07-21 00:00:00-04:00,15.3774995803833,15.3774995803833,15.3774995803833,15.3774995803833,14.6168041258476,0,0,0,0
2025-07-22 00:00:00-04:00,15.4350004196167,15.4350004196167,15.4350004196167,15.4350004196167,14.6714605086849,0,0,0,0
2025-07-23 00:00:00-04:00,15.6975002288818,15.6975002288818,15.6975002288818,15.6975002288818,14.9209749551035,0,0,0,0
2025-07-24 00:00:00-04:00,15.7174997329712,15.7174997329712,15.7174997329712,15.7174997329712,14.9399851220269,0,0,0,0
2025-07-25 00:00:00-04:00,15.6674995422363,15.6674995422363,15.6674995422363,15.6674995422363,14.8924583449715,0,0,0,0
2025-07-28 00:00:00-04:00,15.539999961853,15.539999961853,15.539999961853,15.539999961853,14.7712659246532,0,0,0,0
2025-07-29 00:00:00-04:00,15.5200004577637,15.5200004577637,15.5200004577637,15.5200004577637,14.7522557577298,0,0,0,0
2025-07-30 00:00:00-04:00,15.4350004196167,15.4350004196167,15.4350004196167,15.4350004196167,14.6714605086849,0,0,0,0
2025-07-31 00:00:00-04:00,15.2624998092651,15.2624998092651,15.2624998092651,15.2624998092651,14.5074931731687,0,0,0,0
2025-08-01 00:00:00-04:00,15.1774997711182,15.1774997711182,15.1774997711182,15.1774997711182,14.4266979241238,0,0,0,0
2025-08-04 00:00:00-04:00,15.3424997329712,15.3424997329712,15.3424997329712,15.3424997329712,14.5835356538582,0,0,0,0
2025-08-05 00:00:00-04:00,15.352499961853,15.352499961853,15.352499961853,15.352499961853,14.5930411905688,0,0,0,0
2025-08-06 00:00:00-04:00,15.3374996185303,15.3374996185303,15.3374996185303,15.3374996185303,14.5787828855028,0,0,0,0
2025-08-07 00:00:00-04:00,15.4875001907349,15.4875001907349,15.4875001907349,15.4875001907349,14.7213632166691,0,0,0,0
2025-08-08 00:00:00-04:00,15.5299997329712,15.5299997329712,15.5299997329712,15.5299997329712,14.7617603879425,0,0,0,0
2025-08-11 00:00:00-04:00,15.5100002288818,15.5100002288818,15.5100002288818,15.5100002288818,14.7427502210191,0,0,0,0
2025-08-12 00:00:00-04:00,15.6925001144409,15.6925001144409,15.6925001144409,15.6925001144409,14.9162221867481,0,0,0,0
2025-08-13 00:00:00-04:00,15.8299999237061,15.8299999237061,15.8299999237061,15.8299999237061,15.0469201437771,0,0,0,0
2025-08-14 00:00:00-04:00,15.7775001525879,15.7775001525879,15.7775001525879,15.7775001525879,14.997017435793,0,0,0,0
2025-08-15 00:00:00-04:00,15.835000038147,15.835000038147,15.835000038147,15.835000038147,15.0516729121324,0,0,0,0
2025-08-18 00:00:00-04:00,15.8100004196167,15.8100004196167,15.8100004196167,15.8100004196167,15.0279099768537,0,0,0,0
2025-08-19 00:00:00-04:00,15.8575000762939,15.8575000762939,15.8575000762939,15.8575000762939,15.0730599164825,0,0,0,0
2025-08-20 00:00:00-04:00,15.8824996948242,15.8824996948242,15.8824996948242,15.8824996948242,15.0968228517612,0,0,0,0
2025-08-21 00:00:00-04:00,15.8549995422363,15.8549995422363,15.8549995422363,15.8549995422363,15.0706830790559,0,0,0,0
2025-08-22 00:00:00-04:00,16.0849990844727,16.0849990844727,16.0849990844727,16.0849990844727,15.2893049844137,0,0,0,0
2025-08-25 00:00:00-04:00,15.9624996185303,15.9624996185303,15.9624996185303,15.9624996185303,15.1728653324508,0,0,0,0
2025-08-26 00:00:00-04:00,15.8924999237061,15.8924999237061,15.8924999237061,15.8924999237061,15.1063283884719,0,0,0,0
2025-08-27 00:00:00-04:00,15.8800001144409,15.8800001144409,15.8800001144409,15.8800001144409,15.0944469208325,0,0,0,0
2025-08-28 00:00:00-04:00,15.9099998474121,15.9099998474121,15.9099998474121,15.9099998474121,15.1229626244666,0,0,0,0
2025-08-29 00:00:00-04:00,15.8900003433228,15.8900003433228,15.8900003433228,15.8900003433228,15.1039524575432,0,0,0,0
2025-09-02 00:00:00-04:00,15.7550001144409,15.7550001144409,15.7550001144409,15.7550001144409,14.9756304314429,0,0,0,0
2025-09-03 00:00:00-04:00,15.7550001144409,15.7550001144409,15.7550001144409,15.7550001144409,14.9756304314429,0,0,0,0
2025-09-04 00:00:00-04:00,15.7849998474121,15.7849998474121,15.7849998474121,15.7849998474121,15.004146135077,0,0,0,0
2025-09-05 00:00:00-04:00,15.9250001907349,15.9250001907349,15.9250001907349,15.9250001907349,15.1372209295326,0,0,0,0
2025-09-08 00:00:00-04:00,16.0249996185303,16.0249996185303,16.0249996185303,16.0249996185303,15.2322735771455,0,0,0,0
2025-09-09 00:00:00-04:00,16.0575008392334,16.0575008392334,16.0575008392334,16.0575008392334,15.2631670247041,0,0,0,0
2025-09-10 00:00:00-04:00,16.0750007629395,16.0750007629395,16.0750007629395,16.0750007629395,15.2798012606988,0,0,0,0
2025-09-11 00:00:00-04:00,16.2900009155273,16.2900009155273,16.2900009155273,16.2900009155273,15.4841657674886,0,0,0,0
2025-09-12 00:00:00-04:00,16.2299995422363,16.2299995422363,16.2299995422363,16.2299995422363,15.4271325472246,0,0,0,0
2025-09-15 00:00:00-04:00,16.3075008392334,16.3075008392334,16.3075008392334,16.3075008392334,15.5008000034833,0,0,0,0
2025-09-16 00:00:00-04:00,16.3024997711182,16.3024997711182,16.3024997711182,16.3024997711182,15.4960463286301,0,0,0,0
2025-09-17 00:00:00-04:00,16.3474998474121,16.3474998474121,16.3474998474121,16.3474998474121,15.5388203373302,0,0,0,0
2025-09-18 00:00:00-04:00,16.3125,16.3125,16.3125,16.3125,15.5055518653407,0,0,0,0
2025-09-19 00:00:00-04:00,16.2749996185303,16.2749996185303,16.2749996185303,16.2749996185303,15.4699065559247,0,0,0,0
2025-09-22 00:00:00-04:00,16.3199996948242,16.3199996948242,16.3199996948242,16.3199996948242,15.5126805646248,0,0,0,0
2025-09-23 00:00:00-04:00,16.3250007629395,16.3250007629395,16.3250007629395,16.3250007629395,15.517434239478,0,0,0,0
2025-09-24 00:00:00-04:00,16.2900009155273,16.2900009155273,16.2900009155273,16.2900009155273,15.4841657674886,0,0,0,0
2025-09-25 00:00:00-04:00,16.1324996948242,16.1324996948242,16.1324996948242,16.1324996948242,15.3344558305404,0,0,0,0
2025-09-26 00:00:00-04:00,16.2124996185303,16.2124996185303,16.2124996185303,16.2124996185303,15.4104983112299,0,0,0,0
2025-09-29 00:00:00-04:00,16.3274993896484,16.3274993896484,16.3274993896484,16.3274993896484,15.5198092639088,0,0,0,0
2025-09-30 00:00:00-04:00,16.4500007629395,16.4500007629395,16.4500007629395,16.4500007629395,15.6362507288676,0,0,0,0
2025-10-01 00:00:00-04:00,16.5550003051758,16.5550003051758,16.5550003051758,16.5550003051758,15.7360561448359,0,0,0,0
2025-10-02 00:00:00-04:00,16.5349998474121,16.5349998474121,16.5349998474121,16.5349998474121,15.7170450714145,0,0,0,0
2025-10-03 00:00:00-04:00,16.625,16.625,16.625,16.625,15.8025930888147,0,0,0,0
2025-10-06 00:00:00-04:00,16.6224994659424,16.6224994659424,16.6224994659424,16.6224994659424,15.8002162513881,0,0,0,0
2025-10-07 00:00:00-04:00,16.4825000762939,16.4825000762939,16.4825000762939,16.4825000762939,15.6671423634304,0,0,0,0
2025-10-08 00:00:00-04:00,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,15.7122932095571,0,0,0,0
2025-10-09 00:00:00-04:00,16.4274997711182,16.4274997711182,16.4274997711182,16.4274997711182,15.6148628180197,0,0,0,0
2025-10-10 00:00:00-04:00,16.1149997711182,16.1149997711182,16.1149997711182,16.1149997711182,15.3178215945457,0,0,0,0
2025-10-13 00:00:00-04:00,16.2775001525879,16.2775001525879,16.2775001525879,16.2775001525879,15.4722833933513,0,0,0,0
2025-10-14 00:00:00-04:00,16.2975006103516,16.2975006103516,16.2975006103516,16.2975006103516,15.4912944667726,0,0,0,0
2025-10-15 00:00:00-04:00,16.3675003051758,16.3675003051758,16.3675003051758,16.3675003051758,15.5578314107515,0,0,0,0
2025-10-16 00:00:00-04:00,16.3875007629395,16.3875007629395,16.3875007629395,16.3875007629395,15.5768424841728,0,0,0,0
2025-10-17 00:00:00-04:00,16.3999996185303,16.3999996185303,16.3999996185303,16.3999996185303,15.5887230453143,0,0,0,0
2025-10-20 00:00:00-04:00,16.4750003814697,16.4750003814697,16.4750003814697,16.4750003814697,15.6600136641463,0,0,0,0
2025-10-21 00:00:00-04:00,16.4099998474121,16.4099998474121,16.4099998474121,16.4099998474121,15.598228582025,0,0,0,0
2025-10-22 00:00:00-04:00,16.4074993133545,16.4074993133545,16.4074993133545,16.4074993133545,15.5958517445984,0,0,0,0
2025-10-23 00:00:00-04:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,15.6457544525825,0,0,0,0
2025-10-24 00:00:00-04:00,16.5025005340576,16.5025005340576,16.5025005340576,16.5025005340576,15.6861534368517,0,0,0,0
2025-10-27 00:00:00-04:00,16.6000003814697,16.6000003814697,16.6000003814697,16.6000003814697,15.7788301535359,0,0,4,0
2025-10-28 00:00:00-04:00,16.5599994659424,16.5599994659424,16.5599994659424,16.5599994659424,15.7408080066933,0,0,0,0
2025-10-29 00:00:00-04:00,16.5900001525879,16.5900001525879,16.5900001525879,16.5900001525879,15.7693246168253,0,0,0,0
2025-10-30 00:00:00-04:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.6267451921569,0,0,0,0
2025-10-31 00:00:00-04:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.6267451921569,0,0,0,0
2025-11-03 00:00:00-05:00,16.4300003051758,16.4300003051758,16.4300003051758,16.4300003051758,15.6172396554463,0,0,0,0
2025-11-04 00:00:00-05:00,16.3199996948242,16.3199996948242,16.3199996948242,16.3199996948242,15.5126805646248,0,0,0,0
2025-11-05 00:00:00-05:00,16.3899993896484,16.3899993896484,16.3899993896484,16.3899993896484,15.5792175086036,0,0,0,0
2025-11-06 00:00:00-05:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.6267451921569,0,0,0,0
2025-11-07 00:00:00-05:00,16.4899997711182,16.4899997711182,16.4899997711182,16.4899997711182,15.6742710627145,0,0,0,0
2025-11-10 00:00:00-05:00,16.6800003051758,16.6800003051758,16.6800003051758,16.6800003051758,15.8548726342254,0,0,0,0
2025-11-11 00:00:00-05:00,16.8400001525879,16.8400001525879,16.8400001525879,16.8400001525879,16.0069575956044,0,0,0,0
2025-11-12 00:00:00-05:00,16.9599990844727,16.9599990844727,16.9599990844727,16.9599990844727,16.1210204101408,0,0,0,0
2025-11-13 00:00:00-05:00,16.8199996948242,16.8199996948242,16.8199996948242,16.8199996948242,15.9879465221831,0,0,0,0
2025-11-14 00:00:00-05:00,16.6599998474121,16.6599998474121,16.6599998474121,16.6599998474121,15.8358615608041,0,0,0,0
2025-11-17 00:00:00-05:00,16.4899997711182,16.4899997711182,16.4899997711182,16.4899997711182,15.6742710627145,0,0,0,0
2025-11-18 00:00:00-05:00,16.3299999237061,16.3299999237061,16.3299999237061,16.3299999237061,15.5221861013354,0,0,0,0
2025-11-19 00:00:00-05:00,16.2299995422363,16.2299995422363,16.2299995422363,16.2299995422363,15.4271325472246,0,0,0,0
2025-11-20 00:00:00-05:00,16.0699996948242,16.0699996948242,16.0699996948242,16.0699996948242,15.2750475858456,0,0,0,0
2025-11-21 00:00:00-05:00,16.25,16.25,16.25,16.25,15.4461436206459,0,0,0,0
2025-11-24 00:00:00-05:00,16.3099994659424,16.3099994659424,16.3099994659424,16.3099994659424,15.5031750279141,0,0,0,0
2025-11-25 00:00:00-05:00,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,15.6932821361358,0,0,0,0
2025-11-26 00:00:00-05:00,16.6599998474121,16.6599998474121,16.6599998474121,16.6599998474121,15.8358615608041,0,0,0,0
2025-11-28 00:00:00-05:00,16.7299995422363,16.7299995422363,16.7299995422363,16.7299995422363,15.902398504783,0,0,0,0
2025-12-01 00:00:00-05:00,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,15.8643781709361,0,0,0,0
2025-12-02 00:00:00-05:00,16.7700004577637,16.7700004577637,16.7700004577637,16.7700004577637,15.9404206516256,0,0,0,0
2025-12-03 00:00:00-05:00,16.8199996948242,16.8199996948242,16.8199996948242,16.8199996948242,15.9879465221831,0,0,0,0
2025-12-04 00:00:00-05:00,16.8799991607666,16.8799991607666,16.8799991607666,16.8799991607666,16.0449779294513,0,0,0,0
2025-12-05 00:00:00-05:00,16.8400001525879,16.8400001525879,16.8400001525879,16.8400001525879,16.0069575956044,0,0,0,0
2025-12-08 00:00:00-05:00,16.8600006103516,16.8600006103516,16.8600006103516,16.8600006103516,16.0259686690258,0,0,0,0
2025-12-09 00:00:00-05:00,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,15.9974520588938,0,0,0,0
2025-12-10 00:00:00-05:00,16.9500007629395,16.9500007629395,16.9500007629395,16.9500007629395,16.1115166864259,0,0,0,0
2025-12-11 00:00:00-05:00,17.0799999237061,17.0799999237061,17.0799999237061,17.0799999237061,16.235085037673,0,0,0,0
2025-12-12 00:00:00-05:00,17.0200004577637,17.0200004577637,17.0200004577637,17.0200004577637,16.1780536304048,0,0,0,0
2025-12-15 00:00:00-05:00,17.0900001525879,17.0900001525879,17.0900001525879,17.0900001525879,16.2445905743836,0,0,0,0
2025-12-16 00:00:00-05:00,16.9899997711182,16.9899997711182,16.9899997711182,16.9899997711182,16.1495370202728,0,0,0,0
2025-12-17 00:00:00-05:00,16.9200000762939,16.9200000762939,16.9200000762939,16.9200000762939,16.0830000762939,0,0,0,0
2025-12-18 00:00:00-05:00,16.2199993133545,16.2199993133545,16.2199993133545,16.2199993133545,16.2199993133545,0,0.837,0,0.417
2025-12-19 00:00:00-05:00,16.2999992370605,16.2999992370605,16.2999992370605,16.2999992370605,16.2999992370605,0,0,0,0
2025-12-22 00:00:00-05:00,16.3700008392334,16.3700008392334,16.3700008392334,16.3700008392334,16.3700008392334,0,0,0,0
2025-12-23 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2025-12-24 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2025-12-26 00:00:00-05:00,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,0,0,0,0
2025-12-29 00:00:00-05:00,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,0,0,0,0
2025-12-30 00:00:00-05:00,16.5400009155273,16.5400009155273,16.5400009155273,16.5400009155273,16.5400009155273,0,0,0,0
2025-12-31 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2026-01-02 00:00:00-05:00,16.6299991607666,16.6299991607666,16.6299991607666,16.6299991607666,16.6299991607666,0,0,0,0
2026-01-05 00:00:00-05:00,16.7900009155273,16.7900009155273,16.7900009155273,16.7900009155273,16.7900009155273,0,0,0,0
2026-01-06 00:00:00-05:00,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,0,0,0,0
2026-01-07 00:00:00-05:00,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,0,0,0,0
2026-01-08 00:00:00-05:00,16.7600002288818,16.7600002288818,16.7600002288818,16.7600002288818,16.7600002288818,0,0,0,0
2026-01-09 00:00:00-05:00,16.8099994659424,16.8099994659424,16.8099994659424,16.8099994659424,16.8099994659424,0,0,0,0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits Capital Gains
2 2024-01-10 00:00:00-05:00 12.147500038147 12.147500038147 12.147500038147 12.147500038147 11.2976727169889 0 0 0 0
3 2024-01-11 00:00:00-05:00 12.1350002288818 12.1350002288818 12.1350002288818 12.1350002288818 11.2860473822568 0 0 0 0
4 2024-01-12 00:00:00-05:00 12.1400003433228 12.1400003433228 12.1400003433228 12.1400003433228 11.2906976935409 0 0 0 0
5 2024-01-16 00:00:00-05:00 11.9300003051758 11.9300003051758 11.9300003051758 11.9300003051758 11.0953890543897 0 0 0 0
6 2024-01-17 00:00:00-05:00 11.7924995422363 11.7924995422363 11.7924995422363 11.7924995422363 10.9675077114674 0 0 0 0
7 2024-01-18 00:00:00-05:00 11.8400001525879 11.8400001525879 11.8400001525879 11.8400001525879 11.0116852251883 0 0 0 0
8 2024-01-19 00:00:00-05:00 11.9025001525879 11.9025001525879 11.9025001525879 11.9025001525879 11.0698127858052 0 0 0 0
9 2024-01-22 00:00:00-05:00 11.9075002670288 11.9075002670288 11.9075002670288 11.9075002670288 11.0744630970893 0 0 0 0
10 2024-01-23 00:00:00-05:00 11.9224996566772 11.9224996566772 11.9224996566772 11.9224996566772 11.0884131439854 0 0 0 0
11 2024-01-24 00:00:00-05:00 11.9925003051758 11.9925003051758 11.9925003051758 11.9925003051758 11.1535166150066 0 0 0 0
12 2024-01-25 00:00:00-05:00 11.9575004577637 11.9575004577637 11.9575004577637 11.9575004577637 11.1209653229741 0 0 0 0
13 2024-01-26 00:00:00-05:00 12.0325002670288 12.0325002670288 12.0325002670288 12.0325002670288 11.1907182183232 0 0 0 0
14 2024-01-29 00:00:00-05:00 12.0749998092651 12.0749998092651 12.0749998092651 12.0749998092651 11.2302445338038 0 0 0 0
15 2024-01-30 00:00:00-05:00 12.0299997329712 12.0299997329712 12.0299997329712 12.0299997329712 11.1883926192031 0 0 0 0
16 2024-01-31 00:00:00-05:00 11.9324998855591 11.9324998855591 11.9324998855591 11.9324998855591 11.0977137665536 0 0 0 0
17 2024-02-01 00:00:00-05:00 11.9825000762939 11.9825000762939 11.9825000762939 11.9825000762939 11.1442159924384 0 0 0 0
18 2024-02-02 00:00:00-05:00 11.9125003814697 11.9125003814697 11.9125003814697 11.9125003814697 11.0791134083734 0 0 0 0
19 2024-02-05 00:00:00-05:00 11.8400001525879 11.8400001525879 11.8400001525879 11.8400001525879 11.0116852251883 0 0 0 0
20 2024-02-06 00:00:00-05:00 11.9274997711182 11.9274997711182 11.9274997711182 11.9274997711182 11.0930634552695 0 0 0 0
21 2024-02-07 00:00:00-05:00 11.8699998855591 11.8699998855591 11.8699998855591 11.8699998855591 11.0395862059367 0 0 0 0
22 2024-02-08 00:00:00-05:00 11.7974996566772 11.7974996566772 11.7974996566772 11.7974996566772 10.9721580227515 0 0 0 0
23 2024-02-09 00:00:00-05:00 11.8050003051758 11.8050003051758 11.8050003051758 11.8050003051758 10.9791339331558 0 0 0 0
24 2024-02-12 00:00:00-05:00 11.875 11.875 11.875 11.875 11.0442365172208 0 0 0 0
25 2024-02-13 00:00:00-05:00 11.727499961853 11.727499961853 11.727499961853 11.727499961853 10.9070554386865 0 0 0 0
26 2024-02-14 00:00:00-05:00 11.7974996566772 11.7974996566772 11.7974996566772 11.7974996566772 10.9721580227515 0 0 0 0
27 2024-02-15 00:00:00-05:00 11.9049997329712 11.9049997329712 11.9049997329712 11.9049997329712 11.0721374979692 0 0 0 0
28 2024-02-16 00:00:00-05:00 11.9624996185303 11.9624996185303 11.9624996185303 11.9624996185303 11.125614747302 0 0 0 0
29 2024-02-20 00:00:00-05:00 12.0349998474121 12.0349998474121 12.0349998474121 12.0349998474121 11.1930429304872 0 0 0 0
30 2024-02-21 00:00:00-05:00 12.0550003051758 12.0550003051758 12.0550003051758 12.0550003051758 11.2116441756236 0 0 0 0
31 2024-02-22 00:00:00-05:00 12.1800003051758 12.1800003051758 12.1800003051758 12.1800003051758 11.3278992968575 0 0 0 0
32 2024-02-23 00:00:00-05:00 12.1774997711182 12.1774997711182 12.1774997711182 12.1774997711182 11.3255736977373 0 0 0 0
33 2024-02-26 00:00:00-05:00 12.1525001525879 12.1525001525879 12.1525001525879 12.1525001525879 11.302323028273 0 0 0 0
34 2024-02-27 00:00:00-05:00 12.1724996566772 12.1724996566772 12.1724996566772 12.1724996566772 11.3209233864532 0 0 0 0
35 2024-02-28 00:00:00-05:00 12.1175003051758 12.1175003051758 12.1175003051758 12.1175003051758 11.2697717362405 0 0 0 0
36 2024-02-29 00:00:00-05:00 12.0900001525879 12.0900001525879 12.0900001525879 12.0900001525879 11.2441954676561 0 0 0 0
37 2024-03-01 00:00:00-05:00 12.2150001525879 12.2150001525879 12.2150001525879 12.2150001525879 11.36045058889 0 0 0 0
38 2024-03-04 00:00:00-05:00 12.1549997329712 12.1549997329712 12.1549997329712 12.1549997329712 11.304647740437 0 0 0 0
39 2024-03-05 00:00:00-05:00 12.1374998092651 12.1374998092651 12.1374998092651 12.1374998092651 11.2883720944207 0 0 0 0
40 2024-03-06 00:00:00-05:00 12.2674999237061 12.2674999237061 12.2674999237061 12.2674999237061 11.4092775269387 0 0 0 0
41 2024-03-07 00:00:00-05:00 12.3699998855591 12.3699998855591 12.3699998855591 12.3699998855591 11.5046066908723 0 0 0 0
42 2024-03-08 00:00:00-05:00 12.3874998092651 12.3874998092651 12.3874998092651 12.3874998092651 11.5208823368885 0 0 0 0
43 2024-03-11 00:00:00-04:00 12.4174995422363 12.4174995422363 12.4174995422363 12.4174995422363 11.5487833176369 0 0 0 0
44 2024-03-12 00:00:00-04:00 12.5299997329712 12.5299997329712 12.5299997329712 12.5299997329712 11.6534131041387 0 0 0 0
45 2024-03-13 00:00:00-04:00 12.5775003433228 12.5775003433228 12.5775003433228 12.5775003433228 11.6975906178595 0 0 0 0
46 2024-03-14 00:00:00-04:00 12.4875001907349 12.4875001907349 12.4875001907349 12.4875001907349 11.6138867886581 0 0 0 0
47 2024-03-15 00:00:00-04:00 12.4549999237061 12.4549999237061 12.4549999237061 12.4549999237061 11.5836602087896 0 0 0 0
48 2024-03-18 00:00:00-04:00 12.4700002670288 12.4700002670288 12.4700002670288 12.4700002670288 11.5976111426419 0 0 0 0
49 2024-03-19 00:00:00-04:00 12.477499961853 12.477499961853 12.477499961853 12.477499961853 11.6045861660899 0 0 0 0
50 2024-03-20 00:00:00-04:00 12.5825004577637 12.5825004577637 12.5825004577637 12.5825004577637 11.7022409291436 0 0 0 0
51 2024-03-21 00:00:00-04:00 12.5749998092651 12.5749998092651 12.5749998092651 12.5749998092651 11.6952650187394 0 0 0 0
52 2024-03-22 00:00:00-04:00 12.5325002670288 12.5325002670288 12.5325002670288 12.5325002670288 11.6557387032588 0 0 0 0
53 2024-03-25 00:00:00-04:00 12.5524997711182 12.5524997711182 12.5524997711182 12.5524997711182 11.674339061439 0 0 0 0
54 2024-03-26 00:00:00-04:00 12.5749998092651 12.5749998092651 12.5749998092651 12.5749998092651 11.6952650187394 0 0 0 0
55 2024-03-27 00:00:00-04:00 12.6800003051758 12.6800003051758 12.6800003051758 12.6800003051758 11.7929197817931 0 0 0 0
56 2024-03-28 00:00:00-04:00 12.6750001907349 12.6750001907349 12.6750001907349 12.6750001907349 11.788269470509 0 0 0 0
57 2024-04-01 00:00:00-04:00 12.625 12.625 12.625 12.625 11.7417672446242 0 0 0 0
58 2024-04-02 00:00:00-04:00 12.5874996185303 12.5874996185303 12.5874996185303 12.5874996185303 11.7068903534715 0 0 0 0
59 2024-04-03 00:00:00-04:00 12.6724996566772 12.6724996566772 12.6724996566772 12.6724996566772 11.7859438713888 0 0 0 0
60 2024-04-04 00:00:00-04:00 12.6199998855591 12.6199998855591 12.6199998855591 12.6199998855591 11.7371169333401 0 0 0 0
61 2024-04-05 00:00:00-04:00 12.6225004196167 12.6225004196167 12.6225004196167 12.6225004196167 11.7394425324602 0 0 0 0
62 2024-04-08 00:00:00-04:00 12.6750001907349 12.6750001907349 12.6750001907349 12.6750001907349 11.788269470509 0 0 0 0
63 2024-04-09 00:00:00-04:00 12.7124996185303 12.7124996185303 12.7124996185303 12.7124996185303 11.8231454747054 0 0 0 0
64 2024-04-10 00:00:00-04:00 12.5900001525879 12.5900001525879 12.5900001525879 12.5900001525879 11.7092159525917 0 0 0 0
65 2024-04-11 00:00:00-04:00 12.5574998855591 12.5574998855591 12.5574998855591 12.5574998855591 11.6789893727231 0 0 0 0
66 2024-04-12 00:00:00-04:00 12.3474998474121 12.3474998474121 12.3474998474121 12.3474998474121 11.4836807335719 0 0 0 0
67 2024-04-15 00:00:00-04:00 12.2799997329712 12.2799997329712 12.2799997329712 12.2799997329712 11.4209028616709 0 0 0 0
68 2024-04-16 00:00:00-04:00 12.1625003814697 12.1625003814697 12.1625003814697 12.1625003814697 11.3116236508412 0 0 0 0
69 2024-04-17 00:00:00-04:00 12.1850004196167 12.1850004196167 12.1850004196167 12.1850004196167 11.3325496081416 0 0 0 0
70 2024-04-18 00:00:00-04:00 12.1999998092651 12.1999998092651 12.1999998092651 12.1999998092651 11.3464996550377 0 0 0 0
71 2024-04-19 00:00:00-04:00 12.2349996566772 12.2349996566772 12.2349996566772 12.2349996566772 11.3790509470702 0 0 0 0
72 2024-04-22 00:00:00-04:00 12.4125003814697 12.4125003814697 12.4125003814697 12.4125003814697 11.544133893309 0 0 0 0
73 2024-04-23 00:00:00-04:00 12.5124998092651 12.5124998092651 12.5124998092651 12.5124998092651 11.6371374581224 0 0 0 0
74 2024-04-24 00:00:00-04:00 12.5074996948242 12.5074996948242 12.5074996948242 12.5074996948242 11.6324871468383 0 0 0 0
75 2024-04-25 00:00:00-04:00 12.5699996948242 12.5699996948242 12.5699996948242 12.5699996948242 11.6906147074553 0 0 0 0
76 2024-04-26 00:00:00-04:00 12.6149997711182 12.6149997711182 12.6149997711182 12.6149997711182 11.732466622056 0 0 0 0
77 2024-04-29 00:00:00-04:00 12.6999998092651 12.6999998092651 12.6999998092651 12.6999998092651 11.8115201399733 0 0 0 0
78 2024-04-30 00:00:00-04:00 12.5050001144409 12.5050001144409 12.5050001144409 12.5050001144409 11.6301624346744 0 0 0 0
79 2024-05-01 00:00:00-04:00 12.4949998855591 12.4949998855591 12.4949998855591 12.4949998855591 11.6208618121062 0 0 0 0
80 2024-05-02 00:00:00-04:00 12.6674995422363 12.6674995422363 12.6674995422363 12.6674995422363 11.7812935601047 0 0 0 0
81 2024-05-03 00:00:00-04:00 12.7524995803833 12.7524995803833 12.7524995803833 12.7524995803833 11.860347078022 0 0 0 0
82 2024-05-06 00:00:00-04:00 12.852499961853 12.852499961853 12.852499961853 12.852499961853 11.9533515297916 0 0 0 0
83 2024-05-07 00:00:00-04:00 12.914999961853 12.914999961853 12.914999961853 12.914999961853 12.0114790904086 0 0 0 0
84 2024-05-08 00:00:00-04:00 12.9350004196167 12.9350004196167 12.9350004196167 12.9350004196167 12.030080335545 0 0 0 0
85 2024-05-09 00:00:00-04:00 13.0249996185303 13.0249996185303 13.0249996185303 13.0249996185303 12.1137832777902 0 0 0 0
86 2024-05-10 00:00:00-04:00 13.1075000762939 13.1075000762939 13.1075000762939 13.1075000762939 12.1905120835435 0 0 0 0
87 2024-05-13 00:00:00-04:00 13.1824998855591 13.1824998855591 13.1824998855591 13.1824998855591 12.2602649788926 0 0 0 0
88 2024-05-14 00:00:00-04:00 13.2399997711182 13.2399997711182 13.2399997711182 13.2399997711182 12.3137422282255 0 0 0 0
89 2024-05-15 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.4299973494594 0 0 0 0
90 2024-05-16 00:00:00-04:00 13.3500003814697 13.3500003814697 13.3500003814697 13.3500003814697 12.4160473025633 0 0 0 0
91 2024-05-17 00:00:00-04:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.4323229485795 0 0 0 0
92 2024-05-20 00:00:00-04:00 13.397500038147 13.397500038147 13.397500038147 13.397500038147 12.4602239293279 0 0 0 0
93 2024-05-21 00:00:00-04:00 13.3474998474121 13.3474998474121 13.3474998474121 13.3474998474121 12.4137217034432 0 0 0 0
94 2024-05-22 00:00:00-04:00 13.2224998474121 13.2224998474121 13.2224998474121 13.2224998474121 12.2974665822092 0 0 0 0
95 2024-05-23 00:00:00-04:00 13.125 13.125 13.125 13.125 12.2067877295598 0 0 0 0
96 2024-05-24 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 12.281190936193 0 0 0 0
97 2024-05-28 00:00:00-04:00 13.1899995803833 13.1899995803833 13.1899995803833 13.1899995803833 12.2672400023407 0 0 0 0
98 2024-05-29 00:00:00-04:00 12.9674997329712 12.9674997329712 12.9674997329712 12.9674997329712 12.0603060284573 0 0 0 0
99 2024-05-30 00:00:00-04:00 13.0699996948242 13.0699996948242 13.0699996948242 13.0699996948242 12.1556351923909 0 0 0 0
100 2024-05-31 00:00:00-04:00 13.1925001144409 13.1925001144409 13.1925001144409 13.1925001144409 12.2695656014608 0 0 0 0
101 2024-06-03 00:00:00-04:00 13.1774997711182 13.1774997711182 13.1774997711182 13.1774997711182 12.2556146676085 0 0 0 0
102 2024-06-04 00:00:00-04:00 13.0550003051758 13.0550003051758 13.0550003051758 13.0550003051758 12.1416851454948 0 0 0 0
103 2024-06-05 00:00:00-04:00 13.1549997329712 13.1549997329712 13.1549997329712 13.1549997329712 12.2346887103082 0 0 0 0
104 2024-06-06 00:00:00-04:00 13.1975002288818 13.1975002288818 13.1975002288818 13.1975002288818 12.2742159127449 0 0 0 0
105 2024-06-07 00:00:00-04:00 13.085000038147 13.085000038147 13.085000038147 13.085000038147 12.1695861262432 0 0 0 0
106 2024-06-10 00:00:00-04:00 13.039999961853 13.039999961853 13.039999961853 13.039999961853 12.1277342116425 0 0 0 0
107 2024-06-11 00:00:00-04:00 12.9025001525879 12.9025001525879 12.9025001525879 12.9025001525879 11.9998537556764 0 0 0 0
108 2024-06-12 00:00:00-04:00 13.0074996948242 13.0074996948242 13.0074996948242 13.0074996948242 12.0975076317739 0 0 0 0
109 2024-06-13 00:00:00-04:00 12.8275003433228 12.8275003433228 12.8275003433228 12.8275003433228 11.9301008603273 0 0 0 0
110 2024-06-14 00:00:00-04:00 12.7049999237061 12.7049999237061 12.7049999237061 12.7049999237061 11.8161704512574 0 0 0 0
111 2024-06-17 00:00:00-04:00 12.7574996948242 12.7574996948242 12.7574996948242 12.7574996948242 11.8649973893061 0 0 0 0
112 2024-06-18 00:00:00-04:00 12.7849998474121 12.7849998474121 12.7849998474121 12.7849998474121 11.8905736578906 0 0 0 0
113 2024-06-20 00:00:00-04:00 12.8325004577637 12.8325004577637 12.8325004577637 12.8325004577637 11.9347511716114 0 0 0 0
114 2024-06-21 00:00:00-04:00 12.7200002670288 12.7200002670288 12.7200002670288 12.7200002670288 11.8301213851097 0 0 0 0
115 2024-06-24 00:00:00-04:00 12.8675003051758 12.8675003051758 12.8675003051758 12.8675003051758 11.9673024636439 0 0 0 0
116 2024-06-25 00:00:00-04:00 12.8249998092651 12.8249998092651 12.8249998092651 12.8249998092651 11.9277752612072 0 0 0 0
117 2024-06-26 00:00:00-04:00 12.7399997711182 12.7399997711182 12.7399997711182 12.7399997711182 11.8487217432899 0 0 0 0
118 2024-06-27 00:00:00-04:00 12.7025003433228 12.7025003433228 12.7025003433228 12.7025003433228 11.8138457390934 0 0 0 0
119 2024-06-28 00:00:00-04:00 12.6774997711182 12.6774997711182 12.6774997711182 12.6774997711182 11.7905941826729 0 0 0 0
120 2024-07-01 00:00:00-04:00 12.727499961853 12.727499961853 12.727499961853 12.727499961853 11.8370964085577 0 0 0 0
121 2024-07-02 00:00:00-04:00 12.727499961853 12.727499961853 12.727499961853 12.727499961853 11.8370964085577 0 0 0 0
122 2024-07-03 00:00:00-04:00 12.8999996185303 12.8999996185303 12.8999996185303 12.8999996185303 11.9975281565563 0 0 0 0
123 2024-07-05 00:00:00-04:00 12.960000038147 12.960000038147 12.960000038147 12.960000038147 12.0533310050093 0 0 0 0
124 2024-07-08 00:00:00-04:00 12.9499998092651 12.9499998092651 12.9499998092651 12.9499998092651 12.0440303824411 0 0 0 0
125 2024-07-09 00:00:00-04:00 12.9075002670288 12.9075002670288 12.9075002670288 12.9075002670288 12.0045040669605 0 0 0 0
126 2024-07-10 00:00:00-04:00 13.0649995803833 13.0649995803833 13.0649995803833 13.0649995803833 12.1509848811068 0 0 0 0
127 2024-07-11 00:00:00-04:00 13.1724996566772 13.1724996566772 13.1724996566772 13.1724996566772 12.2509643563244 0 0 0 0
128 2024-07-12 00:00:00-04:00 13.2950000762939 13.2950000762939 13.2950000762939 13.2950000762939 12.3648947653944 0 0 0 0
129 2024-07-15 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 12.281190936193 0 0 0 0
130 2024-07-16 00:00:00-04:00 13.2200002670288 13.2200002670288 13.2200002670288 13.2200002670288 12.2951418700453 0 0 0 0
131 2024-07-17 00:00:00-04:00 13.289999961853 13.289999961853 13.289999961853 13.289999961853 12.3602444541103 0 0 0 0
132 2024-07-18 00:00:00-04:00 13.1499996185303 13.1499996185303 13.1499996185303 13.1499996185303 12.2300383990241 0 0 0 0
133 2024-07-19 00:00:00-04:00 13.0500001907349 13.0500001907349 13.0500001907349 13.0500001907349 12.1370348342107 0 0 0 0
134 2024-07-22 00:00:00-04:00 13.1949996948242 13.1949996948242 13.1949996948242 13.1949996948242 12.2718903136248 0 0 0 0
135 2024-07-23 00:00:00-04:00 13.0874996185303 13.0874996185303 13.0874996185303 13.0874996185303 12.1719108384071 0 0 0 0
136 2024-07-24 00:00:00-04:00 12.9624996185303 12.9624996185303 12.9624996185303 12.9624996185303 12.0556557171732 0 0 0 0
137 2024-07-25 00:00:00-04:00 12.9300003051758 12.9300003051758 12.9300003051758 12.9300003051758 12.0254300242609 0 0 0 0
138 2024-07-26 00:00:00-04:00 13.0325002670288 13.0325002670288 13.0325002670288 13.0325002670288 12.1207591881944 0 0 0 0
139 2024-07-29 00:00:00-04:00 13.0150003433228 13.0150003433228 13.0150003433228 13.0150003433228 12.1044835421782 0 0 0 0
140 2024-07-30 00:00:00-04:00 12.9825000762939 12.9825000762939 12.9825000762939 12.9825000762939 12.0742569623096 0 0 0 0
141 2024-07-31 00:00:00-04:00 13.0799999237061 13.0799999237061 13.0799999237061 13.0799999237061 12.1649358149591 0 0 0 0
142 2024-08-01 00:00:00-04:00 12.8299999237061 12.8299999237061 12.8299999237061 12.8299999237061 11.9324255724913 0 0 0 0
143 2024-08-02 00:00:00-04:00 12.6400003433228 12.6400003433228 12.6400003433228 12.6400003433228 11.7557181784765 0 0 0 0
144 2024-08-05 00:00:00-04:00 12.3599996566772 12.3599996566772 12.3599996566772 12.3599996566772 11.4953060683041 0 0 0 0
145 2024-08-06 00:00:00-04:00 12.3649997711182 12.3649997711182 12.3649997711182 12.3649997711182 11.4999563795882 0 0 0 0
146 2024-08-07 00:00:00-04:00 12.4475002288818 12.4475002288818 12.4475002288818 12.4475002288818 11.5766851853415 0 0 0 0
147 2024-08-08 00:00:00-04:00 12.6575002670288 12.6575002670288 12.6575002670288 12.6575002670288 11.7719938244927 0 0 0 0
148 2024-08-09 00:00:00-04:00 12.6899995803833 12.6899995803833 12.6899995803833 12.6899995803833 11.8022195174051 0 0 0 0
149 2024-08-12 00:00:00-04:00 12.6949996948242 12.6949996948242 12.6949996948242 12.6949996948242 11.8068698286892 0 0 0 0
150 2024-08-13 00:00:00-04:00 12.8474998474121 12.8474998474121 12.8474998474121 12.8474998474121 11.9487012185075 0 0 0 0
151 2024-08-14 00:00:00-04:00 12.875 12.875 12.875 12.875 11.974277487092 0 0 0 0
152 2024-08-15 00:00:00-04:00 13.0450000762939 13.0450000762939 13.0450000762939 13.0450000762939 12.1323845229266 0 0 0 0
153 2024-08-16 00:00:00-04:00 13.1350002288818 13.1350002288818 13.1350002288818 13.1350002288818 12.216088352128 0 0 0 0
154 2024-08-19 00:00:00-04:00 13.2849998474121 13.2849998474121 13.2849998474121 13.2849998474121 12.3555941428262 0 0 0 0
155 2024-08-20 00:00:00-04:00 13.2124996185303 13.2124996185303 13.2124996185303 13.2124996185303 12.2881659596411 0 0 0 0
156 2024-08-21 00:00:00-04:00 13.2749996185303 13.2749996185303 13.2749996185303 13.2749996185303 12.346293520258 0 0 0 0
157 2024-08-22 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 12.281190936193 0 0 0 0
158 2024-08-23 00:00:00-04:00 13.4025001525879 13.4025001525879 13.4025001525879 13.4025001525879 12.464874240612 0 0 0 0
159 2024-08-26 00:00:00-04:00 13.3774995803833 13.3774995803833 13.3774995803833 13.3774995803833 12.4416226841916 0 0 0 0
160 2024-08-27 00:00:00-04:00 13.4449996948242 13.4449996948242 13.4449996948242 13.4449996948242 12.5044005560926 0 0 0 0
161 2024-08-28 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.4299973494594 0 0 0 0
162 2024-08-29 00:00:00-04:00 13.4049997329712 13.4049997329712 13.4049997329712 13.4049997329712 12.467198952776 0 0 0 0
163 2024-08-30 00:00:00-04:00 13.4650001525879 13.4650001525879 13.4650001525879 13.4650001525879 12.523001801229 0 0 0 0
164 2024-09-03 00:00:00-04:00 13.2550001144409 13.2550001144409 13.2550001144409 13.2550001144409 12.3276931620778 0 0 0 0
165 2024-09-04 00:00:00-04:00 13.2700004577637 13.2700004577637 13.2700004577637 13.2700004577637 12.3416440959301 0 0 0 0
166 2024-09-05 00:00:00-04:00 13.3024997711182 13.3024997711182 13.3024997711182 13.3024997711182 12.3718697888425 0 0 0 0
167 2024-09-06 00:00:00-04:00 13.0924997329712 13.0924997329712 13.0924997329712 13.0924997329712 12.1765611496912 0 0 0 0
168 2024-09-09 00:00:00-04:00 13.1850004196167 13.1850004196167 13.1850004196167 13.1850004196167 12.2625905780128 0 0 0 0
169 2024-09-10 00:00:00-04:00 13.1324996948242 13.1324996948242 13.1324996948242 13.1324996948242 12.2137627530078 0 0 0 0
170 2024-09-11 00:00:00-04:00 13.1599998474121 13.1599998474121 13.1599998474121 13.1599998474121 12.2393390215923 0 0 0 0
171 2024-09-12 00:00:00-04:00 13.2550001144409 13.2550001144409 13.2550001144409 13.2550001144409 12.3276931620778 0 0 0 0
172 2024-09-13 00:00:00-04:00 13.3249998092651 13.3249998092651 13.3249998092651 13.3249998092651 12.3927957461428 0 0 0 0
173 2024-09-16 00:00:00-04:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.4323229485795 0 0 0 0
174 2024-09-17 00:00:00-04:00 13.4300003051758 13.4300003051758 13.4300003051758 13.4300003051758 12.4904505091965 0 0 0 0
175 2024-09-18 00:00:00-04:00 13.4075002670288 13.4075002670288 13.4075002670288 13.4075002670288 12.4695245518961 0 0 0 0
176 2024-09-19 00:00:00-04:00 13.625 13.625 13.625 13.625 12.6718082144954 0 0 0 0
177 2024-09-20 00:00:00-04:00 13.5150003433228 13.5150003433228 13.5150003433228 13.5150003433228 12.5695040271138 0 0 0 0
178 2024-09-23 00:00:00-04:00 13.5574998855591 13.5574998855591 13.5574998855591 13.5574998855591 12.6090303425944 0 0 0 0
179 2024-09-24 00:00:00-04:00 13.7600002288818 13.7600002288818 13.7600002288818 13.7600002288818 12.7973639582975 0 0 0 0
180 2024-09-25 00:00:00-04:00 13.6949996948242 13.6949996948242 13.6949996948242 13.6949996948242 12.7369107985604 0 0 0 0
181 2024-09-26 00:00:00-04:00 14.0024995803833 14.0024995803833 14.0024995803833 14.0024995803833 13.0228982903611 0 0 0 0
182 2024-09-27 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 13.1763550149116 0 0 0 0
183 2024-09-30 00:00:00-04:00 13.9425001144409 13.9425001144409 13.9425001144409 13.9425001144409 12.9670963288643 0 0 0 0
184 2024-10-01 00:00:00-04:00 13.9174995422363 13.9174995422363 13.9174995422363 13.9174995422363 12.9438447724438 0 0 0 0
185 2024-10-02 00:00:00-04:00 13.9549999237061 13.9549999237061 13.9549999237061 13.9549999237061 12.9787216635964 0 0 0 0
186 2024-10-03 00:00:00-04:00 13.7950000762939 13.7950000762939 13.7950000762939 13.7950000762939 12.82991525033 0 0 0 0
187 2024-10-04 00:00:00-04:00 13.9274997711182 13.9274997711182 13.9274997711182 13.9274997711182 12.953145395012 0 0 0 0
188 2024-10-07 00:00:00-04:00 13.8924999237061 13.8924999237061 13.8924999237061 13.8924999237061 12.9205941029795 0 0 0 0
189 2024-10-08 00:00:00-04:00 13.7749996185303 13.7749996185303 13.7749996185303 13.7749996185303 12.8113140051936 0 0 0 0
190 2024-10-09 00:00:00-04:00 13.8125 13.8125 13.8125 13.8125 12.8461908963463 0 0 0 0
191 2024-10-10 00:00:00-04:00 13.789999961853 13.789999961853 13.789999961853 13.789999961853 12.8252649390459 0 0 0 0
192 2024-10-11 00:00:00-04:00 13.8199996948242 13.8199996948242 13.8199996948242 13.8199996948242 12.8531659197943 0 0 0 0
193 2024-10-14 00:00:00-04:00 13.8249998092651 13.8249998092651 13.8249998092651 13.8249998092651 12.8578162310784 0 0 0 0
194 2024-10-15 00:00:00-04:00 13.6274995803833 13.6274995803833 13.6274995803833 13.6274995803833 12.6741329266594 0 0 0 0
195 2024-10-16 00:00:00-04:00 13.6674995422363 13.6674995422363 13.6674995422363 13.6674995422363 12.711334529976 0 0 0 0
196 2024-10-17 00:00:00-04:00 13.6975002288818 13.6975002288818 13.6975002288818 13.6975002288818 12.7392363976806 0 0 0 0
197 2024-10-18 00:00:00-04:00 13.7875003814697 13.7875003814697 13.7875003814697 13.7875003814697 12.822940226882 0 0 0 0
198 2024-10-21 00:00:00-04:00 13.664999961853 13.664999961853 13.664999961853 13.664999961853 12.709009817812 0 0 0 0
199 2024-10-22 00:00:00-04:00 13.6125001907349 13.6125001907349 13.6125001907349 13.6125001907349 12.6601828797633 0 0 0 0
200 2024-10-23 00:00:00-04:00 13.5299997329712 13.5299997329712 13.5299997329712 13.5299997329712 12.5834540740099 0 0 0 0
201 2024-10-24 00:00:00-04:00 13.585000038147 13.585000038147 13.585000038147 13.585000038147 12.6346066111788 0 0 0 0
202 2024-10-25 00:00:00-04:00 13.5625 13.5625 13.5625 13.5625 12.6136806538785 0 0 0 0
203 2024-10-28 00:00:00-04:00 13.6724996566772 13.6724996566772 13.6724996566772 13.6724996566772 12.7159848412601 0 0 0 0
204 2024-10-29 00:00:00-04:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.6392569224629 0 0 0 0
205 2024-10-30 00:00:00-04:00 13.4875001907349 13.4875001907349 13.4875001907349 13.4875001907349 12.5439277585293 0 0 0 0
206 2024-10-31 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.4299973494594 0 0 0 0
207 2024-11-01 00:00:00-04:00 13.4274997711182 13.4274997711182 13.4274997711182 13.4274997711182 12.4881249100764 0 0 0 0
208 2024-11-04 00:00:00-05:00 13.4700002670288 13.4700002670288 13.4700002670288 13.4700002670288 12.5276521125131 0 0 0 0
209 2024-11-05 00:00:00-05:00 13.602499961853 13.602499961853 13.602499961853 13.602499961853 12.6508822571951 0 0 0 0
210 2024-11-06 00:00:00-05:00 13.5074996948242 13.5074996948242 13.5074996948242 13.5074996948242 12.5625281167096 0 0 0 0
211 2024-11-07 00:00:00-05:00 13.602499961853 13.602499961853 13.602499961853 13.602499961853 12.6508822571951 0 0 0 0
212 2024-11-08 00:00:00-05:00 13.4525003433228 13.4525003433228 13.4525003433228 13.4525003433228 12.5113764664968 0 0 0 0
213 2024-11-11 00:00:00-05:00 13.477499961853 13.477499961853 13.477499961853 13.477499961853 12.5346271359612 0 0 0 0
214 2024-11-12 00:00:00-05:00 13.1850004196167 13.1850004196167 13.1850004196167 13.1850004196167 12.2625905780128 0 0 0 0
215 2024-11-13 00:00:00-05:00 13.1199998855591 13.1199998855591 13.1199998855591 13.1199998855591 12.2021374182757 0 0 0 0
216 2024-11-14 00:00:00-05:00 13.1499996185303 13.1499996185303 13.1499996185303 13.1499996185303 12.2300383990241 0 0 0 0
217 2024-11-15 00:00:00-05:00 13.1175003051758 13.1175003051758 13.1175003051758 13.1175003051758 12.1998127061117 0 0 0 0
218 2024-11-18 00:00:00-05:00 13.2075004577637 13.2075004577637 13.2075004577637 13.2075004577637 12.2835165353131 0 0 0 0
219 2024-11-19 00:00:00-05:00 13.1625003814697 13.1625003814697 13.1625003814697 13.1625003814697 12.2416646207124 0 0 0 0
220 2024-11-20 00:00:00-05:00 13.125 13.125 13.125 13.125 12.2067877295598 0 0 0 0
221 2024-11-21 00:00:00-05:00 13.1225004196167 13.1225004196167 13.1225004196167 13.1225004196167 12.2044630173958 0 0 0 0
222 2024-11-22 00:00:00-05:00 13.1225004196167 13.1225004196167 13.1225004196167 13.1225004196167 12.2044630173958 0 0 0 0
223 2024-11-25 00:00:00-05:00 13.210000038147 13.210000038147 13.210000038147 13.210000038147 12.2858412474771 0 0 0 0
224 2024-11-26 00:00:00-05:00 13.1099996566772 13.1099996566772 13.1099996566772 13.1099996566772 12.1928367957075 0 0 0 0
225 2024-11-27 00:00:00-05:00 13.164999961853 13.164999961853 13.164999961853 13.164999961853 12.2439893328764 0 0 0 0
226 2024-11-29 00:00:00-05:00 13.2075004577637 13.2075004577637 13.2075004577637 13.2075004577637 12.2835165353131 0 0 0 0
227 2024-12-02 00:00:00-05:00 13.1975002288818 13.1975002288818 13.1975002288818 13.1975002288818 12.2742159127449 0 0 0 0
228 2024-12-03 00:00:00-05:00 13.2650003433228 13.2650003433228 13.2650003433228 13.2650003433228 12.336993784646 0 0 0 0
229 2024-12-04 00:00:00-05:00 13.25 13.25 13.25 13.25 12.3230428507937 0 0 0 0
230 2024-12-05 00:00:00-05:00 13.3824996948242 13.3824996948242 13.3824996948242 13.3824996948242 12.4462729954757 0 0 0 0
231 2024-12-06 00:00:00-05:00 13.3774995803833 13.3774995803833 13.3774995803833 13.3774995803833 12.4416226841916 0 0 0 0
232 2024-12-09 00:00:00-05:00 13.4425001144409 13.4425001144409 13.4425001144409 13.4425001144409 12.5020758439286 0 0 0 0
233 2024-12-10 00:00:00-05:00 13.3175001144409 13.3175001144409 13.3175001144409 13.3175001144409 12.3858207226947 0 0 0 0
234 2024-12-11 00:00:00-05:00 13.3024997711182 13.3024997711182 13.3024997711182 13.3024997711182 12.3718697888425 0 0 0 0
235 2024-12-12 00:00:00-05:00 13.2624998092651 13.2624998092651 13.2624998092651 13.2624998092651 12.3346681855259 0 0 0 0
236 2024-12-13 00:00:00-05:00 13.1875 13.1875 13.1875 13.1875 12.2649152901767 0 0 0 0
237 2024-12-16 00:00:00-05:00 13.1075000762939 13.1075000762939 13.1075000762939 13.1075000762939 12.1905120835435 0 0 0 0
238 2024-12-17 00:00:00-05:00 13.0349998474121 13.0349998474121 13.0349998474121 13.0349998474121 12.1230839003584 0 0 0 0
239 2024-12-18 00:00:00-05:00 12.4525003433228 12.4525003433228 12.4525003433228 12.4525003433228 11.8364989993296 0 0.281 0 0
240 2024-12-19 00:00:00-05:00 12.3850002288818 12.3850002288818 12.3850002288818 12.3850002288818 11.7723379862795 0 0 0 0
241 2024-12-20 00:00:00-05:00 12.4250001907349 12.4250001907349 12.4250001907349 12.4250001907349 11.8103592266242 0 0 0 0
242 2024-12-23 00:00:00-05:00 12.5024995803833 12.5024995803833 12.5024995803833 12.5024995803833 11.8840248698871 0 0 0 0
243 2024-12-24 00:00:00-05:00 12.5349998474121 12.5349998474121 12.5349998474121 12.5349998474121 11.9149174109478 0 0 0 0
244 2024-12-26 00:00:00-05:00 12.5349998474121 12.5349998474121 12.5349998474121 12.5349998474121 11.9149174109478 0 0 0 0
245 2024-12-27 00:00:00-05:00 12.5450000762939 12.5450000762939 12.5450000762939 12.5450000762939 11.9244229476585 0 0 0 0
246 2024-12-30 00:00:00-05:00 12.4825000762939 12.4825000762939 12.4825000762939 12.4825000762939 11.8650147029637 0 0 0 0
247 2024-12-31 00:00:00-05:00 12.4750003814697 12.4750003814697 12.4750003814697 12.4750003814697 11.8578860036797 0 0 0 0
248 2025-01-02 00:00:00-05:00 12.4300003051758 12.4300003051758 12.4300003051758 12.4300003051758 11.8151119949796 0 0 0 0
249 2025-01-03 00:00:00-05:00 12.4624996185303 12.4624996185303 12.4624996185303 12.4624996185303 11.8460036295424 0 0 0 0
250 2025-01-06 00:00:00-05:00 12.602499961853 12.602499961853 12.602499961853 12.602499961853 11.979078423998 0 0 0 0
251 2025-01-07 00:00:00-05:00 12.6149997711182 12.6149997711182 12.6149997711182 12.6149997711182 11.9909598916373 0 0 0 0
252 2025-01-08 00:00:00-05:00 12.5574998855591 12.5574998855591 12.5574998855591 12.5574998855591 11.9363044152979 0 0 0 0
253 2025-01-10 00:00:00-05:00 12.3299999237061 12.3299999237061 12.3299999237061 12.3299999237061 11.7200584408688 0 0 0 0
254 2025-01-13 00:00:00-05:00 12.3024997711182 12.3024997711182 12.3024997711182 12.3024997711182 11.6939186681634 0 0 0 0
255 2025-01-14 00:00:00-05:00 12.3800001144409 12.3800001144409 12.3800001144409 12.3800001144409 11.7675852179242 0 0 0 0
256 2025-01-15 00:00:00-05:00 12.539999961853 12.539999961853 12.539999961853 12.539999961853 11.9196701793032 0 0 0 0
257 2025-01-16 00:00:00-05:00 12.6125001907349 12.6125001907349 12.6125001907349 12.6125001907349 11.9885839607086 0 0 0 0
258 2025-01-17 00:00:00-05:00 12.7049999237061 12.7049999237061 12.7049999237061 12.7049999237061 12.0765079090375 0 0 0 0
259 2025-01-21 00:00:00-05:00 12.8625001907349 12.8625001907349 12.8625001907349 12.8625001907349 12.2262169394878 0 0 0 0
260 2025-01-22 00:00:00-05:00 12.8725004196167 12.8725004196167 12.8725004196167 12.8725004196167 12.2357224761984 0 0 0 0
261 2025-01-23 00:00:00-05:00 12.9674997329712 12.9674997329712 12.9674997329712 12.9674997329712 12.3260223554561 0 0 0 0
262 2025-01-24 00:00:00-05:00 13.0249996185303 13.0249996185303 13.0249996185303 13.0249996185303 12.3806778317955 0 0 0 0
263 2025-01-27 00:00:00-05:00 13.0024995803833 13.0024995803833 13.0024995803833 13.0024995803833 12.3592908274455 0 0 0 0
264 2025-01-28 00:00:00-05:00 13.0150003433228 13.0150003433228 13.0150003433228 13.0150003433228 12.3711732015827 0 0 0 0
265 2025-01-29 00:00:00-05:00 13.0200004577637 13.0200004577637 13.0200004577637 13.0200004577637 12.3759259699381 0 0 0 0
266 2025-01-30 00:00:00-05:00 13.1525001525879 13.1525001525879 13.1525001525879 13.1525001525879 12.5018711586117 0 0 0 0
267 2025-01-31 00:00:00-05:00 13.0649995803833 13.0649995803833 13.0649995803833 13.0649995803833 12.4186990721403 0 0 0 0
268 2025-02-03 00:00:00-05:00 12.8924999237061 12.8924999237061 12.8924999237061 12.8924999237061 12.2547326431219 0 0 0 0
269 2025-02-04 00:00:00-05:00 13.0600004196167 13.0600004196167 13.0600004196167 13.0600004196167 12.4139472102828 0 0 0 0
270 2025-02-05 00:00:00-05:00 13.1999998092651 13.1999998092651 13.1999998092651 13.1999998092651 12.5470210982405 0 0 0 0
271 2025-02-06 00:00:00-05:00 13.352499961853 13.352499961853 13.352499961853 13.352499961853 12.6919773603355 0 0 0 0
272 2025-02-07 00:00:00-05:00 13.2624998092651 13.2624998092651 13.2624998092651 13.2624998092651 12.6064293429353 0 0 0 0
273 2025-02-10 00:00:00-05:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.7062356654015 0 0 0 0
274 2025-02-11 00:00:00-05:00 13.3950004577637 13.3950004577637 13.3950004577637 13.3950004577637 12.7323754381068 0 0 0 0
275 2025-02-12 00:00:00-05:00 13.477499961853 13.477499961853 13.477499961853 13.477499961853 12.8107938497251 0 0 0 0
276 2025-02-13 00:00:00-05:00 13.5924997329712 13.5924997329712 13.5924997329712 13.5924997329712 12.920104802404 0 0 0 0
277 2025-02-14 00:00:00-05:00 13.6374998092651 13.6374998092651 13.6374998092651 13.6374998092651 12.9628788111041 0 0 0 0
278 2025-02-18 00:00:00-05:00 13.7425003051758 13.7425003051758 13.7425003051758 13.7425003051758 13.0626851335702 0 0 0 0
279 2025-02-19 00:00:00-05:00 13.6049995422363 13.6049995422363 13.6049995422363 13.6049995422363 12.9319862700434 0 0 0 0
280 2025-02-20 00:00:00-05:00 13.6724996566772 13.6724996566772 13.6724996566772 13.6724996566772 12.9961472830935 0 0 0 0
281 2025-02-21 00:00:00-05:00 13.647500038147 13.647500038147 13.647500038147 13.647500038147 12.9723843478147 0 0 0 0
282 2025-02-24 00:00:00-05:00 13.5349998474121 13.5349998474121 13.5349998474121 13.5349998474121 12.8654493260645 0 0 0 0
283 2025-02-25 00:00:00-05:00 13.647500038147 13.647500038147 13.647500038147 13.647500038147 12.9723843478147 0 0 0 0
284 2025-02-26 00:00:00-05:00 13.7299995422363 13.7299995422363 13.7299995422363 13.7299995422363 13.0508027594329 0 0 0 0
285 2025-02-27 00:00:00-05:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.9177288714753 0 0 0 0
286 2025-02-28 00:00:00-05:00 13.6549997329712 13.6549997329712 13.6549997329712 13.6549997329712 12.9795130470988 0 0 0 0
287 2025-03-03 00:00:00-05:00 13.6700000762939 13.6700000762939 13.6700000762939 13.6700000762939 12.9937713521648 0 0 0 0
288 2025-03-04 00:00:00-05:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.9177288714753 0 0 0 0
289 2025-03-05 00:00:00-05:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 13.26704964036 0 0 0 0
290 2025-03-06 00:00:00-05:00 13.9650001525879 13.9650001525879 13.9650001525879 13.9650001525879 13.274178339644 0 0 0 0
291 2025-03-07 00:00:00-05:00 14.0675001144409 14.0675001144409 14.0675001144409 14.0675001144409 13.3716078246835 0 0 0 0
292 2025-03-10 00:00:00-04:00 13.7775001525879 13.7775001525879 13.7775001525879 13.7775001525879 13.0959536055596 0 0 0 0
293 2025-03-11 00:00:00-04:00 13.710000038147 13.710000038147 13.710000038147 13.710000038147 13.0317925925095 0 0 0 0
294 2025-03-12 00:00:00-04:00 13.7674999237061 13.7674999237061 13.7674999237061 13.7674999237061 13.086448068849 0 0 0 0
295 2025-03-13 00:00:00-04:00 13.6875 13.6875 13.6875 13.6875 13.0104055881595 0 0 0 0
296 2025-03-14 00:00:00-04:00 13.9350004196167 13.9350004196167 13.9350004196167 13.9350004196167 13.2456626360099 0 0 0 0
297 2025-03-17 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 13.4666604722965 0 0 0 0
298 2025-03-18 00:00:00-04:00 14.2124996185303 14.2124996185303 14.2124996185303 14.2124996185303 13.5094344809966 0 0 0 0
299 2025-03-19 00:00:00-04:00 14.227499961853 14.227499961853 14.227499961853 14.227499961853 13.5236927860626 0 0 0 0
300 2025-03-20 00:00:00-04:00 14.1149997711182 14.1149997711182 14.1149997711182 14.1149997711182 13.4167577643124 0 0 0 0
301 2025-03-21 00:00:00-04:00 14.0124998092651 14.0124998092651 14.0124998092651 14.0124998092651 13.3193282792728 0 0 0 0
302 2025-03-24 00:00:00-04:00 14.0150003433228 14.0150003433228 14.0150003433228 14.0150003433228 13.3217051166994 0 0 0 0
303 2025-03-25 00:00:00-04:00 14.0775003433228 14.0775003433228 14.0775003433228 14.0775003433228 13.3811133613942 0 0 0 0
304 2025-03-26 00:00:00-04:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 13.26704964036 0 0 0 0
305 2025-03-27 00:00:00-04:00 13.9549999237061 13.9549999237061 13.9549999237061 13.9549999237061 13.2646728029333 0 0 0 0
306 2025-03-28 00:00:00-04:00 13.8000001907349 13.8000001907349 13.8000001907349 13.8000001907349 13.1173406099097 0 0 0 0
307 2025-03-31 00:00:00-04:00 13.6824998855591 13.6824998855591 13.6824998855591 13.6824998855591 13.0056528198041 0 0 0 0
308 2025-04-01 00:00:00-04:00 13.727499961853 13.727499961853 13.727499961853 13.727499961853 13.0484268285042 0 0 0 0
309 2025-04-02 00:00:00-04:00 13.7475004196167 13.7475004196167 13.7475004196167 13.7475004196167 13.0674379019255 0 0 0 0
310 2025-04-03 00:00:00-04:00 13.4674997329712 13.4674997329712 13.4674997329712 13.4674997329712 12.8012883130144 0 0 0 0
311 2025-04-04 00:00:00-04:00 12.6424999237061 12.6424999237061 12.6424999237061 12.6424999237061 12.0170996643427 0 0 0 0
312 2025-04-07 00:00:00-04:00 12.2799997329712 12.2799997329712 12.2799997329712 12.2799997329712 11.6725316638133 0 0 0 0
313 2025-04-08 00:00:00-04:00 12.1774997711182 12.1774997711182 12.1774997711182 12.1774997711182 11.5751021787738 0 0 0 0
314 2025-04-09 00:00:00-04:00 12.7574996948242 12.7574996948242 12.7574996948242 12.7574996948242 12.1264106170216 0 0 0 0
315 2025-04-10 00:00:00-04:00 12.6899995803833 12.6899995803833 12.6899995803833 12.6899995803833 12.0622496039715 0 0 0 0
316 2025-04-11 00:00:00-04:00 12.9399995803833 12.9399995803833 12.9399995803833 12.9399995803833 12.2998825827507 0 0 0 0
317 2025-04-14 00:00:00-04:00 13.1350002288818 13.1350002288818 13.1350002288818 13.1350002288818 12.485236922617 0 0 0 0
318 2025-04-15 00:00:00-04:00 13.2425003051758 13.2425003051758 13.2425003051758 13.2425003051758 12.5874191760119 0 0 0 0
319 2025-04-16 00:00:00-04:00 13.1674995422363 13.1674995422363 13.1674995422363 13.1674995422363 12.5161285571798 0 0 0 0
320 2025-04-17 00:00:00-04:00 13.289999961853 13.289999961853 13.289999961853 13.289999961853 12.6325691156407 0 0 0 0
321 2025-04-21 00:00:00-04:00 13.2174997329712 13.2174997329712 13.2174997329712 13.2174997329712 12.5636553342352 0 0 0 0
322 2025-04-22 00:00:00-04:00 13.4949998855591 13.4949998855591 13.4949998855591 13.4949998855591 12.8274280857198 0 0 0 0
323 2025-04-23 00:00:00-04:00 13.6125001907349 13.6125001907349 13.6125001907349 13.6125001907349 12.9391158758253 0 0 0 0
324 2025-04-24 00:00:00-04:00 13.7924995422363 13.7924995422363 13.7924995422363 13.7924995422363 13.1102110041277 0 0 0 0
325 2025-04-25 00:00:00-04:00 13.835000038147 13.835000038147 13.835000038147 13.835000038147 13.1506090818991 0 0 0 0
326 2025-04-28 00:00:00-04:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 13.26704964036 0 0 0 0
327 2025-04-29 00:00:00-04:00 13.9624996185303 13.9624996185303 13.9624996185303 13.9624996185303 13.2718015022174 0 0 0 0
328 2025-04-30 00:00:00-04:00 13.9650001525879 13.9650001525879 13.9650001525879 13.9650001525879 13.274178339644 0 0 0 0
329 2025-05-01 00:00:00-04:00 13.9399995803833 13.9399995803833 13.9399995803833 13.9399995803833 13.2504144978674 0 0 0 0
330 2025-05-02 00:00:00-04:00 14.1549997329712 14.1549997329712 14.1549997329712 14.1549997329712 13.4547790046571 0 0 0 0
331 2025-05-05 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 13.4666604722965 0 0 0 0
332 2025-05-06 00:00:00-04:00 14.2049999237061 14.2049999237061 14.2049999237061 14.2049999237061 13.5023057817125 0 0 0 0
333 2025-05-07 00:00:00-04:00 14.1125001907349 14.1125001907349 14.1125001907349 14.1125001907349 13.4143818333836 0 0 0 0
334 2025-05-08 00:00:00-04:00 14.1199998855591 14.1199998855591 14.1199998855591 14.1199998855591 13.4215105326677 0 0 0 0
335 2025-05-09 00:00:00-04:00 14.2399997711182 14.2399997711182 14.2399997711182 14.2399997711182 13.5355742537019 0 0 0 0
336 2025-05-12 00:00:00-04:00 14.4324998855591 14.4324998855591 14.4324998855591 14.4324998855591 13.7185517561416 0 0 0 0
337 2025-05-13 00:00:00-04:00 14.4849996566772 14.4849996566772 14.4849996566772 14.4849996566772 13.7684544641258 0 0 0 0
338 2025-05-14 00:00:00-04:00 14.4700002670288 14.4700002670288 14.4700002670288 14.4700002670288 13.7541970655577 0 0 0 0
339 2025-05-15 00:00:00-04:00 14.5524997711182 14.5524997711182 14.5524997711182 14.5524997711182 13.8326154771759 0 0 0 0
340 2025-05-16 00:00:00-04:00 14.6000003814697 14.6000003814697 14.6000003814697 14.6000003814697 13.8777663233026 0 0 0 0
341 2025-05-19 00:00:00-04:00 14.710000038147 14.710000038147 14.710000038147 14.710000038147 13.9823245076262 0 0 0 0
342 2025-05-20 00:00:00-04:00 14.772500038147 14.772500038147 14.772500038147 14.772500038147 14.041732752321 0 0 0 0
343 2025-05-21 00:00:00-04:00 14.6925001144409 14.6925001144409 14.6925001144409 14.6925001144409 13.9656902716315 0 0 0 0
344 2025-05-22 00:00:00-04:00 14.6899995803833 14.6899995803833 14.6899995803833 14.6899995803833 13.9633134342049 0 0 0 0
345 2025-05-23 00:00:00-04:00 14.7075004577637 14.7075004577637 14.7075004577637 14.7075004577637 13.9799485766975 0 0 0 0
346 2025-05-27 00:00:00-04:00 14.8649997711182 14.8649997711182 14.8649997711182 14.8649997711182 14.1296567006499 0 0 0 0
347 2025-05-28 00:00:00-04:00 14.7174997329712 14.7174997329712 14.7174997329712 14.7174997329712 13.9894532069102 0 0 0 0
348 2025-05-29 00:00:00-04:00 14.8199996948242 14.8199996948242 14.8199996948242 14.8199996948242 14.0868826919498 0 0 0 0
349 2025-05-30 00:00:00-04:00 14.7799997329712 14.7799997329712 14.7799997329712 14.7799997329712 14.048861451605 0 0 0 0
350 2025-06-02 00:00:00-04:00 14.8950004577637 14.8950004577637 14.8950004577637 14.8950004577637 14.1581733107818 0 0 0 0
351 2025-06-03 00:00:00-04:00 14.8450002670288 14.8450002670288 14.8450002670288 14.8450002670288 14.1106465337264 0 0 0 0
352 2025-06-04 00:00:00-04:00 14.9300003051758 14.9300003051758 14.9300003051758 14.9300003051758 14.1914417827713 0 0 0 0
353 2025-06-05 00:00:00-04:00 14.9700002670288 14.9700002670288 14.9700002670288 14.9700002670288 14.229463023116 0 0 0 0
354 2025-06-06 00:00:00-04:00 15.0275001525879 15.0275001525879 15.0275001525879 15.0275001525879 14.2841184994555 0 0 0 0
355 2025-06-09 00:00:00-04:00 15.0775003433228 15.0775003433228 15.0775003433228 15.0775003433228 14.3316452765109 0 0 0 0
356 2025-06-10 00:00:00-04:00 15.0775003433228 15.0775003433228 15.0775003433228 15.0775003433228 14.3316452765109 0 0 0 0
357 2025-06-11 00:00:00-04:00 15.1300001144409 15.1300001144409 15.1300001144409 15.1300001144409 14.381547984495 0 0 0 0
358 2025-06-12 00:00:00-04:00 15.1925001144409 15.1925001144409 15.1925001144409 15.1925001144409 14.4409562291898 0 0 0 0
359 2025-06-13 00:00:00-04:00 14.9899997711182 14.9899997711182 14.9899997711182 14.9899997711182 14.2484731900394 0 0 0 0
360 2025-06-16 00:00:00-04:00 15.1149997711182 15.1149997711182 15.1149997711182 15.1149997711182 14.367289679429 0 0 0 0
361 2025-06-17 00:00:00-04:00 14.960000038147 14.960000038147 14.960000038147 14.960000038147 14.2199574864054 0 0 0 0
362 2025-06-18 00:00:00-04:00 14.897500038147 14.897500038147 14.897500038147 14.897500038147 14.1605492417106 0 0 0 0
363 2025-06-20 00:00:00-04:00 14.7974996566772 14.7974996566772 14.7974996566772 14.7974996566772 14.0654956875997 0 0 0 0
364 2025-06-23 00:00:00-04:00 14.8675003051758 14.8675003051758 14.8675003051758 14.8675003051758 14.1320335380765 0 0 0 0
365 2025-06-24 00:00:00-04:00 15.0900001525879 15.0900001525879 15.0900001525879 15.0900001525879 14.3435267441503 0 0 0 0
366 2025-06-25 00:00:00-04:00 15.0249996185303 15.0249996185303 15.0249996185303 15.0249996185303 14.2817416620289 0 0 0 0
367 2025-06-26 00:00:00-04:00 15.1424999237061 15.1424999237061 15.1424999237061 15.1424999237061 14.3934294521344 0 0 0 0
368 2025-06-27 00:00:00-04:00 15.2650003433228 15.2650003433228 15.2650003433228 15.2650003433228 14.5098700105953 0 0 0 0
369 2025-06-30 00:00:00-04:00 15.2674999237061 15.2674999237061 15.2674999237061 15.2674999237061 14.512245941524 0 0 0 0
370 2025-07-01 00:00:00-04:00 15.3149995803833 15.3149995803833 15.3149995803833 15.3149995803833 14.5573958811528 0 0 0 0
371 2025-07-02 00:00:00-04:00 15.3850002288818 15.3850002288818 15.3850002288818 15.3850002288818 14.6239337316295 0 0 0 0
372 2025-07-03 00:00:00-04:00 15.3850002288818 15.3850002288818 15.3850002288818 15.3850002288818 14.6239337316295 0 0 0 0
373 2025-07-07 00:00:00-04:00 15.2600002288818 15.2600002288818 15.2600002288818 15.2600002288818 14.5051172422399 0 0 0 0
374 2025-07-08 00:00:00-04:00 15.3374996185303 15.3374996185303 15.3374996185303 15.3374996185303 14.5787828855028 0 0 0 0
375 2025-07-09 00:00:00-04:00 15.3800001144409 15.3800001144409 15.3800001144409 15.3800001144409 14.6191809632742 0 0 0 0
376 2025-07-10 00:00:00-04:00 15.4300003051758 15.4300003051758 15.4300003051758 15.4300003051758 14.6667077403296 0 0 0 0
377 2025-07-11 00:00:00-04:00 15.3149995803833 15.3149995803833 15.3149995803833 15.3149995803833 14.5573958811528 0 0 0 0
378 2025-07-14 00:00:00-04:00 15.2875003814697 15.2875003814697 15.2875003814697 15.2875003814697 14.5312570149453 0 0 0 0
379 2025-07-15 00:00:00-04:00 15.2299995422363 15.2299995422363 15.2299995422363 15.2299995422363 14.476600632108 0 0 0 0
380 2025-07-16 00:00:00-04:00 15.2700004577637 15.2700004577637 15.2700004577637 15.2700004577637 14.5146227789506 0 0 0 0
381 2025-07-17 00:00:00-04:00 15.3125 15.3125 15.3125 15.3125 14.5550199502241 0 0 0 0
382 2025-07-18 00:00:00-04:00 15.3199996948242 15.3199996948242 15.3199996948242 15.3199996948242 14.5621486495081 0 0 0 0
383 2025-07-21 00:00:00-04:00 15.3774995803833 15.3774995803833 15.3774995803833 15.3774995803833 14.6168041258476 0 0 0 0
384 2025-07-22 00:00:00-04:00 15.4350004196167 15.4350004196167 15.4350004196167 15.4350004196167 14.6714605086849 0 0 0 0
385 2025-07-23 00:00:00-04:00 15.6975002288818 15.6975002288818 15.6975002288818 15.6975002288818 14.9209749551035 0 0 0 0
386 2025-07-24 00:00:00-04:00 15.7174997329712 15.7174997329712 15.7174997329712 15.7174997329712 14.9399851220269 0 0 0 0
387 2025-07-25 00:00:00-04:00 15.6674995422363 15.6674995422363 15.6674995422363 15.6674995422363 14.8924583449715 0 0 0 0
388 2025-07-28 00:00:00-04:00 15.539999961853 15.539999961853 15.539999961853 15.539999961853 14.7712659246532 0 0 0 0
389 2025-07-29 00:00:00-04:00 15.5200004577637 15.5200004577637 15.5200004577637 15.5200004577637 14.7522557577298 0 0 0 0
390 2025-07-30 00:00:00-04:00 15.4350004196167 15.4350004196167 15.4350004196167 15.4350004196167 14.6714605086849 0 0 0 0
391 2025-07-31 00:00:00-04:00 15.2624998092651 15.2624998092651 15.2624998092651 15.2624998092651 14.5074931731687 0 0 0 0
392 2025-08-01 00:00:00-04:00 15.1774997711182 15.1774997711182 15.1774997711182 15.1774997711182 14.4266979241238 0 0 0 0
393 2025-08-04 00:00:00-04:00 15.3424997329712 15.3424997329712 15.3424997329712 15.3424997329712 14.5835356538582 0 0 0 0
394 2025-08-05 00:00:00-04:00 15.352499961853 15.352499961853 15.352499961853 15.352499961853 14.5930411905688 0 0 0 0
395 2025-08-06 00:00:00-04:00 15.3374996185303 15.3374996185303 15.3374996185303 15.3374996185303 14.5787828855028 0 0 0 0
396 2025-08-07 00:00:00-04:00 15.4875001907349 15.4875001907349 15.4875001907349 15.4875001907349 14.7213632166691 0 0 0 0
397 2025-08-08 00:00:00-04:00 15.5299997329712 15.5299997329712 15.5299997329712 15.5299997329712 14.7617603879425 0 0 0 0
398 2025-08-11 00:00:00-04:00 15.5100002288818 15.5100002288818 15.5100002288818 15.5100002288818 14.7427502210191 0 0 0 0
399 2025-08-12 00:00:00-04:00 15.6925001144409 15.6925001144409 15.6925001144409 15.6925001144409 14.9162221867481 0 0 0 0
400 2025-08-13 00:00:00-04:00 15.8299999237061 15.8299999237061 15.8299999237061 15.8299999237061 15.0469201437771 0 0 0 0
401 2025-08-14 00:00:00-04:00 15.7775001525879 15.7775001525879 15.7775001525879 15.7775001525879 14.997017435793 0 0 0 0
402 2025-08-15 00:00:00-04:00 15.835000038147 15.835000038147 15.835000038147 15.835000038147 15.0516729121324 0 0 0 0
403 2025-08-18 00:00:00-04:00 15.8100004196167 15.8100004196167 15.8100004196167 15.8100004196167 15.0279099768537 0 0 0 0
404 2025-08-19 00:00:00-04:00 15.8575000762939 15.8575000762939 15.8575000762939 15.8575000762939 15.0730599164825 0 0 0 0
405 2025-08-20 00:00:00-04:00 15.8824996948242 15.8824996948242 15.8824996948242 15.8824996948242 15.0968228517612 0 0 0 0
406 2025-08-21 00:00:00-04:00 15.8549995422363 15.8549995422363 15.8549995422363 15.8549995422363 15.0706830790559 0 0 0 0
407 2025-08-22 00:00:00-04:00 16.0849990844727 16.0849990844727 16.0849990844727 16.0849990844727 15.2893049844137 0 0 0 0
408 2025-08-25 00:00:00-04:00 15.9624996185303 15.9624996185303 15.9624996185303 15.9624996185303 15.1728653324508 0 0 0 0
409 2025-08-26 00:00:00-04:00 15.8924999237061 15.8924999237061 15.8924999237061 15.8924999237061 15.1063283884719 0 0 0 0
410 2025-08-27 00:00:00-04:00 15.8800001144409 15.8800001144409 15.8800001144409 15.8800001144409 15.0944469208325 0 0 0 0
411 2025-08-28 00:00:00-04:00 15.9099998474121 15.9099998474121 15.9099998474121 15.9099998474121 15.1229626244666 0 0 0 0
412 2025-08-29 00:00:00-04:00 15.8900003433228 15.8900003433228 15.8900003433228 15.8900003433228 15.1039524575432 0 0 0 0
413 2025-09-02 00:00:00-04:00 15.7550001144409 15.7550001144409 15.7550001144409 15.7550001144409 14.9756304314429 0 0 0 0
414 2025-09-03 00:00:00-04:00 15.7550001144409 15.7550001144409 15.7550001144409 15.7550001144409 14.9756304314429 0 0 0 0
415 2025-09-04 00:00:00-04:00 15.7849998474121 15.7849998474121 15.7849998474121 15.7849998474121 15.004146135077 0 0 0 0
416 2025-09-05 00:00:00-04:00 15.9250001907349 15.9250001907349 15.9250001907349 15.9250001907349 15.1372209295326 0 0 0 0
417 2025-09-08 00:00:00-04:00 16.0249996185303 16.0249996185303 16.0249996185303 16.0249996185303 15.2322735771455 0 0 0 0
418 2025-09-09 00:00:00-04:00 16.0575008392334 16.0575008392334 16.0575008392334 16.0575008392334 15.2631670247041 0 0 0 0
419 2025-09-10 00:00:00-04:00 16.0750007629395 16.0750007629395 16.0750007629395 16.0750007629395 15.2798012606988 0 0 0 0
420 2025-09-11 00:00:00-04:00 16.2900009155273 16.2900009155273 16.2900009155273 16.2900009155273 15.4841657674886 0 0 0 0
421 2025-09-12 00:00:00-04:00 16.2299995422363 16.2299995422363 16.2299995422363 16.2299995422363 15.4271325472246 0 0 0 0
422 2025-09-15 00:00:00-04:00 16.3075008392334 16.3075008392334 16.3075008392334 16.3075008392334 15.5008000034833 0 0 0 0
423 2025-09-16 00:00:00-04:00 16.3024997711182 16.3024997711182 16.3024997711182 16.3024997711182 15.4960463286301 0 0 0 0
424 2025-09-17 00:00:00-04:00 16.3474998474121 16.3474998474121 16.3474998474121 16.3474998474121 15.5388203373302 0 0 0 0
425 2025-09-18 00:00:00-04:00 16.3125 16.3125 16.3125 16.3125 15.5055518653407 0 0 0 0
426 2025-09-19 00:00:00-04:00 16.2749996185303 16.2749996185303 16.2749996185303 16.2749996185303 15.4699065559247 0 0 0 0
427 2025-09-22 00:00:00-04:00 16.3199996948242 16.3199996948242 16.3199996948242 16.3199996948242 15.5126805646248 0 0 0 0
428 2025-09-23 00:00:00-04:00 16.3250007629395 16.3250007629395 16.3250007629395 16.3250007629395 15.517434239478 0 0 0 0
429 2025-09-24 00:00:00-04:00 16.2900009155273 16.2900009155273 16.2900009155273 16.2900009155273 15.4841657674886 0 0 0 0
430 2025-09-25 00:00:00-04:00 16.1324996948242 16.1324996948242 16.1324996948242 16.1324996948242 15.3344558305404 0 0 0 0
431 2025-09-26 00:00:00-04:00 16.2124996185303 16.2124996185303 16.2124996185303 16.2124996185303 15.4104983112299 0 0 0 0
432 2025-09-29 00:00:00-04:00 16.3274993896484 16.3274993896484 16.3274993896484 16.3274993896484 15.5198092639088 0 0 0 0
433 2025-09-30 00:00:00-04:00 16.4500007629395 16.4500007629395 16.4500007629395 16.4500007629395 15.6362507288676 0 0 0 0
434 2025-10-01 00:00:00-04:00 16.5550003051758 16.5550003051758 16.5550003051758 16.5550003051758 15.7360561448359 0 0 0 0
435 2025-10-02 00:00:00-04:00 16.5349998474121 16.5349998474121 16.5349998474121 16.5349998474121 15.7170450714145 0 0 0 0
436 2025-10-03 00:00:00-04:00 16.625 16.625 16.625 16.625 15.8025930888147 0 0 0 0
437 2025-10-06 00:00:00-04:00 16.6224994659424 16.6224994659424 16.6224994659424 16.6224994659424 15.8002162513881 0 0 0 0
438 2025-10-07 00:00:00-04:00 16.4825000762939 16.4825000762939 16.4825000762939 16.4825000762939 15.6671423634304 0 0 0 0
439 2025-10-08 00:00:00-04:00 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 15.7122932095571 0 0 0 0
440 2025-10-09 00:00:00-04:00 16.4274997711182 16.4274997711182 16.4274997711182 16.4274997711182 15.6148628180197 0 0 0 0
441 2025-10-10 00:00:00-04:00 16.1149997711182 16.1149997711182 16.1149997711182 16.1149997711182 15.3178215945457 0 0 0 0
442 2025-10-13 00:00:00-04:00 16.2775001525879 16.2775001525879 16.2775001525879 16.2775001525879 15.4722833933513 0 0 0 0
443 2025-10-14 00:00:00-04:00 16.2975006103516 16.2975006103516 16.2975006103516 16.2975006103516 15.4912944667726 0 0 0 0
444 2025-10-15 00:00:00-04:00 16.3675003051758 16.3675003051758 16.3675003051758 16.3675003051758 15.5578314107515 0 0 0 0
445 2025-10-16 00:00:00-04:00 16.3875007629395 16.3875007629395 16.3875007629395 16.3875007629395 15.5768424841728 0 0 0 0
446 2025-10-17 00:00:00-04:00 16.3999996185303 16.3999996185303 16.3999996185303 16.3999996185303 15.5887230453143 0 0 0 0
447 2025-10-20 00:00:00-04:00 16.4750003814697 16.4750003814697 16.4750003814697 16.4750003814697 15.6600136641463 0 0 0 0
448 2025-10-21 00:00:00-04:00 16.4099998474121 16.4099998474121 16.4099998474121 16.4099998474121 15.598228582025 0 0 0 0
449 2025-10-22 00:00:00-04:00 16.4074993133545 16.4074993133545 16.4074993133545 16.4074993133545 15.5958517445984 0 0 0 0
450 2025-10-23 00:00:00-04:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 15.6457544525825 0 0 0 0
451 2025-10-24 00:00:00-04:00 16.5025005340576 16.5025005340576 16.5025005340576 16.5025005340576 15.6861534368517 0 0 0 0
452 2025-10-27 00:00:00-04:00 16.6000003814697 16.6000003814697 16.6000003814697 16.6000003814697 15.7788301535359 0 0 4 0
453 2025-10-28 00:00:00-04:00 16.5599994659424 16.5599994659424 16.5599994659424 16.5599994659424 15.7408080066933 0 0 0 0
454 2025-10-29 00:00:00-04:00 16.5900001525879 16.5900001525879 16.5900001525879 16.5900001525879 15.7693246168253 0 0 0 0
455 2025-10-30 00:00:00-04:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.6267451921569 0 0 0 0
456 2025-10-31 00:00:00-04:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.6267451921569 0 0 0 0
457 2025-11-03 00:00:00-05:00 16.4300003051758 16.4300003051758 16.4300003051758 16.4300003051758 15.6172396554463 0 0 0 0
458 2025-11-04 00:00:00-05:00 16.3199996948242 16.3199996948242 16.3199996948242 16.3199996948242 15.5126805646248 0 0 0 0
459 2025-11-05 00:00:00-05:00 16.3899993896484 16.3899993896484 16.3899993896484 16.3899993896484 15.5792175086036 0 0 0 0
460 2025-11-06 00:00:00-05:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.6267451921569 0 0 0 0
461 2025-11-07 00:00:00-05:00 16.4899997711182 16.4899997711182 16.4899997711182 16.4899997711182 15.6742710627145 0 0 0 0
462 2025-11-10 00:00:00-05:00 16.6800003051758 16.6800003051758 16.6800003051758 16.6800003051758 15.8548726342254 0 0 0 0
463 2025-11-11 00:00:00-05:00 16.8400001525879 16.8400001525879 16.8400001525879 16.8400001525879 16.0069575956044 0 0 0 0
464 2025-11-12 00:00:00-05:00 16.9599990844727 16.9599990844727 16.9599990844727 16.9599990844727 16.1210204101408 0 0 0 0
465 2025-11-13 00:00:00-05:00 16.8199996948242 16.8199996948242 16.8199996948242 16.8199996948242 15.9879465221831 0 0 0 0
466 2025-11-14 00:00:00-05:00 16.6599998474121 16.6599998474121 16.6599998474121 16.6599998474121 15.8358615608041 0 0 0 0
467 2025-11-17 00:00:00-05:00 16.4899997711182 16.4899997711182 16.4899997711182 16.4899997711182 15.6742710627145 0 0 0 0
468 2025-11-18 00:00:00-05:00 16.3299999237061 16.3299999237061 16.3299999237061 16.3299999237061 15.5221861013354 0 0 0 0
469 2025-11-19 00:00:00-05:00 16.2299995422363 16.2299995422363 16.2299995422363 16.2299995422363 15.4271325472246 0 0 0 0
470 2025-11-20 00:00:00-05:00 16.0699996948242 16.0699996948242 16.0699996948242 16.0699996948242 15.2750475858456 0 0 0 0
471 2025-11-21 00:00:00-05:00 16.25 16.25 16.25 16.25 15.4461436206459 0 0 0 0
472 2025-11-24 00:00:00-05:00 16.3099994659424 16.3099994659424 16.3099994659424 16.3099994659424 15.5031750279141 0 0 0 0
473 2025-11-25 00:00:00-05:00 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 15.6932821361358 0 0 0 0
474 2025-11-26 00:00:00-05:00 16.6599998474121 16.6599998474121 16.6599998474121 16.6599998474121 15.8358615608041 0 0 0 0
475 2025-11-28 00:00:00-05:00 16.7299995422363 16.7299995422363 16.7299995422363 16.7299995422363 15.902398504783 0 0 0 0
476 2025-12-01 00:00:00-05:00 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 15.8643781709361 0 0 0 0
477 2025-12-02 00:00:00-05:00 16.7700004577637 16.7700004577637 16.7700004577637 16.7700004577637 15.9404206516256 0 0 0 0
478 2025-12-03 00:00:00-05:00 16.8199996948242 16.8199996948242 16.8199996948242 16.8199996948242 15.9879465221831 0 0 0 0
479 2025-12-04 00:00:00-05:00 16.8799991607666 16.8799991607666 16.8799991607666 16.8799991607666 16.0449779294513 0 0 0 0
480 2025-12-05 00:00:00-05:00 16.8400001525879 16.8400001525879 16.8400001525879 16.8400001525879 16.0069575956044 0 0 0 0
481 2025-12-08 00:00:00-05:00 16.8600006103516 16.8600006103516 16.8600006103516 16.8600006103516 16.0259686690258 0 0 0 0
482 2025-12-09 00:00:00-05:00 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 15.9974520588938 0 0 0 0
483 2025-12-10 00:00:00-05:00 16.9500007629395 16.9500007629395 16.9500007629395 16.9500007629395 16.1115166864259 0 0 0 0
484 2025-12-11 00:00:00-05:00 17.0799999237061 17.0799999237061 17.0799999237061 17.0799999237061 16.235085037673 0 0 0 0
485 2025-12-12 00:00:00-05:00 17.0200004577637 17.0200004577637 17.0200004577637 17.0200004577637 16.1780536304048 0 0 0 0
486 2025-12-15 00:00:00-05:00 17.0900001525879 17.0900001525879 17.0900001525879 17.0900001525879 16.2445905743836 0 0 0 0
487 2025-12-16 00:00:00-05:00 16.9899997711182 16.9899997711182 16.9899997711182 16.9899997711182 16.1495370202728 0 0 0 0
488 2025-12-17 00:00:00-05:00 16.9200000762939 16.9200000762939 16.9200000762939 16.9200000762939 16.0830000762939 0 0 0 0
489 2025-12-18 00:00:00-05:00 16.2199993133545 16.2199993133545 16.2199993133545 16.2199993133545 16.2199993133545 0 0.837 0 0.417
490 2025-12-19 00:00:00-05:00 16.2999992370605 16.2999992370605 16.2999992370605 16.2999992370605 16.2999992370605 0 0 0 0
491 2025-12-22 00:00:00-05:00 16.3700008392334 16.3700008392334 16.3700008392334 16.3700008392334 16.3700008392334 0 0 0 0
492 2025-12-23 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
493 2025-12-24 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
494 2025-12-26 00:00:00-05:00 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 0 0 0 0
495 2025-12-29 00:00:00-05:00 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 0 0 0 0
496 2025-12-30 00:00:00-05:00 16.5400009155273 16.5400009155273 16.5400009155273 16.5400009155273 16.5400009155273 0 0 0 0
497 2025-12-31 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
498 2026-01-02 00:00:00-05:00 16.6299991607666 16.6299991607666 16.6299991607666 16.6299991607666 16.6299991607666 0 0 0 0
499 2026-01-05 00:00:00-05:00 16.7900009155273 16.7900009155273 16.7900009155273 16.7900009155273 16.7900009155273 0 0 0 0
500 2026-01-06 00:00:00-05:00 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 0 0 0 0
501 2026-01-07 00:00:00-05:00 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 0 0 0 0
502 2026-01-08 00:00:00-05:00 16.7600002288818 16.7600002288818 16.7600002288818 16.7600002288818 16.7600002288818 0 0 0 0
503 2026-01-09 00:00:00-05:00 16.8099994659424 16.8099994659424 16.8099994659424 16.8099994659424 16.8099994659424 0 0 0 0

View File

@@ -0,0 +1,503 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits,Capital Gains
2024-01-10 00:00:00-05:00,12.147500038147,12.147500038147,12.147500038147,12.147500038147,11.0047464370728,0,0,0,0
2024-01-11 00:00:00-05:00,12.1350002288818,12.1350002288818,12.1350002288818,12.1350002288818,10.9934225082397,0,0,0,0
2024-01-12 00:00:00-05:00,12.1400003433228,12.1400003433228,12.1400003433228,12.1400003433228,10.9979524612427,0,0,0,0
2024-01-16 00:00:00-05:00,11.9300003051758,11.9300003051758,11.9300003051758,11.9300003051758,10.8077077865601,0,0,0,0
2024-01-17 00:00:00-05:00,11.7924995422363,11.7924995422363,11.7924995422363,11.7924995422363,10.683141708374,0,0,0,0
2024-01-18 00:00:00-05:00,11.8400001525879,11.8400001525879,11.8400001525879,11.8400001525879,10.7261743545532,0,0,0,0
2024-01-19 00:00:00-05:00,11.9025001525879,11.9025001525879,11.9025001525879,11.9025001525879,10.7827949523926,0,0,0,0
2024-01-22 00:00:00-05:00,11.9075002670288,11.9075002670288,11.9075002670288,11.9075002670288,10.7873249053955,0,0,0,0
2024-01-23 00:00:00-05:00,11.9224996566772,11.9224996566772,11.9224996566772,11.9224996566772,10.8009128570557,0,0,0,0
2024-01-24 00:00:00-05:00,11.9925003051758,11.9925003051758,11.9925003051758,11.9925003051758,10.8643283843994,0,0,0,0
2024-01-25 00:00:00-05:00,11.9575004577637,11.9575004577637,11.9575004577637,11.9575004577637,10.8326215744019,0,0,0,0
2024-01-26 00:00:00-05:00,12.0325002670288,12.0325002670288,12.0325002670288,12.0325002670288,10.9005651473999,0,0,0,0
2024-01-29 00:00:00-05:00,12.0749998092651,12.0749998092651,12.0749998092651,12.0749998092651,10.9390668869019,0,0,0,0
2024-01-30 00:00:00-05:00,12.0299997329712,12.0299997329712,12.0299997329712,12.0299997329712,10.8983001708984,0,0,0,0
2024-01-31 00:00:00-05:00,11.9324998855591,11.9324998855591,11.9324998855591,11.9324998855591,10.8099727630615,0,0,0,0
2024-02-01 00:00:00-05:00,11.9825000762939,11.9825000762939,11.9825000762939,11.9825000762939,10.8552694320679,0,0,0,0
2024-02-02 00:00:00-05:00,11.9125003814697,11.9125003814697,11.9125003814697,11.9125003814697,10.7918539047241,0,0,0,0
2024-02-05 00:00:00-05:00,11.8400001525879,11.8400001525879,11.8400001525879,11.8400001525879,10.7261743545532,0,0,0,0
2024-02-06 00:00:00-05:00,11.9274997711182,11.9274997711182,11.9274997711182,11.9274997711182,10.8054428100586,0,0,0,0
2024-02-07 00:00:00-05:00,11.8699998855591,11.8699998855591,11.8699998855591,11.8699998855591,10.7533521652222,0,0,0,0
2024-02-08 00:00:00-05:00,11.7974996566772,11.7974996566772,11.7974996566772,11.7974996566772,10.687671661377,0,0,0,0
2024-02-09 00:00:00-05:00,11.8050003051758,11.8050003051758,11.8050003051758,11.8050003051758,10.6944675445557,0,0,0,0
2024-02-12 00:00:00-05:00,11.875,11.875,11.875,11.875,10.7578821182251,0,0,0,0
2024-02-13 00:00:00-05:00,11.727499961853,11.727499961853,11.727499961853,11.727499961853,10.6242580413818,0,0,0,0
2024-02-14 00:00:00-05:00,11.7974996566772,11.7974996566772,11.7974996566772,11.7974996566772,10.687671661377,0,0,0,0
2024-02-15 00:00:00-05:00,11.9049997329712,11.9049997329712,11.9049997329712,11.9049997329712,10.7850589752197,0,0,0,0
2024-02-16 00:00:00-05:00,11.9624996185303,11.9624996185303,11.9624996185303,11.9624996185303,10.8371505737305,0,0,0,0
2024-02-20 00:00:00-05:00,12.0349998474121,12.0349998474121,12.0349998474121,12.0349998474121,10.9028301239014,0,0,0,0
2024-02-21 00:00:00-05:00,12.0550003051758,12.0550003051758,12.0550003051758,12.0550003051758,10.9209489822388,0,0,0,0
2024-02-22 00:00:00-05:00,12.1800003051758,12.1800003051758,12.1800003051758,12.1800003051758,11.0341892242432,0,0,0,0
2024-02-23 00:00:00-05:00,12.1774997711182,12.1774997711182,12.1774997711182,12.1774997711182,11.0319242477417,0,0,0,0
2024-02-26 00:00:00-05:00,12.1525001525879,12.1525001525879,12.1525001525879,12.1525001525879,11.0092763900757,0,0,0,0
2024-02-27 00:00:00-05:00,12.1724996566772,12.1724996566772,12.1724996566772,12.1724996566772,11.0273942947388,0,0,0,0
2024-02-28 00:00:00-05:00,12.1175003051758,12.1175003051758,12.1175003051758,12.1175003051758,10.9775695800781,0,0,0,0
2024-02-29 00:00:00-05:00,12.0900001525879,12.0900001525879,12.0900001525879,12.0900001525879,10.9526567459106,0,0,0,0
2024-03-01 00:00:00-05:00,12.2150001525879,12.2150001525879,12.2150001525879,12.2150001525879,11.065896987915,0,0,0,0
2024-03-04 00:00:00-05:00,12.1549997329712,12.1549997329712,12.1549997329712,12.1549997329712,11.0115404129028,0,0,0,0
2024-03-05 00:00:00-05:00,12.1374998092651,12.1374998092651,12.1374998092651,12.1374998092651,10.9956874847412,0,0,0,0
2024-03-06 00:00:00-05:00,12.2674999237061,12.2674999237061,12.2674999237061,12.2674999237061,11.1134576797485,0,0,0,0
2024-03-07 00:00:00-05:00,12.3699998855591,12.3699998855591,12.3699998855591,12.3699998855591,11.2063150405884,0,0,0,0
2024-03-08 00:00:00-05:00,12.3874998092651,12.3874998092651,12.3874998092651,12.3874998092651,11.2221689224243,0,0,0,0
2024-03-11 00:00:00-04:00,12.4174995422363,12.4174995422363,12.4174995422363,12.4174995422363,11.2493467330933,0,0,0,0
2024-03-12 00:00:00-04:00,12.5299997329712,12.5299997329712,12.5299997329712,12.5299997329712,11.351263999939,0,0,0,0
2024-03-13 00:00:00-04:00,12.5775003433228,12.5775003433228,12.5775003433228,12.5775003433228,11.3942956924438,0,0,0,0
2024-03-14 00:00:00-04:00,12.4875001907349,12.4875001907349,12.4875001907349,12.4875001907349,11.3127613067627,0,0,0,0
2024-03-15 00:00:00-04:00,12.4549999237061,12.4549999237061,12.4549999237061,12.4549999237061,11.2833194732666,0,0,0,0
2024-03-18 00:00:00-04:00,12.4700002670288,12.4700002670288,12.4700002670288,12.4700002670288,11.2969083786011,0,0,0,0
2024-03-19 00:00:00-04:00,12.477499961853,12.477499961853,12.477499961853,12.477499961853,11.3037023544312,0,0,0,0
2024-03-20 00:00:00-04:00,12.5825004577637,12.5825004577637,12.5825004577637,12.5825004577637,11.3988256454468,0,0,0,0
2024-03-21 00:00:00-04:00,12.5749998092651,12.5749998092651,12.5749998092651,12.5749998092651,11.3920297622681,0,0,0,0
2024-03-22 00:00:00-04:00,12.5325002670288,12.5325002670288,12.5325002670288,12.5325002670288,11.3535289764404,0,0,0,0
2024-03-25 00:00:00-04:00,12.5524997711182,12.5524997711182,12.5524997711182,12.5524997711182,11.3716468811035,0,0,0,0
2024-03-26 00:00:00-04:00,12.5749998092651,12.5749998092651,12.5749998092651,12.5749998092651,11.3920297622681,0,0,0,0
2024-03-27 00:00:00-04:00,12.6800003051758,12.6800003051758,12.6800003051758,12.6800003051758,11.4871530532837,0,0,0,0
2024-03-28 00:00:00-04:00,12.6750001907349,12.6750001907349,12.6750001907349,12.6750001907349,11.4826231002808,0,0,0,0
2024-04-01 00:00:00-04:00,12.625,12.625,12.625,12.625,11.4373264312744,0,0,0,0
2024-04-02 00:00:00-04:00,12.5874996185303,12.5874996185303,12.5874996185303,12.5874996185303,11.4033546447754,0,0,0,0
2024-04-03 00:00:00-04:00,12.6724996566772,12.6724996566772,12.6724996566772,12.6724996566772,11.480357170105,0,0,0,0
2024-04-04 00:00:00-04:00,12.6199998855591,12.6199998855591,12.6199998855591,12.6199998855591,11.4327964782715,0,0,0,0
2024-04-05 00:00:00-04:00,12.6225004196167,12.6225004196167,12.6225004196167,12.6225004196167,11.4350624084473,0,0,0,0
2024-04-08 00:00:00-04:00,12.6750001907349,12.6750001907349,12.6750001907349,12.6750001907349,11.4826231002808,0,0,0,0
2024-04-09 00:00:00-04:00,12.7124996185303,12.7124996185303,12.7124996185303,12.7124996185303,11.5165948867798,0,0,0,0
2024-04-10 00:00:00-04:00,12.5900001525879,12.5900001525879,12.5900001525879,12.5900001525879,11.4056186676025,0,0,0,0
2024-04-11 00:00:00-04:00,12.5574998855591,12.5574998855591,12.5574998855591,12.5574998855591,11.3761768341064,0,0,0,0
2024-04-12 00:00:00-04:00,12.3474998474121,12.3474998474121,12.3474998474121,12.3474998474121,11.1859321594238,0,0,0,0
2024-04-15 00:00:00-04:00,12.2799997329712,12.2799997329712,12.2799997329712,12.2799997329712,11.1247816085815,0,0,0,0
2024-04-16 00:00:00-04:00,12.1625003814697,12.1625003814697,12.1625003814697,12.1625003814697,11.0183362960815,0,0,0,0
2024-04-17 00:00:00-04:00,12.1850004196167,12.1850004196167,12.1850004196167,12.1850004196167,11.0387191772461,0,0,0,0
2024-04-18 00:00:00-04:00,12.1999998092651,12.1999998092651,12.1999998092651,12.1999998092651,11.0523071289063,0,0,0,0
2024-04-19 00:00:00-04:00,12.2349996566772,12.2349996566772,12.2349996566772,12.2349996566772,11.0840148925781,0,0,0,0
2024-04-22 00:00:00-04:00,12.4125003814697,12.4125003814697,12.4125003814697,12.4125003814697,11.2448177337646,0,0,0,0
2024-04-23 00:00:00-04:00,12.5124998092651,12.5124998092651,12.5124998092651,12.5124998092651,11.3354091644287,0,0,0,0
2024-04-24 00:00:00-04:00,12.5074996948242,12.5074996948242,12.5074996948242,12.5074996948242,11.3308801651001,0,0,0,0
2024-04-25 00:00:00-04:00,12.5699996948242,12.5699996948242,12.5699996948242,12.5699996948242,11.3874998092651,0,0,0,0
2024-04-26 00:00:00-04:00,12.6149997711182,12.6149997711182,12.6149997711182,12.6149997711182,11.4282674789429,0,0,0,0
2024-04-29 00:00:00-04:00,12.6999998092651,12.6999998092651,12.6999998092651,12.6999998092651,11.5052709579468,0,0,0,0
2024-04-30 00:00:00-04:00,12.5050001144409,12.5050001144409,12.5050001144409,12.5050001144409,11.328616142273,0,0,0,0
2024-05-01 00:00:00-04:00,12.4949998855591,12.4949998855591,12.4949998855591,12.4949998855591,11.3195562362671,0,0,0,0
2024-05-02 00:00:00-04:00,12.6674995422363,12.6674995422363,12.6674995422363,12.6674995422363,11.4758281707764,0,0,0,0
2024-05-03 00:00:00-04:00,12.7524995803833,12.7524995803833,12.7524995803833,12.7524995803833,11.5528316497803,0,0,0,0
2024-05-06 00:00:00-04:00,12.852499961853,12.852499961853,12.852499961853,12.852499961853,11.643424987793,0,0,0,0
2024-05-07 00:00:00-04:00,12.914999961853,12.914999961853,12.914999961853,12.914999961853,11.7000455856323,0,0,0,0
2024-05-08 00:00:00-04:00,12.9350004196167,12.9350004196167,12.9350004196167,12.9350004196167,11.7181644439697,0,0,0,0
2024-05-09 00:00:00-04:00,13.0249996185303,13.0249996185303,13.0249996185303,13.0249996185303,11.7996969223022,0,0,0,0
2024-05-10 00:00:00-04:00,13.1075000762939,13.1075000762939,13.1075000762939,13.1075000762939,11.8744373321533,0,0,0,0
2024-05-13 00:00:00-04:00,13.1824998855591,13.1824998855591,13.1824998855591,13.1824998855591,11.9423809051514,0,0,0,0
2024-05-14 00:00:00-04:00,13.2399997711182,13.2399997711182,13.2399997711182,13.2399997711182,11.9944715499878,0,0,0,0
2024-05-15 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.1077127456665,0,0,0,0
2024-05-16 00:00:00-04:00,13.3500003814697,13.3500003814697,13.3500003814697,13.3500003814697,12.094123840332,0,0,0,0
2024-05-17 00:00:00-04:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.109977722168,0,0,0,0
2024-05-20 00:00:00-04:00,13.397500038147,13.397500038147,13.397500038147,13.397500038147,12.1371555328369,0,0,0,0
2024-05-21 00:00:00-04:00,13.3474998474121,13.3474998474121,13.3474998474121,13.3474998474121,12.0918579101563,0,0,0,0
2024-05-22 00:00:00-04:00,13.2224998474121,13.2224998474121,13.2224998474121,13.2224998474121,11.9786176681519,0,0,0,0
2024-05-23 00:00:00-04:00,13.125,13.125,13.125,13.125,11.8902902603149,0,0,0,0
2024-05-24 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,11.9627647399902,0,0,0,0
2024-05-28 00:00:00-04:00,13.1899995803833,13.1899995803833,13.1899995803833,13.1899995803833,11.9491748809814,0,0,0,0
2024-05-29 00:00:00-04:00,12.9674997329712,12.9674997329712,12.9674997329712,12.9674997329712,11.7476062774658,0,0,0,0
2024-05-30 00:00:00-04:00,13.0699996948242,13.0699996948242,13.0699996948242,13.0699996948242,11.8404636383057,0,0,0,0
2024-05-31 00:00:00-04:00,13.1925001144409,13.1925001144409,13.1925001144409,13.1925001144409,11.9514398574829,0,0,0,0
2024-06-03 00:00:00-04:00,13.1774997711182,13.1774997711182,13.1774997711182,13.1774997711182,11.9378509521484,0,0,0,0
2024-06-04 00:00:00-04:00,13.0550003051758,13.0550003051758,13.0550003051758,13.0550003051758,11.8268756866455,0,0,0,0
2024-06-05 00:00:00-04:00,13.1549997329712,13.1549997329712,13.1549997329712,13.1549997329712,11.9174680709839,0,0,0,0
2024-06-06 00:00:00-04:00,13.1975002288818,13.1975002288818,13.1975002288818,13.1975002288818,11.9559698104858,0,0,0,0
2024-06-07 00:00:00-04:00,13.085000038147,13.085000038147,13.085000038147,13.085000038147,11.8540534973145,0,0,0,0
2024-06-10 00:00:00-04:00,13.039999961853,13.039999961853,13.039999961853,13.039999961853,11.8132858276367,0,0,0,0
2024-06-11 00:00:00-04:00,12.9025001525879,12.9025001525879,12.9025001525879,12.9025001525879,11.6887216567993,0,0,0,0
2024-06-12 00:00:00-04:00,13.0074996948242,13.0074996948242,13.0074996948242,13.0074996948242,11.7838430404663,0,0,0,0
2024-06-13 00:00:00-04:00,12.8275003433228,12.8275003433228,12.8275003433228,12.8275003433228,11.620777130127,0,0,0,0
2024-06-14 00:00:00-04:00,12.7049999237061,12.7049999237061,12.7049999237061,12.7049999237061,11.5098009109497,0,0,0,0
2024-06-17 00:00:00-04:00,12.7574996948242,12.7574996948242,12.7574996948242,12.7574996948242,11.5573616027832,0,0,0,0
2024-06-18 00:00:00-04:00,12.7849998474121,12.7849998474121,12.7849998474121,12.7849998474121,11.5822744369507,0,0,0,0
2024-06-20 00:00:00-04:00,12.8325004577637,12.8325004577637,12.8325004577637,12.8325004577637,11.6253070831299,0,0,0,0
2024-06-21 00:00:00-04:00,12.7200002670288,12.7200002670288,12.7200002670288,12.7200002670288,11.5233898162842,0,0,0,0
2024-06-24 00:00:00-04:00,12.8675003051758,12.8675003051758,12.8675003051758,12.8675003051758,11.6570148468018,0,0,0,0
2024-06-25 00:00:00-04:00,12.8249998092651,12.8249998092651,12.8249998092651,12.8249998092651,11.6185111999512,0,0,0,0
2024-06-26 00:00:00-04:00,12.7399997711182,12.7399997711182,12.7399997711182,12.7399997711182,11.5415086746216,0,0,0,0
2024-06-27 00:00:00-04:00,12.7025003433228,12.7025003433228,12.7025003433228,12.7025003433228,11.5075359344482,0,0,0,0
2024-06-28 00:00:00-04:00,12.6774997711182,12.6774997711182,12.6774997711182,12.6774997711182,11.4848871231079,0,0,0,0
2024-07-01 00:00:00-04:00,12.727499961853,12.727499961853,12.727499961853,12.727499961853,11.5301837921143,0,0,0,0
2024-07-02 00:00:00-04:00,12.727499961853,12.727499961853,12.727499961853,12.727499961853,11.5301837921143,0,0,0,0
2024-07-03 00:00:00-04:00,12.8999996185303,12.8999996185303,12.8999996185303,12.8999996185303,11.6864566802979,0,0,0,0
2024-07-05 00:00:00-04:00,12.960000038147,12.960000038147,12.960000038147,12.960000038147,11.7408123016357,0,0,0,0
2024-07-08 00:00:00-04:00,12.9499998092651,12.9499998092651,12.9499998092651,12.9499998092651,11.7317533493042,0,0,0,0
2024-07-09 00:00:00-04:00,12.9075002670288,12.9075002670288,12.9075002670288,12.9075002670288,11.6932506561279,0,0,0,0
2024-07-10 00:00:00-04:00,13.0649995803833,13.0649995803833,13.0649995803833,13.0649995803833,11.8359336853027,0,0,0,0
2024-07-11 00:00:00-04:00,13.1724996566772,13.1724996566772,13.1724996566772,13.1724996566772,11.9333209991455,0,0,0,0
2024-07-12 00:00:00-04:00,13.2950000762939,13.2950000762939,13.2950000762939,13.2950000762939,12.0442972183228,0,0,0,0
2024-07-15 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,11.9627647399902,0,0,0,0
2024-07-16 00:00:00-04:00,13.2200002670288,13.2200002670288,13.2200002670288,13.2200002670288,11.9763536453247,0,0,0,0
2024-07-17 00:00:00-04:00,13.289999961853,13.289999961853,13.289999961853,13.289999961853,12.0397682189941,0,0,0,0
2024-07-18 00:00:00-04:00,13.1499996185303,13.1499996185303,13.1499996185303,13.1499996185303,11.912938117981,0,0,0,0
2024-07-19 00:00:00-04:00,13.0500001907349,13.0500001907349,13.0500001907349,13.0500001907349,11.8223457336426,0,0,0,0
2024-07-22 00:00:00-04:00,13.1949996948242,13.1949996948242,13.1949996948242,13.1949996948242,11.9537048339844,0,0,0,0
2024-07-23 00:00:00-04:00,13.0874996185303,13.0874996185303,13.0874996185303,13.0874996185303,11.8563175201416,0,0,0,0
2024-07-24 00:00:00-04:00,12.9624996185303,12.9624996185303,12.9624996185303,12.9624996185303,11.7430763244629,0,0,0,0
2024-07-25 00:00:00-04:00,12.9300003051758,12.9300003051758,12.9300003051758,12.9300003051758,11.7136344909668,0,0,0,0
2024-07-26 00:00:00-04:00,13.0325002670288,13.0325002670288,13.0325002670288,13.0325002670288,11.8064918518066,0,0,0,0
2024-07-29 00:00:00-04:00,13.0150003433228,13.0150003433228,13.0150003433228,13.0150003433228,11.7906379699707,0,0,0,0
2024-07-30 00:00:00-04:00,12.9825000762939,12.9825000762939,12.9825000762939,12.9825000762939,11.7611951828003,0,0,0,0
2024-07-31 00:00:00-04:00,13.0799999237061,13.0799999237061,13.0799999237061,13.0799999237061,11.8495235443115,0,0,0,0
2024-08-01 00:00:00-04:00,12.8299999237061,12.8299999237061,12.8299999237061,12.8299999237061,11.6230411529541,0,0,0,0
2024-08-02 00:00:00-04:00,12.6400003433228,12.6400003433228,12.6400003433228,12.6400003433228,11.4509162902832,0,0,0,0
2024-08-05 00:00:00-04:00,12.3599996566772,12.3599996566772,12.3599996566772,12.3599996566772,11.1972551345825,0,0,0,0
2024-08-06 00:00:00-04:00,12.3649997711182,12.3649997711182,12.3649997711182,12.3649997711182,11.2017850875855,0,0,0,0
2024-08-07 00:00:00-04:00,12.4475002288818,12.4475002288818,12.4475002288818,12.4475002288818,11.2765245437622,0,0,0,0
2024-08-08 00:00:00-04:00,12.6575002670288,12.6575002670288,12.6575002670288,12.6575002670288,11.4667701721191,0,0,0,0
2024-08-09 00:00:00-04:00,12.6899995803833,12.6899995803833,12.6899995803833,12.6899995803833,11.4962120056152,0,0,0,0
2024-08-12 00:00:00-04:00,12.6949996948242,12.6949996948242,12.6949996948242,12.6949996948242,11.5007410049438,0,0,0,0
2024-08-13 00:00:00-04:00,12.8474998474121,12.8474998474121,12.8474998474121,12.8474998474121,11.6388959884644,0,0,0,0
2024-08-14 00:00:00-04:00,12.875,12.875,12.875,12.875,11.6638088226318,0,0,0,0
2024-08-15 00:00:00-04:00,13.0450000762939,13.0450000762939,13.0450000762939,13.0450000762939,11.8178157806396,0,0,0,0
2024-08-16 00:00:00-04:00,13.1350002288818,13.1350002288818,13.1350002288818,13.1350002288818,11.8993501663208,0,0,0,0
2024-08-19 00:00:00-04:00,13.2849998474121,13.2849998474121,13.2849998474121,13.2849998474121,12.0352382659912,0,0,0,0
2024-08-20 00:00:00-04:00,13.2124996185303,13.2124996185303,13.2124996185303,13.2124996185303,11.9695587158203,0,0,0,0
2024-08-21 00:00:00-04:00,13.2749996185303,13.2749996185303,13.2749996185303,13.2749996185303,12.0261783599854,0,0,0,0
2024-08-22 00:00:00-04:00,13.2049999237061,13.2049999237061,13.2049999237061,13.2049999237061,11.9627647399902,0,0,0,0
2024-08-23 00:00:00-04:00,13.4025001525879,13.4025001525879,13.4025001525879,13.4025001525879,12.1416845321655,0,0,0,0
2024-08-26 00:00:00-04:00,13.3774995803833,13.3774995803833,13.3774995803833,13.3774995803833,12.1190357208252,0,0,0,0
2024-08-27 00:00:00-04:00,13.4449996948242,13.4449996948242,13.4449996948242,13.4449996948242,12.1801872253418,0,0,0,0
2024-08-28 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.1077127456665,0,0,0,0
2024-08-29 00:00:00-04:00,13.4049997329712,13.4049997329712,13.4049997329712,13.4049997329712,12.143949508667,0,0,0,0
2024-08-30 00:00:00-04:00,13.4650001525879,13.4650001525879,13.4650001525879,13.4650001525879,12.1983051300049,0,0,0,0
2024-09-03 00:00:00-04:00,13.2550001144409,13.2550001144409,13.2550001144409,13.2550001144409,12.0080604553223,0,0,0,0
2024-09-04 00:00:00-04:00,13.2700004577637,13.2700004577637,13.2700004577637,13.2700004577637,12.0216493606567,0,0,0,0
2024-09-05 00:00:00-04:00,13.3024997711182,13.3024997711182,13.3024997711182,13.3024997711182,12.0510921478271,0,0,0,0
2024-09-06 00:00:00-04:00,13.0924997329712,13.0924997329712,13.0924997329712,13.0924997329712,11.8608474731445,0,0,0,0
2024-09-09 00:00:00-04:00,13.1850004196167,13.1850004196167,13.1850004196167,13.1850004196167,11.9446468353271,0,0,0,0
2024-09-10 00:00:00-04:00,13.1324996948242,13.1324996948242,13.1324996948242,13.1324996948242,11.897084236145,0,0,0,0
2024-09-11 00:00:00-04:00,13.1599998474121,13.1599998474121,13.1599998474121,13.1599998474121,11.9219980239868,0,0,0,0
2024-09-12 00:00:00-04:00,13.2550001144409,13.2550001144409,13.2550001144409,13.2550001144409,12.0080604553223,0,0,0,0
2024-09-13 00:00:00-04:00,13.3249998092651,13.3249998092651,13.3249998092651,13.3249998092651,12.0714750289917,0,0,0,0
2024-09-16 00:00:00-04:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.109977722168,0,0,0,0
2024-09-17 00:00:00-04:00,13.4300003051758,13.4300003051758,13.4300003051758,13.4300003051758,12.1665983200073,0,0,0,0
2024-09-18 00:00:00-04:00,13.4075002670288,13.4075002670288,13.4075002670288,13.4075002670288,12.1462144851685,0,0,0,0
2024-09-19 00:00:00-04:00,13.625,13.625,13.625,13.625,12.3432540893555,0,0,0,0
2024-09-20 00:00:00-04:00,13.5150003433228,13.5150003433228,13.5150003433228,13.5150003433228,12.2436017990112,0,0,0,0
2024-09-23 00:00:00-04:00,13.5574998855591,13.5574998855591,13.5574998855591,13.5574998855591,12.2821025848389,0,0,0,0
2024-09-24 00:00:00-04:00,13.7600002288818,13.7600002288818,13.7600002288818,13.7600002288818,12.4655542373657,0,0,0,0
2024-09-25 00:00:00-04:00,13.6949996948242,13.6949996948242,13.6949996948242,13.6949996948242,12.4066677093506,0,0,0,0
2024-09-26 00:00:00-04:00,14.0024995803833,14.0024995803833,14.0024995803833,14.0024995803833,12.6852397918701,0,0,0,0
2024-09-27 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,12.8347187042236,0,0,0,0
2024-09-30 00:00:00-04:00,13.9425001144409,13.9425001144409,13.9425001144409,13.9425001144409,12.6308860778809,0,0,0,0
2024-10-01 00:00:00-04:00,13.9174995422363,13.9174995422363,13.9174995422363,13.9174995422363,12.6082372665405,0,0,0,0
2024-10-02 00:00:00-04:00,13.9549999237061,13.9549999237061,13.9549999237061,13.9549999237061,12.6422090530396,0,0,0,0
2024-10-03 00:00:00-04:00,13.7950000762939,13.7950000762939,13.7950000762939,13.7950000762939,12.4972610473633,0,0,0,0
2024-10-04 00:00:00-04:00,13.9274997711182,13.9274997711182,13.9274997711182,13.9274997711182,12.6172962188721,0,0,0,0
2024-10-07 00:00:00-04:00,13.8924999237061,13.8924999237061,13.8924999237061,13.8924999237061,12.5855894088745,0,0,0,0
2024-10-08 00:00:00-04:00,13.7749996185303,13.7749996185303,13.7749996185303,13.7749996185303,12.4791421890259,0,0,0,0
2024-10-09 00:00:00-04:00,13.8125,13.8125,13.8125,13.8125,12.5131149291992,0,0,0,0
2024-10-10 00:00:00-04:00,13.789999961853,13.789999961853,13.789999961853,13.789999961853,12.4927310943604,0,0,0,0
2024-10-11 00:00:00-04:00,13.8199996948242,13.8199996948242,13.8199996948242,13.8199996948242,12.5199089050293,0,0,0,0
2024-10-14 00:00:00-04:00,13.8249998092651,13.8249998092651,13.8249998092651,13.8249998092651,12.5244388580322,0,0,0,0
2024-10-15 00:00:00-04:00,13.6274995803833,13.6274995803833,13.6274995803833,13.6274995803833,12.3455181121826,0,0,0,0
2024-10-16 00:00:00-04:00,13.6674995422363,13.6674995422363,13.6674995422363,13.6674995422363,12.3817548751831,0,0,0,0
2024-10-17 00:00:00-04:00,13.6975002288818,13.6975002288818,13.6975002288818,13.6975002288818,12.4089336395264,0,0,0,0
2024-10-18 00:00:00-04:00,13.7875003814697,13.7875003814697,13.7875003814697,13.7875003814697,12.4904670715332,0,0,0,0
2024-10-21 00:00:00-04:00,13.664999961853,13.664999961853,13.664999961853,13.664999961853,12.379490852356,0,0,0,0
2024-10-22 00:00:00-04:00,13.6125001907349,13.6125001907349,13.6125001907349,13.6125001907349,12.3319292068481,0,0,0,0
2024-10-23 00:00:00-04:00,13.5299997329712,13.5299997329712,13.5299997329712,13.5299997329712,12.2571897506714,0,0,0,0
2024-10-24 00:00:00-04:00,13.585000038147,13.585000038147,13.585000038147,13.585000038147,12.3070163726807,0,0,0,0
2024-10-25 00:00:00-04:00,13.5625,13.5625,13.5625,13.5625,12.2866325378418,0,0,0,0
2024-10-28 00:00:00-04:00,13.6724996566772,13.6724996566772,13.6724996566772,13.6724996566772,12.386284828186,0,0,0,0
2024-10-29 00:00:00-04:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.3115463256836,0,0,0,0
2024-10-30 00:00:00-04:00,13.4875001907349,13.4875001907349,13.4875001907349,13.4875001907349,12.2186889648438,0,0,0,0
2024-10-31 00:00:00-04:00,13.3649997711182,13.3649997711182,13.3649997711182,13.3649997711182,12.1077127456665,0,0,0,0
2024-11-01 00:00:00-04:00,13.4274997711182,13.4274997711182,13.4274997711182,13.4274997711182,12.1643323898315,0,0,0,0
2024-11-04 00:00:00-05:00,13.4700002670288,13.4700002670288,13.4700002670288,13.4700002670288,12.2028350830078,0,0,0,0
2024-11-05 00:00:00-05:00,13.602499961853,13.602499961853,13.602499961853,13.602499961853,12.3228702545166,0,0,0,0
2024-11-06 00:00:00-05:00,13.5074996948242,13.5074996948242,13.5074996948242,13.5074996948242,12.2368068695068,0,0,0,0
2024-11-07 00:00:00-05:00,13.602499961853,13.602499961853,13.602499961853,13.602499961853,12.3228702545166,0,0,0,0
2024-11-08 00:00:00-05:00,13.4525003433228,13.4525003433228,13.4525003433228,13.4525003433228,12.1869812011719,0,0,0,0
2024-11-11 00:00:00-05:00,13.477499961853,13.477499961853,13.477499961853,13.477499961853,12.2096290588379,0,0,0,0
2024-11-12 00:00:00-05:00,13.1850004196167,13.1850004196167,13.1850004196167,13.1850004196167,11.9446468353271,0,0,0,0
2024-11-13 00:00:00-05:00,13.1199998855591,13.1199998855591,13.1199998855591,13.1199998855591,11.885760307312,0,0,0,0
2024-11-14 00:00:00-05:00,13.1499996185303,13.1499996185303,13.1499996185303,13.1499996185303,11.912938117981,0,0,0,0
2024-11-15 00:00:00-05:00,13.1175003051758,13.1175003051758,13.1175003051758,13.1175003051758,11.8834953308105,0,0,0,0
2024-11-18 00:00:00-05:00,13.2075004577637,13.2075004577637,13.2075004577637,13.2075004577637,11.9650297164917,0,0,0,0
2024-11-19 00:00:00-05:00,13.1625003814697,13.1625003814697,13.1625003814697,13.1625003814697,11.9242630004883,0,0,0,0
2024-11-20 00:00:00-05:00,13.125,13.125,13.125,13.125,11.8902902603149,0,0,0,0
2024-11-21 00:00:00-05:00,13.1225004196167,13.1225004196167,13.1225004196167,13.1225004196167,11.8880252838135,0,0,0,0
2024-11-22 00:00:00-05:00,13.1225004196167,13.1225004196167,13.1225004196167,13.1225004196167,11.8880252838135,0,0,0,0
2024-11-25 00:00:00-05:00,13.210000038147,13.210000038147,13.210000038147,13.210000038147,11.9672946929932,0,0,0,0
2024-11-26 00:00:00-05:00,13.1099996566772,13.1099996566772,13.1099996566772,13.1099996566772,11.8767013549805,0,0,0,0
2024-11-27 00:00:00-05:00,13.164999961853,13.164999961853,13.164999961853,13.164999961853,11.9265270233154,0,0,0,0
2024-11-29 00:00:00-05:00,13.2075004577637,13.2075004577637,13.2075004577637,13.2075004577637,11.9650297164917,0,0,0,0
2024-12-02 00:00:00-05:00,13.1975002288818,13.1975002288818,13.1975002288818,13.1975002288818,11.9559698104858,0,0,0,0
2024-12-03 00:00:00-05:00,13.2650003433228,13.2650003433228,13.2650003433228,13.2650003433228,12.0171203613281,0,0,0,0
2024-12-04 00:00:00-05:00,13.25,13.25,13.25,13.25,12.0035305023193,0,0,0,0
2024-12-05 00:00:00-05:00,13.3824996948242,13.3824996948242,13.3824996948242,13.3824996948242,12.1235656738281,0,0,0,0
2024-12-06 00:00:00-05:00,13.3774995803833,13.3774995803833,13.3774995803833,13.3774995803833,12.1190357208252,0,0,0,0
2024-12-09 00:00:00-05:00,13.4425001144409,13.4425001144409,13.4425001144409,13.4425001144409,12.1779222488403,0,0,0,0
2024-12-10 00:00:00-05:00,13.3175001144409,13.3175001144409,13.3175001144409,13.3175001144409,12.0646820068359,0,0,0,0
2024-12-11 00:00:00-05:00,13.3024997711182,13.3024997711182,13.3024997711182,13.3024997711182,12.0510921478271,0,0,0,0
2024-12-12 00:00:00-05:00,13.2624998092651,13.2624998092651,13.2624998092651,13.2624998092651,12.0148553848267,0,0,0,0
2024-12-13 00:00:00-05:00,13.1875,13.1875,13.1875,13.1875,11.9469108581543,0,0,0,0
2024-12-16 00:00:00-05:00,13.1075000762939,13.1075000762939,13.1075000762939,13.1075000762939,11.8744373321533,0,0,0,0
2024-12-17 00:00:00-05:00,13.0349998474121,13.0349998474121,13.0349998474121,13.0349998474121,11.8087558746338,0,0,0,0
2024-12-18 00:00:00-05:00,12.4525003433228,12.4525003433228,12.4525003433228,12.4525003433228,11.5296020507813,0,0.281,0,0
2024-12-19 00:00:00-05:00,12.3850002288818,12.3850002288818,12.3850002288818,12.3850002288818,11.4671049118042,0,0,0,0
2024-12-20 00:00:00-05:00,12.4250001907349,12.4250001907349,12.4250001907349,12.4250001907349,11.5041399002075,0,0,0,0
2024-12-23 00:00:00-05:00,12.5024995803833,12.5024995803833,12.5024995803833,12.5024995803833,11.5758953094482,0,0,0,0
2024-12-24 00:00:00-05:00,12.5349998474121,12.5349998474121,12.5349998474121,12.5349998474121,11.6059875488281,0,0,0,0
2024-12-26 00:00:00-05:00,12.5349998474121,12.5349998474121,12.5349998474121,12.5349998474121,11.6059875488281,0,0,0,0
2024-12-27 00:00:00-05:00,12.5450000762939,12.5450000762939,12.5450000762939,12.5450000762939,11.6152467727661,0,0,0,0
2024-12-30 00:00:00-05:00,12.4825000762939,12.4825000762939,12.4825000762939,12.4825000762939,11.5573787689209,0,0,0,0
2024-12-31 00:00:00-05:00,12.4750003814697,12.4750003814697,12.4750003814697,12.4750003814697,11.5504341125488,0,0,0,0
2025-01-02 00:00:00-05:00,12.4300003051758,12.4300003051758,12.4300003051758,12.4300003051758,11.5087699890137,0,0,0,0
2025-01-03 00:00:00-05:00,12.4624996185303,12.4624996185303,12.4624996185303,12.4624996185303,11.5388603210449,0,0,0,0
2025-01-06 00:00:00-05:00,12.602499961853,12.602499961853,12.602499961853,12.602499961853,11.6684846878052,0,0,0,0
2025-01-07 00:00:00-05:00,12.6149997711182,12.6149997711182,12.6149997711182,12.6149997711182,11.6800584793091,0,0,0,0
2025-01-08 00:00:00-05:00,12.5574998855591,12.5574998855591,12.5574998855591,12.5574998855591,11.6268196105957,0,0,0,0
2025-01-10 00:00:00-05:00,12.3299999237061,12.3299999237061,12.3299999237061,12.3299999237061,11.4161806106567,0,0,0,0
2025-01-13 00:00:00-05:00,12.3024997711182,12.3024997711182,12.3024997711182,12.3024997711182,11.390718460083,0,0,0,0
2025-01-14 00:00:00-05:00,12.3800001144409,12.3800001144409,12.3800001144409,12.3800001144409,11.462474822998,0,0,0,0
2025-01-15 00:00:00-05:00,12.539999961853,12.539999961853,12.539999961853,12.539999961853,11.61061668396,0,0,0,0
2025-01-16 00:00:00-05:00,12.6125001907349,12.6125001907349,12.6125001907349,12.6125001907349,11.6777439117432,0,0,0,0
2025-01-17 00:00:00-05:00,12.7049999237061,12.7049999237061,12.7049999237061,12.7049999237061,11.7633876800537,0,0,0,0
2025-01-21 00:00:00-05:00,12.8625001907349,12.8625001907349,12.8625001907349,12.8625001907349,11.9092149734497,0,0,0,0
2025-01-22 00:00:00-05:00,12.8725004196167,12.8725004196167,12.8725004196167,12.8725004196167,11.9184741973877,0,0,0,0
2025-01-23 00:00:00-05:00,12.9674997329712,12.9674997329712,12.9674997329712,12.9674997329712,12.0064334869385,0,0,0,0
2025-01-24 00:00:00-05:00,13.0249996185303,13.0249996185303,13.0249996185303,13.0249996185303,12.0596714019775,0,0,0,0
2025-01-27 00:00:00-05:00,13.0024995803833,13.0024995803833,13.0024995803833,13.0024995803833,12.03883934021,0,0,0,0
2025-01-28 00:00:00-05:00,13.0150003433228,13.0150003433228,13.0150003433228,13.0150003433228,12.0504131317139,0,0,0,0
2025-01-29 00:00:00-05:00,13.0200004577637,13.0200004577637,13.0200004577637,13.0200004577637,12.05504322052,0,0,0,0
2025-01-30 00:00:00-05:00,13.1525001525879,13.1525001525879,13.1525001525879,13.1525001525879,12.1777229309082,0,0,0,0
2025-01-31 00:00:00-05:00,13.0649995803833,13.0649995803833,13.0649995803833,13.0649995803833,12.0967073440552,0,0,0,0
2025-02-03 00:00:00-05:00,12.8924999237061,12.8924999237061,12.8924999237061,12.8924999237061,11.9369916915894,0,0,0,0
2025-02-04 00:00:00-05:00,13.0600004196167,13.0600004196167,13.0600004196167,13.0600004196167,12.0920782089233,0,0,0,0
2025-02-05 00:00:00-05:00,13.1999998092651,13.1999998092651,13.1999998092651,13.1999998092651,12.2217016220093,0,0,0,0
2025-02-06 00:00:00-05:00,13.352499961853,13.352499961853,13.352499961853,13.352499961853,12.3628997802734,0,0,0,0
2025-02-07 00:00:00-05:00,13.2624998092651,13.2624998092651,13.2624998092651,13.2624998092651,12.2795696258545,0,0,0,0
2025-02-10 00:00:00-05:00,13.3675003051758,13.3675003051758,13.3675003051758,13.3675003051758,12.3767881393433,0,0,0,0
2025-02-11 00:00:00-05:00,13.3950004577637,13.3950004577637,13.3950004577637,13.3950004577637,12.402250289917,0,0,0,0
2025-02-12 00:00:00-05:00,13.477499961853,13.477499961853,13.477499961853,13.477499961853,12.4786357879639,0,0,0,0
2025-02-13 00:00:00-05:00,13.5924997329712,13.5924997329712,13.5924997329712,13.5924997329712,12.5851125717163,0,0,0,0
2025-02-14 00:00:00-05:00,13.6374998092651,13.6374998092651,13.6374998092651,13.6374998092651,12.6267766952515,0,0,0,0
2025-02-18 00:00:00-05:00,13.7425003051758,13.7425003051758,13.7425003051758,13.7425003051758,12.7239952087402,0,0,0,0
2025-02-19 00:00:00-05:00,13.6049995422363,13.6049995422363,13.6049995422363,13.6049995422363,12.5966854095459,0,0,0,0
2025-02-20 00:00:00-05:00,13.6724996566772,13.6724996566772,13.6724996566772,13.6724996566772,12.659182548523,0,0,0,0
2025-02-21 00:00:00-05:00,13.647500038147,13.647500038147,13.647500038147,13.647500038147,12.6360359191895,0,0,0,0
2025-02-24 00:00:00-05:00,13.5349998474121,13.5349998474121,13.5349998474121,13.5349998474121,12.5318737030029,0,0,0,0
2025-02-25 00:00:00-05:00,13.647500038147,13.647500038147,13.647500038147,13.647500038147,12.6360359191895,0,0,0,0
2025-02-26 00:00:00-05:00,13.7299995422363,13.7299995422363,13.7299995422363,13.7299995422363,12.7124214172363,0,0,0,0
2025-02-27 00:00:00-05:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.5827980041504,0,0,0,0
2025-02-28 00:00:00-05:00,13.6549997329712,13.6549997329712,13.6549997329712,13.6549997329712,12.6429796218872,0,0,0,0
2025-03-03 00:00:00-05:00,13.6700000762939,13.6700000762939,13.6700000762939,13.6700000762939,12.6568689346313,0,0,0,0
2025-03-04 00:00:00-05:00,13.5900001525879,13.5900001525879,13.5900001525879,13.5900001525879,12.5827980041504,0,0,0,0
2025-03-05 00:00:00-05:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,12.9230613708496,0,0,0,0
2025-03-06 00:00:00-05:00,13.9650001525879,13.9650001525879,13.9650001525879,13.9650001525879,12.9300050735474,0,0,0,0
2025-03-07 00:00:00-05:00,14.0675001144409,14.0675001144409,14.0675001144409,14.0675001144409,13.0249090194702,0,0,0,0
2025-03-10 00:00:00-04:00,13.7775001525879,13.7775001525879,13.7775001525879,13.7775001525879,12.756402015686,0,0,0,0
2025-03-11 00:00:00-04:00,13.710000038147,13.710000038147,13.710000038147,13.710000038147,12.6939039230347,0,0,0,0
2025-03-12 00:00:00-04:00,13.7674999237061,13.7674999237061,13.7674999237061,13.7674999237061,12.747142791748,0,0,0,0
2025-03-13 00:00:00-04:00,13.6875,13.6875,13.6875,13.6875,12.6730718612671,0,0,0,0
2025-03-14 00:00:00-04:00,13.9350004196167,13.9350004196167,13.9350004196167,13.9350004196167,12.902229309082,0,0,0,0
2025-03-17 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,13.1174964904785,0,0,0,0
2025-03-18 00:00:00-04:00,14.2124996185303,14.2124996185303,14.2124996185303,14.2124996185303,13.159161567688,0,0,0,0
2025-03-19 00:00:00-04:00,14.227499961853,14.227499961853,14.227499961853,14.227499961853,13.1730499267578,0,0,0,0
2025-03-20 00:00:00-04:00,14.1149997711182,14.1149997711182,14.1149997711182,14.1149997711182,13.0688877105713,0,0,0,0
2025-03-21 00:00:00-04:00,14.0124998092651,14.0124998092651,14.0124998092651,14.0124998092651,12.9739847183228,0,0,0,0
2025-03-24 00:00:00-04:00,14.0150003433228,14.0150003433228,14.0150003433228,14.0150003433228,12.976300239563,0,0,0,0
2025-03-25 00:00:00-04:00,14.0775003433228,14.0775003433228,14.0775003433228,14.0775003433228,13.0341672897339,0,0,0,0
2025-03-26 00:00:00-04:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,12.9230613708496,0,0,0,0
2025-03-27 00:00:00-04:00,13.9549999237061,13.9549999237061,13.9549999237061,13.9549999237061,12.9207458496094,0,0,0,0
2025-03-28 00:00:00-04:00,13.8000001907349,13.8000001907349,13.8000001907349,13.8000001907349,12.7772340774536,0,0,0,0
2025-03-31 00:00:00-04:00,13.6824998855591,13.6824998855591,13.6824998855591,13.6824998855591,12.6684417724609,0,0,0,0
2025-04-01 00:00:00-04:00,13.727499961853,13.727499961853,13.727499961853,13.727499961853,12.7101068496704,0,0,0,0
2025-04-02 00:00:00-04:00,13.7475004196167,13.7475004196167,13.7475004196167,13.7475004196167,12.7286252975464,0,0,0,0
2025-04-03 00:00:00-04:00,13.4674997329712,13.4674997329712,13.4674997329712,13.4674997329712,12.4693765640259,0,0,0,0
2025-04-04 00:00:00-04:00,12.6424999237061,12.6424999237061,12.6424999237061,12.6424999237061,11.7055206298828,0,0,0,0
2025-04-07 00:00:00-04:00,12.2799997329712,12.2799997329712,12.2799997329712,12.2799997329712,11.3698863983154,0,0,0,0
2025-04-08 00:00:00-04:00,12.1774997711182,12.1774997711182,12.1774997711182,12.1774997711182,11.2749824523926,0,0,0,0
2025-04-09 00:00:00-04:00,12.7574996948242,12.7574996948242,12.7574996948242,12.7574996948242,11.8119964599609,0,0,0,0
2025-04-10 00:00:00-04:00,12.6899995803833,12.6899995803833,12.6899995803833,12.6899995803833,11.7494993209839,0,0,0,0
2025-04-11 00:00:00-04:00,12.9399995803833,12.9399995803833,12.9399995803833,12.9399995803833,11.9809713363647,0,0,0,0
2025-04-14 00:00:00-04:00,13.1350002288818,13.1350002288818,13.1350002288818,13.1350002288818,12.1615200042725,0,0,0,0
2025-04-15 00:00:00-04:00,13.2425003051758,13.2425003051758,13.2425003051758,13.2425003051758,12.2610521316528,0,0,0,0
2025-04-16 00:00:00-04:00,13.1674995422363,13.1674995422363,13.1674995422363,13.1674995422363,12.1916103363037,0,0,0,0
2025-04-17 00:00:00-04:00,13.289999961853,13.289999961853,13.289999961853,13.289999961853,12.3050317764282,0,0,0,0
2025-04-21 00:00:00-04:00,13.2174997329712,13.2174997329712,13.2174997329712,13.2174997329712,12.237904548645,0,0,0,0
2025-04-22 00:00:00-04:00,13.4949998855591,13.4949998855591,13.4949998855591,13.4949998855591,12.4948387145996,0,0,0,0
2025-04-23 00:00:00-04:00,13.6125001907349,13.6125001907349,13.6125001907349,13.6125001907349,12.603630065918,0,0,0,0
2025-04-24 00:00:00-04:00,13.7924995422363,13.7924995422363,13.7924995422363,13.7924995422363,12.7702894210815,0,0,0,0
2025-04-25 00:00:00-04:00,13.835000038147,13.835000038147,13.835000038147,13.835000038147,12.8096399307251,0,0,0,0
2025-04-28 00:00:00-04:00,13.9575004577637,13.9575004577637,13.9575004577637,13.9575004577637,12.9230613708496,0,0,0,0
2025-04-29 00:00:00-04:00,13.9624996185303,13.9624996185303,13.9624996185303,13.9624996185303,12.9276905059814,0,0,0,0
2025-04-30 00:00:00-04:00,13.9650001525879,13.9650001525879,13.9650001525879,13.9650001525879,12.9300050735474,0,0,0,0
2025-05-01 00:00:00-04:00,13.9399995803833,13.9399995803833,13.9399995803833,13.9399995803833,12.9068574905396,0,0,0,0
2025-05-02 00:00:00-04:00,14.1549997329712,14.1549997329712,14.1549997329712,14.1549997329712,13.1059236526489,0,0,0,0
2025-05-05 00:00:00-04:00,14.1674995422363,14.1674995422363,14.1674995422363,14.1674995422363,13.1174964904785,0,0,0,0
2025-05-06 00:00:00-04:00,14.2049999237061,14.2049999237061,14.2049999237061,14.2049999237061,13.1522178649902,0,0,0,0
2025-05-07 00:00:00-04:00,14.1125001907349,14.1125001907349,14.1125001907349,14.1125001907349,13.0665731430054,0,0,0,0
2025-05-08 00:00:00-04:00,14.1199998855591,14.1199998855591,14.1199998855591,14.1199998855591,13.0735177993774,0,0,0,0
2025-05-09 00:00:00-04:00,14.2399997711182,14.2399997711182,14.2399997711182,14.2399997711182,13.1846237182617,0,0,0,0
2025-05-12 00:00:00-04:00,14.4324998855591,14.4324998855591,14.4324998855591,14.4324998855591,13.3628568649292,0,0,0,0
2025-05-13 00:00:00-04:00,14.4849996566772,14.4849996566772,14.4849996566772,14.4849996566772,13.4114656448364,0,0,0,0
2025-05-14 00:00:00-04:00,14.4700002670288,14.4700002670288,14.4700002670288,14.4700002670288,13.3975782394409,0,0,0,0
2025-05-15 00:00:00-04:00,14.5524997711182,14.5524997711182,14.5524997711182,14.5524997711182,13.4739627838135,0,0,0,0
2025-05-16 00:00:00-04:00,14.6000003814697,14.6000003814697,14.6000003814697,14.6000003814697,13.5179433822632,0,0,0,0
2025-05-19 00:00:00-04:00,14.710000038147,14.710000038147,14.710000038147,14.710000038147,13.6197910308838,0,0,0,0
2025-05-20 00:00:00-04:00,14.772500038147,14.772500038147,14.772500038147,14.772500038147,13.6776580810547,0,0,0,0
2025-05-21 00:00:00-04:00,14.6925001144409,14.6925001144409,14.6925001144409,14.6925001144409,13.603588104248,0,0,0,0
2025-05-22 00:00:00-04:00,14.6899995803833,14.6899995803833,14.6899995803833,14.6899995803833,13.6012725830078,0,0,0,0
2025-05-23 00:00:00-04:00,14.7075004577637,14.7075004577637,14.7075004577637,14.7075004577637,13.6174764633179,0,0,0,0
2025-05-27 00:00:00-04:00,14.8649997711182,14.8649997711182,14.8649997711182,14.8649997711182,13.7633028030396,0,0,0,0
2025-05-28 00:00:00-04:00,14.7174997329712,14.7174997329712,14.7174997329712,14.7174997329712,13.6267347335815,0,0,0,0
2025-05-29 00:00:00-04:00,14.8199996948242,14.8199996948242,14.8199996948242,14.8199996948242,13.7216377258301,0,0,0,0
2025-05-30 00:00:00-04:00,14.7799997329712,14.7799997329712,14.7799997329712,14.7799997329712,13.6846027374268,0,0,0,0
2025-06-02 00:00:00-04:00,14.8950004577637,14.8950004577637,14.8950004577637,14.8950004577637,13.7910804748535,0,0,0,0
2025-06-03 00:00:00-04:00,14.8450002670288,14.8450002670288,14.8450002670288,14.8450002670288,13.7447853088379,0,0,0,0
2025-06-04 00:00:00-04:00,14.9300003051758,14.9300003051758,14.9300003051758,14.9300003051758,13.823486328125,0,0,0,0
2025-06-05 00:00:00-04:00,14.9700002670288,14.9700002670288,14.9700002670288,14.9700002670288,13.8605213165283,0,0,0,0
2025-06-06 00:00:00-04:00,15.0275001525879,15.0275001525879,15.0275001525879,15.0275001525879,13.9137592315674,0,0,0,0
2025-06-09 00:00:00-04:00,15.0775003433228,15.0775003433228,15.0775003433228,15.0775003433228,13.960054397583,0,0,0,0
2025-06-10 00:00:00-04:00,15.0775003433228,15.0775003433228,15.0775003433228,15.0775003433228,13.960054397583,0,0,0,0
2025-06-11 00:00:00-04:00,15.1300001144409,15.1300001144409,15.1300001144409,15.1300001144409,14.0086631774902,0,0,0,0
2025-06-12 00:00:00-04:00,15.1925001144409,15.1925001144409,15.1925001144409,15.1925001144409,14.0665311813355,0,0,0,0
2025-06-13 00:00:00-04:00,14.9899997711182,14.9899997711182,14.9899997711182,14.9899997711182,13.87903881073,0,0,0,0
2025-06-16 00:00:00-04:00,15.1149997711182,15.1149997711182,15.1149997711182,15.1149997711182,13.9947748184204,0,0,0,0
2025-06-17 00:00:00-04:00,14.960000038147,14.960000038147,14.960000038147,14.960000038147,13.8512620925903,0,0,0,0
2025-06-18 00:00:00-04:00,14.897500038147,14.897500038147,14.897500038147,14.897500038147,13.7933940887451,0,0,0,0
2025-06-20 00:00:00-04:00,14.7974996566772,14.7974996566772,14.7974996566772,14.7974996566772,13.7008056640625,0,0,0,0
2025-06-23 00:00:00-04:00,14.8675003051758,14.8675003051758,14.8675003051758,14.8675003051758,13.7656183242798,0,0,0,0
2025-06-24 00:00:00-04:00,15.0900001525879,15.0900001525879,15.0900001525879,15.0900001525879,13.9716272354126,0,0,0,0
2025-06-25 00:00:00-04:00,15.0249996185303,15.0249996185303,15.0249996185303,15.0249996185303,13.9114446640015,0,0,0,0
2025-06-26 00:00:00-04:00,15.1424999237061,15.1424999237061,15.1424999237061,15.1424999237061,14.0202360153198,0,0,0,0
2025-06-27 00:00:00-04:00,15.2650003433228,15.2650003433228,15.2650003433228,15.2650003433228,14.1336574554443,0,0,0,0
2025-06-30 00:00:00-04:00,15.2674999237061,15.2674999237061,15.2674999237061,15.2674999237061,14.1359720230103,0,0,0,0
2025-07-01 00:00:00-04:00,15.3149995803833,15.3149995803833,15.3149995803833,15.3149995803833,14.1799516677856,0,0,0,0
2025-07-02 00:00:00-04:00,15.3850002288818,15.3850002288818,15.3850002288818,15.3850002288818,14.2447643280029,0,0,0,0
2025-07-03 00:00:00-04:00,15.3850002288818,15.3850002288818,15.3850002288818,15.3850002288818,14.2447643280029,0,0,0,0
2025-07-07 00:00:00-04:00,15.2600002288818,15.2600002288818,15.2600002288818,15.2600002288818,14.1290283203125,0,0,0,0
2025-07-08 00:00:00-04:00,15.3374996185303,15.3374996185303,15.3374996185303,15.3374996185303,14.2007837295532,0,0,0,0
2025-07-09 00:00:00-04:00,15.3800001144409,15.3800001144409,15.3800001144409,15.3800001144409,14.2401342391968,0,0,0,0
2025-07-10 00:00:00-04:00,15.4300003051758,15.4300003051758,15.4300003051758,15.4300003051758,14.2864294052124,0,0,0,0
2025-07-11 00:00:00-04:00,15.3149995803833,15.3149995803833,15.3149995803833,15.3149995803833,14.1799516677856,0,0,0,0
2025-07-14 00:00:00-04:00,15.2875003814697,15.2875003814697,15.2875003814697,15.2875003814697,14.1544904708862,0,0,0,0
2025-07-15 00:00:00-04:00,15.2299995422363,15.2299995422363,15.2299995422363,15.2299995422363,14.1012516021729,0,0,0,0
2025-07-16 00:00:00-04:00,15.2700004577637,15.2700004577637,15.2700004577637,15.2700004577637,14.1382875442505,0,0,0,0
2025-07-17 00:00:00-04:00,15.3125,15.3125,15.3125,15.3125,14.1776371002197,0,0,0,0
2025-07-18 00:00:00-04:00,15.3199996948242,15.3199996948242,15.3199996948242,15.3199996948242,14.1845808029175,0,0,0,0
2025-07-21 00:00:00-04:00,15.3774995803833,15.3774995803833,15.3774995803833,15.3774995803833,14.2378196716309,0,0,0,0
2025-07-22 00:00:00-04:00,15.4350004196167,15.4350004196167,15.4350004196167,15.4350004196167,14.2910585403442,0,0,0,0
2025-07-23 00:00:00-04:00,15.6975002288818,15.6975002288818,15.6975002288818,15.6975002288818,14.5341033935547,0,0,0,0
2025-07-24 00:00:00-04:00,15.7174997329712,15.7174997329712,15.7174997329712,15.7174997329712,14.5526208877563,0,0,0,0
2025-07-25 00:00:00-04:00,15.6674995422363,15.6674995422363,15.6674995422363,15.6674995422363,14.506326675415,0,0,0,0
2025-07-28 00:00:00-04:00,15.539999961853,15.539999961853,15.539999961853,15.539999961853,14.3882761001587,0,0,0,0
2025-07-29 00:00:00-04:00,15.5200004577637,15.5200004577637,15.5200004577637,15.5200004577637,14.3697595596313,0,0,0,0
2025-07-30 00:00:00-04:00,15.4350004196167,15.4350004196167,15.4350004196167,15.4350004196167,14.2910585403442,0,0,0,0
2025-07-31 00:00:00-04:00,15.2624998092651,15.2624998092651,15.2624998092651,15.2624998092651,14.1313428878784,0,0,0,0
2025-08-01 00:00:00-04:00,15.1774997711182,15.1774997711182,15.1774997711182,15.1774997711182,14.0526418685913,0,0,0,0
2025-08-04 00:00:00-04:00,15.3424997329712,15.3424997329712,15.3424997329712,15.3424997329712,14.2054138183594,0,0,0,0
2025-08-05 00:00:00-04:00,15.352499961853,15.352499961853,15.352499961853,15.352499961853,14.2146730422974,0,0,0,0
2025-08-06 00:00:00-04:00,15.3374996185303,15.3374996185303,15.3374996185303,15.3374996185303,14.2007837295532,0,0,0,0
2025-08-07 00:00:00-04:00,15.4875001907349,15.4875001907349,15.4875001907349,15.4875001907349,14.3396673202515,0,0,0,0
2025-08-08 00:00:00-04:00,15.5299997329712,15.5299997329712,15.5299997329712,15.5299997329712,14.3790168762207,0,0,0,0
2025-08-11 00:00:00-04:00,15.5100002288818,15.5100002288818,15.5100002288818,15.5100002288818,14.3605003356934,0,0,0,0
2025-08-12 00:00:00-04:00,15.6925001144409,15.6925001144409,15.6925001144409,15.6925001144409,14.5294742584229,0,0,0,0
2025-08-13 00:00:00-04:00,15.8299999237061,15.8299999237061,15.8299999237061,15.8299999237061,14.6567831039429,0,0,0,0
2025-08-14 00:00:00-04:00,15.7775001525879,15.7775001525879,15.7775001525879,15.7775001525879,14.6081743240356,0,0,0,0
2025-08-15 00:00:00-04:00,15.835000038147,15.835000038147,15.835000038147,15.835000038147,14.661413192749,0,0,0,0
2025-08-18 00:00:00-04:00,15.8100004196167,15.8100004196167,15.8100004196167,15.8100004196167,14.6382665634155,0,0,0,0
2025-08-19 00:00:00-04:00,15.8575000762939,15.8575000762939,15.8575000762939,15.8575000762939,14.6822452545166,0,0,0,0
2025-08-20 00:00:00-04:00,15.8824996948242,15.8824996948242,15.8824996948242,15.8824996948242,14.7053918838501,0,0,0,0
2025-08-21 00:00:00-04:00,15.8549995422363,15.8549995422363,15.8549995422363,15.8549995422363,14.6799306869507,0,0,0,0
2025-08-22 00:00:00-04:00,16.0849990844727,16.0849990844727,16.0849990844727,16.0849990844727,14.8928833007813,0,0,0,0
2025-08-25 00:00:00-04:00,15.9624996185303,15.9624996185303,15.9624996185303,15.9624996185303,14.7794628143311,0,0,0,0
2025-08-26 00:00:00-04:00,15.8924999237061,15.8924999237061,15.8924999237061,15.8924999237061,14.7146511077881,0,0,0,0
2025-08-27 00:00:00-04:00,15.8800001144409,15.8800001144409,15.8800001144409,15.8800001144409,14.7030782699585,0,0,0,0
2025-08-28 00:00:00-04:00,15.9099998474121,15.9099998474121,15.9099998474121,15.9099998474121,14.7308540344238,0,0,0,0
2025-08-29 00:00:00-04:00,15.8900003433228,15.8900003433228,15.8900003433228,15.8900003433228,14.7123365402222,0,0,0,0
2025-09-02 00:00:00-04:00,15.7550001144409,15.7550001144409,15.7550001144409,15.7550001144409,14.5873422622681,0,0,0,0
2025-09-03 00:00:00-04:00,15.7550001144409,15.7550001144409,15.7550001144409,15.7550001144409,14.5873422622681,0,0,0,0
2025-09-04 00:00:00-04:00,15.7849998474121,15.7849998474121,15.7849998474121,15.7849998474121,14.6151180267334,0,0,0,0
2025-09-05 00:00:00-04:00,15.9250001907349,15.9250001907349,15.9250001907349,15.9250001907349,14.744743347168,0,0,0,0
2025-09-08 00:00:00-04:00,16.0249996185303,16.0249996185303,16.0249996185303,16.0249996185303,14.8373308181763,0,0,0,0
2025-09-09 00:00:00-04:00,16.0575008392334,16.0575008392334,16.0575008392334,16.0575008392334,14.8674230575562,0,0,0,0
2025-09-10 00:00:00-04:00,16.0750007629395,16.0750007629395,16.0750007629395,16.0750007629395,14.8836259841919,0,0,0,0
2025-09-11 00:00:00-04:00,16.2900009155273,16.2900009155273,16.2900009155273,16.2900009155273,15.0826921463013,0,0,0,0
2025-09-12 00:00:00-04:00,16.2299995422363,16.2299995422363,16.2299995422363,16.2299995422363,15.0271377563477,0,0,0,0
2025-09-15 00:00:00-04:00,16.3075008392334,16.3075008392334,16.3075008392334,16.3075008392334,15.098895072937,0,0,0,0
2025-09-16 00:00:00-04:00,16.3024997711182,16.3024997711182,16.3024997711182,16.3024997711182,15.0942649841309,0,0,0,0
2025-09-17 00:00:00-04:00,16.3474998474121,16.3474998474121,16.3474998474121,16.3474998474121,15.1359300613403,0,0,0,0
2025-09-18 00:00:00-04:00,16.3125,16.3125,16.3125,16.3125,15.1035232543945,0,0,0,0
2025-09-19 00:00:00-04:00,16.2749996185303,16.2749996185303,16.2749996185303,16.2749996185303,15.0688028335571,0,0,0,0
2025-09-22 00:00:00-04:00,16.3199996948242,16.3199996948242,16.3199996948242,16.3199996948242,15.1104679107666,0,0,0,0
2025-09-23 00:00:00-04:00,16.3250007629395,16.3250007629395,16.3250007629395,16.3250007629395,15.1150979995728,0,0,0,0
2025-09-24 00:00:00-04:00,16.2900009155273,16.2900009155273,16.2900009155273,16.2900009155273,15.0826921463013,0,0,0,0
2025-09-25 00:00:00-04:00,16.1324996948242,16.1324996948242,16.1324996948242,16.1324996948242,14.936863899231,0,0,0,0
2025-09-26 00:00:00-04:00,16.2124996185303,16.2124996185303,16.2124996185303,16.2124996185303,15.0109348297119,0,0,0,0
2025-09-29 00:00:00-04:00,16.3274993896484,16.3274993896484,16.3274993896484,16.3274993896484,15.1174116134644,0,0,0,0
2025-09-30 00:00:00-04:00,16.4500007629395,16.4500007629395,16.4500007629395,16.4500007629395,15.2308340072632,0,0,0,0
2025-10-01 00:00:00-04:00,16.5550003051758,16.5550003051758,16.5550003051758,16.5550003051758,15.3280515670776,0,0,0,0
2025-10-02 00:00:00-04:00,16.5349998474121,16.5349998474121,16.5349998474121,16.5349998474121,15.3095331192017,0,0,0,0
2025-10-03 00:00:00-04:00,16.625,16.625,16.625,16.625,15.3928632736206,0,0,0,0
2025-10-06 00:00:00-04:00,16.6224994659424,16.6224994659424,16.6224994659424,16.6224994659424,15.3905477523804,0,0,0,0
2025-10-07 00:00:00-04:00,16.4825000762939,16.4825000762939,16.4825000762939,16.4825000762939,15.2609243392944,0,0,0,0
2025-10-08 00:00:00-04:00,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,15.3049049377441,0,0,0,0
2025-10-09 00:00:00-04:00,16.4274997711182,16.4274997711182,16.4274997711182,16.4274997711182,15.210000038147,0,0,0,0
2025-10-10 00:00:00-04:00,16.1149997711182,16.1149997711182,16.1149997711182,16.1149997711182,14.9206609725952,0,0,0,0
2025-10-13 00:00:00-04:00,16.2775001525879,16.2775001525879,16.2775001525879,16.2775001525879,15.071117401123,0,0,0,0
2025-10-14 00:00:00-04:00,16.2975006103516,16.2975006103516,16.2975006103516,16.2975006103516,15.089635848999,0,0,0,0
2025-10-15 00:00:00-04:00,16.3675003051758,16.3675003051758,16.3675003051758,16.3675003051758,15.154447555542,0,0,0,0
2025-10-16 00:00:00-04:00,16.3875007629395,16.3875007629395,16.3875007629395,16.3875007629395,15.172966003418,0,0,0,0
2025-10-17 00:00:00-04:00,16.3999996185303,16.3999996185303,16.3999996185303,16.3999996185303,15.1845388412476,0,0,0,0
2025-10-20 00:00:00-04:00,16.4750003814697,16.4750003814697,16.4750003814697,16.4750003814697,15.2539806365967,0,0,0,0
2025-10-21 00:00:00-04:00,16.4099998474121,16.4099998474121,16.4099998474121,16.4099998474121,15.1937971115112,0,0,0,0
2025-10-22 00:00:00-04:00,16.4074993133545,16.4074993133545,16.4074993133545,16.4074993133545,15.1914825439453,0,0,0,0
2025-10-23 00:00:00-04:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,15.2400913238525,0,0,0,0
2025-10-24 00:00:00-04:00,16.5025005340576,16.5025005340576,16.5025005340576,16.5025005340576,15.2794427871704,0,0,0,0
2025-10-27 00:00:00-04:00,16.6000003814697,16.6000003814697,16.6000003814697,16.6000003814697,15.3697166442871,0,0,4,0
2025-10-28 00:00:00-04:00,16.5599994659424,16.5599994659424,16.5599994659424,16.5599994659424,15.3326797485352,0,0,0,0
2025-10-29 00:00:00-04:00,16.5900001525879,16.5900001525879,16.5900001525879,16.5900001525879,15.3604574203491,0,0,0,0
2025-10-30 00:00:00-04:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.2215747833252,0,0,0,0
2025-10-31 00:00:00-04:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.2215747833252,0,0,0,0
2025-11-03 00:00:00-05:00,16.4300003051758,16.4300003051758,16.4300003051758,16.4300003051758,15.2123155593872,0,0,0,0
2025-11-04 00:00:00-05:00,16.3199996948242,16.3199996948242,16.3199996948242,16.3199996948242,15.1104679107666,0,0,0,0
2025-11-05 00:00:00-05:00,16.3899993896484,16.3899993896484,16.3899993896484,16.3899993896484,15.1752796173096,0,0,0,0
2025-11-06 00:00:00-05:00,16.4400005340576,16.4400005340576,16.4400005340576,16.4400005340576,15.2215747833252,0,0,0,0
2025-11-07 00:00:00-05:00,16.4899997711182,16.4899997711182,16.4899997711182,16.4899997711182,15.2678680419922,0,0,0,0
2025-11-10 00:00:00-05:00,16.6800003051758,16.6800003051758,16.6800003051758,16.6800003051758,15.4437875747681,0,0,0,0
2025-11-11 00:00:00-05:00,16.8400001525879,16.8400001525879,16.8400001525879,16.8400001525879,15.59192943573,0,0,0,0
2025-11-12 00:00:00-05:00,16.9599990844727,16.9599990844727,16.9599990844727,16.9599990844727,15.7030344009399,0,0,0,0
2025-11-13 00:00:00-05:00,16.8199996948242,16.8199996948242,16.8199996948242,16.8199996948242,15.573410987854,0,0,0,0
2025-11-14 00:00:00-05:00,16.6599998474121,16.6599998474121,16.6599998474121,16.6599998474121,15.4252691268921,0,0,0,0
2025-11-17 00:00:00-05:00,16.4899997711182,16.4899997711182,16.4899997711182,16.4899997711182,15.2678680419922,0,0,0,0
2025-11-18 00:00:00-05:00,16.3299999237061,16.3299999237061,16.3299999237061,16.3299999237061,15.1197271347046,0,0,0,0
2025-11-19 00:00:00-05:00,16.2299995422363,16.2299995422363,16.2299995422363,16.2299995422363,15.0271377563477,0,0,0,0
2025-11-20 00:00:00-05:00,16.0699996948242,16.0699996948242,16.0699996948242,16.0699996948242,14.8789958953857,0,0,0,0
2025-11-21 00:00:00-05:00,16.25,16.25,16.25,16.25,15.0456562042236,0,0,0,0
2025-11-24 00:00:00-05:00,16.3099994659424,16.3099994659424,16.3099994659424,16.3099994659424,15.1012086868286,0,0,0,0
2025-11-25 00:00:00-05:00,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,15.2863864898682,0,0,0,0
2025-11-26 00:00:00-05:00,16.6599998474121,16.6599998474121,16.6599998474121,16.6599998474121,15.4252691268921,0,0,0,0
2025-11-28 00:00:00-05:00,16.7299995422363,16.7299995422363,16.7299995422363,16.7299995422363,15.4900808334351,0,0,0,0
2025-12-01 00:00:00-05:00,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,15.4530467987061,0,0,0,0
2025-12-02 00:00:00-05:00,16.7700004577637,16.7700004577637,16.7700004577637,16.7700004577637,15.5271167755127,0,0,0,0
2025-12-03 00:00:00-05:00,16.8199996948242,16.8199996948242,16.8199996948242,16.8199996948242,15.573410987854,0,0,0,0
2025-12-04 00:00:00-05:00,16.8799991607666,16.8799991607666,16.8799991607666,16.8799991607666,15.628963470459,0,0,0,0
2025-12-05 00:00:00-05:00,16.8400001525879,16.8400001525879,16.8400001525879,16.8400001525879,15.59192943573,0,0,0,0
2025-12-08 00:00:00-05:00,16.8600006103516,16.8600006103516,16.8600006103516,16.8600006103516,15.6104469299316,0,0,0,0
2025-12-09 00:00:00-05:00,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,15.582670211792,0,0,0,0
2025-12-10 00:00:00-05:00,16.9500007629395,16.9500007629395,16.9500007629395,16.9500007629395,15.6937770843506,0,0,0,0
2025-12-11 00:00:00-05:00,17.0799999237061,17.0799999237061,17.0799999237061,17.0799999237061,15.8141412734985,0,0,0,0
2025-12-12 00:00:00-05:00,17.0200004577637,17.0200004577637,17.0200004577637,17.0200004577637,15.7585887908936,0,0,0,0
2025-12-15 00:00:00-05:00,17.0900001525879,17.0900001525879,17.0900001525879,17.0900001525879,15.8234004974365,0,0,0,0
2025-12-16 00:00:00-05:00,16.9899997711182,16.9899997711182,16.9899997711182,16.9899997711182,15.7308120727539,0,0,0,0
2025-12-17 00:00:00-05:00,16.9200000762939,16.9200000762939,16.9200000762939,16.9200000762939,15.6659994125366,0,0,0,0
2025-12-18 00:00:00-05:00,16.2199993133545,16.2199993133545,16.2199993133545,16.2199993133545,16.2199993133545,0,0.837,0,0.417
2025-12-19 00:00:00-05:00,16.2999992370605,16.2999992370605,16.2999992370605,16.2999992370605,16.2999992370605,0,0,0,0
2025-12-22 00:00:00-05:00,16.3700008392334,16.3700008392334,16.3700008392334,16.3700008392334,16.3700008392334,0,0,0,0
2025-12-23 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2025-12-24 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2025-12-26 00:00:00-05:00,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,16.5300006866455,0,0,0,0
2025-12-29 00:00:00-05:00,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,16.5100002288818,0,0,0,0
2025-12-30 00:00:00-05:00,16.5400009155273,16.5400009155273,16.5400009155273,16.5400009155273,16.5400009155273,0,0,0,0
2025-12-31 00:00:00-05:00,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,16.4599990844727,0,0,0,0
2026-01-02 00:00:00-05:00,16.6299991607666,16.6299991607666,16.6299991607666,16.6299991607666,16.6299991607666,0,0,0,0
2026-01-05 00:00:00-05:00,16.7900009155273,16.7900009155273,16.7900009155273,16.7900009155273,16.7900009155273,0,0,0,0
2026-01-06 00:00:00-05:00,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,16.8299999237061,0,0,0,0
2026-01-07 00:00:00-05:00,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,16.6900005340576,0,0,0,0
2026-01-08 00:00:00-05:00,16.7600002288818,16.7600002288818,16.7600002288818,16.7600002288818,16.7600002288818,0,0,0,0
2026-01-09 00:00:00-05:00,16.8099994659424,16.8099994659424,16.8099994659424,16.8099994659424,16.8099994659424,0,0,0,0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits Capital Gains
2 2024-01-10 00:00:00-05:00 12.147500038147 12.147500038147 12.147500038147 12.147500038147 11.0047464370728 0 0 0 0
3 2024-01-11 00:00:00-05:00 12.1350002288818 12.1350002288818 12.1350002288818 12.1350002288818 10.9934225082397 0 0 0 0
4 2024-01-12 00:00:00-05:00 12.1400003433228 12.1400003433228 12.1400003433228 12.1400003433228 10.9979524612427 0 0 0 0
5 2024-01-16 00:00:00-05:00 11.9300003051758 11.9300003051758 11.9300003051758 11.9300003051758 10.8077077865601 0 0 0 0
6 2024-01-17 00:00:00-05:00 11.7924995422363 11.7924995422363 11.7924995422363 11.7924995422363 10.683141708374 0 0 0 0
7 2024-01-18 00:00:00-05:00 11.8400001525879 11.8400001525879 11.8400001525879 11.8400001525879 10.7261743545532 0 0 0 0
8 2024-01-19 00:00:00-05:00 11.9025001525879 11.9025001525879 11.9025001525879 11.9025001525879 10.7827949523926 0 0 0 0
9 2024-01-22 00:00:00-05:00 11.9075002670288 11.9075002670288 11.9075002670288 11.9075002670288 10.7873249053955 0 0 0 0
10 2024-01-23 00:00:00-05:00 11.9224996566772 11.9224996566772 11.9224996566772 11.9224996566772 10.8009128570557 0 0 0 0
11 2024-01-24 00:00:00-05:00 11.9925003051758 11.9925003051758 11.9925003051758 11.9925003051758 10.8643283843994 0 0 0 0
12 2024-01-25 00:00:00-05:00 11.9575004577637 11.9575004577637 11.9575004577637 11.9575004577637 10.8326215744019 0 0 0 0
13 2024-01-26 00:00:00-05:00 12.0325002670288 12.0325002670288 12.0325002670288 12.0325002670288 10.9005651473999 0 0 0 0
14 2024-01-29 00:00:00-05:00 12.0749998092651 12.0749998092651 12.0749998092651 12.0749998092651 10.9390668869019 0 0 0 0
15 2024-01-30 00:00:00-05:00 12.0299997329712 12.0299997329712 12.0299997329712 12.0299997329712 10.8983001708984 0 0 0 0
16 2024-01-31 00:00:00-05:00 11.9324998855591 11.9324998855591 11.9324998855591 11.9324998855591 10.8099727630615 0 0 0 0
17 2024-02-01 00:00:00-05:00 11.9825000762939 11.9825000762939 11.9825000762939 11.9825000762939 10.8552694320679 0 0 0 0
18 2024-02-02 00:00:00-05:00 11.9125003814697 11.9125003814697 11.9125003814697 11.9125003814697 10.7918539047241 0 0 0 0
19 2024-02-05 00:00:00-05:00 11.8400001525879 11.8400001525879 11.8400001525879 11.8400001525879 10.7261743545532 0 0 0 0
20 2024-02-06 00:00:00-05:00 11.9274997711182 11.9274997711182 11.9274997711182 11.9274997711182 10.8054428100586 0 0 0 0
21 2024-02-07 00:00:00-05:00 11.8699998855591 11.8699998855591 11.8699998855591 11.8699998855591 10.7533521652222 0 0 0 0
22 2024-02-08 00:00:00-05:00 11.7974996566772 11.7974996566772 11.7974996566772 11.7974996566772 10.687671661377 0 0 0 0
23 2024-02-09 00:00:00-05:00 11.8050003051758 11.8050003051758 11.8050003051758 11.8050003051758 10.6944675445557 0 0 0 0
24 2024-02-12 00:00:00-05:00 11.875 11.875 11.875 11.875 10.7578821182251 0 0 0 0
25 2024-02-13 00:00:00-05:00 11.727499961853 11.727499961853 11.727499961853 11.727499961853 10.6242580413818 0 0 0 0
26 2024-02-14 00:00:00-05:00 11.7974996566772 11.7974996566772 11.7974996566772 11.7974996566772 10.687671661377 0 0 0 0
27 2024-02-15 00:00:00-05:00 11.9049997329712 11.9049997329712 11.9049997329712 11.9049997329712 10.7850589752197 0 0 0 0
28 2024-02-16 00:00:00-05:00 11.9624996185303 11.9624996185303 11.9624996185303 11.9624996185303 10.8371505737305 0 0 0 0
29 2024-02-20 00:00:00-05:00 12.0349998474121 12.0349998474121 12.0349998474121 12.0349998474121 10.9028301239014 0 0 0 0
30 2024-02-21 00:00:00-05:00 12.0550003051758 12.0550003051758 12.0550003051758 12.0550003051758 10.9209489822388 0 0 0 0
31 2024-02-22 00:00:00-05:00 12.1800003051758 12.1800003051758 12.1800003051758 12.1800003051758 11.0341892242432 0 0 0 0
32 2024-02-23 00:00:00-05:00 12.1774997711182 12.1774997711182 12.1774997711182 12.1774997711182 11.0319242477417 0 0 0 0
33 2024-02-26 00:00:00-05:00 12.1525001525879 12.1525001525879 12.1525001525879 12.1525001525879 11.0092763900757 0 0 0 0
34 2024-02-27 00:00:00-05:00 12.1724996566772 12.1724996566772 12.1724996566772 12.1724996566772 11.0273942947388 0 0 0 0
35 2024-02-28 00:00:00-05:00 12.1175003051758 12.1175003051758 12.1175003051758 12.1175003051758 10.9775695800781 0 0 0 0
36 2024-02-29 00:00:00-05:00 12.0900001525879 12.0900001525879 12.0900001525879 12.0900001525879 10.9526567459106 0 0 0 0
37 2024-03-01 00:00:00-05:00 12.2150001525879 12.2150001525879 12.2150001525879 12.2150001525879 11.065896987915 0 0 0 0
38 2024-03-04 00:00:00-05:00 12.1549997329712 12.1549997329712 12.1549997329712 12.1549997329712 11.0115404129028 0 0 0 0
39 2024-03-05 00:00:00-05:00 12.1374998092651 12.1374998092651 12.1374998092651 12.1374998092651 10.9956874847412 0 0 0 0
40 2024-03-06 00:00:00-05:00 12.2674999237061 12.2674999237061 12.2674999237061 12.2674999237061 11.1134576797485 0 0 0 0
41 2024-03-07 00:00:00-05:00 12.3699998855591 12.3699998855591 12.3699998855591 12.3699998855591 11.2063150405884 0 0 0 0
42 2024-03-08 00:00:00-05:00 12.3874998092651 12.3874998092651 12.3874998092651 12.3874998092651 11.2221689224243 0 0 0 0
43 2024-03-11 00:00:00-04:00 12.4174995422363 12.4174995422363 12.4174995422363 12.4174995422363 11.2493467330933 0 0 0 0
44 2024-03-12 00:00:00-04:00 12.5299997329712 12.5299997329712 12.5299997329712 12.5299997329712 11.351263999939 0 0 0 0
45 2024-03-13 00:00:00-04:00 12.5775003433228 12.5775003433228 12.5775003433228 12.5775003433228 11.3942956924438 0 0 0 0
46 2024-03-14 00:00:00-04:00 12.4875001907349 12.4875001907349 12.4875001907349 12.4875001907349 11.3127613067627 0 0 0 0
47 2024-03-15 00:00:00-04:00 12.4549999237061 12.4549999237061 12.4549999237061 12.4549999237061 11.2833194732666 0 0 0 0
48 2024-03-18 00:00:00-04:00 12.4700002670288 12.4700002670288 12.4700002670288 12.4700002670288 11.2969083786011 0 0 0 0
49 2024-03-19 00:00:00-04:00 12.477499961853 12.477499961853 12.477499961853 12.477499961853 11.3037023544312 0 0 0 0
50 2024-03-20 00:00:00-04:00 12.5825004577637 12.5825004577637 12.5825004577637 12.5825004577637 11.3988256454468 0 0 0 0
51 2024-03-21 00:00:00-04:00 12.5749998092651 12.5749998092651 12.5749998092651 12.5749998092651 11.3920297622681 0 0 0 0
52 2024-03-22 00:00:00-04:00 12.5325002670288 12.5325002670288 12.5325002670288 12.5325002670288 11.3535289764404 0 0 0 0
53 2024-03-25 00:00:00-04:00 12.5524997711182 12.5524997711182 12.5524997711182 12.5524997711182 11.3716468811035 0 0 0 0
54 2024-03-26 00:00:00-04:00 12.5749998092651 12.5749998092651 12.5749998092651 12.5749998092651 11.3920297622681 0 0 0 0
55 2024-03-27 00:00:00-04:00 12.6800003051758 12.6800003051758 12.6800003051758 12.6800003051758 11.4871530532837 0 0 0 0
56 2024-03-28 00:00:00-04:00 12.6750001907349 12.6750001907349 12.6750001907349 12.6750001907349 11.4826231002808 0 0 0 0
57 2024-04-01 00:00:00-04:00 12.625 12.625 12.625 12.625 11.4373264312744 0 0 0 0
58 2024-04-02 00:00:00-04:00 12.5874996185303 12.5874996185303 12.5874996185303 12.5874996185303 11.4033546447754 0 0 0 0
59 2024-04-03 00:00:00-04:00 12.6724996566772 12.6724996566772 12.6724996566772 12.6724996566772 11.480357170105 0 0 0 0
60 2024-04-04 00:00:00-04:00 12.6199998855591 12.6199998855591 12.6199998855591 12.6199998855591 11.4327964782715 0 0 0 0
61 2024-04-05 00:00:00-04:00 12.6225004196167 12.6225004196167 12.6225004196167 12.6225004196167 11.4350624084473 0 0 0 0
62 2024-04-08 00:00:00-04:00 12.6750001907349 12.6750001907349 12.6750001907349 12.6750001907349 11.4826231002808 0 0 0 0
63 2024-04-09 00:00:00-04:00 12.7124996185303 12.7124996185303 12.7124996185303 12.7124996185303 11.5165948867798 0 0 0 0
64 2024-04-10 00:00:00-04:00 12.5900001525879 12.5900001525879 12.5900001525879 12.5900001525879 11.4056186676025 0 0 0 0
65 2024-04-11 00:00:00-04:00 12.5574998855591 12.5574998855591 12.5574998855591 12.5574998855591 11.3761768341064 0 0 0 0
66 2024-04-12 00:00:00-04:00 12.3474998474121 12.3474998474121 12.3474998474121 12.3474998474121 11.1859321594238 0 0 0 0
67 2024-04-15 00:00:00-04:00 12.2799997329712 12.2799997329712 12.2799997329712 12.2799997329712 11.1247816085815 0 0 0 0
68 2024-04-16 00:00:00-04:00 12.1625003814697 12.1625003814697 12.1625003814697 12.1625003814697 11.0183362960815 0 0 0 0
69 2024-04-17 00:00:00-04:00 12.1850004196167 12.1850004196167 12.1850004196167 12.1850004196167 11.0387191772461 0 0 0 0
70 2024-04-18 00:00:00-04:00 12.1999998092651 12.1999998092651 12.1999998092651 12.1999998092651 11.0523071289063 0 0 0 0
71 2024-04-19 00:00:00-04:00 12.2349996566772 12.2349996566772 12.2349996566772 12.2349996566772 11.0840148925781 0 0 0 0
72 2024-04-22 00:00:00-04:00 12.4125003814697 12.4125003814697 12.4125003814697 12.4125003814697 11.2448177337646 0 0 0 0
73 2024-04-23 00:00:00-04:00 12.5124998092651 12.5124998092651 12.5124998092651 12.5124998092651 11.3354091644287 0 0 0 0
74 2024-04-24 00:00:00-04:00 12.5074996948242 12.5074996948242 12.5074996948242 12.5074996948242 11.3308801651001 0 0 0 0
75 2024-04-25 00:00:00-04:00 12.5699996948242 12.5699996948242 12.5699996948242 12.5699996948242 11.3874998092651 0 0 0 0
76 2024-04-26 00:00:00-04:00 12.6149997711182 12.6149997711182 12.6149997711182 12.6149997711182 11.4282674789429 0 0 0 0
77 2024-04-29 00:00:00-04:00 12.6999998092651 12.6999998092651 12.6999998092651 12.6999998092651 11.5052709579468 0 0 0 0
78 2024-04-30 00:00:00-04:00 12.5050001144409 12.5050001144409 12.5050001144409 12.5050001144409 11.328616142273 0 0 0 0
79 2024-05-01 00:00:00-04:00 12.4949998855591 12.4949998855591 12.4949998855591 12.4949998855591 11.3195562362671 0 0 0 0
80 2024-05-02 00:00:00-04:00 12.6674995422363 12.6674995422363 12.6674995422363 12.6674995422363 11.4758281707764 0 0 0 0
81 2024-05-03 00:00:00-04:00 12.7524995803833 12.7524995803833 12.7524995803833 12.7524995803833 11.5528316497803 0 0 0 0
82 2024-05-06 00:00:00-04:00 12.852499961853 12.852499961853 12.852499961853 12.852499961853 11.643424987793 0 0 0 0
83 2024-05-07 00:00:00-04:00 12.914999961853 12.914999961853 12.914999961853 12.914999961853 11.7000455856323 0 0 0 0
84 2024-05-08 00:00:00-04:00 12.9350004196167 12.9350004196167 12.9350004196167 12.9350004196167 11.7181644439697 0 0 0 0
85 2024-05-09 00:00:00-04:00 13.0249996185303 13.0249996185303 13.0249996185303 13.0249996185303 11.7996969223022 0 0 0 0
86 2024-05-10 00:00:00-04:00 13.1075000762939 13.1075000762939 13.1075000762939 13.1075000762939 11.8744373321533 0 0 0 0
87 2024-05-13 00:00:00-04:00 13.1824998855591 13.1824998855591 13.1824998855591 13.1824998855591 11.9423809051514 0 0 0 0
88 2024-05-14 00:00:00-04:00 13.2399997711182 13.2399997711182 13.2399997711182 13.2399997711182 11.9944715499878 0 0 0 0
89 2024-05-15 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.1077127456665 0 0 0 0
90 2024-05-16 00:00:00-04:00 13.3500003814697 13.3500003814697 13.3500003814697 13.3500003814697 12.094123840332 0 0 0 0
91 2024-05-17 00:00:00-04:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.109977722168 0 0 0 0
92 2024-05-20 00:00:00-04:00 13.397500038147 13.397500038147 13.397500038147 13.397500038147 12.1371555328369 0 0 0 0
93 2024-05-21 00:00:00-04:00 13.3474998474121 13.3474998474121 13.3474998474121 13.3474998474121 12.0918579101563 0 0 0 0
94 2024-05-22 00:00:00-04:00 13.2224998474121 13.2224998474121 13.2224998474121 13.2224998474121 11.9786176681519 0 0 0 0
95 2024-05-23 00:00:00-04:00 13.125 13.125 13.125 13.125 11.8902902603149 0 0 0 0
96 2024-05-24 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 11.9627647399902 0 0 0 0
97 2024-05-28 00:00:00-04:00 13.1899995803833 13.1899995803833 13.1899995803833 13.1899995803833 11.9491748809814 0 0 0 0
98 2024-05-29 00:00:00-04:00 12.9674997329712 12.9674997329712 12.9674997329712 12.9674997329712 11.7476062774658 0 0 0 0
99 2024-05-30 00:00:00-04:00 13.0699996948242 13.0699996948242 13.0699996948242 13.0699996948242 11.8404636383057 0 0 0 0
100 2024-05-31 00:00:00-04:00 13.1925001144409 13.1925001144409 13.1925001144409 13.1925001144409 11.9514398574829 0 0 0 0
101 2024-06-03 00:00:00-04:00 13.1774997711182 13.1774997711182 13.1774997711182 13.1774997711182 11.9378509521484 0 0 0 0
102 2024-06-04 00:00:00-04:00 13.0550003051758 13.0550003051758 13.0550003051758 13.0550003051758 11.8268756866455 0 0 0 0
103 2024-06-05 00:00:00-04:00 13.1549997329712 13.1549997329712 13.1549997329712 13.1549997329712 11.9174680709839 0 0 0 0
104 2024-06-06 00:00:00-04:00 13.1975002288818 13.1975002288818 13.1975002288818 13.1975002288818 11.9559698104858 0 0 0 0
105 2024-06-07 00:00:00-04:00 13.085000038147 13.085000038147 13.085000038147 13.085000038147 11.8540534973145 0 0 0 0
106 2024-06-10 00:00:00-04:00 13.039999961853 13.039999961853 13.039999961853 13.039999961853 11.8132858276367 0 0 0 0
107 2024-06-11 00:00:00-04:00 12.9025001525879 12.9025001525879 12.9025001525879 12.9025001525879 11.6887216567993 0 0 0 0
108 2024-06-12 00:00:00-04:00 13.0074996948242 13.0074996948242 13.0074996948242 13.0074996948242 11.7838430404663 0 0 0 0
109 2024-06-13 00:00:00-04:00 12.8275003433228 12.8275003433228 12.8275003433228 12.8275003433228 11.620777130127 0 0 0 0
110 2024-06-14 00:00:00-04:00 12.7049999237061 12.7049999237061 12.7049999237061 12.7049999237061 11.5098009109497 0 0 0 0
111 2024-06-17 00:00:00-04:00 12.7574996948242 12.7574996948242 12.7574996948242 12.7574996948242 11.5573616027832 0 0 0 0
112 2024-06-18 00:00:00-04:00 12.7849998474121 12.7849998474121 12.7849998474121 12.7849998474121 11.5822744369507 0 0 0 0
113 2024-06-20 00:00:00-04:00 12.8325004577637 12.8325004577637 12.8325004577637 12.8325004577637 11.6253070831299 0 0 0 0
114 2024-06-21 00:00:00-04:00 12.7200002670288 12.7200002670288 12.7200002670288 12.7200002670288 11.5233898162842 0 0 0 0
115 2024-06-24 00:00:00-04:00 12.8675003051758 12.8675003051758 12.8675003051758 12.8675003051758 11.6570148468018 0 0 0 0
116 2024-06-25 00:00:00-04:00 12.8249998092651 12.8249998092651 12.8249998092651 12.8249998092651 11.6185111999512 0 0 0 0
117 2024-06-26 00:00:00-04:00 12.7399997711182 12.7399997711182 12.7399997711182 12.7399997711182 11.5415086746216 0 0 0 0
118 2024-06-27 00:00:00-04:00 12.7025003433228 12.7025003433228 12.7025003433228 12.7025003433228 11.5075359344482 0 0 0 0
119 2024-06-28 00:00:00-04:00 12.6774997711182 12.6774997711182 12.6774997711182 12.6774997711182 11.4848871231079 0 0 0 0
120 2024-07-01 00:00:00-04:00 12.727499961853 12.727499961853 12.727499961853 12.727499961853 11.5301837921143 0 0 0 0
121 2024-07-02 00:00:00-04:00 12.727499961853 12.727499961853 12.727499961853 12.727499961853 11.5301837921143 0 0 0 0
122 2024-07-03 00:00:00-04:00 12.8999996185303 12.8999996185303 12.8999996185303 12.8999996185303 11.6864566802979 0 0 0 0
123 2024-07-05 00:00:00-04:00 12.960000038147 12.960000038147 12.960000038147 12.960000038147 11.7408123016357 0 0 0 0
124 2024-07-08 00:00:00-04:00 12.9499998092651 12.9499998092651 12.9499998092651 12.9499998092651 11.7317533493042 0 0 0 0
125 2024-07-09 00:00:00-04:00 12.9075002670288 12.9075002670288 12.9075002670288 12.9075002670288 11.6932506561279 0 0 0 0
126 2024-07-10 00:00:00-04:00 13.0649995803833 13.0649995803833 13.0649995803833 13.0649995803833 11.8359336853027 0 0 0 0
127 2024-07-11 00:00:00-04:00 13.1724996566772 13.1724996566772 13.1724996566772 13.1724996566772 11.9333209991455 0 0 0 0
128 2024-07-12 00:00:00-04:00 13.2950000762939 13.2950000762939 13.2950000762939 13.2950000762939 12.0442972183228 0 0 0 0
129 2024-07-15 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 11.9627647399902 0 0 0 0
130 2024-07-16 00:00:00-04:00 13.2200002670288 13.2200002670288 13.2200002670288 13.2200002670288 11.9763536453247 0 0 0 0
131 2024-07-17 00:00:00-04:00 13.289999961853 13.289999961853 13.289999961853 13.289999961853 12.0397682189941 0 0 0 0
132 2024-07-18 00:00:00-04:00 13.1499996185303 13.1499996185303 13.1499996185303 13.1499996185303 11.912938117981 0 0 0 0
133 2024-07-19 00:00:00-04:00 13.0500001907349 13.0500001907349 13.0500001907349 13.0500001907349 11.8223457336426 0 0 0 0
134 2024-07-22 00:00:00-04:00 13.1949996948242 13.1949996948242 13.1949996948242 13.1949996948242 11.9537048339844 0 0 0 0
135 2024-07-23 00:00:00-04:00 13.0874996185303 13.0874996185303 13.0874996185303 13.0874996185303 11.8563175201416 0 0 0 0
136 2024-07-24 00:00:00-04:00 12.9624996185303 12.9624996185303 12.9624996185303 12.9624996185303 11.7430763244629 0 0 0 0
137 2024-07-25 00:00:00-04:00 12.9300003051758 12.9300003051758 12.9300003051758 12.9300003051758 11.7136344909668 0 0 0 0
138 2024-07-26 00:00:00-04:00 13.0325002670288 13.0325002670288 13.0325002670288 13.0325002670288 11.8064918518066 0 0 0 0
139 2024-07-29 00:00:00-04:00 13.0150003433228 13.0150003433228 13.0150003433228 13.0150003433228 11.7906379699707 0 0 0 0
140 2024-07-30 00:00:00-04:00 12.9825000762939 12.9825000762939 12.9825000762939 12.9825000762939 11.7611951828003 0 0 0 0
141 2024-07-31 00:00:00-04:00 13.0799999237061 13.0799999237061 13.0799999237061 13.0799999237061 11.8495235443115 0 0 0 0
142 2024-08-01 00:00:00-04:00 12.8299999237061 12.8299999237061 12.8299999237061 12.8299999237061 11.6230411529541 0 0 0 0
143 2024-08-02 00:00:00-04:00 12.6400003433228 12.6400003433228 12.6400003433228 12.6400003433228 11.4509162902832 0 0 0 0
144 2024-08-05 00:00:00-04:00 12.3599996566772 12.3599996566772 12.3599996566772 12.3599996566772 11.1972551345825 0 0 0 0
145 2024-08-06 00:00:00-04:00 12.3649997711182 12.3649997711182 12.3649997711182 12.3649997711182 11.2017850875855 0 0 0 0
146 2024-08-07 00:00:00-04:00 12.4475002288818 12.4475002288818 12.4475002288818 12.4475002288818 11.2765245437622 0 0 0 0
147 2024-08-08 00:00:00-04:00 12.6575002670288 12.6575002670288 12.6575002670288 12.6575002670288 11.4667701721191 0 0 0 0
148 2024-08-09 00:00:00-04:00 12.6899995803833 12.6899995803833 12.6899995803833 12.6899995803833 11.4962120056152 0 0 0 0
149 2024-08-12 00:00:00-04:00 12.6949996948242 12.6949996948242 12.6949996948242 12.6949996948242 11.5007410049438 0 0 0 0
150 2024-08-13 00:00:00-04:00 12.8474998474121 12.8474998474121 12.8474998474121 12.8474998474121 11.6388959884644 0 0 0 0
151 2024-08-14 00:00:00-04:00 12.875 12.875 12.875 12.875 11.6638088226318 0 0 0 0
152 2024-08-15 00:00:00-04:00 13.0450000762939 13.0450000762939 13.0450000762939 13.0450000762939 11.8178157806396 0 0 0 0
153 2024-08-16 00:00:00-04:00 13.1350002288818 13.1350002288818 13.1350002288818 13.1350002288818 11.8993501663208 0 0 0 0
154 2024-08-19 00:00:00-04:00 13.2849998474121 13.2849998474121 13.2849998474121 13.2849998474121 12.0352382659912 0 0 0 0
155 2024-08-20 00:00:00-04:00 13.2124996185303 13.2124996185303 13.2124996185303 13.2124996185303 11.9695587158203 0 0 0 0
156 2024-08-21 00:00:00-04:00 13.2749996185303 13.2749996185303 13.2749996185303 13.2749996185303 12.0261783599854 0 0 0 0
157 2024-08-22 00:00:00-04:00 13.2049999237061 13.2049999237061 13.2049999237061 13.2049999237061 11.9627647399902 0 0 0 0
158 2024-08-23 00:00:00-04:00 13.4025001525879 13.4025001525879 13.4025001525879 13.4025001525879 12.1416845321655 0 0 0 0
159 2024-08-26 00:00:00-04:00 13.3774995803833 13.3774995803833 13.3774995803833 13.3774995803833 12.1190357208252 0 0 0 0
160 2024-08-27 00:00:00-04:00 13.4449996948242 13.4449996948242 13.4449996948242 13.4449996948242 12.1801872253418 0 0 0 0
161 2024-08-28 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.1077127456665 0 0 0 0
162 2024-08-29 00:00:00-04:00 13.4049997329712 13.4049997329712 13.4049997329712 13.4049997329712 12.143949508667 0 0 0 0
163 2024-08-30 00:00:00-04:00 13.4650001525879 13.4650001525879 13.4650001525879 13.4650001525879 12.1983051300049 0 0 0 0
164 2024-09-03 00:00:00-04:00 13.2550001144409 13.2550001144409 13.2550001144409 13.2550001144409 12.0080604553223 0 0 0 0
165 2024-09-04 00:00:00-04:00 13.2700004577637 13.2700004577637 13.2700004577637 13.2700004577637 12.0216493606567 0 0 0 0
166 2024-09-05 00:00:00-04:00 13.3024997711182 13.3024997711182 13.3024997711182 13.3024997711182 12.0510921478271 0 0 0 0
167 2024-09-06 00:00:00-04:00 13.0924997329712 13.0924997329712 13.0924997329712 13.0924997329712 11.8608474731445 0 0 0 0
168 2024-09-09 00:00:00-04:00 13.1850004196167 13.1850004196167 13.1850004196167 13.1850004196167 11.9446468353271 0 0 0 0
169 2024-09-10 00:00:00-04:00 13.1324996948242 13.1324996948242 13.1324996948242 13.1324996948242 11.897084236145 0 0 0 0
170 2024-09-11 00:00:00-04:00 13.1599998474121 13.1599998474121 13.1599998474121 13.1599998474121 11.9219980239868 0 0 0 0
171 2024-09-12 00:00:00-04:00 13.2550001144409 13.2550001144409 13.2550001144409 13.2550001144409 12.0080604553223 0 0 0 0
172 2024-09-13 00:00:00-04:00 13.3249998092651 13.3249998092651 13.3249998092651 13.3249998092651 12.0714750289917 0 0 0 0
173 2024-09-16 00:00:00-04:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.109977722168 0 0 0 0
174 2024-09-17 00:00:00-04:00 13.4300003051758 13.4300003051758 13.4300003051758 13.4300003051758 12.1665983200073 0 0 0 0
175 2024-09-18 00:00:00-04:00 13.4075002670288 13.4075002670288 13.4075002670288 13.4075002670288 12.1462144851685 0 0 0 0
176 2024-09-19 00:00:00-04:00 13.625 13.625 13.625 13.625 12.3432540893555 0 0 0 0
177 2024-09-20 00:00:00-04:00 13.5150003433228 13.5150003433228 13.5150003433228 13.5150003433228 12.2436017990112 0 0 0 0
178 2024-09-23 00:00:00-04:00 13.5574998855591 13.5574998855591 13.5574998855591 13.5574998855591 12.2821025848389 0 0 0 0
179 2024-09-24 00:00:00-04:00 13.7600002288818 13.7600002288818 13.7600002288818 13.7600002288818 12.4655542373657 0 0 0 0
180 2024-09-25 00:00:00-04:00 13.6949996948242 13.6949996948242 13.6949996948242 13.6949996948242 12.4066677093506 0 0 0 0
181 2024-09-26 00:00:00-04:00 14.0024995803833 14.0024995803833 14.0024995803833 14.0024995803833 12.6852397918701 0 0 0 0
182 2024-09-27 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 12.8347187042236 0 0 0 0
183 2024-09-30 00:00:00-04:00 13.9425001144409 13.9425001144409 13.9425001144409 13.9425001144409 12.6308860778809 0 0 0 0
184 2024-10-01 00:00:00-04:00 13.9174995422363 13.9174995422363 13.9174995422363 13.9174995422363 12.6082372665405 0 0 0 0
185 2024-10-02 00:00:00-04:00 13.9549999237061 13.9549999237061 13.9549999237061 13.9549999237061 12.6422090530396 0 0 0 0
186 2024-10-03 00:00:00-04:00 13.7950000762939 13.7950000762939 13.7950000762939 13.7950000762939 12.4972610473633 0 0 0 0
187 2024-10-04 00:00:00-04:00 13.9274997711182 13.9274997711182 13.9274997711182 13.9274997711182 12.6172962188721 0 0 0 0
188 2024-10-07 00:00:00-04:00 13.8924999237061 13.8924999237061 13.8924999237061 13.8924999237061 12.5855894088745 0 0 0 0
189 2024-10-08 00:00:00-04:00 13.7749996185303 13.7749996185303 13.7749996185303 13.7749996185303 12.4791421890259 0 0 0 0
190 2024-10-09 00:00:00-04:00 13.8125 13.8125 13.8125 13.8125 12.5131149291992 0 0 0 0
191 2024-10-10 00:00:00-04:00 13.789999961853 13.789999961853 13.789999961853 13.789999961853 12.4927310943604 0 0 0 0
192 2024-10-11 00:00:00-04:00 13.8199996948242 13.8199996948242 13.8199996948242 13.8199996948242 12.5199089050293 0 0 0 0
193 2024-10-14 00:00:00-04:00 13.8249998092651 13.8249998092651 13.8249998092651 13.8249998092651 12.5244388580322 0 0 0 0
194 2024-10-15 00:00:00-04:00 13.6274995803833 13.6274995803833 13.6274995803833 13.6274995803833 12.3455181121826 0 0 0 0
195 2024-10-16 00:00:00-04:00 13.6674995422363 13.6674995422363 13.6674995422363 13.6674995422363 12.3817548751831 0 0 0 0
196 2024-10-17 00:00:00-04:00 13.6975002288818 13.6975002288818 13.6975002288818 13.6975002288818 12.4089336395264 0 0 0 0
197 2024-10-18 00:00:00-04:00 13.7875003814697 13.7875003814697 13.7875003814697 13.7875003814697 12.4904670715332 0 0 0 0
198 2024-10-21 00:00:00-04:00 13.664999961853 13.664999961853 13.664999961853 13.664999961853 12.379490852356 0 0 0 0
199 2024-10-22 00:00:00-04:00 13.6125001907349 13.6125001907349 13.6125001907349 13.6125001907349 12.3319292068481 0 0 0 0
200 2024-10-23 00:00:00-04:00 13.5299997329712 13.5299997329712 13.5299997329712 13.5299997329712 12.2571897506714 0 0 0 0
201 2024-10-24 00:00:00-04:00 13.585000038147 13.585000038147 13.585000038147 13.585000038147 12.3070163726807 0 0 0 0
202 2024-10-25 00:00:00-04:00 13.5625 13.5625 13.5625 13.5625 12.2866325378418 0 0 0 0
203 2024-10-28 00:00:00-04:00 13.6724996566772 13.6724996566772 13.6724996566772 13.6724996566772 12.386284828186 0 0 0 0
204 2024-10-29 00:00:00-04:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.3115463256836 0 0 0 0
205 2024-10-30 00:00:00-04:00 13.4875001907349 13.4875001907349 13.4875001907349 13.4875001907349 12.2186889648438 0 0 0 0
206 2024-10-31 00:00:00-04:00 13.3649997711182 13.3649997711182 13.3649997711182 13.3649997711182 12.1077127456665 0 0 0 0
207 2024-11-01 00:00:00-04:00 13.4274997711182 13.4274997711182 13.4274997711182 13.4274997711182 12.1643323898315 0 0 0 0
208 2024-11-04 00:00:00-05:00 13.4700002670288 13.4700002670288 13.4700002670288 13.4700002670288 12.2028350830078 0 0 0 0
209 2024-11-05 00:00:00-05:00 13.602499961853 13.602499961853 13.602499961853 13.602499961853 12.3228702545166 0 0 0 0
210 2024-11-06 00:00:00-05:00 13.5074996948242 13.5074996948242 13.5074996948242 13.5074996948242 12.2368068695068 0 0 0 0
211 2024-11-07 00:00:00-05:00 13.602499961853 13.602499961853 13.602499961853 13.602499961853 12.3228702545166 0 0 0 0
212 2024-11-08 00:00:00-05:00 13.4525003433228 13.4525003433228 13.4525003433228 13.4525003433228 12.1869812011719 0 0 0 0
213 2024-11-11 00:00:00-05:00 13.477499961853 13.477499961853 13.477499961853 13.477499961853 12.2096290588379 0 0 0 0
214 2024-11-12 00:00:00-05:00 13.1850004196167 13.1850004196167 13.1850004196167 13.1850004196167 11.9446468353271 0 0 0 0
215 2024-11-13 00:00:00-05:00 13.1199998855591 13.1199998855591 13.1199998855591 13.1199998855591 11.885760307312 0 0 0 0
216 2024-11-14 00:00:00-05:00 13.1499996185303 13.1499996185303 13.1499996185303 13.1499996185303 11.912938117981 0 0 0 0
217 2024-11-15 00:00:00-05:00 13.1175003051758 13.1175003051758 13.1175003051758 13.1175003051758 11.8834953308105 0 0 0 0
218 2024-11-18 00:00:00-05:00 13.2075004577637 13.2075004577637 13.2075004577637 13.2075004577637 11.9650297164917 0 0 0 0
219 2024-11-19 00:00:00-05:00 13.1625003814697 13.1625003814697 13.1625003814697 13.1625003814697 11.9242630004883 0 0 0 0
220 2024-11-20 00:00:00-05:00 13.125 13.125 13.125 13.125 11.8902902603149 0 0 0 0
221 2024-11-21 00:00:00-05:00 13.1225004196167 13.1225004196167 13.1225004196167 13.1225004196167 11.8880252838135 0 0 0 0
222 2024-11-22 00:00:00-05:00 13.1225004196167 13.1225004196167 13.1225004196167 13.1225004196167 11.8880252838135 0 0 0 0
223 2024-11-25 00:00:00-05:00 13.210000038147 13.210000038147 13.210000038147 13.210000038147 11.9672946929932 0 0 0 0
224 2024-11-26 00:00:00-05:00 13.1099996566772 13.1099996566772 13.1099996566772 13.1099996566772 11.8767013549805 0 0 0 0
225 2024-11-27 00:00:00-05:00 13.164999961853 13.164999961853 13.164999961853 13.164999961853 11.9265270233154 0 0 0 0
226 2024-11-29 00:00:00-05:00 13.2075004577637 13.2075004577637 13.2075004577637 13.2075004577637 11.9650297164917 0 0 0 0
227 2024-12-02 00:00:00-05:00 13.1975002288818 13.1975002288818 13.1975002288818 13.1975002288818 11.9559698104858 0 0 0 0
228 2024-12-03 00:00:00-05:00 13.2650003433228 13.2650003433228 13.2650003433228 13.2650003433228 12.0171203613281 0 0 0 0
229 2024-12-04 00:00:00-05:00 13.25 13.25 13.25 13.25 12.0035305023193 0 0 0 0
230 2024-12-05 00:00:00-05:00 13.3824996948242 13.3824996948242 13.3824996948242 13.3824996948242 12.1235656738281 0 0 0 0
231 2024-12-06 00:00:00-05:00 13.3774995803833 13.3774995803833 13.3774995803833 13.3774995803833 12.1190357208252 0 0 0 0
232 2024-12-09 00:00:00-05:00 13.4425001144409 13.4425001144409 13.4425001144409 13.4425001144409 12.1779222488403 0 0 0 0
233 2024-12-10 00:00:00-05:00 13.3175001144409 13.3175001144409 13.3175001144409 13.3175001144409 12.0646820068359 0 0 0 0
234 2024-12-11 00:00:00-05:00 13.3024997711182 13.3024997711182 13.3024997711182 13.3024997711182 12.0510921478271 0 0 0 0
235 2024-12-12 00:00:00-05:00 13.2624998092651 13.2624998092651 13.2624998092651 13.2624998092651 12.0148553848267 0 0 0 0
236 2024-12-13 00:00:00-05:00 13.1875 13.1875 13.1875 13.1875 11.9469108581543 0 0 0 0
237 2024-12-16 00:00:00-05:00 13.1075000762939 13.1075000762939 13.1075000762939 13.1075000762939 11.8744373321533 0 0 0 0
238 2024-12-17 00:00:00-05:00 13.0349998474121 13.0349998474121 13.0349998474121 13.0349998474121 11.8087558746338 0 0 0 0
239 2024-12-18 00:00:00-05:00 12.4525003433228 12.4525003433228 12.4525003433228 12.4525003433228 11.5296020507813 0 0.281 0 0
240 2024-12-19 00:00:00-05:00 12.3850002288818 12.3850002288818 12.3850002288818 12.3850002288818 11.4671049118042 0 0 0 0
241 2024-12-20 00:00:00-05:00 12.4250001907349 12.4250001907349 12.4250001907349 12.4250001907349 11.5041399002075 0 0 0 0
242 2024-12-23 00:00:00-05:00 12.5024995803833 12.5024995803833 12.5024995803833 12.5024995803833 11.5758953094482 0 0 0 0
243 2024-12-24 00:00:00-05:00 12.5349998474121 12.5349998474121 12.5349998474121 12.5349998474121 11.6059875488281 0 0 0 0
244 2024-12-26 00:00:00-05:00 12.5349998474121 12.5349998474121 12.5349998474121 12.5349998474121 11.6059875488281 0 0 0 0
245 2024-12-27 00:00:00-05:00 12.5450000762939 12.5450000762939 12.5450000762939 12.5450000762939 11.6152467727661 0 0 0 0
246 2024-12-30 00:00:00-05:00 12.4825000762939 12.4825000762939 12.4825000762939 12.4825000762939 11.5573787689209 0 0 0 0
247 2024-12-31 00:00:00-05:00 12.4750003814697 12.4750003814697 12.4750003814697 12.4750003814697 11.5504341125488 0 0 0 0
248 2025-01-02 00:00:00-05:00 12.4300003051758 12.4300003051758 12.4300003051758 12.4300003051758 11.5087699890137 0 0 0 0
249 2025-01-03 00:00:00-05:00 12.4624996185303 12.4624996185303 12.4624996185303 12.4624996185303 11.5388603210449 0 0 0 0
250 2025-01-06 00:00:00-05:00 12.602499961853 12.602499961853 12.602499961853 12.602499961853 11.6684846878052 0 0 0 0
251 2025-01-07 00:00:00-05:00 12.6149997711182 12.6149997711182 12.6149997711182 12.6149997711182 11.6800584793091 0 0 0 0
252 2025-01-08 00:00:00-05:00 12.5574998855591 12.5574998855591 12.5574998855591 12.5574998855591 11.6268196105957 0 0 0 0
253 2025-01-10 00:00:00-05:00 12.3299999237061 12.3299999237061 12.3299999237061 12.3299999237061 11.4161806106567 0 0 0 0
254 2025-01-13 00:00:00-05:00 12.3024997711182 12.3024997711182 12.3024997711182 12.3024997711182 11.390718460083 0 0 0 0
255 2025-01-14 00:00:00-05:00 12.3800001144409 12.3800001144409 12.3800001144409 12.3800001144409 11.462474822998 0 0 0 0
256 2025-01-15 00:00:00-05:00 12.539999961853 12.539999961853 12.539999961853 12.539999961853 11.61061668396 0 0 0 0
257 2025-01-16 00:00:00-05:00 12.6125001907349 12.6125001907349 12.6125001907349 12.6125001907349 11.6777439117432 0 0 0 0
258 2025-01-17 00:00:00-05:00 12.7049999237061 12.7049999237061 12.7049999237061 12.7049999237061 11.7633876800537 0 0 0 0
259 2025-01-21 00:00:00-05:00 12.8625001907349 12.8625001907349 12.8625001907349 12.8625001907349 11.9092149734497 0 0 0 0
260 2025-01-22 00:00:00-05:00 12.8725004196167 12.8725004196167 12.8725004196167 12.8725004196167 11.9184741973877 0 0 0 0
261 2025-01-23 00:00:00-05:00 12.9674997329712 12.9674997329712 12.9674997329712 12.9674997329712 12.0064334869385 0 0 0 0
262 2025-01-24 00:00:00-05:00 13.0249996185303 13.0249996185303 13.0249996185303 13.0249996185303 12.0596714019775 0 0 0 0
263 2025-01-27 00:00:00-05:00 13.0024995803833 13.0024995803833 13.0024995803833 13.0024995803833 12.03883934021 0 0 0 0
264 2025-01-28 00:00:00-05:00 13.0150003433228 13.0150003433228 13.0150003433228 13.0150003433228 12.0504131317139 0 0 0 0
265 2025-01-29 00:00:00-05:00 13.0200004577637 13.0200004577637 13.0200004577637 13.0200004577637 12.05504322052 0 0 0 0
266 2025-01-30 00:00:00-05:00 13.1525001525879 13.1525001525879 13.1525001525879 13.1525001525879 12.1777229309082 0 0 0 0
267 2025-01-31 00:00:00-05:00 13.0649995803833 13.0649995803833 13.0649995803833 13.0649995803833 12.0967073440552 0 0 0 0
268 2025-02-03 00:00:00-05:00 12.8924999237061 12.8924999237061 12.8924999237061 12.8924999237061 11.9369916915894 0 0 0 0
269 2025-02-04 00:00:00-05:00 13.0600004196167 13.0600004196167 13.0600004196167 13.0600004196167 12.0920782089233 0 0 0 0
270 2025-02-05 00:00:00-05:00 13.1999998092651 13.1999998092651 13.1999998092651 13.1999998092651 12.2217016220093 0 0 0 0
271 2025-02-06 00:00:00-05:00 13.352499961853 13.352499961853 13.352499961853 13.352499961853 12.3628997802734 0 0 0 0
272 2025-02-07 00:00:00-05:00 13.2624998092651 13.2624998092651 13.2624998092651 13.2624998092651 12.2795696258545 0 0 0 0
273 2025-02-10 00:00:00-05:00 13.3675003051758 13.3675003051758 13.3675003051758 13.3675003051758 12.3767881393433 0 0 0 0
274 2025-02-11 00:00:00-05:00 13.3950004577637 13.3950004577637 13.3950004577637 13.3950004577637 12.402250289917 0 0 0 0
275 2025-02-12 00:00:00-05:00 13.477499961853 13.477499961853 13.477499961853 13.477499961853 12.4786357879639 0 0 0 0
276 2025-02-13 00:00:00-05:00 13.5924997329712 13.5924997329712 13.5924997329712 13.5924997329712 12.5851125717163 0 0 0 0
277 2025-02-14 00:00:00-05:00 13.6374998092651 13.6374998092651 13.6374998092651 13.6374998092651 12.6267766952515 0 0 0 0
278 2025-02-18 00:00:00-05:00 13.7425003051758 13.7425003051758 13.7425003051758 13.7425003051758 12.7239952087402 0 0 0 0
279 2025-02-19 00:00:00-05:00 13.6049995422363 13.6049995422363 13.6049995422363 13.6049995422363 12.5966854095459 0 0 0 0
280 2025-02-20 00:00:00-05:00 13.6724996566772 13.6724996566772 13.6724996566772 13.6724996566772 12.659182548523 0 0 0 0
281 2025-02-21 00:00:00-05:00 13.647500038147 13.647500038147 13.647500038147 13.647500038147 12.6360359191895 0 0 0 0
282 2025-02-24 00:00:00-05:00 13.5349998474121 13.5349998474121 13.5349998474121 13.5349998474121 12.5318737030029 0 0 0 0
283 2025-02-25 00:00:00-05:00 13.647500038147 13.647500038147 13.647500038147 13.647500038147 12.6360359191895 0 0 0 0
284 2025-02-26 00:00:00-05:00 13.7299995422363 13.7299995422363 13.7299995422363 13.7299995422363 12.7124214172363 0 0 0 0
285 2025-02-27 00:00:00-05:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.5827980041504 0 0 0 0
286 2025-02-28 00:00:00-05:00 13.6549997329712 13.6549997329712 13.6549997329712 13.6549997329712 12.6429796218872 0 0 0 0
287 2025-03-03 00:00:00-05:00 13.6700000762939 13.6700000762939 13.6700000762939 13.6700000762939 12.6568689346313 0 0 0 0
288 2025-03-04 00:00:00-05:00 13.5900001525879 13.5900001525879 13.5900001525879 13.5900001525879 12.5827980041504 0 0 0 0
289 2025-03-05 00:00:00-05:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 12.9230613708496 0 0 0 0
290 2025-03-06 00:00:00-05:00 13.9650001525879 13.9650001525879 13.9650001525879 13.9650001525879 12.9300050735474 0 0 0 0
291 2025-03-07 00:00:00-05:00 14.0675001144409 14.0675001144409 14.0675001144409 14.0675001144409 13.0249090194702 0 0 0 0
292 2025-03-10 00:00:00-04:00 13.7775001525879 13.7775001525879 13.7775001525879 13.7775001525879 12.756402015686 0 0 0 0
293 2025-03-11 00:00:00-04:00 13.710000038147 13.710000038147 13.710000038147 13.710000038147 12.6939039230347 0 0 0 0
294 2025-03-12 00:00:00-04:00 13.7674999237061 13.7674999237061 13.7674999237061 13.7674999237061 12.747142791748 0 0 0 0
295 2025-03-13 00:00:00-04:00 13.6875 13.6875 13.6875 13.6875 12.6730718612671 0 0 0 0
296 2025-03-14 00:00:00-04:00 13.9350004196167 13.9350004196167 13.9350004196167 13.9350004196167 12.902229309082 0 0 0 0
297 2025-03-17 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 13.1174964904785 0 0 0 0
298 2025-03-18 00:00:00-04:00 14.2124996185303 14.2124996185303 14.2124996185303 14.2124996185303 13.159161567688 0 0 0 0
299 2025-03-19 00:00:00-04:00 14.227499961853 14.227499961853 14.227499961853 14.227499961853 13.1730499267578 0 0 0 0
300 2025-03-20 00:00:00-04:00 14.1149997711182 14.1149997711182 14.1149997711182 14.1149997711182 13.0688877105713 0 0 0 0
301 2025-03-21 00:00:00-04:00 14.0124998092651 14.0124998092651 14.0124998092651 14.0124998092651 12.9739847183228 0 0 0 0
302 2025-03-24 00:00:00-04:00 14.0150003433228 14.0150003433228 14.0150003433228 14.0150003433228 12.976300239563 0 0 0 0
303 2025-03-25 00:00:00-04:00 14.0775003433228 14.0775003433228 14.0775003433228 14.0775003433228 13.0341672897339 0 0 0 0
304 2025-03-26 00:00:00-04:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 12.9230613708496 0 0 0 0
305 2025-03-27 00:00:00-04:00 13.9549999237061 13.9549999237061 13.9549999237061 13.9549999237061 12.9207458496094 0 0 0 0
306 2025-03-28 00:00:00-04:00 13.8000001907349 13.8000001907349 13.8000001907349 13.8000001907349 12.7772340774536 0 0 0 0
307 2025-03-31 00:00:00-04:00 13.6824998855591 13.6824998855591 13.6824998855591 13.6824998855591 12.6684417724609 0 0 0 0
308 2025-04-01 00:00:00-04:00 13.727499961853 13.727499961853 13.727499961853 13.727499961853 12.7101068496704 0 0 0 0
309 2025-04-02 00:00:00-04:00 13.7475004196167 13.7475004196167 13.7475004196167 13.7475004196167 12.7286252975464 0 0 0 0
310 2025-04-03 00:00:00-04:00 13.4674997329712 13.4674997329712 13.4674997329712 13.4674997329712 12.4693765640259 0 0 0 0
311 2025-04-04 00:00:00-04:00 12.6424999237061 12.6424999237061 12.6424999237061 12.6424999237061 11.7055206298828 0 0 0 0
312 2025-04-07 00:00:00-04:00 12.2799997329712 12.2799997329712 12.2799997329712 12.2799997329712 11.3698863983154 0 0 0 0
313 2025-04-08 00:00:00-04:00 12.1774997711182 12.1774997711182 12.1774997711182 12.1774997711182 11.2749824523926 0 0 0 0
314 2025-04-09 00:00:00-04:00 12.7574996948242 12.7574996948242 12.7574996948242 12.7574996948242 11.8119964599609 0 0 0 0
315 2025-04-10 00:00:00-04:00 12.6899995803833 12.6899995803833 12.6899995803833 12.6899995803833 11.7494993209839 0 0 0 0
316 2025-04-11 00:00:00-04:00 12.9399995803833 12.9399995803833 12.9399995803833 12.9399995803833 11.9809713363647 0 0 0 0
317 2025-04-14 00:00:00-04:00 13.1350002288818 13.1350002288818 13.1350002288818 13.1350002288818 12.1615200042725 0 0 0 0
318 2025-04-15 00:00:00-04:00 13.2425003051758 13.2425003051758 13.2425003051758 13.2425003051758 12.2610521316528 0 0 0 0
319 2025-04-16 00:00:00-04:00 13.1674995422363 13.1674995422363 13.1674995422363 13.1674995422363 12.1916103363037 0 0 0 0
320 2025-04-17 00:00:00-04:00 13.289999961853 13.289999961853 13.289999961853 13.289999961853 12.3050317764282 0 0 0 0
321 2025-04-21 00:00:00-04:00 13.2174997329712 13.2174997329712 13.2174997329712 13.2174997329712 12.237904548645 0 0 0 0
322 2025-04-22 00:00:00-04:00 13.4949998855591 13.4949998855591 13.4949998855591 13.4949998855591 12.4948387145996 0 0 0 0
323 2025-04-23 00:00:00-04:00 13.6125001907349 13.6125001907349 13.6125001907349 13.6125001907349 12.603630065918 0 0 0 0
324 2025-04-24 00:00:00-04:00 13.7924995422363 13.7924995422363 13.7924995422363 13.7924995422363 12.7702894210815 0 0 0 0
325 2025-04-25 00:00:00-04:00 13.835000038147 13.835000038147 13.835000038147 13.835000038147 12.8096399307251 0 0 0 0
326 2025-04-28 00:00:00-04:00 13.9575004577637 13.9575004577637 13.9575004577637 13.9575004577637 12.9230613708496 0 0 0 0
327 2025-04-29 00:00:00-04:00 13.9624996185303 13.9624996185303 13.9624996185303 13.9624996185303 12.9276905059814 0 0 0 0
328 2025-04-30 00:00:00-04:00 13.9650001525879 13.9650001525879 13.9650001525879 13.9650001525879 12.9300050735474 0 0 0 0
329 2025-05-01 00:00:00-04:00 13.9399995803833 13.9399995803833 13.9399995803833 13.9399995803833 12.9068574905396 0 0 0 0
330 2025-05-02 00:00:00-04:00 14.1549997329712 14.1549997329712 14.1549997329712 14.1549997329712 13.1059236526489 0 0 0 0
331 2025-05-05 00:00:00-04:00 14.1674995422363 14.1674995422363 14.1674995422363 14.1674995422363 13.1174964904785 0 0 0 0
332 2025-05-06 00:00:00-04:00 14.2049999237061 14.2049999237061 14.2049999237061 14.2049999237061 13.1522178649902 0 0 0 0
333 2025-05-07 00:00:00-04:00 14.1125001907349 14.1125001907349 14.1125001907349 14.1125001907349 13.0665731430054 0 0 0 0
334 2025-05-08 00:00:00-04:00 14.1199998855591 14.1199998855591 14.1199998855591 14.1199998855591 13.0735177993774 0 0 0 0
335 2025-05-09 00:00:00-04:00 14.2399997711182 14.2399997711182 14.2399997711182 14.2399997711182 13.1846237182617 0 0 0 0
336 2025-05-12 00:00:00-04:00 14.4324998855591 14.4324998855591 14.4324998855591 14.4324998855591 13.3628568649292 0 0 0 0
337 2025-05-13 00:00:00-04:00 14.4849996566772 14.4849996566772 14.4849996566772 14.4849996566772 13.4114656448364 0 0 0 0
338 2025-05-14 00:00:00-04:00 14.4700002670288 14.4700002670288 14.4700002670288 14.4700002670288 13.3975782394409 0 0 0 0
339 2025-05-15 00:00:00-04:00 14.5524997711182 14.5524997711182 14.5524997711182 14.5524997711182 13.4739627838135 0 0 0 0
340 2025-05-16 00:00:00-04:00 14.6000003814697 14.6000003814697 14.6000003814697 14.6000003814697 13.5179433822632 0 0 0 0
341 2025-05-19 00:00:00-04:00 14.710000038147 14.710000038147 14.710000038147 14.710000038147 13.6197910308838 0 0 0 0
342 2025-05-20 00:00:00-04:00 14.772500038147 14.772500038147 14.772500038147 14.772500038147 13.6776580810547 0 0 0 0
343 2025-05-21 00:00:00-04:00 14.6925001144409 14.6925001144409 14.6925001144409 14.6925001144409 13.603588104248 0 0 0 0
344 2025-05-22 00:00:00-04:00 14.6899995803833 14.6899995803833 14.6899995803833 14.6899995803833 13.6012725830078 0 0 0 0
345 2025-05-23 00:00:00-04:00 14.7075004577637 14.7075004577637 14.7075004577637 14.7075004577637 13.6174764633179 0 0 0 0
346 2025-05-27 00:00:00-04:00 14.8649997711182 14.8649997711182 14.8649997711182 14.8649997711182 13.7633028030396 0 0 0 0
347 2025-05-28 00:00:00-04:00 14.7174997329712 14.7174997329712 14.7174997329712 14.7174997329712 13.6267347335815 0 0 0 0
348 2025-05-29 00:00:00-04:00 14.8199996948242 14.8199996948242 14.8199996948242 14.8199996948242 13.7216377258301 0 0 0 0
349 2025-05-30 00:00:00-04:00 14.7799997329712 14.7799997329712 14.7799997329712 14.7799997329712 13.6846027374268 0 0 0 0
350 2025-06-02 00:00:00-04:00 14.8950004577637 14.8950004577637 14.8950004577637 14.8950004577637 13.7910804748535 0 0 0 0
351 2025-06-03 00:00:00-04:00 14.8450002670288 14.8450002670288 14.8450002670288 14.8450002670288 13.7447853088379 0 0 0 0
352 2025-06-04 00:00:00-04:00 14.9300003051758 14.9300003051758 14.9300003051758 14.9300003051758 13.823486328125 0 0 0 0
353 2025-06-05 00:00:00-04:00 14.9700002670288 14.9700002670288 14.9700002670288 14.9700002670288 13.8605213165283 0 0 0 0
354 2025-06-06 00:00:00-04:00 15.0275001525879 15.0275001525879 15.0275001525879 15.0275001525879 13.9137592315674 0 0 0 0
355 2025-06-09 00:00:00-04:00 15.0775003433228 15.0775003433228 15.0775003433228 15.0775003433228 13.960054397583 0 0 0 0
356 2025-06-10 00:00:00-04:00 15.0775003433228 15.0775003433228 15.0775003433228 15.0775003433228 13.960054397583 0 0 0 0
357 2025-06-11 00:00:00-04:00 15.1300001144409 15.1300001144409 15.1300001144409 15.1300001144409 14.0086631774902 0 0 0 0
358 2025-06-12 00:00:00-04:00 15.1925001144409 15.1925001144409 15.1925001144409 15.1925001144409 14.0665311813355 0 0 0 0
359 2025-06-13 00:00:00-04:00 14.9899997711182 14.9899997711182 14.9899997711182 14.9899997711182 13.87903881073 0 0 0 0
360 2025-06-16 00:00:00-04:00 15.1149997711182 15.1149997711182 15.1149997711182 15.1149997711182 13.9947748184204 0 0 0 0
361 2025-06-17 00:00:00-04:00 14.960000038147 14.960000038147 14.960000038147 14.960000038147 13.8512620925903 0 0 0 0
362 2025-06-18 00:00:00-04:00 14.897500038147 14.897500038147 14.897500038147 14.897500038147 13.7933940887451 0 0 0 0
363 2025-06-20 00:00:00-04:00 14.7974996566772 14.7974996566772 14.7974996566772 14.7974996566772 13.7008056640625 0 0 0 0
364 2025-06-23 00:00:00-04:00 14.8675003051758 14.8675003051758 14.8675003051758 14.8675003051758 13.7656183242798 0 0 0 0
365 2025-06-24 00:00:00-04:00 15.0900001525879 15.0900001525879 15.0900001525879 15.0900001525879 13.9716272354126 0 0 0 0
366 2025-06-25 00:00:00-04:00 15.0249996185303 15.0249996185303 15.0249996185303 15.0249996185303 13.9114446640015 0 0 0 0
367 2025-06-26 00:00:00-04:00 15.1424999237061 15.1424999237061 15.1424999237061 15.1424999237061 14.0202360153198 0 0 0 0
368 2025-06-27 00:00:00-04:00 15.2650003433228 15.2650003433228 15.2650003433228 15.2650003433228 14.1336574554443 0 0 0 0
369 2025-06-30 00:00:00-04:00 15.2674999237061 15.2674999237061 15.2674999237061 15.2674999237061 14.1359720230103 0 0 0 0
370 2025-07-01 00:00:00-04:00 15.3149995803833 15.3149995803833 15.3149995803833 15.3149995803833 14.1799516677856 0 0 0 0
371 2025-07-02 00:00:00-04:00 15.3850002288818 15.3850002288818 15.3850002288818 15.3850002288818 14.2447643280029 0 0 0 0
372 2025-07-03 00:00:00-04:00 15.3850002288818 15.3850002288818 15.3850002288818 15.3850002288818 14.2447643280029 0 0 0 0
373 2025-07-07 00:00:00-04:00 15.2600002288818 15.2600002288818 15.2600002288818 15.2600002288818 14.1290283203125 0 0 0 0
374 2025-07-08 00:00:00-04:00 15.3374996185303 15.3374996185303 15.3374996185303 15.3374996185303 14.2007837295532 0 0 0 0
375 2025-07-09 00:00:00-04:00 15.3800001144409 15.3800001144409 15.3800001144409 15.3800001144409 14.2401342391968 0 0 0 0
376 2025-07-10 00:00:00-04:00 15.4300003051758 15.4300003051758 15.4300003051758 15.4300003051758 14.2864294052124 0 0 0 0
377 2025-07-11 00:00:00-04:00 15.3149995803833 15.3149995803833 15.3149995803833 15.3149995803833 14.1799516677856 0 0 0 0
378 2025-07-14 00:00:00-04:00 15.2875003814697 15.2875003814697 15.2875003814697 15.2875003814697 14.1544904708862 0 0 0 0
379 2025-07-15 00:00:00-04:00 15.2299995422363 15.2299995422363 15.2299995422363 15.2299995422363 14.1012516021729 0 0 0 0
380 2025-07-16 00:00:00-04:00 15.2700004577637 15.2700004577637 15.2700004577637 15.2700004577637 14.1382875442505 0 0 0 0
381 2025-07-17 00:00:00-04:00 15.3125 15.3125 15.3125 15.3125 14.1776371002197 0 0 0 0
382 2025-07-18 00:00:00-04:00 15.3199996948242 15.3199996948242 15.3199996948242 15.3199996948242 14.1845808029175 0 0 0 0
383 2025-07-21 00:00:00-04:00 15.3774995803833 15.3774995803833 15.3774995803833 15.3774995803833 14.2378196716309 0 0 0 0
384 2025-07-22 00:00:00-04:00 15.4350004196167 15.4350004196167 15.4350004196167 15.4350004196167 14.2910585403442 0 0 0 0
385 2025-07-23 00:00:00-04:00 15.6975002288818 15.6975002288818 15.6975002288818 15.6975002288818 14.5341033935547 0 0 0 0
386 2025-07-24 00:00:00-04:00 15.7174997329712 15.7174997329712 15.7174997329712 15.7174997329712 14.5526208877563 0 0 0 0
387 2025-07-25 00:00:00-04:00 15.6674995422363 15.6674995422363 15.6674995422363 15.6674995422363 14.506326675415 0 0 0 0
388 2025-07-28 00:00:00-04:00 15.539999961853 15.539999961853 15.539999961853 15.539999961853 14.3882761001587 0 0 0 0
389 2025-07-29 00:00:00-04:00 15.5200004577637 15.5200004577637 15.5200004577637 15.5200004577637 14.3697595596313 0 0 0 0
390 2025-07-30 00:00:00-04:00 15.4350004196167 15.4350004196167 15.4350004196167 15.4350004196167 14.2910585403442 0 0 0 0
391 2025-07-31 00:00:00-04:00 15.2624998092651 15.2624998092651 15.2624998092651 15.2624998092651 14.1313428878784 0 0 0 0
392 2025-08-01 00:00:00-04:00 15.1774997711182 15.1774997711182 15.1774997711182 15.1774997711182 14.0526418685913 0 0 0 0
393 2025-08-04 00:00:00-04:00 15.3424997329712 15.3424997329712 15.3424997329712 15.3424997329712 14.2054138183594 0 0 0 0
394 2025-08-05 00:00:00-04:00 15.352499961853 15.352499961853 15.352499961853 15.352499961853 14.2146730422974 0 0 0 0
395 2025-08-06 00:00:00-04:00 15.3374996185303 15.3374996185303 15.3374996185303 15.3374996185303 14.2007837295532 0 0 0 0
396 2025-08-07 00:00:00-04:00 15.4875001907349 15.4875001907349 15.4875001907349 15.4875001907349 14.3396673202515 0 0 0 0
397 2025-08-08 00:00:00-04:00 15.5299997329712 15.5299997329712 15.5299997329712 15.5299997329712 14.3790168762207 0 0 0 0
398 2025-08-11 00:00:00-04:00 15.5100002288818 15.5100002288818 15.5100002288818 15.5100002288818 14.3605003356934 0 0 0 0
399 2025-08-12 00:00:00-04:00 15.6925001144409 15.6925001144409 15.6925001144409 15.6925001144409 14.5294742584229 0 0 0 0
400 2025-08-13 00:00:00-04:00 15.8299999237061 15.8299999237061 15.8299999237061 15.8299999237061 14.6567831039429 0 0 0 0
401 2025-08-14 00:00:00-04:00 15.7775001525879 15.7775001525879 15.7775001525879 15.7775001525879 14.6081743240356 0 0 0 0
402 2025-08-15 00:00:00-04:00 15.835000038147 15.835000038147 15.835000038147 15.835000038147 14.661413192749 0 0 0 0
403 2025-08-18 00:00:00-04:00 15.8100004196167 15.8100004196167 15.8100004196167 15.8100004196167 14.6382665634155 0 0 0 0
404 2025-08-19 00:00:00-04:00 15.8575000762939 15.8575000762939 15.8575000762939 15.8575000762939 14.6822452545166 0 0 0 0
405 2025-08-20 00:00:00-04:00 15.8824996948242 15.8824996948242 15.8824996948242 15.8824996948242 14.7053918838501 0 0 0 0
406 2025-08-21 00:00:00-04:00 15.8549995422363 15.8549995422363 15.8549995422363 15.8549995422363 14.6799306869507 0 0 0 0
407 2025-08-22 00:00:00-04:00 16.0849990844727 16.0849990844727 16.0849990844727 16.0849990844727 14.8928833007813 0 0 0 0
408 2025-08-25 00:00:00-04:00 15.9624996185303 15.9624996185303 15.9624996185303 15.9624996185303 14.7794628143311 0 0 0 0
409 2025-08-26 00:00:00-04:00 15.8924999237061 15.8924999237061 15.8924999237061 15.8924999237061 14.7146511077881 0 0 0 0
410 2025-08-27 00:00:00-04:00 15.8800001144409 15.8800001144409 15.8800001144409 15.8800001144409 14.7030782699585 0 0 0 0
411 2025-08-28 00:00:00-04:00 15.9099998474121 15.9099998474121 15.9099998474121 15.9099998474121 14.7308540344238 0 0 0 0
412 2025-08-29 00:00:00-04:00 15.8900003433228 15.8900003433228 15.8900003433228 15.8900003433228 14.7123365402222 0 0 0 0
413 2025-09-02 00:00:00-04:00 15.7550001144409 15.7550001144409 15.7550001144409 15.7550001144409 14.5873422622681 0 0 0 0
414 2025-09-03 00:00:00-04:00 15.7550001144409 15.7550001144409 15.7550001144409 15.7550001144409 14.5873422622681 0 0 0 0
415 2025-09-04 00:00:00-04:00 15.7849998474121 15.7849998474121 15.7849998474121 15.7849998474121 14.6151180267334 0 0 0 0
416 2025-09-05 00:00:00-04:00 15.9250001907349 15.9250001907349 15.9250001907349 15.9250001907349 14.744743347168 0 0 0 0
417 2025-09-08 00:00:00-04:00 16.0249996185303 16.0249996185303 16.0249996185303 16.0249996185303 14.8373308181763 0 0 0 0
418 2025-09-09 00:00:00-04:00 16.0575008392334 16.0575008392334 16.0575008392334 16.0575008392334 14.8674230575562 0 0 0 0
419 2025-09-10 00:00:00-04:00 16.0750007629395 16.0750007629395 16.0750007629395 16.0750007629395 14.8836259841919 0 0 0 0
420 2025-09-11 00:00:00-04:00 16.2900009155273 16.2900009155273 16.2900009155273 16.2900009155273 15.0826921463013 0 0 0 0
421 2025-09-12 00:00:00-04:00 16.2299995422363 16.2299995422363 16.2299995422363 16.2299995422363 15.0271377563477 0 0 0 0
422 2025-09-15 00:00:00-04:00 16.3075008392334 16.3075008392334 16.3075008392334 16.3075008392334 15.098895072937 0 0 0 0
423 2025-09-16 00:00:00-04:00 16.3024997711182 16.3024997711182 16.3024997711182 16.3024997711182 15.0942649841309 0 0 0 0
424 2025-09-17 00:00:00-04:00 16.3474998474121 16.3474998474121 16.3474998474121 16.3474998474121 15.1359300613403 0 0 0 0
425 2025-09-18 00:00:00-04:00 16.3125 16.3125 16.3125 16.3125 15.1035232543945 0 0 0 0
426 2025-09-19 00:00:00-04:00 16.2749996185303 16.2749996185303 16.2749996185303 16.2749996185303 15.0688028335571 0 0 0 0
427 2025-09-22 00:00:00-04:00 16.3199996948242 16.3199996948242 16.3199996948242 16.3199996948242 15.1104679107666 0 0 0 0
428 2025-09-23 00:00:00-04:00 16.3250007629395 16.3250007629395 16.3250007629395 16.3250007629395 15.1150979995728 0 0 0 0
429 2025-09-24 00:00:00-04:00 16.2900009155273 16.2900009155273 16.2900009155273 16.2900009155273 15.0826921463013 0 0 0 0
430 2025-09-25 00:00:00-04:00 16.1324996948242 16.1324996948242 16.1324996948242 16.1324996948242 14.936863899231 0 0 0 0
431 2025-09-26 00:00:00-04:00 16.2124996185303 16.2124996185303 16.2124996185303 16.2124996185303 15.0109348297119 0 0 0 0
432 2025-09-29 00:00:00-04:00 16.3274993896484 16.3274993896484 16.3274993896484 16.3274993896484 15.1174116134644 0 0 0 0
433 2025-09-30 00:00:00-04:00 16.4500007629395 16.4500007629395 16.4500007629395 16.4500007629395 15.2308340072632 0 0 0 0
434 2025-10-01 00:00:00-04:00 16.5550003051758 16.5550003051758 16.5550003051758 16.5550003051758 15.3280515670776 0 0 0 0
435 2025-10-02 00:00:00-04:00 16.5349998474121 16.5349998474121 16.5349998474121 16.5349998474121 15.3095331192017 0 0 0 0
436 2025-10-03 00:00:00-04:00 16.625 16.625 16.625 16.625 15.3928632736206 0 0 0 0
437 2025-10-06 00:00:00-04:00 16.6224994659424 16.6224994659424 16.6224994659424 16.6224994659424 15.3905477523804 0 0 0 0
438 2025-10-07 00:00:00-04:00 16.4825000762939 16.4825000762939 16.4825000762939 16.4825000762939 15.2609243392944 0 0 0 0
439 2025-10-08 00:00:00-04:00 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 15.3049049377441 0 0 0 0
440 2025-10-09 00:00:00-04:00 16.4274997711182 16.4274997711182 16.4274997711182 16.4274997711182 15.210000038147 0 0 0 0
441 2025-10-10 00:00:00-04:00 16.1149997711182 16.1149997711182 16.1149997711182 16.1149997711182 14.9206609725952 0 0 0 0
442 2025-10-13 00:00:00-04:00 16.2775001525879 16.2775001525879 16.2775001525879 16.2775001525879 15.071117401123 0 0 0 0
443 2025-10-14 00:00:00-04:00 16.2975006103516 16.2975006103516 16.2975006103516 16.2975006103516 15.089635848999 0 0 0 0
444 2025-10-15 00:00:00-04:00 16.3675003051758 16.3675003051758 16.3675003051758 16.3675003051758 15.154447555542 0 0 0 0
445 2025-10-16 00:00:00-04:00 16.3875007629395 16.3875007629395 16.3875007629395 16.3875007629395 15.172966003418 0 0 0 0
446 2025-10-17 00:00:00-04:00 16.3999996185303 16.3999996185303 16.3999996185303 16.3999996185303 15.1845388412476 0 0 0 0
447 2025-10-20 00:00:00-04:00 16.4750003814697 16.4750003814697 16.4750003814697 16.4750003814697 15.2539806365967 0 0 0 0
448 2025-10-21 00:00:00-04:00 16.4099998474121 16.4099998474121 16.4099998474121 16.4099998474121 15.1937971115112 0 0 0 0
449 2025-10-22 00:00:00-04:00 16.4074993133545 16.4074993133545 16.4074993133545 16.4074993133545 15.1914825439453 0 0 0 0
450 2025-10-23 00:00:00-04:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 15.2400913238525 0 0 0 0
451 2025-10-24 00:00:00-04:00 16.5025005340576 16.5025005340576 16.5025005340576 16.5025005340576 15.2794427871704 0 0 0 0
452 2025-10-27 00:00:00-04:00 16.6000003814697 16.6000003814697 16.6000003814697 16.6000003814697 15.3697166442871 0 0 4 0
453 2025-10-28 00:00:00-04:00 16.5599994659424 16.5599994659424 16.5599994659424 16.5599994659424 15.3326797485352 0 0 0 0
454 2025-10-29 00:00:00-04:00 16.5900001525879 16.5900001525879 16.5900001525879 16.5900001525879 15.3604574203491 0 0 0 0
455 2025-10-30 00:00:00-04:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.2215747833252 0 0 0 0
456 2025-10-31 00:00:00-04:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.2215747833252 0 0 0 0
457 2025-11-03 00:00:00-05:00 16.4300003051758 16.4300003051758 16.4300003051758 16.4300003051758 15.2123155593872 0 0 0 0
458 2025-11-04 00:00:00-05:00 16.3199996948242 16.3199996948242 16.3199996948242 16.3199996948242 15.1104679107666 0 0 0 0
459 2025-11-05 00:00:00-05:00 16.3899993896484 16.3899993896484 16.3899993896484 16.3899993896484 15.1752796173096 0 0 0 0
460 2025-11-06 00:00:00-05:00 16.4400005340576 16.4400005340576 16.4400005340576 16.4400005340576 15.2215747833252 0 0 0 0
461 2025-11-07 00:00:00-05:00 16.4899997711182 16.4899997711182 16.4899997711182 16.4899997711182 15.2678680419922 0 0 0 0
462 2025-11-10 00:00:00-05:00 16.6800003051758 16.6800003051758 16.6800003051758 16.6800003051758 15.4437875747681 0 0 0 0
463 2025-11-11 00:00:00-05:00 16.8400001525879 16.8400001525879 16.8400001525879 16.8400001525879 15.59192943573 0 0 0 0
464 2025-11-12 00:00:00-05:00 16.9599990844727 16.9599990844727 16.9599990844727 16.9599990844727 15.7030344009399 0 0 0 0
465 2025-11-13 00:00:00-05:00 16.8199996948242 16.8199996948242 16.8199996948242 16.8199996948242 15.573410987854 0 0 0 0
466 2025-11-14 00:00:00-05:00 16.6599998474121 16.6599998474121 16.6599998474121 16.6599998474121 15.4252691268921 0 0 0 0
467 2025-11-17 00:00:00-05:00 16.4899997711182 16.4899997711182 16.4899997711182 16.4899997711182 15.2678680419922 0 0 0 0
468 2025-11-18 00:00:00-05:00 16.3299999237061 16.3299999237061 16.3299999237061 16.3299999237061 15.1197271347046 0 0 0 0
469 2025-11-19 00:00:00-05:00 16.2299995422363 16.2299995422363 16.2299995422363 16.2299995422363 15.0271377563477 0 0 0 0
470 2025-11-20 00:00:00-05:00 16.0699996948242 16.0699996948242 16.0699996948242 16.0699996948242 14.8789958953857 0 0 0 0
471 2025-11-21 00:00:00-05:00 16.25 16.25 16.25 16.25 15.0456562042236 0 0 0 0
472 2025-11-24 00:00:00-05:00 16.3099994659424 16.3099994659424 16.3099994659424 16.3099994659424 15.1012086868286 0 0 0 0
473 2025-11-25 00:00:00-05:00 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 15.2863864898682 0 0 0 0
474 2025-11-26 00:00:00-05:00 16.6599998474121 16.6599998474121 16.6599998474121 16.6599998474121 15.4252691268921 0 0 0 0
475 2025-11-28 00:00:00-05:00 16.7299995422363 16.7299995422363 16.7299995422363 16.7299995422363 15.4900808334351 0 0 0 0
476 2025-12-01 00:00:00-05:00 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 15.4530467987061 0 0 0 0
477 2025-12-02 00:00:00-05:00 16.7700004577637 16.7700004577637 16.7700004577637 16.7700004577637 15.5271167755127 0 0 0 0
478 2025-12-03 00:00:00-05:00 16.8199996948242 16.8199996948242 16.8199996948242 16.8199996948242 15.573410987854 0 0 0 0
479 2025-12-04 00:00:00-05:00 16.8799991607666 16.8799991607666 16.8799991607666 16.8799991607666 15.628963470459 0 0 0 0
480 2025-12-05 00:00:00-05:00 16.8400001525879 16.8400001525879 16.8400001525879 16.8400001525879 15.59192943573 0 0 0 0
481 2025-12-08 00:00:00-05:00 16.8600006103516 16.8600006103516 16.8600006103516 16.8600006103516 15.6104469299316 0 0 0 0
482 2025-12-09 00:00:00-05:00 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 15.582670211792 0 0 0 0
483 2025-12-10 00:00:00-05:00 16.9500007629395 16.9500007629395 16.9500007629395 16.9500007629395 15.6937770843506 0 0 0 0
484 2025-12-11 00:00:00-05:00 17.0799999237061 17.0799999237061 17.0799999237061 17.0799999237061 15.8141412734985 0 0 0 0
485 2025-12-12 00:00:00-05:00 17.0200004577637 17.0200004577637 17.0200004577637 17.0200004577637 15.7585887908936 0 0 0 0
486 2025-12-15 00:00:00-05:00 17.0900001525879 17.0900001525879 17.0900001525879 17.0900001525879 15.8234004974365 0 0 0 0
487 2025-12-16 00:00:00-05:00 16.9899997711182 16.9899997711182 16.9899997711182 16.9899997711182 15.7308120727539 0 0 0 0
488 2025-12-17 00:00:00-05:00 16.9200000762939 16.9200000762939 16.9200000762939 16.9200000762939 15.6659994125366 0 0 0 0
489 2025-12-18 00:00:00-05:00 16.2199993133545 16.2199993133545 16.2199993133545 16.2199993133545 16.2199993133545 0 0.837 0 0.417
490 2025-12-19 00:00:00-05:00 16.2999992370605 16.2999992370605 16.2999992370605 16.2999992370605 16.2999992370605 0 0 0 0
491 2025-12-22 00:00:00-05:00 16.3700008392334 16.3700008392334 16.3700008392334 16.3700008392334 16.3700008392334 0 0 0 0
492 2025-12-23 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
493 2025-12-24 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
494 2025-12-26 00:00:00-05:00 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 16.5300006866455 0 0 0 0
495 2025-12-29 00:00:00-05:00 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 16.5100002288818 0 0 0 0
496 2025-12-30 00:00:00-05:00 16.5400009155273 16.5400009155273 16.5400009155273 16.5400009155273 16.5400009155273 0 0 0 0
497 2025-12-31 00:00:00-05:00 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 16.4599990844727 0 0 0 0
498 2026-01-02 00:00:00-05:00 16.6299991607666 16.6299991607666 16.6299991607666 16.6299991607666 16.6299991607666 0 0 0 0
499 2026-01-05 00:00:00-05:00 16.7900009155273 16.7900009155273 16.7900009155273 16.7900009155273 16.7900009155273 0 0 0 0
500 2026-01-06 00:00:00-05:00 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 16.8299999237061 0 0 0 0
501 2026-01-07 00:00:00-05:00 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 16.6900005340576 0 0 0 0
502 2026-01-08 00:00:00-05:00 16.7600002288818 16.7600002288818 16.7600002288818 16.7600002288818 16.7600002288818 0 0 0 0
503 2026-01-09 00:00:00-05:00 16.8099994659424 16.8099994659424 16.8099994659424 16.8099994659424 16.8099994659424 0 0 0 0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,503 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits,Capital Gains
2024-01-10 00:00:00-05:00,100.029998779297,100.029998779297,100.029998779297,100.029998779297,85.4241455239785,0,0,0,0
2024-01-11 00:00:00-05:00,100.25,100.25,100.25,100.25,85.6120233258593,0,0,0,0
2024-01-12 00:00:00-05:00,100.440002441406,100.440002441406,100.440002441406,100.440002441406,85.7742826121002,0,0,0,0
2024-01-16 00:00:00-05:00,98.7099990844727,98.7099990844727,98.7099990844727,98.7099990844727,84.2968852280841,0,0,0,0
2024-01-17 00:00:00-05:00,97.0599975585938,97.0599975585938,97.0599975585938,97.0599975585938,82.8878082293684,0,0,0,0
2024-01-18 00:00:00-05:00,98.0299987792969,98.0299987792969,98.0299987792969,98.0299987792969,83.7161749838117,0,0,0,0
2024-01-19 00:00:00-05:00,98.7699966430664,98.7699966430664,98.7699966430664,98.7699966430664,84.3481222593641,0,0,0,0
2024-01-22 00:00:00-05:00,98.7600021362305,98.7600021362305,98.7600021362305,98.7600021362305,84.3395870977445,0,0,0,0
2024-01-23 00:00:00-05:00,99.370002746582,99.370002746582,99.370002746582,99.370002746582,84.8605186337266,0,0,0,0
2024-01-24 00:00:00-05:00,100.410003662109,100.410003662109,100.410003662109,100.410003662109,85.7486640964602,0,0,0,0
2024-01-25 00:00:00-05:00,100.349998474121,100.349998474121,100.349998474121,100.349998474121,85.6974205497896,0,0,0,0
2024-01-26 00:00:00-05:00,100.839996337891,100.839996337891,100.839996337891,100.839996337891,86.1158715078211,0,0,0,0
2024-01-29 00:00:00-05:00,101.190002441406,101.190002441406,101.190002441406,101.190002441406,86.4147715646627,0,0,0,0
2024-01-30 00:00:00-05:00,100.410003662109,100.410003662109,100.410003662109,100.410003662109,85.7486640964602,0,0,0,0
2024-01-31 00:00:00-05:00,99.2799987792969,99.2799987792969,99.2799987792969,99.2799987792969,84.783656571416,0,0,0,0
2024-02-01 00:00:00-05:00,100.800003051758,100.800003051758,100.800003051758,100.800003051758,86.0817178305614,0,0,0,0
2024-02-02 00:00:00-05:00,100.120002746582,100.120002746582,100.120002746582,100.120002746582,85.5010075862891,0,0,0,0
2024-02-05 00:00:00-05:00,100.269996643066,100.269996643066,100.269996643066,100.269996643066,85.6291001644892,0,0,0,0
2024-02-06 00:00:00-05:00,101.080001831055,101.080001831055,101.080001831055,101.080001831055,86.3208326637223,0,0,0,0
2024-02-07 00:00:00-05:00,101.860000610352,101.860000610352,101.860000610352,101.860000610352,86.9869401319248,0,0,0,0
2024-02-08 00:00:00-05:00,102.720001220703,102.720001220703,102.720001220703,102.720001220703,87.7213679854278,0,0,0,0
2024-02-09 00:00:00-05:00,103.440002441406,103.440002441406,103.440002441406,103.440002441406,88.3362384223503,0,0,0,0
2024-02-12 00:00:00-05:00,103.540000915527,103.540000915527,103.540000915527,103.540000915527,88.4216356462806,0,0,0,0
2024-02-13 00:00:00-05:00,101.23999786377,101.23999786377,101.23999786377,101.23999786377,86.4574669189325,0,0,0,0
2024-02-14 00:00:00-05:00,103.01000213623,103.01000213623,103.01000213623,103.01000213623,87.9690244955988,0,0,0,0
2024-02-15 00:00:00-05:00,104.330001831055,104.330001831055,104.330001831055,104.330001831055,89.0962847914933,0,0,0,0
2024-02-16 00:00:00-05:00,104.349998474121,104.349998474121,104.349998474121,104.349998474121,89.1133616301231,0,0,0,0
2024-02-20 00:00:00-05:00,103.480003356934,103.480003356934,103.480003356934,103.480003356934,88.3703986150005,0,0,0,0
2024-02-21 00:00:00-05:00,103.75,103.75,103.75,103.75,88.6009717711512,0,0,0,0
2024-02-22 00:00:00-05:00,106.080001831055,106.080001831055,106.080001831055,106.080001831055,90.5907590141392,0,0,0,0
2024-02-23 00:00:00-05:00,105.269996643066,105.269996643066,105.269996643066,105.269996643066,89.8990265149061,0,0,0,0
2024-02-26 00:00:00-05:00,105.349998474121,105.349998474121,105.349998474121,105.349998474121,89.9673469002065,0,0,0,0
2024-02-27 00:00:00-05:00,105.930000305176,105.930000305176,105.930000305176,105.930000305176,90.4626599205486,0,0,0,0
2024-02-28 00:00:00-05:00,105.209999084473,105.209999084473,105.209999084473,105.209999084473,89.8477894836261,0,0,0,0
2024-02-29 00:00:00-05:00,105.519996643066,105.519996643066,105.519996643066,105.519996643066,90.112522832427,0,0,0,0
2024-03-01 00:00:00-05:00,107.01000213623,107.01000213623,107.01000213623,107.01000213623,91.3849655759324,0,0,0,0
2024-03-04 00:00:00-05:00,106.449996948242,106.449996948242,106.449996948242,106.449996948242,90.9067293942201,0,0,0,0
2024-03-05 00:00:00-05:00,105.23999786377,105.23999786377,105.23999786377,105.23999786377,89.8734079992661,0,0,0,0
2024-03-06 00:00:00-05:00,106.629997253418,106.629997253418,106.629997253418,106.629997253418,91.0604470034508,0,0,0,0
2024-03-07 00:00:00-05:00,108.180000305176,108.180000305176,108.180000305176,108.180000305176,92.3841267782362,0,0,0,0
2024-03-08 00:00:00-05:00,106.98999786377,106.98999786377,106.98999786377,106.98999786377,91.367882221912,0,0,0,0
2024-03-11 00:00:00-04:00,107.110000610352,107.110000610352,107.110000610352,107.110000610352,91.4703627998626,0,0,0,0
2024-03-12 00:00:00-04:00,108.73999786377,108.73999786377,108.73999786377,108.73999786377,92.8623564445579,0,0,0,0
2024-03-13 00:00:00-04:00,108.550003051758,108.550003051758,108.550003051758,108.550003051758,92.7001036737077,0,0,0,0
2024-03-14 00:00:00-04:00,107.199996948242,107.199996948242,107.199996948242,107.199996948242,91.5472183467827,0,0,0,0
2024-03-15 00:00:00-04:00,106.120002746582,106.120002746582,106.120002746582,106.120002746582,90.6249192067894,0,0,0,0
2024-03-18 00:00:00-04:00,106.389999389648,106.389999389648,106.389999389648,106.389999389648,90.8554923629401,0,0,0,0
2024-03-19 00:00:00-04:00,106.459999084473,106.459999084473,106.459999084473,106.459999084473,90.9152710712303,0,0,0,0
2024-03-20 00:00:00-04:00,107.76000213623,107.76000213623,107.76000213623,107.76000213623,92.0254545284949,0,0,0,0
2024-03-21 00:00:00-04:00,108.040000915527,108.040000915527,108.040000915527,108.040000915527,92.2645693616558,0,0,0,0
2024-03-22 00:00:00-04:00,107.949996948242,107.949996948242,107.949996948242,107.949996948242,92.1877072993452,0,0,0,0
2024-03-25 00:00:00-04:00,107.790000915527,107.790000915527,107.790000915527,107.790000915527,92.0510730441349,0,0,0,0
2024-03-26 00:00:00-04:00,107.559997558594,107.559997558594,107.559997558594,107.559997558594,91.8546535652439,0,0,0,0
2024-03-27 00:00:00-04:00,107.650001525879,107.650001525879,107.650001525879,107.650001525879,91.9315156275545,0,0,0,0
2024-03-28 00:00:00-04:00,107.199996948242,107.199996948242,107.199996948242,107.199996948242,91.5472183467827,0,0,0,0
2024-04-01 00:00:00-04:00,107.290000915527,107.290000915527,107.290000915527,107.290000915527,91.6240804090932,0,0,0,0
2024-04-02 00:00:00-04:00,106.790000915527,106.790000915527,106.790000915527,106.790000915527,91.1970877740516,0,0,0,0
2024-04-03 00:00:00-04:00,107.290000915527,107.290000915527,107.290000915527,107.290000915527,91.6240804090932,0,0,0,0
2024-04-04 00:00:00-04:00,106.400001525879,106.400001525879,106.400001525879,106.400001525879,90.8640340399503,0,0,0,0
2024-04-05 00:00:00-04:00,106.959999084473,106.959999084473,106.959999084473,106.959999084473,91.342263706272,0,0,0,0
2024-04-08 00:00:00-04:00,107.470001220703,107.470001220703,107.470001220703,107.470001220703,91.7777980183239,0,0,0,0
2024-04-09 00:00:00-04:00,107.879997253418,107.879997253418,107.879997253418,107.879997253418,92.127928591055,0,0,0,0
2024-04-10 00:00:00-04:00,106.569999694824,106.569999694824,106.569999694824,106.569999694824,91.0092099721707,0,0,0,0
2024-04-11 00:00:00-04:00,107.400001525879,107.400001525879,107.400001525879,107.400001525879,91.7180193100337,0,0,0,0
2024-04-12 00:00:00-04:00,105.080001831055,105.080001831055,105.080001831055,105.080001831055,89.7367737440558,0,0,0,0
2024-04-15 00:00:00-04:00,104.309997558594,104.309997558594,104.309997558594,104.309997558594,89.0792014374729,0,0,0,0
2024-04-16 00:00:00-04:00,103.980003356934,103.980003356934,103.980003356934,103.980003356934,88.7973912500422,0,0,0,0
2024-04-17 00:00:00-04:00,103.279998779297,103.279998779297,103.279998779297,103.279998779297,88.1995976517495,0,0,0,0
2024-04-18 00:00:00-04:00,102.480003356934,102.480003356934,102.480003356934,102.480003356934,87.5164133449171,0,0,0,0
2024-04-19 00:00:00-04:00,101.139999389648,101.139999389648,101.139999389648,101.139999389648,86.3720696950023,0,0,0,0
2024-04-22 00:00:00-04:00,102.580001831055,102.580001831055,102.580001831055,102.580001831055,87.6018105688474,0,0,0,0
2024-04-23 00:00:00-04:00,104.879997253418,104.879997253418,104.879997253418,104.879997253418,89.5659727808048,0,0,0,0
2024-04-24 00:00:00-04:00,104.660003662109,104.660003662109,104.660003662109,104.660003662109,89.3781014943145,0,0,0,0
2024-04-25 00:00:00-04:00,103.930000305176,103.930000305176,103.930000305176,103.930000305176,88.7546893803818,0,0,0,0
2024-04-26 00:00:00-04:00,105.23999786377,105.23999786377,105.23999786377,105.23999786377,89.8734079992661,0,0,0,0
2024-04-29 00:00:00-04:00,105.75,105.75,105.75,105.75,90.308942311318,0,0,0,0
2024-04-30 00:00:00-04:00,103.949996948242,103.949996948242,103.949996948242,103.949996948242,88.7717662190117,0,0,0,0
2024-05-01 00:00:00-04:00,103.779998779297,103.779998779297,103.779998779297,103.779998779297,88.6265902867912,0,0,0,0
2024-05-02 00:00:00-04:00,106.279998779297,106.279998779297,106.279998779297,106.279998779297,90.7615534619997,0,0,0,0
2024-05-03 00:00:00-04:00,107.970001220703,107.970001220703,107.970001220703,107.970001220703,92.2047906533656,0,0,0,0
2024-05-06 00:00:00-04:00,108.73999786377,108.73999786377,108.73999786377,108.73999786377,92.8623564445579,0,0,0,0
2024-05-07 00:00:00-04:00,108.669998168945,108.669998168945,108.669998168945,108.669998168945,92.8025777362677,0,0,0,0
2024-05-08 00:00:00-04:00,108.230003356934,108.230003356934,108.230003356934,108.230003356934,92.4268286478966,0,0,0,0
2024-05-09 00:00:00-04:00,108.639999389648,108.639999389648,108.639999389648,108.639999389648,92.7769592206277,0,0,0,0
2024-05-10 00:00:00-04:00,108.819999694824,108.819999694824,108.819999694824,108.819999694824,92.9306768298583,0,0,0,0
2024-05-13 00:00:00-04:00,109.089996337891,109.089996337891,109.089996337891,109.089996337891,93.161249986009,0,0,0,0
2024-05-14 00:00:00-04:00,110.180000305176,110.180000305176,110.180000305176,110.180000305176,94.092097318403,0,0,0,0
2024-05-15 00:00:00-04:00,111.889999389648,111.889999389648,111.889999389648,111.889999389648,95.5524113483987,0,0,0,0
2024-05-16 00:00:00-04:00,111.449996948242,111.449996948242,111.449996948242,111.449996948242,95.176655744637,0,0,0,0
2024-05-17 00:00:00-04:00,111.470001220703,111.470001220703,111.470001220703,111.470001220703,95.1937390986574,0,0,0,0
2024-05-20 00:00:00-04:00,112.150001525879,112.150001525879,112.150001525879,112.150001525879,95.7744493429297,0,0,0,0
2024-05-21 00:00:00-04:00,111.660003662109,111.660003662109,111.660003662109,111.660003662109,95.3559983848982,0,0,0,0
2024-05-22 00:00:00-04:00,111.459999084473,111.459999084473,111.459999084473,111.459999084473,95.1851974216472,0,0,0,0
2024-05-23 00:00:00-04:00,111.360000610352,111.360000610352,111.360000610352,111.360000610352,95.099800197717,0,0,0,0
2024-05-24 00:00:00-04:00,112.25,112.25,112.25,112.25,95.85984656686,0,0,0,0
2024-05-28 00:00:00-04:00,112.25,112.25,112.25,112.25,95.85984656686,0,0,0,0
2024-05-29 00:00:00-04:00,110.459999084473,110.459999084473,110.459999084473,110.459999084473,94.3312121515638,0,0,0,0
2024-05-30 00:00:00-04:00,110.680000305176,110.680000305176,110.680000305176,110.680000305176,94.5190899534447,0,0,0,0
2024-05-31 00:00:00-04:00,110.790000915527,110.790000915527,110.790000915527,110.790000915527,94.6130288543851,0,0,0,0
2024-06-03 00:00:00-04:00,111.580001831055,111.580001831055,111.580001831055,111.580001831055,95.2876779995978,0,0,0,0
2024-06-04 00:00:00-04:00,111.139999389648,111.139999389648,111.139999389648,111.139999389648,94.9119223958362,0,0,0,0
2024-06-05 00:00:00-04:00,113.23999786377,113.23999786377,113.23999786377,113.23999786377,96.7052901599332,0,0,0,0
2024-06-06 00:00:00-04:00,113.720001220703,113.720001220703,113.720001220703,113.720001220703,97.115205956345,0,0,0,0
2024-06-07 00:00:00-04:00,112.059997558594,112.059997558594,112.059997558594,112.059997558594,95.6975872806192,0,0,0,0
2024-06-10 00:00:00-04:00,112.379997253418,112.379997253418,112.379997253418,112.379997253418,95.9708623064302,0,0,0,0
2024-06-11 00:00:00-04:00,111.599998474121,111.599998474121,111.599998474121,111.599998474121,95.3047548382277,0,0,0,0
2024-06-12 00:00:00-04:00,113.059997558594,113.059997558594,113.059997558594,113.059997558594,96.5515725507025,0,0,0,0
2024-06-13 00:00:00-04:00,111.959999084473,111.959999084473,111.959999084473,111.959999084473,95.6121900566889,0,0,0,0
2024-06-14 00:00:00-04:00,111.040000915527,111.040000915527,111.040000915527,111.040000915527,94.8265251719059,0,0,0,0
2024-06-17 00:00:00-04:00,111.150001525879,111.150001525879,111.150001525879,111.150001525879,94.9204640728464,0,0,0,0
2024-06-18 00:00:00-04:00,111.220001220703,111.220001220703,111.220001220703,111.220001220703,94.9802427811366,0,0,0,0
2024-06-20 00:00:00-04:00,111.019996643066,111.019996643066,111.019996643066,111.019996643066,94.8094418178856,0,0,0,0
2024-06-21 00:00:00-04:00,110.389999389648,110.389999389648,110.389999389648,110.389999389648,94.2714334432736,0,0,0,0
2024-06-24 00:00:00-04:00,110.51000213623,110.51000213623,110.51000213623,110.51000213623,94.3739140212242,0,0,0,0
2024-06-25 00:00:00-04:00,111.389999389648,111.389999389648,111.389999389648,111.389999389648,95.125418713357,0,0,0,0
2024-06-26 00:00:00-04:00,110.73999786377,110.73999786377,110.73999786377,110.73999786377,94.5703269847247,0,0,0,0
2024-06-27 00:00:00-04:00,110.25,110.25,110.25,110.25,94.1518760266932,0,0,0,0
2024-06-28 00:00:00-04:00,109.720001220703,109.720001220703,109.720001220703,109.720001220703,93.6992648760115,0,0,0,0
2024-07-01 00:00:00-04:00,109.650001525879,109.650001525879,109.650001525879,109.650001525879,93.6394861677213,0,0,0,0
2024-07-02 00:00:00-04:00,110.069999694824,110.069999694824,110.069999694824,110.069999694824,93.9981584174626,0,0,0,0
2024-07-03 00:00:00-04:00,111.51000213623,111.51000213623,111.51000213623,111.51000213623,95.2278992913076,0,0,0,0
2024-07-05 00:00:00-04:00,112.48999786377,112.48999786377,112.48999786377,112.48999786377,96.0648012073706,0,0,0,0
2024-07-08 00:00:00-04:00,112.169998168945,112.169998168945,112.169998168945,112.169998168945,95.7915261815596,0,0,0,0
2024-07-09 00:00:00-04:00,112.389999389648,112.389999389648,112.389999389648,112.389999389648,95.9794039834404,0,0,0,0
2024-07-10 00:00:00-04:00,113.769996643066,113.769996643066,113.769996643066,113.769996643066,97.1579013106149,0,0,0,0
2024-07-11 00:00:00-04:00,113.860000610352,113.860000610352,113.860000610352,113.860000610352,97.2347633729255,0,0,0,0
2024-07-12 00:00:00-04:00,115.230003356934,115.230003356934,115.230003356934,115.230003356934,98.4047255384803,0,0,0,0
2024-07-15 00:00:00-04:00,113.779998779297,113.779998779297,113.779998779297,113.779998779297,97.1664429876251,0,0,0,0
2024-07-16 00:00:00-04:00,114.279998779297,114.279998779297,114.279998779297,114.279998779297,97.5934356226668,0,0,0,0
2024-07-17 00:00:00-04:00,111.639999389648,111.639999389648,111.639999389648,111.639999389648,95.3389150308779,0,0,0,0
2024-07-18 00:00:00-04:00,110.540000915527,110.540000915527,110.540000915527,110.540000915527,94.3995325368642,0,0,0,0
2024-07-19 00:00:00-04:00,109.949996948242,109.949996948242,109.949996948242,109.949996948242,93.895677839512,0,0,0,0
2024-07-22 00:00:00-04:00,111.51000213623,111.51000213623,111.51000213623,111.51000213623,95.2278992913076,0,0,0,0
2024-07-23 00:00:00-04:00,111.459999084473,111.459999084473,111.459999084473,111.459999084473,95.1851974216472,0,0,0,0
2024-07-24 00:00:00-04:00,108.900001525879,108.900001525879,108.900001525879,108.900001525879,92.9989972151587,0,0,0,0
2024-07-25 00:00:00-04:00,108.080001831055,108.080001831055,108.080001831055,108.080001831055,92.298729554306,0,0,0,0
2024-07-26 00:00:00-04:00,109.48999786377,109.48999786377,109.48999786377,109.48999786377,93.5028453971205,0,0,0,0
2024-07-29 00:00:00-04:00,108.769996643066,108.769996643066,108.769996643066,108.769996643066,92.8879749601979,0,0,0,0
2024-07-30 00:00:00-04:00,108.5,108.5,108.5,108.5,92.6574018040473,0,0,0,0
2024-07-31 00:00:00-04:00,111.089996337891,111.089996337891,111.089996337891,111.089996337891,94.8692205261758,0,0,0,0
2024-08-01 00:00:00-04:00,107.879997253418,107.879997253418,107.879997253418,107.879997253418,92.127928591055,0,0,0,0
2024-08-02 00:00:00-04:00,105.830001831055,105.830001831055,105.830001831055,105.830001831055,90.3772626966184,0,0,0,0
2024-08-05 00:00:00-04:00,103.870002746582,103.870002746582,103.870002746582,103.870002746582,88.7034523491018,0,0,0,0
2024-08-06 00:00:00-04:00,104.76000213623,104.76000213623,104.76000213623,104.76000213623,89.4634987182448,0,0,0,0
2024-08-07 00:00:00-04:00,105.199996948242,105.199996948242,105.199996948242,105.199996948242,89.8392478066159,0,0,0,0
2024-08-08 00:00:00-04:00,107.900001525879,107.900001525879,107.900001525879,107.900001525879,92.1450119450754,0,0,0,0
2024-08-09 00:00:00-04:00,108.180000305176,108.180000305176,108.180000305176,108.180000305176,92.3841267782362,0,0,0,0
2024-08-12 00:00:00-04:00,108.069999694824,108.069999694824,108.069999694824,108.069999694824,92.2901878772958,0,0,0,0
2024-08-13 00:00:00-04:00,109.900001525879,109.900001525879,109.900001525879,109.900001525879,93.8529824852421,0,0,0,0
2024-08-14 00:00:00-04:00,109.779998779297,109.779998779297,109.779998779297,109.779998779297,93.7505019072915,0,0,0,0
2024-08-15 00:00:00-04:00,112.300003051758,112.300003051758,112.300003051758,112.300003051758,95.9025484365204,0,0,0,0
2024-08-16 00:00:00-04:00,113,113,113,113,96.5003355194225,0,0,0,0
2024-08-19 00:00:00-04:00,114.830001831055,114.830001831055,114.830001831055,114.830001831055,98.0631301273688,0,0,0,0
2024-08-20 00:00:00-04:00,113.830001831055,113.830001831055,113.830001831055,113.830001831055,97.2091448572854,0,0,0,0
2024-08-21 00:00:00-04:00,114.959999084473,114.959999084473,114.959999084473,114.959999084473,98.1741458669391,0,0,0,0
2024-08-22 00:00:00-04:00,113.819999694824,113.819999694824,113.819999694824,113.819999694824,97.2006031802753,0,0,0,0
2024-08-23 00:00:00-04:00,115.139999389648,115.139999389648,115.139999389648,115.139999389648,98.3278634761697,0,0,0,0
2024-08-26 00:00:00-04:00,113.629997253418,113.629997253418,113.629997253418,113.629997253418,97.0383438940344,0,0,0,0
2024-08-27 00:00:00-04:00,113.970001220703,113.970001220703,113.970001220703,113.970001220703,97.3287022738659,0,0,0,0
2024-08-28 00:00:00-04:00,112.879997253418,112.879997253418,112.879997253418,112.879997253418,96.3978549414719,0,0,0,0
2024-08-29 00:00:00-04:00,113.629997253418,113.629997253418,113.629997253418,113.629997253418,97.0383438940344,0,0,0,0
2024-08-30 00:00:00-04:00,113.870002746582,113.870002746582,113.870002746582,113.870002746582,97.2433050499356,0,0,0,0
2024-09-03 00:00:00-04:00,110.930000305176,110.930000305176,110.930000305176,110.930000305176,94.7325862709655,0,0,0,0
2024-09-04 00:00:00-04:00,110.569999694824,110.569999694824,110.569999694824,110.569999694824,94.4251510525043,0,0,0,0
2024-09-05 00:00:00-04:00,110.690002441406,110.690002441406,110.690002441406,110.690002441406,94.5276316304549,0,0,0,0
2024-09-06 00:00:00-04:00,108.099998474121,108.099998474121,108.099998474121,108.099998474121,92.3158063929358,0,0,0,0
2024-09-09 00:00:00-04:00,109.610000610352,109.610000610352,109.610000610352,109.610000610352,93.6053259750711,0,0,0,0
2024-09-10 00:00:00-04:00,109.330001831055,109.330001831055,109.330001831055,109.330001831055,93.3662111419102,0,0,0,0
2024-09-11 00:00:00-04:00,111.069999694824,111.069999694824,111.069999694824,111.069999694824,94.852143687546,0,0,0,0
2024-09-12 00:00:00-04:00,111.970001220703,111.970001220703,111.970001220703,111.970001220703,95.6207317336991,0,0,0,0
2024-09-13 00:00:00-04:00,112.319999694824,112.319999694824,112.319999694824,112.319999694824,95.9196252751502,0,0,0,0
2024-09-16 00:00:00-04:00,112.449996948242,112.449996948242,112.449996948242,112.449996948242,96.0306410147204,0,0,0,0
2024-09-17 00:00:00-04:00,112.650001525879,112.650001525879,112.650001525879,112.650001525879,96.2014419779714,0,0,0,0
2024-09-18 00:00:00-04:00,112.360000610352,112.360000610352,112.360000610352,112.360000610352,95.9537854678004,0,0,0,0
2024-09-19 00:00:00-04:00,115.370002746582,115.370002746582,115.370002746582,115.370002746582,98.5242829550607,0,0,0,0
2024-09-20 00:00:00-04:00,114.089996337891,114.089996337891,114.089996337891,114.089996337891,97.4311763364259,0,0,0,0
2024-09-23 00:00:00-04:00,114.589996337891,114.589996337891,114.589996337891,114.589996337891,97.8581689714676,0,0,0,0
2024-09-24 00:00:00-04:00,116.519996643066,116.519996643066,116.519996643066,116.519996643066,99.5063608033442,0,0,0,0
2024-09-25 00:00:00-04:00,116.199996948242,116.199996948242,116.199996948242,116.199996948242,99.2330857775331,0,0,0,0
2024-09-26 00:00:00-04:00,118.980003356934,118.980003356934,118.980003356934,118.980003356934,101.607170301293,0,0,0,0
2024-09-27 00:00:00-04:00,118.51000213623,118.51000213623,118.51000213623,118.51000213623,101.205796181891,0,0,0,0
2024-09-30 00:00:00-04:00,117.870002746582,117.870002746582,117.870002746582,117.870002746582,100.659246130269,0,0,0,0
2024-10-01 00:00:00-04:00,117.5,117.5,117.5,117.5,100.343269234798,0,0,0,0
2024-10-02 00:00:00-04:00,118.050003051758,118.050003051758,118.050003051758,118.050003051758,100.8129637395,0,0,0,0
2024-10-03 00:00:00-04:00,117.230003356934,117.230003356934,117.230003356934,117.230003356934,100.112696078647,0,0,0,0
2024-10-04 00:00:00-04:00,118.379997253418,118.379997253418,118.379997253418,118.379997253418,101.094773926931,0,0,0,0
2024-10-07 00:00:00-04:00,118.180000305176,118.180000305176,118.180000305176,118.180000305176,100.92397947907,0,0,0,0
2024-10-08 00:00:00-04:00,117.589996337891,117.589996337891,117.589996337891,117.589996337891,100.420124781718,0,0,0,0
2024-10-09 00:00:00-04:00,118,118,118,118,100.770261869839,0,0,0,0
2024-10-10 00:00:00-04:00,117.830001831055,117.830001831055,117.830001831055,117.830001831055,100.625085937619,0,0,0,0
2024-10-11 00:00:00-04:00,118.660003662109,118.660003662109,118.660003662109,118.660003662109,101.333895275482,0,0,0,0
2024-10-14 00:00:00-04:00,118.800003051758,118.800003051758,118.800003051758,118.800003051758,101.453452692062,0,0,0,0
2024-10-15 00:00:00-04:00,115.360000610352,115.360000610352,115.360000610352,115.360000610352,98.5157412780505,0,0,0,0
2024-10-16 00:00:00-04:00,115.660003662109,115.660003662109,115.660003662109,115.660003662109,98.7719394652318,0,0,0,0
2024-10-17 00:00:00-04:00,115.839996337891,115.839996337891,115.839996337891,115.839996337891,98.9256505590719,0,0,0,0
2024-10-18 00:00:00-04:00,117.300003051758,117.300003051758,117.300003051758,117.300003051758,100.172474786937,0,0,0,0
2024-10-21 00:00:00-04:00,116.569999694824,116.569999694824,116.569999694824,116.569999694824,99.5490626730046,0,0,0,0
2024-10-22 00:00:00-04:00,116.370002746582,116.370002746582,116.370002746582,116.370002746582,99.3782682251441,0,0,0,0
2024-10-23 00:00:00-04:00,115.430000305176,115.430000305176,115.430000305176,115.430000305176,98.5755199863408,0,0,0,0
2024-10-24 00:00:00-04:00,115.830001831055,115.830001831055,115.830001831055,115.830001831055,98.9171153974522,0,0,0,0
2024-10-25 00:00:00-04:00,116,116,116,116,99.0622913296727,0,0,0,0
2024-10-28 00:00:00-04:00,116.669998168945,116.669998168945,116.669998168945,116.669998168945,99.6344598969348,0,0,0,0
2024-10-29 00:00:00-04:00,116.73999786377,116.73999786377,116.73999786377,116.73999786377,99.694238605225,0,0,0,0
2024-10-30 00:00:00-04:00,115.720001220703,115.720001220703,115.720001220703,115.720001220703,98.8231764965118,0,0,0,0
2024-10-31 00:00:00-04:00,114.519996643066,114.519996643066,114.519996643066,114.519996643066,97.7983902631774,0,0,0,0
2024-11-01 00:00:00-04:00,115.129997253418,115.129997253418,115.129997253418,115.129997253418,98.3193217991595,0,0,0,0
2024-11-04 00:00:00-05:00,115.180000305176,115.180000305176,115.180000305176,115.180000305176,98.3620236688199,0,0,0,0
2024-11-05 00:00:00-05:00,116.449996948242,116.449996948242,116.449996948242,116.449996948242,99.446582095054,0,0,0,0
2024-11-06 00:00:00-05:00,115.25,115.25,115.25,115.25,98.4218023771101,0,0,0,0
2024-11-07 00:00:00-05:00,116.370002746582,116.370002746582,116.370002746582,116.370002746582,99.3782682251441,0,0,0,0
2024-11-08 00:00:00-05:00,114.830001831055,114.830001831055,114.830001831055,114.830001831055,98.0631301273688,0,0,0,0
2024-11-11 00:00:00-05:00,115.480003356934,115.480003356934,115.480003356934,115.480003356934,98.6182218560011,0,0,0,0
2024-11-12 00:00:00-05:00,114.48999786377,114.48999786377,114.48999786377,114.48999786377,97.7727717475374,0,0,0,0
2024-11-13 00:00:00-05:00,114.610000610352,114.610000610352,114.610000610352,114.610000610352,97.875252325488,0,0,0,0
2024-11-14 00:00:00-05:00,114.180000305176,114.180000305176,114.180000305176,114.180000305176,97.5080383987365,0,0,0,0
2024-11-15 00:00:00-05:00,112.25,112.25,112.25,112.25,95.85984656686,0,0,0,0
2024-11-18 00:00:00-05:00,112.879997253418,112.879997253418,112.879997253418,112.879997253418,96.3978549414719,0,0,0,0
2024-11-19 00:00:00-05:00,113.290000915527,113.290000915527,113.290000915527,113.290000915527,96.7479920295936,0,0,0,0
2024-11-20 00:00:00-05:00,113.379997253418,113.379997253418,113.379997253418,113.379997253418,96.8248475765136,0,0,0,0
2024-11-21 00:00:00-05:00,113.709999084473,113.709999084473,113.709999084473,113.709999084473,97.1066642793348,0,0,0,0
2024-11-22 00:00:00-05:00,114.160003662109,114.160003662109,114.160003662109,114.160003662109,97.4909615601067,0,0,0,0
2024-11-25 00:00:00-05:00,115.160003662109,115.160003662109,115.160003662109,115.160003662109,98.3449468301901,0,0,0,0
2024-11-26 00:00:00-05:00,114.76000213623,114.76000213623,114.76000213623,114.76000213623,98.0033514190786,0,0,0,0
2024-11-27 00:00:00-05:00,114.970001220703,114.970001220703,114.970001220703,114.970001220703,98.1826875439493,0,0,0,0
2024-11-29 00:00:00-05:00,115.339996337891,115.339996337891,115.339996337891,115.339996337891,98.4986579240302,0,0,0,0
2024-12-02 00:00:00-05:00,116.040000915527,116.040000915527,116.040000915527,116.040000915527,99.0964515223229,0,0,0,0
2024-12-03 00:00:00-05:00,116.110000610352,116.110000610352,116.110000610352,116.110000610352,99.1562302306131,0,0,0,0
2024-12-04 00:00:00-05:00,117.160003662109,117.160003662109,117.160003662109,117.160003662109,100.052917370357,0,0,0,0
2024-12-05 00:00:00-05:00,117.360000610352,117.360000610352,117.360000610352,117.360000610352,100.223711818217,0,0,0,0
2024-12-06 00:00:00-05:00,117.779998779297,117.779998779297,117.779998779297,117.779998779297,100.582384067959,0,0,0,0
2024-12-09 00:00:00-05:00,117.75,117.75,117.75,117.75,100.556765552319,0,0,0,0
2024-12-10 00:00:00-05:00,116.059997558594,116.059997558594,116.059997558594,116.059997558594,99.1135283609527,0,0,0,0
2024-12-11 00:00:00-05:00,117.069999694824,117.069999694824,117.069999694824,117.069999694824,99.9760553080463,0,0,0,0
2024-12-12 00:00:00-05:00,116.620002746582,116.620002746582,116.620002746582,116.620002746582,99.591764542665,0,0,0,0
2024-12-13 00:00:00-05:00,116.26000213623,116.26000213623,116.26000213623,116.26000213623,99.2843293242037,0,0,0,0
2024-12-16 00:00:00-05:00,115.830001831055,115.830001831055,115.830001831055,115.830001831055,98.9171153974522,0,0,0,0
2024-12-17 00:00:00-05:00,115.589996337891,115.589996337891,115.589996337891,115.589996337891,98.712154241551,0,0,0,0
2024-12-18 00:00:00-05:00,102.330001831055,102.330001831055,102.330001831055,102.330001831055,95.6355236078943,0,9.968,0,8.999
2024-12-19 00:00:00-05:00,102.040000915527,102.040000915527,102.040000915527,102.040000915527,95.3644946925522,0,0,0,0
2024-12-20 00:00:00-05:00,102.330001831055,102.330001831055,102.330001831055,102.330001831055,95.6355236078943,0,0,0,0
2024-12-23 00:00:00-05:00,103.139999389648,103.139999389648,103.139999389648,103.139999389648,96.3925307343588,0,0,0,0
2024-12-24 00:00:00-05:00,103.589996337891,103.589996337891,103.589996337891,103.589996337891,96.8130886645555,0,0,0,0
2024-12-26 00:00:00-05:00,103.410003662109,103.410003662109,103.410003662109,103.410003662109,96.6448711966975,0,0,0,0
2024-12-27 00:00:00-05:00,102.849998474121,102.849998474121,102.849998474121,102.849998474121,96.1215018190167,0,0,0,0
2024-12-30 00:00:00-05:00,101.949996948242,101.949996948242,101.949996948242,101.949996948242,95.2803788283474,0,0,0,0
2024-12-31 00:00:00-05:00,101.569999694824,101.569999694824,101.569999694824,101.569999694824,94.9252411790763,0,0,0,0
2025-01-02 00:00:00-05:00,101.699996948242,101.699996948242,101.699996948242,101.699996948242,95.0467339492879,0,0,0,0
2025-01-03 00:00:00-05:00,102.970001220703,102.970001220703,102.970001220703,102.970001220703,96.2336539278645,0,0,0,0
2025-01-06 00:00:00-05:00,104.370002746582,104.370002746582,104.370002746582,104.370002746582,97.5420666766528,0,0,0,0
2025-01-07 00:00:00-05:00,103.620002746582,103.620002746582,103.620002746582,103.620002746582,96.8411320394744,0,0,0,0
2025-01-08 00:00:00-05:00,103.389999389648,103.389999389648,103.389999389648,103.389999389648,96.6261756134183,0,0,0,0
2025-01-10 00:00:00-05:00,101.860000610352,101.860000610352,101.860000610352,101.860000610352,95.1962700944184,0,0,0,0
2025-01-13 00:00:00-05:00,100.919998168945,100.919998168945,100.919998168945,100.919998168945,94.3177630674664,0,0,0,0
2025-01-14 00:00:00-05:00,101.690002441406,101.690002441406,101.690002441406,101.690002441406,95.0373932879241,0,0,0,0
2025-01-15 00:00:00-05:00,103.26000213623,103.26000213623,103.26000213623,103.26000213623,96.5046828432066,0,0,0,0
2025-01-16 00:00:00-05:00,103.849998474121,103.849998474121,103.849998474121,103.849998474121,97.0560813352546,0,0,0,0
2025-01-17 00:00:00-05:00,104.319999694824,104.319999694824,104.319999694824,104.319999694824,97.4953348487306,0,0,0,0
2025-01-21 00:00:00-05:00,105.919998168945,105.919998168945,105.919998168945,105.919998168945,98.9906606486561,0,0,0,0
2025-01-22 00:00:00-05:00,106.370002746582,106.370002746582,106.370002746582,106.370002746582,99.4112257091287,0,0,0,0
2025-01-23 00:00:00-05:00,106.800003051758,106.800003051758,106.800003051758,106.800003051758,99.813095186322,0,0,0,0
2025-01-24 00:00:00-05:00,107.51000213623,107.51000213623,107.51000213623,107.51000213623,100.476645787218,0,0,0,0
2025-01-27 00:00:00-05:00,105.819999694824,105.819999694824,105.819999694824,105.819999694824,98.8972041230875,0,0,0,0
2025-01-28 00:00:00-05:00,107.050003051758,107.050003051758,107.050003051758,107.050003051758,100.046740065382,0,0,0,0
2025-01-29 00:00:00-05:00,106.919998168945,106.919998168945,106.919998168945,106.919998168945,99.9252401648941,0,0,0,0
2025-01-30 00:00:00-05:00,108.610000610352,108.610000610352,108.610000610352,108.610000610352,101.504681829024,0,0,0,0
2025-01-31 00:00:00-05:00,107.5,107.5,107.5,107.5,100.467297995578,0,0,0,0
2025-02-03 00:00:00-05:00,106.099998474121,106.099998474121,106.099998474121,106.099998474121,99.15888524679,0,0,0,0
2025-02-04 00:00:00-05:00,108.76000213623,108.76000213623,108.76000213623,108.76000213623,101.644870182515,0,0,0,0
2025-02-05 00:00:00-05:00,109.660003662109,109.660003662109,109.660003662109,109.660003662109,102.485993173185,0,0,0,0
2025-02-06 00:00:00-05:00,109.970001220703,109.970001220703,109.970001220703,109.970001220703,102.77571054153,0,0,0,0
2025-02-07 00:00:00-05:00,109.099998474121,109.099998474121,109.099998474121,109.099998474121,101.962623795504,0,0,0,0
2025-02-10 00:00:00-05:00,110.180000305176,110.180000305176,110.180000305176,110.180000305176,102.971971384307,0,0,0,0
2025-02-11 00:00:00-05:00,110.389999389648,110.389999389648,110.389999389648,110.389999389648,103.168232227084,0,0,0,0
2025-02-12 00:00:00-05:00,110.699996948242,110.699996948242,110.699996948242,110.699996948242,103.457949595429,0,0,0,0
2025-02-13 00:00:00-05:00,112.790000915527,112.790000915527,112.790000915527,112.790000915527,105.41122449211,0,0,0,0
2025-02-14 00:00:00-05:00,113.300003051758,113.300003051758,113.300003051758,113.300003051758,105.887862041869,0,0,0,0
2025-02-18 00:00:00-05:00,114.230003356934,114.230003356934,114.230003356934,114.230003356934,106.757021277181,0,0,0,0
2025-02-19 00:00:00-05:00,113.230003356934,113.230003356934,113.230003356934,113.230003356934,105.822441760943,0,0,0,0
2025-02-20 00:00:00-05:00,113.400001525879,113.400001525879,113.400001525879,113.400001525879,105.981318567437,0,0,0,0
2025-02-21 00:00:00-05:00,112.25,112.25,112.25,112.25,104.906550697708,0,0,0,0
2025-02-24 00:00:00-05:00,110.660003662109,110.660003662109,110.660003662109,110.660003662109,103.420572689423,0,0,0,0
2025-02-25 00:00:00-05:00,110.339996337891,110.339996337891,110.339996337891,110.339996337891,103.121500399162,0,0,0,0
2025-02-26 00:00:00-05:00,111.339996337891,111.339996337891,111.339996337891,111.339996337891,104.0560799154,0,0,0,0
2025-02-27 00:00:00-05:00,108.76000213623,108.76000213623,108.76000213623,108.76000213623,101.644870182515,0,0,0,0
2025-02-28 00:00:00-05:00,108.949996948242,108.949996948242,108.949996948242,108.949996948242,101.822435442013,0,0,0,0
2025-03-03 00:00:00-05:00,107.400001525879,107.400001525879,107.400001525879,107.400001525879,100.37384147001,0,0,0,0
2025-03-04 00:00:00-05:00,107.589996337891,107.589996337891,107.589996337891,107.589996337891,100.551406729507,0,0,0,0
2025-03-05 00:00:00-05:00,110.949996948242,110.949996948242,110.949996948242,110.949996948242,103.691594474489,0,0,0,0
2025-03-06 00:00:00-05:00,108.370002746582,108.370002746582,108.370002746582,108.370002746582,101.280384741605,0,0,0,0
2025-03-07 00:00:00-05:00,108.620002746582,108.620002746582,108.620002746582,108.620002746582,101.514029620664,0,0,0,0
2025-03-10 00:00:00-04:00,104.459999084473,104.459999084473,104.459999084473,104.459999084473,97.6261754105818,0,0,0,0
2025-03-11 00:00:00-04:00,105,105,105,105,98.1308492049834,0,0,0,0
2025-03-12 00:00:00-04:00,106.220001220703,106.220001220703,106.220001220703,106.220001220703,99.2710373556378,0,0,0,0
2025-03-13 00:00:00-04:00,104.980003356934,104.980003356934,104.980003356934,104.980003356934,98.11216075198,0,0,0,0
2025-03-14 00:00:00-04:00,107.809997558594,107.809997558594,107.809997558594,107.809997558594,100.757015363924,0,0,0,0
2025-03-17 00:00:00-04:00,109.620002746582,109.620002746582,109.620002746582,109.620002746582,102.448609136902,0,0,0,0
2025-03-18 00:00:00-04:00,108.589996337891,108.589996337891,108.589996337891,108.589996337891,101.485986245745,0,0,0,0
2025-03-19 00:00:00-04:00,109.5,109.5,109.5,109.5,102.336457028054,0,0,0,0
2025-03-20 00:00:00-04:00,109.029998779297,109.029998779297,109.029998779297,109.029998779297,101.897203514578,0,0,0,0
2025-03-21 00:00:00-04:00,108.029998779297,108.029998779297,108.029998779297,108.029998779297,100.96262399834,0,0,0,0
2025-03-24 00:00:00-04:00,108.680000305176,108.680000305176,108.680000305176,108.680000305176,101.57010210995,0,0,0,0
2025-03-25 00:00:00-04:00,108.680000305176,108.680000305176,108.680000305176,108.680000305176,101.57010210995,0,0,0,0
2025-03-26 00:00:00-04:00,106.26000213623,106.26000213623,106.26000213623,106.26000213623,99.3084213919205,0,0,0,0
2025-03-27 00:00:00-04:00,106.650001525879,106.650001525879,106.650001525879,106.650001525879,99.6729068328312,0,0,0,0
2025-03-28 00:00:00-04:00,104.559997558594,104.559997558594,104.559997558594,104.559997558594,97.7196319361505,0,0,0,0
2025-03-31 00:00:00-04:00,103.01000213623,103.01000213623,103.01000213623,103.01000213623,96.2710379641472,0,0,0,0
2025-04-01 00:00:00-04:00,103.129997253418,103.129997253418,103.129997253418,103.129997253418,96.3831829427192,0,0,0,0
2025-04-02 00:00:00-04:00,103.819999694824,103.819999694824,103.819999694824,103.819999694824,97.0280450906116,0,0,0,0
2025-04-03 00:00:00-04:00,100.059997558594,100.059997558594,100.059997558594,100.059997558594,93.5140241130797,0,0,0,0
2025-04-04 00:00:00-04:00,93.5199966430664,93.5199966430664,93.5199966430664,93.5199966430664,87.4018732212505,0,0,0,0
2025-04-07 00:00:00-04:00,92.1999969482422,92.1999969482422,92.1999969482422,92.1999969482422,86.1682285450275,0,0,0,0
2025-04-08 00:00:00-04:00,91.3600006103516,91.3600006103516,91.3600006103516,91.3600006103516,85.38318517392,0,0,0,0
2025-04-09 00:00:00-04:00,99.0800018310547,99.0800018310547,99.0800018310547,99.0800018310547,92.598140180121,0,0,0,0
2025-04-10 00:00:00-04:00,96.3499984741211,96.3499984741211,96.3499984741211,96.3499984741211,90.0467349634701,0,0,0,0
2025-04-11 00:00:00-04:00,98.9400024414063,98.9400024414063,98.9400024414063,98.9400024414063,92.4672996182698,0,0,0,0
2025-04-14 00:00:00-04:00,99.9199981689453,99.9199981689453,99.9199981689453,99.9199981689453,93.3831835512285,0,0,0,0
2025-04-15 00:00:00-04:00,100.849998474121,100.849998474121,100.849998474121,100.849998474121,94.2523427865408,0,0,0,0
2025-04-16 00:00:00-04:00,98.9899978637695,98.9899978637695,98.9899978637695,98.9899978637695,92.5140243159162,0,0,0,0
2025-04-17 00:00:00-04:00,99.6900024414063,99.6900024414063,99.6900024414063,99.6900024414063,93.1682342554482,0,0,0,0
2025-04-21 00:00:00-04:00,98.7200012207031,98.7200012207031,98.7200012207031,98.7200012207031,92.2616909838533,0,0,0,0
2025-04-22 00:00:00-04:00,100.769996643066,100.769996643066,100.769996643066,100.769996643066,94.1775747139756,0,0,0,0
2025-04-23 00:00:00-04:00,102.279998779297,102.279998779297,102.279998779297,102.279998779297,95.5887917799721,0,0,0,0
2025-04-24 00:00:00-04:00,104.540000915527,104.540000915527,104.540000915527,104.540000915527,97.7009434831471,0,0,0,0
2025-04-25 00:00:00-04:00,105.269996643066,105.269996643066,105.269996643066,105.269996643066,98.3831825370463,0,0,0,0
2025-04-28 00:00:00-04:00,105.150001525879,105.150001525879,105.150001525879,105.150001525879,98.2710375584743,0,0,0,0
2025-04-29 00:00:00-04:00,105.360000610352,105.360000610352,105.360000610352,105.360000610352,98.4672984012511,0,0,0,0
2025-04-30 00:00:00-04:00,106.040000915527,106.040000915527,106.040000915527,106.040000915527,99.102812757504,0,0,0,0
2025-05-01 00:00:00-04:00,106.019996643066,106.019996643066,106.019996643066,106.019996643066,99.0841171742247,0,0,0,0
2025-05-02 00:00:00-04:00,108.809997558594,108.809997558594,108.809997558594,108.809997558594,101.691594880162,0,0,0,0
2025-05-05 00:00:00-04:00,108.610000610352,108.610000610352,108.610000610352,108.610000610352,101.504681829024,0,0,0,0
2025-05-06 00:00:00-04:00,108.25,108.25,108.25,108.25,101.168232632757,0,0,0,0
2025-05-07 00:00:00-04:00,108.25,108.25,108.25,108.25,101.168232632757,0,0,0,0
2025-05-08 00:00:00-04:00,108.76000213623,108.76000213623,108.76000213623,108.76000213623,101.644870182515,0,0,0,0
2025-05-09 00:00:00-04:00,109.139999389648,109.139999389648,109.139999389648,109.139999389648,102.000007831786,0,0,0,0
2025-05-12 00:00:00-04:00,111.889999389648,111.889999389648,111.889999389648,111.889999389648,104.570101501441,0,0,0,0
2025-05-13 00:00:00-04:00,112.699996948242,112.699996948242,112.699996948242,112.699996948242,105.327108627905,0,0,0,0
2025-05-14 00:00:00-04:00,113.330001831055,113.330001831055,113.330001831055,113.330001831055,105.915898286512,0,0,0,0
2025-05-15 00:00:00-04:00,113.849998474121,113.849998474121,113.849998474121,113.849998474121,106.401876497634,0,0,0,0
2025-05-16 00:00:00-04:00,114.139999389648,114.139999389648,114.139999389648,114.139999389648,106.672905412976,0,0,0,0
2025-05-19 00:00:00-04:00,114.779998779297,114.779998779297,114.779998779297,114.779998779297,107.271035732946,0,0,0,0
2025-05-20 00:00:00-04:00,114.860000610352,114.860000610352,114.860000610352,114.860000610352,107.345803805512,0,0,0,0
2025-05-21 00:00:00-04:00,113.809997558594,113.809997558594,113.809997558594,113.809997558594,106.364492461351,0,0,0,0
2025-05-22 00:00:00-04:00,113.730003356934,113.730003356934,113.730003356934,113.730003356934,106.289731519062,0,0,0,0
2025-05-23 00:00:00-04:00,113.330001831055,113.330001831055,113.330001831055,113.330001831055,105.915898286512,0,0,0,0
2025-05-27 00:00:00-04:00,114.279998779297,114.279998779297,114.279998779297,114.279998779297,106.803745974827,0,0,0,0
2025-05-28 00:00:00-04:00,113.069999694824,113.069999694824,113.069999694824,113.069999694824,105.672905615813,0,0,0,0
2025-05-29 00:00:00-04:00,113.470001220703,113.470001220703,113.470001220703,113.470001220703,106.046738848363,0,0,0,0
2025-05-30 00:00:00-04:00,113.279998779297,113.279998779297,113.279998779297,113.279998779297,105.869166458589,0,0,0,0
2025-06-02 00:00:00-04:00,114.180000305176,114.180000305176,114.180000305176,114.180000305176,106.710289449259,0,0,0,0
2025-06-03 00:00:00-04:00,113.860000610352,113.860000610352,113.860000610352,113.860000610352,106.411224289274,0,0,0,0
2025-06-04 00:00:00-04:00,114.940002441406,114.940002441406,114.940002441406,114.940002441406,107.420571878077,0,0,0,0
2025-06-05 00:00:00-04:00,115.339996337891,115.339996337891,115.339996337891,115.339996337891,107.794397980351,0,0,0,0
2025-06-06 00:00:00-04:00,115.569999694824,115.569999694824,115.569999694824,115.569999694824,108.009354406407,0,0,0,0
2025-06-09 00:00:00-04:00,115.529998779297,115.529998779297,115.529998779297,115.529998779297,107.971970370125,0,0,0,0
2025-06-10 00:00:00-04:00,116.089996337891,116.089996337891,116.089996337891,116.089996337891,108.49533261753,0,0,0,0
2025-06-11 00:00:00-04:00,116.180000305176,116.180000305176,116.180000305176,116.180000305176,108.579448481735,0,0,0,0
2025-06-12 00:00:00-04:00,116.309997558594,116.309997558594,116.309997558594,116.309997558594,108.700941251946,0,0,0,0
2025-06-13 00:00:00-04:00,114.26000213623,114.26000213623,114.26000213623,114.26000213623,106.785057521824,0,0,0,0
2025-06-16 00:00:00-04:00,115.309997558594,115.309997558594,115.309997558594,115.309997558594,107.766361735708,0,0,0,0
2025-06-17 00:00:00-04:00,113.860000610352,113.860000610352,113.860000610352,113.860000610352,106.411224289274,0,0,0,0
2025-06-18 00:00:00-04:00,113.660003662109,113.660003662109,113.660003662109,113.660003662109,106.224311238136,0,0,0,0
2025-06-20 00:00:00-04:00,112.680000305176,112.680000305176,112.680000305176,112.680000305176,105.308420174902,0,0,0,0
2025-06-23 00:00:00-04:00,113.699996948242,113.699996948242,113.699996948242,113.699996948242,106.261688144143,0,0,0,0
2025-06-24 00:00:00-04:00,113.699996948242,113.699996948242,113.699996948242,113.699996948242,106.261688144143,0,0,0,0
2025-06-25 00:00:00-04:00,116.139999389648,116.139999389648,116.139999389648,116.139999389648,108.542064445452,0,0,0,0
2025-06-26 00:00:00-04:00,117.069999694824,117.069999694824,117.069999694824,117.069999694824,109.411223680764,0,0,0,0
2025-06-27 00:00:00-04:00,118.059997558594,118.059997558594,118.059997558594,118.059997558594,110.336455405363,0,0,0,0
2025-06-30 00:00:00-04:00,117.919998168945,117.919998168945,117.919998168945,117.919998168945,110.205614843511,0,0,0,0
2025-07-01 00:00:00-04:00,116.98999786377,116.98999786377,116.98999786377,116.98999786377,109.336455608199,0,0,0,0
2025-07-02 00:00:00-04:00,117.449996948242,117.449996948242,117.449996948242,117.449996948242,109.766361330035,0,0,0,0
2025-07-03 00:00:00-04:00,117.779998779297,117.779998779297,117.779998779297,117.779998779297,110.07477428166,0,0,0,0
2025-07-07 00:00:00-04:00,116.849998474121,116.849998474121,116.849998474121,116.849998474121,109.205615046348,0,0,0,0
2025-07-08 00:00:00-04:00,117.629997253418,117.629997253418,117.629997253418,117.629997253418,109.934585928169,0,0,0,0
2025-07-09 00:00:00-04:00,118.209999084473,118.209999084473,118.209999084473,118.209999084473,110.476643758853,0,0,0,0
2025-07-10 00:00:00-04:00,117.73999786377,117.73999786377,117.73999786377,117.73999786377,110.037390245378,0,0,0,0
2025-07-11 00:00:00-04:00,116.75,116.75,116.75,116.75,109.112158520779,0,0,0,0
2025-07-14 00:00:00-04:00,116.779998779297,116.779998779297,116.779998779297,116.779998779297,109.140194765422,0,0,0,0
2025-07-15 00:00:00-04:00,117.120002746582,117.120002746582,117.120002746582,117.120002746582,109.457955508687,0,0,0,0
2025-07-16 00:00:00-04:00,117.430000305176,117.430000305176,117.430000305176,117.430000305176,109.747672877032,0,0,0,0
2025-07-17 00:00:00-04:00,118.220001220703,118.220001220703,118.220001220703,118.220001220703,110.485991550493,0,0,0,0
2025-07-18 00:00:00-04:00,117.610000610352,117.610000610352,117.610000610352,117.610000610352,109.915897475166,0,0,0,0
2025-07-21 00:00:00-04:00,117.699996948242,117.699996948242,117.699996948242,117.699996948242,110.000006209095,0,0,0,0
2025-07-22 00:00:00-04:00,117.699996948242,117.699996948242,117.699996948242,117.699996948242,110.000006209095,0,0,0,0
2025-07-23 00:00:00-04:00,119.860000610352,119.860000610352,119.860000610352,119.860000610352,112.018701386701,0,0,0,0
2025-07-24 00:00:00-04:00,119.449996948242,119.449996948242,119.449996948242,119.449996948242,111.635520362511,0,0,0,0
2025-07-25 00:00:00-04:00,119.559997558594,119.559997558594,119.559997558594,119.559997558594,111.73832467972,0,0,0,0
2025-07-28 00:00:00-04:00,118.449996948242,118.449996948242,118.449996948242,118.449996948242,110.700940846273,0,0,0,0
2025-07-29 00:00:00-04:00,117.309997558594,117.309997558594,117.309997558594,117.309997558594,109.635520768184,0,0,0,0
2025-07-30 00:00:00-04:00,115.879997253418,115.879997253418,115.879997253418,115.879997253418,108.299071774753,0,0,0,0
2025-07-31 00:00:00-04:00,114.089996337891,114.089996337891,114.089996337891,114.089996337891,106.626173585054,0,0,0,0
2025-08-01 00:00:00-04:00,113.199996948242,113.199996948242,113.199996948242,113.199996948242,105.794398386024,0,0,0,0
2025-08-04 00:00:00-04:00,114.839996337891,114.839996337891,114.839996337891,114.839996337891,107.327108222232,0,0,0,0
2025-08-05 00:00:00-04:00,114.330001831055,114.330001831055,114.330001831055,114.330001831055,106.85047780275,0,0,0,0
2025-08-06 00:00:00-04:00,114.51000213623,114.51000213623,114.51000213623,114.51000213623,107.018702400883,0,0,0,0
2025-08-07 00:00:00-04:00,116.080001831055,116.080001831055,116.080001831055,116.080001831055,108.485991956166,0,0,0,0
2025-08-08 00:00:00-04:00,116.370002746582,116.370002746582,116.370002746582,116.370002746582,108.757020871508,0,0,0,0
2025-08-11 00:00:00-04:00,115.360000610352,115.360000610352,115.360000610352,115.360000610352,107.813093563631,0,0,0,0
2025-08-12 00:00:00-04:00,117.699996948242,117.699996948242,117.699996948242,117.699996948242,110.000006209095,0,0,0,0
2025-08-13 00:00:00-04:00,118.580001831055,118.580001831055,118.580001831055,118.580001831055,110.822440746761,0,0,0,0
2025-08-14 00:00:00-04:00,117.860000610352,117.860000610352,117.860000610352,117.860000610352,110.149542354225,0,0,0,0
2025-08-15 00:00:00-04:00,118.900001525879,118.900001525879,118.900001525879,118.900001525879,111.121505906746,0,0,0,0
2025-08-18 00:00:00-04:00,119.309997558594,119.309997558594,119.309997558594,119.309997558594,111.50467980066,0,0,0,0
2025-08-19 00:00:00-04:00,118.860000610352,118.860000610352,118.860000610352,118.860000610352,111.084121870463,0,0,0,0
2025-08-20 00:00:00-04:00,118.569999694824,118.569999694824,118.569999694824,118.569999694824,110.813092955121,0,0,0,0
2025-08-21 00:00:00-04:00,117.940002441406,117.940002441406,117.940002441406,117.940002441406,110.224310426791,0,0,0,0
2025-08-22 00:00:00-04:00,120.230003356934,120.230003356934,120.230003356934,120.230003356934,112.364498374609,0,0,0,0
2025-08-25 00:00:00-04:00,119.349998474121,119.349998474121,119.349998474121,119.349998474121,111.542063836943,0,0,0,0
2025-08-26 00:00:00-04:00,119.800003051758,119.800003051758,119.800003051758,119.800003051758,111.962628897415,0,0,0,0
2025-08-27 00:00:00-04:00,119.199996948242,119.199996948242,119.199996948242,119.199996948242,111.401875483452,0,0,0,0
2025-08-28 00:00:00-04:00,119.529998779297,119.529998779297,119.529998779297,119.529998779297,111.710288435077,0,0,0,0
2025-08-29 00:00:00-04:00,118.589996337891,118.589996337891,118.589996337891,118.589996337891,110.831781408125,0,0,0,0
2025-09-02 00:00:00-04:00,117.099998474121,117.099998474121,117.099998474121,117.099998474121,109.439259925407,0,0,0,0
2025-09-03 00:00:00-04:00,117.660003662109,117.660003662109,117.660003662109,117.660003662109,109.962629303088,0,0,0,0
2025-09-04 00:00:00-04:00,118.580001831055,118.580001831055,118.580001831055,118.580001831055,110.822440746761,0,0,0,0
2025-09-05 00:00:00-04:00,119.410003662109,119.410003662109,119.410003662109,119.410003662109,111.598143456504,0,0,0,0
2025-09-08 00:00:00-04:00,120.5,120.5,120.5,120.5,112.616831706671,0,0,0,0
2025-09-09 00:00:00-04:00,120.860000610352,120.860000610352,120.860000610352,120.860000610352,112.953280902939,0,0,0,0
2025-09-10 00:00:00-04:00,120.610000610352,120.610000610352,120.610000610352,120.610000610352,112.71963602388,0,0,0,0
2025-09-11 00:00:00-04:00,121.599998474121,121.599998474121,121.599998474121,121.599998474121,113.644867748478,0,0,0,0
2025-09-12 00:00:00-04:00,121.209999084473,121.209999084473,121.209999084473,121.209999084473,113.280382307567,0,0,0,0
2025-09-15 00:00:00-04:00,122.430000305176,122.430000305176,122.430000305176,122.430000305176,114.420570458222,0,0,0,0
2025-09-16 00:00:00-04:00,122.900001525879,122.900001525879,122.900001525879,122.900001525879,114.859823971698,0,0,0,0
2025-09-17 00:00:00-04:00,123.110000610352,123.110000610352,123.110000610352,123.110000610352,115.056084814475,0,0,0,0
2025-09-18 00:00:00-04:00,124.75,124.75,124.75,124.75,116.588794650683,0,0,0,0
2025-09-19 00:00:00-04:00,123.940002441406,123.940002441406,123.940002441406,123.940002441406,115.831787524218,0,0,0,0
2025-09-22 00:00:00-04:00,124.569999694824,124.569999694824,124.569999694824,124.569999694824,116.420570052549,0,0,0,0
2025-09-23 00:00:00-04:00,124,124,124,124,115.887860013504,0,0,0,0
2025-09-24 00:00:00-04:00,123.26000213623,123.26000213623,123.26000213623,123.26000213623,115.196273167965,0,0,0,0
2025-09-25 00:00:00-04:00,122.220001220703,122.220001220703,122.220001220703,122.220001220703,114.224309615445,0,0,0,0
2025-09-26 00:00:00-04:00,122.120002746582,122.120002746582,122.120002746582,122.120002746582,114.130853089876,0,0,0,0
2025-09-29 00:00:00-04:00,123.169998168945,123.169998168945,123.169998168945,123.169998168945,115.112157303761,0,0,0,0
2025-09-30 00:00:00-04:00,123.199996948242,123.199996948242,123.199996948242,123.199996948242,115.140193548404,0,0,0,0
2025-10-01 00:00:00-04:00,123.860000610352,123.860000610352,123.860000610352,123.860000610352,115.757019451653,0,0,0,0
2025-10-02 00:00:00-04:00,125.309997558594,125.309997558594,125.309997558594,125.309997558594,117.112156898088,0,0,0,0
2025-10-03 00:00:00-04:00,125.650001525879,125.650001525879,125.650001525879,125.650001525879,117.429917641352,0,0,0,0
2025-10-06 00:00:00-04:00,126.889999389648,126.889999389648,126.889999389648,126.889999389648,118.58879424501,0,0,0,0
2025-10-07 00:00:00-04:00,125.580001831055,125.580001831055,125.580001831055,125.580001831055,117.364497360426,0,0,0,0
2025-10-08 00:00:00-04:00,126.120002746582,126.120002746582,126.120002746582,126.120002746582,117.869171154828,0,0,0,0
2025-10-09 00:00:00-04:00,125.040000915527,125.040000915527,125.040000915527,125.040000915527,116.859823566025,0,0,0,0
2025-10-10 00:00:00-04:00,120.529998779297,120.529998779297,120.529998779297,120.529998779297,112.644867951314,0,0,0,0
2025-10-13 00:00:00-04:00,123.080001831055,123.080001831055,123.080001831055,123.080001831055,115.028048569832,0,0,0,0
2025-10-14 00:00:00-04:00,122.540000915527,122.540000915527,122.540000915527,122.540000915527,114.52337477543,0,0,0,0
2025-10-15 00:00:00-04:00,122.839996337891,122.839996337891,122.839996337891,122.839996337891,114.803744352136,0,0,0,0
2025-10-16 00:00:00-04:00,122.970001220703,122.970001220703,122.970001220703,122.970001220703,114.925244252623,0,0,0,0
2025-10-17 00:00:00-04:00,123.040000915527,123.040000915527,123.040000915527,123.040000915527,114.990664533549,0,0,0,0
2025-10-20 00:00:00-04:00,124.769996643066,124.769996643066,124.769996643066,124.769996643066,116.607483103686,0,0,0,0
2025-10-21 00:00:00-04:00,124.120002746582,124.120002746582,124.120002746582,124.120002746582,116.000012122352,0,0,0,0
2025-10-22 00:00:00-04:00,122.669998168945,122.669998168945,122.669998168945,122.669998168945,114.644867545642,0,0,0,0
2025-10-23 00:00:00-04:00,123.949996948242,123.949996948242,123.949996948242,123.949996948242,115.841128185582,0,0,0,0
2025-10-24 00:00:00-04:00,124.440002441406,124.440002441406,124.440002441406,124.440002441406,116.299077282337,0,0,0,0
2025-10-27 00:00:00-04:00,126.180000305176,126.180000305176,126.180000305176,126.180000305176,117.925243644114,0,0,0,0
2025-10-28 00:00:00-04:00,125.730003356934,125.730003356934,125.730003356934,125.730003356934,117.504685713917,0,0,0,0
2025-10-29 00:00:00-04:00,126,126,126,126,117.75701904598,0,0,0,0
2025-10-30 00:00:00-04:00,125.300003051758,125.300003051758,125.300003051758,125.300003051758,117.102816236724,0,0,0,0
2025-10-31 00:00:00-04:00,124.940002441406,124.940002441406,124.940002441406,124.940002441406,116.766367040456,0,0,0,0
2025-11-03 00:00:00-05:00,125.080001831055,125.080001831055,125.080001831055,125.080001831055,116.897207602307,0,0,0,0
2025-11-04 00:00:00-05:00,122.650001525879,122.650001525879,122.650001525879,122.650001525879,114.626179092638,0,0,0,0
2025-11-05 00:00:00-05:00,123.150001525879,123.150001525879,123.150001525879,123.150001525879,115.093468850757,0,0,0,0
2025-11-06 00:00:00-05:00,121.400001525879,121.400001525879,121.400001525879,121.400001525879,113.457954697341,0,0,0,0
2025-11-07 00:00:00-05:00,120.959999084473,120.959999084473,120.959999084473,120.959999084473,113.046737428508,0,0,0,0
2025-11-10 00:00:00-05:00,122.849998474121,122.849998474121,122.849998474121,122.849998474121,114.813092143775,0,0,0,0
2025-11-11 00:00:00-05:00,123.300003051758,123.300003051758,123.300003051758,123.300003051758,115.233657204248,0,0,0,0
2025-11-12 00:00:00-05:00,123.650001525879,123.650001525879,123.650001525879,123.650001525879,115.560758608876,0,0,0,0
2025-11-13 00:00:00-05:00,121.470001220703,121.470001220703,121.470001220703,121.470001220703,113.523374978266,0,0,0,0
2025-11-14 00:00:00-05:00,121.330001831055,121.330001831055,121.330001831055,121.330001831055,113.392534416415,0,0,0,0
2025-11-17 00:00:00-05:00,119.73999786377,119.73999786377,119.73999786377,119.73999786377,111.906549277853,0,0,0,0
2025-11-18 00:00:00-05:00,118.410003662109,118.410003662109,118.410003662109,118.410003662109,110.663563940267,0,0,0,0
2025-11-19 00:00:00-05:00,118.279998779297,118.279998779297,118.279998779297,118.279998779297,110.542064039779,0,0,0,0
2025-11-20 00:00:00-05:00,115.160003662109,115.160003662109,115.160003662109,115.160003662109,107.626180512493,0,0,0,0
2025-11-21 00:00:00-05:00,116.569999694824,116.569999694824,116.569999694824,116.569999694824,108.943933922645,0,0,0,0
2025-11-24 00:00:00-05:00,117.610000610352,117.610000610352,117.610000610352,117.610000610352,109.915897475166,0,0,0,0
2025-11-25 00:00:00-05:00,118.849998474121,118.849998474121,118.849998474121,118.849998474121,111.074774078824,0,0,0,0
2025-11-26 00:00:00-05:00,119.889999389648,119.889999389648,119.889999389648,119.889999389648,112.046737631344,0,0,0,0
2025-11-28 00:00:00-05:00,120.910003662109,120.910003662109,120.910003662109,120.910003662109,113.000012730861,0,0,0,0
2025-12-01 00:00:00-05:00,120,120,120,120,112.149541948552,0,0,0,0
2025-12-02 00:00:00-05:00,120.769996643066,120.769996643066,120.769996643066,120.769996643066,112.869165038734,0,0,0,0
2025-12-03 00:00:00-05:00,121.389999389648,121.389999389648,121.389999389648,121.389999389648,113.448606905701,0,0,0,0
2025-12-04 00:00:00-05:00,121.559997558594,121.559997558594,121.559997558594,121.559997558594,113.607483712195,0,0,0,0
2025-12-05 00:00:00-05:00,121.519996643066,121.519996643066,121.519996643066,121.519996643066,113.570099675913,0,0,0,0
2025-12-08 00:00:00-05:00,121.48999786377,121.48999786377,121.48999786377,121.48999786377,113.54206343127,0,0,0,0
2025-12-09 00:00:00-05:00,121.160003662109,121.160003662109,121.160003662109,121.160003662109,113.233657609921,0,0,0,0
2025-12-10 00:00:00-05:00,122.550003051758,122.550003051758,122.550003051758,122.550003051758,114.53272256707,0,0,0,0
2025-12-11 00:00:00-05:00,122.669998168945,122.669998168945,122.669998168945,122.669998168945,114.644867545642,0,0,0,0
2025-12-12 00:00:00-05:00,121.089996337891,121.089996337891,121.089996337891,121.089996337891,113.168230198719,0,0,0,0
2025-12-15 00:00:00-05:00,120.769996643066,120.769996643066,120.769996643066,120.769996643066,112.869165038734,0,0,0,0
2025-12-16 00:00:00-05:00,120.099998474121,120.099998474121,120.099998474121,120.099998474121,112.242998474121,0,0,0,0
2025-12-17 00:00:00-05:00,110.440002441406,110.440002441406,110.440002441406,110.440002441406,110.440002441406,0,7.857,0,6.42
2025-12-18 00:00:00-05:00,111.779998779297,111.779998779297,111.779998779297,111.779998779297,111.779998779297,0,0,0,0
2025-12-19 00:00:00-05:00,112.76000213623,112.76000213623,112.76000213623,112.76000213623,112.76000213623,0,0,0,0
2025-12-22 00:00:00-05:00,113.379997253418,113.379997253418,113.379997253418,113.379997253418,113.379997253418,0,0,0,0
2025-12-23 00:00:00-05:00,114.01000213623,114.01000213623,114.01000213623,114.01000213623,114.01000213623,0,0,0,0
2025-12-24 00:00:00-05:00,114.129997253418,114.129997253418,114.129997253418,114.129997253418,114.129997253418,0,0,0,0
2025-12-26 00:00:00-05:00,114.709999084473,114.709999084473,114.709999084473,114.709999084473,114.709999084473,0,0,0,0
2025-12-29 00:00:00-05:00,114.440002441406,114.440002441406,114.440002441406,114.440002441406,114.440002441406,0,0,0,0
2025-12-30 00:00:00-05:00,114.379997253418,114.379997253418,114.379997253418,114.379997253418,114.379997253418,0,0,0,0
2025-12-31 00:00:00-05:00,113.98999786377,113.98999786377,113.98999786377,113.98999786377,113.98999786377,0,0,0,0
2026-01-02 00:00:00-05:00,115.680000305176,115.680000305176,115.680000305176,115.680000305176,115.680000305176,0,0,0,0
2026-01-05 00:00:00-05:00,118.099998474121,118.099998474121,118.099998474121,118.099998474121,118.099998474121,0,0,0,0
2026-01-06 00:00:00-05:00,118.98999786377,118.98999786377,118.98999786377,118.98999786377,118.98999786377,0,0,0,0
2026-01-07 00:00:00-05:00,118.019996643066,118.019996643066,118.019996643066,118.019996643066,118.019996643066,0,0,0,0
2026-01-08 00:00:00-05:00,117.5,117.5,117.5,117.5,117.5,0,0,0,0
2026-01-09 00:00:00-05:00,118.620002746582,118.620002746582,118.620002746582,118.620002746582,118.620002746582,0,0,0,0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits Capital Gains
2 2024-01-10 00:00:00-05:00 100.029998779297 100.029998779297 100.029998779297 100.029998779297 85.4241455239785 0 0 0 0
3 2024-01-11 00:00:00-05:00 100.25 100.25 100.25 100.25 85.6120233258593 0 0 0 0
4 2024-01-12 00:00:00-05:00 100.440002441406 100.440002441406 100.440002441406 100.440002441406 85.7742826121002 0 0 0 0
5 2024-01-16 00:00:00-05:00 98.7099990844727 98.7099990844727 98.7099990844727 98.7099990844727 84.2968852280841 0 0 0 0
6 2024-01-17 00:00:00-05:00 97.0599975585938 97.0599975585938 97.0599975585938 97.0599975585938 82.8878082293684 0 0 0 0
7 2024-01-18 00:00:00-05:00 98.0299987792969 98.0299987792969 98.0299987792969 98.0299987792969 83.7161749838117 0 0 0 0
8 2024-01-19 00:00:00-05:00 98.7699966430664 98.7699966430664 98.7699966430664 98.7699966430664 84.3481222593641 0 0 0 0
9 2024-01-22 00:00:00-05:00 98.7600021362305 98.7600021362305 98.7600021362305 98.7600021362305 84.3395870977445 0 0 0 0
10 2024-01-23 00:00:00-05:00 99.370002746582 99.370002746582 99.370002746582 99.370002746582 84.8605186337266 0 0 0 0
11 2024-01-24 00:00:00-05:00 100.410003662109 100.410003662109 100.410003662109 100.410003662109 85.7486640964602 0 0 0 0
12 2024-01-25 00:00:00-05:00 100.349998474121 100.349998474121 100.349998474121 100.349998474121 85.6974205497896 0 0 0 0
13 2024-01-26 00:00:00-05:00 100.839996337891 100.839996337891 100.839996337891 100.839996337891 86.1158715078211 0 0 0 0
14 2024-01-29 00:00:00-05:00 101.190002441406 101.190002441406 101.190002441406 101.190002441406 86.4147715646627 0 0 0 0
15 2024-01-30 00:00:00-05:00 100.410003662109 100.410003662109 100.410003662109 100.410003662109 85.7486640964602 0 0 0 0
16 2024-01-31 00:00:00-05:00 99.2799987792969 99.2799987792969 99.2799987792969 99.2799987792969 84.783656571416 0 0 0 0
17 2024-02-01 00:00:00-05:00 100.800003051758 100.800003051758 100.800003051758 100.800003051758 86.0817178305614 0 0 0 0
18 2024-02-02 00:00:00-05:00 100.120002746582 100.120002746582 100.120002746582 100.120002746582 85.5010075862891 0 0 0 0
19 2024-02-05 00:00:00-05:00 100.269996643066 100.269996643066 100.269996643066 100.269996643066 85.6291001644892 0 0 0 0
20 2024-02-06 00:00:00-05:00 101.080001831055 101.080001831055 101.080001831055 101.080001831055 86.3208326637223 0 0 0 0
21 2024-02-07 00:00:00-05:00 101.860000610352 101.860000610352 101.860000610352 101.860000610352 86.9869401319248 0 0 0 0
22 2024-02-08 00:00:00-05:00 102.720001220703 102.720001220703 102.720001220703 102.720001220703 87.7213679854278 0 0 0 0
23 2024-02-09 00:00:00-05:00 103.440002441406 103.440002441406 103.440002441406 103.440002441406 88.3362384223503 0 0 0 0
24 2024-02-12 00:00:00-05:00 103.540000915527 103.540000915527 103.540000915527 103.540000915527 88.4216356462806 0 0 0 0
25 2024-02-13 00:00:00-05:00 101.23999786377 101.23999786377 101.23999786377 101.23999786377 86.4574669189325 0 0 0 0
26 2024-02-14 00:00:00-05:00 103.01000213623 103.01000213623 103.01000213623 103.01000213623 87.9690244955988 0 0 0 0
27 2024-02-15 00:00:00-05:00 104.330001831055 104.330001831055 104.330001831055 104.330001831055 89.0962847914933 0 0 0 0
28 2024-02-16 00:00:00-05:00 104.349998474121 104.349998474121 104.349998474121 104.349998474121 89.1133616301231 0 0 0 0
29 2024-02-20 00:00:00-05:00 103.480003356934 103.480003356934 103.480003356934 103.480003356934 88.3703986150005 0 0 0 0
30 2024-02-21 00:00:00-05:00 103.75 103.75 103.75 103.75 88.6009717711512 0 0 0 0
31 2024-02-22 00:00:00-05:00 106.080001831055 106.080001831055 106.080001831055 106.080001831055 90.5907590141392 0 0 0 0
32 2024-02-23 00:00:00-05:00 105.269996643066 105.269996643066 105.269996643066 105.269996643066 89.8990265149061 0 0 0 0
33 2024-02-26 00:00:00-05:00 105.349998474121 105.349998474121 105.349998474121 105.349998474121 89.9673469002065 0 0 0 0
34 2024-02-27 00:00:00-05:00 105.930000305176 105.930000305176 105.930000305176 105.930000305176 90.4626599205486 0 0 0 0
35 2024-02-28 00:00:00-05:00 105.209999084473 105.209999084473 105.209999084473 105.209999084473 89.8477894836261 0 0 0 0
36 2024-02-29 00:00:00-05:00 105.519996643066 105.519996643066 105.519996643066 105.519996643066 90.112522832427 0 0 0 0
37 2024-03-01 00:00:00-05:00 107.01000213623 107.01000213623 107.01000213623 107.01000213623 91.3849655759324 0 0 0 0
38 2024-03-04 00:00:00-05:00 106.449996948242 106.449996948242 106.449996948242 106.449996948242 90.9067293942201 0 0 0 0
39 2024-03-05 00:00:00-05:00 105.23999786377 105.23999786377 105.23999786377 105.23999786377 89.8734079992661 0 0 0 0
40 2024-03-06 00:00:00-05:00 106.629997253418 106.629997253418 106.629997253418 106.629997253418 91.0604470034508 0 0 0 0
41 2024-03-07 00:00:00-05:00 108.180000305176 108.180000305176 108.180000305176 108.180000305176 92.3841267782362 0 0 0 0
42 2024-03-08 00:00:00-05:00 106.98999786377 106.98999786377 106.98999786377 106.98999786377 91.367882221912 0 0 0 0
43 2024-03-11 00:00:00-04:00 107.110000610352 107.110000610352 107.110000610352 107.110000610352 91.4703627998626 0 0 0 0
44 2024-03-12 00:00:00-04:00 108.73999786377 108.73999786377 108.73999786377 108.73999786377 92.8623564445579 0 0 0 0
45 2024-03-13 00:00:00-04:00 108.550003051758 108.550003051758 108.550003051758 108.550003051758 92.7001036737077 0 0 0 0
46 2024-03-14 00:00:00-04:00 107.199996948242 107.199996948242 107.199996948242 107.199996948242 91.5472183467827 0 0 0 0
47 2024-03-15 00:00:00-04:00 106.120002746582 106.120002746582 106.120002746582 106.120002746582 90.6249192067894 0 0 0 0
48 2024-03-18 00:00:00-04:00 106.389999389648 106.389999389648 106.389999389648 106.389999389648 90.8554923629401 0 0 0 0
49 2024-03-19 00:00:00-04:00 106.459999084473 106.459999084473 106.459999084473 106.459999084473 90.9152710712303 0 0 0 0
50 2024-03-20 00:00:00-04:00 107.76000213623 107.76000213623 107.76000213623 107.76000213623 92.0254545284949 0 0 0 0
51 2024-03-21 00:00:00-04:00 108.040000915527 108.040000915527 108.040000915527 108.040000915527 92.2645693616558 0 0 0 0
52 2024-03-22 00:00:00-04:00 107.949996948242 107.949996948242 107.949996948242 107.949996948242 92.1877072993452 0 0 0 0
53 2024-03-25 00:00:00-04:00 107.790000915527 107.790000915527 107.790000915527 107.790000915527 92.0510730441349 0 0 0 0
54 2024-03-26 00:00:00-04:00 107.559997558594 107.559997558594 107.559997558594 107.559997558594 91.8546535652439 0 0 0 0
55 2024-03-27 00:00:00-04:00 107.650001525879 107.650001525879 107.650001525879 107.650001525879 91.9315156275545 0 0 0 0
56 2024-03-28 00:00:00-04:00 107.199996948242 107.199996948242 107.199996948242 107.199996948242 91.5472183467827 0 0 0 0
57 2024-04-01 00:00:00-04:00 107.290000915527 107.290000915527 107.290000915527 107.290000915527 91.6240804090932 0 0 0 0
58 2024-04-02 00:00:00-04:00 106.790000915527 106.790000915527 106.790000915527 106.790000915527 91.1970877740516 0 0 0 0
59 2024-04-03 00:00:00-04:00 107.290000915527 107.290000915527 107.290000915527 107.290000915527 91.6240804090932 0 0 0 0
60 2024-04-04 00:00:00-04:00 106.400001525879 106.400001525879 106.400001525879 106.400001525879 90.8640340399503 0 0 0 0
61 2024-04-05 00:00:00-04:00 106.959999084473 106.959999084473 106.959999084473 106.959999084473 91.342263706272 0 0 0 0
62 2024-04-08 00:00:00-04:00 107.470001220703 107.470001220703 107.470001220703 107.470001220703 91.7777980183239 0 0 0 0
63 2024-04-09 00:00:00-04:00 107.879997253418 107.879997253418 107.879997253418 107.879997253418 92.127928591055 0 0 0 0
64 2024-04-10 00:00:00-04:00 106.569999694824 106.569999694824 106.569999694824 106.569999694824 91.0092099721707 0 0 0 0
65 2024-04-11 00:00:00-04:00 107.400001525879 107.400001525879 107.400001525879 107.400001525879 91.7180193100337 0 0 0 0
66 2024-04-12 00:00:00-04:00 105.080001831055 105.080001831055 105.080001831055 105.080001831055 89.7367737440558 0 0 0 0
67 2024-04-15 00:00:00-04:00 104.309997558594 104.309997558594 104.309997558594 104.309997558594 89.0792014374729 0 0 0 0
68 2024-04-16 00:00:00-04:00 103.980003356934 103.980003356934 103.980003356934 103.980003356934 88.7973912500422 0 0 0 0
69 2024-04-17 00:00:00-04:00 103.279998779297 103.279998779297 103.279998779297 103.279998779297 88.1995976517495 0 0 0 0
70 2024-04-18 00:00:00-04:00 102.480003356934 102.480003356934 102.480003356934 102.480003356934 87.5164133449171 0 0 0 0
71 2024-04-19 00:00:00-04:00 101.139999389648 101.139999389648 101.139999389648 101.139999389648 86.3720696950023 0 0 0 0
72 2024-04-22 00:00:00-04:00 102.580001831055 102.580001831055 102.580001831055 102.580001831055 87.6018105688474 0 0 0 0
73 2024-04-23 00:00:00-04:00 104.879997253418 104.879997253418 104.879997253418 104.879997253418 89.5659727808048 0 0 0 0
74 2024-04-24 00:00:00-04:00 104.660003662109 104.660003662109 104.660003662109 104.660003662109 89.3781014943145 0 0 0 0
75 2024-04-25 00:00:00-04:00 103.930000305176 103.930000305176 103.930000305176 103.930000305176 88.7546893803818 0 0 0 0
76 2024-04-26 00:00:00-04:00 105.23999786377 105.23999786377 105.23999786377 105.23999786377 89.8734079992661 0 0 0 0
77 2024-04-29 00:00:00-04:00 105.75 105.75 105.75 105.75 90.308942311318 0 0 0 0
78 2024-04-30 00:00:00-04:00 103.949996948242 103.949996948242 103.949996948242 103.949996948242 88.7717662190117 0 0 0 0
79 2024-05-01 00:00:00-04:00 103.779998779297 103.779998779297 103.779998779297 103.779998779297 88.6265902867912 0 0 0 0
80 2024-05-02 00:00:00-04:00 106.279998779297 106.279998779297 106.279998779297 106.279998779297 90.7615534619997 0 0 0 0
81 2024-05-03 00:00:00-04:00 107.970001220703 107.970001220703 107.970001220703 107.970001220703 92.2047906533656 0 0 0 0
82 2024-05-06 00:00:00-04:00 108.73999786377 108.73999786377 108.73999786377 108.73999786377 92.8623564445579 0 0 0 0
83 2024-05-07 00:00:00-04:00 108.669998168945 108.669998168945 108.669998168945 108.669998168945 92.8025777362677 0 0 0 0
84 2024-05-08 00:00:00-04:00 108.230003356934 108.230003356934 108.230003356934 108.230003356934 92.4268286478966 0 0 0 0
85 2024-05-09 00:00:00-04:00 108.639999389648 108.639999389648 108.639999389648 108.639999389648 92.7769592206277 0 0 0 0
86 2024-05-10 00:00:00-04:00 108.819999694824 108.819999694824 108.819999694824 108.819999694824 92.9306768298583 0 0 0 0
87 2024-05-13 00:00:00-04:00 109.089996337891 109.089996337891 109.089996337891 109.089996337891 93.161249986009 0 0 0 0
88 2024-05-14 00:00:00-04:00 110.180000305176 110.180000305176 110.180000305176 110.180000305176 94.092097318403 0 0 0 0
89 2024-05-15 00:00:00-04:00 111.889999389648 111.889999389648 111.889999389648 111.889999389648 95.5524113483987 0 0 0 0
90 2024-05-16 00:00:00-04:00 111.449996948242 111.449996948242 111.449996948242 111.449996948242 95.176655744637 0 0 0 0
91 2024-05-17 00:00:00-04:00 111.470001220703 111.470001220703 111.470001220703 111.470001220703 95.1937390986574 0 0 0 0
92 2024-05-20 00:00:00-04:00 112.150001525879 112.150001525879 112.150001525879 112.150001525879 95.7744493429297 0 0 0 0
93 2024-05-21 00:00:00-04:00 111.660003662109 111.660003662109 111.660003662109 111.660003662109 95.3559983848982 0 0 0 0
94 2024-05-22 00:00:00-04:00 111.459999084473 111.459999084473 111.459999084473 111.459999084473 95.1851974216472 0 0 0 0
95 2024-05-23 00:00:00-04:00 111.360000610352 111.360000610352 111.360000610352 111.360000610352 95.099800197717 0 0 0 0
96 2024-05-24 00:00:00-04:00 112.25 112.25 112.25 112.25 95.85984656686 0 0 0 0
97 2024-05-28 00:00:00-04:00 112.25 112.25 112.25 112.25 95.85984656686 0 0 0 0
98 2024-05-29 00:00:00-04:00 110.459999084473 110.459999084473 110.459999084473 110.459999084473 94.3312121515638 0 0 0 0
99 2024-05-30 00:00:00-04:00 110.680000305176 110.680000305176 110.680000305176 110.680000305176 94.5190899534447 0 0 0 0
100 2024-05-31 00:00:00-04:00 110.790000915527 110.790000915527 110.790000915527 110.790000915527 94.6130288543851 0 0 0 0
101 2024-06-03 00:00:00-04:00 111.580001831055 111.580001831055 111.580001831055 111.580001831055 95.2876779995978 0 0 0 0
102 2024-06-04 00:00:00-04:00 111.139999389648 111.139999389648 111.139999389648 111.139999389648 94.9119223958362 0 0 0 0
103 2024-06-05 00:00:00-04:00 113.23999786377 113.23999786377 113.23999786377 113.23999786377 96.7052901599332 0 0 0 0
104 2024-06-06 00:00:00-04:00 113.720001220703 113.720001220703 113.720001220703 113.720001220703 97.115205956345 0 0 0 0
105 2024-06-07 00:00:00-04:00 112.059997558594 112.059997558594 112.059997558594 112.059997558594 95.6975872806192 0 0 0 0
106 2024-06-10 00:00:00-04:00 112.379997253418 112.379997253418 112.379997253418 112.379997253418 95.9708623064302 0 0 0 0
107 2024-06-11 00:00:00-04:00 111.599998474121 111.599998474121 111.599998474121 111.599998474121 95.3047548382277 0 0 0 0
108 2024-06-12 00:00:00-04:00 113.059997558594 113.059997558594 113.059997558594 113.059997558594 96.5515725507025 0 0 0 0
109 2024-06-13 00:00:00-04:00 111.959999084473 111.959999084473 111.959999084473 111.959999084473 95.6121900566889 0 0 0 0
110 2024-06-14 00:00:00-04:00 111.040000915527 111.040000915527 111.040000915527 111.040000915527 94.8265251719059 0 0 0 0
111 2024-06-17 00:00:00-04:00 111.150001525879 111.150001525879 111.150001525879 111.150001525879 94.9204640728464 0 0 0 0
112 2024-06-18 00:00:00-04:00 111.220001220703 111.220001220703 111.220001220703 111.220001220703 94.9802427811366 0 0 0 0
113 2024-06-20 00:00:00-04:00 111.019996643066 111.019996643066 111.019996643066 111.019996643066 94.8094418178856 0 0 0 0
114 2024-06-21 00:00:00-04:00 110.389999389648 110.389999389648 110.389999389648 110.389999389648 94.2714334432736 0 0 0 0
115 2024-06-24 00:00:00-04:00 110.51000213623 110.51000213623 110.51000213623 110.51000213623 94.3739140212242 0 0 0 0
116 2024-06-25 00:00:00-04:00 111.389999389648 111.389999389648 111.389999389648 111.389999389648 95.125418713357 0 0 0 0
117 2024-06-26 00:00:00-04:00 110.73999786377 110.73999786377 110.73999786377 110.73999786377 94.5703269847247 0 0 0 0
118 2024-06-27 00:00:00-04:00 110.25 110.25 110.25 110.25 94.1518760266932 0 0 0 0
119 2024-06-28 00:00:00-04:00 109.720001220703 109.720001220703 109.720001220703 109.720001220703 93.6992648760115 0 0 0 0
120 2024-07-01 00:00:00-04:00 109.650001525879 109.650001525879 109.650001525879 109.650001525879 93.6394861677213 0 0 0 0
121 2024-07-02 00:00:00-04:00 110.069999694824 110.069999694824 110.069999694824 110.069999694824 93.9981584174626 0 0 0 0
122 2024-07-03 00:00:00-04:00 111.51000213623 111.51000213623 111.51000213623 111.51000213623 95.2278992913076 0 0 0 0
123 2024-07-05 00:00:00-04:00 112.48999786377 112.48999786377 112.48999786377 112.48999786377 96.0648012073706 0 0 0 0
124 2024-07-08 00:00:00-04:00 112.169998168945 112.169998168945 112.169998168945 112.169998168945 95.7915261815596 0 0 0 0
125 2024-07-09 00:00:00-04:00 112.389999389648 112.389999389648 112.389999389648 112.389999389648 95.9794039834404 0 0 0 0
126 2024-07-10 00:00:00-04:00 113.769996643066 113.769996643066 113.769996643066 113.769996643066 97.1579013106149 0 0 0 0
127 2024-07-11 00:00:00-04:00 113.860000610352 113.860000610352 113.860000610352 113.860000610352 97.2347633729255 0 0 0 0
128 2024-07-12 00:00:00-04:00 115.230003356934 115.230003356934 115.230003356934 115.230003356934 98.4047255384803 0 0 0 0
129 2024-07-15 00:00:00-04:00 113.779998779297 113.779998779297 113.779998779297 113.779998779297 97.1664429876251 0 0 0 0
130 2024-07-16 00:00:00-04:00 114.279998779297 114.279998779297 114.279998779297 114.279998779297 97.5934356226668 0 0 0 0
131 2024-07-17 00:00:00-04:00 111.639999389648 111.639999389648 111.639999389648 111.639999389648 95.3389150308779 0 0 0 0
132 2024-07-18 00:00:00-04:00 110.540000915527 110.540000915527 110.540000915527 110.540000915527 94.3995325368642 0 0 0 0
133 2024-07-19 00:00:00-04:00 109.949996948242 109.949996948242 109.949996948242 109.949996948242 93.895677839512 0 0 0 0
134 2024-07-22 00:00:00-04:00 111.51000213623 111.51000213623 111.51000213623 111.51000213623 95.2278992913076 0 0 0 0
135 2024-07-23 00:00:00-04:00 111.459999084473 111.459999084473 111.459999084473 111.459999084473 95.1851974216472 0 0 0 0
136 2024-07-24 00:00:00-04:00 108.900001525879 108.900001525879 108.900001525879 108.900001525879 92.9989972151587 0 0 0 0
137 2024-07-25 00:00:00-04:00 108.080001831055 108.080001831055 108.080001831055 108.080001831055 92.298729554306 0 0 0 0
138 2024-07-26 00:00:00-04:00 109.48999786377 109.48999786377 109.48999786377 109.48999786377 93.5028453971205 0 0 0 0
139 2024-07-29 00:00:00-04:00 108.769996643066 108.769996643066 108.769996643066 108.769996643066 92.8879749601979 0 0 0 0
140 2024-07-30 00:00:00-04:00 108.5 108.5 108.5 108.5 92.6574018040473 0 0 0 0
141 2024-07-31 00:00:00-04:00 111.089996337891 111.089996337891 111.089996337891 111.089996337891 94.8692205261758 0 0 0 0
142 2024-08-01 00:00:00-04:00 107.879997253418 107.879997253418 107.879997253418 107.879997253418 92.127928591055 0 0 0 0
143 2024-08-02 00:00:00-04:00 105.830001831055 105.830001831055 105.830001831055 105.830001831055 90.3772626966184 0 0 0 0
144 2024-08-05 00:00:00-04:00 103.870002746582 103.870002746582 103.870002746582 103.870002746582 88.7034523491018 0 0 0 0
145 2024-08-06 00:00:00-04:00 104.76000213623 104.76000213623 104.76000213623 104.76000213623 89.4634987182448 0 0 0 0
146 2024-08-07 00:00:00-04:00 105.199996948242 105.199996948242 105.199996948242 105.199996948242 89.8392478066159 0 0 0 0
147 2024-08-08 00:00:00-04:00 107.900001525879 107.900001525879 107.900001525879 107.900001525879 92.1450119450754 0 0 0 0
148 2024-08-09 00:00:00-04:00 108.180000305176 108.180000305176 108.180000305176 108.180000305176 92.3841267782362 0 0 0 0
149 2024-08-12 00:00:00-04:00 108.069999694824 108.069999694824 108.069999694824 108.069999694824 92.2901878772958 0 0 0 0
150 2024-08-13 00:00:00-04:00 109.900001525879 109.900001525879 109.900001525879 109.900001525879 93.8529824852421 0 0 0 0
151 2024-08-14 00:00:00-04:00 109.779998779297 109.779998779297 109.779998779297 109.779998779297 93.7505019072915 0 0 0 0
152 2024-08-15 00:00:00-04:00 112.300003051758 112.300003051758 112.300003051758 112.300003051758 95.9025484365204 0 0 0 0
153 2024-08-16 00:00:00-04:00 113 113 113 113 96.5003355194225 0 0 0 0
154 2024-08-19 00:00:00-04:00 114.830001831055 114.830001831055 114.830001831055 114.830001831055 98.0631301273688 0 0 0 0
155 2024-08-20 00:00:00-04:00 113.830001831055 113.830001831055 113.830001831055 113.830001831055 97.2091448572854 0 0 0 0
156 2024-08-21 00:00:00-04:00 114.959999084473 114.959999084473 114.959999084473 114.959999084473 98.1741458669391 0 0 0 0
157 2024-08-22 00:00:00-04:00 113.819999694824 113.819999694824 113.819999694824 113.819999694824 97.2006031802753 0 0 0 0
158 2024-08-23 00:00:00-04:00 115.139999389648 115.139999389648 115.139999389648 115.139999389648 98.3278634761697 0 0 0 0
159 2024-08-26 00:00:00-04:00 113.629997253418 113.629997253418 113.629997253418 113.629997253418 97.0383438940344 0 0 0 0
160 2024-08-27 00:00:00-04:00 113.970001220703 113.970001220703 113.970001220703 113.970001220703 97.3287022738659 0 0 0 0
161 2024-08-28 00:00:00-04:00 112.879997253418 112.879997253418 112.879997253418 112.879997253418 96.3978549414719 0 0 0 0
162 2024-08-29 00:00:00-04:00 113.629997253418 113.629997253418 113.629997253418 113.629997253418 97.0383438940344 0 0 0 0
163 2024-08-30 00:00:00-04:00 113.870002746582 113.870002746582 113.870002746582 113.870002746582 97.2433050499356 0 0 0 0
164 2024-09-03 00:00:00-04:00 110.930000305176 110.930000305176 110.930000305176 110.930000305176 94.7325862709655 0 0 0 0
165 2024-09-04 00:00:00-04:00 110.569999694824 110.569999694824 110.569999694824 110.569999694824 94.4251510525043 0 0 0 0
166 2024-09-05 00:00:00-04:00 110.690002441406 110.690002441406 110.690002441406 110.690002441406 94.5276316304549 0 0 0 0
167 2024-09-06 00:00:00-04:00 108.099998474121 108.099998474121 108.099998474121 108.099998474121 92.3158063929358 0 0 0 0
168 2024-09-09 00:00:00-04:00 109.610000610352 109.610000610352 109.610000610352 109.610000610352 93.6053259750711 0 0 0 0
169 2024-09-10 00:00:00-04:00 109.330001831055 109.330001831055 109.330001831055 109.330001831055 93.3662111419102 0 0 0 0
170 2024-09-11 00:00:00-04:00 111.069999694824 111.069999694824 111.069999694824 111.069999694824 94.852143687546 0 0 0 0
171 2024-09-12 00:00:00-04:00 111.970001220703 111.970001220703 111.970001220703 111.970001220703 95.6207317336991 0 0 0 0
172 2024-09-13 00:00:00-04:00 112.319999694824 112.319999694824 112.319999694824 112.319999694824 95.9196252751502 0 0 0 0
173 2024-09-16 00:00:00-04:00 112.449996948242 112.449996948242 112.449996948242 112.449996948242 96.0306410147204 0 0 0 0
174 2024-09-17 00:00:00-04:00 112.650001525879 112.650001525879 112.650001525879 112.650001525879 96.2014419779714 0 0 0 0
175 2024-09-18 00:00:00-04:00 112.360000610352 112.360000610352 112.360000610352 112.360000610352 95.9537854678004 0 0 0 0
176 2024-09-19 00:00:00-04:00 115.370002746582 115.370002746582 115.370002746582 115.370002746582 98.5242829550607 0 0 0 0
177 2024-09-20 00:00:00-04:00 114.089996337891 114.089996337891 114.089996337891 114.089996337891 97.4311763364259 0 0 0 0
178 2024-09-23 00:00:00-04:00 114.589996337891 114.589996337891 114.589996337891 114.589996337891 97.8581689714676 0 0 0 0
179 2024-09-24 00:00:00-04:00 116.519996643066 116.519996643066 116.519996643066 116.519996643066 99.5063608033442 0 0 0 0
180 2024-09-25 00:00:00-04:00 116.199996948242 116.199996948242 116.199996948242 116.199996948242 99.2330857775331 0 0 0 0
181 2024-09-26 00:00:00-04:00 118.980003356934 118.980003356934 118.980003356934 118.980003356934 101.607170301293 0 0 0 0
182 2024-09-27 00:00:00-04:00 118.51000213623 118.51000213623 118.51000213623 118.51000213623 101.205796181891 0 0 0 0
183 2024-09-30 00:00:00-04:00 117.870002746582 117.870002746582 117.870002746582 117.870002746582 100.659246130269 0 0 0 0
184 2024-10-01 00:00:00-04:00 117.5 117.5 117.5 117.5 100.343269234798 0 0 0 0
185 2024-10-02 00:00:00-04:00 118.050003051758 118.050003051758 118.050003051758 118.050003051758 100.8129637395 0 0 0 0
186 2024-10-03 00:00:00-04:00 117.230003356934 117.230003356934 117.230003356934 117.230003356934 100.112696078647 0 0 0 0
187 2024-10-04 00:00:00-04:00 118.379997253418 118.379997253418 118.379997253418 118.379997253418 101.094773926931 0 0 0 0
188 2024-10-07 00:00:00-04:00 118.180000305176 118.180000305176 118.180000305176 118.180000305176 100.92397947907 0 0 0 0
189 2024-10-08 00:00:00-04:00 117.589996337891 117.589996337891 117.589996337891 117.589996337891 100.420124781718 0 0 0 0
190 2024-10-09 00:00:00-04:00 118 118 118 118 100.770261869839 0 0 0 0
191 2024-10-10 00:00:00-04:00 117.830001831055 117.830001831055 117.830001831055 117.830001831055 100.625085937619 0 0 0 0
192 2024-10-11 00:00:00-04:00 118.660003662109 118.660003662109 118.660003662109 118.660003662109 101.333895275482 0 0 0 0
193 2024-10-14 00:00:00-04:00 118.800003051758 118.800003051758 118.800003051758 118.800003051758 101.453452692062 0 0 0 0
194 2024-10-15 00:00:00-04:00 115.360000610352 115.360000610352 115.360000610352 115.360000610352 98.5157412780505 0 0 0 0
195 2024-10-16 00:00:00-04:00 115.660003662109 115.660003662109 115.660003662109 115.660003662109 98.7719394652318 0 0 0 0
196 2024-10-17 00:00:00-04:00 115.839996337891 115.839996337891 115.839996337891 115.839996337891 98.9256505590719 0 0 0 0
197 2024-10-18 00:00:00-04:00 117.300003051758 117.300003051758 117.300003051758 117.300003051758 100.172474786937 0 0 0 0
198 2024-10-21 00:00:00-04:00 116.569999694824 116.569999694824 116.569999694824 116.569999694824 99.5490626730046 0 0 0 0
199 2024-10-22 00:00:00-04:00 116.370002746582 116.370002746582 116.370002746582 116.370002746582 99.3782682251441 0 0 0 0
200 2024-10-23 00:00:00-04:00 115.430000305176 115.430000305176 115.430000305176 115.430000305176 98.5755199863408 0 0 0 0
201 2024-10-24 00:00:00-04:00 115.830001831055 115.830001831055 115.830001831055 115.830001831055 98.9171153974522 0 0 0 0
202 2024-10-25 00:00:00-04:00 116 116 116 116 99.0622913296727 0 0 0 0
203 2024-10-28 00:00:00-04:00 116.669998168945 116.669998168945 116.669998168945 116.669998168945 99.6344598969348 0 0 0 0
204 2024-10-29 00:00:00-04:00 116.73999786377 116.73999786377 116.73999786377 116.73999786377 99.694238605225 0 0 0 0
205 2024-10-30 00:00:00-04:00 115.720001220703 115.720001220703 115.720001220703 115.720001220703 98.8231764965118 0 0 0 0
206 2024-10-31 00:00:00-04:00 114.519996643066 114.519996643066 114.519996643066 114.519996643066 97.7983902631774 0 0 0 0
207 2024-11-01 00:00:00-04:00 115.129997253418 115.129997253418 115.129997253418 115.129997253418 98.3193217991595 0 0 0 0
208 2024-11-04 00:00:00-05:00 115.180000305176 115.180000305176 115.180000305176 115.180000305176 98.3620236688199 0 0 0 0
209 2024-11-05 00:00:00-05:00 116.449996948242 116.449996948242 116.449996948242 116.449996948242 99.446582095054 0 0 0 0
210 2024-11-06 00:00:00-05:00 115.25 115.25 115.25 115.25 98.4218023771101 0 0 0 0
211 2024-11-07 00:00:00-05:00 116.370002746582 116.370002746582 116.370002746582 116.370002746582 99.3782682251441 0 0 0 0
212 2024-11-08 00:00:00-05:00 114.830001831055 114.830001831055 114.830001831055 114.830001831055 98.0631301273688 0 0 0 0
213 2024-11-11 00:00:00-05:00 115.480003356934 115.480003356934 115.480003356934 115.480003356934 98.6182218560011 0 0 0 0
214 2024-11-12 00:00:00-05:00 114.48999786377 114.48999786377 114.48999786377 114.48999786377 97.7727717475374 0 0 0 0
215 2024-11-13 00:00:00-05:00 114.610000610352 114.610000610352 114.610000610352 114.610000610352 97.875252325488 0 0 0 0
216 2024-11-14 00:00:00-05:00 114.180000305176 114.180000305176 114.180000305176 114.180000305176 97.5080383987365 0 0 0 0
217 2024-11-15 00:00:00-05:00 112.25 112.25 112.25 112.25 95.85984656686 0 0 0 0
218 2024-11-18 00:00:00-05:00 112.879997253418 112.879997253418 112.879997253418 112.879997253418 96.3978549414719 0 0 0 0
219 2024-11-19 00:00:00-05:00 113.290000915527 113.290000915527 113.290000915527 113.290000915527 96.7479920295936 0 0 0 0
220 2024-11-20 00:00:00-05:00 113.379997253418 113.379997253418 113.379997253418 113.379997253418 96.8248475765136 0 0 0 0
221 2024-11-21 00:00:00-05:00 113.709999084473 113.709999084473 113.709999084473 113.709999084473 97.1066642793348 0 0 0 0
222 2024-11-22 00:00:00-05:00 114.160003662109 114.160003662109 114.160003662109 114.160003662109 97.4909615601067 0 0 0 0
223 2024-11-25 00:00:00-05:00 115.160003662109 115.160003662109 115.160003662109 115.160003662109 98.3449468301901 0 0 0 0
224 2024-11-26 00:00:00-05:00 114.76000213623 114.76000213623 114.76000213623 114.76000213623 98.0033514190786 0 0 0 0
225 2024-11-27 00:00:00-05:00 114.970001220703 114.970001220703 114.970001220703 114.970001220703 98.1826875439493 0 0 0 0
226 2024-11-29 00:00:00-05:00 115.339996337891 115.339996337891 115.339996337891 115.339996337891 98.4986579240302 0 0 0 0
227 2024-12-02 00:00:00-05:00 116.040000915527 116.040000915527 116.040000915527 116.040000915527 99.0964515223229 0 0 0 0
228 2024-12-03 00:00:00-05:00 116.110000610352 116.110000610352 116.110000610352 116.110000610352 99.1562302306131 0 0 0 0
229 2024-12-04 00:00:00-05:00 117.160003662109 117.160003662109 117.160003662109 117.160003662109 100.052917370357 0 0 0 0
230 2024-12-05 00:00:00-05:00 117.360000610352 117.360000610352 117.360000610352 117.360000610352 100.223711818217 0 0 0 0
231 2024-12-06 00:00:00-05:00 117.779998779297 117.779998779297 117.779998779297 117.779998779297 100.582384067959 0 0 0 0
232 2024-12-09 00:00:00-05:00 117.75 117.75 117.75 117.75 100.556765552319 0 0 0 0
233 2024-12-10 00:00:00-05:00 116.059997558594 116.059997558594 116.059997558594 116.059997558594 99.1135283609527 0 0 0 0
234 2024-12-11 00:00:00-05:00 117.069999694824 117.069999694824 117.069999694824 117.069999694824 99.9760553080463 0 0 0 0
235 2024-12-12 00:00:00-05:00 116.620002746582 116.620002746582 116.620002746582 116.620002746582 99.591764542665 0 0 0 0
236 2024-12-13 00:00:00-05:00 116.26000213623 116.26000213623 116.26000213623 116.26000213623 99.2843293242037 0 0 0 0
237 2024-12-16 00:00:00-05:00 115.830001831055 115.830001831055 115.830001831055 115.830001831055 98.9171153974522 0 0 0 0
238 2024-12-17 00:00:00-05:00 115.589996337891 115.589996337891 115.589996337891 115.589996337891 98.712154241551 0 0 0 0
239 2024-12-18 00:00:00-05:00 102.330001831055 102.330001831055 102.330001831055 102.330001831055 95.6355236078943 0 9.968 0 8.999
240 2024-12-19 00:00:00-05:00 102.040000915527 102.040000915527 102.040000915527 102.040000915527 95.3644946925522 0 0 0 0
241 2024-12-20 00:00:00-05:00 102.330001831055 102.330001831055 102.330001831055 102.330001831055 95.6355236078943 0 0 0 0
242 2024-12-23 00:00:00-05:00 103.139999389648 103.139999389648 103.139999389648 103.139999389648 96.3925307343588 0 0 0 0
243 2024-12-24 00:00:00-05:00 103.589996337891 103.589996337891 103.589996337891 103.589996337891 96.8130886645555 0 0 0 0
244 2024-12-26 00:00:00-05:00 103.410003662109 103.410003662109 103.410003662109 103.410003662109 96.6448711966975 0 0 0 0
245 2024-12-27 00:00:00-05:00 102.849998474121 102.849998474121 102.849998474121 102.849998474121 96.1215018190167 0 0 0 0
246 2024-12-30 00:00:00-05:00 101.949996948242 101.949996948242 101.949996948242 101.949996948242 95.2803788283474 0 0 0 0
247 2024-12-31 00:00:00-05:00 101.569999694824 101.569999694824 101.569999694824 101.569999694824 94.9252411790763 0 0 0 0
248 2025-01-02 00:00:00-05:00 101.699996948242 101.699996948242 101.699996948242 101.699996948242 95.0467339492879 0 0 0 0
249 2025-01-03 00:00:00-05:00 102.970001220703 102.970001220703 102.970001220703 102.970001220703 96.2336539278645 0 0 0 0
250 2025-01-06 00:00:00-05:00 104.370002746582 104.370002746582 104.370002746582 104.370002746582 97.5420666766528 0 0 0 0
251 2025-01-07 00:00:00-05:00 103.620002746582 103.620002746582 103.620002746582 103.620002746582 96.8411320394744 0 0 0 0
252 2025-01-08 00:00:00-05:00 103.389999389648 103.389999389648 103.389999389648 103.389999389648 96.6261756134183 0 0 0 0
253 2025-01-10 00:00:00-05:00 101.860000610352 101.860000610352 101.860000610352 101.860000610352 95.1962700944184 0 0 0 0
254 2025-01-13 00:00:00-05:00 100.919998168945 100.919998168945 100.919998168945 100.919998168945 94.3177630674664 0 0 0 0
255 2025-01-14 00:00:00-05:00 101.690002441406 101.690002441406 101.690002441406 101.690002441406 95.0373932879241 0 0 0 0
256 2025-01-15 00:00:00-05:00 103.26000213623 103.26000213623 103.26000213623 103.26000213623 96.5046828432066 0 0 0 0
257 2025-01-16 00:00:00-05:00 103.849998474121 103.849998474121 103.849998474121 103.849998474121 97.0560813352546 0 0 0 0
258 2025-01-17 00:00:00-05:00 104.319999694824 104.319999694824 104.319999694824 104.319999694824 97.4953348487306 0 0 0 0
259 2025-01-21 00:00:00-05:00 105.919998168945 105.919998168945 105.919998168945 105.919998168945 98.9906606486561 0 0 0 0
260 2025-01-22 00:00:00-05:00 106.370002746582 106.370002746582 106.370002746582 106.370002746582 99.4112257091287 0 0 0 0
261 2025-01-23 00:00:00-05:00 106.800003051758 106.800003051758 106.800003051758 106.800003051758 99.813095186322 0 0 0 0
262 2025-01-24 00:00:00-05:00 107.51000213623 107.51000213623 107.51000213623 107.51000213623 100.476645787218 0 0 0 0
263 2025-01-27 00:00:00-05:00 105.819999694824 105.819999694824 105.819999694824 105.819999694824 98.8972041230875 0 0 0 0
264 2025-01-28 00:00:00-05:00 107.050003051758 107.050003051758 107.050003051758 107.050003051758 100.046740065382 0 0 0 0
265 2025-01-29 00:00:00-05:00 106.919998168945 106.919998168945 106.919998168945 106.919998168945 99.9252401648941 0 0 0 0
266 2025-01-30 00:00:00-05:00 108.610000610352 108.610000610352 108.610000610352 108.610000610352 101.504681829024 0 0 0 0
267 2025-01-31 00:00:00-05:00 107.5 107.5 107.5 107.5 100.467297995578 0 0 0 0
268 2025-02-03 00:00:00-05:00 106.099998474121 106.099998474121 106.099998474121 106.099998474121 99.15888524679 0 0 0 0
269 2025-02-04 00:00:00-05:00 108.76000213623 108.76000213623 108.76000213623 108.76000213623 101.644870182515 0 0 0 0
270 2025-02-05 00:00:00-05:00 109.660003662109 109.660003662109 109.660003662109 109.660003662109 102.485993173185 0 0 0 0
271 2025-02-06 00:00:00-05:00 109.970001220703 109.970001220703 109.970001220703 109.970001220703 102.77571054153 0 0 0 0
272 2025-02-07 00:00:00-05:00 109.099998474121 109.099998474121 109.099998474121 109.099998474121 101.962623795504 0 0 0 0
273 2025-02-10 00:00:00-05:00 110.180000305176 110.180000305176 110.180000305176 110.180000305176 102.971971384307 0 0 0 0
274 2025-02-11 00:00:00-05:00 110.389999389648 110.389999389648 110.389999389648 110.389999389648 103.168232227084 0 0 0 0
275 2025-02-12 00:00:00-05:00 110.699996948242 110.699996948242 110.699996948242 110.699996948242 103.457949595429 0 0 0 0
276 2025-02-13 00:00:00-05:00 112.790000915527 112.790000915527 112.790000915527 112.790000915527 105.41122449211 0 0 0 0
277 2025-02-14 00:00:00-05:00 113.300003051758 113.300003051758 113.300003051758 113.300003051758 105.887862041869 0 0 0 0
278 2025-02-18 00:00:00-05:00 114.230003356934 114.230003356934 114.230003356934 114.230003356934 106.757021277181 0 0 0 0
279 2025-02-19 00:00:00-05:00 113.230003356934 113.230003356934 113.230003356934 113.230003356934 105.822441760943 0 0 0 0
280 2025-02-20 00:00:00-05:00 113.400001525879 113.400001525879 113.400001525879 113.400001525879 105.981318567437 0 0 0 0
281 2025-02-21 00:00:00-05:00 112.25 112.25 112.25 112.25 104.906550697708 0 0 0 0
282 2025-02-24 00:00:00-05:00 110.660003662109 110.660003662109 110.660003662109 110.660003662109 103.420572689423 0 0 0 0
283 2025-02-25 00:00:00-05:00 110.339996337891 110.339996337891 110.339996337891 110.339996337891 103.121500399162 0 0 0 0
284 2025-02-26 00:00:00-05:00 111.339996337891 111.339996337891 111.339996337891 111.339996337891 104.0560799154 0 0 0 0
285 2025-02-27 00:00:00-05:00 108.76000213623 108.76000213623 108.76000213623 108.76000213623 101.644870182515 0 0 0 0
286 2025-02-28 00:00:00-05:00 108.949996948242 108.949996948242 108.949996948242 108.949996948242 101.822435442013 0 0 0 0
287 2025-03-03 00:00:00-05:00 107.400001525879 107.400001525879 107.400001525879 107.400001525879 100.37384147001 0 0 0 0
288 2025-03-04 00:00:00-05:00 107.589996337891 107.589996337891 107.589996337891 107.589996337891 100.551406729507 0 0 0 0
289 2025-03-05 00:00:00-05:00 110.949996948242 110.949996948242 110.949996948242 110.949996948242 103.691594474489 0 0 0 0
290 2025-03-06 00:00:00-05:00 108.370002746582 108.370002746582 108.370002746582 108.370002746582 101.280384741605 0 0 0 0
291 2025-03-07 00:00:00-05:00 108.620002746582 108.620002746582 108.620002746582 108.620002746582 101.514029620664 0 0 0 0
292 2025-03-10 00:00:00-04:00 104.459999084473 104.459999084473 104.459999084473 104.459999084473 97.6261754105818 0 0 0 0
293 2025-03-11 00:00:00-04:00 105 105 105 105 98.1308492049834 0 0 0 0
294 2025-03-12 00:00:00-04:00 106.220001220703 106.220001220703 106.220001220703 106.220001220703 99.2710373556378 0 0 0 0
295 2025-03-13 00:00:00-04:00 104.980003356934 104.980003356934 104.980003356934 104.980003356934 98.11216075198 0 0 0 0
296 2025-03-14 00:00:00-04:00 107.809997558594 107.809997558594 107.809997558594 107.809997558594 100.757015363924 0 0 0 0
297 2025-03-17 00:00:00-04:00 109.620002746582 109.620002746582 109.620002746582 109.620002746582 102.448609136902 0 0 0 0
298 2025-03-18 00:00:00-04:00 108.589996337891 108.589996337891 108.589996337891 108.589996337891 101.485986245745 0 0 0 0
299 2025-03-19 00:00:00-04:00 109.5 109.5 109.5 109.5 102.336457028054 0 0 0 0
300 2025-03-20 00:00:00-04:00 109.029998779297 109.029998779297 109.029998779297 109.029998779297 101.897203514578 0 0 0 0
301 2025-03-21 00:00:00-04:00 108.029998779297 108.029998779297 108.029998779297 108.029998779297 100.96262399834 0 0 0 0
302 2025-03-24 00:00:00-04:00 108.680000305176 108.680000305176 108.680000305176 108.680000305176 101.57010210995 0 0 0 0
303 2025-03-25 00:00:00-04:00 108.680000305176 108.680000305176 108.680000305176 108.680000305176 101.57010210995 0 0 0 0
304 2025-03-26 00:00:00-04:00 106.26000213623 106.26000213623 106.26000213623 106.26000213623 99.3084213919205 0 0 0 0
305 2025-03-27 00:00:00-04:00 106.650001525879 106.650001525879 106.650001525879 106.650001525879 99.6729068328312 0 0 0 0
306 2025-03-28 00:00:00-04:00 104.559997558594 104.559997558594 104.559997558594 104.559997558594 97.7196319361505 0 0 0 0
307 2025-03-31 00:00:00-04:00 103.01000213623 103.01000213623 103.01000213623 103.01000213623 96.2710379641472 0 0 0 0
308 2025-04-01 00:00:00-04:00 103.129997253418 103.129997253418 103.129997253418 103.129997253418 96.3831829427192 0 0 0 0
309 2025-04-02 00:00:00-04:00 103.819999694824 103.819999694824 103.819999694824 103.819999694824 97.0280450906116 0 0 0 0
310 2025-04-03 00:00:00-04:00 100.059997558594 100.059997558594 100.059997558594 100.059997558594 93.5140241130797 0 0 0 0
311 2025-04-04 00:00:00-04:00 93.5199966430664 93.5199966430664 93.5199966430664 93.5199966430664 87.4018732212505 0 0 0 0
312 2025-04-07 00:00:00-04:00 92.1999969482422 92.1999969482422 92.1999969482422 92.1999969482422 86.1682285450275 0 0 0 0
313 2025-04-08 00:00:00-04:00 91.3600006103516 91.3600006103516 91.3600006103516 91.3600006103516 85.38318517392 0 0 0 0
314 2025-04-09 00:00:00-04:00 99.0800018310547 99.0800018310547 99.0800018310547 99.0800018310547 92.598140180121 0 0 0 0
315 2025-04-10 00:00:00-04:00 96.3499984741211 96.3499984741211 96.3499984741211 96.3499984741211 90.0467349634701 0 0 0 0
316 2025-04-11 00:00:00-04:00 98.9400024414063 98.9400024414063 98.9400024414063 98.9400024414063 92.4672996182698 0 0 0 0
317 2025-04-14 00:00:00-04:00 99.9199981689453 99.9199981689453 99.9199981689453 99.9199981689453 93.3831835512285 0 0 0 0
318 2025-04-15 00:00:00-04:00 100.849998474121 100.849998474121 100.849998474121 100.849998474121 94.2523427865408 0 0 0 0
319 2025-04-16 00:00:00-04:00 98.9899978637695 98.9899978637695 98.9899978637695 98.9899978637695 92.5140243159162 0 0 0 0
320 2025-04-17 00:00:00-04:00 99.6900024414063 99.6900024414063 99.6900024414063 99.6900024414063 93.1682342554482 0 0 0 0
321 2025-04-21 00:00:00-04:00 98.7200012207031 98.7200012207031 98.7200012207031 98.7200012207031 92.2616909838533 0 0 0 0
322 2025-04-22 00:00:00-04:00 100.769996643066 100.769996643066 100.769996643066 100.769996643066 94.1775747139756 0 0 0 0
323 2025-04-23 00:00:00-04:00 102.279998779297 102.279998779297 102.279998779297 102.279998779297 95.5887917799721 0 0 0 0
324 2025-04-24 00:00:00-04:00 104.540000915527 104.540000915527 104.540000915527 104.540000915527 97.7009434831471 0 0 0 0
325 2025-04-25 00:00:00-04:00 105.269996643066 105.269996643066 105.269996643066 105.269996643066 98.3831825370463 0 0 0 0
326 2025-04-28 00:00:00-04:00 105.150001525879 105.150001525879 105.150001525879 105.150001525879 98.2710375584743 0 0 0 0
327 2025-04-29 00:00:00-04:00 105.360000610352 105.360000610352 105.360000610352 105.360000610352 98.4672984012511 0 0 0 0
328 2025-04-30 00:00:00-04:00 106.040000915527 106.040000915527 106.040000915527 106.040000915527 99.102812757504 0 0 0 0
329 2025-05-01 00:00:00-04:00 106.019996643066 106.019996643066 106.019996643066 106.019996643066 99.0841171742247 0 0 0 0
330 2025-05-02 00:00:00-04:00 108.809997558594 108.809997558594 108.809997558594 108.809997558594 101.691594880162 0 0 0 0
331 2025-05-05 00:00:00-04:00 108.610000610352 108.610000610352 108.610000610352 108.610000610352 101.504681829024 0 0 0 0
332 2025-05-06 00:00:00-04:00 108.25 108.25 108.25 108.25 101.168232632757 0 0 0 0
333 2025-05-07 00:00:00-04:00 108.25 108.25 108.25 108.25 101.168232632757 0 0 0 0
334 2025-05-08 00:00:00-04:00 108.76000213623 108.76000213623 108.76000213623 108.76000213623 101.644870182515 0 0 0 0
335 2025-05-09 00:00:00-04:00 109.139999389648 109.139999389648 109.139999389648 109.139999389648 102.000007831786 0 0 0 0
336 2025-05-12 00:00:00-04:00 111.889999389648 111.889999389648 111.889999389648 111.889999389648 104.570101501441 0 0 0 0
337 2025-05-13 00:00:00-04:00 112.699996948242 112.699996948242 112.699996948242 112.699996948242 105.327108627905 0 0 0 0
338 2025-05-14 00:00:00-04:00 113.330001831055 113.330001831055 113.330001831055 113.330001831055 105.915898286512 0 0 0 0
339 2025-05-15 00:00:00-04:00 113.849998474121 113.849998474121 113.849998474121 113.849998474121 106.401876497634 0 0 0 0
340 2025-05-16 00:00:00-04:00 114.139999389648 114.139999389648 114.139999389648 114.139999389648 106.672905412976 0 0 0 0
341 2025-05-19 00:00:00-04:00 114.779998779297 114.779998779297 114.779998779297 114.779998779297 107.271035732946 0 0 0 0
342 2025-05-20 00:00:00-04:00 114.860000610352 114.860000610352 114.860000610352 114.860000610352 107.345803805512 0 0 0 0
343 2025-05-21 00:00:00-04:00 113.809997558594 113.809997558594 113.809997558594 113.809997558594 106.364492461351 0 0 0 0
344 2025-05-22 00:00:00-04:00 113.730003356934 113.730003356934 113.730003356934 113.730003356934 106.289731519062 0 0 0 0
345 2025-05-23 00:00:00-04:00 113.330001831055 113.330001831055 113.330001831055 113.330001831055 105.915898286512 0 0 0 0
346 2025-05-27 00:00:00-04:00 114.279998779297 114.279998779297 114.279998779297 114.279998779297 106.803745974827 0 0 0 0
347 2025-05-28 00:00:00-04:00 113.069999694824 113.069999694824 113.069999694824 113.069999694824 105.672905615813 0 0 0 0
348 2025-05-29 00:00:00-04:00 113.470001220703 113.470001220703 113.470001220703 113.470001220703 106.046738848363 0 0 0 0
349 2025-05-30 00:00:00-04:00 113.279998779297 113.279998779297 113.279998779297 113.279998779297 105.869166458589 0 0 0 0
350 2025-06-02 00:00:00-04:00 114.180000305176 114.180000305176 114.180000305176 114.180000305176 106.710289449259 0 0 0 0
351 2025-06-03 00:00:00-04:00 113.860000610352 113.860000610352 113.860000610352 113.860000610352 106.411224289274 0 0 0 0
352 2025-06-04 00:00:00-04:00 114.940002441406 114.940002441406 114.940002441406 114.940002441406 107.420571878077 0 0 0 0
353 2025-06-05 00:00:00-04:00 115.339996337891 115.339996337891 115.339996337891 115.339996337891 107.794397980351 0 0 0 0
354 2025-06-06 00:00:00-04:00 115.569999694824 115.569999694824 115.569999694824 115.569999694824 108.009354406407 0 0 0 0
355 2025-06-09 00:00:00-04:00 115.529998779297 115.529998779297 115.529998779297 115.529998779297 107.971970370125 0 0 0 0
356 2025-06-10 00:00:00-04:00 116.089996337891 116.089996337891 116.089996337891 116.089996337891 108.49533261753 0 0 0 0
357 2025-06-11 00:00:00-04:00 116.180000305176 116.180000305176 116.180000305176 116.180000305176 108.579448481735 0 0 0 0
358 2025-06-12 00:00:00-04:00 116.309997558594 116.309997558594 116.309997558594 116.309997558594 108.700941251946 0 0 0 0
359 2025-06-13 00:00:00-04:00 114.26000213623 114.26000213623 114.26000213623 114.26000213623 106.785057521824 0 0 0 0
360 2025-06-16 00:00:00-04:00 115.309997558594 115.309997558594 115.309997558594 115.309997558594 107.766361735708 0 0 0 0
361 2025-06-17 00:00:00-04:00 113.860000610352 113.860000610352 113.860000610352 113.860000610352 106.411224289274 0 0 0 0
362 2025-06-18 00:00:00-04:00 113.660003662109 113.660003662109 113.660003662109 113.660003662109 106.224311238136 0 0 0 0
363 2025-06-20 00:00:00-04:00 112.680000305176 112.680000305176 112.680000305176 112.680000305176 105.308420174902 0 0 0 0
364 2025-06-23 00:00:00-04:00 113.699996948242 113.699996948242 113.699996948242 113.699996948242 106.261688144143 0 0 0 0
365 2025-06-24 00:00:00-04:00 113.699996948242 113.699996948242 113.699996948242 113.699996948242 106.261688144143 0 0 0 0
366 2025-06-25 00:00:00-04:00 116.139999389648 116.139999389648 116.139999389648 116.139999389648 108.542064445452 0 0 0 0
367 2025-06-26 00:00:00-04:00 117.069999694824 117.069999694824 117.069999694824 117.069999694824 109.411223680764 0 0 0 0
368 2025-06-27 00:00:00-04:00 118.059997558594 118.059997558594 118.059997558594 118.059997558594 110.336455405363 0 0 0 0
369 2025-06-30 00:00:00-04:00 117.919998168945 117.919998168945 117.919998168945 117.919998168945 110.205614843511 0 0 0 0
370 2025-07-01 00:00:00-04:00 116.98999786377 116.98999786377 116.98999786377 116.98999786377 109.336455608199 0 0 0 0
371 2025-07-02 00:00:00-04:00 117.449996948242 117.449996948242 117.449996948242 117.449996948242 109.766361330035 0 0 0 0
372 2025-07-03 00:00:00-04:00 117.779998779297 117.779998779297 117.779998779297 117.779998779297 110.07477428166 0 0 0 0
373 2025-07-07 00:00:00-04:00 116.849998474121 116.849998474121 116.849998474121 116.849998474121 109.205615046348 0 0 0 0
374 2025-07-08 00:00:00-04:00 117.629997253418 117.629997253418 117.629997253418 117.629997253418 109.934585928169 0 0 0 0
375 2025-07-09 00:00:00-04:00 118.209999084473 118.209999084473 118.209999084473 118.209999084473 110.476643758853 0 0 0 0
376 2025-07-10 00:00:00-04:00 117.73999786377 117.73999786377 117.73999786377 117.73999786377 110.037390245378 0 0 0 0
377 2025-07-11 00:00:00-04:00 116.75 116.75 116.75 116.75 109.112158520779 0 0 0 0
378 2025-07-14 00:00:00-04:00 116.779998779297 116.779998779297 116.779998779297 116.779998779297 109.140194765422 0 0 0 0
379 2025-07-15 00:00:00-04:00 117.120002746582 117.120002746582 117.120002746582 117.120002746582 109.457955508687 0 0 0 0
380 2025-07-16 00:00:00-04:00 117.430000305176 117.430000305176 117.430000305176 117.430000305176 109.747672877032 0 0 0 0
381 2025-07-17 00:00:00-04:00 118.220001220703 118.220001220703 118.220001220703 118.220001220703 110.485991550493 0 0 0 0
382 2025-07-18 00:00:00-04:00 117.610000610352 117.610000610352 117.610000610352 117.610000610352 109.915897475166 0 0 0 0
383 2025-07-21 00:00:00-04:00 117.699996948242 117.699996948242 117.699996948242 117.699996948242 110.000006209095 0 0 0 0
384 2025-07-22 00:00:00-04:00 117.699996948242 117.699996948242 117.699996948242 117.699996948242 110.000006209095 0 0 0 0
385 2025-07-23 00:00:00-04:00 119.860000610352 119.860000610352 119.860000610352 119.860000610352 112.018701386701 0 0 0 0
386 2025-07-24 00:00:00-04:00 119.449996948242 119.449996948242 119.449996948242 119.449996948242 111.635520362511 0 0 0 0
387 2025-07-25 00:00:00-04:00 119.559997558594 119.559997558594 119.559997558594 119.559997558594 111.73832467972 0 0 0 0
388 2025-07-28 00:00:00-04:00 118.449996948242 118.449996948242 118.449996948242 118.449996948242 110.700940846273 0 0 0 0
389 2025-07-29 00:00:00-04:00 117.309997558594 117.309997558594 117.309997558594 117.309997558594 109.635520768184 0 0 0 0
390 2025-07-30 00:00:00-04:00 115.879997253418 115.879997253418 115.879997253418 115.879997253418 108.299071774753 0 0 0 0
391 2025-07-31 00:00:00-04:00 114.089996337891 114.089996337891 114.089996337891 114.089996337891 106.626173585054 0 0 0 0
392 2025-08-01 00:00:00-04:00 113.199996948242 113.199996948242 113.199996948242 113.199996948242 105.794398386024 0 0 0 0
393 2025-08-04 00:00:00-04:00 114.839996337891 114.839996337891 114.839996337891 114.839996337891 107.327108222232 0 0 0 0
394 2025-08-05 00:00:00-04:00 114.330001831055 114.330001831055 114.330001831055 114.330001831055 106.85047780275 0 0 0 0
395 2025-08-06 00:00:00-04:00 114.51000213623 114.51000213623 114.51000213623 114.51000213623 107.018702400883 0 0 0 0
396 2025-08-07 00:00:00-04:00 116.080001831055 116.080001831055 116.080001831055 116.080001831055 108.485991956166 0 0 0 0
397 2025-08-08 00:00:00-04:00 116.370002746582 116.370002746582 116.370002746582 116.370002746582 108.757020871508 0 0 0 0
398 2025-08-11 00:00:00-04:00 115.360000610352 115.360000610352 115.360000610352 115.360000610352 107.813093563631 0 0 0 0
399 2025-08-12 00:00:00-04:00 117.699996948242 117.699996948242 117.699996948242 117.699996948242 110.000006209095 0 0 0 0
400 2025-08-13 00:00:00-04:00 118.580001831055 118.580001831055 118.580001831055 118.580001831055 110.822440746761 0 0 0 0
401 2025-08-14 00:00:00-04:00 117.860000610352 117.860000610352 117.860000610352 117.860000610352 110.149542354225 0 0 0 0
402 2025-08-15 00:00:00-04:00 118.900001525879 118.900001525879 118.900001525879 118.900001525879 111.121505906746 0 0 0 0
403 2025-08-18 00:00:00-04:00 119.309997558594 119.309997558594 119.309997558594 119.309997558594 111.50467980066 0 0 0 0
404 2025-08-19 00:00:00-04:00 118.860000610352 118.860000610352 118.860000610352 118.860000610352 111.084121870463 0 0 0 0
405 2025-08-20 00:00:00-04:00 118.569999694824 118.569999694824 118.569999694824 118.569999694824 110.813092955121 0 0 0 0
406 2025-08-21 00:00:00-04:00 117.940002441406 117.940002441406 117.940002441406 117.940002441406 110.224310426791 0 0 0 0
407 2025-08-22 00:00:00-04:00 120.230003356934 120.230003356934 120.230003356934 120.230003356934 112.364498374609 0 0 0 0
408 2025-08-25 00:00:00-04:00 119.349998474121 119.349998474121 119.349998474121 119.349998474121 111.542063836943 0 0 0 0
409 2025-08-26 00:00:00-04:00 119.800003051758 119.800003051758 119.800003051758 119.800003051758 111.962628897415 0 0 0 0
410 2025-08-27 00:00:00-04:00 119.199996948242 119.199996948242 119.199996948242 119.199996948242 111.401875483452 0 0 0 0
411 2025-08-28 00:00:00-04:00 119.529998779297 119.529998779297 119.529998779297 119.529998779297 111.710288435077 0 0 0 0
412 2025-08-29 00:00:00-04:00 118.589996337891 118.589996337891 118.589996337891 118.589996337891 110.831781408125 0 0 0 0
413 2025-09-02 00:00:00-04:00 117.099998474121 117.099998474121 117.099998474121 117.099998474121 109.439259925407 0 0 0 0
414 2025-09-03 00:00:00-04:00 117.660003662109 117.660003662109 117.660003662109 117.660003662109 109.962629303088 0 0 0 0
415 2025-09-04 00:00:00-04:00 118.580001831055 118.580001831055 118.580001831055 118.580001831055 110.822440746761 0 0 0 0
416 2025-09-05 00:00:00-04:00 119.410003662109 119.410003662109 119.410003662109 119.410003662109 111.598143456504 0 0 0 0
417 2025-09-08 00:00:00-04:00 120.5 120.5 120.5 120.5 112.616831706671 0 0 0 0
418 2025-09-09 00:00:00-04:00 120.860000610352 120.860000610352 120.860000610352 120.860000610352 112.953280902939 0 0 0 0
419 2025-09-10 00:00:00-04:00 120.610000610352 120.610000610352 120.610000610352 120.610000610352 112.71963602388 0 0 0 0
420 2025-09-11 00:00:00-04:00 121.599998474121 121.599998474121 121.599998474121 121.599998474121 113.644867748478 0 0 0 0
421 2025-09-12 00:00:00-04:00 121.209999084473 121.209999084473 121.209999084473 121.209999084473 113.280382307567 0 0 0 0
422 2025-09-15 00:00:00-04:00 122.430000305176 122.430000305176 122.430000305176 122.430000305176 114.420570458222 0 0 0 0
423 2025-09-16 00:00:00-04:00 122.900001525879 122.900001525879 122.900001525879 122.900001525879 114.859823971698 0 0 0 0
424 2025-09-17 00:00:00-04:00 123.110000610352 123.110000610352 123.110000610352 123.110000610352 115.056084814475 0 0 0 0
425 2025-09-18 00:00:00-04:00 124.75 124.75 124.75 124.75 116.588794650683 0 0 0 0
426 2025-09-19 00:00:00-04:00 123.940002441406 123.940002441406 123.940002441406 123.940002441406 115.831787524218 0 0 0 0
427 2025-09-22 00:00:00-04:00 124.569999694824 124.569999694824 124.569999694824 124.569999694824 116.420570052549 0 0 0 0
428 2025-09-23 00:00:00-04:00 124 124 124 124 115.887860013504 0 0 0 0
429 2025-09-24 00:00:00-04:00 123.26000213623 123.26000213623 123.26000213623 123.26000213623 115.196273167965 0 0 0 0
430 2025-09-25 00:00:00-04:00 122.220001220703 122.220001220703 122.220001220703 122.220001220703 114.224309615445 0 0 0 0
431 2025-09-26 00:00:00-04:00 122.120002746582 122.120002746582 122.120002746582 122.120002746582 114.130853089876 0 0 0 0
432 2025-09-29 00:00:00-04:00 123.169998168945 123.169998168945 123.169998168945 123.169998168945 115.112157303761 0 0 0 0
433 2025-09-30 00:00:00-04:00 123.199996948242 123.199996948242 123.199996948242 123.199996948242 115.140193548404 0 0 0 0
434 2025-10-01 00:00:00-04:00 123.860000610352 123.860000610352 123.860000610352 123.860000610352 115.757019451653 0 0 0 0
435 2025-10-02 00:00:00-04:00 125.309997558594 125.309997558594 125.309997558594 125.309997558594 117.112156898088 0 0 0 0
436 2025-10-03 00:00:00-04:00 125.650001525879 125.650001525879 125.650001525879 125.650001525879 117.429917641352 0 0 0 0
437 2025-10-06 00:00:00-04:00 126.889999389648 126.889999389648 126.889999389648 126.889999389648 118.58879424501 0 0 0 0
438 2025-10-07 00:00:00-04:00 125.580001831055 125.580001831055 125.580001831055 125.580001831055 117.364497360426 0 0 0 0
439 2025-10-08 00:00:00-04:00 126.120002746582 126.120002746582 126.120002746582 126.120002746582 117.869171154828 0 0 0 0
440 2025-10-09 00:00:00-04:00 125.040000915527 125.040000915527 125.040000915527 125.040000915527 116.859823566025 0 0 0 0
441 2025-10-10 00:00:00-04:00 120.529998779297 120.529998779297 120.529998779297 120.529998779297 112.644867951314 0 0 0 0
442 2025-10-13 00:00:00-04:00 123.080001831055 123.080001831055 123.080001831055 123.080001831055 115.028048569832 0 0 0 0
443 2025-10-14 00:00:00-04:00 122.540000915527 122.540000915527 122.540000915527 122.540000915527 114.52337477543 0 0 0 0
444 2025-10-15 00:00:00-04:00 122.839996337891 122.839996337891 122.839996337891 122.839996337891 114.803744352136 0 0 0 0
445 2025-10-16 00:00:00-04:00 122.970001220703 122.970001220703 122.970001220703 122.970001220703 114.925244252623 0 0 0 0
446 2025-10-17 00:00:00-04:00 123.040000915527 123.040000915527 123.040000915527 123.040000915527 114.990664533549 0 0 0 0
447 2025-10-20 00:00:00-04:00 124.769996643066 124.769996643066 124.769996643066 124.769996643066 116.607483103686 0 0 0 0
448 2025-10-21 00:00:00-04:00 124.120002746582 124.120002746582 124.120002746582 124.120002746582 116.000012122352 0 0 0 0
449 2025-10-22 00:00:00-04:00 122.669998168945 122.669998168945 122.669998168945 122.669998168945 114.644867545642 0 0 0 0
450 2025-10-23 00:00:00-04:00 123.949996948242 123.949996948242 123.949996948242 123.949996948242 115.841128185582 0 0 0 0
451 2025-10-24 00:00:00-04:00 124.440002441406 124.440002441406 124.440002441406 124.440002441406 116.299077282337 0 0 0 0
452 2025-10-27 00:00:00-04:00 126.180000305176 126.180000305176 126.180000305176 126.180000305176 117.925243644114 0 0 0 0
453 2025-10-28 00:00:00-04:00 125.730003356934 125.730003356934 125.730003356934 125.730003356934 117.504685713917 0 0 0 0
454 2025-10-29 00:00:00-04:00 126 126 126 126 117.75701904598 0 0 0 0
455 2025-10-30 00:00:00-04:00 125.300003051758 125.300003051758 125.300003051758 125.300003051758 117.102816236724 0 0 0 0
456 2025-10-31 00:00:00-04:00 124.940002441406 124.940002441406 124.940002441406 124.940002441406 116.766367040456 0 0 0 0
457 2025-11-03 00:00:00-05:00 125.080001831055 125.080001831055 125.080001831055 125.080001831055 116.897207602307 0 0 0 0
458 2025-11-04 00:00:00-05:00 122.650001525879 122.650001525879 122.650001525879 122.650001525879 114.626179092638 0 0 0 0
459 2025-11-05 00:00:00-05:00 123.150001525879 123.150001525879 123.150001525879 123.150001525879 115.093468850757 0 0 0 0
460 2025-11-06 00:00:00-05:00 121.400001525879 121.400001525879 121.400001525879 121.400001525879 113.457954697341 0 0 0 0
461 2025-11-07 00:00:00-05:00 120.959999084473 120.959999084473 120.959999084473 120.959999084473 113.046737428508 0 0 0 0
462 2025-11-10 00:00:00-05:00 122.849998474121 122.849998474121 122.849998474121 122.849998474121 114.813092143775 0 0 0 0
463 2025-11-11 00:00:00-05:00 123.300003051758 123.300003051758 123.300003051758 123.300003051758 115.233657204248 0 0 0 0
464 2025-11-12 00:00:00-05:00 123.650001525879 123.650001525879 123.650001525879 123.650001525879 115.560758608876 0 0 0 0
465 2025-11-13 00:00:00-05:00 121.470001220703 121.470001220703 121.470001220703 121.470001220703 113.523374978266 0 0 0 0
466 2025-11-14 00:00:00-05:00 121.330001831055 121.330001831055 121.330001831055 121.330001831055 113.392534416415 0 0 0 0
467 2025-11-17 00:00:00-05:00 119.73999786377 119.73999786377 119.73999786377 119.73999786377 111.906549277853 0 0 0 0
468 2025-11-18 00:00:00-05:00 118.410003662109 118.410003662109 118.410003662109 118.410003662109 110.663563940267 0 0 0 0
469 2025-11-19 00:00:00-05:00 118.279998779297 118.279998779297 118.279998779297 118.279998779297 110.542064039779 0 0 0 0
470 2025-11-20 00:00:00-05:00 115.160003662109 115.160003662109 115.160003662109 115.160003662109 107.626180512493 0 0 0 0
471 2025-11-21 00:00:00-05:00 116.569999694824 116.569999694824 116.569999694824 116.569999694824 108.943933922645 0 0 0 0
472 2025-11-24 00:00:00-05:00 117.610000610352 117.610000610352 117.610000610352 117.610000610352 109.915897475166 0 0 0 0
473 2025-11-25 00:00:00-05:00 118.849998474121 118.849998474121 118.849998474121 118.849998474121 111.074774078824 0 0 0 0
474 2025-11-26 00:00:00-05:00 119.889999389648 119.889999389648 119.889999389648 119.889999389648 112.046737631344 0 0 0 0
475 2025-11-28 00:00:00-05:00 120.910003662109 120.910003662109 120.910003662109 120.910003662109 113.000012730861 0 0 0 0
476 2025-12-01 00:00:00-05:00 120 120 120 120 112.149541948552 0 0 0 0
477 2025-12-02 00:00:00-05:00 120.769996643066 120.769996643066 120.769996643066 120.769996643066 112.869165038734 0 0 0 0
478 2025-12-03 00:00:00-05:00 121.389999389648 121.389999389648 121.389999389648 121.389999389648 113.448606905701 0 0 0 0
479 2025-12-04 00:00:00-05:00 121.559997558594 121.559997558594 121.559997558594 121.559997558594 113.607483712195 0 0 0 0
480 2025-12-05 00:00:00-05:00 121.519996643066 121.519996643066 121.519996643066 121.519996643066 113.570099675913 0 0 0 0
481 2025-12-08 00:00:00-05:00 121.48999786377 121.48999786377 121.48999786377 121.48999786377 113.54206343127 0 0 0 0
482 2025-12-09 00:00:00-05:00 121.160003662109 121.160003662109 121.160003662109 121.160003662109 113.233657609921 0 0 0 0
483 2025-12-10 00:00:00-05:00 122.550003051758 122.550003051758 122.550003051758 122.550003051758 114.53272256707 0 0 0 0
484 2025-12-11 00:00:00-05:00 122.669998168945 122.669998168945 122.669998168945 122.669998168945 114.644867545642 0 0 0 0
485 2025-12-12 00:00:00-05:00 121.089996337891 121.089996337891 121.089996337891 121.089996337891 113.168230198719 0 0 0 0
486 2025-12-15 00:00:00-05:00 120.769996643066 120.769996643066 120.769996643066 120.769996643066 112.869165038734 0 0 0 0
487 2025-12-16 00:00:00-05:00 120.099998474121 120.099998474121 120.099998474121 120.099998474121 112.242998474121 0 0 0 0
488 2025-12-17 00:00:00-05:00 110.440002441406 110.440002441406 110.440002441406 110.440002441406 110.440002441406 0 7.857 0 6.42
489 2025-12-18 00:00:00-05:00 111.779998779297 111.779998779297 111.779998779297 111.779998779297 111.779998779297 0 0 0 0
490 2025-12-19 00:00:00-05:00 112.76000213623 112.76000213623 112.76000213623 112.76000213623 112.76000213623 0 0 0 0
491 2025-12-22 00:00:00-05:00 113.379997253418 113.379997253418 113.379997253418 113.379997253418 113.379997253418 0 0 0 0
492 2025-12-23 00:00:00-05:00 114.01000213623 114.01000213623 114.01000213623 114.01000213623 114.01000213623 0 0 0 0
493 2025-12-24 00:00:00-05:00 114.129997253418 114.129997253418 114.129997253418 114.129997253418 114.129997253418 0 0 0 0
494 2025-12-26 00:00:00-05:00 114.709999084473 114.709999084473 114.709999084473 114.709999084473 114.709999084473 0 0 0 0
495 2025-12-29 00:00:00-05:00 114.440002441406 114.440002441406 114.440002441406 114.440002441406 114.440002441406 0 0 0 0
496 2025-12-30 00:00:00-05:00 114.379997253418 114.379997253418 114.379997253418 114.379997253418 114.379997253418 0 0 0 0
497 2025-12-31 00:00:00-05:00 113.98999786377 113.98999786377 113.98999786377 113.98999786377 113.98999786377 0 0 0 0
498 2026-01-02 00:00:00-05:00 115.680000305176 115.680000305176 115.680000305176 115.680000305176 115.680000305176 0 0 0 0
499 2026-01-05 00:00:00-05:00 118.099998474121 118.099998474121 118.099998474121 118.099998474121 118.099998474121 0 0 0 0
500 2026-01-06 00:00:00-05:00 118.98999786377 118.98999786377 118.98999786377 118.98999786377 118.98999786377 0 0 0 0
501 2026-01-07 00:00:00-05:00 118.019996643066 118.019996643066 118.019996643066 118.019996643066 118.019996643066 0 0 0 0
502 2026-01-08 00:00:00-05:00 117.5 117.5 117.5 117.5 117.5 0 0 0 0
503 2026-01-09 00:00:00-05:00 118.620002746582 118.620002746582 118.620002746582 118.620002746582 118.620002746582 0 0 0 0

View File

@@ -0,0 +1,503 @@
Date,Open,High,Low,Close,Adj Close,Volume,Dividends,Stock Splits,Capital Gains
2024-01-10 00:00:00-05:00,100.02999877929688,100.02999877929688,100.02999877929688,100.02999877929688,73.67626190185547,0,0.0,0.0,0.0
2024-01-11 00:00:00-05:00,100.25,100.25,100.25,100.25,73.83830261230469,0,0.0,0.0,0.0
2024-01-12 00:00:00-05:00,100.44000244140625,100.44000244140625,100.44000244140625,100.44000244140625,73.9782485961914,0,0.0,0.0,0.0
2024-01-16 00:00:00-05:00,98.70999908447266,98.70999908447266,98.70999908447266,98.70999908447266,72.70402526855469,0,0.0,0.0,0.0
2024-01-17 00:00:00-05:00,97.05999755859375,97.05999755859375,97.05999755859375,97.05999755859375,71.48873138427734,0,0.0,0.0,0.0
2024-01-18 00:00:00-05:00,98.02999877929688,98.02999877929688,98.02999877929688,98.02999877929688,72.20317840576172,0,0.0,0.0,0.0
2024-01-19 00:00:00-05:00,98.7699966430664,98.7699966430664,98.7699966430664,98.7699966430664,72.74822235107422,0,0.0,0.0,0.0
2024-01-22 00:00:00-05:00,98.76000213623047,98.76000213623047,98.76000213623047,98.76000213623047,72.74085235595703,0,0.0,0.0,0.0
2024-01-23 00:00:00-05:00,99.37000274658203,99.37000274658203,99.37000274658203,99.37000274658203,73.19014739990234,0,0.0,0.0,0.0
2024-01-24 00:00:00-05:00,100.41000366210938,100.41000366210938,100.41000366210938,100.41000366210938,73.95614624023438,0,0.0,0.0,0.0
2024-01-25 00:00:00-05:00,100.3499984741211,100.3499984741211,100.3499984741211,100.3499984741211,73.91195678710938,0,0.0,0.0,0.0
2024-01-26 00:00:00-05:00,100.83999633789062,100.83999633789062,100.83999633789062,100.83999633789062,74.27285766601562,0,0.0,0.0,0.0
2024-01-29 00:00:00-05:00,101.19000244140625,101.19000244140625,101.19000244140625,101.19000244140625,74.53065490722656,0,0.0,0.0,0.0
2024-01-30 00:00:00-05:00,100.41000366210938,100.41000366210938,100.41000366210938,100.41000366210938,73.95614624023438,0,0.0,0.0,0.0
2024-01-31 00:00:00-05:00,99.27999877929688,99.27999877929688,99.27999877929688,99.27999877929688,73.12385559082031,0,0.0,0.0,0.0
2024-02-01 00:00:00-05:00,100.80000305175781,100.80000305175781,100.80000305175781,100.80000305175781,74.24340057373047,0,0.0,0.0,0.0
2024-02-02 00:00:00-05:00,100.12000274658203,100.12000274658203,100.12000274658203,100.12000274658203,73.7425537109375,0,0.0,0.0,0.0
2024-02-05 00:00:00-05:00,100.2699966430664,100.2699966430664,100.2699966430664,100.2699966430664,73.85303497314453,0,0.0,0.0,0.0
2024-02-06 00:00:00-05:00,101.08000183105469,101.08000183105469,101.08000183105469,101.08000183105469,74.44963073730469,0,0.0,0.0,0.0
2024-02-07 00:00:00-05:00,101.86000061035156,101.86000061035156,101.86000061035156,101.86000061035156,75.02413177490234,0,0.0,0.0,0.0
2024-02-08 00:00:00-05:00,102.72000122070312,102.72000122070312,102.72000122070312,102.72000122070312,75.65755462646484,0,0.0,0.0,0.0
2024-02-09 00:00:00-05:00,103.44000244140625,103.44000244140625,103.44000244140625,103.44000244140625,76.18787384033203,0,0.0,0.0,0.0
2024-02-12 00:00:00-05:00,103.54000091552734,103.54000091552734,103.54000091552734,103.54000091552734,76.26152801513672,0,0.0,0.0,0.0
2024-02-13 00:00:00-05:00,101.23999786376953,101.23999786376953,101.23999786376953,101.23999786376953,74.56747436523438,0,0.0,0.0,0.0
2024-02-14 00:00:00-05:00,103.01000213623047,103.01000213623047,103.01000213623047,103.01000213623047,75.87116241455078,0,0.0,0.0,0.0
2024-02-15 00:00:00-05:00,104.33000183105469,104.33000183105469,104.33000183105469,104.33000183105469,76.84339141845703,0,0.0,0.0,0.0
2024-02-16 00:00:00-05:00,104.3499984741211,104.3499984741211,104.3499984741211,104.3499984741211,76.85812377929688,0,0.0,0.0,0.0
2024-02-20 00:00:00-05:00,103.4800033569336,103.4800033569336,103.4800033569336,103.4800033569336,76.21733856201172,0,0.0,0.0,0.0
2024-02-21 00:00:00-05:00,103.75,103.75,103.75,103.75,76.41619873046875,0,0.0,0.0,0.0
2024-02-22 00:00:00-05:00,106.08000183105469,106.08000183105469,106.08000183105469,106.08000183105469,78.13233947753906,0,0.0,0.0,0.0
2024-02-23 00:00:00-05:00,105.2699966430664,105.2699966430664,105.2699966430664,105.2699966430664,77.53573608398438,0,0.0,0.0,0.0
2024-02-26 00:00:00-05:00,105.3499984741211,105.3499984741211,105.3499984741211,105.3499984741211,77.59466552734375,0,0.0,0.0,0.0
2024-02-27 00:00:00-05:00,105.93000030517578,105.93000030517578,105.93000030517578,105.93000030517578,78.02185821533203,0,0.0,0.0,0.0
2024-02-28 00:00:00-05:00,105.20999908447266,105.20999908447266,105.20999908447266,105.20999908447266,77.49154663085938,0,0.0,0.0,0.0
2024-02-29 00:00:00-05:00,105.5199966430664,105.5199966430664,105.5199966430664,105.5199966430664,77.7198715209961,0,0.0,0.0,0.0
2024-03-01 00:00:00-05:00,107.01000213623047,107.01000213623047,107.01000213623047,107.01000213623047,78.81732940673828,0,0.0,0.0,0.0
2024-03-04 00:00:00-05:00,106.44999694824219,106.44999694824219,106.44999694824219,106.44999694824219,78.40485382080078,0,0.0,0.0,0.0
2024-03-05 00:00:00-05:00,105.23999786376953,105.23999786376953,105.23999786376953,105.23999786376953,77.5136489868164,0,0.0,0.0,0.0
2024-03-06 00:00:00-05:00,106.62999725341797,106.62999725341797,106.62999725341797,106.62999725341797,78.53743743896484,0,0.0,0.0,0.0
2024-03-07 00:00:00-05:00,108.18000030517578,108.18000030517578,108.18000030517578,108.18000030517578,79.6790771484375,0,0.0,0.0,0.0
2024-03-08 00:00:00-05:00,106.98999786376953,106.98999786376953,106.98999786376953,106.98999786376953,78.8025894165039,0,0.0,0.0,0.0
2024-03-11 00:00:00-04:00,107.11000061035156,107.11000061035156,107.11000061035156,107.11000061035156,78.89097595214844,0,0.0,0.0,0.0
2024-03-12 00:00:00-04:00,108.73999786376953,108.73999786376953,108.73999786376953,108.73999786376953,80.09153747558594,0,0.0,0.0,0.0
2024-03-13 00:00:00-04:00,108.55000305175781,108.55000305175781,108.55000305175781,108.55000305175781,79.95159912109375,0,0.0,0.0,0.0
2024-03-14 00:00:00-04:00,107.19999694824219,107.19999694824219,107.19999694824219,107.19999694824219,78.95726013183594,0,0.0,0.0,0.0
2024-03-15 00:00:00-04:00,106.12000274658203,106.12000274658203,106.12000274658203,106.12000274658203,78.16180419921875,0,0.0,0.0,0.0
2024-03-18 00:00:00-04:00,106.38999938964844,106.38999938964844,106.38999938964844,106.38999938964844,78.36066436767578,0,0.0,0.0,0.0
2024-03-19 00:00:00-04:00,106.45999908447266,106.45999908447266,106.45999908447266,106.45999908447266,78.41222381591797,0,0.0,0.0,0.0
2024-03-20 00:00:00-04:00,107.76000213623047,107.76000213623047,107.76000213623047,107.76000213623047,79.36973571777344,0,0.0,0.0,0.0
2024-03-21 00:00:00-04:00,108.04000091552734,108.04000091552734,108.04000091552734,108.04000091552734,79.57596588134766,0,0.0,0.0,0.0
2024-03-22 00:00:00-04:00,107.94999694824219,107.94999694824219,107.94999694824219,107.94999694824219,79.5096664428711,0,0.0,0.0,0.0
2024-03-25 00:00:00-04:00,107.79000091552734,107.79000091552734,107.79000091552734,107.79000091552734,79.3918228149414,0,0.0,0.0,0.0
2024-03-26 00:00:00-04:00,107.55999755859375,107.55999755859375,107.55999755859375,107.55999755859375,79.22241973876953,0,0.0,0.0,0.0
2024-03-27 00:00:00-04:00,107.6500015258789,107.6500015258789,107.6500015258789,107.6500015258789,79.28871154785156,0,0.0,0.0,0.0
2024-03-28 00:00:00-04:00,107.19999694824219,107.19999694824219,107.19999694824219,107.19999694824219,78.95726013183594,0,0.0,0.0,0.0
2024-04-01 00:00:00-04:00,107.29000091552734,107.29000091552734,107.29000091552734,107.29000091552734,79.0235595703125,0,0.0,0.0,0.0
2024-04-02 00:00:00-04:00,106.79000091552734,106.79000091552734,106.79000091552734,106.79000091552734,78.65528106689453,0,0.0,0.0,0.0
2024-04-03 00:00:00-04:00,107.29000091552734,107.29000091552734,107.29000091552734,107.29000091552734,79.0235595703125,0,0.0,0.0,0.0
2024-04-04 00:00:00-04:00,106.4000015258789,106.4000015258789,106.4000015258789,106.4000015258789,78.36803436279297,0,0.0,0.0,0.0
2024-04-05 00:00:00-04:00,106.95999908447266,106.95999908447266,106.95999908447266,106.95999908447266,78.7804946899414,0,0.0,0.0,0.0
2024-04-08 00:00:00-04:00,107.47000122070312,107.47000122070312,107.47000122070312,107.47000122070312,79.1561279296875,0,0.0,0.0,0.0
2024-04-09 00:00:00-04:00,107.87999725341797,107.87999725341797,107.87999725341797,107.87999725341797,79.45811462402344,0,0.0,0.0,0.0
2024-04-10 00:00:00-04:00,106.56999969482422,106.56999969482422,106.56999969482422,106.56999969482422,78.49324035644531,0,0.0,0.0,0.0
2024-04-11 00:00:00-04:00,107.4000015258789,107.4000015258789,107.4000015258789,107.4000015258789,79.10457611083984,0,0.0,0.0,0.0
2024-04-12 00:00:00-04:00,105.08000183105469,105.08000183105469,105.08000183105469,105.08000183105469,77.39579772949219,0,0.0,0.0,0.0
2024-04-15 00:00:00-04:00,104.30999755859375,104.30999755859375,104.30999755859375,104.30999755859375,76.82865905761719,0,0.0,0.0,0.0
2024-04-16 00:00:00-04:00,103.9800033569336,103.9800033569336,103.9800033569336,103.9800033569336,76.58560180664062,0,0.0,0.0,0.0
2024-04-17 00:00:00-04:00,103.27999877929688,103.27999877929688,103.27999877929688,103.27999877929688,76.07002258300781,0,0.0,0.0,0.0
2024-04-18 00:00:00-04:00,102.4800033569336,102.4800033569336,102.4800033569336,102.4800033569336,75.48078918457031,0,0.0,0.0,0.0
2024-04-19 00:00:00-04:00,101.13999938964844,101.13999938964844,101.13999938964844,101.13999938964844,74.49382019042969,0,0.0,0.0,0.0
2024-04-22 00:00:00-04:00,102.58000183105469,102.58000183105469,102.58000183105469,102.58000183105469,75.554443359375,0,0.0,0.0,0.0
2024-04-23 00:00:00-04:00,104.87999725341797,104.87999725341797,104.87999725341797,104.87999725341797,77.24848937988281,0,0.0,0.0,0.0
2024-04-24 00:00:00-04:00,104.66000366210938,104.66000366210938,104.66000366210938,104.66000366210938,77.08645629882812,0,0.0,0.0,0.0
2024-04-25 00:00:00-04:00,103.93000030517578,103.93000030517578,103.93000030517578,103.93000030517578,76.54877471923828,0,0.0,0.0,0.0
2024-04-26 00:00:00-04:00,105.23999786376953,105.23999786376953,105.23999786376953,105.23999786376953,77.5136489868164,0,0.0,0.0,0.0
2024-04-29 00:00:00-04:00,105.75,105.75,105.75,105.75,77.8892822265625,0,0.0,0.0,0.0
2024-04-30 00:00:00-04:00,103.94999694824219,103.94999694824219,103.94999694824219,103.94999694824219,76.5634994506836,0,0.0,0.0,0.0
2024-05-01 00:00:00-04:00,103.77999877929688,103.77999877929688,103.77999877929688,103.77999877929688,76.43829345703125,0,0.0,0.0,0.0
2024-05-02 00:00:00-04:00,106.27999877929688,106.27999877929688,106.27999877929688,106.27999877929688,78.27964782714844,0,0.0,0.0,0.0
2024-05-03 00:00:00-04:00,107.97000122070312,107.97000122070312,107.97000122070312,107.97000122070312,79.52440643310547,0,0.0,0.0,0.0
2024-05-06 00:00:00-04:00,108.73999786376953,108.73999786376953,108.73999786376953,108.73999786376953,80.09153747558594,0,0.0,0.0,0.0
2024-05-07 00:00:00-04:00,108.66999816894531,108.66999816894531,108.66999816894531,108.66999816894531,80.03998565673828,0,0.0,0.0,0.0
2024-05-08 00:00:00-04:00,108.2300033569336,108.2300033569336,108.2300033569336,108.2300033569336,79.71590423583984,0,0.0,0.0,0.0
2024-05-09 00:00:00-04:00,108.63999938964844,108.63999938964844,108.63999938964844,108.63999938964844,80.01788330078125,0,0.0,0.0,0.0
2024-05-10 00:00:00-04:00,108.81999969482422,108.81999969482422,108.81999969482422,108.81999969482422,80.15045928955078,0,0.0,0.0,0.0
2024-05-13 00:00:00-04:00,109.08999633789062,109.08999633789062,109.08999633789062,109.08999633789062,80.34932708740234,0,0.0,0.0,0.0
2024-05-14 00:00:00-04:00,110.18000030517578,110.18000030517578,110.18000030517578,110.18000030517578,81.15216064453125,0,0.0,0.0,0.0
2024-05-15 00:00:00-04:00,111.88999938964844,111.88999938964844,111.88999938964844,111.88999938964844,82.4116439819336,0,0.0,0.0,0.0
2024-05-16 00:00:00-04:00,111.44999694824219,111.44999694824219,111.44999694824219,111.44999694824219,82.08757019042969,0,0.0,0.0,0.0
2024-05-17 00:00:00-04:00,111.47000122070312,111.47000122070312,111.47000122070312,111.47000122070312,82.10230255126953,0,0.0,0.0,0.0
2024-05-20 00:00:00-04:00,112.1500015258789,112.1500015258789,112.1500015258789,112.1500015258789,82.6031494140625,0,0.0,0.0,0.0
2024-05-21 00:00:00-04:00,111.66000366210938,111.66000366210938,111.66000366210938,111.66000366210938,82.24224090576172,0,0.0,0.0,0.0
2024-05-22 00:00:00-04:00,111.45999908447266,111.45999908447266,111.45999908447266,111.45999908447266,82.09493255615234,0,0.0,0.0,0.0
2024-05-23 00:00:00-04:00,111.36000061035156,111.36000061035156,111.36000061035156,111.36000061035156,82.02127838134766,0,0.0,0.0,0.0
2024-05-24 00:00:00-04:00,112.25,112.25,112.25,112.25,82.67680358886719,0,0.0,0.0,0.0
2024-05-28 00:00:00-04:00,112.25,112.25,112.25,112.25,82.67680358886719,0,0.0,0.0,0.0
2024-05-29 00:00:00-04:00,110.45999908447266,110.45999908447266,110.45999908447266,110.45999908447266,81.35839080810547,0,0.0,0.0,0.0
2024-05-30 00:00:00-04:00,110.68000030517578,110.68000030517578,110.68000030517578,110.68000030517578,81.52043151855469,0,0.0,0.0,0.0
2024-05-31 00:00:00-04:00,110.79000091552734,110.79000091552734,110.79000091552734,110.79000091552734,81.60144805908203,0,0.0,0.0,0.0
2024-06-03 00:00:00-04:00,111.58000183105469,111.58000183105469,111.58000183105469,111.58000183105469,82.18331909179688,0,0.0,0.0,0.0
2024-06-04 00:00:00-04:00,111.13999938964844,111.13999938964844,111.13999938964844,111.13999938964844,81.85923767089844,0,0.0,0.0,0.0
2024-06-05 00:00:00-04:00,113.23999786376953,113.23999786376953,113.23999786376953,113.23999786376953,83.40597534179688,0,0.0,0.0,0.0
2024-06-06 00:00:00-04:00,113.72000122070312,113.72000122070312,113.72000122070312,113.72000122070312,83.759521484375,0,0.0,0.0,0.0
2024-06-07 00:00:00-04:00,112.05999755859375,112.05999755859375,112.05999755859375,112.05999755859375,82.53685760498047,0,0.0,0.0,0.0
2024-06-10 00:00:00-04:00,112.37999725341797,112.37999725341797,112.37999725341797,112.37999725341797,82.77255249023438,0,0.0,0.0,0.0
2024-06-11 00:00:00-04:00,111.5999984741211,111.5999984741211,111.5999984741211,111.5999984741211,82.19804382324219,0,0.0,0.0,0.0
2024-06-12 00:00:00-04:00,113.05999755859375,113.05999755859375,113.05999755859375,113.05999755859375,83.27339935302734,0,0.0,0.0,0.0
2024-06-13 00:00:00-04:00,111.95999908447266,111.95999908447266,111.95999908447266,111.95999908447266,82.46320343017578,0,0.0,0.0,0.0
2024-06-14 00:00:00-04:00,111.04000091552734,111.04000091552734,111.04000091552734,111.04000091552734,81.78558349609375,0,0.0,0.0,0.0
2024-06-17 00:00:00-04:00,111.1500015258789,111.1500015258789,111.1500015258789,111.1500015258789,81.86660766601562,0,0.0,0.0,0.0
2024-06-18 00:00:00-04:00,111.22000122070312,111.22000122070312,111.22000122070312,111.22000122070312,81.91815948486328,0,0.0,0.0,0.0
2024-06-20 00:00:00-04:00,111.0199966430664,111.0199966430664,111.0199966430664,111.0199966430664,81.7708511352539,0,0.0,0.0,0.0
2024-06-21 00:00:00-04:00,110.38999938964844,110.38999938964844,110.38999938964844,110.38999938964844,81.30683135986328,0,0.0,0.0,0.0
2024-06-24 00:00:00-04:00,110.51000213623047,110.51000213623047,110.51000213623047,110.51000213623047,81.39521789550781,0,0.0,0.0,0.0
2024-06-25 00:00:00-04:00,111.38999938964844,111.38999938964844,111.38999938964844,111.38999938964844,82.04337310791016,0,0.0,0.0,0.0
2024-06-26 00:00:00-04:00,110.73999786376953,110.73999786376953,110.73999786376953,110.73999786376953,81.56462097167969,0,0.0,0.0,0.0
2024-06-27 00:00:00-04:00,110.25,110.25,110.25,110.25,81.20372009277344,0,0.0,0.0,0.0
2024-06-28 00:00:00-04:00,109.72000122070312,109.72000122070312,109.72000122070312,109.72000122070312,80.81334686279297,0,0.0,0.0,0.0
2024-07-01 00:00:00-04:00,109.6500015258789,109.6500015258789,109.6500015258789,109.6500015258789,80.76179504394531,0,0.0,0.0,0.0
2024-07-02 00:00:00-04:00,110.06999969482422,110.06999969482422,110.06999969482422,110.06999969482422,81.0711441040039,0,0.0,0.0,0.0
2024-07-03 00:00:00-04:00,111.51000213623047,111.51000213623047,111.51000213623047,111.51000213623047,82.13176727294922,0,0.0,0.0,0.0
2024-07-05 00:00:00-04:00,112.48999786376953,112.48999786376953,112.48999786376953,112.48999786376953,82.85356903076172,0,0.0,0.0,0.0
2024-07-08 00:00:00-04:00,112.16999816894531,112.16999816894531,112.16999816894531,112.16999816894531,82.61787414550781,0,0.0,0.0,0.0
2024-07-09 00:00:00-04:00,112.38999938964844,112.38999938964844,112.38999938964844,112.38999938964844,82.77991485595703,0,0.0,0.0,0.0
2024-07-10 00:00:00-04:00,113.7699966430664,113.7699966430664,113.7699966430664,113.7699966430664,83.79634094238281,0,0.0,0.0,0.0
2024-07-11 00:00:00-04:00,113.86000061035156,113.86000061035156,113.86000061035156,113.86000061035156,83.86263275146484,0,0.0,0.0,0.0
2024-07-12 00:00:00-04:00,115.2300033569336,115.2300033569336,115.2300033569336,115.2300033569336,84.87169647216797,0,0.0,0.0,0.0
2024-07-15 00:00:00-04:00,113.77999877929688,113.77999877929688,113.77999877929688,113.77999877929688,83.8037109375,0,0.0,0.0,0.0
2024-07-16 00:00:00-04:00,114.27999877929688,114.27999877929688,114.27999877929688,114.27999877929688,84.17198181152344,0,0.0,0.0,0.0
2024-07-17 00:00:00-04:00,111.63999938964844,111.63999938964844,111.63999938964844,111.63999938964844,82.22750854492188,0,0.0,0.0,0.0
2024-07-18 00:00:00-04:00,110.54000091552734,110.54000091552734,110.54000091552734,110.54000091552734,81.41732025146484,0,0.0,0.0,0.0
2024-07-19 00:00:00-04:00,109.94999694824219,109.94999694824219,109.94999694824219,109.94999694824219,80.98275756835938,0,0.0,0.0,0.0
2024-07-22 00:00:00-04:00,111.51000213623047,111.51000213623047,111.51000213623047,111.51000213623047,82.13176727294922,0,0.0,0.0,0.0
2024-07-23 00:00:00-04:00,111.45999908447266,111.45999908447266,111.45999908447266,111.45999908447266,82.09493255615234,0,0.0,0.0,0.0
2024-07-24 00:00:00-04:00,108.9000015258789,108.9000015258789,108.9000015258789,108.9000015258789,80.20938873291016,0,0.0,0.0,0.0
2024-07-25 00:00:00-04:00,108.08000183105469,108.08000183105469,108.08000183105469,108.08000183105469,79.60542297363281,0,0.0,0.0,0.0
2024-07-26 00:00:00-04:00,109.48999786376953,109.48999786376953,109.48999786376953,109.48999786376953,80.6439437866211,0,0.0,0.0,0.0
2024-07-29 00:00:00-04:00,108.7699966430664,108.7699966430664,108.7699966430664,108.7699966430664,80.11363983154297,0,0.0,0.0,0.0
2024-07-30 00:00:00-04:00,108.5,108.5,108.5,108.5,79.91476440429688,0,0.0,0.0,0.0
2024-07-31 00:00:00-04:00,111.08999633789062,111.08999633789062,111.08999633789062,111.08999633789062,81.8224105834961,0,0.0,0.0,0.0
2024-08-01 00:00:00-04:00,107.87999725341797,107.87999725341797,107.87999725341797,107.87999725341797,79.45811462402344,0,0.0,0.0,0.0
2024-08-02 00:00:00-04:00,105.83000183105469,105.83000183105469,105.83000183105469,105.83000183105469,77.94820404052734,0,0.0,0.0,0.0
2024-08-05 00:00:00-04:00,103.87000274658203,103.87000274658203,103.87000274658203,103.87000274658203,76.50458526611328,0,0.0,0.0,0.0
2024-08-06 00:00:00-04:00,104.76000213623047,104.76000213623047,104.76000213623047,104.76000213623047,77.16010284423828,0,0.0,0.0,0.0
2024-08-07 00:00:00-04:00,105.19999694824219,105.19999694824219,105.19999694824219,105.19999694824219,77.48418426513672,0,0.0,0.0,0.0
2024-08-08 00:00:00-04:00,107.9000015258789,107.9000015258789,107.9000015258789,107.9000015258789,79.47284698486328,0,0.0,0.0,0.0
2024-08-09 00:00:00-04:00,108.18000030517578,108.18000030517578,108.18000030517578,108.18000030517578,79.6790771484375,0,0.0,0.0,0.0
2024-08-12 00:00:00-04:00,108.06999969482422,108.06999969482422,108.06999969482422,108.06999969482422,79.59805297851562,0,0.0,0.0,0.0
2024-08-13 00:00:00-04:00,109.9000015258789,109.9000015258789,109.9000015258789,109.9000015258789,80.94593048095703,0,0.0,0.0,0.0
2024-08-14 00:00:00-04:00,109.77999877929688,109.77999877929688,109.77999877929688,109.77999877929688,80.85753631591797,0,0.0,0.0,0.0
2024-08-15 00:00:00-04:00,112.30000305175781,112.30000305175781,112.30000305175781,112.30000305175781,82.71363067626953,0,0.0,0.0,0.0
2024-08-16 00:00:00-04:00,113.0,113.0,113.0,113.0,83.22920989990234,0,0.0,0.0,0.0
2024-08-19 00:00:00-04:00,114.83000183105469,114.83000183105469,114.83000183105469,114.83000183105469,84.57707977294922,0,0.0,0.0,0.0
2024-08-20 00:00:00-04:00,113.83000183105469,113.83000183105469,113.83000183105469,113.83000183105469,83.84053802490234,0,0.0,0.0,0.0
2024-08-21 00:00:00-04:00,114.95999908447266,114.95999908447266,114.95999908447266,114.95999908447266,84.6728286743164,0,0.0,0.0,0.0
2024-08-22 00:00:00-04:00,113.81999969482422,113.81999969482422,113.81999969482422,113.81999969482422,83.83316802978516,0,0.0,0.0,0.0
2024-08-23 00:00:00-04:00,115.13999938964844,115.13999938964844,115.13999938964844,115.13999938964844,84.80541229248047,0,0.0,0.0,0.0
2024-08-26 00:00:00-04:00,113.62999725341797,113.62999725341797,113.62999725341797,113.62999725341797,83.69322204589844,0,0.0,0.0,0.0
2024-08-27 00:00:00-04:00,113.97000122070312,113.97000122070312,113.97000122070312,113.97000122070312,83.94365692138672,0,0.0,0.0,0.0
2024-08-28 00:00:00-04:00,112.87999725341797,112.87999725341797,112.87999725341797,112.87999725341797,83.14081573486328,0,0.0,0.0,0.0
2024-08-29 00:00:00-04:00,113.62999725341797,113.62999725341797,113.62999725341797,113.62999725341797,83.69322204589844,0,0.0,0.0,0.0
2024-08-30 00:00:00-04:00,113.87000274658203,113.87000274658203,113.87000274658203,113.87000274658203,83.87000274658203,0,0.0,0.0,0.0
2024-09-03 00:00:00-04:00,110.93000030517578,110.93000030517578,110.93000030517578,110.93000030517578,81.7045669555664,0,0.0,0.0,0.0
2024-09-04 00:00:00-04:00,110.56999969482422,110.56999969482422,110.56999969482422,110.56999969482422,81.43940734863281,0,0.0,0.0,0.0
2024-09-05 00:00:00-04:00,110.69000244140625,110.69000244140625,110.69000244140625,110.69000244140625,81.52779388427734,0,0.0,0.0,0.0
2024-09-06 00:00:00-04:00,108.0999984741211,108.0999984741211,108.0999984741211,108.0999984741211,79.62015533447266,0,0.0,0.0,0.0
2024-09-09 00:00:00-04:00,109.61000061035156,109.61000061035156,109.61000061035156,109.61000061035156,80.73233032226562,0,0.0,0.0,0.0
2024-09-10 00:00:00-04:00,109.33000183105469,109.33000183105469,109.33000183105469,109.33000183105469,80.5261001586914,0,0.0,0.0,0.0
2024-09-11 00:00:00-04:00,111.06999969482422,111.06999969482422,111.06999969482422,111.06999969482422,81.80767822265625,0,0.0,0.0,0.0
2024-09-12 00:00:00-04:00,111.97000122070312,111.97000122070312,111.97000122070312,111.97000122070312,82.47056579589844,0,0.0,0.0,0.0
2024-09-13 00:00:00-04:00,112.31999969482422,112.31999969482422,112.31999969482422,112.31999969482422,82.72836303710938,0,0.0,0.0,0.0
2024-09-16 00:00:00-04:00,112.44999694824219,112.44999694824219,112.44999694824219,112.44999694824219,82.82410430908203,0,0.0,0.0,0.0
2024-09-17 00:00:00-04:00,112.6500015258789,112.6500015258789,112.6500015258789,112.6500015258789,82.97142028808594,0,0.0,0.0,0.0
2024-09-18 00:00:00-04:00,112.36000061035156,112.36000061035156,112.36000061035156,112.36000061035156,82.75782012939453,0,0.0,0.0,0.0
2024-09-19 00:00:00-04:00,115.37000274658203,115.37000274658203,115.37000274658203,115.37000274658203,84.97481536865234,0,0.0,0.0,0.0
2024-09-20 00:00:00-04:00,114.08999633789062,114.08999633789062,114.08999633789062,114.08999633789062,84.03203582763672,0,0.0,0.0,0.0
2024-09-23 00:00:00-04:00,114.58999633789062,114.58999633789062,114.58999633789062,114.58999633789062,84.40030670166016,0,0.0,0.0,0.0
2024-09-24 00:00:00-04:00,116.5199966430664,116.5199966430664,116.5199966430664,116.5199966430664,85.82183074951172,0,0.0,0.0,0.0
2024-09-25 00:00:00-04:00,116.19999694824219,116.19999694824219,116.19999694824219,116.19999694824219,85.58613586425781,0,0.0,0.0,0.0
2024-09-26 00:00:00-04:00,118.9800033569336,118.9800033569336,118.9800033569336,118.9800033569336,87.63372802734375,0,0.0,0.0,0.0
2024-09-27 00:00:00-04:00,118.51000213623047,118.51000213623047,118.51000213623047,118.51000213623047,87.28755950927734,0,0.0,0.0,0.0
2024-09-30 00:00:00-04:00,117.87000274658203,117.87000274658203,117.87000274658203,117.87000274658203,86.81616973876953,0,0.0,0.0,0.0
2024-10-01 00:00:00-04:00,117.5,117.5,117.5,117.5,86.54364776611328,0,0.0,0.0,0.0
2024-10-02 00:00:00-04:00,118.05000305175781,118.05000305175781,118.05000305175781,118.05000305175781,86.94874572753906,0,0.0,0.0,0.0
2024-10-03 00:00:00-04:00,117.2300033569336,117.2300033569336,117.2300033569336,117.2300033569336,86.34477996826172,0,0.0,0.0,0.0
2024-10-04 00:00:00-04:00,118.37999725341797,118.37999725341797,118.37999725341797,118.37999725341797,87.1917953491211,0,0.0,0.0,0.0
2024-10-07 00:00:00-04:00,118.18000030517578,118.18000030517578,118.18000030517578,118.18000030517578,87.04448699951172,0,0.0,0.0,0.0
2024-10-08 00:00:00-04:00,117.58999633789062,117.58999633789062,117.58999633789062,117.58999633789062,86.60992431640625,0,0.0,0.0,0.0
2024-10-09 00:00:00-04:00,118.0,118.0,118.0,118.0,86.91191864013672,0,0.0,0.0,0.0
2024-10-10 00:00:00-04:00,117.83000183105469,117.83000183105469,117.83000183105469,117.83000183105469,86.78670501708984,0,0.0,0.0,0.0
2024-10-11 00:00:00-04:00,118.66000366210938,118.66000366210938,118.66000366210938,118.66000366210938,87.39803314208984,0,0.0,0.0,0.0
2024-10-14 00:00:00-04:00,118.80000305175781,118.80000305175781,118.80000305175781,118.80000305175781,87.50115203857422,0,0.0,0.0,0.0
2024-10-15 00:00:00-04:00,115.36000061035156,115.36000061035156,115.36000061035156,115.36000061035156,84.96744537353516,0,0.0,0.0,0.0
2024-10-16 00:00:00-04:00,115.66000366210938,115.66000366210938,115.66000366210938,115.66000366210938,85.18840789794922,0,0.0,0.0,0.0
2024-10-17 00:00:00-04:00,115.83999633789062,115.83999633789062,115.83999633789062,115.83999633789062,85.32098388671875,0,0.0,0.0,0.0
2024-10-18 00:00:00-04:00,117.30000305175781,117.30000305175781,117.30000305175781,117.30000305175781,86.3963394165039,0,0.0,0.0,0.0
2024-10-21 00:00:00-04:00,116.56999969482422,116.56999969482422,116.56999969482422,116.56999969482422,85.85865783691406,0,0.0,0.0,0.0
2024-10-22 00:00:00-04:00,116.37000274658203,116.37000274658203,116.37000274658203,116.37000274658203,85.71135711669922,0,0.0,0.0,0.0
2024-10-23 00:00:00-04:00,115.43000030517578,115.43000030517578,115.43000030517578,115.43000030517578,85.01900482177734,0,0.0,0.0,0.0
2024-10-24 00:00:00-04:00,115.83000183105469,115.83000183105469,115.83000183105469,115.83000183105469,85.3136215209961,0,0.0,0.0,0.0
2024-10-25 00:00:00-04:00,116.0,116.0,116.0,116.0,85.43883514404297,0,0.0,0.0,0.0
2024-10-28 00:00:00-04:00,116.66999816894531,116.66999816894531,116.66999816894531,116.66999816894531,85.93231201171875,0,0.0,0.0,0.0
2024-10-29 00:00:00-04:00,116.73999786376953,116.73999786376953,116.73999786376953,116.73999786376953,85.98387145996094,0,0.0,0.0,0.0
2024-10-30 00:00:00-04:00,115.72000122070312,115.72000122070312,115.72000122070312,115.72000122070312,85.23259735107422,0,0.0,0.0,0.0
2024-10-31 00:00:00-04:00,114.5199966430664,114.5199966430664,114.5199966430664,114.5199966430664,84.34874725341797,0,0.0,0.0,0.0
2024-11-01 00:00:00-04:00,115.12999725341797,115.12999725341797,115.12999725341797,115.12999725341797,84.79803466796875,0,0.0,0.0,0.0
2024-11-04 00:00:00-05:00,115.18000030517578,115.18000030517578,115.18000030517578,115.18000030517578,84.83486938476562,0,0.0,0.0,0.0
2024-11-05 00:00:00-05:00,116.44999694824219,116.44999694824219,116.44999694824219,116.44999694824219,85.77027130126953,0,0.0,0.0,0.0
2024-11-06 00:00:00-05:00,115.25,115.25,115.25,115.25,84.88642883300781,0,0.0,0.0,0.0
2024-11-07 00:00:00-05:00,116.37000274658203,116.37000274658203,116.37000274658203,116.37000274658203,85.71135711669922,0,0.0,0.0,0.0
2024-11-08 00:00:00-05:00,114.83000183105469,114.83000183105469,114.83000183105469,114.83000183105469,84.57707977294922,0,0.0,0.0,0.0
2024-11-11 00:00:00-05:00,115.4800033569336,115.4800033569336,115.4800033569336,115.4800033569336,85.05583190917969,0,0.0,0.0,0.0
2024-11-12 00:00:00-05:00,114.48999786376953,114.48999786376953,114.48999786376953,114.48999786376953,84.32665252685547,0,0.0,0.0,0.0
2024-11-13 00:00:00-05:00,114.61000061035156,114.61000061035156,114.61000061035156,114.61000061035156,84.4150390625,0,0.0,0.0,0.0
2024-11-14 00:00:00-05:00,114.18000030517578,114.18000030517578,114.18000030517578,114.18000030517578,84.09832763671875,0,0.0,0.0,0.0
2024-11-15 00:00:00-05:00,112.25,112.25,112.25,112.25,82.67680358886719,0,0.0,0.0,0.0
2024-11-18 00:00:00-05:00,112.87999725341797,112.87999725341797,112.87999725341797,112.87999725341797,83.14081573486328,0,0.0,0.0,0.0
2024-11-19 00:00:00-05:00,113.29000091552734,113.29000091552734,113.29000091552734,113.29000091552734,83.44280242919922,0,0.0,0.0,0.0
2024-11-20 00:00:00-05:00,113.37999725341797,113.37999725341797,113.37999725341797,113.37999725341797,83.50909423828125,0,0.0,0.0,0.0
2024-11-21 00:00:00-05:00,113.70999908447266,113.70999908447266,113.70999908447266,113.70999908447266,83.75215148925781,0,0.0,0.0,0.0
2024-11-22 00:00:00-05:00,114.16000366210938,114.16000366210938,114.16000366210938,114.16000366210938,84.0835952758789,0,0.0,0.0,0.0
2024-11-25 00:00:00-05:00,115.16000366210938,115.16000366210938,115.16000366210938,115.16000366210938,84.82013702392578,0,0.0,0.0,0.0
2024-11-26 00:00:00-05:00,114.76000213623047,114.76000213623047,114.76000213623047,114.76000213623047,84.52552032470703,0,0.0,0.0,0.0
2024-11-27 00:00:00-05:00,114.97000122070312,114.97000122070312,114.97000122070312,114.97000122070312,84.68019104003906,0,0.0,0.0,0.0
2024-11-29 00:00:00-05:00,115.33999633789062,115.33999633789062,115.33999633789062,115.33999633789062,84.95271301269531,0,0.0,0.0,0.0
2024-12-02 00:00:00-05:00,116.04000091552734,116.04000091552734,116.04000091552734,116.04000091552734,85.46829223632812,0,0.0,0.0,0.0
2024-12-03 00:00:00-05:00,116.11000061035156,116.11000061035156,116.11000061035156,116.11000061035156,85.51985168457031,0,0.0,0.0,0.0
2024-12-04 00:00:00-05:00,117.16000366210938,117.16000366210938,117.16000366210938,117.16000366210938,86.29322052001953,0,0.0,0.0,0.0
2024-12-05 00:00:00-05:00,117.36000061035156,117.36000061035156,117.36000061035156,117.36000061035156,86.4405288696289,0,0.0,0.0,0.0
2024-12-06 00:00:00-05:00,117.77999877929688,117.77999877929688,117.77999877929688,117.77999877929688,86.7498779296875,0,0.0,0.0,0.0
2024-12-09 00:00:00-05:00,117.75,117.75,117.75,117.75,86.72777557373047,0,0.0,0.0,0.0
2024-12-10 00:00:00-05:00,116.05999755859375,116.05999755859375,116.05999755859375,116.05999755859375,85.48302459716797,0,0.0,0.0,0.0
2024-12-11 00:00:00-05:00,117.06999969482422,117.06999969482422,117.06999969482422,117.06999969482422,86.22693634033203,0,0.0,0.0,0.0
2024-12-12 00:00:00-05:00,116.62000274658203,116.62000274658203,116.62000274658203,116.62000274658203,85.8954849243164,0,0.0,0.0,0.0
2024-12-13 00:00:00-05:00,116.26000213623047,116.26000213623047,116.26000213623047,116.26000213623047,85.63033294677734,0,0.0,0.0,0.0
2024-12-16 00:00:00-05:00,115.83000183105469,115.83000183105469,115.83000183105469,115.83000183105469,85.3136215209961,0,0.0,0.0,0.0
2024-12-17 00:00:00-05:00,115.58999633789062,115.58999633789062,115.58999633789062,115.58999633789062,85.13684844970703,0,0.0,0.0,0.0
2024-12-18 00:00:00-05:00,102.33000183105469,102.33000183105469,102.33000183105469,102.33000183105469,90.1654281616211,0,9.968,0.0,8.999
2024-12-19 00:00:00-05:00,102.04000091552734,102.04000091552734,102.04000091552734,102.04000091552734,89.90990447998047,0,0.0,0.0,0.0
2024-12-20 00:00:00-05:00,102.33000183105469,102.33000183105469,102.33000183105469,102.33000183105469,90.1654281616211,0,0.0,0.0,0.0
2024-12-23 00:00:00-05:00,103.13999938964844,103.13999938964844,103.13999938964844,103.13999938964844,90.87913513183594,0,0.0,0.0,0.0
2024-12-24 00:00:00-05:00,103.58999633789062,103.58999633789062,103.58999633789062,103.58999633789062,91.27564239501953,0,0.0,0.0,0.0
2024-12-26 00:00:00-05:00,103.41000366210938,103.41000366210938,103.41000366210938,103.41000366210938,91.1170425415039,0,0.0,0.0,0.0
2024-12-27 00:00:00-05:00,102.8499984741211,102.8499984741211,102.8499984741211,102.8499984741211,90.62361145019531,0,0.0,0.0,0.0
2024-12-30 00:00:00-05:00,101.94999694824219,101.94999694824219,101.94999694824219,101.94999694824219,89.83059692382812,0,0.0,0.0,0.0
2024-12-31 00:00:00-05:00,101.56999969482422,101.56999969482422,101.56999969482422,101.56999969482422,89.49577331542969,0,0.0,0.0,0.0
2025-01-02 00:00:00-05:00,101.69999694824219,101.69999694824219,101.69999694824219,101.69999694824219,89.61031341552734,0,0.0,0.0,0.0
2025-01-03 00:00:00-05:00,102.97000122070312,102.97000122070312,102.97000122070312,102.97000122070312,90.7293472290039,0,0.0,0.0,0.0
2025-01-06 00:00:00-05:00,104.37000274658203,104.37000274658203,104.37000274658203,104.37000274658203,91.96292114257812,0,0.0,0.0,0.0
2025-01-07 00:00:00-05:00,103.62000274658203,103.62000274658203,103.62000274658203,103.62000274658203,91.30207824707031,0,0.0,0.0,0.0
2025-01-08 00:00:00-05:00,103.38999938964844,103.38999938964844,103.38999938964844,103.38999938964844,91.09941864013672,0,0.0,0.0,0.0
2025-01-10 00:00:00-05:00,101.86000061035156,101.86000061035156,101.86000061035156,101.86000061035156,89.75129699707031,0,0.0,0.0,0.0
2025-01-13 00:00:00-05:00,100.91999816894531,100.91999816894531,100.91999816894531,100.91999816894531,88.92304229736328,0,0.0,0.0,0.0
2025-01-14 00:00:00-05:00,101.69000244140625,101.69000244140625,101.69000244140625,101.69000244140625,89.60150909423828,0,0.0,0.0,0.0
2025-01-15 00:00:00-05:00,103.26000213623047,103.26000213623047,103.26000213623047,103.26000213623047,90.98487091064453,0,0.0,0.0,0.0
2025-01-16 00:00:00-05:00,103.8499984741211,103.8499984741211,103.8499984741211,103.8499984741211,91.5047378540039,0,0.0,0.0,0.0
2025-01-17 00:00:00-05:00,104.31999969482422,104.31999969482422,104.31999969482422,104.31999969482422,91.91886138916016,0,0.0,0.0,0.0
2025-01-21 00:00:00-05:00,105.91999816894531,105.91999816894531,105.91999816894531,105.91999816894531,93.32865905761719,0,0.0,0.0,0.0
2025-01-22 00:00:00-05:00,106.37000274658203,106.37000274658203,106.37000274658203,106.37000274658203,93.72517395019531,0,0.0,0.0,0.0
2025-01-23 00:00:00-05:00,106.80000305175781,106.80000305175781,106.80000305175781,106.80000305175781,94.10405731201172,0,0.0,0.0,0.0
2025-01-24 00:00:00-05:00,107.51000213623047,107.51000213623047,107.51000213623047,107.51000213623047,94.72965240478516,0,0.0,0.0,0.0
2025-01-27 00:00:00-05:00,105.81999969482422,105.81999969482422,105.81999969482422,105.81999969482422,93.24054718017578,0,0.0,0.0,0.0
2025-01-28 00:00:00-05:00,107.05000305175781,107.05000305175781,107.05000305175781,107.05000305175781,94.32433319091797,0,0.0,0.0,0.0
2025-01-29 00:00:00-05:00,106.91999816894531,106.91999816894531,106.91999816894531,106.91999816894531,94.20978546142578,0,0.0,0.0,0.0
2025-01-30 00:00:00-05:00,108.61000061035156,108.61000061035156,108.61000061035156,108.61000061035156,95.69888305664062,0,0.0,0.0,0.0
2025-01-31 00:00:00-05:00,107.5,107.5,107.5,107.5,94.72084045410156,0,0.0,0.0,0.0
2025-02-03 00:00:00-05:00,106.0999984741211,106.0999984741211,106.0999984741211,106.0999984741211,93.48726654052734,0,0.0,0.0,0.0
2025-02-04 00:00:00-05:00,108.76000213623047,108.76000213623047,108.76000213623047,108.76000213623047,95.8310546875,0,0.0,0.0,0.0
2025-02-05 00:00:00-05:00,109.66000366210938,109.66000366210938,109.66000366210938,109.66000366210938,96.62406921386719,0,0.0,0.0,0.0
2025-02-06 00:00:00-05:00,109.97000122070312,109.97000122070312,109.97000122070312,109.97000122070312,96.897216796875,0,0.0,0.0,0.0
2025-02-07 00:00:00-05:00,109.0999984741211,109.0999984741211,109.0999984741211,109.0999984741211,96.1306381225586,0,0.0,0.0,0.0
2025-02-10 00:00:00-05:00,110.18000030517578,110.18000030517578,110.18000030517578,110.18000030517578,97.0822525024414,0,0.0,0.0,0.0
2025-02-11 00:00:00-05:00,110.38999938964844,110.38999938964844,110.38999938964844,110.38999938964844,97.26728820800781,0,0.0,0.0,0.0
2025-02-12 00:00:00-05:00,110.69999694824219,110.69999694824219,110.69999694824219,110.69999694824219,97.54043579101562,0,0.0,0.0,0.0
2025-02-13 00:00:00-05:00,112.79000091552734,112.79000091552734,112.79000091552734,112.79000091552734,99.38198852539062,0,0.0,0.0,0.0
2025-02-14 00:00:00-05:00,113.30000305175781,113.30000305175781,113.30000305175781,113.30000305175781,99.83135986328125,0,0.0,0.0,0.0
2025-02-18 00:00:00-05:00,114.2300033569336,114.2300033569336,114.2300033569336,114.2300033569336,100.65081024169922,0,0.0,0.0,0.0
2025-02-19 00:00:00-05:00,113.2300033569336,113.2300033569336,113.2300033569336,113.2300033569336,99.76968383789062,0,0.0,0.0,0.0
2025-02-20 00:00:00-05:00,113.4000015258789,113.4000015258789,113.4000015258789,113.4000015258789,99.91947174072266,0,0.0,0.0,0.0
2025-02-21 00:00:00-05:00,112.25,112.25,112.25,112.25,98.90618133544922,0,0.0,0.0,0.0
2025-02-24 00:00:00-05:00,110.66000366210938,110.66000366210938,110.66000366210938,110.66000366210938,97.50519561767578,0,0.0,0.0,0.0
2025-02-25 00:00:00-05:00,110.33999633789062,110.33999633789062,110.33999633789062,110.33999633789062,97.22322845458984,0,0.0,0.0,0.0
2025-02-26 00:00:00-05:00,111.33999633789062,111.33999633789062,111.33999633789062,111.33999633789062,98.10435485839844,0,0.0,0.0,0.0
2025-02-27 00:00:00-05:00,108.76000213623047,108.76000213623047,108.76000213623047,108.76000213623047,95.8310546875,0,0.0,0.0,0.0
2025-02-28 00:00:00-05:00,108.94999694824219,108.94999694824219,108.94999694824219,108.94999694824219,95.99846649169922,0,0.0,0.0,0.0
2025-03-03 00:00:00-05:00,107.4000015258789,107.4000015258789,107.4000015258789,107.4000015258789,94.63272857666016,0,0.0,0.0,0.0
2025-03-04 00:00:00-05:00,107.58999633789062,107.58999633789062,107.58999633789062,107.58999633789062,94.80013275146484,0,0.0,0.0,0.0
2025-03-05 00:00:00-05:00,110.94999694824219,110.94999694824219,110.94999694824219,110.94999694824219,97.76071166992188,0,0.0,0.0,0.0
2025-03-06 00:00:00-05:00,108.37000274658203,108.37000274658203,108.37000274658203,108.37000274658203,95.48741912841797,0,0.0,0.0,0.0
2025-03-07 00:00:00-05:00,108.62000274658203,108.62000274658203,108.62000274658203,108.62000274658203,95.70770263671875,0,0.0,0.0,0.0
2025-03-10 00:00:00-04:00,104.45999908447266,104.45999908447266,104.45999908447266,104.45999908447266,92.04222106933594,0,0.0,0.0,0.0
2025-03-11 00:00:00-04:00,105.0,105.0,105.0,105.0,92.51802825927734,0,0.0,0.0,0.0
2025-03-12 00:00:00-04:00,106.22000122070312,106.22000122070312,106.22000122070312,106.22000122070312,93.59300231933594,0,0.0,0.0,0.0
2025-03-13 00:00:00-04:00,104.9800033569336,104.9800033569336,104.9800033569336,104.9800033569336,92.50041198730469,0,0.0,0.0,0.0
2025-03-14 00:00:00-04:00,107.80999755859375,107.80999755859375,107.80999755859375,107.80999755859375,94.99398803710938,0,0.0,0.0,0.0
2025-03-17 00:00:00-04:00,109.62000274658203,109.62000274658203,109.62000274658203,109.62000274658203,96.58882141113281,0,0.0,0.0,0.0
2025-03-18 00:00:00-04:00,108.58999633789062,108.58999633789062,108.58999633789062,108.58999633789062,95.68125915527344,0,0.0,0.0,0.0
2025-03-19 00:00:00-04:00,109.5,109.5,109.5,109.5,96.48308563232422,0,0.0,0.0,0.0
2025-03-20 00:00:00-04:00,109.02999877929688,109.02999877929688,109.02999877929688,109.02999877929688,96.06895446777344,0,0.0,0.0,0.0
2025-03-21 00:00:00-04:00,108.02999877929688,108.02999877929688,108.02999877929688,108.02999877929688,95.18783569335938,0,0.0,0.0,0.0
2025-03-24 00:00:00-04:00,108.68000030517578,108.68000030517578,108.68000030517578,108.68000030517578,95.76056671142578,0,0.0,0.0,0.0
2025-03-25 00:00:00-04:00,108.68000030517578,108.68000030517578,108.68000030517578,108.68000030517578,95.76056671142578,0,0.0,0.0,0.0
2025-03-26 00:00:00-04:00,106.26000213623047,106.26000213623047,106.26000213623047,106.26000213623047,93.62825012207031,0,0.0,0.0,0.0
2025-03-27 00:00:00-04:00,106.6500015258789,106.6500015258789,106.6500015258789,106.6500015258789,93.97188568115234,0,0.0,0.0,0.0
2025-03-28 00:00:00-04:00,104.55999755859375,104.55999755859375,104.55999755859375,104.55999755859375,92.13033294677734,0,0.0,0.0,0.0
2025-03-31 00:00:00-04:00,103.01000213623047,103.01000213623047,103.01000213623047,103.01000213623047,90.76459503173828,0,0.0,0.0,0.0
2025-04-01 00:00:00-04:00,103.12999725341797,103.12999725341797,103.12999725341797,103.12999725341797,90.87032318115234,0,0.0,0.0,0.0
2025-04-02 00:00:00-04:00,103.81999969482422,103.81999969482422,103.81999969482422,103.81999969482422,91.47830200195312,0,0.0,0.0,0.0
2025-04-03 00:00:00-04:00,100.05999755859375,100.05999755859375,100.05999755859375,100.05999755859375,88.16527557373047,0,0.0,0.0,0.0
2025-04-04 00:00:00-04:00,93.5199966430664,93.5199966430664,93.5199966430664,93.5199966430664,82.40271759033203,0,0.0,0.0,0.0
2025-04-07 00:00:00-04:00,92.19999694824219,92.19999694824219,92.19999694824219,92.19999694824219,81.23963928222656,0,0.0,0.0,0.0
2025-04-08 00:00:00-04:00,91.36000061035156,91.36000061035156,91.36000061035156,91.36000061035156,80.49949645996094,0,0.0,0.0,0.0
2025-04-09 00:00:00-04:00,99.08000183105469,99.08000183105469,99.08000183105469,99.08000183105469,87.30177307128906,0,0.0,0.0,0.0
2025-04-10 00:00:00-04:00,96.3499984741211,96.3499984741211,96.3499984741211,96.3499984741211,84.89630126953125,0,0.0,0.0,0.0
2025-04-11 00:00:00-04:00,98.94000244140625,98.94000244140625,98.94000244140625,98.94000244140625,87.17842102050781,0,0.0,0.0,0.0
2025-04-14 00:00:00-04:00,99.91999816894531,99.91999816894531,99.91999816894531,99.91999816894531,88.04191589355469,0,0.0,0.0,0.0
2025-04-15 00:00:00-04:00,100.8499984741211,100.8499984741211,100.8499984741211,100.8499984741211,88.86135864257812,0,0.0,0.0,0.0
2025-04-16 00:00:00-04:00,98.98999786376953,98.98999786376953,98.98999786376953,98.98999786376953,87.22247314453125,0,0.0,0.0,0.0
2025-04-17 00:00:00-04:00,99.69000244140625,99.69000244140625,99.69000244140625,99.69000244140625,87.83926391601562,0,0.0,0.0,0.0
2025-04-21 00:00:00-04:00,98.72000122070312,98.72000122070312,98.72000122070312,98.72000122070312,86.98457336425781,0,0.0,0.0,0.0
2025-04-22 00:00:00-04:00,100.7699966430664,100.7699966430664,100.7699966430664,100.7699966430664,88.7908706665039,0,0.0,0.0,0.0
2025-04-23 00:00:00-04:00,102.27999877929688,102.27999877929688,102.27999877929688,102.27999877929688,90.12136840820312,0,0.0,0.0,0.0
2025-04-24 00:00:00-04:00,104.54000091552734,104.54000091552734,104.54000091552734,104.54000091552734,92.11270904541016,0,0.0,0.0,0.0
2025-04-25 00:00:00-04:00,105.2699966430664,105.2699966430664,105.2699966430664,105.2699966430664,92.75592803955078,0,0.0,0.0,0.0
2025-04-28 00:00:00-04:00,105.1500015258789,105.1500015258789,105.1500015258789,105.1500015258789,92.65019989013672,0,0.0,0.0,0.0
2025-04-29 00:00:00-04:00,105.36000061035156,105.36000061035156,105.36000061035156,105.36000061035156,92.83523559570312,0,0.0,0.0,0.0
2025-04-30 00:00:00-04:00,106.04000091552734,106.04000091552734,106.04000091552734,106.04000091552734,93.43439483642578,0,0.0,0.0,0.0
2025-05-01 00:00:00-04:00,106.0199966430664,106.0199966430664,106.0199966430664,106.0199966430664,93.4167709350586,0,0.0,0.0,0.0
2025-05-02 00:00:00-04:00,108.80999755859375,108.80999755859375,108.80999755859375,108.80999755859375,95.87510681152344,0,0.0,0.0,0.0
2025-05-05 00:00:00-04:00,108.61000061035156,108.61000061035156,108.61000061035156,108.61000061035156,95.69888305664062,0,0.0,0.0,0.0
2025-05-06 00:00:00-04:00,108.25,108.25,108.25,108.25,95.38168334960938,0,0.0,0.0,0.0
2025-05-07 00:00:00-04:00,108.25,108.25,108.25,108.25,95.38168334960938,0,0.0,0.0,0.0
2025-05-08 00:00:00-04:00,108.76000213623047,108.76000213623047,108.76000213623047,108.76000213623047,95.8310546875,0,0.0,0.0,0.0
2025-05-09 00:00:00-04:00,109.13999938964844,109.13999938964844,109.13999938964844,109.13999938964844,96.16587829589844,0,0.0,0.0,0.0
2025-05-12 00:00:00-04:00,111.88999938964844,111.88999938964844,111.88999938964844,111.88999938964844,98.58897399902344,0,0.0,0.0,0.0
2025-05-13 00:00:00-04:00,112.69999694824219,112.69999694824219,112.69999694824219,112.69999694824219,99.30268096923828,0,0.0,0.0,0.0
2025-05-14 00:00:00-04:00,113.33000183105469,113.33000183105469,113.33000183105469,113.33000183105469,99.85779571533203,0,0.0,0.0,0.0
2025-05-15 00:00:00-04:00,113.8499984741211,113.8499984741211,113.8499984741211,113.8499984741211,100.31597137451172,0,0.0,0.0,0.0
2025-05-16 00:00:00-04:00,114.13999938964844,114.13999938964844,114.13999938964844,114.13999938964844,100.57150268554688,0,0.0,0.0,0.0
2025-05-19 00:00:00-04:00,114.77999877929688,114.77999877929688,114.77999877929688,114.77999877929688,101.13542175292969,0,0.0,0.0,0.0
2025-05-20 00:00:00-04:00,114.86000061035156,114.86000061035156,114.86000061035156,114.86000061035156,101.2059097290039,0,0.0,0.0,0.0
2025-05-21 00:00:00-04:00,113.80999755859375,113.80999755859375,113.80999755859375,113.80999755859375,100.28073120117188,0,0.0,0.0,0.0
2025-05-22 00:00:00-04:00,113.7300033569336,113.7300033569336,113.7300033569336,113.7300033569336,100.21024322509766,0,0.0,0.0,0.0
2025-05-23 00:00:00-04:00,113.33000183105469,113.33000183105469,113.33000183105469,113.33000183105469,99.85779571533203,0,0.0,0.0,0.0
2025-05-27 00:00:00-04:00,114.27999877929688,114.27999877929688,114.27999877929688,114.27999877929688,100.69486236572266,0,0.0,0.0,0.0
2025-05-28 00:00:00-04:00,113.06999969482422,113.06999969482422,113.06999969482422,113.06999969482422,99.62870025634766,0,0.0,0.0,0.0
2025-05-29 00:00:00-04:00,113.47000122070312,113.47000122070312,113.47000122070312,113.47000122070312,99.98114776611328,0,0.0,0.0,0.0
2025-05-30 00:00:00-04:00,113.27999877929688,113.27999877929688,113.27999877929688,113.27999877929688,99.81373596191406,0,0.0,0.0,0.0
2025-06-02 00:00:00-04:00,114.18000030517578,114.18000030517578,114.18000030517578,114.18000030517578,100.60675048828125,0,0.0,0.0,0.0
2025-06-03 00:00:00-04:00,113.86000061035156,113.86000061035156,113.86000061035156,113.86000061035156,100.32479095458984,0,0.0,0.0,0.0
2025-06-04 00:00:00-04:00,114.94000244140625,114.94000244140625,114.94000244140625,114.94000244140625,101.27640533447266,0,0.0,0.0,0.0
2025-06-05 00:00:00-04:00,115.33999633789062,115.33999633789062,115.33999633789062,115.33999633789062,101.62884521484375,0,0.0,0.0,0.0
2025-06-06 00:00:00-04:00,115.56999969482422,115.56999969482422,115.56999969482422,115.56999969482422,101.83151245117188,0,0.0,0.0,0.0
2025-06-09 00:00:00-04:00,115.52999877929688,115.52999877929688,115.52999877929688,115.52999877929688,101.7962646484375,0,0.0,0.0,0.0
2025-06-10 00:00:00-04:00,116.08999633789062,116.08999633789062,116.08999633789062,116.08999633789062,102.28968811035156,0,0.0,0.0,0.0
2025-06-11 00:00:00-04:00,116.18000030517578,116.18000030517578,116.18000030517578,116.18000030517578,102.3689956665039,0,0.0,0.0,0.0
2025-06-12 00:00:00-04:00,116.30999755859375,116.30999755859375,116.30999755859375,116.30999755859375,102.48353576660156,0,0.0,0.0,0.0
2025-06-13 00:00:00-04:00,114.26000213623047,114.26000213623047,114.26000213623047,114.26000213623047,100.67723846435547,0,0.0,0.0,0.0
2025-06-16 00:00:00-04:00,115.30999755859375,115.30999755859375,115.30999755859375,115.30999755859375,101.6024169921875,0,0.0,0.0,0.0
2025-06-17 00:00:00-04:00,113.86000061035156,113.86000061035156,113.86000061035156,113.86000061035156,100.32479095458984,0,0.0,0.0,0.0
2025-06-18 00:00:00-04:00,113.66000366210938,113.66000366210938,113.66000366210938,113.66000366210938,100.14856719970703,0,0.0,0.0,0.0
2025-06-20 00:00:00-04:00,112.68000030517578,112.68000030517578,112.68000030517578,112.68000030517578,99.28506469726562,0,0.0,0.0,0.0
2025-06-23 00:00:00-04:00,113.69999694824219,113.69999694824219,113.69999694824219,113.69999694824219,100.18380737304688,0,0.0,0.0,0.0
2025-06-24 00:00:00-04:00,113.69999694824219,113.69999694824219,113.69999694824219,113.69999694824219,100.18380737304688,0,0.0,0.0,0.0
2025-06-25 00:00:00-04:00,116.13999938964844,116.13999938964844,116.13999938964844,116.13999938964844,102.33374786376953,0,0.0,0.0,0.0
2025-06-26 00:00:00-04:00,117.06999969482422,117.06999969482422,117.06999969482422,117.06999969482422,103.1531982421875,0,0.0,0.0,0.0
2025-06-27 00:00:00-04:00,118.05999755859375,118.05999755859375,118.05999755859375,118.05999755859375,104.02550506591797,0,0.0,0.0,0.0
2025-06-30 00:00:00-04:00,117.91999816894531,117.91999816894531,117.91999816894531,117.91999816894531,103.90215301513672,0,0.0,0.0,0.0
2025-07-01 00:00:00-04:00,116.98999786376953,116.98999786376953,116.98999786376953,116.98999786376953,103.08270263671875,0,0.0,0.0,0.0
2025-07-02 00:00:00-04:00,117.44999694824219,117.44999694824219,117.44999694824219,117.44999694824219,103.48802185058594,0,0.0,0.0,0.0
2025-07-03 00:00:00-04:00,117.77999877929688,117.77999877929688,117.77999877929688,117.77999877929688,103.77879333496094,0,0.0,0.0,0.0
2025-07-07 00:00:00-04:00,116.8499984741211,116.8499984741211,116.8499984741211,116.8499984741211,102.9593505859375,0,0.0,0.0,0.0
2025-07-08 00:00:00-04:00,117.62999725341797,117.62999725341797,117.62999725341797,117.62999725341797,103.64662170410156,0,0.0,0.0,0.0
2025-07-09 00:00:00-04:00,118.20999908447266,118.20999908447266,118.20999908447266,118.20999908447266,104.15767669677734,0,0.0,0.0,0.0
2025-07-10 00:00:00-04:00,117.73999786376953,117.73999786376953,117.73999786376953,117.73999786376953,103.74354553222656,0,0.0,0.0,0.0
2025-07-11 00:00:00-04:00,116.75,116.75,116.75,116.75,102.8712387084961,0,0.0,0.0,0.0
2025-07-14 00:00:00-04:00,116.77999877929688,116.77999877929688,116.77999877929688,116.77999877929688,102.89766693115234,0,0.0,0.0,0.0
2025-07-15 00:00:00-04:00,117.12000274658203,117.12000274658203,117.12000274658203,117.12000274658203,103.19725799560547,0,0.0,0.0,0.0
2025-07-16 00:00:00-04:00,117.43000030517578,117.43000030517578,117.43000030517578,117.43000030517578,103.47039794921875,0,0.0,0.0,0.0
2025-07-17 00:00:00-04:00,118.22000122070312,118.22000122070312,118.22000122070312,118.22000122070312,104.16648864746094,0,0.0,0.0,0.0
2025-07-18 00:00:00-04:00,117.61000061035156,117.61000061035156,117.61000061035156,117.61000061035156,103.6290054321289,0,0.0,0.0,0.0
2025-07-21 00:00:00-04:00,117.69999694824219,117.69999694824219,117.69999694824219,117.69999694824219,103.70829772949219,0,0.0,0.0,0.0
2025-07-22 00:00:00-04:00,117.69999694824219,117.69999694824219,117.69999694824219,117.69999694824219,103.70829772949219,0,0.0,0.0,0.0
2025-07-23 00:00:00-04:00,119.86000061035156,119.86000061035156,119.86000061035156,119.86000061035156,105.61153411865234,0,0.0,0.0,0.0
2025-07-24 00:00:00-04:00,119.44999694824219,119.44999694824219,119.44999694824219,119.44999694824219,105.2502670288086,0,0.0,0.0,0.0
2025-07-25 00:00:00-04:00,119.55999755859375,119.55999755859375,119.55999755859375,119.55999755859375,105.3471908569336,0,0.0,0.0,0.0
2025-07-28 00:00:00-04:00,118.44999694824219,118.44999694824219,118.44999694824219,118.44999694824219,104.36914825439453,0,0.0,0.0,0.0
2025-07-29 00:00:00-04:00,117.30999755859375,117.30999755859375,117.30999755859375,117.30999755859375,103.36466217041016,0,0.0,0.0,0.0
2025-07-30 00:00:00-04:00,115.87999725341797,115.87999725341797,115.87999725341797,115.87999725341797,102.10465240478516,0,0.0,0.0,0.0
2025-07-31 00:00:00-04:00,114.08999633789062,114.08999633789062,114.08999633789062,114.08999633789062,100.5274429321289,0,0.0,0.0,0.0
2025-08-01 00:00:00-04:00,113.19999694824219,113.19999694824219,113.19999694824219,113.19999694824219,99.74324035644531,0,0.0,0.0,0.0
2025-08-04 00:00:00-04:00,114.83999633789062,114.83999633789062,114.83999633789062,114.83999633789062,101.18828582763672,0,0.0,0.0,0.0
2025-08-05 00:00:00-04:00,114.33000183105469,114.33000183105469,114.33000183105469,114.33000183105469,100.7389144897461,0,0.0,0.0,0.0
2025-08-06 00:00:00-04:00,114.51000213623047,114.51000213623047,114.51000213623047,114.51000213623047,100.89752197265625,0,0.0,0.0,0.0
2025-08-07 00:00:00-04:00,116.08000183105469,116.08000183105469,116.08000183105469,116.08000183105469,102.2808837890625,0,0.0,0.0,0.0
2025-08-08 00:00:00-04:00,116.37000274658203,116.37000274658203,116.37000274658203,116.37000274658203,102.53641510009766,0,0.0,0.0,0.0
2025-08-11 00:00:00-04:00,115.36000061035156,115.36000061035156,115.36000061035156,115.36000061035156,101.64647674560547,0,0.0,0.0,0.0
2025-08-12 00:00:00-04:00,117.69999694824219,117.69999694824219,117.69999694824219,117.69999694824219,103.70829772949219,0,0.0,0.0,0.0
2025-08-13 00:00:00-04:00,118.58000183105469,118.58000183105469,118.58000183105469,118.58000183105469,104.48369598388672,0,0.0,0.0,0.0
2025-08-14 00:00:00-04:00,117.86000061035156,117.86000061035156,117.86000061035156,117.86000061035156,103.84928131103516,0,0.0,0.0,0.0
2025-08-15 00:00:00-04:00,118.9000015258789,118.9000015258789,118.9000015258789,118.9000015258789,104.76565551757812,0,0.0,0.0,0.0
2025-08-18 00:00:00-04:00,119.30999755859375,119.30999755859375,119.30999755859375,119.30999755859375,105.12691497802734,0,0.0,0.0,0.0
2025-08-19 00:00:00-04:00,118.86000061035156,118.86000061035156,118.86000061035156,118.86000061035156,104.73040771484375,0,0.0,0.0,0.0
2025-08-20 00:00:00-04:00,118.56999969482422,118.56999969482422,118.56999969482422,118.56999969482422,104.47488403320312,0,0.0,0.0,0.0
2025-08-21 00:00:00-04:00,117.94000244140625,117.94000244140625,117.94000244140625,117.94000244140625,103.9197769165039,0,0.0,0.0,0.0
2025-08-22 00:00:00-04:00,120.2300033569336,120.2300033569336,120.2300033569336,120.2300033569336,105.93755340576172,0,0.0,0.0,0.0
2025-08-25 00:00:00-04:00,119.3499984741211,119.3499984741211,119.3499984741211,119.3499984741211,105.16215515136719,0,0.0,0.0,0.0
2025-08-26 00:00:00-04:00,119.80000305175781,119.80000305175781,119.80000305175781,119.80000305175781,105.55867004394531,0,0.0,0.0,0.0
2025-08-27 00:00:00-04:00,119.19999694824219,119.19999694824219,119.19999694824219,119.19999694824219,105.02999114990234,0,0.0,0.0,0.0
2025-08-28 00:00:00-04:00,119.52999877929688,119.52999877929688,119.52999877929688,119.52999877929688,105.32076263427734,0,0.0,0.0,0.0
2025-08-29 00:00:00-04:00,118.58999633789062,118.58999633789062,118.58999633789062,118.58999633789062,104.49250030517578,0,0.0,0.0,0.0
2025-09-02 00:00:00-04:00,117.0999984741211,117.0999984741211,117.0999984741211,117.0999984741211,103.17962646484375,0,0.0,0.0,0.0
2025-09-03 00:00:00-04:00,117.66000366210938,117.66000366210938,117.66000366210938,117.66000366210938,103.67306518554688,0,0.0,0.0,0.0
2025-09-04 00:00:00-04:00,118.58000183105469,118.58000183105469,118.58000183105469,118.58000183105469,104.48369598388672,0,0.0,0.0,0.0
2025-09-05 00:00:00-04:00,119.41000366210938,119.41000366210938,119.41000366210938,119.41000366210938,105.21502685546875,0,0.0,0.0,0.0
2025-09-08 00:00:00-04:00,120.5,120.5,120.5,120.5,106.17545318603516,0,0.0,0.0,0.0
2025-09-09 00:00:00-04:00,120.86000061035156,120.86000061035156,120.86000061035156,120.86000061035156,106.49266052246094,0,0.0,0.0,0.0
2025-09-10 00:00:00-04:00,120.61000061035156,120.61000061035156,120.61000061035156,120.61000061035156,106.27237701416016,0,0.0,0.0,0.0
2025-09-11 00:00:00-04:00,121.5999984741211,121.5999984741211,121.5999984741211,121.5999984741211,107.14468383789062,0,0.0,0.0,0.0
2025-09-12 00:00:00-04:00,121.20999908447266,121.20999908447266,121.20999908447266,121.20999908447266,106.8010482788086,0,0.0,0.0,0.0
2025-09-15 00:00:00-04:00,122.43000030517578,122.43000030517578,122.43000030517578,122.43000030517578,107.87602233886719,0,0.0,0.0,0.0
2025-09-16 00:00:00-04:00,122.9000015258789,122.9000015258789,122.9000015258789,122.9000015258789,108.29015350341797,0,0.0,0.0,0.0
2025-09-17 00:00:00-04:00,123.11000061035156,123.11000061035156,123.11000061035156,123.11000061035156,108.47518920898438,0,0.0,0.0,0.0
2025-09-18 00:00:00-04:00,124.75,124.75,124.75,124.75,109.92022705078125,0,0.0,0.0,0.0
2025-09-19 00:00:00-04:00,123.94000244140625,123.94000244140625,123.94000244140625,123.94000244140625,109.2065200805664,0,0.0,0.0,0.0
2025-09-22 00:00:00-04:00,124.56999969482422,124.56999969482422,124.56999969482422,124.56999969482422,109.76162719726562,0,0.0,0.0,0.0
2025-09-23 00:00:00-04:00,124.0,124.0,124.0,124.0,109.25938415527344,0,0.0,0.0,0.0
2025-09-24 00:00:00-04:00,123.26000213623047,123.26000213623047,123.26000213623047,123.26000213623047,108.60735321044922,0,0.0,0.0,0.0
2025-09-25 00:00:00-04:00,122.22000122070312,122.22000122070312,122.22000122070312,122.22000122070312,107.69098663330078,0,0.0,0.0,0.0
2025-09-26 00:00:00-04:00,122.12000274658203,122.12000274658203,122.12000274658203,122.12000274658203,107.60287475585938,0,0.0,0.0,0.0
2025-09-29 00:00:00-04:00,123.16999816894531,123.16999816894531,123.16999816894531,123.16999816894531,108.5280532836914,0,0.0,0.0,0.0
2025-09-30 00:00:00-04:00,123.19999694824219,123.19999694824219,123.19999694824219,123.19999694824219,108.55448150634766,0,0.0,0.0,0.0
2025-10-01 00:00:00-04:00,123.86000061035156,123.86000061035156,123.86000061035156,123.86000061035156,109.13603210449219,0,0.0,0.0,0.0
2025-10-02 00:00:00-04:00,125.30999755859375,125.30999755859375,125.30999755859375,125.30999755859375,110.41365814208984,0,0.0,0.0,0.0
2025-10-03 00:00:00-04:00,125.6500015258789,125.6500015258789,125.6500015258789,125.6500015258789,110.71324157714844,0,0.0,0.0,0.0
2025-10-06 00:00:00-04:00,126.88999938964844,126.88999938964844,126.88999938964844,126.88999938964844,111.80583190917969,0,0.0,0.0,0.0
2025-10-07 00:00:00-04:00,125.58000183105469,125.58000183105469,125.58000183105469,125.58000183105469,110.65156555175781,0,0.0,0.0,0.0
2025-10-08 00:00:00-04:00,126.12000274658203,126.12000274658203,126.12000274658203,126.12000274658203,111.12737274169922,0,0.0,0.0,0.0
2025-10-09 00:00:00-04:00,125.04000091552734,125.04000091552734,125.04000091552734,125.04000091552734,110.1757583618164,0,0.0,0.0,0.0
2025-10-10 00:00:00-04:00,120.52999877929688,120.52999877929688,120.52999877929688,120.52999877929688,106.2018814086914,0,0.0,0.0,0.0
2025-10-13 00:00:00-04:00,123.08000183105469,123.08000183105469,123.08000183105469,123.08000183105469,108.4487533569336,0,0.0,0.0,0.0
2025-10-14 00:00:00-04:00,122.54000091552734,122.54000091552734,122.54000091552734,122.54000091552734,107.97294616699219,0,0.0,0.0,0.0
2025-10-15 00:00:00-04:00,122.83999633789062,122.83999633789062,122.83999633789062,122.83999633789062,108.2372817993164,0,0.0,0.0,0.0
2025-10-16 00:00:00-04:00,122.97000122070312,122.97000122070312,122.97000122070312,122.97000122070312,108.3518295288086,0,0.0,0.0,0.0
2025-10-17 00:00:00-04:00,123.04000091552734,123.04000091552734,123.04000091552734,123.04000091552734,108.41350555419922,0,0.0,0.0,0.0
2025-10-20 00:00:00-04:00,124.7699966430664,124.7699966430664,124.7699966430664,124.7699966430664,109.93785095214844,0,0.0,0.0,0.0
2025-10-21 00:00:00-04:00,124.12000274658203,124.12000274658203,124.12000274658203,124.12000274658203,109.36511993408203,0,0.0,0.0,0.0
2025-10-22 00:00:00-04:00,122.66999816894531,122.66999816894531,122.66999816894531,122.66999816894531,108.08748626708984,0,0.0,0.0,0.0
2025-10-23 00:00:00-04:00,123.94999694824219,123.94999694824219,123.94999694824219,123.94999694824219,109.21532440185547,0,0.0,0.0,0.0
2025-10-24 00:00:00-04:00,124.44000244140625,124.44000244140625,124.44000244140625,124.44000244140625,109.64707946777344,0,0.0,0.0,0.0
2025-10-27 00:00:00-04:00,126.18000030517578,126.18000030517578,126.18000030517578,126.18000030517578,111.18023681640625,0,0.0,0.0,0.0
2025-10-28 00:00:00-04:00,125.7300033569336,125.7300033569336,125.7300033569336,125.7300033569336,110.78373718261719,0,0.0,0.0,0.0
2025-10-29 00:00:00-04:00,126.0,126.0,126.0,126.0,111.02163696289062,0,0.0,0.0,0.0
2025-10-30 00:00:00-04:00,125.30000305175781,125.30000305175781,125.30000305175781,125.30000305175781,110.40484619140625,0,0.0,0.0,0.0
2025-10-31 00:00:00-04:00,124.94000244140625,124.94000244140625,124.94000244140625,124.94000244140625,110.087646484375,0,0.0,0.0,0.0
2025-11-03 00:00:00-05:00,125.08000183105469,125.08000183105469,125.08000183105469,125.08000183105469,110.21099853515625,0,0.0,0.0,0.0
2025-11-04 00:00:00-05:00,122.6500015258789,122.6500015258789,122.6500015258789,122.6500015258789,108.06986999511719,0,0.0,0.0,0.0
2025-11-05 00:00:00-05:00,123.1500015258789,123.1500015258789,123.1500015258789,123.1500015258789,108.51042938232422,0,0.0,0.0,0.0
2025-11-06 00:00:00-05:00,121.4000015258789,121.4000015258789,121.4000015258789,121.4000015258789,106.96846771240234,0,0.0,0.0,0.0
2025-11-07 00:00:00-05:00,120.95999908447266,120.95999908447266,120.95999908447266,120.95999908447266,106.58076477050781,0,0.0,0.0,0.0
2025-11-10 00:00:00-05:00,122.8499984741211,122.8499984741211,122.8499984741211,122.8499984741211,108.24609375,0,0.0,0.0,0.0
2025-11-11 00:00:00-05:00,123.30000305175781,123.30000305175781,123.30000305175781,123.30000305175781,108.6426010131836,0,0.0,0.0,0.0
2025-11-12 00:00:00-05:00,123.6500015258789,123.6500015258789,123.6500015258789,123.6500015258789,108.95099639892578,0,0.0,0.0,0.0
2025-11-13 00:00:00-05:00,121.47000122070312,121.47000122070312,121.47000122070312,121.47000122070312,107.03014373779297,0,0.0,0.0,0.0
2025-11-14 00:00:00-05:00,121.33000183105469,121.33000183105469,121.33000183105469,121.33000183105469,106.90678405761719,0,0.0,0.0,0.0
2025-11-17 00:00:00-05:00,119.73999786376953,119.73999786376953,119.73999786376953,119.73999786376953,105.50579833984375,0,0.0,0.0,0.0
2025-11-18 00:00:00-05:00,118.41000366210938,118.41000366210938,118.41000366210938,118.41000366210938,104.33390808105469,0,0.0,0.0,0.0
2025-11-19 00:00:00-05:00,118.27999877929688,118.27999877929688,118.27999877929688,118.27999877929688,104.21935272216797,0,0.0,0.0,0.0
2025-11-20 00:00:00-05:00,115.16000366210938,115.16000366210938,115.16000366210938,115.16000366210938,101.47025299072266,0,0.0,0.0,0.0
2025-11-21 00:00:00-05:00,116.56999969482422,116.56999969482422,116.56999969482422,116.56999969482422,102.71263122558594,0,0.0,0.0,0.0
2025-11-24 00:00:00-05:00,117.61000061035156,117.61000061035156,117.61000061035156,117.61000061035156,103.6290054321289,0,0.0,0.0,0.0
2025-11-25 00:00:00-05:00,118.8499984741211,118.8499984741211,118.8499984741211,118.8499984741211,104.72159576416016,0,0.0,0.0,0.0
2025-11-26 00:00:00-05:00,119.88999938964844,119.88999938964844,119.88999938964844,119.88999938964844,105.6379623413086,0,0.0,0.0,0.0
2025-11-28 00:00:00-05:00,120.91000366210938,120.91000366210938,120.91000366210938,120.91000366210938,106.53671264648438,0,0.0,0.0,0.0
2025-12-01 00:00:00-05:00,120.0,120.0,120.0,120.0,105.7348861694336,0,0.0,0.0,0.0
2025-12-02 00:00:00-05:00,120.7699966430664,120.7699966430664,120.7699966430664,120.7699966430664,106.4133529663086,0,0.0,0.0,0.0
2025-12-03 00:00:00-05:00,121.38999938964844,121.38999938964844,121.38999938964844,121.38999938964844,106.95964813232422,0,0.0,0.0,0.0
2025-12-04 00:00:00-05:00,121.55999755859375,121.55999755859375,121.55999755859375,121.55999755859375,107.10944366455078,0,0.0,0.0,0.0
2025-12-05 00:00:00-05:00,121.5199966430664,121.5199966430664,121.5199966430664,121.5199966430664,107.0741958618164,0,0.0,0.0,0.0
2025-12-08 00:00:00-05:00,121.48999786376953,121.48999786376953,121.48999786376953,121.48999786376953,107.04776000976562,0,0.0,0.0,0.0
2025-12-09 00:00:00-05:00,121.16000366210938,121.16000366210938,121.16000366210938,121.16000366210938,106.75699615478516,0,0.0,0.0,0.0
2025-12-10 00:00:00-05:00,122.55000305175781,122.55000305175781,122.55000305175781,122.55000305175781,107.98175811767578,0,0.0,0.0,0.0
2025-12-11 00:00:00-05:00,122.66999816894531,122.66999816894531,122.66999816894531,122.66999816894531,108.08748626708984,0,0.0,0.0,0.0
2025-12-12 00:00:00-05:00,121.08999633789062,121.08999633789062,121.08999633789062,121.08999633789062,106.6953125,0,0.0,0.0,0.0
2025-12-15 00:00:00-05:00,120.7699966430664,120.7699966430664,120.7699966430664,120.7699966430664,106.4133529663086,0,0.0,0.0,0.0
2025-12-16 00:00:00-05:00,120.0999984741211,120.0999984741211,120.0999984741211,120.0999984741211,105.822998046875,0,0.0,0.0,0.0
2025-12-17 00:00:00-05:00,110.44000244140625,110.44000244140625,110.44000244140625,110.44000244140625,110.44000244140625,0,7.857,0.0,6.42
2025-12-18 00:00:00-05:00,111.77999877929688,111.77999877929688,111.77999877929688,111.77999877929688,111.77999877929688,0,0.0,0.0,0.0
2025-12-19 00:00:00-05:00,112.76000213623047,112.76000213623047,112.76000213623047,112.76000213623047,112.76000213623047,0,0.0,0.0,0.0
2025-12-22 00:00:00-05:00,113.37999725341797,113.37999725341797,113.37999725341797,113.37999725341797,113.37999725341797,0,0.0,0.0,0.0
2025-12-23 00:00:00-05:00,114.01000213623047,114.01000213623047,114.01000213623047,114.01000213623047,114.01000213623047,0,0.0,0.0,0.0
2025-12-24 00:00:00-05:00,114.12999725341797,114.12999725341797,114.12999725341797,114.12999725341797,114.12999725341797,0,0.0,0.0,0.0
2025-12-26 00:00:00-05:00,114.70999908447266,114.70999908447266,114.70999908447266,114.70999908447266,114.70999908447266,0,0.0,0.0,0.0
2025-12-29 00:00:00-05:00,114.44000244140625,114.44000244140625,114.44000244140625,114.44000244140625,114.44000244140625,0,0.0,0.0,0.0
2025-12-30 00:00:00-05:00,114.37999725341797,114.37999725341797,114.37999725341797,114.37999725341797,114.37999725341797,0,0.0,0.0,0.0
2025-12-31 00:00:00-05:00,113.98999786376953,113.98999786376953,113.98999786376953,113.98999786376953,113.98999786376953,0,0.0,0.0,0.0
2026-01-02 00:00:00-05:00,115.68000030517578,115.68000030517578,115.68000030517578,115.68000030517578,115.68000030517578,0,0.0,0.0,0.0
2026-01-05 00:00:00-05:00,118.0999984741211,118.0999984741211,118.0999984741211,118.0999984741211,118.0999984741211,0,0.0,0.0,0.0
2026-01-06 00:00:00-05:00,118.98999786376953,118.98999786376953,118.98999786376953,118.98999786376953,118.98999786376953,0,0.0,0.0,0.0
2026-01-07 00:00:00-05:00,118.0199966430664,118.0199966430664,118.0199966430664,118.0199966430664,118.0199966430664,0,0.0,0.0,0.0
2026-01-08 00:00:00-05:00,117.5,117.5,117.5,117.5,117.5,0,0.0,0.0,0.0
2026-01-09 00:00:00-05:00,118.62000274658203,118.62000274658203,118.62000274658203,118.62000274658203,118.62000274658203,0,0.0,0.0,0.0
1 Date Open High Low Close Adj Close Volume Dividends Stock Splits Capital Gains
2 2024-01-10 00:00:00-05:00 100.02999877929688 100.02999877929688 100.02999877929688 100.02999877929688 73.67626190185547 0 0.0 0.0 0.0
3 2024-01-11 00:00:00-05:00 100.25 100.25 100.25 100.25 73.83830261230469 0 0.0 0.0 0.0
4 2024-01-12 00:00:00-05:00 100.44000244140625 100.44000244140625 100.44000244140625 100.44000244140625 73.9782485961914 0 0.0 0.0 0.0
5 2024-01-16 00:00:00-05:00 98.70999908447266 98.70999908447266 98.70999908447266 98.70999908447266 72.70402526855469 0 0.0 0.0 0.0
6 2024-01-17 00:00:00-05:00 97.05999755859375 97.05999755859375 97.05999755859375 97.05999755859375 71.48873138427734 0 0.0 0.0 0.0
7 2024-01-18 00:00:00-05:00 98.02999877929688 98.02999877929688 98.02999877929688 98.02999877929688 72.20317840576172 0 0.0 0.0 0.0
8 2024-01-19 00:00:00-05:00 98.7699966430664 98.7699966430664 98.7699966430664 98.7699966430664 72.74822235107422 0 0.0 0.0 0.0
9 2024-01-22 00:00:00-05:00 98.76000213623047 98.76000213623047 98.76000213623047 98.76000213623047 72.74085235595703 0 0.0 0.0 0.0
10 2024-01-23 00:00:00-05:00 99.37000274658203 99.37000274658203 99.37000274658203 99.37000274658203 73.19014739990234 0 0.0 0.0 0.0
11 2024-01-24 00:00:00-05:00 100.41000366210938 100.41000366210938 100.41000366210938 100.41000366210938 73.95614624023438 0 0.0 0.0 0.0
12 2024-01-25 00:00:00-05:00 100.3499984741211 100.3499984741211 100.3499984741211 100.3499984741211 73.91195678710938 0 0.0 0.0 0.0
13 2024-01-26 00:00:00-05:00 100.83999633789062 100.83999633789062 100.83999633789062 100.83999633789062 74.27285766601562 0 0.0 0.0 0.0
14 2024-01-29 00:00:00-05:00 101.19000244140625 101.19000244140625 101.19000244140625 101.19000244140625 74.53065490722656 0 0.0 0.0 0.0
15 2024-01-30 00:00:00-05:00 100.41000366210938 100.41000366210938 100.41000366210938 100.41000366210938 73.95614624023438 0 0.0 0.0 0.0
16 2024-01-31 00:00:00-05:00 99.27999877929688 99.27999877929688 99.27999877929688 99.27999877929688 73.12385559082031 0 0.0 0.0 0.0
17 2024-02-01 00:00:00-05:00 100.80000305175781 100.80000305175781 100.80000305175781 100.80000305175781 74.24340057373047 0 0.0 0.0 0.0
18 2024-02-02 00:00:00-05:00 100.12000274658203 100.12000274658203 100.12000274658203 100.12000274658203 73.7425537109375 0 0.0 0.0 0.0
19 2024-02-05 00:00:00-05:00 100.2699966430664 100.2699966430664 100.2699966430664 100.2699966430664 73.85303497314453 0 0.0 0.0 0.0
20 2024-02-06 00:00:00-05:00 101.08000183105469 101.08000183105469 101.08000183105469 101.08000183105469 74.44963073730469 0 0.0 0.0 0.0
21 2024-02-07 00:00:00-05:00 101.86000061035156 101.86000061035156 101.86000061035156 101.86000061035156 75.02413177490234 0 0.0 0.0 0.0
22 2024-02-08 00:00:00-05:00 102.72000122070312 102.72000122070312 102.72000122070312 102.72000122070312 75.65755462646484 0 0.0 0.0 0.0
23 2024-02-09 00:00:00-05:00 103.44000244140625 103.44000244140625 103.44000244140625 103.44000244140625 76.18787384033203 0 0.0 0.0 0.0
24 2024-02-12 00:00:00-05:00 103.54000091552734 103.54000091552734 103.54000091552734 103.54000091552734 76.26152801513672 0 0.0 0.0 0.0
25 2024-02-13 00:00:00-05:00 101.23999786376953 101.23999786376953 101.23999786376953 101.23999786376953 74.56747436523438 0 0.0 0.0 0.0
26 2024-02-14 00:00:00-05:00 103.01000213623047 103.01000213623047 103.01000213623047 103.01000213623047 75.87116241455078 0 0.0 0.0 0.0
27 2024-02-15 00:00:00-05:00 104.33000183105469 104.33000183105469 104.33000183105469 104.33000183105469 76.84339141845703 0 0.0 0.0 0.0
28 2024-02-16 00:00:00-05:00 104.3499984741211 104.3499984741211 104.3499984741211 104.3499984741211 76.85812377929688 0 0.0 0.0 0.0
29 2024-02-20 00:00:00-05:00 103.4800033569336 103.4800033569336 103.4800033569336 103.4800033569336 76.21733856201172 0 0.0 0.0 0.0
30 2024-02-21 00:00:00-05:00 103.75 103.75 103.75 103.75 76.41619873046875 0 0.0 0.0 0.0
31 2024-02-22 00:00:00-05:00 106.08000183105469 106.08000183105469 106.08000183105469 106.08000183105469 78.13233947753906 0 0.0 0.0 0.0
32 2024-02-23 00:00:00-05:00 105.2699966430664 105.2699966430664 105.2699966430664 105.2699966430664 77.53573608398438 0 0.0 0.0 0.0
33 2024-02-26 00:00:00-05:00 105.3499984741211 105.3499984741211 105.3499984741211 105.3499984741211 77.59466552734375 0 0.0 0.0 0.0
34 2024-02-27 00:00:00-05:00 105.93000030517578 105.93000030517578 105.93000030517578 105.93000030517578 78.02185821533203 0 0.0 0.0 0.0
35 2024-02-28 00:00:00-05:00 105.20999908447266 105.20999908447266 105.20999908447266 105.20999908447266 77.49154663085938 0 0.0 0.0 0.0
36 2024-02-29 00:00:00-05:00 105.5199966430664 105.5199966430664 105.5199966430664 105.5199966430664 77.7198715209961 0 0.0 0.0 0.0
37 2024-03-01 00:00:00-05:00 107.01000213623047 107.01000213623047 107.01000213623047 107.01000213623047 78.81732940673828 0 0.0 0.0 0.0
38 2024-03-04 00:00:00-05:00 106.44999694824219 106.44999694824219 106.44999694824219 106.44999694824219 78.40485382080078 0 0.0 0.0 0.0
39 2024-03-05 00:00:00-05:00 105.23999786376953 105.23999786376953 105.23999786376953 105.23999786376953 77.5136489868164 0 0.0 0.0 0.0
40 2024-03-06 00:00:00-05:00 106.62999725341797 106.62999725341797 106.62999725341797 106.62999725341797 78.53743743896484 0 0.0 0.0 0.0
41 2024-03-07 00:00:00-05:00 108.18000030517578 108.18000030517578 108.18000030517578 108.18000030517578 79.6790771484375 0 0.0 0.0 0.0
42 2024-03-08 00:00:00-05:00 106.98999786376953 106.98999786376953 106.98999786376953 106.98999786376953 78.8025894165039 0 0.0 0.0 0.0
43 2024-03-11 00:00:00-04:00 107.11000061035156 107.11000061035156 107.11000061035156 107.11000061035156 78.89097595214844 0 0.0 0.0 0.0
44 2024-03-12 00:00:00-04:00 108.73999786376953 108.73999786376953 108.73999786376953 108.73999786376953 80.09153747558594 0 0.0 0.0 0.0
45 2024-03-13 00:00:00-04:00 108.55000305175781 108.55000305175781 108.55000305175781 108.55000305175781 79.95159912109375 0 0.0 0.0 0.0
46 2024-03-14 00:00:00-04:00 107.19999694824219 107.19999694824219 107.19999694824219 107.19999694824219 78.95726013183594 0 0.0 0.0 0.0
47 2024-03-15 00:00:00-04:00 106.12000274658203 106.12000274658203 106.12000274658203 106.12000274658203 78.16180419921875 0 0.0 0.0 0.0
48 2024-03-18 00:00:00-04:00 106.38999938964844 106.38999938964844 106.38999938964844 106.38999938964844 78.36066436767578 0 0.0 0.0 0.0
49 2024-03-19 00:00:00-04:00 106.45999908447266 106.45999908447266 106.45999908447266 106.45999908447266 78.41222381591797 0 0.0 0.0 0.0
50 2024-03-20 00:00:00-04:00 107.76000213623047 107.76000213623047 107.76000213623047 107.76000213623047 79.36973571777344 0 0.0 0.0 0.0
51 2024-03-21 00:00:00-04:00 108.04000091552734 108.04000091552734 108.04000091552734 108.04000091552734 79.57596588134766 0 0.0 0.0 0.0
52 2024-03-22 00:00:00-04:00 107.94999694824219 107.94999694824219 107.94999694824219 107.94999694824219 79.5096664428711 0 0.0 0.0 0.0
53 2024-03-25 00:00:00-04:00 107.79000091552734 107.79000091552734 107.79000091552734 107.79000091552734 79.3918228149414 0 0.0 0.0 0.0
54 2024-03-26 00:00:00-04:00 107.55999755859375 107.55999755859375 107.55999755859375 107.55999755859375 79.22241973876953 0 0.0 0.0 0.0
55 2024-03-27 00:00:00-04:00 107.6500015258789 107.6500015258789 107.6500015258789 107.6500015258789 79.28871154785156 0 0.0 0.0 0.0
56 2024-03-28 00:00:00-04:00 107.19999694824219 107.19999694824219 107.19999694824219 107.19999694824219 78.95726013183594 0 0.0 0.0 0.0
57 2024-04-01 00:00:00-04:00 107.29000091552734 107.29000091552734 107.29000091552734 107.29000091552734 79.0235595703125 0 0.0 0.0 0.0
58 2024-04-02 00:00:00-04:00 106.79000091552734 106.79000091552734 106.79000091552734 106.79000091552734 78.65528106689453 0 0.0 0.0 0.0
59 2024-04-03 00:00:00-04:00 107.29000091552734 107.29000091552734 107.29000091552734 107.29000091552734 79.0235595703125 0 0.0 0.0 0.0
60 2024-04-04 00:00:00-04:00 106.4000015258789 106.4000015258789 106.4000015258789 106.4000015258789 78.36803436279297 0 0.0 0.0 0.0
61 2024-04-05 00:00:00-04:00 106.95999908447266 106.95999908447266 106.95999908447266 106.95999908447266 78.7804946899414 0 0.0 0.0 0.0
62 2024-04-08 00:00:00-04:00 107.47000122070312 107.47000122070312 107.47000122070312 107.47000122070312 79.1561279296875 0 0.0 0.0 0.0
63 2024-04-09 00:00:00-04:00 107.87999725341797 107.87999725341797 107.87999725341797 107.87999725341797 79.45811462402344 0 0.0 0.0 0.0
64 2024-04-10 00:00:00-04:00 106.56999969482422 106.56999969482422 106.56999969482422 106.56999969482422 78.49324035644531 0 0.0 0.0 0.0
65 2024-04-11 00:00:00-04:00 107.4000015258789 107.4000015258789 107.4000015258789 107.4000015258789 79.10457611083984 0 0.0 0.0 0.0
66 2024-04-12 00:00:00-04:00 105.08000183105469 105.08000183105469 105.08000183105469 105.08000183105469 77.39579772949219 0 0.0 0.0 0.0
67 2024-04-15 00:00:00-04:00 104.30999755859375 104.30999755859375 104.30999755859375 104.30999755859375 76.82865905761719 0 0.0 0.0 0.0
68 2024-04-16 00:00:00-04:00 103.9800033569336 103.9800033569336 103.9800033569336 103.9800033569336 76.58560180664062 0 0.0 0.0 0.0
69 2024-04-17 00:00:00-04:00 103.27999877929688 103.27999877929688 103.27999877929688 103.27999877929688 76.07002258300781 0 0.0 0.0 0.0
70 2024-04-18 00:00:00-04:00 102.4800033569336 102.4800033569336 102.4800033569336 102.4800033569336 75.48078918457031 0 0.0 0.0 0.0
71 2024-04-19 00:00:00-04:00 101.13999938964844 101.13999938964844 101.13999938964844 101.13999938964844 74.49382019042969 0 0.0 0.0 0.0
72 2024-04-22 00:00:00-04:00 102.58000183105469 102.58000183105469 102.58000183105469 102.58000183105469 75.554443359375 0 0.0 0.0 0.0
73 2024-04-23 00:00:00-04:00 104.87999725341797 104.87999725341797 104.87999725341797 104.87999725341797 77.24848937988281 0 0.0 0.0 0.0
74 2024-04-24 00:00:00-04:00 104.66000366210938 104.66000366210938 104.66000366210938 104.66000366210938 77.08645629882812 0 0.0 0.0 0.0
75 2024-04-25 00:00:00-04:00 103.93000030517578 103.93000030517578 103.93000030517578 103.93000030517578 76.54877471923828 0 0.0 0.0 0.0
76 2024-04-26 00:00:00-04:00 105.23999786376953 105.23999786376953 105.23999786376953 105.23999786376953 77.5136489868164 0 0.0 0.0 0.0
77 2024-04-29 00:00:00-04:00 105.75 105.75 105.75 105.75 77.8892822265625 0 0.0 0.0 0.0
78 2024-04-30 00:00:00-04:00 103.94999694824219 103.94999694824219 103.94999694824219 103.94999694824219 76.5634994506836 0 0.0 0.0 0.0
79 2024-05-01 00:00:00-04:00 103.77999877929688 103.77999877929688 103.77999877929688 103.77999877929688 76.43829345703125 0 0.0 0.0 0.0
80 2024-05-02 00:00:00-04:00 106.27999877929688 106.27999877929688 106.27999877929688 106.27999877929688 78.27964782714844 0 0.0 0.0 0.0
81 2024-05-03 00:00:00-04:00 107.97000122070312 107.97000122070312 107.97000122070312 107.97000122070312 79.52440643310547 0 0.0 0.0 0.0
82 2024-05-06 00:00:00-04:00 108.73999786376953 108.73999786376953 108.73999786376953 108.73999786376953 80.09153747558594 0 0.0 0.0 0.0
83 2024-05-07 00:00:00-04:00 108.66999816894531 108.66999816894531 108.66999816894531 108.66999816894531 80.03998565673828 0 0.0 0.0 0.0
84 2024-05-08 00:00:00-04:00 108.2300033569336 108.2300033569336 108.2300033569336 108.2300033569336 79.71590423583984 0 0.0 0.0 0.0
85 2024-05-09 00:00:00-04:00 108.63999938964844 108.63999938964844 108.63999938964844 108.63999938964844 80.01788330078125 0 0.0 0.0 0.0
86 2024-05-10 00:00:00-04:00 108.81999969482422 108.81999969482422 108.81999969482422 108.81999969482422 80.15045928955078 0 0.0 0.0 0.0
87 2024-05-13 00:00:00-04:00 109.08999633789062 109.08999633789062 109.08999633789062 109.08999633789062 80.34932708740234 0 0.0 0.0 0.0
88 2024-05-14 00:00:00-04:00 110.18000030517578 110.18000030517578 110.18000030517578 110.18000030517578 81.15216064453125 0 0.0 0.0 0.0
89 2024-05-15 00:00:00-04:00 111.88999938964844 111.88999938964844 111.88999938964844 111.88999938964844 82.4116439819336 0 0.0 0.0 0.0
90 2024-05-16 00:00:00-04:00 111.44999694824219 111.44999694824219 111.44999694824219 111.44999694824219 82.08757019042969 0 0.0 0.0 0.0
91 2024-05-17 00:00:00-04:00 111.47000122070312 111.47000122070312 111.47000122070312 111.47000122070312 82.10230255126953 0 0.0 0.0 0.0
92 2024-05-20 00:00:00-04:00 112.1500015258789 112.1500015258789 112.1500015258789 112.1500015258789 82.6031494140625 0 0.0 0.0 0.0
93 2024-05-21 00:00:00-04:00 111.66000366210938 111.66000366210938 111.66000366210938 111.66000366210938 82.24224090576172 0 0.0 0.0 0.0
94 2024-05-22 00:00:00-04:00 111.45999908447266 111.45999908447266 111.45999908447266 111.45999908447266 82.09493255615234 0 0.0 0.0 0.0
95 2024-05-23 00:00:00-04:00 111.36000061035156 111.36000061035156 111.36000061035156 111.36000061035156 82.02127838134766 0 0.0 0.0 0.0
96 2024-05-24 00:00:00-04:00 112.25 112.25 112.25 112.25 82.67680358886719 0 0.0 0.0 0.0
97 2024-05-28 00:00:00-04:00 112.25 112.25 112.25 112.25 82.67680358886719 0 0.0 0.0 0.0
98 2024-05-29 00:00:00-04:00 110.45999908447266 110.45999908447266 110.45999908447266 110.45999908447266 81.35839080810547 0 0.0 0.0 0.0
99 2024-05-30 00:00:00-04:00 110.68000030517578 110.68000030517578 110.68000030517578 110.68000030517578 81.52043151855469 0 0.0 0.0 0.0
100 2024-05-31 00:00:00-04:00 110.79000091552734 110.79000091552734 110.79000091552734 110.79000091552734 81.60144805908203 0 0.0 0.0 0.0
101 2024-06-03 00:00:00-04:00 111.58000183105469 111.58000183105469 111.58000183105469 111.58000183105469 82.18331909179688 0 0.0 0.0 0.0
102 2024-06-04 00:00:00-04:00 111.13999938964844 111.13999938964844 111.13999938964844 111.13999938964844 81.85923767089844 0 0.0 0.0 0.0
103 2024-06-05 00:00:00-04:00 113.23999786376953 113.23999786376953 113.23999786376953 113.23999786376953 83.40597534179688 0 0.0 0.0 0.0
104 2024-06-06 00:00:00-04:00 113.72000122070312 113.72000122070312 113.72000122070312 113.72000122070312 83.759521484375 0 0.0 0.0 0.0
105 2024-06-07 00:00:00-04:00 112.05999755859375 112.05999755859375 112.05999755859375 112.05999755859375 82.53685760498047 0 0.0 0.0 0.0
106 2024-06-10 00:00:00-04:00 112.37999725341797 112.37999725341797 112.37999725341797 112.37999725341797 82.77255249023438 0 0.0 0.0 0.0
107 2024-06-11 00:00:00-04:00 111.5999984741211 111.5999984741211 111.5999984741211 111.5999984741211 82.19804382324219 0 0.0 0.0 0.0
108 2024-06-12 00:00:00-04:00 113.05999755859375 113.05999755859375 113.05999755859375 113.05999755859375 83.27339935302734 0 0.0 0.0 0.0
109 2024-06-13 00:00:00-04:00 111.95999908447266 111.95999908447266 111.95999908447266 111.95999908447266 82.46320343017578 0 0.0 0.0 0.0
110 2024-06-14 00:00:00-04:00 111.04000091552734 111.04000091552734 111.04000091552734 111.04000091552734 81.78558349609375 0 0.0 0.0 0.0
111 2024-06-17 00:00:00-04:00 111.1500015258789 111.1500015258789 111.1500015258789 111.1500015258789 81.86660766601562 0 0.0 0.0 0.0
112 2024-06-18 00:00:00-04:00 111.22000122070312 111.22000122070312 111.22000122070312 111.22000122070312 81.91815948486328 0 0.0 0.0 0.0
113 2024-06-20 00:00:00-04:00 111.0199966430664 111.0199966430664 111.0199966430664 111.0199966430664 81.7708511352539 0 0.0 0.0 0.0
114 2024-06-21 00:00:00-04:00 110.38999938964844 110.38999938964844 110.38999938964844 110.38999938964844 81.30683135986328 0 0.0 0.0 0.0
115 2024-06-24 00:00:00-04:00 110.51000213623047 110.51000213623047 110.51000213623047 110.51000213623047 81.39521789550781 0 0.0 0.0 0.0
116 2024-06-25 00:00:00-04:00 111.38999938964844 111.38999938964844 111.38999938964844 111.38999938964844 82.04337310791016 0 0.0 0.0 0.0
117 2024-06-26 00:00:00-04:00 110.73999786376953 110.73999786376953 110.73999786376953 110.73999786376953 81.56462097167969 0 0.0 0.0 0.0
118 2024-06-27 00:00:00-04:00 110.25 110.25 110.25 110.25 81.20372009277344 0 0.0 0.0 0.0
119 2024-06-28 00:00:00-04:00 109.72000122070312 109.72000122070312 109.72000122070312 109.72000122070312 80.81334686279297 0 0.0 0.0 0.0
120 2024-07-01 00:00:00-04:00 109.6500015258789 109.6500015258789 109.6500015258789 109.6500015258789 80.76179504394531 0 0.0 0.0 0.0
121 2024-07-02 00:00:00-04:00 110.06999969482422 110.06999969482422 110.06999969482422 110.06999969482422 81.0711441040039 0 0.0 0.0 0.0
122 2024-07-03 00:00:00-04:00 111.51000213623047 111.51000213623047 111.51000213623047 111.51000213623047 82.13176727294922 0 0.0 0.0 0.0
123 2024-07-05 00:00:00-04:00 112.48999786376953 112.48999786376953 112.48999786376953 112.48999786376953 82.85356903076172 0 0.0 0.0 0.0
124 2024-07-08 00:00:00-04:00 112.16999816894531 112.16999816894531 112.16999816894531 112.16999816894531 82.61787414550781 0 0.0 0.0 0.0
125 2024-07-09 00:00:00-04:00 112.38999938964844 112.38999938964844 112.38999938964844 112.38999938964844 82.77991485595703 0 0.0 0.0 0.0
126 2024-07-10 00:00:00-04:00 113.7699966430664 113.7699966430664 113.7699966430664 113.7699966430664 83.79634094238281 0 0.0 0.0 0.0
127 2024-07-11 00:00:00-04:00 113.86000061035156 113.86000061035156 113.86000061035156 113.86000061035156 83.86263275146484 0 0.0 0.0 0.0
128 2024-07-12 00:00:00-04:00 115.2300033569336 115.2300033569336 115.2300033569336 115.2300033569336 84.87169647216797 0 0.0 0.0 0.0
129 2024-07-15 00:00:00-04:00 113.77999877929688 113.77999877929688 113.77999877929688 113.77999877929688 83.8037109375 0 0.0 0.0 0.0
130 2024-07-16 00:00:00-04:00 114.27999877929688 114.27999877929688 114.27999877929688 114.27999877929688 84.17198181152344 0 0.0 0.0 0.0
131 2024-07-17 00:00:00-04:00 111.63999938964844 111.63999938964844 111.63999938964844 111.63999938964844 82.22750854492188 0 0.0 0.0 0.0
132 2024-07-18 00:00:00-04:00 110.54000091552734 110.54000091552734 110.54000091552734 110.54000091552734 81.41732025146484 0 0.0 0.0 0.0
133 2024-07-19 00:00:00-04:00 109.94999694824219 109.94999694824219 109.94999694824219 109.94999694824219 80.98275756835938 0 0.0 0.0 0.0
134 2024-07-22 00:00:00-04:00 111.51000213623047 111.51000213623047 111.51000213623047 111.51000213623047 82.13176727294922 0 0.0 0.0 0.0
135 2024-07-23 00:00:00-04:00 111.45999908447266 111.45999908447266 111.45999908447266 111.45999908447266 82.09493255615234 0 0.0 0.0 0.0
136 2024-07-24 00:00:00-04:00 108.9000015258789 108.9000015258789 108.9000015258789 108.9000015258789 80.20938873291016 0 0.0 0.0 0.0
137 2024-07-25 00:00:00-04:00 108.08000183105469 108.08000183105469 108.08000183105469 108.08000183105469 79.60542297363281 0 0.0 0.0 0.0
138 2024-07-26 00:00:00-04:00 109.48999786376953 109.48999786376953 109.48999786376953 109.48999786376953 80.6439437866211 0 0.0 0.0 0.0
139 2024-07-29 00:00:00-04:00 108.7699966430664 108.7699966430664 108.7699966430664 108.7699966430664 80.11363983154297 0 0.0 0.0 0.0
140 2024-07-30 00:00:00-04:00 108.5 108.5 108.5 108.5 79.91476440429688 0 0.0 0.0 0.0
141 2024-07-31 00:00:00-04:00 111.08999633789062 111.08999633789062 111.08999633789062 111.08999633789062 81.8224105834961 0 0.0 0.0 0.0
142 2024-08-01 00:00:00-04:00 107.87999725341797 107.87999725341797 107.87999725341797 107.87999725341797 79.45811462402344 0 0.0 0.0 0.0
143 2024-08-02 00:00:00-04:00 105.83000183105469 105.83000183105469 105.83000183105469 105.83000183105469 77.94820404052734 0 0.0 0.0 0.0
144 2024-08-05 00:00:00-04:00 103.87000274658203 103.87000274658203 103.87000274658203 103.87000274658203 76.50458526611328 0 0.0 0.0 0.0
145 2024-08-06 00:00:00-04:00 104.76000213623047 104.76000213623047 104.76000213623047 104.76000213623047 77.16010284423828 0 0.0 0.0 0.0
146 2024-08-07 00:00:00-04:00 105.19999694824219 105.19999694824219 105.19999694824219 105.19999694824219 77.48418426513672 0 0.0 0.0 0.0
147 2024-08-08 00:00:00-04:00 107.9000015258789 107.9000015258789 107.9000015258789 107.9000015258789 79.47284698486328 0 0.0 0.0 0.0
148 2024-08-09 00:00:00-04:00 108.18000030517578 108.18000030517578 108.18000030517578 108.18000030517578 79.6790771484375 0 0.0 0.0 0.0
149 2024-08-12 00:00:00-04:00 108.06999969482422 108.06999969482422 108.06999969482422 108.06999969482422 79.59805297851562 0 0.0 0.0 0.0
150 2024-08-13 00:00:00-04:00 109.9000015258789 109.9000015258789 109.9000015258789 109.9000015258789 80.94593048095703 0 0.0 0.0 0.0
151 2024-08-14 00:00:00-04:00 109.77999877929688 109.77999877929688 109.77999877929688 109.77999877929688 80.85753631591797 0 0.0 0.0 0.0
152 2024-08-15 00:00:00-04:00 112.30000305175781 112.30000305175781 112.30000305175781 112.30000305175781 82.71363067626953 0 0.0 0.0 0.0
153 2024-08-16 00:00:00-04:00 113.0 113.0 113.0 113.0 83.22920989990234 0 0.0 0.0 0.0
154 2024-08-19 00:00:00-04:00 114.83000183105469 114.83000183105469 114.83000183105469 114.83000183105469 84.57707977294922 0 0.0 0.0 0.0
155 2024-08-20 00:00:00-04:00 113.83000183105469 113.83000183105469 113.83000183105469 113.83000183105469 83.84053802490234 0 0.0 0.0 0.0
156 2024-08-21 00:00:00-04:00 114.95999908447266 114.95999908447266 114.95999908447266 114.95999908447266 84.6728286743164 0 0.0 0.0 0.0
157 2024-08-22 00:00:00-04:00 113.81999969482422 113.81999969482422 113.81999969482422 113.81999969482422 83.83316802978516 0 0.0 0.0 0.0
158 2024-08-23 00:00:00-04:00 115.13999938964844 115.13999938964844 115.13999938964844 115.13999938964844 84.80541229248047 0 0.0 0.0 0.0
159 2024-08-26 00:00:00-04:00 113.62999725341797 113.62999725341797 113.62999725341797 113.62999725341797 83.69322204589844 0 0.0 0.0 0.0
160 2024-08-27 00:00:00-04:00 113.97000122070312 113.97000122070312 113.97000122070312 113.97000122070312 83.94365692138672 0 0.0 0.0 0.0
161 2024-08-28 00:00:00-04:00 112.87999725341797 112.87999725341797 112.87999725341797 112.87999725341797 83.14081573486328 0 0.0 0.0 0.0
162 2024-08-29 00:00:00-04:00 113.62999725341797 113.62999725341797 113.62999725341797 113.62999725341797 83.69322204589844 0 0.0 0.0 0.0
163 2024-08-30 00:00:00-04:00 113.87000274658203 113.87000274658203 113.87000274658203 113.87000274658203 83.87000274658203 0 0.0 0.0 0.0
164 2024-09-03 00:00:00-04:00 110.93000030517578 110.93000030517578 110.93000030517578 110.93000030517578 81.7045669555664 0 0.0 0.0 0.0
165 2024-09-04 00:00:00-04:00 110.56999969482422 110.56999969482422 110.56999969482422 110.56999969482422 81.43940734863281 0 0.0 0.0 0.0
166 2024-09-05 00:00:00-04:00 110.69000244140625 110.69000244140625 110.69000244140625 110.69000244140625 81.52779388427734 0 0.0 0.0 0.0
167 2024-09-06 00:00:00-04:00 108.0999984741211 108.0999984741211 108.0999984741211 108.0999984741211 79.62015533447266 0 0.0 0.0 0.0
168 2024-09-09 00:00:00-04:00 109.61000061035156 109.61000061035156 109.61000061035156 109.61000061035156 80.73233032226562 0 0.0 0.0 0.0
169 2024-09-10 00:00:00-04:00 109.33000183105469 109.33000183105469 109.33000183105469 109.33000183105469 80.5261001586914 0 0.0 0.0 0.0
170 2024-09-11 00:00:00-04:00 111.06999969482422 111.06999969482422 111.06999969482422 111.06999969482422 81.80767822265625 0 0.0 0.0 0.0
171 2024-09-12 00:00:00-04:00 111.97000122070312 111.97000122070312 111.97000122070312 111.97000122070312 82.47056579589844 0 0.0 0.0 0.0
172 2024-09-13 00:00:00-04:00 112.31999969482422 112.31999969482422 112.31999969482422 112.31999969482422 82.72836303710938 0 0.0 0.0 0.0
173 2024-09-16 00:00:00-04:00 112.44999694824219 112.44999694824219 112.44999694824219 112.44999694824219 82.82410430908203 0 0.0 0.0 0.0
174 2024-09-17 00:00:00-04:00 112.6500015258789 112.6500015258789 112.6500015258789 112.6500015258789 82.97142028808594 0 0.0 0.0 0.0
175 2024-09-18 00:00:00-04:00 112.36000061035156 112.36000061035156 112.36000061035156 112.36000061035156 82.75782012939453 0 0.0 0.0 0.0
176 2024-09-19 00:00:00-04:00 115.37000274658203 115.37000274658203 115.37000274658203 115.37000274658203 84.97481536865234 0 0.0 0.0 0.0
177 2024-09-20 00:00:00-04:00 114.08999633789062 114.08999633789062 114.08999633789062 114.08999633789062 84.03203582763672 0 0.0 0.0 0.0
178 2024-09-23 00:00:00-04:00 114.58999633789062 114.58999633789062 114.58999633789062 114.58999633789062 84.40030670166016 0 0.0 0.0 0.0
179 2024-09-24 00:00:00-04:00 116.5199966430664 116.5199966430664 116.5199966430664 116.5199966430664 85.82183074951172 0 0.0 0.0 0.0
180 2024-09-25 00:00:00-04:00 116.19999694824219 116.19999694824219 116.19999694824219 116.19999694824219 85.58613586425781 0 0.0 0.0 0.0
181 2024-09-26 00:00:00-04:00 118.9800033569336 118.9800033569336 118.9800033569336 118.9800033569336 87.63372802734375 0 0.0 0.0 0.0
182 2024-09-27 00:00:00-04:00 118.51000213623047 118.51000213623047 118.51000213623047 118.51000213623047 87.28755950927734 0 0.0 0.0 0.0
183 2024-09-30 00:00:00-04:00 117.87000274658203 117.87000274658203 117.87000274658203 117.87000274658203 86.81616973876953 0 0.0 0.0 0.0
184 2024-10-01 00:00:00-04:00 117.5 117.5 117.5 117.5 86.54364776611328 0 0.0 0.0 0.0
185 2024-10-02 00:00:00-04:00 118.05000305175781 118.05000305175781 118.05000305175781 118.05000305175781 86.94874572753906 0 0.0 0.0 0.0
186 2024-10-03 00:00:00-04:00 117.2300033569336 117.2300033569336 117.2300033569336 117.2300033569336 86.34477996826172 0 0.0 0.0 0.0
187 2024-10-04 00:00:00-04:00 118.37999725341797 118.37999725341797 118.37999725341797 118.37999725341797 87.1917953491211 0 0.0 0.0 0.0
188 2024-10-07 00:00:00-04:00 118.18000030517578 118.18000030517578 118.18000030517578 118.18000030517578 87.04448699951172 0 0.0 0.0 0.0
189 2024-10-08 00:00:00-04:00 117.58999633789062 117.58999633789062 117.58999633789062 117.58999633789062 86.60992431640625 0 0.0 0.0 0.0
190 2024-10-09 00:00:00-04:00 118.0 118.0 118.0 118.0 86.91191864013672 0 0.0 0.0 0.0
191 2024-10-10 00:00:00-04:00 117.83000183105469 117.83000183105469 117.83000183105469 117.83000183105469 86.78670501708984 0 0.0 0.0 0.0
192 2024-10-11 00:00:00-04:00 118.66000366210938 118.66000366210938 118.66000366210938 118.66000366210938 87.39803314208984 0 0.0 0.0 0.0
193 2024-10-14 00:00:00-04:00 118.80000305175781 118.80000305175781 118.80000305175781 118.80000305175781 87.50115203857422 0 0.0 0.0 0.0
194 2024-10-15 00:00:00-04:00 115.36000061035156 115.36000061035156 115.36000061035156 115.36000061035156 84.96744537353516 0 0.0 0.0 0.0
195 2024-10-16 00:00:00-04:00 115.66000366210938 115.66000366210938 115.66000366210938 115.66000366210938 85.18840789794922 0 0.0 0.0 0.0
196 2024-10-17 00:00:00-04:00 115.83999633789062 115.83999633789062 115.83999633789062 115.83999633789062 85.32098388671875 0 0.0 0.0 0.0
197 2024-10-18 00:00:00-04:00 117.30000305175781 117.30000305175781 117.30000305175781 117.30000305175781 86.3963394165039 0 0.0 0.0 0.0
198 2024-10-21 00:00:00-04:00 116.56999969482422 116.56999969482422 116.56999969482422 116.56999969482422 85.85865783691406 0 0.0 0.0 0.0
199 2024-10-22 00:00:00-04:00 116.37000274658203 116.37000274658203 116.37000274658203 116.37000274658203 85.71135711669922 0 0.0 0.0 0.0
200 2024-10-23 00:00:00-04:00 115.43000030517578 115.43000030517578 115.43000030517578 115.43000030517578 85.01900482177734 0 0.0 0.0 0.0
201 2024-10-24 00:00:00-04:00 115.83000183105469 115.83000183105469 115.83000183105469 115.83000183105469 85.3136215209961 0 0.0 0.0 0.0
202 2024-10-25 00:00:00-04:00 116.0 116.0 116.0 116.0 85.43883514404297 0 0.0 0.0 0.0
203 2024-10-28 00:00:00-04:00 116.66999816894531 116.66999816894531 116.66999816894531 116.66999816894531 85.93231201171875 0 0.0 0.0 0.0
204 2024-10-29 00:00:00-04:00 116.73999786376953 116.73999786376953 116.73999786376953 116.73999786376953 85.98387145996094 0 0.0 0.0 0.0
205 2024-10-30 00:00:00-04:00 115.72000122070312 115.72000122070312 115.72000122070312 115.72000122070312 85.23259735107422 0 0.0 0.0 0.0
206 2024-10-31 00:00:00-04:00 114.5199966430664 114.5199966430664 114.5199966430664 114.5199966430664 84.34874725341797 0 0.0 0.0 0.0
207 2024-11-01 00:00:00-04:00 115.12999725341797 115.12999725341797 115.12999725341797 115.12999725341797 84.79803466796875 0 0.0 0.0 0.0
208 2024-11-04 00:00:00-05:00 115.18000030517578 115.18000030517578 115.18000030517578 115.18000030517578 84.83486938476562 0 0.0 0.0 0.0
209 2024-11-05 00:00:00-05:00 116.44999694824219 116.44999694824219 116.44999694824219 116.44999694824219 85.77027130126953 0 0.0 0.0 0.0
210 2024-11-06 00:00:00-05:00 115.25 115.25 115.25 115.25 84.88642883300781 0 0.0 0.0 0.0
211 2024-11-07 00:00:00-05:00 116.37000274658203 116.37000274658203 116.37000274658203 116.37000274658203 85.71135711669922 0 0.0 0.0 0.0
212 2024-11-08 00:00:00-05:00 114.83000183105469 114.83000183105469 114.83000183105469 114.83000183105469 84.57707977294922 0 0.0 0.0 0.0
213 2024-11-11 00:00:00-05:00 115.4800033569336 115.4800033569336 115.4800033569336 115.4800033569336 85.05583190917969 0 0.0 0.0 0.0
214 2024-11-12 00:00:00-05:00 114.48999786376953 114.48999786376953 114.48999786376953 114.48999786376953 84.32665252685547 0 0.0 0.0 0.0
215 2024-11-13 00:00:00-05:00 114.61000061035156 114.61000061035156 114.61000061035156 114.61000061035156 84.4150390625 0 0.0 0.0 0.0
216 2024-11-14 00:00:00-05:00 114.18000030517578 114.18000030517578 114.18000030517578 114.18000030517578 84.09832763671875 0 0.0 0.0 0.0
217 2024-11-15 00:00:00-05:00 112.25 112.25 112.25 112.25 82.67680358886719 0 0.0 0.0 0.0
218 2024-11-18 00:00:00-05:00 112.87999725341797 112.87999725341797 112.87999725341797 112.87999725341797 83.14081573486328 0 0.0 0.0 0.0
219 2024-11-19 00:00:00-05:00 113.29000091552734 113.29000091552734 113.29000091552734 113.29000091552734 83.44280242919922 0 0.0 0.0 0.0
220 2024-11-20 00:00:00-05:00 113.37999725341797 113.37999725341797 113.37999725341797 113.37999725341797 83.50909423828125 0 0.0 0.0 0.0
221 2024-11-21 00:00:00-05:00 113.70999908447266 113.70999908447266 113.70999908447266 113.70999908447266 83.75215148925781 0 0.0 0.0 0.0
222 2024-11-22 00:00:00-05:00 114.16000366210938 114.16000366210938 114.16000366210938 114.16000366210938 84.0835952758789 0 0.0 0.0 0.0
223 2024-11-25 00:00:00-05:00 115.16000366210938 115.16000366210938 115.16000366210938 115.16000366210938 84.82013702392578 0 0.0 0.0 0.0
224 2024-11-26 00:00:00-05:00 114.76000213623047 114.76000213623047 114.76000213623047 114.76000213623047 84.52552032470703 0 0.0 0.0 0.0
225 2024-11-27 00:00:00-05:00 114.97000122070312 114.97000122070312 114.97000122070312 114.97000122070312 84.68019104003906 0 0.0 0.0 0.0
226 2024-11-29 00:00:00-05:00 115.33999633789062 115.33999633789062 115.33999633789062 115.33999633789062 84.95271301269531 0 0.0 0.0 0.0
227 2024-12-02 00:00:00-05:00 116.04000091552734 116.04000091552734 116.04000091552734 116.04000091552734 85.46829223632812 0 0.0 0.0 0.0
228 2024-12-03 00:00:00-05:00 116.11000061035156 116.11000061035156 116.11000061035156 116.11000061035156 85.51985168457031 0 0.0 0.0 0.0
229 2024-12-04 00:00:00-05:00 117.16000366210938 117.16000366210938 117.16000366210938 117.16000366210938 86.29322052001953 0 0.0 0.0 0.0
230 2024-12-05 00:00:00-05:00 117.36000061035156 117.36000061035156 117.36000061035156 117.36000061035156 86.4405288696289 0 0.0 0.0 0.0
231 2024-12-06 00:00:00-05:00 117.77999877929688 117.77999877929688 117.77999877929688 117.77999877929688 86.7498779296875 0 0.0 0.0 0.0
232 2024-12-09 00:00:00-05:00 117.75 117.75 117.75 117.75 86.72777557373047 0 0.0 0.0 0.0
233 2024-12-10 00:00:00-05:00 116.05999755859375 116.05999755859375 116.05999755859375 116.05999755859375 85.48302459716797 0 0.0 0.0 0.0
234 2024-12-11 00:00:00-05:00 117.06999969482422 117.06999969482422 117.06999969482422 117.06999969482422 86.22693634033203 0 0.0 0.0 0.0
235 2024-12-12 00:00:00-05:00 116.62000274658203 116.62000274658203 116.62000274658203 116.62000274658203 85.8954849243164 0 0.0 0.0 0.0
236 2024-12-13 00:00:00-05:00 116.26000213623047 116.26000213623047 116.26000213623047 116.26000213623047 85.63033294677734 0 0.0 0.0 0.0
237 2024-12-16 00:00:00-05:00 115.83000183105469 115.83000183105469 115.83000183105469 115.83000183105469 85.3136215209961 0 0.0 0.0 0.0
238 2024-12-17 00:00:00-05:00 115.58999633789062 115.58999633789062 115.58999633789062 115.58999633789062 85.13684844970703 0 0.0 0.0 0.0
239 2024-12-18 00:00:00-05:00 102.33000183105469 102.33000183105469 102.33000183105469 102.33000183105469 90.1654281616211 0 9.968 0.0 8.999
240 2024-12-19 00:00:00-05:00 102.04000091552734 102.04000091552734 102.04000091552734 102.04000091552734 89.90990447998047 0 0.0 0.0 0.0
241 2024-12-20 00:00:00-05:00 102.33000183105469 102.33000183105469 102.33000183105469 102.33000183105469 90.1654281616211 0 0.0 0.0 0.0
242 2024-12-23 00:00:00-05:00 103.13999938964844 103.13999938964844 103.13999938964844 103.13999938964844 90.87913513183594 0 0.0 0.0 0.0
243 2024-12-24 00:00:00-05:00 103.58999633789062 103.58999633789062 103.58999633789062 103.58999633789062 91.27564239501953 0 0.0 0.0 0.0
244 2024-12-26 00:00:00-05:00 103.41000366210938 103.41000366210938 103.41000366210938 103.41000366210938 91.1170425415039 0 0.0 0.0 0.0
245 2024-12-27 00:00:00-05:00 102.8499984741211 102.8499984741211 102.8499984741211 102.8499984741211 90.62361145019531 0 0.0 0.0 0.0
246 2024-12-30 00:00:00-05:00 101.94999694824219 101.94999694824219 101.94999694824219 101.94999694824219 89.83059692382812 0 0.0 0.0 0.0
247 2024-12-31 00:00:00-05:00 101.56999969482422 101.56999969482422 101.56999969482422 101.56999969482422 89.49577331542969 0 0.0 0.0 0.0
248 2025-01-02 00:00:00-05:00 101.69999694824219 101.69999694824219 101.69999694824219 101.69999694824219 89.61031341552734 0 0.0 0.0 0.0
249 2025-01-03 00:00:00-05:00 102.97000122070312 102.97000122070312 102.97000122070312 102.97000122070312 90.7293472290039 0 0.0 0.0 0.0
250 2025-01-06 00:00:00-05:00 104.37000274658203 104.37000274658203 104.37000274658203 104.37000274658203 91.96292114257812 0 0.0 0.0 0.0
251 2025-01-07 00:00:00-05:00 103.62000274658203 103.62000274658203 103.62000274658203 103.62000274658203 91.30207824707031 0 0.0 0.0 0.0
252 2025-01-08 00:00:00-05:00 103.38999938964844 103.38999938964844 103.38999938964844 103.38999938964844 91.09941864013672 0 0.0 0.0 0.0
253 2025-01-10 00:00:00-05:00 101.86000061035156 101.86000061035156 101.86000061035156 101.86000061035156 89.75129699707031 0 0.0 0.0 0.0
254 2025-01-13 00:00:00-05:00 100.91999816894531 100.91999816894531 100.91999816894531 100.91999816894531 88.92304229736328 0 0.0 0.0 0.0
255 2025-01-14 00:00:00-05:00 101.69000244140625 101.69000244140625 101.69000244140625 101.69000244140625 89.60150909423828 0 0.0 0.0 0.0
256 2025-01-15 00:00:00-05:00 103.26000213623047 103.26000213623047 103.26000213623047 103.26000213623047 90.98487091064453 0 0.0 0.0 0.0
257 2025-01-16 00:00:00-05:00 103.8499984741211 103.8499984741211 103.8499984741211 103.8499984741211 91.5047378540039 0 0.0 0.0 0.0
258 2025-01-17 00:00:00-05:00 104.31999969482422 104.31999969482422 104.31999969482422 104.31999969482422 91.91886138916016 0 0.0 0.0 0.0
259 2025-01-21 00:00:00-05:00 105.91999816894531 105.91999816894531 105.91999816894531 105.91999816894531 93.32865905761719 0 0.0 0.0 0.0
260 2025-01-22 00:00:00-05:00 106.37000274658203 106.37000274658203 106.37000274658203 106.37000274658203 93.72517395019531 0 0.0 0.0 0.0
261 2025-01-23 00:00:00-05:00 106.80000305175781 106.80000305175781 106.80000305175781 106.80000305175781 94.10405731201172 0 0.0 0.0 0.0
262 2025-01-24 00:00:00-05:00 107.51000213623047 107.51000213623047 107.51000213623047 107.51000213623047 94.72965240478516 0 0.0 0.0 0.0
263 2025-01-27 00:00:00-05:00 105.81999969482422 105.81999969482422 105.81999969482422 105.81999969482422 93.24054718017578 0 0.0 0.0 0.0
264 2025-01-28 00:00:00-05:00 107.05000305175781 107.05000305175781 107.05000305175781 107.05000305175781 94.32433319091797 0 0.0 0.0 0.0
265 2025-01-29 00:00:00-05:00 106.91999816894531 106.91999816894531 106.91999816894531 106.91999816894531 94.20978546142578 0 0.0 0.0 0.0
266 2025-01-30 00:00:00-05:00 108.61000061035156 108.61000061035156 108.61000061035156 108.61000061035156 95.69888305664062 0 0.0 0.0 0.0
267 2025-01-31 00:00:00-05:00 107.5 107.5 107.5 107.5 94.72084045410156 0 0.0 0.0 0.0
268 2025-02-03 00:00:00-05:00 106.0999984741211 106.0999984741211 106.0999984741211 106.0999984741211 93.48726654052734 0 0.0 0.0 0.0
269 2025-02-04 00:00:00-05:00 108.76000213623047 108.76000213623047 108.76000213623047 108.76000213623047 95.8310546875 0 0.0 0.0 0.0
270 2025-02-05 00:00:00-05:00 109.66000366210938 109.66000366210938 109.66000366210938 109.66000366210938 96.62406921386719 0 0.0 0.0 0.0
271 2025-02-06 00:00:00-05:00 109.97000122070312 109.97000122070312 109.97000122070312 109.97000122070312 96.897216796875 0 0.0 0.0 0.0
272 2025-02-07 00:00:00-05:00 109.0999984741211 109.0999984741211 109.0999984741211 109.0999984741211 96.1306381225586 0 0.0 0.0 0.0
273 2025-02-10 00:00:00-05:00 110.18000030517578 110.18000030517578 110.18000030517578 110.18000030517578 97.0822525024414 0 0.0 0.0 0.0
274 2025-02-11 00:00:00-05:00 110.38999938964844 110.38999938964844 110.38999938964844 110.38999938964844 97.26728820800781 0 0.0 0.0 0.0
275 2025-02-12 00:00:00-05:00 110.69999694824219 110.69999694824219 110.69999694824219 110.69999694824219 97.54043579101562 0 0.0 0.0 0.0
276 2025-02-13 00:00:00-05:00 112.79000091552734 112.79000091552734 112.79000091552734 112.79000091552734 99.38198852539062 0 0.0 0.0 0.0
277 2025-02-14 00:00:00-05:00 113.30000305175781 113.30000305175781 113.30000305175781 113.30000305175781 99.83135986328125 0 0.0 0.0 0.0
278 2025-02-18 00:00:00-05:00 114.2300033569336 114.2300033569336 114.2300033569336 114.2300033569336 100.65081024169922 0 0.0 0.0 0.0
279 2025-02-19 00:00:00-05:00 113.2300033569336 113.2300033569336 113.2300033569336 113.2300033569336 99.76968383789062 0 0.0 0.0 0.0
280 2025-02-20 00:00:00-05:00 113.4000015258789 113.4000015258789 113.4000015258789 113.4000015258789 99.91947174072266 0 0.0 0.0 0.0
281 2025-02-21 00:00:00-05:00 112.25 112.25 112.25 112.25 98.90618133544922 0 0.0 0.0 0.0
282 2025-02-24 00:00:00-05:00 110.66000366210938 110.66000366210938 110.66000366210938 110.66000366210938 97.50519561767578 0 0.0 0.0 0.0
283 2025-02-25 00:00:00-05:00 110.33999633789062 110.33999633789062 110.33999633789062 110.33999633789062 97.22322845458984 0 0.0 0.0 0.0
284 2025-02-26 00:00:00-05:00 111.33999633789062 111.33999633789062 111.33999633789062 111.33999633789062 98.10435485839844 0 0.0 0.0 0.0
285 2025-02-27 00:00:00-05:00 108.76000213623047 108.76000213623047 108.76000213623047 108.76000213623047 95.8310546875 0 0.0 0.0 0.0
286 2025-02-28 00:00:00-05:00 108.94999694824219 108.94999694824219 108.94999694824219 108.94999694824219 95.99846649169922 0 0.0 0.0 0.0
287 2025-03-03 00:00:00-05:00 107.4000015258789 107.4000015258789 107.4000015258789 107.4000015258789 94.63272857666016 0 0.0 0.0 0.0
288 2025-03-04 00:00:00-05:00 107.58999633789062 107.58999633789062 107.58999633789062 107.58999633789062 94.80013275146484 0 0.0 0.0 0.0
289 2025-03-05 00:00:00-05:00 110.94999694824219 110.94999694824219 110.94999694824219 110.94999694824219 97.76071166992188 0 0.0 0.0 0.0
290 2025-03-06 00:00:00-05:00 108.37000274658203 108.37000274658203 108.37000274658203 108.37000274658203 95.48741912841797 0 0.0 0.0 0.0
291 2025-03-07 00:00:00-05:00 108.62000274658203 108.62000274658203 108.62000274658203 108.62000274658203 95.70770263671875 0 0.0 0.0 0.0
292 2025-03-10 00:00:00-04:00 104.45999908447266 104.45999908447266 104.45999908447266 104.45999908447266 92.04222106933594 0 0.0 0.0 0.0
293 2025-03-11 00:00:00-04:00 105.0 105.0 105.0 105.0 92.51802825927734 0 0.0 0.0 0.0
294 2025-03-12 00:00:00-04:00 106.22000122070312 106.22000122070312 106.22000122070312 106.22000122070312 93.59300231933594 0 0.0 0.0 0.0
295 2025-03-13 00:00:00-04:00 104.9800033569336 104.9800033569336 104.9800033569336 104.9800033569336 92.50041198730469 0 0.0 0.0 0.0
296 2025-03-14 00:00:00-04:00 107.80999755859375 107.80999755859375 107.80999755859375 107.80999755859375 94.99398803710938 0 0.0 0.0 0.0
297 2025-03-17 00:00:00-04:00 109.62000274658203 109.62000274658203 109.62000274658203 109.62000274658203 96.58882141113281 0 0.0 0.0 0.0
298 2025-03-18 00:00:00-04:00 108.58999633789062 108.58999633789062 108.58999633789062 108.58999633789062 95.68125915527344 0 0.0 0.0 0.0
299 2025-03-19 00:00:00-04:00 109.5 109.5 109.5 109.5 96.48308563232422 0 0.0 0.0 0.0
300 2025-03-20 00:00:00-04:00 109.02999877929688 109.02999877929688 109.02999877929688 109.02999877929688 96.06895446777344 0 0.0 0.0 0.0
301 2025-03-21 00:00:00-04:00 108.02999877929688 108.02999877929688 108.02999877929688 108.02999877929688 95.18783569335938 0 0.0 0.0 0.0
302 2025-03-24 00:00:00-04:00 108.68000030517578 108.68000030517578 108.68000030517578 108.68000030517578 95.76056671142578 0 0.0 0.0 0.0
303 2025-03-25 00:00:00-04:00 108.68000030517578 108.68000030517578 108.68000030517578 108.68000030517578 95.76056671142578 0 0.0 0.0 0.0
304 2025-03-26 00:00:00-04:00 106.26000213623047 106.26000213623047 106.26000213623047 106.26000213623047 93.62825012207031 0 0.0 0.0 0.0
305 2025-03-27 00:00:00-04:00 106.6500015258789 106.6500015258789 106.6500015258789 106.6500015258789 93.97188568115234 0 0.0 0.0 0.0
306 2025-03-28 00:00:00-04:00 104.55999755859375 104.55999755859375 104.55999755859375 104.55999755859375 92.13033294677734 0 0.0 0.0 0.0
307 2025-03-31 00:00:00-04:00 103.01000213623047 103.01000213623047 103.01000213623047 103.01000213623047 90.76459503173828 0 0.0 0.0 0.0
308 2025-04-01 00:00:00-04:00 103.12999725341797 103.12999725341797 103.12999725341797 103.12999725341797 90.87032318115234 0 0.0 0.0 0.0
309 2025-04-02 00:00:00-04:00 103.81999969482422 103.81999969482422 103.81999969482422 103.81999969482422 91.47830200195312 0 0.0 0.0 0.0
310 2025-04-03 00:00:00-04:00 100.05999755859375 100.05999755859375 100.05999755859375 100.05999755859375 88.16527557373047 0 0.0 0.0 0.0
311 2025-04-04 00:00:00-04:00 93.5199966430664 93.5199966430664 93.5199966430664 93.5199966430664 82.40271759033203 0 0.0 0.0 0.0
312 2025-04-07 00:00:00-04:00 92.19999694824219 92.19999694824219 92.19999694824219 92.19999694824219 81.23963928222656 0 0.0 0.0 0.0
313 2025-04-08 00:00:00-04:00 91.36000061035156 91.36000061035156 91.36000061035156 91.36000061035156 80.49949645996094 0 0.0 0.0 0.0
314 2025-04-09 00:00:00-04:00 99.08000183105469 99.08000183105469 99.08000183105469 99.08000183105469 87.30177307128906 0 0.0 0.0 0.0
315 2025-04-10 00:00:00-04:00 96.3499984741211 96.3499984741211 96.3499984741211 96.3499984741211 84.89630126953125 0 0.0 0.0 0.0
316 2025-04-11 00:00:00-04:00 98.94000244140625 98.94000244140625 98.94000244140625 98.94000244140625 87.17842102050781 0 0.0 0.0 0.0
317 2025-04-14 00:00:00-04:00 99.91999816894531 99.91999816894531 99.91999816894531 99.91999816894531 88.04191589355469 0 0.0 0.0 0.0
318 2025-04-15 00:00:00-04:00 100.8499984741211 100.8499984741211 100.8499984741211 100.8499984741211 88.86135864257812 0 0.0 0.0 0.0
319 2025-04-16 00:00:00-04:00 98.98999786376953 98.98999786376953 98.98999786376953 98.98999786376953 87.22247314453125 0 0.0 0.0 0.0
320 2025-04-17 00:00:00-04:00 99.69000244140625 99.69000244140625 99.69000244140625 99.69000244140625 87.83926391601562 0 0.0 0.0 0.0
321 2025-04-21 00:00:00-04:00 98.72000122070312 98.72000122070312 98.72000122070312 98.72000122070312 86.98457336425781 0 0.0 0.0 0.0
322 2025-04-22 00:00:00-04:00 100.7699966430664 100.7699966430664 100.7699966430664 100.7699966430664 88.7908706665039 0 0.0 0.0 0.0
323 2025-04-23 00:00:00-04:00 102.27999877929688 102.27999877929688 102.27999877929688 102.27999877929688 90.12136840820312 0 0.0 0.0 0.0
324 2025-04-24 00:00:00-04:00 104.54000091552734 104.54000091552734 104.54000091552734 104.54000091552734 92.11270904541016 0 0.0 0.0 0.0
325 2025-04-25 00:00:00-04:00 105.2699966430664 105.2699966430664 105.2699966430664 105.2699966430664 92.75592803955078 0 0.0 0.0 0.0
326 2025-04-28 00:00:00-04:00 105.1500015258789 105.1500015258789 105.1500015258789 105.1500015258789 92.65019989013672 0 0.0 0.0 0.0
327 2025-04-29 00:00:00-04:00 105.36000061035156 105.36000061035156 105.36000061035156 105.36000061035156 92.83523559570312 0 0.0 0.0 0.0
328 2025-04-30 00:00:00-04:00 106.04000091552734 106.04000091552734 106.04000091552734 106.04000091552734 93.43439483642578 0 0.0 0.0 0.0
329 2025-05-01 00:00:00-04:00 106.0199966430664 106.0199966430664 106.0199966430664 106.0199966430664 93.4167709350586 0 0.0 0.0 0.0
330 2025-05-02 00:00:00-04:00 108.80999755859375 108.80999755859375 108.80999755859375 108.80999755859375 95.87510681152344 0 0.0 0.0 0.0
331 2025-05-05 00:00:00-04:00 108.61000061035156 108.61000061035156 108.61000061035156 108.61000061035156 95.69888305664062 0 0.0 0.0 0.0
332 2025-05-06 00:00:00-04:00 108.25 108.25 108.25 108.25 95.38168334960938 0 0.0 0.0 0.0
333 2025-05-07 00:00:00-04:00 108.25 108.25 108.25 108.25 95.38168334960938 0 0.0 0.0 0.0
334 2025-05-08 00:00:00-04:00 108.76000213623047 108.76000213623047 108.76000213623047 108.76000213623047 95.8310546875 0 0.0 0.0 0.0
335 2025-05-09 00:00:00-04:00 109.13999938964844 109.13999938964844 109.13999938964844 109.13999938964844 96.16587829589844 0 0.0 0.0 0.0
336 2025-05-12 00:00:00-04:00 111.88999938964844 111.88999938964844 111.88999938964844 111.88999938964844 98.58897399902344 0 0.0 0.0 0.0
337 2025-05-13 00:00:00-04:00 112.69999694824219 112.69999694824219 112.69999694824219 112.69999694824219 99.30268096923828 0 0.0 0.0 0.0
338 2025-05-14 00:00:00-04:00 113.33000183105469 113.33000183105469 113.33000183105469 113.33000183105469 99.85779571533203 0 0.0 0.0 0.0
339 2025-05-15 00:00:00-04:00 113.8499984741211 113.8499984741211 113.8499984741211 113.8499984741211 100.31597137451172 0 0.0 0.0 0.0
340 2025-05-16 00:00:00-04:00 114.13999938964844 114.13999938964844 114.13999938964844 114.13999938964844 100.57150268554688 0 0.0 0.0 0.0
341 2025-05-19 00:00:00-04:00 114.77999877929688 114.77999877929688 114.77999877929688 114.77999877929688 101.13542175292969 0 0.0 0.0 0.0
342 2025-05-20 00:00:00-04:00 114.86000061035156 114.86000061035156 114.86000061035156 114.86000061035156 101.2059097290039 0 0.0 0.0 0.0
343 2025-05-21 00:00:00-04:00 113.80999755859375 113.80999755859375 113.80999755859375 113.80999755859375 100.28073120117188 0 0.0 0.0 0.0
344 2025-05-22 00:00:00-04:00 113.7300033569336 113.7300033569336 113.7300033569336 113.7300033569336 100.21024322509766 0 0.0 0.0 0.0
345 2025-05-23 00:00:00-04:00 113.33000183105469 113.33000183105469 113.33000183105469 113.33000183105469 99.85779571533203 0 0.0 0.0 0.0
346 2025-05-27 00:00:00-04:00 114.27999877929688 114.27999877929688 114.27999877929688 114.27999877929688 100.69486236572266 0 0.0 0.0 0.0
347 2025-05-28 00:00:00-04:00 113.06999969482422 113.06999969482422 113.06999969482422 113.06999969482422 99.62870025634766 0 0.0 0.0 0.0
348 2025-05-29 00:00:00-04:00 113.47000122070312 113.47000122070312 113.47000122070312 113.47000122070312 99.98114776611328 0 0.0 0.0 0.0
349 2025-05-30 00:00:00-04:00 113.27999877929688 113.27999877929688 113.27999877929688 113.27999877929688 99.81373596191406 0 0.0 0.0 0.0
350 2025-06-02 00:00:00-04:00 114.18000030517578 114.18000030517578 114.18000030517578 114.18000030517578 100.60675048828125 0 0.0 0.0 0.0
351 2025-06-03 00:00:00-04:00 113.86000061035156 113.86000061035156 113.86000061035156 113.86000061035156 100.32479095458984 0 0.0 0.0 0.0
352 2025-06-04 00:00:00-04:00 114.94000244140625 114.94000244140625 114.94000244140625 114.94000244140625 101.27640533447266 0 0.0 0.0 0.0
353 2025-06-05 00:00:00-04:00 115.33999633789062 115.33999633789062 115.33999633789062 115.33999633789062 101.62884521484375 0 0.0 0.0 0.0
354 2025-06-06 00:00:00-04:00 115.56999969482422 115.56999969482422 115.56999969482422 115.56999969482422 101.83151245117188 0 0.0 0.0 0.0
355 2025-06-09 00:00:00-04:00 115.52999877929688 115.52999877929688 115.52999877929688 115.52999877929688 101.7962646484375 0 0.0 0.0 0.0
356 2025-06-10 00:00:00-04:00 116.08999633789062 116.08999633789062 116.08999633789062 116.08999633789062 102.28968811035156 0 0.0 0.0 0.0
357 2025-06-11 00:00:00-04:00 116.18000030517578 116.18000030517578 116.18000030517578 116.18000030517578 102.3689956665039 0 0.0 0.0 0.0
358 2025-06-12 00:00:00-04:00 116.30999755859375 116.30999755859375 116.30999755859375 116.30999755859375 102.48353576660156 0 0.0 0.0 0.0
359 2025-06-13 00:00:00-04:00 114.26000213623047 114.26000213623047 114.26000213623047 114.26000213623047 100.67723846435547 0 0.0 0.0 0.0
360 2025-06-16 00:00:00-04:00 115.30999755859375 115.30999755859375 115.30999755859375 115.30999755859375 101.6024169921875 0 0.0 0.0 0.0
361 2025-06-17 00:00:00-04:00 113.86000061035156 113.86000061035156 113.86000061035156 113.86000061035156 100.32479095458984 0 0.0 0.0 0.0
362 2025-06-18 00:00:00-04:00 113.66000366210938 113.66000366210938 113.66000366210938 113.66000366210938 100.14856719970703 0 0.0 0.0 0.0
363 2025-06-20 00:00:00-04:00 112.68000030517578 112.68000030517578 112.68000030517578 112.68000030517578 99.28506469726562 0 0.0 0.0 0.0
364 2025-06-23 00:00:00-04:00 113.69999694824219 113.69999694824219 113.69999694824219 113.69999694824219 100.18380737304688 0 0.0 0.0 0.0
365 2025-06-24 00:00:00-04:00 113.69999694824219 113.69999694824219 113.69999694824219 113.69999694824219 100.18380737304688 0 0.0 0.0 0.0
366 2025-06-25 00:00:00-04:00 116.13999938964844 116.13999938964844 116.13999938964844 116.13999938964844 102.33374786376953 0 0.0 0.0 0.0
367 2025-06-26 00:00:00-04:00 117.06999969482422 117.06999969482422 117.06999969482422 117.06999969482422 103.1531982421875 0 0.0 0.0 0.0
368 2025-06-27 00:00:00-04:00 118.05999755859375 118.05999755859375 118.05999755859375 118.05999755859375 104.02550506591797 0 0.0 0.0 0.0
369 2025-06-30 00:00:00-04:00 117.91999816894531 117.91999816894531 117.91999816894531 117.91999816894531 103.90215301513672 0 0.0 0.0 0.0
370 2025-07-01 00:00:00-04:00 116.98999786376953 116.98999786376953 116.98999786376953 116.98999786376953 103.08270263671875 0 0.0 0.0 0.0
371 2025-07-02 00:00:00-04:00 117.44999694824219 117.44999694824219 117.44999694824219 117.44999694824219 103.48802185058594 0 0.0 0.0 0.0
372 2025-07-03 00:00:00-04:00 117.77999877929688 117.77999877929688 117.77999877929688 117.77999877929688 103.77879333496094 0 0.0 0.0 0.0
373 2025-07-07 00:00:00-04:00 116.8499984741211 116.8499984741211 116.8499984741211 116.8499984741211 102.9593505859375 0 0.0 0.0 0.0
374 2025-07-08 00:00:00-04:00 117.62999725341797 117.62999725341797 117.62999725341797 117.62999725341797 103.64662170410156 0 0.0 0.0 0.0
375 2025-07-09 00:00:00-04:00 118.20999908447266 118.20999908447266 118.20999908447266 118.20999908447266 104.15767669677734 0 0.0 0.0 0.0
376 2025-07-10 00:00:00-04:00 117.73999786376953 117.73999786376953 117.73999786376953 117.73999786376953 103.74354553222656 0 0.0 0.0 0.0
377 2025-07-11 00:00:00-04:00 116.75 116.75 116.75 116.75 102.8712387084961 0 0.0 0.0 0.0
378 2025-07-14 00:00:00-04:00 116.77999877929688 116.77999877929688 116.77999877929688 116.77999877929688 102.89766693115234 0 0.0 0.0 0.0
379 2025-07-15 00:00:00-04:00 117.12000274658203 117.12000274658203 117.12000274658203 117.12000274658203 103.19725799560547 0 0.0 0.0 0.0
380 2025-07-16 00:00:00-04:00 117.43000030517578 117.43000030517578 117.43000030517578 117.43000030517578 103.47039794921875 0 0.0 0.0 0.0
381 2025-07-17 00:00:00-04:00 118.22000122070312 118.22000122070312 118.22000122070312 118.22000122070312 104.16648864746094 0 0.0 0.0 0.0
382 2025-07-18 00:00:00-04:00 117.61000061035156 117.61000061035156 117.61000061035156 117.61000061035156 103.6290054321289 0 0.0 0.0 0.0
383 2025-07-21 00:00:00-04:00 117.69999694824219 117.69999694824219 117.69999694824219 117.69999694824219 103.70829772949219 0 0.0 0.0 0.0
384 2025-07-22 00:00:00-04:00 117.69999694824219 117.69999694824219 117.69999694824219 117.69999694824219 103.70829772949219 0 0.0 0.0 0.0
385 2025-07-23 00:00:00-04:00 119.86000061035156 119.86000061035156 119.86000061035156 119.86000061035156 105.61153411865234 0 0.0 0.0 0.0
386 2025-07-24 00:00:00-04:00 119.44999694824219 119.44999694824219 119.44999694824219 119.44999694824219 105.2502670288086 0 0.0 0.0 0.0
387 2025-07-25 00:00:00-04:00 119.55999755859375 119.55999755859375 119.55999755859375 119.55999755859375 105.3471908569336 0 0.0 0.0 0.0
388 2025-07-28 00:00:00-04:00 118.44999694824219 118.44999694824219 118.44999694824219 118.44999694824219 104.36914825439453 0 0.0 0.0 0.0
389 2025-07-29 00:00:00-04:00 117.30999755859375 117.30999755859375 117.30999755859375 117.30999755859375 103.36466217041016 0 0.0 0.0 0.0
390 2025-07-30 00:00:00-04:00 115.87999725341797 115.87999725341797 115.87999725341797 115.87999725341797 102.10465240478516 0 0.0 0.0 0.0
391 2025-07-31 00:00:00-04:00 114.08999633789062 114.08999633789062 114.08999633789062 114.08999633789062 100.5274429321289 0 0.0 0.0 0.0
392 2025-08-01 00:00:00-04:00 113.19999694824219 113.19999694824219 113.19999694824219 113.19999694824219 99.74324035644531 0 0.0 0.0 0.0
393 2025-08-04 00:00:00-04:00 114.83999633789062 114.83999633789062 114.83999633789062 114.83999633789062 101.18828582763672 0 0.0 0.0 0.0
394 2025-08-05 00:00:00-04:00 114.33000183105469 114.33000183105469 114.33000183105469 114.33000183105469 100.7389144897461 0 0.0 0.0 0.0
395 2025-08-06 00:00:00-04:00 114.51000213623047 114.51000213623047 114.51000213623047 114.51000213623047 100.89752197265625 0 0.0 0.0 0.0
396 2025-08-07 00:00:00-04:00 116.08000183105469 116.08000183105469 116.08000183105469 116.08000183105469 102.2808837890625 0 0.0 0.0 0.0
397 2025-08-08 00:00:00-04:00 116.37000274658203 116.37000274658203 116.37000274658203 116.37000274658203 102.53641510009766 0 0.0 0.0 0.0
398 2025-08-11 00:00:00-04:00 115.36000061035156 115.36000061035156 115.36000061035156 115.36000061035156 101.64647674560547 0 0.0 0.0 0.0
399 2025-08-12 00:00:00-04:00 117.69999694824219 117.69999694824219 117.69999694824219 117.69999694824219 103.70829772949219 0 0.0 0.0 0.0
400 2025-08-13 00:00:00-04:00 118.58000183105469 118.58000183105469 118.58000183105469 118.58000183105469 104.48369598388672 0 0.0 0.0 0.0
401 2025-08-14 00:00:00-04:00 117.86000061035156 117.86000061035156 117.86000061035156 117.86000061035156 103.84928131103516 0 0.0 0.0 0.0
402 2025-08-15 00:00:00-04:00 118.9000015258789 118.9000015258789 118.9000015258789 118.9000015258789 104.76565551757812 0 0.0 0.0 0.0
403 2025-08-18 00:00:00-04:00 119.30999755859375 119.30999755859375 119.30999755859375 119.30999755859375 105.12691497802734 0 0.0 0.0 0.0
404 2025-08-19 00:00:00-04:00 118.86000061035156 118.86000061035156 118.86000061035156 118.86000061035156 104.73040771484375 0 0.0 0.0 0.0
405 2025-08-20 00:00:00-04:00 118.56999969482422 118.56999969482422 118.56999969482422 118.56999969482422 104.47488403320312 0 0.0 0.0 0.0
406 2025-08-21 00:00:00-04:00 117.94000244140625 117.94000244140625 117.94000244140625 117.94000244140625 103.9197769165039 0 0.0 0.0 0.0
407 2025-08-22 00:00:00-04:00 120.2300033569336 120.2300033569336 120.2300033569336 120.2300033569336 105.93755340576172 0 0.0 0.0 0.0
408 2025-08-25 00:00:00-04:00 119.3499984741211 119.3499984741211 119.3499984741211 119.3499984741211 105.16215515136719 0 0.0 0.0 0.0
409 2025-08-26 00:00:00-04:00 119.80000305175781 119.80000305175781 119.80000305175781 119.80000305175781 105.55867004394531 0 0.0 0.0 0.0
410 2025-08-27 00:00:00-04:00 119.19999694824219 119.19999694824219 119.19999694824219 119.19999694824219 105.02999114990234 0 0.0 0.0 0.0
411 2025-08-28 00:00:00-04:00 119.52999877929688 119.52999877929688 119.52999877929688 119.52999877929688 105.32076263427734 0 0.0 0.0 0.0
412 2025-08-29 00:00:00-04:00 118.58999633789062 118.58999633789062 118.58999633789062 118.58999633789062 104.49250030517578 0 0.0 0.0 0.0
413 2025-09-02 00:00:00-04:00 117.0999984741211 117.0999984741211 117.0999984741211 117.0999984741211 103.17962646484375 0 0.0 0.0 0.0
414 2025-09-03 00:00:00-04:00 117.66000366210938 117.66000366210938 117.66000366210938 117.66000366210938 103.67306518554688 0 0.0 0.0 0.0
415 2025-09-04 00:00:00-04:00 118.58000183105469 118.58000183105469 118.58000183105469 118.58000183105469 104.48369598388672 0 0.0 0.0 0.0
416 2025-09-05 00:00:00-04:00 119.41000366210938 119.41000366210938 119.41000366210938 119.41000366210938 105.21502685546875 0 0.0 0.0 0.0
417 2025-09-08 00:00:00-04:00 120.5 120.5 120.5 120.5 106.17545318603516 0 0.0 0.0 0.0
418 2025-09-09 00:00:00-04:00 120.86000061035156 120.86000061035156 120.86000061035156 120.86000061035156 106.49266052246094 0 0.0 0.0 0.0
419 2025-09-10 00:00:00-04:00 120.61000061035156 120.61000061035156 120.61000061035156 120.61000061035156 106.27237701416016 0 0.0 0.0 0.0
420 2025-09-11 00:00:00-04:00 121.5999984741211 121.5999984741211 121.5999984741211 121.5999984741211 107.14468383789062 0 0.0 0.0 0.0
421 2025-09-12 00:00:00-04:00 121.20999908447266 121.20999908447266 121.20999908447266 121.20999908447266 106.8010482788086 0 0.0 0.0 0.0
422 2025-09-15 00:00:00-04:00 122.43000030517578 122.43000030517578 122.43000030517578 122.43000030517578 107.87602233886719 0 0.0 0.0 0.0
423 2025-09-16 00:00:00-04:00 122.9000015258789 122.9000015258789 122.9000015258789 122.9000015258789 108.29015350341797 0 0.0 0.0 0.0
424 2025-09-17 00:00:00-04:00 123.11000061035156 123.11000061035156 123.11000061035156 123.11000061035156 108.47518920898438 0 0.0 0.0 0.0
425 2025-09-18 00:00:00-04:00 124.75 124.75 124.75 124.75 109.92022705078125 0 0.0 0.0 0.0
426 2025-09-19 00:00:00-04:00 123.94000244140625 123.94000244140625 123.94000244140625 123.94000244140625 109.2065200805664 0 0.0 0.0 0.0
427 2025-09-22 00:00:00-04:00 124.56999969482422 124.56999969482422 124.56999969482422 124.56999969482422 109.76162719726562 0 0.0 0.0 0.0
428 2025-09-23 00:00:00-04:00 124.0 124.0 124.0 124.0 109.25938415527344 0 0.0 0.0 0.0
429 2025-09-24 00:00:00-04:00 123.26000213623047 123.26000213623047 123.26000213623047 123.26000213623047 108.60735321044922 0 0.0 0.0 0.0
430 2025-09-25 00:00:00-04:00 122.22000122070312 122.22000122070312 122.22000122070312 122.22000122070312 107.69098663330078 0 0.0 0.0 0.0
431 2025-09-26 00:00:00-04:00 122.12000274658203 122.12000274658203 122.12000274658203 122.12000274658203 107.60287475585938 0 0.0 0.0 0.0
432 2025-09-29 00:00:00-04:00 123.16999816894531 123.16999816894531 123.16999816894531 123.16999816894531 108.5280532836914 0 0.0 0.0 0.0
433 2025-09-30 00:00:00-04:00 123.19999694824219 123.19999694824219 123.19999694824219 123.19999694824219 108.55448150634766 0 0.0 0.0 0.0
434 2025-10-01 00:00:00-04:00 123.86000061035156 123.86000061035156 123.86000061035156 123.86000061035156 109.13603210449219 0 0.0 0.0 0.0
435 2025-10-02 00:00:00-04:00 125.30999755859375 125.30999755859375 125.30999755859375 125.30999755859375 110.41365814208984 0 0.0 0.0 0.0
436 2025-10-03 00:00:00-04:00 125.6500015258789 125.6500015258789 125.6500015258789 125.6500015258789 110.71324157714844 0 0.0 0.0 0.0
437 2025-10-06 00:00:00-04:00 126.88999938964844 126.88999938964844 126.88999938964844 126.88999938964844 111.80583190917969 0 0.0 0.0 0.0
438 2025-10-07 00:00:00-04:00 125.58000183105469 125.58000183105469 125.58000183105469 125.58000183105469 110.65156555175781 0 0.0 0.0 0.0
439 2025-10-08 00:00:00-04:00 126.12000274658203 126.12000274658203 126.12000274658203 126.12000274658203 111.12737274169922 0 0.0 0.0 0.0
440 2025-10-09 00:00:00-04:00 125.04000091552734 125.04000091552734 125.04000091552734 125.04000091552734 110.1757583618164 0 0.0 0.0 0.0
441 2025-10-10 00:00:00-04:00 120.52999877929688 120.52999877929688 120.52999877929688 120.52999877929688 106.2018814086914 0 0.0 0.0 0.0
442 2025-10-13 00:00:00-04:00 123.08000183105469 123.08000183105469 123.08000183105469 123.08000183105469 108.4487533569336 0 0.0 0.0 0.0
443 2025-10-14 00:00:00-04:00 122.54000091552734 122.54000091552734 122.54000091552734 122.54000091552734 107.97294616699219 0 0.0 0.0 0.0
444 2025-10-15 00:00:00-04:00 122.83999633789062 122.83999633789062 122.83999633789062 122.83999633789062 108.2372817993164 0 0.0 0.0 0.0
445 2025-10-16 00:00:00-04:00 122.97000122070312 122.97000122070312 122.97000122070312 122.97000122070312 108.3518295288086 0 0.0 0.0 0.0
446 2025-10-17 00:00:00-04:00 123.04000091552734 123.04000091552734 123.04000091552734 123.04000091552734 108.41350555419922 0 0.0 0.0 0.0
447 2025-10-20 00:00:00-04:00 124.7699966430664 124.7699966430664 124.7699966430664 124.7699966430664 109.93785095214844 0 0.0 0.0 0.0
448 2025-10-21 00:00:00-04:00 124.12000274658203 124.12000274658203 124.12000274658203 124.12000274658203 109.36511993408203 0 0.0 0.0 0.0
449 2025-10-22 00:00:00-04:00 122.66999816894531 122.66999816894531 122.66999816894531 122.66999816894531 108.08748626708984 0 0.0 0.0 0.0
450 2025-10-23 00:00:00-04:00 123.94999694824219 123.94999694824219 123.94999694824219 123.94999694824219 109.21532440185547 0 0.0 0.0 0.0
451 2025-10-24 00:00:00-04:00 124.44000244140625 124.44000244140625 124.44000244140625 124.44000244140625 109.64707946777344 0 0.0 0.0 0.0
452 2025-10-27 00:00:00-04:00 126.18000030517578 126.18000030517578 126.18000030517578 126.18000030517578 111.18023681640625 0 0.0 0.0 0.0
453 2025-10-28 00:00:00-04:00 125.7300033569336 125.7300033569336 125.7300033569336 125.7300033569336 110.78373718261719 0 0.0 0.0 0.0
454 2025-10-29 00:00:00-04:00 126.0 126.0 126.0 126.0 111.02163696289062 0 0.0 0.0 0.0
455 2025-10-30 00:00:00-04:00 125.30000305175781 125.30000305175781 125.30000305175781 125.30000305175781 110.40484619140625 0 0.0 0.0 0.0
456 2025-10-31 00:00:00-04:00 124.94000244140625 124.94000244140625 124.94000244140625 124.94000244140625 110.087646484375 0 0.0 0.0 0.0
457 2025-11-03 00:00:00-05:00 125.08000183105469 125.08000183105469 125.08000183105469 125.08000183105469 110.21099853515625 0 0.0 0.0 0.0
458 2025-11-04 00:00:00-05:00 122.6500015258789 122.6500015258789 122.6500015258789 122.6500015258789 108.06986999511719 0 0.0 0.0 0.0
459 2025-11-05 00:00:00-05:00 123.1500015258789 123.1500015258789 123.1500015258789 123.1500015258789 108.51042938232422 0 0.0 0.0 0.0
460 2025-11-06 00:00:00-05:00 121.4000015258789 121.4000015258789 121.4000015258789 121.4000015258789 106.96846771240234 0 0.0 0.0 0.0
461 2025-11-07 00:00:00-05:00 120.95999908447266 120.95999908447266 120.95999908447266 120.95999908447266 106.58076477050781 0 0.0 0.0 0.0
462 2025-11-10 00:00:00-05:00 122.8499984741211 122.8499984741211 122.8499984741211 122.8499984741211 108.24609375 0 0.0 0.0 0.0
463 2025-11-11 00:00:00-05:00 123.30000305175781 123.30000305175781 123.30000305175781 123.30000305175781 108.6426010131836 0 0.0 0.0 0.0
464 2025-11-12 00:00:00-05:00 123.6500015258789 123.6500015258789 123.6500015258789 123.6500015258789 108.95099639892578 0 0.0 0.0 0.0
465 2025-11-13 00:00:00-05:00 121.47000122070312 121.47000122070312 121.47000122070312 121.47000122070312 107.03014373779297 0 0.0 0.0 0.0
466 2025-11-14 00:00:00-05:00 121.33000183105469 121.33000183105469 121.33000183105469 121.33000183105469 106.90678405761719 0 0.0 0.0 0.0
467 2025-11-17 00:00:00-05:00 119.73999786376953 119.73999786376953 119.73999786376953 119.73999786376953 105.50579833984375 0 0.0 0.0 0.0
468 2025-11-18 00:00:00-05:00 118.41000366210938 118.41000366210938 118.41000366210938 118.41000366210938 104.33390808105469 0 0.0 0.0 0.0
469 2025-11-19 00:00:00-05:00 118.27999877929688 118.27999877929688 118.27999877929688 118.27999877929688 104.21935272216797 0 0.0 0.0 0.0
470 2025-11-20 00:00:00-05:00 115.16000366210938 115.16000366210938 115.16000366210938 115.16000366210938 101.47025299072266 0 0.0 0.0 0.0
471 2025-11-21 00:00:00-05:00 116.56999969482422 116.56999969482422 116.56999969482422 116.56999969482422 102.71263122558594 0 0.0 0.0 0.0
472 2025-11-24 00:00:00-05:00 117.61000061035156 117.61000061035156 117.61000061035156 117.61000061035156 103.6290054321289 0 0.0 0.0 0.0
473 2025-11-25 00:00:00-05:00 118.8499984741211 118.8499984741211 118.8499984741211 118.8499984741211 104.72159576416016 0 0.0 0.0 0.0
474 2025-11-26 00:00:00-05:00 119.88999938964844 119.88999938964844 119.88999938964844 119.88999938964844 105.6379623413086 0 0.0 0.0 0.0
475 2025-11-28 00:00:00-05:00 120.91000366210938 120.91000366210938 120.91000366210938 120.91000366210938 106.53671264648438 0 0.0 0.0 0.0
476 2025-12-01 00:00:00-05:00 120.0 120.0 120.0 120.0 105.7348861694336 0 0.0 0.0 0.0
477 2025-12-02 00:00:00-05:00 120.7699966430664 120.7699966430664 120.7699966430664 120.7699966430664 106.4133529663086 0 0.0 0.0 0.0
478 2025-12-03 00:00:00-05:00 121.38999938964844 121.38999938964844 121.38999938964844 121.38999938964844 106.95964813232422 0 0.0 0.0 0.0
479 2025-12-04 00:00:00-05:00 121.55999755859375 121.55999755859375 121.55999755859375 121.55999755859375 107.10944366455078 0 0.0 0.0 0.0
480 2025-12-05 00:00:00-05:00 121.5199966430664 121.5199966430664 121.5199966430664 121.5199966430664 107.0741958618164 0 0.0 0.0 0.0
481 2025-12-08 00:00:00-05:00 121.48999786376953 121.48999786376953 121.48999786376953 121.48999786376953 107.04776000976562 0 0.0 0.0 0.0
482 2025-12-09 00:00:00-05:00 121.16000366210938 121.16000366210938 121.16000366210938 121.16000366210938 106.75699615478516 0 0.0 0.0 0.0
483 2025-12-10 00:00:00-05:00 122.55000305175781 122.55000305175781 122.55000305175781 122.55000305175781 107.98175811767578 0 0.0 0.0 0.0
484 2025-12-11 00:00:00-05:00 122.66999816894531 122.66999816894531 122.66999816894531 122.66999816894531 108.08748626708984 0 0.0 0.0 0.0
485 2025-12-12 00:00:00-05:00 121.08999633789062 121.08999633789062 121.08999633789062 121.08999633789062 106.6953125 0 0.0 0.0 0.0
486 2025-12-15 00:00:00-05:00 120.7699966430664 120.7699966430664 120.7699966430664 120.7699966430664 106.4133529663086 0 0.0 0.0 0.0
487 2025-12-16 00:00:00-05:00 120.0999984741211 120.0999984741211 120.0999984741211 120.0999984741211 105.822998046875 0 0.0 0.0 0.0
488 2025-12-17 00:00:00-05:00 110.44000244140625 110.44000244140625 110.44000244140625 110.44000244140625 110.44000244140625 0 7.857 0.0 6.42
489 2025-12-18 00:00:00-05:00 111.77999877929688 111.77999877929688 111.77999877929688 111.77999877929688 111.77999877929688 0 0.0 0.0 0.0
490 2025-12-19 00:00:00-05:00 112.76000213623047 112.76000213623047 112.76000213623047 112.76000213623047 112.76000213623047 0 0.0 0.0 0.0
491 2025-12-22 00:00:00-05:00 113.37999725341797 113.37999725341797 113.37999725341797 113.37999725341797 113.37999725341797 0 0.0 0.0 0.0
492 2025-12-23 00:00:00-05:00 114.01000213623047 114.01000213623047 114.01000213623047 114.01000213623047 114.01000213623047 0 0.0 0.0 0.0
493 2025-12-24 00:00:00-05:00 114.12999725341797 114.12999725341797 114.12999725341797 114.12999725341797 114.12999725341797 0 0.0 0.0 0.0
494 2025-12-26 00:00:00-05:00 114.70999908447266 114.70999908447266 114.70999908447266 114.70999908447266 114.70999908447266 0 0.0 0.0 0.0
495 2025-12-29 00:00:00-05:00 114.44000244140625 114.44000244140625 114.44000244140625 114.44000244140625 114.44000244140625 0 0.0 0.0 0.0
496 2025-12-30 00:00:00-05:00 114.37999725341797 114.37999725341797 114.37999725341797 114.37999725341797 114.37999725341797 0 0.0 0.0 0.0
497 2025-12-31 00:00:00-05:00 113.98999786376953 113.98999786376953 113.98999786376953 113.98999786376953 113.98999786376953 0 0.0 0.0 0.0
498 2026-01-02 00:00:00-05:00 115.68000030517578 115.68000030517578 115.68000030517578 115.68000030517578 115.68000030517578 0 0.0 0.0 0.0
499 2026-01-05 00:00:00-05:00 118.0999984741211 118.0999984741211 118.0999984741211 118.0999984741211 118.0999984741211 0 0.0 0.0 0.0
500 2026-01-06 00:00:00-05:00 118.98999786376953 118.98999786376953 118.98999786376953 118.98999786376953 118.98999786376953 0 0.0 0.0 0.0
501 2026-01-07 00:00:00-05:00 118.0199966430664 118.0199966430664 118.0199966430664 118.0199966430664 118.0199966430664 0 0.0 0.0 0.0
502 2026-01-08 00:00:00-05:00 117.5 117.5 117.5 117.5 117.5 0 0.0 0.0 0.0
503 2026-01-09 00:00:00-05:00 118.62000274658203 118.62000274658203 118.62000274658203 118.62000274658203 118.62000274658203 0 0.0 0.0 0.0

View File

@@ -123,7 +123,7 @@ class TestPriceRepair(unittest.TestCase):
tkrs = ["BHP.AX", "IMP.JO", "BP.L", "PNL.L", "INTC"]
dt_now = _pd.Timestamp.utcnow()
dt_now = _pd.Timestamp.now('UTC')
td_60d = _dt.timedelta(days=60)
# Round time for 'requests_cache' reuse
@@ -303,10 +303,9 @@ class TestPriceRepair(unittest.TestCase):
# Sometimes Yahoo suddenly shifts from cents->$ from some recent date.
tkrs = ['AET.L', 'SSW.JO']
intervals = ['1d', '1wk']
# tkrs = ['AET.L']
# intervals = ['1wk']
# import yfinance as yf ; yf.enable_debug_mode()
# intervals = ['1d', '1wk']
# Give up repairing 1wk intervals directly. Instead will resample from 1d
intervals = ['1d']
for tkr in tkrs:
for interval in intervals:
@@ -530,33 +529,36 @@ class TestPriceRepair(unittest.TestCase):
# print(repaired_df[c] - correct_df[c])
raise
# Had very high price volatility in Jan-2021 around split date that could
# be mistaken for missing stock split adjustment. And old logic did think
# column 'High' required fixing - wrong!
sketchy_tkrs = ['FIZZ']
intervals = ['1wk']
for tkr in sketchy_tkrs:
for interval in intervals:
dat = yf.Ticker(tkr, session=self.session)
tz_exchange = dat.fast_info["timezone"]
hist = dat._lazy_load_price_history()
false_positives = {}
# FIZZ had very high price volatility in Jan-2021 around split date:
false_positives['FIZZ'] = {'interval': '1d', 'start': '2020-11-30', 'end': '2021-04-01'}
# GME has crazy price action in Jan 2021, mistaken for missing 2007 split
false_positives['GME'] = {'interval': '1d', 'start': '2007-01-01', 'end': '2023-01-01'}
# NVDA has a ~33% price drop on 2004-08-06, confused with earlier 3:2 split
false_positives['NVDA'] = {'interval': '1d', 'start': '2001-07-01', 'end': '2007-09-15'}
# yf.config.debug.logging = True
for tkr, args in false_positives.items():
interval = args['interval']
dat = yf.Ticker(tkr, session=self.session)
tz_exchange = dat.fast_info["timezone"]
hist = dat._lazy_load_price_history()
df_good = hist.history(start='2020-11-30', end='2021-04-01', interval=interval, auto_adjust=False)
df_good = hist.history(auto_adjust=False, **args)
repaired_df = hist._fix_bad_stock_splits(df_good, interval, tz_exchange)
repaired_df = hist._fix_bad_stock_splits(df_good, interval, tz_exchange)
# Expect no change from repair
df_good = df_good.sort_index()
repaired_df = repaired_df.sort_index()
for c in ["Open", "Low", "High", "Close", "Adj Close", "Volume"]:
try:
self.assertTrue((repaired_df[c].to_numpy() == df_good[c].to_numpy()).all())
except AssertionError:
print(f"tkr={tkr} interval={interval} COLUMN={c}")
df_dbg = df_good[[c]].join(repaired_df[[c]], lsuffix='.good', rsuffix='.repaired')
f_diff = repaired_df[c].to_numpy() != df_good[c].to_numpy()
print(df_dbg[f_diff | _np.roll(f_diff, 1) | _np.roll(f_diff, -1)])
raise
# Expect no change from repair
df_good = df_good.sort_index()
repaired_df = repaired_df.sort_index()
for c in ["Open", "Low", "High", "Close", "Adj Close", "Volume"]:
try:
self.assertTrue((repaired_df[c].to_numpy() == df_good[c].to_numpy()).all())
except AssertionError:
print(f"tkr={tkr} interval={interval} COLUMN={c}")
df_dbg = df_good[[c]].join(repaired_df[[c]], lsuffix='.good', rsuffix='.repaired')
f_diff = repaired_df[c].to_numpy() != df_good[c].to_numpy()
print(df_dbg[f_diff | _np.roll(f_diff, 1) | _np.roll(f_diff, -1)])
raise
def test_repair_bad_div_adjusts(self):
interval = '1d'
@@ -601,7 +603,6 @@ class TestPriceRepair(unittest.TestCase):
# Phantom divs
bad_tkrs += ['KAP.IL'] # 1x 1d phantom div, and false positives 0.01x in 1wk
bad_tkrs += ['SAND']
bad_tkrs += ['TEM.L']
bad_tkrs += ['TEP.PA']
@@ -695,6 +696,44 @@ class TestPriceRepair(unittest.TestCase):
print(repaired_df[c][f_diff] - correct_df[c][f_diff])
raise
def test_repair_capital_gains_double_count(self):
bad_tkrs = ['DODFX', 'VWILX', 'JENYX']
for tkr in bad_tkrs:
dat = yf.Ticker(tkr, session=self.session)
hist = dat._lazy_load_price_history()
interval = '1d'
fp = os.path.join(self.dp, "data", tkr.replace('.','-')+'-'+interval+"-cg-double-count.csv")
df_bad = _pd.read_csv(fp, index_col="Date")
df_bad.index = _pd.to_datetime(df_bad.index, utc=True)
repaired_df = hist._repair_capital_gains(df_bad)
fp = os.path.join(self.dp, "data", tkr.replace('.','-')+'-'+interval+"-cg-double-count-fixed.csv")
correct_df = _pd.read_csv(fp, index_col="Date")
correct_df.index = _pd.to_datetime(correct_df.index, utc=True)
repaired_df = repaired_df.sort_index()
correct_df = correct_df.sort_index()
for c in ["Open", "Low", "High", "Close", "Adj Close", "Volume"]:
try:
self.assertTrue(_np.isclose(repaired_df[c], correct_df[c], rtol=5e-6).all())
except AssertionError:
f = (correct_df['Capital Gains']!=0).to_numpy()
f2 = f|_np.roll(f,1)|_np.roll(f,2)|_np.roll(f,-1)|_np.roll(f,-2)
print(f"tkr={tkr} COLUMN={c}")
print("- repaired_df")
print(repaired_df[f2].drop(['Open', 'High', 'Low', 'Volume', 'Capital Gains'], axis=1))
print("- repaired_df[c]")
print(repaired_df[f2][c])
print("- correct_df[c]:")
print(correct_df[f2][c])
print("- diff:")
print(repaired_df[f2][c] - correct_df[f2][c])
raise
if __name__ == '__main__':
unittest.main()

View File

@@ -69,7 +69,7 @@ class TestPriceHistory(unittest.TestCase):
dat = yf.Ticker(tkr, session=self.session)
tz = dat._get_ticker_tz(timeout=None)
dt_utc = _pd.Timestamp.utcnow()
dt_utc = _pd.Timestamp.now('UTC')
dt = dt_utc.astimezone(_tz.timezone(tz))
start_d = dt.date() - _dt.timedelta(days=7)
df = dat.history(start=start_d, interval="1h")
@@ -89,7 +89,7 @@ class TestPriceHistory(unittest.TestCase):
dat = yf.Ticker(tkr, session=self.session)
tz = dat._get_ticker_tz(timeout=None)
dt_utc = _pd.Timestamp.utcnow()
dt_utc = _pd.Timestamp.now('UTC')
dt = dt_utc.astimezone(_tz.timezone(tz))
if dt.time() < _dt.time(17, 0):
continue

View File

@@ -56,4 +56,4 @@ def set_config(proxy=_NOTSET, retries=_NOTSET):
if retries is not _NOTSET:
warnings.warn("Set retries via new config control: yf.config.network.retries = retries", DeprecationWarning)
config.network.retries = retries
__all__ += ["set_config"]
__all__ += ['config', 'set_config']

View File

@@ -480,7 +480,7 @@ class TickerBase:
# Process dates
tz = self._get_ticker_tz(timeout=10)
dt_now = pd.Timestamp.utcnow().tz_convert(tz)
dt_now = pd.Timestamp.now('UTC').tz_convert(tz)
if start is not None:
start = utils._parse_user_dt(start, tz)
if end is not None:

View File

@@ -1,5 +1,6 @@
from __future__ import annotations # Just in case
import json
from typing import Any, Optional
from typing import Any, Optional, List, Union, Dict
import warnings
import numpy as np
from requests import Session, Response, exceptions
@@ -30,7 +31,7 @@ class CalendarQuery:
```
"""
def __init__(self, operator: str, operand: list[Any] | list["CalendarQuery"]):
def __init__(self, operator: str, operand: Union[List[Any], List["CalendarQuery"]]):
"""
:param operator: Operator string, e.g., 'eq', 'gte', 'and', 'or'.
:param operand: List of operands: can be values (str, int), or other Operands instances (nested).
@@ -179,8 +180,8 @@ class Calendars:
def __init__(
self,
start: Optional[str | datetime | date] = None,
end: Optional[str | datetime | date] = None,
start: Optional[Union[str, datetime, date]] = None,
end: Optional[Union[str, datetime, date]] = None,
session: Optional[Session] = None,
):
"""
@@ -208,9 +209,9 @@ class Calendars:
self._most_active_qy: CalendarQuery = CalendarQuery("or", [])
self._cache_request_body = {}
self.calendars: dict[str, pd.DataFrame] = {}
self.calendars: Dict[str, pd.DataFrame] = {}
def _parse_date_param(self, _date: Optional[str | datetime | date | int]) -> str:
def _parse_date_param(self, _date: Optional[Union[str, datetime, date, int]]) -> str:
if not _date:
return ""
else:

View File

@@ -366,7 +366,7 @@ _MIC_TO_YAHOO_SUFFIX = {
'XJSE': 'JO', # South Africa
'XKRX': 'KS', 'KQKS': 'KQ', # South Korea
'BMEX': 'MC', # Spain
'XTAD': 'SAU', # Saudi Arabia
'XSAU': 'SR', # Saudi Arabia
'XSTO': 'ST', # Sweden
'XSWX': 'SW', # Switzerland
'ROCO': 'TWO', 'XTAI': 'TW', # Taiwan

View File

@@ -117,7 +117,7 @@ class Financials:
url = ts_url_base + "&type=" + ",".join([timescale + k for k in keys])
# Yahoo returns maximum 4 years or 5 quarters, regardless of start_dt:
start_dt = datetime.datetime(2016, 12, 31)
end = pd.Timestamp.utcnow().ceil("D")
end = pd.Timestamp.now('UTC').ceil("D")
url += f"&period1={int(start_dt.timestamp())}&period2={int(end.timestamp())}"
# Step 3: fetch and reshape data

View File

@@ -101,9 +101,9 @@ class PriceHistory:
logger.error(err_msg)
return utils.empty_df()
if period == 'ytd':
start = _datetime.date(pd.Timestamp.utcnow().tz_convert(tz).year, 1, 1)
start = _datetime.date(pd.Timestamp.now('UTC').tz_convert(tz).year, 1, 1)
else:
start = pd.Timestamp.utcnow().tz_convert(tz).date()
start = pd.Timestamp.now('UTC').tz_convert(tz).date()
start -= utils._interval_to_timedelta(period)
start -= _datetime.timedelta(days=4)
period_user = period
@@ -141,7 +141,7 @@ class PriceHistory:
start_dt = end_dt - utils._interval_to_timedelta('1mo')
start = int(start_dt.timestamp())
elif not end:
end_dt = pd.Timestamp.utcnow().tz_convert(tz)
end_dt = pd.Timestamp.now('UTC').tz_convert(tz)
end = int(end_dt.timestamp())
else:
if period.lower() == "max":
@@ -198,7 +198,7 @@ class PriceHistory:
get_fn = self._data.get
if end is not None:
end_dt = pd.Timestamp(end, unit='s').tz_localize("UTC")
dt_now = pd.Timestamp.utcnow()
dt_now = pd.Timestamp.now('UTC')
data_delay = _datetime.timedelta(minutes=30)
if end_dt + data_delay <= dt_now:
# Date range in past so safe to fetch through cache:
@@ -457,6 +457,10 @@ class PriceHistory:
df = self._fix_bad_stock_splits(df, interval, tz_exchange)
# Must repair 100x and split errors before price reconstruction
df = self._fix_zeroes(df, interval, tz_exchange, prepost)
# New:
df = self._repair_capital_gains(df)
df = df.sort_index()
# Auto/back adjust
@@ -673,7 +677,7 @@ class PriceHistory:
min_dt = None
else:
m -= _datetime.timedelta(days=1) # allow space for 1-day padding
min_dt = pd.Timestamp.utcnow() - m
min_dt = pd.Timestamp.now('UTC') - m
min_dt = min_dt.tz_convert(df.index.tz).ceil("D")
logger.debug(f"min_dt={min_dt} interval={interval} sub_interval={sub_interval}", extra=log_extras)
if min_dt is not None:
@@ -1020,7 +1024,7 @@ class PriceHistory:
return df, currency
last_row = df.iloc[np.where(f_volume)[0][-1]]
prices_in_subunits = True # usually is true
if last_row.name > (pd.Timestamp.utcnow() - _datetime.timedelta(days=30)):
if last_row.name > (pd.Timestamp.now('UTC') - _datetime.timedelta(days=30)):
try:
ratio = self._history_metadata['regularMarketPrice'] / last_row['Close']
if abs((ratio*m)-1) < 0.1:
@@ -1403,6 +1407,120 @@ class PriceHistory:
return df2
@utils.log_indent_decorator
def _repair_capital_gains(self, df):
# Yahoo has started double-counting capital gains in Adj Close,
# by pre-adding it to dividends column.
if 'Capital Gains' not in df.columns:
return df
if (df['Capital Gains'] == 0).all():
return df
debug = False
# debug = True
logger = utils.get_yf_logger()
log_extras = {'yf_cat': 'repair-capital-gains', 'yf_symbol': self.ticker}
df = df.copy()
df = df.sort_index()
# Consider price drop to decide if Yahoo double-counted -
# drop should = true dividend + capital gains
# But need to account for normal price volatility:
df['Price_Change%'] = df['Close'].pct_change(fill_method=None).abs()
no_distributions = (df['Dividends'] == 0) & (df['Capital Gains'] == 0)
price_drop_pct_mean = df.loc[no_distributions, 'Price_Change%'].mean()
df = df.drop('Price_Change%', axis=1)
# Add columns if not present
if 'Repaired?' not in df.columns:
df['Repaired?'] = False
df['Adj'] = df['Adj Close'] / df['Close']
if debug:
df['ScaleFactor'] = np.nan
df['correction'] = np.nan
df['AdjYahoo'] = (df['Adj Close']/df['Close']).round(4)
print(f"# price_drop_pct_mean = {price_drop_pct_mean:.4f}")
dts = df[df['Capital Gains'] > 0].index
c = df['Close'].to_numpy()
ac = df['Adj Close'].to_numpy()
dcs = {}
for dt in dts:
idx = df.index.get_loc(dt)
if idx > 0:
# Need a row before for price drop
dividend = df['Dividends'].iloc[idx]
capital_gains = df['Capital Gains'].iloc[idx]
if dividend < capital_gains:
# Not possible for 'dividend' to be including capital gains
continue
div_pct = dividend / c[idx-1]
cg_pct = capital_gains / c[idx-1]
# Check whether adjusted price drop is closer to dividend vs dividend+capital_gains
price_drop_pct = (c[idx-1] - c[idx]) / c[idx-1]
price_drop_pct_excl_vol = price_drop_pct - price_drop_pct_mean
diff_div = abs(price_drop_pct_excl_vol - div_pct)
diff_total = abs(price_drop_pct_excl_vol - (div_pct + cg_pct))
cg_is_double_counted = diff_div < diff_total
dcs[idx] = cg_is_double_counted
if debug:
print(f"# {dt.date()}: div = {div_pct*100:.1f}%, cg = {cg_pct*100:.1f}%")
print(f"- price_drop_pct = {price_drop_pct*100:.1f}%")
print(f"- price_drop_pct_excl_vol = {price_drop_pct_excl_vol*100:.1f}%")
print(f"- diff_div = {diff_div:.4f}")
print(f"- diff_total = {diff_total:.4f}")
print(f"- cg_is_double_counted = {cg_is_double_counted}")
pct_double_counted = sum(dcs.values()) / len(dcs)
if debug:
print(f"- pct_double_counted = {pct_double_counted*100:.1f}%")
if pct_double_counted >= 0.666:
for idx in dcs.keys():
dt = df.index[idx]
dividend = df['Dividends'].iloc[idx]
capital_gains = df['Capital Gains'].iloc[idx]
# Instead of calculating new adjustment from scratch,
# reverse the double-count from existing adjustment.
# In case don't have all events after last date.
dividend_true = dividend - capital_gains
df.loc[dt, 'Dividends'] = dividend_true
# Correct adjustment for dates before and including this distribution date
adj_before = (ac[idx-1]/c[idx-1]) / (ac[idx]/c[idx])
adj_correct = 1.0 - (dividend_true + capital_gains) / c[idx-1]
correction = adj_correct / adj_before
df.loc[:dt-_datetime.timedelta(1), 'Adj'] *= correction
df.loc[:dt, 'Repaired?'] = True
msg = f"Repaired capital-gains double-count at {dt.date()}. Adj correction = {correction:.4f}"
logger.info(msg, extra=log_extras)
if debug:
df.loc[dt, 'correction'] = correction
df['Adj Close'] = df['Close'] * df['Adj']
if debug:
df['Adj'] = df['Adj'].round(4)
else:
df = df.drop('Adj', axis=1)
return df
@utils.log_indent_decorator
def _fix_bad_div_adjust(self, df, interval, currency):
# Look for dividend issues:
@@ -1418,6 +1536,12 @@ class PriceHistory:
if interval in ['1wk', '1mo', '3mo', '1y']:
return df
if 'Capital Gains' in df.columns and (df['Capital Gains']>0).any():
# So there are capital gains. This function only considers dividends.
# I don't want to deal with capital gains being wrong as well!
# But if you find capital gains that need repair e.g. 100x error, then report to our Github.
return df
logger = utils.get_yf_logger()
log_extras = {'yf_cat': 'div-adjust-repair-bad', 'yf_interval': interval, 'yf_symbol': self.ticker}
@@ -2510,6 +2634,14 @@ class PriceHistory:
OHLC = ['Open', 'High', 'Low', 'Close']
if interday and interval != '1d':
# Yahoo creates multi-day intervals using potentiall corrupt data, e.g.
# the Close could be 100x Open. This means have to correct each OHLC column
# individually
correct_columns_individually = True
else:
correct_columns_individually = False
# Do not attempt repair of the split is small,
# could be mistaken for normal price variance
if 0.8 < split < 1.25:
@@ -2545,25 +2677,33 @@ class PriceHistory:
log_msg += f' ({df2.index[idx_latest_active].date()})'
logger.debug(log_msg, extra=log_extras)
if logger.isEnabledFor(logging.DEBUG):
df_debug = df2.copy()
df_debug = df_debug.drop(['Adj Close', 'Volume', 'Dividends', 'Stock Splits', 'Repaired?'], axis=1, errors='ignore')
debug_cols = ['Close']
df_debug = df_debug.drop([c for c in OHLC if c not in debug_cols], axis=1, errors='ignore')
df_workings = df2.copy()
df_workings = df_workings.drop(['Adj Close', 'Dividends', 'Stock Splits', 'Repaired?'], axis=1, errors='ignore')
df_workings = df_workings.rename(columns={'Volume': 'Vol'})
fna = df_workings['Vol'].isna()
if fna.any():
df_workings['VolStr'] = ''
df_workings.loc[fna, 'VolStr'] = 'NaN'
df_workings.loc[~fna, 'VolStr'] = (df_workings['Vol'][~fna]/1e6).astype('int').astype('str') + 'm'
df_workings['Vol'] = df_workings['VolStr'] ; df_workings.drop('VolStr', axis=1)
else:
debug_cols = []
df_workings['Vol'] = (df_workings['Vol']/1e6).astype('int').astype('str') + 'm'
debug_cols = ['Close']
df_workings = df_workings.drop([c for c in OHLC if c not in debug_cols], axis=1, errors='ignore')
# Calculate daily price % change. To reduce effect of price volatility,
# calculate change for each OHLC column.
if interday and interval != '1d' and split not in [100.0, 100, 0.001]:
# Avoid using 'Low' and 'High'. For multiday intervals, these can be
# very volatile so reduce ability to detect genuine stock split errors
# very volatile which reduces ability to detect genuine stock split errors
_1d_change_x = np.full((n, 2), 1.0)
price_data = df2[['Open','Close']].to_numpy()
price_data_cols = ['Open','Close']
price_data = df2[price_data_cols].to_numpy()
f_zero = price_data == 0.0
else:
_1d_change_x = np.full((n, 4), 1.0)
price_data = df2[OHLC].to_numpy()
price_data_cols = OHLC
price_data = df2[price_data_cols].to_numpy()
f_zero = price_data == 0.0
if f_zero.any():
price_data[f_zero] = 1.0
@@ -2581,9 +2721,8 @@ class PriceHistory:
price_data = price_data.astype('float')
for j in range(price_data.shape[1]):
price_data[:,j] *= adj
if logger.isEnabledFor(logging.DEBUG):
if OHLC[j] in df_debug.columns:
df_debug[OHLC[j]] *= adj
if OHLC[j] in df_workings.columns:
df_workings[price_data_cols[j]] *= adj
if df_dtype == np.int64:
price_data = price_data.astype('int')
@@ -2593,37 +2732,34 @@ class PriceHistory:
_1d_change_x[f_zero_num_denom] = 1.0
if interday and interval != '1d':
# average change
_1d_change_minx = np.average(_1d_change_x, axis=1)
_1d_change_denoised = np.average(_1d_change_x, axis=1)
else:
# # change nearest to 1.0
# diff = np.abs(_1d_change_x - 1.0)
# j_indices = np.argmin(diff, axis=1)
# _1d_change_minx = _1d_change_x[np.arange(n), j_indices]
# _1d_change_denoised = _1d_change_x[np.arange(n), j_indices]
# Still sensitive to extreme-low low. Try median:
_1d_change_minx = np.median(_1d_change_x, axis=1)
f_na = np.isnan(_1d_change_minx)
_1d_change_denoised = np.median(_1d_change_x, axis=1)
f_na = np.isnan(_1d_change_denoised)
if f_na.any():
# Possible if data was too old for reconstruction.
_1d_change_minx[f_na] = 1.0
if logger.isEnabledFor(logging.DEBUG):
df_debug['1D %'] = _1d_change_minx
df_debug['1D %'] = df_debug['1D %'].round(2).astype('str')
_1d_change_denoised[f_na] = 1.0
# If all 1D changes are closer to 1.0 than split, exit
split_max = max(split, split_rcp)
if np.max(_1d_change_minx) < (split_max - 1) * 0.5 + 1 and np.min(_1d_change_minx) > 1.0 / ((split_max - 1) * 0.5 + 1):
if np.max(_1d_change_denoised) < (split_max - 1) * 0.5 + 1 and np.min(_1d_change_denoised) > 1.0 / ((split_max - 1) * 0.5 + 1):
logger.debug(f'No {fix_type}s detected', extra=log_extras)
return df
# Calculate the true price variance, i.e. remove effect of bad split-adjustments.
# Key = ignore 1D changes outside of interquartile range
q1, q3 = np.percentile(_1d_change_minx, [25, 75])
q1, q3 = np.percentile(_1d_change_denoised, [25, 75])
iqr = q3 - q1
lower_bound = q1 - 1.5 * iqr
upper_bound = q3 + 1.5 * iqr
f = (_1d_change_minx >= lower_bound) & (_1d_change_minx <= upper_bound)
avg = np.mean(_1d_change_minx[f])
sd = np.std(_1d_change_minx[f])
f = (_1d_change_denoised >= lower_bound) & (_1d_change_denoised <= upper_bound)
avg = np.mean(_1d_change_denoised[f])
sd = np.std(_1d_change_denoised[f])
# Now can calculate SD as % of mean
sd_pct = sd / avg
logger.debug(f"Estimation of true 1D change stats: mean = {avg:.2f}, StdDev = {sd:.4f} ({sd_pct*100.0:.1f}% of mean)", extra=log_extras)
@@ -2641,29 +2777,34 @@ class PriceHistory:
# Now can detect bad split adjustments
# Set threshold to halfway between split ratio and largest expected normal price change
r = _1d_change_minx / split_rcp
r = _1d_change_denoised / split_rcp
split_max = max(split, split_rcp)
logger.debug(f"split_max={split_max:.3f} largest_change_pct={largest_change_pct:.4f}", extra=log_extras)
threshold = (split_max + 1.0 + largest_change_pct) * 0.5
logger.debug(f"threshold={threshold:.3f}", extra=log_extras)
logger.debug(f"threshold={threshold:.3f}, threshold_rcp={1.0/threshold:.3f}", extra=log_extras)
if 'Repaired?' not in df2.columns:
df2['Repaired?'] = False
if interday and interval != '1d':
# Yahoo creates multi-day intervals using potentiall corrupt data, e.g.
# the Close could be 100x Open. This means have to correct each OHLC column
# individually
correct_columns_individually = True
else:
correct_columns_individually = False
if correct_columns_individually:
_1d_change_x = np.full((n, 4), 1.0)
price_data = df2[OHLC].replace(0.0, 1.0).to_numpy()
price_data_cols = OHLC
# _1d_change_x = np.full((n, len(price_data_cols)), 1.0)
# price_data = df2[price_data_cols].replace(0.0, 1.0).to_numpy()
_1d_change_x[1:] = price_data[1:, ] / price_data[:-1, ]
else:
_1d_change_x = _1d_change_minx
_1d_change_x = _1d_change_denoised
if correct_columns_individually:
for j in range(len(price_data_cols)):
c = price_data_cols[j]
df_workings[c+' 1D %'] = _1d_change_x[:, j]
df_workings[c+' 1D %'] = df_workings[c+' 1D %'].round(3)
else:
df_workings['1D %'] = _1d_change_denoised
# df_workings['1D %'] = df_workings['1D %'].round(2).astype('str')
df_workings['1D %'] = df_workings['1D %'].round(3)
r = _1d_change_x / split_rcp
f_down = _1d_change_x < 1.0 / threshold
@@ -2680,46 +2821,178 @@ class PriceHistory:
f_up_shifts = f_up if f_up_ndims==1 else f_up.any(axis=1)
# In rare cases e.g. real disasters, the price actually drops massively on huge volume
if f_up_shifts.any():
for i in np.where(f_up_shifts)[0]:
nf_up_shifts = ~f_up_shifts
flat_indices = np.where(nf_up_shifts)[0]
f_down_ndims = len(f_down.shape)
down_dts = df2.index[f_down if f_down_ndims==1 else f_down.any(axis=1)]
for idx in np.where(f_up_shifts)[0]:
i = idx-1 # this is when price actually dropped
dt = df2.index[i]
v = df2['Volume'].iloc[i]
vol_change_pct = 0 if v == 0 else df2['Volume'].iloc[i-1] / v
logger.debug(f"- vol_change_pct = {vol_change_pct:.4f}")
if multiday and (i+1 < len(df2)):
next_v = df2['Volume'].iloc[i+1]
if next_v > 0:
vol_change_pct = max(vol_change_pct, df2['Volume'].iloc[i] / next_v)
if vol_change_pct > 5:
# big volume change +500%
# Could be false-positive, but need some more checks
lookback = max(0, i-10)
lookahead = min(len(df2), i+10)
if (df2['Stock Splits'].iloc[lookback:lookahead]!=0.0).any():
# There's a stock split near the volume spike, so
# assume false positive
continue
avg_vol_after = df2['Volume'].iloc[lookback:i-1].mean()
if not np.isnan(avg_vol_after) and avg_vol_after > 0 and v/avg_vol_after < 2.0:
# volume spike is actually a step-change, so
# probably missing stock split
continue
if f_up_ndims == 1:
f_up[i] = False
# if vol_change_pct > 5:
# # big volume change +500%
# # Could be false-positive, but need some more checks
# lookback = max(0, i-10)
# lookahead = min(len(df2), i+10)
# if (df2['Stock Splits'].iloc[lookback:lookahead]!=0.0).any():
# # There's a stock split near the volume spike, so
# # assume false positive
# continue
# avg_vol_after = df2['Volume'].iloc[lookback:i-1].mean()
# if not np.isnan(avg_vol_after) and avg_vol_after > 0 and v/avg_vol_after < 2.0:
# # volume spike is actually a step-change, so
# # probably missing stock split
# continue
# if f_up_ndims == 1:
# f_up[idx] = False
# else:
# f_up[idx,:] = False
# New method: look for a volume spike
# Select 20 rows after i (earlier in time)
# are not triggers (big price moves).
i_pos_in_flat_indices = nf_up_shifts[:i].sum()
start = max(0, i_pos_in_flat_indices - 15)
end = min(len(flat_indices), start+30+1)
block = df2.iloc[flat_indices[start:end]]
block = block.sort_index()
# block_before = block.loc[:dt-_datetime.timedelta(1)]
down_dts_from = down_dts[down_dts>=dt]
if len(down_dts_from) > 0:
next_down_dt = min(down_dts_from)
if next_down_dt == dt:
# Only this row has price drop, so will look like a volume spike but
# is definitely a data error to repair.
block_after = None
else:
f_up[i,:] = False
block_after = block.loc[dt+_datetime.timedelta(1):next_down_dt-_datetime.timedelta(1)]
else:
block_after = block.loc[dt+_datetime.timedelta(1):]
if block_after is not None and block_after.empty:
block_after = None
def _calc_volume_zscore_weighted(volume, dt, block):
distances = np.abs((block.index - dt).total_seconds())
distances /= distances.max()
weights = np.exp(-distances)
weights = np.array(weights) / np.sum(weights)
values = block['Volume'].to_numpy()
weighted_mean = np.sum(values * weights)
weighted_variance = np.sum(weights * (values - weighted_mean) ** 2)
weighted_std = np.sqrt(weighted_variance)
# print(f"# weighted_variance = {weighted_variance:.4f}")
# print(f"# weighted_std = {weighted_std:.4f}")
z_score = (volume - weighted_mean) / weighted_std
# print(f"z_score = {z_score:.4f}")
return z_score
def _calc_volume_zscore(volume, block):
# print(f"_calc_volume_zscore(volume={volume})")
values = block['Volume'].to_numpy()
std = np.std(values, ddof=1)
if std == 0.0:
return 0
mean = np.mean(values)
z_score = (volume - mean) / std
return z_score
# z_score_before = _calc_volume_zscore(v, block_before)
# print(f"z_score_before = {z_score_before:.4f}")
if block_after is not None:
z_score_after = _calc_volume_zscore(v, block_after)
# print(f"z_score_after = {z_score_after:.4f}")
z_score_after_d1 = _calc_volume_zscore(block_after['Volume'].iloc[0], block_after)
# print(f"z_score_after_d1 = {z_score_after_d1:.4f}")
# z_score_after_d2 = _calc_volume_zscore(block_after['Volume'].iloc[1], block_after)
# print(f"z_score_after_d2 = {z_score_after_d2:.4f}")
if max(z_score_after, z_score_after_d1) > 2:
# There was a volume spike around this date, so
# probably something happened NOT a missing stock split.
logger.debug(f"Detected false-positive split error on {dt.date()}, ignoring price drop")
if f_up_ndims == 1:
f_up[idx] = False
else:
f_up[idx,:] = False
f = f_down | f_up
if logger.isEnabledFor(logging.DEBUG):
if not correct_columns_individually:
df_debug['r'] = r
df_debug['down'] = f_down
df_debug['up'] = f_up
df_debug['r'] = df_debug['r'].round(2).astype('str')
if not correct_columns_individually:
df_workings['r'] = r
df_workings['down'] = f_down
df_workings['up'] = f_up
df_workings['r'] = df_workings['r'].round(2).astype('str')
df_workings['f'] = f
else:
for j in range(len(price_data_cols)):
c = price_data_cols[j]
df_workings[c+'_r'] = r[:, j]
df_workings[c+'_r'] = df_workings[c+'_r'].round(2).astype('str')
df_workings[c+'_down'] = f_down[:, j]
df_workings[c+'_up'] = f_up[:, j]
df_workings[c+'_f'] = f[:, j]
# Possible that extreme events caused the price spikes/dumps.
# So for each signal, calculate local stdev for a custom threshold.
for idx in np.where(f)[0]:
dt = df2.index[idx]
idx_end = min(len(df2)-1, idx+2)
if interval.endswith('d'):
lookback = 10
elif interval.endswith('m'):
lookback = 100
else:
for j in range(len(OHLC)):
c = OHLC[j]
if c in debug_cols:
df_debug[c + '_r'] = r[:, j]
df_debug[c + '_r'] = df_debug[c + '_r'].round(2).astype('str')
df_debug[c + '_down'] = f_down[:, j]
df_debug[c + '_up'] = f_up[:, j]
lookback = 3
idx_start = max(0, idx-lookback)
changes_local = df_workings.iloc[idx_start:idx_end]
if correct_columns_individually:
cols = price_data_cols
else:
cols = ['n/a']
for c in cols:
if c == 'n/a':
clean_changes = changes_local['1D %'][~changes_local['f']].to_numpy()
else:
clean_changes = changes_local[c+' 1D %'][~changes_local[c+'_f']].to_numpy()
avg = np.mean(clean_changes)
sd = np.std(clean_changes)
sd_pct = sd / avg
largest_change_pct = 5 * sd_pct
if interday and interval != '1d':
largest_change_pct *= 3
if interval in ['1mo', '3mo']:
largest_change_pct *= 2
threshold = (split_max + 1.0 + largest_change_pct) * 0.5
if correct_columns_individually:
big_change = df_workings[c+' 1D %'].iloc[idx]
else:
big_change = df_workings['1D %'].iloc[idx]
if big_change < threshold and big_change > 1.0/threshold:
# This price change is actually similar to local price volatily. False positive
if correct_columns_individually:
logger.debug(f"Unusual '{c}' price action @ {dt.date()} is actually similar to local price volatility, so ignoring (StdDev % mean = {sd_pct*100:.1f}%)")
df_workings.loc[dt, c+'_f'] = False
else:
logger.debug(f"Unusual price action @ {dt.date()} is actually similar to local price volatility, so ignoring (StdDev % mean = {sd_pct*100:.1f}%)")
df_workings.loc[dt, 'f'] = False
if not correct_columns_individually:
f_down = f_down & df_workings['f'].to_numpy()
f_up = f_up & df_workings['f'].to_numpy()
else:
for j in range(len(price_data_cols)):
c = price_data_cols[j]
if c in debug_cols:
f_down[:, j] = f_down[:, j] & df_workings[c+'_f']
f_up[:, j] = f_up[:, j] & df_workings[c+'_f']
f = f_down | f_up
if not f.any():
logger.debug(f'No {fix_type}s detected', extra=log_extras)
@@ -2755,15 +3028,15 @@ class PriceHistory:
return df
if logger.isEnabledFor(logging.DEBUG):
df_debug['i'] = list(range(0, df_debug.shape[0]))
df_debug['i_rev'] = df_debug.shape[0]-1 - df_debug['i']
df_workings['i'] = list(range(0, df_workings.shape[0]))
df_workings['i_rev'] = df_workings.shape[0]-1 - df_workings['i']
if correct_columns_individually:
f_change = df_debug[[c+'_down' for c in debug_cols]].any(axis=1) | df_debug[[c+'_up' for c in debug_cols]].any(axis=1)
f_change = df_workings[[c+'_down' for c in debug_cols]].any(axis=1) | df_workings[[c+'_up' for c in debug_cols]].any(axis=1)
else:
f_change = df_debug['down'] | df_debug['up']
f_change = df_workings['down'] | df_workings['up']
f_change = f_change | np.roll(f_change, -1) | np.roll(f_change, 1) | np.roll(f_change, -2) | np.roll(f_change, 2)
with pd.option_context('display.max_rows', None, 'display.max_columns', 10, 'display.width', 1000): # more options can be specified also
logger.debug("price-repair-split: my workings:" + '\n' + str(df_debug[f_change]))
logger.debug("price-repair-split: my workings:" + '\n' + str(df_workings[f_change]))
def map_signals_to_ranges(f, f_up, f_down):
# Ensure 0th element is False, because True is nonsense

View File

@@ -143,7 +143,7 @@ class FastInfo:
if self._prices_1y.empty:
return self._prices_1y
dnow = pd.Timestamp.utcnow().tz_convert(self.timezone).date()
dnow = pd.Timestamp.now('UTC').tz_convert(self.timezone).date()
d1 = dnow
d0 = (d1 + datetime.timedelta(days=1)) - utils._interval_to_timedelta("1y")
if fullDaysOnly and self._exchange_open_now():
@@ -170,7 +170,7 @@ class FastInfo:
return self._md
def _exchange_open_now(self):
t = pd.Timestamp.utcnow()
t = pd.Timestamp.now('UTC')
self._get_exchange_metadata()
# if self._today_open is None and self._today_close is None:
@@ -231,7 +231,7 @@ class FastInfo:
if self._shares is not None:
return self._shares
shares = self._tkr.get_shares_full(start=pd.Timestamp.utcnow().date()-pd.Timedelta(days=548))
shares = self._tkr.get_shares_full(start=pd.Timestamp.now('UTC').date()-pd.Timedelta(days=548))
# if shares is None:
# # Requesting 18 months failed, so fallback to shares which should include last year
# shares = self._tkr.get_shares()
@@ -699,9 +699,9 @@ class Quote:
for k in keys:
url += "&type=" + k
# Request 6 months of data
start = pd.Timestamp.utcnow().floor("D") - datetime.timedelta(days=365 // 2)
start = pd.Timestamp.now('UTC').floor("D") - datetime.timedelta(days=365 // 2)
start = int(start.timestamp())
end = pd.Timestamp.utcnow().ceil("D")
end = pd.Timestamp.now('UTC').ceil("D")
end = int(end.timestamp())
url += f"&period1={start}&period2={end}"

View File

@@ -1 +1 @@
version = "1.0"
version = "1.1.0"